dma-isa.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/kernel/dma-isa.c
  3.  *
  4.  *  Copyright (C) 1999-2000 Russell King
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  *
  10.  *  ISA DMA primitives
  11.  *  Taken from various sources, including:
  12.  *   linux/include/asm/dma.h: Defines for using and allocating dma channels.
  13.  *     Written by Hennus Bergman, 1992.
  14.  *     High DMA channel support & info by Hannu Savolainen and John Boyd,
  15.  *     Nov. 1992.
  16.  *   arch/arm/kernel/dma-ebsa285.c
  17.  *   Copyright (C) 1998 Phil Blundell
  18.  */
  19. #include <linux/sched.h>
  20. #include <linux/ioport.h>
  21. #include <linux/init.h>
  22. #include <linux/pci.h>
  23. #include <asm/dma.h>
  24. #include <asm/io.h>
  25. #include <asm/mach/dma.h>
  26. #define ISA_DMA_MODE_READ 0x44
  27. #define ISA_DMA_MODE_WRITE 0x48
  28. #define ISA_DMA_MODE_CASCADE 0xc0
  29. #define ISA_DMA_AUTOINIT 0x10
  30. #define ISA_DMA_MASK 0
  31. #define ISA_DMA_MODE 1
  32. #define ISA_DMA_CLRFF 2
  33. #define ISA_DMA_PGHI 3
  34. #define ISA_DMA_PGLO 4
  35. #define ISA_DMA_ADDR 5
  36. #define ISA_DMA_COUNT 6
  37. static unsigned int isa_dma_port[8][7] = {
  38. /* MASK   MODE   CLRFF  PAGE_HI PAGE_LO ADDR COUNT */
  39. {  0x0a,  0x0b,  0x0c,  0x487,  0x087,  0x00, 0x01 },
  40. {  0x0a,  0x0b,  0x0c,  0x483,  0x083,  0x02, 0x03 },
  41. {  0x0a,  0x0b,  0x0c,  0x481,  0x081,  0x04, 0x05 },
  42. {  0x0a,  0x0b,  0x0c,  0x482,  0x082,  0x06, 0x07 },
  43. {  0xd4,  0xd6,  0xd8,  0x000,  0x000,  0xc0, 0xc2 },
  44. {  0xd4,  0xd6,  0xd8,  0x48b,  0x08b,  0xc4, 0xc6 },
  45. {  0xd4,  0xd6,  0xd8,  0x489,  0x089,  0xc8, 0xca },
  46. {  0xd4,  0xd6,  0xd8,  0x48a,  0x08a,  0xcc, 0xce }
  47. };
  48. static int isa_get_dma_residue(dmach_t channel, dma_t *dma)
  49. {
  50. unsigned int io_port = isa_dma_port[channel][ISA_DMA_COUNT];
  51. int count;
  52. count = 1 + inb(io_port);
  53. count |= inb(io_port) << 8;
  54. return channel < 4 ? count : (count << 1);
  55. }
  56. static void isa_enable_dma(dmach_t channel, dma_t *dma)
  57. {
  58. if (dma->invalid) {
  59. unsigned long address, length;
  60. unsigned int mode, direction;
  61. mode = channel & 3;
  62. switch (dma->dma_mode & DMA_MODE_MASK) {
  63. case DMA_MODE_READ:
  64. mode |= ISA_DMA_MODE_READ;
  65. direction = PCI_DMA_FROMDEVICE;
  66. break;
  67. case DMA_MODE_WRITE:
  68. mode |= ISA_DMA_MODE_WRITE;
  69. direction = PCI_DMA_TODEVICE;
  70. break;
  71. case DMA_MODE_CASCADE:
  72. mode |= ISA_DMA_MODE_CASCADE;
  73. direction = PCI_DMA_BIDIRECTIONAL;
  74. break;
  75. default:
  76. break;
  77. }
  78. if (!dma->using_sg) {
  79. /*
  80.  * Cope with ISA-style drivers which expect cache
  81.  * coherence.
  82.  */
  83. dma->buf.dma_address = pci_map_single(NULL,
  84. dma->buf.address, dma->buf.length,
  85. direction);
  86. }
  87. address = dma->buf.dma_address;
  88. length  = dma->buf.length - 1;
  89. outb(address >> 16, isa_dma_port[channel][ISA_DMA_PGLO]);
  90. outb(address >> 24, isa_dma_port[channel][ISA_DMA_PGHI]);
  91. if (channel >= 4) {
  92. address >>= 1;
  93. length >>= 1;
  94. }
  95. outb(0, isa_dma_port[channel][ISA_DMA_CLRFF]);
  96. outb(address, isa_dma_port[channel][ISA_DMA_ADDR]);
  97. outb(address >> 8, isa_dma_port[channel][ISA_DMA_ADDR]);
  98. outb(length, isa_dma_port[channel][ISA_DMA_COUNT]);
  99. outb(length >> 8, isa_dma_port[channel][ISA_DMA_COUNT]);
  100. if (dma->dma_mode & DMA_AUTOINIT)
  101. mode |= ISA_DMA_AUTOINIT;
  102. outb(mode, isa_dma_port[channel][ISA_DMA_MODE]);
  103. dma->invalid = 0;
  104. }
  105. outb(channel & 3, isa_dma_port[channel][ISA_DMA_MASK]);
  106. }
  107. static void isa_disable_dma(dmach_t channel, dma_t *dma)
  108. {
  109. outb(channel | 4, isa_dma_port[channel][ISA_DMA_MASK]);
  110. }
  111. static struct dma_ops isa_dma_ops = {
  112. type: "ISA",
  113. enable: isa_enable_dma,
  114. disable: isa_disable_dma,
  115. residue: isa_get_dma_residue,
  116. };
  117. static struct resource dma_resources[] = {
  118. { "dma1", 0x0000, 0x000f },
  119. { "dma low page",  0x0080, 0x008f },
  120. { "dma2", 0x00c0, 0x00df },
  121. { "dma high page", 0x0480, 0x048f }
  122. };
  123. void __init isa_init_dma(dma_t *dma)
  124. {
  125. /*
  126.  * Try to autodetect presence of an ISA DMA controller.
  127.  * We do some minimal initialisation, and check that
  128.  * channel 0's DMA address registers are writeable.
  129.  */
  130. outb(0xff, 0x0d);
  131. outb(0xff, 0xda);
  132. /*
  133.  * Write high and low address, and then read them back
  134.  * in the same order.
  135.  */
  136. outb(0x55, 0x00);
  137. outb(0xaa, 0x00);
  138. if (inb(0) == 0x55 && inb(0) == 0xaa) {
  139. int channel, i;
  140. for (channel = 0; channel < 8; channel++) {
  141. dma[channel].d_ops = &isa_dma_ops;
  142. isa_disable_dma(channel, NULL);
  143. }
  144. outb(0x40, 0x0b);
  145. outb(0x41, 0x0b);
  146. outb(0x42, 0x0b);
  147. outb(0x43, 0x0b);
  148. outb(0xc0, 0xd6);
  149. outb(0x41, 0xd6);
  150. outb(0x42, 0xd6);
  151. outb(0x43, 0xd6);
  152. outb(0, 0xd4);
  153. outb(0x10, 0x08);
  154. outb(0x10, 0xd0);
  155. /*
  156.  * Is this correct?  According to my documentation, it
  157.  * doesn't appear to be.  It should be:
  158.  *  outb(0x3f, 0x40b); outb(0x3f, 0x4d6);
  159.  */
  160. outb(0x30, 0x40b);
  161. outb(0x31, 0x40b);
  162. outb(0x32, 0x40b);
  163. outb(0x33, 0x40b);
  164. outb(0x31, 0x4d6);
  165. outb(0x32, 0x4d6);
  166. outb(0x33, 0x4d6);
  167. request_dma(DMA_ISA_CASCADE, "cascade");
  168. for (i = 0; i < sizeof(dma_resources) / sizeof(dma_resources[0]); i++)
  169. request_resource(&ioport_resource, dma_resources + i);
  170. }
  171. }