ste_dma40.h 7.3 KB

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