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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: dma.h,v 1.2 1999/04/27 00:46:18 deller Exp $
  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.  * (c) Copyright 2000, Grant Grundler
  7.  */
  8. #ifndef _ASM_DMA_H
  9. #define _ASM_DMA_H
  10. #include <linux/config.h>
  11. #include <asm/io.h> /* need byte IO */
  12. #include <asm/system.h>
  13. #define dma_outb outb
  14. #define dma_inb inb
  15. /*
  16. ** DMA_CHUNK_SIZE is used by the SCSI mid-layer to break up
  17. ** (or rather not merge) DMA's into managable chunks.
  18. ** On parisc, this is more of the software/tuning constraint
  19. ** rather than the HW. I/O MMU allocation alogorithms can be
  20. ** faster with smaller size is (to some degree).
  21. */
  22. #define DMA_CHUNK_SIZE (BITS_PER_LONG*PAGE_SIZE)
  23. /* The maximum address that we can perform a DMA transfer to on this platform
  24. ** New dynamic DMA interfaces should obsolete this....
  25. */
  26. #define MAX_DMA_ADDRESS (~0UL)
  27. /*
  28. ** We don't have DMA channels... well V-class does but the
  29. ** Dynamic DMA Mapping interface will support them... right? :^)
  30. ** Note: this is not relevant right now for PA-RISC, but we cannot 
  31. ** leave this as undefined because some things (e.g. sound)
  32. ** won't compile :-(
  33. */
  34. #define MAX_DMA_CHANNELS 8
  35. #define DMA_MODE_READ    1
  36. #define DMA_MODE_WRITE   2
  37. #define DMA_AUTOINIT     0x10
  38. /* 8237 DMA controllers */
  39. #define IO_DMA1_BASE 0x00 /* 8 bit slave DMA, channels 0..3 */
  40. #define IO_DMA2_BASE 0xC0 /* 16 bit master DMA, ch 4(=slave input)..7 */
  41. /* DMA controller registers */
  42. #define DMA1_CMD_REG 0x08 /* command register (w) */
  43. #define DMA1_STAT_REG 0x08 /* status register (r) */
  44. #define DMA1_REQ_REG            0x09    /* request register (w) */
  45. #define DMA1_MASK_REG 0x0A /* single-channel mask (w) */
  46. #define DMA1_MODE_REG 0x0B /* mode register (w) */
  47. #define DMA1_CLEAR_FF_REG 0x0C /* clear pointer flip-flop (w) */
  48. #define DMA1_TEMP_REG           0x0D    /* Temporary Register (r) */
  49. #define DMA1_RESET_REG 0x0D /* Master Clear (w) */
  50. #define DMA1_CLR_MASK_REG       0x0E    /* Clear Mask */
  51. #define DMA1_MASK_ALL_REG       0x0F    /* all-channels mask (w) */
  52. #define DMA1_EXT_MODE_REG (0x400 | DMA1_MODE_REG)
  53. #define DMA2_CMD_REG 0xD0 /* command register (w) */
  54. #define DMA2_STAT_REG 0xD0 /* status register (r) */
  55. #define DMA2_REQ_REG            0xD2    /* request register (w) */
  56. #define DMA2_MASK_REG 0xD4 /* single-channel mask (w) */
  57. #define DMA2_MODE_REG 0xD6 /* mode register (w) */
  58. #define DMA2_CLEAR_FF_REG 0xD8 /* clear pointer flip-flop (w) */
  59. #define DMA2_TEMP_REG           0xDA    /* Temporary Register (r) */
  60. #define DMA2_RESET_REG 0xDA /* Master Clear (w) */
  61. #define DMA2_CLR_MASK_REG       0xDC    /* Clear Mask */
  62. #define DMA2_MASK_ALL_REG       0xDE    /* all-channels mask (w) */
  63. #define DMA2_EXT_MODE_REG (0x400 | DMA2_MODE_REG)
  64. extern spinlock_t dma_spin_lock;
  65. static __inline__ unsigned long claim_dma_lock(void)
  66. {
  67. unsigned long flags;
  68. spin_lock_irqsave(&dma_spin_lock, flags);
  69. return flags;
  70. }
  71. static __inline__ void release_dma_lock(unsigned long flags)
  72. {
  73. spin_unlock_irqrestore(&dma_spin_lock, flags);
  74. }
  75. /* Get DMA residue count. After a DMA transfer, this
  76.  * should return zero. Reading this while a DMA transfer is
  77.  * still in progress will return unpredictable results.
  78.  * If called before the channel has been used, it may return 1.
  79.  * Otherwise, it returns the number of _bytes_ left to transfer.
  80.  *
  81.  * Assumes DMA flip-flop is clear.
  82.  */
  83. static __inline__ int get_dma_residue(unsigned int dmanr)
  84. {
  85. unsigned int io_port = (dmanr<=3)? ((dmanr&3)<<1) + 1 + IO_DMA1_BASE
  86.  : ((dmanr&3)<<2) + 2 + IO_DMA2_BASE;
  87. /* using short to get 16-bit wrap around */
  88. unsigned short count;
  89. count = 1 + dma_inb(io_port);
  90. count += dma_inb(io_port) << 8;
  91. return (dmanr<=3)? count : (count<<1);
  92. }
  93. /* enable/disable a specific DMA channel */
  94. static __inline__ void enable_dma(unsigned int dmanr)
  95. {
  96. #ifdef CONFIG_SUPERIO
  97. if (dmanr<=3)
  98. dma_outb(dmanr,  DMA1_MASK_REG);
  99. else
  100. dma_outb(dmanr & 3,  DMA2_MASK_REG);
  101. #endif
  102. }
  103. static __inline__ void disable_dma(unsigned int dmanr)
  104. {
  105. #ifdef CONFIG_SUPERIO
  106. if (dmanr<=3)
  107. dma_outb(dmanr | 4,  DMA1_MASK_REG);
  108. else
  109. dma_outb((dmanr & 3) | 4,  DMA2_MASK_REG);
  110. #endif
  111. }
  112. /* Clear the 'DMA Pointer Flip Flop'.
  113.  * Write 0 for LSB/MSB, 1 for MSB/LSB access.
  114.  * Use this once to initialize the FF to a known state.
  115.  * After that, keep track of it. :-)
  116.  * --- In order to do that, the DMA routines below should ---
  117.  * --- only be used while holding the DMA lock ! ---
  118.  */
  119. static __inline__ void clear_dma_ff(unsigned int dmanr)
  120. {
  121. }
  122. /* set mode (above) for a specific DMA channel */
  123. static __inline__ void set_dma_mode(unsigned int dmanr, char mode)
  124. {
  125. }
  126. /* Set only the page register bits of the transfer address.
  127.  * This is used for successive transfers when we know the contents of
  128.  * the lower 16 bits of the DMA current address register, but a 64k boundary
  129.  * may have been crossed.
  130.  */
  131. static __inline__ void set_dma_page(unsigned int dmanr, char pagenr)
  132. {
  133. }
  134. /* Set transfer address & page bits for specific DMA channel.
  135.  * Assumes dma flipflop is clear.
  136.  */
  137. static __inline__ void set_dma_addr(unsigned int dmanr, unsigned int a)
  138. {
  139. }
  140. /* Set transfer size (max 64k for DMA1..3, 128k for DMA5..7) for
  141.  * a specific DMA channel.
  142.  * You must ensure the parameters are valid.
  143.  * NOTE: from a manual: "the number of transfers is one more
  144.  * than the initial word count"! This is taken into account.
  145.  * Assumes dma flip-flop is clear.
  146.  * NOTE 2: "count" represents _bytes_ and must be even for channels 5-7.
  147.  */
  148. static __inline__ void set_dma_count(unsigned int dmanr, unsigned int count)
  149. {
  150. }
  151. /* These are in kernel/dma.c: */
  152. extern int request_dma(unsigned int dmanr, const char * device_id); /* reserve a DMA channel */
  153. extern void free_dma(unsigned int dmanr); /* release it again */
  154. extern int get_dma_list(char *buf); /* proc/dma support  */
  155. #ifdef CONFIG_PCI
  156. extern int isa_dma_bridge_buggy;
  157. #else
  158. #define isa_dma_bridge_buggy  (0)
  159. #endif
  160. #endif /* _ASM_DMA_H */