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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: dma.c,v 1.7 1994/12/28 03:35:33 root Exp root $
  2.  * linux/kernel/dma.c: A DMA channel allocator. Inspired by linux/kernel/irq.c.
  3.  *
  4.  * Written by Hennus Bergman, 1992.
  5.  *
  6.  * 1994/12/26: Changes by Alex Nash to fix a minor bug in /proc/dma.
  7.  *   In the previous version the reported device could end up being wrong,
  8.  *   if a device requested a DMA channel that was already in use.
  9.  *   [It also happened to remove the sizeof(char *) == sizeof(int)
  10.  *   assumption introduced because of those /proc/dma patches. -- Hennus]
  11.  */
  12. #include <linux/kernel.h>
  13. #include <linux/errno.h>
  14. #include <linux/spinlock.h>
  15. #include <linux/string.h>
  16. #include <asm/dma.h>
  17. #include <asm/system.h>
  18.  
  19. /* A note on resource allocation:
  20.  *
  21.  * All drivers needing DMA channels, should allocate and release them
  22.  * through the public routines `request_dma()' and `free_dma()'.
  23.  *
  24.  * In order to avoid problems, all processes should allocate resources in
  25.  * the same sequence and release them in the reverse order.
  26.  *
  27.  * So, when allocating DMAs and IRQs, first allocate the IRQ, then the DMA.
  28.  * When releasing them, first release the DMA, then release the IRQ.
  29.  * If you don't, you may cause allocation requests to fail unnecessarily.
  30.  * This doesn't really matter now, but it will once we get real semaphores
  31.  * in the kernel.
  32.  */
  33. spinlock_t dma_spin_lock = SPIN_LOCK_UNLOCKED;
  34. /*
  35.  * If our port doesn't define this it has no PC like DMA
  36.  */
  37. #ifdef MAX_DMA_CHANNELS
  38. /* Channel n is busy iff dma_chan_busy[n].lock != 0.
  39.  * DMA0 used to be reserved for DRAM refresh, but apparently not any more...
  40.  * DMA4 is reserved for cascading.
  41.  */
  42. struct dma_chan {
  43. int  lock;
  44. const char *device_id;
  45. };
  46. static struct dma_chan dma_chan_busy[MAX_DMA_CHANNELS] = {
  47. { 0, 0 },
  48. { 0, 0 },
  49. { 0, 0 },
  50. { 0, 0 },
  51. { 1, "cascade" },
  52. { 0, 0 },
  53. { 0, 0 },
  54. { 0, 0 }
  55. };
  56. int get_dma_list(char *buf)
  57. {
  58. int i, len = 0;
  59. for (i = 0 ; i < MAX_DMA_CHANNELS ; i++) {
  60. if (dma_chan_busy[i].lock) {
  61.     len += sprintf(buf+len, "%2d: %sn",
  62.    i,
  63.    dma_chan_busy[i].device_id);
  64. }
  65. }
  66. return len;
  67. } /* get_dma_list */
  68. int request_dma(unsigned int dmanr, const char * device_id)
  69. {
  70. if (dmanr >= MAX_DMA_CHANNELS)
  71. return -EINVAL;
  72. if (xchg(&dma_chan_busy[dmanr].lock, 1) != 0)
  73. return -EBUSY;
  74. dma_chan_busy[dmanr].device_id = device_id;
  75. /* old flag was 0, now contains 1 to indicate busy */
  76. return 0;
  77. } /* request_dma */
  78. void free_dma(unsigned int dmanr)
  79. {
  80. if (dmanr >= MAX_DMA_CHANNELS) {
  81. printk("Trying to free DMA%dn", dmanr);
  82. return;
  83. }
  84. if (xchg(&dma_chan_busy[dmanr].lock, 0) == 0) {
  85. printk("Trying to free free DMA%dn", dmanr);
  86. return;
  87. }
  88. } /* free_dma */
  89. #else
  90. int request_dma(unsigned int dmanr, const char *device_id)
  91. {
  92. return -EINVAL;
  93. }
  94. void free_dma(unsigned int dmanr)
  95. {
  96. }
  97. int get_dma_list(char *buf)
  98. {
  99. strcpy(buf, "No DMAn");
  100. return 7;
  101. }
  102. #endif