Home | History | Annotate | Line # | Download | only in dev
fdc.c revision 1.34
      1  1.34  nakayama /*	$NetBSD: fdc.c,v 1.34 2011/03/12 11:43:38 nakayama Exp $	*/
      2   1.1   jnemeth 
      3   1.1   jnemeth /*-
      4   1.1   jnemeth  * Copyright (c) 2000 The NetBSD Foundation, Inc.
      5   1.1   jnemeth  * All rights reserved.
      6   1.1   jnemeth  *
      7   1.1   jnemeth  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1   jnemeth  * by Paul Kranenburg.
      9   1.1   jnemeth  *
     10   1.1   jnemeth  * Redistribution and use in source and binary forms, with or without
     11   1.1   jnemeth  * modification, are permitted provided that the following conditions
     12   1.1   jnemeth  * are met:
     13   1.1   jnemeth  * 1. Redistributions of source code must retain the above copyright
     14   1.1   jnemeth  *    notice, this list of conditions and the following disclaimer.
     15   1.1   jnemeth  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1   jnemeth  *    notice, this list of conditions and the following disclaimer in the
     17   1.1   jnemeth  *    documentation and/or other materials provided with the distribution.
     18   1.1   jnemeth  *
     19   1.1   jnemeth  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20   1.1   jnemeth  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21   1.1   jnemeth  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22   1.1   jnemeth  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23   1.1   jnemeth  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24   1.1   jnemeth  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25   1.1   jnemeth  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26   1.1   jnemeth  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27   1.1   jnemeth  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28   1.1   jnemeth  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29   1.1   jnemeth  * POSSIBILITY OF SUCH DAMAGE.
     30   1.1   jnemeth  */
     31   1.1   jnemeth 
     32   1.1   jnemeth /*-
     33   1.1   jnemeth  * Copyright (c) 1990 The Regents of the University of California.
     34   1.1   jnemeth  * All rights reserved.
     35   1.1   jnemeth  *
     36   1.1   jnemeth  * This code is derived from software contributed to Berkeley by
     37   1.1   jnemeth  * Don Ahn.
     38   1.1   jnemeth  *
     39   1.1   jnemeth  * Redistribution and use in source and binary forms, with or without
     40   1.1   jnemeth  * modification, are permitted provided that the following conditions
     41   1.1   jnemeth  * are met:
     42   1.1   jnemeth  * 1. Redistributions of source code must retain the above copyright
     43   1.1   jnemeth  *    notice, this list of conditions and the following disclaimer.
     44   1.1   jnemeth  * 2. Redistributions in binary form must reproduce the above copyright
     45   1.1   jnemeth  *    notice, this list of conditions and the following disclaimer in the
     46   1.1   jnemeth  *    documentation and/or other materials provided with the distribution.
     47   1.1   jnemeth  * 3. Neither the name of the University nor the names of its contributors
     48   1.1   jnemeth  *    may be used to endorse or promote products derived from this software
     49   1.1   jnemeth  *    without specific prior written permission.
     50   1.1   jnemeth  *
     51   1.1   jnemeth  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     52   1.1   jnemeth  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     53   1.1   jnemeth  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     54   1.1   jnemeth  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     55   1.1   jnemeth  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     56   1.1   jnemeth  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     57   1.1   jnemeth  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     58   1.1   jnemeth  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     59   1.1   jnemeth  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     60   1.1   jnemeth  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     61   1.1   jnemeth  * SUCH DAMAGE.
     62   1.1   jnemeth  *
     63   1.1   jnemeth  *	@(#)fd.c	7.4 (Berkeley) 5/25/91
     64   1.1   jnemeth  */
     65   1.1   jnemeth 
     66   1.1   jnemeth /*-
     67   1.1   jnemeth  * Copyright (c) 1993, 1994, 1995 Charles M. Hannum.
     68   1.1   jnemeth  *
     69   1.1   jnemeth  * This code is derived from software contributed to Berkeley by
     70   1.1   jnemeth  * Don Ahn.
     71   1.1   jnemeth  *
     72   1.1   jnemeth  * Redistribution and use in source and binary forms, with or without
     73   1.1   jnemeth  * modification, are permitted provided that the following conditions
     74   1.1   jnemeth  * are met:
     75   1.1   jnemeth  * 1. Redistributions of source code must retain the above copyright
     76   1.1   jnemeth  *    notice, this list of conditions and the following disclaimer.
     77   1.1   jnemeth  * 2. Redistributions in binary form must reproduce the above copyright
     78   1.1   jnemeth  *    notice, this list of conditions and the following disclaimer in the
     79   1.1   jnemeth  *    documentation and/or other materials provided with the distribution.
     80   1.1   jnemeth  * 3. All advertising materials mentioning features or use of this software
     81   1.1   jnemeth  *    must display the following acknowledgement:
     82   1.1   jnemeth  *	This product includes software developed by the University of
     83   1.1   jnemeth  *	California, Berkeley and its contributors.
     84   1.1   jnemeth  * 4. Neither the name of the University nor the names of its contributors
     85   1.1   jnemeth  *    may be used to endorse or promote products derived from this software
     86   1.1   jnemeth  *    without specific prior written permission.
     87   1.1   jnemeth  *
     88   1.1   jnemeth  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     89   1.1   jnemeth  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     90   1.1   jnemeth  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     91   1.1   jnemeth  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     92   1.1   jnemeth  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     93   1.1   jnemeth  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     94   1.1   jnemeth  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     95   1.1   jnemeth  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     96   1.1   jnemeth  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     97   1.1   jnemeth  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     98   1.1   jnemeth  * SUCH DAMAGE.
     99   1.1   jnemeth  *
    100   1.1   jnemeth  *	@(#)fd.c	7.4 (Berkeley) 5/25/91
    101   1.1   jnemeth  */
    102   1.1   jnemeth 
    103   1.1   jnemeth #include <sys/cdefs.h>
    104  1.34  nakayama __KERNEL_RCSID(0, "$NetBSD: fdc.c,v 1.34 2011/03/12 11:43:38 nakayama Exp $");
    105   1.1   jnemeth 
    106   1.1   jnemeth #include "opt_ddb.h"
    107   1.1   jnemeth #include "opt_md.h"
    108   1.1   jnemeth 
    109   1.1   jnemeth #include <sys/param.h>
    110  1.10   jnemeth #include <sys/types.h>
    111   1.1   jnemeth #include <sys/systm.h>
    112   1.1   jnemeth #include <sys/callout.h>
    113   1.1   jnemeth #include <sys/kernel.h>
    114   1.1   jnemeth #include <sys/file.h>
    115   1.1   jnemeth #include <sys/ioctl.h>
    116   1.1   jnemeth #include <sys/device.h>
    117   1.1   jnemeth #include <sys/disklabel.h>
    118   1.1   jnemeth #include <sys/disk.h>
    119   1.1   jnemeth #include <sys/fdio.h>
    120   1.1   jnemeth #include <sys/buf.h>
    121   1.1   jnemeth #include <sys/bufq.h>
    122   1.1   jnemeth #include <sys/malloc.h>
    123   1.1   jnemeth #include <sys/proc.h>
    124   1.1   jnemeth #include <sys/uio.h>
    125   1.1   jnemeth #include <sys/stat.h>
    126   1.1   jnemeth #include <sys/syslog.h>
    127   1.1   jnemeth #include <sys/queue.h>
    128   1.1   jnemeth #include <sys/conf.h>
    129  1.18        ad #include <sys/intr.h>
    130   1.1   jnemeth 
    131   1.1   jnemeth #include <dev/cons.h>
    132   1.1   jnemeth 
    133   1.1   jnemeth #include <uvm/uvm_extern.h>
    134   1.1   jnemeth 
    135   1.1   jnemeth #include <machine/autoconf.h>
    136   1.1   jnemeth 
    137   1.3   jnemeth #ifdef SUN4
    138   1.3   jnemeth #include <sparc/sparc/auxreg.h>
    139   1.3   jnemeth #include <sparc/dev/fdreg.h>
    140   1.3   jnemeth #include <sparc/dev/fdvar.h>
    141   1.3   jnemeth #elif SUN4U
    142   1.1   jnemeth #include <dev/ebus/ebusreg.h>
    143   1.1   jnemeth #include <dev/ebus/ebusvar.h>
    144  1.34  nakayama #include <dev/sbus/sbusvar.h>
    145   1.1   jnemeth #include <sparc64/dev/auxioreg.h>
    146   1.1   jnemeth #include <sparc64/dev/auxiovar.h>
    147   1.1   jnemeth #include <sparc64/dev/fdcreg.h>
    148   1.1   jnemeth #include <sparc64/dev/fdcvar.h>
    149   1.3   jnemeth #endif
    150   1.1   jnemeth 
    151   1.4   jnemeth #include <prop/proplib.h>
    152   1.4   jnemeth 
    153   1.1   jnemeth #define FDUNIT(dev)	(minor(dev) / 8)
    154   1.1   jnemeth #define FDTYPE(dev)	(minor(dev) % 8)
    155   1.1   jnemeth 
    156   1.2   reinoud /* (mis)use device use flag to identify format operation */
    157   1.2   reinoud #define B_FORMAT B_DEVPRIVATE
    158   1.1   jnemeth 
    159   1.1   jnemeth #define FD_DEBUG
    160   1.1   jnemeth #ifdef FD_DEBUG
    161   1.1   jnemeth int	fdc_debug = 0;
    162   1.1   jnemeth #endif
    163   1.1   jnemeth 
    164   1.1   jnemeth enum fdc_state {
    165   1.1   jnemeth 	DEVIDLE = 0,
    166   1.1   jnemeth 	MOTORWAIT,	/*  1 */
    167   1.1   jnemeth 	DOSEEK,		/*  2 */
    168   1.1   jnemeth 	SEEKWAIT,	/*  3 */
    169   1.1   jnemeth 	SEEKTIMEDOUT,	/*  4 */
    170   1.1   jnemeth 	SEEKCOMPLETE,	/*  5 */
    171   1.1   jnemeth 	DOIO,		/*  6 */
    172   1.1   jnemeth 	IOCOMPLETE,	/*  7 */
    173   1.1   jnemeth 	IOTIMEDOUT,	/*  8 */
    174   1.1   jnemeth 	IOCLEANUPWAIT,	/*  9 */
    175   1.1   jnemeth 	IOCLEANUPTIMEDOUT,/*10 */
    176   1.1   jnemeth 	DORESET,	/* 11 */
    177   1.1   jnemeth 	RESETCOMPLETE,	/* 12 */
    178   1.1   jnemeth 	RESETTIMEDOUT,	/* 13 */
    179   1.1   jnemeth 	DORECAL,	/* 14 */
    180   1.1   jnemeth 	RECALWAIT,	/* 15 */
    181   1.1   jnemeth 	RECALTIMEDOUT,	/* 16 */
    182   1.1   jnemeth 	RECALCOMPLETE,	/* 17 */
    183   1.1   jnemeth 	DODSKCHG,	/* 18 */
    184   1.1   jnemeth 	DSKCHGWAIT,	/* 19 */
    185   1.1   jnemeth 	DSKCHGTIMEDOUT,	/* 20 */
    186   1.1   jnemeth };
    187   1.1   jnemeth 
    188   1.1   jnemeth /* software state, per controller */
    189   1.1   jnemeth struct fdc_softc {
    190   1.1   jnemeth 	struct device	sc_dev;		/* boilerplate */
    191   1.1   jnemeth 	bus_space_tag_t	sc_bustag;
    192   1.1   jnemeth 
    193   1.1   jnemeth 	struct callout sc_timo_ch;	/* timeout callout */
    194   1.1   jnemeth 	struct callout sc_intr_ch;	/* pseudo-intr callout */
    195   1.1   jnemeth 
    196   1.1   jnemeth 	struct fd_softc *sc_fd[4];	/* pointers to children */
    197   1.1   jnemeth 	TAILQ_HEAD(drivehead, fd_softc) sc_drives;
    198   1.1   jnemeth 	enum fdc_state	sc_state;
    199   1.1   jnemeth 	int		sc_flags;
    200   1.1   jnemeth #define FDC_82077		0x01
    201   1.1   jnemeth #define FDC_NEEDHEADSETTLE	0x02
    202   1.1   jnemeth #define FDC_EIS			0x04
    203   1.1   jnemeth #define FDC_NEEDMOTORWAIT	0x08
    204   1.1   jnemeth #define FDC_NOEJECT		0x10
    205   1.1   jnemeth #define FDC_EBUS		0x20
    206   1.1   jnemeth 	int		sc_errors;		/* number of retries so far */
    207   1.1   jnemeth 	int		sc_overruns;		/* number of DMA overruns */
    208   1.1   jnemeth 	int		sc_cfg;			/* current configuration */
    209   1.1   jnemeth 	struct fdcio	sc_io;
    210   1.1   jnemeth #define sc_handle	sc_io.fdcio_handle
    211   1.1   jnemeth #define sc_reg_msr	sc_io.fdcio_reg_msr
    212   1.1   jnemeth #define sc_reg_fifo	sc_io.fdcio_reg_fifo
    213   1.1   jnemeth #define sc_reg_dor	sc_io.fdcio_reg_dor
    214   1.1   jnemeth #define sc_reg_dir	sc_io.fdcio_reg_dir
    215   1.1   jnemeth #define sc_reg_drs	sc_io.fdcio_reg_msr
    216   1.1   jnemeth #define sc_itask	sc_io.fdcio_itask
    217   1.1   jnemeth #define sc_istatus	sc_io.fdcio_istatus
    218   1.1   jnemeth #define sc_data		sc_io.fdcio_data
    219   1.1   jnemeth #define sc_tc		sc_io.fdcio_tc
    220   1.1   jnemeth #define sc_nstat	sc_io.fdcio_nstat
    221   1.1   jnemeth #define sc_status	sc_io.fdcio_status
    222   1.1   jnemeth #define sc_intrcnt	sc_io.fdcio_intrcnt
    223   1.1   jnemeth 
    224  1.17   jnemeth 	void		*sc_sicookie;	/* softint(9) cookie */
    225   1.1   jnemeth };
    226   1.1   jnemeth 
    227   1.3   jnemeth #ifdef SUN4
    228   1.1   jnemeth extern	struct fdcio	*fdciop;	/* I/O descriptor used in fdintr.s */
    229   1.1   jnemeth #endif
    230   1.1   jnemeth 
    231   1.1   jnemeth /* controller driver configuration */
    232   1.3   jnemeth #ifdef SUN4
    233   1.3   jnemeth int	fdcmatch_mainbus(struct device *, struct cfdata *, void*);
    234   1.3   jnemeth int	fdcmatch_obio(struct device *, struct cfdata *, void *);
    235   1.3   jnemeth void	fdcattach_mainbus(struct device *, struct device *, void *);
    236   1.3   jnemeth void	fdcattach_obio(struct device *, struct device *, void *);
    237   1.3   jnemeth #elif SUN4U
    238   1.1   jnemeth int	fdcmatch_sbus(struct device *, struct cfdata *, void *);
    239   1.1   jnemeth int	fdcmatch_ebus(struct device *, struct cfdata *, void *);
    240   1.1   jnemeth void	fdcattach_sbus(struct device *, struct device *, void *);
    241   1.1   jnemeth void	fdcattach_ebus(struct device *, struct device *, void *);
    242   1.3   jnemeth #endif
    243   1.1   jnemeth 
    244   1.1   jnemeth int	fdcattach(struct fdc_softc *, int);
    245   1.1   jnemeth 
    246   1.3   jnemeth #ifdef SUN4
    247   1.3   jnemeth CFATTACH_DECL(fdc_mainbus, sizeof(struct fdc_softc),
    248   1.3   jnemeth     fdcmatch_mainbus, fdcattach_mainbus, NULL, NULL);
    249   1.3   jnemeth 
    250   1.3   jnemeth CFATTACH_DECL(fdc_obio, sizeof(struct fdc_softc),
    251   1.3   jnemeth     fdcmatch_obio, fdcattach_obio, NULL, NULL);
    252   1.3   jnemeth #elif SUN4U
    253   1.1   jnemeth CFATTACH_DECL(fdc_sbus, sizeof(struct fdc_softc),
    254   1.1   jnemeth     fdcmatch_sbus, fdcattach_sbus, NULL, NULL);
    255   1.1   jnemeth 
    256   1.1   jnemeth CFATTACH_DECL(fdc_ebus, sizeof(struct fdc_softc),
    257   1.1   jnemeth     fdcmatch_ebus, fdcattach_ebus, NULL, NULL);
    258   1.3   jnemeth #endif
    259   1.1   jnemeth 
    260   1.1   jnemeth inline struct fd_type *fd_dev_to_type(struct fd_softc *, dev_t);
    261   1.1   jnemeth 
    262   1.1   jnemeth /*
    263   1.1   jnemeth  * Floppies come in various flavors, e.g., 1.2MB vs 1.44MB; here is how
    264   1.1   jnemeth  * we tell them apart.
    265   1.1   jnemeth  */
    266   1.1   jnemeth struct fd_type {
    267   1.1   jnemeth 	int	sectrac;	/* sectors per track */
    268   1.1   jnemeth 	int	heads;		/* number of heads */
    269   1.1   jnemeth 	int	seccyl;		/* sectors per cylinder */
    270   1.1   jnemeth 	int	secsize;	/* size code for sectors */
    271   1.1   jnemeth 	int	datalen;	/* data len when secsize = 0 */
    272   1.1   jnemeth 	int	steprate;	/* step rate and head unload time */
    273   1.1   jnemeth 	int	gap1;		/* gap len between sectors */
    274   1.1   jnemeth 	int	gap2;		/* formatting gap */
    275   1.1   jnemeth 	int	cylinders;	/* total num of cylinders */
    276   1.1   jnemeth 	int	size;		/* size of disk in sectors */
    277   1.1   jnemeth 	int	step;		/* steps per cylinder */
    278   1.1   jnemeth 	int	rate;		/* transfer speed code */
    279   1.1   jnemeth 	int	fillbyte;	/* format fill byte */
    280   1.1   jnemeth 	int	interleave;	/* interleave factor (formatting) */
    281   1.1   jnemeth 	const char *name;
    282   1.1   jnemeth };
    283   1.1   jnemeth 
    284   1.1   jnemeth /* The order of entries in the following table is important -- BEWARE! */
    285   1.1   jnemeth struct fd_type fd_types[] = {
    286   1.9   jnemeth 	{ 18,2,36,2,0xff,0xcf,0x1b,0x6c,80,2880,1,FDC_500KBPS,0xf6,1, "1.44MB"    }, /* 1.44MB diskette */
    287   1.1   jnemeth 	{  9,2,18,2,0xff,0xdf,0x2a,0x50,80,1440,1,FDC_250KBPS,0xf6,1, "720KB"    }, /* 3.5" 720kB diskette */
    288   1.1   jnemeth 	{  9,2,18,2,0xff,0xdf,0x2a,0x50,40, 720,2,FDC_250KBPS,0xf6,1, "360KB/x"  }, /* 360kB in 720kB drive */
    289   1.1   jnemeth 	{  8,2,16,3,0xff,0xdf,0x35,0x74,77,1232,1,FDC_500KBPS,0xf6,1, "1.2MB/NEC" } /* 1.2 MB japanese format */
    290   1.1   jnemeth };
    291   1.1   jnemeth 
    292   1.1   jnemeth /* software state, per disk (with up to 4 disks per ctlr) */
    293   1.1   jnemeth struct fd_softc {
    294   1.1   jnemeth 	struct device	sc_dv;		/* generic device info */
    295   1.1   jnemeth 	struct disk	sc_dk;		/* generic disk info */
    296   1.1   jnemeth 
    297   1.1   jnemeth 	struct fd_type *sc_deftype;	/* default type descriptor */
    298   1.1   jnemeth 	struct fd_type *sc_type;	/* current type descriptor */
    299   1.1   jnemeth 
    300   1.1   jnemeth 	struct callout sc_motoron_ch;
    301   1.1   jnemeth 	struct callout sc_motoroff_ch;
    302   1.1   jnemeth 
    303   1.1   jnemeth 	daddr_t	sc_blkno;	/* starting block number */
    304   1.1   jnemeth 	int sc_bcount;		/* byte count left */
    305   1.1   jnemeth 	int sc_skip;		/* bytes already transferred */
    306   1.1   jnemeth 	int sc_nblks;		/* number of blocks currently transferring */
    307   1.1   jnemeth 	int sc_nbytes;		/* number of bytes currently transferring */
    308   1.1   jnemeth 
    309   1.1   jnemeth 	int sc_drive;		/* physical unit number */
    310   1.1   jnemeth 	int sc_flags;
    311   1.1   jnemeth #define	FD_OPEN		0x01		/* it's open */
    312   1.1   jnemeth #define	FD_MOTOR	0x02		/* motor should be on */
    313   1.1   jnemeth #define	FD_MOTOR_WAIT	0x04		/* motor coming up */
    314   1.1   jnemeth 	int sc_cylin;		/* where we think the head is */
    315   1.1   jnemeth 	int sc_opts;		/* user-set options */
    316   1.1   jnemeth 
    317   1.1   jnemeth 	TAILQ_ENTRY(fd_softc) sc_drivechain;
    318   1.1   jnemeth 	int sc_ops;		/* I/O ops since last switch */
    319   1.1   jnemeth 	struct bufq_state *sc_q;/* pending I/O requests */
    320   1.1   jnemeth 	int sc_active;		/* number of active I/O requests */
    321   1.1   jnemeth };
    322   1.1   jnemeth 
    323   1.1   jnemeth /* floppy driver configuration */
    324   1.1   jnemeth int	fdmatch(struct device *, struct cfdata *, void *);
    325   1.1   jnemeth void	fdattach(struct device *, struct device *, void *);
    326  1.31   jnemeth bool	fdshutdown(device_t, int);
    327  1.33    dyoung bool	fdsuspend(device_t, const pmf_qual_t *);
    328   1.1   jnemeth 
    329   1.1   jnemeth CFATTACH_DECL(fd, sizeof(struct fd_softc),
    330   1.1   jnemeth     fdmatch, fdattach, NULL, NULL);
    331   1.1   jnemeth 
    332   1.1   jnemeth extern struct cfdriver fd_cd;
    333   1.1   jnemeth 
    334   1.1   jnemeth dev_type_open(fdopen);
    335   1.1   jnemeth dev_type_close(fdclose);
    336   1.1   jnemeth dev_type_read(fdread);
    337   1.1   jnemeth dev_type_write(fdwrite);
    338   1.1   jnemeth dev_type_ioctl(fdioctl);
    339   1.1   jnemeth dev_type_strategy(fdstrategy);
    340   1.1   jnemeth 
    341   1.1   jnemeth const struct bdevsw fd_bdevsw = {
    342   1.1   jnemeth 	fdopen, fdclose, fdstrategy, fdioctl, nodump, nosize, D_DISK
    343   1.1   jnemeth };
    344   1.1   jnemeth 
    345   1.1   jnemeth const struct cdevsw fd_cdevsw = {
    346   1.1   jnemeth 	fdopen, fdclose, fdread, fdwrite, fdioctl,
    347   1.1   jnemeth 	nostop, notty, nopoll, nommap, nokqfilter, D_DISK
    348   1.1   jnemeth };
    349   1.1   jnemeth 
    350   1.1   jnemeth void fdgetdisklabel(dev_t);
    351   1.1   jnemeth int fd_get_parms(struct fd_softc *);
    352   1.1   jnemeth void fdstrategy(struct buf *);
    353   1.1   jnemeth void fdstart(struct fd_softc *);
    354   1.1   jnemeth int fdprint(void *, const char *);
    355   1.1   jnemeth 
    356   1.1   jnemeth struct dkdriver fddkdriver = { fdstrategy, NULL };
    357   1.1   jnemeth 
    358   1.1   jnemeth struct	fd_type *fd_nvtotype(char *, int, int);
    359   1.1   jnemeth void	fd_set_motor(struct fdc_softc *);
    360   1.1   jnemeth void	fd_motor_off(void *);
    361   1.1   jnemeth void	fd_motor_on(void *);
    362   1.1   jnemeth int	fdcresult(struct fdc_softc *);
    363   1.1   jnemeth int	fdc_wrfifo(struct fdc_softc *, uint8_t);
    364   1.1   jnemeth void	fdcstart(struct fdc_softc *);
    365   1.1   jnemeth void	fdcstatus(struct fdc_softc *, const char *);
    366   1.1   jnemeth void	fdc_reset(struct fdc_softc *);
    367   1.1   jnemeth int	fdc_diskchange(struct fdc_softc *);
    368   1.1   jnemeth void	fdctimeout(void *);
    369   1.1   jnemeth void	fdcpseudointr(void *);
    370   1.1   jnemeth int	fdc_c_hwintr(void *);
    371   1.1   jnemeth void	fdchwintr(void);
    372   1.1   jnemeth void	fdcswintr(void *);
    373   1.1   jnemeth int	fdcstate(struct fdc_softc *);
    374   1.1   jnemeth void	fdcretry(struct fdc_softc *);
    375   1.1   jnemeth void	fdfinish(struct fd_softc *, struct buf *);
    376   1.1   jnemeth int	fdformat(dev_t, struct ne7_fd_formb *, struct proc *);
    377   1.1   jnemeth void	fd_do_eject(struct fd_softc *);
    378   1.1   jnemeth void	fd_mountroot_hook(struct device *);
    379   1.1   jnemeth static int fdconf(struct fdc_softc *);
    380   1.1   jnemeth static void establish_chip_type(
    381   1.1   jnemeth 		struct fdc_softc *,
    382   1.1   jnemeth 		bus_space_tag_t,
    383   1.1   jnemeth 		bus_addr_t,
    384   1.1   jnemeth 		bus_size_t,
    385   1.1   jnemeth 		bus_space_handle_t);
    386   1.4   jnemeth static void	fd_set_properties(struct fd_softc *);
    387   1.1   jnemeth 
    388   1.1   jnemeth #ifdef MEMORY_DISK_HOOKS
    389   1.6  christos int	fd_read_md_image(size_t *, void **);
    390   1.1   jnemeth #endif
    391   1.1   jnemeth 
    392   1.3   jnemeth #ifdef SUN4
    393   1.3   jnemeth #define OBP_FDNAME	(CPU_ISSUN4M ? "SUNW,fdtwo" : "fd")
    394   1.3   jnemeth 
    395   1.3   jnemeth int
    396   1.3   jnemeth fdcmatch_mainbus(struct device *parent, struct cfdata *match, void *aux)
    397   1.3   jnemeth {
    398   1.3   jnemeth 	struct mainbus_attach_args *ma = aux;
    399   1.3   jnemeth 
    400   1.3   jnemeth 	/*
    401   1.3   jnemeth 	 * Floppy controller is on mainbus on sun4c.
    402   1.3   jnemeth 	 */
    403   1.3   jnemeth 	if (!CPU_ISSUN4C)
    404   1.3   jnemeth 		return 0;
    405   1.3   jnemeth 
    406   1.3   jnemeth 	/* sun4c PROMs call the controller "fd" */
    407   1.3   jnemeth 	if (strcmp("fd", ma->ma_name) != 0)
    408   1.3   jnemeth 		return 0;
    409   1.3   jnemeth 
    410   1.3   jnemeth 	return bus_space_probe(ma->ma_bustag,
    411   1.3   jnemeth 			       ma->ma_paddr,
    412   1.3   jnemeth 			       1,	/* probe size */
    413   1.3   jnemeth 			       0,	/* offset */
    414   1.3   jnemeth 			       0,	/* flags */
    415   1.3   jnemeth 			       NULL, NULL);
    416   1.3   jnemeth }
    417   1.3   jnemeth 
    418   1.3   jnemeth int
    419   1.3   jnemeth fdcmatch_obio(struct device *parent, struct cfdata *match, void *aux)
    420   1.3   jnemeth {
    421   1.3   jnemeth 	union obio_attach_args *uoba = aux;
    422   1.3   jnemeth 	struct sbus_attach_args *sa;
    423   1.3   jnemeth 
    424   1.3   jnemeth 	/*
    425   1.3   jnemeth 	 * Floppy controller is on obio on sun4m.
    426   1.3   jnemeth 	 */
    427   1.3   jnemeth 	if (uoba->uoba_isobio4 != 0)
    428   1.3   jnemeth 		return 0;
    429   1.3   jnemeth 
    430   1.3   jnemeth 	sa = &uoba->uoba_sbus;
    431   1.3   jnemeth 
    432   1.3   jnemeth 	/* sun4m PROMs call the controller "SUNW,fdtwo" */
    433   1.3   jnemeth 	if (strcmp("SUNW,fdtwo", sa->sa_name) != 0)
    434   1.3   jnemeth 		return 0;
    435   1.3   jnemeth 
    436   1.3   jnemeth 	return bus_space_probe(sa->sa_bustag,
    437   1.3   jnemeth 			sbus_bus_addr(sa->sa_bustag,
    438   1.3   jnemeth 					sa->sa_slot, sa->sa_offset),
    439   1.3   jnemeth 			1,	/* probe size */
    440   1.3   jnemeth 			0,	/* offset */
    441   1.3   jnemeth 			0,	/* flags */
    442   1.3   jnemeth 			NULL, NULL);
    443   1.3   jnemeth }
    444   1.3   jnemeth 
    445   1.3   jnemeth #elif SUN4U
    446   1.3   jnemeth 
    447   1.1   jnemeth int
    448   1.1   jnemeth fdcmatch_sbus(struct device *parent, struct cfdata *match, void *aux)
    449   1.1   jnemeth {
    450   1.1   jnemeth 	struct sbus_attach_args *sa = aux;
    451   1.1   jnemeth 
    452   1.1   jnemeth 	return strcmp("SUNW,fdtwo", sa->sa_name) == 0;
    453   1.1   jnemeth }
    454   1.1   jnemeth 
    455   1.1   jnemeth int
    456   1.1   jnemeth fdcmatch_ebus(struct device *parent, struct cfdata *match, void *aux)
    457   1.1   jnemeth {
    458   1.1   jnemeth 	struct ebus_attach_args *ea = aux;
    459   1.1   jnemeth 
    460   1.1   jnemeth 	return strcmp("fdthree", ea->ea_name) == 0;
    461   1.1   jnemeth }
    462   1.3   jnemeth #endif
    463   1.1   jnemeth 
    464   1.1   jnemeth static void
    465   1.1   jnemeth establish_chip_type(struct fdc_softc *fdc,
    466   1.1   jnemeth 		    bus_space_tag_t tag, bus_addr_t addr, bus_size_t size,
    467   1.1   jnemeth 		    bus_space_handle_t handle)
    468   1.1   jnemeth {
    469   1.1   jnemeth 	uint8_t v;
    470   1.1   jnemeth 
    471   1.1   jnemeth 	/*
    472   1.1   jnemeth 	 * This hack from Chris Torek: apparently DOR really
    473   1.1   jnemeth 	 * addresses MSR/DRS on a 82072.
    474   1.1   jnemeth 	 * We used to rely on the VERSION command to tell the
    475   1.1   jnemeth 	 * difference (which did not work).
    476   1.1   jnemeth 	 */
    477   1.1   jnemeth 
    478   1.1   jnemeth 	/* First, check the size of the register bank */
    479   1.1   jnemeth 	if (size < 8)
    480   1.1   jnemeth 		/* It isn't a 82077 */
    481   1.1   jnemeth 		return;
    482   1.1   jnemeth 
    483   1.3   jnemeth #ifdef SUN4
    484   1.1   jnemeth 	/* Then probe the DOR register offset */
    485   1.1   jnemeth 	if (bus_space_probe(tag, addr,
    486   1.1   jnemeth 			    1,			/* probe size */
    487   1.1   jnemeth 			    FDREG77_DOR,	/* offset */
    488   1.1   jnemeth 			    0,			/* flags */
    489   1.1   jnemeth 			    NULL, NULL) == 0) {
    490   1.1   jnemeth 
    491   1.1   jnemeth 		/* It isn't a 82077 */
    492   1.1   jnemeth 		return;
    493   1.1   jnemeth 	}
    494   1.1   jnemeth #endif
    495   1.1   jnemeth 
    496   1.1   jnemeth 	v = bus_space_read_1(tag, handle, FDREG77_DOR);
    497   1.1   jnemeth 	if (v == NE7_RQM) {
    498   1.1   jnemeth 		/*
    499   1.1   jnemeth 		 * Value in DOR looks like it's really MSR
    500   1.1   jnemeth 		 */
    501   1.1   jnemeth 		bus_space_write_1(tag, handle, FDREG77_DOR, FDC_250KBPS);
    502   1.1   jnemeth 		v = bus_space_read_1(tag, handle, FDREG77_DOR);
    503   1.1   jnemeth 		if (v == NE7_RQM) {
    504   1.1   jnemeth 			/*
    505   1.1   jnemeth 			 * The value in the DOR didn't stick;
    506   1.1   jnemeth 			 * it isn't a 82077
    507   1.1   jnemeth 			 */
    508   1.1   jnemeth 			return;
    509   1.1   jnemeth 		}
    510   1.1   jnemeth 	}
    511   1.1   jnemeth 
    512   1.1   jnemeth 	fdc->sc_flags |= FDC_82077;
    513   1.1   jnemeth }
    514   1.1   jnemeth 
    515   1.1   jnemeth /*
    516   1.1   jnemeth  * Arguments passed between fdcattach and fdprobe.
    517   1.1   jnemeth  */
    518   1.1   jnemeth struct fdc_attach_args {
    519   1.1   jnemeth 	int fa_drive;
    520   1.1   jnemeth 	struct fd_type *fa_deftype;
    521   1.1   jnemeth };
    522   1.1   jnemeth 
    523   1.1   jnemeth /*
    524   1.1   jnemeth  * Print the location of a disk drive (called just before attaching the
    525   1.1   jnemeth  * the drive).  If `fdc' is not NULL, the drive was found but was not
    526   1.1   jnemeth  * in the system config file; print the drive name as well.
    527   1.1   jnemeth  * Return QUIET (config_find ignores this if the device was configured) to
    528   1.1   jnemeth  * avoid printing `fdN not configured' messages.
    529   1.1   jnemeth  */
    530   1.1   jnemeth int
    531   1.1   jnemeth fdprint(void *aux, const char *fdc)
    532   1.1   jnemeth {
    533   1.1   jnemeth 	register struct fdc_attach_args *fa = aux;
    534   1.1   jnemeth 
    535   1.1   jnemeth 	if (!fdc)
    536   1.1   jnemeth 		aprint_normal(" drive %d", fa->fa_drive);
    537   1.1   jnemeth 	return QUIET;
    538   1.1   jnemeth }
    539   1.1   jnemeth 
    540   1.1   jnemeth /*
    541   1.1   jnemeth  * Configure several parameters and features on the FDC.
    542   1.1   jnemeth  * Return 0 on success.
    543   1.1   jnemeth  */
    544   1.1   jnemeth static int
    545   1.1   jnemeth fdconf(struct fdc_softc *fdc)
    546   1.1   jnemeth {
    547   1.1   jnemeth 	int	vroom;
    548   1.1   jnemeth 
    549   1.1   jnemeth 	if (fdc_wrfifo(fdc, NE7CMD_DUMPREG) || fdcresult(fdc) != 10)
    550   1.1   jnemeth 		return -1;
    551   1.1   jnemeth 
    552   1.1   jnemeth 	/*
    553   1.1   jnemeth 	 * dumpreg[7] seems to be a motor-off timeout; set it to whatever
    554   1.1   jnemeth 	 * the PROM thinks is appropriate.
    555   1.1   jnemeth 	 */
    556   1.1   jnemeth 	if ((vroom = fdc->sc_status[7]) == 0)
    557   1.1   jnemeth 		vroom = 0x64;
    558   1.1   jnemeth 
    559   1.1   jnemeth 	/* Configure controller to use FIFO and Implied Seek */
    560   1.1   jnemeth 	if (fdc_wrfifo(fdc, NE7CMD_CFG) != 0)
    561   1.1   jnemeth 		return -1;
    562   1.1   jnemeth 	if (fdc_wrfifo(fdc, vroom) != 0)
    563   1.1   jnemeth 		return -1;
    564   1.1   jnemeth 	if (fdc_wrfifo(fdc, fdc->sc_cfg) != 0)
    565   1.1   jnemeth 		return -1;
    566   1.1   jnemeth 	if (fdc_wrfifo(fdc, 0) != 0)	/* PRETRK */
    567   1.1   jnemeth 		return -1;
    568   1.1   jnemeth 	/* No result phase for the NE7CMD_CFG command */
    569   1.1   jnemeth 
    570   1.1   jnemeth 	if ((fdc->sc_flags & FDC_82077) != 0) {
    571   1.1   jnemeth 		/* Lock configuration across soft resets. */
    572   1.1   jnemeth 		if (fdc_wrfifo(fdc, NE7CMD_LOCK | CFG_LOCK) != 0 ||
    573   1.1   jnemeth 		    fdcresult(fdc) != 1) {
    574   1.1   jnemeth #ifdef DEBUG
    575   1.1   jnemeth 			printf("fdconf: CFGLOCK failed");
    576   1.1   jnemeth #endif
    577   1.1   jnemeth 			return -1;
    578   1.1   jnemeth 		}
    579   1.1   jnemeth 	}
    580   1.1   jnemeth 
    581   1.1   jnemeth 	return 0;
    582   1.1   jnemeth #if 0
    583   1.1   jnemeth 	if (fdc_wrfifo(fdc, NE7CMD_VERSION) == 0 &&
    584   1.1   jnemeth 	    fdcresult(fdc) == 1 && fdc->sc_status[0] == 0x90) {
    585   1.1   jnemeth 		if (fdc_debug)
    586   1.1   jnemeth 			printf("[version cmd]");
    587   1.1   jnemeth 	}
    588   1.1   jnemeth #endif
    589   1.1   jnemeth }
    590   1.1   jnemeth 
    591   1.3   jnemeth #ifdef SUN4
    592   1.3   jnemeth void
    593   1.3   jnemeth fdcattach_mainbus(struct device *parent, struct device *self, void *aux)
    594   1.3   jnemeth {
    595   1.3   jnemeth 	struct fdc_softc *fdc = (void *)self;
    596   1.3   jnemeth 	struct mainbus_attach_args *ma = aux;
    597   1.3   jnemeth 
    598   1.3   jnemeth 	fdc->sc_bustag = ma->ma_bustag;
    599   1.3   jnemeth 
    600   1.3   jnemeth 	if (bus_space_map(
    601   1.3   jnemeth 			ma->ma_bustag,
    602   1.3   jnemeth 			ma->ma_paddr,
    603   1.3   jnemeth 			ma->ma_size,
    604   1.3   jnemeth 			BUS_SPACE_MAP_LINEAR,
    605   1.3   jnemeth 			&fdc->sc_handle) != 0) {
    606  1.21    cegger 		aprint_error_dev(self, "cannot map registers\n");
    607   1.3   jnemeth 		return;
    608   1.3   jnemeth 	}
    609   1.3   jnemeth 
    610   1.3   jnemeth 	establish_chip_type(fdc,
    611   1.3   jnemeth 			    ma->ma_bustag,
    612   1.3   jnemeth 			    ma->ma_paddr,
    613   1.3   jnemeth 			    ma->ma_size,
    614   1.3   jnemeth 			    fdc->sc_handle);
    615   1.3   jnemeth 
    616   1.3   jnemeth 	if (fdcattach(fdc, ma->ma_pri) != 0)
    617   1.3   jnemeth 		bus_space_unmap(ma->ma_bustag, fdc->sc_handle, ma->ma_size);
    618   1.3   jnemeth }
    619   1.3   jnemeth 
    620   1.3   jnemeth void
    621   1.3   jnemeth fdcattach_obio(struct device *parent, struct device *self, void *aux)
    622   1.3   jnemeth {
    623   1.3   jnemeth 	struct fdc_softc *fdc = (void *)self;
    624   1.3   jnemeth 	union obio_attach_args *uoba = aux;
    625   1.3   jnemeth 	struct sbus_attach_args *sa = &uoba->uoba_sbus;
    626   1.3   jnemeth 
    627   1.3   jnemeth 	if (sa->sa_nintr == 0) {
    628   1.3   jnemeth 		printf(": no interrupt line configured\n");
    629   1.3   jnemeth 		return;
    630   1.3   jnemeth 	}
    631   1.3   jnemeth 
    632   1.3   jnemeth 	fdc->sc_bustag = sa->sa_bustag;
    633   1.3   jnemeth 
    634   1.3   jnemeth 	if (sbus_bus_map(sa->sa_bustag,
    635   1.3   jnemeth 			 sa->sa_slot, sa->sa_offset, sa->sa_size,
    636   1.3   jnemeth 			 BUS_SPACE_MAP_LINEAR, &fdc->sc_handle) != 0) {
    637  1.21    cegger 		aprint_error_dev(self, "cannot map control registers\n");
    638   1.3   jnemeth 		return;
    639   1.3   jnemeth 	}
    640   1.3   jnemeth 
    641   1.3   jnemeth 	establish_chip_type(fdc,
    642   1.3   jnemeth 		sa->sa_bustag,
    643   1.3   jnemeth 		sbus_bus_addr(sa->sa_bustag, sa->sa_slot, sa->sa_offset),
    644   1.3   jnemeth 		sa->sa_size,
    645   1.3   jnemeth 		fdc->sc_handle);
    646   1.3   jnemeth 
    647   1.3   jnemeth 	if (strcmp(prom_getpropstring(sa->sa_node, "status"), "disabled") == 0) {
    648  1.12   jnemeth 		printf(": no drives attached\n");
    649   1.3   jnemeth 		return;
    650   1.3   jnemeth 	}
    651   1.3   jnemeth 
    652   1.3   jnemeth 	if (fdcattach(fdc, sa->sa_pri) != 0)
    653   1.3   jnemeth 		bus_space_unmap(sa->sa_bustag, fdc->sc_handle, sa->sa_size);
    654   1.3   jnemeth }
    655   1.3   jnemeth 
    656   1.3   jnemeth #elif SUN4U
    657   1.3   jnemeth 
    658   1.1   jnemeth void
    659   1.1   jnemeth fdcattach_sbus(struct device *parent, struct device *self, void *aux)
    660   1.1   jnemeth {
    661   1.1   jnemeth 	struct fdc_softc *fdc = (void *)self;
    662   1.1   jnemeth 	struct sbus_attach_args *sa = aux;
    663   1.1   jnemeth 
    664   1.1   jnemeth 	if (sa->sa_nintr == 0) {
    665   1.1   jnemeth 		printf(": no interrupt line configured\n");
    666   1.1   jnemeth 		return;
    667   1.1   jnemeth 	}
    668   1.1   jnemeth 
    669   1.1   jnemeth 	if (auxio_fd_control(0) != 0) {
    670   1.1   jnemeth 		printf(": can't attach before auxio\n");
    671   1.1   jnemeth 		return;
    672   1.1   jnemeth 	}
    673   1.1   jnemeth 
    674   1.1   jnemeth 	fdc->sc_bustag = sa->sa_bustag;
    675   1.1   jnemeth 
    676   1.1   jnemeth 	if (bus_space_map(sa->sa_bustag, BUS_ADDR(sa->sa_slot, sa->sa_offset),
    677   1.1   jnemeth 			  sa->sa_size, 0, &fdc->sc_handle) != 0) {
    678   1.1   jnemeth 		printf(": cannot map control registers\n");
    679   1.1   jnemeth 		return;
    680   1.1   jnemeth 	}
    681   1.1   jnemeth 
    682   1.1   jnemeth 	establish_chip_type(fdc,
    683   1.1   jnemeth 			    sa->sa_bustag,
    684   1.1   jnemeth 			    BUS_ADDR(sa->sa_slot, sa->sa_offset),
    685   1.1   jnemeth 			    sa->sa_size,
    686   1.1   jnemeth 			    fdc->sc_handle);
    687   1.1   jnemeth 
    688   1.1   jnemeth 	if (strcmp(prom_getpropstring(sa->sa_node, "status"), "disabled") == 0) {
    689   1.1   jnemeth 		printf(": no drives attached\n");
    690   1.1   jnemeth 		return;
    691   1.1   jnemeth 	}
    692   1.1   jnemeth 
    693   1.1   jnemeth 	if (prom_getproplen(sa->sa_node, "manual") >= 0)
    694   1.1   jnemeth 		fdc->sc_flags |= FDC_NOEJECT;
    695   1.1   jnemeth 
    696   1.1   jnemeth 
    697   1.1   jnemeth 	if (fdcattach(fdc, sa->sa_pri) != 0)
    698   1.1   jnemeth 		bus_space_unmap(sa->sa_bustag, fdc->sc_handle, sa->sa_size);
    699   1.1   jnemeth }
    700   1.1   jnemeth 
    701   1.1   jnemeth void
    702   1.1   jnemeth fdcattach_ebus(struct device *parent, struct device *self, void *aux)
    703   1.1   jnemeth {
    704   1.1   jnemeth 	struct fdc_softc *fdc = (void *)self;
    705   1.1   jnemeth 	struct ebus_attach_args *ea = aux;
    706   1.1   jnemeth 	int map_vaddr;
    707   1.1   jnemeth 
    708   1.1   jnemeth 	if (ea->ea_nintr == 0) {
    709   1.1   jnemeth 		printf(": no interrupt line configured\n");
    710   1.1   jnemeth 		return;
    711   1.1   jnemeth 	}
    712   1.1   jnemeth 
    713   1.1   jnemeth 	if (ea->ea_nreg < 3) {
    714   1.1   jnemeth 		printf(": expected 3 registers, only got %d\n",
    715   1.1   jnemeth 		    ea->ea_nreg);
    716   1.1   jnemeth 		return;
    717   1.1   jnemeth 	}
    718   1.1   jnemeth 
    719   1.1   jnemeth 	fdc->sc_bustag = ea->ea_bustag;
    720   1.1   jnemeth 
    721   1.1   jnemeth 	if (ea->ea_nvaddr > 0) {
    722   1.1   jnemeth 		sparc_promaddr_to_handle(ea->ea_bustag,
    723   1.1   jnemeth 		    ea->ea_vaddr[0], &fdc->sc_handle);
    724   1.1   jnemeth 		map_vaddr = 1;
    725   1.1   jnemeth 	} else if (bus_space_map(fdc->sc_bustag,
    726   1.1   jnemeth 	    EBUS_ADDR_FROM_REG(&ea->ea_reg[0]),
    727   1.1   jnemeth 	    ea->ea_reg[0].size, 0, &fdc->sc_handle) == 0) {
    728   1.1   jnemeth 		map_vaddr = 0;
    729   1.1   jnemeth 	} else {
    730   1.1   jnemeth 		printf(": can't map control registers\n");
    731   1.1   jnemeth 		return;
    732   1.1   jnemeth 	}
    733   1.1   jnemeth 
    734   1.1   jnemeth 	establish_chip_type(fdc,
    735   1.1   jnemeth 		fdc->sc_bustag,
    736   1.1   jnemeth 		map_vaddr ? ea->ea_vaddr[0] :
    737   1.1   jnemeth 		    EBUS_ADDR_FROM_REG(&ea->ea_reg[0]),
    738   1.1   jnemeth 		ea->ea_reg[0].size,
    739   1.1   jnemeth 		fdc->sc_handle);
    740   1.1   jnemeth 
    741   1.1   jnemeth 	fdc->sc_flags |= FDC_EBUS;
    742   1.1   jnemeth 
    743   1.1   jnemeth 	if (prom_getproplen(ea->ea_node, "manual") >= 0)
    744   1.1   jnemeth 		fdc->sc_flags |= FDC_NOEJECT;
    745   1.1   jnemeth 
    746   1.5   jnemeth 	if (fdcattach(fdc, ea->ea_intr[0]) != 0)
    747   1.5   jnemeth 		if (map_vaddr == 0)
    748   1.5   jnemeth 			bus_space_unmap(ea->ea_bustag, fdc->sc_handle,
    749   1.5   jnemeth 			    ea->ea_reg[0].size);
    750   1.1   jnemeth }
    751   1.3   jnemeth #endif
    752   1.1   jnemeth 
    753   1.1   jnemeth int
    754   1.1   jnemeth fdcattach(struct fdc_softc *fdc, int pri)
    755   1.1   jnemeth {
    756   1.1   jnemeth 	struct fdc_attach_args fa;
    757   1.1   jnemeth 	int drive_attached;
    758   1.1   jnemeth 	char code;
    759   1.1   jnemeth 
    760  1.13        ad 	callout_init(&fdc->sc_timo_ch, 0);
    761  1.13        ad 	callout_init(&fdc->sc_intr_ch, 0);
    762   1.1   jnemeth 
    763   1.1   jnemeth 	fdc->sc_state = DEVIDLE;
    764   1.1   jnemeth 	fdc->sc_itask = FDC_ITASK_NONE;
    765   1.1   jnemeth 	fdc->sc_istatus = FDC_ISTATUS_NONE;
    766   1.1   jnemeth 	fdc->sc_flags |= FDC_EIS;
    767   1.1   jnemeth 	TAILQ_INIT(&fdc->sc_drives);
    768   1.1   jnemeth 
    769   1.1   jnemeth 	if ((fdc->sc_flags & FDC_82077) != 0) {
    770   1.1   jnemeth 		fdc->sc_reg_msr = FDREG77_MSR;
    771   1.1   jnemeth 		fdc->sc_reg_fifo = FDREG77_FIFO;
    772   1.1   jnemeth 		fdc->sc_reg_dor = FDREG77_DOR;
    773   1.1   jnemeth 		fdc->sc_reg_dir = FDREG77_DIR;
    774   1.1   jnemeth 		code = '7';
    775   1.1   jnemeth 		fdc->sc_flags |= FDC_NEEDMOTORWAIT;
    776   1.1   jnemeth 	} else {
    777   1.1   jnemeth 		fdc->sc_reg_msr = FDREG72_MSR;
    778   1.1   jnemeth 		fdc->sc_reg_fifo = FDREG72_FIFO;
    779   1.1   jnemeth 		fdc->sc_reg_dor = 0;
    780   1.1   jnemeth 		code = '2';
    781   1.1   jnemeth 	}
    782   1.1   jnemeth 
    783   1.1   jnemeth 	/*
    784   1.1   jnemeth 	 * Configure controller; enable FIFO, Implied seek, no POLL mode?.
    785   1.1   jnemeth 	 * Note: CFG_EFIFO is active-low, initial threshold value: 8
    786   1.1   jnemeth 	 */
    787   1.1   jnemeth 	fdc->sc_cfg = CFG_EIS|/*CFG_EFIFO|*/CFG_POLL|(8 & CFG_THRHLD_MASK);
    788   1.1   jnemeth 	if (fdconf(fdc) != 0) {
    789   1.1   jnemeth 		printf(": no drives attached\n");
    790   1.1   jnemeth 		return -1;
    791   1.1   jnemeth 	}
    792   1.1   jnemeth 
    793  1.17   jnemeth 	fdc->sc_sicookie = softint_establish(SOFTINT_BIO, fdcswintr, fdc);
    794   1.1   jnemeth 	if (fdc->sc_sicookie == NULL) {
    795  1.21    cegger 		aprint_normal("\n");
    796  1.21    cegger 		aprint_error_dev(&fdc->sc_dev, "cannot register soft interrupt handler\n");
    797   1.5   jnemeth 		callout_stop(&fdc->sc_timo_ch);
    798   1.5   jnemeth 		callout_stop(&fdc->sc_intr_ch);
    799   1.1   jnemeth 		return -1;
    800   1.1   jnemeth 	}
    801   1.3   jnemeth #ifdef SUN4
    802   1.3   jnemeth 	printf(" softpri %d: chip 8207%c\n", IPL_SOFTFDC, code);
    803   1.3   jnemeth #elif SUN4U
    804   1.1   jnemeth 	printf(" softpri %d: chip 8207%c", PIL_FDSOFT, code);
    805   1.1   jnemeth 	if (fdc->sc_flags & FDC_NOEJECT)
    806   1.1   jnemeth 		printf(": manual eject");
    807   1.1   jnemeth 	printf("\n");
    808   1.3   jnemeth #endif
    809   1.1   jnemeth 
    810   1.5   jnemeth #ifdef SUN4
    811   1.5   jnemeth 	fdciop = &fdc->sc_io;
    812  1.12   jnemeth 	if (bus_intr_establish2(fdc->sc_bustag, pri, 0,
    813   1.5   jnemeth 				fdc_c_hwintr, fdc, fdchwintr) == NULL) {
    814   1.5   jnemeth #elif SUN4U
    815   1.5   jnemeth 	if (bus_intr_establish(fdc->sc_bustag, pri, IPL_BIO,
    816   1.5   jnemeth 				fdc_c_hwintr, fdc) == NULL) {
    817   1.5   jnemeth #endif
    818  1.21    cegger 		aprint_normal("\n");
    819  1.21    cegger 		aprint_error_dev(&fdc->sc_dev, "cannot register interrupt handler\n");
    820   1.5   jnemeth 		callout_stop(&fdc->sc_timo_ch);
    821   1.5   jnemeth 		callout_stop(&fdc->sc_intr_ch);
    822  1.17   jnemeth 		softint_disestablish(fdc->sc_sicookie);
    823   1.5   jnemeth 		return -1;
    824   1.5   jnemeth 	}
    825   1.5   jnemeth 
    826   1.1   jnemeth 	evcnt_attach_dynamic(&fdc->sc_intrcnt, EVCNT_TYPE_INTR, NULL,
    827  1.21    cegger 	    device_xname(&fdc->sc_dev), "intr");
    828   1.1   jnemeth 
    829   1.1   jnemeth 	/* physical limit: four drives per controller. */
    830   1.1   jnemeth 	drive_attached = 0;
    831   1.1   jnemeth 	for (fa.fa_drive = 0; fa.fa_drive < 4; fa.fa_drive++) {
    832   1.1   jnemeth 		fa.fa_deftype = NULL;		/* unknown */
    833   1.1   jnemeth 		fa.fa_deftype = &fd_types[0];	/* XXX */
    834   1.1   jnemeth 		if (config_found(&fdc->sc_dev, (void *)&fa, fdprint) != NULL)
    835   1.1   jnemeth 			drive_attached = 1;
    836   1.1   jnemeth 	}
    837   1.1   jnemeth 
    838   1.1   jnemeth 	if (drive_attached == 0) {
    839   1.1   jnemeth 		/* XXX - dis-establish interrupts here */
    840   1.1   jnemeth 		/* return -1; */
    841   1.1   jnemeth 	}
    842   1.1   jnemeth 
    843   1.1   jnemeth 	return 0;
    844   1.1   jnemeth }
    845   1.1   jnemeth 
    846   1.1   jnemeth int
    847   1.1   jnemeth fdmatch(struct device *parent, struct cfdata *match, void *aux)
    848   1.1   jnemeth {
    849   1.1   jnemeth 	struct fdc_softc *fdc = (void *)parent;
    850   1.1   jnemeth 	bus_space_tag_t t = fdc->sc_bustag;
    851   1.1   jnemeth 	bus_space_handle_t h = fdc->sc_handle;
    852   1.1   jnemeth 	struct fdc_attach_args *fa = aux;
    853   1.1   jnemeth 	int drive = fa->fa_drive;
    854   1.1   jnemeth 	int n, ok;
    855   1.1   jnemeth 
    856   1.1   jnemeth 	if (drive > 0)
    857   1.1   jnemeth 		/* XXX - for now, punt on more than one drive */
    858   1.1   jnemeth 		return 0;
    859   1.1   jnemeth 
    860   1.1   jnemeth 	if ((fdc->sc_flags & FDC_82077) != 0) {
    861   1.1   jnemeth 		/* select drive and turn on motor */
    862   1.1   jnemeth 		bus_space_write_1(t, h, fdc->sc_reg_dor,
    863   1.1   jnemeth 				  drive | FDO_FRST | FDO_MOEN(drive));
    864   1.1   jnemeth 		/* wait for motor to spin up */
    865   1.1   jnemeth 		delay(250000);
    866   1.3   jnemeth #ifdef SUN4
    867   1.1   jnemeth 	} else {
    868   1.1   jnemeth 		auxregbisc(AUXIO4C_FDS, 0);
    869   1.1   jnemeth #endif
    870   1.1   jnemeth 	}
    871   1.1   jnemeth 	fdc->sc_nstat = 0;
    872   1.1   jnemeth 	fdc_wrfifo(fdc, NE7CMD_RECAL);
    873   1.1   jnemeth 	fdc_wrfifo(fdc, drive);
    874   1.1   jnemeth 
    875   1.1   jnemeth 	/* Wait for recalibration to complete */
    876   1.1   jnemeth 	for (n = 0; n < 10000; n++) {
    877   1.1   jnemeth 		uint8_t v;
    878   1.1   jnemeth 
    879   1.1   jnemeth 		delay(1000);
    880   1.1   jnemeth 		v = bus_space_read_1(t, h, fdc->sc_reg_msr);
    881   1.1   jnemeth 		if ((v & (NE7_RQM|NE7_DIO|NE7_CB)) == NE7_RQM) {
    882   1.1   jnemeth 			/* wait a bit longer till device *really* is ready */
    883   1.1   jnemeth 			delay(100000);
    884   1.1   jnemeth 			if (fdc_wrfifo(fdc, NE7CMD_SENSEI))
    885   1.1   jnemeth 				break;
    886   1.1   jnemeth 			if (fdcresult(fdc) == 1 && fdc->sc_status[0] == 0x80)
    887   1.1   jnemeth 				/*
    888   1.1   jnemeth 				 * Got `invalid command'; we interpret it
    889   1.1   jnemeth 				 * to mean that the re-calibrate hasn't in
    890   1.1   jnemeth 				 * fact finished yet
    891   1.1   jnemeth 				 */
    892   1.1   jnemeth 				continue;
    893   1.1   jnemeth 			break;
    894   1.1   jnemeth 		}
    895   1.1   jnemeth 	}
    896   1.1   jnemeth 	n = fdc->sc_nstat;
    897   1.1   jnemeth #ifdef FD_DEBUG
    898   1.1   jnemeth 	if (fdc_debug) {
    899   1.1   jnemeth 		int i;
    900   1.1   jnemeth 		printf("fdprobe: %d stati:", n);
    901   1.1   jnemeth 		for (i = 0; i < n; i++)
    902   1.1   jnemeth 			printf(" 0x%x", fdc->sc_status[i]);
    903   1.1   jnemeth 		printf("\n");
    904   1.1   jnemeth 	}
    905   1.1   jnemeth #endif
    906   1.1   jnemeth 	ok = (n == 2 && (fdc->sc_status[0] & 0xf8) == 0x20) ? 1 : 0;
    907   1.1   jnemeth 
    908   1.1   jnemeth 	/* turn off motor */
    909   1.1   jnemeth 	if ((fdc->sc_flags & FDC_82077) != 0) {
    910   1.1   jnemeth 		/* deselect drive and turn motor off */
    911   1.1   jnemeth 		bus_space_write_1(t, h, fdc->sc_reg_dor, FDO_FRST | FDO_DS);
    912   1.3   jnemeth #ifdef SUN4
    913   1.1   jnemeth 	} else {
    914   1.1   jnemeth 		auxregbisc(0, AUXIO4C_FDS);
    915   1.1   jnemeth #endif
    916   1.1   jnemeth 	}
    917   1.1   jnemeth 
    918   1.1   jnemeth 	return ok;
    919   1.1   jnemeth }
    920   1.1   jnemeth 
    921   1.1   jnemeth /*
    922   1.1   jnemeth  * Controller is working, and drive responded.  Attach it.
    923   1.1   jnemeth  */
    924   1.1   jnemeth void
    925   1.1   jnemeth fdattach(struct device *parent, struct device *self, void *aux)
    926   1.1   jnemeth {
    927   1.1   jnemeth 	struct fdc_softc *fdc = (void *)parent;
    928   1.1   jnemeth 	struct fd_softc *fd = (void *)self;
    929   1.1   jnemeth 	struct fdc_attach_args *fa = aux;
    930   1.1   jnemeth 	struct fd_type *type = fa->fa_deftype;
    931   1.1   jnemeth 	int drive = fa->fa_drive;
    932   1.1   jnemeth 
    933  1.13        ad 	callout_init(&fd->sc_motoron_ch, 0);
    934  1.13        ad 	callout_init(&fd->sc_motoroff_ch, 0);
    935   1.1   jnemeth 
    936   1.1   jnemeth 	/* XXX Allow `flags' to override device type? */
    937   1.1   jnemeth 
    938   1.1   jnemeth 	if (type)
    939   1.1   jnemeth 		printf(": %s %d cyl, %d head, %d sec\n", type->name,
    940   1.1   jnemeth 		    type->cylinders, type->heads, type->sectrac);
    941   1.1   jnemeth 	else
    942   1.1   jnemeth 		printf(": density unknown\n");
    943   1.1   jnemeth 
    944   1.1   jnemeth 	bufq_alloc(&fd->sc_q, "disksort", BUFQ_SORT_CYLINDER);
    945   1.1   jnemeth 	fd->sc_cylin = -1;
    946   1.1   jnemeth 	fd->sc_drive = drive;
    947   1.1   jnemeth 	fd->sc_deftype = type;
    948   1.1   jnemeth 	fdc->sc_fd[drive] = fd;
    949   1.1   jnemeth 
    950   1.1   jnemeth 	fdc_wrfifo(fdc, NE7CMD_SPECIFY);
    951   1.1   jnemeth 	fdc_wrfifo(fdc, type->steprate);
    952   1.1   jnemeth 	/* XXX head load time == 6ms */
    953   1.1   jnemeth 	fdc_wrfifo(fdc, 6 | NE7_SPECIFY_NODMA);
    954   1.1   jnemeth 
    955   1.1   jnemeth 	/*
    956   1.1   jnemeth 	 * Initialize and attach the disk structure.
    957   1.1   jnemeth 	 */
    958  1.21    cegger 	disk_init(&fd->sc_dk, device_xname(&fd->sc_dv), &fddkdriver);
    959   1.1   jnemeth 	disk_attach(&fd->sc_dk);
    960   1.1   jnemeth 
    961   1.1   jnemeth 	/*
    962   1.1   jnemeth 	 * Establish a mountroot_hook anyway in case we booted
    963   1.1   jnemeth 	 * with RB_ASKNAME and get selected as the boot device.
    964   1.1   jnemeth 	 */
    965   1.1   jnemeth 	mountroothook_establish(fd_mountroot_hook, &fd->sc_dv);
    966   1.1   jnemeth 
    967   1.4   jnemeth 	fd_set_properties(fd);
    968   1.4   jnemeth 
    969   1.1   jnemeth 	/* Make sure the drive motor gets turned off at shutdown time. */
    970  1.31   jnemeth 	if (!pmf_device_register1(self, fdsuspend, NULL, fdshutdown))
    971  1.31   jnemeth 		aprint_error_dev(self, "couldn't establish power handler\n");
    972  1.31   jnemeth }
    973  1.31   jnemeth 
    974  1.31   jnemeth bool fdshutdown(device_t self, int how)
    975  1.31   jnemeth {
    976  1.31   jnemeth 	struct fd_softc *fd = device_private(self);
    977  1.31   jnemeth 
    978  1.31   jnemeth 	fd_motor_off(fd);
    979  1.31   jnemeth 	return true;
    980   1.1   jnemeth }
    981   1.1   jnemeth 
    982  1.33    dyoung bool fdsuspend(device_t self, const pmf_qual_t *qual)
    983  1.31   jnemeth {
    984  1.31   jnemeth 
    985  1.31   jnemeth 	return fdshutdown(self, boothowto);
    986  1.31   jnemeth }
    987  1.31   jnemeth 
    988  1.31   jnemeth 
    989   1.1   jnemeth inline struct fd_type *
    990   1.1   jnemeth fd_dev_to_type(struct fd_softc *fd, dev_t dev)
    991   1.1   jnemeth {
    992   1.1   jnemeth 	int type = FDTYPE(dev);
    993   1.1   jnemeth 
    994   1.1   jnemeth 	if (type > (sizeof(fd_types) / sizeof(fd_types[0])))
    995   1.1   jnemeth 		return NULL;
    996   1.1   jnemeth 	return type ? &fd_types[type - 1] : fd->sc_deftype;
    997   1.1   jnemeth }
    998   1.1   jnemeth 
    999   1.1   jnemeth void
   1000   1.1   jnemeth fdstrategy(struct buf *bp)
   1001   1.1   jnemeth {
   1002   1.1   jnemeth 	struct fd_softc *fd;
   1003   1.1   jnemeth 	int sz;
   1004   1.1   jnemeth  	int s;
   1005   1.1   jnemeth 
   1006   1.1   jnemeth 	/* Valid unit, controller, and request? */
   1007  1.23    cegger 	fd = device_lookup_private(&fd_cd, FDUNIT(bp->b_dev));
   1008  1.23    cegger 	if (fd == NULL) {
   1009  1.23    cegger 		bp->b_error = EINVAL;
   1010  1.23    cegger 		goto done;
   1011  1.23    cegger 	}
   1012  1.23    cegger 
   1013  1.23    cegger 	if (bp->b_blkno < 0 ||
   1014   1.1   jnemeth 	    (((bp->b_bcount % FD_BSIZE(fd)) != 0 ||
   1015   1.1   jnemeth 	      (bp->b_blkno * DEV_BSIZE) % FD_BSIZE(fd) != 0) &&
   1016   1.1   jnemeth 	     (bp->b_flags & B_FORMAT) == 0)) {
   1017   1.1   jnemeth 		bp->b_error = EINVAL;
   1018  1.14        ad 		goto done;
   1019   1.1   jnemeth 	}
   1020   1.1   jnemeth 
   1021   1.1   jnemeth 	/* If it's a null transfer, return immediately. */
   1022   1.1   jnemeth 	if (bp->b_bcount == 0)
   1023   1.1   jnemeth 		goto done;
   1024   1.1   jnemeth 
   1025   1.1   jnemeth 	sz = howmany(bp->b_bcount, DEV_BSIZE);
   1026   1.1   jnemeth 
   1027   1.1   jnemeth 	if (bp->b_blkno + sz > (fd->sc_type->size * DEV_BSIZE) / FD_BSIZE(fd)) {
   1028   1.1   jnemeth 		sz = (fd->sc_type->size * DEV_BSIZE) / FD_BSIZE(fd)
   1029   1.1   jnemeth 		     - bp->b_blkno;
   1030   1.1   jnemeth 		if (sz == 0) {
   1031   1.1   jnemeth 			/* If exactly at end of disk, return EOF. */
   1032   1.1   jnemeth 			bp->b_resid = bp->b_bcount;
   1033   1.1   jnemeth 			goto done;
   1034   1.1   jnemeth 		}
   1035   1.1   jnemeth 		if (sz < 0) {
   1036   1.1   jnemeth 			/* If past end of disk, return EINVAL. */
   1037   1.1   jnemeth 			bp->b_error = EINVAL;
   1038  1.14        ad 			goto done;
   1039   1.1   jnemeth 		}
   1040   1.1   jnemeth 		/* Otherwise, truncate request. */
   1041   1.1   jnemeth 		bp->b_bcount = sz << DEV_BSHIFT;
   1042   1.1   jnemeth 	}
   1043   1.1   jnemeth 
   1044   1.1   jnemeth 	bp->b_rawblkno = bp->b_blkno;
   1045   1.1   jnemeth  	bp->b_cylinder = (bp->b_blkno * DEV_BSIZE) /
   1046   1.1   jnemeth 		      (FD_BSIZE(fd) * fd->sc_type->seccyl);
   1047   1.1   jnemeth 
   1048   1.1   jnemeth #ifdef FD_DEBUG
   1049   1.1   jnemeth 	if (fdc_debug > 1)
   1050   1.9   jnemeth 	    printf("fdstrategy: b_blkno %lld b_bcount %d blkno %lld cylin %d sz %d\n",
   1051   1.1   jnemeth 		    (long long)bp->b_blkno, bp->b_bcount,
   1052   1.9   jnemeth 		    (long long)fd->sc_blkno, bp->b_cylinder, sz);
   1053   1.1   jnemeth #endif
   1054   1.1   jnemeth 
   1055   1.1   jnemeth 	/* Queue transfer on drive, activate drive and controller if idle. */
   1056   1.1   jnemeth 	s = splbio();
   1057  1.29      yamt 	bufq_put(fd->sc_q, bp);
   1058   1.1   jnemeth 	callout_stop(&fd->sc_motoroff_ch);		/* a good idea */
   1059   1.1   jnemeth 	if (fd->sc_active == 0)
   1060   1.1   jnemeth 		fdstart(fd);
   1061   1.1   jnemeth #ifdef DIAGNOSTIC
   1062   1.1   jnemeth 	else {
   1063   1.1   jnemeth 		struct fdc_softc *fdc = (void *)device_parent(&fd->sc_dv);
   1064   1.1   jnemeth 		if (fdc->sc_state == DEVIDLE) {
   1065   1.1   jnemeth 			printf("fdstrategy: controller inactive\n");
   1066   1.1   jnemeth 			fdcstart(fdc);
   1067   1.1   jnemeth 		}
   1068   1.1   jnemeth 	}
   1069   1.1   jnemeth #endif
   1070   1.1   jnemeth 	splx(s);
   1071   1.1   jnemeth 	return;
   1072   1.1   jnemeth 
   1073   1.1   jnemeth done:
   1074   1.1   jnemeth 	/* Toss transfer; we're done early. */
   1075   1.1   jnemeth 	biodone(bp);
   1076   1.1   jnemeth }
   1077   1.1   jnemeth 
   1078   1.1   jnemeth void
   1079   1.1   jnemeth fdstart(struct fd_softc *fd)
   1080   1.1   jnemeth {
   1081   1.1   jnemeth 	struct fdc_softc *fdc = (void *)device_parent(&fd->sc_dv);
   1082   1.1   jnemeth 	int active = fdc->sc_drives.tqh_first != 0;
   1083   1.1   jnemeth 
   1084   1.1   jnemeth 	/* Link into controller queue. */
   1085   1.1   jnemeth 	fd->sc_active = 1;
   1086   1.1   jnemeth 	TAILQ_INSERT_TAIL(&fdc->sc_drives, fd, sc_drivechain);
   1087   1.1   jnemeth 
   1088   1.1   jnemeth 	/* If controller not already active, start it. */
   1089   1.1   jnemeth 	if (!active)
   1090   1.1   jnemeth 		fdcstart(fdc);
   1091   1.1   jnemeth }
   1092   1.1   jnemeth 
   1093   1.1   jnemeth void
   1094   1.1   jnemeth fdfinish(struct fd_softc *fd, struct buf *bp)
   1095   1.1   jnemeth {
   1096   1.1   jnemeth 	struct fdc_softc *fdc = (void *)device_parent(&fd->sc_dv);
   1097   1.1   jnemeth 
   1098   1.1   jnemeth 	/*
   1099   1.1   jnemeth 	 * Move this drive to the end of the queue to give others a `fair'
   1100   1.1   jnemeth 	 * chance.  We only force a switch if N operations are completed while
   1101   1.1   jnemeth 	 * another drive is waiting to be serviced, since there is a long motor
   1102   1.1   jnemeth 	 * startup delay whenever we switch.
   1103   1.1   jnemeth 	 */
   1104  1.29      yamt 	(void)bufq_get(fd->sc_q);
   1105   1.1   jnemeth 	if (fd->sc_drivechain.tqe_next && ++fd->sc_ops >= 8) {
   1106   1.1   jnemeth 		fd->sc_ops = 0;
   1107   1.1   jnemeth 		TAILQ_REMOVE(&fdc->sc_drives, fd, sc_drivechain);
   1108  1.29      yamt 		if (bufq_peek(fd->sc_q) != NULL) {
   1109   1.1   jnemeth 			TAILQ_INSERT_TAIL(&fdc->sc_drives, fd, sc_drivechain);
   1110   1.1   jnemeth 		} else
   1111   1.1   jnemeth 			fd->sc_active = 0;
   1112   1.1   jnemeth 	}
   1113   1.1   jnemeth 	bp->b_resid = fd->sc_bcount;
   1114   1.1   jnemeth 	fd->sc_skip = 0;
   1115   1.1   jnemeth 
   1116   1.1   jnemeth 	biodone(bp);
   1117   1.1   jnemeth 	/* turn off motor 5s from now */
   1118   1.1   jnemeth 	callout_reset(&fd->sc_motoroff_ch, 5 * hz, fd_motor_off, fd);
   1119   1.1   jnemeth 	fdc->sc_state = DEVIDLE;
   1120   1.1   jnemeth }
   1121   1.1   jnemeth 
   1122   1.1   jnemeth void
   1123   1.1   jnemeth fdc_reset(struct fdc_softc *fdc)
   1124   1.1   jnemeth {
   1125   1.1   jnemeth 	bus_space_tag_t t = fdc->sc_bustag;
   1126   1.1   jnemeth 	bus_space_handle_t h = fdc->sc_handle;
   1127   1.1   jnemeth 
   1128   1.1   jnemeth 	if ((fdc->sc_flags & FDC_82077) != 0) {
   1129   1.1   jnemeth 		bus_space_write_1(t, h, fdc->sc_reg_dor,
   1130   1.1   jnemeth 				  FDO_FDMAEN | FDO_MOEN(0));
   1131   1.1   jnemeth 	}
   1132   1.1   jnemeth 
   1133   1.1   jnemeth 	bus_space_write_1(t, h, fdc->sc_reg_drs, DRS_RESET);
   1134   1.1   jnemeth 	delay(10);
   1135   1.1   jnemeth 	bus_space_write_1(t, h, fdc->sc_reg_drs, 0);
   1136   1.1   jnemeth 
   1137   1.1   jnemeth 	if ((fdc->sc_flags & FDC_82077) != 0) {
   1138   1.1   jnemeth 		bus_space_write_1(t, h, fdc->sc_reg_dor,
   1139   1.1   jnemeth 				  FDO_FRST | FDO_FDMAEN | FDO_DS);
   1140   1.1   jnemeth 	}
   1141   1.1   jnemeth #ifdef FD_DEBUG
   1142   1.1   jnemeth 	if (fdc_debug)
   1143   1.1   jnemeth 		printf("fdc reset\n");
   1144   1.1   jnemeth #endif
   1145   1.1   jnemeth }
   1146   1.1   jnemeth 
   1147   1.1   jnemeth void
   1148   1.1   jnemeth fd_set_motor(struct fdc_softc *fdc)
   1149   1.1   jnemeth {
   1150   1.1   jnemeth 	struct fd_softc *fd;
   1151   1.1   jnemeth 	u_char status;
   1152   1.1   jnemeth 	int n;
   1153   1.1   jnemeth 
   1154   1.1   jnemeth 	if ((fdc->sc_flags & FDC_82077) != 0) {
   1155   1.1   jnemeth 		status = FDO_FRST | FDO_FDMAEN;
   1156   1.1   jnemeth 		if ((fd = fdc->sc_drives.tqh_first) != NULL)
   1157   1.1   jnemeth 			status |= fd->sc_drive;
   1158   1.1   jnemeth 
   1159   1.1   jnemeth 		for (n = 0; n < 4; n++)
   1160   1.1   jnemeth 			if ((fd = fdc->sc_fd[n]) && (fd->sc_flags & FD_MOTOR))
   1161   1.1   jnemeth 				status |= FDO_MOEN(n);
   1162   1.1   jnemeth 		bus_space_write_1(fdc->sc_bustag, fdc->sc_handle,
   1163   1.1   jnemeth 				  fdc->sc_reg_dor, status);
   1164   1.3   jnemeth #ifdef SUN4
   1165   1.1   jnemeth 	} else {
   1166   1.1   jnemeth 
   1167   1.1   jnemeth 		for (n = 0; n < 4; n++) {
   1168   1.1   jnemeth 			if ((fd = fdc->sc_fd[n]) != NULL  &&
   1169   1.1   jnemeth 			    (fd->sc_flags & FD_MOTOR) != 0) {
   1170   1.1   jnemeth 				auxregbisc(AUXIO4C_FDS, 0);
   1171   1.1   jnemeth 				return;
   1172   1.1   jnemeth 			}
   1173   1.1   jnemeth 		}
   1174   1.1   jnemeth 		auxregbisc(0, AUXIO4C_FDS);
   1175   1.1   jnemeth #endif
   1176   1.1   jnemeth 	}
   1177   1.1   jnemeth }
   1178   1.1   jnemeth 
   1179   1.1   jnemeth void
   1180   1.1   jnemeth fd_motor_off(void *arg)
   1181   1.1   jnemeth {
   1182   1.1   jnemeth 	struct fd_softc *fd = arg;
   1183   1.1   jnemeth 	int s;
   1184   1.1   jnemeth 
   1185   1.1   jnemeth 	s = splbio();
   1186   1.1   jnemeth 	fd->sc_flags &= ~(FD_MOTOR | FD_MOTOR_WAIT);
   1187   1.1   jnemeth 	fd_set_motor((struct fdc_softc *)device_parent(&fd->sc_dv));
   1188   1.1   jnemeth 	splx(s);
   1189   1.1   jnemeth }
   1190   1.1   jnemeth 
   1191   1.1   jnemeth void
   1192   1.1   jnemeth fd_motor_on(void *arg)
   1193   1.1   jnemeth {
   1194   1.1   jnemeth 	struct fd_softc *fd = arg;
   1195   1.1   jnemeth 	struct fdc_softc *fdc = (void *)device_parent(&fd->sc_dv);
   1196   1.1   jnemeth 	int s;
   1197   1.1   jnemeth 
   1198   1.1   jnemeth 	s = splbio();
   1199   1.1   jnemeth 	fd->sc_flags &= ~FD_MOTOR_WAIT;
   1200   1.1   jnemeth 	if ((fdc->sc_drives.tqh_first == fd) && (fdc->sc_state == MOTORWAIT))
   1201   1.5   jnemeth 		(void)fdcstate(fdc);
   1202   1.1   jnemeth 	splx(s);
   1203   1.1   jnemeth }
   1204   1.1   jnemeth 
   1205   1.1   jnemeth /*
   1206   1.1   jnemeth  * Get status bytes off the FDC after a command has finished
   1207   1.1   jnemeth  * Returns the number of status bytes read; -1 on error.
   1208   1.1   jnemeth  * The return value is also stored in `sc_nstat'.
   1209   1.1   jnemeth  */
   1210   1.1   jnemeth int
   1211   1.1   jnemeth fdcresult(struct fdc_softc *fdc)
   1212   1.1   jnemeth {
   1213   1.1   jnemeth 	bus_space_tag_t t = fdc->sc_bustag;
   1214   1.1   jnemeth 	bus_space_handle_t h = fdc->sc_handle;
   1215   1.1   jnemeth 	int j, n = 0;
   1216   1.1   jnemeth 
   1217   1.1   jnemeth 	for (j = 10000; j; j--) {
   1218   1.1   jnemeth 		uint8_t v = bus_space_read_1(t, h, fdc->sc_reg_msr);
   1219   1.1   jnemeth 		v &= (NE7_DIO | NE7_RQM | NE7_CB);
   1220   1.1   jnemeth 		if (v == NE7_RQM)
   1221   1.1   jnemeth 			return fdc->sc_nstat = n;
   1222   1.1   jnemeth 		if (v == (NE7_DIO | NE7_RQM | NE7_CB)) {
   1223   1.1   jnemeth 			if (n >= sizeof(fdc->sc_status)) {
   1224   1.1   jnemeth 				log(LOG_ERR, "fdcresult: overrun\n");
   1225   1.1   jnemeth 				return -1;
   1226   1.1   jnemeth 			}
   1227   1.1   jnemeth 			fdc->sc_status[n++] =
   1228   1.1   jnemeth 				bus_space_read_1(t, h, fdc->sc_reg_fifo);
   1229   1.1   jnemeth 		} else
   1230   1.1   jnemeth 			delay(1);
   1231   1.1   jnemeth 	}
   1232   1.1   jnemeth 
   1233   1.1   jnemeth 	log(LOG_ERR, "fdcresult: timeout\n");
   1234   1.1   jnemeth 	return fdc->sc_nstat = -1;
   1235   1.1   jnemeth }
   1236   1.1   jnemeth 
   1237   1.1   jnemeth /*
   1238   1.1   jnemeth  * Write a command byte to the FDC.
   1239   1.1   jnemeth  * Returns 0 on success; -1 on failure (i.e. timeout)
   1240   1.1   jnemeth  */
   1241   1.1   jnemeth int
   1242   1.1   jnemeth fdc_wrfifo(struct fdc_softc *fdc, uint8_t x)
   1243   1.1   jnemeth {
   1244   1.1   jnemeth 	bus_space_tag_t t = fdc->sc_bustag;
   1245   1.1   jnemeth 	bus_space_handle_t h = fdc->sc_handle;
   1246   1.1   jnemeth 	int i;
   1247   1.1   jnemeth 
   1248   1.1   jnemeth 	for (i = 100000; i-- > 0;) {
   1249   1.1   jnemeth 		uint8_t v = bus_space_read_1(t, h, fdc->sc_reg_msr);
   1250   1.1   jnemeth 		if ((v & (NE7_DIO|NE7_RQM)) == NE7_RQM) {
   1251   1.1   jnemeth 			/* The chip is ready */
   1252   1.1   jnemeth 			bus_space_write_1(t, h, fdc->sc_reg_fifo, x);
   1253   1.1   jnemeth 			return 0;
   1254   1.1   jnemeth 		}
   1255   1.1   jnemeth 		delay(1);
   1256   1.1   jnemeth 	}
   1257   1.1   jnemeth 	return -1;
   1258   1.1   jnemeth }
   1259   1.1   jnemeth 
   1260   1.1   jnemeth int
   1261   1.1   jnemeth fdc_diskchange(struct fdc_softc *fdc)
   1262   1.1   jnemeth {
   1263   1.1   jnemeth 
   1264   1.3   jnemeth #ifdef SUN4
   1265   1.1   jnemeth 	if (CPU_ISSUN4M && (fdc->sc_flags & FDC_82077) != 0) {
   1266   1.1   jnemeth #endif
   1267   1.1   jnemeth 		bus_space_tag_t t = fdc->sc_bustag;
   1268   1.1   jnemeth 		bus_space_handle_t h = fdc->sc_handle;
   1269   1.1   jnemeth 		uint8_t v = bus_space_read_1(t, h, fdc->sc_reg_dir);
   1270   1.1   jnemeth 		return (v & FDI_DCHG) != 0;
   1271   1.3   jnemeth #ifdef SUN4
   1272   1.1   jnemeth 	} else if (CPU_ISSUN4C) {
   1273   1.1   jnemeth 		return (*AUXIO4C_REG & AUXIO4C_FDC) != 0;
   1274   1.1   jnemeth 	}
   1275   1.1   jnemeth 	return 0;
   1276   1.1   jnemeth #endif
   1277   1.1   jnemeth }
   1278   1.1   jnemeth 
   1279   1.1   jnemeth int
   1280   1.1   jnemeth fdopen(dev_t dev, int flags, int fmt, struct lwp *l)
   1281   1.1   jnemeth {
   1282  1.23    cegger  	int pmask;
   1283   1.1   jnemeth 	struct fd_softc *fd;
   1284   1.1   jnemeth 	struct fd_type *type;
   1285   1.1   jnemeth 
   1286  1.23    cegger 	fd = device_lookup_private(&fd_cd, FDUNIT(dev));
   1287   1.1   jnemeth 	if (fd == NULL)
   1288   1.1   jnemeth 		return ENXIO;
   1289   1.1   jnemeth 	type = fd_dev_to_type(fd, dev);
   1290   1.1   jnemeth 	if (type == NULL)
   1291   1.1   jnemeth 		return ENXIO;
   1292   1.1   jnemeth 
   1293   1.1   jnemeth 	if ((fd->sc_flags & FD_OPEN) != 0 &&
   1294   1.1   jnemeth 	    fd->sc_type != type)
   1295   1.1   jnemeth 		return EBUSY;
   1296   1.1   jnemeth 
   1297   1.1   jnemeth 	fd->sc_type = type;
   1298   1.1   jnemeth 	fd->sc_cylin = -1;
   1299   1.1   jnemeth 	fd->sc_flags |= FD_OPEN;
   1300   1.1   jnemeth 
   1301   1.1   jnemeth 	/*
   1302   1.1   jnemeth 	 * Only update the disklabel if we're not open anywhere else.
   1303   1.1   jnemeth 	 */
   1304   1.1   jnemeth 	if (fd->sc_dk.dk_openmask == 0)
   1305   1.1   jnemeth 		fdgetdisklabel(dev);
   1306   1.1   jnemeth 
   1307   1.1   jnemeth 	pmask = (1 << DISKPART(dev));
   1308   1.1   jnemeth 
   1309   1.1   jnemeth 	switch (fmt) {
   1310   1.1   jnemeth 	case S_IFCHR:
   1311   1.1   jnemeth 		fd->sc_dk.dk_copenmask |= pmask;
   1312   1.1   jnemeth 		break;
   1313   1.1   jnemeth 
   1314   1.1   jnemeth 	case S_IFBLK:
   1315   1.1   jnemeth 		fd->sc_dk.dk_bopenmask |= pmask;
   1316   1.1   jnemeth 		break;
   1317   1.1   jnemeth 	}
   1318   1.1   jnemeth 	fd->sc_dk.dk_openmask =
   1319   1.1   jnemeth 	    fd->sc_dk.dk_copenmask | fd->sc_dk.dk_bopenmask;
   1320   1.1   jnemeth 
   1321   1.1   jnemeth 	return 0;
   1322   1.1   jnemeth }
   1323   1.1   jnemeth 
   1324   1.1   jnemeth int
   1325   1.1   jnemeth fdclose(dev_t dev, int flags, int fmt, struct lwp *l)
   1326   1.1   jnemeth {
   1327  1.25   jnemeth 	struct fd_softc *fd = device_lookup_private(&fd_cd, FDUNIT(dev));
   1328   1.1   jnemeth 	int pmask = (1 << DISKPART(dev));
   1329   1.1   jnemeth 
   1330   1.1   jnemeth 	fd->sc_flags &= ~FD_OPEN;
   1331   1.1   jnemeth 	fd->sc_opts &= ~(FDOPT_NORETRY|FDOPT_SILENT);
   1332   1.1   jnemeth 
   1333   1.1   jnemeth 	switch (fmt) {
   1334   1.1   jnemeth 	case S_IFCHR:
   1335   1.1   jnemeth 		fd->sc_dk.dk_copenmask &= ~pmask;
   1336   1.1   jnemeth 		break;
   1337   1.1   jnemeth 
   1338   1.1   jnemeth 	case S_IFBLK:
   1339   1.1   jnemeth 		fd->sc_dk.dk_bopenmask &= ~pmask;
   1340   1.1   jnemeth 		break;
   1341   1.1   jnemeth 	}
   1342   1.1   jnemeth 	fd->sc_dk.dk_openmask =
   1343   1.1   jnemeth 	    fd->sc_dk.dk_copenmask | fd->sc_dk.dk_bopenmask;
   1344   1.1   jnemeth 
   1345   1.1   jnemeth 	return 0;
   1346   1.1   jnemeth }
   1347   1.1   jnemeth 
   1348   1.1   jnemeth int
   1349   1.1   jnemeth fdread(dev_t dev, struct uio *uio, int flag)
   1350   1.1   jnemeth {
   1351   1.1   jnemeth 
   1352   1.1   jnemeth         return physio(fdstrategy, NULL, dev, B_READ, minphys, uio);
   1353   1.1   jnemeth }
   1354   1.1   jnemeth 
   1355   1.1   jnemeth int
   1356   1.1   jnemeth fdwrite(dev_t dev, struct uio *uio, int flag)
   1357   1.1   jnemeth {
   1358   1.1   jnemeth 
   1359   1.1   jnemeth         return physio(fdstrategy, NULL, dev, B_WRITE, minphys, uio);
   1360   1.1   jnemeth }
   1361   1.1   jnemeth 
   1362   1.1   jnemeth void
   1363   1.1   jnemeth fdcstart(struct fdc_softc *fdc)
   1364   1.1   jnemeth {
   1365   1.1   jnemeth 
   1366   1.1   jnemeth #ifdef DIAGNOSTIC
   1367   1.1   jnemeth 	/* only got here if controller's drive queue was inactive; should
   1368   1.1   jnemeth 	   be in idle state */
   1369   1.1   jnemeth 	if (fdc->sc_state != DEVIDLE) {
   1370   1.1   jnemeth 		printf("fdcstart: not idle\n");
   1371   1.1   jnemeth 		return;
   1372   1.1   jnemeth 	}
   1373   1.1   jnemeth #endif
   1374   1.1   jnemeth 	(void)fdcstate(fdc);
   1375   1.1   jnemeth }
   1376   1.1   jnemeth 
   1377  1.26  christos static void
   1378  1.26  christos fdcpstatus(struct fdc_softc *fdc)
   1379  1.26  christos {
   1380  1.26  christos 	char bits[64];
   1381  1.26  christos 
   1382  1.26  christos 	snprintb(bits, sizeof(bits), NE7_ST0BITS, fdc->sc_status[0]);
   1383  1.26  christos 	printf(" (st0 %s", bits);
   1384  1.26  christos 	snprintb(bits, sizeof(bits), NE7_ST1BITS, fdc->sc_status[1]);
   1385  1.26  christos 	printf(" st1 %s", bits);
   1386  1.26  christos 	snprintb(bits, sizeof(bits), NE7_ST2BITS, fdc->sc_status[2]);
   1387  1.26  christos 	printf(" st2 %s", bits);
   1388  1.26  christos 	printf(" cyl %d head %d sec %d)\n",
   1389  1.26  christos 	    fdc->sc_status[3], fdc->sc_status[4], fdc->sc_status[5]);
   1390  1.26  christos }
   1391  1.26  christos 
   1392   1.1   jnemeth void
   1393   1.1   jnemeth fdcstatus(struct fdc_softc *fdc, const char *s)
   1394   1.1   jnemeth {
   1395   1.1   jnemeth 	struct fd_softc *fd = fdc->sc_drives.tqh_first;
   1396   1.1   jnemeth 	int n;
   1397   1.1   jnemeth 	char bits[64];
   1398   1.1   jnemeth 
   1399   1.1   jnemeth 	/* Just print last status */
   1400   1.1   jnemeth 	n = fdc->sc_nstat;
   1401   1.1   jnemeth 
   1402   1.1   jnemeth #if 0
   1403   1.1   jnemeth 	/*
   1404   1.1   jnemeth 	 * A 82072 seems to return <invalid command> on
   1405   1.1   jnemeth 	 * gratuitous Sense Interrupt commands.
   1406   1.1   jnemeth 	 */
   1407   1.1   jnemeth 	if (n == 0 && (fdc->sc_flags & FDC_82077) != 0) {
   1408   1.1   jnemeth 		fdc_wrfifo(fdc, NE7CMD_SENSEI);
   1409   1.1   jnemeth 		(void)fdcresult(fdc);
   1410   1.1   jnemeth 		n = 2;
   1411   1.1   jnemeth 	}
   1412   1.1   jnemeth #endif
   1413   1.1   jnemeth 
   1414   1.1   jnemeth 	printf("%s: %s: state %d",
   1415  1.21    cegger 		fd ? device_xname(&fd->sc_dv) : "fdc", s, fdc->sc_state);
   1416   1.1   jnemeth 
   1417   1.1   jnemeth 	switch (n) {
   1418   1.1   jnemeth 	case 0:
   1419   1.1   jnemeth 		printf("\n");
   1420   1.1   jnemeth 		break;
   1421   1.1   jnemeth 	case 2:
   1422  1.26  christos 		snprintb(bits, sizeof(bits), NE7_ST0BITS, fdc->sc_status[0]);
   1423  1.26  christos 		printf(" (st0 %s cyl %d)\n", bits, fdc->sc_status[1]);
   1424   1.1   jnemeth 		break;
   1425   1.1   jnemeth 	case 7:
   1426  1.27    cegger 		fdcpstatus(fdc);
   1427   1.1   jnemeth 		break;
   1428   1.1   jnemeth #ifdef DIAGNOSTIC
   1429   1.1   jnemeth 	default:
   1430   1.1   jnemeth 		printf(" fdcstatus: weird size: %d\n", n);
   1431   1.1   jnemeth 		break;
   1432   1.1   jnemeth #endif
   1433   1.1   jnemeth 	}
   1434   1.1   jnemeth }
   1435   1.1   jnemeth 
   1436   1.1   jnemeth void
   1437   1.1   jnemeth fdctimeout(void *arg)
   1438   1.1   jnemeth {
   1439   1.1   jnemeth 	struct fdc_softc *fdc = arg;
   1440   1.1   jnemeth 	struct fd_softc *fd;
   1441   1.1   jnemeth 	int s;
   1442   1.1   jnemeth 
   1443   1.1   jnemeth 	s = splbio();
   1444   1.1   jnemeth 	fd = fdc->sc_drives.tqh_first;
   1445   1.1   jnemeth 	if (fd == NULL) {
   1446  1.21    cegger 		aprint_error_dev(&fdc->sc_dev, "timeout but no I/O pending: state %d, istatus=%d\n",
   1447   1.1   jnemeth 			fdc->sc_state, fdc->sc_istatus);
   1448   1.1   jnemeth 		fdc->sc_state = DEVIDLE;
   1449   1.1   jnemeth 		goto out;
   1450   1.1   jnemeth 	}
   1451   1.1   jnemeth 
   1452  1.29      yamt 	if (bufq_peek(fd->sc_q) != NULL)
   1453   1.1   jnemeth 		fdc->sc_state++;
   1454   1.1   jnemeth 	else
   1455   1.1   jnemeth 		fdc->sc_state = DEVIDLE;
   1456   1.1   jnemeth 
   1457   1.1   jnemeth 	(void)fdcstate(fdc);
   1458   1.1   jnemeth out:
   1459   1.1   jnemeth 	splx(s);
   1460   1.1   jnemeth 
   1461   1.1   jnemeth }
   1462   1.1   jnemeth 
   1463   1.1   jnemeth void
   1464   1.1   jnemeth fdcpseudointr(void *arg)
   1465   1.1   jnemeth {
   1466   1.1   jnemeth 	struct fdc_softc *fdc = arg;
   1467   1.1   jnemeth 	int s;
   1468   1.1   jnemeth 
   1469   1.1   jnemeth 	/* Just ensure it has the right spl. */
   1470   1.1   jnemeth 	s = splbio();
   1471   1.1   jnemeth 	(void)fdcstate(fdc);
   1472   1.1   jnemeth 	splx(s);
   1473   1.1   jnemeth }
   1474   1.1   jnemeth 
   1475   1.1   jnemeth 
   1476   1.1   jnemeth /*
   1477   1.1   jnemeth  * hardware interrupt entry point: used only if no `fast trap' * (in-window)
   1478   1.1   jnemeth  * handler is available. Unfortunately, we have no reliable way to
   1479   1.1   jnemeth  * determine that the interrupt really came from the floppy controller;
   1480   1.1   jnemeth  * just hope that the other devices that share this interrupt level
   1481   1.1   jnemeth  * can do better..
   1482   1.1   jnemeth  */
   1483   1.1   jnemeth int
   1484   1.1   jnemeth fdc_c_hwintr(void *arg)
   1485   1.1   jnemeth {
   1486   1.1   jnemeth 	struct fdc_softc *fdc = arg;
   1487   1.1   jnemeth 	bus_space_tag_t t = fdc->sc_bustag;
   1488   1.1   jnemeth 	bus_space_handle_t h = fdc->sc_handle;
   1489   1.1   jnemeth 
   1490   1.1   jnemeth 	switch (fdc->sc_itask) {
   1491   1.1   jnemeth 	case FDC_ITASK_NONE:
   1492   1.1   jnemeth 		return 0;
   1493   1.1   jnemeth 	case FDC_ITASK_SENSEI:
   1494   1.1   jnemeth 		if (fdc_wrfifo(fdc, NE7CMD_SENSEI) != 0 || fdcresult(fdc) == -1)
   1495   1.1   jnemeth 			fdc->sc_istatus = FDC_ISTATUS_ERROR;
   1496   1.1   jnemeth 		else
   1497   1.1   jnemeth 			fdc->sc_istatus = FDC_ISTATUS_DONE;
   1498  1.17   jnemeth 		softint_schedule(fdc->sc_sicookie);
   1499   1.1   jnemeth 		return 1;
   1500   1.1   jnemeth 	case FDC_ITASK_RESULT:
   1501   1.1   jnemeth 		if (fdcresult(fdc) == -1)
   1502   1.1   jnemeth 			fdc->sc_istatus = FDC_ISTATUS_ERROR;
   1503   1.1   jnemeth 		else
   1504   1.1   jnemeth 			fdc->sc_istatus = FDC_ISTATUS_DONE;
   1505  1.17   jnemeth 		softint_schedule(fdc->sc_sicookie);
   1506   1.1   jnemeth 		return 1;
   1507   1.1   jnemeth 	case FDC_ITASK_DMA:
   1508   1.1   jnemeth 		/* Proceed with pseudo-DMA below */
   1509   1.1   jnemeth 		break;
   1510   1.1   jnemeth 	default:
   1511   1.1   jnemeth 		printf("fdc: stray hard interrupt: itask=%d\n", fdc->sc_itask);
   1512   1.1   jnemeth 		fdc->sc_istatus = FDC_ISTATUS_SPURIOUS;
   1513  1.17   jnemeth 		softint_schedule(fdc->sc_sicookie);
   1514   1.1   jnemeth 		return 1;
   1515   1.1   jnemeth 	}
   1516   1.1   jnemeth 
   1517   1.1   jnemeth 	/*
   1518   1.1   jnemeth 	 * Pseudo DMA in progress
   1519   1.1   jnemeth 	 */
   1520   1.1   jnemeth 	for (;;) {
   1521   1.1   jnemeth 		uint8_t msr;
   1522   1.1   jnemeth 
   1523   1.1   jnemeth 		msr = bus_space_read_1(t, h, fdc->sc_reg_msr);
   1524   1.1   jnemeth 
   1525   1.1   jnemeth 		if ((msr & NE7_RQM) == 0)
   1526  1.10   jnemeth 			/* That's all this round. */
   1527   1.1   jnemeth 			break;
   1528   1.1   jnemeth 
   1529   1.1   jnemeth 		if ((msr & NE7_NDM) == 0) {
   1530  1.10   jnemeth 			/* Execution phase finished, get result. */
   1531   1.1   jnemeth 			fdcresult(fdc);
   1532   1.1   jnemeth 			fdc->sc_istatus = FDC_ISTATUS_DONE;
   1533  1.17   jnemeth 			softint_schedule(fdc->sc_sicookie);
   1534   1.1   jnemeth 			break;
   1535   1.1   jnemeth 		}
   1536   1.1   jnemeth 
   1537  1.10   jnemeth 		if (fdc->sc_tc == 0)
   1538  1.10   jnemeth 			/* For some reason the controller wants to transfer
   1539  1.10   jnemeth 			   more data then what we want to transfer. */
   1540  1.10   jnemeth 			panic("fdc: overrun");
   1541  1.10   jnemeth 
   1542   1.1   jnemeth 		/* Another byte can be transferred */
   1543   1.1   jnemeth 		if ((msr & NE7_DIO) != 0)
   1544   1.1   jnemeth 			*fdc->sc_data =
   1545   1.1   jnemeth 				bus_space_read_1(t, h, fdc->sc_reg_fifo);
   1546   1.1   jnemeth 		else
   1547   1.1   jnemeth 			bus_space_write_1(t, h, fdc->sc_reg_fifo,
   1548   1.1   jnemeth 					  *fdc->sc_data);
   1549   1.1   jnemeth 
   1550   1.1   jnemeth 		fdc->sc_data++;
   1551   1.1   jnemeth 		if (--fdc->sc_tc == 0) {
   1552   1.1   jnemeth 			FTC_FLIP;
   1553   1.1   jnemeth 			break;
   1554   1.1   jnemeth 		}
   1555   1.1   jnemeth 	}
   1556   1.1   jnemeth 	return 1;
   1557   1.1   jnemeth }
   1558   1.1   jnemeth 
   1559   1.1   jnemeth void
   1560   1.1   jnemeth fdcswintr(void *arg)
   1561   1.1   jnemeth {
   1562   1.1   jnemeth 	struct fdc_softc *fdc = arg;
   1563   1.1   jnemeth 
   1564   1.1   jnemeth 	if (fdc->sc_istatus == FDC_ISTATUS_NONE)
   1565   1.1   jnemeth 		/* This (software) interrupt is not for us */
   1566   1.1   jnemeth 		return;
   1567   1.1   jnemeth 
   1568   1.1   jnemeth 	switch (fdc->sc_istatus) {
   1569   1.1   jnemeth 	case FDC_ISTATUS_ERROR:
   1570   1.1   jnemeth 		printf("fdc: ierror status: state %d\n", fdc->sc_state);
   1571   1.1   jnemeth 		break;
   1572   1.1   jnemeth 	case FDC_ISTATUS_SPURIOUS:
   1573   1.1   jnemeth 		printf("fdc: spurious interrupt: state %d\n", fdc->sc_state);
   1574   1.1   jnemeth 		break;
   1575   1.1   jnemeth 	}
   1576   1.1   jnemeth 
   1577   1.1   jnemeth 	fdcstate(fdc);
   1578   1.1   jnemeth 	return;
   1579   1.1   jnemeth }
   1580   1.1   jnemeth 
   1581   1.1   jnemeth int
   1582   1.1   jnemeth fdcstate(struct fdc_softc *fdc)
   1583   1.1   jnemeth {
   1584   1.1   jnemeth 
   1585   1.1   jnemeth #define	st0	fdc->sc_status[0]
   1586   1.1   jnemeth #define	st1	fdc->sc_status[1]
   1587   1.1   jnemeth #define	cyl	fdc->sc_status[1]
   1588   1.1   jnemeth #define FDC_WRFIFO(fdc, c) do {			\
   1589   1.1   jnemeth 	if (fdc_wrfifo(fdc, (c))) {		\
   1590   1.1   jnemeth 		goto xxx;			\
   1591   1.1   jnemeth 	}					\
   1592   1.1   jnemeth } while(0)
   1593   1.1   jnemeth 
   1594   1.1   jnemeth 	struct fd_softc *fd;
   1595   1.1   jnemeth 	struct buf *bp;
   1596   1.1   jnemeth 	int read, head, sec, nblks;
   1597   1.1   jnemeth 	struct fd_type *type;
   1598   1.1   jnemeth 	struct ne7_fd_formb *finfo = NULL;
   1599   1.1   jnemeth 
   1600   1.1   jnemeth 	if (fdc->sc_istatus == FDC_ISTATUS_ERROR) {
   1601   1.1   jnemeth 		/* Prevent loop if the reset sequence produces errors */
   1602   1.1   jnemeth 		if (fdc->sc_state != RESETCOMPLETE &&
   1603   1.1   jnemeth 		    fdc->sc_state != RECALWAIT &&
   1604   1.1   jnemeth 		    fdc->sc_state != RECALCOMPLETE)
   1605   1.1   jnemeth 			fdc->sc_state = DORESET;
   1606   1.1   jnemeth 	}
   1607   1.1   jnemeth 
   1608   1.1   jnemeth 	/* Clear I task/status field */
   1609   1.1   jnemeth 	fdc->sc_istatus = FDC_ISTATUS_NONE;
   1610   1.1   jnemeth 	fdc->sc_itask = FDC_ITASK_NONE;
   1611   1.1   jnemeth 
   1612   1.1   jnemeth loop:
   1613   1.1   jnemeth 	/* Is there a drive for the controller to do a transfer with? */
   1614   1.1   jnemeth 	fd = fdc->sc_drives.tqh_first;
   1615   1.1   jnemeth 	if (fd == NULL) {
   1616   1.1   jnemeth 		fdc->sc_state = DEVIDLE;
   1617   1.1   jnemeth  		return 0;
   1618   1.1   jnemeth 	}
   1619   1.1   jnemeth 
   1620   1.1   jnemeth 	/* Is there a transfer to this drive?  If not, deactivate drive. */
   1621  1.29      yamt 	bp = bufq_peek(fd->sc_q);
   1622   1.1   jnemeth 	if (bp == NULL) {
   1623   1.1   jnemeth 		fd->sc_ops = 0;
   1624   1.1   jnemeth 		TAILQ_REMOVE(&fdc->sc_drives, fd, sc_drivechain);
   1625   1.1   jnemeth 		fd->sc_active = 0;
   1626   1.1   jnemeth 		goto loop;
   1627   1.1   jnemeth 	}
   1628   1.1   jnemeth 
   1629   1.1   jnemeth 	if (bp->b_flags & B_FORMAT)
   1630   1.1   jnemeth 		finfo = (struct ne7_fd_formb *)bp->b_data;
   1631   1.1   jnemeth 
   1632   1.1   jnemeth 	switch (fdc->sc_state) {
   1633   1.1   jnemeth 	case DEVIDLE:
   1634   1.1   jnemeth 		fdc->sc_errors = 0;
   1635   1.1   jnemeth 		fd->sc_skip = 0;
   1636   1.1   jnemeth 		fd->sc_bcount = bp->b_bcount;
   1637   1.1   jnemeth 		fd->sc_blkno = (bp->b_blkno * DEV_BSIZE) / FD_BSIZE(fd);
   1638   1.1   jnemeth 		callout_stop(&fd->sc_motoroff_ch);
   1639   1.1   jnemeth 		if ((fd->sc_flags & FD_MOTOR_WAIT) != 0) {
   1640   1.1   jnemeth 			fdc->sc_state = MOTORWAIT;
   1641   1.1   jnemeth 			return 1;
   1642   1.1   jnemeth 		}
   1643   1.1   jnemeth 		if ((fd->sc_flags & FD_MOTOR) == 0) {
   1644   1.1   jnemeth 			/* Turn on the motor, being careful about pairing. */
   1645   1.1   jnemeth 			struct fd_softc *ofd = fdc->sc_fd[fd->sc_drive ^ 1];
   1646   1.1   jnemeth 			if (ofd && ofd->sc_flags & FD_MOTOR) {
   1647   1.1   jnemeth 				callout_stop(&ofd->sc_motoroff_ch);
   1648   1.1   jnemeth 				ofd->sc_flags &= ~(FD_MOTOR | FD_MOTOR_WAIT);
   1649   1.1   jnemeth 			}
   1650   1.1   jnemeth 			fd->sc_flags |= FD_MOTOR | FD_MOTOR_WAIT;
   1651   1.1   jnemeth 			fd_set_motor(fdc);
   1652   1.1   jnemeth 			fdc->sc_state = MOTORWAIT;
   1653   1.1   jnemeth 			if ((fdc->sc_flags & FDC_NEEDMOTORWAIT) != 0) { /*XXX*/
   1654   1.1   jnemeth 				/* Allow .25s for motor to stabilize. */
   1655   1.1   jnemeth 				callout_reset(&fd->sc_motoron_ch, hz / 4,
   1656   1.1   jnemeth 				    fd_motor_on, fd);
   1657   1.1   jnemeth 			} else {
   1658   1.1   jnemeth 				fd->sc_flags &= ~FD_MOTOR_WAIT;
   1659   1.1   jnemeth 				goto loop;
   1660   1.1   jnemeth 			}
   1661   1.1   jnemeth 			return 1;
   1662   1.1   jnemeth 		}
   1663   1.1   jnemeth 		/* Make sure the right drive is selected. */
   1664   1.1   jnemeth 		fd_set_motor(fdc);
   1665   1.1   jnemeth 
   1666   1.1   jnemeth 		if (fdc_diskchange(fdc))
   1667   1.1   jnemeth 			goto dodskchg;
   1668   1.1   jnemeth 
   1669   1.1   jnemeth 		/*FALLTHROUGH*/
   1670   1.1   jnemeth 	case DOSEEK:
   1671   1.1   jnemeth 	doseek:
   1672   1.1   jnemeth 		if ((fdc->sc_flags & FDC_EIS) &&
   1673   1.1   jnemeth 		    (bp->b_flags & B_FORMAT) == 0) {
   1674   1.1   jnemeth 			fd->sc_cylin = bp->b_cylinder;
   1675   1.1   jnemeth 			/* We use implied seek */
   1676   1.1   jnemeth 			goto doio;
   1677   1.1   jnemeth 		}
   1678   1.1   jnemeth 
   1679   1.1   jnemeth 		if (fd->sc_cylin == bp->b_cylinder)
   1680   1.1   jnemeth 			goto doio;
   1681   1.1   jnemeth 
   1682   1.1   jnemeth 		fd->sc_cylin = -1;
   1683   1.1   jnemeth 		fdc->sc_state = SEEKWAIT;
   1684   1.1   jnemeth 		fdc->sc_nstat = 0;
   1685   1.1   jnemeth 
   1686   1.1   jnemeth 		iostat_seek(fd->sc_dk.dk_stats);
   1687   1.1   jnemeth 
   1688   1.1   jnemeth 		disk_busy(&fd->sc_dk);
   1689   1.1   jnemeth 		callout_reset(&fdc->sc_timo_ch, 4 * hz, fdctimeout, fdc);
   1690   1.1   jnemeth 
   1691   1.1   jnemeth 		/* specify command */
   1692   1.1   jnemeth 		FDC_WRFIFO(fdc, NE7CMD_SPECIFY);
   1693   1.1   jnemeth 		FDC_WRFIFO(fdc, fd->sc_type->steprate);
   1694   1.1   jnemeth 		/* XXX head load time == 6ms */
   1695   1.1   jnemeth 		FDC_WRFIFO(fdc, 6 | NE7_SPECIFY_NODMA);
   1696   1.1   jnemeth 
   1697   1.1   jnemeth 		fdc->sc_itask = FDC_ITASK_SENSEI;
   1698   1.1   jnemeth 		/* seek function */
   1699   1.1   jnemeth 		FDC_WRFIFO(fdc, NE7CMD_SEEK);
   1700   1.1   jnemeth 		FDC_WRFIFO(fdc, fd->sc_drive); /* drive number */
   1701   1.1   jnemeth 		FDC_WRFIFO(fdc, bp->b_cylinder * fd->sc_type->step);
   1702   1.1   jnemeth 		return 1;
   1703   1.1   jnemeth 
   1704   1.1   jnemeth 	case DODSKCHG:
   1705   1.1   jnemeth 	dodskchg:
   1706   1.1   jnemeth 		/*
   1707   1.1   jnemeth 		 * Disk change: force a seek operation by going to cyl 1
   1708   1.1   jnemeth 		 * followed by a recalibrate.
   1709   1.1   jnemeth 		 */
   1710   1.1   jnemeth 		disk_busy(&fd->sc_dk);
   1711   1.1   jnemeth 		callout_reset(&fdc->sc_timo_ch, 4 * hz, fdctimeout, fdc);
   1712   1.1   jnemeth 		fd->sc_cylin = -1;
   1713   1.1   jnemeth 		fdc->sc_nstat = 0;
   1714   1.1   jnemeth 		fdc->sc_state = DSKCHGWAIT;
   1715   1.1   jnemeth 
   1716   1.1   jnemeth 		fdc->sc_itask = FDC_ITASK_SENSEI;
   1717   1.1   jnemeth 		/* seek function */
   1718   1.1   jnemeth 		FDC_WRFIFO(fdc, NE7CMD_SEEK);
   1719   1.1   jnemeth 		FDC_WRFIFO(fdc, fd->sc_drive); /* drive number */
   1720   1.1   jnemeth 		FDC_WRFIFO(fdc, 1 * fd->sc_type->step);
   1721   1.1   jnemeth 		return 1;
   1722   1.1   jnemeth 
   1723   1.1   jnemeth 	case DSKCHGWAIT:
   1724   1.1   jnemeth 		callout_stop(&fdc->sc_timo_ch);
   1725   1.1   jnemeth 		disk_unbusy(&fd->sc_dk, 0, 0);
   1726   1.1   jnemeth 		if (fdc->sc_nstat != 2 || (st0 & 0xf8) != 0x20 ||
   1727   1.1   jnemeth 		    cyl != 1 * fd->sc_type->step) {
   1728   1.1   jnemeth 			fdcstatus(fdc, "dskchg seek failed");
   1729   1.1   jnemeth 			fdc->sc_state = DORESET;
   1730   1.1   jnemeth 		} else
   1731   1.1   jnemeth 			fdc->sc_state = DORECAL;
   1732   1.1   jnemeth 
   1733   1.1   jnemeth 		if (fdc_diskchange(fdc)) {
   1734  1.21    cegger 			aprint_error_dev(&fdc->sc_dev, "cannot clear disk change status\n");
   1735   1.1   jnemeth 			fdc->sc_state = DORESET;
   1736   1.1   jnemeth 		}
   1737   1.1   jnemeth 		goto loop;
   1738   1.1   jnemeth 
   1739   1.1   jnemeth 	case DOIO:
   1740   1.1   jnemeth 	doio:
   1741   1.1   jnemeth 		if (finfo != NULL)
   1742   1.1   jnemeth 			fd->sc_skip = (char *)&(finfo->fd_formb_cylno(0)) -
   1743   1.1   jnemeth 				      (char *)finfo;
   1744   1.1   jnemeth 		type = fd->sc_type;
   1745   1.1   jnemeth 		sec = fd->sc_blkno % type->seccyl;
   1746   1.1   jnemeth 		nblks = type->seccyl - sec;
   1747   1.1   jnemeth 		nblks = min(nblks, fd->sc_bcount / FD_BSIZE(fd));
   1748   1.1   jnemeth 		nblks = min(nblks, FDC_MAXIOSIZE / FD_BSIZE(fd));
   1749   1.1   jnemeth 		fd->sc_nblks = nblks;
   1750   1.1   jnemeth 		fd->sc_nbytes = finfo ? bp->b_bcount : nblks * FD_BSIZE(fd);
   1751   1.1   jnemeth 		head = sec / type->sectrac;
   1752   1.1   jnemeth 		sec -= head * type->sectrac;
   1753   1.1   jnemeth #ifdef DIAGNOSTIC
   1754   1.1   jnemeth 		{int block;
   1755   1.1   jnemeth 		 block = (fd->sc_cylin * type->heads + head) * type->sectrac +
   1756   1.1   jnemeth 			 sec;
   1757   1.1   jnemeth 		 if (block != fd->sc_blkno) {
   1758   1.1   jnemeth 			 printf("fdcintr: block %d != blkno %d\n", block,
   1759   1.1   jnemeth 			        (int)fd->sc_blkno);
   1760   1.1   jnemeth #ifdef DDB
   1761   1.1   jnemeth 			 Debugger();
   1762   1.1   jnemeth #endif
   1763   1.1   jnemeth 		 }}
   1764   1.1   jnemeth #endif
   1765   1.1   jnemeth 		read = bp->b_flags & B_READ;
   1766   1.1   jnemeth 
   1767   1.1   jnemeth 		/* Setup for pseudo DMA */
   1768   1.7  christos 		fdc->sc_data = (char *)bp->b_data + fd->sc_skip;
   1769   1.1   jnemeth 		fdc->sc_tc = fd->sc_nbytes;
   1770   1.1   jnemeth 
   1771   1.1   jnemeth 		bus_space_write_1(fdc->sc_bustag, fdc->sc_handle,
   1772   1.1   jnemeth 				  fdc->sc_reg_drs, type->rate);
   1773   1.1   jnemeth #ifdef FD_DEBUG
   1774   1.1   jnemeth 		if (fdc_debug > 1)
   1775   1.1   jnemeth 			printf("fdcstate: doio: %s drive %d "
   1776   1.1   jnemeth 				"track %d head %d sec %d nblks %d\n",
   1777   1.1   jnemeth 				finfo ? "format" :
   1778   1.1   jnemeth 					(read ? "read" : "write"),
   1779   1.1   jnemeth 				fd->sc_drive, fd->sc_cylin, head, sec, nblks);
   1780   1.1   jnemeth #endif
   1781   1.1   jnemeth 		fdc->sc_state = IOCOMPLETE;
   1782   1.1   jnemeth 		fdc->sc_itask = FDC_ITASK_DMA;
   1783   1.1   jnemeth 		fdc->sc_nstat = 0;
   1784   1.1   jnemeth 
   1785   1.1   jnemeth 		disk_busy(&fd->sc_dk);
   1786   1.1   jnemeth 
   1787   1.1   jnemeth 		/* allow 3 seconds for operation */
   1788   1.1   jnemeth 		callout_reset(&fdc->sc_timo_ch, 3 * hz, fdctimeout, fdc);
   1789   1.1   jnemeth 
   1790   1.1   jnemeth 		if (finfo != NULL) {
   1791   1.1   jnemeth 			/* formatting */
   1792   1.1   jnemeth 			FDC_WRFIFO(fdc, NE7CMD_FORMAT);
   1793   1.1   jnemeth 			FDC_WRFIFO(fdc, (head << 2) | fd->sc_drive);
   1794   1.1   jnemeth 			FDC_WRFIFO(fdc, finfo->fd_formb_secshift);
   1795   1.1   jnemeth 			FDC_WRFIFO(fdc, finfo->fd_formb_nsecs);
   1796   1.1   jnemeth 			FDC_WRFIFO(fdc, finfo->fd_formb_gaplen);
   1797   1.1   jnemeth 			FDC_WRFIFO(fdc, finfo->fd_formb_fillbyte);
   1798   1.1   jnemeth 		} else {
   1799   1.1   jnemeth 			if (read)
   1800   1.1   jnemeth 				FDC_WRFIFO(fdc, NE7CMD_READ);
   1801   1.1   jnemeth 			else
   1802   1.1   jnemeth 				FDC_WRFIFO(fdc, NE7CMD_WRITE);
   1803   1.1   jnemeth 			FDC_WRFIFO(fdc, (head << 2) | fd->sc_drive);
   1804   1.1   jnemeth 			FDC_WRFIFO(fdc, fd->sc_cylin);	/*track*/
   1805   1.1   jnemeth 			FDC_WRFIFO(fdc, head);
   1806   1.1   jnemeth 			FDC_WRFIFO(fdc, sec + 1);	/*sector+1*/
   1807   1.1   jnemeth 			FDC_WRFIFO(fdc, type->secsize);	/*sector size*/
   1808   1.1   jnemeth 			FDC_WRFIFO(fdc, type->sectrac);	/*secs/track*/
   1809   1.1   jnemeth 			FDC_WRFIFO(fdc, type->gap1);	/*gap1 size*/
   1810   1.1   jnemeth 			FDC_WRFIFO(fdc, type->datalen);	/*data length*/
   1811   1.1   jnemeth 		}
   1812   1.1   jnemeth 
   1813   1.1   jnemeth 		return 1;				/* will return later */
   1814   1.1   jnemeth 
   1815   1.1   jnemeth 	case SEEKWAIT:
   1816   1.1   jnemeth 		callout_stop(&fdc->sc_timo_ch);
   1817   1.1   jnemeth 		fdc->sc_state = SEEKCOMPLETE;
   1818   1.1   jnemeth 		if (fdc->sc_flags & FDC_NEEDHEADSETTLE) {
   1819   1.1   jnemeth 			/* allow 1/50 second for heads to settle */
   1820   1.1   jnemeth 			callout_reset(&fdc->sc_intr_ch, hz / 50,
   1821   1.1   jnemeth 			    fdcpseudointr, fdc);
   1822   1.1   jnemeth 			return 1;		/* will return later */
   1823   1.1   jnemeth 		}
   1824   1.1   jnemeth 		/*FALLTHROUGH*/
   1825   1.1   jnemeth 	case SEEKCOMPLETE:
   1826   1.1   jnemeth 		/* no data on seek */
   1827   1.1   jnemeth 		disk_unbusy(&fd->sc_dk, 0, 0);
   1828   1.1   jnemeth 
   1829   1.1   jnemeth 		/* Make sure seek really happened. */
   1830   1.1   jnemeth 		if (fdc->sc_nstat != 2 || (st0 & 0xf8) != 0x20 ||
   1831   1.1   jnemeth 		    cyl != bp->b_cylinder * fd->sc_type->step) {
   1832   1.1   jnemeth #ifdef FD_DEBUG
   1833   1.1   jnemeth 			if (fdc_debug)
   1834   1.1   jnemeth 				fdcstatus(fdc, "seek failed");
   1835   1.1   jnemeth #endif
   1836   1.1   jnemeth 			fdcretry(fdc);
   1837   1.1   jnemeth 			goto loop;
   1838   1.1   jnemeth 		}
   1839   1.1   jnemeth 		fd->sc_cylin = bp->b_cylinder;
   1840   1.1   jnemeth 		goto doio;
   1841   1.1   jnemeth 
   1842   1.1   jnemeth 	case IOTIMEDOUT:
   1843   1.1   jnemeth 		/*
   1844   1.1   jnemeth 		 * Try to abort the I/O operation without resetting
   1845   1.1   jnemeth 		 * the chip first.  Poke TC and arrange to pick up
   1846   1.1   jnemeth 		 * the timed out I/O command's status.
   1847   1.1   jnemeth 		 */
   1848   1.1   jnemeth 		fdc->sc_itask = FDC_ITASK_RESULT;
   1849   1.1   jnemeth 		fdc->sc_state = IOCLEANUPWAIT;
   1850   1.1   jnemeth 		fdc->sc_nstat = 0;
   1851   1.1   jnemeth 		/* 1/10 second should be enough */
   1852   1.1   jnemeth 		callout_reset(&fdc->sc_timo_ch, hz / 10, fdctimeout, fdc);
   1853   1.1   jnemeth 		FTC_FLIP;
   1854   1.1   jnemeth 		return 1;
   1855   1.1   jnemeth 
   1856   1.1   jnemeth 	case IOCLEANUPTIMEDOUT:
   1857   1.1   jnemeth 	case SEEKTIMEDOUT:
   1858   1.1   jnemeth 	case RECALTIMEDOUT:
   1859   1.1   jnemeth 	case RESETTIMEDOUT:
   1860   1.1   jnemeth 	case DSKCHGTIMEDOUT:
   1861   1.1   jnemeth 		fdcstatus(fdc, "timeout");
   1862   1.1   jnemeth 
   1863   1.1   jnemeth 		/* All other timeouts always roll through to a chip reset */
   1864   1.1   jnemeth 		fdcretry(fdc);
   1865   1.1   jnemeth 
   1866   1.1   jnemeth 		/* Force reset, no matter what fdcretry() says */
   1867   1.1   jnemeth 		fdc->sc_state = DORESET;
   1868   1.1   jnemeth 		goto loop;
   1869   1.1   jnemeth 
   1870   1.1   jnemeth 	case IOCLEANUPWAIT: /* IO FAILED, cleanup succeeded */
   1871   1.1   jnemeth 		callout_stop(&fdc->sc_timo_ch);
   1872   1.1   jnemeth 		disk_unbusy(&fd->sc_dk, (bp->b_bcount - bp->b_resid),
   1873   1.1   jnemeth 		    (bp->b_flags & B_READ));
   1874   1.1   jnemeth 		fdcretry(fdc);
   1875   1.1   jnemeth 		goto loop;
   1876   1.1   jnemeth 
   1877   1.1   jnemeth 	case IOCOMPLETE: /* IO DONE, post-analyze */
   1878   1.1   jnemeth 		callout_stop(&fdc->sc_timo_ch);
   1879   1.1   jnemeth 
   1880   1.1   jnemeth 		disk_unbusy(&fd->sc_dk, (bp->b_bcount - bp->b_resid),
   1881   1.1   jnemeth 		    (bp->b_flags & B_READ));
   1882   1.1   jnemeth 
   1883   1.1   jnemeth 		if (fdc->sc_nstat != 7 || st1 != 0 ||
   1884   1.1   jnemeth 		    ((st0 & 0xf8) != 0 &&
   1885   1.1   jnemeth 		     ((st0 & 0xf8) != 0x20 || (fdc->sc_cfg & CFG_EIS) == 0))) {
   1886   1.1   jnemeth #ifdef FD_DEBUG
   1887   1.1   jnemeth 			if (fdc_debug) {
   1888   1.1   jnemeth 				fdcstatus(fdc, bp->b_flags & B_READ ?
   1889   1.1   jnemeth 				     "read failed" : "write failed");
   1890   1.1   jnemeth 				printf("blkno %lld nblks %d nstat %d tc %d\n",
   1891   1.1   jnemeth 				       (long long)fd->sc_blkno, fd->sc_nblks,
   1892   1.1   jnemeth 				       fdc->sc_nstat, fdc->sc_tc);
   1893   1.1   jnemeth 			}
   1894   1.1   jnemeth #endif
   1895   1.1   jnemeth 			if (fdc->sc_nstat == 7 &&
   1896   1.1   jnemeth 			    (st1 & ST1_OVERRUN) == ST1_OVERRUN) {
   1897   1.1   jnemeth 
   1898   1.1   jnemeth 				/*
   1899   1.1   jnemeth 				 * Silently retry overruns if no other
   1900   1.1   jnemeth 				 * error bit is set. Adjust threshold.
   1901   1.1   jnemeth 				 */
   1902   1.1   jnemeth 				int thr = fdc->sc_cfg & CFG_THRHLD_MASK;
   1903   1.1   jnemeth 				if (thr < 15) {
   1904   1.1   jnemeth 					thr++;
   1905   1.1   jnemeth 					fdc->sc_cfg &= ~CFG_THRHLD_MASK;
   1906   1.1   jnemeth 					fdc->sc_cfg |= (thr & CFG_THRHLD_MASK);
   1907   1.1   jnemeth #ifdef FD_DEBUG
   1908   1.1   jnemeth 					if (fdc_debug)
   1909   1.1   jnemeth 						printf("fdc: %d -> threshold\n",
   1910   1.1   jnemeth 						       thr);
   1911   1.1   jnemeth #endif
   1912   1.1   jnemeth 					fdconf(fdc);
   1913   1.1   jnemeth 					fdc->sc_overruns = 0;
   1914   1.1   jnemeth 				}
   1915   1.1   jnemeth 				if (++fdc->sc_overruns < 3) {
   1916   1.1   jnemeth 					fdc->sc_state = DOIO;
   1917   1.1   jnemeth 					goto loop;
   1918   1.1   jnemeth 				}
   1919   1.1   jnemeth 			}
   1920   1.1   jnemeth 			fdcretry(fdc);
   1921   1.1   jnemeth 			goto loop;
   1922   1.1   jnemeth 		}
   1923   1.1   jnemeth 		if (fdc->sc_errors) {
   1924   1.1   jnemeth 			diskerr(bp, "fd", "soft error", LOG_PRINTF,
   1925   1.1   jnemeth 			    fd->sc_skip / FD_BSIZE(fd),
   1926   1.1   jnemeth 			    (struct disklabel *)NULL);
   1927   1.1   jnemeth 			printf("\n");
   1928   1.1   jnemeth 			fdc->sc_errors = 0;
   1929   1.1   jnemeth 		} else {
   1930   1.1   jnemeth 			if (--fdc->sc_overruns < -20) {
   1931   1.1   jnemeth 				int thr = fdc->sc_cfg & CFG_THRHLD_MASK;
   1932   1.1   jnemeth 				if (thr > 0) {
   1933   1.1   jnemeth 					thr--;
   1934   1.1   jnemeth 					fdc->sc_cfg &= ~CFG_THRHLD_MASK;
   1935   1.1   jnemeth 					fdc->sc_cfg |= (thr & CFG_THRHLD_MASK);
   1936   1.1   jnemeth #ifdef FD_DEBUG
   1937   1.1   jnemeth 					if (fdc_debug)
   1938   1.1   jnemeth 						printf("fdc: %d -> threshold\n",
   1939   1.1   jnemeth 						       thr);
   1940   1.1   jnemeth #endif
   1941   1.1   jnemeth 					fdconf(fdc);
   1942   1.1   jnemeth 				}
   1943   1.1   jnemeth 				fdc->sc_overruns = 0;
   1944   1.1   jnemeth 			}
   1945   1.1   jnemeth 		}
   1946   1.1   jnemeth 		fd->sc_blkno += fd->sc_nblks;
   1947   1.1   jnemeth 		fd->sc_skip += fd->sc_nbytes;
   1948   1.1   jnemeth 		fd->sc_bcount -= fd->sc_nbytes;
   1949   1.1   jnemeth 		if (finfo == NULL && fd->sc_bcount > 0) {
   1950   1.1   jnemeth 			bp->b_cylinder = fd->sc_blkno / fd->sc_type->seccyl;
   1951   1.1   jnemeth 			goto doseek;
   1952   1.1   jnemeth 		}
   1953   1.1   jnemeth 		fdfinish(fd, bp);
   1954   1.1   jnemeth 		goto loop;
   1955   1.1   jnemeth 
   1956   1.1   jnemeth 	case DORESET:
   1957   1.1   jnemeth 		/* try a reset, keep motor on */
   1958   1.1   jnemeth 		fd_set_motor(fdc);
   1959   1.1   jnemeth 		delay(100);
   1960   1.1   jnemeth 		fdc->sc_nstat = 0;
   1961   1.1   jnemeth 		fdc->sc_itask = FDC_ITASK_SENSEI;
   1962   1.1   jnemeth 		fdc->sc_state = RESETCOMPLETE;
   1963   1.1   jnemeth 		callout_reset(&fdc->sc_timo_ch, hz / 2, fdctimeout, fdc);
   1964   1.1   jnemeth 		fdc_reset(fdc);
   1965   1.1   jnemeth 		return 1;			/* will return later */
   1966   1.1   jnemeth 
   1967   1.1   jnemeth 	case RESETCOMPLETE:
   1968   1.1   jnemeth 		callout_stop(&fdc->sc_timo_ch);
   1969   1.1   jnemeth 		fdconf(fdc);
   1970   1.1   jnemeth 
   1971   1.1   jnemeth 		/* FALLTHROUGH */
   1972   1.1   jnemeth 	case DORECAL:
   1973   1.1   jnemeth 		fdc->sc_state = RECALWAIT;
   1974   1.1   jnemeth 		fdc->sc_itask = FDC_ITASK_SENSEI;
   1975   1.1   jnemeth 		fdc->sc_nstat = 0;
   1976   1.1   jnemeth 		callout_reset(&fdc->sc_timo_ch, 5 * hz, fdctimeout, fdc);
   1977   1.1   jnemeth 		/* recalibrate function */
   1978   1.1   jnemeth 		FDC_WRFIFO(fdc, NE7CMD_RECAL);
   1979   1.1   jnemeth 		FDC_WRFIFO(fdc, fd->sc_drive);
   1980   1.1   jnemeth 		return 1;			/* will return later */
   1981   1.1   jnemeth 
   1982   1.1   jnemeth 	case RECALWAIT:
   1983   1.1   jnemeth 		callout_stop(&fdc->sc_timo_ch);
   1984   1.1   jnemeth 		fdc->sc_state = RECALCOMPLETE;
   1985   1.1   jnemeth 		if (fdc->sc_flags & FDC_NEEDHEADSETTLE) {
   1986   1.1   jnemeth 			/* allow 1/30 second for heads to settle */
   1987   1.1   jnemeth 			callout_reset(&fdc->sc_intr_ch, hz / 30,
   1988   1.1   jnemeth 			    fdcpseudointr, fdc);
   1989   1.1   jnemeth 			return 1;		/* will return later */
   1990   1.1   jnemeth 		}
   1991   1.1   jnemeth 
   1992   1.1   jnemeth 	case RECALCOMPLETE:
   1993   1.1   jnemeth 		if (fdc->sc_nstat != 2 || (st0 & 0xf8) != 0x20 || cyl != 0) {
   1994   1.1   jnemeth #ifdef FD_DEBUG
   1995   1.1   jnemeth 			if (fdc_debug)
   1996   1.1   jnemeth 				fdcstatus(fdc, "recalibrate failed");
   1997   1.1   jnemeth #endif
   1998   1.1   jnemeth 			fdcretry(fdc);
   1999   1.1   jnemeth 			goto loop;
   2000   1.1   jnemeth 		}
   2001   1.1   jnemeth 		fd->sc_cylin = 0;
   2002   1.1   jnemeth 		goto doseek;
   2003   1.1   jnemeth 
   2004   1.1   jnemeth 	case MOTORWAIT:
   2005   1.1   jnemeth 		if (fd->sc_flags & FD_MOTOR_WAIT)
   2006   1.1   jnemeth 			return 1;		/* time's not up yet */
   2007   1.1   jnemeth 		goto doseek;
   2008   1.1   jnemeth 
   2009   1.1   jnemeth 	default:
   2010   1.1   jnemeth 		fdcstatus(fdc, "stray interrupt");
   2011   1.1   jnemeth 		return 1;
   2012   1.1   jnemeth 	}
   2013   1.1   jnemeth #ifdef DIAGNOSTIC
   2014   1.1   jnemeth 	panic("fdcintr: impossible");
   2015   1.1   jnemeth #endif
   2016   1.1   jnemeth 
   2017   1.1   jnemeth xxx:
   2018   1.1   jnemeth 	/*
   2019   1.1   jnemeth 	 * We get here if the chip locks up in FDC_WRFIFO()
   2020   1.1   jnemeth 	 * Cancel any operation and schedule a reset
   2021   1.1   jnemeth 	 */
   2022   1.1   jnemeth 	callout_stop(&fdc->sc_timo_ch);
   2023   1.1   jnemeth 	fdcretry(fdc);
   2024   1.1   jnemeth 	fdc->sc_state = DORESET;
   2025   1.1   jnemeth 	goto loop;
   2026   1.1   jnemeth 
   2027   1.1   jnemeth #undef	st0
   2028   1.1   jnemeth #undef	st1
   2029   1.1   jnemeth #undef	cyl
   2030   1.1   jnemeth }
   2031   1.1   jnemeth 
   2032   1.1   jnemeth void
   2033   1.1   jnemeth fdcretry(struct fdc_softc *fdc)
   2034   1.1   jnemeth {
   2035   1.1   jnemeth 	struct fd_softc *fd;
   2036   1.1   jnemeth 	struct buf *bp;
   2037   1.1   jnemeth 	int error = EIO;
   2038   1.1   jnemeth 
   2039   1.1   jnemeth 	fd = fdc->sc_drives.tqh_first;
   2040  1.29      yamt 	bp = bufq_peek(fd->sc_q);
   2041   1.1   jnemeth 
   2042   1.1   jnemeth 	fdc->sc_overruns = 0;
   2043   1.1   jnemeth 	if (fd->sc_opts & FDOPT_NORETRY)
   2044   1.1   jnemeth 		goto fail;
   2045   1.1   jnemeth 
   2046   1.1   jnemeth 	switch (fdc->sc_errors) {
   2047   1.1   jnemeth 	case 0:
   2048   1.1   jnemeth 		if (fdc->sc_nstat == 7 &&
   2049   1.1   jnemeth 		    (fdc->sc_status[0] & 0xd8) == 0x40 &&
   2050   1.1   jnemeth 		    (fdc->sc_status[1] & 0x2) == 0x2) {
   2051  1.21    cegger 			aprint_error_dev(&fdc->sc_dev, "read-only medium\n");
   2052   1.1   jnemeth 			error = EROFS;
   2053   1.1   jnemeth 			goto failsilent;
   2054   1.1   jnemeth 		}
   2055   1.1   jnemeth 		/* try again */
   2056   1.1   jnemeth 		fdc->sc_state =
   2057   1.1   jnemeth 			(fdc->sc_flags & FDC_EIS) ? DOIO : DOSEEK;
   2058   1.1   jnemeth 		break;
   2059   1.1   jnemeth 
   2060   1.1   jnemeth 	case 1: case 2: case 3:
   2061   1.1   jnemeth 		/* didn't work; try recalibrating */
   2062   1.1   jnemeth 		fdc->sc_state = DORECAL;
   2063   1.1   jnemeth 		break;
   2064   1.1   jnemeth 
   2065   1.1   jnemeth 	case 4:
   2066   1.1   jnemeth 		if (fdc->sc_nstat == 7 &&
   2067   1.1   jnemeth 		    fdc->sc_status[0] == 0 &&
   2068   1.1   jnemeth 		    fdc->sc_status[1] == 0 &&
   2069   1.1   jnemeth 		    fdc->sc_status[2] == 0) {
   2070   1.1   jnemeth 			/*
   2071   1.1   jnemeth 			 * We've retried a few times and we've got
   2072   1.1   jnemeth 			 * valid status and all three status bytes
   2073   1.1   jnemeth 			 * are zero.  Assume this condition is the
   2074   1.1   jnemeth 			 * result of no disk loaded into the drive.
   2075   1.1   jnemeth 			 */
   2076  1.21    cegger 			aprint_error_dev(&fdc->sc_dev, "no medium?\n");
   2077   1.1   jnemeth 			error = ENODEV;
   2078   1.1   jnemeth 			goto failsilent;
   2079   1.1   jnemeth 		}
   2080   1.1   jnemeth 
   2081   1.1   jnemeth 		/* still no go; reset the bastard */
   2082   1.1   jnemeth 		fdc->sc_state = DORESET;
   2083   1.1   jnemeth 		break;
   2084   1.1   jnemeth 
   2085   1.1   jnemeth 	default:
   2086   1.1   jnemeth 	fail:
   2087   1.1   jnemeth 		if ((fd->sc_opts & FDOPT_SILENT) == 0) {
   2088   1.1   jnemeth 			diskerr(bp, "fd", "hard error", LOG_PRINTF,
   2089   1.1   jnemeth 				fd->sc_skip / FD_BSIZE(fd),
   2090   1.1   jnemeth 				(struct disklabel *)NULL);
   2091   1.1   jnemeth 			printf("\n");
   2092   1.1   jnemeth 			fdcstatus(fdc, "controller status");
   2093   1.1   jnemeth 		}
   2094   1.1   jnemeth 
   2095   1.1   jnemeth 	failsilent:
   2096   1.1   jnemeth 		bp->b_error = error;
   2097   1.1   jnemeth 		fdfinish(fd, bp);
   2098   1.1   jnemeth 	}
   2099   1.1   jnemeth 	fdc->sc_errors++;
   2100   1.1   jnemeth }
   2101   1.1   jnemeth 
   2102   1.1   jnemeth int
   2103   1.6  christos fdioctl(dev_t dev, u_long cmd, void *addr, int flag, struct lwp *l)
   2104   1.1   jnemeth {
   2105   1.1   jnemeth 	struct fd_softc *fd;
   2106   1.1   jnemeth 	struct fdc_softc *fdc;
   2107   1.1   jnemeth 	struct fdformat_parms *form_parms;
   2108   1.1   jnemeth 	struct fdformat_cmd *form_cmd;
   2109   1.1   jnemeth 	struct ne7_fd_formb *fd_formb;
   2110   1.1   jnemeth 	int il[FD_MAX_NSEC + 1];
   2111   1.1   jnemeth 	int unit;
   2112   1.1   jnemeth 	int i, j;
   2113   1.1   jnemeth 	int error;
   2114   1.1   jnemeth 
   2115   1.1   jnemeth 	unit = FDUNIT(dev);
   2116   1.1   jnemeth 	if (unit >= fd_cd.cd_ndevs)
   2117   1.1   jnemeth 		return ENXIO;
   2118   1.1   jnemeth 
   2119  1.23    cegger 	fd = device_lookup_private(&fd_cd, FDUNIT(dev));
   2120  1.23    cegger 	fdc = device_private(device_parent(&fd->sc_dv));
   2121   1.1   jnemeth 
   2122   1.1   jnemeth 	switch (cmd) {
   2123   1.1   jnemeth 	case DIOCGDINFO:
   2124   1.1   jnemeth 		*(struct disklabel *)addr = *(fd->sc_dk.dk_label);
   2125   1.1   jnemeth 		return 0;
   2126   1.1   jnemeth 
   2127   1.1   jnemeth 	case DIOCWLABEL:
   2128   1.1   jnemeth 		if ((flag & FWRITE) == 0)
   2129   1.1   jnemeth 			return EBADF;
   2130   1.1   jnemeth 		/* XXX do something */
   2131   1.1   jnemeth 		return 0;
   2132   1.1   jnemeth 
   2133   1.1   jnemeth 	case DIOCWDINFO:
   2134   1.1   jnemeth 		if ((flag & FWRITE) == 0)
   2135   1.1   jnemeth 			return EBADF;
   2136   1.1   jnemeth 
   2137   1.1   jnemeth 		error = setdisklabel(fd->sc_dk.dk_label,
   2138   1.1   jnemeth 				    (struct disklabel *)addr, 0,
   2139   1.1   jnemeth 				    fd->sc_dk.dk_cpulabel);
   2140   1.1   jnemeth 		if (error)
   2141   1.1   jnemeth 			return error;
   2142   1.1   jnemeth 
   2143   1.1   jnemeth 		error = writedisklabel(dev, fdstrategy,
   2144   1.1   jnemeth 				       fd->sc_dk.dk_label,
   2145   1.1   jnemeth 				       fd->sc_dk.dk_cpulabel);
   2146   1.1   jnemeth 		return error;
   2147   1.1   jnemeth 
   2148   1.1   jnemeth 	case DIOCLOCK:
   2149   1.1   jnemeth 		/*
   2150   1.1   jnemeth 		 * Nothing to do here, really.
   2151   1.1   jnemeth 		 */
   2152   1.1   jnemeth 		return 0;
   2153   1.1   jnemeth 
   2154   1.1   jnemeth 	case DIOCEJECT:
   2155   1.1   jnemeth 		if (*(int *)addr == 0) {
   2156   1.1   jnemeth 			int part = DISKPART(dev);
   2157   1.1   jnemeth 			/*
   2158   1.1   jnemeth 			 * Don't force eject: check that we are the only
   2159   1.1   jnemeth 			 * partition open. If so, unlock it.
   2160   1.1   jnemeth 			 */
   2161   1.1   jnemeth 			if ((fd->sc_dk.dk_openmask & ~(1 << part)) != 0 ||
   2162   1.1   jnemeth 			    fd->sc_dk.dk_bopenmask + fd->sc_dk.dk_copenmask !=
   2163   1.1   jnemeth 			    fd->sc_dk.dk_openmask) {
   2164   1.1   jnemeth 				return EBUSY;
   2165   1.1   jnemeth 			}
   2166   1.1   jnemeth 		}
   2167   1.1   jnemeth 		/* FALLTHROUGH */
   2168   1.1   jnemeth 	case ODIOCEJECT:
   2169   1.1   jnemeth 		if (fdc->sc_flags & FDC_NOEJECT)
   2170   1.1   jnemeth 			return EINVAL;
   2171   1.1   jnemeth 		fd_do_eject(fd);
   2172   1.1   jnemeth 		return 0;
   2173   1.1   jnemeth 
   2174   1.1   jnemeth 	case FDIOCGETFORMAT:
   2175   1.1   jnemeth 		form_parms = (struct fdformat_parms *)addr;
   2176   1.1   jnemeth 		form_parms->fdformat_version = FDFORMAT_VERSION;
   2177   1.1   jnemeth 		form_parms->nbps = 128 * (1 << fd->sc_type->secsize);
   2178   1.1   jnemeth 		form_parms->ncyl = fd->sc_type->cylinders;
   2179   1.1   jnemeth 		form_parms->nspt = fd->sc_type->sectrac;
   2180   1.1   jnemeth 		form_parms->ntrk = fd->sc_type->heads;
   2181   1.1   jnemeth 		form_parms->stepspercyl = fd->sc_type->step;
   2182   1.1   jnemeth 		form_parms->gaplen = fd->sc_type->gap2;
   2183   1.1   jnemeth 		form_parms->fillbyte = fd->sc_type->fillbyte;
   2184   1.1   jnemeth 		form_parms->interleave = fd->sc_type->interleave;
   2185   1.1   jnemeth 		switch (fd->sc_type->rate) {
   2186   1.1   jnemeth 		case FDC_500KBPS:
   2187   1.1   jnemeth 			form_parms->xfer_rate = 500 * 1024;
   2188   1.1   jnemeth 			break;
   2189   1.1   jnemeth 		case FDC_300KBPS:
   2190   1.1   jnemeth 			form_parms->xfer_rate = 300 * 1024;
   2191   1.1   jnemeth 			break;
   2192   1.1   jnemeth 		case FDC_250KBPS:
   2193   1.1   jnemeth 			form_parms->xfer_rate = 250 * 1024;
   2194   1.1   jnemeth 			break;
   2195   1.1   jnemeth 		default:
   2196   1.1   jnemeth 			return EINVAL;
   2197   1.1   jnemeth 		}
   2198   1.1   jnemeth 		return 0;
   2199   1.1   jnemeth 
   2200   1.1   jnemeth 	case FDIOCSETFORMAT:
   2201   1.1   jnemeth 		if ((flag & FWRITE) == 0)
   2202   1.1   jnemeth 			return EBADF;	/* must be opened for writing */
   2203   1.1   jnemeth 
   2204   1.1   jnemeth 		form_parms = (struct fdformat_parms *)addr;
   2205   1.1   jnemeth 		if (form_parms->fdformat_version != FDFORMAT_VERSION)
   2206   1.1   jnemeth 			return EINVAL;/* wrong version of formatting prog */
   2207   1.1   jnemeth 
   2208   1.1   jnemeth 		i = form_parms->nbps >> 7;
   2209   1.1   jnemeth 		if ((form_parms->nbps & 0x7f) || ffs(i) == 0 ||
   2210   1.1   jnemeth 		    i & ~(1 << (ffs(i)-1)))
   2211   1.1   jnemeth 			/* not a power-of-two multiple of 128 */
   2212   1.1   jnemeth 			return EINVAL;
   2213   1.1   jnemeth 
   2214   1.1   jnemeth 		switch (form_parms->xfer_rate) {
   2215   1.1   jnemeth 		case 500 * 1024:
   2216   1.1   jnemeth 			fd->sc_type->rate = FDC_500KBPS;
   2217   1.1   jnemeth 			break;
   2218   1.1   jnemeth 		case 300 * 1024:
   2219   1.1   jnemeth 			fd->sc_type->rate = FDC_300KBPS;
   2220   1.1   jnemeth 			break;
   2221   1.1   jnemeth 		case 250 * 1024:
   2222   1.1   jnemeth 			fd->sc_type->rate = FDC_250KBPS;
   2223   1.1   jnemeth 			break;
   2224   1.1   jnemeth 		default:
   2225   1.1   jnemeth 			return EINVAL;
   2226   1.1   jnemeth 		}
   2227   1.1   jnemeth 
   2228   1.1   jnemeth 		if (form_parms->nspt > FD_MAX_NSEC ||
   2229   1.1   jnemeth 		    form_parms->fillbyte > 0xff ||
   2230   1.1   jnemeth 		    form_parms->interleave > 0xff)
   2231   1.1   jnemeth 			return EINVAL;
   2232   1.1   jnemeth 		fd->sc_type->sectrac = form_parms->nspt;
   2233   1.1   jnemeth 		if (form_parms->ntrk != 2 && form_parms->ntrk != 1)
   2234   1.1   jnemeth 			return EINVAL;
   2235   1.1   jnemeth 		fd->sc_type->heads = form_parms->ntrk;
   2236   1.1   jnemeth 		fd->sc_type->seccyl = form_parms->nspt * form_parms->ntrk;
   2237   1.1   jnemeth 		fd->sc_type->secsize = ffs(i)-1;
   2238   1.1   jnemeth 		fd->sc_type->gap2 = form_parms->gaplen;
   2239   1.1   jnemeth 		fd->sc_type->cylinders = form_parms->ncyl;
   2240   1.1   jnemeth 		fd->sc_type->size = fd->sc_type->seccyl * form_parms->ncyl *
   2241   1.1   jnemeth 			form_parms->nbps / DEV_BSIZE;
   2242   1.1   jnemeth 		fd->sc_type->step = form_parms->stepspercyl;
   2243   1.1   jnemeth 		fd->sc_type->fillbyte = form_parms->fillbyte;
   2244   1.1   jnemeth 		fd->sc_type->interleave = form_parms->interleave;
   2245   1.1   jnemeth 		return 0;
   2246   1.1   jnemeth 
   2247   1.1   jnemeth 	case FDIOCFORMAT_TRACK:
   2248   1.1   jnemeth 		if((flag & FWRITE) == 0)
   2249   1.1   jnemeth 			/* must be opened for writing */
   2250   1.1   jnemeth 			return EBADF;
   2251   1.1   jnemeth 		form_cmd = (struct fdformat_cmd *)addr;
   2252   1.1   jnemeth 		if (form_cmd->formatcmd_version != FDFORMAT_VERSION)
   2253   1.1   jnemeth 			/* wrong version of formatting prog */
   2254   1.1   jnemeth 			return EINVAL;
   2255   1.1   jnemeth 
   2256   1.1   jnemeth 		if (form_cmd->head >= fd->sc_type->heads ||
   2257   1.1   jnemeth 		    form_cmd->cylinder >= fd->sc_type->cylinders) {
   2258   1.1   jnemeth 			return EINVAL;
   2259   1.1   jnemeth 		}
   2260   1.1   jnemeth 
   2261   1.1   jnemeth 		fd_formb = malloc(sizeof(struct ne7_fd_formb),
   2262   1.1   jnemeth 		    M_TEMP, M_NOWAIT);
   2263   1.1   jnemeth 		if (fd_formb == 0)
   2264   1.1   jnemeth 			return ENOMEM;
   2265   1.1   jnemeth 
   2266   1.1   jnemeth 		fd_formb->head = form_cmd->head;
   2267   1.1   jnemeth 		fd_formb->cyl = form_cmd->cylinder;
   2268   1.1   jnemeth 		fd_formb->transfer_rate = fd->sc_type->rate;
   2269   1.1   jnemeth 		fd_formb->fd_formb_secshift = fd->sc_type->secsize;
   2270   1.1   jnemeth 		fd_formb->fd_formb_nsecs = fd->sc_type->sectrac;
   2271   1.1   jnemeth 		fd_formb->fd_formb_gaplen = fd->sc_type->gap2;
   2272   1.1   jnemeth 		fd_formb->fd_formb_fillbyte = fd->sc_type->fillbyte;
   2273   1.1   jnemeth 
   2274  1.30    cegger 		memset(il, 0, sizeof il);
   2275   1.1   jnemeth 		for (j = 0, i = 1; i <= fd_formb->fd_formb_nsecs; i++) {
   2276   1.1   jnemeth 			while (il[(j % fd_formb->fd_formb_nsecs) + 1])
   2277   1.1   jnemeth 				j++;
   2278   1.1   jnemeth 			il[(j % fd_formb->fd_formb_nsecs) + 1] = i;
   2279   1.1   jnemeth 			j += fd->sc_type->interleave;
   2280   1.1   jnemeth 		}
   2281   1.1   jnemeth 		for (i = 0; i < fd_formb->fd_formb_nsecs; i++) {
   2282   1.1   jnemeth 			fd_formb->fd_formb_cylno(i) = form_cmd->cylinder;
   2283   1.1   jnemeth 			fd_formb->fd_formb_headno(i) = form_cmd->head;
   2284   1.1   jnemeth 			fd_formb->fd_formb_secno(i) = il[i + 1];
   2285   1.1   jnemeth 			fd_formb->fd_formb_secsize(i) = fd->sc_type->secsize;
   2286   1.1   jnemeth 		}
   2287   1.1   jnemeth 
   2288   1.1   jnemeth 		error = fdformat(dev, fd_formb, l->l_proc);
   2289   1.1   jnemeth 		free(fd_formb, M_TEMP);
   2290   1.1   jnemeth 		return error;
   2291   1.1   jnemeth 
   2292   1.1   jnemeth 	case FDIOCGETOPTS:		/* get drive options */
   2293   1.1   jnemeth 		*(int *)addr = fd->sc_opts;
   2294   1.1   jnemeth 		return 0;
   2295   1.1   jnemeth 
   2296   1.1   jnemeth 	case FDIOCSETOPTS:		/* set drive options */
   2297   1.1   jnemeth 		fd->sc_opts = *(int *)addr;
   2298   1.1   jnemeth 		return 0;
   2299   1.1   jnemeth 
   2300   1.1   jnemeth #ifdef FD_DEBUG
   2301   1.1   jnemeth 	case _IO('f', 100):
   2302   1.1   jnemeth 		fdc_wrfifo(fdc, NE7CMD_DUMPREG);
   2303   1.1   jnemeth 		fdcresult(fdc);
   2304   1.1   jnemeth 		printf("fdc: dumpreg(%d regs): <", fdc->sc_nstat);
   2305   1.1   jnemeth 		for (i = 0; i < fdc->sc_nstat; i++)
   2306   1.1   jnemeth 			printf(" 0x%x", fdc->sc_status[i]);
   2307   1.1   jnemeth 		printf(">\n");
   2308   1.1   jnemeth 		return 0;
   2309   1.1   jnemeth 
   2310   1.1   jnemeth 	case _IOW('f', 101, int):
   2311   1.1   jnemeth 		fdc->sc_cfg &= ~CFG_THRHLD_MASK;
   2312   1.1   jnemeth 		fdc->sc_cfg |= (*(int *)addr & CFG_THRHLD_MASK);
   2313   1.1   jnemeth 		fdconf(fdc);
   2314   1.1   jnemeth 		return 0;
   2315   1.1   jnemeth 
   2316   1.1   jnemeth 	case _IO('f', 102):
   2317   1.1   jnemeth 		fdc_wrfifo(fdc, NE7CMD_SENSEI);
   2318   1.1   jnemeth 		fdcresult(fdc);
   2319   1.1   jnemeth 		printf("fdc: sensei(%d regs): <", fdc->sc_nstat);
   2320   1.1   jnemeth 		for (i=0; i< fdc->sc_nstat; i++)
   2321   1.1   jnemeth 			printf(" 0x%x", fdc->sc_status[i]);
   2322   1.1   jnemeth 		printf(">\n");
   2323   1.1   jnemeth 		return 0;
   2324   1.1   jnemeth #endif
   2325   1.1   jnemeth 	default:
   2326   1.1   jnemeth 		return ENOTTY;
   2327   1.1   jnemeth 	}
   2328   1.1   jnemeth 
   2329   1.1   jnemeth #ifdef DIAGNOSTIC
   2330   1.1   jnemeth 	panic("fdioctl: impossible");
   2331   1.1   jnemeth #endif
   2332   1.1   jnemeth }
   2333   1.1   jnemeth 
   2334   1.1   jnemeth int
   2335   1.1   jnemeth fdformat(dev_t dev, struct ne7_fd_formb *finfo, struct proc *p)
   2336   1.1   jnemeth {
   2337   1.1   jnemeth 	int rv = 0;
   2338  1.25   jnemeth 	struct fd_softc *fd = device_lookup_private(&fd_cd, FDUNIT(dev));
   2339   1.1   jnemeth 	struct fd_type *type = fd->sc_type;
   2340   1.1   jnemeth 	struct buf *bp;
   2341   1.1   jnemeth 
   2342   1.1   jnemeth 	/* set up a buffer header for fdstrategy() */
   2343  1.20        ad 	bp = getiobuf(NULL, false);
   2344   1.1   jnemeth 	if (bp == NULL)
   2345   1.1   jnemeth 		return ENOBUFS;
   2346   1.1   jnemeth 
   2347   1.1   jnemeth 	bp->b_vp = NULL;
   2348  1.20        ad 	bp->b_cflags = BC_BUSY;
   2349  1.20        ad 	bp->b_flags = B_PHYS | B_FORMAT;
   2350   1.1   jnemeth 	bp->b_proc = p;
   2351   1.1   jnemeth 	bp->b_dev = dev;
   2352   1.1   jnemeth 
   2353   1.1   jnemeth 	/*
   2354   1.1   jnemeth 	 * Calculate a fake blkno, so fdstrategy() would initiate a
   2355   1.1   jnemeth 	 * seek to the requested cylinder.
   2356   1.1   jnemeth 	 */
   2357   1.1   jnemeth 	bp->b_blkno = ((finfo->cyl * (type->sectrac * type->heads)
   2358   1.1   jnemeth 		       + finfo->head * type->sectrac) * FD_BSIZE(fd))
   2359   1.1   jnemeth 		      / DEV_BSIZE;
   2360   1.1   jnemeth 
   2361   1.1   jnemeth 	bp->b_bcount = sizeof(struct fd_idfield_data) * finfo->fd_formb_nsecs;
   2362   1.6  christos 	bp->b_data = (void *)finfo;
   2363   1.1   jnemeth 
   2364   1.1   jnemeth #ifdef FD_DEBUG
   2365   1.1   jnemeth 	if (fdc_debug) {
   2366   1.1   jnemeth 		int i;
   2367   1.1   jnemeth 
   2368   1.1   jnemeth 		printf("fdformat: blkno 0x%llx count %d\n",
   2369   1.1   jnemeth 			(unsigned long long)bp->b_blkno, bp->b_bcount);
   2370   1.1   jnemeth 
   2371   1.1   jnemeth 		printf("\tcyl:\t%d\n", finfo->cyl);
   2372   1.1   jnemeth 		printf("\thead:\t%d\n", finfo->head);
   2373   1.1   jnemeth 		printf("\tnsecs:\t%d\n", finfo->fd_formb_nsecs);
   2374   1.1   jnemeth 		printf("\tsshft:\t%d\n", finfo->fd_formb_secshift);
   2375   1.1   jnemeth 		printf("\tgaplen:\t%d\n", finfo->fd_formb_gaplen);
   2376   1.1   jnemeth 		printf("\ttrack data:");
   2377   1.1   jnemeth 		for (i = 0; i < finfo->fd_formb_nsecs; i++) {
   2378   1.1   jnemeth 			printf(" [c%d h%d s%d]",
   2379   1.1   jnemeth 					finfo->fd_formb_cylno(i),
   2380   1.1   jnemeth 					finfo->fd_formb_headno(i),
   2381   1.1   jnemeth 					finfo->fd_formb_secno(i) );
   2382   1.1   jnemeth 			if (finfo->fd_formb_secsize(i) != 2)
   2383   1.1   jnemeth 				printf("<sz:%d>", finfo->fd_formb_secsize(i));
   2384   1.1   jnemeth 		}
   2385   1.1   jnemeth 		printf("\n");
   2386   1.1   jnemeth 	}
   2387   1.1   jnemeth #endif
   2388   1.1   jnemeth 
   2389   1.1   jnemeth 	/* now do the format */
   2390   1.1   jnemeth 	fdstrategy(bp);
   2391   1.1   jnemeth 
   2392   1.1   jnemeth 	/* ...and wait for it to complete */
   2393   1.1   jnemeth 	rv = biowait(bp);
   2394   1.1   jnemeth 	putiobuf(bp);
   2395   1.1   jnemeth 	return rv;
   2396   1.1   jnemeth }
   2397   1.1   jnemeth 
   2398   1.1   jnemeth void
   2399   1.1   jnemeth fdgetdisklabel(dev_t dev)
   2400   1.1   jnemeth {
   2401  1.23    cegger 	int i;
   2402  1.23    cegger 	struct fd_softc *fd = device_lookup_private(&fd_cd, FDUNIT(dev));
   2403   1.1   jnemeth 	struct disklabel *lp = fd->sc_dk.dk_label;
   2404   1.1   jnemeth 	struct cpu_disklabel *clp = fd->sc_dk.dk_cpulabel;
   2405   1.1   jnemeth 
   2406  1.30    cegger 	memset(lp, 0, sizeof(struct disklabel));
   2407  1.30    cegger 	memset(lp, 0, sizeof(struct cpu_disklabel));
   2408   1.1   jnemeth 
   2409   1.1   jnemeth 	lp->d_type = DTYPE_FLOPPY;
   2410   1.1   jnemeth 	lp->d_secsize = FD_BSIZE(fd);
   2411   1.1   jnemeth 	lp->d_secpercyl = fd->sc_type->seccyl;
   2412   1.1   jnemeth 	lp->d_nsectors = fd->sc_type->sectrac;
   2413   1.1   jnemeth 	lp->d_ncylinders = fd->sc_type->cylinders;
   2414   1.1   jnemeth 	lp->d_ntracks = fd->sc_type->heads;	/* Go figure... */
   2415   1.1   jnemeth 	lp->d_secperunit = lp->d_secpercyl * lp->d_ncylinders;
   2416   1.1   jnemeth 	lp->d_rpm = 300;	/* XXX like it matters... */
   2417   1.1   jnemeth 
   2418   1.1   jnemeth 	strncpy(lp->d_typename, "floppy disk", sizeof(lp->d_typename));
   2419   1.1   jnemeth 	strncpy(lp->d_packname, "fictitious", sizeof(lp->d_packname));
   2420   1.1   jnemeth 	lp->d_interleave = 1;
   2421   1.1   jnemeth 	lp->d_flags = D_REMOVABLE;
   2422   1.1   jnemeth 
   2423   1.1   jnemeth 	lp->d_partitions[RAW_PART].p_offset = 0;
   2424   1.1   jnemeth 	lp->d_partitions[RAW_PART].p_size = lp->d_secpercyl * lp->d_ncylinders;
   2425   1.1   jnemeth 	lp->d_partitions[RAW_PART].p_fstype = FS_UNUSED;
   2426   1.1   jnemeth 	lp->d_npartitions = RAW_PART + 1;
   2427   1.1   jnemeth 
   2428   1.1   jnemeth 	lp->d_magic = DISKMAGIC;
   2429   1.1   jnemeth 	lp->d_magic2 = DISKMAGIC;
   2430   1.1   jnemeth 	lp->d_checksum = dkcksum(lp);
   2431   1.1   jnemeth 
   2432   1.1   jnemeth 	/*
   2433   1.1   jnemeth 	 * Call the generic disklabel extraction routine.  If there's
   2434   1.1   jnemeth 	 * not a label there, fake it.
   2435   1.1   jnemeth 	 */
   2436   1.1   jnemeth 	if (readdisklabel(dev, fdstrategy, lp, clp) != NULL) {
   2437   1.1   jnemeth 		strncpy(lp->d_packname, "default label",
   2438   1.1   jnemeth 		    sizeof(lp->d_packname));
   2439   1.1   jnemeth 		/*
   2440   1.1   jnemeth 		 * Reset the partition info; it might have gotten
   2441   1.1   jnemeth 		 * trashed in readdisklabel().
   2442   1.1   jnemeth 		 *
   2443   1.1   jnemeth 		 * XXX Why do we have to do this?  readdisklabel()
   2444   1.1   jnemeth 		 * should be safe...
   2445   1.1   jnemeth 		 */
   2446   1.1   jnemeth 		for (i = 0; i < MAXPARTITIONS; ++i) {
   2447   1.1   jnemeth 			lp->d_partitions[i].p_offset = 0;
   2448   1.1   jnemeth 			if (i == RAW_PART) {
   2449   1.1   jnemeth 				lp->d_partitions[i].p_size =
   2450   1.1   jnemeth 				    lp->d_secpercyl * lp->d_ncylinders;
   2451   1.1   jnemeth 				lp->d_partitions[i].p_fstype = FS_BSDFFS;
   2452   1.1   jnemeth 			} else {
   2453   1.1   jnemeth 				lp->d_partitions[i].p_size = 0;
   2454   1.1   jnemeth 				lp->d_partitions[i].p_fstype = FS_UNUSED;
   2455   1.1   jnemeth 			}
   2456   1.1   jnemeth 		}
   2457   1.1   jnemeth 		lp->d_npartitions = RAW_PART + 1;
   2458   1.1   jnemeth 	}
   2459   1.1   jnemeth }
   2460   1.1   jnemeth 
   2461   1.1   jnemeth void
   2462   1.1   jnemeth fd_do_eject(struct fd_softc *fd)
   2463   1.1   jnemeth {
   2464   1.1   jnemeth 	struct fdc_softc *fdc = (void *)device_parent(&fd->sc_dv);
   2465   1.1   jnemeth 
   2466   1.3   jnemeth #ifdef SUN4
   2467   1.1   jnemeth 	if (CPU_ISSUN4C) {
   2468   1.1   jnemeth 		auxregbisc(AUXIO4C_FDS, AUXIO4C_FEJ);
   2469   1.1   jnemeth 		delay(10);
   2470   1.1   jnemeth 		auxregbisc(AUXIO4C_FEJ, AUXIO4C_FDS);
   2471   1.1   jnemeth 		return;
   2472   1.1   jnemeth 	}
   2473   1.1   jnemeth 	if (CPU_ISSUN4M && (fdc->sc_flags & FDC_82077) != 0) {
   2474   1.1   jnemeth #endif
   2475   1.1   jnemeth 		bus_space_tag_t t = fdc->sc_bustag;
   2476   1.1   jnemeth 		bus_space_handle_t h = fdc->sc_handle;
   2477   1.1   jnemeth 		uint8_t dor = FDO_FRST | FDO_FDMAEN | FDO_MOEN(0);
   2478   1.1   jnemeth 
   2479   1.1   jnemeth 		bus_space_write_1(t, h, fdc->sc_reg_dor, dor | FDO_EJ);
   2480   1.1   jnemeth 		delay(10);
   2481   1.1   jnemeth 		bus_space_write_1(t, h, fdc->sc_reg_dor, FDO_FRST | FDO_DS);
   2482   1.1   jnemeth 		return;
   2483   1.3   jnemeth #ifdef SUN4
   2484   1.1   jnemeth 	}
   2485   1.1   jnemeth #endif
   2486   1.1   jnemeth }
   2487   1.1   jnemeth 
   2488   1.1   jnemeth /* ARGSUSED */
   2489   1.1   jnemeth void
   2490   1.1   jnemeth fd_mountroot_hook(struct device *dev)
   2491   1.1   jnemeth {
   2492   1.1   jnemeth 	int c;
   2493   1.1   jnemeth 
   2494   1.1   jnemeth 	fd_do_eject((struct fd_softc *)dev);
   2495   1.1   jnemeth 	printf("Insert filesystem floppy and press return.");
   2496   1.1   jnemeth 	for (;;) {
   2497   1.1   jnemeth 		c = cngetc();
   2498   1.1   jnemeth 		if ((c == '\r') || (c == '\n')) {
   2499   1.1   jnemeth 			printf("\n");
   2500   1.1   jnemeth 			break;
   2501   1.1   jnemeth 		}
   2502   1.1   jnemeth 	}
   2503   1.1   jnemeth }
   2504   1.1   jnemeth 
   2505   1.1   jnemeth #ifdef MEMORY_DISK_HOOKS
   2506   1.1   jnemeth 
   2507   1.1   jnemeth #define FDMICROROOTSIZE ((2*18*80) << DEV_BSHIFT)
   2508   1.1   jnemeth 
   2509   1.1   jnemeth int
   2510   1.8    dogcow fd_read_md_image(size_t	*sizep, void **addrp)
   2511   1.1   jnemeth {
   2512   1.1   jnemeth 	struct buf buf, *bp = &buf;
   2513   1.1   jnemeth 	dev_t dev;
   2514   1.1   jnemeth 	off_t offset;
   2515   1.8    dogcow 	char *addr;
   2516   1.1   jnemeth 
   2517   1.1   jnemeth 	dev = makedev(54,0);	/* XXX */
   2518   1.1   jnemeth 
   2519  1.28    cegger 	addr = malloc(FDMICROROOTSIZE, M_DEVBUF, M_WAITOK);
   2520   1.1   jnemeth 	*addrp = addr;
   2521   1.1   jnemeth 
   2522   1.1   jnemeth 	if (fdopen(dev, 0, S_IFCHR, NULL))
   2523   1.1   jnemeth 		panic("fd: mountroot: fdopen");
   2524   1.1   jnemeth 
   2525   1.1   jnemeth 	offset = 0;
   2526   1.1   jnemeth 
   2527   1.1   jnemeth 	for (;;) {
   2528   1.1   jnemeth 		bp->b_dev = dev;
   2529   1.1   jnemeth 		bp->b_error = 0;
   2530   1.1   jnemeth 		bp->b_resid = 0;
   2531   1.1   jnemeth 		bp->b_proc = NULL;
   2532  1.20        ad 		bp->b_cflags = BC_BUSY;
   2533  1.20        ad 		bp->b_flags = B_PHYS | B_RAW | B_READ;
   2534   1.1   jnemeth 		bp->b_blkno = btodb(offset);
   2535   1.1   jnemeth 		bp->b_bcount = DEV_BSIZE;
   2536   1.1   jnemeth 		bp->b_data = addr;
   2537   1.1   jnemeth 		fdstrategy(bp);
   2538  1.20        ad 		biowait(bp);
   2539   1.1   jnemeth 		if (bp->b_error)
   2540   1.1   jnemeth 			panic("fd: mountroot: fdread error %d", bp->b_error);
   2541   1.1   jnemeth 
   2542   1.1   jnemeth 		if (bp->b_resid != 0)
   2543   1.1   jnemeth 			break;
   2544   1.1   jnemeth 
   2545   1.1   jnemeth 		addr += DEV_BSIZE;
   2546   1.1   jnemeth 		offset += DEV_BSIZE;
   2547   1.1   jnemeth 		if (offset + DEV_BSIZE > FDMICROROOTSIZE)
   2548   1.1   jnemeth 			break;
   2549   1.1   jnemeth 	}
   2550   1.1   jnemeth 	(void)fdclose(dev, 0, S_IFCHR, NULL);
   2551   1.1   jnemeth 	*sizep = offset;
   2552  1.25   jnemeth 	fd_do_eject(device_lookup_private(&fd_cd, FDUNIT(dev)));
   2553   1.1   jnemeth 	return 0;
   2554   1.1   jnemeth }
   2555   1.1   jnemeth #endif /* MEMORY_DISK_HOOKS */
   2556   1.4   jnemeth 
   2557   1.4   jnemeth static void
   2558   1.4   jnemeth fd_set_properties(struct fd_softc *fd)
   2559   1.4   jnemeth {
   2560   1.4   jnemeth 	prop_dictionary_t disk_info, odisk_info, geom;
   2561   1.4   jnemeth 	struct fd_type *fdt;
   2562   1.4   jnemeth 	int secsize;
   2563   1.4   jnemeth 
   2564   1.4   jnemeth 	fdt = fd->sc_deftype;
   2565   1.4   jnemeth 
   2566   1.4   jnemeth 	disk_info = prop_dictionary_create();
   2567   1.4   jnemeth 
   2568   1.4   jnemeth 	geom = prop_dictionary_create();
   2569   1.4   jnemeth 
   2570   1.4   jnemeth 	prop_dictionary_set_uint64(geom, "sectors-per-unit",
   2571   1.4   jnemeth 	    fdt->size);
   2572   1.4   jnemeth 
   2573   1.4   jnemeth 	switch (fdt->secsize) {
   2574   1.4   jnemeth 	case 2:
   2575   1.4   jnemeth 		secsize = 512;
   2576   1.4   jnemeth 		break;
   2577   1.4   jnemeth 	case 3:
   2578   1.4   jnemeth 		secsize = 1024;
   2579   1.4   jnemeth 		break;
   2580   1.4   jnemeth 	default:
   2581   1.4   jnemeth 		secsize = 0;
   2582   1.4   jnemeth 	}
   2583   1.4   jnemeth 
   2584   1.4   jnemeth 	prop_dictionary_set_uint32(geom, "sector-size",
   2585   1.4   jnemeth 	    secsize);
   2586   1.4   jnemeth 
   2587   1.4   jnemeth 	prop_dictionary_set_uint16(geom, "sectors-per-track",
   2588   1.4   jnemeth 	    fdt->sectrac);
   2589   1.4   jnemeth 
   2590   1.4   jnemeth 	prop_dictionary_set_uint16(geom, "tracks-per-cylinder",
   2591   1.4   jnemeth 	    fdt->heads);
   2592   1.4   jnemeth 
   2593   1.4   jnemeth 	prop_dictionary_set_uint64(geom, "cylinders-per-unit",
   2594   1.4   jnemeth 	    fdt->cylinders);
   2595   1.4   jnemeth 
   2596   1.4   jnemeth 	prop_dictionary_set(disk_info, "geometry", geom);
   2597   1.4   jnemeth 	prop_object_release(geom);
   2598   1.4   jnemeth 
   2599   1.4   jnemeth 	prop_dictionary_set(device_properties(&fd->sc_dv),
   2600   1.4   jnemeth 	    "disk-info", disk_info);
   2601   1.4   jnemeth 
   2602   1.4   jnemeth 	/*
   2603   1.4   jnemeth 	 * Don't release disk_info here; we keep a reference to it.
   2604   1.4   jnemeth 	 * disk_detach() will release it when we go away.
   2605   1.4   jnemeth 	 */
   2606   1.4   jnemeth 
   2607   1.4   jnemeth 	odisk_info = fd->sc_dk.dk_info;
   2608   1.4   jnemeth 	fd->sc_dk.dk_info = disk_info;
   2609   1.4   jnemeth 	if (odisk_info)
   2610   1.4   jnemeth 		prop_object_release(odisk_info);
   2611   1.4   jnemeth }
   2612