ste_dma40.h 6.2 KB

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