DMAENGINE: ste_dma40: added kernel doc for struct
[pandora-kernel.git] / arch / arm / plat-nomadik / include / plat / ste_dma40.h
1 /*
2  * Copyright (C) ST-Ericsson SA 2007-2010
3  * Author: Per Friden <per.friden@stericsson.com> for ST-Ericsson
4  * Author: Jonas Aaberg <jonas.aberg@stericsson.com> for ST-Ericsson
5  * License terms: GNU General Public License (GPL) version 2
6  */
7
8
9 #ifndef STE_DMA40_H
10 #define STE_DMA40_H
11
12 #include <linux/dmaengine.h>
13 #include <linux/workqueue.h>
14 #include <linux/interrupt.h>
15 #include <linux/dmaengine.h>
16
17 /* dev types for memcpy */
18 #define STEDMA40_DEV_DST_MEMORY (-1)
19 #define STEDMA40_DEV_SRC_MEMORY (-1)
20
21 /*
22  * Description of bitfields of channel_type variable is available in
23  * the info structure.
24  */
25
26 /* Priority */
27 #define STEDMA40_INFO_PRIO_TYPE_POS 2
28 #define STEDMA40_HIGH_PRIORITY_CHANNEL (0x1 << STEDMA40_INFO_PRIO_TYPE_POS)
29 #define STEDMA40_LOW_PRIORITY_CHANNEL (0x2 << STEDMA40_INFO_PRIO_TYPE_POS)
30
31 /* Mode  */
32 #define STEDMA40_INFO_CH_MODE_TYPE_POS 6
33 #define STEDMA40_CHANNEL_IN_PHY_MODE (0x1 << STEDMA40_INFO_CH_MODE_TYPE_POS)
34 #define STEDMA40_CHANNEL_IN_LOG_MODE (0x2 << STEDMA40_INFO_CH_MODE_TYPE_POS)
35 #define STEDMA40_CHANNEL_IN_OPER_MODE (0x3 << STEDMA40_INFO_CH_MODE_TYPE_POS)
36
37 /* Mode options */
38 #define STEDMA40_INFO_CH_MODE_OPT_POS 8
39 #define STEDMA40_PCHAN_BASIC_MODE (0x1 << STEDMA40_INFO_CH_MODE_OPT_POS)
40 #define STEDMA40_PCHAN_MODULO_MODE (0x2 << STEDMA40_INFO_CH_MODE_OPT_POS)
41 #define STEDMA40_PCHAN_DOUBLE_DST_MODE (0x3 << STEDMA40_INFO_CH_MODE_OPT_POS)
42 #define STEDMA40_LCHAN_SRC_PHY_DST_LOG (0x1 << STEDMA40_INFO_CH_MODE_OPT_POS)
43 #define STEDMA40_LCHAN_SRC_LOG_DST_PHS (0x2 << STEDMA40_INFO_CH_MODE_OPT_POS)
44 #define STEDMA40_LCHAN_SRC_LOG_DST_LOG (0x3 << STEDMA40_INFO_CH_MODE_OPT_POS)
45
46 /* Interrupt */
47 #define STEDMA40_INFO_TIM_POS 10
48 #define STEDMA40_NO_TIM_FOR_LINK (0x0 << STEDMA40_INFO_TIM_POS)
49 #define STEDMA40_TIM_FOR_LINK (0x1 << STEDMA40_INFO_TIM_POS)
50
51 /* End of channel_type configuration */
52
53 #define STEDMA40_ESIZE_8_BIT  0x0
54 #define STEDMA40_ESIZE_16_BIT 0x1
55 #define STEDMA40_ESIZE_32_BIT 0x2
56 #define STEDMA40_ESIZE_64_BIT 0x3
57
58 /* The value 4 indicates that PEN-reg shall be set to 0 */
59 #define STEDMA40_PSIZE_PHY_1  0x4
60 #define STEDMA40_PSIZE_PHY_2  0x0
61 #define STEDMA40_PSIZE_PHY_4  0x1
62 #define STEDMA40_PSIZE_PHY_8  0x2
63 #define STEDMA40_PSIZE_PHY_16 0x3
64
65 /*
66  * The number of elements differ in logical and
67  * physical mode
68  */
69 #define STEDMA40_PSIZE_LOG_1  STEDMA40_PSIZE_PHY_2
70 #define STEDMA40_PSIZE_LOG_4  STEDMA40_PSIZE_PHY_4
71 #define STEDMA40_PSIZE_LOG_8  STEDMA40_PSIZE_PHY_8
72 #define STEDMA40_PSIZE_LOG_16 STEDMA40_PSIZE_PHY_16
73
74 /* Maximum number of possible physical channels */
75 #define STEDMA40_MAX_PHYS 32
76
77 enum stedma40_flow_ctrl {
78         STEDMA40_NO_FLOW_CTRL,
79         STEDMA40_FLOW_CTRL,
80 };
81
82 enum stedma40_endianess {
83         STEDMA40_LITTLE_ENDIAN,
84         STEDMA40_BIG_ENDIAN
85 };
86
87 enum stedma40_periph_data_width {
88         STEDMA40_BYTE_WIDTH = STEDMA40_ESIZE_8_BIT,
89         STEDMA40_HALFWORD_WIDTH = STEDMA40_ESIZE_16_BIT,
90         STEDMA40_WORD_WIDTH = STEDMA40_ESIZE_32_BIT,
91         STEDMA40_DOUBLEWORD_WIDTH = STEDMA40_ESIZE_64_BIT
92 };
93
94 enum stedma40_xfer_dir {
95         STEDMA40_MEM_TO_MEM = 1,
96         STEDMA40_MEM_TO_PERIPH,
97         STEDMA40_PERIPH_TO_MEM,
98         STEDMA40_PERIPH_TO_PERIPH
99 };
100
101
102 /**
103  * struct stedma40_chan_cfg - dst/src channel configuration
104  *
105  * @endianess: Endianess of the src/dst hardware
106  * @data_width: Data width of the src/dst hardware
107  * @p_size: Burst size
108  * @flow_ctrl: Flow control on/off.
109  */
110 struct stedma40_half_channel_info {
111         enum stedma40_endianess endianess;
112         enum stedma40_periph_data_width data_width;
113         int psize;
114         enum stedma40_flow_ctrl flow_ctrl;
115 };
116
117 /**
118  * struct stedma40_chan_cfg - Structure to be filled by client drivers.
119  *
120  * @dir: MEM 2 MEM, PERIPH 2 MEM , MEM 2 PERIPH, PERIPH 2 PERIPH
121  * @channel_type: priority, mode, mode options and interrupt configuration.
122  * @src_dev_type: Src device type
123  * @dst_dev_type: Dst device type
124  * @src_info: Parameters for dst half channel
125  * @dst_info: Parameters for dst half channel
126  * @pre_transfer_data: Data to be passed on to the pre_transfer() function.
127  * @pre_transfer: Callback used if needed before preparation of transfer.
128  * Only called if device is set. size of bytes to transfer
129  * (in case of multiple element transfer size is size of the first element).
130  *
131  *
132  * This structure has to be filled by the client drivers.
133  * It is recommended to do all dma configurations for clients in the machine.
134  *
135  */
136 struct stedma40_chan_cfg {
137         enum stedma40_xfer_dir                   dir;
138         unsigned int                             channel_type;
139         int                                      src_dev_type;
140         int                                      dst_dev_type;
141         struct stedma40_half_channel_info        src_info;
142         struct stedma40_half_channel_info        dst_info;
143         void                                    *pre_transfer_data;
144         int (*pre_transfer)                     (struct dma_chan *chan,
145                                                  void *data,
146                                                  int size);
147 };
148
149 /**
150  * struct stedma40_platform_data - Configuration struct for the dma device.
151  *
152  * @dev_len: length of dev_tx and dev_rx
153  * @dev_tx: mapping between destination event line and io address
154  * @dev_rx: mapping between source event line and io address
155  * @memcpy: list of memcpy event lines
156  * @memcpy_len: length of memcpy
157  * @memcpy_conf_phy: default configuration of physical channel memcpy
158  * @memcpy_conf_log: default configuration of logical channel memcpy
159  * @disabled_channels: A vector, ending with -1, that marks physical channels
160  * that are for different reasons not available for the driver.
161  */
162 struct stedma40_platform_data {
163         u32                              dev_len;
164         const dma_addr_t                *dev_tx;
165         const dma_addr_t                *dev_rx;
166         int                             *memcpy;
167         u32                              memcpy_len;
168         struct stedma40_chan_cfg        *memcpy_conf_phy;
169         struct stedma40_chan_cfg        *memcpy_conf_log;
170         int                              disabled_channels[STEDMA40_MAX_PHYS];
171 };
172
173 /**
174  * setdma40_set_psize() - Used for changing the package size of an
175  * already configured dma channel.
176  *
177  * @chan: dmaengine handle
178  * @src_psize: new package side for src. (STEDMA40_PSIZE*)
179  * @src_psize: new package side for dst. (STEDMA40_PSIZE*)
180  *
181  * returns 0 on ok, otherwise negative error number.
182  */
183 int stedma40_set_psize(struct dma_chan *chan,
184                        int src_psize,
185                        int dst_psize);
186
187 /**
188  * stedma40_filter() - Provides stedma40_chan_cfg to the
189  * ste_dma40 dma driver via the dmaengine framework.
190  * does some checking of what's provided.
191  *
192  * Never directly called by client. It used by dmaengine.
193  * @chan: dmaengine handle.
194  * @data: Must be of type: struct stedma40_chan_cfg and is
195  * the configuration of the framework.
196  *
197  *
198  */
199
200 bool stedma40_filter(struct dma_chan *chan, void *data);
201
202 /**
203  * stedma40_memcpy_sg() - extension of the dma framework, memcpy to/from
204  * scattergatter lists.
205  *
206  * @chan: dmaengine handle
207  * @sgl_dst: Destination scatter list
208  * @sgl_src: Source scatter list
209  * @sgl_len: The length of each scatterlist. Both lists must be of equal length
210  * and each element must match the corresponding element in the other scatter
211  * list.
212  * @flags: is actually enum dma_ctrl_flags. See dmaengine.h
213  */
214
215 struct dma_async_tx_descriptor *stedma40_memcpy_sg(struct dma_chan *chan,
216                                                    struct scatterlist *sgl_dst,
217                                                    struct scatterlist *sgl_src,
218                                                    unsigned int sgl_len,
219                                                    unsigned long flags);
220
221 /**
222  * stedma40_slave_mem() - Transfers a raw data buffer to or from a slave
223  * (=device)
224  *
225  * @chan: dmaengine handle
226  * @addr: source or destination physicall address.
227  * @size: bytes to transfer
228  * @direction: direction of transfer
229  * @flags: is actually enum dma_ctrl_flags. See dmaengine.h
230  */
231
232 static inline struct
233 dma_async_tx_descriptor *stedma40_slave_mem(struct dma_chan *chan,
234                                             dma_addr_t addr,
235                                             unsigned int size,
236                                             enum dma_data_direction direction,
237                                             unsigned long flags)
238 {
239         struct scatterlist sg;
240         sg_init_table(&sg, 1);
241         sg.dma_address = addr;
242         sg.length = size;
243
244         return chan->device->device_prep_slave_sg(chan, &sg, 1,
245                                                   direction, flags);
246 }
247
248 #endif