diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-26 13:13:08 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-26 13:13:08 -0500 |
| commit | 7954d5cf39ee1ce9bb0a4b19fcf1924885a9cad1 (patch) | |
| tree | 3515ebb6ed3f15ead563ac3e30e30fd4b37992fb | |
| parent | 37f5fed55559a030c430550bcacec75e6a833f1b (diff) | |
| parent | 86528da229a448577a8401a17c295883640d336c (diff) | |
Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx
* 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx:
i.MX31: framebuffer driver
i.MX31: Image Processing Unit DMA and IRQ drivers
dmaengine: add async_tx_clear_ack() macro
dmaengine: dma_issue_pending_all == nop when CONFIG_DMA_ENGINE=n
dmaengine: kill some dubious WARN_ONCEs
fsldma: print correct IRQ on mpc83xx
fsldma: check for NO_IRQ in fsl_dma_chan_remove()
dmatest: Use custom map/unmap for destination buffer
fsldma: use a valid 'device' for dma_pool_create
dmaengine: fix dependency chaining
| -rw-r--r-- | arch/arm/plat-mxc/include/mach/ipu.h | 181 | ||||
| -rw-r--r-- | arch/arm/plat-mxc/include/mach/irqs.h | 10 | ||||
| -rw-r--r-- | arch/arm/plat-mxc/include/mach/mx3fb.h | 38 | ||||
| -rw-r--r-- | drivers/dma/Kconfig | 19 | ||||
| -rw-r--r-- | drivers/dma/Makefile | 1 | ||||
| -rw-r--r-- | drivers/dma/dmaengine.c | 8 | ||||
| -rw-r--r-- | drivers/dma/dmatest.c | 35 | ||||
| -rw-r--r-- | drivers/dma/fsldma.c | 8 | ||||
| -rw-r--r-- | drivers/dma/ipu/Makefile | 1 | ||||
| -rw-r--r-- | drivers/dma/ipu/ipu_idmac.c | 1740 | ||||
| -rw-r--r-- | drivers/dma/ipu/ipu_intern.h | 176 | ||||
| -rw-r--r-- | drivers/dma/ipu/ipu_irq.c | 413 | ||||
| -rw-r--r-- | drivers/video/Kconfig | 12 | ||||
| -rw-r--r-- | drivers/video/Makefile | 1 | ||||
| -rw-r--r-- | drivers/video/mx3fb.c | 1555 | ||||
| -rw-r--r-- | include/linux/dmaengine.h | 11 |
16 files changed, 4194 insertions, 15 deletions
diff --git a/arch/arm/plat-mxc/include/mach/ipu.h b/arch/arm/plat-mxc/include/mach/ipu.h new file mode 100644 index 000000000000..a9221f1cc1a0 --- /dev/null +++ b/arch/arm/plat-mxc/include/mach/ipu.h | |||
| @@ -0,0 +1,181 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2008 | ||
| 3 | * Guennadi Liakhovetski, DENX Software Engineering, <lg@denx.de> | ||
| 4 | * | ||
| 5 | * Copyright (C) 2005-2007 Freescale Semiconductor, Inc. | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License version 2 as | ||
| 9 | * published by the Free Software Foundation. | ||
| 10 | */ | ||
| 11 | |||
| 12 | #ifndef _IPU_H_ | ||
| 13 | #define _IPU_H_ | ||
| 14 | |||
| 15 | #include <linux/types.h> | ||
| 16 | #include <linux/dmaengine.h> | ||
| 17 | |||
| 18 | /* IPU DMA Controller channel definitions. */ | ||
| 19 | enum ipu_channel { | ||
| 20 | IDMAC_IC_0 = 0, /* IC (encoding task) to memory */ | ||
| 21 | IDMAC_IC_1 = 1, /* IC (viewfinder task) to memory */ | ||
| 22 | IDMAC_ADC_0 = 1, | ||
| 23 | IDMAC_IC_2 = 2, | ||
| 24 | IDMAC_ADC_1 = 2, | ||
| 25 | IDMAC_IC_3 = 3, | ||
| 26 | IDMAC_IC_4 = 4, | ||
| 27 | IDMAC_IC_5 = 5, | ||
| 28 | IDMAC_IC_6 = 6, | ||
| 29 | IDMAC_IC_7 = 7, /* IC (sensor data) to memory */ | ||
| 30 | IDMAC_IC_8 = 8, | ||
| 31 | IDMAC_IC_9 = 9, | ||
| 32 | IDMAC_IC_10 = 10, | ||
| 33 | IDMAC_IC_11 = 11, | ||
| 34 | IDMAC_IC_12 = 12, | ||
| 35 | IDMAC_IC_13 = 13, | ||
| 36 | IDMAC_SDC_0 = 14, /* Background synchronous display data */ | ||
| 37 | IDMAC_SDC_1 = 15, /* Foreground data (overlay) */ | ||
| 38 | IDMAC_SDC_2 = 16, | ||
| 39 | IDMAC_SDC_3 = 17, | ||
| 40 | IDMAC_ADC_2 = 18, | ||
| 41 | IDMAC_ADC_3 = 19, | ||
| 42 | IDMAC_ADC_4 = 20, | ||
| 43 | IDMAC_ADC_5 = 21, | ||
| 44 | IDMAC_ADC_6 = 22, | ||
| 45 | IDMAC_ADC_7 = 23, | ||
| 46 | IDMAC_PF_0 = 24, | ||
| 47 | IDMAC_PF_1 = 25, | ||
| 48 | IDMAC_PF_2 = 26, | ||
| 49 | IDMAC_PF_3 = 27, | ||
| 50 | IDMAC_PF_4 = 28, | ||
| 51 | IDMAC_PF_5 = 29, | ||
| 52 | IDMAC_PF_6 = 30, | ||
| 53 | IDMAC_PF_7 = 31, | ||
| 54 | }; | ||
| 55 | |||
| 56 | /* Order significant! */ | ||
| 57 | enum ipu_channel_status { | ||
| 58 | IPU_CHANNEL_FREE, | ||
| 59 | IPU_CHANNEL_INITIALIZED, | ||
| 60 | IPU_CHANNEL_READY, | ||
| 61 | IPU_CHANNEL_ENABLED, | ||
| 62 | }; | ||
| 63 | |||
| 64 | #define IPU_CHANNELS_NUM 32 | ||
| 65 | |||
| 66 | enum pixel_fmt { | ||
| 67 | /* 1 byte */ | ||
| 68 | IPU_PIX_FMT_GENERIC, | ||
| 69 | IPU_PIX_FMT_RGB332, | ||
| 70 | IPU_PIX_FMT_YUV420P, | ||
| 71 | IPU_PIX_FMT_YUV422P, | ||
| 72 | IPU_PIX_FMT_YUV420P2, | ||
| 73 | IPU_PIX_FMT_YVU422P, | ||
| 74 | /* 2 bytes */ | ||
| 75 | IPU_PIX_FMT_RGB565, | ||
| 76 | IPU_PIX_FMT_RGB666, | ||
| 77 | IPU_PIX_FMT_BGR666, | ||
| 78 | IPU_PIX_FMT_YUYV, | ||
| 79 | IPU_PIX_FMT_UYVY, | ||
| 80 | /* 3 bytes */ | ||
| 81 | IPU_PIX_FMT_RGB24, | ||
| 82 | IPU_PIX_FMT_BGR24, | ||
| 83 | /* 4 bytes */ | ||
| 84 | IPU_PIX_FMT_GENERIC_32, | ||
| 85 | IPU_PIX_FMT_RGB32, | ||
| 86 | IPU_PIX_FMT_BGR32, | ||
| 87 | IPU_PIX_FMT_ABGR32, | ||
| 88 | IPU_PIX_FMT_BGRA32, | ||
| 89 | IPU_PIX_FMT_RGBA32, | ||
| 90 | }; | ||
| 91 | |||
| 92 | enum ipu_color_space { | ||
| 93 | IPU_COLORSPACE_RGB, | ||
| 94 | IPU_COLORSPACE_YCBCR, | ||
| 95 | IPU_COLORSPACE_YUV | ||
| 96 | }; | ||
| 97 | |||
| 98 | /* | ||
| 99 | * Enumeration of IPU rotation modes | ||
| 100 | */ | ||
| 101 | enum ipu_rotate_mode { | ||
| 102 | /* Note the enum values correspond to BAM value */ | ||
| 103 | IPU_ROTATE_NONE = 0, | ||
| 104 | IPU_ROTATE_VERT_FLIP = 1, | ||
| 105 | IPU_ROTATE_HORIZ_FLIP = 2, | ||
| 106 | IPU_ROTATE_180 = 3, | ||
| 107 | IPU_ROTATE_90_RIGHT = 4, | ||
| 108 | IPU_ROTATE_90_RIGHT_VFLIP = 5, | ||
| 109 | IPU_ROTATE_90_RIGHT_HFLIP = 6, | ||
| 110 | IPU_ROTATE_90_LEFT = 7, | ||
| 111 | }; | ||
| 112 | |||
| 113 | struct ipu_platform_data { | ||
| 114 | unsigned int irq_base; | ||
| 115 | }; | ||
| 116 | |||
| 117 | /* | ||
| 118 | * Enumeration of DI ports for ADC. | ||
| 119 | */ | ||
| 120 | enum display_port { | ||
| 121 | DISP0, | ||
| 122 | DISP1, | ||
| 123 | DISP2, | ||
| 124 | DISP3 | ||
| 125 | }; | ||
| 126 | |||
| 127 | struct idmac_video_param { | ||
| 128 | unsigned short in_width; | ||
| 129 | unsigned short in_height; | ||
| 130 | uint32_t in_pixel_fmt; | ||
| 131 | unsigned short out_width; | ||
| 132 | unsigned short out_height; | ||
| 133 | uint32_t out_pixel_fmt; | ||
| 134 | unsigned short out_stride; | ||
| 135 | bool graphics_combine_en; | ||
| 136 | bool global_alpha_en; | ||
| 137 | bool key_color_en; | ||
| 138 | enum display_port disp; | ||
| 139 | unsigned short out_left; | ||
| 140 | unsigned short out_top; | ||
| 141 | }; | ||
| 142 | |||
| 143 | /* | ||
| 144 | * Union of initialization parameters for a logical channel. So far only video | ||
| 145 | * parameters are used. | ||
| 146 | */ | ||
| 147 | union ipu_channel_param { | ||
| 148 | struct idmac_video_param video; | ||
| 149 | }; | ||
| 150 | |||
| 151 | struct idmac_tx_desc { | ||
| 152 | struct dma_async_tx_descriptor txd; | ||
| 153 | struct scatterlist *sg; /* scatterlist for this */ | ||
| 154 | unsigned int sg_len; /* tx-descriptor. */ | ||
| 155 | struct list_head list; | ||
| 156 | }; | ||
| 157 | |||
| 158 | struct idmac_channel { | ||
| 159 | struct dma_chan dma_chan; | ||
| 160 | dma_cookie_t completed; /* last completed cookie */ | ||
| 161 | union ipu_channel_param params; | ||
| 162 | enum ipu_channel link; /* input channel, linked to the output */ | ||
| 163 | enum ipu_channel_status status; | ||
| 164 | void *client; /* Only one client per channel */ | ||
| 165 | unsigned int n_tx_desc; | ||
| 166 | struct idmac_tx_desc *desc; /* allocated tx-descriptors */ | ||
| 167 | struct scatterlist *sg[2]; /* scatterlist elements in buffer-0 and -1 */ | ||
| 168 | struct list_head free_list; /* free tx-descriptors */ | ||
| 169 | struct list_head queue; /* queued tx-descriptors */ | ||
| 170 | spinlock_t lock; /* protects sg[0,1], queue */ | ||
| 171 | struct mutex chan_mutex; /* protects status, cookie, free_list */ | ||
| 172 | bool sec_chan_en; | ||
| 173 | int active_buffer; | ||
| 174 | unsigned int eof_irq; | ||
| 175 | char eof_name[16]; /* EOF IRQ name for request_irq() */ | ||
| 176 | }; | ||
| 177 | |||
| 178 | #define to_tx_desc(tx) container_of(tx, struct idmac_tx_desc, txd) | ||
| 179 | #define to_idmac_chan(c) container_of(c, struct idmac_channel, dma_chan) | ||
| 180 | |||
| 181 | #endif | ||
diff --git a/arch/arm/plat-mxc/include/mach/irqs.h b/arch/arm/plat-mxc/include/mach/irqs.h index e06d3cb0ee11..c02b8fc2d821 100644 --- a/arch/arm/plat-mxc/include/mach/irqs.h +++ b/arch/arm/plat-mxc/include/mach/irqs.h | |||
| @@ - | |||
