dw_dmac_regs.h 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  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. /* optional encoded params, 0x3c8..0x3 */
  74. };
  75. /* Bitfields in CTL_LO */
  76. #define DWC_CTLL_INT_EN (1 << 0) /* irqs enabled? */
  77. #define DWC_CTLL_DST_WIDTH(n) ((n)<<1) /* bytes per element */
  78. #define DWC_CTLL_SRC_WIDTH(n) ((n)<<4)
  79. #define DWC_CTLL_DST_INC (0<<7) /* DAR update/not */
  80. #define DWC_CTLL_DST_DEC (1<<7)
  81. #define DWC_CTLL_DST_FIX (2<<7)
  82. #define DWC_CTLL_SRC_INC (0<<7) /* SAR update/not */
  83. #define DWC_CTLL_SRC_DEC (1<<9)
  84. #define DWC_CTLL_SRC_FIX (2<<9)
  85. #define DWC_CTLL_DST_MSIZE(n) ((n)<<11) /* burst, #elements */
  86. #define DWC_CTLL_SRC_MSIZE(n) ((n)<<14)
  87. #define DWC_CTLL_S_GATH_EN (1 << 17) /* src gather, !FIX */
  88. #define DWC_CTLL_D_SCAT_EN (1 << 18) /* dst scatter, !FIX */
  89. #define DWC_CTLL_FC(n) ((n) << 20)
  90. #define DWC_CTLL_FC_M2M (0 << 20) /* mem-to-mem */
  91. #define DWC_CTLL_FC_M2P (1 << 20) /* mem-to-periph */
  92. #define DWC_CTLL_FC_P2M (2 << 20) /* periph-to-mem */
  93. #define DWC_CTLL_FC_P2P (3 << 20) /* periph-to-periph */
  94. /* plus 4 transfer types for peripheral-as-flow-controller */
  95. #define DWC_CTLL_DMS(n) ((n)<<23) /* dst master select */
  96. #define DWC_CTLL_SMS(n) ((n)<<25) /* src master select */
  97. #define DWC_CTLL_LLP_D_EN (1 << 27) /* dest block chain */
  98. #define DWC_CTLL_LLP_S_EN (1 << 28) /* src block chain */
  99. /* Bitfields in CTL_HI */
  100. #define DWC_CTLH_DONE 0x00001000
  101. #define DWC_CTLH_BLOCK_TS_MASK 0x00000fff
  102. /* Bitfields in CFG_LO. Platform-configurable bits are in <linux/dw_dmac.h> */
  103. #define DWC_CFGL_CH_PRIOR_MASK (0x7 << 5) /* priority mask */
  104. #define DWC_CFGL_CH_PRIOR(x) ((x) << 5) /* priority */
  105. #define DWC_CFGL_CH_SUSP (1 << 8) /* pause xfer */
  106. #define DWC_CFGL_FIFO_EMPTY (1 << 9) /* pause xfer */
  107. #define DWC_CFGL_HS_DST (1 << 10) /* handshake w/dst */
  108. #define DWC_CFGL_HS_SRC (1 << 11) /* handshake w/src */
  109. #define DWC_CFGL_MAX_BURST(x) ((x) << 20)
  110. #define DWC_CFGL_RELOAD_SAR (1 << 30)
  111. #define DWC_CFGL_RELOAD_DAR (1 << 31)
  112. /* Bitfields in CFG_HI. Platform-configurable bits are in <linux/dw_dmac.h> */
  113. #define DWC_CFGH_DS_UPD_EN (1 << 5)
  114. #define DWC_CFGH_SS_UPD_EN (1 << 6)
  115. /* Bitfields in SGR */
  116. #define DWC_SGR_SGI(x) ((x) << 0)
  117. #define DWC_SGR_SGC(x) ((x) << 20)
  118. /* Bitfields in DSR */
  119. #define DWC_DSR_DSI(x) ((x) << 0)
  120. #define DWC_DSR_DSC(x) ((x) << 20)
  121. /* Bitfields in CFG */
  122. #define DW_CFG_DMA_EN (1 << 0)
  123. #define DW_REGLEN 0x400
  124. enum dw_dmac_flags {
  125. DW_DMA_IS_CYCLIC = 0,
  126. };
  127. struct dw_dma_chan {
  128. struct dma_chan chan;
  129. void __iomem *ch_regs;
  130. u8 mask;
  131. u8 priority;
  132. bool paused;
  133. bool initialized;
  134. spinlock_t lock;
  135. /* these other elements are all protected by lock */
  136. unsigned long flags;
  137. struct list_head active_list;
  138. struct list_head queue;
  139. struct list_head free_list;
  140. struct dw_cyclic_desc *cdesc;
  141. unsigned int descs_allocated;
  142. /* configuration passed via DMA_SLAVE_CONFIG */
  143. struct dma_slave_config dma_sconfig;
  144. };
  145. static inline struct dw_dma_chan_regs __iomem *
  146. __dwc_regs(struct dw_dma_chan *dwc)
  147. {
  148. return dwc->ch_regs;
  149. }
  150. #define channel_readl(dwc, name) \
  151. readl(&(__dwc_regs(dwc)->name))
  152. #define channel_writel(dwc, name, val) \
  153. writel((val), &(__dwc_regs(dwc)->name))
  154. static inline struct dw_dma_chan *to_dw_dma_chan(struct dma_chan *chan)
  155. {
  156. return container_of(chan, struct dw_dma_chan, chan);
  157. }
  158. struct dw_dma {
  159. struct dma_device dma;
  160. void __iomem *regs;
  161. struct tasklet_struct tasklet;
  162. struct clk *clk;
  163. u8 all_chan_mask;
  164. struct dw_dma_chan chan[0];
  165. };
  166. static inline struct dw_dma_regs __iomem *__dw_regs(struct dw_dma *dw)
  167. {
  168. return dw->regs;
  169. }
  170. #define dma_readl(dw, name) \
  171. readl(&(__dw_regs(dw)->name))
  172. #define dma_writel(dw, name, val) \
  173. writel((val), &(__dw_regs(dw)->name))
  174. #define channel_set_bit(dw, reg, mask) \
  175. dma_writel(dw, reg, ((mask) << 8) | (mask))
  176. #define channel_clear_bit(dw, reg, mask) \
  177. dma_writel(dw, reg, ((mask) << 8) | 0)
  178. static inline struct dw_dma *to_dw_dma(struct dma_device *ddev)
  179. {
  180. return container_of(ddev, struct dw_dma, dma);
  181. }
  182. /* LLI == Linked List Item; a.k.a. DMA block descriptor */
  183. struct dw_lli {
  184. /* values that are not changed by hardware */
  185. dma_addr_t sar;
  186. dma_addr_t dar;
  187. dma_addr_t llp; /* chain to next lli */
  188. u32 ctllo;
  189. /* values that may get written back: */
  190. u32 ctlhi;
  191. /* sstat and dstat can snapshot peripheral register state.
  192. * silicon config may discard either or both...
  193. */
  194. u32 sstat;
  195. u32 dstat;
  196. };
  197. struct dw_desc {
  198. /* FIRST values the hardware uses */
  199. struct dw_lli lli;
  200. /* THEN values for driver housekeeping */
  201. struct list_head desc_node;
  202. struct list_head tx_list;
  203. struct dma_async_tx_descriptor txd;
  204. size_t len;
  205. };
  206. static inline struct dw_desc *
  207. txd_to_dw_desc(struct dma_async_tx_descriptor *txd)
  208. {
  209. return container_of(txd, struct dw_desc, txd);
  210. }