fd.c revision 1.81 1 /* $NetBSD: fd.c,v 1.81 2014/12/31 19:52:04 christos Exp $ */
2
3 /*
4 * Copyright (c) 1995 Leo Weppelman.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28 /*
29 * This file contains a driver for the Floppy Disk Controller (FDC)
30 * on the Atari TT. It uses the WD 1772 chip, modified for steprates.
31 *
32 * The ST floppy disk controller shares the access to the DMA circuitry
33 * with other devices. For this reason the floppy disk controller makes
34 * use of some special DMA accessing code.
35 *
36 * Interrupts from the FDC are in fact DMA interrupts which get their
37 * first level handling in 'dma.c' . If the floppy driver is currently
38 * using DMA the interrupt is signalled to 'fdcint'.
39 *
40 * TODO:
41 * - Test it with 2 drives (I don't have them)
42 * - Test it with an HD-drive (Don't have that either)
43 * - Finish ioctl's
44 */
45
46 #include <sys/cdefs.h>
47 __KERNEL_RCSID(0, "$NetBSD: fd.c,v 1.81 2014/12/31 19:52:04 christos Exp $");
48
49 #include <sys/param.h>
50 #include <sys/systm.h>
51 #include <sys/callout.h>
52 #include <sys/kernel.h>
53 #include <sys/malloc.h>
54 #include <sys/buf.h>
55 #include <sys/bufq.h>
56 #include <sys/proc.h>
57 #include <sys/device.h>
58 #include <sys/ioctl.h>
59 #include <sys/fcntl.h>
60 #include <sys/conf.h>
61 #include <sys/disklabel.h>
62 #include <sys/disk.h>
63 #include <sys/dkbad.h>
64 #include <atari/atari/device.h>
65 #include <atari/atari/stalloc.h>
66 #include <machine/disklabel.h>
67 #include <machine/iomap.h>
68 #include <machine/mfp.h>
69 #include <machine/dma.h>
70 #include <machine/video.h>
71 #include <machine/cpu.h>
72 #include <atari/dev/ym2149reg.h>
73 #include <atari/dev/fdreg.h>
74
75 #include "ioconf.h"
76
77 /*
78 * Be verbose for debugging
79 */
80 /*#define FLP_DEBUG 1 */
81
82 #define FDC_MAX_DMA_AD 0x1000000 /* No DMA possible beyond */
83
84 /* Parameters for the disk drive. */
85 #define SECTOR_SIZE 512 /* physical sector size in bytes */
86 #define NR_DRIVES 2 /* maximum number of drives */
87 #define NR_TYPES 3 /* number of diskette/drive combinations*/
88 #define MAX_ERRORS 10 /* how often to try rd/wt before quitting*/
89 #define STEP_DELAY 6000 /* 6ms (6000us) delay after stepping */
90
91
92 #define INV_TRK 32000 /* Should fit in unsigned short */
93 #define INV_PART NR_TYPES
94
95 /*
96 * Driver states
97 */
98 #define FLP_IDLE 0x00 /* floppy is idle */
99 #define FLP_MON 0x01 /* idle with motor on */
100 #define FLP_STAT 0x02 /* determine floppy status */
101 #define FLP_XFER 0x04 /* read/write data from floppy */
102
103 /*
104 * Timer delay's
105 */
106 #define FLP_MONDELAY (3 * hz) /* motor-on delay */
107 #define FLP_XFERDELAY (2 * hz) /* timeout on transfer */
108
109 /*
110 * The density codes
111 */
112 #define FLP_DD 0 /* Double density */
113 #define FLP_HD 1 /* High density */
114
115
116 #define b_block b_resid /* FIXME: this is not the place */
117
118 /*
119 * Global data for all physical floppy devices
120 */
121 static short selected = 0; /* drive/head currently selected*/
122 static short motoron = 0; /* motor is spinning */
123 static short nopens = 0; /* Number of opens executed */
124
125 static short fd_state = FLP_IDLE; /* Current driver state */
126 static int lock_stat = 0; /* DMA locking status */
127 static short fd_cmd = 0; /* command being executed */
128 static const char *fd_error = NULL; /* error from fd_xfer_ok() */
129
130 /*
131 * Private per device data
132 */
133 struct fd_softc {
134 device_t sc_dev; /* generic device info */
135 struct disk dkdev; /* generic disk info */
136 struct bufq_state *bufq; /* queue of buf's */
137 struct callout sc_motor_ch;
138 int unit; /* unit for atari controlling hw*/
139 int nheads; /* number of heads in use */
140 int nsectors; /* number of sectors/track */
141 int density; /* density code */
142 int nblocks; /* number of blocks on disk */
143 int curtrk; /* track head positioned on */
144 short flags; /* misc flags */
145 short part; /* Current open partition */
146 int sector; /* logical sector for I/O */
147 uint8_t *io_data; /* KVA for data transfer */
148 int io_bytes; /* bytes left for I/O */
149 int io_dir; /* B_READ/B_WRITE */
150 int errcnt; /* current error count */
151 uint8_t *bounceb; /* Bounce buffer */
152
153 };
154
155 /*
156 * Flags in fd_softc:
157 */
158 #define FLPF_NOTRESP 0x001 /* Unit not responding */
159 #define FLPF_ISOPEN 0x002 /* Unit is open */
160 #define FLPF_SPARE 0x004 /* Not used */
161 #define FLPF_HAVELAB 0x008 /* We have a valid label */
162 #define FLPF_BOUNCE 0x010 /* Now using the bounce buffer */
163 #define FLPF_WRTPROT 0x020 /* Unit is write-protected */
164 #define FLPF_EMPTY 0x040 /* Unit is empty */
165 #define FLPF_INOPEN 0x080 /* Currently being opened */
166 #define FLPF_GETSTAT 0x100 /* Getting unit status */
167
168 struct fd_types {
169 int nheads; /* Heads in use */
170 int nsectors; /* sectors per track */
171 int nblocks; /* number of blocks */
172 int density; /* density code */
173 const char *descr; /* type description */
174 } fdtypes[NR_TYPES] = {
175 { 1, 9, 720 , FLP_DD , "360KB" }, /* 360 Kb */
176 { 2, 9, 1440 , FLP_DD , "720KB" }, /* 720 Kb */
177 { 2, 18, 2880 , FLP_HD , "1.44MB" }, /* 1.44 Mb */
178 };
179
180 #define FLP_TYPE_360 0 /* XXX: Please keep these in */
181 #define FLP_TYPE_720 1 /* sync with the numbering in */
182 #define FLP_TYPE_144 2 /* 'fdtypes' right above! */
183
184 /*
185 * This is set only once at attach time. The value is determined by reading
186 * the configuration switches and is one of the FLP_TYPE_*'s.
187 * This is simular to the way Atari handles the _FLP cookie.
188 */
189 static short def_type = 0; /* Reflects config-switches */
190
191 #define FLP_DEFTYPE 1 /* 720Kb, reasonable default */
192 #define FLP_TYPE(dev) ( DISKPART(dev) == 0 ? def_type : DISKPART(dev) - 1 )
193
194 typedef void (*FPV)(void *);
195
196 dev_type_open(fdopen);
197 dev_type_close(fdclose);
198 dev_type_read(fdread);
199 dev_type_write(fdwrite);
200 dev_type_ioctl(fdioctl);
201 dev_type_strategy(fdstrategy);
202
203 /*
204 * Private drive functions....
205 */
206 static void fdstart(struct fd_softc *);
207 static void fddone(struct fd_softc *);
208 static void fdstatus(struct fd_softc *);
209 static void fd_xfer(struct fd_softc *);
210 static void fdcint(struct fd_softc *);
211 static int fd_xfer_ok(struct fd_softc *);
212 static void fdmotoroff(struct fd_softc *);
213 static void fdminphys(struct buf *);
214 static void fdtestdrv(struct fd_softc *);
215 static void fdgetdefaultlabel(struct fd_softc *, struct disklabel *,
216 int);
217 static int fdgetdisklabel(struct fd_softc *, dev_t);
218 static int fdselect(int, int, int);
219 static void fddeselect(void);
220 static void fdmoff(struct fd_softc *);
221
222 static u_short rd_cfg_switch(void);
223
224 static inline uint8_t read_fdreg(u_short);
225 static inline void write_fdreg(u_short, u_short);
226 static inline uint8_t read_dmastat(void);
227
228 static inline
229 uint8_t read_fdreg(u_short regno)
230 {
231
232 DMA->dma_mode = regno;
233 return DMA->dma_data;
234 }
235
236 static inline
237 void write_fdreg(u_short regno, u_short val)
238 {
239
240 DMA->dma_mode = regno;
241 DMA->dma_data = val;
242 }
243
244 static inline
245 uint8_t read_dmastat(void)
246 {
247
248 DMA->dma_mode = FDC_CS | DMA_SCREG;
249 return DMA->dma_stat;
250 }
251
252 /*
253 * Config switch stuff. Used only for the floppy type for now. That's
254 * why it's here...
255 * XXX: If needed in more places, it should be moved to its own include file.
256 * Note: This location _must_ be read as an u_short. Failure to do so
257 * will return garbage!
258 */
259 static u_short
260 rd_cfg_switch(void)
261 {
262
263 return *(volatile u_short *)AD_CFG_SWITCH;
264 }
265
266 /*
267 * Switch definitions.
268 * Note: ON reads as a zero bit!
269 */
270 #define CFG_SWITCH_NOHD 0x4000
271
272 /*
273 * Autoconfig stuff....
274 */
275 static int fdcmatch(device_t, cfdata_t, void *);
276 static int fdcprint(void *, const char *);
277 static void fdcattach(device_t, device_t, void *);
278
279 CFATTACH_DECL_NEW(fdc, 0,
280 fdcmatch, fdcattach, NULL, NULL);
281
282 const struct bdevsw fd_bdevsw = {
283 .d_open = fdopen,
284 .d_close = fdclose,
285 .d_strategy = fdstrategy,
286 .d_ioctl = fdioctl,
287 .d_dump = nodump,
288 .d_psize = nosize,
289 .d_discard = nodiscard,
290 .d_flag = D_DISK
291 };
292
293 const struct cdevsw fd_cdevsw = {
294 .d_open = fdopen,
295 .d_close = fdclose,
296 .d_read = fdread,
297 .d_write = fdwrite,
298 .d_ioctl = fdioctl,
299 .d_stop = nostop,
300 .d_tty = notty,
301 .d_poll = nopoll,
302 .d_mmap = nommap,
303 .d_kqfilter = nokqfilter,
304 .d_discard = nodiscard,
305 .d_flag = D_DISK
306 };
307
308 static int
309 fdcmatch(device_t parent, cfdata_t match, void *aux)
310 {
311 static int fdc_matched = 0;
312
313 /* Match only once */
314 if (strcmp("fdc", aux) || fdc_matched)
315 return 0;
316 fdc_matched = 1;
317 return 1;
318 }
319
320 static void
321 fdcattach(device_t parent, device_t self, void *aux)
322 {
323 struct fd_softc fdsoftc;
324 int i, nfound, first_found;
325
326 nfound = first_found = 0;
327 printf("\n");
328 fddeselect();
329 for (i = 0; i < NR_DRIVES; i++) {
330
331 /*
332 * Test if unit is present
333 */
334 fdsoftc.unit = i;
335 fdsoftc.flags = 0;
336 st_dmagrab((dma_farg)fdcint, (dma_farg)fdtestdrv, &fdsoftc,
337 &lock_stat, 0);
338 st_dmafree(&fdsoftc, &lock_stat);
339
340 if ((fdsoftc.flags & FLPF_NOTRESP) == 0) {
341 if (nfound == 0)
342 first_found = i;
343 nfound++;
344 config_found(self, (void *)i, fdcprint);
345 }
346 }
347
348 if (nfound != 0) {
349 struct fd_softc *fdsc =
350 device_lookup_private(&fd_cd, first_found);
351
352 /*
353 * Make sure motor will be turned of when a floppy is
354 * inserted in the first selected drive.
355 */
356 fdselect(first_found, 0, FLP_DD);
357 fd_state = FLP_MON;
358 callout_reset(&fdsc->sc_motor_ch, 0, (FPV)fdmotoroff, fdsc);
359
360 /*
361 * enable disk related interrupts
362 */
363 MFP->mf_ierb |= IB_DINT;
364 MFP->mf_iprb = (uint8_t)~IB_DINT;
365 MFP->mf_imrb |= IB_DINT;
366 }
367 }
368
369 static int
370 fdcprint(void *aux, const char *pnp)
371 {
372
373 if (pnp != NULL)
374 aprint_normal("fd%d at %s:", (int)aux, pnp);
375
376 return UNCONF;
377 }
378
379 static int fdmatch(device_t, cfdata_t, void *);
380 static void fdattach(device_t, device_t, void *);
381
382 struct dkdriver fddkdriver = { fdstrategy };
383
384 CFATTACH_DECL_NEW(fd, sizeof(struct fd_softc),
385 fdmatch, fdattach, NULL, NULL);
386
387 static int
388 fdmatch(device_t parent, cfdata_t match, void *aux)
389 {
390
391 return 1;
392 }
393
394 static void
395 fdattach(device_t parent, device_t self, void *aux)
396 {
397 struct fd_softc *sc;
398 struct fd_types *type;
399 u_short swtch;
400
401 sc = device_private(self);
402 sc->sc_dev = self;
403
404 callout_init(&sc->sc_motor_ch, 0);
405
406 /*
407 * Find out if an Ajax chip might be installed. Set the default
408 * floppy type accordingly.
409 */
410 swtch = rd_cfg_switch();
411 def_type = (swtch & CFG_SWITCH_NOHD) ? FLP_TYPE_720 : FLP_TYPE_144;
412 type = &fdtypes[def_type];
413
414 aprint_normal(": %s %d cyl, %d head, %d sec\n", type->descr,
415 type->nblocks / (type->nsectors * type->nheads), type->nheads,
416 type->nsectors);
417
418 /*
419 * Initialize and attach the disk structure.
420 */
421 disk_init(&sc->dkdev, device_xname(sc->sc_dev), &fddkdriver);
422 disk_attach(&sc->dkdev);
423 }
424
425 int
426 fdioctl(dev_t dev, u_long cmd, void * addr, int flag, struct lwp *l)
427 {
428 struct fd_softc *sc;
429
430 sc = device_lookup_private(&fd_cd, DISKUNIT(dev));
431
432 if ((sc->flags & FLPF_HAVELAB) == 0)
433 return EBADF;
434
435 error = disk_ioctl(&sc->dkdev, RAW_PART, cmd, addr, flag, l);
436 if (error != EPASSTHROUGH)
437 return error;
438
439 switch (cmd) {
440 case DIOCSBAD:
441 return EINVAL;
442 #ifdef notyet /* XXX LWP */
443 case DIOCSRETRIES:
444 case DIOCSSTEP:
445 case DIOCSDINFO:
446 case DIOCWDINFO:
447 case DIOCWLABEL:
448 break;
449 #endif /* notyet */
450 case DIOCGDEFLABEL:
451 fdgetdefaultlabel(sc, (struct disklabel *)addr, RAW_PART);
452 return 0;
453 }
454 return ENOTTY;
455 }
456
457 /*
458 * Open the device. If this is the first open on both the floppy devices,
459 * intialize the controller.
460 * Note that partition info on the floppy device is used to distinguise
461 * between 780Kb and 360Kb floppy's.
462 * partition 0: 360Kb
463 * partition 1: 780Kb
464 */
465 int
466 fdopen(dev_t dev, int flags, int devtype, struct lwp *l)
467 {
468 struct fd_softc *sc;
469 int s;
470
471 #ifdef FLP_DEBUG
472 printf("fdopen dev=0x%x\n", dev);
473 #endif
474
475 if (FLP_TYPE(dev) >= NR_TYPES)
476 return ENXIO;
477
478 if ((sc = device_lookup_private(&fd_cd, DISKUNIT(dev))) == NULL)
479 return ENXIO;
480
481 /*
482 * If no floppy currently open, reset the controller and select
483 * floppy type.
484 */
485 if (nopens == 0) {
486
487 #ifdef FLP_DEBUG
488 printf("fdopen device not yet open\n");
489 #endif
490 nopens++;
491 write_fdreg(FDC_CS, IRUPT);
492 delay(40);
493 }
494
495 /*
496 * Sleep while other process is opening the device
497 */
498 s = splbio();
499 while (sc->flags & FLPF_INOPEN)
500 tsleep((void *)sc, PRIBIO, "fdopen", 0);
501 splx(s);
502
503 if ((sc->flags & FLPF_ISOPEN) == 0) {
504 /*
505 * Initialise some driver values.
506 */
507 int type;
508 void *addr;
509
510 type = FLP_TYPE(dev);
511
512 bufq_alloc(&sc->bufq, "disksort", BUFQ_SORT_RAWBLOCK);
513 sc->unit = DISKUNIT(dev);
514 sc->part = RAW_PART;
515 sc->nheads = fdtypes[type].nheads;
516 sc->nsectors = fdtypes[type].nsectors;
517 sc->nblocks = fdtypes[type].nblocks;
518 sc->density = fdtypes[type].density;
519 sc->curtrk = INV_TRK;
520 sc->sector = 0;
521 sc->errcnt = 0;
522 sc->bounceb = alloc_stmem(SECTOR_SIZE, &addr);
523 if (sc->bounceb == NULL)
524 return ENOMEM; /* XXX */
525
526 /*
527 * Go get write protect + loaded status
528 */
529 sc->flags |= FLPF_INOPEN|FLPF_GETSTAT;
530 s = splbio();
531 st_dmagrab((dma_farg)fdcint, (dma_farg)fdstatus, sc,
532 &lock_stat, 0);
533 while ((sc->flags & FLPF_GETSTAT) != 0)
534 tsleep((void *)sc, PRIBIO, "fdopen", 0);
535 splx(s);
536 wakeup((void *)sc);
537
538 if ((sc->flags & FLPF_WRTPROT) != 0 &&
539 (flags & FWRITE) != 0) {
540 sc->flags = 0;
541 return EPERM;
542 }
543 if ((sc->flags & FLPF_EMPTY) != 0) {
544 sc->flags = 0;
545 return ENXIO;
546 }
547 sc->flags &= ~(FLPF_INOPEN|FLPF_GETSTAT);
548 sc->flags |= FLPF_ISOPEN;
549 } else {
550 /*
551 * Multiply opens are granted when accessing the same type of
552 * floppy (eq. the same partition).
553 */
554 if (sc->density != fdtypes[DISKPART(dev)].density)
555 return ENXIO; /* XXX temporarely out of business */
556 }
557 fdgetdisklabel(sc, dev);
558 #ifdef FLP_DEBUG
559 printf("fdopen open succeeded on type %d\n", sc->part);
560 #endif
561 return 0;
562 }
563
564 int
565 fdclose(dev_t dev, int flags, int devtype, struct lwp *l)
566 {
567 struct fd_softc *sc;
568
569 sc = device_lookup_private(&fd_cd, DISKUNIT(dev));
570 free_stmem(sc->bounceb);
571 sc->flags = 0;
572 nopens--;
573
574 #ifdef FLP_DEBUG
575 printf("Closed floppy device -- nopens: %d\n", nopens);
576 #endif
577 return 0;
578 }
579
580 void
581 fdstrategy(struct buf *bp)
582 {
583 struct fd_softc *sc;
584 struct disklabel *lp;
585 int s, sz;
586
587 sc = device_lookup_private(&fd_cd, DISKUNIT(bp->b_dev));
588
589 #ifdef FLP_DEBUG
590 printf("fdstrategy: %p, b_bcount: %ld\n", bp, bp->b_bcount);
591 #endif
592
593 /*
594 * check for valid partition and bounds
595 */
596 lp = sc->dkdev.dk_label;
597 if ((sc->flags & FLPF_HAVELAB) == 0) {
598 bp->b_error = EIO;
599 goto done;
600 }
601 if (bp->b_blkno < 0 || (bp->b_bcount % SECTOR_SIZE) != 0) {
602 bp->b_error = EINVAL;
603 goto done;
604 }
605 if (bp->b_bcount == 0)
606 goto done;
607
608 sz = howmany(bp->b_bcount, SECTOR_SIZE);
609
610 if (bp->b_blkno + sz > sc->nblocks) {
611 sz = sc->nblocks - bp->b_blkno;
612 if (sz == 0) /* Exactly at EndOfDisk */
613 goto done;
614 if (sz < 0) { /* Past EndOfDisk */
615 bp->b_error = EINVAL;
616 goto done;
617 }
618 /* Trucate it */
619 if (bp->b_flags & B_RAW)
620 bp->b_bcount = sz << DEV_BSHIFT;
621 else
622 bp->b_bcount = sz * lp->d_secsize;
623 }
624
625 /* No partition translation. */
626 bp->b_rawblkno = bp->b_blkno;
627
628 /*
629 * queue the buf and kick the low level code
630 */
631 s = splbio();
632 bufq_put(sc->bufq, bp); /* XXX disksort_cylinder */
633 if (!lock_stat) {
634 if (fd_state & FLP_MON)
635 callout_stop(&sc->sc_motor_ch);
636 fd_state = FLP_IDLE;
637 st_dmagrab((dma_farg)fdcint, (dma_farg)fdstart, sc,
638 &lock_stat, 0);
639 }
640 splx(s);
641
642 return;
643 done:
644 bp->b_resid = bp->b_bcount;
645 biodone(bp);
646 }
647
648 int
649 fdread(dev_t dev, struct uio *uio, int flags)
650 {
651
652 return physio(fdstrategy, NULL, dev, B_READ, fdminphys, uio);
653 }
654
655 int
656 fdwrite(dev_t dev, struct uio *uio, int flags)
657 {
658
659 return physio(fdstrategy, NULL, dev, B_WRITE, fdminphys, uio);
660 }
661
662 /*
663 * Called through DMA-dispatcher, get status.
664 */
665 static void
666 fdstatus(struct fd_softc *sc)
667 {
668
669 #ifdef FLP_DEBUG
670 printf("fdstatus\n");
671 #endif
672 sc->errcnt = 0;
673 fd_state = FLP_STAT;
674 fd_xfer(sc);
675 }
676
677 /*
678 * Called through the DMA-dispatcher. So we know we are the only ones
679 * messing with the floppy-controller.
680 * Initialize some fields in the fdsoftc for the state-machine and get
681 * it going.
682 */
683 static void
684 fdstart(struct fd_softc *sc)
685 {
686 struct buf *bp;
687
688 bp = bufq_peek(sc->bufq);
689 sc->sector = bp->b_blkno; /* Start sector for I/O */
690 sc->io_data = bp->b_data; /* KVA base for I/O */
691 sc->io_bytes = bp->b_bcount; /* Transfer size in bytes */
692 sc->io_dir = bp->b_flags & B_READ;/* Direction of transfer */
693 sc->errcnt = 0; /* No errors yet */
694 fd_state = FLP_XFER; /* Yes, we're going to transfer */
695
696 /* Instrumentation. */
697 disk_busy(&sc->dkdev);
698
699 fd_xfer(sc);
700 }
701
702 /*
703 * The current transaction is finished (for good or bad). Let go of
704 * the DMA-resources. Call biodone() to finish the transaction.
705 * Find a new transaction to work on.
706 */
707 static void
708 fddone(register struct fd_softc *sc)
709 {
710 struct buf *bp;
711 struct fd_softc *sc1;
712 int i, s;
713
714 /*
715 * Give others a chance to use the DMA.
716 */
717 st_dmafree(sc, &lock_stat);
718
719
720 if (fd_state != FLP_STAT) {
721 /*
722 * Finish current transaction.
723 */
724 s = splbio();
725 bp = bufq_get(sc->bufq);
726 if (bp == NULL)
727 panic("fddone");
728 splx(s);
729
730 #ifdef FLP_DEBUG
731 printf("fddone: unit: %d, buf: %p, resid: %d\n",sc->unit, bp,
732 sc->io_bytes);
733 #endif
734 bp->b_resid = sc->io_bytes;
735
736 disk_unbusy(&sc->dkdev, (bp->b_bcount - bp->b_resid),
737 (bp->b_flags & B_READ));
738
739 biodone(bp);
740 }
741 fd_state = FLP_MON;
742
743 if (lock_stat)
744 return; /* XXX Is this possible? */
745
746 /*
747 * Find a new transaction on round-robin basis.
748 */
749 for (i = sc->unit + 1;; i++) {
750 if (i >= fd_cd.cd_ndevs)
751 i = 0;
752 if ((sc1 = device_lookup_private(&fd_cd, i)) == NULL)
753 continue;
754 if (bufq_peek(sc1->bufq) != NULL)
755 break;
756 if (i == sc->unit) {
757 callout_reset(&sc->sc_motor_ch, FLP_MONDELAY,
758 (FPV)fdmotoroff, sc);
759 #ifdef FLP_DEBUG
760 printf("fddone: Nothing to do\n");
761 #endif
762 return; /* No work */
763 }
764 }
765 fd_state = FLP_IDLE;
766 #ifdef FLP_DEBUG
767 printf("fddone: Staring job on unit %d\n", sc1->unit);
768 #endif
769 st_dmagrab((dma_farg)fdcint, (dma_farg)fdstart, sc1, &lock_stat, 0);
770 }
771
772 static int
773 fdselect(int drive, int head, int dense)
774 {
775 int i, spinning;
776
777 #ifdef FLP_DEBUG
778 printf("fdselect: drive=%d, head=%d, dense=%d\n", drive, head, dense);
779 #endif
780 i = ((drive == 1) ? PA_FLOP1 : PA_FLOP0) | head;
781 spinning = motoron;
782 motoron = 1;
783
784 switch (dense) {
785 case FLP_DD:
786 DMA->dma_drvmode = 0;
787 break;
788 case FLP_HD:
789 DMA->dma_drvmode = (FDC_HDSET|FDC_HDSIG);
790 break;
791 default:
792 panic("fdselect: unknown density code");
793 }
794 if (i != selected) {
795 selected = i;
796 ym2149_fd_select((i ^ PA_FDSEL));
797 }
798 return spinning;
799 }
800
801 static void
802 fddeselect(void)
803 {
804
805 ym2149_fd_select(PA_FDSEL);
806 motoron = selected = 0;
807 DMA->dma_drvmode = 0;
808 }
809
810 /****************************************************************************
811 * The following functions assume to be running as a result of a *
812 * disk-interrupt (e.q. spl = splbio). *
813 * They form the finit-state machine, the actual driver. *
814 * *
815 * fdstart()/ --> fd_xfer() -> activate hardware *
816 * fdopen() ^ *
817 * | *
818 * +-- not ready -<------------+ *
819 * | *
820 * fdmotoroff()/ --> fdcint() -> fd_xfer_ok() ---+ *
821 * h/w interrupt | *
822 * \|/ *
823 * finished ---> fdone() *
824 * *
825 ****************************************************************************/
826 static void
827 fd_xfer(struct fd_softc *sc)
828 {
829 int head;
830 int track, sector, hbit;
831 paddr_t phys_addr;
832
833 head = track = 0;
834 switch (fd_state) {
835 case FLP_XFER:
836 /*
837 * Calculate head/track values
838 */
839 track = sc->sector / sc->nsectors;
840 head = track % sc->nheads;
841 track = track / sc->nheads;
842 #ifdef FLP_DEBUG
843 printf("fd_xfer: sector:%d,head:%d,track:%d\n",
844 sc->sector, head, track);
845 #endif
846 break;
847
848 case FLP_STAT:
849 /*
850 * FLP_STAT only wants to recalibrate
851 */
852 sc->curtrk = INV_TRK;
853 break;
854 default:
855 panic("fd_xfer: wrong state (0x%x)", fd_state);
856 }
857
858 /*
859 * Select the drive.
860 */
861 hbit = fdselect(sc->unit, head, sc->density) ? HBIT : 0;
862
863 if (sc->curtrk == INV_TRK) {
864 /*
865 * Recalibrate, since we lost track of head positioning.
866 * The floppy disk controller has no way of determining its
867 * absolute arm position (track). Instead, it steps the
868 * arm a track at a time and keeps track of where it
869 * thinks it is (in software). However, after a SEEK, the
870 * hardware reads information from the diskette telling
871 * where the arm actually is. If the arm is in the wrong place,
872 * a recalibration is done, which forces the arm to track 0.
873 * This way the controller can get back into sync with reality.
874 */
875 fd_cmd = RESTORE;
876 write_fdreg(FDC_CS, RESTORE|VBIT|hbit);
877 callout_reset(&sc->sc_motor_ch, FLP_XFERDELAY,
878 (FPV)fdmotoroff, sc);
879
880 #ifdef FLP_DEBUG
881 printf("fd_xfer:Recalibrating drive %d\n", sc->unit);
882 #endif
883 return;
884 }
885
886 write_fdreg(FDC_TR, sc->curtrk);
887
888 /*
889 * Issue a SEEK command on the indicated drive unless the arm is
890 * already positioned on the correct track.
891 */
892 if (track != sc->curtrk) {
893 sc->curtrk = track; /* be optimistic */
894 write_fdreg(FDC_DR, track);
895 write_fdreg(FDC_CS, SEEK|RATE6|VBIT|hbit);
896 callout_reset(&sc->sc_motor_ch, FLP_XFERDELAY,
897 (FPV)fdmotoroff, sc);
898 fd_cmd = SEEK;
899 #ifdef FLP_DEBUG
900 printf("fd_xfer:Seek to track %d on drive %d\n",
901 track, sc->unit);
902 #endif
903 return;
904 }
905
906 /*
907 * The drive is now on the proper track. Read or write 1 block.
908 */
909 sector = sc->sector % sc->nsectors;
910 sector++; /* start numbering at 1 */
911
912 write_fdreg(FDC_SR, sector);
913
914 phys_addr = (paddr_t)kvtop(sc->io_data);
915 if (phys_addr >= FDC_MAX_DMA_AD) {
916 /*
917 * We _must_ bounce this address
918 */
919 phys_addr = (paddr_t)kvtop(sc->bounceb);
920 if (sc->io_dir == B_WRITE)
921 memcpy(sc->bounceb, sc->io_data, SECTOR_SIZE);
922 sc->flags |= FLPF_BOUNCE;
923 }
924 st_dmaaddr_set((void *)phys_addr); /* DMA address setup */
925
926 #ifdef FLP_DEBUG
927 printf("fd_xfer:Start io (io_addr:%lx)\n", (u_long)kvtop(sc->io_data));
928 #endif
929
930 if (sc->io_dir == B_READ) {
931 /* Issue the command */
932 st_dmacomm(DMA_FDC | DMA_SCREG, 1);
933 write_fdreg(FDC_CS, F_READ|hbit);
934 fd_cmd = F_READ;
935 } else {
936 /* Issue the command */
937 st_dmacomm(DMA_WRBIT | DMA_FDC | DMA_SCREG, 1);
938 write_fdreg(DMA_WRBIT | FDC_CS, F_WRITE|hbit|EBIT|PBIT);
939 fd_cmd = F_WRITE;
940 }
941 callout_reset(&sc->sc_motor_ch, FLP_XFERDELAY, (FPV)fdmotoroff, sc);
942 }
943
944 /* return values of fd_xfer_ok(): */
945 #define X_OK 0
946 #define X_AGAIN 1
947 #define X_ERROR 2
948 #define X_FAIL 3
949
950 /*
951 * Hardware interrupt function.
952 */
953 static void
954 fdcint(struct fd_softc *sc)
955 {
956 struct buf *bp;
957
958 #ifdef FLP_DEBUG
959 printf("fdcint: unit = %d\n", sc->unit);
960 #endif
961
962 /*
963 * Cancel timeout (we made it, didn't we)
964 */
965 callout_stop(&sc->sc_motor_ch);
966
967 switch (fd_xfer_ok(sc)) {
968 case X_ERROR:
969 if (++sc->errcnt < MAX_ERRORS) {
970 /*
971 * Command failed but still retries left.
972 */
973 break;
974 }
975 /* FALL THROUGH */
976 case X_FAIL:
977 /*
978 * Non recoverable error. Fall back to motor-on
979 * idle-state.
980 */
981 if (fd_error != NULL) {
982 printf("Floppy error: %s\n", fd_error);
983 fd_error = NULL;
984 }
985
986 if (fd_state == FLP_STAT) {
987 sc->flags |= FLPF_EMPTY;
988 sc->flags &= ~FLPF_GETSTAT;
989 wakeup((void *)sc);
990 fddone(sc);
991 return;
992 }
993
994 bp = bufq_peek(sc->bufq);
995
996 bp->b_error = EIO;
997 fd_state = FLP_MON;
998
999 break;
1000 case X_AGAIN:
1001 /*
1002 * Start next part of state machine.
1003 */
1004 break;
1005 case X_OK:
1006 /*
1007 * Command ok and finished. Reset error-counter.
1008 * If there are no more bytes to transfer fall back
1009 * to motor-on idle state.
1010 */
1011 sc->errcnt = 0;
1012
1013 if (fd_state == FLP_STAT) {
1014 sc->flags &= ~FLPF_GETSTAT;
1015 wakeup((void *)sc);
1016 fddone(sc);
1017 return;
1018 }
1019
1020 if ((sc->flags & FLPF_BOUNCE) != 0 &&
1021 sc->io_dir == B_READ)
1022 memcpy(sc->io_data, sc->bounceb, SECTOR_SIZE);
1023 sc->flags &= ~FLPF_BOUNCE;
1024
1025 sc->sector++;
1026 sc->io_data += SECTOR_SIZE;
1027 sc->io_bytes -= SECTOR_SIZE;
1028 if (sc->io_bytes <= 0)
1029 fd_state = FLP_MON;
1030 }
1031 if (fd_state == FLP_MON)
1032 fddone(sc);
1033 else
1034 fd_xfer(sc);
1035 }
1036
1037 /*
1038 * Determine status of last command. Should only be called through
1039 * 'fdcint()'.
1040 * Returns:
1041 * X_ERROR : Error on command; might succeed next time.
1042 * X_FAIL : Error on command; will never succeed.
1043 * X_AGAIN : Part of a command succeeded, call 'fd_xfer()' to complete.
1044 * X_OK : Command succeeded and is complete.
1045 *
1046 * This function only affects sc->curtrk.
1047 */
1048 static int
1049 fd_xfer_ok(register struct fd_softc *sc)
1050 {
1051 int status;
1052
1053 #ifdef FLP_DEBUG
1054 printf("fd_xfer_ok: cmd: 0x%x, state: 0x%x\n", fd_cmd, fd_state);
1055 #endif
1056 switch (fd_cmd) {
1057 case IRUPT:
1058 /*
1059 * Timeout. Force a recalibrate before we try again.
1060 */
1061 status = read_fdreg(FDC_CS);
1062
1063 fd_error = "Timeout";
1064 sc->curtrk = INV_TRK;
1065 return X_ERROR;
1066 case F_READ:
1067 /*
1068 * Test for DMA error
1069 */
1070 status = read_dmastat();
1071 if ((status & DMAOK) == 0) {
1072 fd_error = "DMA error";
1073 return X_ERROR;
1074 }
1075 /*
1076 * Get controller status and check for errors.
1077 */
1078 status = read_fdreg(FDC_CS);
1079 if ((status & (RNF | CRCERR | LD_T00)) != 0) {
1080 fd_error = "Read error";
1081 if ((status & RNF) != 0)
1082 sc->curtrk = INV_TRK;
1083 return X_ERROR;
1084 }
1085 break;
1086 case F_WRITE:
1087 /*
1088 * Test for DMA error
1089 */
1090 status = read_dmastat();
1091 if ((status & DMAOK) == 0) {
1092 fd_error = "DMA error";
1093 return X_ERROR;
1094 }
1095 /*
1096 * Get controller status and check for errors.
1097 */
1098 status = read_fdreg(FDC_CS);
1099 if ((status & WRI_PRO) != 0) {
1100 fd_error = "Write protected";
1101 return X_FAIL;
1102 }
1103 if ((status & (RNF | CRCERR | LD_T00)) != 0) {
1104 fd_error = "Write error";
1105 sc->curtrk = INV_TRK;
1106 return X_ERROR;
1107 }
1108 break;
1109 case SEEK:
1110 status = read_fdreg(FDC_CS);
1111 if ((status & (RNF | CRCERR)) != 0) {
1112 fd_error = "Seek error";
1113 sc->curtrk = INV_TRK;
1114 return X_ERROR;
1115 }
1116 return X_AGAIN;
1117 case RESTORE:
1118 /*
1119 * Determine if the recalibration succeeded.
1120 */
1121 status = read_fdreg(FDC_CS);
1122 if ((status & RNF) != 0) {
1123 fd_error = "Recalibrate error";
1124 /* reset controller */
1125 write_fdreg(FDC_CS, IRUPT);
1126 sc->curtrk = INV_TRK;
1127 return X_ERROR;
1128 }
1129 sc->curtrk = 0;
1130 if (fd_state == FLP_STAT) {
1131 if ((status & WRI_PRO) != 0)
1132 sc->flags |= FLPF_WRTPROT;
1133 break;
1134 }
1135 return X_AGAIN;
1136 default:
1137 fd_error = "Driver error: fd_xfer_ok : Unknown state";
1138 return X_FAIL;
1139 }
1140 return X_OK;
1141 }
1142
1143 /*
1144 * All timeouts will call this function.
1145 */
1146 static void
1147 fdmotoroff(struct fd_softc *sc)
1148 {
1149 int s;
1150
1151 /*
1152 * Get at harware interrupt level
1153 */
1154 s = splbio();
1155
1156 #if FLP_DEBUG
1157 printf("fdmotoroff, state = 0x%x\n", fd_state);
1158 #endif
1159
1160 switch (fd_state) {
1161 case FLP_STAT:
1162 case FLP_XFER:
1163 /*
1164 * Timeout during a transfer; cancel transaction
1165 * set command to 'IRUPT'.
1166 * A drive-interrupt is simulated to trigger the state
1167 * machine.
1168 */
1169 /*
1170 * Cancel current transaction
1171 */
1172 fd_cmd = IRUPT;
1173 write_fdreg(FDC_CS, IRUPT);
1174 delay(20);
1175 (void)read_fdreg(FDC_CS);
1176 write_fdreg(FDC_CS, RESTORE);
1177 break;
1178
1179 case FLP_MON:
1180 /*
1181 * Turn motor off.
1182 */
1183 if (selected) {
1184 int tmp;
1185
1186 st_dmagrab((dma_farg)fdcint, (dma_farg)fdmoff, sc,
1187 &tmp, 0);
1188 } else
1189 fd_state = FLP_IDLE;
1190 break;
1191 }
1192 splx(s);
1193 }
1194
1195 /*
1196 * min byte count to whats left of the track in question
1197 */
1198 static void
1199 fdminphys(struct buf *bp)
1200 {
1201 struct fd_softc *sc;
1202 int sec, toff, tsz;
1203
1204 if ((sc = device_lookup_private(&fd_cd, DISKUNIT(bp->b_dev))) == NULL)
1205 panic("fdminphys: couldn't get softc");
1206
1207 sec = bp->b_blkno % (sc->nsectors * sc->nheads);
1208 toff = sec * SECTOR_SIZE;
1209 tsz = sc->nsectors * sc->nheads * SECTOR_SIZE;
1210
1211 #ifdef FLP_DEBUG
1212 printf("fdminphys: before %ld", bp->b_bcount);
1213 #endif
1214
1215 bp->b_bcount = min(bp->b_bcount, tsz - toff);
1216
1217 #ifdef FLP_DEBUG
1218 printf(" after %ld\n", bp->b_bcount);
1219 #endif
1220
1221 minphys(bp);
1222 }
1223
1224 /*
1225 * Called from fdmotoroff to turn the motor actually off....
1226 * This can't be done in fdmotoroff itself, because exclusive access to the
1227 * DMA controller is needed to read the FDC-status register. The function
1228 * 'fdmoff()' always runs as the result of a 'dmagrab()'.
1229 * We need to test the status-register because we want to be sure that the
1230 * drive motor is really off before deselecting the drive. The FDC only
1231 * turns off the drive motor after having seen 10 index-pulses. You only
1232 * get index-pulses when a drive is selected....This means that if the
1233 * drive is deselected when the motor is still spinning, it will continue
1234 * to spin _even_ when you insert a floppy later on...
1235 */
1236 static void
1237 fdmoff(struct fd_softc *fdsoftc)
1238 {
1239 int tmp;
1240
1241 if ((fd_state == FLP_MON) && selected) {
1242 tmp = read_fdreg(FDC_CS);
1243 if ((tmp & MOTORON) == 0) {
1244 fddeselect();
1245 fd_state = FLP_IDLE;
1246 } else
1247 callout_reset(&fdsoftc->sc_motor_ch, 10 * FLP_MONDELAY,
1248 (FPV)fdmotoroff, fdsoftc);
1249 }
1250 st_dmafree(fdsoftc, &tmp);
1251 }
1252
1253 /*
1254 * Used to find out wich drives are actually connected. We do this by issuing
1255 * is 'RESTORE' command and check if the 'track-0' bit is set. This also works
1256 * if the drive is present but no floppy is inserted.
1257 */
1258 static void
1259 fdtestdrv(struct fd_softc *fdsoftc)
1260 {
1261 int status;
1262
1263 /*
1264 * Select the right unit and head.
1265 */
1266 fdselect(fdsoftc->unit, 0, FLP_DD);
1267
1268 write_fdreg(FDC_CS, RESTORE|HBIT);
1269
1270 /*
1271 * Wait for about 2 seconds.
1272 */
1273 delay(2000000);
1274
1275 status = read_fdreg(FDC_CS);
1276 if ((status & (RNF|BUSY)) != 0) {
1277 write_fdreg(FDC_CS, IRUPT); /* reset controller */
1278 delay(40);
1279 }
1280
1281 if ((status & LD_T00) == 0)
1282 fdsoftc->flags |= FLPF_NOTRESP;
1283
1284 fddeselect();
1285 }
1286
1287 static void
1288 fdgetdefaultlabel(struct fd_softc *sc, struct disklabel *lp, int part)
1289 {
1290
1291 memset(lp, 0, sizeof(struct disklabel));
1292
1293 lp->d_secsize = SECTOR_SIZE;
1294 lp->d_ntracks = sc->nheads;
1295 lp->d_nsectors = sc->nsectors;
1296 lp->d_secpercyl = lp->d_ntracks * lp->d_nsectors;
1297 lp->d_ncylinders = sc->nblocks / lp->d_secpercyl;
1298 lp->d_secperunit = sc->nblocks;
1299
1300 lp->d_type = DTYPE_FLOPPY;
1301 lp->d_rpm = 300; /* good guess I suppose. */
1302 lp->d_interleave = 1; /* FIXME: is this OK? */
1303 lp->d_bbsize = 0;
1304 lp->d_sbsize = 0;
1305 lp->d_npartitions = part + 1;
1306 lp->d_trkseek = STEP_DELAY;
1307 lp->d_magic = DISKMAGIC;
1308 lp->d_magic2 = DISKMAGIC;
1309 lp->d_checksum = dkcksum(lp);
1310 lp->d_partitions[part].p_size = lp->d_secperunit;
1311 lp->d_partitions[part].p_fstype = FS_UNUSED;
1312 lp->d_partitions[part].p_fsize = 1024;
1313 lp->d_partitions[part].p_frag = 8;
1314 }
1315
1316 /*
1317 * Build disk label. For now we only create a label from what we know
1318 * from 'sc'.
1319 */
1320 static int
1321 fdgetdisklabel(struct fd_softc *sc, dev_t dev)
1322 {
1323 struct disklabel *lp;
1324 int part;
1325
1326 /*
1327 * If we already got one, get out.
1328 */
1329 if ((sc->flags & FLPF_HAVELAB) != 0)
1330 return 0;
1331
1332 #ifdef FLP_DEBUG
1333 printf("fdgetdisklabel()\n");
1334 #endif
1335
1336 part = RAW_PART;
1337 lp = sc->dkdev.dk_label;
1338 fdgetdefaultlabel(sc, lp, part);
1339 sc->flags |= FLPF_HAVELAB;
1340
1341 return 0;
1342 }
1343