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