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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* asm-sparc/floppy.h: Sparc specific parts of the Floppy driver.
  2.  *
  3.  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  4.  */
  5. #ifndef __ASM_SPARC_FLOPPY_H
  6. #define __ASM_SPARC_FLOPPY_H
  7. #include <asm/page.h>
  8. #include <asm/pgtable.h>
  9. #include <asm/system.h>
  10. #include <asm/idprom.h>
  11. #include <asm/machines.h>
  12. #include <asm/oplib.h>
  13. #include <asm/auxio.h>
  14. #include <asm/irq.h>
  15. /* We don't need no stinkin' I/O port allocation crap. */
  16. #undef release_region
  17. #undef check_region
  18. #undef request_region
  19. #define release_region(X, Y) do { } while(0)
  20. #define check_region(X, Y) (0)
  21. #define request_region(X, Y, Z) (1)
  22. /* References:
  23.  * 1) Netbsd Sun floppy driver.
  24.  * 2) NCR 82077 controller manual
  25.  * 3) Intel 82077 controller manual
  26.  */
  27. struct sun_flpy_controller {
  28. volatile unsigned char status_82072;  /* Main Status reg. */
  29. #define dcr_82072              status_82072   /* Digital Control reg. */
  30. #define status1_82077          status_82072   /* Auxiliary Status reg. 1 */
  31. volatile unsigned char data_82072;    /* Data fifo. */
  32. #define status2_82077          data_82072     /* Auxiliary Status reg. 2 */
  33. volatile unsigned char dor_82077;     /* Digital Output reg. */
  34. volatile unsigned char tapectl_82077; /* What the? Tape control reg? */
  35. volatile unsigned char status_82077;  /* Main Status Register. */
  36. #define drs_82077              status_82077   /* Digital Rate Select reg. */
  37. volatile unsigned char data_82077;    /* Data fifo. */
  38. volatile unsigned char ___unused;
  39. volatile unsigned char dir_82077;     /* Digital Input reg. */
  40. #define dcr_82077              dir_82077      /* Config Control reg. */
  41. };
  42. /* You'll only ever find one controller on a SparcStation anyways. */
  43. static struct sun_flpy_controller *sun_fdc = NULL;
  44. volatile unsigned char *fdc_status;
  45. struct sun_floppy_ops {
  46. unsigned char (*fd_inb)(int port);
  47. void (*fd_outb)(unsigned char value, int port);
  48. };
  49. static struct sun_floppy_ops sun_fdops;
  50. #define fd_inb(port)              sun_fdops.fd_inb(port)
  51. #define fd_outb(value,port)       sun_fdops.fd_outb(value,port)
  52. #define fd_enable_dma()           sun_fd_enable_dma()
  53. #define fd_disable_dma()          sun_fd_disable_dma()
  54. #define fd_request_dma()          (0) /* nothing... */
  55. #define fd_free_dma()             /* nothing... */
  56. #define fd_clear_dma_ff()         /* nothing... */
  57. #define fd_set_dma_mode(mode)     sun_fd_set_dma_mode(mode)
  58. #define fd_set_dma_addr(addr)     sun_fd_set_dma_addr(addr)
  59. #define fd_set_dma_count(count)   sun_fd_set_dma_count(count)
  60. #define fd_enable_irq()           /* nothing... */
  61. #define fd_disable_irq()          /* nothing... */
  62. #define fd_cacheflush(addr, size) /* nothing... */
  63. #define fd_request_irq()          sun_fd_request_irq()
  64. #define fd_free_irq()             /* nothing... */
  65. #if 0  /* P3: added by Alain, these cause a MMU corruption. 19960524 XXX */
  66. #define fd_dma_mem_alloc(size)    ((unsigned long) vmalloc(size))
  67. #define fd_dma_mem_free(addr,size) (vfree((void *)(addr)))
  68. #endif
  69. #define FLOPPY_MOTOR_MASK         0x10
  70. /* XXX This isn't really correct. XXX */
  71. #define get_dma_residue(x)        (0)
  72. #define FLOPPY0_TYPE  4
  73. #define FLOPPY1_TYPE  0
  74. /* Super paranoid... */
  75. #undef HAVE_DISABLE_HLT
  76. /* Here is where we catch the floppy driver trying to initialize,
  77.  * therefore this is where we call the PROM device tree probing
  78.  * routine etc. on the Sparc.
  79.  */
  80. #define FDC1                      sun_floppy_init()
  81. #define N_FDC    1
  82. #define N_DRIVE  8
  83. /* No 64k boundary crossing problems on the Sparc. */
  84. #define CROSS_64KB(a,s) (0)
  85. /* Routines unique to each controller type on a Sun. */
  86. static unsigned char sun_82072_fd_inb(int port)
  87. {
  88. udelay(5);
  89. switch(port & 7) {
  90. default:
  91. printk("floppy: Asked to read unknown port %dn", port);
  92. panic("floppy: Port bolixed.");
  93. case 4: /* FD_STATUS */
  94. return sun_fdc->status_82072 & ~STATUS_DMA;
  95. case 5: /* FD_DATA */
  96. return sun_fdc->data_82072;
  97. case 7: /* FD_DIR */
  98. return (*AUXREG & AUXIO_FLPY_DCHG)? 0x80: 0;
  99. };
  100. panic("sun_82072_fd_inb: How did I get here?");
  101. }
  102. static void sun_82072_fd_outb(unsigned char value, int port)
  103. {
  104. udelay(5);
  105. switch(port & 7) {
  106. default:
  107. printk("floppy: Asked to write to unknown port %dn", port);
  108. panic("floppy: Port bolixed.");
  109. case 2: /* FD_DOR */
  110. /* Oh geese, 82072 on the Sun has no DOR register,
  111.  * the functionality is implemented via the AUXIO
  112.  * I/O register.  So we must emulate the behavior.
  113.  *
  114.  * ASSUMPTIONS:  There will only ever be one floppy
  115.  *               drive attached to a Sun controller
  116.  *               and it will be at drive zero.
  117.  */
  118. {
  119. unsigned bits = 0;
  120. if (value & 0x10) bits |= AUXIO_FLPY_DSEL;
  121. if ((value & 0x80) == 0) bits |= AUXIO_FLPY_EJCT;
  122. set_auxio(bits, (~bits) & (AUXIO_FLPY_DSEL|AUXIO_FLPY_EJCT));
  123. }
  124. break;
  125. case 5: /* FD_DATA */
  126. sun_fdc->data_82072 = value;
  127. break;
  128. case 7: /* FD_DCR */
  129. sun_fdc->dcr_82072 = value;
  130. break;
  131. case 4: /* FD_STATUS */
  132. sun_fdc->status_82072 = value;
  133. break;
  134. };
  135. return;
  136. }
  137. static unsigned char sun_82077_fd_inb(int port)
  138. {
  139. udelay(5);
  140. switch(port & 7) {
  141. default:
  142. printk("floppy: Asked to read unknown port %dn", port);
  143. panic("floppy: Port bolixed.");
  144. case 4: /* FD_STATUS */
  145. return sun_fdc->status_82077 & ~STATUS_DMA;
  146. case 5: /* FD_DATA */
  147. return sun_fdc->data_82077;
  148. case 7: /* FD_DIR */
  149. /* XXX: Is DCL on 0x80 in sun4m? */
  150. return sun_fdc->dir_82077;
  151. };
  152. panic("sun_82072_fd_inb: How did I get here?");
  153. }
  154. static void sun_82077_fd_outb(unsigned char value, int port)
  155. {
  156. udelay(5);
  157. switch(port & 7) {
  158. default:
  159. printk("floppy: Asked to write to unknown port %dn", port);
  160. panic("floppy: Port bolixed.");
  161. case 2: /* FD_DOR */
  162. /* Happily, the 82077 has a real DOR register. */
  163. sun_fdc->dor_82077 = value;
  164. break;
  165. case 5: /* FD_DATA */
  166. sun_fdc->data_82077 = value;
  167. break;
  168. case 7: /* FD_DCR */
  169. sun_fdc->dcr_82077 = value;
  170. break;
  171. case 4: /* FD_STATUS */
  172. sun_fdc->status_82077 = value;
  173. break;
  174. };
  175. return;
  176. }
  177. /* For pseudo-dma (Sun floppy drives have no real DMA available to
  178.  * them so we must eat the data fifo bytes directly ourselves) we have
  179.  * three state variables.  doing_pdma tells our inline low-level
  180.  * assembly floppy interrupt entry point whether it should sit and eat
  181.  * bytes from the fifo or just transfer control up to the higher level
  182.  * floppy interrupt c-code.  I tried very hard but I could not get the
  183.  * pseudo-dma to work in c-code without getting many overruns and
  184.  * underruns.  If non-zero, doing_pdma encodes the direction of
  185.  * the transfer for debugging.  1=read 2=write
  186.  */
  187. char *pdma_vaddr;
  188. unsigned long pdma_size;
  189. volatile int doing_pdma = 0;
  190. /* This is software state */
  191. char *pdma_base = 0;
  192. unsigned long pdma_areasize;
  193. /* Common routines to all controller types on the Sparc. */
  194. static __inline__ void sun_fd_disable_dma(void)
  195. {
  196. doing_pdma = 0;
  197. if (pdma_base) {
  198. mmu_unlockarea(pdma_base, pdma_areasize);
  199. pdma_base = 0;
  200. }
  201. }
  202. static __inline__ void sun_fd_set_dma_mode(int mode)
  203. {
  204. switch(mode) {
  205. case DMA_MODE_READ:
  206. doing_pdma = 1;
  207. break;
  208. case DMA_MODE_WRITE:
  209. doing_pdma = 2;
  210. break;
  211. default:
  212. printk("Unknown dma mode %dn", mode);
  213. panic("floppy: Giving up...");
  214. }
  215. }
  216. static __inline__ void sun_fd_set_dma_addr(char *buffer)
  217. {
  218. pdma_vaddr = buffer;
  219. }
  220. static __inline__ void sun_fd_set_dma_count(int length)
  221. {
  222. pdma_size = length;
  223. }
  224. static __inline__ void sun_fd_enable_dma(void)
  225. {
  226. pdma_vaddr = mmu_lockarea(pdma_vaddr, pdma_size);
  227. pdma_base = pdma_vaddr;
  228. pdma_areasize = pdma_size;
  229. }
  230. /* Our low-level entry point in arch/sparc/kernel/entry.S */
  231. extern void floppy_hardint(int irq, void *unused, struct pt_regs *regs);
  232. static int sun_fd_request_irq(void)
  233. {
  234. static int once = 0;
  235. int error;
  236. if(!once) {
  237. once = 1;
  238. error = request_fast_irq(FLOPPY_IRQ, floppy_hardint, SA_INTERRUPT, "floppy");
  239. return ((error == 0) ? 0 : -1);
  240. } else return 0;
  241. }
  242. static struct linux_prom_registers fd_regs[2];
  243. static int sun_floppy_init(void)
  244. {
  245. char state[128];
  246. int tnode, fd_node, num_regs;
  247. struct resource r;
  248. use_virtual_dma = 1;
  249. FLOPPY_IRQ = 11;
  250. /* Forget it if we aren't on a machine that could possibly
  251.  * ever have a floppy drive.
  252.  */
  253. if((sparc_cpu_model != sun4c && sparc_cpu_model != sun4m) ||
  254.    ((idprom->id_machtype == (SM_SUN4C | SM_4C_SLC)) ||
  255.     (idprom->id_machtype == (SM_SUN4C | SM_4C_ELC)))) {
  256. /* We certainly don't have a floppy controller. */
  257. goto no_sun_fdc;
  258. }
  259. /* Well, try to find one. */
  260. tnode = prom_getchild(prom_root_node);
  261. fd_node = prom_searchsiblings(tnode, "obio");
  262. if(fd_node != 0) {
  263. tnode = prom_getchild(fd_node);
  264. fd_node = prom_searchsiblings(tnode, "SUNW,fdtwo");
  265. } else {
  266. fd_node = prom_searchsiblings(tnode, "fd");
  267. }
  268. if(fd_node == 0) {
  269. goto no_sun_fdc;
  270. }
  271. /* The sun4m lets us know if the controller is actually usable. */
  272. if(sparc_cpu_model == sun4m) {
  273. prom_getproperty(fd_node, "status", state, sizeof(state));
  274. if(!strcmp(state, "disabled")) {
  275. goto no_sun_fdc;
  276. }
  277. }
  278. num_regs = prom_getproperty(fd_node, "reg", (char *) fd_regs, sizeof(fd_regs));
  279. num_regs = (num_regs / sizeof(fd_regs[0]));
  280. prom_apply_obio_ranges(fd_regs, num_regs);
  281. memset(&r, 0, sizeof(r));
  282. r.flags = fd_regs[0].which_io;
  283. r.start = fd_regs[0].phys_addr;
  284. sun_fdc = (struct sun_flpy_controller *)
  285.     sbus_ioremap(&r, 0, fd_regs[0].reg_size, "floppy");
  286. /* Last minute sanity check... */
  287. if(sun_fdc->status_82072 == 0xff) {
  288. sun_fdc = NULL;
  289. goto no_sun_fdc;
  290. }
  291.         if(sparc_cpu_model == sun4c) {
  292.                 sun_fdops.fd_inb = sun_82072_fd_inb;
  293.                 sun_fdops.fd_outb = sun_82072_fd_outb;
  294.                 fdc_status = &sun_fdc->status_82072;
  295.                 /* printk("AUXIO @0x%pn", auxio_register); */ /* P3 */
  296.         } else {
  297.                 sun_fdops.fd_inb = sun_82077_fd_inb;
  298.                 sun_fdops.fd_outb = sun_82077_fd_outb;
  299.                 fdc_status = &sun_fdc->status_82077;
  300.                 /* printk("DOR @0x%pn", &sun_fdc->dor_82077); */ /* P3 */
  301. }
  302. /* Success... */
  303. allowed_drive_mask = 0x01;
  304. return (int) sun_fdc;
  305. no_sun_fdc:
  306. return -1;
  307. }
  308. static int sparc_eject(void)
  309. {
  310. set_dor(0x00, 0xff, 0x90);
  311. udelay(500);
  312. set_dor(0x00, 0x6f, 0x00);
  313. udelay(500);
  314. return 0;
  315. }
  316. #define fd_eject(drive) sparc_eject()
  317. #define EXTRA_FLOPPY_PARAMS
  318. #endif /* !(__ASM_SPARC_FLOPPY_H) */