sun3xflop.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:6k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* sun3xflop.h: Sun3/80 specific parts of the floppy driver.
  2.  *
  3.  * Derived partially from asm-sparc/floppy.h, which is:
  4.  *     Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  5.  *
  6.  * Sun3x version 2/4/2000 Sam Creasey (sammy@oh.verio.com)
  7.  */
  8. #ifndef __ASM_SUN3X_FLOPPY_H
  9. #define __ASM_SUN3X_FLOPPY_H
  10. #include <asm/page.h>
  11. #include <asm/pgtable.h>
  12. #include <asm/system.h>
  13. #include <asm/irq.h>
  14. #include <asm/sun3x.h>
  15. /* default interrupt vector */
  16. #define SUN3X_FDC_IRQ 0x40
  17. /* some constants */
  18. #define FCR_TC 0x1
  19. #define FCR_EJECT 0x2
  20. #define FCR_MTRON 0x4
  21. #define FCR_DSEL1 0x8
  22. #define FCR_DSEL0 0x10
  23. /* We don't need no stinkin' I/O port allocation crap. */
  24. #undef release_region
  25. #undef check_region
  26. #undef request_region
  27. #define release_region(X, Y) do { } while(0)
  28. #define check_region(X, Y) (0)
  29. #define request_region(X, Y, Z) (1)
  30. struct sun3xflop_private {
  31. volatile unsigned char *status_r;
  32. volatile unsigned char *data_r;
  33. volatile unsigned char *fcr_r;
  34. volatile unsigned char *fvr_r;
  35. unsigned char fcr;
  36. } sun3x_fdc;
  37. /* Super paranoid... */
  38. #undef HAVE_DISABLE_HLT
  39. /* Routines unique to each controller type on a Sun. */
  40. static unsigned char sun3x_82072_fd_inb(int port)
  41. {
  42. static int once = 0;
  43. // udelay(5);
  44. switch(port & 7) {
  45. default:
  46. printk("floppy: Asked to read unknown port %dn", port);
  47. panic("floppy: Port bolixed.");
  48. case 4: /* FD_STATUS */
  49. return (*sun3x_fdc.status_r) & ~STATUS_DMA;
  50. case 5: /* FD_DATA */
  51. return (*sun3x_fdc.data_r);
  52. case 7: /* FD_DIR */
  53. /* ugly hack, I can't find a way to actually detect the disk */
  54. if(!once) {
  55. once = 1;
  56. return 0x80;
  57. }
  58. return 0;
  59. };
  60. panic("sun_82072_fd_inb: How did I get here?");
  61. }
  62. static void sun3x_82072_fd_outb(unsigned char value, int port)
  63. {
  64. // udelay(5);
  65. switch(port & 7) {
  66. default:
  67. printk("floppy: Asked to write to unknown port %dn", port);
  68. panic("floppy: Port bolixed.");
  69. case 2: /* FD_DOR */
  70. /* Oh geese, 82072 on the Sun has no DOR register,
  71.  * so we make do with taunting the FCR.
  72.  *
  73.  * ASSUMPTIONS:  There will only ever be one floppy
  74.  *               drive attached to a Sun controller
  75.  *               and it will be at drive zero.
  76.  */
  77. {
  78. unsigned char fcr = sun3x_fdc.fcr;
  79. if(value & 0x10) {
  80. fcr |= (FCR_DSEL0 | FCR_MTRON);
  81. } else 
  82. fcr &= ~(FCR_DSEL0 | FCR_MTRON);
  83. if(fcr != sun3x_fdc.fcr) { 
  84. *(sun3x_fdc.fcr_r) = fcr;
  85. sun3x_fdc.fcr = fcr;
  86. }
  87. }
  88. break;
  89. case 5: /* FD_DATA */
  90. *(sun3x_fdc.data_r) = value;
  91. break;
  92. case 7: /* FD_DCR */
  93. *(sun3x_fdc.status_r) = value;
  94. break;
  95. case 4: /* FD_STATUS */
  96. *(sun3x_fdc.status_r) = value;
  97. break;
  98. };
  99. return;
  100. }
  101. asmlinkage void sun3xflop_hardint(int irq, void *dev_id, struct pt_regs * regs)
  102. {
  103. register unsigned char st;
  104. #undef TRACE_FLPY_INT
  105. #define NO_FLOPPY_ASSEMBLER
  106. #ifdef TRACE_FLPY_INT 
  107. static int calls=0;
  108. static int bytes=0;
  109. static int dma_wait=0;
  110. #endif
  111. if(!doing_pdma) {
  112. floppy_interrupt(irq, dev_id, regs);
  113. return;
  114. }
  115. // printk("doing pdman");// st %xn", sun_fdc->status_82072);
  116. #ifdef TRACE_FLPY_INT
  117. if(!calls)
  118. bytes = virtual_dma_count;
  119. #endif
  120. {
  121. register int lcount;
  122. register char *lptr;
  123. for(lcount=virtual_dma_count, lptr=virtual_dma_addr; 
  124.     lcount; lcount--, lptr++) {
  125. /* st=fd_inb(virtual_dma_port+4) & 0x80 ;  */
  126. st = *(sun3x_fdc.status_r);
  127. /* if(st != 0xa0)                  */
  128. /* break;                  */
  129. if((st & 0x80) == 0) {
  130. virtual_dma_count = lcount;
  131. virtual_dma_addr = lptr;
  132. return;
  133. }
  134. if((st & 0x20) == 0)
  135. break;
  136. if(virtual_dma_mode)
  137. /* fd_outb(*lptr, virtual_dma_port+5); */
  138. *(sun3x_fdc.data_r) = *lptr;
  139. else
  140. /* *lptr = fd_inb(virtual_dma_port+5); */
  141. *lptr = *(sun3x_fdc.data_r);
  142. }
  143. virtual_dma_count = lcount;
  144. virtual_dma_addr = lptr;
  145. /* st = fd_inb(virtual_dma_port+4);   */
  146. st = *(sun3x_fdc.status_r);
  147. }
  148. #ifdef TRACE_FLPY_INT
  149. calls++;
  150. #endif
  151. // printk("st=%02xn", st);
  152. if(st == 0x20)
  153. return;
  154. if(!(st & 0x20)) {
  155. virtual_dma_residue += virtual_dma_count;
  156. virtual_dma_count=0;
  157. doing_pdma = 0;
  158. #ifdef TRACE_FLPY_INT
  159. printk("count=%x, residue=%x calls=%d bytes=%x dma_wait=%dn", 
  160.        virtual_dma_count, virtual_dma_residue, calls, bytes,
  161.        dma_wait);
  162. calls = 0;
  163. dma_wait=0;
  164. #endif
  165. floppy_interrupt(irq, dev_id, regs);
  166. return;
  167. }
  168. #ifdef TRACE_FLPY_INT
  169. if(!virtual_dma_count)
  170. dma_wait++;
  171. #endif
  172. }
  173. static int sun3xflop_request_irq(void)
  174. {
  175. static int once = 0;
  176. int error;
  177. if(!once) {
  178. once = 1;
  179. error = request_irq(FLOPPY_IRQ, sun3xflop_hardint, SA_INTERRUPT, "floppy", 0);
  180. return ((error == 0) ? 0 : -1);
  181. } else return 0;
  182. }
  183. static void __init floppy_set_flags(int *ints,int param, int param2);
  184. static int sun3xflop_init(void)
  185. {
  186. if(FLOPPY_IRQ < 0x40)
  187. FLOPPY_IRQ = SUN3X_FDC_IRQ;
  188. sun3x_fdc.status_r = (volatile unsigned char *)SUN3X_FDC;
  189. sun3x_fdc.data_r  = (volatile unsigned char *)(SUN3X_FDC+1);
  190. sun3x_fdc.fcr_r = (volatile unsigned char *)SUN3X_FDC_FCR;
  191. sun3x_fdc.fvr_r = (volatile unsigned char *)SUN3X_FDC_FVR;
  192. sun3x_fdc.fcr = 0;
  193. /* Last minute sanity check... */
  194. if(*sun3x_fdc.status_r == 0xff) {
  195. return -1;
  196. }
  197. *sun3x_fdc.fvr_r = FLOPPY_IRQ;
  198. *sun3x_fdc.fcr_r = FCR_TC;
  199. udelay(10);
  200. *sun3x_fdc.fcr_r = 0;
  201. /* Success... */
  202. floppy_set_flags(0, 1, FD_BROKEN_DCL); // I don't know how to detect this.
  203. allowed_drive_mask = 0x01;
  204. return (int) SUN3X_FDC;
  205. }
  206. /* I'm not precisely sure this eject routine works */
  207. static int sun3x_eject(void)
  208. {
  209. if(MACH_IS_SUN3X) {
  210. sun3x_fdc.fcr |= (FCR_DSEL0 | FCR_EJECT);
  211. *(sun3x_fdc.fcr_r) = sun3x_fdc.fcr;
  212. udelay(10);
  213. sun3x_fdc.fcr &= ~(FCR_DSEL0 | FCR_EJECT);
  214. *(sun3x_fdc.fcr_r) = sun3x_fdc.fcr;
  215. }
  216. return 0;
  217. }
  218. #define fd_eject(drive) sun3x_eject()
  219. #endif /* !(__ASM_SUN3X_FLOPPY_H) */