dw_dmac_regs.h 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. /*
  2. * Driver for the Synopsys DesignWare AHB DMA Controller
  3. *
  4. * Copyright (C) 2005-2007 Atmel Corporation
  5. * Copyright (C) 2010-2011 ST Microelectronics
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #include <linux/dw_dmac.h>
  12. #define DW_DMA_MAX_NR_CHANNELS 8
  13. /* flow controller */
  14. enum dw_dma_fc {
  15. DW_DMA_FC_D_M2M,
  16. DW_DMA_FC_D_M2P,
  17. DW_DMA_FC_D_P2M,
  18. DW_DMA_FC_D_P2P,
  19. DW_DMA_FC_P_P2M,
  20. DW_DMA_FC_SP_P2P,
  21. DW_DMA_FC_P_M2P,
  22. DW_DMA_FC_DP_P2P,
  23. };
  24. /*
  25. * Redefine this macro to handle differences between 32- and 64-bit
  26. * addressing, big vs. little endian, etc.
  27. */
  28. #define DW_REG(name) u32 name; u32 __pad_##name
  29. /* Hardware register definitions. */
  30. struct dw_dma_chan_regs {
  31. DW_REG(SAR); /* Source Address Register */
  32. DW_REG(DAR); /* Destination Address Register */
  33. DW_REG(LLP); /* Linked List Pointer */
  34. u32 CTL_LO; /* Control Register Low */
  35. u32 CTL_HI; /* Control Register High */
  36. DW_REG(SSTAT);
  37. DW_REG(DSTAT);
  38. DW_REG(SSTATAR);
  39. DW_REG(DSTATAR);
  40. u32 CFG_LO; /* Configuration Register Low */
  41. u32 CFG_HI; /* Configuration Register High */
  42. DW_REG(SGR);
  43. DW_REG(DSR);
  44. };
  45. struct dw_dma_irq_regs {
  46. DW_REG(XFER);
  47. DW_REG(BLOCK);
  48. DW_REG(SRC_TRAN);
  49. DW_REG(DST_TRAN);
  50. DW_REG(ERROR);
  51. };
  52. struct dw_dma_regs {
  53. /* per-channel registers */
  54. struct dw_dma_chan_regs CHAN[DW_DMA_MAX_NR_CHANNELS];
  55. /* irq handling */
  56. struct dw_dma_irq_regs RAW; /* r */
  57. struct dw_dma_irq_regs STATUS; /* r (raw & mask) */
  58. struct dw_dma_irq_regs MASK; /* rw (set = irq enabled) */
  59. struct dw_dma_irq_regs CLEAR; /* w (ack, affects "raw") */
  60. DW_REG(STATUS_INT); /* r */
  61. /* software handshaking */
  62. DW_REG(REQ_SRC);
  63. DW_REG(REQ_DST);
  64. DW_REG(SGL_REQ_SRC);
  65. DW_REG(SGL_REQ_DST);
  66. DW_REG(LAST_SRC);
  67. DW_REG(LAST_DST);
  68. /* miscellaneous */
  69. DW_REG(CFG);
  70. DW_REG(CH_EN);
  71. DW_REG(ID);
  72. DW_REG(TEST);
  73. /* reserved */
  74. DW_REG(__reserved0);
  75. DW_REG(__reserved1);
  76. /* optional encoded params, 0x3c8..0x3f7 */
  77. u32 __reserved;
  78. /* per-channel configuration registers */
  79. u32 DWC_PARAMS[DW_DMA_MAX_NR_CHANNELS];
  80. u32 MULTI_BLK_TYPE;
  81. u32 MAX_BLK_SIZE;
  82. /* top-level parameters */
  83. u32 DW_PARAMS;
  84. };
  85. #ifdef CONFIG_DW_DMAC_BIG_ENDIAN_IO
  86. #define dma_readl_native ioread32be
  87. #define dma_writel_native iowrite32be
  88. #else
  89. #define dma_readl_native readl
  90. #define dma_writel_native writel
  91. #endif
  92. /* To access the registers in early stage of probe */
  93. #define dma_read_byaddr(addr, name) \
  94. dma_readl_native((addr) + offsetof(struct dw_dma_regs, name))
  95. /* Bitfields in DW_PARAMS */
  96. #define DW_PARAMS_NR_CHAN 8 /* number of channels */
  97. #define DW_PARAMS_NR_MASTER 11 /* number of AHB masters */
  98. #define DW_PARAMS_DATA_WIDTH(n) (15 + 2 * (n))
  99. #define DW_PARAMS_DATA_WIDTH1 15 /* master 1 data width */
  100. #define DW_PARAMS_DATA_WIDTH2 17 /* master 2 data width */
  101. #define DW_PARAMS_DATA_WIDTH3 19 /* master 3 data width */
  102. #define DW_PARAMS_DATA_WIDTH4 21 /* master 4 data width */
  103. #define DW_PARAMS_EN 28 /* encoded parameters */
  104. /* Bitfields in DWC_PARAMS */
  105. #define DWC_PARAMS_MBLK_EN 11 /* multi block transfer */
  106. /* Bitfields in CTL_LO */
  107. #define DWC_CTLL_INT_EN (1 << 0) /* irqs enabled? */
  108. #define DWC_CTLL_DST_WIDTH(n) ((n)<<1) /* bytes per element */
  109. #define DWC_CTLL_SRC_WIDTH(n) ((n)<<4)
  110. #define DWC_CTLL_DST_INC (0<<7) /* DAR update/not */
  111. #define DWC_CTLL_DST_DEC (1<<7)
  112. #define DWC_CTLL_DST_FIX (2<<7)
  113. #define DWC_CTLL_SRC_INC (0<<7) /* SAR update/not */
  114. #define DWC_CTLL_SRC_DEC (1<<9)
  115. #define DWC_CTLL_SRC_FIX (2<<9)
  116. #define DWC_CTLL_DST_MSIZE(n) ((n)<<11) /* burst, #elements */
  117. #define DWC_CTLL_SRC_MSIZE(n) ((n)<<14)
  118. #define DWC_CTLL_S_GATH_EN (1 << 17) /* src gather, !FIX */
  119. #define DWC_CTLL_D_SCAT_EN (1 << 18) /* dst scatter, !FIX */
  120. #define DWC_CTLL_FC(n) ((n) << 20)
  121. #define DWC_CTLL_FC_M2M (0 << 20) /* mem-to-mem */
  122. #define DWC_CTLL_FC_M2P (1 << 20) /* mem-to-periph */
  123. #define DWC_CTLL_FC_P2M (2 << 20) /* periph-to-mem */
  124. #define DWC_CTLL_FC_P2P (3 << 20) /* periph-to-periph */
  125. /* plus 4 transfer types for peripheral-as-flow-controller */
  126. #define DWC_CTLL_DMS(n) ((n)<<23) /* dst master select */
  127. #define DWC_CTLL_SMS(n) ((n)<<25) /* src master select */
  128. #define DWC_CTLL_LLP_D_EN (1 << 27) /* dest block chain */
  129. #define DWC_CTLL_LLP_S_EN (1 << 28) /* src block chain */
  130. /* Bitfields in CTL_HI */
  131. #define DWC_CTLH_DONE 0x00001000
  132. #define DWC_CTLH_BLOCK_TS_MASK 0x00000fff
  133. /* Bitfields in CFG_LO. Platform-configurable bits are in <linux/dw_dmac.h> */
  134. #define DWC_CFGL_CH_PRIOR_MASK (0x7 << 5) /* priority mask */
  135. #define DWC_CFGL_CH_PRIOR(x) ((x) << 5) /* priority */
  136. #define DWC_CFGL_CH_SUSP (1 << 8) /* pause xfer */
  137. #define DWC_CFGL_FIFO_EMPTY (1 << 9) /* pause xfer */
  138. #define DWC_CFGL_HS_DST (1 << 10) /* handshake w/dst */
  139. #define DWC_CFGL_HS_SRC (1 << 11) /* handshake w/src */
  140. #define DWC_CFGL_MAX_BURST(x) ((x) << 20)
  141. #define DWC_CFGL_RELOAD_SAR (1 << 30)
  142. #define DWC_CFGL_RELOAD_DAR (1 << 31)
  143. /* Bitfields in CFG_HI. Platform-configurable bits are in <linux/dw_dmac.h> */
  144. #define DWC_CFGH_DS_UPD_EN (1 << 5)
  145. #define DWC_CFGH_SS_UPD_EN (1 << 6)
  146. /* Bitfields in SGR */
  147. #define DWC_SGR_SGI(x) ((x) << 0)
  148. #define DWC_SGR_SGC(x) ((x) << 20)
  149. /* Bitfields in DSR */
  150. #define DWC_DSR_DSI(x) ((x) << 0)
  151. #define DWC_DSR_DSC(x) ((x) << 20)
  152. /* Bitfields in CFG */
  153. #define DW_CFG_DMA_EN (1 << 0)
  154. enum dw_dmac_flags {
  155. DW_DMA_IS_CYCLIC = 0,
  156. DW_DMA_IS_SOFT_LLP = 1,
  157. };
  158. struct dw_dma_chan {
  159. struct dma_chan chan;
  160. void __iomem *ch_regs;
  161. u8 mask;
  162. u8 priority;
  163. bool paused;
  164. bool initialized;
  165. /* software emulation of the LLP transfers */
  166. struct list_head *tx_list;
  167. struct list_head *tx_node_active;
  168. spinlock_t lock;
  169. /* these other elements are all protected by lock */
  170. unsigned long flags;
  171. struct list_head active_list;
  172. struct list_head queue;
  173. struct list_head free_list;
  174. struct dw_cyclic_desc *cdesc;
  175. unsigned int descs_allocated;
  176. /* hardware configuration */
  177. unsigned int block_size;
  178. bool nollp;
  179. /* configuration passed via DMA_SLAVE_CONFIG */
  180. struct dma_slave_config dma_sconfig;
  181. /* backlink to dw_dma */
  182. struct dw_dma *dw;
  183. };
  184. static inline struct dw_dma_chan_regs __iomem *
  185. __dwc_regs(struct dw_dma_chan *dwc)
  186. {
  187. return dwc->ch_regs;
  188. }
  189. #define channel_readl(dwc, name) \
  190. dma_readl_native(&(__dwc_regs(dwc)->name))
  191. #define channel_writel(dwc, name, val) \
  192. dma_writel_native((val), &(__dwc_regs(dwc)->name))
  193. static inline struct dw_dma_chan *to_dw_dma_chan(struct dma_chan *chan)
  194. {
  195. return container_of(chan, struct dw_dma_chan, chan);
  196. }
  197. struct dw_dma {
  198. struct dma_device dma;
  199. void __iomem *regs;
  200. struct tasklet_struct tasklet;
  201. struct clk *clk;
  202. u8 all_chan_mask;
  203. /* hardware configuration */
  204. unsigned char nr_masters;
  205. unsigned char data_width[4];
  206. struct dw_dma_chan chan[0];
  207. };
  208. static inline struct dw_dma_regs __iomem *__dw_regs(struct dw_dma *dw)
  209. {
  210. return dw->regs;
  211. }
  212. #define dma_readl(dw, name) \
  213. dma_readl_native(&(__dw_regs(dw)->name))
  214. #define dma_writel(dw, name, val) \
  215. dma_writel_native((val), &(__dw_regs(dw)->name))
  216. #define channel_set_bit(dw, reg, mask) \
  217. dma_writel(dw, reg, ((mask) << 8) | (mask))
  218. #define channel_clear_bit(dw, reg, mask) \
  219. dma_writel(dw, reg, ((mask) << 8) | 0)
  220. static inline struct dw_dma *to_dw_dma(struct dma_device *ddev)
  221. {
  222. return container_of(ddev, struct dw_dma, dma);
  223. }
  224. /* LLI == Linked List Item; a.k.a. DMA block descriptor */
  225. struct dw_lli {
  226. /* values that are not changed by hardware */
  227. u32 sar;
  228. u32 dar;
  229. u32 llp; /* chain to next lli */
  230. u32 ctllo;
  231. /* values that may get written back: */
  232. u32 ctlhi;
  233. /* sstat and dstat can snapshot peripheral register state.
  234. * silicon config may discard either or both...
  235. */
  236. u32 sstat;
  237. u32 dstat;
  238. };
  239. struct dw_desc {
  240. /* FIRST values the hardware uses */
  241. struct dw_lli lli;
  242. /* THEN values for driver housekeeping */
  243. struct list_head desc_node;
  244. struct list_head tx_list;
  245. struct dma_async_tx_descriptor txd;
  246. size_t len;
  247. };
  248. static inline struct dw_desc *
  249. txd_to_dw_desc(struct dma_async_tx_descriptor *txd)
  250. {
  251. return container_of(txd, struct dw_desc, txd);
  252. }