dma-ste-dma40.h 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  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/scatterlist.h>
  11. #include <linux/workqueue.h>
  12. #include <linux/interrupt.h>
  13. /*
  14. * Maxium size for a single dma descriptor
  15. * Size is limited to 16 bits.
  16. * Size is in the units of addr-widths (1,2,4,8 bytes)
  17. * Larger transfers will be split up to multiple linked desc
  18. */
  19. #define STEDMA40_MAX_SEG_SIZE 0xFFFF
  20. /* dev types for memcpy */
  21. #define STEDMA40_DEV_DST_MEMORY (-1)
  22. #define STEDMA40_DEV_SRC_MEMORY (-1)
  23. enum stedma40_mode {
  24. STEDMA40_MODE_LOGICAL = 0,
  25. STEDMA40_MODE_PHYSICAL,
  26. STEDMA40_MODE_OPERATION,
  27. };
  28. enum stedma40_mode_opt {
  29. STEDMA40_PCHAN_BASIC_MODE = 0,
  30. STEDMA40_LCHAN_SRC_LOG_DST_LOG = 0,
  31. STEDMA40_PCHAN_MODULO_MODE,
  32. STEDMA40_PCHAN_DOUBLE_DST_MODE,
  33. STEDMA40_LCHAN_SRC_PHY_DST_LOG,
  34. STEDMA40_LCHAN_SRC_LOG_DST_PHY,
  35. };
  36. #define STEDMA40_ESIZE_8_BIT 0x0
  37. #define STEDMA40_ESIZE_16_BIT 0x1
  38. #define STEDMA40_ESIZE_32_BIT 0x2
  39. #define STEDMA40_ESIZE_64_BIT 0x3
  40. /* The value 4 indicates that PEN-reg shall be set to 0 */
  41. #define STEDMA40_PSIZE_PHY_1 0x4
  42. #define STEDMA40_PSIZE_PHY_2 0x0
  43. #define STEDMA40_PSIZE_PHY_4 0x1
  44. #define STEDMA40_PSIZE_PHY_8 0x2
  45. #define STEDMA40_PSIZE_PHY_16 0x3
  46. /*
  47. * The number of elements differ in logical and
  48. * physical mode
  49. */
  50. #define STEDMA40_PSIZE_LOG_1 STEDMA40_PSIZE_PHY_2
  51. #define STEDMA40_PSIZE_LOG_4 STEDMA40_PSIZE_PHY_4
  52. #define STEDMA40_PSIZE_LOG_8 STEDMA40_PSIZE_PHY_8
  53. #define STEDMA40_PSIZE_LOG_16 STEDMA40_PSIZE_PHY_16
  54. /* Maximum number of possible physical channels */
  55. #define STEDMA40_MAX_PHYS 32
  56. enum stedma40_flow_ctrl {
  57. STEDMA40_NO_FLOW_CTRL,
  58. STEDMA40_FLOW_CTRL,
  59. };
  60. enum stedma40_periph_data_width {
  61. STEDMA40_BYTE_WIDTH = STEDMA40_ESIZE_8_BIT,
  62. STEDMA40_HALFWORD_WIDTH = STEDMA40_ESIZE_16_BIT,
  63. STEDMA40_WORD_WIDTH = STEDMA40_ESIZE_32_BIT,
  64. STEDMA40_DOUBLEWORD_WIDTH = STEDMA40_ESIZE_64_BIT
  65. };
  66. /**
  67. * struct stedma40_half_channel_info - dst/src channel configuration
  68. *
  69. * @big_endian: true if the src/dst should be read as big endian
  70. * @data_width: Data width of the src/dst hardware
  71. * @p_size: Burst size
  72. * @flow_ctrl: Flow control on/off.
  73. */
  74. struct stedma40_half_channel_info {
  75. bool big_endian;
  76. enum stedma40_periph_data_width data_width;
  77. int psize;
  78. enum stedma40_flow_ctrl flow_ctrl;
  79. };
  80. /**
  81. * struct stedma40_chan_cfg - Structure to be filled by client drivers.
  82. *
  83. * @dir: MEM 2 MEM, PERIPH 2 MEM , MEM 2 PERIPH, PERIPH 2 PERIPH
  84. * @high_priority: true if high-priority
  85. * @realtime: true if realtime mode is to be enabled. Only available on DMA40
  86. * version 3+, i.e DB8500v2+
  87. * @mode: channel mode: physical, logical, or operation
  88. * @mode_opt: options for the chosen channel mode
  89. * @dev_type: src/dst device type (driver uses dir to figure out which)
  90. * @src_info: Parameters for dst half channel
  91. * @dst_info: Parameters for dst half channel
  92. * @use_fixed_channel: if true, use physical channel specified by phy_channel
  93. * @phy_channel: physical channel to use, only if use_fixed_channel is true
  94. *
  95. * This structure has to be filled by the client drivers.
  96. * It is recommended to do all dma configurations for clients in the machine.
  97. *
  98. */
  99. struct stedma40_chan_cfg {
  100. enum dma_transfer_direction dir;
  101. bool high_priority;
  102. bool realtime;
  103. enum stedma40_mode mode;
  104. enum stedma40_mode_opt mode_opt;
  105. int dev_type;
  106. struct stedma40_half_channel_info src_info;
  107. struct stedma40_half_channel_info dst_info;
  108. bool use_fixed_channel;
  109. int phy_channel;
  110. };
  111. /**
  112. * struct stedma40_platform_data - Configuration struct for the dma device.
  113. *
  114. * @dev_tx: mapping between destination event line and io address
  115. * @dev_rx: mapping between source event line and io address
  116. * @disabled_channels: A vector, ending with -1, that marks physical channels
  117. * that are for different reasons not available for the driver.
  118. * @soft_lli_chans: A vector, that marks physical channels will use LLI by SW
  119. * which avoids HW bug that exists in some versions of the controller.
  120. * SoftLLI introduces relink overhead that could impact performace for
  121. * certain use cases.
  122. * @num_of_soft_lli_chans: The number of channels that needs to be configured
  123. * to use SoftLLI.
  124. * @use_esram_lcla: flag for mapping the lcla into esram region
  125. * @num_of_phy_chans: The number of physical channels implemented in HW.
  126. * 0 means reading the number of channels from DMA HW but this is only valid
  127. * for 'multiple of 4' channels, like 8.
  128. */
  129. struct stedma40_platform_data {
  130. int disabled_channels[STEDMA40_MAX_PHYS];
  131. int *soft_lli_chans;
  132. int num_of_soft_lli_chans;
  133. bool use_esram_lcla;
  134. int num_of_phy_chans;
  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_slave_mem() - Transfers a raw data buffer to or from a slave
  152. * (=device)
  153. *
  154. * @chan: dmaengine handle
  155. * @addr: source or destination physicall address.
  156. * @size: bytes to transfer
  157. * @direction: direction of transfer
  158. * @flags: is actually enum dma_ctrl_flags. See dmaengine.h
  159. */
  160. static inline struct
  161. dma_async_tx_descriptor *stedma40_slave_mem(struct dma_chan *chan,
  162. dma_addr_t addr,
  163. unsigned int size,
  164. enum dma_transfer_direction direction,
  165. unsigned long flags)
  166. {
  167. struct scatterlist sg;
  168. sg_init_table(&sg, 1);
  169. sg.dma_address = addr;
  170. sg.length = size;
  171. return dmaengine_prep_slave_sg(chan, &sg, 1, direction, flags);
  172. }
  173. #else
  174. static inline bool stedma40_filter(struct dma_chan *chan, void *data)
  175. {
  176. return false;
  177. }
  178. static inline struct
  179. dma_async_tx_descriptor *stedma40_slave_mem(struct dma_chan *chan,
  180. dma_addr_t addr,
  181. unsigned int size,
  182. enum dma_transfer_direction direction,
  183. unsigned long flags)
  184. {
  185. return NULL;
  186. }
  187. #endif
  188. #endif