Home | History | Annotate | Line # | Download | only in ata
wd.c revision 1.175.2.5
      1  1.175.2.5  bouyer /*	$NetBSD: wd.c,v 1.175.2.5 1998/06/10 11:14:34 bouyer Exp $ */
      2  1.175.2.2  bouyer 
      3  1.175.2.2  bouyer /*
      4  1.175.2.2  bouyer  * Copyright (c) 1998 Manuel Bouyer.  All rights reserved.
      5  1.175.2.2  bouyer  *
      6  1.175.2.2  bouyer  * Redistribution and use in source and binary forms, with or without
      7  1.175.2.2  bouyer  * modification, are permitted provided that the following conditions
      8  1.175.2.2  bouyer  * are met:
      9  1.175.2.2  bouyer  * 1. Redistributions of source code must retain the above copyright
     10  1.175.2.2  bouyer  *	notice, this list of conditions and the following disclaimer.
     11  1.175.2.2  bouyer  * 2. Redistributions in binary form must reproduce the above copyright
     12  1.175.2.2  bouyer  *	notice, this list of conditions and the following disclaimer in the
     13  1.175.2.2  bouyer  *	documentation and/or other materials provided with the distribution.
     14  1.175.2.2  bouyer  * 3. All advertising materials mentioning features or use of this software
     15  1.175.2.2  bouyer  *	must display the following acknowledgement:
     16  1.175.2.2  bouyer  *  This product includes software developed by Manuel Bouyer.
     17  1.175.2.2  bouyer  * 4. The name of the author may not be used to endorse or promote products
     18  1.175.2.2  bouyer  *	derived from this software without specific prior written permission.
     19  1.175.2.2  bouyer  *
     20  1.175.2.2  bouyer  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     21  1.175.2.2  bouyer  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     22  1.175.2.2  bouyer  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     23  1.175.2.2  bouyer  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     24  1.175.2.2  bouyer  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     25  1.175.2.2  bouyer  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     26  1.175.2.2  bouyer  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     27  1.175.2.2  bouyer  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     28  1.175.2.2  bouyer  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     29  1.175.2.2  bouyer  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     30  1.175.2.2  bouyer  */
     31  1.175.2.2  bouyer 
     32  1.175.2.2  bouyer /*
     33  1.175.2.2  bouyer  * Copyright (c) 1994, 1995, 1998 Charles M. Hannum.  All rights reserved.
     34  1.175.2.2  bouyer  *
     35  1.175.2.2  bouyer  * DMA and multi-sector PIO handling are derived from code contributed by
     36  1.175.2.2  bouyer  * Onno van der Linden.
     37  1.175.2.2  bouyer  *
     38  1.175.2.2  bouyer  * Bus_space-ified by Christopher G. Demetriou.
     39  1.175.2.2  bouyer  *
     40  1.175.2.2  bouyer  *
     41  1.175.2.2  bouyer  * Redistribution and use in source and binary forms, with or without
     42  1.175.2.2  bouyer  * modification, are permitted provided that the following conditions
     43  1.175.2.2  bouyer  * are met:
     44  1.175.2.2  bouyer  * 1. Redistributions of source code must retain the above copyright
     45  1.175.2.2  bouyer  *    notice, this list of conditions and the following disclaimer.
     46  1.175.2.2  bouyer  * 2. Redistributions in binary form must reproduce the above copyright
     47  1.175.2.2  bouyer  *    notice, this list of conditions and the following disclaimer in the
     48  1.175.2.2  bouyer  *    documentation and/or other materials provided with the distribution.
     49  1.175.2.2  bouyer  * 3. All advertising materials mentioning features or use of this software
     50  1.175.2.2  bouyer  *    must display the following acknowledgement:
     51  1.175.2.2  bouyer  *    This product includes software developed by Charles M. Hannum.
     52  1.175.2.2  bouyer  * 4. The name of the author may not be used to endorse or promote products
     53  1.175.2.2  bouyer  *    derived from this software without specific prior written permission.
     54  1.175.2.2  bouyer  *
     55  1.175.2.2  bouyer  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     56  1.175.2.2  bouyer  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     57  1.175.2.2  bouyer  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     58  1.175.2.2  bouyer  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     59  1.175.2.2  bouyer  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     60  1.175.2.2  bouyer  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     61  1.175.2.2  bouyer  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     62  1.175.2.2  bouyer  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     63  1.175.2.2  bouyer  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     64  1.175.2.2  bouyer  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     65  1.175.2.2  bouyer  */
     66  1.175.2.2  bouyer 
     67  1.175.2.2  bouyer #define WDCDEBUG
     68  1.175.2.2  bouyer 
     69  1.175.2.2  bouyer #include "rnd.h"
     70  1.175.2.2  bouyer 
     71  1.175.2.2  bouyer #include <sys/param.h>
     72  1.175.2.2  bouyer #include <sys/systm.h>
     73  1.175.2.2  bouyer #include <sys/kernel.h>
     74  1.175.2.2  bouyer #include <sys/conf.h>
     75  1.175.2.2  bouyer #include <sys/file.h>
     76  1.175.2.2  bouyer #include <sys/stat.h>
     77  1.175.2.2  bouyer #include <sys/ioctl.h>
     78  1.175.2.2  bouyer #include <sys/buf.h>
     79  1.175.2.2  bouyer #include <sys/uio.h>
     80  1.175.2.2  bouyer #include <sys/malloc.h>
     81  1.175.2.2  bouyer #include <sys/device.h>
     82  1.175.2.2  bouyer #include <sys/disklabel.h>
     83  1.175.2.2  bouyer #include <sys/disk.h>
     84  1.175.2.2  bouyer #include <sys/syslog.h>
     85  1.175.2.2  bouyer #include <sys/proc.h>
     86  1.175.2.2  bouyer #if NRND > 0
     87  1.175.2.2  bouyer #include <sys/rnd.h>
     88  1.175.2.2  bouyer #endif
     89  1.175.2.2  bouyer 
     90  1.175.2.2  bouyer #include <vm/vm.h>
     91  1.175.2.2  bouyer 
     92  1.175.2.2  bouyer #include <machine/intr.h>
     93  1.175.2.2  bouyer #include <machine/bus.h>
     94  1.175.2.2  bouyer 
     95  1.175.2.2  bouyer #include <dev/ata/atareg.h>
     96  1.175.2.2  bouyer #include <dev/ata/atavar.h>
     97  1.175.2.2  bouyer #include <dev/ata/wdvar.h>
     98  1.175.2.2  bouyer #include <dev/ic/wdcreg.h>
     99  1.175.2.2  bouyer #include "locators.h"
    100  1.175.2.2  bouyer 
    101  1.175.2.2  bouyer #define	WAITTIME	(4 * hz)	/* time to wait for a completion */
    102  1.175.2.2  bouyer #define	WDIORETRIES	5	/* number of retries before giving up */
    103  1.175.2.2  bouyer #define	RECOVERYTIME hz/2	/* time to wait before retrying a cmd */
    104  1.175.2.2  bouyer 
    105  1.175.2.2  bouyer #define	WDUNIT(dev)		DISKUNIT(dev)
    106  1.175.2.2  bouyer #define	WDPART(dev)		DISKPART(dev)
    107  1.175.2.2  bouyer #define	MAKEWDDEV(maj, unit, part)	MAKEDISKDEV(maj, unit, part)
    108  1.175.2.2  bouyer 
    109  1.175.2.2  bouyer #define	WDLABELDEV(dev)	(MAKEWDDEV(major(dev), WDUNIT(dev), RAW_PART))
    110  1.175.2.2  bouyer 
    111  1.175.2.2  bouyer #define DEBUG_INTR   0x01
    112  1.175.2.2  bouyer #define DEBUG_XFERS  0x02
    113  1.175.2.2  bouyer #define DEBUG_STATUS 0x04
    114  1.175.2.2  bouyer #define DEBUG_FUNCS  0x08
    115  1.175.2.2  bouyer #define DEBUG_PROBE  0x10
    116  1.175.2.2  bouyer #ifdef WDCDEBUG
    117  1.175.2.2  bouyer extern int wdcdebug_wd_mask; /* init'ed in ata_wdc.c */
    118  1.175.2.2  bouyer #define WDCDEBUG_PRINT(args, level) \
    119  1.175.2.2  bouyer 	if (wdcdebug_wd_mask & (level)) \
    120  1.175.2.2  bouyer 		printf args
    121  1.175.2.2  bouyer #else
    122  1.175.2.2  bouyer #define WDCDEBUG_PRINT(args, level)
    123  1.175.2.2  bouyer #endif
    124  1.175.2.2  bouyer 
    125  1.175.2.2  bouyer struct wd_softc {
    126  1.175.2.2  bouyer 	/* General disk infos */
    127  1.175.2.2  bouyer 	struct device sc_dev;
    128  1.175.2.2  bouyer 	struct disk sc_dk;
    129  1.175.2.2  bouyer 	struct buf sc_q;
    130  1.175.2.2  bouyer 	/* IDE disk soft states */
    131  1.175.2.2  bouyer 	struct ata_bio sc_wdc_bio; /* current transfert */
    132  1.175.2.2  bouyer 	struct buf *sc_bp; /* buf being transfered */
    133  1.175.2.2  bouyer 	void *wdc_softc;   /* pointer to our parent */
    134  1.175.2.2  bouyer 	struct ata_drive_datas *drvp; /* Our controller's infos */
    135  1.175.2.2  bouyer 	int openings;
    136  1.175.2.2  bouyer 	struct ataparams sc_params;/* drive characteistics found */
    137  1.175.2.2  bouyer 	int sc_flags;
    138  1.175.2.2  bouyer #define WDF_LOCKED	  0x01
    139  1.175.2.2  bouyer #define WDF_WANTED	  0x02
    140  1.175.2.2  bouyer #define WDF_WLABEL	  0x04 /* label is writable */
    141  1.175.2.2  bouyer #define WDF_LABELLING   0x08 /* writing label */
    142  1.175.2.2  bouyer /*
    143  1.175.2.2  bouyer  * XXX Nothing resets this yet, but disk change sensing will when ATA-4 is
    144  1.175.2.2  bouyer  * more fully implemented.
    145  1.175.2.2  bouyer  */
    146  1.175.2.2  bouyer #define WDF_LOADED	  0x10 /* parameters loaded */
    147  1.175.2.2  bouyer #define WDF_WAIT	0x20 /* waiting for resources */
    148  1.175.2.2  bouyer #define WDF_LBA	 0x40 /* using LBA mode */
    149  1.175.2.2  bouyer 	int sc_capacity;
    150  1.175.2.2  bouyer 	int cyl; /* actual drive parameters */
    151  1.175.2.2  bouyer 	int heads;
    152  1.175.2.2  bouyer 	int sectors;
    153  1.175.2.2  bouyer 	int retries; /* number of xfer retry */
    154  1.175.2.2  bouyer #if NRND > 0
    155  1.175.2.2  bouyer 	rndsource_element_t	rnd_source;
    156  1.175.2.2  bouyer #endif
    157  1.175.2.2  bouyer };
    158  1.175.2.2  bouyer 
    159  1.175.2.2  bouyer #define sc_drive sc_wdc_bio.drive
    160  1.175.2.2  bouyer #define sc_mode sc_wdc_bio.mode
    161  1.175.2.2  bouyer #define sc_multi sc_wdc_bio.multi
    162  1.175.2.2  bouyer #define sc_badsect sc_wdc_bio.badsect
    163  1.175.2.2  bouyer 
    164  1.175.2.2  bouyer int	wdprobe	__P((struct device *, struct cfdata *, void *));
    165  1.175.2.2  bouyer void	wdattach	__P((struct device *, struct device *, void *));
    166  1.175.2.2  bouyer int	wdprint	__P((void *, char *));
    167  1.175.2.2  bouyer 
    168  1.175.2.2  bouyer struct cfattach wd_ca = {
    169  1.175.2.2  bouyer 	sizeof(struct wd_softc), wdprobe, wdattach
    170  1.175.2.2  bouyer };
    171  1.175.2.2  bouyer 
    172  1.175.2.2  bouyer extern struct cfdriver wd_cd;
    173  1.175.2.2  bouyer 
    174  1.175.2.2  bouyer void  wdgetdefaultlabel __P((struct wd_softc *, struct disklabel *));
    175  1.175.2.2  bouyer void  wdgetdisklabel	__P((struct wd_softc *));
    176  1.175.2.2  bouyer void  wdstrategy	__P((struct buf *));
    177  1.175.2.2  bouyer void  wdstart	__P((void *));
    178  1.175.2.2  bouyer void  __wdstart	__P((struct wd_softc*, struct buf *));
    179  1.175.2.2  bouyer void  wdrestart __P((void*));
    180  1.175.2.2  bouyer int   wd_get_params __P((struct wd_softc *, u_int8_t, struct ataparams *));
    181  1.175.2.2  bouyer 
    182  1.175.2.2  bouyer struct dkdriver wddkdriver = { wdstrategy };
    183  1.175.2.2  bouyer 
    184  1.175.2.2  bouyer /* XXX: these should go elsewhere */
    185  1.175.2.2  bouyer cdev_decl(wd);
    186  1.175.2.2  bouyer bdev_decl(wd);
    187  1.175.2.2  bouyer 
    188  1.175.2.2  bouyer #ifdef HAS_BAD144_HANDLING
    189  1.175.2.2  bouyer static void bad144intern __P((struct wd_softc *));
    190  1.175.2.2  bouyer #endif
    191  1.175.2.2  bouyer int	wdlock	__P((struct wd_softc *));
    192  1.175.2.2  bouyer void	wdunlock	__P((struct wd_softc *));
    193  1.175.2.2  bouyer void print_wderror __P((int, char*));
    194  1.175.2.2  bouyer 
    195  1.175.2.2  bouyer int
    196  1.175.2.2  bouyer wdprobe(parent, match, aux)
    197  1.175.2.2  bouyer 	struct device *parent;
    198  1.175.2.2  bouyer 	struct cfdata *match;
    199  1.175.2.2  bouyer 
    200  1.175.2.2  bouyer 	void *aux;
    201  1.175.2.2  bouyer {
    202  1.175.2.2  bouyer 	struct ata_atapi_attach *aa_link = aux;
    203  1.175.2.2  bouyer 
    204  1.175.2.2  bouyer 	if (aa_link == NULL)
    205  1.175.2.2  bouyer 		return 0;
    206  1.175.2.2  bouyer 	if (aa_link->aa_type != T_ATA)
    207  1.175.2.2  bouyer 		return 0;
    208  1.175.2.2  bouyer 
    209  1.175.2.2  bouyer 	if (match->cf_loc[ATACF_CHANNEL] != ATACF_CHANNEL_DEFAULT &&
    210  1.175.2.2  bouyer 	    match->cf_loc[ATACF_CHANNEL] != aa_link->aa_channel)
    211  1.175.2.2  bouyer 		return 0;
    212  1.175.2.2  bouyer 
    213  1.175.2.2  bouyer 	if (match->cf_loc[ATACF_DRIVE] != ATACF_DRIVE_DEFAULT &&
    214  1.175.2.2  bouyer 	    match->cf_loc[ATACF_DRIVE] != aa_link->aa_drv_data->drive)
    215  1.175.2.2  bouyer 		return 0;
    216  1.175.2.2  bouyer 
    217  1.175.2.2  bouyer 	return 1;
    218  1.175.2.2  bouyer }
    219  1.175.2.2  bouyer 
    220  1.175.2.2  bouyer void
    221  1.175.2.2  bouyer wdattach(parent, self, aux)
    222  1.175.2.2  bouyer 	struct device *parent, *self;
    223  1.175.2.2  bouyer 	void *aux;
    224  1.175.2.2  bouyer {
    225  1.175.2.2  bouyer 	struct wd_softc *wd = (void *)self;
    226  1.175.2.2  bouyer 	struct ata_atapi_attach *aa_link= aux;
    227  1.175.2.2  bouyer 	int i, blank;
    228  1.175.2.2  bouyer 	char buf[41], c, *p, *q;
    229  1.175.2.2  bouyer 	WDCDEBUG_PRINT(("wdattach\n"), DEBUG_FUNCS | DEBUG_PROBE);
    230  1.175.2.2  bouyer 
    231  1.175.2.2  bouyer 	wd->openings = aa_link->aa_openings;
    232  1.175.2.2  bouyer 	wd->drvp = aa_link->aa_drv_data;;
    233  1.175.2.2  bouyer 	wd->wdc_softc = parent;
    234  1.175.2.2  bouyer 	/* give back our softc to our caller */
    235  1.175.2.2  bouyer 	wd->drvp->drv_softc = wd;
    236  1.175.2.2  bouyer 
    237  1.175.2.2  bouyer 	/* read our drive info */
    238  1.175.2.2  bouyer 	wd_get_params(wd, AT_POLL, &wd->sc_params);
    239  1.175.2.2  bouyer 
    240  1.175.2.2  bouyer 	for (blank = 0, p = wd->sc_params.atap_model, q = buf, i = 0;
    241  1.175.2.2  bouyer 	    i < sizeof(wd->sc_params.atap_model); i++) {
    242  1.175.2.2  bouyer 		c = *p++;
    243  1.175.2.2  bouyer 		if (c == '\0')
    244  1.175.2.2  bouyer 			break;
    245  1.175.2.2  bouyer 		if (c != ' ') {
    246  1.175.2.2  bouyer 			if (blank) {
    247  1.175.2.2  bouyer 				*q++ = ' ';
    248  1.175.2.2  bouyer 				blank = 0;
    249  1.175.2.2  bouyer 			}
    250  1.175.2.2  bouyer 			*q++ = c;
    251  1.175.2.2  bouyer 		} else
    252  1.175.2.2  bouyer 			blank = 1;
    253  1.175.2.2  bouyer 		}
    254  1.175.2.2  bouyer 	*q++ = '\0';
    255  1.175.2.2  bouyer 
    256  1.175.2.2  bouyer 	printf(": <%s>\n", buf);
    257  1.175.2.2  bouyer 
    258  1.175.2.2  bouyer 	if ((wd->sc_params.atap_multi & 0xff) > 1) {
    259  1.175.2.2  bouyer 		wd->sc_multi = wd->sc_params.atap_multi & 0xff;
    260  1.175.2.2  bouyer 	} else {
    261  1.175.2.2  bouyer 		wd->sc_multi = 1;
    262  1.175.2.2  bouyer 	}
    263  1.175.2.2  bouyer 
    264  1.175.2.2  bouyer 	printf("%s: using %d-sector pio transfers,", wd->sc_dev.dv_xname,
    265  1.175.2.2  bouyer 	    wd->sc_multi);
    266  1.175.2.2  bouyer 
    267  1.175.2.2  bouyer 	/* Prior to ATA-4, LBA was optional. */
    268  1.175.2.2  bouyer 	if ((wd->sc_params.atap_capabilities1 & WDC_CAP_LBA) != 0)
    269  1.175.2.2  bouyer 		wd->sc_flags |= WDF_LBA;
    270  1.175.2.2  bouyer #if 0
    271  1.175.2.2  bouyer 	/* ATA-4 requires LBA. */
    272  1.175.2.2  bouyer 	if (wd->sc_params.atap_ataversion != 0xffff &&
    273  1.175.2.2  bouyer 	    wd->sc_params.atap_ataversion >= WDC_VER_ATA4)
    274  1.175.2.2  bouyer 		wd->sc_flags |= WDF_LBA;
    275  1.175.2.2  bouyer #endif
    276  1.175.2.2  bouyer 
    277  1.175.2.2  bouyer 	if ((wd->sc_flags & WDF_LBA) != 0) {
    278  1.175.2.2  bouyer 		printf(" lba mode\n");
    279  1.175.2.2  bouyer 		wd->sc_capacity =
    280  1.175.2.2  bouyer 		    (wd->sc_params.atap_capacity[1] << 16) |
    281  1.175.2.2  bouyer 		    wd->sc_params.atap_capacity[0];
    282  1.175.2.2  bouyer 		printf("%s: %dMB, %d sec, %d bytes/sec\n",
    283  1.175.2.2  bouyer 		    self->dv_xname,
    284  1.175.2.2  bouyer 		    wd->sc_capacity / (1048576 / DEV_BSIZE),
    285  1.175.2.2  bouyer 		    wd->sc_capacity, DEV_BSIZE);
    286  1.175.2.2  bouyer 	} else {
    287  1.175.2.2  bouyer 		printf(" chs mode\n");
    288  1.175.2.2  bouyer 		wd->sc_capacity =
    289  1.175.2.2  bouyer 		    wd->sc_params.atap_cylinders *
    290  1.175.2.2  bouyer 		    wd->sc_params.atap_heads *
    291  1.175.2.2  bouyer 		    wd->sc_params.atap_sectors;
    292  1.175.2.2  bouyer 		printf("%s: %dMB, %d cyl, %d head, %d sec, "
    293  1.175.2.2  bouyer 		    "%d bytes/sec\n", self->dv_xname,
    294  1.175.2.2  bouyer 		    wd->sc_capacity / (1048576 / DEV_BSIZE),
    295  1.175.2.2  bouyer 		    wd->sc_params.atap_cylinders,
    296  1.175.2.2  bouyer 		    wd->sc_params.atap_heads,
    297  1.175.2.2  bouyer 		    wd->sc_params.atap_sectors, DEV_BSIZE);
    298  1.175.2.2  bouyer 	}
    299  1.175.2.5  bouyer 	WDCDEBUG_PRINT(("atap_dmatiming_mimi=%d, atap_dmatiming_recom=%d\n",
    300  1.175.2.5  bouyer 	    wd->sc_params.atap_dmatiming_mimi,
    301  1.175.2.5  bouyer 	    wd->sc_params.atap_dmatiming_recom), DEBUG_PROBE);
    302  1.175.2.2  bouyer 	/*
    303  1.175.2.2  bouyer 	 * Initialize and attach the disk structure.
    304  1.175.2.2  bouyer 	 */
    305  1.175.2.2  bouyer 	wd->sc_dk.dk_driver = &wddkdriver;
    306  1.175.2.2  bouyer 	wd->sc_dk.dk_name = wd->sc_dev.dv_xname;
    307  1.175.2.2  bouyer 	disk_attach(&wd->sc_dk);
    308  1.175.2.2  bouyer 	wd->sc_wdc_bio.lp = wd->sc_dk.dk_label;
    309  1.175.2.2  bouyer 
    310  1.175.2.2  bouyer #if NRND > 0
    311  1.175.2.2  bouyer 	rnd_attach_source(&wd->rnd_source, wd->sc_dev.dv_xname, RND_TYPE_DISK);
    312  1.175.2.2  bouyer #endif
    313  1.175.2.2  bouyer }
    314  1.175.2.2  bouyer 
    315  1.175.2.2  bouyer /*
    316  1.175.2.2  bouyer  * Read/write routine for a buffer.  Validates the arguments and schedules the
    317  1.175.2.2  bouyer  * transfer.  Does not wait for the transfer to complete.
    318  1.175.2.2  bouyer  */
    319  1.175.2.2  bouyer void
    320  1.175.2.2  bouyer wdstrategy(bp)
    321  1.175.2.2  bouyer 	struct buf *bp;
    322  1.175.2.2  bouyer {
    323  1.175.2.2  bouyer 	struct wd_softc *wd = wd_cd.cd_devs[WDUNIT(bp->b_dev)];
    324  1.175.2.2  bouyer 	int s;
    325  1.175.2.2  bouyer 	WDCDEBUG_PRINT(("wdstrategy\n"), DEBUG_FUNCS | DEBUG_XFERS);
    326  1.175.2.2  bouyer 
    327  1.175.2.2  bouyer 	/* Valid request?  */
    328  1.175.2.2  bouyer 	if (bp->b_blkno < 0 ||
    329  1.175.2.2  bouyer 	    (bp->b_bcount % wd->sc_dk.dk_label->d_secsize) != 0 ||
    330  1.175.2.2  bouyer 	    (bp->b_bcount / wd->sc_dk.dk_label->d_secsize) >= (1 << NBBY)) {
    331  1.175.2.2  bouyer 		bp->b_error = EINVAL;
    332  1.175.2.2  bouyer 		goto bad;
    333  1.175.2.2  bouyer 	}
    334  1.175.2.2  bouyer 
    335  1.175.2.2  bouyer 	/* If device invalidated (e.g. media change, door open), error. */
    336  1.175.2.2  bouyer 	if ((wd->sc_flags & WDF_LOADED) == 0) {
    337  1.175.2.2  bouyer 		bp->b_error = EIO;
    338  1.175.2.2  bouyer 		goto bad;
    339  1.175.2.2  bouyer 	}
    340  1.175.2.2  bouyer 
    341  1.175.2.2  bouyer 	/* If it's a null transfer, return immediately. */
    342  1.175.2.2  bouyer 	if (bp->b_bcount == 0)
    343  1.175.2.2  bouyer 		goto done;
    344  1.175.2.2  bouyer 
    345  1.175.2.2  bouyer 	/*
    346  1.175.2.2  bouyer 	 * Do bounds checking, adjust transfer. if error, process.
    347  1.175.2.2  bouyer 	 * If end of partition, just return.
    348  1.175.2.2  bouyer 	 */
    349  1.175.2.2  bouyer 	if (WDPART(bp->b_dev) != RAW_PART &&
    350  1.175.2.2  bouyer 	    bounds_check_with_label(bp, wd->sc_dk.dk_label,
    351  1.175.2.2  bouyer 	    (wd->sc_flags & (WDF_WLABEL|WDF_LABELLING)) != 0) <= 0)
    352  1.175.2.2  bouyer 		goto done;
    353  1.175.2.2  bouyer 	/* Queue transfer on drive, activate drive and controller if idle. */
    354  1.175.2.2  bouyer 	s = splbio();
    355  1.175.2.2  bouyer 	disksort(&wd->sc_q, bp);
    356  1.175.2.2  bouyer 	wdstart(wd);
    357  1.175.2.2  bouyer 	splx(s);
    358  1.175.2.2  bouyer 	return;
    359  1.175.2.2  bouyer bad:
    360  1.175.2.2  bouyer 	bp->b_flags |= B_ERROR;
    361  1.175.2.2  bouyer done:
    362  1.175.2.2  bouyer 	/* Toss transfer; we're done early. */
    363  1.175.2.2  bouyer 	bp->b_resid = bp->b_bcount;
    364  1.175.2.2  bouyer 	biodone(bp);
    365  1.175.2.2  bouyer }
    366  1.175.2.2  bouyer 
    367  1.175.2.2  bouyer /*
    368  1.175.2.2  bouyer  * Queue a drive for I/O.
    369  1.175.2.2  bouyer  */
    370  1.175.2.2  bouyer void
    371  1.175.2.2  bouyer wdstart(arg)
    372  1.175.2.2  bouyer 	void *arg;
    373  1.175.2.2  bouyer {
    374  1.175.2.2  bouyer 	struct wd_softc *wd = arg;
    375  1.175.2.2  bouyer 	struct buf *dp, *bp=0;
    376  1.175.2.2  bouyer 
    377  1.175.2.2  bouyer 	WDCDEBUG_PRINT(("wdstart\n"), DEBUG_FUNCS | DEBUG_XFERS);
    378  1.175.2.2  bouyer 	while (wd->openings > 0) {
    379  1.175.2.2  bouyer 
    380  1.175.2.2  bouyer 		/* Is there a buf for us ? */
    381  1.175.2.2  bouyer 		dp = &wd->sc_q;
    382  1.175.2.2  bouyer 		if ((bp = dp->b_actf) == NULL)  /* yes, an assign */
    383  1.175.2.2  bouyer 			 return;
    384  1.175.2.2  bouyer 		dp->b_actf = bp->b_actf;
    385  1.175.2.2  bouyer 
    386  1.175.2.2  bouyer 		/*
    387  1.175.2.2  bouyer 		 * Make the command. First lock the device
    388  1.175.2.2  bouyer 		 */
    389  1.175.2.2  bouyer 		wd->openings--;
    390  1.175.2.2  bouyer 
    391  1.175.2.2  bouyer 		wd->retries = 0;
    392  1.175.2.2  bouyer 		__wdstart(wd, bp);
    393  1.175.2.2  bouyer 	}
    394  1.175.2.2  bouyer }
    395  1.175.2.2  bouyer 
    396  1.175.2.2  bouyer void
    397  1.175.2.2  bouyer __wdstart(wd, bp)
    398  1.175.2.2  bouyer 	struct wd_softc *wd;
    399  1.175.2.2  bouyer 	struct buf *bp;
    400  1.175.2.2  bouyer {
    401  1.175.2.2  bouyer 	daddr_t p_offset;
    402  1.175.2.2  bouyer 	if (WDPART(bp->b_dev) != RAW_PART)
    403  1.175.2.2  bouyer 		p_offset =
    404  1.175.2.2  bouyer 		    wd->sc_dk.dk_label->d_partitions[WDPART(bp->b_dev)].p_offset;
    405  1.175.2.2  bouyer 	else
    406  1.175.2.2  bouyer 		p_offset = 0;
    407  1.175.2.2  bouyer 	wd->sc_wdc_bio.blkno = bp->b_blkno + p_offset;
    408  1.175.2.2  bouyer 	wd->sc_wdc_bio.blkno /= (wd->sc_dk.dk_label->d_secsize / DEV_BSIZE);
    409  1.175.2.2  bouyer 	wd->sc_bp = bp;
    410  1.175.2.3  bouyer 	/* If we're retrying, retry in single-sector mode, just in case ... */
    411  1.175.2.2  bouyer 	if (wd->sc_multi == 1 || wd->retries > 0)
    412  1.175.2.2  bouyer 		wd->sc_wdc_bio.flags = ATA_SINGLE;
    413  1.175.2.2  bouyer 	else
    414  1.175.2.2  bouyer 		wd->sc_wdc_bio.flags = 0;
    415  1.175.2.2  bouyer 	if (wd->sc_flags & WDF_LBA)
    416  1.175.2.2  bouyer 		wd->sc_wdc_bio.flags |= ATA_LBA;
    417  1.175.2.2  bouyer 	if (bp->b_flags & B_READ)
    418  1.175.2.2  bouyer 		wd->sc_wdc_bio.flags |= ATA_READ;
    419  1.175.2.2  bouyer 	wd->sc_wdc_bio.bcount = bp->b_bcount;
    420  1.175.2.2  bouyer 	wd->sc_wdc_bio.databuf = bp->b_data;
    421  1.175.2.2  bouyer 	/* Instrumentation. */
    422  1.175.2.2  bouyer 	disk_busy(&wd->sc_dk);
    423  1.175.2.2  bouyer 	switch (wdc_ata_bio(wd->drvp, &wd->sc_wdc_bio)) {
    424  1.175.2.2  bouyer 	case WDC_TRY_AGAIN:
    425  1.175.2.2  bouyer 		timeout(wdrestart, wd, hz);
    426  1.175.2.2  bouyer 		break;
    427  1.175.2.2  bouyer 	case WDC_QUEUED:
    428  1.175.2.2  bouyer 		break;
    429  1.175.2.2  bouyer 	case WDC_COMPLETE:
    430  1.175.2.2  bouyer 		wddone(wd);
    431  1.175.2.2  bouyer 		break;
    432  1.175.2.2  bouyer 	default:
    433  1.175.2.2  bouyer 		panic("__wdstart: bad return code from wdc_ata_bio()");
    434  1.175.2.2  bouyer 	}
    435  1.175.2.2  bouyer }
    436  1.175.2.2  bouyer 
    437  1.175.2.2  bouyer void
    438  1.175.2.2  bouyer wddone(v)
    439  1.175.2.2  bouyer 	void *v;
    440  1.175.2.2  bouyer {
    441  1.175.2.2  bouyer 	struct wd_softc *wd = v;
    442  1.175.2.2  bouyer 	struct buf *bp = wd->sc_bp;
    443  1.175.2.2  bouyer 	char buf[256], *errbuf = buf;
    444  1.175.2.2  bouyer 	WDCDEBUG_PRINT(("wddone\n"), DEBUG_FUNCS | DEBUG_XFERS);
    445  1.175.2.2  bouyer 
    446  1.175.2.2  bouyer 	bp->b_resid = wd->sc_wdc_bio.nbytes;
    447  1.175.2.2  bouyer 	errbuf[0] = '\0';
    448  1.175.2.2  bouyer 	switch (wd->sc_wdc_bio.error) {
    449  1.175.2.2  bouyer 	case ERR_DMA:
    450  1.175.2.2  bouyer 		errbuf = "DMA error";
    451  1.175.2.2  bouyer 		goto retry;
    452  1.175.2.2  bouyer 	case ERR_DF:
    453  1.175.2.2  bouyer 		errbuf = "device fault";
    454  1.175.2.2  bouyer 		goto retry;
    455  1.175.2.2  bouyer 	case TIMEOUT:
    456  1.175.2.2  bouyer 		errbuf = "device timeout";
    457  1.175.2.2  bouyer 		goto retry;
    458  1.175.2.2  bouyer 	case ERROR:
    459  1.175.2.2  bouyer 		/* Don't care about media change bits */
    460  1.175.2.2  bouyer 		if (wd->sc_wdc_bio.r_error != 0 &&
    461  1.175.2.2  bouyer 		    (wd->sc_wdc_bio.r_error & ~(WDCE_MC | WDCE_MCR)) == 0)
    462  1.175.2.2  bouyer 			goto noerror;
    463  1.175.2.2  bouyer 		print_wderror(wd->sc_wdc_bio.r_error, errbuf);
    464  1.175.2.2  bouyer retry:		/* Just reset and retry. Can we do more ? */
    465  1.175.2.2  bouyer 		wdc_reset_channel(wd->drvp);
    466  1.175.2.2  bouyer 		printf("%s: %s", wd->sc_dev.dv_xname, errbuf);
    467  1.175.2.2  bouyer 		if (wd->retries++ < WDIORETRIES) {
    468  1.175.2.2  bouyer 			printf(", retrying\n");
    469  1.175.2.2  bouyer 			timeout(wdrestart, wd, RECOVERYTIME);
    470  1.175.2.2  bouyer 			return;
    471  1.175.2.2  bouyer 		}
    472  1.175.2.2  bouyer 		printf("\n");
    473  1.175.2.2  bouyer 		bp->b_flags |= B_ERROR;
    474  1.175.2.2  bouyer 		bp->b_error = EIO;
    475  1.175.2.2  bouyer 		break;
    476  1.175.2.2  bouyer 	case NOERROR:
    477  1.175.2.2  bouyer noerror:	if ((wd->sc_wdc_bio.flags & ATA_CORR) || wd->retries > 0)
    478  1.175.2.2  bouyer 			printf("%s: soft error (corrected)\n",
    479  1.175.2.2  bouyer 			    wd->sc_dev.dv_xname);
    480  1.175.2.2  bouyer 	}
    481  1.175.2.2  bouyer 	disk_unbusy(&wd->sc_dk, (bp->b_bcount - bp->b_resid));
    482  1.175.2.2  bouyer #if NRND > 0
    483  1.175.2.2  bouyer 	rnd_add_uint32(&wd->rnd_source, bp->b_blkno);
    484  1.175.2.2  bouyer #endif
    485  1.175.2.2  bouyer 	biodone(bp);
    486  1.175.2.2  bouyer 	wd->openings++;
    487  1.175.2.2  bouyer 	wdstart(wd);
    488  1.175.2.2  bouyer }
    489  1.175.2.2  bouyer 
    490  1.175.2.2  bouyer void
    491  1.175.2.2  bouyer wdrestart(v)
    492  1.175.2.2  bouyer 	void *v;
    493  1.175.2.2  bouyer {
    494  1.175.2.2  bouyer 	struct wd_softc *wd = v;
    495  1.175.2.2  bouyer 	struct buf *bp = wd->sc_bp;
    496  1.175.2.2  bouyer 	int s;
    497  1.175.2.2  bouyer 	WDCDEBUG_PRINT(("wdrestart\n"), DEBUG_FUNCS | DEBUG_XFERS);
    498  1.175.2.2  bouyer 
    499  1.175.2.2  bouyer 	s = splbio();
    500  1.175.2.2  bouyer 	__wdstart(v, bp);
    501  1.175.2.2  bouyer 	splx(s);
    502  1.175.2.2  bouyer }
    503  1.175.2.2  bouyer 
    504  1.175.2.2  bouyer int
    505  1.175.2.2  bouyer wdread(dev, uio, flags)
    506  1.175.2.2  bouyer 	dev_t dev;
    507  1.175.2.2  bouyer 	struct uio *uio;
    508  1.175.2.2  bouyer 	int flags;
    509  1.175.2.2  bouyer {
    510  1.175.2.2  bouyer 
    511  1.175.2.2  bouyer 	WDCDEBUG_PRINT(("wdread\n"), DEBUG_FUNCS | DEBUG_XFERS);
    512  1.175.2.2  bouyer 	return (physio(wdstrategy, NULL, dev, B_READ, minphys, uio));
    513  1.175.2.2  bouyer }
    514  1.175.2.2  bouyer 
    515  1.175.2.2  bouyer int
    516  1.175.2.2  bouyer wdwrite(dev, uio, flags)
    517  1.175.2.2  bouyer 	dev_t dev;
    518  1.175.2.2  bouyer 	struct uio *uio;
    519  1.175.2.2  bouyer 	int flags;
    520  1.175.2.2  bouyer {
    521  1.175.2.2  bouyer 
    522  1.175.2.2  bouyer 	WDCDEBUG_PRINT(("wdwrite\n"), DEBUG_FUNCS | DEBUG_XFERS);
    523  1.175.2.2  bouyer 	return (physio(wdstrategy, NULL, dev, B_WRITE, minphys, uio));
    524  1.175.2.2  bouyer }
    525  1.175.2.2  bouyer 
    526  1.175.2.2  bouyer /*
    527  1.175.2.2  bouyer  * Wait interruptibly for an exclusive lock.
    528  1.175.2.2  bouyer  *
    529  1.175.2.2  bouyer  * XXX
    530  1.175.2.2  bouyer  * Several drivers do this; it should be abstracted and made MP-safe.
    531  1.175.2.2  bouyer  */
    532  1.175.2.2  bouyer int
    533  1.175.2.2  bouyer wdlock(wd)
    534  1.175.2.2  bouyer 	struct wd_softc *wd;
    535  1.175.2.2  bouyer {
    536  1.175.2.2  bouyer 	int error;
    537  1.175.2.2  bouyer 	int s;
    538  1.175.2.2  bouyer 
    539  1.175.2.2  bouyer 	WDCDEBUG_PRINT(("wdlock\n"), DEBUG_FUNCS);
    540  1.175.2.2  bouyer 
    541  1.175.2.2  bouyer 	s = splbio();
    542  1.175.2.2  bouyer 
    543  1.175.2.2  bouyer 	while ((wd->sc_flags & WDF_LOCKED) != 0) {
    544  1.175.2.2  bouyer 		wd->sc_flags |= WDF_WANTED;
    545  1.175.2.2  bouyer 		if ((error = tsleep(wd, PRIBIO | PCATCH,
    546  1.175.2.2  bouyer 		    "wdlck", 0)) != 0) {
    547  1.175.2.2  bouyer 			splx(s);
    548  1.175.2.2  bouyer 			return error;
    549  1.175.2.2  bouyer 		}
    550  1.175.2.2  bouyer 	}
    551  1.175.2.2  bouyer 	wd->sc_flags |= WDF_LOCKED;
    552  1.175.2.2  bouyer 	splx(s);
    553  1.175.2.2  bouyer 	return 0;
    554  1.175.2.2  bouyer }
    555  1.175.2.2  bouyer 
    556  1.175.2.2  bouyer /*
    557  1.175.2.2  bouyer  * Unlock and wake up any waiters.
    558  1.175.2.2  bouyer  */
    559  1.175.2.2  bouyer void
    560  1.175.2.2  bouyer wdunlock(wd)
    561  1.175.2.2  bouyer 	struct wd_softc *wd;
    562  1.175.2.2  bouyer {
    563  1.175.2.2  bouyer 
    564  1.175.2.2  bouyer 	WDCDEBUG_PRINT(("wdunlock\n"), DEBUG_FUNCS);
    565  1.175.2.2  bouyer 
    566  1.175.2.2  bouyer 	wd->sc_flags &= ~WDF_LOCKED;
    567  1.175.2.2  bouyer 	if ((wd->sc_flags & WDF_WANTED) != 0) {
    568  1.175.2.2  bouyer 		wd->sc_flags &= ~WDF_WANTED;
    569  1.175.2.2  bouyer 		wakeup(wd);
    570  1.175.2.2  bouyer 	}
    571  1.175.2.2  bouyer }
    572  1.175.2.2  bouyer 
    573  1.175.2.2  bouyer int
    574  1.175.2.2  bouyer wdopen(dev, flag, fmt, p)
    575  1.175.2.2  bouyer 	dev_t dev;
    576  1.175.2.2  bouyer 	int flag, fmt;
    577  1.175.2.2  bouyer 	struct proc *p;
    578  1.175.2.2  bouyer {
    579  1.175.2.2  bouyer 	struct wd_softc *wd;
    580  1.175.2.2  bouyer 	int unit, part;
    581  1.175.2.2  bouyer 	int error;
    582  1.175.2.2  bouyer 
    583  1.175.2.2  bouyer 	WDCDEBUG_PRINT(("wdopen\n"), DEBUG_FUNCS);
    584  1.175.2.2  bouyer 	unit = WDUNIT(dev);
    585  1.175.2.2  bouyer 	if (unit >= wd_cd.cd_ndevs)
    586  1.175.2.2  bouyer 		return ENXIO;
    587  1.175.2.2  bouyer 	wd = wd_cd.cd_devs[unit];
    588  1.175.2.2  bouyer 	if (wd == NULL)
    589  1.175.2.2  bouyer 		return ENXIO;
    590  1.175.2.2  bouyer 
    591  1.175.2.2  bouyer 	if ((error = wdlock(wd)) != 0)
    592  1.175.2.2  bouyer 		return error;
    593  1.175.2.2  bouyer 
    594  1.175.2.2  bouyer 	if (wd->sc_dk.dk_openmask != 0) {
    595  1.175.2.2  bouyer 		/*
    596  1.175.2.2  bouyer 		 * If any partition is open, but the disk has been invalidated,
    597  1.175.2.2  bouyer 		 * disallow further opens.
    598  1.175.2.2  bouyer 		 */
    599  1.175.2.2  bouyer 		if ((wd->sc_flags & WDF_LOADED) == 0) {
    600  1.175.2.2  bouyer 			error = EIO;
    601  1.175.2.2  bouyer 			goto bad3;
    602  1.175.2.2  bouyer 		}
    603  1.175.2.2  bouyer 	} else {
    604  1.175.2.2  bouyer 		if ((wd->sc_flags & WDF_LOADED) == 0) {
    605  1.175.2.2  bouyer 			wd->sc_flags |= WDF_LOADED;
    606  1.175.2.2  bouyer 
    607  1.175.2.2  bouyer 			/* Load the physical device parameters. */
    608  1.175.2.2  bouyer 			wd_get_params(wd, AT_POLL, &wd->sc_params);
    609  1.175.2.2  bouyer 
    610  1.175.2.2  bouyer 			/* Load the partition info if not already loaded. */
    611  1.175.2.2  bouyer 			wdgetdisklabel(wd);
    612  1.175.2.2  bouyer 		}
    613  1.175.2.2  bouyer 	}
    614  1.175.2.2  bouyer 
    615  1.175.2.2  bouyer 	part = WDPART(dev);
    616  1.175.2.2  bouyer 
    617  1.175.2.2  bouyer 	/* Check that the partition exists. */
    618  1.175.2.2  bouyer 	if (part != RAW_PART &&
    619  1.175.2.2  bouyer 	    (part >= wd->sc_dk.dk_label->d_npartitions ||
    620  1.175.2.2  bouyer 	     wd->sc_dk.dk_label->d_partitions[part].p_fstype == FS_UNUSED)) {
    621  1.175.2.2  bouyer 		error = ENXIO;
    622  1.175.2.2  bouyer 		goto bad;
    623  1.175.2.2  bouyer 	}
    624  1.175.2.2  bouyer 
    625  1.175.2.2  bouyer 	/* Insure only one open at a time. */
    626  1.175.2.2  bouyer 	switch (fmt) {
    627  1.175.2.2  bouyer 	case S_IFCHR:
    628  1.175.2.2  bouyer 		wd->sc_dk.dk_copenmask |= (1 << part);
    629  1.175.2.2  bouyer 		break;
    630  1.175.2.2  bouyer 	case S_IFBLK:
    631  1.175.2.2  bouyer 		wd->sc_dk.dk_bopenmask |= (1 << part);
    632  1.175.2.2  bouyer 		break;
    633  1.175.2.2  bouyer 	}
    634  1.175.2.2  bouyer 	wd->sc_dk.dk_openmask =
    635  1.175.2.2  bouyer 	    wd->sc_dk.dk_copenmask | wd->sc_dk.dk_bopenmask;
    636  1.175.2.2  bouyer 
    637  1.175.2.2  bouyer 	wdunlock(wd);
    638  1.175.2.2  bouyer 	return 0;
    639  1.175.2.2  bouyer 
    640  1.175.2.2  bouyer bad:
    641  1.175.2.2  bouyer 	if (wd->sc_dk.dk_openmask == 0) {
    642  1.175.2.2  bouyer 	}
    643  1.175.2.2  bouyer 
    644  1.175.2.2  bouyer bad3:
    645  1.175.2.2  bouyer 	wdunlock(wd);
    646  1.175.2.2  bouyer 	return error;
    647  1.175.2.2  bouyer }
    648  1.175.2.2  bouyer 
    649  1.175.2.2  bouyer int
    650  1.175.2.2  bouyer wdclose(dev, flag, fmt, p)
    651  1.175.2.2  bouyer 	dev_t dev;
    652  1.175.2.2  bouyer 	int flag, fmt;
    653  1.175.2.2  bouyer 	struct proc *p;
    654  1.175.2.2  bouyer {
    655  1.175.2.2  bouyer 	struct wd_softc *wd = wd_cd.cd_devs[WDUNIT(dev)];
    656  1.175.2.2  bouyer 	int part = WDPART(dev);
    657  1.175.2.2  bouyer 	int error;
    658  1.175.2.2  bouyer 
    659  1.175.2.2  bouyer 	WDCDEBUG_PRINT(("wdclose\n"), DEBUG_FUNCS);
    660  1.175.2.2  bouyer 	if ((error = wdlock(wd)) != 0)
    661  1.175.2.2  bouyer 		return error;
    662  1.175.2.2  bouyer 
    663  1.175.2.2  bouyer 	switch (fmt) {
    664  1.175.2.2  bouyer 	case S_IFCHR:
    665  1.175.2.2  bouyer 		wd->sc_dk.dk_copenmask &= ~(1 << part);
    666  1.175.2.2  bouyer 		break;
    667  1.175.2.2  bouyer 	case S_IFBLK:
    668  1.175.2.2  bouyer 		wd->sc_dk.dk_bopenmask &= ~(1 << part);
    669  1.175.2.2  bouyer 		break;
    670  1.175.2.2  bouyer 	}
    671  1.175.2.2  bouyer 	wd->sc_dk.dk_openmask =
    672  1.175.2.2  bouyer 	    wd->sc_dk.dk_copenmask | wd->sc_dk.dk_bopenmask;
    673  1.175.2.2  bouyer 
    674  1.175.2.2  bouyer 	if (wd->sc_dk.dk_openmask == 0) {
    675  1.175.2.2  bouyer 		/* XXXX Must wait for I/O to complete! */
    676  1.175.2.2  bouyer 	}
    677  1.175.2.2  bouyer 
    678  1.175.2.2  bouyer 	wdunlock(wd);
    679  1.175.2.2  bouyer 	return 0;
    680  1.175.2.2  bouyer }
    681  1.175.2.2  bouyer 
    682  1.175.2.2  bouyer void
    683  1.175.2.2  bouyer wdgetdefaultlabel(wd, lp)
    684  1.175.2.2  bouyer 	struct wd_softc *wd;
    685  1.175.2.2  bouyer 	struct disklabel *lp;
    686  1.175.2.2  bouyer {
    687  1.175.2.2  bouyer 
    688  1.175.2.2  bouyer 	WDCDEBUG_PRINT(("wdgetdefaultlabel\n"), DEBUG_FUNCS);
    689  1.175.2.2  bouyer 	bzero(lp, sizeof(struct disklabel));
    690  1.175.2.2  bouyer 
    691  1.175.2.2  bouyer 	lp->d_secsize = DEV_BSIZE;
    692  1.175.2.2  bouyer 	lp->d_ntracks = wd->sc_params.atap_heads;
    693  1.175.2.2  bouyer 	lp->d_nsectors = wd->sc_params.atap_sectors;
    694  1.175.2.2  bouyer 	lp->d_ncylinders = wd->sc_params.atap_cylinders;
    695  1.175.2.2  bouyer 	lp->d_secpercyl = lp->d_ntracks * lp->d_nsectors;
    696  1.175.2.2  bouyer 
    697  1.175.2.2  bouyer 	if (strcmp(wd->sc_params.atap_model, "ST506") == 0) {
    698  1.175.2.2  bouyer 		lp->d_type = DTYPE_ST506;
    699  1.175.2.2  bouyer 		strncpy(lp->d_typename, "ST506 disk", 16);
    700  1.175.2.2  bouyer 	} else {
    701  1.175.2.2  bouyer 		lp->d_type = DTYPE_ESDI;
    702  1.175.2.2  bouyer 		strncpy(lp->d_typename, "ESDI/IDE",
    703  1.175.2.2  bouyer 		sizeof lp->d_typename);
    704  1.175.2.2  bouyer 	}
    705  1.175.2.2  bouyer 	strncpy(lp->d_packname, wd->sc_params.atap_model, 16);
    706  1.175.2.2  bouyer 	lp->d_secperunit = wd->sc_capacity;
    707  1.175.2.2  bouyer 	lp->d_rpm = 3600;
    708  1.175.2.2  bouyer 	lp->d_interleave = 1;
    709  1.175.2.2  bouyer 	lp->d_flags = 0;
    710  1.175.2.2  bouyer 
    711  1.175.2.2  bouyer 	lp->d_partitions[RAW_PART].p_offset = 0;
    712  1.175.2.2  bouyer 	lp->d_partitions[RAW_PART].p_size =
    713  1.175.2.2  bouyer 	lp->d_secperunit * (lp->d_secsize / DEV_BSIZE);
    714  1.175.2.2  bouyer 	lp->d_partitions[RAW_PART].p_fstype = FS_UNUSED;
    715  1.175.2.2  bouyer 	lp->d_npartitions = RAW_PART + 1;
    716  1.175.2.2  bouyer 
    717  1.175.2.2  bouyer 	lp->d_magic = DISKMAGIC;
    718  1.175.2.2  bouyer 	lp->d_magic2 = DISKMAGIC;
    719  1.175.2.2  bouyer 	lp->d_checksum = dkcksum(lp);
    720  1.175.2.2  bouyer }
    721  1.175.2.2  bouyer 
    722  1.175.2.2  bouyer /*
    723  1.175.2.2  bouyer  * Fabricate a default disk label, and try to read the correct one.
    724  1.175.2.2  bouyer  */
    725  1.175.2.2  bouyer void
    726  1.175.2.2  bouyer wdgetdisklabel(wd)
    727  1.175.2.2  bouyer 	struct wd_softc *wd;
    728  1.175.2.2  bouyer {
    729  1.175.2.2  bouyer 	struct disklabel *lp = wd->sc_dk.dk_label;
    730  1.175.2.2  bouyer 	char *errstring;
    731  1.175.2.2  bouyer 
    732  1.175.2.2  bouyer 	WDCDEBUG_PRINT(("wdgetdisklabel\n"), DEBUG_FUNCS);
    733  1.175.2.2  bouyer 
    734  1.175.2.2  bouyer 	bzero(wd->sc_dk.dk_cpulabel, sizeof(struct cpu_disklabel));
    735  1.175.2.2  bouyer 
    736  1.175.2.2  bouyer 	wdgetdefaultlabel(wd, lp);
    737  1.175.2.2  bouyer 
    738  1.175.2.2  bouyer 	wd->sc_badsect[0] = -1;
    739  1.175.2.2  bouyer 
    740  1.175.2.2  bouyer 	if (wd->drvp->state > RECAL)
    741  1.175.2.2  bouyer 		wd->drvp->state = RECAL;
    742  1.175.2.2  bouyer 	errstring = readdisklabel(MAKEWDDEV(0, wd->sc_dev.dv_unit, RAW_PART),
    743  1.175.2.2  bouyer 	    wdstrategy, lp, wd->sc_dk.dk_cpulabel);
    744  1.175.2.2  bouyer 	if (errstring) {
    745  1.175.2.2  bouyer 		/*
    746  1.175.2.2  bouyer 		 * This probably happened because the drive's default
    747  1.175.2.2  bouyer 		 * geometry doesn't match the DOS geometry.  We
    748  1.175.2.2  bouyer 		 * assume the DOS geometry is now in the label and try
    749  1.175.2.2  bouyer 		 * again.  XXX This is a kluge.
    750  1.175.2.2  bouyer 		 */
    751  1.175.2.2  bouyer 		if (wd->drvp->state > RECAL)
    752  1.175.2.2  bouyer 			wd->drvp->state = RECAL;
    753  1.175.2.2  bouyer 		errstring = readdisklabel(MAKEWDDEV(0, wd->sc_dev.dv_unit,
    754  1.175.2.2  bouyer 		    RAW_PART), wdstrategy, lp, wd->sc_dk.dk_cpulabel);
    755  1.175.2.2  bouyer 	}
    756  1.175.2.2  bouyer 	if (errstring) {
    757  1.175.2.2  bouyer 		printf("%s: %s\n", wd->sc_dev.dv_xname, errstring);
    758  1.175.2.2  bouyer 		return;
    759  1.175.2.2  bouyer 	}
    760  1.175.2.2  bouyer 
    761  1.175.2.2  bouyer 	if (wd->drvp->state > RECAL)
    762  1.175.2.2  bouyer 		wd->drvp->state = RECAL;
    763  1.175.2.2  bouyer #ifdef HAS_BAD144_HANDLING
    764  1.175.2.2  bouyer 	if ((lp->d_flags & D_BADSECT) != 0)
    765  1.175.2.2  bouyer 		bad144intern(wd);
    766  1.175.2.2  bouyer #endif
    767  1.175.2.2  bouyer }
    768  1.175.2.2  bouyer 
    769  1.175.2.2  bouyer int
    770  1.175.2.2  bouyer wdioctl(dev, xfer, addr, flag, p)
    771  1.175.2.2  bouyer 	dev_t dev;
    772  1.175.2.2  bouyer 	u_long xfer;
    773  1.175.2.2  bouyer 	caddr_t addr;
    774  1.175.2.2  bouyer 	int flag;
    775  1.175.2.2  bouyer 	struct proc *p;
    776  1.175.2.2  bouyer {
    777  1.175.2.2  bouyer 	struct wd_softc *wd = wd_cd.cd_devs[WDUNIT(dev)];
    778  1.175.2.2  bouyer 	int error;
    779  1.175.2.2  bouyer 
    780  1.175.2.2  bouyer 	WDCDEBUG_PRINT(("wdioctl\n"), DEBUG_FUNCS);
    781  1.175.2.2  bouyer 
    782  1.175.2.2  bouyer 	if ((wd->sc_flags & WDF_LOADED) == 0)
    783  1.175.2.2  bouyer 		return EIO;
    784  1.175.2.2  bouyer 
    785  1.175.2.2  bouyer 	switch (xfer) {
    786  1.175.2.2  bouyer #ifdef HAS_BAD144_HANDLING
    787  1.175.2.2  bouyer 	case DIOCSBAD:
    788  1.175.2.2  bouyer 		if ((flag & FWRITE) == 0)
    789  1.175.2.2  bouyer 			return EBADF;
    790  1.175.2.2  bouyer 		wd->sc_dk.dk_cpulabel->bad = *(struct dkbad *)addr;
    791  1.175.2.2  bouyer 		wd->sc_dk.dk_label->d_flags |= D_BADSECT;
    792  1.175.2.2  bouyer 		bad144intern(wd);
    793  1.175.2.2  bouyer 		return 0;
    794  1.175.2.2  bouyer #endif
    795  1.175.2.2  bouyer 
    796  1.175.2.2  bouyer 	case DIOCGDINFO:
    797  1.175.2.2  bouyer 		*(struct disklabel *)addr = *(wd->sc_dk.dk_label);
    798  1.175.2.2  bouyer 		return 0;
    799  1.175.2.2  bouyer 
    800  1.175.2.2  bouyer 	case DIOCGPART:
    801  1.175.2.2  bouyer 		((struct partinfo *)addr)->disklab = wd->sc_dk.dk_label;
    802  1.175.2.2  bouyer 		((struct partinfo *)addr)->part =
    803  1.175.2.2  bouyer 		    &wd->sc_dk.dk_label->d_partitions[WDPART(dev)];
    804  1.175.2.2  bouyer 		return 0;
    805  1.175.2.2  bouyer 
    806  1.175.2.2  bouyer 	case DIOCWDINFO:
    807  1.175.2.2  bouyer 	case DIOCSDINFO:
    808  1.175.2.2  bouyer 		if ((flag & FWRITE) == 0)
    809  1.175.2.2  bouyer 			return EBADF;
    810  1.175.2.2  bouyer 
    811  1.175.2.2  bouyer 		if ((error = wdlock(wd)) != 0)
    812  1.175.2.2  bouyer 			return error;
    813  1.175.2.2  bouyer 		wd->sc_flags |= WDF_LABELLING;
    814  1.175.2.2  bouyer 
    815  1.175.2.2  bouyer 		error = setdisklabel(wd->sc_dk.dk_label,
    816  1.175.2.2  bouyer 		    (struct disklabel *)addr, /*wd->sc_dk.dk_openmask : */0,
    817  1.175.2.2  bouyer 		    wd->sc_dk.dk_cpulabel);
    818  1.175.2.2  bouyer 		if (error == 0) {
    819  1.175.2.2  bouyer 			if (wd->drvp->state > RECAL)
    820  1.175.2.2  bouyer 				wd->drvp->state = RECAL;
    821  1.175.2.2  bouyer 			if (xfer == DIOCWDINFO)
    822  1.175.2.2  bouyer 				error = writedisklabel(WDLABELDEV(dev),
    823  1.175.2.2  bouyer 				    wdstrategy, wd->sc_dk.dk_label,
    824  1.175.2.2  bouyer 				    wd->sc_dk.dk_cpulabel);
    825  1.175.2.2  bouyer 		}
    826  1.175.2.2  bouyer 
    827  1.175.2.2  bouyer 		wd->sc_flags &= ~WDF_LABELLING;
    828  1.175.2.2  bouyer 		wdunlock(wd);
    829  1.175.2.2  bouyer 		return error;
    830  1.175.2.2  bouyer 
    831  1.175.2.2  bouyer 	case DIOCWLABEL:
    832  1.175.2.2  bouyer 		if ((flag & FWRITE) == 0)
    833  1.175.2.2  bouyer 			return EBADF;
    834  1.175.2.2  bouyer 		if (*(int *)addr)
    835  1.175.2.2  bouyer 			wd->sc_flags |= WDF_WLABEL;
    836  1.175.2.2  bouyer 		else
    837  1.175.2.2  bouyer 			wd->sc_flags &= ~WDF_WLABEL;
    838  1.175.2.2  bouyer 		return 0;
    839  1.175.2.2  bouyer 
    840  1.175.2.2  bouyer 	case DIOCGDEFLABEL:
    841  1.175.2.2  bouyer 		wdgetdefaultlabel(wd, (struct disklabel *)addr);
    842  1.175.2.2  bouyer 		return 0;
    843  1.175.2.2  bouyer 
    844  1.175.2.2  bouyer #ifdef notyet
    845  1.175.2.2  bouyer 	case DIOCWFORMAT:
    846  1.175.2.2  bouyer 		if ((flag & FWRITE) == 0)
    847  1.175.2.2  bouyer 			return EBADF;
    848  1.175.2.2  bouyer 		{
    849  1.175.2.2  bouyer 		register struct format_op *fop;
    850  1.175.2.2  bouyer 		struct iovec aiov;
    851  1.175.2.2  bouyer 		struct uio auio;
    852  1.175.2.2  bouyer 
    853  1.175.2.2  bouyer 		fop = (struct format_op *)addr;
    854  1.175.2.2  bouyer 		aiov.iov_base = fop->df_buf;
    855  1.175.2.2  bouyer 		aiov.iov_len = fop->df_count;
    856  1.175.2.2  bouyer 		auio.uio_iov = &aiov;
    857  1.175.2.2  bouyer 		auio.uio_iovcnt = 1;
    858  1.175.2.2  bouyer 		auio.uio_resid = fop->df_count;
    859  1.175.2.2  bouyer 		auio.uio_segflg = 0;
    860  1.175.2.2  bouyer 		auio.uio_offset =
    861  1.175.2.2  bouyer 			fop->df_startblk * wd->sc_dk.dk_label->d_secsize;
    862  1.175.2.2  bouyer 		auio.uio_procp = p;
    863  1.175.2.2  bouyer 		error = physio(wdformat, NULL, dev, B_WRITE, minphys,
    864  1.175.2.2  bouyer 		    &auio);
    865  1.175.2.2  bouyer 		fop->df_count -= auio.uio_resid;
    866  1.175.2.2  bouyer 		fop->df_reg[0] = wdc->sc_status;
    867  1.175.2.2  bouyer 		fop->df_reg[1] = wdc->sc_error;
    868  1.175.2.2  bouyer 		return error;
    869  1.175.2.2  bouyer 		}
    870  1.175.2.2  bouyer #endif
    871  1.175.2.2  bouyer 
    872  1.175.2.2  bouyer 	default:
    873  1.175.2.2  bouyer 		return ENOTTY;
    874  1.175.2.2  bouyer 	}
    875  1.175.2.2  bouyer 
    876  1.175.2.2  bouyer #ifdef DIAGNOSTIC
    877  1.175.2.2  bouyer 	panic("wdioctl: impossible");
    878  1.175.2.2  bouyer #endif
    879  1.175.2.2  bouyer }
    880  1.175.2.2  bouyer 
    881  1.175.2.2  bouyer #ifdef B_FORMAT
    882  1.175.2.2  bouyer int
    883  1.175.2.2  bouyer wdformat(struct buf *bp)
    884  1.175.2.2  bouyer {
    885  1.175.2.2  bouyer 
    886  1.175.2.2  bouyer 	bp->b_flags |= B_FORMAT;
    887  1.175.2.2  bouyer 	return wdstrategy(bp);
    888  1.175.2.2  bouyer }
    889  1.175.2.2  bouyer #endif
    890  1.175.2.2  bouyer 
    891  1.175.2.2  bouyer int
    892  1.175.2.2  bouyer wdsize(dev)
    893  1.175.2.2  bouyer 	dev_t dev;
    894  1.175.2.2  bouyer {
    895  1.175.2.2  bouyer 	struct wd_softc *wd;
    896  1.175.2.2  bouyer 	int part, unit, omask;
    897  1.175.2.2  bouyer 	int size;
    898  1.175.2.2  bouyer 
    899  1.175.2.2  bouyer 	WDCDEBUG_PRINT(("wdsize\n"), DEBUG_FUNCS);
    900  1.175.2.2  bouyer 
    901  1.175.2.2  bouyer 	unit = WDUNIT(dev);
    902  1.175.2.2  bouyer 	if (unit >= wd_cd.cd_ndevs)
    903  1.175.2.2  bouyer 		return (-1);
    904  1.175.2.2  bouyer 	wd = wd_cd.cd_devs[unit];
    905  1.175.2.2  bouyer 	if (wd == NULL)
    906  1.175.2.2  bouyer 		return (-1);
    907  1.175.2.2  bouyer 
    908  1.175.2.2  bouyer 	part = WDPART(dev);
    909  1.175.2.2  bouyer 	omask = wd->sc_dk.dk_openmask & (1 << part);
    910  1.175.2.2  bouyer 
    911  1.175.2.2  bouyer 	if (omask == 0 && wdopen(dev, 0, S_IFBLK, NULL) != 0)
    912  1.175.2.2  bouyer 		return (-1);
    913  1.175.2.2  bouyer 	if (wd->sc_dk.dk_label->d_partitions[part].p_fstype != FS_SWAP)
    914  1.175.2.2  bouyer 		size = -1;
    915  1.175.2.2  bouyer 	else
    916  1.175.2.2  bouyer 		size = wd->sc_dk.dk_label->d_partitions[part].p_size *
    917  1.175.2.2  bouyer 		    (wd->sc_dk.dk_label->d_secsize / DEV_BSIZE);
    918  1.175.2.2  bouyer 	if (omask == 0 && wdclose(dev, 0, S_IFBLK, NULL) != 0)
    919  1.175.2.2  bouyer 		return (-1);
    920  1.175.2.2  bouyer 	return (size);
    921  1.175.2.2  bouyer }
    922  1.175.2.2  bouyer 
    923  1.175.2.2  bouyer #ifndef __BDEVSW_DUMP_OLD_TYPE
    924  1.175.2.2  bouyer /* #define WD_DUMP_NOT_TRUSTED if you just want to watch */
    925  1.175.2.2  bouyer static int wddoingadump;
    926  1.175.2.2  bouyer static int wddumprecalibrated;
    927  1.175.2.2  bouyer 
    928  1.175.2.2  bouyer /*
    929  1.175.2.2  bouyer  * Dump core after a system crash.
    930  1.175.2.2  bouyer  */
    931  1.175.2.2  bouyer int
    932  1.175.2.2  bouyer wddump(dev, blkno, va, size)
    933  1.175.2.2  bouyer 	dev_t dev;
    934  1.175.2.2  bouyer 	daddr_t blkno;
    935  1.175.2.2  bouyer 	caddr_t va;
    936  1.175.2.2  bouyer 	size_t size;
    937  1.175.2.2  bouyer {
    938  1.175.2.2  bouyer 	struct wd_softc *wd;	/* disk unit to do the I/O */
    939  1.175.2.2  bouyer 	struct disklabel *lp;   /* disk's disklabel */
    940  1.175.2.2  bouyer 	int unit, part;
    941  1.175.2.2  bouyer 	int nblks;	/* total number of sectors left to write */
    942  1.175.2.2  bouyer 	char errbuf[256];
    943  1.175.2.2  bouyer 
    944  1.175.2.2  bouyer 	/* Check if recursive dump; if so, punt. */
    945  1.175.2.2  bouyer 	if (wddoingadump)
    946  1.175.2.2  bouyer 		return EFAULT;
    947  1.175.2.2  bouyer 	wddoingadump = 1;
    948  1.175.2.2  bouyer 
    949  1.175.2.2  bouyer 	unit = WDUNIT(dev);
    950  1.175.2.2  bouyer 	if (unit >= wd_cd.cd_ndevs)
    951  1.175.2.2  bouyer 		return ENXIO;
    952  1.175.2.2  bouyer 	wd = wd_cd.cd_devs[unit];
    953  1.175.2.2  bouyer 	if (wd == (struct wd_softc *)0)
    954  1.175.2.2  bouyer 		return ENXIO;
    955  1.175.2.2  bouyer 
    956  1.175.2.2  bouyer 	part = WDPART(dev);
    957  1.175.2.2  bouyer 
    958  1.175.2.2  bouyer 	/* Make sure it was initialized. */
    959  1.175.2.2  bouyer 	if (wd->drvp->state < READY)
    960  1.175.2.2  bouyer 		return ENXIO;
    961  1.175.2.2  bouyer 
    962  1.175.2.2  bouyer 	/* Convert to disk sectors.  Request must be a multiple of size. */
    963  1.175.2.2  bouyer 	lp = wd->sc_dk.dk_label;
    964  1.175.2.2  bouyer 	if ((size % lp->d_secsize) != 0)
    965  1.175.2.2  bouyer 		return EFAULT;
    966  1.175.2.2  bouyer 	nblks = size / lp->d_secsize;
    967  1.175.2.2  bouyer 	blkno = blkno / (lp->d_secsize / DEV_BSIZE);
    968  1.175.2.2  bouyer 
    969  1.175.2.2  bouyer 	/* Check transfer bounds against partition size. */
    970  1.175.2.2  bouyer 	if ((blkno < 0) || ((blkno + nblks) > lp->d_partitions[part].p_size))
    971  1.175.2.2  bouyer 		return EINVAL;
    972  1.175.2.2  bouyer 
    973  1.175.2.2  bouyer 	/* Offset block number to start of partition. */
    974  1.175.2.2  bouyer 	blkno += lp->d_partitions[part].p_offset;
    975  1.175.2.2  bouyer 
    976  1.175.2.2  bouyer 	/* Recalibrate, if first dump transfer. */
    977  1.175.2.2  bouyer 	if (wddumprecalibrated == 0) {
    978  1.175.2.2  bouyer 		wddumprecalibrated = 1;
    979  1.175.2.2  bouyer 		wd->drvp->state = RECAL;
    980  1.175.2.2  bouyer 	}
    981  1.175.2.2  bouyer 
    982  1.175.2.2  bouyer 	while (nblks > 0) {
    983  1.175.2.2  bouyer 		wd->sc_wdc_bio.blkno = blkno;
    984  1.175.2.2  bouyer 		wd->sc_wdc_bio.flags = ATA_POLL;
    985  1.175.2.2  bouyer 		if (wd->sc_multi == 1)
    986  1.175.2.2  bouyer 			wd->sc_wdc_bio.flags |= ATA_SINGLE;
    987  1.175.2.2  bouyer 		if (wd->sc_flags & WDF_LBA)
    988  1.175.2.2  bouyer 			wd->sc_wdc_bio.flags |= ATA_LBA;
    989  1.175.2.2  bouyer 		wd->sc_wdc_bio.bcount =
    990  1.175.2.2  bouyer 			min(nblks, wd->sc_wdc_bio.multi) * lp->d_secsize;
    991  1.175.2.2  bouyer 		wd->sc_wdc_bio.databuf = va;
    992  1.175.2.2  bouyer #ifndef WD_DUMP_NOT_TRUSTED
    993  1.175.2.2  bouyer 		switch (wdc_ata_bio(wd->drvp, &wd->sc_wdc_bio)) {
    994  1.175.2.2  bouyer 		case WDC_TRY_AGAIN:
    995  1.175.2.2  bouyer 			panic("wddump: try again");
    996  1.175.2.2  bouyer 			break;
    997  1.175.2.2  bouyer 		case WDC_QUEUED:
    998  1.175.2.2  bouyer 			panic("wddump: polled command has been queued");
    999  1.175.2.2  bouyer 			break;
   1000  1.175.2.2  bouyer 		case WDC_COMPLETE:
   1001  1.175.2.2  bouyer 			break;
   1002  1.175.2.2  bouyer 		}
   1003  1.175.2.2  bouyer 		switch(wd->sc_wdc_bio.error) {
   1004  1.175.2.2  bouyer 		case TIMEOUT:
   1005  1.175.2.2  bouyer 			printf("wddump: device timed out\n");
   1006  1.175.2.2  bouyer 			return EIO;
   1007  1.175.2.2  bouyer 		case ERR_DF:
   1008  1.175.2.2  bouyer 			printf("wddump: drive fault\n");
   1009  1.175.2.2  bouyer 			return EIO;
   1010  1.175.2.2  bouyer 		case ERR_DMA:
   1011  1.175.2.2  bouyer 			printf("wddump: DMA error\n");
   1012  1.175.2.2  bouyer 			return EIO;
   1013  1.175.2.2  bouyer 		case ERROR:
   1014  1.175.2.2  bouyer 			errbuf[0] = '\0';
   1015  1.175.2.2  bouyer 			print_wderror(wd->sc_wdc_bio.r_error, errbuf);
   1016  1.175.2.2  bouyer 			printf("wddump: %s\n", errbuf);
   1017  1.175.2.2  bouyer 			return EIO;
   1018  1.175.2.2  bouyer 		case NOERROR:
   1019  1.175.2.2  bouyer 			break;
   1020  1.175.2.2  bouyer 		default:
   1021  1.175.2.2  bouyer 			panic("wddump: unknown error type");
   1022  1.175.2.2  bouyer 		}
   1023  1.175.2.2  bouyer #else	/* WD_DUMP_NOT_TRUSTED */
   1024  1.175.2.2  bouyer 		/* Let's just talk about this first... */
   1025  1.175.2.2  bouyer 		printf("wd%d: dump addr 0x%x, cylin %d, head %d, sector %d\n",
   1026  1.175.2.2  bouyer 		    unit, va, cylin, head, sector);
   1027  1.175.2.2  bouyer 		delay(500 * 1000);	/* half a second */
   1028  1.175.2.2  bouyer #endif
   1029  1.175.2.2  bouyer 
   1030  1.175.2.2  bouyer 		/* update block count */
   1031  1.175.2.2  bouyer 		nblks -= min(nblks, wd->sc_wdc_bio.multi);
   1032  1.175.2.2  bouyer 		blkno += min(nblks, wd->sc_wdc_bio.multi);
   1033  1.175.2.2  bouyer 		va += min(nblks, wd->sc_wdc_bio.multi) * lp->d_secsize;
   1034  1.175.2.2  bouyer 	}
   1035  1.175.2.2  bouyer 
   1036  1.175.2.2  bouyer 	wddoingadump = 0;
   1037  1.175.2.2  bouyer 	return 0;
   1038  1.175.2.2  bouyer }
   1039  1.175.2.2  bouyer #else /* __BDEVSW_DUMP_NEW_TYPE */
   1040  1.175.2.2  bouyer 
   1041  1.175.2.2  bouyer 
   1042  1.175.2.2  bouyer int
   1043  1.175.2.2  bouyer wddump(dev, blkno, va, size)
   1044  1.175.2.2  bouyer 	dev_t dev;
   1045  1.175.2.2  bouyer 	daddr_t blkno;
   1046  1.175.2.2  bouyer 	caddr_t va;
   1047  1.175.2.2  bouyer 	size_t size;
   1048  1.175.2.2  bouyer {
   1049  1.175.2.2  bouyer 
   1050  1.175.2.2  bouyer 	/* Not implemented. */
   1051  1.175.2.2  bouyer 	return ENXIO;
   1052  1.175.2.2  bouyer }
   1053  1.175.2.2  bouyer #endif /* __BDEVSW_DUMP_NEW_TYPE */
   1054  1.175.2.2  bouyer 
   1055  1.175.2.2  bouyer #ifdef HAS_BAD144_HANDLING
   1056  1.175.2.2  bouyer /*
   1057  1.175.2.2  bouyer  * Internalize the bad sector table.
   1058  1.175.2.2  bouyer  */
   1059  1.175.2.2  bouyer void
   1060  1.175.2.2  bouyer bad144intern(wd)
   1061  1.175.2.2  bouyer 	struct wd_softc *wd;
   1062  1.175.2.2  bouyer {
   1063  1.175.2.2  bouyer 	struct dkbad *bt = &wd->sc_dk.dk_cpulabel->bad;
   1064  1.175.2.2  bouyer 	struct disklabel *lp = wd->sc_dk.dk_label;
   1065  1.175.2.2  bouyer 	int i = 0;
   1066  1.175.2.2  bouyer 
   1067  1.175.2.2  bouyer 	WDCDEBUG_PRINT(("bad144intern\n"), DEBUG_FUNCS | DEBUG_XFERS);
   1068  1.175.2.2  bouyer 
   1069  1.175.2.2  bouyer 	for (; i < NBT_BAD; i++) {
   1070  1.175.2.2  bouyer 		if (bt->bt_bad[i].bt_cyl == 0xffff)
   1071  1.175.2.2  bouyer 			break;
   1072  1.175.2.2  bouyer 		wd->sc_badsect[i] =
   1073  1.175.2.2  bouyer 		    bt->bt_bad[i].bt_cyl * lp->d_secpercyl +
   1074  1.175.2.2  bouyer 		    (bt->bt_bad[i].bt_trksec >> 8) * lp->d_nsectors +
   1075  1.175.2.2  bouyer 		    (bt->bt_bad[i].bt_trksec & 0xff);
   1076  1.175.2.2  bouyer 	}
   1077  1.175.2.2  bouyer 	for (; i < NBT_BAD+1; i++)
   1078  1.175.2.2  bouyer 		wd->sc_badsect[i] = -1;
   1079  1.175.2.2  bouyer }
   1080  1.175.2.2  bouyer #endif
   1081  1.175.2.2  bouyer 
   1082  1.175.2.2  bouyer void
   1083  1.175.2.2  bouyer print_wderror(errno, buf)
   1084  1.175.2.2  bouyer 	int errno;
   1085  1.175.2.2  bouyer 	char *buf;
   1086  1.175.2.2  bouyer {
   1087  1.175.2.2  bouyer 	static char *errstr[] = {"address mark not found", "track 0 not found",
   1088  1.175.2.2  bouyer 	"aborted command", "media change requested", "id not found",
   1089  1.175.2.2  bouyer 	"media changed", "uncorrectable data error", "bad block detected"};
   1090  1.175.2.2  bouyer 	int i;
   1091  1.175.2.2  bouyer 	char *sep = "";
   1092  1.175.2.2  bouyer 
   1093  1.175.2.2  bouyer 	if (errno == 0) {
   1094  1.175.2.2  bouyer 		sprintf(buf, "error not notified");
   1095  1.175.2.2  bouyer 	}
   1096  1.175.2.2  bouyer 
   1097  1.175.2.2  bouyer 	for (i = 0; i < 8; i++) {
   1098  1.175.2.2  bouyer 		if (errno & (1 << i)) {
   1099  1.175.2.2  bouyer 			buf += sprintf(buf, "%s %s", sep, errstr[i]);
   1100  1.175.2.2  bouyer 			sep = ",";
   1101  1.175.2.2  bouyer 		}
   1102  1.175.2.2  bouyer 	}
   1103  1.175.2.2  bouyer }
   1104  1.175.2.2  bouyer 
   1105  1.175.2.2  bouyer int
   1106  1.175.2.2  bouyer wd_get_params(wd, flags, params)
   1107  1.175.2.2  bouyer 	struct wd_softc *wd;
   1108  1.175.2.2  bouyer 	u_int8_t flags;
   1109  1.175.2.2  bouyer 	struct ataparams *params;
   1110  1.175.2.2  bouyer {
   1111  1.175.2.2  bouyer 	switch (ata_get_params(wd->drvp, flags, params)) {
   1112  1.175.2.2  bouyer 	case CMD_AGAIN:
   1113  1.175.2.2  bouyer 		return 1;
   1114  1.175.2.2  bouyer 	case CMD_ERR:
   1115  1.175.2.2  bouyer 		/*
   1116  1.175.2.2  bouyer 		 * We `know' there's a drive here; just assume it's old.
   1117  1.175.2.2  bouyer 		 * This geometry is only used to read the MBR and print a
   1118  1.175.2.2  bouyer 		 * (false) attach message.
   1119  1.175.2.2  bouyer 		 */
   1120  1.175.2.2  bouyer 		strncpy(params->atap_model, "ST506",
   1121  1.175.2.2  bouyer 		    sizeof params->atap_model);
   1122  1.175.2.2  bouyer 		params->atap_config = ATA_CFG_FIXED;
   1123  1.175.2.2  bouyer 		params->atap_cylinders = 1024;
   1124  1.175.2.2  bouyer 		params->atap_heads = 8;
   1125  1.175.2.2  bouyer 		params->atap_sectors = 17;
   1126  1.175.2.2  bouyer 		params->atap_multi = 1;
   1127  1.175.2.2  bouyer 		params->atap_capabilities1 = params->atap_capabilities2 = 0;
   1128  1.175.2.2  bouyer 		return 0;
   1129  1.175.2.2  bouyer 	case CMD_OK:
   1130  1.175.2.2  bouyer 		return 0;
   1131  1.175.2.2  bouyer 	default:
   1132  1.175.2.2  bouyer 		panic("wd_get_params: bad return code from ata_get_params");
   1133  1.175.2.2  bouyer 		/* NOTREACHED */
   1134  1.175.2.2  bouyer 	}
   1135  1.175.2.2  bouyer }
   1136