Home | History | Annotate | Line # | Download | only in isa
fd.c revision 1.18.4.1
      1  1.18.4.1   thorpej /*	$NetBSD: fd.c,v 1.18.4.1 2001/09/07 04:45:27 thorpej Exp $	*/
      2       1.1   thorpej 
      3       1.1   thorpej /*-
      4       1.1   thorpej  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5       1.1   thorpej  * All rights reserved.
      6       1.1   thorpej  *
      7       1.1   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1   thorpej  * by Charles M. Hannum.
      9       1.1   thorpej  *
     10       1.1   thorpej  * Redistribution and use in source and binary forms, with or without
     11       1.1   thorpej  * modification, are permitted provided that the following conditions
     12       1.1   thorpej  * are met:
     13       1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     14       1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     15       1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1   thorpej  *    notice, this list of conditions and the following disclaimer in the
     17       1.1   thorpej  *    documentation and/or other materials provided with the distribution.
     18       1.1   thorpej  * 3. All advertising materials mentioning features or use of this software
     19       1.1   thorpej  *    must display the following acknowledgement:
     20       1.1   thorpej  *        This product includes software developed by the NetBSD
     21       1.1   thorpej  *        Foundation, Inc. and its contributors.
     22       1.1   thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23       1.1   thorpej  *    contributors may be used to endorse or promote products derived
     24       1.1   thorpej  *    from this software without specific prior written permission.
     25       1.1   thorpej  *
     26       1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27       1.1   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28       1.1   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29       1.1   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30       1.1   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31       1.1   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32       1.1   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33       1.1   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34       1.1   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35       1.1   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36       1.1   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     37       1.1   thorpej  */
     38       1.1   thorpej 
     39       1.1   thorpej /*-
     40       1.1   thorpej  * Copyright (c) 1990 The Regents of the University of California.
     41       1.1   thorpej  * All rights reserved.
     42       1.1   thorpej  *
     43       1.1   thorpej  * This code is derived from software contributed to Berkeley by
     44       1.1   thorpej  * Don Ahn.
     45       1.1   thorpej  *
     46       1.1   thorpej  * Redistribution and use in source and binary forms, with or without
     47       1.1   thorpej  * modification, are permitted provided that the following conditions
     48       1.1   thorpej  * are met:
     49       1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     50       1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     51       1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     52       1.1   thorpej  *    notice, this list of conditions and the following disclaimer in the
     53       1.1   thorpej  *    documentation and/or other materials provided with the distribution.
     54       1.1   thorpej  * 3. All advertising materials mentioning features or use of this software
     55       1.1   thorpej  *    must display the following acknowledgement:
     56       1.1   thorpej  *	This product includes software developed by the University of
     57       1.1   thorpej  *	California, Berkeley and its contributors.
     58       1.1   thorpej  * 4. Neither the name of the University nor the names of its contributors
     59       1.1   thorpej  *    may be used to endorse or promote products derived from this software
     60       1.1   thorpej  *    without specific prior written permission.
     61       1.1   thorpej  *
     62       1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     63       1.1   thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     64       1.1   thorpej  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     65       1.1   thorpej  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     66       1.1   thorpej  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     67       1.1   thorpej  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     68       1.1   thorpej  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     69       1.1   thorpej  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     70       1.1   thorpej  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     71       1.1   thorpej  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     72       1.1   thorpej  * SUCH DAMAGE.
     73       1.1   thorpej  *
     74       1.1   thorpej  *	@(#)fd.c	7.4 (Berkeley) 5/25/91
     75       1.1   thorpej  */
     76       1.1   thorpej 
     77       1.1   thorpej /*
     78       1.1   thorpej  * Floppy formatting facilities merged from FreeBSD fd.c driver:
     79       1.1   thorpej  *	Id: fd.c,v 1.53 1995/03/12 22:40:56 joerg Exp
     80       1.1   thorpej  * which carries the same copyright/redistribution notice as shown above with
     81       1.1   thorpej  * the addition of the following statement before the "Redistribution and
     82       1.1   thorpej  * use ..." clause:
     83       1.1   thorpej  *
     84       1.1   thorpej  * Copyright (c) 1993, 1994 by
     85       1.1   thorpej  *  jc (at) irbs.UUCP (John Capo)
     86       1.1   thorpej  *  vak (at) zebub.msk.su (Serge Vakulenko)
     87       1.1   thorpej  *  ache (at) astral.msk.su (Andrew A. Chernov)
     88       1.1   thorpej  *
     89       1.1   thorpej  * Copyright (c) 1993, 1994, 1995 by
     90       1.1   thorpej  *  joerg_wunsch (at) uriah.sax.de (Joerg Wunsch)
     91       1.1   thorpej  *  dufault (at) hda.com (Peter Dufault)
     92       1.1   thorpej  */
     93       1.1   thorpej 
     94       1.1   thorpej #include "rnd.h"
     95       1.1   thorpej #include "opt_ddb.h"
     96       1.1   thorpej 
     97       1.1   thorpej /*
     98       1.1   thorpej  * XXX This driver should be properly MI'd some day, but this allows us
     99       1.1   thorpej  * XXX to eliminate a lot of code duplication for now.
    100       1.1   thorpej  */
    101      1.16   thorpej #if !defined(alpha) && !defined(algor) && !defined(atari) && \
    102      1.17    briggs     !defined(bebox) && !defined(i386) && !defined(prep) && \
    103      1.17    briggs     !defined(sandpoint)
    104       1.1   thorpej #error platform not supported by this driver, yet
    105       1.1   thorpej #endif
    106       1.1   thorpej 
    107       1.1   thorpej #include <sys/param.h>
    108       1.1   thorpej #include <sys/systm.h>
    109       1.1   thorpej #include <sys/callout.h>
    110       1.1   thorpej #include <sys/kernel.h>
    111       1.1   thorpej #include <sys/file.h>
    112       1.1   thorpej #include <sys/ioctl.h>
    113       1.1   thorpej #include <sys/device.h>
    114       1.1   thorpej #include <sys/disklabel.h>
    115       1.1   thorpej #include <sys/dkstat.h>
    116       1.1   thorpej #include <sys/disk.h>
    117       1.1   thorpej #include <sys/buf.h>
    118       1.1   thorpej #include <sys/malloc.h>
    119       1.1   thorpej #include <sys/uio.h>
    120       1.1   thorpej #include <sys/syslog.h>
    121       1.1   thorpej #include <sys/queue.h>
    122       1.1   thorpej #include <sys/proc.h>
    123       1.1   thorpej #include <sys/fdio.h>
    124  1.18.4.1   thorpej #include <sys/vnode.h>
    125      1.16   thorpej #include <sys/conf.h>
    126       1.1   thorpej #if NRND > 0
    127       1.1   thorpej #include <sys/rnd.h>
    128       1.1   thorpej #endif
    129       1.1   thorpej 
    130  1.18.4.1   thorpej #include <miscfs/specfs/specdev.h>
    131  1.18.4.1   thorpej 
    132       1.1   thorpej #include <uvm/uvm_extern.h>
    133       1.1   thorpej 
    134       1.1   thorpej #include <dev/cons.h>
    135       1.1   thorpej 
    136       1.1   thorpej #include <machine/cpu.h>
    137       1.1   thorpej #include <machine/bus.h>
    138      1.16   thorpej 
    139      1.14       leo #if defined(atari)
    140      1.14       leo /*
    141      1.14       leo  * On the atari, it is configured as fdcisa
    142      1.14       leo  */
    143      1.14       leo #define	FDCCF_DRIVE		FDCISACF_DRIVE
    144      1.14       leo #define	FDCCF_DRIVE_DEFAULT	FDCISACF_DRIVE_DEFAULT
    145      1.14       leo 
    146      1.14       leo #define	fd_cd	fdisa_cd
    147      1.14       leo #define	fd_ca	fdisa_ca
    148      1.16   thorpej #endif /* atari */
    149      1.14       leo 
    150       1.1   thorpej #include <machine/intr.h>
    151       1.1   thorpej 
    152       1.1   thorpej #include <dev/isa/isavar.h>
    153       1.1   thorpej #include <dev/isa/isadmavar.h>
    154       1.3   thorpej 
    155       1.1   thorpej #include <dev/isa/fdreg.h>
    156       1.3   thorpej #include <dev/isa/fdcvar.h>
    157       1.1   thorpej 
    158       1.9      matt #if defined(i386)
    159       1.5  jdolecek 
    160       1.1   thorpej #include <dev/ic/mc146818reg.h>			/* for NVRAM access */
    161       1.1   thorpej #include <i386/isa/nvram.h>
    162       1.5  jdolecek 
    163       1.5  jdolecek #include "mca.h"
    164       1.5  jdolecek #if NMCA > 0
    165       1.5  jdolecek #include <machine/mca_machdep.h>		/* for MCA_system */
    166       1.5  jdolecek #endif
    167       1.5  jdolecek 
    168       1.9      matt #endif /* i386 */
    169      1.16   thorpej 
    170      1.16   thorpej bdev_decl(fd);
    171      1.16   thorpej cdev_decl(fd);
    172       1.1   thorpej 
    173       1.1   thorpej #define FDUNIT(dev)	(minor(dev) / 8)
    174       1.1   thorpej #define FDTYPE(dev)	(minor(dev) % 8)
    175       1.1   thorpej 
    176       1.1   thorpej /* XXX misuse a flag to identify format operation */
    177       1.1   thorpej #define B_FORMAT B_XXX
    178       1.1   thorpej 
    179       1.1   thorpej /* controller driver configuration */
    180       1.1   thorpej int fdprint __P((void *, const char *));
    181       1.1   thorpej 
    182       1.1   thorpej /*
    183       1.1   thorpej  * Floppies come in various flavors, e.g., 1.2MB vs 1.44MB; here is how
    184       1.1   thorpej  * we tell them apart.
    185       1.1   thorpej  */
    186       1.1   thorpej struct fd_type {
    187       1.1   thorpej 	int	sectrac;	/* sectors per track */
    188       1.1   thorpej 	int	heads;		/* number of heads */
    189       1.1   thorpej 	int	seccyl;		/* sectors per cylinder */
    190       1.1   thorpej 	int	secsize;	/* size code for sectors */
    191       1.1   thorpej 	int	datalen;	/* data len when secsize = 0 */
    192       1.1   thorpej 	int	steprate;	/* step rate and head unload time */
    193       1.1   thorpej 	int	gap1;		/* gap len between sectors */
    194       1.1   thorpej 	int	gap2;		/* formatting gap */
    195       1.1   thorpej 	int	cyls;		/* total num of cylinders */
    196       1.1   thorpej 	int	size;		/* size of disk in sectors */
    197       1.1   thorpej 	int	step;		/* steps per cylinder */
    198       1.1   thorpej 	int	rate;		/* transfer speed code */
    199       1.1   thorpej 	u_char	fillbyte;	/* format fill byte */
    200       1.1   thorpej 	u_char	interleave;	/* interleave factor (formatting) */
    201      1.13  jdolecek 	const char	*name;
    202       1.1   thorpej };
    203       1.1   thorpej 
    204       1.5  jdolecek #if NMCA > 0
    205       1.5  jdolecek /* MCA - specific entries */
    206      1.13  jdolecek const struct fd_type mca_fd_types[] = {
    207       1.5  jdolecek 	{ 18,2,36,2,0xff,0x0f,0x1b,0x6c,80,2880,1,FDC_500KBPS,0xf6,1, "1.44MB"    }, /* 1.44MB diskette - XXX try 16ms step rate */
    208       1.5  jdolecek 	{  9,2,18,2,0xff,0x4f,0x2a,0x50,80,1440,1,FDC_250KBPS,0xf6,1, "720KB"    }, /* 3.5 inch 720kB diskette - XXX try 24ms step rate */
    209       1.5  jdolecek };
    210       1.5  jdolecek #endif /* NMCA > 0 */
    211       1.5  jdolecek 
    212       1.1   thorpej /* The order of entries in the following table is important -- BEWARE! */
    213      1.14       leo 
    214      1.14       leo #if defined(atari)
    215      1.14       leo const struct fd_type fd_types[] = {
    216      1.14       leo 	{  9,2,18,2,0xff,0xdf,0x2a,0x50,40, 720,1,FDC_250KBPS,0xf6,1, "360KB/PC" }, /* 360kB PC diskettes */
    217      1.14       leo 	{  9,2,18,2,0xff,0xdf,0x2a,0x50,80,1440,1,FDC_250KBPS,0xf6,1, "720KB"    }, /* 3.5 inch 720kB diskette */
    218      1.14       leo 	{ 18,2,36,2,0xff,0xcf,0x1b,0x6c,80,2880,1,FDC_500KBPS,0xf6,1, "1.44MB"   }, /* 1.44MB diskette */
    219      1.14       leo };
    220      1.14       leo #else
    221      1.13  jdolecek const struct fd_type fd_types[] = {
    222      1.14       leo 	{ 18,2,36,2,0xff,0xcf,0x1b,0x6c,80,2880,1,FDC_500KBPS,0xf6,1, "1.44MB"   }, /* 1.44MB diskette */
    223       1.1   thorpej 	{ 15,2,30,2,0xff,0xdf,0x1b,0x54,80,2400,1,FDC_500KBPS,0xf6,1, "1.2MB"    }, /* 1.2 MB AT-diskettes */
    224       1.1   thorpej 	{  9,2,18,2,0xff,0xdf,0x23,0x50,40, 720,2,FDC_300KBPS,0xf6,1, "360KB/AT" }, /* 360kB in 1.2MB drive */
    225       1.1   thorpej 	{  9,2,18,2,0xff,0xdf,0x2a,0x50,40, 720,1,FDC_250KBPS,0xf6,1, "360KB/PC" }, /* 360kB PC diskettes */
    226       1.1   thorpej 	{  9,2,18,2,0xff,0xdf,0x2a,0x50,80,1440,1,FDC_250KBPS,0xf6,1, "720KB"    }, /* 3.5 inch 720kB diskette */
    227       1.1   thorpej 	{  9,2,18,2,0xff,0xdf,0x23,0x50,80,1440,1,FDC_300KBPS,0xf6,1, "720KB/x"  }, /* 720kB in 1.2MB drive */
    228       1.1   thorpej 	{  9,2,18,2,0xff,0xdf,0x2a,0x50,40, 720,2,FDC_250KBPS,0xf6,1, "360KB/x"  }, /* 360kB in 720kB drive */
    229       1.1   thorpej };
    230      1.14       leo #endif /* defined(atari) */
    231       1.1   thorpej 
    232       1.1   thorpej /* software state, per disk (with up to 4 disks per ctlr) */
    233       1.1   thorpej struct fd_softc {
    234       1.1   thorpej 	struct device sc_dev;
    235       1.1   thorpej 	struct disk sc_dk;
    236       1.1   thorpej 
    237      1.15   tsutsui 	const struct fd_type *sc_deftype; /* default type descriptor */
    238       1.1   thorpej 	struct fd_type *sc_type;	/* current type descriptor */
    239       1.1   thorpej 	struct fd_type sc_type_copy;	/* copy for fiddling when formatting */
    240       1.1   thorpej 
    241       1.2   thorpej 	struct callout sc_motoron_ch;
    242       1.2   thorpej 	struct callout sc_motoroff_ch;
    243       1.1   thorpej 
    244       1.1   thorpej 	daddr_t	sc_blkno;	/* starting block number */
    245       1.1   thorpej 	int sc_bcount;		/* byte count left */
    246      1.15   tsutsui  	int sc_opts;		/* user-set options */
    247       1.1   thorpej 	int sc_skip;		/* bytes already transferred */
    248      1.18       wiz 	int sc_nblks;		/* number of blocks currently transferring */
    249      1.18       wiz 	int sc_nbytes;		/* number of bytes currently transferring */
    250       1.1   thorpej 
    251       1.1   thorpej 	int sc_drive;		/* physical unit number */
    252       1.1   thorpej 	int sc_flags;
    253       1.1   thorpej #define	FD_OPEN		0x01		/* it's open */
    254       1.1   thorpej #define	FD_MOTOR	0x02		/* motor should be on */
    255       1.1   thorpej #define	FD_MOTOR_WAIT	0x04		/* motor coming up */
    256       1.1   thorpej 	int sc_cylin;		/* where we think the head is */
    257       1.1   thorpej 
    258       1.1   thorpej 	void *sc_sdhook;	/* saved shutdown hook for drive. */
    259       1.1   thorpej 
    260       1.1   thorpej 	TAILQ_ENTRY(fd_softc) sc_drivechain;
    261       1.1   thorpej 	int sc_ops;		/* I/O ops since last switch */
    262       1.1   thorpej 	struct buf_queue sc_q;	/* pending I/O requests */
    263       1.1   thorpej 	int sc_active;		/* number of active I/O operations */
    264       1.1   thorpej 
    265       1.1   thorpej #if NRND > 0
    266       1.1   thorpej 	rndsource_element_t	rnd_source;
    267       1.1   thorpej #endif
    268       1.1   thorpej };
    269       1.1   thorpej 
    270       1.1   thorpej int fdprobe __P((struct device *, struct cfdata *, void *));
    271       1.1   thorpej void fdattach __P((struct device *, struct device *, void *));
    272       1.1   thorpej 
    273       1.3   thorpej extern struct cfdriver fd_cd;
    274       1.3   thorpej 
    275       1.1   thorpej struct cfattach fd_ca = {
    276       1.3   thorpej 	sizeof(struct fd_softc), fdprobe, fdattach,
    277       1.1   thorpej };
    278       1.1   thorpej 
    279       1.1   thorpej void fdgetdisklabel __P((struct fd_softc *));
    280       1.1   thorpej int fd_get_parms __P((struct fd_softc *));
    281       1.1   thorpej void fdstrategy __P((struct buf *));
    282       1.1   thorpej void fdstart __P((struct fd_softc *));
    283       1.1   thorpej 
    284       1.1   thorpej struct dkdriver fddkdriver = { fdstrategy };
    285       1.1   thorpej 
    286       1.9      matt #if defined(i386)
    287      1.13  jdolecek const struct fd_type *fd_nvtotype __P((char *, int, int));
    288       1.9      matt #endif /* i386 */
    289       1.1   thorpej void fd_set_motor __P((struct fdc_softc *fdc, int reset));
    290       1.1   thorpej void fd_motor_off __P((void *arg));
    291       1.1   thorpej void fd_motor_on __P((void *arg));
    292       1.1   thorpej int fdcresult __P((struct fdc_softc *fdc));
    293       1.1   thorpej void fdcstart __P((struct fdc_softc *fdc));
    294       1.1   thorpej void fdcstatus __P((struct device *dv, int n, char *s));
    295       1.1   thorpej void fdctimeout __P((void *arg));
    296       1.1   thorpej void fdcpseudointr __P((void *arg));
    297       1.1   thorpej void fdcretry __P((struct fdc_softc *fdc));
    298       1.1   thorpej void fdfinish __P((struct fd_softc *fd, struct buf *bp));
    299      1.13  jdolecek __inline const struct fd_type *fd_dev_to_type __P((struct fd_softc *, dev_t));
    300  1.18.4.1   thorpej int fdformat __P((struct vnode *, struct ne7_fd_formb *, struct proc *));
    301       1.1   thorpej 
    302       1.1   thorpej void	fd_mountroot_hook __P((struct device *));
    303       1.1   thorpej 
    304       1.1   thorpej /*
    305       1.1   thorpej  * Arguments passed between fdcattach and fdprobe.
    306       1.1   thorpej  */
    307       1.1   thorpej struct fdc_attach_args {
    308       1.1   thorpej 	int fa_drive;
    309      1.13  jdolecek 	const struct fd_type *fa_deftype;
    310       1.1   thorpej };
    311       1.1   thorpej 
    312       1.1   thorpej /*
    313       1.1   thorpej  * Print the location of a disk drive (called just before attaching the
    314       1.1   thorpej  * the drive).  If `fdc' is not NULL, the drive was found but was not
    315       1.1   thorpej  * in the system config file; print the drive name as well.
    316       1.1   thorpej  * Return QUIET (config_find ignores this if the device was configured) to
    317       1.1   thorpej  * avoid printing `fdN not configured' messages.
    318       1.1   thorpej  */
    319       1.1   thorpej int
    320       1.1   thorpej fdprint(aux, fdc)
    321       1.1   thorpej 	void *aux;
    322       1.1   thorpej 	const char *fdc;
    323       1.1   thorpej {
    324       1.1   thorpej 	register struct fdc_attach_args *fa = aux;
    325       1.1   thorpej 
    326       1.1   thorpej 	if (!fdc)
    327       1.1   thorpej 		printf(" drive %d", fa->fa_drive);
    328       1.1   thorpej 	return QUIET;
    329       1.1   thorpej }
    330       1.1   thorpej 
    331       1.1   thorpej void
    332       1.3   thorpej fdcattach(fdc)
    333       1.3   thorpej 	struct fdc_softc *fdc;
    334       1.1   thorpej {
    335       1.1   thorpej 	struct fdc_attach_args fa;
    336      1.15   tsutsui 	bus_space_tag_t iot;
    337      1.15   tsutsui 	bus_space_handle_t ioh;
    338       1.9      matt #if defined(i386)
    339       1.1   thorpej 	int type;
    340       1.1   thorpej #endif
    341       1.1   thorpej 
    342      1.15   tsutsui 	iot = fdc->sc_iot;
    343      1.15   tsutsui 	ioh = fdc->sc_ioh;
    344       1.1   thorpej 	callout_init(&fdc->sc_timo_ch);
    345       1.1   thorpej 	callout_init(&fdc->sc_intr_ch);
    346       1.1   thorpej 
    347       1.1   thorpej 	fdc->sc_state = DEVIDLE;
    348       1.1   thorpej 	TAILQ_INIT(&fdc->sc_drives);
    349       1.1   thorpej 
    350       1.1   thorpej 	fdc->sc_maxiosize = isa_dmamaxsize(fdc->sc_ic, fdc->sc_drq);
    351       1.1   thorpej 
    352       1.1   thorpej 	if (isa_dmamap_create(fdc->sc_ic, fdc->sc_drq, fdc->sc_maxiosize,
    353       1.1   thorpej 	    BUS_DMA_NOWAIT|BUS_DMA_ALLOCNOW)) {
    354       1.1   thorpej 		printf("%s: can't set up ISA DMA map\n",
    355       1.1   thorpej 		    fdc->sc_dev.dv_xname);
    356       1.1   thorpej 		return;
    357       1.1   thorpej 	}
    358      1.10       jmc 
    359      1.15   tsutsui 	/*
    360      1.15   tsutsui 	 * Reset the controller to get it into a known state. Not all
    361      1.15   tsutsui 	 * probes necessarily need do this to discover the controller up
    362      1.15   tsutsui 	 * front, so don't assume anything.
    363      1.15   tsutsui 	 */
    364      1.15   tsutsui 
    365      1.15   tsutsui 	bus_space_write_1(iot, ioh, fdout, 0);
    366      1.15   tsutsui 	delay(100);
    367      1.15   tsutsui 	bus_space_write_1(iot, ioh, fdout, FDO_FRST);
    368      1.10       jmc 
    369      1.15   tsutsui 	/* see if it can handle a command */
    370      1.15   tsutsui 	if (out_fdc(iot, ioh, NE7CMD_SPECIFY) < 0) {
    371      1.15   tsutsui 		printf ("%s: can't reset controller\n", fdc->sc_dev.dv_xname);
    372      1.15   tsutsui 		return;
    373      1.15   tsutsui 	}
    374      1.15   tsutsui 	out_fdc(iot, ioh, 0xdf);
    375      1.15   tsutsui 	out_fdc(iot, ioh, 2);
    376       1.1   thorpej 
    377       1.9      matt #if defined(i386)
    378       1.1   thorpej 	/*
    379       1.1   thorpej 	 * The NVRAM info only tells us about the first two disks on the
    380       1.1   thorpej 	 * `primary' floppy controller.
    381       1.1   thorpej 	 */
    382       1.1   thorpej 	if (fdc->sc_dev.dv_unit == 0)
    383       1.1   thorpej 		type = mc146818_read(NULL, NVRAM_DISKETTE); /* XXX softc */
    384       1.1   thorpej 	else
    385       1.1   thorpej 		type = -1;
    386       1.9      matt #endif /* i386 */
    387       1.1   thorpej 
    388       1.1   thorpej 	/* physical limit: four drives per controller. */
    389       1.1   thorpej 	for (fa.fa_drive = 0; fa.fa_drive < 4; fa.fa_drive++) {
    390       1.9      matt #if defined(i386)
    391       1.1   thorpej 		if (type >= 0 && fa.fa_drive < 2)
    392       1.1   thorpej 			fa.fa_deftype = fd_nvtotype(fdc->sc_dev.dv_xname,
    393       1.1   thorpej 			    type, fa.fa_drive);
    394       1.1   thorpej 		else
    395       1.1   thorpej 			fa.fa_deftype = NULL;		/* unknown */
    396      1.14       leo #elif defined(atari)
    397      1.14       leo 		/*
    398      1.14       leo 		 * Atari has a different ordening, defaults to 1.44
    399      1.14       leo 		 */
    400      1.14       leo 		fa.fa_deftype = &fd_types[2];
    401       1.1   thorpej #else
    402       1.1   thorpej 		/*
    403       1.1   thorpej 		 * Default to 1.44MB on Alpha and BeBox.  How do we tell
    404       1.1   thorpej 		 * on these platforms?
    405       1.1   thorpej 		 */
    406       1.1   thorpej 		fa.fa_deftype = &fd_types[0];
    407       1.9      matt #endif /* i386 */
    408       1.3   thorpej 		(void)config_found(&fdc->sc_dev, (void *)&fa, fdprint);
    409       1.1   thorpej 	}
    410       1.1   thorpej }
    411       1.1   thorpej 
    412       1.1   thorpej int
    413       1.1   thorpej fdprobe(parent, match, aux)
    414       1.1   thorpej 	struct device *parent;
    415       1.1   thorpej 	struct cfdata *match;
    416       1.1   thorpej 	void *aux;
    417       1.1   thorpej {
    418       1.1   thorpej 	struct fdc_softc *fdc = (void *)parent;
    419       1.1   thorpej 	struct cfdata *cf = match;
    420       1.1   thorpej 	struct fdc_attach_args *fa = aux;
    421       1.1   thorpej 	int drive = fa->fa_drive;
    422       1.1   thorpej 	bus_space_tag_t iot = fdc->sc_iot;
    423       1.1   thorpej 	bus_space_handle_t ioh = fdc->sc_ioh;
    424       1.1   thorpej 	int n;
    425       1.1   thorpej 
    426       1.1   thorpej 	if (cf->cf_loc[FDCCF_DRIVE] != FDCCF_DRIVE_DEFAULT &&
    427       1.1   thorpej 	    cf->cf_loc[FDCCF_DRIVE] != drive)
    428       1.1   thorpej 		return 0;
    429       1.1   thorpej 	/*
    430       1.1   thorpej 	 * XXX
    431       1.1   thorpej 	 * This is to work around some odd interactions between this driver
    432       1.1   thorpej 	 * and SMC Ethernet cards.
    433       1.1   thorpej 	 */
    434       1.1   thorpej 	if (cf->cf_loc[FDCCF_DRIVE] == FDCCF_DRIVE_DEFAULT && drive >= 2)
    435       1.1   thorpej 		return 0;
    436       1.1   thorpej 
    437       1.1   thorpej 	/* select drive and turn on motor */
    438       1.1   thorpej 	bus_space_write_1(iot, ioh, fdout, drive | FDO_FRST | FDO_MOEN(drive));
    439       1.1   thorpej 	/* wait for motor to spin up */
    440       1.1   thorpej 	delay(250000);
    441       1.1   thorpej 	out_fdc(iot, ioh, NE7CMD_RECAL);
    442       1.1   thorpej 	out_fdc(iot, ioh, drive);
    443       1.1   thorpej 	/* wait for recalibrate */
    444       1.1   thorpej 	delay(2000000);
    445       1.1   thorpej 	out_fdc(iot, ioh, NE7CMD_SENSEI);
    446       1.1   thorpej 	n = fdcresult(fdc);
    447       1.1   thorpej #ifdef FD_DEBUG
    448       1.1   thorpej 	{
    449       1.1   thorpej 		int i;
    450       1.1   thorpej 		printf("fdprobe: status");
    451       1.1   thorpej 		for (i = 0; i < n; i++)
    452       1.1   thorpej 			printf(" %x", fdc->sc_status[i]);
    453       1.1   thorpej 		printf("\n");
    454       1.1   thorpej 	}
    455       1.1   thorpej #endif
    456       1.1   thorpej 	/* turn off motor */
    457       1.1   thorpej 	bus_space_write_1(iot, ioh, fdout, FDO_FRST);
    458       1.1   thorpej 
    459       1.1   thorpej #if defined(bebox)	/* XXX What is this about? --thorpej (at) netbsd.org */
    460       1.1   thorpej 	if (n != 2 || (fdc->sc_status[1] != 0))
    461       1.1   thorpej 		return 0;
    462       1.1   thorpej #else
    463       1.1   thorpej 	if (n != 2 || (fdc->sc_status[0] & 0xf8) != 0x20)
    464       1.1   thorpej 		return 0;
    465       1.1   thorpej #endif /* bebox */
    466       1.1   thorpej 
    467       1.1   thorpej 	return 1;
    468       1.1   thorpej }
    469       1.1   thorpej 
    470       1.1   thorpej /*
    471       1.1   thorpej  * Controller is working, and drive responded.  Attach it.
    472       1.1   thorpej  */
    473       1.1   thorpej void
    474       1.1   thorpej fdattach(parent, self, aux)
    475       1.1   thorpej 	struct device *parent, *self;
    476       1.1   thorpej 	void *aux;
    477       1.1   thorpej {
    478       1.1   thorpej 	struct fdc_softc *fdc = (void *)parent;
    479       1.1   thorpej 	struct fd_softc *fd = (void *)self;
    480       1.1   thorpej 	struct fdc_attach_args *fa = aux;
    481      1.13  jdolecek 	const struct fd_type *type = fa->fa_deftype;
    482       1.1   thorpej 	int drive = fa->fa_drive;
    483       1.1   thorpej 
    484       1.2   thorpej 	callout_init(&fd->sc_motoron_ch);
    485       1.2   thorpej 	callout_init(&fd->sc_motoroff_ch);
    486       1.1   thorpej 
    487       1.1   thorpej 	/* XXX Allow `flags' to override device type? */
    488       1.1   thorpej 
    489       1.1   thorpej 	if (type)
    490       1.1   thorpej 		printf(": %s, %d cyl, %d head, %d sec\n", type->name,
    491       1.1   thorpej 		    type->cyls, type->heads, type->sectrac);
    492       1.1   thorpej 	else
    493       1.1   thorpej 		printf(": density unknown\n");
    494       1.1   thorpej 
    495       1.1   thorpej 	BUFQ_INIT(&fd->sc_q);
    496       1.1   thorpej 	fd->sc_cylin = -1;
    497       1.1   thorpej 	fd->sc_drive = drive;
    498       1.1   thorpej 	fd->sc_deftype = type;
    499       1.1   thorpej 	fdc->sc_fd[drive] = fd;
    500       1.1   thorpej 
    501       1.1   thorpej 	/*
    502       1.1   thorpej 	 * Initialize and attach the disk structure.
    503       1.1   thorpej 	 */
    504       1.1   thorpej 	fd->sc_dk.dk_name = fd->sc_dev.dv_xname;
    505       1.1   thorpej 	fd->sc_dk.dk_driver = &fddkdriver;
    506       1.1   thorpej 	disk_attach(&fd->sc_dk);
    507       1.1   thorpej 
    508       1.1   thorpej 	/*
    509       1.1   thorpej 	 * Establish a mountroot hook.
    510       1.1   thorpej 	 */
    511       1.1   thorpej 	mountroothook_establish(fd_mountroot_hook, &fd->sc_dev);
    512       1.1   thorpej 
    513       1.1   thorpej 	/* Needed to power off if the motor is on when we halt. */
    514       1.1   thorpej 	fd->sc_sdhook = shutdownhook_establish(fd_motor_off, fd);
    515       1.1   thorpej 
    516       1.1   thorpej #if NRND > 0
    517       1.1   thorpej 	rnd_attach_source(&fd->rnd_source, fd->sc_dev.dv_xname,
    518       1.1   thorpej 			  RND_TYPE_DISK, 0);
    519       1.1   thorpej #endif
    520       1.1   thorpej }
    521       1.1   thorpej 
    522       1.9      matt #if defined(i386)
    523       1.1   thorpej /*
    524       1.1   thorpej  * Translate nvram type into internal data structure.  Return NULL for
    525       1.1   thorpej  * none/unknown/unusable.
    526       1.1   thorpej  */
    527      1.13  jdolecek const struct fd_type *
    528       1.1   thorpej fd_nvtotype(fdc, nvraminfo, drive)
    529       1.1   thorpej 	char *fdc;
    530       1.1   thorpej 	int nvraminfo, drive;
    531       1.1   thorpej {
    532       1.1   thorpej 	int type;
    533       1.1   thorpej 
    534       1.1   thorpej 	type = (drive == 0 ? nvraminfo : nvraminfo << 4) & 0xf0;
    535       1.1   thorpej 	switch (type) {
    536       1.1   thorpej 	case NVRAM_DISKETTE_NONE:
    537       1.1   thorpej 		return NULL;
    538       1.1   thorpej 	case NVRAM_DISKETTE_12M:
    539       1.1   thorpej 		return &fd_types[1];
    540       1.1   thorpej 	case NVRAM_DISKETTE_TYPE5:
    541       1.1   thorpej 	case NVRAM_DISKETTE_TYPE6:
    542       1.1   thorpej 		/* XXX We really ought to handle 2.88MB format. */
    543       1.1   thorpej 	case NVRAM_DISKETTE_144M:
    544       1.5  jdolecek #if NMCA > 0
    545       1.5  jdolecek 		if (MCA_system)
    546       1.5  jdolecek 			return &mca_fd_types[0];
    547       1.5  jdolecek 		else
    548       1.5  jdolecek #endif /* NMCA > 0 */
    549       1.5  jdolecek 			return &fd_types[0];
    550       1.1   thorpej 	case NVRAM_DISKETTE_360K:
    551       1.1   thorpej 		return &fd_types[3];
    552       1.1   thorpej 	case NVRAM_DISKETTE_720K:
    553       1.5  jdolecek #if NMCA > 0
    554       1.5  jdolecek 		if (MCA_system)
    555       1.5  jdolecek 			return &mca_fd_types[1];
    556       1.5  jdolecek 		else
    557       1.5  jdolecek #endif /* NMCA > 0 */
    558       1.5  jdolecek 			return &fd_types[4];
    559       1.1   thorpej 	default:
    560       1.1   thorpej 		printf("%s: drive %d: unknown device type 0x%x\n",
    561       1.1   thorpej 		    fdc, drive, type);
    562       1.1   thorpej 		return NULL;
    563       1.1   thorpej 	}
    564       1.1   thorpej }
    565       1.9      matt #endif /* i386 */
    566       1.1   thorpej 
    567      1.13  jdolecek __inline const struct fd_type *
    568       1.1   thorpej fd_dev_to_type(fd, dev)
    569       1.1   thorpej 	struct fd_softc *fd;
    570       1.1   thorpej 	dev_t dev;
    571       1.1   thorpej {
    572       1.1   thorpej 	int type = FDTYPE(dev);
    573       1.1   thorpej 
    574       1.1   thorpej 	if (type > (sizeof(fd_types) / sizeof(fd_types[0])))
    575       1.1   thorpej 		return NULL;
    576       1.1   thorpej 	return type ? &fd_types[type - 1] : fd->sc_deftype;
    577       1.1   thorpej }
    578       1.1   thorpej 
    579       1.1   thorpej void
    580       1.1   thorpej fdstrategy(bp)
    581       1.1   thorpej 	register struct buf *bp;	/* IO operation to perform */
    582       1.1   thorpej {
    583  1.18.4.1   thorpej 	struct fd_softc *fd = bp->b_devvp->v_devcookie;
    584       1.1   thorpej 	int sz;
    585       1.1   thorpej  	int s;
    586       1.1   thorpej 
    587       1.1   thorpej 	/* Valid unit, controller, and request? */
    588       1.1   thorpej 	if (bp->b_blkno < 0 ||
    589       1.1   thorpej 	    ((bp->b_bcount % FDC_BSIZE) != 0 &&
    590       1.1   thorpej 	     (bp->b_flags & B_FORMAT) == 0)) {
    591       1.1   thorpej 		bp->b_error = EINVAL;
    592       1.1   thorpej 		goto bad;
    593       1.1   thorpej 	}
    594       1.1   thorpej 
    595       1.1   thorpej 	/* If it's a null transfer, return immediately. */
    596       1.1   thorpej 	if (bp->b_bcount == 0)
    597       1.1   thorpej 		goto done;
    598       1.1   thorpej 
    599       1.1   thorpej 	sz = howmany(bp->b_bcount, FDC_BSIZE);
    600       1.1   thorpej 
    601       1.1   thorpej 	if (bp->b_blkno + sz > fd->sc_type->size) {
    602       1.1   thorpej 		sz = fd->sc_type->size - bp->b_blkno;
    603       1.1   thorpej 		if (sz == 0) {
    604       1.1   thorpej 			/* If exactly at end of disk, return EOF. */
    605       1.1   thorpej 			goto done;
    606       1.1   thorpej 		}
    607       1.1   thorpej 		if (sz < 0) {
    608       1.1   thorpej 			/* If past end of disk, return EINVAL. */
    609       1.1   thorpej 			bp->b_error = EINVAL;
    610       1.1   thorpej 			goto bad;
    611       1.1   thorpej 		}
    612       1.1   thorpej 		/* Otherwise, truncate request. */
    613       1.1   thorpej 		bp->b_bcount = sz << DEV_BSHIFT;
    614       1.1   thorpej 	}
    615       1.1   thorpej 
    616       1.1   thorpej 	bp->b_rawblkno = bp->b_blkno;
    617      1.15   tsutsui  	bp->b_cylinder =
    618      1.15   tsutsui 	    bp->b_blkno / (FDC_BSIZE / DEV_BSIZE) / fd->sc_type->seccyl;
    619       1.1   thorpej 
    620       1.1   thorpej #ifdef FD_DEBUG
    621       1.1   thorpej 	printf("fdstrategy: b_blkno %d b_bcount %ld blkno %d cylin %ld sz %d\n",
    622       1.1   thorpej 	    bp->b_blkno, bp->b_bcount, fd->sc_blkno, bp->b_cylinder, sz);
    623       1.1   thorpej #endif
    624       1.1   thorpej 
    625       1.1   thorpej 	/* Queue transfer on drive, activate drive and controller if idle. */
    626       1.1   thorpej 	s = splbio();
    627       1.1   thorpej 	disksort_cylinder(&fd->sc_q, bp);
    628       1.2   thorpej 	callout_stop(&fd->sc_motoroff_ch);		/* a good idea */
    629       1.1   thorpej 	if (fd->sc_active == 0)
    630       1.1   thorpej 		fdstart(fd);
    631       1.1   thorpej #ifdef DIAGNOSTIC
    632       1.1   thorpej 	else {
    633       1.1   thorpej 		struct fdc_softc *fdc = (void *)fd->sc_dev.dv_parent;
    634       1.1   thorpej 		if (fdc->sc_state == DEVIDLE) {
    635       1.1   thorpej 			printf("fdstrategy: controller inactive\n");
    636       1.1   thorpej 			fdcstart(fdc);
    637       1.1   thorpej 		}
    638       1.1   thorpej 	}
    639       1.1   thorpej #endif
    640       1.1   thorpej 	splx(s);
    641       1.1   thorpej 	return;
    642       1.1   thorpej 
    643       1.1   thorpej bad:
    644       1.1   thorpej 	bp->b_flags |= B_ERROR;
    645       1.1   thorpej done:
    646       1.1   thorpej 	/* Toss transfer; we're done early. */
    647       1.1   thorpej 	bp->b_resid = bp->b_bcount;
    648       1.1   thorpej 	biodone(bp);
    649       1.1   thorpej }
    650       1.1   thorpej 
    651       1.1   thorpej void
    652       1.1   thorpej fdstart(fd)
    653       1.1   thorpej 	struct fd_softc *fd;
    654       1.1   thorpej {
    655       1.1   thorpej 	struct fdc_softc *fdc = (void *)fd->sc_dev.dv_parent;
    656       1.1   thorpej 	int active = fdc->sc_drives.tqh_first != 0;
    657       1.1   thorpej 
    658       1.1   thorpej 	/* Link into controller queue. */
    659       1.1   thorpej 	fd->sc_active = 1;
    660       1.1   thorpej 	TAILQ_INSERT_TAIL(&fdc->sc_drives, fd, sc_drivechain);
    661       1.1   thorpej 
    662       1.1   thorpej 	/* If controller not already active, start it. */
    663       1.1   thorpej 	if (!active)
    664       1.1   thorpej 		fdcstart(fdc);
    665       1.1   thorpej }
    666       1.1   thorpej 
    667       1.1   thorpej void
    668       1.1   thorpej fdfinish(fd, bp)
    669       1.1   thorpej 	struct fd_softc *fd;
    670       1.1   thorpej 	struct buf *bp;
    671       1.1   thorpej {
    672       1.1   thorpej 	struct fdc_softc *fdc = (void *)fd->sc_dev.dv_parent;
    673       1.1   thorpej 
    674       1.1   thorpej 	/*
    675       1.1   thorpej 	 * Move this drive to the end of the queue to give others a `fair'
    676       1.1   thorpej 	 * chance.  We only force a switch if N operations are completed while
    677       1.1   thorpej 	 * another drive is waiting to be serviced, since there is a long motor
    678       1.1   thorpej 	 * startup delay whenever we switch.
    679       1.1   thorpej 	 */
    680       1.1   thorpej 	if (fd->sc_drivechain.tqe_next && ++fd->sc_ops >= 8) {
    681       1.1   thorpej 		fd->sc_ops = 0;
    682       1.1   thorpej 		TAILQ_REMOVE(&fdc->sc_drives, fd, sc_drivechain);
    683       1.1   thorpej 		if (BUFQ_NEXT(bp) != NULL)
    684       1.1   thorpej 			TAILQ_INSERT_TAIL(&fdc->sc_drives, fd, sc_drivechain);
    685       1.1   thorpej 		else
    686       1.1   thorpej 			fd->sc_active = 0;
    687       1.1   thorpej 	}
    688       1.1   thorpej 	bp->b_resid = fd->sc_bcount;
    689       1.1   thorpej 	fd->sc_skip = 0;
    690       1.1   thorpej 	BUFQ_REMOVE(&fd->sc_q, bp);
    691       1.1   thorpej 
    692       1.1   thorpej #if NRND > 0
    693       1.1   thorpej 	rnd_add_uint32(&fd->rnd_source, bp->b_blkno);
    694       1.1   thorpej #endif
    695       1.1   thorpej 
    696       1.1   thorpej 	biodone(bp);
    697       1.1   thorpej 	/* turn off motor 5s from now */
    698       1.2   thorpej 	callout_reset(&fd->sc_motoroff_ch, 5 * hz, fd_motor_off, fd);
    699       1.1   thorpej 	fdc->sc_state = DEVIDLE;
    700       1.1   thorpej }
    701       1.1   thorpej 
    702       1.1   thorpej int
    703  1.18.4.1   thorpej fdread(devvp, uio, flags)
    704  1.18.4.1   thorpej 	struct vnode *devvp;
    705       1.1   thorpej 	struct uio *uio;
    706       1.1   thorpej 	int flags;
    707       1.1   thorpej {
    708       1.1   thorpej 
    709  1.18.4.1   thorpej 	return (physio(fdstrategy, NULL, devvp, B_READ, minphys, uio));
    710       1.1   thorpej }
    711       1.1   thorpej 
    712       1.1   thorpej int
    713  1.18.4.1   thorpej fdwrite(devvp, uio, flags)
    714  1.18.4.1   thorpej 	struct vnode *devvp;
    715       1.1   thorpej 	struct uio *uio;
    716       1.1   thorpej 	int flags;
    717       1.1   thorpej {
    718       1.1   thorpej 
    719  1.18.4.1   thorpej 	return (physio(fdstrategy, NULL, devvp, B_WRITE, minphys, uio));
    720       1.1   thorpej }
    721       1.1   thorpej 
    722       1.1   thorpej void
    723       1.1   thorpej fd_set_motor(fdc, reset)
    724       1.1   thorpej 	struct fdc_softc *fdc;
    725       1.1   thorpej 	int reset;
    726       1.1   thorpej {
    727       1.1   thorpej 	struct fd_softc *fd;
    728       1.1   thorpej 	u_char status;
    729       1.1   thorpej 	int n;
    730       1.1   thorpej 
    731       1.1   thorpej 	if ((fd = fdc->sc_drives.tqh_first) != NULL)
    732       1.1   thorpej 		status = fd->sc_drive;
    733       1.1   thorpej 	else
    734       1.1   thorpej 		status = 0;
    735       1.1   thorpej 	if (!reset)
    736       1.1   thorpej 		status |= FDO_FRST | FDO_FDMAEN;
    737       1.1   thorpej 	for (n = 0; n < 4; n++)
    738       1.1   thorpej 		if ((fd = fdc->sc_fd[n]) && (fd->sc_flags & FD_MOTOR))
    739       1.1   thorpej 			status |= FDO_MOEN(n);
    740       1.1   thorpej 	bus_space_write_1(fdc->sc_iot, fdc->sc_ioh, fdout, status);
    741       1.1   thorpej }
    742       1.1   thorpej 
    743       1.1   thorpej void
    744       1.1   thorpej fd_motor_off(arg)
    745       1.1   thorpej 	void *arg;
    746       1.1   thorpej {
    747       1.1   thorpej 	struct fd_softc *fd = arg;
    748       1.1   thorpej 	int s;
    749       1.1   thorpej 
    750       1.1   thorpej 	s = splbio();
    751       1.1   thorpej 	fd->sc_flags &= ~(FD_MOTOR | FD_MOTOR_WAIT);
    752       1.1   thorpej 	fd_set_motor((struct fdc_softc *)fd->sc_dev.dv_parent, 0);
    753       1.1   thorpej 	splx(s);
    754       1.1   thorpej }
    755       1.1   thorpej 
    756       1.1   thorpej void
    757       1.1   thorpej fd_motor_on(arg)
    758       1.1   thorpej 	void *arg;
    759       1.1   thorpej {
    760       1.1   thorpej 	struct fd_softc *fd = arg;
    761       1.1   thorpej 	struct fdc_softc *fdc = (void *)fd->sc_dev.dv_parent;
    762       1.1   thorpej 	int s;
    763       1.1   thorpej 
    764       1.1   thorpej 	s = splbio();
    765       1.1   thorpej 	fd->sc_flags &= ~FD_MOTOR_WAIT;
    766       1.1   thorpej 	if ((fdc->sc_drives.tqh_first == fd) && (fdc->sc_state == MOTORWAIT))
    767       1.1   thorpej 		(void) fdcintr(fdc);
    768       1.1   thorpej 	splx(s);
    769       1.1   thorpej }
    770       1.1   thorpej 
    771       1.1   thorpej int
    772       1.1   thorpej fdcresult(fdc)
    773       1.1   thorpej 	struct fdc_softc *fdc;
    774       1.1   thorpej {
    775       1.1   thorpej 	bus_space_tag_t iot = fdc->sc_iot;
    776       1.1   thorpej 	bus_space_handle_t ioh = fdc->sc_ioh;
    777       1.1   thorpej 	u_char i;
    778       1.1   thorpej 	int j = 100000,
    779       1.1   thorpej 	    n = 0;
    780       1.1   thorpej 
    781       1.1   thorpej 	for (; j; j--) {
    782       1.1   thorpej 		i = bus_space_read_1(iot, ioh, fdsts) &
    783       1.1   thorpej 		    (NE7_DIO | NE7_RQM | NE7_CB);
    784       1.1   thorpej 		if (i == NE7_RQM)
    785       1.1   thorpej 			return n;
    786       1.1   thorpej 		if (i == (NE7_DIO | NE7_RQM | NE7_CB)) {
    787       1.1   thorpej 			if (n >= sizeof(fdc->sc_status)) {
    788       1.1   thorpej 				log(LOG_ERR, "fdcresult: overrun\n");
    789       1.1   thorpej 				return -1;
    790       1.1   thorpej 			}
    791       1.1   thorpej 			fdc->sc_status[n++] =
    792       1.1   thorpej 			    bus_space_read_1(iot, ioh, fddata);
    793       1.1   thorpej 		}
    794       1.1   thorpej 		delay(10);
    795       1.1   thorpej 	}
    796       1.1   thorpej 	log(LOG_ERR, "fdcresult: timeout\n");
    797       1.1   thorpej 	return -1;
    798       1.1   thorpej }
    799       1.1   thorpej 
    800       1.1   thorpej int
    801       1.1   thorpej out_fdc(iot, ioh, x)
    802       1.1   thorpej 	bus_space_tag_t iot;
    803       1.1   thorpej 	bus_space_handle_t ioh;
    804       1.1   thorpej 	u_char x;
    805       1.1   thorpej {
    806       1.1   thorpej 	int i = 100000;
    807       1.1   thorpej 
    808       1.1   thorpej 	while ((bus_space_read_1(iot, ioh, fdsts) & NE7_DIO) && i-- > 0);
    809       1.1   thorpej 	if (i <= 0)
    810       1.1   thorpej 		return -1;
    811       1.1   thorpej 	while ((bus_space_read_1(iot, ioh, fdsts) & NE7_RQM) == 0 && i-- > 0);
    812       1.1   thorpej 	if (i <= 0)
    813       1.1   thorpej 		return -1;
    814       1.1   thorpej 	bus_space_write_1(iot, ioh, fddata, x);
    815       1.1   thorpej 	return 0;
    816       1.1   thorpej }
    817       1.1   thorpej 
    818       1.1   thorpej int
    819  1.18.4.1   thorpej fdopen(devvp, flags, mode, p)
    820  1.18.4.1   thorpej 	struct vnode *devvp;
    821       1.1   thorpej 	int flags;
    822       1.1   thorpej 	int mode;
    823       1.1   thorpej 	struct proc *p;
    824       1.1   thorpej {
    825       1.1   thorpej 	struct fd_softc *fd;
    826      1.13  jdolecek 	const struct fd_type *type;
    827       1.1   thorpej 
    828  1.18.4.1   thorpej 	fd = device_lookup(&fd_cd, FDUNIT(devvp->v_rdev));
    829       1.7   thorpej 	if (fd == NULL)
    830       1.7   thorpej 		return (ENXIO);
    831       1.7   thorpej 
    832  1.18.4.1   thorpej 	type = fd_dev_to_type(fd, devvp->v_rdev);
    833       1.1   thorpej 	if (type == NULL)
    834       1.1   thorpej 		return ENXIO;
    835       1.1   thorpej 
    836       1.1   thorpej 	if ((fd->sc_flags & FD_OPEN) != 0 &&
    837       1.1   thorpej 	    memcmp(fd->sc_type, type, sizeof(*type)))
    838       1.1   thorpej 		return EBUSY;
    839       1.1   thorpej 
    840  1.18.4.1   thorpej 	devvp->v_devcookie = fd;
    841  1.18.4.1   thorpej 
    842       1.1   thorpej 	fd->sc_type_copy = *type;
    843       1.1   thorpej 	fd->sc_type = &fd->sc_type_copy;
    844       1.1   thorpej 	fd->sc_cylin = -1;
    845       1.1   thorpej 	fd->sc_flags |= FD_OPEN;
    846       1.1   thorpej 
    847       1.1   thorpej 	return 0;
    848       1.1   thorpej }
    849       1.1   thorpej 
    850       1.1   thorpej int
    851  1.18.4.1   thorpej fdclose(devvp, flags, mode, p)
    852  1.18.4.1   thorpej 	struct vnode *devvp;
    853       1.1   thorpej 	int flags;
    854       1.1   thorpej 	int mode;
    855       1.1   thorpej 	struct proc *p;
    856       1.1   thorpej {
    857  1.18.4.1   thorpej 	struct fd_softc *fd = devvp->v_devcookie;
    858       1.1   thorpej 
    859       1.1   thorpej 	fd->sc_flags &= ~FD_OPEN;
    860       1.1   thorpej 	fd->sc_opts &= ~(FDOPT_NORETRY|FDOPT_SILENT);
    861       1.1   thorpej 	return 0;
    862       1.1   thorpej }
    863       1.1   thorpej 
    864       1.1   thorpej void
    865       1.1   thorpej fdcstart(fdc)
    866       1.1   thorpej 	struct fdc_softc *fdc;
    867       1.1   thorpej {
    868       1.1   thorpej 
    869       1.1   thorpej #ifdef DIAGNOSTIC
    870       1.1   thorpej 	/* only got here if controller's drive queue was inactive; should
    871       1.1   thorpej 	   be in idle state */
    872       1.1   thorpej 	if (fdc->sc_state != DEVIDLE) {
    873       1.1   thorpej 		printf("fdcstart: not idle\n");
    874       1.1   thorpej 		return;
    875       1.1   thorpej 	}
    876       1.1   thorpej #endif
    877       1.1   thorpej 	(void) fdcintr(fdc);
    878       1.1   thorpej }
    879       1.1   thorpej 
    880       1.1   thorpej void
    881       1.1   thorpej fdcstatus(dv, n, s)
    882       1.1   thorpej 	struct device *dv;
    883       1.1   thorpej 	int n;
    884       1.1   thorpej 	char *s;
    885       1.1   thorpej {
    886       1.1   thorpej 	struct fdc_softc *fdc = (void *)dv->dv_parent;
    887       1.1   thorpej 	char bits[64];
    888       1.1   thorpej 
    889       1.1   thorpej 	if (n == 0) {
    890       1.1   thorpej 		out_fdc(fdc->sc_iot, fdc->sc_ioh, NE7CMD_SENSEI);
    891       1.1   thorpej 		(void) fdcresult(fdc);
    892       1.1   thorpej 		n = 2;
    893       1.1   thorpej 	}
    894       1.1   thorpej 
    895       1.1   thorpej 	printf("%s: %s", dv->dv_xname, s);
    896       1.1   thorpej 
    897       1.1   thorpej 	switch (n) {
    898       1.1   thorpej 	case 0:
    899       1.1   thorpej 		printf("\n");
    900       1.1   thorpej 		break;
    901       1.1   thorpej 	case 2:
    902       1.1   thorpej 		printf(" (st0 %s cyl %d)\n",
    903       1.1   thorpej 		    bitmask_snprintf(fdc->sc_status[0], NE7_ST0BITS,
    904       1.1   thorpej 		    bits, sizeof(bits)), fdc->sc_status[1]);
    905       1.1   thorpej 		break;
    906       1.1   thorpej 	case 7:
    907       1.1   thorpej 		printf(" (st0 %s", bitmask_snprintf(fdc->sc_status[0],
    908       1.1   thorpej 		    NE7_ST0BITS, bits, sizeof(bits)));
    909       1.1   thorpej 		printf(" st1 %s", bitmask_snprintf(fdc->sc_status[1],
    910       1.1   thorpej 		    NE7_ST1BITS, bits, sizeof(bits)));
    911       1.1   thorpej 		printf(" st2 %s", bitmask_snprintf(fdc->sc_status[2],
    912       1.1   thorpej 		    NE7_ST2BITS, bits, sizeof(bits)));
    913       1.1   thorpej 		printf(" cyl %d head %d sec %d)\n",
    914       1.1   thorpej 		    fdc->sc_status[3], fdc->sc_status[4], fdc->sc_status[5]);
    915       1.1   thorpej 		break;
    916       1.1   thorpej #ifdef DIAGNOSTIC
    917       1.1   thorpej 	default:
    918       1.1   thorpej 		printf("\nfdcstatus: weird size");
    919       1.1   thorpej 		break;
    920       1.1   thorpej #endif
    921       1.1   thorpej 	}
    922       1.1   thorpej }
    923       1.1   thorpej 
    924       1.1   thorpej void
    925       1.1   thorpej fdctimeout(arg)
    926       1.1   thorpej 	void *arg;
    927       1.1   thorpej {
    928       1.1   thorpej 	struct fdc_softc *fdc = arg;
    929       1.1   thorpej 	struct fd_softc *fd = fdc->sc_drives.tqh_first;
    930       1.1   thorpej 	int s;
    931       1.1   thorpej 
    932       1.1   thorpej 	s = splbio();
    933       1.1   thorpej #ifdef DEBUG
    934      1.15   tsutsui 	log(LOG_ERR, "fdctimeout: state %d\n", fdc->sc_state);
    935       1.1   thorpej #endif
    936       1.1   thorpej 	fdcstatus(&fd->sc_dev, 0, "timeout");
    937       1.1   thorpej 
    938       1.1   thorpej 	if (BUFQ_FIRST(&fd->sc_q) != NULL)
    939       1.1   thorpej 		fdc->sc_state++;
    940       1.1   thorpej 	else
    941       1.1   thorpej 		fdc->sc_state = DEVIDLE;
    942       1.1   thorpej 
    943       1.1   thorpej 	(void) fdcintr(fdc);
    944       1.1   thorpej 	splx(s);
    945       1.1   thorpej }
    946       1.1   thorpej 
    947       1.1   thorpej void
    948       1.1   thorpej fdcpseudointr(arg)
    949       1.1   thorpej 	void *arg;
    950       1.1   thorpej {
    951       1.1   thorpej 	int s;
    952       1.1   thorpej 
    953       1.1   thorpej 	/* Just ensure it has the right spl. */
    954       1.1   thorpej 	s = splbio();
    955       1.1   thorpej 	(void) fdcintr(arg);
    956       1.1   thorpej 	splx(s);
    957       1.1   thorpej }
    958       1.1   thorpej 
    959       1.1   thorpej int
    960       1.1   thorpej fdcintr(arg)
    961       1.1   thorpej 	void *arg;
    962       1.1   thorpej {
    963       1.1   thorpej 	struct fdc_softc *fdc = arg;
    964       1.1   thorpej #define	st0	fdc->sc_status[0]
    965       1.1   thorpej #define	cyl	fdc->sc_status[1]
    966       1.1   thorpej 	struct fd_softc *fd;
    967       1.1   thorpej 	struct buf *bp;
    968       1.1   thorpej 	bus_space_tag_t iot = fdc->sc_iot;
    969       1.1   thorpej 	bus_space_handle_t ioh = fdc->sc_ioh;
    970       1.1   thorpej 	int read, head, sec, i, nblks;
    971       1.1   thorpej 	struct fd_type *type;
    972       1.1   thorpej 	struct ne7_fd_formb *finfo = NULL;
    973       1.1   thorpej 
    974       1.1   thorpej loop:
    975       1.1   thorpej 	/* Is there a drive for the controller to do a transfer with? */
    976       1.1   thorpej 	fd = fdc->sc_drives.tqh_first;
    977       1.1   thorpej 	if (fd == NULL) {
    978       1.1   thorpej 		fdc->sc_state = DEVIDLE;
    979       1.1   thorpej  		return 1;
    980       1.1   thorpej 	}
    981       1.1   thorpej 
    982       1.1   thorpej 	/* Is there a transfer to this drive?  If not, deactivate drive. */
    983       1.1   thorpej 	bp = BUFQ_FIRST(&fd->sc_q);
    984       1.1   thorpej 	if (bp == NULL) {
    985       1.1   thorpej 		fd->sc_ops = 0;
    986       1.1   thorpej 		TAILQ_REMOVE(&fdc->sc_drives, fd, sc_drivechain);
    987       1.1   thorpej 		fd->sc_active = 0;
    988       1.1   thorpej 		goto loop;
    989       1.1   thorpej 	}
    990       1.1   thorpej 
    991       1.1   thorpej 	if (bp->b_flags & B_FORMAT)
    992       1.1   thorpej 		finfo = (struct ne7_fd_formb *)bp->b_data;
    993       1.1   thorpej 
    994       1.1   thorpej 	switch (fdc->sc_state) {
    995       1.1   thorpej 	case DEVIDLE:
    996       1.1   thorpej 		fdc->sc_errors = 0;
    997       1.1   thorpej 		fd->sc_skip = 0;
    998       1.1   thorpej 		fd->sc_bcount = bp->b_bcount;
    999       1.1   thorpej 		fd->sc_blkno = bp->b_blkno / (FDC_BSIZE / DEV_BSIZE);
   1000       1.2   thorpej 		callout_stop(&fd->sc_motoroff_ch);
   1001       1.1   thorpej 		if ((fd->sc_flags & FD_MOTOR_WAIT) != 0) {
   1002       1.1   thorpej 			fdc->sc_state = MOTORWAIT;
   1003       1.1   thorpej 			return 1;
   1004       1.1   thorpej 		}
   1005       1.1   thorpej 		if ((fd->sc_flags & FD_MOTOR) == 0) {
   1006       1.1   thorpej 			/* Turn on the motor, being careful about pairing. */
   1007       1.1   thorpej 			struct fd_softc *ofd = fdc->sc_fd[fd->sc_drive ^ 1];
   1008       1.1   thorpej 			if (ofd && ofd->sc_flags & FD_MOTOR) {
   1009       1.2   thorpej 				callout_stop(&ofd->sc_motoroff_ch);
   1010       1.1   thorpej 				ofd->sc_flags &= ~(FD_MOTOR | FD_MOTOR_WAIT);
   1011       1.1   thorpej 			}
   1012       1.1   thorpej 			fd->sc_flags |= FD_MOTOR | FD_MOTOR_WAIT;
   1013       1.1   thorpej 			fd_set_motor(fdc, 0);
   1014       1.1   thorpej 			fdc->sc_state = MOTORWAIT;
   1015       1.1   thorpej 			/* Allow .25s for motor to stabilize. */
   1016       1.2   thorpej 			callout_reset(&fd->sc_motoron_ch, hz / 4,
   1017       1.1   thorpej 			    fd_motor_on, fd);
   1018       1.1   thorpej 			return 1;
   1019       1.1   thorpej 		}
   1020       1.1   thorpej 		/* Make sure the right drive is selected. */
   1021       1.1   thorpej 		fd_set_motor(fdc, 0);
   1022       1.1   thorpej 
   1023       1.1   thorpej 		/* fall through */
   1024       1.1   thorpej 	case DOSEEK:
   1025       1.1   thorpej 	doseek:
   1026       1.1   thorpej 		if (fd->sc_cylin == bp->b_cylinder)
   1027       1.1   thorpej 			goto doio;
   1028       1.1   thorpej 
   1029       1.1   thorpej 		out_fdc(iot, ioh, NE7CMD_SPECIFY);/* specify command */
   1030       1.1   thorpej 		out_fdc(iot, ioh, fd->sc_type->steprate);
   1031       1.1   thorpej 		out_fdc(iot, ioh, 6);		/* XXX head load time == 6ms */
   1032       1.1   thorpej 
   1033       1.1   thorpej 		out_fdc(iot, ioh, NE7CMD_SEEK);	/* seek function */
   1034      1.15   tsutsui 		out_fdc(iot, ioh, fd->sc_drive); /* drive number */
   1035       1.1   thorpej 		out_fdc(iot, ioh, bp->b_cylinder * fd->sc_type->step);
   1036       1.1   thorpej 
   1037       1.1   thorpej 		fd->sc_cylin = -1;
   1038       1.1   thorpej 		fdc->sc_state = SEEKWAIT;
   1039       1.1   thorpej 
   1040       1.1   thorpej 		fd->sc_dk.dk_seek++;
   1041       1.1   thorpej 		disk_busy(&fd->sc_dk);
   1042       1.1   thorpej 
   1043       1.1   thorpej 		callout_reset(&fdc->sc_timo_ch, 4 * hz, fdctimeout, fdc);
   1044       1.1   thorpej 		return 1;
   1045       1.1   thorpej 
   1046       1.1   thorpej 	case DOIO:
   1047       1.1   thorpej 	doio:
   1048       1.1   thorpej 		type = fd->sc_type;
   1049       1.1   thorpej 		if (finfo)
   1050       1.1   thorpej 			fd->sc_skip = (char *)&(finfo->fd_formb_cylno(0)) -
   1051       1.1   thorpej 				      (char *)finfo;
   1052       1.1   thorpej 		sec = fd->sc_blkno % type->seccyl;
   1053       1.1   thorpej 		nblks = type->seccyl - sec;
   1054       1.1   thorpej 		nblks = min(nblks, fd->sc_bcount / FDC_BSIZE);
   1055       1.1   thorpej 		nblks = min(nblks, fdc->sc_maxiosize / FDC_BSIZE);
   1056       1.1   thorpej 		fd->sc_nblks = nblks;
   1057       1.1   thorpej 		fd->sc_nbytes = finfo ? bp->b_bcount : nblks * FDC_BSIZE;
   1058       1.1   thorpej 		head = sec / type->sectrac;
   1059       1.1   thorpej 		sec -= head * type->sectrac;
   1060       1.1   thorpej #ifdef DIAGNOSTIC
   1061      1.15   tsutsui 		{
   1062      1.15   tsutsui 			int block;
   1063      1.15   tsutsui 			block = (fd->sc_cylin * type->heads + head)
   1064      1.15   tsutsui 			    * type->sectrac + sec;
   1065      1.15   tsutsui 			if (block != fd->sc_blkno) {
   1066      1.15   tsutsui 				printf("fdcintr: block %d != blkno %d\n",
   1067      1.15   tsutsui 				    block, fd->sc_blkno);
   1068       1.1   thorpej #ifdef DDB
   1069      1.15   tsutsui 				 Debugger();
   1070       1.1   thorpej #endif
   1071      1.15   tsutsui 			}
   1072      1.15   tsutsui 		}
   1073       1.1   thorpej #endif
   1074       1.1   thorpej 		read = bp->b_flags & B_READ ? DMAMODE_READ : DMAMODE_WRITE;
   1075       1.1   thorpej 		isa_dmastart(fdc->sc_ic, fdc->sc_drq,
   1076       1.1   thorpej 		    bp->b_data + fd->sc_skip, fd->sc_nbytes,
   1077       1.1   thorpej 		    NULL, read | DMAMODE_DEMAND, BUS_DMA_NOWAIT);
   1078       1.1   thorpej 		bus_space_write_1(iot, fdc->sc_fdctlioh, 0, type->rate);
   1079       1.1   thorpej #ifdef FD_DEBUG
   1080       1.1   thorpej 		printf("fdcintr: %s drive %d track %d head %d sec %d nblks %d\n",
   1081       1.1   thorpej 			read ? "read" : "write", fd->sc_drive, fd->sc_cylin,
   1082       1.1   thorpej 			head, sec, nblks);
   1083       1.1   thorpej #endif
   1084       1.1   thorpej 		if (finfo) {
   1085       1.1   thorpej 			/* formatting */
   1086       1.1   thorpej 			if (out_fdc(iot, ioh, NE7CMD_FORMAT) < 0) {
   1087       1.1   thorpej 				fdc->sc_errors = 4;
   1088       1.1   thorpej 				fdcretry(fdc);
   1089       1.1   thorpej 				goto loop;
   1090       1.1   thorpej 			}
   1091       1.1   thorpej 			out_fdc(iot, ioh, (head << 2) | fd->sc_drive);
   1092       1.1   thorpej 			out_fdc(iot, ioh, finfo->fd_formb_secshift);
   1093       1.1   thorpej 			out_fdc(iot, ioh, finfo->fd_formb_nsecs);
   1094       1.1   thorpej 			out_fdc(iot, ioh, finfo->fd_formb_gaplen);
   1095       1.1   thorpej 			out_fdc(iot, ioh, finfo->fd_formb_fillbyte);
   1096       1.1   thorpej 		} else {
   1097       1.1   thorpej 			if (read)
   1098       1.1   thorpej 				out_fdc(iot, ioh, NE7CMD_READ);	/* READ */
   1099       1.1   thorpej 			else
   1100       1.1   thorpej 				out_fdc(iot, ioh, NE7CMD_WRITE); /* WRITE */
   1101       1.1   thorpej 			out_fdc(iot, ioh, (head << 2) | fd->sc_drive);
   1102       1.1   thorpej 			out_fdc(iot, ioh, fd->sc_cylin); /* track */
   1103       1.1   thorpej 			out_fdc(iot, ioh, head);
   1104       1.1   thorpej 			out_fdc(iot, ioh, sec + 1);	 /* sector +1 */
   1105       1.1   thorpej 			out_fdc(iot, ioh, type->secsize);/* sector size */
   1106       1.1   thorpej 			out_fdc(iot, ioh, type->sectrac);/* sectors/track */
   1107       1.1   thorpej 			out_fdc(iot, ioh, type->gap1);	 /* gap1 size */
   1108       1.1   thorpej 			out_fdc(iot, ioh, type->datalen);/* data length */
   1109       1.1   thorpej 		}
   1110       1.1   thorpej 		fdc->sc_state = IOCOMPLETE;
   1111       1.1   thorpej 
   1112       1.1   thorpej 		disk_busy(&fd->sc_dk);
   1113       1.1   thorpej 
   1114       1.1   thorpej 		/* allow 2 seconds for operation */
   1115       1.1   thorpej 		callout_reset(&fdc->sc_timo_ch, 2 * hz, fdctimeout, fdc);
   1116       1.1   thorpej 		return 1;				/* will return later */
   1117       1.1   thorpej 
   1118       1.1   thorpej 	case SEEKWAIT:
   1119       1.1   thorpej 		callout_stop(&fdc->sc_timo_ch);
   1120       1.1   thorpej 		fdc->sc_state = SEEKCOMPLETE;
   1121       1.1   thorpej 		/* allow 1/50 second for heads to settle */
   1122       1.1   thorpej 		callout_reset(&fdc->sc_intr_ch, hz / 50, fdcpseudointr, fdc);
   1123       1.1   thorpej 		return 1;
   1124       1.1   thorpej 
   1125       1.1   thorpej 	case SEEKCOMPLETE:
   1126       1.1   thorpej 		disk_unbusy(&fd->sc_dk, 0);	/* no data on seek */
   1127       1.1   thorpej 
   1128       1.1   thorpej 		/* Make sure seek really happened. */
   1129       1.1   thorpej 		out_fdc(iot, ioh, NE7CMD_SENSEI);
   1130       1.1   thorpej 		if (fdcresult(fdc) != 2 || (st0 & 0xf8) != 0x20 ||
   1131       1.1   thorpej 		    cyl != bp->b_cylinder * fd->sc_type->step) {
   1132       1.1   thorpej #ifdef FD_DEBUG
   1133       1.1   thorpej 			fdcstatus(&fd->sc_dev, 2, "seek failed");
   1134       1.1   thorpej #endif
   1135       1.1   thorpej 			fdcretry(fdc);
   1136       1.1   thorpej 			goto loop;
   1137       1.1   thorpej 		}
   1138       1.1   thorpej 		fd->sc_cylin = bp->b_cylinder;
   1139       1.1   thorpej 		goto doio;
   1140       1.1   thorpej 
   1141       1.1   thorpej 	case IOTIMEDOUT:
   1142       1.1   thorpej 		isa_dmaabort(fdc->sc_ic, fdc->sc_drq);
   1143       1.1   thorpej 	case SEEKTIMEDOUT:
   1144       1.1   thorpej 	case RECALTIMEDOUT:
   1145       1.1   thorpej 	case RESETTIMEDOUT:
   1146       1.1   thorpej 		fdcretry(fdc);
   1147       1.1   thorpej 		goto loop;
   1148       1.1   thorpej 
   1149       1.1   thorpej 	case IOCOMPLETE: /* IO DONE, post-analyze */
   1150       1.1   thorpej 		callout_stop(&fdc->sc_timo_ch);
   1151       1.1   thorpej 
   1152       1.1   thorpej 		disk_unbusy(&fd->sc_dk, (bp->b_bcount - bp->b_resid));
   1153       1.1   thorpej 
   1154       1.1   thorpej 		if (fdcresult(fdc) != 7 || (st0 & 0xf8) != 0) {
   1155       1.1   thorpej 			isa_dmaabort(fdc->sc_ic, fdc->sc_drq);
   1156       1.1   thorpej #ifdef FD_DEBUG
   1157       1.1   thorpej 			fdcstatus(&fd->sc_dev, 7, bp->b_flags & B_READ ?
   1158       1.1   thorpej 			    "read failed" : "write failed");
   1159       1.1   thorpej 			printf("blkno %d nblks %d\n",
   1160       1.1   thorpej 			    fd->sc_blkno, fd->sc_nblks);
   1161       1.1   thorpej #endif
   1162       1.1   thorpej 			fdcretry(fdc);
   1163       1.1   thorpej 			goto loop;
   1164       1.1   thorpej 		}
   1165       1.1   thorpej 		isa_dmadone(fdc->sc_ic, fdc->sc_drq);
   1166       1.1   thorpej 		if (fdc->sc_errors) {
   1167       1.1   thorpej 			diskerr(bp, "fd", "soft error (corrected)", LOG_PRINTF,
   1168       1.1   thorpej 			    fd->sc_skip / FDC_BSIZE, (struct disklabel *)NULL);
   1169       1.1   thorpej 			printf("\n");
   1170       1.1   thorpej 			fdc->sc_errors = 0;
   1171       1.1   thorpej 		}
   1172       1.1   thorpej 		fd->sc_blkno += fd->sc_nblks;
   1173       1.1   thorpej 		fd->sc_skip += fd->sc_nbytes;
   1174       1.1   thorpej 		fd->sc_bcount -= fd->sc_nbytes;
   1175       1.1   thorpej 		if (!finfo && fd->sc_bcount > 0) {
   1176       1.1   thorpej 			bp->b_cylinder = fd->sc_blkno / fd->sc_type->seccyl;
   1177       1.1   thorpej 			goto doseek;
   1178       1.1   thorpej 		}
   1179       1.1   thorpej 		fdfinish(fd, bp);
   1180       1.1   thorpej 		goto loop;
   1181       1.1   thorpej 
   1182       1.1   thorpej 	case DORESET:
   1183       1.1   thorpej 		/* try a reset, keep motor on */
   1184       1.1   thorpej 		fd_set_motor(fdc, 1);
   1185       1.1   thorpej 		delay(100);
   1186       1.1   thorpej 		fd_set_motor(fdc, 0);
   1187       1.1   thorpej 		fdc->sc_state = RESETCOMPLETE;
   1188       1.1   thorpej 		callout_reset(&fdc->sc_timo_ch, hz / 2, fdctimeout, fdc);
   1189       1.1   thorpej 		return 1;			/* will return later */
   1190       1.1   thorpej 
   1191       1.1   thorpej 	case RESETCOMPLETE:
   1192       1.1   thorpej 		callout_stop(&fdc->sc_timo_ch);
   1193       1.1   thorpej 		/* clear the controller output buffer */
   1194       1.1   thorpej 		for (i = 0; i < 4; i++) {
   1195       1.1   thorpej 			out_fdc(iot, ioh, NE7CMD_SENSEI);
   1196       1.1   thorpej 			(void) fdcresult(fdc);
   1197       1.1   thorpej 		}
   1198       1.1   thorpej 
   1199       1.1   thorpej 		/* fall through */
   1200       1.1   thorpej 	case DORECAL:
   1201      1.15   tsutsui 		out_fdc(iot, ioh, NE7CMD_RECAL); /* recalibrate function */
   1202       1.1   thorpej 		out_fdc(iot, ioh, fd->sc_drive);
   1203       1.1   thorpej 		fdc->sc_state = RECALWAIT;
   1204       1.1   thorpej 		callout_reset(&fdc->sc_timo_ch, 5 * hz, fdctimeout, fdc);
   1205       1.1   thorpej 		return 1;			/* will return later */
   1206       1.1   thorpej 
   1207       1.1   thorpej 	case RECALWAIT:
   1208       1.1   thorpej 		callout_stop(&fdc->sc_timo_ch);
   1209       1.1   thorpej 		fdc->sc_state = RECALCOMPLETE;
   1210       1.1   thorpej 		/* allow 1/30 second for heads to settle */
   1211       1.1   thorpej 		callout_reset(&fdc->sc_intr_ch, hz / 30, fdcpseudointr, fdc);
   1212       1.1   thorpej 		return 1;			/* will return later */
   1213       1.1   thorpej 
   1214       1.1   thorpej 	case RECALCOMPLETE:
   1215       1.1   thorpej 		out_fdc(iot, ioh, NE7CMD_SENSEI);
   1216       1.1   thorpej 		if (fdcresult(fdc) != 2 || (st0 & 0xf8) != 0x20 || cyl != 0) {
   1217       1.1   thorpej #ifdef FD_DEBUG
   1218       1.1   thorpej 			fdcstatus(&fd->sc_dev, 2, "recalibrate failed");
   1219       1.1   thorpej #endif
   1220       1.1   thorpej 			fdcretry(fdc);
   1221       1.1   thorpej 			goto loop;
   1222       1.1   thorpej 		}
   1223       1.1   thorpej 		fd->sc_cylin = 0;
   1224       1.1   thorpej 		goto doseek;
   1225       1.1   thorpej 
   1226       1.1   thorpej 	case MOTORWAIT:
   1227       1.1   thorpej 		if (fd->sc_flags & FD_MOTOR_WAIT)
   1228       1.1   thorpej 			return 1;		/* time's not up yet */
   1229       1.1   thorpej 		goto doseek;
   1230       1.1   thorpej 
   1231       1.1   thorpej 	default:
   1232       1.1   thorpej 		fdcstatus(&fd->sc_dev, 0, "stray interrupt");
   1233       1.1   thorpej 		return 1;
   1234       1.1   thorpej 	}
   1235       1.1   thorpej #ifdef DIAGNOSTIC
   1236       1.1   thorpej 	panic("fdcintr: impossible");
   1237       1.1   thorpej #endif
   1238       1.1   thorpej #undef	st0
   1239       1.1   thorpej #undef	cyl
   1240       1.1   thorpej }
   1241       1.1   thorpej 
   1242       1.1   thorpej void
   1243       1.1   thorpej fdcretry(fdc)
   1244       1.1   thorpej 	struct fdc_softc *fdc;
   1245       1.1   thorpej {
   1246       1.1   thorpej 	char bits[64];
   1247       1.1   thorpej 	struct fd_softc *fd;
   1248       1.1   thorpej 	struct buf *bp;
   1249       1.1   thorpej 
   1250       1.1   thorpej 	fd = fdc->sc_drives.tqh_first;
   1251       1.1   thorpej 	bp = BUFQ_FIRST(&fd->sc_q);
   1252       1.1   thorpej 
   1253       1.1   thorpej 	if (fd->sc_opts & FDOPT_NORETRY)
   1254       1.1   thorpej 	    goto fail;
   1255       1.1   thorpej 	switch (fdc->sc_errors) {
   1256       1.1   thorpej 	case 0:
   1257       1.1   thorpej 		/* try again */
   1258       1.1   thorpej 		fdc->sc_state = DOSEEK;
   1259       1.1   thorpej 		break;
   1260       1.1   thorpej 
   1261       1.1   thorpej 	case 1: case 2: case 3:
   1262       1.1   thorpej 		/* didn't work; try recalibrating */
   1263       1.1   thorpej 		fdc->sc_state = DORECAL;
   1264       1.1   thorpej 		break;
   1265       1.1   thorpej 
   1266       1.1   thorpej 	case 4:
   1267       1.1   thorpej 		/* still no go; reset the bastard */
   1268       1.1   thorpej 		fdc->sc_state = DORESET;
   1269       1.1   thorpej 		break;
   1270       1.1   thorpej 
   1271       1.1   thorpej 	default:
   1272       1.1   thorpej 	fail:
   1273       1.1   thorpej 		if ((fd->sc_opts & FDOPT_SILENT) == 0) {
   1274       1.1   thorpej 			diskerr(bp, "fd", "hard error", LOG_PRINTF,
   1275       1.1   thorpej 				fd->sc_skip / FDC_BSIZE,
   1276       1.1   thorpej 				(struct disklabel *)NULL);
   1277       1.1   thorpej 
   1278       1.1   thorpej 			printf(" (st0 %s",
   1279       1.1   thorpej 			       bitmask_snprintf(fdc->sc_status[0],
   1280       1.1   thorpej 						NE7_ST0BITS, bits,
   1281       1.1   thorpej 						sizeof(bits)));
   1282       1.1   thorpej 			printf(" st1 %s",
   1283       1.1   thorpej 			       bitmask_snprintf(fdc->sc_status[1],
   1284       1.1   thorpej 						NE7_ST1BITS, bits,
   1285       1.1   thorpej 						sizeof(bits)));
   1286       1.1   thorpej 			printf(" st2 %s",
   1287       1.1   thorpej 			       bitmask_snprintf(fdc->sc_status[2],
   1288       1.1   thorpej 						NE7_ST2BITS, bits,
   1289       1.1   thorpej 						sizeof(bits)));
   1290       1.1   thorpej 			printf(" cyl %d head %d sec %d)\n",
   1291       1.1   thorpej 			       fdc->sc_status[3],
   1292       1.1   thorpej 			       fdc->sc_status[4],
   1293       1.1   thorpej 			       fdc->sc_status[5]);
   1294       1.1   thorpej 		}
   1295       1.1   thorpej 
   1296       1.1   thorpej 		bp->b_flags |= B_ERROR;
   1297       1.1   thorpej 		bp->b_error = EIO;
   1298       1.1   thorpej 		fdfinish(fd, bp);
   1299       1.1   thorpej 	}
   1300       1.1   thorpej 	fdc->sc_errors++;
   1301       1.1   thorpej }
   1302       1.1   thorpej 
   1303       1.1   thorpej int
   1304       1.1   thorpej fdsize(dev)
   1305       1.1   thorpej 	dev_t dev;
   1306       1.1   thorpej {
   1307       1.1   thorpej 
   1308       1.1   thorpej 	/* Swapping to floppies would not make sense. */
   1309       1.1   thorpej 	return -1;
   1310       1.1   thorpej }
   1311       1.1   thorpej 
   1312       1.1   thorpej int
   1313       1.1   thorpej fddump(dev, blkno, va, size)
   1314       1.1   thorpej 	dev_t dev;
   1315       1.1   thorpej 	daddr_t blkno;
   1316       1.1   thorpej 	caddr_t va;
   1317       1.1   thorpej 	size_t size;
   1318       1.1   thorpej {
   1319       1.1   thorpej 
   1320       1.1   thorpej 	/* Not implemented. */
   1321       1.1   thorpej 	return ENXIO;
   1322       1.1   thorpej }
   1323       1.1   thorpej 
   1324       1.1   thorpej int
   1325  1.18.4.1   thorpej fdioctl(devvp, cmd, addr, flag, p)
   1326  1.18.4.1   thorpej 	struct vnode *devvp;
   1327       1.1   thorpej 	u_long cmd;
   1328       1.1   thorpej 	caddr_t addr;
   1329       1.1   thorpej 	int flag;
   1330       1.1   thorpej 	struct proc *p;
   1331       1.1   thorpej {
   1332  1.18.4.1   thorpej 	struct fd_softc *fd = devvp->v_devcookie;
   1333       1.1   thorpej 	struct fdformat_parms *form_parms;
   1334       1.1   thorpej 	struct fdformat_cmd *form_cmd;
   1335       1.8   nathanw 	struct ne7_fd_formb *fd_formb;
   1336       1.1   thorpej 	struct disklabel buffer;
   1337       1.1   thorpej 	int error;
   1338       1.1   thorpej 	unsigned int scratch;
   1339       1.1   thorpej 	int il[FD_MAX_NSEC + 1];
   1340       1.1   thorpej 	register int i, j;
   1341      1.11      fvdl #ifdef __HAVE_OLD_DISKLABEL
   1342      1.11      fvdl 	struct disklabel newlabel;
   1343      1.11      fvdl #endif
   1344       1.1   thorpej 
   1345       1.1   thorpej 	switch (cmd) {
   1346       1.1   thorpej 	case DIOCGDINFO:
   1347      1.11      fvdl #ifdef __HAVE_OLD_DISKLABEL
   1348      1.11      fvdl 	case ODIOCGDINFO:
   1349      1.11      fvdl #endif
   1350       1.1   thorpej 		memset(&buffer, 0, sizeof(buffer));
   1351       1.1   thorpej 
   1352       1.1   thorpej 		buffer.d_secpercyl = fd->sc_type->seccyl;
   1353       1.1   thorpej 		buffer.d_type = DTYPE_FLOPPY;
   1354       1.1   thorpej 		buffer.d_secsize = FDC_BSIZE;
   1355       1.1   thorpej 
   1356  1.18.4.1   thorpej 		if (readdisklabel(devvp, fdstrategy, &buffer, NULL) != NULL)
   1357       1.1   thorpej 			return EINVAL;
   1358       1.1   thorpej 
   1359      1.11      fvdl #ifdef __HAVE_OLD_DISKLABEL
   1360      1.11      fvdl 		if (cmd == ODIOCGDINFO) {
   1361      1.11      fvdl 			if (buffer.d_npartitions > OLDMAXPARTITIONS)
   1362      1.12      fvdl 				return ENOTTY;
   1363      1.11      fvdl 			memcpy(addr, &buffer, sizeof (struct olddisklabel));
   1364      1.11      fvdl 		} else
   1365      1.11      fvdl #endif
   1366       1.1   thorpej 		*(struct disklabel *)addr = buffer;
   1367       1.1   thorpej 		return 0;
   1368       1.1   thorpej 
   1369       1.1   thorpej 	case DIOCWLABEL:
   1370       1.1   thorpej 		if ((flag & FWRITE) == 0)
   1371       1.1   thorpej 			return EBADF;
   1372       1.1   thorpej 		/* XXX do something */
   1373       1.1   thorpej 		return 0;
   1374       1.1   thorpej 
   1375       1.1   thorpej 	case DIOCWDINFO:
   1376      1.11      fvdl #ifdef __HAVE_OLD_DISKLABEL
   1377      1.11      fvdl 	case ODIOCWDINFO:
   1378      1.11      fvdl #endif
   1379      1.11      fvdl 	{
   1380      1.11      fvdl 		struct disklabel *lp;
   1381      1.11      fvdl 
   1382       1.1   thorpej 		if ((flag & FWRITE) == 0)
   1383       1.1   thorpej 			return EBADF;
   1384      1.11      fvdl #ifdef __HAVE_OLD_DISKLABEL
   1385      1.11      fvdl 		if (cmd == ODIOCWDINFO) {
   1386      1.11      fvdl 			memset(&newlabel, 0, sizeof newlabel);
   1387      1.11      fvdl 			memcpy(&newlabel, addr, sizeof (struct olddisklabel));
   1388      1.11      fvdl 			lp = &newlabel;
   1389      1.11      fvdl 		} else
   1390      1.11      fvdl #endif
   1391      1.11      fvdl 		lp = (struct disklabel *)addr;
   1392       1.1   thorpej 
   1393      1.11      fvdl 		error = setdisklabel(&buffer, lp, 0, NULL);
   1394       1.1   thorpej 		if (error)
   1395       1.1   thorpej 			return error;
   1396       1.1   thorpej 
   1397  1.18.4.1   thorpej 		error = writedisklabel(devvp, fdstrategy, &buffer, NULL);
   1398       1.1   thorpej 		return error;
   1399      1.11      fvdl 	}
   1400       1.1   thorpej 
   1401       1.1   thorpej 	case FDIOCGETFORMAT:
   1402       1.1   thorpej 		form_parms = (struct fdformat_parms *)addr;
   1403       1.1   thorpej 		form_parms->fdformat_version = FDFORMAT_VERSION;
   1404       1.1   thorpej 		form_parms->nbps = 128 * (1 << fd->sc_type->secsize);
   1405       1.1   thorpej 		form_parms->ncyl = fd->sc_type->cyls;
   1406       1.1   thorpej 		form_parms->nspt = fd->sc_type->sectrac;
   1407       1.1   thorpej 		form_parms->ntrk = fd->sc_type->heads;
   1408       1.1   thorpej 		form_parms->stepspercyl = fd->sc_type->step;
   1409       1.1   thorpej 		form_parms->gaplen = fd->sc_type->gap2;
   1410       1.1   thorpej 		form_parms->fillbyte = fd->sc_type->fillbyte;
   1411       1.1   thorpej 		form_parms->interleave = fd->sc_type->interleave;
   1412       1.1   thorpej 		switch (fd->sc_type->rate) {
   1413       1.1   thorpej 		case FDC_500KBPS:
   1414       1.1   thorpej 			form_parms->xfer_rate = 500 * 1024;
   1415       1.1   thorpej 			break;
   1416       1.1   thorpej 		case FDC_300KBPS:
   1417       1.1   thorpej 			form_parms->xfer_rate = 300 * 1024;
   1418       1.1   thorpej 			break;
   1419       1.1   thorpej 		case FDC_250KBPS:
   1420       1.1   thorpej 			form_parms->xfer_rate = 250 * 1024;
   1421       1.1   thorpej 			break;
   1422       1.1   thorpej 		default:
   1423       1.1   thorpej 			return EINVAL;
   1424       1.1   thorpej 		}
   1425       1.1   thorpej 		return 0;
   1426       1.1   thorpej 
   1427       1.1   thorpej 	case FDIOCSETFORMAT:
   1428       1.1   thorpej 		if((flag & FWRITE) == 0)
   1429       1.1   thorpej 			return EBADF;	/* must be opened for writing */
   1430       1.1   thorpej 		form_parms = (struct fdformat_parms *)addr;
   1431       1.1   thorpej 		if (form_parms->fdformat_version != FDFORMAT_VERSION)
   1432       1.1   thorpej 			return EINVAL;	/* wrong version of formatting prog */
   1433       1.1   thorpej 
   1434       1.1   thorpej 		scratch = form_parms->nbps >> 7;
   1435       1.1   thorpej 		if ((form_parms->nbps & 0x7f) || ffs(scratch) == 0 ||
   1436       1.1   thorpej 		    scratch & ~(1 << (ffs(scratch)-1)))
   1437       1.1   thorpej 			/* not a power-of-two multiple of 128 */
   1438       1.1   thorpej 			return EINVAL;
   1439       1.1   thorpej 
   1440       1.1   thorpej 		switch (form_parms->xfer_rate) {
   1441       1.1   thorpej 		case 500 * 1024:
   1442       1.1   thorpej 			fd->sc_type->rate = FDC_500KBPS;
   1443       1.1   thorpej 			break;
   1444       1.1   thorpej 		case 300 * 1024:
   1445       1.1   thorpej 			fd->sc_type->rate = FDC_300KBPS;
   1446       1.1   thorpej 			break;
   1447       1.1   thorpej 		case 250 * 1024:
   1448       1.1   thorpej 			fd->sc_type->rate = FDC_250KBPS;
   1449       1.1   thorpej 			break;
   1450       1.1   thorpej 		default:
   1451       1.1   thorpej 			return EINVAL;
   1452       1.1   thorpej 		}
   1453       1.1   thorpej 
   1454       1.1   thorpej 		if (form_parms->nspt > FD_MAX_NSEC ||
   1455       1.1   thorpej 		    form_parms->fillbyte > 0xff ||
   1456       1.1   thorpej 		    form_parms->interleave > 0xff)
   1457       1.1   thorpej 			return EINVAL;
   1458       1.1   thorpej 		fd->sc_type->sectrac = form_parms->nspt;
   1459       1.1   thorpej 		if (form_parms->ntrk != 2 && form_parms->ntrk != 1)
   1460       1.1   thorpej 			return EINVAL;
   1461       1.1   thorpej 		fd->sc_type->heads = form_parms->ntrk;
   1462       1.1   thorpej 		fd->sc_type->seccyl = form_parms->nspt * form_parms->ntrk;
   1463       1.1   thorpej 		fd->sc_type->secsize = ffs(scratch)-1;
   1464       1.1   thorpej 		fd->sc_type->gap2 = form_parms->gaplen;
   1465       1.1   thorpej 		fd->sc_type->cyls = form_parms->ncyl;
   1466       1.1   thorpej 		fd->sc_type->size = fd->sc_type->seccyl * form_parms->ncyl *
   1467      1.15   tsutsui 		    form_parms->nbps / DEV_BSIZE;
   1468       1.1   thorpej 		fd->sc_type->step = form_parms->stepspercyl;
   1469       1.1   thorpej 		fd->sc_type->fillbyte = form_parms->fillbyte;
   1470       1.1   thorpej 		fd->sc_type->interleave = form_parms->interleave;
   1471       1.1   thorpej 		return 0;
   1472       1.1   thorpej 
   1473       1.1   thorpej 	case FDIOCFORMAT_TRACK:
   1474       1.1   thorpej 		if((flag & FWRITE) == 0)
   1475       1.1   thorpej 			return EBADF;	/* must be opened for writing */
   1476       1.1   thorpej 		form_cmd = (struct fdformat_cmd *)addr;
   1477       1.1   thorpej 		if (form_cmd->formatcmd_version != FDFORMAT_VERSION)
   1478       1.1   thorpej 			return EINVAL;	/* wrong version of formatting prog */
   1479       1.1   thorpej 
   1480       1.1   thorpej 		if (form_cmd->head >= fd->sc_type->heads ||
   1481       1.1   thorpej 		    form_cmd->cylinder >= fd->sc_type->cyls) {
   1482       1.1   thorpej 			return EINVAL;
   1483       1.1   thorpej 		}
   1484       1.1   thorpej 
   1485       1.8   nathanw 		fd_formb = malloc(sizeof(struct ne7_fd_formb),
   1486       1.8   nathanw 		    M_TEMP, M_NOWAIT);
   1487       1.8   nathanw 		if (fd_formb == 0)
   1488       1.8   nathanw 			return ENOMEM;
   1489       1.8   nathanw 
   1490       1.8   nathanw 		fd_formb->head = form_cmd->head;
   1491       1.8   nathanw 		fd_formb->cyl = form_cmd->cylinder;
   1492       1.8   nathanw 		fd_formb->transfer_rate = fd->sc_type->rate;
   1493       1.8   nathanw 		fd_formb->fd_formb_secshift = fd->sc_type->secsize;
   1494       1.8   nathanw 		fd_formb->fd_formb_nsecs = fd->sc_type->sectrac;
   1495       1.8   nathanw 		fd_formb->fd_formb_gaplen = fd->sc_type->gap2;
   1496       1.8   nathanw 		fd_formb->fd_formb_fillbyte = fd->sc_type->fillbyte;
   1497       1.1   thorpej 
   1498       1.1   thorpej 		memset(il, 0, sizeof il);
   1499       1.8   nathanw 		for (j = 0, i = 1; i <= fd_formb->fd_formb_nsecs; i++) {
   1500       1.8   nathanw 			while (il[(j%fd_formb->fd_formb_nsecs)+1])
   1501       1.1   thorpej 				j++;
   1502       1.8   nathanw 			il[(j%fd_formb->fd_formb_nsecs)+1] = i;
   1503       1.1   thorpej 			j += fd->sc_type->interleave;
   1504       1.1   thorpej 		}
   1505       1.8   nathanw 		for (i = 0; i < fd_formb->fd_formb_nsecs; i++) {
   1506       1.8   nathanw 			fd_formb->fd_formb_cylno(i) = form_cmd->cylinder;
   1507       1.8   nathanw 			fd_formb->fd_formb_headno(i) = form_cmd->head;
   1508       1.8   nathanw 			fd_formb->fd_formb_secno(i) = il[i+1];
   1509       1.8   nathanw 			fd_formb->fd_formb_secsize(i) = fd->sc_type->secsize;
   1510       1.1   thorpej 		}
   1511       1.1   thorpej 
   1512  1.18.4.1   thorpej 		error = fdformat(devvp, fd_formb, p);
   1513       1.8   nathanw 		free(fd_formb, M_TEMP);
   1514       1.8   nathanw 		return error;
   1515       1.1   thorpej 
   1516       1.1   thorpej 	case FDIOCGETOPTS:		/* get drive options */
   1517       1.1   thorpej 		*(int *)addr = fd->sc_opts;
   1518       1.1   thorpej 		return 0;
   1519       1.1   thorpej 
   1520       1.1   thorpej 	case FDIOCSETOPTS:		/* set drive options */
   1521       1.1   thorpej 		fd->sc_opts = *(int *)addr;
   1522       1.1   thorpej 		return 0;
   1523       1.1   thorpej 
   1524       1.1   thorpej 	default:
   1525       1.1   thorpej 		return ENOTTY;
   1526       1.1   thorpej 	}
   1527       1.1   thorpej 
   1528       1.1   thorpej #ifdef DIAGNOSTIC
   1529       1.1   thorpej 	panic("fdioctl: impossible");
   1530       1.1   thorpej #endif
   1531       1.1   thorpej }
   1532       1.1   thorpej 
   1533       1.1   thorpej int
   1534  1.18.4.1   thorpej fdformat(devvp, finfo, p)
   1535  1.18.4.1   thorpej 	struct vnode *devvp;
   1536       1.1   thorpej 	struct ne7_fd_formb *finfo;
   1537       1.1   thorpej 	struct proc *p;
   1538       1.1   thorpej {
   1539       1.1   thorpej 	int rv = 0, s;
   1540  1.18.4.1   thorpej 	struct fd_softc *fd = devvp->v_devcookie;
   1541       1.1   thorpej 	struct fd_type *type = fd->sc_type;
   1542       1.1   thorpej 	struct buf *bp;
   1543       1.1   thorpej 
   1544       1.1   thorpej 	/* set up a buffer header for fdstrategy() */
   1545       1.1   thorpej 	bp = (struct buf *)malloc(sizeof(struct buf), M_TEMP, M_NOWAIT);
   1546       1.1   thorpej 	if(bp == 0)
   1547       1.1   thorpej 		return ENOBUFS;
   1548       1.1   thorpej 	memset((void *)bp, 0, sizeof(struct buf));
   1549       1.1   thorpej 	bp->b_flags = B_BUSY | B_PHYS | B_FORMAT;
   1550       1.1   thorpej 	bp->b_proc = p;
   1551  1.18.4.1   thorpej 	bp->b_devvp = devvp;
   1552       1.1   thorpej 
   1553       1.1   thorpej 	/*
   1554       1.1   thorpej 	 * calculate a fake blkno, so fdstrategy() would initiate a
   1555       1.1   thorpej 	 * seek to the requested cylinder
   1556       1.1   thorpej 	 */
   1557       1.1   thorpej 	bp->b_blkno = (finfo->cyl * (type->sectrac * type->heads)
   1558       1.1   thorpej 		       + finfo->head * type->sectrac) * FDC_BSIZE / DEV_BSIZE;
   1559       1.1   thorpej 
   1560       1.1   thorpej 	bp->b_bcount = sizeof(struct fd_idfield_data) * finfo->fd_formb_nsecs;
   1561       1.1   thorpej 	bp->b_data = (caddr_t)finfo;
   1562       1.1   thorpej 
   1563       1.1   thorpej #ifdef DEBUG
   1564       1.1   thorpej 	printf("fdformat: blkno %x count %lx\n", bp->b_blkno, bp->b_bcount);
   1565       1.1   thorpej #endif
   1566       1.1   thorpej 
   1567       1.1   thorpej 	/* now do the format */
   1568       1.1   thorpej 	fdstrategy(bp);
   1569       1.1   thorpej 
   1570       1.1   thorpej 	/* ...and wait for it to complete */
   1571       1.1   thorpej 	s = splbio();
   1572      1.15   tsutsui 	while (!(bp->b_flags & B_DONE)) {
   1573       1.1   thorpej 		rv = tsleep((caddr_t)bp, PRIBIO, "fdform", 20 * hz);
   1574       1.1   thorpej 		if (rv == EWOULDBLOCK)
   1575       1.1   thorpej 			break;
   1576       1.1   thorpej 	}
   1577       1.1   thorpej 	splx(s);
   1578      1.15   tsutsui 
   1579       1.1   thorpej 	if (rv == EWOULDBLOCK) {
   1580       1.1   thorpej 		/* timed out */
   1581       1.1   thorpej 		rv = EIO;
   1582       1.1   thorpej 		biodone(bp);
   1583       1.1   thorpej 	}
   1584       1.1   thorpej 	if(bp->b_flags & B_ERROR) {
   1585       1.1   thorpej 		rv = bp->b_error;
   1586       1.1   thorpej 	}
   1587       1.1   thorpej 	free(bp, M_TEMP);
   1588       1.1   thorpej 	return rv;
   1589       1.1   thorpej }
   1590       1.1   thorpej 
   1591       1.1   thorpej /*
   1592       1.1   thorpej  * Mountroot hook: prompt the user to enter the root file system
   1593       1.1   thorpej  * floppy.
   1594       1.1   thorpej  */
   1595       1.1   thorpej void
   1596       1.1   thorpej fd_mountroot_hook(dev)
   1597       1.1   thorpej 	struct device *dev;
   1598       1.1   thorpej {
   1599       1.1   thorpej 	int c;
   1600       1.1   thorpej 
   1601       1.1   thorpej 	printf("Insert filesystem floppy and press return.");
   1602       1.1   thorpej 	cnpollc(1);
   1603       1.1   thorpej 	for (;;) {
   1604       1.1   thorpej 		c = cngetc();
   1605       1.1   thorpej 		if ((c == '\r') || (c == '\n')) {
   1606       1.1   thorpej 			printf("\n");
   1607       1.1   thorpej 			break;
   1608       1.1   thorpej 		}
   1609       1.1   thorpej 	}
   1610       1.1   thorpej 	cnpollc(0);
   1611       1.1   thorpej }
   1612