Home | History | Annotate | Line # | Download | only in ata
wd.c revision 1.132
      1  1.132  mycroft /*	$NetBSD: wd.c,v 1.132 1995/03/23 11:33:32 mycroft Exp $	*/
      2  1.100      cgd 
      3   1.11  deraadt /*
      4  1.124  mycroft  * Copyright (c) 1994, 1995 Charles Hannum.  All rights reserved.
      5  1.119  mycroft  *
      6  1.119  mycroft  * DMA and multi-sector PIO handling are derived from code contributed by
      7  1.119  mycroft  * Onno van der Linden.
      8  1.113  mycroft  *
      9  1.113  mycroft  * Redistribution and use in source and binary forms, with or without
     10  1.113  mycroft  * modification, are permitted provided that the following conditions
     11  1.113  mycroft  * are met:
     12  1.113  mycroft  * 1. Redistributions of source code must retain the above copyright
     13  1.113  mycroft  *    notice, this list of conditions and the following disclaimer.
     14  1.113  mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     15  1.113  mycroft  *    notice, this list of conditions and the following disclaimer in the
     16  1.113  mycroft  *    documentation and/or other materials provided with the distribution.
     17  1.113  mycroft  * 3. All advertising materials mentioning features or use of this software
     18  1.113  mycroft  *    must display the following acknowledgement:
     19  1.113  mycroft  *	This product includes software developed by Charles Hannum.
     20  1.113  mycroft  * 4. The name of the author may not be used to endorse or promote products
     21  1.113  mycroft  *    derived from this software without specific prior written permission.
     22  1.113  mycroft  *
     23    1.1      cgd  * Copyright (c) 1990 The Regents of the University of California.
     24    1.1      cgd  * All rights reserved.
     25    1.1      cgd  *
     26    1.1      cgd  * This code is derived from software contributed to Berkeley by
     27    1.1      cgd  * William Jolitz.
     28    1.1      cgd  *
     29    1.1      cgd  * Redistribution and use in source and binary forms, with or without
     30    1.1      cgd  * modification, are permitted provided that the following conditions
     31    1.1      cgd  * are met:
     32    1.1      cgd  * 1. Redistributions of source code must retain the above copyright
     33    1.1      cgd  *    notice, this list of conditions and the following disclaimer.
     34    1.1      cgd  * 2. Redistributions in binary form must reproduce the above copyright
     35    1.1      cgd  *    notice, this list of conditions and the following disclaimer in the
     36    1.1      cgd  *    documentation and/or other materials provided with the distribution.
     37    1.1      cgd  * 3. All advertising materials mentioning features or use of this software
     38    1.1      cgd  *    must display the following acknowledgement:
     39    1.1      cgd  *	This product includes software developed by the University of
     40    1.1      cgd  *	California, Berkeley and its contributors.
     41    1.1      cgd  * 4. Neither the name of the University nor the names of its contributors
     42    1.1      cgd  *    may be used to endorse or promote products derived from this software
     43    1.1      cgd  *    without specific prior written permission.
     44    1.1      cgd  *
     45    1.1      cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     46    1.1      cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     47    1.1      cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     48    1.1      cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     49    1.1      cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     50    1.1      cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     51    1.1      cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     52    1.1      cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     53    1.1      cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     54    1.1      cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     55    1.1      cgd  * SUCH DAMAGE.
     56    1.1      cgd  *
     57  1.100      cgd  *	@(#)wd.c	7.2 (Berkeley) 5/9/91
     58    1.1      cgd  */
     59    1.1      cgd 
     60   1.46  mycroft #define	INSTRUMENT	/* instrumentation stuff by Brad Parker */
     61    1.1      cgd 
     62   1.29  mycroft #include <sys/param.h>
     63   1.29  mycroft #include <sys/systm.h>
     64   1.43  mycroft #include <sys/kernel.h>
     65   1.29  mycroft #include <sys/conf.h>
     66   1.29  mycroft #include <sys/file.h>
     67   1.29  mycroft #include <sys/stat.h>
     68   1.29  mycroft #include <sys/ioctl.h>
     69   1.29  mycroft #include <sys/buf.h>
     70   1.29  mycroft #include <sys/uio.h>
     71   1.29  mycroft #include <sys/malloc.h>
     72   1.64  mycroft #include <sys/device.h>
     73   1.94  mycroft #include <sys/disklabel.h>
     74   1.94  mycroft #include <sys/disk.h>
     75   1.29  mycroft #include <sys/syslog.h>
     76    1.3  deraadt #ifdef INSTRUMENT
     77   1.29  mycroft #include <sys/dkstat.h>
     78    1.3  deraadt #endif
     79   1.29  mycroft 
     80   1.29  mycroft #include <vm/vm.h>
     81   1.29  mycroft 
     82   1.29  mycroft #include <machine/cpu.h>
     83   1.29  mycroft #include <machine/pio.h>
     84   1.29  mycroft 
     85   1.74  mycroft #include <i386/isa/isavar.h>
     86  1.130      cgd #include <dev/isa/wdreg.h>
     87    1.1      cgd 
     88   1.41  mycroft #define WDCNDELAY	100000	/* delay = 100us; so 10s for a controller state change */
     89   1.41  mycroft #define WDCDELAY	100
     90   1.98  mycroft 
     91   1.98  mycroft #define	WAITTIME	(4 * hz)	/* time to wait for a completion */
     92   1.98  mycroft #define	RECOVERYTIME	(hz / 2)	/* time to recover from an error */
     93   1.19  deraadt 
     94   1.89  mycroft #if 0
     95   1.64  mycroft /* If you enable this, it will report any delays more than 100us * N long. */
     96   1.69  mycroft #define WDCNDELAY_DEBUG	10
     97   1.51  mycroft #endif
     98   1.23  deraadt 
     99   1.21  deraadt #define	WDIORETRIES	5	/* number of retries before giving up */
    100    1.1      cgd 
    101   1.92      cgd #define	WDUNIT(dev)			DISKUNIT(dev)
    102   1.92      cgd #define	WDPART(dev)			DISKPART(dev)
    103   1.92      cgd #define	MAKEWDDEV(maj, unit, part)	MAKEDISKDEV(maj, unit, part)
    104   1.92      cgd 
    105   1.92      cgd #define	WDLABELDEV(dev)	(MAKEWDDEV(major(dev), WDUNIT(dev), RAW_PART))
    106    1.1      cgd 
    107    1.1      cgd #define b_cylin	b_resid		/* cylinder number for doing IO to */
    108    1.1      cgd 				/* shares an entry in the buf struct */
    109    1.1      cgd 
    110    1.1      cgd /*
    111   1.37  mycroft  * Drive status.
    112    1.1      cgd  */
    113   1.64  mycroft struct wd_softc {
    114   1.64  mycroft 	struct device sc_dev;
    115   1.93  mycroft 	struct dkdevice sc_dk;
    116    1.9  deraadt 
    117  1.126  mycroft 	daddr_t sc_blkno;	/* starting block number */
    118  1.126  mycroft 	int sc_bcount;		/* byte count left */
    119  1.126  mycroft 	int sc_skip;		/* bytes already transferred */
    120  1.126  mycroft 	int sc_nblks;		/* number of blocks currently transferring */
    121  1.129  mycroft 	int sc_nbytes;		/* number of bytes currently transferring */
    122  1.126  mycroft 
    123  1.126  mycroft 	int sc_drive;		/* physical unit number */
    124  1.126  mycroft 	int sc_state;		/* control state */
    125  1.113  mycroft #define	RECAL		0		/* recalibrate */
    126  1.113  mycroft #define	RECAL_WAIT	1		/* done recalibrating */
    127  1.113  mycroft #define	GEOMETRY	2		/* upload geometry */
    128  1.113  mycroft #define	GEOMETRY_WAIT	3		/* done uploading geometry */
    129  1.113  mycroft #define	MULTIMODE	4		/* set multiple mode */
    130  1.113  mycroft #define	MULTIMODE_WAIT	5		/* done setting multiple mode */
    131  1.113  mycroft #define	OPEN		6		/* done with open */
    132  1.126  mycroft 	int sc_mode;		/* transfer mode */
    133  1.113  mycroft #define	WDM_PIOSINGLE	0		/* single-sector PIO */
    134  1.113  mycroft #define	WDM_PIOMULTI	1		/* multi-sector PIO */
    135  1.113  mycroft #define	WDM_DMA		2		/* DMA */
    136  1.126  mycroft 	int sc_multiple;	/* multiple for WDM_PIOMULTI */
    137  1.126  mycroft 	int sc_flags;		/* drive characteistics found */
    138  1.108  mycroft #define	WDF_LOCKED	0x01
    139  1.108  mycroft #define	WDF_WANTED	0x02
    140  1.132  mycroft #define	WDF_WLABEL	0x04		/* label is writable */
    141  1.132  mycroft #define	WDF_LABELLING	0x08		/* writing label */
    142  1.132  mycroft #define	WDF_LOADED	0x10
    143  1.132  mycroft #define	WDF_32BIT	0x20		/* can do 32-bit transfer */
    144  1.126  mycroft 
    145  1.126  mycroft 	struct wdparams sc_params; /* ESDI/IDE drive/controller parameters */
    146  1.126  mycroft 	daddr_t	sc_badsect[127];	/* 126 plus trailing -1 marker */
    147  1.126  mycroft 
    148   1.78  mycroft 	TAILQ_ENTRY(wd_softc) sc_drivechain;
    149   1.64  mycroft 	struct buf sc_q;
    150   1.74  mycroft };
    151   1.64  mycroft 
    152   1.64  mycroft struct wdc_softc {
    153   1.64  mycroft 	struct device sc_dev;
    154   1.76  mycroft 	struct intrhand sc_ih;
    155   1.64  mycroft 
    156  1.126  mycroft 	int sc_iobase;		/* I/O port base */
    157  1.126  mycroft 	int sc_drq;		/* DMA channel */
    158  1.125  mycroft 
    159  1.126  mycroft 	TAILQ_HEAD(drivehead, wd_softc) sc_drives;
    160  1.126  mycroft 	int sc_flags;
    161  1.113  mycroft #define	WDCF_ACTIVE	0x01	/* controller is active */
    162  1.113  mycroft #define	WDCF_SINGLE	0x02	/* sector at a time mode */
    163  1.113  mycroft #define	WDCF_ERROR	0x04	/* processing a disk error */
    164  1.124  mycroft #define	WDCF_WANTED	0x08	/* XXX locking for wd_get_parms() */
    165  1.126  mycroft 	int sc_errors;		/* count of errors during current transfer */
    166  1.126  mycroft 	u_char sc_status;	/* copy of status register */
    167  1.126  mycroft 	u_char sc_error;	/* copy of error register */
    168   1.74  mycroft };
    169    1.3  deraadt 
    170  1.102  mycroft int wdcprobe __P((struct device *, void *, void *));
    171  1.102  mycroft void wdcattach __P((struct device *, struct device *, void *));
    172    1.3  deraadt 
    173   1.74  mycroft struct cfdriver wdccd = {
    174  1.131      cgd 	NULL, "wdc", wdcprobe, wdcattach, DV_DULL, sizeof(struct wdc_softc)
    175    1.1      cgd };
    176    1.1      cgd 
    177  1.102  mycroft int wdprobe __P((struct device *, void *, void *));
    178  1.102  mycroft void wdattach __P((struct device *, struct device *, void *));
    179  1.102  mycroft 
    180   1.74  mycroft struct cfdriver wdcd = {
    181   1.74  mycroft 	NULL, "wd", wdprobe, wdattach, DV_DISK, sizeof(struct wd_softc)
    182   1.65  mycroft };
    183  1.108  mycroft 
    184  1.108  mycroft void wdgetdisklabel __P((struct wd_softc *));
    185  1.108  mycroft int wd_get_parms __P((struct wd_softc *));
    186  1.108  mycroft void wdstrategy __P((struct buf *));
    187  1.108  mycroft void wdstart __P((struct wd_softc *));
    188  1.108  mycroft 
    189  1.102  mycroft struct dkdriver wddkdriver = { wdstrategy };
    190   1.65  mycroft 
    191   1.64  mycroft void wdfinish __P((struct wd_softc *, struct buf *));
    192  1.103  mycroft int wdcintr __P((struct wdc_softc *));
    193   1.64  mycroft static void wdcstart __P((struct wdc_softc *));
    194   1.64  mycroft static int wdcommand __P((struct wd_softc *, int, int, int, int, int));
    195  1.105  mycroft static int wdcommandshort __P((struct wdc_softc *, int, int));
    196   1.69  mycroft static int wdcontrol __P((struct wd_softc *));
    197   1.64  mycroft static int wdsetctlr __P((struct wd_softc *));
    198   1.64  mycroft static void bad144intern __P((struct wd_softc *));
    199   1.64  mycroft static int wdcreset __P((struct wdc_softc *));
    200   1.81      cgd static void wdcrestart __P((void *arg));
    201   1.64  mycroft static void wdcunwedge __P((struct wdc_softc *));
    202   1.81      cgd static void wdctimeout __P((void *arg));
    203   1.64  mycroft static void wderror __P((void *, struct buf *, char *));
    204   1.64  mycroft int wdcwait __P((struct wdc_softc *, int));
    205   1.87  mycroft /* ST506 spec says that if READY or SEEKCMPLT go off, then the read or write
    206   1.87  mycroft    command is aborted. */
    207  1.110  mycroft #define	wait_for_drq(d)		wdcwait(d, WDCS_DRDY | WDCS_DSC | WDCS_DRQ)
    208  1.110  mycroft #define	wait_for_ready(d)	wdcwait(d, WDCS_DRDY | WDCS_DSC)
    209   1.64  mycroft #define	wait_for_unbusy(d)	wdcwait(d, 0)
    210    1.1      cgd 
    211    1.1      cgd /*
    212    1.1      cgd  * Probe for controller.
    213    1.1      cgd  */
    214    1.1      cgd int
    215  1.102  mycroft wdcprobe(parent, match, aux)
    216  1.102  mycroft 	struct device *parent;
    217  1.102  mycroft 	void *match, *aux;
    218    1.1      cgd {
    219  1.102  mycroft 	struct wdc_softc *wdc = match;
    220   1.74  mycroft 	struct isa_attach_args *ia = aux;
    221  1.107  mycroft 	int iobase;
    222    1.1      cgd 
    223   1.74  mycroft 	wdc->sc_iobase = iobase = ia->ia_iobase;
    224   1.64  mycroft 
    225   1.64  mycroft 	/* Check if we have registers that work. */
    226   1.64  mycroft 	outb(iobase+wd_error, 0x5a);	/* Error register not writable. */
    227   1.64  mycroft 	outb(iobase+wd_cyl_lo, 0xa5);	/* But all of cyllo are implemented. */
    228   1.64  mycroft 	if (inb(iobase+wd_error) == 0x5a || inb(iobase+wd_cyl_lo) != 0xa5)
    229   1.64  mycroft 		return 0;
    230    1.3  deraadt 
    231   1.64  mycroft 	if (wdcreset(wdc) != 0) {
    232   1.64  mycroft 		delay(500000);
    233   1.64  mycroft 		if (wdcreset(wdc) != 0)
    234   1.64  mycroft 			return 0;
    235   1.64  mycroft 	}
    236    1.1      cgd 
    237  1.105  mycroft 	outb(iobase+wd_sdh, WDSD_IBM | 0);
    238  1.105  mycroft 
    239  1.105  mycroft 	/* Wait for controller to become ready. */
    240  1.105  mycroft 	if (wait_for_unbusy(wdc) < 0)
    241  1.105  mycroft 		return 0;
    242  1.105  mycroft 
    243  1.105  mycroft 	/* Send command. */
    244  1.105  mycroft 	outb(iobase+wd_command, WDCC_DIAGNOSE);
    245  1.105  mycroft 
    246  1.105  mycroft 	/* Wait for command to complete. */
    247  1.121  mycroft 	if (wait_for_unbusy(wdc) < 0)
    248  1.105  mycroft 		return 0;
    249    1.3  deraadt 
    250   1.74  mycroft 	ia->ia_iosize = 8;
    251   1.74  mycroft 	ia->ia_msize = 0;
    252   1.74  mycroft 	return 1;
    253   1.66  mycroft }
    254   1.66  mycroft 
    255   1.74  mycroft struct wdc_attach_args {
    256   1.74  mycroft 	int wa_drive;
    257   1.74  mycroft };
    258   1.74  mycroft 
    259   1.66  mycroft int
    260   1.74  mycroft wdprint(aux, wdc)
    261   1.74  mycroft 	void *aux;
    262   1.74  mycroft 	char *wdc;
    263   1.74  mycroft {
    264   1.74  mycroft 	struct wdc_attach_args *wa = aux;
    265   1.74  mycroft 
    266   1.74  mycroft 	if (!wdc)
    267   1.74  mycroft 		printf(" drive %d", wa->wa_drive);
    268   1.74  mycroft 	return QUIET;
    269   1.66  mycroft }
    270   1.66  mycroft 
    271   1.74  mycroft void
    272   1.74  mycroft wdcattach(parent, self, aux)
    273   1.74  mycroft 	struct device *parent, *self;
    274   1.74  mycroft 	void *aux;
    275   1.66  mycroft {
    276   1.74  mycroft 	struct wdc_softc *wdc = (void *)self;
    277   1.76  mycroft 	struct isa_attach_args *ia = aux;
    278   1.74  mycroft 	struct wdc_attach_args wa;
    279   1.67  mycroft 
    280  1.102  mycroft 	TAILQ_INIT(&wdc->sc_drives);
    281  1.113  mycroft 	wdc->sc_drq = ia->ia_drq;
    282  1.102  mycroft 
    283   1.74  mycroft 	printf("\n");
    284   1.74  mycroft 
    285   1.76  mycroft 	wdc->sc_ih.ih_fun = wdcintr;
    286   1.76  mycroft 	wdc->sc_ih.ih_arg = wdc;
    287   1.76  mycroft 	wdc->sc_ih.ih_level = IPL_BIO;
    288  1.123  mycroft 	intr_establish(ia->ia_irq, IST_EDGE, &wdc->sc_ih);
    289  1.102  mycroft 
    290  1.102  mycroft 	for (wa.wa_drive = 0; wa.wa_drive < 2; wa.wa_drive++)
    291  1.102  mycroft 		(void)config_found(self, (void *)&wa, wdprint);
    292    1.1      cgd }
    293    1.1      cgd 
    294    1.1      cgd int
    295  1.102  mycroft wdprobe(parent, match, aux)
    296  1.102  mycroft 	struct device *parent;
    297  1.102  mycroft 	void *match, *aux;
    298   1.74  mycroft {
    299  1.105  mycroft 	struct wdc_softc *wdc = (void *)parent;
    300  1.105  mycroft 	struct cfdata *cf = match;
    301   1.74  mycroft 	struct wdc_attach_args *wa = aux;
    302   1.74  mycroft 	int drive = wa->wa_drive;
    303    1.3  deraadt 
    304  1.102  mycroft 	if (cf->cf_loc[0] != -1 && cf->cf_loc[0] != drive)
    305   1.11  deraadt 		return 0;
    306    1.3  deraadt 
    307  1.110  mycroft 	if (wdcommandshort(wdc, drive, WDCC_RECAL) != 0 ||
    308  1.105  mycroft 	    wait_for_ready(wdc) != 0)
    309   1.74  mycroft 		return 0;
    310   1.64  mycroft 
    311   1.74  mycroft 	return 1;
    312   1.74  mycroft }
    313   1.64  mycroft 
    314   1.74  mycroft void
    315   1.74  mycroft wdattach(parent, self, aux)
    316   1.74  mycroft 	struct device *parent, *self;
    317   1.74  mycroft 	void *aux;
    318   1.74  mycroft {
    319   1.74  mycroft 	struct wd_softc *wd = (void *)self;
    320  1.113  mycroft 	struct wdc_softc *wdc = (void *)parent;
    321  1.106  mycroft 	struct wdc_attach_args *wa = aux;
    322   1.74  mycroft 	int i, blank;
    323   1.56  mycroft 
    324  1.106  mycroft 	wd->sc_drive = wa->wa_drive;
    325  1.106  mycroft 
    326  1.108  mycroft 	wd_get_parms(wd);
    327  1.108  mycroft 	printf(": %dMB, %d cyl, %d head, %d sec, %d bytes/sec <",
    328  1.110  mycroft 	    wd->sc_params.wdp_cylinders *
    329  1.108  mycroft 	    (wd->sc_params.wdp_heads * wd->sc_params.wdp_sectors) /
    330  1.108  mycroft 	    (1048576 / DEV_BSIZE),
    331  1.110  mycroft 	    wd->sc_params.wdp_cylinders,
    332  1.108  mycroft 	    wd->sc_params.wdp_heads,
    333  1.108  mycroft 	    wd->sc_params.wdp_sectors,
    334  1.108  mycroft 	    DEV_BSIZE);
    335   1.64  mycroft 	for (i = blank = 0; i < sizeof(wd->sc_params.wdp_model); i++) {
    336   1.64  mycroft 		char c = wd->sc_params.wdp_model[i];
    337   1.56  mycroft 		if (c == '\0')
    338   1.56  mycroft 			break;
    339   1.56  mycroft 		if (c != ' ') {
    340   1.56  mycroft 			if (blank)
    341   1.56  mycroft 				printf(" %c", c);
    342   1.56  mycroft 			else
    343   1.56  mycroft 				printf("%c", c);
    344   1.56  mycroft 			blank = 0;
    345   1.56  mycroft 		} else
    346   1.56  mycroft 			blank = 1;
    347   1.56  mycroft 	}
    348   1.56  mycroft 	printf(">\n");
    349  1.113  mycroft 
    350  1.113  mycroft 	if ((wd->sc_params.wdp_capabilities & WD_CAP_DMA) != 0 &&
    351  1.113  mycroft 	    wdc->sc_drq != DRQUNK) {
    352  1.113  mycroft 		wd->sc_mode = WDM_DMA;
    353  1.113  mycroft 	} else if (wd->sc_params.wdp_maxmulti > 1) {
    354  1.113  mycroft 		wd->sc_mode = WDM_PIOMULTI;
    355  1.115  mycroft 		wd->sc_multiple = min(wd->sc_params.wdp_maxmulti, 16);
    356  1.113  mycroft 	} else {
    357  1.113  mycroft 		wd->sc_mode = WDM_PIOSINGLE;
    358  1.113  mycroft 		wd->sc_multiple = 1;
    359  1.113  mycroft 	}
    360  1.113  mycroft 
    361  1.116  mycroft 	printf("%s: using", wd->sc_dev.dv_xname);
    362  1.113  mycroft 	if (wd->sc_mode == WDM_DMA)
    363  1.116  mycroft 		printf(" dma transfers,");
    364  1.113  mycroft 	else
    365  1.116  mycroft 		printf(" %d-sector %d-bit pio transfers,",
    366  1.115  mycroft 		    wd->sc_multiple, (wd->sc_flags & WDF_32BIT) == 0 ? 16 : 32);
    367  1.116  mycroft 	if ((wd->sc_params.wdp_capabilities & WD_CAP_LBA) != 0)
    368  1.116  mycroft 		printf(" lba addressing\n");
    369  1.116  mycroft 	else
    370  1.116  mycroft 		printf(" chs addressing\n");
    371  1.113  mycroft 
    372  1.102  mycroft 	wd->sc_dk.dk_driver = &wddkdriver;
    373    1.1      cgd }
    374    1.1      cgd 
    375   1.64  mycroft /*
    376   1.64  mycroft  * Read/write routine for a buffer.  Finds the proper unit, range checks
    377   1.64  mycroft  * arguments, and schedules the transfer.  Does not wait for the transfer to
    378   1.64  mycroft  * complete.  Multi-page transfers are supported.  All I/O requests must be a
    379   1.64  mycroft  * multiple of a sector in length.
    380    1.1      cgd  */
    381   1.64  mycroft void
    382   1.55  mycroft wdstrategy(bp)
    383   1.55  mycroft 	struct buf *bp;
    384    1.1      cgd {
    385   1.64  mycroft 	struct wd_softc *wd;	/* disk unit to do the IO */
    386  1.108  mycroft 	int unit = WDUNIT(bp->b_dev);
    387   1.37  mycroft 	int s;
    388    1.3  deraadt 
    389   1.64  mycroft 	/* Valid unit, controller, and request?  */
    390  1.108  mycroft 	if (unit >= wdcd.cd_ndevs ||
    391  1.108  mycroft 	    (wd = wdcd.cd_devs[unit]) == 0 ||
    392   1.85  mycroft 	    bp->b_blkno < 0 ||
    393  1.129  mycroft 	    (bp->b_bcount % wd->sc_dk.dk_label.d_secsize) != 0 ||
    394  1.129  mycroft 	    (bp->b_bcount / wd->sc_dk.dk_label.d_secsize) >= (1 << NBBY)) {
    395    1.1      cgd 		bp->b_error = EINVAL;
    396   1.93  mycroft 		goto bad;
    397    1.1      cgd 	}
    398    1.3  deraadt 
    399  1.108  mycroft #if 0
    400   1.64  mycroft 	/* "Soft" write protect check. */
    401   1.64  mycroft 	if ((wd->sc_flags & WDF_WRITEPROT) && (bp->b_flags & B_READ) == 0) {
    402    1.1      cgd 		bp->b_error = EROFS;
    403   1.93  mycroft 		goto bad;
    404    1.1      cgd 	}
    405  1.108  mycroft #endif
    406    1.3  deraadt 
    407   1.93  mycroft 	/* If it's a null transfer, return immediately. */
    408   1.93  mycroft 	if (bp->b_bcount == 0)
    409   1.93  mycroft 		goto done;
    410   1.93  mycroft 
    411  1.128  mycroft 	/*
    412  1.128  mycroft 	 * Do bounds checking, adjust transfer. if error, process.
    413  1.128  mycroft 	 * If end of partition, just return.
    414  1.128  mycroft 	 */
    415  1.128  mycroft 	if (bounds_check_with_label(bp, &wd->sc_dk.dk_label,
    416  1.132  mycroft 	    (wd->sc_flags & (WDF_WLABEL|WDF_LABELLING)) != 0) <= 0)
    417  1.128  mycroft 		goto done;
    418    1.3  deraadt 
    419   1.64  mycroft 	/* Don't bother doing rotational optimization. */
    420   1.38  mycroft 	bp->b_cylin = 0;
    421   1.38  mycroft 
    422   1.64  mycroft 	/* Queue transfer on drive, activate drive and controller if idle. */
    423    1.1      cgd 	s = splbio();
    424  1.113  mycroft 	disksort(&wd->sc_q, bp);
    425   1.78  mycroft 	if (!wd->sc_q.b_active)
    426   1.64  mycroft 		wdstart(wd);		/* Start drive. */
    427  1.120  mycroft #if 0
    428   1.80  mycroft 	else {
    429   1.80  mycroft 		struct wdc_softc *wdc = (void *)wd->sc_dev.dv_parent;
    430  1.120  mycroft 		if ((wdc->sc_flags & (WDCF_ACTIVE|WDCF_ERROR)) == 0) {
    431   1.80  mycroft 			printf("wdstrategy: controller inactive\n");
    432   1.80  mycroft 			wdcstart(wdc);
    433   1.80  mycroft 		}
    434   1.78  mycroft 	}
    435   1.78  mycroft #endif
    436    1.1      cgd 	splx(s);
    437   1.64  mycroft 	return;
    438    1.3  deraadt 
    439   1.93  mycroft bad:
    440   1.93  mycroft 	bp->b_flags |= B_ERROR;
    441    1.1      cgd done:
    442   1.64  mycroft 	/* Toss transfer; we're done early. */
    443    1.1      cgd 	biodone(bp);
    444    1.1      cgd }
    445    1.1      cgd 
    446    1.1      cgd /*
    447   1.64  mycroft  * Routine to queue a command to the controller.  The unit's request is linked
    448   1.64  mycroft  * into the active list for the controller.  If the controller is idle, the
    449   1.64  mycroft  * transfer is started.
    450    1.1      cgd  */
    451  1.108  mycroft void
    452   1.64  mycroft wdstart(wd)
    453   1.64  mycroft 	struct wd_softc *wd;
    454    1.1      cgd {
    455   1.78  mycroft 	struct wdc_softc *wdc = (void *)wd->sc_dev.dv_parent;
    456   1.78  mycroft 	int active = wdc->sc_drives.tqh_first != 0;
    457   1.64  mycroft 
    458   1.64  mycroft 	/* Link onto controller queue. */
    459   1.78  mycroft 	wd->sc_q.b_active = 1;
    460   1.78  mycroft 	TAILQ_INSERT_TAIL(&wdc->sc_drives, wd, sc_drivechain);
    461    1.3  deraadt 
    462   1.78  mycroft 	/* If controller not already active, start it. */
    463   1.78  mycroft 	if (!active)
    464   1.78  mycroft 		wdcstart(wdc);
    465    1.1      cgd }
    466    1.1      cgd 
    467   1.64  mycroft void
    468   1.64  mycroft wdfinish(wd, bp)
    469   1.64  mycroft 	struct wd_softc *wd;
    470   1.64  mycroft 	struct buf *bp;
    471   1.64  mycroft {
    472   1.64  mycroft 	struct wdc_softc *wdc = (void *)wd->sc_dev.dv_parent;
    473   1.64  mycroft 
    474   1.64  mycroft #ifdef INSTRUMENT
    475   1.95  mycroft 	dk_busy &= ~(1 << wd->sc_dev.dv_unit);
    476   1.64  mycroft #endif
    477   1.69  mycroft 	wdc->sc_flags &= ~(WDCF_SINGLE | WDCF_ERROR);
    478   1.78  mycroft 	wdc->sc_errors = 0;
    479   1.64  mycroft 	/*
    480  1.113  mycroft 	 * Move this drive to the end of the queue to give others a `fair'
    481  1.113  mycroft 	 * chance.
    482   1.64  mycroft 	 */
    483  1.113  mycroft 	if (wd->sc_drivechain.tqe_next) {
    484  1.113  mycroft 		TAILQ_REMOVE(&wdc->sc_drives, wd, sc_drivechain);
    485  1.113  mycroft 		if (bp->b_actf) {
    486  1.127  mycroft 			TAILQ_INSERT_TAIL(&wdc->sc_drives, wd, sc_drivechain);
    487  1.113  mycroft 		} else
    488  1.113  mycroft 			wd->sc_q.b_active = 0;
    489   1.64  mycroft 	}
    490   1.64  mycroft 	bp->b_resid = wd->sc_bcount;
    491   1.64  mycroft 	wd->sc_skip = 0;
    492   1.64  mycroft 	wd->sc_q.b_actf = bp->b_actf;
    493   1.64  mycroft 	biodone(bp);
    494   1.64  mycroft }
    495   1.64  mycroft 
    496    1.1      cgd /*
    497   1.64  mycroft  * Controller startup routine.  This does the calculation, and starts a
    498   1.64  mycroft  * single-sector read or write operation.  Called to start a transfer, or from
    499   1.64  mycroft  * the interrupt routine to continue a multi-sector transfer.
    500    1.1      cgd  * RESTRICTIONS:
    501    1.1      cgd  * 1.	The transfer length must be an exact multiple of the sector size.
    502    1.1      cgd  */
    503    1.1      cgd static void
    504   1.64  mycroft wdcstart(wdc)
    505   1.64  mycroft 	struct wdc_softc *wdc;
    506    1.1      cgd {
    507   1.64  mycroft 	struct wd_softc *wd;	/* disk unit for IO */
    508   1.64  mycroft 	struct buf *bp;
    509  1.129  mycroft 	struct disklabel *lp;
    510  1.113  mycroft 	int nblks;
    511   1.64  mycroft 
    512  1.124  mycroft 	/*
    513  1.124  mycroft 	 * XXX
    514  1.124  mycroft 	 * This is a kluge.  See comments in wd_get_parms().
    515  1.124  mycroft 	 */
    516  1.124  mycroft 	if ((wdc->sc_flags & WDCF_WANTED) != 0) {
    517  1.124  mycroft 		wdc->sc_flags &= ~WDCF_WANTED;
    518  1.124  mycroft 		wakeup(wdc);
    519  1.124  mycroft 		return;
    520  1.124  mycroft 	}
    521  1.124  mycroft 
    522    1.1      cgd loop:
    523   1.64  mycroft 	/* Is there a drive for the controller to do a transfer with? */
    524   1.78  mycroft 	wd = wdc->sc_drives.tqh_first;
    525   1.78  mycroft 	if (wd == NULL)
    526    1.1      cgd 		return;
    527    1.3  deraadt 
    528   1.64  mycroft 	/* Is there a transfer to this drive?  If not, deactivate drive. */
    529   1.78  mycroft 	bp = wd->sc_q.b_actf;
    530    1.1      cgd 	if (bp == NULL) {
    531   1.78  mycroft 		TAILQ_REMOVE(&wdc->sc_drives, wd, sc_drivechain);
    532   1.78  mycroft 		wd->sc_q.b_active = 0;
    533    1.1      cgd 		goto loop;
    534    1.1      cgd 	}
    535    1.3  deraadt 
    536   1.78  mycroft 	if (wdc->sc_errors >= WDIORETRIES) {
    537   1.64  mycroft 		wderror(wd, bp, "hard error");
    538   1.64  mycroft 		bp->b_error = EIO;
    539   1.64  mycroft 		bp->b_flags |= B_ERROR;
    540   1.64  mycroft 		wdfinish(wd, bp);
    541   1.64  mycroft 		goto loop;
    542   1.64  mycroft 	}
    543   1.78  mycroft 
    544   1.69  mycroft 	/* Do control operations specially. */
    545   1.64  mycroft 	if (wd->sc_state < OPEN) {
    546   1.69  mycroft 		/*
    547   1.69  mycroft 		 * Actually, we want to be careful not to mess with the control
    548   1.69  mycroft 		 * state if the device is currently busy, but we can assume
    549   1.69  mycroft 		 * that we never get to this point if that's the case.
    550   1.69  mycroft 		 */
    551  1.116  mycroft 		if (wdcontrol(wd) == 0) {
    552  1.116  mycroft 			/* The drive is busy.  Wait. */
    553  1.116  mycroft 			return;
    554  1.116  mycroft 		}
    555    1.1      cgd 	}
    556   1.64  mycroft 
    557   1.64  mycroft 	/*
    558   1.76  mycroft 	 * WDCF_ERROR is set by wdcunwedge() and wdcintr() when an error is
    559   1.69  mycroft 	 * encountered.  If we are in multi-sector mode, then we switch to
    560   1.69  mycroft 	 * single-sector mode and retry the operation from the start.
    561   1.64  mycroft 	 */
    562   1.69  mycroft 	if (wdc->sc_flags & WDCF_ERROR) {
    563   1.69  mycroft 		wdc->sc_flags &= ~WDCF_ERROR;
    564   1.69  mycroft 		if ((wdc->sc_flags & WDCF_SINGLE) == 0) {
    565   1.69  mycroft 			wdc->sc_flags |= WDCF_SINGLE;
    566  1.113  mycroft 			wd->sc_skip = 0;
    567   1.69  mycroft 		}
    568   1.64  mycroft 	}
    569   1.64  mycroft 
    570  1.129  mycroft 	lp = &wd->sc_dk.dk_label;
    571  1.129  mycroft 
    572   1.95  mycroft 	if (wd->sc_skip == 0) {
    573  1.125  mycroft 		int part = WDPART(bp->b_dev);
    574  1.129  mycroft 		daddr_t blkno;
    575  1.125  mycroft 
    576   1.44  mycroft #ifdef WDDEBUG
    577   1.95  mycroft 		printf("\n%s: wdcstart %s %d@%d; map ", wd->sc_dev.dv_xname,
    578   1.37  mycroft 		    (bp->b_flags & B_READ) ? "read" : "write", bp->b_bcount,
    579   1.95  mycroft 		    bp->b_blkno);
    580   1.95  mycroft #endif
    581   1.95  mycroft 		wd->sc_bcount = bp->b_bcount;
    582  1.129  mycroft 		blkno = bp->b_blkno;
    583  1.125  mycroft 		if (part != RAW_PART)
    584  1.129  mycroft 			blkno += lp->d_partitions[part].p_offset;
    585  1.129  mycroft 		wd->sc_blkno = blkno / (lp->d_secsize / DEV_BSIZE);
    586   1.95  mycroft #ifdef INSTRUMENT
    587   1.95  mycroft 		dk_busy |= (1 << wd->sc_dev.dv_unit);
    588   1.95  mycroft 		dk_wds[wd->sc_dev.dv_unit] += bp->b_bcount >> 6;
    589   1.95  mycroft #endif
    590   1.95  mycroft 	} else {
    591   1.95  mycroft #ifdef WDDEBUG
    592   1.64  mycroft 		printf(" %d)%x", wd->sc_skip, inb(wd->sc_iobase+wd_altsts));
    593    1.1      cgd #endif
    594   1.95  mycroft 	}
    595   1.95  mycroft 
    596   1.95  mycroft 	/* If starting a multisector transfer, or doing single transfers. */
    597  1.129  mycroft 	if (wd->sc_skip == 0 || (wdc->sc_flags & WDCF_SINGLE) != 0 ||
    598  1.129  mycroft 	    wd->sc_mode == WDM_DMA) {
    599  1.125  mycroft 		daddr_t blkno = wd->sc_blkno;
    600   1.95  mycroft 		long cylin, head, sector;
    601   1.95  mycroft 		int command;
    602   1.95  mycroft 
    603  1.117  mycroft 		if ((wdc->sc_flags & WDCF_SINGLE) != 0)
    604   1.95  mycroft 			nblks = 1;
    605  1.117  mycroft 		else if (wd->sc_mode != WDM_DMA)
    606  1.129  mycroft 			nblks = wd->sc_bcount / lp->d_secsize;
    607   1.95  mycroft 		else
    608  1.129  mycroft 			nblks = min(wd->sc_bcount / lp->d_secsize, 8);
    609   1.95  mycroft 
    610  1.117  mycroft 		/* Check for bad sectors and adjust transfer, if necessary. */
    611  1.116  mycroft 		if ((lp->d_flags & D_BADSECT) != 0
    612   1.44  mycroft #ifdef B_FORMAT
    613   1.95  mycroft 		    && (bp->b_flags & B_FORMAT) == 0
    614    1.3  deraadt #endif
    615   1.95  mycroft 		    ) {
    616   1.95  mycroft 			long blkdiff;
    617   1.95  mycroft 			int i;
    618   1.95  mycroft 
    619   1.95  mycroft 			for (i = 0; (blkdiff = wd->sc_badsect[i]) != -1; i++) {
    620   1.95  mycroft 				blkdiff -= blkno;
    621   1.95  mycroft 				if (blkdiff < 0)
    622   1.95  mycroft 					continue;
    623   1.95  mycroft 				if (blkdiff == 0) {
    624   1.95  mycroft 					/* Replace current block of transfer. */
    625   1.95  mycroft 					blkno =
    626   1.95  mycroft 					    lp->d_secperunit - lp->d_nsectors - i - 1;
    627  1.113  mycroft 				}
    628  1.113  mycroft 				if (blkdiff < nblks) {
    629   1.95  mycroft 					/* Bad block inside transfer. */
    630  1.113  mycroft 					wdc->sc_flags |= WDCF_SINGLE;
    631  1.113  mycroft 					nblks = 1;
    632   1.95  mycroft 				}
    633  1.113  mycroft 				break;
    634    1.3  deraadt 			}
    635   1.95  mycroft 			/* Tranfer is okay now. */
    636    1.3  deraadt 		}
    637    1.1      cgd 
    638  1.116  mycroft 		if ((wd->sc_params.wdp_capabilities & WD_CAP_LBA) != 0) {
    639  1.116  mycroft 			sector = (blkno >> 0) & 0xff;
    640  1.116  mycroft 			cylin = (blkno >> 8) & 0xffff;
    641  1.117  mycroft 			head = (blkno >> 24) & 0xf;
    642  1.116  mycroft 			head |= WDSD_LBA;
    643  1.116  mycroft 		} else {
    644  1.116  mycroft 			sector = blkno % lp->d_nsectors;
    645  1.116  mycroft 			sector++;	/* Sectors begin with 1, not 0. */
    646  1.116  mycroft 			blkno /= lp->d_nsectors;
    647  1.116  mycroft 			head = blkno % lp->d_ntracks;
    648  1.116  mycroft 			blkno /= lp->d_ntracks;
    649  1.116  mycroft 			cylin = blkno;
    650  1.116  mycroft 			head |= WDSD_CHS;
    651  1.116  mycroft 		}
    652   1.51  mycroft 
    653   1.64  mycroft #ifdef INSTRUMENT
    654   1.74  mycroft 		++dk_seek[wd->sc_dev.dv_unit];
    655   1.74  mycroft 		++dk_xfer[wd->sc_dev.dv_unit];
    656   1.64  mycroft #endif
    657    1.1      cgd 
    658  1.129  mycroft 		if (wd->sc_mode == WDM_PIOSINGLE ||
    659  1.129  mycroft 		    (wdc->sc_flags & WDCF_SINGLE) != 0)
    660  1.129  mycroft 			wd->sc_nblks = 1;
    661  1.129  mycroft 		else if (wd->sc_mode == WDM_PIOMULTI)
    662  1.129  mycroft 			wd->sc_nblks = min(nblks, wd->sc_multiple);
    663  1.129  mycroft 		else
    664  1.129  mycroft 			wd->sc_nblks = nblks;
    665  1.129  mycroft 		wd->sc_nbytes = wd->sc_nblks * lp->d_secsize;
    666  1.129  mycroft 
    667   1.37  mycroft #ifdef B_FORMAT
    668    1.1      cgd 		if (bp->b_flags & B_FORMAT) {
    669   1.60  mycroft 			sector = lp->d_gap3;
    670   1.95  mycroft 			nblks = lp->d_nsectors;
    671   1.60  mycroft 			command = WDCC_FORMAT;
    672   1.95  mycroft 		} else
    673   1.95  mycroft #endif
    674  1.113  mycroft 		switch (wd->sc_mode) {
    675  1.113  mycroft 		case WDM_DMA:
    676  1.113  mycroft 			command = (bp->b_flags & B_READ) ?
    677  1.113  mycroft 			    WDCC_READDMA : WDCC_WRITEDMA;
    678  1.125  mycroft 			isa_dmastart(bp->b_flags & B_READ,
    679  1.125  mycroft 			    bp->b_data + wd->sc_skip,
    680  1.129  mycroft 			    wd->sc_nbytes, wdc->sc_drq);
    681  1.113  mycroft 			break;
    682  1.113  mycroft 		case WDM_PIOMULTI:
    683  1.113  mycroft 			command = (bp->b_flags & B_READ) ?
    684  1.113  mycroft 			    WDCC_READMULTI : WDCC_WRITEMULTI;
    685  1.113  mycroft 			break;
    686  1.113  mycroft 		case WDM_PIOSINGLE:
    687  1.113  mycroft 			command = (bp->b_flags & B_READ) ?
    688  1.113  mycroft 			    WDCC_READ : WDCC_WRITE;
    689  1.113  mycroft 			break;
    690  1.113  mycroft 		}
    691    1.3  deraadt 
    692   1.64  mycroft 		/* Initiate command! */
    693  1.105  mycroft 		if (wdcommand(wd, command, cylin, head, sector, nblks) != 0) {
    694   1.64  mycroft 			wderror(wd, NULL,
    695   1.64  mycroft 			    "wdcstart: timeout waiting for unbusy");
    696   1.64  mycroft 			wdcunwedge(wdc);
    697   1.64  mycroft 			return;
    698   1.51  mycroft 		}
    699   1.44  mycroft #ifdef WDDEBUG
    700   1.37  mycroft 		printf("sector %d cylin %d head %d addr %x sts %x\n", sector,
    701   1.84  mycroft 		    cylin, head, bp->b_data, inb(wd->sc_iobase+wd_altsts));
    702    1.1      cgd #endif
    703  1.129  mycroft 	} else if (wd->sc_nblks > 1) {
    704  1.129  mycroft 		nblks = wd->sc_bcount / lp->d_secsize;
    705  1.129  mycroft 		if (wd->sc_nblks > nblks) {
    706  1.129  mycroft 			wd->sc_nblks = nblks;
    707  1.129  mycroft 			wd->sc_nbytes = wd->sc_bcount;
    708  1.129  mycroft 		}
    709    1.1      cgd 	}
    710   1.78  mycroft 
    711  1.113  mycroft 	/* If this was a write and not using DMA, push the data. */
    712  1.113  mycroft 	if (wd->sc_mode != WDM_DMA &&
    713  1.113  mycroft 	    (bp->b_flags & B_READ) == 0) {
    714  1.113  mycroft 		if (wait_for_drq(wdc) < 0) {
    715  1.113  mycroft 			wderror(wd, NULL, "wdcstart: timeout waiting for drq");
    716  1.113  mycroft 			wdcunwedge(wdc);
    717  1.113  mycroft 			return;
    718  1.113  mycroft 		}
    719  1.113  mycroft 
    720  1.113  mycroft 		/* Then send it! */
    721  1.115  mycroft 		if ((wd->sc_flags & WDF_32BIT) == 0)
    722  1.125  mycroft 			outsw(wdc->sc_iobase+wd_data, bp->b_data + wd->sc_skip,
    723  1.129  mycroft 			    wd->sc_nbytes >> 1);
    724  1.115  mycroft 		else
    725  1.125  mycroft 			outsl(wdc->sc_iobase+wd_data, bp->b_data + wd->sc_skip,
    726  1.129  mycroft 			    wd->sc_nbytes >> 2);
    727   1.19  deraadt 	}
    728  1.116  mycroft 
    729  1.116  mycroft 	wdc->sc_flags |= WDCF_ACTIVE;
    730  1.116  mycroft 	timeout(wdctimeout, wdc, WAITTIME);
    731    1.1      cgd }
    732    1.1      cgd 
    733   1.64  mycroft /*
    734   1.64  mycroft  * Interrupt routine for the controller.  Acknowledge the interrupt, check for
    735   1.64  mycroft  * errors on the current operation, mark it done if necessary, and start the
    736   1.64  mycroft  * next request.  Also check for a partially done transfer, and continue with
    737   1.64  mycroft  * the next chunk if so.
    738    1.1      cgd  */
    739   1.64  mycroft int
    740  1.103  mycroft wdcintr(wdc)
    741  1.103  mycroft 	struct wdc_softc *wdc;
    742    1.1      cgd {
    743   1.64  mycroft 	struct wd_softc *wd;
    744   1.64  mycroft 	struct buf *bp;
    745   1.59  mycroft 
    746   1.87  mycroft 	if ((wdc->sc_flags & WDCF_ACTIVE) == 0) {
    747   1.87  mycroft 		/* Clear the pending interrupt. */
    748   1.87  mycroft 		(void) inb(wdc->sc_iobase+wd_status);
    749   1.64  mycroft 		return 0;
    750   1.87  mycroft 	}
    751   1.78  mycroft 
    752  1.116  mycroft 	wdc->sc_flags &= ~WDCF_ACTIVE;
    753  1.116  mycroft 	untimeout(wdctimeout, wdc);
    754  1.116  mycroft 
    755   1.78  mycroft 	wd = wdc->sc_drives.tqh_first;
    756   1.78  mycroft 	bp = wd->sc_q.b_actf;
    757   1.78  mycroft 
    758   1.44  mycroft #ifdef WDDEBUG
    759    1.3  deraadt 	printf("I%d ", ctrlr);
    760    1.1      cgd #endif
    761   1.13  deraadt 
    762   1.64  mycroft 	if (wait_for_unbusy(wdc) < 0) {
    763   1.76  mycroft 		wderror(wd, NULL, "wdcintr: timeout waiting for unbusy");
    764   1.64  mycroft 		wdc->sc_status |= WDCS_ERR;	/* XXX */
    765   1.27      cgd 	}
    766    1.3  deraadt 
    767   1.64  mycroft 	/* Is it not a transfer, but a control operation? */
    768   1.64  mycroft 	if (wd->sc_state < OPEN) {
    769  1.116  mycroft 		if (wdcontrol(wd) == 0) {
    770  1.116  mycroft 			/* The drive is busy.  Wait. */
    771  1.116  mycroft 			return 1;
    772  1.116  mycroft 		}
    773  1.116  mycroft 		wdcstart(wdc);
    774   1.64  mycroft 		return 1;
    775    1.1      cgd 	}
    776   1.78  mycroft 
    777  1.113  mycroft 	if (wd->sc_mode == WDM_DMA)
    778  1.127  mycroft 		isa_dmadone(bp->b_flags & B_READ, bp->b_data + wd->sc_skip,
    779  1.129  mycroft 		    wd->sc_nbytes, wdc->sc_drq);
    780  1.113  mycroft 
    781   1.64  mycroft 	/* Have we an error? */
    782   1.96  mycroft 	if (wdc->sc_status & WDCS_ERR) {
    783   1.51  mycroft 	lose:
    784   1.44  mycroft #ifdef WDDEBUG
    785   1.76  mycroft 		wderror(wd, NULL, "wdcintr");
    786    1.1      cgd #endif
    787   1.69  mycroft 		if ((wdc->sc_flags & WDCF_SINGLE) == 0) {
    788   1.69  mycroft 			wdc->sc_flags |= WDCF_ERROR;
    789   1.64  mycroft 			goto restart;
    790    1.1      cgd 		}
    791   1.96  mycroft 
    792    1.1      cgd #ifdef B_FORMAT
    793   1.96  mycroft 		if (bp->b_flags & B_FORMAT)
    794   1.96  mycroft 			goto bad;
    795    1.1      cgd #endif
    796    1.3  deraadt 
    797   1.96  mycroft 		if (++wdc->sc_errors < WDIORETRIES)
    798   1.96  mycroft 			goto restart;
    799   1.96  mycroft 		wderror(wd, bp, "hard error");
    800   1.96  mycroft 
    801   1.96  mycroft 	bad:
    802   1.96  mycroft 		bp->b_error = EIO;
    803   1.96  mycroft 		bp->b_flags |= B_ERROR;
    804   1.96  mycroft 		goto done;
    805    1.1      cgd 	}
    806   1.96  mycroft 
    807  1.110  mycroft 	if (wdc->sc_status & WDCS_CORR)
    808   1.96  mycroft 		wderror(wd, bp, "soft ecc");
    809    1.3  deraadt 
    810  1.113  mycroft 	/* If this was a read and not using DMA, fetch the data. */
    811  1.113  mycroft 	if (wd->sc_mode != WDM_DMA &&
    812  1.113  mycroft 	    (bp->b_flags & B_READ) != 0) {
    813  1.110  mycroft 		if ((wdc->sc_status & (WDCS_DRDY | WDCS_DSC | WDCS_DRQ))
    814  1.110  mycroft 		    != (WDCS_DRDY | WDCS_DSC | WDCS_DRQ)) {
    815   1.87  mycroft 			wderror(wd, NULL, "wdcintr: read intr before drq");
    816   1.64  mycroft 			wdcunwedge(wdc);
    817   1.64  mycroft 			return 1;
    818   1.27      cgd 		}
    819   1.27      cgd 
    820   1.64  mycroft 		/* Suck in data. */
    821  1.115  mycroft 		if ((wd->sc_flags & WDF_32BIT) == 0)
    822  1.125  mycroft 			insw(wdc->sc_iobase+wd_data, bp->b_data + wd->sc_skip,
    823  1.129  mycroft 			    wd->sc_nbytes >> 1);
    824  1.115  mycroft 		else
    825  1.125  mycroft 			insl(wdc->sc_iobase+wd_data, bp->b_data + wd->sc_skip,
    826  1.129  mycroft 			    wd->sc_nbytes >> 2);
    827   1.64  mycroft 	}
    828   1.64  mycroft 
    829   1.64  mycroft 	/* If we encountered any abnormalities, flag it as a soft error. */
    830   1.78  mycroft 	if (wdc->sc_errors) {
    831   1.64  mycroft 		wderror(wd, bp, "soft error");
    832   1.78  mycroft 		wdc->sc_errors = 0;
    833    1.1      cgd 	}
    834    1.3  deraadt 
    835   1.64  mycroft 	/* Ready for the next block, if any. */
    836  1.129  mycroft 	wd->sc_blkno += wd->sc_nblks;
    837  1.129  mycroft 	wd->sc_skip += wd->sc_nbytes;
    838  1.129  mycroft 	wd->sc_bcount -= wd->sc_nbytes;
    839   1.64  mycroft 
    840   1.64  mycroft 	/* See if more to transfer. */
    841   1.64  mycroft 	if (wd->sc_bcount > 0)
    842   1.64  mycroft 		goto restart;
    843   1.64  mycroft 
    844   1.64  mycroft done:
    845   1.64  mycroft 	/* Done with this transfer, with or without error. */
    846   1.64  mycroft 	wdfinish(wd, bp);
    847   1.64  mycroft 
    848   1.64  mycroft restart:
    849   1.64  mycroft 	/* Start the next transfer, if any. */
    850   1.64  mycroft 	wdcstart(wdc);
    851    1.1      cgd 
    852   1.64  mycroft 	return 1;
    853    1.1      cgd }
    854    1.1      cgd 
    855  1.132  mycroft int
    856  1.132  mycroft wdlockwait(wd)
    857  1.132  mycroft 	struct wd_softc *wd;
    858  1.132  mycroft {
    859  1.132  mycroft 	int error;
    860  1.132  mycroft 
    861  1.132  mycroft 	while ((wd->sc_flags & WDF_LOCKED) != 0) {
    862  1.132  mycroft 		wd->sc_flags |= WDF_WANTED;
    863  1.132  mycroft 		if ((error = tsleep(wd, PRIBIO | PCATCH, "wdlck", 0)) != 0)
    864  1.132  mycroft 			return error;
    865  1.132  mycroft 	}
    866  1.132  mycroft 	return 0;
    867  1.132  mycroft }
    868  1.132  mycroft 
    869  1.132  mycroft void
    870  1.132  mycroft wdunlock(wd)
    871  1.132  mycroft 	struct wd_softc *wd;
    872  1.132  mycroft {
    873  1.132  mycroft 
    874  1.132  mycroft 	wd->sc_flags &= ~WDF_LOCKED;
    875  1.132  mycroft 	if ((wd->sc_flags & WDF_WANTED) != 0) {
    876  1.132  mycroft 		wd->sc_flags &= ~WDF_WANTED;
    877  1.132  mycroft 		wakeup(wd);
    878  1.132  mycroft 	}
    879  1.132  mycroft }
    880  1.132  mycroft 
    881    1.1      cgd /*
    882    1.1      cgd  * Initialize a drive.
    883    1.1      cgd  */
    884    1.1      cgd int
    885  1.108  mycroft wdopen(dev, flag, fmt)
    886   1.55  mycroft 	dev_t dev;
    887   1.93  mycroft 	int flag, fmt;
    888    1.1      cgd {
    889  1.109  mycroft 	int error;
    890  1.108  mycroft 	int unit, part;
    891   1.64  mycroft 	struct wd_softc *wd;
    892    1.3  deraadt 
    893  1.108  mycroft 	unit = WDUNIT(dev);
    894  1.108  mycroft 	if (unit >= wdcd.cd_ndevs)
    895   1.37  mycroft 		return ENXIO;
    896  1.108  mycroft 	wd = wdcd.cd_devs[unit];
    897   1.64  mycroft 	if (wd == 0)
    898   1.37  mycroft 		return ENXIO;
    899    1.3  deraadt 
    900  1.108  mycroft 	part = WDPART(dev);
    901    1.1      cgd 
    902  1.132  mycroft 	if (error = wdlockwait(wd))
    903  1.132  mycroft 		return error;
    904    1.3  deraadt 
    905  1.109  mycroft 	if (wd->sc_dk.dk_openmask != 0) {
    906  1.109  mycroft 		/*
    907  1.109  mycroft 		 * If any partition is open, but the disk has been invalidated,
    908  1.109  mycroft 		 * disallow further opens.
    909  1.109  mycroft 		 */
    910  1.109  mycroft 		if ((wd->sc_flags & WDF_LOADED) == 0)
    911  1.109  mycroft 			return ENXIO;
    912  1.109  mycroft 	} else {
    913  1.108  mycroft 		wd->sc_flags |= WDF_LOCKED;
    914  1.108  mycroft 
    915  1.108  mycroft 		if ((wd->sc_flags & WDF_LOADED) == 0) {
    916  1.108  mycroft 			wd->sc_flags |= WDF_LOADED;
    917  1.108  mycroft 
    918  1.108  mycroft 			/* Load the physical device parameters. */
    919  1.108  mycroft 			if (wd_get_parms(wd) != 0) {
    920  1.108  mycroft 				error = ENXIO;
    921  1.108  mycroft 				goto bad2;
    922  1.108  mycroft 			}
    923  1.108  mycroft 
    924  1.108  mycroft 			/* Load the partition info if not already loaded. */
    925  1.108  mycroft 			wdgetdisklabel(wd);
    926  1.108  mycroft 		}
    927  1.108  mycroft 
    928  1.132  mycroft 		wdunlock(wd);
    929    1.1      cgd 	}
    930  1.108  mycroft 
    931  1.109  mycroft 	/* Check that the partition exists. */
    932   1.93  mycroft 	if (part != RAW_PART &&
    933   1.93  mycroft 	    (part >= wd->sc_dk.dk_label.d_npartitions ||
    934   1.93  mycroft 	     wd->sc_dk.dk_label.d_partitions[part].p_fstype == FS_UNUSED)) {
    935   1.93  mycroft 		error = ENXIO;
    936   1.93  mycroft 		goto bad;
    937   1.93  mycroft 	}
    938    1.3  deraadt 
    939   1.64  mycroft 	/* Insure only one open at a time. */
    940    1.3  deraadt 	switch (fmt) {
    941    1.3  deraadt 	case S_IFCHR:
    942   1.94  mycroft 		wd->sc_dk.dk_copenmask |= (1 << part);
    943    1.3  deraadt 		break;
    944    1.3  deraadt 	case S_IFBLK:
    945   1.94  mycroft 		wd->sc_dk.dk_bopenmask |= (1 << part);
    946    1.3  deraadt 		break;
    947    1.3  deraadt 	}
    948   1.94  mycroft 	wd->sc_dk.dk_openmask = wd->sc_dk.dk_copenmask | wd->sc_dk.dk_bopenmask;
    949   1.60  mycroft 
    950   1.37  mycroft 	return 0;
    951   1.93  mycroft 
    952  1.108  mycroft bad2:
    953  1.108  mycroft 	wd->sc_flags &= ~WDF_LOADED;
    954  1.108  mycroft 
    955   1.93  mycroft bad:
    956  1.118  mycroft 	if (wd->sc_dk.dk_openmask == 0) {
    957  1.132  mycroft 		wdunlock(wd);
    958  1.108  mycroft 	}
    959  1.108  mycroft 
    960   1.93  mycroft 	return error;
    961    1.1      cgd }
    962    1.1      cgd 
    963  1.108  mycroft void
    964  1.108  mycroft wdgetdisklabel(wd)
    965  1.108  mycroft 	struct wd_softc *wd;
    966  1.108  mycroft {
    967  1.108  mycroft 	char *errstring;
    968  1.108  mycroft 
    969  1.108  mycroft 	bzero(&wd->sc_dk.dk_label, sizeof(struct disklabel));
    970  1.108  mycroft 	bzero(&wd->sc_dk.dk_cpulabel, sizeof(struct cpu_disklabel));
    971  1.108  mycroft 
    972  1.108  mycroft 	wd->sc_dk.dk_label.d_secsize = DEV_BSIZE;
    973  1.108  mycroft 	wd->sc_dk.dk_label.d_ntracks = wd->sc_params.wdp_heads;
    974  1.108  mycroft 	wd->sc_dk.dk_label.d_nsectors = wd->sc_params.wdp_sectors;
    975  1.110  mycroft 	wd->sc_dk.dk_label.d_ncylinders = wd->sc_params.wdp_cylinders;
    976  1.108  mycroft 	wd->sc_dk.dk_label.d_secpercyl =
    977  1.108  mycroft 	    wd->sc_dk.dk_label.d_ntracks * wd->sc_dk.dk_label.d_nsectors;
    978  1.108  mycroft 
    979  1.108  mycroft #if 0
    980  1.108  mycroft 	strncpy(wd->sc_dk.dk_label.d_typename, "ST506 disk", 16);
    981  1.108  mycroft 	wd->sc_dk.dk_label.d_type = DTYPE_ST506;
    982  1.108  mycroft #endif
    983  1.108  mycroft 	strncpy(wd->sc_dk.dk_label.d_packname, wd->sc_params.wdp_model, 16);
    984  1.108  mycroft 	wd->sc_dk.dk_label.d_secperunit =
    985  1.108  mycroft 	    wd->sc_dk.dk_label.d_secpercyl * wd->sc_dk.dk_label.d_ncylinders;
    986  1.108  mycroft 	wd->sc_dk.dk_label.d_rpm = 3600;
    987  1.108  mycroft 	wd->sc_dk.dk_label.d_interleave = 1;
    988  1.108  mycroft 	wd->sc_dk.dk_label.d_flags = 0;
    989  1.108  mycroft 
    990  1.108  mycroft 	wd->sc_dk.dk_label.d_partitions[RAW_PART].p_offset = 0;
    991  1.108  mycroft 	wd->sc_dk.dk_label.d_partitions[RAW_PART].p_size =
    992  1.108  mycroft 	    wd->sc_dk.dk_label.d_secperunit *
    993  1.108  mycroft 	    (wd->sc_dk.dk_label.d_secsize / DEV_BSIZE);
    994  1.108  mycroft 	wd->sc_dk.dk_label.d_partitions[RAW_PART].p_fstype = FS_UNUSED;
    995  1.108  mycroft 	wd->sc_dk.dk_label.d_npartitions = RAW_PART + 1;
    996  1.108  mycroft 
    997  1.108  mycroft 	wd->sc_dk.dk_label.d_magic = DISKMAGIC;
    998  1.108  mycroft 	wd->sc_dk.dk_label.d_magic2 = DISKMAGIC;
    999  1.108  mycroft 	wd->sc_dk.dk_label.d_checksum = dkcksum(&wd->sc_dk.dk_label);
   1000  1.108  mycroft 
   1001  1.113  mycroft 	wd->sc_badsect[0] = -1;
   1002  1.113  mycroft 
   1003  1.108  mycroft 	if (wd->sc_state > RECAL)
   1004  1.108  mycroft 		wd->sc_state = RECAL;
   1005  1.108  mycroft 	errstring = readdisklabel(MAKEWDDEV(0, wd->sc_dev.dv_unit, RAW_PART),
   1006  1.108  mycroft 	    wdstrategy, &wd->sc_dk.dk_label, &wd->sc_dk.dk_cpulabel);
   1007  1.108  mycroft 	if (errstring) {
   1008  1.108  mycroft 		/*
   1009  1.108  mycroft 		 * This probably happened because the drive's default
   1010  1.108  mycroft 		 * geometry doesn't match the DOS geometry.  We
   1011  1.108  mycroft 		 * assume the DOS geometry is now in the label and try
   1012  1.108  mycroft 		 * again.  XXX This is a kluge.
   1013  1.108  mycroft 		 */
   1014  1.108  mycroft 		if (wd->sc_state > GEOMETRY)
   1015  1.108  mycroft 			wd->sc_state = GEOMETRY;
   1016  1.108  mycroft 		errstring = readdisklabel(MAKEWDDEV(0, wd->sc_dev.dv_unit, RAW_PART),
   1017  1.108  mycroft 		    wdstrategy, &wd->sc_dk.dk_label, &wd->sc_dk.dk_cpulabel);
   1018  1.108  mycroft 	}
   1019  1.108  mycroft 	if (errstring) {
   1020  1.108  mycroft 		printf("%s: %s\n", wd->sc_dev.dv_xname, errstring);
   1021  1.108  mycroft 		return;
   1022  1.108  mycroft 	}
   1023  1.108  mycroft 
   1024  1.108  mycroft 	if (wd->sc_state > GEOMETRY)
   1025  1.108  mycroft 		wd->sc_state = GEOMETRY;
   1026  1.108  mycroft 	if ((wd->sc_dk.dk_label.d_flags & D_BADSECT) != 0)
   1027  1.108  mycroft 		bad144intern(wd);
   1028  1.108  mycroft }
   1029  1.108  mycroft 
   1030    1.1      cgd /*
   1031    1.1      cgd  * Implement operations other than read/write.
   1032   1.76  mycroft  * Called from wdcstart or wdcintr during opens and formats.
   1033    1.1      cgd  * Uses finite-state-machine to track progress of operation in progress.
   1034    1.1      cgd  * Returns 0 if operation still in progress, 1 if completed.
   1035    1.1      cgd  */
   1036    1.1      cgd static int
   1037   1.69  mycroft wdcontrol(wd)
   1038   1.69  mycroft 	struct wd_softc *wd;
   1039    1.1      cgd {
   1040   1.64  mycroft 	struct wdc_softc *wdc = (void *)wd->sc_dev.dv_parent;
   1041    1.3  deraadt 
   1042   1.64  mycroft 	switch (wd->sc_state) {
   1043  1.110  mycroft 	case RECAL:			/* Set SDH, step rate, do recal. */
   1044  1.110  mycroft 		if (wdcommandshort(wdc, wd->sc_drive, WDCC_RECAL) != 0) {
   1045  1.113  mycroft 			wderror(wd, NULL, "wdcontrol: recal failed (1)");
   1046  1.113  mycroft 			goto bad;
   1047   1.21  deraadt 		}
   1048   1.69  mycroft 		wd->sc_state = RECAL_WAIT;
   1049  1.116  mycroft 		break;
   1050   1.55  mycroft 
   1051   1.69  mycroft 	case RECAL_WAIT:
   1052   1.69  mycroft 		if (wdc->sc_status & WDCS_ERR) {
   1053  1.113  mycroft 			wderror(wd, NULL, "wdcontrol: recal failed (2)");
   1054  1.113  mycroft 			goto bad;
   1055    1.1      cgd 		}
   1056   1.69  mycroft 		/* fall through */
   1057   1.69  mycroft 	case GEOMETRY:
   1058  1.116  mycroft 		if ((wd->sc_params.wdp_capabilities & WD_CAP_LBA) != 0)
   1059  1.116  mycroft 			goto multimode;
   1060   1.69  mycroft 		if (wdsetctlr(wd) != 0) {
   1061   1.69  mycroft 			/* Already printed a message. */
   1062  1.113  mycroft 			goto bad;
   1063   1.69  mycroft 		}
   1064   1.69  mycroft 		wd->sc_state = GEOMETRY_WAIT;
   1065  1.116  mycroft 		break;
   1066   1.69  mycroft 
   1067   1.69  mycroft 	case GEOMETRY_WAIT:
   1068   1.69  mycroft 		if (wdc->sc_status & WDCS_ERR) {
   1069   1.69  mycroft 			wderror(wd, NULL, "wdcontrol: geometry failed");
   1070  1.113  mycroft 			goto bad;
   1071  1.113  mycroft 		}
   1072  1.113  mycroft 		/* fall through */
   1073  1.113  mycroft 	case MULTIMODE:
   1074  1.116  mycroft 	multimode:
   1075  1.113  mycroft 		if (wd->sc_mode != WDM_PIOMULTI)
   1076  1.113  mycroft 			goto open;
   1077  1.113  mycroft 		outb(wdc->sc_iobase+wd_seccnt, wd->sc_multiple);
   1078  1.113  mycroft 		if (wdcommandshort(wdc, wd->sc_drive, WDCC_SETMULTI) != 0) {
   1079  1.113  mycroft 			wderror(wd, NULL, "wdcontrol: setmulti failed (1)");
   1080  1.113  mycroft 			goto bad;
   1081   1.69  mycroft 		}
   1082  1.113  mycroft 		wd->sc_state = MULTIMODE_WAIT;
   1083  1.116  mycroft 		break;
   1084   1.69  mycroft 
   1085  1.113  mycroft 	case MULTIMODE_WAIT:
   1086  1.113  mycroft 		if (wdc->sc_status & WDCS_ERR) {
   1087  1.113  mycroft 			wderror(wd, NULL, "wdcontrol: setmulti failed (2)");
   1088  1.113  mycroft 			goto bad;
   1089  1.113  mycroft 		}
   1090  1.113  mycroft 		/* fall through */
   1091  1.116  mycroft 	case OPEN:
   1092  1.113  mycroft 	open:
   1093   1.78  mycroft 		wdc->sc_errors = 0;
   1094   1.64  mycroft 		wd->sc_state = OPEN;
   1095    1.1      cgd 		/*
   1096   1.63  mycroft 		 * The rest of the initialization can be done by normal means.
   1097    1.1      cgd 		 */
   1098   1.37  mycroft 		return 1;
   1099  1.113  mycroft 
   1100  1.113  mycroft 	bad:
   1101  1.113  mycroft 		wdcunwedge(wdc);
   1102  1.113  mycroft 		return 0;
   1103    1.1      cgd 	}
   1104    1.1      cgd 
   1105  1.116  mycroft 	wdc->sc_flags |= WDCF_ACTIVE;
   1106  1.116  mycroft 	timeout(wdctimeout, wdc, WAITTIME);
   1107  1.116  mycroft 	return 0;
   1108    1.1      cgd }
   1109    1.1      cgd 
   1110    1.1      cgd /*
   1111   1.64  mycroft  * Send a command and wait uninterruptibly until controller is finished.
   1112   1.64  mycroft  * Return -1 if controller busy for too long, otherwise return non-zero if
   1113   1.64  mycroft  * error.  Intended for brief controller commands at critical points.
   1114   1.64  mycroft  * Assumes interrupts are blocked.
   1115    1.1      cgd  */
   1116    1.1      cgd static int
   1117  1.105  mycroft wdcommand(wd, command, cylin, head, sector, count)
   1118   1.64  mycroft 	struct wd_softc *wd;
   1119  1.105  mycroft 	int command;
   1120   1.60  mycroft 	int cylin, head, sector, count;
   1121    1.3  deraadt {
   1122   1.64  mycroft 	struct wdc_softc *wdc = (void *)wd->sc_dev.dv_parent;
   1123  1.107  mycroft 	int iobase = wdc->sc_iobase;
   1124   1.60  mycroft 	int stat;
   1125    1.3  deraadt 
   1126  1.116  mycroft 	/* Select drive, head, and addressing mode. */
   1127   1.74  mycroft 	outb(iobase+wd_sdh, WDSD_IBM | (wd->sc_drive << 4) | head);
   1128   1.90  mycroft 
   1129   1.90  mycroft 	/* Wait for it to become ready to accept a command. */
   1130  1.110  mycroft 	if (command == WDCC_IDP)
   1131   1.64  mycroft 		stat = wait_for_unbusy(wdc);
   1132   1.60  mycroft 	else
   1133  1.110  mycroft 		stat = wdcwait(wdc, WDCS_DRDY);
   1134   1.60  mycroft 	if (stat < 0)
   1135   1.60  mycroft 		return -1;
   1136    1.3  deraadt 
   1137   1.64  mycroft 	/* Load parameters. */
   1138  1.110  mycroft 	if (wd->sc_dk.dk_label.d_type == DTYPE_ST506)
   1139  1.110  mycroft 		outb(iobase+wd_precomp, wd->sc_dk.dk_label.d_precompcyl / 4);
   1140  1.110  mycroft 	else
   1141  1.110  mycroft 		outb(iobase+wd_features, 0);
   1142   1.64  mycroft 	outb(iobase+wd_cyl_lo, cylin);
   1143   1.64  mycroft 	outb(iobase+wd_cyl_hi, cylin >> 8);
   1144   1.64  mycroft 	outb(iobase+wd_sector, sector);
   1145   1.64  mycroft 	outb(iobase+wd_seccnt, count);
   1146   1.60  mycroft 
   1147  1.105  mycroft 	/* Send command. */
   1148  1.105  mycroft 	outb(iobase+wd_command, command);
   1149  1.105  mycroft 
   1150  1.105  mycroft 	return 0;
   1151  1.105  mycroft }
   1152  1.105  mycroft 
   1153  1.105  mycroft int
   1154  1.105  mycroft wdcommandshort(wdc, drive, command)
   1155  1.105  mycroft 	struct wdc_softc *wdc;
   1156  1.105  mycroft 	int drive;
   1157  1.105  mycroft 	int command;
   1158  1.105  mycroft {
   1159  1.107  mycroft 	int iobase = wdc->sc_iobase;
   1160  1.105  mycroft 
   1161  1.105  mycroft 	/* Select drive. */
   1162  1.105  mycroft 	outb(iobase+wd_sdh, WDSD_IBM | (drive << 4));
   1163  1.105  mycroft 
   1164  1.110  mycroft 	if (wdcwait(wdc, WDCS_DRDY) < 0)
   1165  1.105  mycroft 		return -1;
   1166  1.105  mycroft 
   1167  1.105  mycroft 	outb(iobase+wd_command, command);
   1168   1.40  mycroft 
   1169   1.64  mycroft 	return 0;
   1170    1.1      cgd }
   1171    1.1      cgd 
   1172    1.1      cgd /*
   1173  1.110  mycroft  * Issue IDP to drive to tell it just what geometry it is to be.
   1174    1.1      cgd  */
   1175    1.1      cgd static int
   1176   1.64  mycroft wdsetctlr(wd)
   1177   1.64  mycroft 	struct wd_softc *wd;
   1178    1.3  deraadt {
   1179   1.64  mycroft 	struct wdc_softc *wdc = (void *)wd->sc_dev.dv_parent;
   1180   1.63  mycroft 
   1181   1.44  mycroft #ifdef WDDEBUG
   1182  1.112  mycroft 	printf("wd(%d,%d) C%dH%dS%d\n", wd->sc_dev.dv_unit, wd->sc_drive,
   1183   1.93  mycroft 	    wd->sc_dk.dk_label.d_ncylinders, wd->sc_dk.dk_label.d_ntracks,
   1184   1.93  mycroft 	    wd->sc_dk.dk_label.d_nsectors);
   1185   1.44  mycroft #endif
   1186    1.3  deraadt 
   1187  1.110  mycroft 	if (wdcommand(wd, WDCC_IDP, wd->sc_dk.dk_label.d_ncylinders,
   1188  1.105  mycroft 	    wd->sc_dk.dk_label.d_ntracks - 1, 0, wd->sc_dk.dk_label.d_nsectors)
   1189  1.105  mycroft 	    != 0) {
   1190  1.105  mycroft 		wderror(wd, NULL, "wdsetctlr: geometry upload failed");
   1191   1.51  mycroft 		return -1;
   1192   1.57  mycroft 	}
   1193   1.69  mycroft 
   1194   1.60  mycroft 	return 0;
   1195    1.1      cgd }
   1196    1.1      cgd 
   1197    1.1      cgd /*
   1198  1.110  mycroft  * Issue IDENTIFY to drive to ask it what it is.
   1199    1.1      cgd  */
   1200  1.108  mycroft int
   1201  1.108  mycroft wd_get_parms(wd)
   1202   1.64  mycroft 	struct wd_softc *wd;
   1203    1.3  deraadt {
   1204   1.64  mycroft 	struct wdc_softc *wdc = (void *)wd->sc_dev.dv_parent;
   1205   1.63  mycroft 	int i;
   1206    1.1      cgd 	char tb[DEV_BSIZE];
   1207  1.124  mycroft 	int s, error;
   1208  1.124  mycroft 
   1209  1.124  mycroft 	/*
   1210  1.124  mycroft 	 * XXX
   1211  1.124  mycroft 	 * The locking done here, not to mention the length of time it may
   1212  1.124  mycroft 	 * keep the rest of the system suspended, is a kluge.  This should be
   1213  1.124  mycroft 	 * rewritten to set up a transfer and queue it through wdstart().
   1214  1.124  mycroft 	 */
   1215  1.124  mycroft 
   1216  1.124  mycroft 	s = splbio();
   1217  1.124  mycroft 
   1218  1.124  mycroft 	while ((wdc->sc_flags & WDCF_ACTIVE) != 0) {
   1219  1.124  mycroft 		wdc->sc_flags |= WDCF_WANTED;
   1220  1.124  mycroft 		if ((error = tsleep(wdc, PRIBIO | PCATCH, "wdprm", 0)) != 0) {
   1221  1.124  mycroft 			splx(s);
   1222  1.124  mycroft 			return error;
   1223  1.124  mycroft 		}
   1224  1.124  mycroft 	}
   1225  1.124  mycroft 
   1226  1.110  mycroft 	if (wdcommandshort(wdc, wd->sc_drive, WDCC_IDENTIFY) != 0 ||
   1227   1.64  mycroft 	    wait_for_drq(wdc) != 0) {
   1228   1.60  mycroft 		/*
   1229  1.105  mycroft 		 * We `know' there's a drive here; just assume it's old.
   1230   1.60  mycroft 		 */
   1231   1.93  mycroft 		strncpy(wd->sc_dk.dk_label.d_typename, "ST506",
   1232   1.93  mycroft 		    sizeof wd->sc_dk.dk_label.d_typename);
   1233  1.108  mycroft 		wd->sc_dk.dk_label.d_type = DTYPE_ST506;
   1234  1.108  mycroft 
   1235  1.108  mycroft 		strncpy(wd->sc_params.wdp_model, "unknown",
   1236   1.64  mycroft 		    sizeof wd->sc_params.wdp_model);
   1237  1.110  mycroft 		wd->sc_params.wdp_config = WD_CFG_FIXED;
   1238  1.110  mycroft 		wd->sc_params.wdp_cylinders = 1024;
   1239  1.108  mycroft 		wd->sc_params.wdp_heads = 8;
   1240  1.108  mycroft 		wd->sc_params.wdp_sectors = 17;
   1241  1.111  mycroft 		wd->sc_params.wdp_maxmulti = 0;
   1242  1.111  mycroft 		wd->sc_params.wdp_usedmovsd = 0;
   1243  1.110  mycroft 		wd->sc_params.wdp_capabilities = 0;
   1244   1.60  mycroft 	} else {
   1245  1.124  mycroft 		strncpy(wd->sc_dk.dk_label.d_typename, "ESDI/IDE",
   1246  1.124  mycroft 		    sizeof wd->sc_dk.dk_label.d_typename);
   1247  1.124  mycroft 		wd->sc_dk.dk_label.d_type = DTYPE_ESDI;
   1248  1.124  mycroft 
   1249   1.64  mycroft 		/* Obtain parameters. */
   1250   1.64  mycroft 		insw(wdc->sc_iobase+wd_data, tb, sizeof(tb) / sizeof(short));
   1251  1.108  mycroft 		bcopy(tb, &wd->sc_params, sizeof(struct wdparams));
   1252   1.13  deraadt 
   1253   1.64  mycroft 		/* Shuffle string byte order. */
   1254  1.108  mycroft 		for (i = 0; i < sizeof(wd->sc_params.wdp_model); i += 2) {
   1255   1.13  deraadt 			u_short *p;
   1256  1.108  mycroft 			p = (u_short *)(wd->sc_params.wdp_model + i);
   1257   1.13  deraadt 			*p = ntohs(*p);
   1258   1.13  deraadt 		}
   1259    1.8  deraadt 	}
   1260   1.13  deraadt 
   1261   1.13  deraadt #if 0
   1262   1.37  mycroft 	printf("gc %x cyl %d trk %d sec %d type %d sz %d model %s\n",
   1263  1.110  mycroft 	    wp->wdp_config, wp->wdp_cylinders, wp->wdp_heads, wp->wdp_sectors,
   1264  1.110  mycroft 	    wp->wdp_buftype, wp->wdp_bufsize, wp->wdp_model);
   1265   1.13  deraadt #endif
   1266   1.13  deraadt 
   1267  1.124  mycroft 	/* Clear any leftover interrupt. */
   1268   1.64  mycroft 	(void) inb(wdc->sc_iobase+wd_status);
   1269  1.108  mycroft 
   1270  1.124  mycroft 	wdcstart(wdc);
   1271  1.124  mycroft 
   1272  1.124  mycroft 	splx(s);
   1273  1.108  mycroft 	return 0;
   1274    1.1      cgd }
   1275    1.1      cgd 
   1276    1.1      cgd int
   1277   1.55  mycroft wdclose(dev, flag, fmt)
   1278   1.55  mycroft 	dev_t dev;
   1279   1.93  mycroft 	int flag, fmt;
   1280    1.1      cgd {
   1281   1.74  mycroft 	struct wd_softc *wd = wdcd.cd_devs[WDUNIT(dev)];
   1282   1.93  mycroft 	int part = WDPART(dev);
   1283  1.109  mycroft 	int s;
   1284    1.3  deraadt 
   1285    1.3  deraadt 	switch (fmt) {
   1286    1.3  deraadt 	case S_IFCHR:
   1287   1.94  mycroft 		wd->sc_dk.dk_copenmask &= ~(1 << part);
   1288    1.3  deraadt 		break;
   1289    1.3  deraadt 	case S_IFBLK:
   1290   1.94  mycroft 		wd->sc_dk.dk_bopenmask &= ~(1 << part);
   1291    1.3  deraadt 		break;
   1292    1.3  deraadt 	}
   1293   1.94  mycroft 	wd->sc_dk.dk_openmask = wd->sc_dk.dk_copenmask | wd->sc_dk.dk_bopenmask;
   1294  1.109  mycroft 
   1295  1.109  mycroft 	if (wd->sc_dk.dk_openmask == 0) {
   1296  1.132  mycroft 		/*
   1297  1.132  mycroft 		 * If we're closing the last partition, nobody else could be
   1298  1.132  mycroft 		 * holding the lock, so don't bother to check.
   1299  1.132  mycroft 		 */
   1300  1.109  mycroft 		wd->sc_flags |= WDF_LOCKED;
   1301  1.109  mycroft 
   1302  1.113  mycroft #if 0
   1303  1.109  mycroft 		s = splbio();
   1304  1.109  mycroft 		while (...) {
   1305  1.109  mycroft 			wd->sc_flags |= WDF_WAITING;
   1306  1.109  mycroft 			if ((error = tsleep(wd, PRIBIO | PCATCH, "wdcls", 0)) != 0)
   1307  1.109  mycroft 				return error;
   1308  1.109  mycroft 		}
   1309  1.109  mycroft 		splx(s);
   1310  1.113  mycroft #endif
   1311  1.109  mycroft 
   1312  1.132  mycroft 		wdunlock(wd);
   1313  1.109  mycroft 	}
   1314   1.60  mycroft 
   1315   1.37  mycroft 	return 0;
   1316    1.1      cgd }
   1317    1.1      cgd 
   1318    1.1      cgd int
   1319  1.132  mycroft wdioctl(dev, cmd, addr, flag, p)
   1320   1.55  mycroft 	dev_t dev;
   1321  1.132  mycroft 	u_long cmd;
   1322   1.55  mycroft 	caddr_t addr;
   1323   1.55  mycroft 	int flag;
   1324   1.55  mycroft 	struct proc *p;
   1325    1.1      cgd {
   1326  1.108  mycroft 	struct wd_softc *wd = wdcd.cd_devs[WDUNIT(dev)];
   1327   1.54  mycroft 	int error;
   1328    1.3  deraadt 
   1329  1.108  mycroft 	if ((wd->sc_flags & WDF_LOADED) == 0)
   1330  1.108  mycroft 		return EIO;
   1331  1.108  mycroft 
   1332  1.132  mycroft 	switch (cmd) {
   1333    1.1      cgd 	case DIOCSBAD:
   1334    1.3  deraadt 		if ((flag & FWRITE) == 0)
   1335   1.54  mycroft 			return EBADF;
   1336   1.93  mycroft 		wd->sc_dk.dk_cpulabel.bad = *(struct dkbad *)addr;
   1337  1.108  mycroft 		wd->sc_dk.dk_label.d_flags |= D_BADSECT;
   1338   1.64  mycroft 		bad144intern(wd);
   1339   1.54  mycroft 		return 0;
   1340    1.1      cgd 
   1341    1.1      cgd 	case DIOCGDINFO:
   1342   1.93  mycroft 		*(struct disklabel *)addr = wd->sc_dk.dk_label;
   1343   1.54  mycroft 		return 0;
   1344    1.3  deraadt 
   1345    1.3  deraadt 	case DIOCGPART:
   1346   1.93  mycroft 		((struct partinfo *)addr)->disklab = &wd->sc_dk.dk_label;
   1347    1.3  deraadt 		((struct partinfo *)addr)->part =
   1348   1.93  mycroft 		    &wd->sc_dk.dk_label.d_partitions[WDPART(dev)];
   1349   1.54  mycroft 		return 0;
   1350    1.3  deraadt 
   1351  1.132  mycroft 	case DIOCWDINFO:
   1352    1.3  deraadt 	case DIOCSDINFO:
   1353    1.3  deraadt 		if ((flag & FWRITE) == 0)
   1354   1.54  mycroft 			return EBADF;
   1355  1.132  mycroft 
   1356  1.132  mycroft 		if (error = wdlockwait(wd))
   1357  1.132  mycroft 			return error;
   1358  1.132  mycroft 		wd->sc_flags |= WDF_LOCKED | WDF_LABELLING;
   1359  1.132  mycroft 
   1360   1.93  mycroft 		error = setdisklabel(&wd->sc_dk.dk_label,
   1361  1.128  mycroft 		    (struct disklabel *)addr, /*wd->sc_dk.dk_openmask : */0,
   1362   1.93  mycroft 		    &wd->sc_dk.dk_cpulabel);
   1363    1.3  deraadt 		if (error == 0) {
   1364   1.69  mycroft 			if (wd->sc_state > GEOMETRY)
   1365   1.69  mycroft 				wd->sc_state = GEOMETRY;
   1366  1.132  mycroft 			if (cmd == DIOCWDINFO)
   1367  1.132  mycroft 				error = writedisklabel(WDLABELDEV(dev),
   1368  1.132  mycroft 				    wdstrategy, &wd->sc_dk.dk_label,
   1369  1.132  mycroft 				    &wd->sc_dk.dk_cpulabel);
   1370    1.1      cgd 		}
   1371  1.132  mycroft 
   1372  1.132  mycroft 		wd->sc_flags &= ~WDF_LABELLING;
   1373  1.132  mycroft 		wdunlock(wd);
   1374   1.54  mycroft 		return error;
   1375    1.3  deraadt 
   1376   1.44  mycroft 	case DIOCWLABEL:
   1377    1.3  deraadt 		if ((flag & FWRITE) == 0)
   1378   1.54  mycroft 			return EBADF;
   1379   1.93  mycroft 		if (*(int *)addr)
   1380   1.93  mycroft 			wd->sc_flags |= WDF_WLABEL;
   1381   1.93  mycroft 		else
   1382   1.93  mycroft 			wd->sc_flags &= ~WDF_WLABEL;
   1383   1.54  mycroft 		return 0;
   1384    1.3  deraadt 
   1385    1.1      cgd #ifdef notyet
   1386    1.1      cgd 	case DIOCGDINFOP:
   1387   1.93  mycroft 		*(struct disklabel **)addr = &wd->sc_dk.dk_label;
   1388   1.54  mycroft 		return 0;
   1389    1.3  deraadt 
   1390    1.1      cgd 	case DIOCWFORMAT:
   1391    1.1      cgd 		if ((flag & FWRITE) == 0)
   1392   1.54  mycroft 			return EBADF;
   1393   1.54  mycroft 	{
   1394   1.54  mycroft 		register struct format_op *fop;
   1395   1.54  mycroft 		struct iovec aiov;
   1396   1.54  mycroft 		struct uio auio;
   1397    1.3  deraadt 
   1398   1.54  mycroft 		fop = (struct format_op *)addr;
   1399   1.54  mycroft 		aiov.iov_base = fop->df_buf;
   1400   1.54  mycroft 		aiov.iov_len = fop->df_count;
   1401   1.54  mycroft 		auio.uio_iov = &aiov;
   1402   1.54  mycroft 		auio.uio_iovcnt = 1;
   1403   1.54  mycroft 		auio.uio_resid = fop->df_count;
   1404   1.54  mycroft 		auio.uio_segflg = 0;
   1405   1.54  mycroft 		auio.uio_offset =
   1406   1.93  mycroft 		    fop->df_startblk * wd->sc_dk.dk_label.d_secsize;
   1407   1.83       pk 		auio.uio_procp = p;
   1408   1.64  mycroft 		error = physio(wdformat, NULL, dev, B_WRITE, minphys,
   1409   1.64  mycroft 		    &auio);
   1410   1.54  mycroft 		fop->df_count -= auio.uio_resid;
   1411   1.64  mycroft 		fop->df_reg[0] = wdc->sc_status;
   1412   1.64  mycroft 		fop->df_reg[1] = wdc->sc_error;
   1413   1.54  mycroft 		return error;
   1414   1.54  mycroft 	}
   1415    1.1      cgd #endif
   1416    1.3  deraadt 
   1417    1.1      cgd 	default:
   1418   1.54  mycroft 		return ENOTTY;
   1419    1.1      cgd 	}
   1420   1.54  mycroft 
   1421   1.54  mycroft #ifdef DIAGNOSTIC
   1422   1.54  mycroft 	panic("wdioctl: impossible");
   1423   1.54  mycroft #endif
   1424    1.1      cgd }
   1425    1.1      cgd 
   1426   1.44  mycroft #ifdef B_FORMAT
   1427    1.1      cgd int
   1428    1.1      cgd wdformat(struct buf *bp)
   1429    1.1      cgd {
   1430   1.44  mycroft 
   1431    1.1      cgd 	bp->b_flags |= B_FORMAT;
   1432   1.37  mycroft 	return wdstrategy(bp);
   1433    1.1      cgd }
   1434    1.1      cgd #endif
   1435    1.1      cgd 
   1436    1.1      cgd int
   1437   1.55  mycroft wdsize(dev)
   1438   1.55  mycroft 	dev_t dev;
   1439    1.1      cgd {
   1440   1.64  mycroft 	struct wd_softc *wd;
   1441  1.108  mycroft 	int part;
   1442  1.108  mycroft 	int size;
   1443    1.3  deraadt 
   1444  1.108  mycroft 	if (wdopen(dev, 0, S_IFBLK) != 0)
   1445   1.37  mycroft 		return -1;
   1446  1.108  mycroft 	wd = wdcd.cd_devs[WDUNIT(dev)];
   1447  1.108  mycroft 	part = WDPART(dev);
   1448  1.128  mycroft 	if (wd->sc_dk.dk_label.d_partitions[part].p_fstype != FS_SWAP)
   1449  1.108  mycroft 		size = -1;
   1450  1.108  mycroft 	else
   1451  1.108  mycroft 		size = wd->sc_dk.dk_label.d_partitions[part].p_size;
   1452  1.108  mycroft 	if (wdclose(dev, 0, S_IFBLK) != 0)
   1453   1.37  mycroft 		return -1;
   1454  1.108  mycroft 	return size;
   1455    1.1      cgd }
   1456    1.1      cgd 
   1457   1.64  mycroft /*
   1458   1.64  mycroft  * Dump core after a system crash.
   1459   1.64  mycroft  */
   1460    1.1      cgd int
   1461   1.55  mycroft wddump(dev)
   1462   1.55  mycroft 	dev_t dev;
   1463    1.1      cgd {
   1464   1.64  mycroft 	struct wd_softc *wd;	/* disk unit to do the IO */
   1465   1.64  mycroft 	struct wdc_softc *wdc;
   1466  1.116  mycroft 	struct disklabel *lp;
   1467  1.108  mycroft 	int unit, part;
   1468  1.116  mycroft 	long rblkno, nblks;
   1469    1.1      cgd 	char *addr;
   1470   1.46  mycroft 	static wddoingadump = 0;
   1471    1.1      cgd 	extern caddr_t CADDR1;
   1472   1.88  mycroft 	extern pt_entry_t *CMAP1;
   1473   1.30       ws 
   1474  1.116  mycroft 	if (wddoingadump)
   1475  1.116  mycroft 		return EFAULT;
   1476  1.116  mycroft 	wddoingadump = 1;
   1477   1.60  mycroft 
   1478  1.108  mycroft 	unit = WDUNIT(dev);
   1479   1.64  mycroft 	/* Check for acceptable drive number. */
   1480  1.108  mycroft 	if (unit >= wdcd.cd_ndevs)
   1481   1.37  mycroft 		return ENXIO;
   1482  1.108  mycroft 	wd = wdcd.cd_devs[unit];
   1483   1.64  mycroft 	/* Was it ever initialized? */
   1484  1.108  mycroft 	if (wd == 0 || wd->sc_state < OPEN)
   1485   1.37  mycroft 		return ENXIO;
   1486   1.46  mycroft 
   1487   1.64  mycroft 	wdc = (void *)wd->sc_dev.dv_parent;
   1488  1.116  mycroft 	addr = (char *)0;	/* starting address */
   1489  1.116  mycroft 	lp = &wd->sc_dk.dk_label;
   1490  1.116  mycroft 	part = WDPART(dev);
   1491   1.64  mycroft 
   1492   1.64  mycroft 	/* Convert to disk sectors. */
   1493  1.116  mycroft 	rblkno = lp->d_partitions[part].p_offset + dumplo;
   1494  1.116  mycroft 	nblks = min(ctob(physmem) / lp->d_secsize,
   1495  1.116  mycroft 		    lp->d_partitions[part].p_size - dumplo);
   1496  1.116  mycroft 
   1497   1.64  mycroft 	/* Check transfer bounds against partition size. */
   1498  1.116  mycroft 	if (dumplo < 0 || nblks <= 0)
   1499   1.37  mycroft 		return EINVAL;
   1500   1.60  mycroft 
   1501   1.60  mycroft 	/* Recalibrate. */
   1502  1.110  mycroft 	if (wdcommandshort(wdc, wd->sc_drive, WDCC_RECAL) != 0 ||
   1503   1.69  mycroft 	    wait_for_ready(wdc) != 0 || wdsetctlr(wd) != 0 ||
   1504   1.69  mycroft 	    wait_for_ready(wdc) != 0) {
   1505   1.64  mycroft 		wderror(wd, NULL, "wddump: recal failed");
   1506   1.51  mycroft 		return EIO;
   1507   1.63  mycroft 	}
   1508    1.3  deraadt 
   1509  1.116  mycroft 	while (nblks > 0) {
   1510  1.116  mycroft 		long blkno;
   1511  1.116  mycroft 		long cylin, head, sector;
   1512  1.116  mycroft 
   1513  1.116  mycroft 		blkno = rblkno;
   1514  1.116  mycroft 
   1515  1.116  mycroft 		if ((lp->d_flags & D_BADSECT) != 0) {
   1516  1.116  mycroft 			long blkdiff;
   1517    1.3  deraadt 			int i;
   1518    1.3  deraadt 
   1519  1.116  mycroft 			for (i = 0; (blkdiff = wd->sc_badsect[i]) != -1; i++) {
   1520  1.116  mycroft 				blkdiff -= blkno;
   1521  1.116  mycroft 				if (blkdiff < 0)
   1522  1.116  mycroft 					continue;
   1523  1.116  mycroft 				if (blkdiff == 0) {
   1524  1.116  mycroft 					/* Replace current block of transfer. */
   1525  1.116  mycroft 					blkno =
   1526  1.116  mycroft 					    lp->d_secperunit - lp->d_nsectors - i - 1;
   1527    1.3  deraadt 				}
   1528  1.116  mycroft 				break;
   1529    1.1      cgd 			}
   1530  1.116  mycroft 			/* Tranfer is okay now. */
   1531  1.116  mycroft 		}
   1532  1.116  mycroft 
   1533  1.116  mycroft 		if ((wd->sc_params.wdp_capabilities & WD_CAP_LBA) != 0) {
   1534  1.116  mycroft 			sector = (blkno >> 0) & 0xff;
   1535  1.116  mycroft 			cylin = (blkno >> 8) & 0xffff;
   1536  1.117  mycroft 			head = (blkno >> 24) & 0xf;
   1537  1.116  mycroft 			head |= WDSD_LBA;
   1538  1.116  mycroft 		} else {
   1539  1.116  mycroft 			sector = blkno % lp->d_nsectors;
   1540  1.116  mycroft 			sector++;	/* Sectors begin with 1, not 0. */
   1541  1.116  mycroft 			blkno /= lp->d_nsectors;
   1542  1.116  mycroft 			head = blkno % lp->d_ntracks;
   1543  1.116  mycroft 			blkno /= lp->d_ntracks;
   1544  1.116  mycroft 			cylin = blkno;
   1545  1.116  mycroft 			head |= WDSD_CHS;
   1546    1.3  deraadt 		}
   1547  1.116  mycroft 
   1548    1.1      cgd #ifdef notdef
   1549   1.64  mycroft 		/* Let's just talk about this first. */
   1550   1.60  mycroft 		printf("cylin %d, head %d, sector %d, addr 0x%x", cylin, head,
   1551   1.60  mycroft 		    sector, addr);
   1552    1.1      cgd #endif
   1553  1.105  mycroft 		if (wdcommand(wd, WDCC_WRITE, cylin, head, sector, 1) != 0 ||
   1554  1.105  mycroft 		    wait_for_drq(wdc) != 0) {
   1555  1.105  mycroft 			wderror(wd, NULL, "wddump: write failed");
   1556   1.51  mycroft 			return EIO;
   1557   1.63  mycroft 		}
   1558    1.3  deraadt 
   1559   1.64  mycroft #ifdef notdef	/* Cannot use this since this address was mapped differently. */
   1560   1.46  mycroft 		pmap_enter(kernel_pmap, CADDR1, trunc_page(addr), VM_PROT_READ, TRUE);
   1561   1.46  mycroft #else
   1562   1.88  mycroft 		*CMAP1 = PG_V | PG_KW | ctob((long)addr);
   1563   1.46  mycroft 		tlbflush();
   1564   1.46  mycroft #endif
   1565   1.46  mycroft 
   1566   1.64  mycroft 		outsw(wdc->sc_iobase+wd_data, CADDR1 + ((int)addr & PGOFSET),
   1567   1.51  mycroft 		    DEV_BSIZE / sizeof(short));
   1568    1.3  deraadt 
   1569   1.13  deraadt 		/* Check data request (should be done). */
   1570   1.64  mycroft 		if (wait_for_ready(wdc) != 0) {
   1571   1.64  mycroft 			wderror(wd, NULL, "wddump: timeout waiting for ready");
   1572   1.63  mycroft 			return EIO;
   1573   1.63  mycroft 		}
   1574   1.64  mycroft 		if (wdc->sc_status & WDCS_DRQ) {
   1575   1.64  mycroft 			wderror(wd, NULL, "wddump: extra drq");
   1576   1.37  mycroft 			return EIO;
   1577   1.63  mycroft 		}
   1578    1.3  deraadt 
   1579   1.46  mycroft 		if ((unsigned)addr % 1048576 == 0)
   1580  1.116  mycroft 			printf("%d ", nblks / (1048576 / DEV_BSIZE));
   1581    1.1      cgd 
   1582   1.64  mycroft 		/* Update block count. */
   1583  1.116  mycroft 		nblks--;
   1584  1.116  mycroft 		rblkno++;
   1585   1.46  mycroft 		(int)addr += DEV_BSIZE;
   1586    1.1      cgd 	}
   1587  1.116  mycroft 
   1588   1.37  mycroft 	return 0;
   1589    1.1      cgd }
   1590    1.3  deraadt 
   1591    1.3  deraadt /*
   1592    1.3  deraadt  * Internalize the bad sector table.
   1593    1.3  deraadt  */
   1594    1.3  deraadt void
   1595   1.64  mycroft bad144intern(wd)
   1596   1.64  mycroft 	struct wd_softc *wd;
   1597    1.3  deraadt {
   1598   1.98  mycroft 	struct dkbad *bt = &wd->sc_dk.dk_cpulabel.bad;
   1599   1.98  mycroft 	struct disklabel *lp = &wd->sc_dk.dk_label;
   1600   1.98  mycroft 	int i = 0;
   1601   1.55  mycroft 
   1602   1.98  mycroft 	for (; i < 126; i++) {
   1603   1.98  mycroft 		if (bt->bt_bad[i].bt_cyl == 0xffff)
   1604   1.55  mycroft 			break;
   1605   1.64  mycroft 		wd->sc_badsect[i] =
   1606   1.98  mycroft 		    bt->bt_bad[i].bt_cyl * lp->d_secpercyl +
   1607   1.98  mycroft 		    (bt->bt_bad[i].bt_trksec >> 8) * lp->d_nsectors +
   1608   1.98  mycroft 		    (bt->bt_bad[i].bt_trksec & 0xff);
   1609    1.3  deraadt 	}
   1610   1.98  mycroft 	for (; i < 127; i++)
   1611   1.98  mycroft 		wd->sc_badsect[i] = -1;
   1612    1.3  deraadt }
   1613    1.3  deraadt 
   1614   1.27      cgd static int
   1615   1.64  mycroft wdcreset(wdc)
   1616   1.64  mycroft 	struct wdc_softc *wdc;
   1617   1.21  deraadt {
   1618  1.107  mycroft 	int iobase = wdc->sc_iobase;
   1619   1.21  deraadt 
   1620   1.64  mycroft 	/* Reset the device. */
   1621   1.64  mycroft 	outb(iobase+wd_ctlr, WDCTL_RST | WDCTL_IDS);
   1622   1.61  mycroft 	delay(1000);
   1623   1.64  mycroft 	outb(iobase+wd_ctlr, WDCTL_IDS);
   1624   1.61  mycroft 	delay(1000);
   1625   1.64  mycroft 	(void) inb(iobase+wd_error);
   1626   1.64  mycroft 	outb(iobase+wd_ctlr, WDCTL_4BIT);
   1627   1.64  mycroft 
   1628   1.64  mycroft 	if (wait_for_unbusy(wdc) < 0) {
   1629   1.64  mycroft 		printf("%s: reset failed\n", wdc->sc_dev.dv_xname);
   1630   1.64  mycroft 		return 1;
   1631   1.64  mycroft 	}
   1632   1.64  mycroft 
   1633   1.64  mycroft 	return 0;
   1634   1.64  mycroft }
   1635   1.64  mycroft 
   1636   1.64  mycroft static void
   1637   1.81      cgd wdcrestart(arg)
   1638   1.81      cgd 	void *arg;
   1639   1.64  mycroft {
   1640   1.81      cgd 	struct wdc_softc *wdc = (struct wdc_softc *)arg;
   1641   1.98  mycroft 	int s;
   1642   1.64  mycroft 
   1643   1.98  mycroft 	s = splbio();
   1644   1.64  mycroft 	wdcstart(wdc);
   1645   1.64  mycroft 	splx(s);
   1646   1.64  mycroft }
   1647   1.64  mycroft 
   1648   1.64  mycroft /*
   1649   1.64  mycroft  * Unwedge the controller after an unexpected error.  We do this by resetting
   1650   1.64  mycroft  * it, marking all drives for recalibration, and stalling the queue for a short
   1651   1.64  mycroft  * period to give the reset time to finish.
   1652   1.64  mycroft  * NOTE: We use a timeout here, so this routine must not be called during
   1653   1.64  mycroft  * autoconfig or dump.
   1654   1.64  mycroft  */
   1655   1.64  mycroft static void
   1656   1.64  mycroft wdcunwedge(wdc)
   1657   1.64  mycroft 	struct wdc_softc *wdc;
   1658   1.64  mycroft {
   1659  1.108  mycroft 	int unit;
   1660   1.64  mycroft 
   1661   1.98  mycroft 	untimeout(wdctimeout, wdc);
   1662   1.64  mycroft 	(void) wdcreset(wdc);
   1663   1.21  deraadt 
   1664   1.64  mycroft 	/* Schedule recalibrate for all drives on this controller. */
   1665  1.108  mycroft 	for (unit = 0; unit < wdcd.cd_ndevs; unit++) {
   1666  1.108  mycroft 		struct wd_softc *wd = wdcd.cd_devs[unit];
   1667   1.64  mycroft 		if (!wd || (void *)wd->sc_dev.dv_parent != wdc)
   1668   1.64  mycroft 			continue;
   1669   1.69  mycroft 		if (wd->sc_state > RECAL)
   1670   1.69  mycroft 			wd->sc_state = RECAL;
   1671   1.64  mycroft 	}
   1672   1.64  mycroft 
   1673   1.69  mycroft 	wdc->sc_flags |= WDCF_ERROR;
   1674   1.78  mycroft 	++wdc->sc_errors;
   1675   1.64  mycroft 
   1676   1.64  mycroft 	/* Wake up in a little bit and restart the operation. */
   1677   1.82  mycroft 	timeout(wdcrestart, wdc, RECOVERYTIME);
   1678   1.40  mycroft }
   1679   1.40  mycroft 
   1680   1.40  mycroft int
   1681   1.64  mycroft wdcwait(wdc, mask)
   1682   1.64  mycroft 	struct wdc_softc *wdc;
   1683   1.49  mycroft 	int mask;
   1684   1.40  mycroft {
   1685  1.107  mycroft 	int iobase = wdc->sc_iobase;
   1686   1.40  mycroft 	int timeout = 0;
   1687   1.63  mycroft 	u_char status;
   1688   1.87  mycroft 	extern int cold;
   1689   1.40  mycroft 
   1690   1.40  mycroft 	for (;;) {
   1691   1.87  mycroft 		wdc->sc_status = status = inb(iobase+wd_status);
   1692  1.110  mycroft 		if ((status & WDCS_BSY) == 0 && (status & mask) == mask)
   1693   1.54  mycroft 			break;
   1694   1.40  mycroft 		if (++timeout > WDCNDELAY)
   1695   1.40  mycroft 			return -1;
   1696   1.61  mycroft 		delay(WDCDELAY);
   1697   1.21  deraadt 	}
   1698   1.87  mycroft 	if (status & WDCS_ERR) {
   1699   1.64  mycroft 		wdc->sc_error = inb(iobase+wd_error);
   1700   1.87  mycroft 		return WDCS_ERR;
   1701   1.87  mycroft 	}
   1702   1.23  deraadt #ifdef WDCNDELAY_DEBUG
   1703   1.87  mycroft 	/* After autoconfig, there should be no long delays. */
   1704   1.87  mycroft 	if (!cold && timeout > WDCNDELAY_DEBUG)
   1705   1.87  mycroft 		printf("%s: warning: busy-wait took %dus\n",
   1706   1.73  mycroft 		    wdc->sc_dev.dv_xname, WDCDELAY * timeout);
   1707   1.23  deraadt #endif
   1708   1.87  mycroft 	return 0;
   1709   1.27      cgd }
   1710   1.27      cgd 
   1711   1.60  mycroft static void
   1712   1.81      cgd wdctimeout(arg)
   1713   1.81      cgd 	void *arg;
   1714   1.27      cgd {
   1715   1.81      cgd 	struct wdc_softc *wdc = (struct wdc_softc *)arg;
   1716   1.98  mycroft 	int s;
   1717   1.27      cgd 
   1718   1.98  mycroft 	s = splbio();
   1719  1.120  mycroft 	if ((wdc->sc_flags & WDCF_ACTIVE) != 0) {
   1720  1.120  mycroft 		wdc->sc_flags &= ~WDCF_ACTIVE;
   1721  1.120  mycroft 		wderror(wdc, NULL, "lost interrupt");
   1722  1.120  mycroft 		wdcunwedge(wdc);
   1723  1.120  mycroft 	} else
   1724  1.120  mycroft 		wderror(wdc, NULL, "missing untimeout");
   1725   1.55  mycroft 	splx(s);
   1726   1.63  mycroft }
   1727   1.63  mycroft 
   1728   1.63  mycroft static void
   1729   1.64  mycroft wderror(dev, bp, msg)
   1730   1.64  mycroft 	void *dev;
   1731   1.63  mycroft 	struct buf *bp;
   1732   1.63  mycroft 	char *msg;
   1733   1.63  mycroft {
   1734   1.64  mycroft 	struct wd_softc *wd = dev;
   1735   1.64  mycroft 	struct wdc_softc *wdc = dev;
   1736   1.64  mycroft 
   1737  1.114  mycroft 	if (bp) {
   1738  1.125  mycroft 		diskerr(bp, "wd", msg, LOG_PRINTF, wd->sc_skip / DEV_BSIZE,
   1739   1.93  mycroft 		    &wd->sc_dk.dk_label);
   1740  1.114  mycroft 		printf("\n");
   1741  1.114  mycroft 	} else
   1742   1.64  mycroft 		printf("%s: %s: status %b error %b\n", wdc->sc_dev.dv_xname,
   1743   1.64  mycroft 		    msg, wdc->sc_status, WDCS_BITS, wdc->sc_error, WDERR_BITS);
   1744   1.21  deraadt }
   1745