Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 1 | /* |
Jonas Aaberg | 767a967 | 2010-08-09 12:08:34 +0000 | [diff] [blame] | 2 | * Copyright (C) ST-Ericsson SA 2007-2010 |
Per Forlin | 661385f | 2010-10-06 09:05:28 +0000 | [diff] [blame] | 3 | * Author: Per Forlin <per.forlin@stericsson.com> for ST-Ericsson |
Jonas Aaberg | 767a967 | 2010-08-09 12:08:34 +0000 | [diff] [blame] | 4 | * Author: Jonas Aaberg <jonas.aberg@stericsson.com> for ST-Ericsson |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 5 | * License terms: GNU General Public License (GPL) version 2 |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | |
| 9 | #ifndef STE_DMA40_H |
| 10 | #define STE_DMA40_H |
| 11 | |
| 12 | #include <linux/dmaengine.h> |
Alexey Dobriyan | b7f080c | 2011-06-16 11:01:34 +0000 | [diff] [blame] | 13 | #include <linux/scatterlist.h> |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 14 | #include <linux/workqueue.h> |
| 15 | #include <linux/interrupt.h> |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 16 | |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 17 | /* |
| 18 | * Maxium size for a single dma descriptor |
| 19 | * Size is limited to 16 bits. |
| 20 | * Size is in the units of addr-widths (1,2,4,8 bytes) |
| 21 | * Larger transfers will be split up to multiple linked desc |
| 22 | */ |
| 23 | #define STEDMA40_MAX_SEG_SIZE 0xFFFF |
| 24 | |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 25 | /* dev types for memcpy */ |
| 26 | #define STEDMA40_DEV_DST_MEMORY (-1) |
| 27 | #define STEDMA40_DEV_SRC_MEMORY (-1) |
| 28 | |
Rabin Vincent | 38bdbf0 | 2010-10-12 13:00:51 +0000 | [diff] [blame] | 29 | enum stedma40_mode { |
| 30 | STEDMA40_MODE_LOGICAL = 0, |
| 31 | STEDMA40_MODE_PHYSICAL, |
| 32 | STEDMA40_MODE_OPERATION, |
| 33 | }; |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 34 | |
Rabin Vincent | 20a5b6d | 2010-10-12 13:00:52 +0000 | [diff] [blame] | 35 | enum stedma40_mode_opt { |
| 36 | STEDMA40_PCHAN_BASIC_MODE = 0, |
| 37 | STEDMA40_LCHAN_SRC_LOG_DST_LOG = 0, |
| 38 | STEDMA40_PCHAN_MODULO_MODE, |
| 39 | STEDMA40_PCHAN_DOUBLE_DST_MODE, |
| 40 | STEDMA40_LCHAN_SRC_PHY_DST_LOG, |
| 41 | STEDMA40_LCHAN_SRC_LOG_DST_PHY, |
| 42 | }; |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 43 | |
| 44 | #define STEDMA40_ESIZE_8_BIT 0x0 |
| 45 | #define STEDMA40_ESIZE_16_BIT 0x1 |
| 46 | #define STEDMA40_ESIZE_32_BIT 0x2 |
| 47 | #define STEDMA40_ESIZE_64_BIT 0x3 |
| 48 | |
| 49 | /* The value 4 indicates that PEN-reg shall be set to 0 */ |
| 50 | #define STEDMA40_PSIZE_PHY_1 0x4 |
| 51 | #define STEDMA40_PSIZE_PHY_2 0x0 |
| 52 | #define STEDMA40_PSIZE_PHY_4 0x1 |
| 53 | #define STEDMA40_PSIZE_PHY_8 0x2 |
| 54 | #define STEDMA40_PSIZE_PHY_16 0x3 |
| 55 | |
| 56 | /* |
| 57 | * The number of elements differ in logical and |
| 58 | * physical mode |
| 59 | */ |
| 60 | #define STEDMA40_PSIZE_LOG_1 STEDMA40_PSIZE_PHY_2 |
| 61 | #define STEDMA40_PSIZE_LOG_4 STEDMA40_PSIZE_PHY_4 |
| 62 | #define STEDMA40_PSIZE_LOG_8 STEDMA40_PSIZE_PHY_8 |
| 63 | #define STEDMA40_PSIZE_LOG_16 STEDMA40_PSIZE_PHY_16 |
| 64 | |
Jonas Aaberg | 767a967 | 2010-08-09 12:08:34 +0000 | [diff] [blame] | 65 | /* Maximum number of possible physical channels */ |
| 66 | #define STEDMA40_MAX_PHYS 32 |
| 67 | |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 68 | enum stedma40_flow_ctrl { |
| 69 | STEDMA40_NO_FLOW_CTRL, |
| 70 | STEDMA40_FLOW_CTRL, |
| 71 | }; |
| 72 | |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 73 | enum stedma40_periph_data_width { |
| 74 | STEDMA40_BYTE_WIDTH = STEDMA40_ESIZE_8_BIT, |
| 75 | STEDMA40_HALFWORD_WIDTH = STEDMA40_ESIZE_16_BIT, |
| 76 | STEDMA40_WORD_WIDTH = STEDMA40_ESIZE_32_BIT, |
| 77 | STEDMA40_DOUBLEWORD_WIDTH = STEDMA40_ESIZE_64_BIT |
| 78 | }; |
| 79 | |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 80 | enum stedma40_xfer_dir { |
Linus Walleij | 0747c7ba | 2010-08-09 12:07:36 +0000 | [diff] [blame] | 81 | STEDMA40_MEM_TO_MEM = 1, |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 82 | STEDMA40_MEM_TO_PERIPH, |
| 83 | STEDMA40_PERIPH_TO_MEM, |
| 84 | STEDMA40_PERIPH_TO_PERIPH |
| 85 | }; |
| 86 | |
| 87 | |
| 88 | /** |
Jonas Aaberg | 3c0f240 | 2010-08-09 12:09:21 +0000 | [diff] [blame] | 89 | * struct stedma40_chan_cfg - dst/src channel configuration |
| 90 | * |
Rabin Vincent | 51f5d74 | 2010-10-12 13:00:54 +0000 | [diff] [blame] | 91 | * @big_endian: true if the src/dst should be read as big endian |
Jonas Aaberg | 3c0f240 | 2010-08-09 12:09:21 +0000 | [diff] [blame] | 92 | * @data_width: Data width of the src/dst hardware |
| 93 | * @p_size: Burst size |
| 94 | * @flow_ctrl: Flow control on/off. |
| 95 | */ |
| 96 | struct stedma40_half_channel_info { |
Rabin Vincent | 51f5d74 | 2010-10-12 13:00:54 +0000 | [diff] [blame] | 97 | bool big_endian; |
Jonas Aaberg | 3c0f240 | 2010-08-09 12:09:21 +0000 | [diff] [blame] | 98 | enum stedma40_periph_data_width data_width; |
| 99 | int psize; |
| 100 | enum stedma40_flow_ctrl flow_ctrl; |
| 101 | }; |
| 102 | |
| 103 | /** |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 104 | * struct stedma40_chan_cfg - Structure to be filled by client drivers. |
| 105 | * |
| 106 | * @dir: MEM 2 MEM, PERIPH 2 MEM , MEM 2 PERIPH, PERIPH 2 PERIPH |
Rabin Vincent | 730c187 | 2010-10-12 13:00:50 +0000 | [diff] [blame] | 107 | * @high_priority: true if high-priority |
Rabin Vincent | ac2c0a3 | 2011-01-25 11:18:11 +0100 | [diff] [blame] | 108 | * @realtime: true if realtime mode is to be enabled. Only available on DMA40 |
| 109 | * version 3+, i.e DB8500v2+ |
Rabin Vincent | 38bdbf0 | 2010-10-12 13:00:51 +0000 | [diff] [blame] | 110 | * @mode: channel mode: physical, logical, or operation |
Rabin Vincent | 20a5b6d | 2010-10-12 13:00:52 +0000 | [diff] [blame] | 111 | * @mode_opt: options for the chosen channel mode |
Lee Jones | 26955c07d | 2013-05-03 15:31:56 +0100 | [diff] [blame^] | 112 | * @dev_type: src/dst device type (driver uses dir to figure out which) |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 113 | * @src_info: Parameters for dst half channel |
| 114 | * @dst_info: Parameters for dst half channel |
Narayanan G | 5cd326f | 2011-11-30 19:20:42 +0530 | [diff] [blame] | 115 | * @use_fixed_channel: if true, use physical channel specified by phy_channel |
| 116 | * @phy_channel: physical channel to use, only if use_fixed_channel is true |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 117 | * |
| 118 | * This structure has to be filled by the client drivers. |
| 119 | * It is recommended to do all dma configurations for clients in the machine. |
| 120 | * |
| 121 | */ |
| 122 | struct stedma40_chan_cfg { |
| 123 | enum stedma40_xfer_dir dir; |
Rabin Vincent | 730c187 | 2010-10-12 13:00:50 +0000 | [diff] [blame] | 124 | bool high_priority; |
Rabin Vincent | ac2c0a3 | 2011-01-25 11:18:11 +0100 | [diff] [blame] | 125 | bool realtime; |
Rabin Vincent | 38bdbf0 | 2010-10-12 13:00:51 +0000 | [diff] [blame] | 126 | enum stedma40_mode mode; |
Rabin Vincent | 20a5b6d | 2010-10-12 13:00:52 +0000 | [diff] [blame] | 127 | enum stedma40_mode_opt mode_opt; |
Lee Jones | 26955c07d | 2013-05-03 15:31:56 +0100 | [diff] [blame^] | 128 | int dev_type; |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 129 | struct stedma40_half_channel_info src_info; |
| 130 | struct stedma40_half_channel_info dst_info; |
Narayanan G | 5cd326f | 2011-11-30 19:20:42 +0530 | [diff] [blame] | 131 | |
| 132 | bool use_fixed_channel; |
| 133 | int phy_channel; |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 134 | }; |
| 135 | |
| 136 | /** |
| 137 | * struct stedma40_platform_data - Configuration struct for the dma device. |
| 138 | * |
| 139 | * @dev_len: length of dev_tx and dev_rx |
| 140 | * @dev_tx: mapping between destination event line and io address |
| 141 | * @dev_rx: mapping between source event line and io address |
Jonas Aaberg | 5951672 | 2010-06-20 21:26:45 +0000 | [diff] [blame] | 142 | * @disabled_channels: A vector, ending with -1, that marks physical channels |
| 143 | * that are for different reasons not available for the driver. |
Fabio Baltieri | 7407048 | 2012-12-18 12:25:14 +0100 | [diff] [blame] | 144 | * @soft_lli_chans: A vector, that marks physical channels will use LLI by SW |
| 145 | * which avoids HW bug that exists in some versions of the controller. |
| 146 | * SoftLLI introduces relink overhead that could impact performace for |
| 147 | * certain use cases. |
| 148 | * @num_of_soft_lli_chans: The number of channels that needs to be configured |
| 149 | * to use SoftLLI. |
Fabio Baltieri | 762eb33 | 2012-12-13 11:38:39 +0100 | [diff] [blame] | 150 | * @use_esram_lcla: flag for mapping the lcla into esram region |
Gerald Baeza | 47db92f | 2012-09-21 21:21:37 +0200 | [diff] [blame] | 151 | * @num_of_phy_chans: The number of physical channels implemented in HW. |
| 152 | * 0 means reading the number of channels from DMA HW but this is only valid |
| 153 | * for 'multiple of 4' channels, like 8. |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 154 | */ |
| 155 | struct stedma40_platform_data { |
| 156 | u32 dev_len; |
| 157 | const dma_addr_t *dev_tx; |
| 158 | const dma_addr_t *dev_rx; |
Jonas Aaberg | 767a967 | 2010-08-09 12:08:34 +0000 | [diff] [blame] | 159 | int disabled_channels[STEDMA40_MAX_PHYS]; |
Fabio Baltieri | 7407048 | 2012-12-18 12:25:14 +0100 | [diff] [blame] | 160 | int *soft_lli_chans; |
| 161 | int num_of_soft_lli_chans; |
Narayanan G | 28c7a19 | 2011-11-22 13:56:55 +0530 | [diff] [blame] | 162 | bool use_esram_lcla; |
Gerald Baeza | 47db92f | 2012-09-21 21:21:37 +0200 | [diff] [blame] | 163 | int num_of_phy_chans; |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 164 | }; |
| 165 | |
Linus Walleij | 9646b79 | 2010-10-06 09:05:29 +0000 | [diff] [blame] | 166 | #ifdef CONFIG_STE_DMA40 |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 167 | |
| 168 | /** |
| 169 | * stedma40_filter() - Provides stedma40_chan_cfg to the |
| 170 | * ste_dma40 dma driver via the dmaengine framework. |
| 171 | * does some checking of what's provided. |
| 172 | * |
| 173 | * Never directly called by client. It used by dmaengine. |
| 174 | * @chan: dmaengine handle. |
| 175 | * @data: Must be of type: struct stedma40_chan_cfg and is |
| 176 | * the configuration of the framework. |
| 177 | * |
| 178 | * |
| 179 | */ |
| 180 | |
| 181 | bool stedma40_filter(struct dma_chan *chan, void *data); |
| 182 | |
| 183 | /** |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 184 | * stedma40_slave_mem() - Transfers a raw data buffer to or from a slave |
| 185 | * (=device) |
| 186 | * |
| 187 | * @chan: dmaengine handle |
| 188 | * @addr: source or destination physicall address. |
| 189 | * @size: bytes to transfer |
| 190 | * @direction: direction of transfer |
| 191 | * @flags: is actually enum dma_ctrl_flags. See dmaengine.h |
| 192 | */ |
| 193 | |
| 194 | static inline struct |
| 195 | dma_async_tx_descriptor *stedma40_slave_mem(struct dma_chan *chan, |
| 196 | dma_addr_t addr, |
| 197 | unsigned int size, |
Vinod Koul | db8196d | 2011-10-13 22:34:23 +0530 | [diff] [blame] | 198 | enum dma_transfer_direction direction, |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 199 | unsigned long flags) |
| 200 | { |
| 201 | struct scatterlist sg; |
| 202 | sg_init_table(&sg, 1); |
| 203 | sg.dma_address = addr; |
| 204 | sg.length = size; |
| 205 | |
Alexandre Bounine | 1605282 | 2012-03-08 16:11:18 -0500 | [diff] [blame] | 206 | return dmaengine_prep_slave_sg(chan, &sg, 1, direction, flags); |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 207 | } |
| 208 | |
Linus Walleij | 9646b79 | 2010-10-06 09:05:29 +0000 | [diff] [blame] | 209 | #else |
| 210 | static inline bool stedma40_filter(struct dma_chan *chan, void *data) |
| 211 | { |
| 212 | return false; |
| 213 | } |
| 214 | |
| 215 | static inline struct |
| 216 | dma_async_tx_descriptor *stedma40_slave_mem(struct dma_chan *chan, |
| 217 | dma_addr_t addr, |
| 218 | unsigned int size, |
Vinod Koul | db8196d | 2011-10-13 22:34:23 +0530 | [diff] [blame] | 219 | enum dma_transfer_direction direction, |
Linus Walleij | 9646b79 | 2010-10-06 09:05:29 +0000 | [diff] [blame] | 220 | unsigned long flags) |
| 221 | { |
| 222 | return NULL; |
| 223 | } |
| 224 | #endif |
| 225 | |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 226 | #endif |