dma.h 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. /* $Id: dma.h,v 1.21 2001/12/13 04:16:52 davem Exp $
  2. * include/asm-sparc64/dma.h
  3. *
  4. * Copyright 1996 (C) David S. Miller (davem@caip.rutgers.edu)
  5. */
  6. #ifndef _ASM_SPARC64_DMA_H
  7. #define _ASM_SPARC64_DMA_H
  8. #include <linux/kernel.h>
  9. #include <linux/types.h>
  10. #include <linux/spinlock.h>
  11. #include <asm/sbus.h>
  12. #include <asm/delay.h>
  13. #include <asm/oplib.h>
  14. /* These are irrelevant for Sparc DMA, but we leave it in so that
  15. * things can compile.
  16. */
  17. #define MAX_DMA_CHANNELS 8
  18. #define DMA_MODE_READ 1
  19. #define DMA_MODE_WRITE 2
  20. #define MAX_DMA_ADDRESS (~0UL)
  21. /* Useful constants */
  22. #define SIZE_16MB (16*1024*1024)
  23. #define SIZE_64K (64*1024)
  24. /* SBUS DMA controller reg offsets */
  25. #define DMA_CSR 0x00UL /* rw DMA control/status register 0x00 */
  26. #define DMA_ADDR 0x04UL /* rw DMA transfer address register 0x04 */
  27. #define DMA_COUNT 0x08UL /* rw DMA transfer count register 0x08 */
  28. #define DMA_TEST 0x0cUL /* rw DMA test/debug register 0x0c */
  29. /* DVMA chip revisions */
  30. enum dvma_rev {
  31. dvmarev0,
  32. dvmaesc1,
  33. dvmarev1,
  34. dvmarev2,
  35. dvmarev3,
  36. dvmarevplus,
  37. dvmahme
  38. };
  39. #define DMA_HASCOUNT(rev) ((rev)==dvmaesc1)
  40. /* Linux DMA information structure, filled during probe. */
  41. struct sbus_dma {
  42. struct sbus_dma *next;
  43. struct sbus_dev *sdev;
  44. void __iomem *regs;
  45. /* Status, misc info */
  46. int node; /* Prom node for this DMA device */
  47. int running; /* Are we doing DMA now? */
  48. int allocated; /* Are we "owned" by anyone yet? */
  49. /* Transfer information. */
  50. u32 addr; /* Start address of current transfer */
  51. int nbytes; /* Size of current transfer */
  52. int realbytes; /* For splitting up large transfers, etc. */
  53. /* DMA revision */
  54. enum dvma_rev revision;
  55. };
  56. extern struct sbus_dma *dma_chain;
  57. /* Broken hardware... */
  58. #define DMA_ISBROKEN(dma) ((dma)->revision == dvmarev1)
  59. #define DMA_ISESC1(dma) ((dma)->revision == dvmaesc1)
  60. /* Main routines in dma.c */
  61. extern void dvma_init(struct sbus_bus *);
  62. /* Fields in the cond_reg register */
  63. /* First, the version identification bits */
  64. #define DMA_DEVICE_ID 0xf0000000 /* Device identification bits */
  65. #define DMA_VERS0 0x00000000 /* Sunray DMA version */
  66. #define DMA_ESCV1 0x40000000 /* DMA ESC Version 1 */
  67. #define DMA_VERS1 0x80000000 /* DMA rev 1 */
  68. #define DMA_VERS2 0xa0000000 /* DMA rev 2 */
  69. #define DMA_VERHME 0xb0000000 /* DMA hme gate array */
  70. #define DMA_VERSPLUS 0x90000000 /* DMA rev 1 PLUS */
  71. #define DMA_HNDL_INTR 0x00000001 /* An IRQ needs to be handled */
  72. #define DMA_HNDL_ERROR 0x00000002 /* We need to take an error */
  73. #define DMA_FIFO_ISDRAIN 0x0000000c /* The DMA FIFO is draining */
  74. #define DMA_INT_ENAB 0x00000010 /* Turn on interrupts */
  75. #define DMA_FIFO_INV 0x00000020 /* Invalidate the FIFO */
  76. #define DMA_ACC_SZ_ERR 0x00000040 /* The access size was bad */
  77. #define DMA_FIFO_STDRAIN 0x00000040 /* DMA_VERS1 Drain the FIFO */
  78. #define DMA_RST_SCSI 0x00000080 /* Reset the SCSI controller */
  79. #define DMA_RST_ENET DMA_RST_SCSI /* Reset the ENET controller */
  80. #define DMA_ST_WRITE 0x00000100 /* write from device to memory */
  81. #define DMA_ENABLE 0x00000200 /* Fire up DMA, handle requests */
  82. #define DMA_PEND_READ 0x00000400 /* DMA_VERS1/0/PLUS Pending Read */
  83. #define DMA_ESC_BURST 0x00000800 /* 1=16byte 0=32byte */
  84. #define DMA_READ_AHEAD 0x00001800 /* DMA read ahead partial longword */
  85. #define DMA_DSBL_RD_DRN 0x00001000 /* No EC drain on slave reads */
  86. #define DMA_BCNT_ENAB 0x00002000 /* If on, use the byte counter */
  87. #define DMA_TERM_CNTR 0x00004000 /* Terminal counter */
  88. #define DMA_SCSI_SBUS64 0x00008000 /* HME: Enable 64-bit SBUS mode. */
  89. #define DMA_CSR_DISAB 0x00010000 /* No FIFO drains during csr */
  90. #define DMA_SCSI_DISAB 0x00020000 /* No FIFO drains during reg */
  91. #define DMA_DSBL_WR_INV 0x00020000 /* No EC inval. on slave writes */
  92. #define DMA_ADD_ENABLE 0x00040000 /* Special ESC DVMA optimization */
  93. #define DMA_E_BURSTS 0x000c0000 /* ENET: SBUS r/w burst mask */
  94. #define DMA_E_BURST32 0x00040000 /* ENET: SBUS 32 byte r/w burst */
  95. #define DMA_E_BURST16 0x00000000 /* ENET: SBUS 16 byte r/w burst */
  96. #define DMA_BRST_SZ 0x000c0000 /* SCSI: SBUS r/w burst size */
  97. #define DMA_BRST64 0x000c0000 /* SCSI: 64byte bursts (HME on UltraSparc only) */
  98. #define DMA_BRST32 0x00040000 /* SCSI: 32byte bursts */
  99. #define DMA_BRST16 0x00000000 /* SCSI: 16byte bursts */
  100. #define DMA_BRST0 0x00080000 /* SCSI: no bursts (non-HME gate arrays) */
  101. #define DMA_ADDR_DISAB 0x00100000 /* No FIFO drains during addr */
  102. #define DMA_2CLKS 0x00200000 /* Each transfer = 2 clock ticks */
  103. #define DMA_3CLKS 0x00400000 /* Each transfer = 3 clock ticks */
  104. #define DMA_EN_ENETAUI DMA_3CLKS /* Put lance into AUI-cable mode */
  105. #define DMA_CNTR_DISAB 0x00800000 /* No IRQ when DMA_TERM_CNTR set */
  106. #define DMA_AUTO_NADDR 0x01000000 /* Use "auto nxt addr" feature */
  107. #define DMA_SCSI_ON 0x02000000 /* Enable SCSI dma */
  108. #define DMA_PARITY_OFF 0x02000000 /* HME: disable parity checking */
  109. #define DMA_LOADED_ADDR 0x04000000 /* Address has been loaded */
  110. #define DMA_LOADED_NADDR 0x08000000 /* Next address has been loaded */
  111. #define DMA_RESET_FAS366 0x08000000 /* HME: Assert RESET to FAS366 */
  112. /* Values describing the burst-size property from the PROM */
  113. #define DMA_BURST1 0x01
  114. #define DMA_BURST2 0x02
  115. #define DMA_BURST4 0x04
  116. #define DMA_BURST8 0x08
  117. #define DMA_BURST16 0x10
  118. #define DMA_BURST32 0x20
  119. #define DMA_BURST64 0x40
  120. #define DMA_BURSTBITS 0x7f
  121. /* Determine highest possible final transfer address given a base */
  122. #define DMA_MAXEND(addr) (0x01000000UL-(((unsigned long)(addr))&0x00ffffffUL))
  123. /* Yes, I hack a lot of elisp in my spare time... */
  124. #define DMA_ERROR_P(regs) ((sbus_readl((regs) + DMA_CSR) & DMA_HNDL_ERROR))
  125. #define DMA_IRQ_P(regs) ((sbus_readl((regs) + DMA_CSR)) & (DMA_HNDL_INTR | DMA_HNDL_ERROR))
  126. #define DMA_WRITE_P(regs) ((sbus_readl((regs) + DMA_CSR) & DMA_ST_WRITE))
  127. #define DMA_OFF(__regs) \
  128. do { u32 tmp = sbus_readl((__regs) + DMA_CSR); \
  129. tmp &= ~DMA_ENABLE; \
  130. sbus_writel(tmp, (__regs) + DMA_CSR); \
  131. } while(0)
  132. #define DMA_INTSOFF(__regs) \
  133. do { u32 tmp = sbus_readl((__regs) + DMA_CSR); \
  134. tmp &= ~DMA_INT_ENAB; \
  135. sbus_writel(tmp, (__regs) + DMA_CSR); \
  136. } while(0)
  137. #define DMA_INTSON(__regs) \
  138. do { u32 tmp = sbus_readl((__regs) + DMA_CSR); \
  139. tmp |= DMA_INT_ENAB; \
  140. sbus_writel(tmp, (__regs) + DMA_CSR); \
  141. } while(0)
  142. #define DMA_PUNTFIFO(__regs) \
  143. do { u32 tmp = sbus_readl((__regs) + DMA_CSR); \
  144. tmp |= DMA_FIFO_INV; \
  145. sbus_writel(tmp, (__regs) + DMA_CSR); \
  146. } while(0)
  147. #define DMA_SETSTART(__regs, __addr) \
  148. sbus_writel((u32)(__addr), (__regs) + DMA_ADDR);
  149. #define DMA_BEGINDMA_W(__regs) \
  150. do { u32 tmp = sbus_readl((__regs) + DMA_CSR); \
  151. tmp |= (DMA_ST_WRITE|DMA_ENABLE|DMA_INT_ENAB); \
  152. sbus_writel(tmp, (__regs) + DMA_CSR); \
  153. } while(0)
  154. #define DMA_BEGINDMA_R(__regs) \
  155. do { u32 tmp = sbus_readl((__regs) + DMA_CSR); \
  156. tmp |= (DMA_ENABLE|DMA_INT_ENAB); \
  157. tmp &= ~DMA_ST_WRITE; \
  158. sbus_writel(tmp, (__regs) + DMA_CSR); \
  159. } while(0)
  160. /* For certain DMA chips, we need to disable ints upon irq entry
  161. * and turn them back on when we are done. So in any ESP interrupt
  162. * handler you *must* call DMA_IRQ_ENTRY upon entry and DMA_IRQ_EXIT
  163. * when leaving the handler. You have been warned...
  164. */
  165. #define DMA_IRQ_ENTRY(dma, dregs) do { \
  166. if(DMA_ISBROKEN(dma)) DMA_INTSOFF(dregs); \
  167. } while (0)
  168. #define DMA_IRQ_EXIT(dma, dregs) do { \
  169. if(DMA_ISBROKEN(dma)) DMA_INTSON(dregs); \
  170. } while(0)
  171. #define for_each_dvma(dma) \
  172. for((dma) = dma_chain; (dma); (dma) = (dma)->next)
  173. /* From PCI */
  174. #ifdef CONFIG_PCI
  175. extern int isa_dma_bridge_buggy;
  176. #else
  177. #define isa_dma_bridge_buggy (0)
  178. #endif
  179. #endif /* !(_ASM_SPARC64_DMA_H) */