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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* dvma.c:  Routines that are used to access DMA on the Sparc SBus.
  2.  *
  3.  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  4.  */
  5. #include <linux/config.h>
  6. #include <linux/string.h>
  7. #include <linux/kernel.h>
  8. #include <linux/slab.h>
  9. #include <linux/init.h>
  10. #include <linux/delay.h>
  11. #include <asm/oplib.h>
  12. #include <asm/io.h>
  13. #include <asm/dma.h>
  14. #include <asm/sbus.h>
  15. struct sbus_dma *dma_chain;
  16. /* Print out the current values in the DMA control registers */
  17. static inline void dump_dma_regs(unsigned long dregs)
  18. {
  19. printk("DMA CONTROL<%08x> ADDR<%08x> CNT<%08x> TEST<%08x>n",
  20.        sbus_readl(dregs + DMA_CSR), sbus_readl(dregs + DMA_ADDR),
  21.        sbus_readl(dregs + DMA_COUNT), sbus_readl(dregs + DMA_TEST));
  22. }
  23. void __init init_one_dvma(struct sbus_dma *dma, int num_dma)
  24. {
  25. printk("dma%d: ", num_dma);
  26. dma->next = 0;
  27. dma->running = 0;      /* No transfers going on as of yet */
  28. dma->allocated = 0;    /* No one has allocated us yet */
  29. switch(sbus_readl(dma->regs + DMA_CSR)&DMA_DEVICE_ID) {
  30. case DMA_VERS0:
  31. dma->revision = dvmarev0;
  32. printk("Revision 0 ");
  33. break;
  34. case DMA_ESCV1:
  35. dma->revision = dvmaesc1;
  36. printk("ESC Revision 1 ");
  37. break;
  38. case DMA_VERS1:
  39. dma->revision = dvmarev1;
  40. printk("Revision 1 ");
  41. break;
  42. case DMA_VERS2:
  43. dma->revision = dvmarev2;
  44. printk("Revision 2 ");
  45. break;
  46. case DMA_VERHME:
  47. dma->revision = dvmahme;
  48. printk("HME DVMA gate array ");
  49. break;
  50. case DMA_VERSPLUS:
  51. dma->revision = dvmarevplus;
  52. printk("Revision 1 PLUS ");
  53. break;
  54. default:
  55. printk("unknown dma version %08x",
  56.        sbus_readl(dma->regs + DMA_CSR) & DMA_DEVICE_ID);
  57. dma->allocated = 1;
  58. break;
  59. }
  60. printk("n");
  61. #if 0 /* Clutters up the screen */
  62. dump_dma_regs(dma->regs);
  63. #endif
  64. }
  65. /* Probe this SBus DMA module(s) */
  66. void __init dvma_init(struct sbus_bus *sbus)
  67. {
  68. struct sbus_dev *this_dev;
  69. struct sbus_dma *dma;
  70. struct sbus_dma *dchain;
  71. static int num_dma = 0;
  72. for_each_sbusdev(this_dev, sbus) {
  73. char *name = this_dev->prom_name;
  74. int hme = 0;
  75. if(!strcmp(name, "SUNW,fas"))
  76. hme = 1;
  77. else if(strcmp(name, "dma") &&
  78. strcmp(name, "ledma") &&
  79. strcmp(name, "espdma"))
  80. continue;
  81. /* Found one... */
  82. dma = kmalloc(sizeof(struct sbus_dma), GFP_ATOMIC);
  83. dma->sdev = this_dev;
  84. /* Put at end of dma chain */
  85. dchain = dma_chain;
  86. if(dchain) {
  87. while(dchain->next)
  88. dchain = dchain->next;
  89. dchain->next = dma;
  90. } else {
  91. /* We're the first in line */
  92. dma_chain = dma;
  93. }
  94. dma->regs = sbus_ioremap(&dma->sdev->resource[0], 0,
  95.  dma->sdev->resource[0].end - dma->sdev->resource[0].start + 1,
  96.  "dma");
  97. dma->node = dma->sdev->prom_node;
  98. init_one_dvma(dma, num_dma++);
  99. }
  100. }
  101. #ifdef CONFIG_SUN4
  102. #include <asm/sun4paddr.h>
  103. void __init sun4_dvma_init(void)
  104. {
  105. struct sbus_dma *dma;
  106. struct sbus_dma *dchain;
  107. struct resource r;
  108. if(sun4_dma_physaddr) {
  109. dma = kmalloc(sizeof(struct sbus_dma), GFP_ATOMIC);
  110. /* No SBUS */
  111. dma->sdev = NULL;
  112. /* Only one DMA device */
  113. dma_chain = dma;
  114. memset(&r, 0, sizeof(r));
  115. r.start = sun4_dma_physaddr;
  116. dma->regs = sbus_ioremap(&r, 0, PAGE_SIZE, "dma");
  117. /* No prom node */
  118. dma->node = 0x0;
  119. init_one_dvma(dma, 0);
  120. } else {
  121.    dma_chain = NULL;
  122. }
  123. }
  124. #endif