Home | History | Annotate | Line # | Download | only in jazz
fd.c revision 1.37
      1 /*	$NetBSD: fd.c,v 1.37 2008/07/05 08:46:25 tsutsui Exp $	*/
      2 /*	$OpenBSD: fd.c,v 1.6 1998/10/03 21:18:57 millert Exp $	*/
      3 /*	NetBSD: fd.c,v 1.78 1995/07/04 07:23:09 mycroft Exp 	*/
      4 
      5 /*-
      6  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      7  * All rights reserved.
      8  *
      9  * This code is derived from software contributed to The NetBSD Foundation
     10  * by Charles M. Hannum.
     11  *
     12  * Redistribution and use in source and binary forms, with or without
     13  * modification, are permitted provided that the following conditions
     14  * are met:
     15  * 1. Redistributions of source code must retain the above copyright
     16  *    notice, this list of conditions and the following disclaimer.
     17  * 2. Redistributions in binary form must reproduce the above copyright
     18  *    notice, this list of conditions and the following disclaimer in the
     19  *    documentation and/or other materials provided with the distribution.
     20  *
     21  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     23  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     24  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     25  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     26  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     31  * POSSIBILITY OF SUCH DAMAGE.
     32  */
     33 
     34 /*-
     35  * Copyright (c) 1990 The Regents of the University of California.
     36  * All rights reserved.
     37  *
     38  * This code is derived from software contributed to Berkeley by
     39  * Don Ahn.
     40  *
     41  * Redistribution and use in source and binary forms, with or without
     42  * modification, are permitted provided that the following conditions
     43  * are met:
     44  * 1. Redistributions of source code must retain the above copyright
     45  *    notice, this list of conditions and the following disclaimer.
     46  * 2. Redistributions in binary form must reproduce the above copyright
     47  *    notice, this list of conditions and the following disclaimer in the
     48  *    documentation and/or other materials provided with the distribution.
     49  * 3. Neither the name of the University nor the names of its contributors
     50  *    may be used to endorse or promote products derived from this software
     51  *    without specific prior written permission.
     52  *
     53  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     54  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     55  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     56  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     57  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     58  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     59  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     60  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     61  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     62  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     63  * SUCH DAMAGE.
     64  *
     65  *	@(#)fd.c	7.4 (Berkeley) 5/25/91
     66  */
     67 
     68 #include <sys/cdefs.h>
     69 __KERNEL_RCSID(0, "$NetBSD: fd.c,v 1.37 2008/07/05 08:46:25 tsutsui Exp $");
     70 
     71 #include <sys/param.h>
     72 #include <sys/systm.h>
     73 #include <sys/callout.h>
     74 #include <sys/kernel.h>
     75 #include <sys/conf.h>
     76 #include <sys/file.h>
     77 #include <sys/ioctl.h>
     78 #include <sys/device.h>
     79 #include <sys/disklabel.h>
     80 #include <sys/disk.h>
     81 #include <sys/buf.h>
     82 #include <sys/bufq.h>
     83 #include <sys/uio.h>
     84 #include <sys/syslog.h>
     85 #include <sys/queue.h>
     86 
     87 #include <uvm/uvm_extern.h>
     88 
     89 #include <dev/cons.h>
     90 
     91 #include <machine/bus.h>
     92 #include <machine/cpu.h>
     93 
     94 #include <arc/jazz/fdreg.h>
     95 #include <arc/jazz/fdcvar.h>
     96 
     97 #include "ioconf.h"
     98 #include "locators.h"
     99 
    100 #define FDUNIT(dev)	DISKUNIT(dev)
    101 #define FDTYPE(dev)	DISKPART(dev)
    102 
    103 /* controller driver configuration */
    104 static int fdprint(void *, const char *);
    105 
    106 /*
    107  * Floppies come in various flavors, e.g., 1.2MB vs 1.44MB; here is how
    108  * we tell them apart.
    109  */
    110 struct fd_type {
    111 	int	sectrac;	/* sectors per track */
    112 	int	heads;		/* number of heads */
    113 	int	seccyl;		/* sectors per cylinder */
    114 	int	secsize;	/* size code for sectors */
    115 	int	datalen;	/* data len when secsize = 0 */
    116 	int	steprate;	/* step rate and head unload time */
    117 	int	gap1;		/* gap len between sectors */
    118 	int	gap2;		/* formatting gap */
    119 	int	cyls;		/* total num of cylinders */
    120 	int	size;		/* size of disk in sectors */
    121 	int	step;		/* steps per cylinder */
    122 	int	rate;		/* transfer speed code */
    123 	const char *name;
    124 };
    125 
    126 /* The order of entries in the following table is important -- BEWARE! */
    127 const static struct fd_type fd_types[] = {
    128 	/* 1.44MB diskette */
    129 	{ 18,2,36,2,0xff,0xcf,0x1b,0x6c,80,2880,1,FDC_500KBPS,"1.44MB"    },
    130 	/* 1.2 MB AT-diskettes */
    131 	{ 15,2,30,2,0xff,0xdf,0x1b,0x54,80,2400,1,FDC_500KBPS, "1.2MB"    },
    132 	/* 360kB in 1.2MB drive */
    133 	{  9,2,18,2,0xff,0xdf,0x23,0x50,40, 720,2,FDC_300KBPS, "360KB/AT" },
    134 	/* 360kB PC diskettes */
    135 	{  9,2,18,2,0xff,0xdf,0x2a,0x50,40, 720,1,FDC_250KBPS, "360KB/PC" },
    136 	/* 3.5" 720kB diskette */
    137 	{  9,2,18,2,0xff,0xdf,0x2a,0x50,80,1440,1,FDC_250KBPS, "720KB"    },
    138 	/* 720kB in 1.2MB drive */
    139 	{  9,2,18,2,0xff,0xdf,0x23,0x50,80,1440,1,FDC_300KBPS, "720KB/x"  },
    140 	/* 360kB in 720kB drive */
    141 	{  9,2,18,2,0xff,0xdf,0x2a,0x50,40, 720,2,FDC_250KBPS, "360KB/x"  },
    142 };
    143 
    144 /* software state, per disk (with up to 4 disks per ctlr) */
    145 struct fd_softc {
    146 	device_t sc_dev;
    147 	struct disk sc_dk;
    148 
    149 	const struct fd_type *sc_deftype; /* default type descriptor */
    150 	struct fd_type *sc_type;	/* current type descriptor */
    151 	struct fd_type sc_type_copy;	/* copy for fiddling when formatting */
    152 
    153 	struct callout sc_motoron_ch;
    154 	struct callout sc_motoroff_ch;
    155 
    156 	daddr_t	sc_blkno;	/* starting block number */
    157 	int sc_bcount;		/* byte count left */
    158 	int sc_opts;		/* user-set options */
    159 	int sc_skip;		/* bytes already transferred */
    160 	int sc_nblks;		/* number of blocks currently transferring */
    161 	int sc_nbytes;		/* number of bytes currently transferring */
    162 
    163 	int sc_drive;		/* physical unit number */
    164 	int sc_flags;
    165 #define	FD_OPEN		0x01		/* it's open */
    166 #define	FD_MOTOR	0x02		/* motor should be on */
    167 #define	FD_MOTOR_WAIT	0x04		/* motor coming up */
    168 	int sc_cylin;		/* where we think the head is */
    169 
    170 	void *sc_sdhook;	/* saved shutdown hook for drive. */
    171 
    172 	TAILQ_ENTRY(fd_softc) sc_drivechain;
    173 	int sc_ops;		/* I/O ops since last switch */
    174 	struct bufq_state *sc_q;/* pending I/O requests */
    175 	int sc_active;		/* number of active I/O operations */
    176 };
    177 
    178 /* floppy driver configuration */
    179 static int fdprobe(device_t, cfdata_t, void *);
    180 static void fdattach(device_t, device_t, void *);
    181 
    182 CFATTACH_DECL_NEW(fd, sizeof(struct fd_softc), fdprobe, fdattach, NULL, NULL);
    183 
    184 dev_type_open(fdopen);
    185 dev_type_close(fdclose);
    186 dev_type_read(fdread);
    187 dev_type_write(fdwrite);
    188 dev_type_ioctl(fdioctl);
    189 dev_type_strategy(fdstrategy);
    190 
    191 const struct bdevsw fd_bdevsw = {
    192 	fdopen, fdclose, fdstrategy, fdioctl, nodump, nosize, D_DISK
    193 };
    194 
    195 const struct cdevsw fd_cdevsw = {
    196 	fdopen, fdclose, fdread, fdwrite, fdioctl,
    197 	nostop, notty, nopoll, nommap, nokqfilter, D_DISK
    198 };
    199 
    200 static void fdstart(struct fd_softc *);
    201 
    202 struct dkdriver fddkdriver = { fdstrategy };
    203 
    204 #if 0
    205 static const struct fd_type *fd_nvtotype(char *, int, int);
    206 #endif
    207 static void fd_set_motor(struct fdc_softc *, int);
    208 static void fd_motor_off(void *);
    209 static void fd_motor_on(void *);
    210 static int fdcresult(struct fdc_softc *);
    211 static void fdcstart(struct fdc_softc *);
    212 static void fdcstatus(device_t, int, const char *);
    213 static void fdctimeout(void *);
    214 static void fdcpseudointr(void *);
    215 static void fdcretry(struct fdc_softc *);
    216 static void fdfinish(struct fd_softc *, struct buf *);
    217 static inline const struct fd_type *fd_dev_to_type(struct fd_softc *, dev_t);
    218 static void fd_mountroot_hook(device_t);
    219 
    220 /*
    221  * Arguments passed between fdcattach and fdprobe.
    222  */
    223 struct fdc_attach_args {
    224 	int fa_drive;
    225 	const struct fd_type *fa_deftype;
    226 };
    227 
    228 /*
    229  * Print the location of a disk drive (called just before attaching the
    230  * the drive).  If `fdc' is not NULL, the drive was found but was not
    231  * in the system config file; print the drive name as well.
    232  * Return QUIET (config_find ignores this if the device was configured) to
    233  * avoid printing `fdN not configured' messages.
    234  */
    235 static int
    236 fdprint(void *aux, const char *fdc)
    237 {
    238 	struct fdc_attach_args *fa = aux;
    239 
    240 	if (fdc == NULL)
    241 		aprint_normal(" drive %d", fa->fa_drive);
    242 	return QUIET;
    243 }
    244 
    245 void
    246 fdcattach(struct fdc_softc *fdc)
    247 {
    248 	struct fdc_attach_args fa;
    249 	bus_space_tag_t iot;
    250 	bus_space_handle_t ioh;
    251 	int type;
    252 
    253 	iot = fdc->sc_iot;
    254 	ioh = fdc->sc_ioh;
    255 	callout_init(&fdc->sc_timo_ch, 0);
    256 	callout_init(&fdc->sc_intr_ch, 0);
    257 
    258 	fdc->sc_state = DEVIDLE;
    259 	TAILQ_INIT(&fdc->sc_drives);
    260 
    261 	/*
    262 	 * No way yet to determine default disk types.
    263 	 * we assume 1.44 3.5" type for the moment.
    264 	 */
    265 	type = 0;
    266 
    267 	/* physical limit: two drives per controller. */
    268 	for (fa.fa_drive = 0; fa.fa_drive < 2; fa.fa_drive++) {
    269 		fa.fa_deftype = &fd_types[type];
    270 		(void)config_found(fdc->sc_dev, (void *)&fa, fdprint);
    271 	}
    272 }
    273 
    274 static int
    275 fdprobe(device_t parent, cfdata_t cf , void *aux)
    276 {
    277 	struct fdc_softc *fdc = device_private(parent);
    278 	struct fdc_attach_args *fa = aux;
    279 	int drive = fa->fa_drive;
    280 	bus_space_tag_t iot = fdc->sc_iot;
    281 	bus_space_handle_t ioh = fdc->sc_ioh;
    282 	int n;
    283 
    284 	if (cf->cf_loc[FDCCF_DRIVE] != FDCCF_DRIVE_DEFAULT &&
    285 	    cf->cf_loc[FDCCF_DRIVE] != drive)
    286 		return 0;
    287 
    288 	/* select drive and turn on motor */
    289 	bus_space_write_1(iot, ioh, FDOUT, drive | FDO_FRST | FDO_MOEN(drive));
    290 	/* wait for motor to spin up */
    291 	delay(250000);
    292 	out_fdc(iot, ioh, NE7CMD_RECAL);
    293 	out_fdc(iot, ioh, drive);
    294 	/* wait for recalibrate */
    295 	delay(2000000);
    296 	out_fdc(iot, ioh, NE7CMD_SENSEI);
    297 	n = fdcresult(fdc);
    298 #ifdef FD_DEBUG
    299 	{
    300 		int i;
    301 		aprint_debug("%s: status", __func__);
    302 		for (i = 0; i < n; i++)
    303 			aprint_debug(" %x", fdc->sc_status[i]);
    304 		aprint_debug("\n");
    305 	}
    306 #endif
    307 	if (n != 2 || (fdc->sc_status[0] & 0xf8) != 0x20)
    308 		return 0;
    309 	/* turn off motor */
    310 	bus_space_write_1(iot, ioh, FDOUT, FDO_FRST);
    311 
    312 	return 1;
    313 }
    314 
    315 /*
    316  * Controller is working, and drive responded.  Attach it.
    317  */
    318 void
    319 fdattach(device_t parent, device_t self, void *aux)
    320 {
    321 	struct fdc_softc *fdc = device_private(parent);
    322 	struct fd_softc *fd = device_private(self);
    323 	struct fdc_attach_args *fa = aux;
    324 	const struct fd_type *type = fa->fa_deftype;
    325 	int drive = fa->fa_drive;
    326 
    327 	fd->sc_dev = self;
    328 
    329 	callout_init(&fd->sc_motoron_ch, 0);
    330 	callout_init(&fd->sc_motoroff_ch, 0);
    331 
    332 	/* XXX Allow `flags' to override device type? */
    333 
    334 	if (type)
    335 		printf(": %s, %d cyl, %d head, %d sec\n", type->name,
    336 		    type->cyls, type->heads, type->sectrac);
    337 	else
    338 		printf(": density unknown\n");
    339 
    340 	bufq_alloc(&fd->sc_q, "disksort", BUFQ_SORT_CYLINDER);
    341 	fd->sc_cylin = -1;
    342 	fd->sc_drive = drive;
    343 	fd->sc_deftype = type;
    344 	fdc->sc_fd[drive] = fd;
    345 
    346 	/*
    347 	 * Initialize and attach the disk structure.
    348 	 */
    349 	disk_init(&fd->sc_dk, device_xname(fd->sc_dev), &fddkdriver);
    350 	disk_attach(&fd->sc_dk);
    351 
    352 	/* Establish a mountroot hook. */
    353 	mountroothook_establish(fd_mountroot_hook, fd->sc_dev);
    354 
    355 	/* Needed to power off if the motor is on when we halt. */
    356 	fd->sc_sdhook = shutdownhook_establish(fd_motor_off, fd);
    357 }
    358 
    359 #if 0
    360 /*
    361  * Translate nvram type into internal data structure.  Return NULL for
    362  * none/unknown/unusable.
    363  */
    364 static const struct fd_type *
    365 fd_nvtotype(char *fdc, int nvraminfo, int drive)
    366 {
    367 	int type;
    368 
    369 	type = (drive == 0 ? nvraminfo : nvraminfo << 4) & 0xf0;
    370 #if 0
    371 	switch (type) {
    372 	case NVRAM_DISKETTE_NONE:
    373 		return NULL;
    374 	case NVRAM_DISKETTE_12M:
    375 		return &fd_types[1];
    376 	case NVRAM_DISKETTE_TYPE5:
    377 	case NVRAM_DISKETTE_TYPE6:
    378 		/* XXX We really ought to handle 2.88MB format. */
    379 	case NVRAM_DISKETTE_144M:
    380 		return &fd_types[0];
    381 	case NVRAM_DISKETTE_360K:
    382 		return &fd_types[3];
    383 	case NVRAM_DISKETTE_720K:
    384 		return &fd_types[4];
    385 	default:
    386 		printf("%s: drive %d: unknown device type 0x%x\n",
    387 		    fdc, drive, type);
    388 		return NULL;
    389 	}
    390 #else
    391 	return &fd_types[0]; /* Use only 1.44 for now */
    392 #endif
    393 }
    394 #endif
    395 
    396 static inline const struct fd_type *
    397 fd_dev_to_type(struct fd_softc *fd, dev_t dev)
    398 {
    399 	int type = FDTYPE(dev);
    400 
    401 	if (type > __arraycount(fd_types))
    402 		return NULL;
    403 	return type ? &fd_types[type - 1] : fd->sc_deftype;
    404 }
    405 
    406 void
    407 fdstrategy(struct buf *bp)
    408 {
    409 	struct fd_softc *fd = device_lookup_private(&fd_cd, FDUNIT(bp->b_dev));
    410 	int sz;
    411 	int s;
    412 
    413 	/* Valid unit, controller, and request? */
    414 	if (bp->b_blkno < 0 ||
    415 	    (bp->b_bcount % FDC_BSIZE) != 0) {
    416 		bp->b_error = EINVAL;
    417 		goto done;
    418 	}
    419 
    420 	/* If it's a null transfer, return immediately. */
    421 	if (bp->b_bcount == 0)
    422 		goto done;
    423 
    424 	sz = howmany(bp->b_bcount, FDC_BSIZE);
    425 
    426 	if (bp->b_blkno + sz > fd->sc_type->size) {
    427 		sz = fd->sc_type->size - bp->b_blkno;
    428 		if (sz == 0) {
    429 			/* If exactly at end of disk, return EOF. */
    430 			goto done;
    431 		}
    432 		if (sz < 0) {
    433 			/* If past end of disk, return EINVAL. */
    434 			bp->b_error = EINVAL;
    435 			goto done;
    436 		}
    437 		/* Otherwise, truncate request. */
    438 		bp->b_bcount = sz << DEV_BSHIFT;
    439 	}
    440 
    441 	bp->b_rawblkno = bp->b_blkno;
    442 	bp->b_cylinder =
    443 	    bp->b_blkno / (FDC_BSIZE / DEV_BSIZE) / fd->sc_type->seccyl;
    444 
    445 #ifdef FD_DEBUG
    446 	printf("%s: b_blkno %" PRId64 " b_bcount %ld blkno %" PRId64
    447 	    " cylin %ld sz %d\n", __func__,
    448 	    bp->b_blkno, bp->b_bcount, fd->sc_blkno, bp->b_cylinder, sz);
    449 #endif
    450 
    451 	/* Queue transfer on drive, activate drive and controller if idle. */
    452 	s = splbio();
    453 	BUFQ_PUT(fd->sc_q, bp);
    454 	callout_stop(&fd->sc_motoroff_ch);		/* a good idea */
    455 	if (fd->sc_active == 0)
    456 		fdstart(fd);
    457 #ifdef DIAGNOSTIC
    458 	else {
    459 		struct fdc_softc *fdc =
    460 		    device_private(device_parent(fd->sc_dev));
    461 		if (fdc->sc_state == DEVIDLE) {
    462 			printf("%s: controller inactive\n", __func__);
    463 			fdcstart(fdc);
    464 		}
    465 	}
    466 #endif
    467 	splx(s);
    468 	return;
    469 
    470  done:
    471 	/* Toss transfer; we're done early. */
    472 	bp->b_resid = bp->b_bcount;
    473 	biodone(bp);
    474 }
    475 
    476 void
    477 fdstart(struct fd_softc *fd)
    478 {
    479 	struct fdc_softc *fdc = device_private(device_parent(fd->sc_dev));
    480 	int active = TAILQ_FIRST(&fdc->sc_drives) != 0;
    481 
    482 	/* Link into controller queue. */
    483 	fd->sc_active = 1;
    484 	TAILQ_INSERT_TAIL(&fdc->sc_drives, fd, sc_drivechain);
    485 
    486 	/* If controller not already active, start it. */
    487 	if (!active)
    488 		fdcstart(fdc);
    489 }
    490 
    491 void
    492 fdfinish(struct fd_softc *fd, struct buf *bp)
    493 {
    494 	struct fdc_softc *fdc = device_private(device_parent(fd->sc_dev));
    495 
    496 	/*
    497 	 * Move this drive to the end of the queue to give others a `fair'
    498 	 * chance.  We only force a switch if N operations are completed while
    499 	 * another drive is waiting to be serviced, since there is a long motor
    500 	 * startup delay whenever we switch.
    501 	 */
    502 	(void)BUFQ_GET(fd->sc_q);
    503 	if (TAILQ_NEXT(fd, sc_drivechain) && ++fd->sc_ops >= 8) {
    504 		fd->sc_ops = 0;
    505 		TAILQ_REMOVE(&fdc->sc_drives, fd, sc_drivechain);
    506 		if (BUFQ_PEEK(fd->sc_q) != NULL)
    507 			TAILQ_INSERT_TAIL(&fdc->sc_drives, fd, sc_drivechain);
    508 		else
    509 			fd->sc_active = 0;
    510 	}
    511 	bp->b_resid = fd->sc_bcount;
    512 	fd->sc_skip = 0;
    513 	biodone(bp);
    514 	/* turn off motor 5s from now */
    515 	callout_reset(&fd->sc_motoroff_ch, 5 * hz, fd_motor_off, fd);
    516 	fdc->sc_state = DEVIDLE;
    517 }
    518 
    519 int
    520 fdread(dev_t dev, struct uio *uio, int flags)
    521 {
    522 
    523 	return physio(fdstrategy, NULL, dev, B_READ, minphys, uio);
    524 }
    525 
    526 int
    527 fdwrite(dev_t dev, struct uio *uio, int flags)
    528 {
    529 
    530 	return physio(fdstrategy, NULL, dev, B_WRITE, minphys, uio);
    531 }
    532 
    533 void
    534 fd_set_motor(struct fdc_softc *fdc, int reset)
    535 {
    536 	struct fd_softc *fd;
    537 	u_char status;
    538 	int n;
    539 
    540 	if ((fd = TAILQ_FIRST(&fdc->sc_drives)) != NULL)
    541 		status = fd->sc_drive;
    542 	else
    543 		status = 0;
    544 	if (!reset)
    545 		status |= FDO_FRST | FDO_FDMAEN;
    546 	for (n = 0; n < 4; n++)
    547 		if ((fd = fdc->sc_fd[n]) && (fd->sc_flags & FD_MOTOR))
    548 			status |= FDO_MOEN(n);
    549 	bus_space_write_1(fdc->sc_iot, fdc->sc_ioh, FDOUT, status);
    550 }
    551 
    552 void
    553 fd_motor_off(void *arg)
    554 {
    555 	struct fd_softc *fd = arg;
    556 	struct fdc_softc *fdc = device_private(device_parent(fd->sc_dev));
    557 	int s;
    558 
    559 	s = splbio();
    560 	fd->sc_flags &= ~(FD_MOTOR | FD_MOTOR_WAIT);
    561 	fd_set_motor(fdc, 0);
    562 	splx(s);
    563 }
    564 
    565 void
    566 fd_motor_on(void *arg)
    567 {
    568 	struct fd_softc *fd = arg;
    569 	struct fdc_softc *fdc = device_private(device_parent(fd->sc_dev));
    570 	int s;
    571 
    572 	s = splbio();
    573 	fd->sc_flags &= ~FD_MOTOR_WAIT;
    574 	if ((TAILQ_FIRST(&fdc->sc_drives) == fd) &&
    575 	    (fdc->sc_state == MOTORWAIT))
    576 		(void)fdcintr(fdc);
    577 	splx(s);
    578 }
    579 
    580 int
    581 fdcresult(struct fdc_softc *fdc)
    582 {
    583 	bus_space_tag_t iot = fdc->sc_iot;
    584 	bus_space_handle_t ioh = fdc->sc_ioh;
    585 	u_char i;
    586 	int j, n = 0;
    587 
    588 	for (j = 100000; j; j--) {
    589 		i = bus_space_read_1(iot, ioh, FDSTS) &
    590 		    (NE7_DIO | NE7_RQM | NE7_CB);
    591 		if (i == NE7_RQM)
    592 			return n;
    593 		if (i == (NE7_DIO | NE7_RQM | NE7_CB)) {
    594 			if (n >= sizeof(fdc->sc_status)) {
    595 				log(LOG_ERR, "%s: overrun\n", __func__);
    596 				return -1;
    597 			}
    598 			fdc->sc_status[n++] =
    599 			    bus_space_read_1(iot, ioh, FDDATA);
    600 		}
    601 		delay(10);
    602 	}
    603 	log(LOG_ERR, "%s: timeout\n", __func__);
    604 	return -1;
    605 }
    606 
    607 int
    608 out_fdc(bus_space_tag_t iot, bus_space_handle_t ioh, uint8_t x)
    609 {
    610 	int i = 100000;
    611 
    612 	while ((bus_space_read_1(iot, ioh, FDSTS) & NE7_DIO) && i-- > 0);
    613 	if (i <= 0)
    614 		return -1;
    615 	while ((bus_space_read_1(iot, ioh, FDSTS) & NE7_RQM) == 0 && i-- > 0);
    616 	if (i <= 0)
    617 		return -1;
    618 	bus_space_write_1(iot, ioh, FDDATA, x);
    619 	return 0;
    620 }
    621 
    622 int
    623 fdopen(dev_t dev, int flags, int mode, struct lwp *l)
    624 {
    625 	struct fd_softc *fd;
    626 	const struct fd_type *type;
    627 
    628 	fd = device_lookup_private(&fd_cd, FDUNIT(dev));
    629 	if (fd == NULL)
    630 		return ENXIO;
    631 
    632 	type = fd_dev_to_type(fd, dev);
    633 	if (type == NULL)
    634 		return ENXIO;
    635 
    636 	if ((fd->sc_flags & FD_OPEN) != 0 &&
    637 	    memcmp(fd->sc_type, type, sizeof(*type)))
    638 		return EBUSY;
    639 
    640 	fd->sc_type_copy = *type;
    641 	fd->sc_type = &fd->sc_type_copy;
    642 	fd->sc_cylin = -1;
    643 	fd->sc_flags |= FD_OPEN;
    644 
    645 	return 0;
    646 }
    647 
    648 int
    649 fdclose(dev_t dev, int flags, int mode, struct lwp *l)
    650 {
    651 	struct fd_softc *fd = device_lookup_private(&fd_cd, FDUNIT(dev));
    652 
    653 	fd->sc_flags &= ~FD_OPEN;
    654 	return 0;
    655 }
    656 
    657 void
    658 fdcstart(struct fdc_softc *fdc)
    659 {
    660 
    661 #ifdef DIAGNOSTIC
    662 	/* only got here if controller's drive queue was inactive; should
    663 	   be in idle state */
    664 	if (fdc->sc_state != DEVIDLE) {
    665 		printf("%s: not idle\n", __func__);
    666 		return;
    667 	}
    668 #endif
    669 	(void)fdcintr(fdc);
    670 }
    671 
    672 void
    673 fdcstatus(device_t dev, int n, const char *s)
    674 {
    675 	struct fdc_softc *fdc = device_private(device_parent(dev));
    676 	char bits[64];
    677 
    678 	if (n == 0) {
    679 		out_fdc(fdc->sc_iot, fdc->sc_ioh, NE7CMD_SENSEI);
    680 		(void)fdcresult(fdc);
    681 		n = 2;
    682 	}
    683 
    684 	printf("%s: %s", device_xname(dev), s);
    685 
    686 	switch (n) {
    687 	case 0:
    688 		printf("\n");
    689 		break;
    690 	case 2:
    691 		printf(" (st0 %s cyl %d)\n",
    692 		    bitmask_snprintf(fdc->sc_status[0], NE7_ST0BITS,
    693 		    bits, sizeof(bits)), fdc->sc_status[1]);
    694 		break;
    695 	case 7:
    696 		printf(" (st0 %s", bitmask_snprintf(fdc->sc_status[0],
    697 		    NE7_ST0BITS, bits, sizeof(bits)));
    698 		printf(" st1 %s", bitmask_snprintf(fdc->sc_status[1],
    699 		    NE7_ST1BITS, bits, sizeof(bits)));
    700 		printf(" st2 %s", bitmask_snprintf(fdc->sc_status[2],
    701 		    NE7_ST2BITS, bits, sizeof(bits)));
    702 		printf(" cyl %d head %d sec %d)\n",
    703 		    fdc->sc_status[3], fdc->sc_status[4], fdc->sc_status[5]);
    704 		break;
    705 #ifdef DIAGNOSTIC
    706 	default:
    707 		printf("\n%s: weird size", __func__);
    708 		break;
    709 #endif
    710 	}
    711 }
    712 
    713 void
    714 fdctimeout(void *arg)
    715 {
    716 	struct fdc_softc *fdc = arg;
    717 	struct fd_softc *fd = TAILQ_FIRST(&fdc->sc_drives);
    718 	int s;
    719 
    720 	s = splbio();
    721 #ifdef DEBUG
    722 	log(LOG_ERR, "%s: state %d\n", __func__, fdc->sc_state);
    723 #endif
    724 	fdcstatus(fd->sc_dev, 0, "timeout");
    725 
    726 	if (BUFQ_PEEK(fd->sc_q) != NULL)
    727 		fdc->sc_state++;
    728 	else
    729 		fdc->sc_state = DEVIDLE;
    730 
    731 	(void)fdcintr(fdc);
    732 	splx(s);
    733 }
    734 
    735 void
    736 fdcpseudointr(void *arg)
    737 {
    738 	int s;
    739 
    740 	/* Just ensure it has the right spl. */
    741 	s = splbio();
    742 	(void)fdcintr(arg);
    743 	splx(s);
    744 }
    745 
    746 int
    747 fdcintr(void *arg)
    748 {
    749 	struct fdc_softc *fdc = arg;
    750 #define	st0	fdc->sc_status[0]
    751 #define	cyl	fdc->sc_status[1]
    752 	struct fd_softc *fd;
    753 	struct buf *bp;
    754 	bus_space_tag_t iot = fdc->sc_iot;
    755 	bus_space_handle_t ioh = fdc->sc_ioh;
    756 	int read, head, sec, i, nblks;
    757 	struct fd_type *type;
    758 
    759  loop:
    760 	/* Is there a drive for the controller to do a transfer with? */
    761 	fd = TAILQ_FIRST(&fdc->sc_drives);
    762 	if (fd == NULL) {
    763 		fdc->sc_state = DEVIDLE;
    764 		return 1;
    765 	}
    766 
    767 	/* Is there a transfer to this drive?  If not, deactivate drive. */
    768 	bp = BUFQ_PEEK(fd->sc_q);
    769 	if (bp == NULL) {
    770 		fd->sc_ops = 0;
    771 		TAILQ_REMOVE(&fdc->sc_drives, fd, sc_drivechain);
    772 		fd->sc_active = 0;
    773 		goto loop;
    774 	}
    775 
    776 	switch (fdc->sc_state) {
    777 	case DEVIDLE:
    778 		fdc->sc_errors = 0;
    779 		fd->sc_skip = 0;
    780 		fd->sc_bcount = bp->b_bcount;
    781 		fd->sc_blkno = bp->b_blkno / (FDC_BSIZE / DEV_BSIZE);
    782 		callout_stop(&fd->sc_motoroff_ch);
    783 		if ((fd->sc_flags & FD_MOTOR_WAIT) != 0) {
    784 			fdc->sc_state = MOTORWAIT;
    785 			return 1;
    786 		}
    787 		if ((fd->sc_flags & FD_MOTOR) == 0) {
    788 			/* Turn on the motor, being careful about pairing. */
    789 			struct fd_softc *ofd = fdc->sc_fd[fd->sc_drive ^ 1];
    790 			if (ofd && ofd->sc_flags & FD_MOTOR) {
    791 				callout_stop(&ofd->sc_motoroff_ch);
    792 				ofd->sc_flags &= ~(FD_MOTOR | FD_MOTOR_WAIT);
    793 			}
    794 			fd->sc_flags |= FD_MOTOR | FD_MOTOR_WAIT;
    795 			fd_set_motor(fdc, 0);
    796 			fdc->sc_state = MOTORWAIT;
    797 			/* Allow .25s for motor to stabilize. */
    798 			callout_reset(&fd->sc_motoron_ch, hz / 4,
    799 			    fd_motor_on, fd);
    800 			return 1;
    801 		}
    802 		/* Make sure the right drive is selected. */
    803 		fd_set_motor(fdc, 0);
    804 
    805 		/* fall through */
    806 	case DOSEEK:
    807  doseek:
    808 		if (fd->sc_cylin == bp->b_cylinder)
    809 			goto doio;
    810 
    811 		out_fdc(iot, ioh, NE7CMD_SPECIFY);/* specify command */
    812 		out_fdc(iot, ioh, fd->sc_type->steprate);
    813 		out_fdc(iot, ioh, 6);		/* XXX head load time == 6ms */
    814 
    815 		out_fdc(iot, ioh, NE7CMD_SEEK);	/* seek function */
    816 		out_fdc(iot, ioh, fd->sc_drive); /* drive number */
    817 		out_fdc(iot, ioh, bp->b_cylinder * fd->sc_type->step);
    818 
    819 		fd->sc_cylin = -1;
    820 		fdc->sc_state = SEEKWAIT;
    821 
    822 		iostat_seek(fd->sc_dk.dk_stats);
    823 		disk_busy(&fd->sc_dk);
    824 
    825 		callout_reset(&fdc->sc_timo_ch, 4 * hz, fdctimeout, fdc);
    826 		return 1;
    827 
    828 	case DOIO:
    829  doio:
    830 		type = fd->sc_type;
    831 		sec = fd->sc_blkno % type->seccyl;
    832 		nblks = type->seccyl - sec;
    833 		nblks = min(nblks, fd->sc_bcount / FDC_BSIZE);
    834 		nblks = min(nblks, fdc->sc_maxiosize / FDC_BSIZE);
    835 		fd->sc_nblks = nblks;
    836 		fd->sc_nbytes = nblks * FDC_BSIZE;
    837 		head = sec / type->sectrac;
    838 		sec -= head * type->sectrac;
    839 #ifdef DIAGNOSTIC
    840 		{
    841 			int block;
    842 			block = (fd->sc_cylin * type->heads + head) *
    843 			    type->sectrac + sec;
    844 			if (block != fd->sc_blkno) {
    845 				printf("%s: block %d != blkno %" PRId64
    846 				    "\n", __func__, block, fd->sc_blkno);
    847 #ifdef DDB
    848 				 Debugger();
    849 #endif
    850 			}
    851 		}
    852 #endif
    853 		read = (bp->b_flags & B_READ) != 0;
    854 		FDCDMA_START(fdc, (uint8_t *)bp->b_data + fd->sc_skip,
    855 		    fd->sc_nbytes, read);
    856 		bus_space_write_1(iot, ioh, FDCTL, type->rate);
    857 #ifdef FD_DEBUG
    858 		printf("%s: %s drive %d track %d head %d sec %d nblks %d\n",
    859 		    __func__, read ? "read" : "write", fd->sc_drive,
    860 		    fd->sc_cylin, head, sec, nblks);
    861 #endif
    862 		if (read)
    863 			out_fdc(iot, ioh, NE7CMD_READ);	/* READ */
    864 		else
    865 			out_fdc(iot, ioh, NE7CMD_WRITE);/* WRITE */
    866 		out_fdc(iot, ioh, (head << 2) | fd->sc_drive);
    867 		out_fdc(iot, ioh, fd->sc_cylin);	/* track */
    868 		out_fdc(iot, ioh, head);
    869 		out_fdc(iot, ioh, sec + 1);		/* sector + 1 */
    870 		out_fdc(iot, ioh, type->secsize);	/* sector size */
    871 		out_fdc(iot, ioh, type->sectrac);	/* sectors/track */
    872 		out_fdc(iot, ioh, type->gap1);		/* gap1 size */
    873 		out_fdc(iot, ioh, type->datalen);	/* data length */
    874 		fdc->sc_state = IOCOMPLETE;
    875 
    876 		disk_busy(&fd->sc_dk);
    877 
    878 		/* allow 2 seconds for operation */
    879 		callout_reset(&fdc->sc_timo_ch, 2 * hz, fdctimeout, fdc);
    880 		return 1;				/* will return later */
    881 
    882 	case SEEKWAIT:
    883 		callout_stop(&fdc->sc_timo_ch);
    884 		fdc->sc_state = SEEKCOMPLETE;
    885 		/* allow 1/50 second for heads to settle */
    886 		callout_reset(&fdc->sc_intr_ch, hz / 50, fdcpseudointr, fdc);
    887 		return 1;
    888 
    889 	case SEEKCOMPLETE:
    890 		disk_unbusy(&fd->sc_dk, 0, 0);
    891 
    892 		/* Make sure seek really happened. */
    893 		out_fdc(iot, ioh, NE7CMD_SENSEI);
    894 		if (fdcresult(fdc) != 2 || (st0 & 0xf8) != 0x20 ||
    895 		    cyl != bp->b_cylinder * fd->sc_type->step) {
    896 #ifdef FD_DEBUG
    897 			fdcstatus(fd->sc_dev, 2, "seek failed");
    898 #endif
    899 			fdcretry(fdc);
    900 			goto loop;
    901 		}
    902 		fd->sc_cylin = bp->b_cylinder;
    903 		goto doio;
    904 
    905 	case IOTIMEDOUT:
    906 		FDCDMA_ABORT(fdc);
    907 
    908 	case SEEKTIMEDOUT:
    909 	case RECALTIMEDOUT:
    910 	case RESETTIMEDOUT:
    911 		fdcretry(fdc);
    912 		goto loop;
    913 
    914 	case IOCOMPLETE: /* IO DONE, post-analyze */
    915 		callout_stop(&fdc->sc_timo_ch);
    916 
    917 		disk_unbusy(&fd->sc_dk, (bp->b_bcount - bp->b_resid),
    918 		    (bp->b_flags & B_READ));
    919 
    920 		i = fdcresult(fdc);
    921 		if (i != 7 || (st0 & 0xf8) != 0) {
    922 			FDCDMA_ABORT(fdc);
    923 #ifdef FD_DEBUG
    924 			fdcstatus(fd->sc_dev, 7, bp->b_flags & B_READ ?
    925 			    "read failed" : "write failed");
    926 			printf("blkno %" PRId64 " nblks %d\n",
    927 			    fd->sc_blkno, fd->sc_nblks);
    928 #endif
    929 			fdcretry(fdc);
    930 			goto loop;
    931 		}
    932 		FDCDMA_DONE(fdc);
    933 		if (fdc->sc_errors) {
    934 			diskerr(bp, "fd", "soft error (corrected)", LOG_PRINTF,
    935 			    fd->sc_skip / FDC_BSIZE, NULL);
    936 			printf("\n");
    937 			fdc->sc_errors = 0;
    938 		}
    939 		fd->sc_blkno += fd->sc_nblks;
    940 		fd->sc_skip += fd->sc_nbytes;
    941 		fd->sc_bcount -= fd->sc_nbytes;
    942 		if (fd->sc_bcount > 0) {
    943 			bp->b_cylinder = fd->sc_blkno / fd->sc_type->seccyl;
    944 			goto doseek;
    945 		}
    946 		fdfinish(fd, bp);
    947 		goto loop;
    948 
    949 	case DORESET:
    950 		/* try a reset, keep motor on */
    951 		fd_set_motor(fdc, 1);
    952 		delay(100);
    953 		fd_set_motor(fdc, 0);
    954 		fdc->sc_state = RESETCOMPLETE;
    955 		callout_reset(&fdc->sc_timo_ch, hz / 2, fdctimeout, fdc);
    956 		return 1;			/* will return later */
    957 
    958 	case RESETCOMPLETE:
    959 		callout_stop(&fdc->sc_timo_ch);
    960 		/* clear the controller output buffer */
    961 		for (i = 0; i < 4; i++) {
    962 			out_fdc(iot, ioh, NE7CMD_SENSEI);
    963 			(void)fdcresult(fdc);
    964 		}
    965 
    966 		/* fall through */
    967 	case DORECAL:
    968 		out_fdc(iot, ioh, NE7CMD_RECAL); /* recalibrate function */
    969 		out_fdc(iot, ioh, fd->sc_drive);
    970 		fdc->sc_state = RECALWAIT;
    971 		callout_reset(&fdc->sc_timo_ch, 5 * hz, fdctimeout, fdc);
    972 		return 1;			/* will return later */
    973 
    974 	case RECALWAIT:
    975 		callout_stop(&fdc->sc_timo_ch);
    976 		fdc->sc_state = RECALCOMPLETE;
    977 		/* allow 1/30 second for heads to settle */
    978 		callout_reset(&fdc->sc_intr_ch, hz / 30, fdcpseudointr, fdc);
    979 		return 1;			/* will return later */
    980 
    981 	case RECALCOMPLETE:
    982 		out_fdc(iot, ioh, NE7CMD_SENSEI);
    983 		if (fdcresult(fdc) != 2 || (st0 & 0xf8) != 0x20 || cyl != 0) {
    984 #ifdef FD_DEBUG
    985 			fdcstatus(fd->sc_dev, 2, "recalibrate failed");
    986 #endif
    987 			fdcretry(fdc);
    988 			goto loop;
    989 		}
    990 		fd->sc_cylin = 0;
    991 		goto doseek;
    992 
    993 	case MOTORWAIT:
    994 		if (fd->sc_flags & FD_MOTOR_WAIT)
    995 			return 1;		/* time's not up yet */
    996 		goto doseek;
    997 
    998 	default:
    999 		fdcstatus(fd->sc_dev, 0, "stray interrupt");
   1000 		return 1;
   1001 	}
   1002 #ifdef DIAGNOSTIC
   1003 	panic("%s: impossible", __func__);
   1004 #endif
   1005 #undef	st0
   1006 #undef	cyl
   1007 }
   1008 
   1009 void
   1010 fdcretry(struct fdc_softc *fdc)
   1011 {
   1012 	struct fd_softc *fd;
   1013 	struct buf *bp;
   1014 	char bits[64];
   1015 
   1016 	fd = TAILQ_FIRST(&fdc->sc_drives);
   1017 	bp = BUFQ_PEEK(fd->sc_q);
   1018 
   1019 	switch (fdc->sc_errors) {
   1020 	case 0:
   1021 		/* try again */
   1022 		fdc->sc_state = DOSEEK;
   1023 		break;
   1024 
   1025 	case 1:
   1026 	case 2:
   1027 	case 3:
   1028 		/* didn't work; try recalibrating */
   1029 		fdc->sc_state = DORECAL;
   1030 		break;
   1031 
   1032 	case 4:
   1033 		/* still no go; reset the bastard */
   1034 		fdc->sc_state = DORESET;
   1035 		break;
   1036 
   1037 	default:
   1038 		diskerr(bp, "fd", "hard error", LOG_PRINTF,
   1039 		    fd->sc_skip / FDC_BSIZE, (struct disklabel *)NULL);
   1040 
   1041 		printf(" (st0 %s", bitmask_snprintf(fdc->sc_status[0],
   1042 		    NE7_ST0BITS, bits, sizeof(bits)));
   1043 		printf(" st1 %s", bitmask_snprintf(fdc->sc_status[1],
   1044 		    NE7_ST1BITS, bits, sizeof(bits)));
   1045 		printf(" st2 %s", bitmask_snprintf(fdc->sc_status[2],
   1046 		    NE7_ST2BITS, bits, sizeof(bits)));
   1047 		printf(" cyl %d head %d sec %d)\n",
   1048 		    fdc->sc_status[3], fdc->sc_status[4], fdc->sc_status[5]);
   1049 
   1050 		bp->b_error = EIO;
   1051 		fdfinish(fd, bp);
   1052 	}
   1053 	fdc->sc_errors++;
   1054 }
   1055 
   1056 int
   1057 fdioctl(dev_t dev, u_long cmd, void *addr, int flag, struct lwp *l)
   1058 {
   1059 	struct fd_softc *fd = device_lookup_private(&fd_cd, FDUNIT(dev));
   1060 	struct disklabel buffer;
   1061 	int error;
   1062 
   1063 	switch (cmd) {
   1064 	case DIOCGDINFO:
   1065 		memset(&buffer, 0, sizeof(buffer));
   1066 
   1067 		buffer.d_secpercyl = fd->sc_type->seccyl;
   1068 		buffer.d_type = DTYPE_FLOPPY;
   1069 		buffer.d_secsize = FDC_BSIZE;
   1070 
   1071 		if (readdisklabel(dev, fdstrategy, &buffer, NULL) != NULL)
   1072 			return EINVAL;
   1073 
   1074 		*(struct disklabel *)addr = buffer;
   1075 		return 0;
   1076 
   1077 	case DIOCWLABEL:
   1078 		if ((flag & FWRITE) == 0)
   1079 			return EBADF;
   1080 		/* XXX do something */
   1081 		return 0;
   1082 
   1083 	case DIOCWDINFO:
   1084 		if ((flag & FWRITE) == 0)
   1085 			return EBADF;
   1086 
   1087 		error = setdisklabel(&buffer, (struct disklabel *)addr,
   1088 		    0, NULL);
   1089 		if (error)
   1090 			return error;
   1091 
   1092 		error = writedisklabel(dev, fdstrategy, &buffer, NULL);
   1093 		return error;
   1094 
   1095 	default:
   1096 		return ENOTTY;
   1097 	}
   1098 
   1099 #ifdef DIAGNOSTIC
   1100 	panic("%s: impossible", __func__);
   1101 #endif
   1102 }
   1103 
   1104 /*
   1105  * Mountroot hook: prompt the user to enter the root file system floppy.
   1106  */
   1107 void
   1108 fd_mountroot_hook(device_t dev)
   1109 {
   1110 	int c;
   1111 
   1112 	printf("Insert filesystem floppy and press return.");
   1113 	cnpollc(1);
   1114 	for (;;) {
   1115 		c = cngetc();
   1116 		if ((c == '\r') || (c == '\n')) {
   1117 			printf("\n");
   1118 			break;
   1119 		}
   1120 	}
   1121 	cnpollc(0);
   1122 }
   1123