ste_dma40.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. /*
  2. * Copyright (C) ST-Ericsson SA 2007-2010
  3. * Author: Per Forlin <per.forlin@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. #ifndef STE_DMA40_H
  8. #define STE_DMA40_H
  9. #include <linux/dmaengine.h>
  10. #include <linux/workqueue.h>
  11. #include <linux/interrupt.h>
  12. #include <linux/dmaengine.h>
  13. /* dev types for memcpy */
  14. #define STEDMA40_DEV_DST_MEMORY (-1)
  15. #define STEDMA40_DEV_SRC_MEMORY (-1)
  16. /*
  17. * Description of bitfields of channel_type variable is available in
  18. * the info structure.
  19. */
  20. enum stedma40_mode {
  21. STEDMA40_MODE_LOGICAL = 0,
  22. STEDMA40_MODE_PHYSICAL,
  23. STEDMA40_MODE_OPERATION,
  24. };
  25. enum stedma40_mode_opt {
  26. STEDMA40_PCHAN_BASIC_MODE = 0,
  27. STEDMA40_LCHAN_SRC_LOG_DST_LOG = 0,
  28. STEDMA40_PCHAN_MODULO_MODE,
  29. STEDMA40_PCHAN_DOUBLE_DST_MODE,
  30. STEDMA40_LCHAN_SRC_PHY_DST_LOG,
  31. STEDMA40_LCHAN_SRC_LOG_DST_PHY,
  32. };
  33. /* End of channel_type configuration */
  34. #define STEDMA40_ESIZE_8_BIT 0x0
  35. #define STEDMA40_ESIZE_16_BIT 0x1
  36. #define STEDMA40_ESIZE_32_BIT 0x2
  37. #define STEDMA40_ESIZE_64_BIT 0x3
  38. /* The value 4 indicates that PEN-reg shall be set to 0 */
  39. #define STEDMA40_PSIZE_PHY_1 0x4
  40. #define STEDMA40_PSIZE_PHY_2 0x0
  41. #define STEDMA40_PSIZE_PHY_4 0x1
  42. #define STEDMA40_PSIZE_PHY_8 0x2
  43. #define STEDMA40_PSIZE_PHY_16 0x3
  44. /*
  45. * The number of elements differ in logical and
  46. * physical mode
  47. */
  48. #define STEDMA40_PSIZE_LOG_1 STEDMA40_PSIZE_PHY_2
  49. #define STEDMA40_PSIZE_LOG_4 STEDMA40_PSIZE_PHY_4
  50. #define STEDMA40_PSIZE_LOG_8 STEDMA40_PSIZE_PHY_8
  51. #define STEDMA40_PSIZE_LOG_16 STEDMA40_PSIZE_PHY_16
  52. /* Maximum number of possible physical channels */
  53. #define STEDMA40_MAX_PHYS 32
  54. enum stedma40_flow_ctrl {
  55. STEDMA40_NO_FLOW_CTRL,
  56. STEDMA40_FLOW_CTRL,
  57. };
  58. enum stedma40_periph_data_width {
  59. STEDMA40_BYTE_WIDTH = STEDMA40_ESIZE_8_BIT,
  60. STEDMA40_HALFWORD_WIDTH = STEDMA40_ESIZE_16_BIT,
  61. STEDMA40_WORD_WIDTH = STEDMA40_ESIZE_32_BIT,
  62. STEDMA40_DOUBLEWORD_WIDTH = STEDMA40_ESIZE_64_BIT
  63. };
  64. enum stedma40_xfer_dir {
  65. STEDMA40_MEM_TO_MEM = 1,
  66. STEDMA40_MEM_TO_PERIPH,
  67. STEDMA40_PERIPH_TO_MEM,
  68. STEDMA40_PERIPH_TO_PERIPH
  69. };
  70. /**
  71. * struct stedma40_chan_cfg - dst/src channel configuration
  72. *
  73. * @big_endian: true if the src/dst should be read as big endian
  74. * @data_width: Data width of the src/dst hardware
  75. * @p_size: Burst size
  76. * @flow_ctrl: Flow control on/off.
  77. */
  78. struct stedma40_half_channel_info {
  79. bool big_endian;
  80. enum stedma40_periph_data_width data_width;
  81. int psize;
  82. enum stedma40_flow_ctrl flow_ctrl;
  83. };
  84. /**
  85. * struct stedma40_chan_cfg - Structure to be filled by client drivers.
  86. *
  87. * @dir: MEM 2 MEM, PERIPH 2 MEM , MEM 2 PERIPH, PERIPH 2 PERIPH
  88. * @channel_type: priority, mode, mode options and interrupt configuration.
  89. * @high_priority: true if high-priority
  90. * @mode: channel mode: physical, logical, or operation
  91. * @mode_opt: options for the chosen channel mode
  92. * @src_dev_type: Src device type
  93. * @dst_dev_type: Dst device type
  94. * @src_info: Parameters for dst half channel
  95. * @dst_info: Parameters for dst half channel
  96. *
  97. *
  98. * This structure has to be filled by the client drivers.
  99. * It is recommended to do all dma configurations for clients in the machine.
  100. *
  101. */
  102. struct stedma40_chan_cfg {
  103. enum stedma40_xfer_dir dir;
  104. unsigned int channel_type;
  105. bool high_priority;
  106. enum stedma40_mode mode;
  107. enum stedma40_mode_opt mode_opt;
  108. int src_dev_type;
  109. int dst_dev_type;
  110. struct stedma40_half_channel_info src_info;
  111. struct stedma40_half_channel_info dst_info;
  112. };
  113. /**
  114. * struct stedma40_platform_data - Configuration struct for the dma device.
  115. *
  116. * @dev_len: length of dev_tx and dev_rx
  117. * @dev_tx: mapping between destination event line and io address
  118. * @dev_rx: mapping between source event line and io address
  119. * @memcpy: list of memcpy event lines
  120. * @memcpy_len: length of memcpy
  121. * @memcpy_conf_phy: default configuration of physical channel memcpy
  122. * @memcpy_conf_log: default configuration of logical channel memcpy
  123. * @disabled_channels: A vector, ending with -1, that marks physical channels
  124. * that are for different reasons not available for the driver.
  125. */
  126. struct stedma40_platform_data {
  127. u32 dev_len;
  128. const dma_addr_t *dev_tx;
  129. const dma_addr_t *dev_rx;
  130. int *memcpy;
  131. u32 memcpy_len;
  132. struct stedma40_chan_cfg *memcpy_conf_phy;
  133. struct stedma40_chan_cfg *memcpy_conf_log;
  134. int disabled_channels[STEDMA40_MAX_PHYS];
  135. };
  136. #ifdef CONFIG_STE_DMA40
  137. /**
  138. * stedma40_filter() - Provides stedma40_chan_cfg to the
  139. * ste_dma40 dma driver via the dmaengine framework.
  140. * does some checking of what's provided.
  141. *
  142. * Never directly called by client. It used by dmaengine.
  143. * @chan: dmaengine handle.
  144. * @data: Must be of type: struct stedma40_chan_cfg and is
  145. * the configuration of the framework.
  146. *
  147. *
  148. */
  149. bool stedma40_filter(struct dma_chan *chan, void *data);
  150. /**
  151. * stedma40_memcpy_sg() - extension of the dma framework, memcpy to/from
  152. * scattergatter lists.
  153. *
  154. * @chan: dmaengine handle
  155. * @sgl_dst: Destination scatter list
  156. * @sgl_src: Source scatter list
  157. * @sgl_len: The length of each scatterlist. Both lists must be of equal length
  158. * and each element must match the corresponding element in the other scatter
  159. * list.
  160. * @flags: is actually enum dma_ctrl_flags. See dmaengine.h
  161. */
  162. struct dma_async_tx_descriptor *stedma40_memcpy_sg(struct dma_chan *chan,
  163. struct scatterlist *sgl_dst,
  164. struct scatterlist *sgl_src,
  165. unsigned int sgl_len,
  166. unsigned long flags);
  167. /**
  168. * stedma40_slave_mem() - Transfers a raw data buffer to or from a slave
  169. * (=device)
  170. *
  171. * @chan: dmaengine handle
  172. * @addr: source or destination physicall address.
  173. * @size: bytes to transfer
  174. * @direction: direction of transfer
  175. * @flags: is actually enum dma_ctrl_flags. See dmaengine.h
  176. */
  177. static inline struct
  178. dma_async_tx_descriptor *stedma40_slave_mem(struct dma_chan *chan,
  179. dma_addr_t addr,
  180. unsigned int size,
  181. enum dma_data_direction direction,
  182. unsigned long flags)
  183. {
  184. struct scatterlist sg;
  185. sg_init_table(&sg, 1);
  186. sg.dma_address = addr;
  187. sg.length = size;
  188. return chan->device->device_prep_slave_sg(chan, &sg, 1,
  189. direction, flags);
  190. }
  191. #else
  192. static inline bool stedma40_filter(struct dma_chan *chan, void *data)
  193. {
  194. return false;
  195. }
  196. static inline struct
  197. dma_async_tx_descriptor *stedma40_slave_mem(struct dma_chan *chan,
  198. dma_addr_t addr,
  199. unsigned int size,
  200. enum dma_data_direction direction,
  201. unsigned long flags)
  202. {
  203. return NULL;
  204. }
  205. #endif
  206. #endif