dma.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:11k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* 
  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.  * Changes for ppc sound by Christoph Nadig
  7.  *
  8.  * This program is free software; you can redistribute it and/or
  9.  * modify it under the terms of the GNU General Public License
  10.  * as published by the Free Software Foundation; either version
  11.  * 2 of the License, or (at your option) any later version.
  12.  */
  13. #ifndef _ASM_DMA_H
  14. #define _ASM_DMA_H
  15. #include <linux/config.h>
  16. #include <asm/io.h>
  17. #include <linux/spinlock.h>
  18. #include <asm/system.h>
  19. #ifndef MAX_DMA_CHANNELS
  20. #define MAX_DMA_CHANNELS 8
  21. #endif
  22. /* The maximum address that we can perform a DMA transfer to on this platform */
  23. /* Doesn't really apply... */
  24. #define MAX_DMA_ADDRESS  (~0UL)
  25. #define dma_outb outb
  26. #define dma_inb inb
  27. /*
  28.  * NOTES about DMA transfers:
  29.  *
  30.  *  controller 1: channels 0-3, byte operations, ports 00-1F
  31.  *  controller 2: channels 4-7, word operations, ports C0-DF
  32.  *
  33.  *  - ALL registers are 8 bits only, regardless of transfer size
  34.  *  - channel 4 is not used - cascades 1 into 2.
  35.  *  - channels 0-3 are byte - addresses/counts are for physical bytes
  36.  *  - channels 5-7 are word - addresses/counts are for physical words
  37.  *  - transfers must not cross physical 64K (0-3) or 128K (5-7) boundaries
  38.  *  - transfer count loaded to registers is 1 less than actual count
  39.  *  - controller 2 offsets are all even (2x offsets for controller 1)
  40.  *  - page registers for 5-7 don't use data bit 0, represent 128K pages
  41.  *  - page registers for 0-3 use bit 0, represent 64K pages
  42.  *
  43.  * On PReP, DMA transfers are limited to the lower 16MB of _physical_ memory.  
  44.  * On CHRP, the W83C553F (and VLSI Tollgate?) support full 32 bit addressing.
  45.  * Note that addresses loaded into registers must be _physical_ addresses,
  46.  * not logical addresses (which may differ if paging is active).
  47.  *
  48.  *  Address mapping for channels 0-3:
  49.  *
  50.  *   A23 ... A16 A15 ... A8  A7 ... A0    (Physical addresses)
  51.  *    |  ...  |   |  ... |   |  ... |
  52.  *    |  ...  |   |  ... |   |  ... |
  53.  *    |  ...  |   |  ... |   |  ... |
  54.  *   P7  ...  P0  A7 ... A0  A7 ... A0   
  55.  * |    Page    | Addr MSB | Addr LSB |   (DMA registers)
  56.  *
  57.  *  Address mapping for channels 5-7:
  58.  *
  59.  *   A23 ... A17 A16 A15 ... A9 A8 A7 ... A1 A0    (Physical addresses)
  60.  *    |  ...  |         ...       ...   
  61.  *    |  ...  |          ...       ...   (not used)
  62.  *    |  ...  |           ...       ... 
  63.  *   P7  ...  P1 (0) A7 A6  ... A0 A7 A6 ... A0   
  64.  * |      Page      |  Addr MSB   |  Addr LSB  |   (DMA registers)
  65.  *
  66.  * Again, channels 5-7 transfer _physical_ words (16 bits), so addresses
  67.  * and counts _must_ be word-aligned (the lowest address bit is _ignored_ at
  68.  * the hardware level, so odd-byte transfers aren't possible).
  69.  *
  70.  * Transfer count (_not # bytes_) is limited to 64K, represented as actual
  71.  * count - 1 : 64K => 0xFFFF, 1 => 0x0000.  Thus, count is always 1 or more,
  72.  * and up to 128K bytes may be transferred on channels 5-7 in one operation. 
  73.  *
  74.  */
  75. /* 8237 DMA controllers */
  76. #define IO_DMA1_BASE 0x00 /* 8 bit slave DMA, channels 0..3 */
  77. #define IO_DMA2_BASE 0xC0 /* 16 bit master DMA, ch 4(=slave input)..7 */
  78. /* DMA controller registers */
  79. #define DMA1_CMD_REG 0x08 /* command register (w) */
  80. #define DMA1_STAT_REG 0x08 /* status register (r) */
  81. #define DMA1_REQ_REG            0x09    /* request register (w) */
  82. #define DMA1_MASK_REG 0x0A /* single-channel mask (w) */
  83. #define DMA1_MODE_REG 0x0B /* mode register (w) */
  84. #define DMA1_CLEAR_FF_REG 0x0C /* clear pointer flip-flop (w) */
  85. #define DMA1_TEMP_REG           0x0D    /* Temporary Register (r) */
  86. #define DMA1_RESET_REG 0x0D /* Master Clear (w) */
  87. #define DMA1_CLR_MASK_REG       0x0E    /* Clear Mask */
  88. #define DMA1_MASK_ALL_REG       0x0F    /* all-channels mask (w) */
  89. #define DMA2_CMD_REG 0xD0 /* command register (w) */
  90. #define DMA2_STAT_REG 0xD0 /* status register (r) */
  91. #define DMA2_REQ_REG            0xD2    /* request register (w) */
  92. #define DMA2_MASK_REG 0xD4 /* single-channel mask (w) */
  93. #define DMA2_MODE_REG 0xD6 /* mode register (w) */
  94. #define DMA2_CLEAR_FF_REG 0xD8 /* clear pointer flip-flop (w) */
  95. #define DMA2_TEMP_REG           0xDA    /* Temporary Register (r) */
  96. #define DMA2_RESET_REG 0xDA /* Master Clear (w) */
  97. #define DMA2_CLR_MASK_REG       0xDC    /* Clear Mask */
  98. #define DMA2_MASK_ALL_REG       0xDE    /* all-channels mask (w) */
  99. #define DMA_ADDR_0              0x00    /* DMA address registers */
  100. #define DMA_ADDR_1              0x02
  101. #define DMA_ADDR_2              0x04
  102. #define DMA_ADDR_3              0x06
  103. #define DMA_ADDR_4              0xC0
  104. #define DMA_ADDR_5              0xC4
  105. #define DMA_ADDR_6              0xC8
  106. #define DMA_ADDR_7              0xCC
  107. #define DMA_CNT_0               0x01    /* DMA count registers */
  108. #define DMA_CNT_1               0x03
  109. #define DMA_CNT_2               0x05
  110. #define DMA_CNT_3               0x07
  111. #define DMA_CNT_4               0xC2
  112. #define DMA_CNT_5               0xC6
  113. #define DMA_CNT_6               0xCA
  114. #define DMA_CNT_7               0xCE
  115. #define DMA_LO_PAGE_0              0x87    /* DMA page registers */
  116. #define DMA_LO_PAGE_1              0x83
  117. #define DMA_LO_PAGE_2              0x81
  118. #define DMA_LO_PAGE_3              0x82
  119. #define DMA_LO_PAGE_5              0x8B
  120. #define DMA_LO_PAGE_6              0x89
  121. #define DMA_LO_PAGE_7              0x8A
  122. #define DMA_HI_PAGE_0              0x487    /* DMA page registers */
  123. #define DMA_HI_PAGE_1              0x483
  124. #define DMA_HI_PAGE_2              0x481
  125. #define DMA_HI_PAGE_3              0x482
  126. #define DMA_HI_PAGE_5              0x48B
  127. #define DMA_HI_PAGE_6              0x489
  128. #define DMA_HI_PAGE_7              0x48A
  129. #define DMA1_EXT_REG               0x40B
  130. #define DMA2_EXT_REG               0x4D6
  131. #define DMA_MODE_READ 0x44 /* I/O to memory, no autoinit, increment, single mode */
  132. #define DMA_MODE_WRITE 0x48 /* memory to I/O, no autoinit, increment, single mode */
  133. #define DMA_MODE_CASCADE 0xC0   /* pass thru DREQ->HRQ, DACK<-HLDA only */
  134. #define DMA_AUTOINIT     0x10
  135. extern spinlock_t  dma_spin_lock;
  136. static __inline__ unsigned long claim_dma_lock(void)
  137. {
  138. unsigned long flags;
  139. spin_lock_irqsave(&dma_spin_lock, flags);
  140. return flags;
  141. }
  142. static __inline__ void release_dma_lock(unsigned long flags)
  143. {
  144. spin_unlock_irqrestore(&dma_spin_lock, flags);
  145. }
  146. /* enable/disable a specific DMA channel */
  147. static __inline__ void enable_dma(unsigned int dmanr)
  148. {
  149. unsigned char ucDmaCmd=0x00;
  150. if (dmanr != 4)
  151. {
  152. dma_outb(0, DMA2_MASK_REG);  /* This may not be enabled */
  153. dma_outb(ucDmaCmd, DMA2_CMD_REG);  /* Enable group */
  154. }
  155. if (dmanr<=3)
  156. {
  157. dma_outb(dmanr,  DMA1_MASK_REG);
  158. dma_outb(ucDmaCmd, DMA1_CMD_REG);  /* Enable group */
  159. } else
  160. {
  161. dma_outb(dmanr & 3,  DMA2_MASK_REG);
  162. }
  163. }
  164. static __inline__ void disable_dma(unsigned int dmanr)
  165. {
  166. if (dmanr<=3)
  167. dma_outb(dmanr | 4,  DMA1_MASK_REG);
  168. else
  169. dma_outb((dmanr & 3) | 4,  DMA2_MASK_REG);
  170. }
  171. /* Clear the 'DMA Pointer Flip Flop'.
  172.  * Write 0 for LSB/MSB, 1 for MSB/LSB access.
  173.  * Use this once to initialize the FF to a known state.
  174.  * After that, keep track of it. :-)
  175.  * --- In order to do that, the DMA routines below should ---
  176.  * --- only be used while interrupts are disabled! ---
  177.  */
  178. static __inline__ void clear_dma_ff(unsigned int dmanr)
  179. {
  180. if (dmanr<=3)
  181. dma_outb(0,  DMA1_CLEAR_FF_REG);
  182. else
  183. dma_outb(0,  DMA2_CLEAR_FF_REG);
  184. }
  185. /* set mode (above) for a specific DMA channel */
  186. static __inline__ void set_dma_mode(unsigned int dmanr, char mode)
  187. {
  188. if (dmanr<=3)
  189. dma_outb(mode | dmanr,  DMA1_MODE_REG);
  190. else
  191. dma_outb(mode | (dmanr&3),  DMA2_MODE_REG);
  192. }
  193. /* Set only the page register bits of the transfer address.
  194.  * This is used for successive transfers when we know the contents of
  195.  * the lower 16 bits of the DMA current address register, but a 64k boundary
  196.  * may have been crossed.
  197.  */
  198. static __inline__ void set_dma_page(unsigned int dmanr, int pagenr)
  199. {
  200. switch(dmanr) {
  201. case 0:
  202. dma_outb(pagenr, DMA_LO_PAGE_0);
  203.                         dma_outb(pagenr>>8, DMA_HI_PAGE_0);
  204. break;
  205. case 1:
  206. dma_outb(pagenr, DMA_LO_PAGE_1);
  207.                         dma_outb(pagenr>>8, DMA_HI_PAGE_1);
  208. break;
  209. case 2:
  210. dma_outb(pagenr, DMA_LO_PAGE_2);
  211. dma_outb(pagenr>>8, DMA_HI_PAGE_2); 
  212. break;
  213. case 3:
  214. dma_outb(pagenr, DMA_LO_PAGE_3);
  215. dma_outb(pagenr>>8, DMA_HI_PAGE_3); 
  216. break;
  217.         case 5:
  218.         dma_outb(pagenr & 0xfe, DMA_LO_PAGE_5);
  219.                         dma_outb(pagenr>>8, DMA_HI_PAGE_5);
  220. break;
  221. case 6:
  222.         dma_outb(pagenr & 0xfe, DMA_LO_PAGE_6);
  223. dma_outb(pagenr>>8, DMA_HI_PAGE_6);
  224. break;
  225. case 7:
  226.         dma_outb(pagenr & 0xfe, DMA_LO_PAGE_7);
  227. dma_outb(pagenr>>8, DMA_HI_PAGE_7);
  228.   break;
  229. }
  230. }
  231. /* Set transfer address & page bits for specific DMA channel.
  232.  * Assumes dma flipflop is clear.
  233.  */
  234. static __inline__ void set_dma_addr(unsigned int dmanr, unsigned int phys)
  235. {
  236. if (dmanr <= 3)  {
  237.     dma_outb( phys & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE );
  238.             dma_outb( (phys>>8) & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE );
  239. }  else  {
  240.     dma_outb( (phys>>1) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE );
  241.     dma_outb( (phys>>9) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE );
  242. }
  243. set_dma_page(dmanr, phys>>16);
  244. }
  245. /* Set transfer size (max 64k for DMA1..3, 128k for DMA5..7) for
  246.  * a specific DMA channel.
  247.  * You must ensure the parameters are valid.
  248.  * NOTE: from a manual: "the number of transfers is one more
  249.  * than the initial word count"! This is taken into account.
  250.  * Assumes dma flip-flop is clear.
  251.  * NOTE 2: "count" represents _bytes_ and must be even for channels 5-7.
  252.  */
  253. static __inline__ void set_dma_count(unsigned int dmanr, unsigned int count)
  254. {
  255.         count--;
  256. if (dmanr <= 3)  {
  257.     dma_outb( count & 0xff, ((dmanr&3)<<1) + 1 + IO_DMA1_BASE );
  258.     dma_outb( (count>>8) & 0xff, ((dmanr&3)<<1) + 1 + IO_DMA1_BASE );
  259.         } else {
  260.     dma_outb( (count>>1) & 0xff, ((dmanr&3)<<2) + 2 + IO_DMA2_BASE );
  261.     dma_outb( (count>>9) & 0xff, ((dmanr&3)<<2) + 2 + IO_DMA2_BASE );
  262.         }
  263. }
  264. /* Get DMA residue count. After a DMA transfer, this
  265.  * should return zero. Reading this while a DMA transfer is
  266.  * still in progress will return unpredictable results.
  267.  * If called before the channel has been used, it may return 1.
  268.  * Otherwise, it returns the number of _bytes_ left to transfer.
  269.  *
  270.  * Assumes DMA flip-flop is clear.
  271.  */
  272. static __inline__ int get_dma_residue(unsigned int dmanr)
  273. {
  274. unsigned int io_port = (dmanr<=3)? ((dmanr&3)<<1) + 1 + IO_DMA1_BASE
  275.  : ((dmanr&3)<<2) + 2 + IO_DMA2_BASE;
  276. /* using short to get 16-bit wrap around */
  277. unsigned short count;
  278. count = 1 + dma_inb(io_port);
  279. count += dma_inb(io_port) << 8;
  280. return (dmanr <= 3)? count : (count<<1);
  281. }
  282. /* These are in kernel/dma.c: */
  283. extern int request_dma(unsigned int dmanr, const char * device_id); /* reserve a DMA channel */
  284. extern void free_dma(unsigned int dmanr); /* release it again */
  285. #ifdef CONFIG_PCI
  286. extern int isa_dma_bridge_buggy;                                        
  287. #else                                                         
  288. #define isa_dma_bridge_buggy   (0)
  289. #endif
  290. #endif /* _ASM_DMA_H */