apollodma.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:9k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: dma.h,v 1.7 1992/12/14 00:29:34 root Exp root $
  2.  * linux/include/asm/dma.h: Defines for using and allocating dma channels.
  3.  * Written by Hennus Bergman, 1992.
  4.  * High DMA channel support & info by Hannu Savolainen
  5.  * and John Boyd, Nov. 1992.
  6.  */
  7. #ifndef _ASM_APOLLO_DMA_H
  8. #define _ASM_APOLLO_DMA_H
  9. #include <asm/apollohw.h> /* need byte IO */
  10. #include <asm/spinlock.h> /* And spinlocks */
  11. #include <linux/delay.h>
  12. #define dma_outb(val,addr) (*((volatile unsigned char *)(addr+IO_BASE)) = (val))
  13. #define dma_inb(addr)    (*((volatile unsigned char *)(addr+IO_BASE)))
  14. /*
  15.  * NOTES about DMA transfers:
  16.  *
  17.  *  controller 1: channels 0-3, byte operations, ports 00-1F
  18.  *  controller 2: channels 4-7, word operations, ports C0-DF
  19.  *
  20.  *  - ALL registers are 8 bits only, regardless of transfer size
  21.  *  - channel 4 is not used - cascades 1 into 2.
  22.  *  - channels 0-3 are byte - addresses/counts are for physical bytes
  23.  *  - channels 5-7 are word - addresses/counts are for physical words
  24.  *  - transfers must not cross physical 64K (0-3) or 128K (5-7) boundaries
  25.  *  - transfer count loaded to registers is 1 less than actual count
  26.  *  - controller 2 offsets are all even (2x offsets for controller 1)
  27.  *  - page registers for 5-7 don't use data bit 0, represent 128K pages
  28.  *  - page registers for 0-3 use bit 0, represent 64K pages
  29.  *
  30.  * DMA transfers are limited to the lower 16MB of _physical_ memory.  
  31.  * Note that addresses loaded into registers must be _physical_ addresses,
  32.  * not logical addresses (which may differ if paging is active).
  33.  *
  34.  *  Address mapping for channels 0-3:
  35.  *
  36.  *   A23 ... A16 A15 ... A8  A7 ... A0    (Physical addresses)
  37.  *    |  ...  |   |  ... |   |  ... |
  38.  *    |  ...  |   |  ... |   |  ... |
  39.  *    |  ...  |   |  ... |   |  ... |
  40.  *   P7  ...  P0  A7 ... A0  A7 ... A0   
  41.  * |    Page    | Addr MSB | Addr LSB |   (DMA registers)
  42.  *
  43.  *  Address mapping for channels 5-7:
  44.  *
  45.  *   A23 ... A17 A16 A15 ... A9 A8 A7 ... A1 A0    (Physical addresses)
  46.  *    |  ...  |         ...       ...   
  47.  *    |  ...  |          ...       ...   (not used)
  48.  *    |  ...  |           ...       ... 
  49.  *   P7  ...  P1 (0) A7 A6  ... A0 A7 A6 ... A0   
  50.  * |      Page      |  Addr MSB   |  Addr LSB  |   (DMA registers)
  51.  *
  52.  * Again, channels 5-7 transfer _physical_ words (16 bits), so addresses
  53.  * and counts _must_ be word-aligned (the lowest address bit is _ignored_ at
  54.  * the hardware level, so odd-byte transfers aren't possible).
  55.  *
  56.  * Transfer count (_not # bytes_) is limited to 64K, represented as actual
  57.  * count - 1 : 64K => 0xFFFF, 1 => 0x0000.  Thus, count is always 1 or more,
  58.  * and up to 128K bytes may be transferred on channels 5-7 in one operation. 
  59.  *
  60.  */
  61. #define MAX_DMA_CHANNELS 8
  62. /* The maximum address that we can perform a DMA transfer to on this platform */#define MAX_DMA_ADDRESS      (PAGE_OFFSET+0x1000000)
  63. /* 8237 DMA controllers */
  64. #define IO_DMA1_BASE 0x10C00 /* 8 bit slave DMA, channels 0..3 */
  65. #define IO_DMA2_BASE 0x10D00 /* 16 bit master DMA, ch 4(=slave input)..7 */
  66. /* DMA controller registers */
  67. #define DMA1_CMD_REG (IO_DMA1_BASE+0x08) /* command register (w) */
  68. #define DMA1_STAT_REG (IO_DMA1_BASE+0x08) /* status register (r) */
  69. #define DMA1_REQ_REG            (IO_DMA1_BASE+0x09) /* request register (w) */
  70. #define DMA1_MASK_REG (IO_DMA1_BASE+0x0A) /* single-channel mask (w) */
  71. #define DMA1_MODE_REG (IO_DMA1_BASE+0x0B) /* mode register (w) */
  72. #define DMA1_CLEAR_FF_REG (IO_DMA1_BASE+0x0C) /* clear pointer flip-flop (w) */
  73. #define DMA1_TEMP_REG           (IO_DMA1_BASE+0x0D) /* Temporary Register (r) */
  74. #define DMA1_RESET_REG (IO_DMA1_BASE+0x0D) /* Master Clear (w) */
  75. #define DMA1_CLR_MASK_REG       (IO_DMA1_BASE+0x0E) /* Clear Mask */
  76. #define DMA1_MASK_ALL_REG       (IO_DMA1_BASE+0x0F) /* all-channels mask (w) */
  77. #define DMA2_CMD_REG (IO_DMA2_BASE+0x10) /* command register (w) */
  78. #define DMA2_STAT_REG (IO_DMA2_BASE+0x10) /* status register (r) */
  79. #define DMA2_REQ_REG            (IO_DMA2_BASE+0x12) /* request register (w) */
  80. #define DMA2_MASK_REG (IO_DMA2_BASE+0x14) /* single-channel mask (w) */
  81. #define DMA2_MODE_REG (IO_DMA2_BASE+0x16) /* mode register (w) */
  82. #define DMA2_CLEAR_FF_REG (IO_DMA2_BASE+0x18) /* clear pointer flip-flop (w) */
  83. #define DMA2_TEMP_REG           (IO_DMA2_BASE+0x1A) /* Temporary Register (r) */
  84. #define DMA2_RESET_REG (IO_DMA2_BASE+0x1A) /* Master Clear (w) */
  85. #define DMA2_CLR_MASK_REG       (IO_DMA2_BASE+0x1C) /* Clear Mask */
  86. #define DMA2_MASK_ALL_REG       (IO_DMA2_BASE+0x1E) /* all-channels mask (w) */
  87. #define DMA_ADDR_0              (IO_DMA1_BASE+0x00) /* DMA address registers */
  88. #define DMA_ADDR_1              (IO_DMA1_BASE+0x02)
  89. #define DMA_ADDR_2              (IO_DMA1_BASE+0x04)
  90. #define DMA_ADDR_3              (IO_DMA1_BASE+0x06)
  91. #define DMA_ADDR_4              (IO_DMA2_BASE+0x00)
  92. #define DMA_ADDR_5              (IO_DMA2_BASE+0x04)
  93. #define DMA_ADDR_6              (IO_DMA2_BASE+0x08)
  94. #define DMA_ADDR_7              (IO_DMA2_BASE+0x0C)
  95. #define DMA_CNT_0               (IO_DMA1_BASE+0x01)   /* DMA count registers */
  96. #define DMA_CNT_1               (IO_DMA1_BASE+0x03)
  97. #define DMA_CNT_2               (IO_DMA1_BASE+0x05)
  98. #define DMA_CNT_3               (IO_DMA1_BASE+0x07)
  99. #define DMA_CNT_4               (IO_DMA2_BASE+0x02)
  100. #define DMA_CNT_5               (IO_DMA2_BASE+0x06)
  101. #define DMA_CNT_6               (IO_DMA2_BASE+0x0A)
  102. #define DMA_CNT_7               (IO_DMA2_BASE+0x0E)
  103. #define DMA_MODE_READ 0x44 /* I/O to memory, no autoinit, increment, single mode */
  104. #define DMA_MODE_WRITE 0x48 /* memory to I/O, no autoinit, increment, single mode */
  105. #define DMA_MODE_CASCADE 0xC0   /* pass thru DREQ->HRQ, DACK<-HLDA only */
  106. #define DMA_AUTOINIT 0x10
  107. #define DMA_8BIT 0
  108. #define DMA_16BIT 1
  109. #define DMA_BUSMASTER 2
  110. extern spinlock_t  dma_spin_lock;
  111. static __inline__ unsigned long claim_dma_lock(void)
  112. {
  113. unsigned long flags;
  114. spin_lock_irqsave(&dma_spin_lock, flags);
  115. return flags;
  116. }
  117. static __inline__ void release_dma_lock(unsigned long flags)
  118. {
  119. spin_unlock_irqrestore(&dma_spin_lock, flags);
  120. }
  121. /* enable/disable a specific DMA channel */
  122. static __inline__ void enable_dma(unsigned int dmanr)
  123. {
  124. if (dmanr<=3)
  125. dma_outb(dmanr,  DMA1_MASK_REG);
  126. else
  127. dma_outb(dmanr & 3,  DMA2_MASK_REG);
  128. }
  129. static __inline__ void disable_dma(unsigned int dmanr)
  130. {
  131. if (dmanr<=3)
  132. dma_outb(dmanr | 4,  DMA1_MASK_REG);
  133. else
  134. dma_outb((dmanr & 3) | 4,  DMA2_MASK_REG);
  135. }
  136. /* Clear the 'DMA Pointer Flip Flop'.
  137.  * Write 0 for LSB/MSB, 1 for MSB/LSB access.
  138.  * Use this once to initialize the FF to a known state.
  139.  * After that, keep track of it. :-)
  140.  * --- In order to do that, the DMA routines below should ---
  141.  * --- only be used while holding the DMA lock ! ---
  142.  */
  143. static __inline__ void clear_dma_ff(unsigned int dmanr)
  144. {
  145. if (dmanr<=3)
  146. dma_outb(0,  DMA1_CLEAR_FF_REG);
  147. else
  148. dma_outb(0,  DMA2_CLEAR_FF_REG);
  149. }
  150. /* set mode (above) for a specific DMA channel */
  151. static __inline__ void set_dma_mode(unsigned int dmanr, char mode)
  152. {
  153. if (dmanr<=3)
  154. dma_outb(mode | dmanr,  DMA1_MODE_REG);
  155. else
  156. dma_outb(mode | (dmanr&3),  DMA2_MODE_REG);
  157. }
  158. /* Set transfer address & page bits for specific DMA channel.
  159.  * Assumes dma flipflop is clear.
  160.  */
  161. static __inline__ void set_dma_addr(unsigned int dmanr, unsigned int a)
  162. {
  163. if (dmanr <= 3)  {
  164.     dma_outb( a & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE );
  165.             dma_outb( (a>>8) & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE );
  166. }  else  {
  167.     dma_outb( (a>>1) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE );
  168.     dma_outb( (a>>9) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE );
  169. }
  170. }
  171. /* Set transfer size (max 64k for DMA1..3, 128k for DMA5..7) for
  172.  * a specific DMA channel.
  173.  * You must ensure the parameters are valid.
  174.  * NOTE: from a manual: "the number of transfers is one more
  175.  * than the initial word count"! This is taken into account.
  176.  * Assumes dma flip-flop is clear.
  177.  * NOTE 2: "count" represents _bytes_ and must be even for channels 5-7.
  178.  */
  179. static __inline__ void set_dma_count(unsigned int dmanr, unsigned int count)
  180. {
  181.         count--;
  182. if (dmanr <= 3)  {
  183.     dma_outb( count & 0xff, ((dmanr&3)<<1) + 1 + IO_DMA1_BASE );
  184.     dma_outb( (count>>8) & 0xff, ((dmanr&3)<<1) + 1 + IO_DMA1_BASE );
  185.         } else {
  186.     dma_outb( (count>>1) & 0xff, ((dmanr&3)<<2) + 2 + IO_DMA2_BASE );
  187.     dma_outb( (count>>9) & 0xff, ((dmanr&3)<<2) + 2 + IO_DMA2_BASE );
  188.         }
  189. }
  190. /* Get DMA residue count. After a DMA transfer, this
  191.  * should return zero. Reading this while a DMA transfer is
  192.  * still in progress will return unpredictable results.
  193.  * If called before the channel has been used, it may return 1.
  194.  * Otherwise, it returns the number of _bytes_ left to transfer.
  195.  *
  196.  * Assumes DMA flip-flop is clear.
  197.  */
  198. static __inline__ int get_dma_residue(unsigned int dmanr)
  199. {
  200. unsigned int io_port = (dmanr<=3)? ((dmanr&3)<<1) + 1 + IO_DMA1_BASE
  201.  : ((dmanr&3)<<2) + 2 + IO_DMA2_BASE;
  202. /* using short to get 16-bit wrap around */
  203. unsigned short count;
  204. count = 1 + dma_inb(io_port);
  205. count += dma_inb(io_port) << 8;
  206. return (dmanr<=3)? count : (count<<1);
  207. }
  208. /* These are in kernel/dma.c: */
  209. extern int request_dma(unsigned int dmanr, const char * device_id); /* reserve a DMA channel */
  210. extern void free_dma(unsigned int dmanr); /* release it again */
  211. /* These are in arch/m68k/apollo/dma.c: */
  212. extern unsigned short dma_map_page(unsigned long phys_addr,int count,int type);
  213. extern void dma_unmap_page(unsigned short dma_addr);
  214. #endif /* _ASM_APOLLO_DMA_H */