fd.c revision 1.82 1 /* $NetBSD: fd.c,v 1.82 2015/01/01 17:46:09 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.82 2015/01/01 17:46:09 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 int error;
430
431 sc = device_lookup_private(&fd_cd, DISKUNIT(dev));
432
433 if ((sc->flags & FLPF_HAVELAB) == 0)
434 return EBADF;
435
436 error = disk_ioctl(&sc->dkdev, RAW_PART, cmd, addr, flag, l);
437 if (error != EPASSTHROUGH)
438 return error;
439
440 switch (cmd) {
441 case DIOCSBAD:
442 return EINVAL;
443 #ifdef notyet /* XXX LWP */
444 case DIOCSRETRIES:
445 case DIOCSSTEP:
446 case DIOCSDINFO:
447 case DIOCWDINFO:
448 case DIOCWLABEL:
449 break;
450 #endif /* notyet */
451 case DIOCGDEFLABEL:
452 fdgetdefaultlabel(sc, (struct disklabel *)addr, RAW_PART);
453 return 0;
454 }
455 return ENOTTY;
456 }
457
458 /*
459 * Open the device. If this is the first open on both the floppy devices,
460 * intialize the controller.
461 * Note that partition info on the floppy device is used to distinguise
462 * between 780Kb and 360Kb floppy's.
463 * partition 0: 360Kb
464 * partition 1: 780Kb
465 */
466 int
467 fdopen(dev_t dev, int flags, int devtype, struct lwp *l)
468 {
469 struct fd_softc *sc;
470 int s;
471
472 #ifdef FLP_DEBUG
473 printf("fdopen dev=0x%x\n", dev);
474 #endif
475
476 if (FLP_TYPE(dev) >= NR_TYPES)
477 return ENXIO;
478
479 if ((sc = device_lookup_private(&fd_cd, DISKUNIT(dev))) == NULL)
480 return ENXIO;
481
482 /*
483 * If no floppy currently open, reset the controller and select
484 * floppy type.
485 */
486 if (nopens == 0) {
487
488 #ifdef FLP_DEBUG
489 printf("fdopen device not yet open\n");
490 #endif
491 nopens++;
492 write_fdreg(FDC_CS, IRUPT);
493 delay(40);
494 }
495
496 /*
497 * Sleep while other process is opening the device
498 */
499 s = splbio();
500 while (sc->flags & FLPF_INOPEN)
501 tsleep((void *)sc, PRIBIO, "fdopen", 0);
502 splx(s);
503
504 if ((sc->flags & FLPF_ISOPEN) == 0) {
505 /*
506 * Initialise some driver values.
507 */
508 int type;
509 void *addr;
510
511 type = FLP_TYPE(dev);
512
513 bufq_alloc(&sc->bufq, "disksort", BUFQ_SORT_RAWBLOCK);
514 sc->unit = DISKUNIT(dev);
515 sc->part = RAW_PART;
516 sc->nheads = fdtypes[type].nheads;
517 sc->nsectors = fdtypes[type].nsectors;
518 sc->nblocks = fdtypes[type].nblocks;
519 sc->density = fdtypes[type].density;
520 sc->curtrk = INV_TRK;
521 sc->sector = 0;
522 sc->errcnt = 0;
523 sc->bounceb = alloc_stmem(SECTOR_SIZE, &addr);
524 if (sc->bounceb == NULL)
525 return ENOMEM; /* XXX */
526
527 /*
528 * Go get write protect + loaded status
529 */
530 sc->flags |= FLPF_INOPEN|FLPF_GETSTAT;
531 s = splbio();
532 st_dmagrab((dma_farg)fdcint, (dma_farg)fdstatus, sc,
533 &lock_stat, 0);
534 while ((sc->flags & FLPF_GETSTAT) != 0)
535 tsleep((void *)sc, PRIBIO, "fdopen", 0);
536 splx(s);
537 wakeup((void *)sc);
538
539 if ((sc->flags & FLPF_WRTPROT) != 0 &&
540 (flags & FWRITE) != 0) {
541 sc->flags = 0;
542 return EPERM;
543 }
544 if ((sc->flags & FLPF_EMPTY) != 0) {
545 sc->flags = 0;
546 return ENXIO;
547 }
548 sc->flags &= ~(FLPF_INOPEN|FLPF_GETSTAT);
549 sc->flags |= FLPF_ISOPEN;
550 } else {
551 /*
552 * Multiply opens are granted when accessing the same type of
553 * floppy (eq. the same partition).
554 */
555 if (sc->density != fdtypes[DISKPART(dev)].density)
556 return ENXIO; /* XXX temporarely out of business */
557 }
558 fdgetdisklabel(sc, dev);
559 #ifdef FLP_DEBUG
560 printf("fdopen open succeeded on type %d\n", sc->part);
561 #endif
562 return 0;
563 }
564
565 int
566 fdclose(dev_t dev, int flags, int devtype, struct lwp *l)
567 {
568 struct fd_softc *sc;
569
570 sc = device_lookup_private(&fd_cd, DISKUNIT(dev));
571 free_stmem(sc->bounceb);
572 sc->flags = 0;
573 nopens--;
574
575 #ifdef FLP_DEBUG
576 printf("Closed floppy device -- nopens: %d\n", nopens);
577 #endif
578 return 0;
579 }
580
581 void
582 fdstrategy(struct buf *bp)
583 {
584 struct fd_softc *sc;
585 struct disklabel *lp;
586 int s, sz;
587
588 sc = device_lookup_private(&fd_cd, DISKUNIT(bp->b_dev));
589
590 #ifdef FLP_DEBUG
591 printf("fdstrategy: %p, b_bcount: %ld\n", bp, bp->b_bcount);
592 #endif
593
594 /*
595 * check for valid partition and bounds
596 */
597 lp = sc->dkdev.dk_label;
598 if ((sc->flags & FLPF_HAVELAB) == 0) {
599 bp->b_error = EIO;
600 goto done;
601 }
602 if (bp->b_blkno < 0 || (bp->b_bcount % SECTOR_SIZE) != 0) {
603 bp->b_error = EINVAL;
604 goto done;
605 }
606 if (bp->b_bcount == 0)
607 goto done;
608
609 sz = howmany(bp->b_bcount, SECTOR_SIZE);
610
611 if (bp->b_blkno + sz > sc->nblocks) {
612 sz = sc->nblocks - bp->b_blkno;
613 if (sz == 0) /* Exactly at EndOfDisk */
614 goto done;
615 if (sz < 0) { /* Past EndOfDisk */
616 bp->b_error = EINVAL;
617 goto done;
618 }
619 /* Trucate it */
620 if (bp->b_flags & B_RAW)
621 bp->b_bcount = sz << DEV_BSHIFT;
622 else
623 bp->b_bcount = sz * lp->d_secsize;
624 }
625
626 /* No partition translation. */
627 bp->b_rawblkno = bp->b_blkno;
628
629 /*
630 * queue the buf and kick the low level code
631 */
632 s = splbio();
633 bufq_put(sc->bufq, bp); /* XXX disksort_cylinder */
634 if (!lock_stat) {
635 if (fd_state & FLP_MON)
636 callout_stop(&sc->sc_motor_ch);
637 fd_state = FLP_IDLE;
638 st_dmagrab((dma_farg)fdcint, (dma_farg)fdstart, sc,
639 &lock_stat, 0);
640 }
641 splx(s);
642
643 return;
644 done:
645 bp->b_resid = bp->b_bcount;
646 biodone(bp);
647 }
648
649 int
650 fdread(dev_t dev, struct uio *uio, int flags)
651 {
652
653 return physio(fdstrategy, NULL, dev, B_READ, fdminphys, uio);
654 }
655
656 int
657 fdwrite(dev_t dev, struct uio *uio, int flags)
658 {
659
660 return physio(fdstrategy, NULL, dev, B_WRITE, fdminphys, uio);
661 }
662
663 /*
664 * Called through DMA-dispatcher, get status.
665 */
666 static void
667 fdstatus(struct fd_softc *sc)
668 {
669
670 #ifdef FLP_DEBUG
671 printf("fdstatus\n");
672 #endif
673 sc->errcnt = 0;
674 fd_state = FLP_STAT;
675 fd_xfer(sc);
676 }
677
678 /*
679 * Called through the DMA-dispatcher. So we know we are the only ones
680 * messing with the floppy-controller.
681 * Initialize some fields in the fdsoftc for the state-machine and get
682 * it going.
683 */
684 static void
685 fdstart(struct fd_softc *sc)
686 {
687 struct buf *bp;
688
689 bp = bufq_peek(sc->bufq);
690 sc->sector = bp->b_blkno; /* Start sector for I/O */
691 sc->io_data = bp->b_data; /* KVA base for I/O */
692 sc->io_bytes = bp->b_bcount; /* Transfer size in bytes */
693 sc->io_dir = bp->b_flags & B_READ;/* Direction of transfer */
694 sc->errcnt = 0; /* No errors yet */
695 fd_state = FLP_XFER; /* Yes, we're going to transfer */
696
697 /* Instrumentation. */
698 disk_busy(&sc->dkdev);
699
700 fd_xfer(sc);
701 }
702
703 /*
704 * The current transaction is finished (for good or bad). Let go of
705 * the DMA-resources. Call biodone() to finish the transaction.
706 * Find a new transaction to work on.
707 */
708 static void
709 fddone(register struct fd_softc *sc)
710 {
711 struct buf *bp;
712 struct fd_softc *sc1;
713 int i, s;
714
715 /*
716 * Give others a chance to use the DMA.
717 */
718 st_dmafree(sc, &lock_stat);
719
720
721 if (fd_state != FLP_STAT) {
722 /*
723 * Finish current transaction.
724 */
725 s = splbio();
726 bp = bufq_get(sc->bufq);
727 if (bp == NULL)
728 panic("fddone");
729 splx(s);
730
731 #ifdef FLP_DEBUG
732 printf("fddone: unit: %d, buf: %p, resid: %d\n",sc->unit, bp,
733 sc->io_bytes);
734 #endif
735 bp->b_resid = sc->io_bytes;
736
737 disk_unbusy(&sc->dkdev, (bp->b_bcount - bp->b_resid),
738 (bp->b_flags & B_READ));
739
740 biodone(bp);
741 }
742 fd_state = FLP_MON;
743
744 if (lock_stat)
745 return; /* XXX Is this possible? */
746
747 /*
748 * Find a new transaction on round-robin basis.
749 */
750 for (i = sc->unit + 1;; i++) {
751 if (i >= fd_cd.cd_ndevs)
752 i = 0;
753 if ((sc1 = device_lookup_private(&fd_cd, i)) == NULL)
754 continue;
755 if (bufq_peek(sc1->bufq) != NULL)
756 break;
757 if (i == sc->unit) {
758 callout_reset(&sc->sc_motor_ch, FLP_MONDELAY,
759 (FPV)fdmotoroff, sc);
760 #ifdef FLP_DEBUG
761 printf("fddone: Nothing to do\n");
762 #endif
763 return; /* No work */
764 }
765 }
766 fd_state = FLP_IDLE;
767 #ifdef FLP_DEBUG
768 printf("fddone: Staring job on unit %d\n", sc1->unit);
769 #endif
770 st_dmagrab((dma_farg)fdcint, (dma_farg)fdstart, sc1, &lock_stat, 0);
771 }
772
773 static int
774 fdselect(int drive, int head, int dense)
775 {
776 int i, spinning;
777
778 #ifdef FLP_DEBUG
779 printf("fdselect: drive=%d, head=%d, dense=%d\n", drive, head, dense);
780 #endif
781 i = ((drive == 1) ? PA_FLOP1 : PA_FLOP0) | head;
782 spinning = motoron;
783 motoron = 1;
784
785 switch (dense) {
786 case FLP_DD:
787 DMA->dma_drvmode = 0;
788 break;
789 case FLP_HD:
790 DMA->dma_drvmode = (FDC_HDSET|FDC_HDSIG);
791 break;
792 default:
793 panic("fdselect: unknown density code");
794 }
795 if (i != selected) {
796 selected = i;
797 ym2149_fd_select((i ^ PA_FDSEL));
798 }
799 return spinning;
800 }
801
802 static void
803 fddeselect(void)
804 {
805
806 ym2149_fd_select(PA_FDSEL);
807 motoron = selected = 0;
808 DMA->dma_drvmode = 0;
809 }
810
811 /****************************************************************************
812 * The following functions assume to be running as a result of a *
813 * disk-interrupt (e.q. spl = splbio). *
814 * They form the finit-state machine, the actual driver. *
815 * *
816 * fdstart()/ --> fd_xfer() -> activate hardware *
817 * fdopen() ^ *
818 * | *
819 * +-- not ready -<------------+ *
820 * | *
821 * fdmotoroff()/ --> fdcint() -> fd_xfer_ok() ---+ *
822 * h/w interrupt | *
823 * \|/ *
824 * finished ---> fdone() *
825 * *
826 ****************************************************************************/
827 static void
828 fd_xfer(struct fd_softc *sc)
829 {
830 int head;
831 int track, sector, hbit;
832 paddr_t phys_addr;
833
834 head = track = 0;
835 switch (fd_state) {
836 case FLP_XFER:
837 /*
838 * Calculate head/track values
839 */
840 track = sc->sector / sc->nsectors;
841 head = track % sc->nheads;
842 track = track / sc->nheads;
843 #ifdef FLP_DEBUG
844 printf("fd_xfer: sector:%d,head:%d,track:%d\n",
845 sc->sector, head, track);
846 #endif
847 break;
848
849 case FLP_STAT:
850 /*
851 * FLP_STAT only wants to recalibrate
852 */
853 sc->curtrk = INV_TRK;
854 break;
855 default:
856 panic("fd_xfer: wrong state (0x%x)", fd_state);
857 }
858
859 /*
860 * Select the drive.
861 */
862 hbit = fdselect(sc->unit, head, sc->density) ? HBIT : 0;
863
864 if (sc->curtrk == INV_TRK) {
865 /*
866 * Recalibrate, since we lost track of head positioning.
867 * The floppy disk controller has no way of determining its
868 * absolute arm position (track). Instead, it steps the
869 * arm a track at a time and keeps track of where it
870 * thinks it is (in software). However, after a SEEK, the
871 * hardware reads information from the diskette telling
872 * where the arm actually is. If the arm is in the wrong place,
873 * a recalibration is done, which forces the arm to track 0.
874 * This way the controller can get back into sync with reality.
875 */
876 fd_cmd = RESTORE;
877 write_fdreg(FDC_CS, RESTORE|VBIT|hbit);
878 callout_reset(&sc->sc_motor_ch, FLP_XFERDELAY,
879 (FPV)fdmotoroff, sc);
880
881 #ifdef FLP_DEBUG
882 printf("fd_xfer:Recalibrating drive %d\n", sc->unit);
883 #endif
884 return;
885 }
886
887 write_fdreg(FDC_TR, sc->curtrk);
888
889 /*
890 * Issue a SEEK command on the indicated drive unless the arm is
891 * already positioned on the correct track.
892 */
893 if (track != sc->curtrk) {
894 sc->curtrk = track; /* be optimistic */
895 write_fdreg(FDC_DR, track);
896 write_fdreg(FDC_CS, SEEK|RATE6|VBIT|hbit);
897 callout_reset(&sc->sc_motor_ch, FLP_XFERDELAY,
898 (FPV)fdmotoroff, sc);
899 fd_cmd = SEEK;
900 #ifdef FLP_DEBUG
901 printf("fd_xfer:Seek to track %d on drive %d\n",
902 track, sc->unit);
903 #endif
904 return;
905 }
906
907 /*
908 * The drive is now on the proper track. Read or write 1 block.
909 */
910 sector = sc->sector % sc->nsectors;
911 sector++; /* start numbering at 1 */
912
913 write_fdreg(FDC_SR, sector);
914
915 phys_addr = (paddr_t)kvtop(sc->io_data);
916 if (phys_addr >= FDC_MAX_DMA_AD) {
917 /*
918 * We _must_ bounce this address
919 */
920 phys_addr = (paddr_t)kvtop(sc->bounceb);
921 if (sc->io_dir == B_WRITE)
922 memcpy(sc->bounceb, sc->io_data, SECTOR_SIZE);
923 sc->flags |= FLPF_BOUNCE;
924 }
925 st_dmaaddr_set((void *)phys_addr); /* DMA address setup */
926
927 #ifdef FLP_DEBUG
928 printf("fd_xfer:Start io (io_addr:%lx)\n", (u_long)kvtop(sc->io_data));
929 #endif
930
931 if (sc->io_dir == B_READ) {
932 /* Issue the command */
933 st_dmacomm(DMA_FDC | DMA_SCREG, 1);
934 write_fdreg(FDC_CS, F_READ|hbit);
935 fd_cmd = F_READ;
936 } else {
937 /* Issue the command */
938 st_dmacomm(DMA_WRBIT | DMA_FDC | DMA_SCREG, 1);
939 write_fdreg(DMA_WRBIT | FDC_CS, F_WRITE|hbit|EBIT|PBIT);
940 fd_cmd = F_WRITE;
941 }
942 callout_reset(&sc->sc_motor_ch, FLP_XFERDELAY, (FPV)fdmotoroff, sc);
943 }
944
945 /* return values of fd_xfer_ok(): */
946 #define X_OK 0
947 #define X_AGAIN 1
948 #define X_ERROR 2
949 #define X_FAIL 3
950
951 /*
952 * Hardware interrupt function.
953 */
954 static void
955 fdcint(struct fd_softc *sc)
956 {
957 struct buf *bp;
958
959 #ifdef FLP_DEBUG
960 printf("fdcint: unit = %d\n", sc->unit);
961 #endif
962
963 /*
964 * Cancel timeout (we made it, didn't we)
965 */
966 callout_stop(&sc->sc_motor_ch);
967
968 switch (fd_xfer_ok(sc)) {
969 case X_ERROR:
970 if (++sc->errcnt < MAX_ERRORS) {
971 /*
972 * Command failed but still retries left.
973 */
974 break;
975 }
976 /* FALL THROUGH */
977 case X_FAIL:
978 /*
979 * Non recoverable error. Fall back to motor-on
980 * idle-state.
981 */
982 if (fd_error != NULL) {
983 printf("Floppy error: %s\n", fd_error);
984 fd_error = NULL;
985 }
986
987 if (fd_state == FLP_STAT) {
988 sc->flags |= FLPF_EMPTY;
989 sc->flags &= ~FLPF_GETSTAT;
990 wakeup((void *)sc);
991 fddone(sc);
992 return;
993 }
994
995 bp = bufq_peek(sc->bufq);
996
997 bp->b_error = EIO;
998 fd_state = FLP_MON;
999
1000 break;
1001 case X_AGAIN:
1002 /*
1003 * Start next part of state machine.
1004 */
1005 break;
1006 case X_OK:
1007 /*
1008 * Command ok and finished. Reset error-counter.
1009 * If there are no more bytes to transfer fall back
1010 * to motor-on idle state.
1011 */
1012 sc->errcnt = 0;
1013
1014 if (fd_state == FLP_STAT) {
1015 sc->flags &= ~FLPF_GETSTAT;
1016 wakeup((void *)sc);
1017 fddone(sc);
1018 return;
1019 }
1020
1021 if ((sc->flags & FLPF_BOUNCE) != 0 &&
1022 sc->io_dir == B_READ)
1023 memcpy(sc->io_data, sc->bounceb, SECTOR_SIZE);
1024 sc->flags &= ~FLPF_BOUNCE;
1025
1026 sc->sector++;
1027 sc->io_data += SECTOR_SIZE;
1028 sc->io_bytes -= SECTOR_SIZE;
1029 if (sc->io_bytes <= 0)
1030 fd_state = FLP_MON;
1031 }
1032 if (fd_state == FLP_MON)
1033 fddone(sc);
1034 else
1035 fd_xfer(sc);
1036 }
1037
1038 /*
1039 * Determine status of last command. Should only be called through
1040 * 'fdcint()'.
1041 * Returns:
1042 * X_ERROR : Error on command; might succeed next time.
1043 * X_FAIL : Error on command; will never succeed.
1044 * X_AGAIN : Part of a command succeeded, call 'fd_xfer()' to complete.
1045 * X_OK : Command succeeded and is complete.
1046 *
1047 * This function only affects sc->curtrk.
1048 */
1049 static int
1050 fd_xfer_ok(register struct fd_softc *sc)
1051 {
1052 int status;
1053
1054 #ifdef FLP_DEBUG
1055 printf("fd_xfer_ok: cmd: 0x%x, state: 0x%x\n", fd_cmd, fd_state);
1056 #endif
1057 switch (fd_cmd) {
1058 case IRUPT:
1059 /*
1060 * Timeout. Force a recalibrate before we try again.
1061 */
1062 status = read_fdreg(FDC_CS);
1063
1064 fd_error = "Timeout";
1065 sc->curtrk = INV_TRK;
1066 return X_ERROR;
1067 case F_READ:
1068 /*
1069 * Test for DMA error
1070 */
1071 status = read_dmastat();
1072 if ((status & DMAOK) == 0) {
1073 fd_error = "DMA error";
1074 return X_ERROR;
1075 }
1076 /*
1077 * Get controller status and check for errors.
1078 */
1079 status = read_fdreg(FDC_CS);
1080 if ((status & (RNF | CRCERR | LD_T00)) != 0) {
1081 fd_error = "Read error";
1082 if ((status & RNF) != 0)
1083 sc->curtrk = INV_TRK;
1084 return X_ERROR;
1085 }
1086 break;
1087 case F_WRITE:
1088 /*
1089 * Test for DMA error
1090 */
1091 status = read_dmastat();
1092 if ((status & DMAOK) == 0) {
1093 fd_error = "DMA error";
1094 return X_ERROR;
1095 }
1096 /*
1097 * Get controller status and check for errors.
1098 */
1099 status = read_fdreg(FDC_CS);
1100 if ((status & WRI_PRO) != 0) {
1101 fd_error = "Write protected";
1102 return X_FAIL;
1103 }
1104 if ((status & (RNF | CRCERR | LD_T00)) != 0) {
1105 fd_error = "Write error";
1106 sc->curtrk = INV_TRK;
1107 return X_ERROR;
1108 }
1109 break;
1110 case SEEK:
1111 status = read_fdreg(FDC_CS);
1112 if ((status & (RNF | CRCERR)) != 0) {
1113 fd_error = "Seek error";
1114 sc->curtrk = INV_TRK;
1115 return X_ERROR;
1116 }
1117 return X_AGAIN;
1118 case RESTORE:
1119 /*
1120 * Determine if the recalibration succeeded.
1121 */
1122 status = read_fdreg(FDC_CS);
1123 if ((status & RNF) != 0) {
1124 fd_error = "Recalibrate error";
1125 /* reset controller */
1126 write_fdreg(FDC_CS, IRUPT);
1127 sc->curtrk = INV_TRK;
1128 return X_ERROR;
1129 }
1130 sc->curtrk = 0;
1131 if (fd_state == FLP_STAT) {
1132 if ((status & WRI_PRO) != 0)
1133 sc->flags |= FLPF_WRTPROT;
1134 break;
1135 }
1136 return X_AGAIN;
1137 default:
1138 fd_error = "Driver error: fd_xfer_ok : Unknown state";
1139 return X_FAIL;
1140 }
1141 return X_OK;
1142 }
1143
1144 /*
1145 * All timeouts will call this function.
1146 */
1147 static void
1148 fdmotoroff(struct fd_softc *sc)
1149 {
1150 int s;
1151
1152 /*
1153 * Get at harware interrupt level
1154 */
1155 s = splbio();
1156
1157 #if FLP_DEBUG
1158 printf("fdmotoroff, state = 0x%x\n", fd_state);
1159 #endif
1160
1161 switch (fd_state) {
1162 case FLP_STAT:
1163 case FLP_XFER:
1164 /*
1165 * Timeout during a transfer; cancel transaction
1166 * set command to 'IRUPT'.
1167 * A drive-interrupt is simulated to trigger the state
1168 * machine.
1169 */
1170 /*
1171 * Cancel current transaction
1172 */
1173 fd_cmd = IRUPT;
1174 write_fdreg(FDC_CS, IRUPT);
1175 delay(20);
1176 (void)read_fdreg(FDC_CS);
1177 write_fdreg(FDC_CS, RESTORE);
1178 break;
1179
1180 case FLP_MON:
1181 /*
1182 * Turn motor off.
1183 */
1184 if (selected) {
1185 int tmp;
1186
1187 st_dmagrab((dma_farg)fdcint, (dma_farg)fdmoff, sc,
1188 &tmp, 0);
1189 } else
1190 fd_state = FLP_IDLE;
1191 break;
1192 }
1193 splx(s);
1194 }
1195
1196 /*
1197 * min byte count to whats left of the track in question
1198 */
1199 static void
1200 fdminphys(struct buf *bp)
1201 {
1202 struct fd_softc *sc;
1203 int sec, toff, tsz;
1204
1205 if ((sc = device_lookup_private(&fd_cd, DISKUNIT(bp->b_dev))) == NULL)
1206 panic("fdminphys: couldn't get softc");
1207
1208 sec = bp->b_blkno % (sc->nsectors * sc->nheads);
1209 toff = sec * SECTOR_SIZE;
1210 tsz = sc->nsectors * sc->nheads * SECTOR_SIZE;
1211
1212 #ifdef FLP_DEBUG
1213 printf("fdminphys: before %ld", bp->b_bcount);
1214 #endif
1215
1216 bp->b_bcount = min(bp->b_bcount, tsz - toff);
1217
1218 #ifdef FLP_DEBUG
1219 printf(" after %ld\n", bp->b_bcount);
1220 #endif
1221
1222 minphys(bp);
1223 }
1224
1225 /*
1226 * Called from fdmotoroff to turn the motor actually off....
1227 * This can't be done in fdmotoroff itself, because exclusive access to the
1228 * DMA controller is needed to read the FDC-status register. The function
1229 * 'fdmoff()' always runs as the result of a 'dmagrab()'.
1230 * We need to test the status-register because we want to be sure that the
1231 * drive motor is really off before deselecting the drive. The FDC only
1232 * turns off the drive motor after having seen 10 index-pulses. You only
1233 * get index-pulses when a drive is selected....This means that if the
1234 * drive is deselected when the motor is still spinning, it will continue
1235 * to spin _even_ when you insert a floppy later on...
1236 */
1237 static void
1238 fdmoff(struct fd_softc *fdsoftc)
1239 {
1240 int tmp;
1241
1242 if ((fd_state == FLP_MON) && selected) {
1243 tmp = read_fdreg(FDC_CS);
1244 if ((tmp & MOTORON) == 0) {
1245 fddeselect();
1246 fd_state = FLP_IDLE;
1247 } else
1248 callout_reset(&fdsoftc->sc_motor_ch, 10 * FLP_MONDELAY,
1249 (FPV)fdmotoroff, fdsoftc);
1250 }
1251 st_dmafree(fdsoftc, &tmp);
1252 }
1253
1254 /*
1255 * Used to find out wich drives are actually connected. We do this by issuing
1256 * is 'RESTORE' command and check if the 'track-0' bit is set. This also works
1257 * if the drive is present but no floppy is inserted.
1258 */
1259 static void
1260 fdtestdrv(struct fd_softc *fdsoftc)
1261 {
1262 int status;
1263
1264 /*
1265 * Select the right unit and head.
1266 */
1267 fdselect(fdsoftc->unit, 0, FLP_DD);
1268
1269 write_fdreg(FDC_CS, RESTORE|HBIT);
1270
1271 /*
1272 * Wait for about 2 seconds.
1273 */
1274 delay(2000000);
1275
1276 status = read_fdreg(FDC_CS);
1277 if ((status & (RNF|BUSY)) != 0) {
1278 write_fdreg(FDC_CS, IRUPT); /* reset controller */
1279 delay(40);
1280 }
1281
1282 if ((status & LD_T00) == 0)
1283 fdsoftc->flags |= FLPF_NOTRESP;
1284
1285 fddeselect();
1286 }
1287
1288 static void
1289 fdgetdefaultlabel(struct fd_softc *sc, struct disklabel *lp, int part)
1290 {
1291
1292 memset(lp, 0, sizeof(struct disklabel));
1293
1294 lp->d_secsize = SECTOR_SIZE;
1295 lp->d_ntracks = sc->nheads;
1296 lp->d_nsectors = sc->nsectors;
1297 lp->d_secpercyl = lp->d_ntracks * lp->d_nsectors;
1298 lp->d_ncylinders = sc->nblocks / lp->d_secpercyl;
1299 lp->d_secperunit = sc->nblocks;
1300
1301 lp->d_type = DTYPE_FLOPPY;
1302 lp->d_rpm = 300; /* good guess I suppose. */
1303 lp->d_interleave = 1; /* FIXME: is this OK? */
1304 lp->d_bbsize = 0;
1305 lp->d_sbsize = 0;
1306 lp->d_npartitions = part + 1;
1307 lp->d_trkseek = STEP_DELAY;
1308 lp->d_magic = DISKMAGIC;
1309 lp->d_magic2 = DISKMAGIC;
1310 lp->d_checksum = dkcksum(lp);
1311 lp->d_partitions[part].p_size = lp->d_secperunit;
1312 lp->d_partitions[part].p_fstype = FS_UNUSED;
1313 lp->d_partitions[part].p_fsize = 1024;
1314 lp->d_partitions[part].p_frag = 8;
1315 }
1316
1317 /*
1318 * Build disk label. For now we only create a label from what we know
1319 * from 'sc'.
1320 */
1321 static int
1322 fdgetdisklabel(struct fd_softc *sc, dev_t dev)
1323 {
1324 struct disklabel *lp;
1325 int part;
1326
1327 /*
1328 * If we already got one, get out.
1329 */
1330 if ((sc->flags & FLPF_HAVELAB) != 0)
1331 return 0;
1332
1333 #ifdef FLP_DEBUG
1334 printf("fdgetdisklabel()\n");
1335 #endif
1336
1337 part = RAW_PART;
1338 lp = sc->dkdev.dk_label;
1339 fdgetdefaultlabel(sc, lp, part);
1340 sc->flags |= FLPF_HAVELAB;
1341
1342 return 0;
1343 }
1344