1994-11-23 04:35:43 +03:00
|
|
|
/* $NetBSD: wd.c,v 1.116 1994/11/23 01:35:43 mycroft Exp $ */
|
1994-10-27 07:14:23 +03:00
|
|
|
|
1993-05-04 12:27:29 +04:00
|
|
|
/*
|
1994-11-22 12:33:59 +03:00
|
|
|
* Copyright (c) 1994 Charles Hannum. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by Charles Hannum.
|
|
|
|
* 4. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
1993-03-21 12:45:37 +03:00
|
|
|
* Copyright (c) 1990 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* William Jolitz.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1994-10-27 07:14:23 +03:00
|
|
|
* @(#)wd.c 7.2 (Berkeley) 5/9/91
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
1994-02-26 20:10:12 +03:00
|
|
|
#define INSTRUMENT /* instrumentation stuff by Brad Parker */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-12-20 12:05:17 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/dkbad.h>
|
|
|
|
#include <sys/systm.h>
|
1994-02-25 21:30:37 +03:00
|
|
|
#include <sys/kernel.h>
|
1993-12-20 12:05:17 +03:00
|
|
|
#include <sys/conf.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/buf.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <sys/malloc.h>
|
1994-03-10 08:18:33 +03:00
|
|
|
#include <sys/device.h>
|
1994-10-20 17:08:07 +03:00
|
|
|
#include <sys/disklabel.h>
|
|
|
|
#include <sys/disk.h>
|
1993-12-20 12:05:17 +03:00
|
|
|
#include <sys/syslog.h>
|
1993-04-06 14:06:28 +04:00
|
|
|
#ifdef INSTRUMENT
|
1993-12-20 12:05:17 +03:00
|
|
|
#include <sys/dkstat.h>
|
1993-04-06 14:06:28 +04:00
|
|
|
#endif
|
1993-12-20 12:05:17 +03:00
|
|
|
|
|
|
|
#include <vm/vm.h>
|
|
|
|
|
|
|
|
#include <machine/cpu.h>
|
|
|
|
#include <machine/pio.h>
|
|
|
|
|
1994-03-29 08:35:37 +04:00
|
|
|
#include <i386/isa/isavar.h>
|
1993-12-20 12:05:17 +03:00
|
|
|
#include <i386/isa/wdreg.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-02-25 21:08:21 +03:00
|
|
|
#define WDCNDELAY 100000 /* delay = 100us; so 10s for a controller state change */
|
|
|
|
#define WDCDELAY 100
|
1994-10-20 21:37:45 +03:00
|
|
|
|
|
|
|
#define WAITTIME (4 * hz) /* time to wait for a completion */
|
|
|
|
#define RECOVERYTIME (hz / 2) /* time to recover from an error */
|
1993-07-05 07:20:57 +04:00
|
|
|
|
1994-09-13 00:29:08 +04:00
|
|
|
#if 0
|
1994-03-10 08:18:33 +03:00
|
|
|
/* If you enable this, it will report any delays more than 100us * N long. */
|
1994-03-12 02:29:12 +03:00
|
|
|
#define WDCNDELAY_DEBUG 10
|
1994-03-03 00:42:31 +03:00
|
|
|
#endif
|
1993-07-07 09:50:35 +04:00
|
|
|
|
1993-07-06 04:42:43 +04:00
|
|
|
#define WDIORETRIES 5 /* number of retries before giving up */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-10-14 21:26:22 +03:00
|
|
|
#define WDUNIT(dev) DISKUNIT(dev)
|
|
|
|
#define WDPART(dev) DISKPART(dev)
|
|
|
|
#define MAKEWDDEV(maj, unit, part) MAKEDISKDEV(maj, unit, part)
|
|
|
|
|
|
|
|
#define WDLABELDEV(dev) (MAKEWDDEV(major(dev), WDUNIT(dev), RAW_PART))
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
#define b_cylin b_resid /* cylinder number for doing IO to */
|
|
|
|
/* shares an entry in the buf struct */
|
|
|
|
|
|
|
|
/*
|
1994-02-25 19:40:47 +03:00
|
|
|
* Drive status.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1994-03-10 08:18:33 +03:00
|
|
|
struct wd_softc {
|
|
|
|
struct device sc_dev;
|
1994-10-20 16:44:46 +03:00
|
|
|
struct dkdevice sc_dk;
|
1994-03-10 08:18:33 +03:00
|
|
|
|
|
|
|
long sc_bcount; /* byte count left */
|
|
|
|
short sc_skip; /* blocks already transferred */
|
1994-03-29 08:35:37 +04:00
|
|
|
char sc_drive; /* physical unit number */
|
1994-03-10 08:18:33 +03:00
|
|
|
char sc_state; /* control state */
|
1994-11-22 12:33:59 +03:00
|
|
|
#define RECAL 0 /* recalibrate */
|
|
|
|
#define RECAL_WAIT 1 /* done recalibrating */
|
|
|
|
#define GEOMETRY 2 /* upload geometry */
|
|
|
|
#define GEOMETRY_WAIT 3 /* done uploading geometry */
|
|
|
|
#define MULTIMODE 4 /* set multiple mode */
|
|
|
|
#define MULTIMODE_WAIT 5 /* done setting multiple mode */
|
|
|
|
#define OPEN 6 /* done with open */
|
|
|
|
char sc_mode; /* transfer mode */
|
|
|
|
#define WDM_PIOSINGLE 0 /* single-sector PIO */
|
|
|
|
#define WDM_PIOMULTI 1 /* multi-sector PIO */
|
|
|
|
#define WDM_DMA 2 /* DMA */
|
|
|
|
u_char sc_multiple; /* multiple for WDM_PIOMULTI */
|
1994-10-20 16:44:46 +03:00
|
|
|
u_char sc_flags; /* drive characteistics found */
|
1994-11-21 01:36:43 +03:00
|
|
|
#define WDF_LOCKED 0x01
|
|
|
|
#define WDF_WANTED 0x02
|
|
|
|
#define WDF_LOADED 0x04
|
1994-11-22 12:33:59 +03:00
|
|
|
#define WDF_BSDLABEL 0x08 /* has a BSD disk label */
|
|
|
|
#define WDF_WLABEL 0x10 /* label is writable */
|
1994-11-22 13:20:16 +03:00
|
|
|
#define WDF_32BIT 0x20 /* can do 32-bit transfer */
|
1994-04-20 11:23:52 +04:00
|
|
|
TAILQ_ENTRY(wd_softc) sc_drivechain;
|
1994-03-10 08:18:33 +03:00
|
|
|
struct buf sc_q;
|
|
|
|
struct wdparams sc_params; /* ESDI/IDE drive/controller parameters */
|
|
|
|
long sc_badsect[127]; /* 126 plus trailing -1 marker */
|
1994-03-29 08:35:37 +04:00
|
|
|
};
|
1994-03-10 08:18:33 +03:00
|
|
|
|
|
|
|
struct wdc_softc {
|
|
|
|
struct device sc_dev;
|
1994-04-07 10:48:19 +04:00
|
|
|
struct intrhand sc_ih;
|
1994-03-10 08:18:33 +03:00
|
|
|
|
1994-03-12 02:29:12 +03:00
|
|
|
u_char sc_flags;
|
1994-11-22 12:33:59 +03:00
|
|
|
#define WDCF_ACTIVE 0x01 /* controller is active */
|
|
|
|
#define WDCF_SINGLE 0x02 /* sector at a time mode */
|
|
|
|
#define WDCF_ERROR 0x04 /* processing a disk error */
|
1994-03-10 08:18:33 +03:00
|
|
|
u_char sc_status; /* copy of status register */
|
|
|
|
u_char sc_error; /* copy of error register */
|
1994-11-22 12:33:59 +03:00
|
|
|
int sc_iobase; /* I/O port base */
|
|
|
|
int sc_drq; /* DMA channel */
|
1994-04-20 11:23:52 +04:00
|
|
|
int sc_errors; /* count of errors during current transfer */
|
1994-11-22 12:33:59 +03:00
|
|
|
int sc_nblks; /* number of blocks currently transferring */
|
1994-04-20 11:23:52 +04:00
|
|
|
TAILQ_HEAD(drivehead, wd_softc) sc_drives;
|
1994-03-29 08:35:37 +04:00
|
|
|
};
|
1994-03-10 08:18:33 +03:00
|
|
|
|
1994-11-04 01:55:58 +03:00
|
|
|
int wdcprobe __P((struct device *, void *, void *));
|
|
|
|
void wdcattach __P((struct device *, struct device *, void *));
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-03-29 08:35:37 +04:00
|
|
|
struct cfdriver wdccd = {
|
1994-11-05 02:18:06 +03:00
|
|
|
NULL, "wdc", wdcprobe, wdcattach, DV_DULL, sizeof(struct wd_softc)
|
1993-03-21 12:45:37 +03:00
|
|
|
};
|
|
|
|
|
1994-11-04 01:55:58 +03:00
|
|
|
int wdprobe __P((struct device *, void *, void *));
|
|
|
|
void wdattach __P((struct device *, struct device *, void *));
|
|
|
|
|
1994-03-29 08:35:37 +04:00
|
|
|
struct cfdriver wdcd = {
|
|
|
|
NULL, "wd", wdprobe, wdattach, DV_DISK, sizeof(struct wd_softc)
|
1994-03-10 22:57:20 +03:00
|
|
|
};
|
1994-11-21 01:36:43 +03:00
|
|
|
|
|
|
|
void wdgetdisklabel __P((struct wd_softc *));
|
|
|
|
int wd_get_parms __P((struct wd_softc *));
|
|
|
|
void wdstrategy __P((struct buf *));
|
|
|
|
void wdstart __P((struct wd_softc *));
|
|
|
|
|
1994-11-04 01:55:58 +03:00
|
|
|
struct dkdriver wddkdriver = { wdstrategy };
|
1994-03-10 22:57:20 +03:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
void wdfinish __P((struct wd_softc *, struct buf *));
|
1994-11-04 02:23:38 +03:00
|
|
|
int wdcintr __P((struct wdc_softc *));
|
1994-03-10 08:18:33 +03:00
|
|
|
static void wdcstart __P((struct wdc_softc *));
|
|
|
|
static int wdcommand __P((struct wd_softc *, int, int, int, int, int));
|
1994-11-05 02:18:06 +03:00
|
|
|
static int wdcommandshort __P((struct wdc_softc *, int, int));
|
1994-03-12 02:29:12 +03:00
|
|
|
static int wdcontrol __P((struct wd_softc *));
|
1994-03-10 08:18:33 +03:00
|
|
|
static int wdsetctlr __P((struct wd_softc *));
|
|
|
|
static void bad144intern __P((struct wd_softc *));
|
|
|
|
static int wdcreset __P((struct wdc_softc *));
|
1994-05-05 09:35:42 +04:00
|
|
|
static void wdcrestart __P((void *arg));
|
1994-03-10 08:18:33 +03:00
|
|
|
static void wdcunwedge __P((struct wdc_softc *));
|
1994-05-05 09:35:42 +04:00
|
|
|
static void wdctimeout __P((void *arg));
|
1994-03-10 08:18:33 +03:00
|
|
|
static void wderror __P((void *, struct buf *, char *));
|
|
|
|
int wdcwait __P((struct wdc_softc *, int));
|
1994-08-15 12:22:20 +04:00
|
|
|
/* ST506 spec says that if READY or SEEKCMPLT go off, then the read or write
|
|
|
|
command is aborted. */
|
1994-11-22 08:34:49 +03:00
|
|
|
#define wait_for_drq(d) wdcwait(d, WDCS_DRDY | WDCS_DSC | WDCS_DRQ)
|
|
|
|
#define wait_for_ready(d) wdcwait(d, WDCS_DRDY | WDCS_DSC)
|
1994-03-10 08:18:33 +03:00
|
|
|
#define wait_for_unbusy(d) wdcwait(d, 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Probe for controller.
|
|
|
|
*/
|
|
|
|
int
|
1994-11-04 01:55:58 +03:00
|
|
|
wdcprobe(parent, match, aux)
|
|
|
|
struct device *parent;
|
|
|
|
void *match, *aux;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-11-04 01:55:58 +03:00
|
|
|
struct wdc_softc *wdc = match;
|
1994-03-29 08:35:37 +04:00
|
|
|
struct isa_attach_args *ia = aux;
|
1994-11-19 00:57:40 +03:00
|
|
|
int iobase;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-03-29 08:35:37 +04:00
|
|
|
wdc->sc_iobase = iobase = ia->ia_iobase;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Check if we have registers that work. */
|
|
|
|
outb(iobase+wd_error, 0x5a); /* Error register not writable. */
|
|
|
|
outb(iobase+wd_cyl_lo, 0xa5); /* But all of cyllo are implemented. */
|
|
|
|
if (inb(iobase+wd_error) == 0x5a || inb(iobase+wd_cyl_lo) != 0xa5)
|
|
|
|
return 0;
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
if (wdcreset(wdc) != 0) {
|
|
|
|
delay(500000);
|
|
|
|
if (wdcreset(wdc) != 0)
|
|
|
|
return 0;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-11-05 02:18:06 +03:00
|
|
|
outb(iobase+wd_sdh, WDSD_IBM | 0);
|
|
|
|
|
|
|
|
/* Wait for controller to become ready. */
|
|
|
|
if (wait_for_unbusy(wdc) < 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Send command. */
|
|
|
|
outb(iobase+wd_command, WDCC_DIAGNOSE);
|
|
|
|
|
|
|
|
/* Wait for command to complete. */
|
|
|
|
if (wait_for_unbusy(wdc) != 0)
|
|
|
|
return 0;
|
|
|
|
|
1994-03-29 08:35:37 +04:00
|
|
|
ia->ia_iosize = 8;
|
|
|
|
ia->ia_msize = 0;
|
|
|
|
return 1;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1994-03-29 08:35:37 +04:00
|
|
|
struct wdc_attach_args {
|
|
|
|
int wa_drive;
|
|
|
|
};
|
|
|
|
|
1994-03-10 23:05:30 +03:00
|
|
|
int
|
1994-03-29 08:35:37 +04:00
|
|
|
wdprint(aux, wdc)
|
|
|
|
void *aux;
|
|
|
|
char *wdc;
|
1994-03-10 23:05:30 +03:00
|
|
|
{
|
1994-03-29 08:35:37 +04:00
|
|
|
struct wdc_attach_args *wa = aux;
|
1994-03-11 01:30:06 +03:00
|
|
|
|
1994-03-29 08:35:37 +04:00
|
|
|
if (!wdc)
|
|
|
|
printf(" drive %d", wa->wa_drive);
|
|
|
|
return QUIET;
|
1994-03-10 23:05:30 +03:00
|
|
|
}
|
|
|
|
|
1994-03-29 08:35:37 +04:00
|
|
|
void
|
|
|
|
wdcattach(parent, self, aux)
|
|
|
|
struct device *parent, *self;
|
|
|
|
void *aux;
|
1994-03-10 23:05:30 +03:00
|
|
|
{
|
1994-03-29 08:35:37 +04:00
|
|
|
struct wdc_softc *wdc = (void *)self;
|
1994-04-07 10:48:19 +04:00
|
|
|
struct isa_attach_args *ia = aux;
|
1994-03-29 08:35:37 +04:00
|
|
|
struct wdc_attach_args wa;
|
1994-03-11 00:52:07 +03:00
|
|
|
|
1994-11-04 01:55:58 +03:00
|
|
|
TAILQ_INIT(&wdc->sc_drives);
|
1994-11-22 12:33:59 +03:00
|
|
|
wdc->sc_drq = ia->ia_drq;
|
1994-03-29 08:35:37 +04:00
|
|
|
|
1994-11-04 01:55:58 +03:00
|
|
|
printf("\n");
|
1994-04-07 10:48:19 +04:00
|
|
|
|
|
|
|
wdc->sc_ih.ih_fun = wdcintr;
|
|
|
|
wdc->sc_ih.ih_arg = wdc;
|
|
|
|
wdc->sc_ih.ih_level = IPL_BIO;
|
|
|
|
intr_establish(ia->ia_irq, &wdc->sc_ih);
|
1994-11-04 01:55:58 +03:00
|
|
|
|
|
|
|
for (wa.wa_drive = 0; wa.wa_drive < 2; wa.wa_drive++)
|
|
|
|
(void)config_found(self, (void *)&wa, wdprint);
|
1994-03-10 23:05:30 +03:00
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
int
|
1994-11-04 01:55:58 +03:00
|
|
|
wdprobe(parent, match, aux)
|
|
|
|
struct device *parent;
|
|
|
|
void *match, *aux;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-11-05 02:18:06 +03:00
|
|
|
struct wdc_softc *wdc = (void *)parent;
|
|
|
|
struct cfdata *cf = match;
|
1994-03-29 08:35:37 +04:00
|
|
|
struct wdc_attach_args *wa = aux;
|
|
|
|
int drive = wa->wa_drive;
|
|
|
|
|
1994-11-04 01:55:58 +03:00
|
|
|
if (cf->cf_loc[0] != -1 && cf->cf_loc[0] != drive)
|
1993-05-04 12:27:29 +04:00
|
|
|
return 0;
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-11-22 08:34:49 +03:00
|
|
|
if (wdcommandshort(wdc, drive, WDCC_RECAL) != 0 ||
|
1994-11-05 02:18:06 +03:00
|
|
|
wait_for_ready(wdc) != 0)
|
1994-03-29 08:35:37 +04:00
|
|
|
return 0;
|
1994-03-10 08:18:33 +03:00
|
|
|
|
1994-03-29 08:35:37 +04:00
|
|
|
return 1;
|
|
|
|
}
|
1994-03-10 08:18:33 +03:00
|
|
|
|
1994-03-29 08:35:37 +04:00
|
|
|
void
|
|
|
|
wdattach(parent, self, aux)
|
|
|
|
struct device *parent, *self;
|
|
|
|
void *aux;
|
|
|
|
{
|
|
|
|
struct wd_softc *wd = (void *)self;
|
1994-11-22 12:33:59 +03:00
|
|
|
struct wdc_softc *wdc = (void *)parent;
|
1994-11-05 02:30:15 +03:00
|
|
|
struct wdc_attach_args *wa = aux;
|
1994-03-29 08:35:37 +04:00
|
|
|
int i, blank;
|
1994-03-04 07:15:24 +03:00
|
|
|
|
1994-11-05 02:30:15 +03:00
|
|
|
wd->sc_drive = wa->wa_drive;
|
|
|
|
|
1994-11-21 01:36:43 +03:00
|
|
|
wd_get_parms(wd);
|
|
|
|
printf(": %dMB, %d cyl, %d head, %d sec, %d bytes/sec <",
|
1994-11-22 08:34:49 +03:00
|
|
|
wd->sc_params.wdp_cylinders *
|
1994-11-21 01:36:43 +03:00
|
|
|
(wd->sc_params.wdp_heads * wd->sc_params.wdp_sectors) /
|
|
|
|
(1048576 / DEV_BSIZE),
|
1994-11-22 08:34:49 +03:00
|
|
|
wd->sc_params.wdp_cylinders,
|
1994-11-21 01:36:43 +03:00
|
|
|
wd->sc_params.wdp_heads,
|
|
|
|
wd->sc_params.wdp_sectors,
|
|
|
|
DEV_BSIZE);
|
1994-03-10 08:18:33 +03:00
|
|
|
for (i = blank = 0; i < sizeof(wd->sc_params.wdp_model); i++) {
|
|
|
|
char c = wd->sc_params.wdp_model[i];
|
1994-03-04 07:15:24 +03:00
|
|
|
if (c == '\0')
|
|
|
|
break;
|
|
|
|
if (c != ' ') {
|
|
|
|
if (blank)
|
|
|
|
printf(" %c", c);
|
|
|
|
else
|
|
|
|
printf("%c", c);
|
|
|
|
blank = 0;
|
|
|
|
} else
|
|
|
|
blank = 1;
|
|
|
|
}
|
|
|
|
printf(">\n");
|
1994-11-22 12:33:59 +03:00
|
|
|
|
|
|
|
if ((wd->sc_params.wdp_capabilities & WD_CAP_DMA) != 0 &&
|
|
|
|
wdc->sc_drq != DRQUNK) {
|
|
|
|
wd->sc_mode = WDM_DMA;
|
|
|
|
} else if (wd->sc_params.wdp_maxmulti > 1) {
|
|
|
|
wd->sc_mode = WDM_PIOMULTI;
|
1994-11-22 13:20:16 +03:00
|
|
|
wd->sc_multiple = min(wd->sc_params.wdp_maxmulti, 16);
|
1994-11-22 12:33:59 +03:00
|
|
|
} else {
|
|
|
|
wd->sc_mode = WDM_PIOSINGLE;
|
|
|
|
wd->sc_multiple = 1;
|
|
|
|
}
|
|
|
|
|
1994-11-23 04:35:43 +03:00
|
|
|
printf("%s: using", wd->sc_dev.dv_xname);
|
1994-11-22 12:33:59 +03:00
|
|
|
if (wd->sc_mode == WDM_DMA)
|
1994-11-23 04:35:43 +03:00
|
|
|
printf(" dma transfers,");
|
1994-11-22 12:33:59 +03:00
|
|
|
else
|
1994-11-23 04:35:43 +03:00
|
|
|
printf(" %d-sector %d-bit pio transfers,",
|
1994-11-22 13:20:16 +03:00
|
|
|
wd->sc_multiple, (wd->sc_flags & WDF_32BIT) == 0 ? 16 : 32);
|
1994-11-23 04:35:43 +03:00
|
|
|
if ((wd->sc_params.wdp_capabilities & WD_CAP_LBA) != 0)
|
|
|
|
printf(" lba addressing\n");
|
|
|
|
else
|
|
|
|
printf(" chs addressing\n");
|
1994-11-22 12:33:59 +03:00
|
|
|
|
1994-11-04 01:55:58 +03:00
|
|
|
wd->sc_dk.dk_driver = &wddkdriver;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
/*
|
|
|
|
* Read/write routine for a buffer. Finds the proper unit, range checks
|
|
|
|
* arguments, and schedules the transfer. Does not wait for the transfer to
|
|
|
|
* complete. Multi-page transfers are supported. All I/O requests must be a
|
|
|
|
* multiple of a sector in length.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1994-03-10 08:18:33 +03:00
|
|
|
void
|
1994-03-04 06:43:48 +03:00
|
|
|
wdstrategy(bp)
|
|
|
|
struct buf *bp;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-03-10 08:18:33 +03:00
|
|
|
struct wd_softc *wd; /* disk unit to do the IO */
|
1994-11-21 01:36:43 +03:00
|
|
|
int unit = WDUNIT(bp->b_dev);
|
1994-02-25 19:40:47 +03:00
|
|
|
int s;
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Valid unit, controller, and request? */
|
1994-11-21 01:36:43 +03:00
|
|
|
if (unit >= wdcd.cd_ndevs ||
|
|
|
|
(wd = wdcd.cd_devs[unit]) == 0 ||
|
1994-07-22 03:44:16 +04:00
|
|
|
bp->b_blkno < 0 ||
|
|
|
|
(bp->b_bcount % DEV_BSIZE) != 0 ||
|
|
|
|
(bp->b_bcount / DEV_BSIZE) >= (1 << NBBY)) {
|
1993-03-21 12:45:37 +03:00
|
|
|
bp->b_error = EINVAL;
|
1994-10-20 16:44:46 +03:00
|
|
|
goto bad;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-11-21 01:36:43 +03:00
|
|
|
#if 0
|
1994-03-10 08:18:33 +03:00
|
|
|
/* "Soft" write protect check. */
|
|
|
|
if ((wd->sc_flags & WDF_WRITEPROT) && (bp->b_flags & B_READ) == 0) {
|
1993-03-21 12:45:37 +03:00
|
|
|
bp->b_error = EROFS;
|
1994-10-20 16:44:46 +03:00
|
|
|
goto bad;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-11-21 01:36:43 +03:00
|
|
|
#endif
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-10-20 16:44:46 +03:00
|
|
|
/* If it's a null transfer, return immediately. */
|
|
|
|
if (bp->b_bcount == 0)
|
|
|
|
goto done;
|
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Have partitions and want to use them? */
|
1994-10-20 16:44:46 +03:00
|
|
|
if (WDPART(bp->b_dev) != RAW_PART) {
|
|
|
|
if ((wd->sc_flags & WDF_BSDLABEL) == 0) {
|
|
|
|
bp->b_error = EIO;
|
|
|
|
goto bad;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-03-10 08:18:33 +03:00
|
|
|
* Do bounds checking, adjust transfer. if error, process.
|
|
|
|
* If end of partition, just return.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1994-10-20 16:44:46 +03:00
|
|
|
if (bounds_check_with_label(bp, &wd->sc_dk.dk_label,
|
|
|
|
(wd->sc_flags & WDF_WLABEL) != 0) <= 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
goto done;
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Otherwise, process transfer request. */
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Don't bother doing rotational optimization. */
|
1994-02-25 19:43:48 +03:00
|
|
|
bp->b_cylin = 0;
|
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Queue transfer on drive, activate drive and controller if idle. */
|
1993-03-21 12:45:37 +03:00
|
|
|
s = splbio();
|
1994-11-22 12:33:59 +03:00
|
|
|
disksort(&wd->sc_q, bp);
|
1994-04-20 11:23:52 +04:00
|
|
|
if (!wd->sc_q.b_active)
|
1994-03-10 08:18:33 +03:00
|
|
|
wdstart(wd); /* Start drive. */
|
1994-04-20 11:23:52 +04:00
|
|
|
#ifdef DIAGNOSTIC
|
1994-04-25 07:16:03 +04:00
|
|
|
else {
|
|
|
|
struct wdc_softc *wdc = (void *)wd->sc_dev.dv_parent;
|
|
|
|
if ((wdc->sc_flags & WDCF_ACTIVE) == 0) {
|
|
|
|
printf("wdstrategy: controller inactive\n");
|
|
|
|
wdcstart(wdc);
|
|
|
|
}
|
1994-04-20 11:23:52 +04:00
|
|
|
}
|
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
splx(s);
|
1994-03-10 08:18:33 +03:00
|
|
|
return;
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-10-20 16:44:46 +03:00
|
|
|
bad:
|
|
|
|
bp->b_flags |= B_ERROR;
|
1993-03-21 12:45:37 +03:00
|
|
|
done:
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Toss transfer; we're done early. */
|
1993-03-21 12:45:37 +03:00
|
|
|
biodone(bp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1994-03-10 08:18:33 +03:00
|
|
|
* Routine to queue a command to the controller. The unit's request is linked
|
|
|
|
* into the active list for the controller. If the controller is idle, the
|
|
|
|
* transfer is started.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1994-11-21 01:36:43 +03:00
|
|
|
void
|
1994-03-10 08:18:33 +03:00
|
|
|
wdstart(wd)
|
|
|
|
struct wd_softc *wd;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-04-20 11:23:52 +04:00
|
|
|
struct wdc_softc *wdc = (void *)wd->sc_dev.dv_parent;
|
|
|
|
int active = wdc->sc_drives.tqh_first != 0;
|
1994-03-10 08:18:33 +03:00
|
|
|
|
|
|
|
/* Link onto controller queue. */
|
1994-04-20 11:23:52 +04:00
|
|
|
wd->sc_q.b_active = 1;
|
|
|
|
TAILQ_INSERT_TAIL(&wdc->sc_drives, wd, sc_drivechain);
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-04-20 11:23:52 +04:00
|
|
|
/* If controller not already active, start it. */
|
|
|
|
if (!active)
|
|
|
|
wdcstart(wdc);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
void
|
|
|
|
wdfinish(wd, bp)
|
|
|
|
struct wd_softc *wd;
|
|
|
|
struct buf *bp;
|
|
|
|
{
|
|
|
|
struct wdc_softc *wdc = (void *)wd->sc_dev.dv_parent;
|
|
|
|
|
|
|
|
#ifdef INSTRUMENT
|
1994-10-20 19:19:08 +03:00
|
|
|
dk_busy &= ~(1 << wd->sc_dev.dv_unit);
|
1994-03-10 08:18:33 +03:00
|
|
|
#endif
|
1994-03-12 02:29:12 +03:00
|
|
|
wdc->sc_flags &= ~(WDCF_SINGLE | WDCF_ERROR);
|
1994-04-20 11:23:52 +04:00
|
|
|
wdc->sc_errors = 0;
|
1994-03-10 08:18:33 +03:00
|
|
|
/*
|
1994-11-22 12:33:59 +03:00
|
|
|
* Move this drive to the end of the queue to give others a `fair'
|
|
|
|
* chance.
|
1994-03-10 08:18:33 +03:00
|
|
|
*/
|
1994-11-22 12:33:59 +03:00
|
|
|
if (wd->sc_drivechain.tqe_next) {
|
|
|
|
TAILQ_REMOVE(&wdc->sc_drives, wd, sc_drivechain);
|
|
|
|
if (bp->b_actf) {
|
|
|
|
TAILQ_INSERT_TAIL(&wdc->sc_drives, wd,
|
|
|
|
sc_drivechain);
|
|
|
|
} else
|
|
|
|
wd->sc_q.b_active = 0;
|
1994-03-10 08:18:33 +03:00
|
|
|
}
|
|
|
|
bp->b_resid = wd->sc_bcount;
|
|
|
|
wd->sc_skip = 0;
|
|
|
|
wd->sc_q.b_actf = bp->b_actf;
|
|
|
|
biodone(bp);
|
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-03-10 08:18:33 +03:00
|
|
|
* Controller startup routine. This does the calculation, and starts a
|
|
|
|
* single-sector read or write operation. Called to start a transfer, or from
|
|
|
|
* the interrupt routine to continue a multi-sector transfer.
|
1993-03-21 12:45:37 +03:00
|
|
|
* RESTRICTIONS:
|
|
|
|
* 1. The transfer length must be an exact multiple of the sector size.
|
|
|
|
*/
|
|
|
|
static void
|
1994-03-10 08:18:33 +03:00
|
|
|
wdcstart(wdc)
|
|
|
|
struct wdc_softc *wdc;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-03-10 08:18:33 +03:00
|
|
|
struct wd_softc *wd; /* disk unit for IO */
|
|
|
|
struct buf *bp;
|
1994-11-22 12:33:59 +03:00
|
|
|
int nblks;
|
1994-03-10 08:18:33 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
loop:
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Is there a drive for the controller to do a transfer with? */
|
1994-04-20 11:23:52 +04:00
|
|
|
wd = wdc->sc_drives.tqh_first;
|
|
|
|
if (wd == NULL)
|
1993-03-21 12:45:37 +03:00
|
|
|
return;
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Is there a transfer to this drive? If not, deactivate drive. */
|
1994-04-20 11:23:52 +04:00
|
|
|
bp = wd->sc_q.b_actf;
|
1993-03-21 12:45:37 +03:00
|
|
|
if (bp == NULL) {
|
1994-04-20 11:23:52 +04:00
|
|
|
TAILQ_REMOVE(&wdc->sc_drives, wd, sc_drivechain);
|
|
|
|
wd->sc_q.b_active = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
goto loop;
|
|
|
|
}
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-04-20 11:23:52 +04:00
|
|
|
if (wdc->sc_errors >= WDIORETRIES) {
|
1994-03-10 08:18:33 +03:00
|
|
|
wderror(wd, bp, "hard error");
|
|
|
|
bp->b_error = EIO;
|
|
|
|
bp->b_flags |= B_ERROR;
|
|
|
|
wdfinish(wd, bp);
|
|
|
|
goto loop;
|
|
|
|
}
|
1994-04-20 11:23:52 +04:00
|
|
|
|
1994-03-12 02:29:12 +03:00
|
|
|
/* Do control operations specially. */
|
1994-03-10 08:18:33 +03:00
|
|
|
if (wd->sc_state < OPEN) {
|
1994-03-12 02:29:12 +03:00
|
|
|
/*
|
|
|
|
* Actually, we want to be careful not to mess with the control
|
|
|
|
* state if the device is currently busy, but we can assume
|
|
|
|
* that we never get to this point if that's the case.
|
|
|
|
*/
|
1994-11-23 04:35:43 +03:00
|
|
|
if (wdcontrol(wd) == 0) {
|
|
|
|
/* The drive is busy. Wait. */
|
|
|
|
return;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-03-10 08:18:33 +03:00
|
|
|
|
|
|
|
/*
|
1994-04-07 10:48:19 +04:00
|
|
|
* WDCF_ERROR is set by wdcunwedge() and wdcintr() when an error is
|
1994-03-12 02:29:12 +03:00
|
|
|
* encountered. If we are in multi-sector mode, then we switch to
|
|
|
|
* single-sector mode and retry the operation from the start.
|
1994-03-10 08:18:33 +03:00
|
|
|
*/
|
1994-03-12 02:29:12 +03:00
|
|
|
if (wdc->sc_flags & WDCF_ERROR) {
|
|
|
|
wdc->sc_flags &= ~WDCF_ERROR;
|
|
|
|
if ((wdc->sc_flags & WDCF_SINGLE) == 0) {
|
|
|
|
wdc->sc_flags |= WDCF_SINGLE;
|
1994-11-22 12:33:59 +03:00
|
|
|
wd->sc_skip = 0;
|
1994-03-12 02:29:12 +03:00
|
|
|
}
|
1994-03-10 08:18:33 +03:00
|
|
|
}
|
|
|
|
|
1994-10-20 19:19:08 +03:00
|
|
|
if (wd->sc_skip == 0) {
|
1994-02-26 03:00:17 +03:00
|
|
|
#ifdef WDDEBUG
|
1994-10-20 19:19:08 +03:00
|
|
|
printf("\n%s: wdcstart %s %d@%d; map ", wd->sc_dev.dv_xname,
|
1994-02-25 19:40:47 +03:00
|
|
|
(bp->b_flags & B_READ) ? "read" : "write", bp->b_bcount,
|
1994-10-20 19:19:08 +03:00
|
|
|
bp->b_blkno);
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif
|
1994-03-10 08:18:33 +03:00
|
|
|
wd->sc_bcount = bp->b_bcount;
|
1994-10-20 19:19:08 +03:00
|
|
|
#ifdef INSTRUMENT
|
|
|
|
dk_busy |= (1 << wd->sc_dev.dv_unit);
|
|
|
|
dk_wds[wd->sc_dev.dv_unit] += bp->b_bcount >> 6;
|
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
#ifdef WDDEBUG
|
|
|
|
printf(" %d)%x", wd->sc_skip, inb(wd->sc_iobase+wd_altsts));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If starting a multisector transfer, or doing single transfers. */
|
1994-11-22 12:33:59 +03:00
|
|
|
if (wd->sc_skip == 0 || (wdc->sc_flags & WDCF_SINGLE) != 0) {
|
1994-10-20 19:19:08 +03:00
|
|
|
struct disklabel *lp;
|
1994-11-22 12:33:59 +03:00
|
|
|
long blkno;
|
1994-10-20 19:19:08 +03:00
|
|
|
long cylin, head, sector;
|
|
|
|
int command;
|
|
|
|
|
|
|
|
lp = &wd->sc_dk.dk_label;
|
|
|
|
blkno = bp->b_blkno / (lp->d_secsize / DEV_BSIZE) + wd->sc_skip;
|
|
|
|
if (WDPART(bp->b_dev) != RAW_PART)
|
|
|
|
blkno += lp->d_partitions[WDPART(bp->b_dev)].p_offset;
|
|
|
|
if (wdc->sc_flags & WDCF_SINGLE)
|
|
|
|
nblks = 1;
|
|
|
|
else
|
1994-11-22 12:33:59 +03:00
|
|
|
nblks = howmany(wd->sc_bcount, lp->d_secsize);
|
|
|
|
if (wd->sc_mode == WDM_DMA && nblks > 8)
|
|
|
|
nblks = 8;
|
1994-10-20 19:19:08 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Check for bad sectors if we have them, and not formatting. Only do
|
|
|
|
* this in single-sector mode, or when starting a multiple-sector
|
|
|
|
* transfer.
|
|
|
|
*/
|
1994-11-23 04:35:43 +03:00
|
|
|
if ((lp->d_flags & D_BADSECT) != 0
|
1994-02-26 03:00:17 +03:00
|
|
|
#ifdef B_FORMAT
|
1994-10-20 19:19:08 +03:00
|
|
|
&& (bp->b_flags & B_FORMAT) == 0
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif
|
1994-10-20 19:19:08 +03:00
|
|
|
) {
|
|
|
|
long blkdiff;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; (blkdiff = wd->sc_badsect[i]) != -1; i++) {
|
|
|
|
blkdiff -= blkno;
|
|
|
|
if (blkdiff < 0)
|
|
|
|
continue;
|
|
|
|
if (blkdiff == 0) {
|
|
|
|
/* Replace current block of transfer. */
|
|
|
|
blkno =
|
|
|
|
lp->d_secperunit - lp->d_nsectors - i - 1;
|
1994-11-22 12:33:59 +03:00
|
|
|
}
|
|
|
|
if (blkdiff < nblks) {
|
1994-10-20 19:19:08 +03:00
|
|
|
/* Bad block inside transfer. */
|
1994-11-22 12:33:59 +03:00
|
|
|
wdc->sc_flags |= WDCF_SINGLE;
|
|
|
|
nblks = 1;
|
1994-10-20 19:19:08 +03:00
|
|
|
}
|
1994-11-22 12:33:59 +03:00
|
|
|
break;
|
1993-04-06 14:06:28 +04:00
|
|
|
}
|
1994-10-20 19:19:08 +03:00
|
|
|
/* Tranfer is okay now. */
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-11-23 04:35:43 +03:00
|
|
|
if ((wd->sc_params.wdp_capabilities & WD_CAP_LBA) != 0) {
|
|
|
|
sector = (blkno >> 0) & 0xff;
|
|
|
|
cylin = (blkno >> 8) & 0xffff;
|
|
|
|
head = (blkno >> 24) & 0xff;
|
|
|
|
head |= WDSD_LBA;
|
|
|
|
} else {
|
|
|
|
sector = blkno % lp->d_nsectors;
|
|
|
|
sector++; /* Sectors begin with 1, not 0. */
|
|
|
|
blkno /= lp->d_nsectors;
|
|
|
|
head = blkno % lp->d_ntracks;
|
|
|
|
blkno /= lp->d_ntracks;
|
|
|
|
cylin = blkno;
|
|
|
|
head |= WDSD_CHS;
|
|
|
|
}
|
1994-03-03 00:42:31 +03:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
#ifdef INSTRUMENT
|
1994-03-29 08:35:37 +04:00
|
|
|
++dk_seek[wd->sc_dev.dv_unit];
|
|
|
|
++dk_xfer[wd->sc_dev.dv_unit];
|
1994-03-10 08:18:33 +03:00
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-02-25 19:40:47 +03:00
|
|
|
#ifdef B_FORMAT
|
1993-03-21 12:45:37 +03:00
|
|
|
if (bp->b_flags & B_FORMAT) {
|
1994-03-05 11:17:06 +03:00
|
|
|
sector = lp->d_gap3;
|
1994-10-20 19:19:08 +03:00
|
|
|
nblks = lp->d_nsectors;
|
1994-03-05 11:17:06 +03:00
|
|
|
command = WDCC_FORMAT;
|
1994-10-20 19:19:08 +03:00
|
|
|
} else
|
|
|
|
#endif
|
1994-11-22 12:33:59 +03:00
|
|
|
switch (wd->sc_mode) {
|
|
|
|
case WDM_DMA:
|
|
|
|
command = (bp->b_flags & B_READ) ?
|
|
|
|
WDCC_READDMA : WDCC_WRITEDMA;
|
|
|
|
isa_dmastart(bp->b_flags & B_READ, bp->b_data,
|
|
|
|
nblks * DEV_BSIZE, wdc->sc_drq);
|
|
|
|
break;
|
|
|
|
case WDM_PIOMULTI:
|
|
|
|
command = (bp->b_flags & B_READ) ?
|
|
|
|
WDCC_READMULTI : WDCC_WRITEMULTI;
|
|
|
|
break;
|
|
|
|
case WDM_PIOSINGLE:
|
|
|
|
command = (bp->b_flags & B_READ) ?
|
|
|
|
WDCC_READ : WDCC_WRITE;
|
|
|
|
break;
|
|
|
|
}
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Initiate command! */
|
1994-11-05 02:18:06 +03:00
|
|
|
if (wdcommand(wd, command, cylin, head, sector, nblks) != 0) {
|
1994-03-10 08:18:33 +03:00
|
|
|
wderror(wd, NULL,
|
|
|
|
"wdcstart: timeout waiting for unbusy");
|
|
|
|
wdcunwedge(wdc);
|
|
|
|
return;
|
1994-03-03 00:42:31 +03:00
|
|
|
}
|
1994-02-26 03:00:17 +03:00
|
|
|
#ifdef WDDEBUG
|
1994-02-25 19:40:47 +03:00
|
|
|
printf("sector %d cylin %d head %d addr %x sts %x\n", sector,
|
1994-06-16 05:07:30 +04:00
|
|
|
cylin, head, bp->b_data, inb(wd->sc_iobase+wd_altsts));
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif
|
|
|
|
}
|
1994-04-20 11:23:52 +04:00
|
|
|
|
1994-11-22 12:33:59 +03:00
|
|
|
if (wd->sc_mode == WDM_PIOSINGLE ||
|
|
|
|
(wdc->sc_flags & WDCF_SINGLE) != 0)
|
|
|
|
nblks = 1;
|
|
|
|
else if (wd->sc_mode == WDM_PIOMULTI)
|
|
|
|
nblks = min(wd->sc_bcount / DEV_BSIZE, wd->sc_multiple);
|
|
|
|
else
|
|
|
|
nblks = min(wd->sc_bcount / DEV_BSIZE, 8);
|
|
|
|
wdc->sc_nblks = nblks;
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-11-22 12:33:59 +03:00
|
|
|
/* If this was a write and not using DMA, push the data. */
|
|
|
|
if (wd->sc_mode != WDM_DMA &&
|
|
|
|
(bp->b_flags & B_READ) == 0) {
|
|
|
|
if (wait_for_drq(wdc) < 0) {
|
|
|
|
wderror(wd, NULL, "wdcstart: timeout waiting for drq");
|
|
|
|
wdcunwedge(wdc);
|
|
|
|
return;
|
|
|
|
}
|
1994-03-05 11:17:06 +03:00
|
|
|
|
1994-11-22 12:33:59 +03:00
|
|
|
/* Then send it! */
|
1994-11-22 13:20:16 +03:00
|
|
|
if ((wd->sc_flags & WDF_32BIT) == 0)
|
|
|
|
outsw(wdc->sc_iobase+wd_data,
|
|
|
|
bp->b_data + wd->sc_skip * DEV_BSIZE,
|
|
|
|
nblks * DEV_BSIZE / sizeof(short));
|
|
|
|
else
|
|
|
|
outsl(wdc->sc_iobase+wd_data,
|
|
|
|
bp->b_data + wd->sc_skip * DEV_BSIZE,
|
|
|
|
nblks * DEV_BSIZE / sizeof(long));
|
1994-11-22 12:33:59 +03:00
|
|
|
}
|
1994-11-23 04:35:43 +03:00
|
|
|
|
|
|
|
wdc->sc_flags |= WDCF_ACTIVE;
|
|
|
|
timeout(wdctimeout, wdc, WAITTIME);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
/*
|
|
|
|
* Interrupt routine for the controller. Acknowledge the interrupt, check for
|
|
|
|
* errors on the current operation, mark it done if necessary, and start the
|
|
|
|
* next request. Also check for a partially done transfer, and continue with
|
|
|
|
* the next chunk if so.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1994-03-10 08:18:33 +03:00
|
|
|
int
|
1994-11-04 02:23:38 +03:00
|
|
|
wdcintr(wdc)
|
|
|
|
struct wdc_softc *wdc;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-03-10 08:18:33 +03:00
|
|
|
struct wd_softc *wd;
|
|
|
|
struct buf *bp;
|
1994-11-22 12:33:59 +03:00
|
|
|
int nblks;
|
1994-03-03 00:42:31 +03:00
|
|
|
|
1994-08-15 12:22:20 +04:00
|
|
|
if ((wdc->sc_flags & WDCF_ACTIVE) == 0) {
|
|
|
|
/* Clear the pending interrupt. */
|
|
|
|
(void) inb(wdc->sc_iobase+wd_status);
|
1994-03-10 08:18:33 +03:00
|
|
|
return 0;
|
1994-08-15 12:22:20 +04:00
|
|
|
}
|
1994-04-20 11:23:52 +04:00
|
|
|
|
1994-11-23 04:35:43 +03:00
|
|
|
wdc->sc_flags &= ~WDCF_ACTIVE;
|
|
|
|
untimeout(wdctimeout, wdc);
|
|
|
|
|
1994-04-20 11:23:52 +04:00
|
|
|
wd = wdc->sc_drives.tqh_first;
|
|
|
|
bp = wd->sc_q.b_actf;
|
|
|
|
|
1994-02-26 03:00:17 +03:00
|
|
|
#ifdef WDDEBUG
|
1993-04-06 14:06:28 +04:00
|
|
|
printf("I%d ", ctrlr);
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif
|
1993-05-10 09:53:22 +04:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
if (wait_for_unbusy(wdc) < 0) {
|
1994-04-07 10:48:19 +04:00
|
|
|
wderror(wd, NULL, "wdcintr: timeout waiting for unbusy");
|
1994-03-10 08:18:33 +03:00
|
|
|
wdc->sc_status |= WDCS_ERR; /* XXX */
|
1993-12-13 13:16:56 +03:00
|
|
|
}
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Is it not a transfer, but a control operation? */
|
|
|
|
if (wd->sc_state < OPEN) {
|
1994-11-23 04:35:43 +03:00
|
|
|
if (wdcontrol(wd) == 0) {
|
|
|
|
/* The drive is busy. Wait. */
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
wdcstart(wdc);
|
1994-03-10 08:18:33 +03:00
|
|
|
return 1;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-04-20 11:23:52 +04:00
|
|
|
|
1994-11-22 12:33:59 +03:00
|
|
|
nblks = wdc->sc_nblks;
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-11-22 12:33:59 +03:00
|
|
|
if (wd->sc_mode == WDM_DMA)
|
|
|
|
isa_dmadone(bp->b_flags & B_READ, bp->b_data,
|
|
|
|
nblks * DEV_BSIZE, wdc->sc_drq);
|
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Have we an error? */
|
1994-10-20 19:36:21 +03:00
|
|
|
if (wdc->sc_status & WDCS_ERR) {
|
1994-03-03 00:42:31 +03:00
|
|
|
lose:
|
1994-02-26 03:00:17 +03:00
|
|
|
#ifdef WDDEBUG
|
1994-04-07 10:48:19 +04:00
|
|
|
wderror(wd, NULL, "wdcintr");
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif
|
1994-03-12 02:29:12 +03:00
|
|
|
if ((wdc->sc_flags & WDCF_SINGLE) == 0) {
|
|
|
|
wdc->sc_flags |= WDCF_ERROR;
|
1994-03-10 08:18:33 +03:00
|
|
|
goto restart;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-10-20 19:36:21 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifdef B_FORMAT
|
1994-10-20 19:36:21 +03:00
|
|
|
if (bp->b_flags & B_FORMAT)
|
|
|
|
goto bad;
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-10-20 19:36:21 +03:00
|
|
|
if (++wdc->sc_errors < WDIORETRIES)
|
|
|
|
goto restart;
|
|
|
|
wderror(wd, bp, "hard error");
|
|
|
|
|
|
|
|
bad:
|
|
|
|
bp->b_error = EIO;
|
|
|
|
bp->b_flags |= B_ERROR;
|
|
|
|
goto done;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-10-20 19:36:21 +03:00
|
|
|
|
1994-11-22 08:34:49 +03:00
|
|
|
if (wdc->sc_status & WDCS_CORR)
|
1994-10-20 19:36:21 +03:00
|
|
|
wderror(wd, bp, "soft ecc");
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-11-22 12:33:59 +03:00
|
|
|
/* If this was a read and not using DMA, fetch the data. */
|
|
|
|
if (wd->sc_mode != WDM_DMA &&
|
|
|
|
(bp->b_flags & B_READ) != 0) {
|
1994-11-22 08:34:49 +03:00
|
|
|
if ((wdc->sc_status & (WDCS_DRDY | WDCS_DSC | WDCS_DRQ))
|
|
|
|
!= (WDCS_DRDY | WDCS_DSC | WDCS_DRQ)) {
|
1994-08-15 12:22:20 +04:00
|
|
|
wderror(wd, NULL, "wdcintr: read intr before drq");
|
1994-03-10 08:18:33 +03:00
|
|
|
wdcunwedge(wdc);
|
|
|
|
return 1;
|
1993-12-13 13:16:56 +03:00
|
|
|
}
|
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Suck in data. */
|
1994-11-22 13:20:16 +03:00
|
|
|
if ((wd->sc_flags & WDF_32BIT) == 0)
|
|
|
|
insw(wdc->sc_iobase+wd_data,
|
|
|
|
bp->b_data + wd->sc_skip * DEV_BSIZE,
|
|
|
|
nblks * DEV_BSIZE / sizeof(short));
|
|
|
|
else
|
|
|
|
insl(wdc->sc_iobase+wd_data,
|
|
|
|
bp->b_data + wd->sc_skip * DEV_BSIZE,
|
|
|
|
nblks * DEV_BSIZE / sizeof(long));
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
/* If we encountered any abnormalities, flag it as a soft error. */
|
1994-04-20 11:23:52 +04:00
|
|
|
if (wdc->sc_errors) {
|
1994-03-10 08:18:33 +03:00
|
|
|
wderror(wd, bp, "soft error");
|
1994-04-20 11:23:52 +04:00
|
|
|
wdc->sc_errors = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-03-10 08:18:33 +03:00
|
|
|
|
|
|
|
/* Ready for the next block, if any. */
|
1994-11-22 12:33:59 +03:00
|
|
|
wd->sc_skip += nblks;
|
|
|
|
wd->sc_bcount -= nblks * DEV_BSIZE;
|
1994-02-26 22:00:51 +03:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
/* See if more to transfer. */
|
|
|
|
if (wd->sc_bcount > 0)
|
|
|
|
goto restart;
|
1994-02-26 20:10:12 +03:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
done:
|
|
|
|
/* Done with this transfer, with or without error. */
|
|
|
|
wdfinish(wd, bp);
|
|
|
|
|
|
|
|
restart:
|
|
|
|
/* Start the next transfer, if any. */
|
|
|
|
wdcstart(wdc);
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
return 1;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize a drive.
|
|
|
|
*/
|
|
|
|
int
|
1994-11-21 01:36:43 +03:00
|
|
|
wdopen(dev, flag, fmt)
|
1994-03-04 06:43:48 +03:00
|
|
|
dev_t dev;
|
1994-10-20 16:44:46 +03:00
|
|
|
int flag, fmt;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-11-22 06:23:49 +03:00
|
|
|
int error;
|
1994-11-21 01:36:43 +03:00
|
|
|
int unit, part;
|
1994-03-10 08:18:33 +03:00
|
|
|
struct wd_softc *wd;
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-11-21 01:36:43 +03:00
|
|
|
unit = WDUNIT(dev);
|
|
|
|
if (unit >= wdcd.cd_ndevs)
|
1994-02-25 19:40:47 +03:00
|
|
|
return ENXIO;
|
1994-11-21 01:36:43 +03:00
|
|
|
wd = wdcd.cd_devs[unit];
|
1994-03-10 08:18:33 +03:00
|
|
|
if (wd == 0)
|
1994-02-25 19:40:47 +03:00
|
|
|
return ENXIO;
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-11-21 01:36:43 +03:00
|
|
|
part = WDPART(dev);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-11-21 01:36:43 +03:00
|
|
|
while ((wd->sc_flags & WDF_LOCKED) != 0) {
|
|
|
|
wd->sc_flags |= WDF_WANTED;
|
1994-11-22 06:23:49 +03:00
|
|
|
if ((error = tsleep(wd, PRIBIO | PCATCH, "wdopn", 0)) != 0)
|
1994-11-21 01:36:43 +03:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
1994-11-22 06:23:49 +03:00
|
|
|
if (wd->sc_dk.dk_openmask != 0) {
|
|
|
|
/*
|
|
|
|
* If any partition is open, but the disk has been invalidated,
|
|
|
|
* disallow further opens.
|
|
|
|
*/
|
|
|
|
if ((wd->sc_flags & WDF_LOADED) == 0)
|
|
|
|
return ENXIO;
|
|
|
|
} else {
|
1994-11-21 01:36:43 +03:00
|
|
|
wd->sc_flags |= WDF_LOCKED;
|
|
|
|
|
|
|
|
if ((wd->sc_flags & WDF_LOADED) == 0) {
|
|
|
|
wd->sc_flags &= ~WDF_BSDLABEL;
|
|
|
|
wd->sc_flags |= WDF_LOADED;
|
|
|
|
|
|
|
|
/* Load the physical device parameters. */
|
|
|
|
if (wd_get_parms(wd) != 0) {
|
|
|
|
error = ENXIO;
|
|
|
|
goto bad2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Load the partition info if not already loaded. */
|
|
|
|
wdgetdisklabel(wd);
|
|
|
|
}
|
|
|
|
|
|
|
|
wd->sc_flags &= ~WDF_LOCKED;
|
|
|
|
if ((wd->sc_flags & WDF_WANTED) != 0) {
|
|
|
|
wd->sc_flags &= ~WDF_WANTED;
|
|
|
|
wakeup(wd);
|
1993-04-06 14:06:28 +04:00
|
|
|
}
|
|
|
|
}
|
1994-11-21 01:36:43 +03:00
|
|
|
|
1994-11-22 06:23:49 +03:00
|
|
|
/* Check that the partition exists. */
|
1994-10-20 16:44:46 +03:00
|
|
|
if (part != RAW_PART &&
|
|
|
|
(part >= wd->sc_dk.dk_label.d_npartitions ||
|
|
|
|
wd->sc_dk.dk_label.d_partitions[part].p_fstype == FS_UNUSED)) {
|
|
|
|
error = ENXIO;
|
|
|
|
goto bad;
|
|
|
|
}
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Insure only one open at a time. */
|
1993-04-06 14:06:28 +04:00
|
|
|
switch (fmt) {
|
|
|
|
case S_IFCHR:
|
1994-10-20 17:08:07 +03:00
|
|
|
wd->sc_dk.dk_copenmask |= (1 << part);
|
1993-04-06 14:06:28 +04:00
|
|
|
break;
|
|
|
|
case S_IFBLK:
|
1994-10-20 17:08:07 +03:00
|
|
|
wd->sc_dk.dk_bopenmask |= (1 << part);
|
1993-04-06 14:06:28 +04:00
|
|
|
break;
|
|
|
|
}
|
1994-10-20 17:08:07 +03:00
|
|
|
wd->sc_dk.dk_openmask = wd->sc_dk.dk_copenmask | wd->sc_dk.dk_bopenmask;
|
1994-03-05 11:17:06 +03:00
|
|
|
|
1994-02-25 19:40:47 +03:00
|
|
|
return 0;
|
1994-10-20 16:44:46 +03:00
|
|
|
|
1994-11-21 01:36:43 +03:00
|
|
|
bad2:
|
|
|
|
wd->sc_flags &= ~WDF_LOADED;
|
|
|
|
|
1994-10-20 16:44:46 +03:00
|
|
|
bad:
|
1994-11-21 01:36:43 +03:00
|
|
|
wd->sc_flags &= ~WDF_LOCKED;
|
|
|
|
if ((wd->sc_flags & WDF_WANTED) != 0) {
|
|
|
|
wd->sc_flags &= ~WDF_WANTED;
|
|
|
|
wakeup(wd);
|
|
|
|
}
|
|
|
|
|
1994-10-20 16:44:46 +03:00
|
|
|
return error;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1994-11-21 01:36:43 +03:00
|
|
|
void
|
|
|
|
wdgetdisklabel(wd)
|
|
|
|
struct wd_softc *wd;
|
|
|
|
{
|
|
|
|
char *errstring;
|
|
|
|
|
|
|
|
if ((wd->sc_flags & WDF_BSDLABEL) != 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
bzero(&wd->sc_dk.dk_label, sizeof(struct disklabel));
|
|
|
|
bzero(&wd->sc_dk.dk_cpulabel, sizeof(struct cpu_disklabel));
|
|
|
|
|
|
|
|
wd->sc_dk.dk_label.d_secsize = DEV_BSIZE;
|
|
|
|
wd->sc_dk.dk_label.d_ntracks = wd->sc_params.wdp_heads;
|
|
|
|
wd->sc_dk.dk_label.d_nsectors = wd->sc_params.wdp_sectors;
|
1994-11-22 08:34:49 +03:00
|
|
|
wd->sc_dk.dk_label.d_ncylinders = wd->sc_params.wdp_cylinders;
|
1994-11-21 01:36:43 +03:00
|
|
|
wd->sc_dk.dk_label.d_secpercyl =
|
|
|
|
wd->sc_dk.dk_label.d_ntracks * wd->sc_dk.dk_label.d_nsectors;
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
strncpy(wd->sc_dk.dk_label.d_typename, "ST506 disk", 16);
|
|
|
|
wd->sc_dk.dk_label.d_type = DTYPE_ST506;
|
|
|
|
#endif
|
|
|
|
strncpy(wd->sc_dk.dk_label.d_packname, wd->sc_params.wdp_model, 16);
|
|
|
|
wd->sc_dk.dk_label.d_secperunit =
|
|
|
|
wd->sc_dk.dk_label.d_secpercyl * wd->sc_dk.dk_label.d_ncylinders;
|
|
|
|
wd->sc_dk.dk_label.d_rpm = 3600;
|
|
|
|
wd->sc_dk.dk_label.d_interleave = 1;
|
|
|
|
wd->sc_dk.dk_label.d_flags = 0;
|
|
|
|
|
|
|
|
wd->sc_dk.dk_label.d_partitions[RAW_PART].p_offset = 0;
|
|
|
|
wd->sc_dk.dk_label.d_partitions[RAW_PART].p_size =
|
|
|
|
wd->sc_dk.dk_label.d_secperunit *
|
|
|
|
(wd->sc_dk.dk_label.d_secsize / DEV_BSIZE);
|
|
|
|
wd->sc_dk.dk_label.d_partitions[RAW_PART].p_fstype = FS_UNUSED;
|
|
|
|
wd->sc_dk.dk_label.d_npartitions = RAW_PART + 1;
|
|
|
|
|
|
|
|
wd->sc_dk.dk_label.d_magic = DISKMAGIC;
|
|
|
|
wd->sc_dk.dk_label.d_magic2 = DISKMAGIC;
|
|
|
|
wd->sc_dk.dk_label.d_checksum = dkcksum(&wd->sc_dk.dk_label);
|
|
|
|
|
1994-11-22 12:33:59 +03:00
|
|
|
wd->sc_badsect[0] = -1;
|
|
|
|
|
1994-11-21 01:36:43 +03:00
|
|
|
if (wd->sc_state > RECAL)
|
|
|
|
wd->sc_state = RECAL;
|
|
|
|
errstring = readdisklabel(MAKEWDDEV(0, wd->sc_dev.dv_unit, RAW_PART),
|
|
|
|
wdstrategy, &wd->sc_dk.dk_label, &wd->sc_dk.dk_cpulabel);
|
|
|
|
if (errstring) {
|
|
|
|
/*
|
|
|
|
* This probably happened because the drive's default
|
|
|
|
* geometry doesn't match the DOS geometry. We
|
|
|
|
* assume the DOS geometry is now in the label and try
|
|
|
|
* again. XXX This is a kluge.
|
|
|
|
*/
|
|
|
|
if (wd->sc_state > GEOMETRY)
|
|
|
|
wd->sc_state = GEOMETRY;
|
|
|
|
errstring = readdisklabel(MAKEWDDEV(0, wd->sc_dev.dv_unit, RAW_PART),
|
|
|
|
wdstrategy, &wd->sc_dk.dk_label, &wd->sc_dk.dk_cpulabel);
|
|
|
|
}
|
|
|
|
if (errstring) {
|
|
|
|
printf("%s: %s\n", wd->sc_dev.dv_xname, errstring);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (wd->sc_state > GEOMETRY)
|
|
|
|
wd->sc_state = GEOMETRY;
|
|
|
|
if ((wd->sc_dk.dk_label.d_flags & D_BADSECT) != 0)
|
|
|
|
bad144intern(wd);
|
|
|
|
|
|
|
|
wd->sc_flags |= WDF_BSDLABEL;
|
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Implement operations other than read/write.
|
1994-04-07 10:48:19 +04:00
|
|
|
* Called from wdcstart or wdcintr during opens and formats.
|
1993-03-21 12:45:37 +03:00
|
|
|
* Uses finite-state-machine to track progress of operation in progress.
|
|
|
|
* Returns 0 if operation still in progress, 1 if completed.
|
|
|
|
*/
|
|
|
|
static int
|
1994-03-12 02:29:12 +03:00
|
|
|
wdcontrol(wd)
|
|
|
|
struct wd_softc *wd;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-03-10 08:18:33 +03:00
|
|
|
struct wdc_softc *wdc = (void *)wd->sc_dev.dv_parent;
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
switch (wd->sc_state) {
|
1994-11-22 08:34:49 +03:00
|
|
|
case RECAL: /* Set SDH, step rate, do recal. */
|
|
|
|
if (wdcommandshort(wdc, wd->sc_drive, WDCC_RECAL) != 0) {
|
1994-11-22 12:33:59 +03:00
|
|
|
wderror(wd, NULL, "wdcontrol: recal failed (1)");
|
|
|
|
goto bad;
|
1993-07-06 04:42:43 +04:00
|
|
|
}
|
1994-03-12 02:29:12 +03:00
|
|
|
wd->sc_state = RECAL_WAIT;
|
1994-11-23 04:35:43 +03:00
|
|
|
break;
|
1994-03-04 06:43:48 +03:00
|
|
|
|
1994-03-12 02:29:12 +03:00
|
|
|
case RECAL_WAIT:
|
|
|
|
if (wdc->sc_status & WDCS_ERR) {
|
1994-11-22 12:33:59 +03:00
|
|
|
wderror(wd, NULL, "wdcontrol: recal failed (2)");
|
|
|
|
goto bad;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-03-12 02:29:12 +03:00
|
|
|
/* fall through */
|
|
|
|
case GEOMETRY:
|
1994-11-23 04:35:43 +03:00
|
|
|
if ((wd->sc_params.wdp_capabilities & WD_CAP_LBA) != 0)
|
|
|
|
goto multimode;
|
1994-03-12 02:29:12 +03:00
|
|
|
if (wdsetctlr(wd) != 0) {
|
|
|
|
/* Already printed a message. */
|
1994-11-22 12:33:59 +03:00
|
|
|
goto bad;
|
1994-03-12 02:29:12 +03:00
|
|
|
}
|
|
|
|
wd->sc_state = GEOMETRY_WAIT;
|
1994-11-23 04:35:43 +03:00
|
|
|
break;
|
1994-03-12 02:29:12 +03:00
|
|
|
|
|
|
|
case GEOMETRY_WAIT:
|
|
|
|
if (wdc->sc_status & WDCS_ERR) {
|
|
|
|
wderror(wd, NULL, "wdcontrol: geometry failed");
|
1994-11-22 12:33:59 +03:00
|
|
|
goto bad;
|
1994-03-12 02:29:12 +03:00
|
|
|
}
|
1994-11-22 12:33:59 +03:00
|
|
|
/* fall through */
|
|
|
|
case MULTIMODE:
|
1994-11-23 04:35:43 +03:00
|
|
|
multimode:
|
1994-11-22 12:33:59 +03:00
|
|
|
if (wd->sc_mode != WDM_PIOMULTI)
|
|
|
|
goto open;
|
|
|
|
outb(wdc->sc_iobase+wd_seccnt, wd->sc_multiple);
|
|
|
|
if (wdcommandshort(wdc, wd->sc_drive, WDCC_SETMULTI) != 0) {
|
|
|
|
wderror(wd, NULL, "wdcontrol: setmulti failed (1)");
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
wd->sc_state = MULTIMODE_WAIT;
|
1994-11-23 04:35:43 +03:00
|
|
|
break;
|
1994-03-12 02:29:12 +03:00
|
|
|
|
1994-11-22 12:33:59 +03:00
|
|
|
case MULTIMODE_WAIT:
|
|
|
|
if (wdc->sc_status & WDCS_ERR) {
|
|
|
|
wderror(wd, NULL, "wdcontrol: setmulti failed (2)");
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
/* fall through */
|
1994-11-23 04:35:43 +03:00
|
|
|
case OPEN:
|
1994-11-22 12:33:59 +03:00
|
|
|
open:
|
1994-04-20 11:23:52 +04:00
|
|
|
wdc->sc_errors = 0;
|
1994-03-10 08:18:33 +03:00
|
|
|
wd->sc_state = OPEN;
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-03-07 08:54:44 +03:00
|
|
|
* The rest of the initialization can be done by normal means.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1994-02-25 19:40:47 +03:00
|
|
|
return 1;
|
1994-11-22 12:33:59 +03:00
|
|
|
|
|
|
|
bad:
|
|
|
|
wdcunwedge(wdc);
|
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1994-11-23 04:35:43 +03:00
|
|
|
wdc->sc_flags |= WDCF_ACTIVE;
|
|
|
|
timeout(wdctimeout, wdc, WAITTIME);
|
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1994-03-10 08:18:33 +03:00
|
|
|
* Send a command and wait uninterruptibly until controller is finished.
|
|
|
|
* Return -1 if controller busy for too long, otherwise return non-zero if
|
|
|
|
* error. Intended for brief controller commands at critical points.
|
|
|
|
* Assumes interrupts are blocked.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
static int
|
1994-11-05 02:18:06 +03:00
|
|
|
wdcommand(wd, command, cylin, head, sector, count)
|
1994-03-10 08:18:33 +03:00
|
|
|
struct wd_softc *wd;
|
1994-11-05 02:18:06 +03:00
|
|
|
int command;
|
1994-03-05 11:17:06 +03:00
|
|
|
int cylin, head, sector, count;
|
1993-04-06 14:06:28 +04:00
|
|
|
{
|
1994-03-10 08:18:33 +03:00
|
|
|
struct wdc_softc *wdc = (void *)wd->sc_dev.dv_parent;
|
1994-11-19 00:57:40 +03:00
|
|
|
int iobase = wdc->sc_iobase;
|
1994-03-05 11:17:06 +03:00
|
|
|
int stat;
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-11-23 04:35:43 +03:00
|
|
|
/* Select drive, head, and addressing mode. */
|
1994-03-29 08:35:37 +04:00
|
|
|
outb(iobase+wd_sdh, WDSD_IBM | (wd->sc_drive << 4) | head);
|
1994-10-07 14:34:52 +03:00
|
|
|
|
|
|
|
/* Wait for it to become ready to accept a command. */
|
1994-11-22 08:34:49 +03:00
|
|
|
if (command == WDCC_IDP)
|
1994-03-10 08:18:33 +03:00
|
|
|
stat = wait_for_unbusy(wdc);
|
1994-03-05 11:17:06 +03:00
|
|
|
else
|
1994-11-22 08:34:49 +03:00
|
|
|
stat = wdcwait(wdc, WDCS_DRDY);
|
1994-03-05 11:17:06 +03:00
|
|
|
if (stat < 0)
|
|
|
|
return -1;
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Load parameters. */
|
1994-11-22 08:34:49 +03:00
|
|
|
if (wd->sc_dk.dk_label.d_type == DTYPE_ST506)
|
|
|
|
outb(iobase+wd_precomp, wd->sc_dk.dk_label.d_precompcyl / 4);
|
|
|
|
else
|
|
|
|
outb(iobase+wd_features, 0);
|
1994-03-10 08:18:33 +03:00
|
|
|
outb(iobase+wd_cyl_lo, cylin);
|
|
|
|
outb(iobase+wd_cyl_hi, cylin >> 8);
|
|
|
|
outb(iobase+wd_sector, sector);
|
|
|
|
outb(iobase+wd_seccnt, count);
|
1994-03-05 11:17:06 +03:00
|
|
|
|
1994-11-05 02:18:06 +03:00
|
|
|
/* Send command. */
|
|
|
|
outb(iobase+wd_command, command);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
wdcommandshort(wdc, drive, command)
|
|
|
|
struct wdc_softc *wdc;
|
|
|
|
int drive;
|
|
|
|
int command;
|
|
|
|
{
|
1994-11-19 00:57:40 +03:00
|
|
|
int iobase = wdc->sc_iobase;
|
1994-11-05 02:18:06 +03:00
|
|
|
|
|
|
|
/* Select drive. */
|
|
|
|
outb(iobase+wd_sdh, WDSD_IBM | (drive << 4));
|
|
|
|
|
1994-11-22 08:34:49 +03:00
|
|
|
if (wdcwait(wdc, WDCS_DRDY) < 0)
|
1994-11-05 02:18:06 +03:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
outb(iobase+wd_command, command);
|
1994-02-25 20:45:28 +03:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1994-11-22 08:34:49 +03:00
|
|
|
* Issue IDP to drive to tell it just what geometry it is to be.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
static int
|
1994-03-10 08:18:33 +03:00
|
|
|
wdsetctlr(wd)
|
|
|
|
struct wd_softc *wd;
|
1993-04-06 14:06:28 +04:00
|
|
|
{
|
1994-03-10 08:18:33 +03:00
|
|
|
struct wdc_softc *wdc = (void *)wd->sc_dev.dv_parent;
|
1994-03-07 08:54:44 +03:00
|
|
|
|
1994-02-26 03:00:17 +03:00
|
|
|
#ifdef WDDEBUG
|
1994-11-22 08:50:48 +03:00
|
|
|
printf("wd(%d,%d) C%dH%dS%d\n", wd->sc_dev.dv_unit, wd->sc_drive,
|
1994-10-20 16:44:46 +03:00
|
|
|
wd->sc_dk.dk_label.d_ncylinders, wd->sc_dk.dk_label.d_ntracks,
|
|
|
|
wd->sc_dk.dk_label.d_nsectors);
|
1994-02-26 03:00:17 +03:00
|
|
|
#endif
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-11-22 08:34:49 +03:00
|
|
|
if (wdcommand(wd, WDCC_IDP, wd->sc_dk.dk_label.d_ncylinders,
|
1994-11-05 02:18:06 +03:00
|
|
|
wd->sc_dk.dk_label.d_ntracks - 1, 0, wd->sc_dk.dk_label.d_nsectors)
|
|
|
|
!= 0) {
|
|
|
|
wderror(wd, NULL, "wdsetctlr: geometry upload failed");
|
1994-03-03 00:42:31 +03:00
|
|
|
return -1;
|
1994-03-04 20:45:22 +03:00
|
|
|
}
|
1994-03-12 02:29:12 +03:00
|
|
|
|
1994-03-05 11:17:06 +03:00
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1994-11-22 08:34:49 +03:00
|
|
|
* Issue IDENTIFY to drive to ask it what it is.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1994-11-21 01:36:43 +03:00
|
|
|
int
|
|
|
|
wd_get_parms(wd)
|
1994-03-10 08:18:33 +03:00
|
|
|
struct wd_softc *wd;
|
1993-04-06 14:06:28 +04:00
|
|
|
{
|
1994-03-10 08:18:33 +03:00
|
|
|
struct wdc_softc *wdc = (void *)wd->sc_dev.dv_parent;
|
1994-03-07 08:54:44 +03:00
|
|
|
int i;
|
1993-03-21 12:45:37 +03:00
|
|
|
char tb[DEV_BSIZE];
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-11-22 08:34:49 +03:00
|
|
|
if (wdcommandshort(wdc, wd->sc_drive, WDCC_IDENTIFY) != 0 ||
|
1994-03-10 08:18:33 +03:00
|
|
|
wait_for_drq(wdc) != 0) {
|
1994-03-05 11:17:06 +03:00
|
|
|
/*
|
1994-11-05 02:18:06 +03:00
|
|
|
* We `know' there's a drive here; just assume it's old.
|
1994-03-05 11:17:06 +03:00
|
|
|
*/
|
1994-10-20 16:44:46 +03:00
|
|
|
strncpy(wd->sc_dk.dk_label.d_typename, "ST506",
|
|
|
|
sizeof wd->sc_dk.dk_label.d_typename);
|
|
|
|
wd->sc_dk.dk_label.d_type = DTYPE_ST506;
|
1994-11-21 01:36:43 +03:00
|
|
|
|
|
|
|
strncpy(wd->sc_params.wdp_model, "unknown",
|
|
|
|
sizeof wd->sc_params.wdp_model);
|
1994-11-22 08:34:49 +03:00
|
|
|
wd->sc_params.wdp_config = WD_CFG_FIXED;
|
|
|
|
wd->sc_params.wdp_cylinders = 1024;
|
1994-11-21 01:36:43 +03:00
|
|
|
wd->sc_params.wdp_heads = 8;
|
|
|
|
wd->sc_params.wdp_sectors = 17;
|
1994-11-22 08:39:16 +03:00
|
|
|
wd->sc_params.wdp_maxmulti = 0;
|
|
|
|
wd->sc_params.wdp_usedmovsd = 0;
|
1994-11-22 08:34:49 +03:00
|
|
|
wd->sc_params.wdp_capabilities = 0;
|
1994-03-05 11:17:06 +03:00
|
|
|
} else {
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Obtain parameters. */
|
|
|
|
insw(wdc->sc_iobase+wd_data, tb, sizeof(tb) / sizeof(short));
|
1994-11-21 01:36:43 +03:00
|
|
|
bcopy(tb, &wd->sc_params, sizeof(struct wdparams));
|
1993-05-10 09:53:22 +04:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Shuffle string byte order. */
|
1994-11-21 01:36:43 +03:00
|
|
|
for (i = 0; i < sizeof(wd->sc_params.wdp_model); i += 2) {
|
1993-05-10 09:53:22 +04:00
|
|
|
u_short *p;
|
1994-11-21 01:36:43 +03:00
|
|
|
p = (u_short *)(wd->sc_params.wdp_model + i);
|
1993-05-10 09:53:22 +04:00
|
|
|
*p = ntohs(*p);
|
1993-04-15 10:39:00 +04:00
|
|
|
}
|
|
|
|
|
1994-10-20 16:44:46 +03:00
|
|
|
strncpy(wd->sc_dk.dk_label.d_typename, "ESDI/IDE",
|
|
|
|
sizeof wd->sc_dk.dk_label.d_typename);
|
|
|
|
wd->sc_dk.dk_label.d_type = DTYPE_ESDI;
|
1993-04-15 10:39:00 +04:00
|
|
|
}
|
1993-05-10 09:53:22 +04:00
|
|
|
|
|
|
|
#if 0
|
1994-02-25 19:40:47 +03:00
|
|
|
printf("gc %x cyl %d trk %d sec %d type %d sz %d model %s\n",
|
1994-11-22 08:34:49 +03:00
|
|
|
wp->wdp_config, wp->wdp_cylinders, wp->wdp_heads, wp->wdp_sectors,
|
|
|
|
wp->wdp_buftype, wp->wdp_bufsize, wp->wdp_model);
|
1993-05-10 09:53:22 +04:00
|
|
|
#endif
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/* XXX sometimes possibly needed */
|
1994-03-10 08:18:33 +03:00
|
|
|
(void) inb(wdc->sc_iobase+wd_status);
|
1994-11-21 01:36:43 +03:00
|
|
|
|
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1994-03-04 06:43:48 +03:00
|
|
|
wdclose(dev, flag, fmt)
|
|
|
|
dev_t dev;
|
1994-10-20 16:44:46 +03:00
|
|
|
int flag, fmt;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-03-29 08:35:37 +04:00
|
|
|
struct wd_softc *wd = wdcd.cd_devs[WDUNIT(dev)];
|
1994-10-20 16:44:46 +03:00
|
|
|
int part = WDPART(dev);
|
1994-11-22 06:23:49 +03:00
|
|
|
int s;
|
1993-04-06 14:06:28 +04:00
|
|
|
|
|
|
|
switch (fmt) {
|
|
|
|
case S_IFCHR:
|
1994-10-20 17:08:07 +03:00
|
|
|
wd->sc_dk.dk_copenmask &= ~(1 << part);
|
1993-04-06 14:06:28 +04:00
|
|
|
break;
|
|
|
|
case S_IFBLK:
|
1994-10-20 17:08:07 +03:00
|
|
|
wd->sc_dk.dk_bopenmask &= ~(1 << part);
|
1993-04-06 14:06:28 +04:00
|
|
|
break;
|
|
|
|
}
|
1994-10-20 17:08:07 +03:00
|
|
|
wd->sc_dk.dk_openmask = wd->sc_dk.dk_copenmask | wd->sc_dk.dk_bopenmask;
|
1994-03-05 11:17:06 +03:00
|
|
|
|
1994-11-22 06:23:49 +03:00
|
|
|
if (wd->sc_dk.dk_openmask == 0) {
|
|
|
|
wd->sc_flags |= WDF_LOCKED;
|
|
|
|
|
1994-11-22 12:33:59 +03:00
|
|
|
#if 0
|
1994-11-22 06:23:49 +03:00
|
|
|
s = splbio();
|
|
|
|
while (...) {
|
|
|
|
wd->sc_flags |= WDF_WAITING;
|
|
|
|
if ((error = tsleep(wd, PRIBIO | PCATCH, "wdcls", 0)) != 0)
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
splx(s);
|
1994-11-22 12:33:59 +03:00
|
|
|
#endif
|
1994-11-22 06:23:49 +03:00
|
|
|
|
|
|
|
wd->sc_flags &= ~WDF_LOCKED;
|
|
|
|
if ((wd->sc_flags & WDF_WANTED) != 0) {
|
|
|
|
wd->sc_flags &= WDF_WANTED;
|
|
|
|
wakeup(wd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1994-02-25 19:40:47 +03:00
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1994-11-05 02:18:06 +03:00
|
|
|
wdioctl(dev, command, addr, flag, p)
|
1994-03-04 06:43:48 +03:00
|
|
|
dev_t dev;
|
1994-11-05 02:18:06 +03:00
|
|
|
u_long command;
|
1994-03-04 06:43:48 +03:00
|
|
|
caddr_t addr;
|
|
|
|
int flag;
|
|
|
|
struct proc *p;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-11-21 01:36:43 +03:00
|
|
|
struct wd_softc *wd = wdcd.cd_devs[WDUNIT(dev)];
|
1994-03-03 04:58:21 +03:00
|
|
|
int error;
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-11-21 01:36:43 +03:00
|
|
|
if ((wd->sc_flags & WDF_LOADED) == 0)
|
|
|
|
return EIO;
|
|
|
|
|
1994-11-05 02:18:06 +03:00
|
|
|
switch (command) {
|
1993-03-21 12:45:37 +03:00
|
|
|
case DIOCSBAD:
|
1993-04-06 14:06:28 +04:00
|
|
|
if ((flag & FWRITE) == 0)
|
1994-03-03 04:58:21 +03:00
|
|
|
return EBADF;
|
1994-10-20 16:44:46 +03:00
|
|
|
wd->sc_dk.dk_cpulabel.bad = *(struct dkbad *)addr;
|
1994-11-21 01:36:43 +03:00
|
|
|
wd->sc_dk.dk_label.d_flags |= D_BADSECT;
|
1994-03-10 08:18:33 +03:00
|
|
|
bad144intern(wd);
|
1994-03-03 04:58:21 +03:00
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
case DIOCGDINFO:
|
1994-10-20 16:44:46 +03:00
|
|
|
*(struct disklabel *)addr = wd->sc_dk.dk_label;
|
1994-03-03 04:58:21 +03:00
|
|
|
return 0;
|
1993-04-06 14:06:28 +04:00
|
|
|
|
|
|
|
case DIOCGPART:
|
1994-10-20 16:44:46 +03:00
|
|
|
((struct partinfo *)addr)->disklab = &wd->sc_dk.dk_label;
|
1993-04-06 14:06:28 +04:00
|
|
|
((struct partinfo *)addr)->part =
|
1994-10-20 16:44:46 +03:00
|
|
|
&wd->sc_dk.dk_label.d_partitions[WDPART(dev)];
|
1994-03-03 04:58:21 +03:00
|
|
|
return 0;
|
1993-04-06 14:06:28 +04:00
|
|
|
|
|
|
|
case DIOCSDINFO:
|
|
|
|
if ((flag & FWRITE) == 0)
|
1994-03-03 04:58:21 +03:00
|
|
|
return EBADF;
|
1994-10-20 16:44:46 +03:00
|
|
|
error = setdisklabel(&wd->sc_dk.dk_label,
|
1994-03-03 04:58:21 +03:00
|
|
|
(struct disklabel *)addr,
|
1994-10-20 17:08:07 +03:00
|
|
|
/*(wd->sc_flags & WDF_BSDLABEL) ? wd->sc_dk.dk_openmask : */0,
|
1994-10-20 16:44:46 +03:00
|
|
|
&wd->sc_dk.dk_cpulabel);
|
1993-04-06 14:06:28 +04:00
|
|
|
if (error == 0) {
|
1994-03-10 08:18:33 +03:00
|
|
|
wd->sc_flags |= WDF_BSDLABEL;
|
1994-03-12 02:29:12 +03:00
|
|
|
if (wd->sc_state > GEOMETRY)
|
|
|
|
wd->sc_state = GEOMETRY;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-03-03 04:58:21 +03:00
|
|
|
return error;
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-02-26 03:00:17 +03:00
|
|
|
case DIOCWLABEL:
|
1993-04-06 14:06:28 +04:00
|
|
|
if ((flag & FWRITE) == 0)
|
1994-03-03 04:58:21 +03:00
|
|
|
return EBADF;
|
1994-10-20 16:44:46 +03:00
|
|
|
if (*(int *)addr)
|
|
|
|
wd->sc_flags |= WDF_WLABEL;
|
|
|
|
else
|
|
|
|
wd->sc_flags &= ~WDF_WLABEL;
|
1994-03-03 04:58:21 +03:00
|
|
|
return 0;
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-02-26 03:00:17 +03:00
|
|
|
case DIOCWDINFO:
|
1993-04-06 14:06:28 +04:00
|
|
|
if ((flag & FWRITE) == 0)
|
1994-03-03 04:58:21 +03:00
|
|
|
return EBADF;
|
1994-10-20 16:44:46 +03:00
|
|
|
error = setdisklabel(&wd->sc_dk.dk_label,
|
1994-02-25 19:40:47 +03:00
|
|
|
(struct disklabel *)addr,
|
1994-10-20 17:08:07 +03:00
|
|
|
/*(wd->sc_flags & WDF_BSDLABEL) ? wd->sc_dk.dk_openmask : */0,
|
1994-10-20 16:44:46 +03:00
|
|
|
&wd->sc_dk.dk_cpulabel);
|
1994-03-03 04:58:21 +03:00
|
|
|
if (error == 0) {
|
1994-03-10 08:18:33 +03:00
|
|
|
wd->sc_flags |= WDF_BSDLABEL;
|
1994-03-12 02:29:12 +03:00
|
|
|
if (wd->sc_state > GEOMETRY)
|
|
|
|
wd->sc_state = GEOMETRY;
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Simulate opening partition 0 so write succeeds. */
|
1994-10-20 17:08:07 +03:00
|
|
|
wd->sc_dk.dk_openmask |= (1 << 0); /* XXX */
|
1994-07-26 23:36:06 +04:00
|
|
|
error = writedisklabel(WDLABELDEV(dev), wdstrategy,
|
1994-10-20 16:44:46 +03:00
|
|
|
&wd->sc_dk.dk_label, &wd->sc_dk.dk_cpulabel);
|
1994-10-20 17:08:07 +03:00
|
|
|
wd->sc_dk.dk_openmask =
|
|
|
|
wd->sc_dk.dk_copenmask | wd->sc_dk.dk_bopenmask;
|
1993-04-06 14:06:28 +04:00
|
|
|
}
|
1994-03-03 04:58:21 +03:00
|
|
|
return error;
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifdef notyet
|
|
|
|
case DIOCGDINFOP:
|
1994-10-20 16:44:46 +03:00
|
|
|
*(struct disklabel **)addr = &wd->sc_dk.dk_label;
|
1994-03-03 04:58:21 +03:00
|
|
|
return 0;
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
case DIOCWFORMAT:
|
|
|
|
if ((flag & FWRITE) == 0)
|
1994-03-03 04:58:21 +03:00
|
|
|
return EBADF;
|
|
|
|
{
|
|
|
|
register struct format_op *fop;
|
|
|
|
struct iovec aiov;
|
|
|
|
struct uio auio;
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-03-03 04:58:21 +03:00
|
|
|
fop = (struct format_op *)addr;
|
|
|
|
aiov.iov_base = fop->df_buf;
|
|
|
|
aiov.iov_len = fop->df_count;
|
|
|
|
auio.uio_iov = &aiov;
|
|
|
|
auio.uio_iovcnt = 1;
|
|
|
|
auio.uio_resid = fop->df_count;
|
|
|
|
auio.uio_segflg = 0;
|
|
|
|
auio.uio_offset =
|
1994-10-20 16:44:46 +03:00
|
|
|
fop->df_startblk * wd->sc_dk.dk_label.d_secsize;
|
1994-06-10 00:00:13 +04:00
|
|
|
auio.uio_procp = p;
|
1994-03-10 08:18:33 +03:00
|
|
|
error = physio(wdformat, NULL, dev, B_WRITE, minphys,
|
|
|
|
&auio);
|
1994-03-03 04:58:21 +03:00
|
|
|
fop->df_count -= auio.uio_resid;
|
1994-03-10 08:18:33 +03:00
|
|
|
fop->df_reg[0] = wdc->sc_status;
|
|
|
|
fop->df_reg[1] = wdc->sc_error;
|
1994-03-03 04:58:21 +03:00
|
|
|
return error;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
default:
|
1994-03-03 04:58:21 +03:00
|
|
|
return ENOTTY;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-03-03 04:58:21 +03:00
|
|
|
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
panic("wdioctl: impossible");
|
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1994-02-26 03:00:17 +03:00
|
|
|
#ifdef B_FORMAT
|
1993-03-21 12:45:37 +03:00
|
|
|
int
|
|
|
|
wdformat(struct buf *bp)
|
|
|
|
{
|
1994-02-26 03:00:17 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
bp->b_flags |= B_FORMAT;
|
1994-02-25 19:40:47 +03:00
|
|
|
return wdstrategy(bp);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int
|
1994-03-04 06:43:48 +03:00
|
|
|
wdsize(dev)
|
|
|
|
dev_t dev;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-03-10 08:18:33 +03:00
|
|
|
struct wd_softc *wd;
|
1994-11-21 01:36:43 +03:00
|
|
|
int part;
|
|
|
|
int size;
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-11-21 01:36:43 +03:00
|
|
|
if (wdopen(dev, 0, S_IFBLK) != 0)
|
1994-02-25 19:40:47 +03:00
|
|
|
return -1;
|
1994-11-21 01:36:43 +03:00
|
|
|
wd = wdcd.cd_devs[WDUNIT(dev)];
|
|
|
|
part = WDPART(dev);
|
|
|
|
if ((wd->sc_flags & WDF_BSDLABEL) == 0 ||
|
|
|
|
wd->sc_dk.dk_label.d_partitions[part].p_fstype != FS_SWAP)
|
|
|
|
size = -1;
|
|
|
|
else
|
|
|
|
size = wd->sc_dk.dk_label.d_partitions[part].p_size;
|
|
|
|
if (wdclose(dev, 0, S_IFBLK) != 0)
|
1994-02-25 19:40:47 +03:00
|
|
|
return -1;
|
1994-11-21 01:36:43 +03:00
|
|
|
return size;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
/*
|
|
|
|
* Dump core after a system crash.
|
|
|
|
*/
|
1993-03-21 12:45:37 +03:00
|
|
|
int
|
1994-03-04 06:43:48 +03:00
|
|
|
wddump(dev)
|
|
|
|
dev_t dev;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-03-10 08:18:33 +03:00
|
|
|
struct wd_softc *wd; /* disk unit to do the IO */
|
|
|
|
struct wdc_softc *wdc;
|
1994-11-23 04:35:43 +03:00
|
|
|
struct disklabel *lp;
|
1994-11-21 01:36:43 +03:00
|
|
|
int unit, part;
|
1994-11-23 04:35:43 +03:00
|
|
|
long rblkno, nblks;
|
1993-03-21 12:45:37 +03:00
|
|
|
char *addr;
|
1994-02-26 20:10:12 +03:00
|
|
|
static wddoingadump = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
extern caddr_t CADDR1;
|
1994-08-15 18:46:45 +04:00
|
|
|
extern pt_entry_t *CMAP1;
|
1993-12-24 16:56:14 +03:00
|
|
|
|
1994-11-23 04:35:43 +03:00
|
|
|
if (wddoingadump)
|
|
|
|
return EFAULT;
|
|
|
|
wddoingadump = 1;
|
1994-03-05 11:17:06 +03:00
|
|
|
|
1994-11-21 01:36:43 +03:00
|
|
|
unit = WDUNIT(dev);
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Check for acceptable drive number. */
|
1994-11-21 01:36:43 +03:00
|
|
|
if (unit >= wdcd.cd_ndevs)
|
1994-02-25 19:40:47 +03:00
|
|
|
return ENXIO;
|
1994-11-21 01:36:43 +03:00
|
|
|
wd = wdcd.cd_devs[unit];
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Was it ever initialized? */
|
1994-11-21 01:36:43 +03:00
|
|
|
if (wd == 0 || wd->sc_state < OPEN)
|
1994-02-25 19:40:47 +03:00
|
|
|
return ENXIO;
|
1994-02-26 20:10:12 +03:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
wdc = (void *)wd->sc_dev.dv_parent;
|
1994-11-23 04:35:43 +03:00
|
|
|
addr = (char *)0; /* starting address */
|
|
|
|
lp = &wd->sc_dk.dk_label;
|
|
|
|
part = WDPART(dev);
|
1994-03-10 08:18:33 +03:00
|
|
|
|
|
|
|
/* Convert to disk sectors. */
|
1994-11-23 04:35:43 +03:00
|
|
|
rblkno = lp->d_partitions[part].p_offset + dumplo;
|
|
|
|
nblks = min(ctob(physmem) / lp->d_secsize,
|
|
|
|
lp->d_partitions[part].p_size - dumplo);
|
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Check transfer bounds against partition size. */
|
1994-11-23 04:35:43 +03:00
|
|
|
if (dumplo < 0 || nblks <= 0)
|
1994-02-25 19:40:47 +03:00
|
|
|
return EINVAL;
|
1994-03-05 11:17:06 +03:00
|
|
|
|
|
|
|
/* Recalibrate. */
|
1994-11-22 08:34:49 +03:00
|
|
|
if (wdcommandshort(wdc, wd->sc_drive, WDCC_RECAL) != 0 ||
|
1994-03-12 02:29:12 +03:00
|
|
|
wait_for_ready(wdc) != 0 || wdsetctlr(wd) != 0 ||
|
|
|
|
wait_for_ready(wdc) != 0) {
|
1994-03-10 08:18:33 +03:00
|
|
|
wderror(wd, NULL, "wddump: recal failed");
|
1994-03-03 00:42:31 +03:00
|
|
|
return EIO;
|
1994-03-07 08:54:44 +03:00
|
|
|
}
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-11-23 04:35:43 +03:00
|
|
|
while (nblks > 0) {
|
|
|
|
long blkno;
|
|
|
|
long cylin, head, sector;
|
|
|
|
|
|
|
|
blkno = rblkno;
|
|
|
|
|
|
|
|
if ((lp->d_flags & D_BADSECT) != 0) {
|
|
|
|
long blkdiff;
|
1993-04-06 14:06:28 +04:00
|
|
|
int i;
|
|
|
|
|
1994-11-23 04:35:43 +03:00
|
|
|
for (i = 0; (blkdiff = wd->sc_badsect[i]) != -1; i++) {
|
|
|
|
blkdiff -= blkno;
|
|
|
|
if (blkdiff < 0)
|
|
|
|
continue;
|
|
|
|
if (blkdiff == 0) {
|
|
|
|
/* Replace current block of transfer. */
|
|
|
|
blkno =
|
|
|
|
lp->d_secperunit - lp->d_nsectors - i - 1;
|
1993-04-06 14:06:28 +04:00
|
|
|
}
|
1994-11-23 04:35:43 +03:00
|
|
|
break;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-11-23 04:35:43 +03:00
|
|
|
/* Tranfer is okay now. */
|
1993-04-06 14:06:28 +04:00
|
|
|
}
|
1994-11-23 04:35:43 +03:00
|
|
|
|
|
|
|
if ((wd->sc_params.wdp_capabilities & WD_CAP_LBA) != 0) {
|
|
|
|
sector = (blkno >> 0) & 0xff;
|
|
|
|
cylin = (blkno >> 8) & 0xffff;
|
|
|
|
head = (blkno >> 24) & 0xff;
|
|
|
|
head |= WDSD_LBA;
|
|
|
|
} else {
|
|
|
|
sector = blkno % lp->d_nsectors;
|
|
|
|
sector++; /* Sectors begin with 1, not 0. */
|
|
|
|
blkno /= lp->d_nsectors;
|
|
|
|
head = blkno % lp->d_ntracks;
|
|
|
|
blkno /= lp->d_ntracks;
|
|
|
|
cylin = blkno;
|
|
|
|
head |= WDSD_CHS;
|
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifdef notdef
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Let's just talk about this first. */
|
1994-03-05 11:17:06 +03:00
|
|
|
printf("cylin %d, head %d, sector %d, addr 0x%x", cylin, head,
|
|
|
|
sector, addr);
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif
|
1994-11-05 02:18:06 +03:00
|
|
|
if (wdcommand(wd, WDCC_WRITE, cylin, head, sector, 1) != 0 ||
|
|
|
|
wait_for_drq(wdc) != 0) {
|
|
|
|
wderror(wd, NULL, "wddump: write failed");
|
1994-03-03 00:42:31 +03:00
|
|
|
return EIO;
|
1994-03-07 08:54:44 +03:00
|
|
|
}
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
#ifdef notdef /* Cannot use this since this address was mapped differently. */
|
1994-02-26 20:10:12 +03:00
|
|
|
pmap_enter(kernel_pmap, CADDR1, trunc_page(addr), VM_PROT_READ, TRUE);
|
|
|
|
#else
|
1994-08-15 18:46:45 +04:00
|
|
|
*CMAP1 = PG_V | PG_KW | ctob((long)addr);
|
1994-02-26 20:10:12 +03:00
|
|
|
tlbflush();
|
|
|
|
#endif
|
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
outsw(wdc->sc_iobase+wd_data, CADDR1 + ((int)addr & PGOFSET),
|
1994-03-03 00:42:31 +03:00
|
|
|
DEV_BSIZE / sizeof(short));
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1993-05-10 09:53:22 +04:00
|
|
|
/* Check data request (should be done). */
|
1994-03-10 08:18:33 +03:00
|
|
|
if (wait_for_ready(wdc) != 0) {
|
|
|
|
wderror(wd, NULL, "wddump: timeout waiting for ready");
|
1994-03-07 08:54:44 +03:00
|
|
|
return EIO;
|
|
|
|
}
|
1994-03-10 08:18:33 +03:00
|
|
|
if (wdc->sc_status & WDCS_DRQ) {
|
|
|
|
wderror(wd, NULL, "wddump: extra drq");
|
1994-02-25 19:40:47 +03:00
|
|
|
return EIO;
|
1994-03-07 08:54:44 +03:00
|
|
|
}
|
1993-04-06 14:06:28 +04:00
|
|
|
|
1994-02-26 20:10:12 +03:00
|
|
|
if ((unsigned)addr % 1048576 == 0)
|
1994-11-23 04:35:43 +03:00
|
|
|
printf("%d ", nblks / (1048576 / DEV_BSIZE));
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Update block count. */
|
1994-11-23 04:35:43 +03:00
|
|
|
nblks--;
|
|
|
|
rblkno++;
|
1994-02-26 20:10:12 +03:00
|
|
|
(int)addr += DEV_BSIZE;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-11-23 04:35:43 +03:00
|
|
|
|
1994-02-25 19:40:47 +03:00
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1993-04-06 14:06:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Internalize the bad sector table.
|
|
|
|
*/
|
|
|
|
void
|
1994-03-10 08:18:33 +03:00
|
|
|
bad144intern(wd)
|
|
|
|
struct wd_softc *wd;
|
1993-04-06 14:06:28 +04:00
|
|
|
{
|
1994-10-20 21:37:45 +03:00
|
|
|
struct dkbad *bt = &wd->sc_dk.dk_cpulabel.bad;
|
|
|
|
struct disklabel *lp = &wd->sc_dk.dk_label;
|
|
|
|
int i = 0;
|
1994-03-04 06:43:48 +03:00
|
|
|
|
1994-10-20 21:37:45 +03:00
|
|
|
for (; i < 126; i++) {
|
|
|
|
if (bt->bt_bad[i].bt_cyl == 0xffff)
|
1994-03-04 06:43:48 +03:00
|
|
|
break;
|
1994-03-10 08:18:33 +03:00
|
|
|
wd->sc_badsect[i] =
|
1994-10-20 21:37:45 +03:00
|
|
|
bt->bt_bad[i].bt_cyl * lp->d_secpercyl +
|
|
|
|
(bt->bt_bad[i].bt_trksec >> 8) * lp->d_nsectors +
|
|
|
|
(bt->bt_bad[i].bt_trksec & 0xff);
|
1993-04-06 14:06:28 +04:00
|
|
|
}
|
1994-10-20 21:37:45 +03:00
|
|
|
for (; i < 127; i++)
|
|
|
|
wd->sc_badsect[i] = -1;
|
1993-04-06 14:06:28 +04:00
|
|
|
}
|
|
|
|
|
1993-12-13 13:16:56 +03:00
|
|
|
static int
|
1994-03-10 08:18:33 +03:00
|
|
|
wdcreset(wdc)
|
|
|
|
struct wdc_softc *wdc;
|
1993-07-06 04:42:43 +04:00
|
|
|
{
|
1994-11-19 00:57:40 +03:00
|
|
|
int iobase = wdc->sc_iobase;
|
1993-07-06 04:42:43 +04:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Reset the device. */
|
|
|
|
outb(iobase+wd_ctlr, WDCTL_RST | WDCTL_IDS);
|
1994-03-06 20:18:43 +03:00
|
|
|
delay(1000);
|
1994-03-10 08:18:33 +03:00
|
|
|
outb(iobase+wd_ctlr, WDCTL_IDS);
|
1994-03-06 20:18:43 +03:00
|
|
|
delay(1000);
|
1994-03-10 08:18:33 +03:00
|
|
|
(void) inb(iobase+wd_error);
|
|
|
|
outb(iobase+wd_ctlr, WDCTL_4BIT);
|
|
|
|
|
|
|
|
if (wait_for_unbusy(wdc) < 0) {
|
|
|
|
printf("%s: reset failed\n", wdc->sc_dev.dv_xname);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1994-05-05 09:35:42 +04:00
|
|
|
wdcrestart(arg)
|
|
|
|
void *arg;
|
1994-03-10 08:18:33 +03:00
|
|
|
{
|
1994-05-05 09:35:42 +04:00
|
|
|
struct wdc_softc *wdc = (struct wdc_softc *)arg;
|
1994-10-20 21:37:45 +03:00
|
|
|
int s;
|
1994-03-10 08:18:33 +03:00
|
|
|
|
1994-10-20 21:37:45 +03:00
|
|
|
s = splbio();
|
1994-03-10 08:18:33 +03:00
|
|
|
wdcstart(wdc);
|
|
|
|
splx(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Unwedge the controller after an unexpected error. We do this by resetting
|
|
|
|
* it, marking all drives for recalibration, and stalling the queue for a short
|
|
|
|
* period to give the reset time to finish.
|
|
|
|
* NOTE: We use a timeout here, so this routine must not be called during
|
|
|
|
* autoconfig or dump.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
wdcunwedge(wdc)
|
|
|
|
struct wdc_softc *wdc;
|
|
|
|
{
|
1994-11-21 01:36:43 +03:00
|
|
|
int unit;
|
1994-03-10 08:18:33 +03:00
|
|
|
|
1994-10-20 21:37:45 +03:00
|
|
|
untimeout(wdctimeout, wdc);
|
1994-03-10 08:18:33 +03:00
|
|
|
(void) wdcreset(wdc);
|
|
|
|
|
|
|
|
/* Schedule recalibrate for all drives on this controller. */
|
1994-11-21 01:36:43 +03:00
|
|
|
for (unit = 0; unit < wdcd.cd_ndevs; unit++) {
|
|
|
|
struct wd_softc *wd = wdcd.cd_devs[unit];
|
1994-03-10 08:18:33 +03:00
|
|
|
if (!wd || (void *)wd->sc_dev.dv_parent != wdc)
|
|
|
|
continue;
|
1994-03-12 02:29:12 +03:00
|
|
|
if (wd->sc_state > RECAL)
|
|
|
|
wd->sc_state = RECAL;
|
1994-03-10 08:18:33 +03:00
|
|
|
}
|
|
|
|
|
1994-03-12 02:29:12 +03:00
|
|
|
wdc->sc_flags |= WDCF_ERROR;
|
1994-04-20 11:23:52 +04:00
|
|
|
++wdc->sc_errors;
|
1993-07-06 04:42:43 +04:00
|
|
|
|
1994-03-10 08:18:33 +03:00
|
|
|
/* Wake up in a little bit and restart the operation. */
|
1994-05-05 12:31:00 +04:00
|
|
|
timeout(wdcrestart, wdc, RECOVERYTIME);
|
1994-02-25 20:45:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1994-03-10 08:18:33 +03:00
|
|
|
wdcwait(wdc, mask)
|
|
|
|
struct wdc_softc *wdc;
|
1994-02-26 22:00:51 +03:00
|
|
|
int mask;
|
1994-02-25 20:45:28 +03:00
|
|
|
{
|
1994-11-19 00:57:40 +03:00
|
|
|
int iobase = wdc->sc_iobase;
|
1994-02-25 20:45:28 +03:00
|
|
|
int timeout = 0;
|
1994-03-07 08:54:44 +03:00
|
|
|
u_char status;
|
1994-08-15 12:22:20 +04:00
|
|
|
extern int cold;
|
1994-02-25 20:45:28 +03:00
|
|
|
|
|
|
|
for (;;) {
|
1994-08-15 12:22:20 +04:00
|
|
|
wdc->sc_status = status = inb(iobase+wd_status);
|
1994-11-22 08:34:49 +03:00
|
|
|
if ((status & WDCS_BSY) == 0 && (status & mask) == mask)
|
1994-03-03 04:58:21 +03:00
|
|
|
break;
|
1994-02-25 20:45:28 +03:00
|
|
|
if (++timeout > WDCNDELAY)
|
|
|
|
return -1;
|
1994-03-06 20:18:43 +03:00
|
|
|
delay(WDCDELAY);
|
1993-07-06 04:42:43 +04:00
|
|
|
}
|
1994-08-15 12:22:20 +04:00
|
|
|
if (status & WDCS_ERR) {
|
1994-03-10 08:18:33 +03:00
|
|
|
wdc->sc_error = inb(iobase+wd_error);
|
1994-08-15 12:22:20 +04:00
|
|
|
return WDCS_ERR;
|
|
|
|
}
|
1993-07-07 09:50:35 +04:00
|
|
|
#ifdef WDCNDELAY_DEBUG
|
1994-08-15 12:22:20 +04:00
|
|
|
/* After autoconfig, there should be no long delays. */
|
|
|
|
if (!cold && timeout > WDCNDELAY_DEBUG)
|
|
|
|
printf("%s: warning: busy-wait took %dus\n",
|
1994-03-13 01:36:40 +03:00
|
|
|
wdc->sc_dev.dv_xname, WDCDELAY * timeout);
|
1993-07-07 09:50:35 +04:00
|
|
|
#endif
|
1994-08-15 12:22:20 +04:00
|
|
|
return 0;
|
1993-07-06 04:42:43 +04:00
|
|
|
}
|
1993-12-13 13:16:56 +03:00
|
|
|
|
1994-03-05 11:17:06 +03:00
|
|
|
static void
|
1994-05-05 09:35:42 +04:00
|
|
|
wdctimeout(arg)
|
|
|
|
void *arg;
|
1993-12-13 13:16:56 +03:00
|
|
|
{
|
1994-05-05 09:35:42 +04:00
|
|
|
struct wdc_softc *wdc = (struct wdc_softc *)arg;
|
1994-10-20 21:37:45 +03:00
|
|
|
int s;
|
1994-03-10 08:18:33 +03:00
|
|
|
|
1994-10-20 21:37:45 +03:00
|
|
|
s = splbio();
|
|
|
|
wderror(wdc, NULL, "lost interrupt");
|
|
|
|
wdcunwedge(wdc);
|
1994-03-04 06:43:48 +03:00
|
|
|
splx(s);
|
1993-12-13 13:16:56 +03:00
|
|
|
}
|
1994-02-25 21:30:37 +03:00
|
|
|
|
1994-03-07 08:54:44 +03:00
|
|
|
static void
|
1994-03-10 08:18:33 +03:00
|
|
|
wderror(dev, bp, msg)
|
|
|
|
void *dev;
|
1994-03-07 08:54:44 +03:00
|
|
|
struct buf *bp;
|
|
|
|
char *msg;
|
|
|
|
{
|
1994-03-10 08:18:33 +03:00
|
|
|
struct wd_softc *wd = dev;
|
|
|
|
struct wdc_softc *wdc = dev;
|
|
|
|
|
1994-11-22 12:36:56 +03:00
|
|
|
if (bp) {
|
1994-10-20 16:44:46 +03:00
|
|
|
diskerr(bp, "wd", msg, LOG_PRINTF, wd->sc_skip,
|
|
|
|
&wd->sc_dk.dk_label);
|
1994-11-22 12:36:56 +03:00
|
|
|
printf("\n");
|
|
|
|
} else
|
1994-03-10 08:18:33 +03:00
|
|
|
printf("%s: %s: status %b error %b\n", wdc->sc_dev.dv_xname,
|
|
|
|
msg, wdc->sc_status, WDCS_BITS, wdc->sc_error, WDERR_BITS);
|
1994-03-07 08:54:44 +03:00
|
|
|
}
|