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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Architecture specific parts of the Floppy driver
  3.  *
  4.  * This file is subject to the terms and conditions of the GNU General Public
  5.  * License.  See the file "COPYING" in the main directory of this archive
  6.  * for more details.
  7.  *
  8.  * Copyright (C) 1995
  9.  */
  10. #ifndef __ASM_I386_FLOPPY_H
  11. #define __ASM_I386_FLOPPY_H
  12. #include <linux/vmalloc.h>
  13. /*
  14.  * The DMA channel used by the floppy controller cannot access data at
  15.  * addresses >= 16MB
  16.  *
  17.  * Went back to the 1MB limit, as some people had problems with the floppy
  18.  * driver otherwise. It doesn't matter much for performance anyway, as most
  19.  * floppy accesses go through the track buffer.
  20.  */
  21. #define _CROSS_64KB(a,s,vdma) 
  22. (!vdma && ((unsigned long)(a)/K_64 != ((unsigned long)(a) + (s) - 1) / K_64))
  23. #define CROSS_64KB(a,s) _CROSS_64KB(a,s,use_virtual_dma & 1)
  24. #define SW fd_routine[use_virtual_dma&1]
  25. #define CSW fd_routine[can_use_virtual_dma & 1]
  26. #define fd_inb(port) inb_p(port)
  27. #define fd_outb(port,value) outb_p(port,value)
  28. #define fd_request_dma()        CSW._request_dma(FLOPPY_DMA,"floppy")
  29. #define fd_free_dma()           CSW._free_dma(FLOPPY_DMA)
  30. #define fd_enable_irq()         enable_irq(FLOPPY_IRQ)
  31. #define fd_disable_irq()        disable_irq(FLOPPY_IRQ)
  32. #define fd_free_irq() free_irq(FLOPPY_IRQ, NULL)
  33. #define fd_get_dma_residue()    SW._get_dma_residue(FLOPPY_DMA)
  34. #define fd_dma_mem_alloc(size) SW._dma_mem_alloc(size)
  35. #define fd_dma_setup(addr, size, mode, io) SW._dma_setup(addr, size, mode, io)
  36. #define FLOPPY_CAN_FALLBACK_ON_NODMA
  37. static int virtual_dma_count;
  38. static int virtual_dma_residue;
  39. static char *virtual_dma_addr;
  40. static int virtual_dma_mode;
  41. static int doing_pdma;
  42. static void floppy_hardint(int irq, void *dev_id, struct pt_regs * regs)
  43. {
  44. register unsigned char st;
  45. #undef TRACE_FLPY_INT
  46. #define NO_FLOPPY_ASSEMBLER
  47. #ifdef TRACE_FLPY_INT
  48. static int calls=0;
  49. static int bytes=0;
  50. static int dma_wait=0;
  51. #endif
  52. if(!doing_pdma) {
  53. floppy_interrupt(irq, dev_id, regs);
  54. return;
  55. }
  56. #ifdef TRACE_FLPY_INT
  57. if(!calls)
  58. bytes = virtual_dma_count;
  59. #endif
  60. #ifndef NO_FLOPPY_ASSEMBLER
  61. __asm__ (
  62.        "testl %1,%1"
  63. "je 3f"
  64. "1: inb %w4,%b0"
  65. "andb $160,%b0"
  66. "cmpb $160,%b0"
  67. "jne 2f"
  68. "incw %w4"
  69. "testl %3,%3"
  70. "jne 4f"
  71. "inb %w4,%b0"
  72. "movb %0,(%2)"
  73. "jmp 5f"
  74. "4:     movb (%2),%0"
  75. "outb %b0,%w4"
  76. "5: decw %w4"
  77. "outb %0,$0x80"
  78. "decl %1"
  79. "incl %2"
  80. "testl %1,%1"
  81. "jne 1b"
  82. "3: inb %w4,%b0"
  83. "2: "
  84.        : "=a" ((char) st), 
  85.        "=c" ((long) virtual_dma_count), 
  86.        "=S" ((long) virtual_dma_addr)
  87.        : "b" ((long) virtual_dma_mode),
  88.        "d" ((short) virtual_dma_port+4), 
  89.        "1" ((long) virtual_dma_count),
  90.        "2" ((long) virtual_dma_addr));
  91. #else
  92. {
  93. register int lcount;
  94. register char *lptr;
  95. st = 1;
  96. for(lcount=virtual_dma_count, lptr=virtual_dma_addr; 
  97.     lcount; lcount--, lptr++) {
  98. st=inb(virtual_dma_port+4) & 0xa0 ;
  99. if(st != 0xa0) 
  100. break;
  101. if(virtual_dma_mode)
  102. outb_p(*lptr, virtual_dma_port+5);
  103. else
  104. *lptr = inb_p(virtual_dma_port+5);
  105. }
  106. virtual_dma_count = lcount;
  107. virtual_dma_addr = lptr;
  108. st = inb(virtual_dma_port+4);
  109. }
  110. #endif
  111. #ifdef TRACE_FLPY_INT
  112. calls++;
  113. #endif
  114. if(st == 0x20)
  115. return;
  116. if(!(st & 0x20)) {
  117. virtual_dma_residue += virtual_dma_count;
  118. virtual_dma_count=0;
  119. #ifdef TRACE_FLPY_INT
  120. printk("count=%x, residue=%x calls=%d bytes=%d dma_wait=%dn", 
  121.        virtual_dma_count, virtual_dma_residue, calls, bytes,
  122.        dma_wait);
  123. calls = 0;
  124. dma_wait=0;
  125. #endif
  126. doing_pdma = 0;
  127. floppy_interrupt(irq, dev_id, regs);
  128. return;
  129. }
  130. #ifdef TRACE_FLPY_INT
  131. if(!virtual_dma_count)
  132. dma_wait++;
  133. #endif
  134. }
  135. static void fd_disable_dma(void)
  136. {
  137. if(! (can_use_virtual_dma & 1))
  138. disable_dma(FLOPPY_DMA);
  139. doing_pdma = 0;
  140. virtual_dma_residue += virtual_dma_count;
  141. virtual_dma_count=0;
  142. }
  143. static int vdma_request_dma(unsigned int dmanr, const char * device_id)
  144. {
  145. return 0;
  146. }
  147. static void vdma_nop(unsigned int dummy)
  148. {
  149. }
  150. static int vdma_get_dma_residue(unsigned int dummy)
  151. {
  152. return virtual_dma_count + virtual_dma_residue;
  153. }
  154. static int fd_request_irq(void)
  155. {
  156. if(can_use_virtual_dma)
  157. return request_irq(FLOPPY_IRQ, floppy_hardint,SA_INTERRUPT,
  158.    "floppy", NULL);
  159. else
  160. return request_irq(FLOPPY_IRQ, floppy_interrupt,
  161.    SA_INTERRUPT|SA_SAMPLE_RANDOM,
  162.    "floppy", NULL);
  163. }
  164. static unsigned long dma_mem_alloc(unsigned long size)
  165. {
  166. return __get_dma_pages(GFP_KERNEL,get_order(size));
  167. }
  168. static unsigned long vdma_mem_alloc(unsigned long size)
  169. {
  170. return (unsigned long) vmalloc(size);
  171. }
  172. #define nodma_mem_alloc(size) vdma_mem_alloc(size)
  173. static void _fd_dma_mem_free(unsigned long addr, unsigned long size)
  174. {
  175. if((unsigned int) addr >= (unsigned int) high_memory)
  176. return vfree((void *)addr);
  177. else
  178. free_pages(addr, get_order(size));
  179. }
  180. #define fd_dma_mem_free(addr, size)  _fd_dma_mem_free(addr, size) 
  181. static void _fd_chose_dma_mode(char *addr, unsigned long size)
  182. {
  183. if(can_use_virtual_dma == 2) {
  184. if((unsigned int) addr >= (unsigned int) high_memory ||
  185.    virt_to_bus(addr) >= 0x1000000 ||
  186.    _CROSS_64KB(addr, size, 0))
  187. use_virtual_dma = 1;
  188. else
  189. use_virtual_dma = 0;
  190. } else {
  191. use_virtual_dma = can_use_virtual_dma & 1;
  192. }
  193. }
  194. #define fd_chose_dma_mode(addr, size) _fd_chose_dma_mode(addr, size)
  195. static int vdma_dma_setup(char *addr, unsigned long size, int mode, int io)
  196. {
  197. doing_pdma = 1;
  198. virtual_dma_port = io;
  199. virtual_dma_mode = (mode  == DMA_MODE_WRITE);
  200. virtual_dma_addr = addr;
  201. virtual_dma_count = size;
  202. virtual_dma_residue = 0;
  203. return 0;
  204. }
  205. static int hard_dma_setup(char *addr, unsigned long size, int mode, int io)
  206. {
  207. #ifdef FLOPPY_SANITY_CHECK
  208. if (CROSS_64KB(addr, size)) {
  209. printk("DMA crossing 64-K boundary %p-%pn", addr, addr+size);
  210. return -1;
  211. }
  212. #endif
  213. /* actual, physical DMA */
  214. doing_pdma = 0;
  215. clear_dma_ff(FLOPPY_DMA);
  216. set_dma_mode(FLOPPY_DMA,mode);
  217. set_dma_addr(FLOPPY_DMA,virt_to_bus(addr));
  218. set_dma_count(FLOPPY_DMA,size);
  219. enable_dma(FLOPPY_DMA);
  220. return 0;
  221. }
  222. struct fd_routine_l {
  223. int (*_request_dma)(unsigned int dmanr, const char * device_id);
  224. void (*_free_dma)(unsigned int dmanr);
  225. int (*_get_dma_residue)(unsigned int dummy);
  226. unsigned long (*_dma_mem_alloc) (unsigned long size);
  227. int (*_dma_setup)(char *addr, unsigned long size, int mode, int io);
  228. } fd_routine[] = {
  229. {
  230. request_dma,
  231. free_dma,
  232. get_dma_residue,
  233. dma_mem_alloc,
  234. hard_dma_setup
  235. },
  236. {
  237. vdma_request_dma,
  238. vdma_nop,
  239. vdma_get_dma_residue,
  240. vdma_mem_alloc,
  241. vdma_dma_setup
  242. }
  243. };
  244. static int FDC1 = 0x3f0;
  245. static int FDC2 = -1;
  246. /*
  247.  * Floppy types are stored in the rtc's CMOS RAM and so rtc_lock
  248.  * is needed to prevent corrupted CMOS RAM in case "insmod floppy"
  249.  * coincides with another rtc CMOS user. Paul G.
  250.  */
  251. #define FLOPPY0_TYPE ({
  252. unsigned long flags;
  253. unsigned char val;
  254. spin_lock_irqsave(&rtc_lock, flags);
  255. val = (CMOS_READ(0x10) >> 4) & 15;
  256. spin_unlock_irqrestore(&rtc_lock, flags);
  257. val;
  258. })
  259. #define FLOPPY1_TYPE ({
  260. unsigned long flags;
  261. unsigned char val;
  262. spin_lock_irqsave(&rtc_lock, flags);
  263. val = CMOS_READ(0x10) & 15;
  264. spin_unlock_irqrestore(&rtc_lock, flags);
  265. val;
  266. })
  267. #define N_FDC 2
  268. #define N_DRIVE 8
  269. #define FLOPPY_MOTOR_MASK 0xf0
  270. #define AUTO_DMA
  271. #define EXTRA_FLOPPY_PARAMS
  272. #endif /* __ASM_I386_FLOPPY_H */