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

嵌入式Linux

开发平台:

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 virtual_dma_init(void)
  195. {
  196. /* nothing... */
  197. }
  198. static __inline__ void sun_fd_disable_dma(void)
  199. {
  200. doing_pdma = 0;
  201. if (pdma_base) {
  202. mmu_unlockarea(pdma_base, pdma_areasize);
  203. pdma_base = 0;
  204. }
  205. }
  206. static __inline__ void sun_fd_set_dma_mode(int mode)
  207. {
  208. switch(mode) {
  209. case DMA_MODE_READ:
  210. doing_pdma = 1;
  211. break;
  212. case DMA_MODE_WRITE:
  213. doing_pdma = 2;
  214. break;
  215. default:
  216. printk("Unknown dma mode %dn", mode);
  217. panic("floppy: Giving up...");
  218. }
  219. }
  220. static __inline__ void sun_fd_set_dma_addr(char *buffer)
  221. {
  222. pdma_vaddr = buffer;
  223. }
  224. static __inline__ void sun_fd_set_dma_count(int length)
  225. {
  226. pdma_size = length;
  227. }
  228. static __inline__ void sun_fd_enable_dma(void)
  229. {
  230. pdma_vaddr = mmu_lockarea(pdma_vaddr, pdma_size);
  231. pdma_base = pdma_vaddr;
  232. pdma_areasize = pdma_size;
  233. }
  234. /* Our low-level entry point in arch/sparc/kernel/entry.S */
  235. extern void floppy_hardint(int irq, void *unused, struct pt_regs *regs);
  236. static int sun_fd_request_irq(void)
  237. {
  238. static int once = 0;
  239. int error;
  240. if(!once) {
  241. once = 1;
  242. error = request_fast_irq(FLOPPY_IRQ, floppy_hardint, SA_INTERRUPT, "floppy");
  243. return ((error == 0) ? 0 : -1);
  244. } else return 0;
  245. }
  246. static struct linux_prom_registers fd_regs[2];
  247. static int sun_floppy_init(void)
  248. {
  249. char state[128];
  250. int tnode, fd_node, num_regs;
  251. struct resource r;
  252. use_virtual_dma = 1;
  253. FLOPPY_IRQ = 11;
  254. /* Forget it if we aren't on a machine that could possibly
  255.  * ever have a floppy drive.
  256.  */
  257. if((sparc_cpu_model != sun4c && sparc_cpu_model != sun4m) ||
  258.    ((idprom->id_machtype == (SM_SUN4C | SM_4C_SLC)) ||
  259.     (idprom->id_machtype == (SM_SUN4C | SM_4C_ELC)))) {
  260. /* We certainly don't have a floppy controller. */
  261. goto no_sun_fdc;
  262. }
  263. /* Well, try to find one. */
  264. tnode = prom_getchild(prom_root_node);
  265. fd_node = prom_searchsiblings(tnode, "obio");
  266. if(fd_node != 0) {
  267. tnode = prom_getchild(fd_node);
  268. fd_node = prom_searchsiblings(tnode, "SUNW,fdtwo");
  269. } else {
  270. fd_node = prom_searchsiblings(tnode, "fd");
  271. }
  272. if(fd_node == 0) {
  273. goto no_sun_fdc;
  274. }
  275. /* The sun4m lets us know if the controller is actually usable. */
  276. if(sparc_cpu_model == sun4m) {
  277. prom_getproperty(fd_node, "status", state, sizeof(state));
  278. if(!strcmp(state, "disabled")) {
  279. goto no_sun_fdc;
  280. }
  281. }
  282. num_regs = prom_getproperty(fd_node, "reg", (char *) fd_regs, sizeof(fd_regs));
  283. num_regs = (num_regs / sizeof(fd_regs[0]));
  284. prom_apply_obio_ranges(fd_regs, num_regs);
  285. memset(&r, 0, sizeof(r));
  286. r.flags = fd_regs[0].which_io;
  287. r.start = fd_regs[0].phys_addr;
  288. sun_fdc = (struct sun_flpy_controller *)
  289.     sbus_ioremap(&r, 0, fd_regs[0].reg_size, "floppy");
  290. /* Last minute sanity check... */
  291. if(sun_fdc->status_82072 == 0xff) {
  292. sun_fdc = NULL;
  293. goto no_sun_fdc;
  294. }
  295.         if(sparc_cpu_model == sun4c) {
  296.                 sun_fdops.fd_inb = sun_82072_fd_inb;
  297.                 sun_fdops.fd_outb = sun_82072_fd_outb;
  298.                 fdc_status = &sun_fdc->status_82072;
  299.                 /* printk("AUXIO @0x%pn", auxio_register); */ /* P3 */
  300.         } else {
  301.                 sun_fdops.fd_inb = sun_82077_fd_inb;
  302.                 sun_fdops.fd_outb = sun_82077_fd_outb;
  303.                 fdc_status = &sun_fdc->status_82077;
  304.                 /* printk("DOR @0x%pn", &sun_fdc->dor_82077); */ /* P3 */
  305. }
  306. /* Success... */
  307. allowed_drive_mask = 0x01;
  308. return (int) sun_fdc;
  309. no_sun_fdc:
  310. return -1;
  311. }
  312. static int sparc_eject(void)
  313. {
  314. set_dor(0x00, 0xff, 0x90);
  315. udelay(500);
  316. set_dor(0x00, 0x6f, 0x00);
  317. udelay(500);
  318. return 0;
  319. }
  320. #define fd_eject(drive) sparc_eject()
  321. #define EXTRA_FLOPPY_PARAMS
  322. #endif /* !(__ASM_SPARC_FLOPPY_H) */