2000-07-06 03:31:12 +04:00
|
|
|
/* $NetBSD: sd.c,v 1.164 2000/07/05 23:31:13 thorpej Exp $ */
|
1994-06-29 10:39:25 +04:00
|
|
|
|
1998-08-17 04:49:01 +04:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Charles M. Hannum.
|
1994-03-29 08:29:20 +04:00
|
|
|
*
|
|
|
|
* 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:
|
1998-08-17 04:49:01 +04:00
|
|
|
* This product includes software developed by the NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
1994-03-29 08:29:20 +04:00
|
|
|
*
|
1998-08-17 04:49:01 +04:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. 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 FOUNDATION 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-03-29 08:29:20 +04:00
|
|
|
*/
|
|
|
|
|
1995-08-13 00:30:45 +04:00
|
|
|
/*
|
1994-03-29 08:29:20 +04:00
|
|
|
* Originally written by Julian Elischer (julian@dialix.oz.au)
|
1993-03-21 21:04:42 +03:00
|
|
|
* for TRW Financial Systems for use under the MACH(2.5) operating system.
|
|
|
|
*
|
|
|
|
* TRW Financial Systems, in accordance with their agreement with Carnegie
|
|
|
|
* Mellon University, makes this software available to CMU to distribute
|
|
|
|
* or use in any manner that they see fit as long as this message is kept with
|
|
|
|
* the software. For this reason TFS also grants any other persons or
|
|
|
|
* organisations permission to use or modify this software.
|
|
|
|
*
|
|
|
|
* TFS supplies this software to be publicly redistributed
|
|
|
|
* on the understanding that TFS is not responsible for the correct
|
|
|
|
* functioning of this software in any circumstances.
|
1993-05-20 07:46:09 +04:00
|
|
|
*
|
1994-03-29 08:29:20 +04:00
|
|
|
* Ported to run under 386BSD by Julian Elischer (julian@dialix.oz.au) Sept 1992
|
1993-03-21 21:04:42 +03:00
|
|
|
*/
|
|
|
|
|
1998-07-30 04:49:19 +04:00
|
|
|
#include "opt_scsi.h"
|
1997-10-13 04:46:08 +04:00
|
|
|
#include "rnd.h"
|
|
|
|
|
1993-12-17 10:56:32 +03:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
1995-01-23 21:17:22 +03:00
|
|
|
#include <sys/kernel.h>
|
1993-12-17 10:56:32 +03:00
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/ioctl.h>
|
1999-01-26 16:59:44 +03:00
|
|
|
#include <sys/scsiio.h>
|
1993-12-17 10:56:32 +03:00
|
|
|
#include <sys/buf.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/errno.h>
|
1994-03-29 08:29:20 +04:00
|
|
|
#include <sys/device.h>
|
1993-12-17 10:56:32 +03:00
|
|
|
#include <sys/disklabel.h>
|
1994-03-29 08:29:20 +04:00
|
|
|
#include <sys/disk.h>
|
1996-02-15 00:46:52 +03:00
|
|
|
#include <sys/proc.h>
|
1996-03-31 00:44:50 +03:00
|
|
|
#include <sys/conf.h>
|
1999-09-12 01:42:58 +04:00
|
|
|
#include <sys/vnode.h>
|
1997-10-13 04:46:08 +04:00
|
|
|
#if NRND > 0
|
1997-10-10 05:09:03 +04:00
|
|
|
#include <sys/rnd.h>
|
1997-10-13 04:46:08 +04:00
|
|
|
#endif
|
1993-12-17 10:56:32 +03:00
|
|
|
|
1997-08-27 15:22:52 +04:00
|
|
|
#include <dev/scsipi/scsipi_all.h>
|
|
|
|
#include <dev/scsipi/scsi_all.h>
|
|
|
|
#include <dev/scsipi/scsipi_disk.h>
|
1998-01-15 05:21:27 +03:00
|
|
|
#include <dev/scsipi/scsi_disk.h>
|
1997-08-27 15:22:52 +04:00
|
|
|
#include <dev/scsipi/scsiconf.h>
|
1998-01-15 05:21:27 +03:00
|
|
|
#include <dev/scsipi/sdvar.h>
|
|
|
|
|
|
|
|
#include "sd.h" /* NSD_SCSIBUS and NSD_ATAPIBUS come from here */
|
1993-04-12 12:19:28 +04:00
|
|
|
|
1997-09-20 22:56:30 +04:00
|
|
|
#ifndef SDOUTSTANDING
|
1996-03-26 23:32:06 +03:00
|
|
|
#define SDOUTSTANDING 4
|
1997-09-20 22:56:30 +04:00
|
|
|
#endif
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1994-10-14 21:26:22 +03:00
|
|
|
#define SDUNIT(dev) DISKUNIT(dev)
|
|
|
|
#define SDPART(dev) DISKPART(dev)
|
1999-09-21 07:10:00 +04:00
|
|
|
#define SDMINOR(unit, part) DISKMINOR(unit, part)
|
1994-10-14 21:26:22 +03:00
|
|
|
#define MAKESDDEV(maj, unit, part) MAKEDISKDEV(maj, unit, part)
|
|
|
|
|
|
|
|
#define SDLABELDEV(dev) (MAKESDDEV(major(dev), SDUNIT(dev), RAW_PART))
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1996-02-15 00:46:52 +03:00
|
|
|
int sdlock __P((struct sd_softc *));
|
|
|
|
void sdunlock __P((struct sd_softc *));
|
|
|
|
void sdminphys __P((struct buf *));
|
1997-10-09 03:05:22 +04:00
|
|
|
void sdgetdefaultlabel __P((struct sd_softc *, struct disklabel *));
|
1996-02-15 00:46:52 +03:00
|
|
|
void sdgetdisklabel __P((struct sd_softc *));
|
|
|
|
void sdstart __P((void *));
|
1997-08-27 15:22:52 +04:00
|
|
|
void sddone __P((struct scsipi_xfer *));
|
1998-08-15 05:10:54 +04:00
|
|
|
void sd_shutdown __P((void *));
|
1996-02-15 00:46:52 +03:00
|
|
|
int sd_reassign_blocks __P((struct sd_softc *, u_long));
|
1998-07-16 00:21:12 +04:00
|
|
|
int sd_interpret_sense __P((struct scsipi_xfer *));
|
1996-03-17 03:57:14 +03:00
|
|
|
|
1998-01-12 12:49:10 +03:00
|
|
|
extern struct cfdriver sd_cd;
|
1994-03-29 08:29:20 +04:00
|
|
|
|
|
|
|
struct dkdriver sddkdriver = { sdstrategy };
|
|
|
|
|
1997-08-27 15:22:52 +04:00
|
|
|
struct scsipi_device sd_switch = {
|
1998-07-16 00:21:12 +04:00
|
|
|
sd_interpret_sense, /* check our error handler first */
|
1994-03-29 08:29:20 +04:00
|
|
|
sdstart, /* have a queue, served by this */
|
|
|
|
NULL, /* have no async handler */
|
1996-01-08 01:01:38 +03:00
|
|
|
sddone, /* deal with stats at interrupt time */
|
1994-03-29 08:29:20 +04:00
|
|
|
};
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* The routine called by the low level scsi routine when it discovers
|
1994-03-29 08:29:20 +04:00
|
|
|
* a device suitable for this driver.
|
1993-04-12 12:19:28 +04:00
|
|
|
*/
|
1994-03-29 08:29:20 +04:00
|
|
|
void
|
1998-01-15 05:21:27 +03:00
|
|
|
sdattach(parent, sd, sc_link, ops)
|
|
|
|
struct device *parent;
|
|
|
|
struct sd_softc *sd;
|
|
|
|
struct scsipi_link *sc_link;
|
|
|
|
const struct sd_ops *ops;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1998-01-15 05:21:27 +03:00
|
|
|
int error, result;
|
1994-03-29 08:29:20 +04:00
|
|
|
struct disk_parms *dp = &sd->params;
|
1999-05-31 16:05:39 +04:00
|
|
|
char pbuf[9];
|
1993-04-12 12:19:28 +04:00
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
SC_DEBUG(sc_link, SDEV_DB2, ("sdattach: "));
|
1993-04-12 12:19:28 +04:00
|
|
|
|
2000-01-22 02:39:55 +03:00
|
|
|
BUFQ_INIT(&sd->buf_queue);
|
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
/*
|
|
|
|
* Store information needed to contact our base driver
|
|
|
|
*/
|
|
|
|
sd->sc_link = sc_link;
|
1998-01-15 05:21:27 +03:00
|
|
|
sd->sc_ops = ops;
|
1994-03-29 08:29:20 +04:00
|
|
|
sc_link->device = &sd_switch;
|
1994-11-21 13:39:09 +03:00
|
|
|
sc_link->device_softc = sd;
|
1994-12-28 22:42:47 +03:00
|
|
|
if (sc_link->openings > SDOUTSTANDING)
|
|
|
|
sc_link->openings = SDOUTSTANDING;
|
1994-03-29 08:29:20 +04:00
|
|
|
|
1995-12-07 22:11:32 +03:00
|
|
|
/*
|
1996-01-08 01:01:38 +03:00
|
|
|
* Initialize and attach the disk structure.
|
1995-12-07 22:11:32 +03:00
|
|
|
*/
|
1996-01-08 01:01:38 +03:00
|
|
|
sd->sc_dk.dk_driver = &sddkdriver;
|
|
|
|
sd->sc_dk.dk_name = sd->sc_dev.dv_xname;
|
|
|
|
disk_attach(&sd->sc_dk);
|
1995-12-07 22:11:32 +03:00
|
|
|
|
2000-05-16 09:45:44 +04:00
|
|
|
#ifdef __BROKEN_DK_ESTABLISH
|
1996-03-27 01:22:19 +03:00
|
|
|
dk_establish(&sd->sc_dk, &sd->sc_dev); /* XXX */
|
|
|
|
#endif
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* Use the subdriver to request information regarding
|
|
|
|
* the drive. We cannot use interrupts yet, so the
|
|
|
|
* request must specify this.
|
|
|
|
*/
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("\n");
|
1998-01-15 05:21:27 +03:00
|
|
|
|
1999-01-19 13:57:11 +03:00
|
|
|
error = scsipi_start(sd->sc_link, SSS_START,
|
1999-10-01 02:57:52 +04:00
|
|
|
XS_CTL_DISCOVERY | XS_CTL_IGNORE_ILLEGAL_REQUEST |
|
|
|
|
XS_CTL_IGNORE_MEDIA_CHANGE | XS_CTL_SILENT);
|
1996-10-23 11:25:39 +04:00
|
|
|
|
1998-01-15 05:21:27 +03:00
|
|
|
if (error)
|
|
|
|
result = SDGP_RESULT_OFFLINE;
|
1994-12-28 22:42:47 +03:00
|
|
|
else
|
1998-01-15 05:21:27 +03:00
|
|
|
result = (*sd->sc_ops->sdo_get_parms)(sd, &sd->params,
|
1999-10-01 02:57:52 +04:00
|
|
|
XS_CTL_DISCOVERY);
|
1998-01-15 05:21:27 +03:00
|
|
|
printf("%s: ", sd->sc_dev.dv_xname);
|
|
|
|
switch (result) {
|
|
|
|
case SDGP_RESULT_OK:
|
1999-05-31 16:05:39 +04:00
|
|
|
format_bytes(pbuf, sizeof(pbuf),
|
|
|
|
(u_int64_t)dp->disksize * dp->blksize);
|
|
|
|
printf(
|
|
|
|
"%s, %ld cyl, %ld head, %ld sec, %ld bytes/sect x %ld sectors",
|
|
|
|
pbuf, dp->cyls, dp->heads, dp->sectors, dp->blksize,
|
|
|
|
dp->disksize);
|
1998-01-15 05:21:27 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SDGP_RESULT_OFFLINE:
|
|
|
|
printf("drive offline");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SDGP_RESULT_UNFORMATTED:
|
|
|
|
printf("unformatted media");
|
|
|
|
break;
|
|
|
|
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
default:
|
|
|
|
panic("sdattach: unknown result from get_parms");
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
printf("\n");
|
1997-10-10 05:09:03 +04:00
|
|
|
|
1998-08-15 05:10:54 +04:00
|
|
|
/*
|
|
|
|
* Establish a shutdown hook so that we can ensure that
|
|
|
|
* our data has actually made it onto the platter at
|
|
|
|
* shutdown time. Note that this relies on the fact
|
|
|
|
* that the shutdown hook code puts us at the head of
|
|
|
|
* the list (thus guaranteeing that our hook runs before
|
|
|
|
* our ancestors').
|
|
|
|
*/
|
|
|
|
if ((sd->sc_sdhook =
|
|
|
|
shutdownhook_establish(sd_shutdown, sd)) == NULL)
|
|
|
|
printf("%s: WARNING: unable to establish shutdown hook\n",
|
|
|
|
sd->sc_dev.dv_xname);
|
|
|
|
|
1997-10-13 04:46:08 +04:00
|
|
|
#if NRND > 0
|
1997-10-10 05:09:03 +04:00
|
|
|
/*
|
|
|
|
* attach the device into the random source list
|
|
|
|
*/
|
1999-02-28 20:08:05 +03:00
|
|
|
rnd_attach_source(&sd->rnd_source, sd->sc_dev.dv_xname,
|
|
|
|
RND_TYPE_DISK, 0);
|
1997-10-13 04:46:08 +04:00
|
|
|
#endif
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
|
1999-09-12 01:42:58 +04:00
|
|
|
int
|
|
|
|
sdactivate(self, act)
|
|
|
|
struct device *self;
|
|
|
|
enum devact act;
|
|
|
|
{
|
|
|
|
int rv = 0;
|
|
|
|
|
|
|
|
switch (act) {
|
|
|
|
case DVACT_ACTIVATE:
|
|
|
|
rv = EOPNOTSUPP;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DVACT_DEACTIVATE:
|
|
|
|
/*
|
|
|
|
* Nothing to do; we key off the device's DVF_ACTIVE.
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return (rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
sddetach(self, flags)
|
|
|
|
struct device *self;
|
|
|
|
int flags;
|
|
|
|
{
|
|
|
|
struct sd_softc *sd = (struct sd_softc *) self;
|
|
|
|
struct buf *bp;
|
|
|
|
int s, bmaj, cmaj, mn;
|
|
|
|
|
|
|
|
/* locate the major number */
|
|
|
|
for (bmaj = 0; bmaj <= nblkdev; bmaj++)
|
|
|
|
if (bdevsw[bmaj].d_open == sdopen)
|
|
|
|
break;
|
|
|
|
for (cmaj = 0; cmaj <= nchrdev; cmaj++)
|
|
|
|
if (cdevsw[cmaj].d_open == sdopen)
|
|
|
|
break;
|
|
|
|
|
|
|
|
s = splbio();
|
|
|
|
|
|
|
|
/* Kill off any queued buffers. */
|
2000-01-22 02:39:55 +03:00
|
|
|
while ((bp = BUFQ_FIRST(&sd->buf_queue)) != NULL) {
|
|
|
|
BUFQ_REMOVE(&sd->buf_queue, bp);
|
1999-09-12 01:42:58 +04:00
|
|
|
bp->b_error = EIO;
|
|
|
|
bp->b_flags |= B_ERROR;
|
|
|
|
bp->b_resid = bp->b_bcount;
|
|
|
|
biodone(bp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Kill off any pending commands. */
|
|
|
|
scsipi_kill_pending(sd->sc_link);
|
|
|
|
|
|
|
|
splx(s);
|
|
|
|
|
2000-03-14 02:52:25 +03:00
|
|
|
/* Nuke the vnodes for any open instances */
|
1999-09-21 07:10:00 +04:00
|
|
|
mn = SDMINOR(self->dv_unit, 0);
|
1999-09-12 01:42:58 +04:00
|
|
|
vdevgone(bmaj, mn, mn + (MAXPARTITIONS - 1), VBLK);
|
|
|
|
vdevgone(cmaj, mn, mn + (MAXPARTITIONS - 1), VCHR);
|
|
|
|
|
|
|
|
/* Detach from the disk list. */
|
|
|
|
disk_detach(&sd->sc_dk);
|
|
|
|
|
|
|
|
/* Get rid of the shutdown hook. */
|
|
|
|
shutdownhook_disestablish(sd->sc_sdhook);
|
|
|
|
|
|
|
|
#if NRND > 0
|
|
|
|
/* Unhook the entropy source. */
|
|
|
|
rnd_detach_source(&sd->rnd_source);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1995-03-30 03:04:39 +04:00
|
|
|
/*
|
|
|
|
* Wait interruptibly for an exclusive lock.
|
|
|
|
*
|
|
|
|
* XXX
|
|
|
|
* Several drivers do this; it should be abstracted and made MP-safe.
|
|
|
|
*/
|
1995-03-23 14:33:18 +03:00
|
|
|
int
|
1995-03-30 03:04:39 +04:00
|
|
|
sdlock(sd)
|
1995-03-23 14:33:18 +03:00
|
|
|
struct sd_softc *sd;
|
|
|
|
{
|
|
|
|
int error;
|
|
|
|
|
|
|
|
while ((sd->flags & SDF_LOCKED) != 0) {
|
|
|
|
sd->flags |= SDF_WANTED;
|
|
|
|
if ((error = tsleep(sd, PRIBIO | PCATCH, "sdlck", 0)) != 0)
|
1997-10-01 05:18:38 +04:00
|
|
|
return (error);
|
1995-03-23 14:33:18 +03:00
|
|
|
}
|
1995-03-30 03:04:39 +04:00
|
|
|
sd->flags |= SDF_LOCKED;
|
1997-10-01 05:18:38 +04:00
|
|
|
return (0);
|
1995-03-23 14:33:18 +03:00
|
|
|
}
|
|
|
|
|
1995-03-30 03:04:39 +04:00
|
|
|
/*
|
|
|
|
* Unlock and wake up any waiters.
|
|
|
|
*/
|
1995-03-23 14:33:18 +03:00
|
|
|
void
|
|
|
|
sdunlock(sd)
|
|
|
|
struct sd_softc *sd;
|
|
|
|
{
|
|
|
|
|
|
|
|
sd->flags &= ~SDF_LOCKED;
|
|
|
|
if ((sd->flags & SDF_WANTED) != 0) {
|
|
|
|
sd->flags &= ~SDF_WANTED;
|
|
|
|
wakeup(sd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
1994-03-29 08:29:20 +04:00
|
|
|
* open the device. Make sure the partition info is a up-to-date as can be.
|
1993-04-12 12:19:28 +04:00
|
|
|
*/
|
|
|
|
int
|
1996-02-15 00:46:52 +03:00
|
|
|
sdopen(dev, flag, fmt, p)
|
1994-03-29 08:29:20 +04:00
|
|
|
dev_t dev;
|
1994-10-20 16:33:36 +03:00
|
|
|
int flag, fmt;
|
1996-02-15 00:46:52 +03:00
|
|
|
struct proc *p;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1994-12-28 22:42:47 +03:00
|
|
|
struct sd_softc *sd;
|
1997-08-27 15:22:52 +04:00
|
|
|
struct scsipi_link *sc_link;
|
1995-03-30 03:04:39 +04:00
|
|
|
int unit, part;
|
|
|
|
int error;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
unit = SDUNIT(dev);
|
1996-03-17 03:57:14 +03:00
|
|
|
if (unit >= sd_cd.cd_ndevs)
|
1997-10-01 05:18:38 +04:00
|
|
|
return (ENXIO);
|
1996-03-17 03:57:14 +03:00
|
|
|
sd = sd_cd.cd_devs[unit];
|
1997-06-19 00:38:59 +04:00
|
|
|
if (sd == NULL)
|
1997-10-01 05:18:38 +04:00
|
|
|
return (ENXIO);
|
1993-04-12 12:19:28 +04:00
|
|
|
|
1999-09-12 01:42:58 +04:00
|
|
|
if ((sd->sc_dev.dv_flags & DVF_ACTIVE) == 0)
|
|
|
|
return (ENODEV);
|
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
sc_link = sd->sc_link;
|
1999-01-26 16:59:44 +03:00
|
|
|
part = SDPART(dev);
|
1994-03-29 08:29:20 +04:00
|
|
|
|
|
|
|
SC_DEBUG(sc_link, SDEV_DB1,
|
1996-05-05 23:52:50 +04:00
|
|
|
("sdopen: dev=0x%x (unit %d (of %d), partition %d)\n", dev, unit,
|
1999-01-26 16:59:44 +03:00
|
|
|
sd_cd.cd_ndevs, part));
|
1994-03-29 08:29:20 +04:00
|
|
|
|
1998-11-20 03:35:39 +03:00
|
|
|
/*
|
|
|
|
* If this is the first open of this device, add a reference
|
|
|
|
* to the adapter.
|
|
|
|
*/
|
|
|
|
if (sd->sc_dk.dk_openmask == 0 &&
|
|
|
|
(error = scsipi_adapter_addref(sc_link)) != 0)
|
1997-10-01 05:18:38 +04:00
|
|
|
return (error);
|
1994-11-21 01:36:43 +03:00
|
|
|
|
1998-11-20 03:35:39 +03:00
|
|
|
if ((error = sdlock(sd)) != 0)
|
|
|
|
goto bad4;
|
|
|
|
|
1999-01-26 16:59:44 +03:00
|
|
|
if ((sc_link->flags & SDEV_OPEN) != 0) {
|
1994-11-22 06:23:49 +03:00
|
|
|
/*
|
|
|
|
* If any partition is open, but the disk has been invalidated,
|
1999-01-26 16:59:44 +03:00
|
|
|
* disallow further opens of non-raw partition
|
1994-11-22 06:23:49 +03:00
|
|
|
*/
|
1999-01-26 16:59:44 +03:00
|
|
|
if ((sc_link->flags & SDEV_MEDIA_LOADED) == 0 &&
|
1999-01-29 14:17:58 +03:00
|
|
|
(part != RAW_PART || fmt != S_IFCHR)) {
|
1995-04-01 14:29:41 +04:00
|
|
|
error = EIO;
|
|
|
|
goto bad3;
|
|
|
|
}
|
1994-11-22 06:23:49 +03:00
|
|
|
} else {
|
1995-01-26 14:56:51 +03:00
|
|
|
/* Check that it is still responding and ok. */
|
1997-08-27 15:22:52 +04:00
|
|
|
error = scsipi_test_unit_ready(sc_link,
|
1999-10-01 02:57:52 +04:00
|
|
|
XS_CTL_IGNORE_ILLEGAL_REQUEST | XS_CTL_IGNORE_MEDIA_CHANGE |
|
|
|
|
XS_CTL_IGNORE_NOT_READY);
|
1996-02-15 00:46:52 +03:00
|
|
|
if (error)
|
1995-01-30 14:34:25 +03:00
|
|
|
goto bad3;
|
1994-11-21 01:36:43 +03:00
|
|
|
|
1999-01-26 16:59:44 +03:00
|
|
|
/*
|
|
|
|
* Start the pack spinning if necessary. Always allow the
|
|
|
|
* raw parition to be opened, for raw IOCTLs. Data transfers
|
|
|
|
* will check for SDEV_MEDIA_LOADED.
|
|
|
|
*/
|
1999-01-19 13:57:11 +03:00
|
|
|
error = scsipi_start(sc_link, SSS_START,
|
1999-10-01 02:57:52 +04:00
|
|
|
XS_CTL_IGNORE_ILLEGAL_REQUEST |
|
|
|
|
XS_CTL_IGNORE_MEDIA_CHANGE | XS_CTL_SILENT);
|
1999-01-26 16:59:44 +03:00
|
|
|
if (error) {
|
1999-01-29 14:17:58 +03:00
|
|
|
if (part != RAW_PART || fmt != S_IFCHR)
|
1999-01-26 16:59:44 +03:00
|
|
|
goto bad3;
|
|
|
|
else
|
|
|
|
goto out;
|
|
|
|
}
|
1995-01-30 14:34:25 +03:00
|
|
|
|
|
|
|
sc_link->flags |= SDEV_OPEN;
|
|
|
|
|
|
|
|
/* Lock the pack in. */
|
1997-08-27 15:22:52 +04:00
|
|
|
error = scsipi_prevent(sc_link, PR_PREVENT,
|
1999-10-01 02:57:52 +04:00
|
|
|
XS_CTL_IGNORE_ILLEGAL_REQUEST | XS_CTL_IGNORE_MEDIA_CHANGE);
|
1996-02-15 00:46:52 +03:00
|
|
|
if (error)
|
1995-01-23 21:17:22 +03:00
|
|
|
goto bad;
|
|
|
|
|
1994-11-21 01:36:43 +03:00
|
|
|
if ((sc_link->flags & SDEV_MEDIA_LOADED) == 0) {
|
|
|
|
sc_link->flags |= SDEV_MEDIA_LOADED;
|
|
|
|
|
1998-01-15 05:21:27 +03:00
|
|
|
/*
|
|
|
|
* Load the physical device parameters.
|
|
|
|
*
|
|
|
|
* Note that if media is present but unformatted,
|
|
|
|
* we allow the open (so that it can be formatted!).
|
|
|
|
* The drive should refuse real I/O, if the media is
|
|
|
|
* unformatted.
|
|
|
|
*/
|
|
|
|
if ((*sd->sc_ops->sdo_get_parms)(sd, &sd->params,
|
|
|
|
0) == SDGP_RESULT_OFFLINE) {
|
1994-11-21 01:36:43 +03:00
|
|
|
error = ENXIO;
|
|
|
|
goto bad2;
|
|
|
|
}
|
|
|
|
SC_DEBUG(sc_link, SDEV_DB3, ("Params loaded "));
|
|
|
|
|
|
|
|
/* Load the partition info if not already loaded. */
|
|
|
|
sdgetdisklabel(sd);
|
|
|
|
SC_DEBUG(sc_link, SDEV_DB3, ("Disklabel loaded "));
|
|
|
|
}
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
|
1994-11-22 06:23:49 +03:00
|
|
|
/* Check that the partition exists. */
|
1994-10-20 16:33:36 +03:00
|
|
|
if (part != RAW_PART &&
|
1996-01-08 01:01:38 +03:00
|
|
|
(part >= sd->sc_dk.dk_label->d_npartitions ||
|
|
|
|
sd->sc_dk.dk_label->d_partitions[part].p_fstype == FS_UNUSED)) {
|
1994-03-29 08:29:20 +04:00
|
|
|
error = ENXIO;
|
|
|
|
goto bad;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
|
1999-01-26 16:59:44 +03:00
|
|
|
out: /* Insure only one open at a time. */
|
1994-10-20 16:33:36 +03:00
|
|
|
switch (fmt) {
|
|
|
|
case S_IFCHR:
|
1994-10-20 17:08:07 +03:00
|
|
|
sd->sc_dk.dk_copenmask |= (1 << part);
|
1994-10-20 16:33:36 +03:00
|
|
|
break;
|
|
|
|
case S_IFBLK:
|
1994-10-20 17:08:07 +03:00
|
|
|
sd->sc_dk.dk_bopenmask |= (1 << part);
|
1994-10-20 16:33:36 +03:00
|
|
|
break;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1997-10-01 05:18:38 +04:00
|
|
|
sd->sc_dk.dk_openmask =
|
|
|
|
sd->sc_dk.dk_copenmask | sd->sc_dk.dk_bopenmask;
|
1994-10-20 16:33:36 +03:00
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
SC_DEBUG(sc_link, SDEV_DB3, ("open complete\n"));
|
1995-03-30 03:04:39 +04:00
|
|
|
sdunlock(sd);
|
1997-10-01 05:18:38 +04:00
|
|
|
return (0);
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1994-11-21 01:36:43 +03:00
|
|
|
bad2:
|
|
|
|
sc_link->flags &= ~SDEV_MEDIA_LOADED;
|
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
bad:
|
1994-10-20 17:08:07 +03:00
|
|
|
if (sd->sc_dk.dk_openmask == 0) {
|
1997-08-27 15:22:52 +04:00
|
|
|
scsipi_prevent(sc_link, PR_ALLOW,
|
1999-10-01 02:57:52 +04:00
|
|
|
XS_CTL_IGNORE_ILLEGAL_REQUEST | XS_CTL_IGNORE_MEDIA_CHANGE);
|
1994-03-29 08:29:20 +04:00
|
|
|
sc_link->flags &= ~SDEV_OPEN;
|
1994-11-21 01:36:43 +03:00
|
|
|
}
|
|
|
|
|
1995-03-30 03:04:39 +04:00
|
|
|
bad3:
|
|
|
|
sdunlock(sd);
|
1998-11-20 03:35:39 +03:00
|
|
|
bad4:
|
|
|
|
if (sd->sc_dk.dk_openmask == 0)
|
|
|
|
scsipi_adapter_delref(sc_link);
|
1997-10-01 05:18:38 +04:00
|
|
|
return (error);
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
1994-03-29 08:29:20 +04:00
|
|
|
* close the device.. only called if we are the LAST occurence of an open
|
|
|
|
* device. Convenient now but usually a pain.
|
1993-04-12 12:19:28 +04:00
|
|
|
*/
|
1996-02-15 00:46:52 +03:00
|
|
|
int
|
|
|
|
sdclose(dev, flag, fmt, p)
|
1994-03-29 08:29:20 +04:00
|
|
|
dev_t dev;
|
1994-10-20 16:33:36 +03:00
|
|
|
int flag, fmt;
|
1996-02-15 00:46:52 +03:00
|
|
|
struct proc *p;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1996-03-17 03:57:14 +03:00
|
|
|
struct sd_softc *sd = sd_cd.cd_devs[SDUNIT(dev)];
|
1994-10-20 16:33:36 +03:00
|
|
|
int part = SDPART(dev);
|
1995-03-30 03:04:39 +04:00
|
|
|
int error;
|
|
|
|
|
1996-02-15 00:46:52 +03:00
|
|
|
if ((error = sdlock(sd)) != 0)
|
1997-10-01 05:18:38 +04:00
|
|
|
return (error);
|
1994-10-20 16:33:36 +03:00
|
|
|
|
|
|
|
switch (fmt) {
|
|
|
|
case S_IFCHR:
|
1994-10-20 17:08:07 +03:00
|
|
|
sd->sc_dk.dk_copenmask &= ~(1 << part);
|
1994-10-20 16:33:36 +03:00
|
|
|
break;
|
|
|
|
case S_IFBLK:
|
1994-10-20 17:08:07 +03:00
|
|
|
sd->sc_dk.dk_bopenmask &= ~(1 << part);
|
1994-10-20 16:33:36 +03:00
|
|
|
break;
|
|
|
|
}
|
1997-10-01 05:18:38 +04:00
|
|
|
sd->sc_dk.dk_openmask =
|
|
|
|
sd->sc_dk.dk_copenmask | sd->sc_dk.dk_bopenmask;
|
1994-03-29 08:29:20 +04:00
|
|
|
|
1994-10-20 17:08:07 +03:00
|
|
|
if (sd->sc_dk.dk_openmask == 0) {
|
1998-08-15 05:10:54 +04:00
|
|
|
/*
|
|
|
|
* If the disk cache needs flushing, and the disk supports
|
|
|
|
* it, do it now.
|
|
|
|
*/
|
|
|
|
if ((sd->flags & SDF_DIRTY) != 0 &&
|
1999-08-26 13:28:17 +04:00
|
|
|
sd->sc_ops->sdo_flush != NULL) {
|
|
|
|
if ((*sd->sc_ops->sdo_flush)(sd, 0)) {
|
|
|
|
printf("%s: cache synchronization failed\n",
|
|
|
|
sd->sc_dev.dv_xname);
|
|
|
|
sd->flags &= ~SDF_FLUSHING;
|
|
|
|
} else
|
|
|
|
sd->flags &= ~(SDF_FLUSHING|SDF_DIRTY);
|
|
|
|
}
|
1998-08-15 05:10:54 +04:00
|
|
|
|
1998-12-08 03:18:46 +03:00
|
|
|
scsipi_wait_drain(sd->sc_link);
|
1994-11-22 06:23:49 +03:00
|
|
|
|
1997-08-27 15:22:52 +04:00
|
|
|
scsipi_prevent(sd->sc_link, PR_ALLOW,
|
1999-10-01 02:57:52 +04:00
|
|
|
XS_CTL_IGNORE_ILLEGAL_REQUEST | XS_CTL_IGNORE_NOT_READY);
|
1999-01-26 16:59:44 +03:00
|
|
|
sd->sc_link->flags &= ~SDEV_OPEN;
|
1998-11-20 03:35:39 +03:00
|
|
|
|
1999-12-24 00:23:19 +03:00
|
|
|
if (! (sd->sc_link->flags & SDEV_KEEP_LABEL))
|
|
|
|
sd->sc_link->flags &= ~SDEV_MEDIA_LOADED;
|
|
|
|
|
1998-12-08 03:18:46 +03:00
|
|
|
scsipi_wait_drain(sd->sc_link);
|
|
|
|
|
1998-11-20 03:35:39 +03:00
|
|
|
scsipi_adapter_delref(sd->sc_link);
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1994-11-22 06:23:49 +03:00
|
|
|
|
1995-03-30 03:04:39 +04:00
|
|
|
sdunlock(sd);
|
1997-10-01 05:18:38 +04:00
|
|
|
return (0);
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
1994-03-29 08:29:20 +04:00
|
|
|
* Actually translate the requested transfer into one the physical driver
|
|
|
|
* can understand. The transfer is described by a buf and will include
|
1993-04-12 12:19:28 +04:00
|
|
|
* only one physical transfer.
|
|
|
|
*/
|
1995-08-13 00:30:45 +04:00
|
|
|
void
|
1994-03-29 08:29:20 +04:00
|
|
|
sdstrategy(bp)
|
|
|
|
struct buf *bp;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1996-03-17 03:57:14 +03:00
|
|
|
struct sd_softc *sd = sd_cd.cd_devs[SDUNIT(bp->b_dev)];
|
2000-02-07 23:16:47 +03:00
|
|
|
struct disklabel *lp;
|
|
|
|
daddr_t blkno;
|
1995-08-13 02:58:01 +04:00
|
|
|
int s;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
SC_DEBUG(sd->sc_link, SDEV_DB2, ("sdstrategy "));
|
|
|
|
SC_DEBUG(sd->sc_link, SDEV_DB1,
|
1996-05-03 23:48:20 +04:00
|
|
|
("%ld bytes @ blk %d\n", bp->b_bcount, bp->b_blkno));
|
1995-10-10 05:52:56 +03:00
|
|
|
/*
|
1999-01-26 16:59:44 +03:00
|
|
|
* If the device has been made invalid, error out
|
1995-10-10 05:52:56 +03:00
|
|
|
*/
|
1999-09-12 01:42:58 +04:00
|
|
|
if ((sd->sc_link->flags & SDEV_MEDIA_LOADED) == 0 ||
|
|
|
|
(sd->sc_dev.dv_flags & DVF_ACTIVE) == 0) {
|
1999-01-29 14:17:58 +03:00
|
|
|
if (sd->sc_link->flags & SDEV_OPEN)
|
|
|
|
bp->b_error = EIO;
|
|
|
|
else
|
|
|
|
bp->b_error = ENODEV;
|
1995-10-10 05:52:56 +03:00
|
|
|
goto bad;
|
|
|
|
}
|
2000-02-07 23:16:47 +03:00
|
|
|
|
|
|
|
lp = sd->sc_dk.dk_label;
|
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
/*
|
1999-02-10 15:29:50 +03:00
|
|
|
* The transfer must be a whole number of blocks, offset must not be
|
|
|
|
* negative.
|
1994-03-29 08:29:20 +04:00
|
|
|
*/
|
2000-02-07 23:16:47 +03:00
|
|
|
if ((bp->b_bcount % lp->d_secsize) != 0 ||
|
1999-02-10 15:29:50 +03:00
|
|
|
bp->b_blkno < 0) {
|
1999-01-26 16:59:44 +03:00
|
|
|
bp->b_error = EINVAL;
|
1993-03-21 21:04:42 +03:00
|
|
|
goto bad;
|
|
|
|
}
|
1994-03-29 08:29:20 +04:00
|
|
|
/*
|
|
|
|
* If it's a null transfer, return immediatly
|
|
|
|
*/
|
1993-03-21 21:04:42 +03:00
|
|
|
if (bp->b_bcount == 0)
|
|
|
|
goto done;
|
1995-01-13 13:46:32 +03:00
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
1995-01-13 13:46:32 +03:00
|
|
|
* Do bounds checking, adjust transfer. if error, process.
|
|
|
|
* If end of partition, just return.
|
1993-04-12 12:19:28 +04:00
|
|
|
*/
|
1995-04-15 09:01:26 +04:00
|
|
|
if (SDPART(bp->b_dev) != RAW_PART &&
|
2000-02-07 23:16:47 +03:00
|
|
|
bounds_check_with_label(bp, lp,
|
1995-03-23 14:33:18 +03:00
|
|
|
(sd->flags & (SDF_WLABEL|SDF_LABELLING)) != 0) <= 0)
|
1995-01-13 13:46:32 +03:00
|
|
|
goto done;
|
1994-10-20 16:33:36 +03:00
|
|
|
|
2000-02-07 23:16:47 +03:00
|
|
|
/*
|
|
|
|
* Now convert the block number to absolute and put it in
|
|
|
|
* terms of the device's logical block size.
|
|
|
|
*/
|
|
|
|
if (lp->d_secsize >= DEV_BSIZE)
|
|
|
|
blkno = bp->b_blkno / (lp->d_secsize / DEV_BSIZE);
|
|
|
|
else
|
|
|
|
blkno = bp->b_blkno * (DEV_BSIZE / lp->d_secsize);
|
|
|
|
|
|
|
|
if (SDPART(bp->b_dev) != RAW_PART)
|
|
|
|
blkno += lp->d_partitions[SDPART(bp->b_dev)].p_offset;
|
|
|
|
|
|
|
|
bp->b_rawblkno = blkno;
|
|
|
|
|
1995-08-13 02:58:01 +04:00
|
|
|
s = splbio();
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
/*
|
|
|
|
* Place it in the queue of disk activities for this disk
|
|
|
|
*/
|
2000-01-22 02:39:55 +03:00
|
|
|
disksort_blkno(&sd->buf_queue, bp);
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* Tell the device to get going on the transfer if it's
|
|
|
|
* not doing anything, otherwise just wait for completion
|
|
|
|
*/
|
1994-11-21 13:39:09 +03:00
|
|
|
sdstart(sd);
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1995-08-13 02:58:01 +04:00
|
|
|
splx(s);
|
1993-03-21 21:04:42 +03:00
|
|
|
return;
|
1994-03-29 08:29:20 +04:00
|
|
|
|
1993-03-21 21:04:42 +03:00
|
|
|
bad:
|
|
|
|
bp->b_flags |= B_ERROR;
|
|
|
|
done:
|
1994-03-29 08:29:20 +04:00
|
|
|
/*
|
|
|
|
* Correctly set the buf to indicate a completed xfer
|
|
|
|
*/
|
|
|
|
bp->b_resid = bp->b_bcount;
|
1993-03-21 21:04:42 +03:00
|
|
|
biodone(bp);
|
|
|
|
}
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* sdstart looks to see if there is a buf waiting for the device
|
|
|
|
* and that the device is not already busy. If both are true,
|
1994-03-29 08:29:20 +04:00
|
|
|
* It dequeues the buf and creates a scsi command to perform the
|
1997-08-27 15:22:52 +04:00
|
|
|
* transfer in the buf. The transfer request will call scsipi_done
|
1993-04-12 12:19:28 +04:00
|
|
|
* on completion, which will in turn call this routine again
|
|
|
|
* so that the next queued transfer is performed.
|
|
|
|
* The bufs are queued by the strategy routine (sdstrategy)
|
1994-03-29 08:29:20 +04:00
|
|
|
*
|
1993-04-12 12:19:28 +04:00
|
|
|
* This routine is also called after other non-queued requests
|
|
|
|
* have been made of the scsi driver, to ensure that the queue
|
|
|
|
* continues to be drained.
|
1994-03-29 08:29:20 +04:00
|
|
|
*
|
1993-04-12 12:19:28 +04:00
|
|
|
* must be called at the correct (highish) spl level
|
1997-08-27 15:22:52 +04:00
|
|
|
* sdstart() is called at splbio from sdstrategy and scsipi_done
|
1993-04-12 12:19:28 +04:00
|
|
|
*/
|
1996-02-15 00:46:52 +03:00
|
|
|
void
|
|
|
|
sdstart(v)
|
2000-03-30 04:00:55 +04:00
|
|
|
void *v;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
2000-03-30 04:00:55 +04:00
|
|
|
struct sd_softc *sd = v;
|
|
|
|
struct scsipi_link *sc_link = sd->sc_link;
|
1997-10-01 05:18:38 +04:00
|
|
|
struct disklabel *lp = sd->sc_dk.dk_label;
|
1994-03-29 08:29:20 +04:00
|
|
|
struct buf *bp = 0;
|
1997-08-27 15:22:52 +04:00
|
|
|
struct scsipi_rw_big cmd_big;
|
1998-01-15 05:21:27 +03:00
|
|
|
#if NSD_SCSIBUS > 0
|
1995-12-07 22:11:32 +03:00
|
|
|
struct scsi_rw cmd_small;
|
1998-01-15 05:21:27 +03:00
|
|
|
#endif
|
1997-08-27 15:22:52 +04:00
|
|
|
struct scsipi_generic *cmdp;
|
2000-02-07 23:16:47 +03:00
|
|
|
int nblks, cmdlen, error;
|
1993-04-12 12:19:28 +04:00
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
SC_DEBUG(sc_link, SDEV_DB2, ("sdstart "));
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
1994-03-29 08:29:20 +04:00
|
|
|
* Check if the device has room for another command
|
1993-04-12 12:19:28 +04:00
|
|
|
*/
|
1999-10-01 02:57:52 +04:00
|
|
|
while (sc_link->active < sc_link->openings) {
|
1994-03-29 08:29:20 +04:00
|
|
|
/*
|
1995-08-13 00:30:45 +04:00
|
|
|
* there is excess capacity, but a special waits
|
1994-03-29 08:29:20 +04:00
|
|
|
* It'll need the adapter as soon as we clear out of the
|
|
|
|
* way and let it run (user level wait).
|
|
|
|
*/
|
|
|
|
if (sc_link->flags & SDEV_WAITING) {
|
|
|
|
sc_link->flags &= ~SDEV_WAITING;
|
|
|
|
wakeup((caddr_t)sc_link);
|
|
|
|
return;
|
|
|
|
}
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
/*
|
|
|
|
* See if there is a buf with work for us to do..
|
|
|
|
*/
|
2000-01-22 02:39:55 +03:00
|
|
|
if ((bp = BUFQ_FIRST(&sd->buf_queue)) == NULL)
|
1994-03-29 08:29:20 +04:00
|
|
|
return;
|
2000-01-22 02:39:55 +03:00
|
|
|
BUFQ_REMOVE(&sd->buf_queue, bp);
|
1993-04-12 12:19:28 +04:00
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
/*
|
|
|
|
* If the device has become invalid, abort all the
|
|
|
|
* reads and writes until all files have been closed and
|
1994-12-28 22:42:47 +03:00
|
|
|
* re-opened
|
1994-03-29 08:29:20 +04:00
|
|
|
*/
|
1995-03-23 14:33:18 +03:00
|
|
|
if ((sc_link->flags & SDEV_MEDIA_LOADED) == 0) {
|
1994-06-16 19:57:39 +04:00
|
|
|
bp->b_error = EIO;
|
|
|
|
bp->b_flags |= B_ERROR;
|
1997-02-22 02:03:25 +03:00
|
|
|
bp->b_resid = bp->b_bcount;
|
1994-06-16 19:57:39 +04:00
|
|
|
biodone(bp);
|
|
|
|
continue;
|
1994-03-29 08:29:20 +04:00
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
/*
|
2000-02-07 23:16:47 +03:00
|
|
|
* We have a buf, now we should make a command.
|
1994-03-29 08:29:20 +04:00
|
|
|
*/
|
2000-02-07 23:16:47 +03:00
|
|
|
|
1997-10-01 05:18:38 +04:00
|
|
|
nblks = howmany(bp->b_bcount, lp->d_secsize);
|
1993-04-12 12:19:28 +04:00
|
|
|
|
1998-01-15 05:21:27 +03:00
|
|
|
#if NSD_SCSIBUS > 0
|
1994-03-29 08:29:20 +04:00
|
|
|
/*
|
1995-12-07 22:11:32 +03:00
|
|
|
* Fill out the scsi command. If the transfer will
|
|
|
|
* fit in a "small" cdb, use it.
|
1994-03-29 08:29:20 +04:00
|
|
|
*/
|
2000-02-07 23:16:47 +03:00
|
|
|
if (((bp->b_rawblkno & 0x1fffff) == bp->b_rawblkno) &&
|
2000-05-30 05:08:23 +04:00
|
|
|
((nblks & 0xff) == nblks) && sc_link->type == BUS_SCSI &&
|
|
|
|
!(sc_link->quirks & SDEV_ONLYBIG)) {
|
1995-12-07 22:11:32 +03:00
|
|
|
/*
|
|
|
|
* We can fit in a small cdb.
|
|
|
|
*/
|
|
|
|
bzero(&cmd_small, sizeof(cmd_small));
|
|
|
|
cmd_small.opcode = (bp->b_flags & B_READ) ?
|
1997-08-27 15:22:52 +04:00
|
|
|
SCSI_READ_COMMAND : SCSI_WRITE_COMMAND;
|
2000-02-07 23:16:47 +03:00
|
|
|
_lto3b(bp->b_rawblkno, cmd_small.addr);
|
1995-12-07 22:11:32 +03:00
|
|
|
cmd_small.length = nblks & 0xff;
|
|
|
|
cmdlen = sizeof(cmd_small);
|
1997-08-27 15:22:52 +04:00
|
|
|
cmdp = (struct scsipi_generic *)&cmd_small;
|
1998-01-15 05:21:27 +03:00
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
1995-12-07 22:11:32 +03:00
|
|
|
/*
|
|
|
|
* Need a large cdb.
|
|
|
|
*/
|
|
|
|
bzero(&cmd_big, sizeof(cmd_big));
|
|
|
|
cmd_big.opcode = (bp->b_flags & B_READ) ?
|
|
|
|
READ_BIG : WRITE_BIG;
|
2000-02-07 23:16:47 +03:00
|
|
|
_lto4b(bp->b_rawblkno, cmd_big.addr);
|
1996-03-19 06:05:15 +03:00
|
|
|
_lto2b(nblks, cmd_big.length);
|
1995-12-07 22:11:32 +03:00
|
|
|
cmdlen = sizeof(cmd_big);
|
1997-08-27 15:22:52 +04:00
|
|
|
cmdp = (struct scsipi_generic *)&cmd_big;
|
1995-12-07 22:11:32 +03:00
|
|
|
}
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1996-01-08 01:01:38 +03:00
|
|
|
/* Instrumentation. */
|
|
|
|
disk_busy(&sd->sc_dk);
|
|
|
|
|
1998-08-15 05:10:54 +04:00
|
|
|
/*
|
|
|
|
* Mark the disk dirty so that the cache will be
|
|
|
|
* flushed on close.
|
|
|
|
*/
|
1998-08-17 23:30:38 +04:00
|
|
|
if ((bp->b_flags & B_READ) == 0)
|
|
|
|
sd->flags |= SDF_DIRTY;
|
1998-08-15 05:10:54 +04:00
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
/*
|
|
|
|
* Call the routine that chats with the adapter.
|
|
|
|
* Note: we cannot sleep as we may be an interrupt
|
1999-10-01 02:57:52 +04:00
|
|
|
* XXX Really need NOSLEEP?
|
1994-03-29 08:29:20 +04:00
|
|
|
*/
|
1997-10-18 23:50:51 +04:00
|
|
|
error = scsipi_command(sc_link, cmdp, cmdlen,
|
1995-12-07 22:11:32 +03:00
|
|
|
(u_char *)bp->b_data, bp->b_bcount,
|
1999-10-01 02:57:52 +04:00
|
|
|
SDRETRIES, 60000, bp, XS_CTL_NOSLEEP | XS_CTL_ASYNC |
|
|
|
|
((bp->b_flags & B_READ) ?
|
|
|
|
XS_CTL_DATA_IN : XS_CTL_DATA_OUT));
|
1998-07-31 03:57:07 +04:00
|
|
|
if (error) {
|
1998-07-31 04:42:31 +04:00
|
|
|
disk_unbusy(&sd->sc_dk, 0);
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("%s: not queued, error %d\n",
|
1996-05-14 04:10:37 +04:00
|
|
|
sd->sc_dev.dv_xname, error);
|
1998-07-31 03:57:07 +04:00
|
|
|
}
|
1994-03-29 08:29:20 +04:00
|
|
|
}
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
|
1997-04-02 06:29:30 +04:00
|
|
|
void
|
|
|
|
sddone(xs)
|
1997-08-27 15:22:52 +04:00
|
|
|
struct scsipi_xfer *xs;
|
1996-01-08 01:01:38 +03:00
|
|
|
{
|
|
|
|
struct sd_softc *sd = xs->sc_link->device_softc;
|
|
|
|
|
1998-08-15 05:10:54 +04:00
|
|
|
if (sd->flags & SDF_FLUSHING) {
|
|
|
|
/* Flush completed, no longer dirty. */
|
|
|
|
sd->flags &= ~(SDF_FLUSHING|SDF_DIRTY);
|
|
|
|
}
|
2000-05-23 14:20:14 +04:00
|
|
|
if (sd->flags & SDF_RESTART) {
|
|
|
|
sd->flags &= ~SDF_RESTART;
|
|
|
|
return;
|
|
|
|
}
|
1998-08-15 05:10:54 +04:00
|
|
|
|
1997-10-10 05:09:03 +04:00
|
|
|
if (xs->bp != NULL) {
|
1997-04-02 06:29:30 +04:00
|
|
|
disk_unbusy(&sd->sc_dk, xs->bp->b_bcount - xs->bp->b_resid);
|
1997-10-13 04:46:08 +04:00
|
|
|
#if NRND > 0
|
2000-02-07 23:16:47 +03:00
|
|
|
rnd_add_uint32(&sd->rnd_source, xs->bp->b_rawblkno);
|
1997-10-13 04:46:08 +04:00
|
|
|
#endif
|
1997-10-10 05:09:03 +04:00
|
|
|
}
|
1996-01-08 01:01:38 +03:00
|
|
|
}
|
|
|
|
|
1995-12-07 22:11:32 +03:00
|
|
|
void
|
|
|
|
sdminphys(bp)
|
|
|
|
struct buf *bp;
|
|
|
|
{
|
1996-03-17 03:57:14 +03:00
|
|
|
struct sd_softc *sd = sd_cd.cd_devs[SDUNIT(bp->b_dev)];
|
1995-12-07 22:11:32 +03:00
|
|
|
long max;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the device is ancient, we want to make sure that
|
|
|
|
* the transfer fits into a 6-byte cdb.
|
1995-12-07 22:46:00 +03:00
|
|
|
*
|
|
|
|
* XXX Note that the SCSI-I spec says that 256-block transfers
|
|
|
|
* are allowed in a 6-byte read/write, and are specified
|
|
|
|
* by settng the "length" to 0. However, we're conservative
|
|
|
|
* here, allowing only 255-block transfers in case an
|
|
|
|
* ancient device gets confused by length == 0. A length of 0
|
|
|
|
* in a 10-byte read/write actually means 0 blocks.
|
1995-12-07 22:11:32 +03:00
|
|
|
*/
|
|
|
|
if (sd->flags & SDF_ANCIENT) {
|
1996-01-08 01:01:38 +03:00
|
|
|
max = sd->sc_dk.dk_label->d_secsize * 0xff;
|
1995-12-07 22:11:32 +03:00
|
|
|
|
|
|
|
if (bp->b_bcount > max)
|
|
|
|
bp->b_bcount = max;
|
|
|
|
}
|
|
|
|
|
1997-08-27 15:22:52 +04:00
|
|
|
(*sd->sc_link->adapter->scsipi_minphys)(bp);
|
1995-12-07 22:11:32 +03:00
|
|
|
}
|
|
|
|
|
1995-07-04 11:15:28 +04:00
|
|
|
int
|
1996-02-15 00:46:52 +03:00
|
|
|
sdread(dev, uio, ioflag)
|
1995-07-04 11:15:28 +04:00
|
|
|
dev_t dev;
|
|
|
|
struct uio *uio;
|
1996-02-15 00:46:52 +03:00
|
|
|
int ioflag;
|
1995-07-04 11:15:28 +04:00
|
|
|
{
|
|
|
|
|
1995-12-07 22:11:32 +03:00
|
|
|
return (physio(sdstrategy, NULL, dev, B_READ, sdminphys, uio));
|
1995-07-04 11:15:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-15 00:46:52 +03:00
|
|
|
sdwrite(dev, uio, ioflag)
|
1995-07-04 11:15:28 +04:00
|
|
|
dev_t dev;
|
|
|
|
struct uio *uio;
|
1996-02-15 00:46:52 +03:00
|
|
|
int ioflag;
|
1995-07-04 11:15:28 +04:00
|
|
|
{
|
|
|
|
|
1995-12-07 22:11:32 +03:00
|
|
|
return (physio(sdstrategy, NULL, dev, B_WRITE, sdminphys, uio));
|
1995-07-04 11:15:28 +04:00
|
|
|
}
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* Perform special action on behalf of the user
|
|
|
|
* Knows about the internals of this device
|
|
|
|
*/
|
1995-08-13 00:30:45 +04:00
|
|
|
int
|
1994-12-28 22:42:47 +03:00
|
|
|
sdioctl(dev, cmd, addr, flag, p)
|
1994-03-29 08:29:20 +04:00
|
|
|
dev_t dev;
|
1994-10-31 00:43:03 +03:00
|
|
|
u_long cmd;
|
1994-03-29 08:29:20 +04:00
|
|
|
caddr_t addr;
|
|
|
|
int flag;
|
1994-12-28 22:42:47 +03:00
|
|
|
struct proc *p;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1996-03-17 03:57:14 +03:00
|
|
|
struct sd_softc *sd = sd_cd.cd_devs[SDUNIT(dev)];
|
1999-02-08 19:33:16 +03:00
|
|
|
int part = SDPART(dev);
|
1994-11-21 01:36:43 +03:00
|
|
|
int error;
|
1993-04-12 12:19:28 +04:00
|
|
|
|
1995-03-23 14:33:18 +03:00
|
|
|
SC_DEBUG(sd->sc_link, SDEV_DB2, ("sdioctl 0x%lx ", cmd));
|
|
|
|
|
1999-09-12 01:42:58 +04:00
|
|
|
if ((sd->sc_dev.dv_flags & DVF_ACTIVE) == 0)
|
|
|
|
return (ENODEV);
|
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
/*
|
1999-01-26 16:59:44 +03:00
|
|
|
* If the device is not valid, some IOCTLs can still be
|
|
|
|
* handled on the raw partition. Check this here.
|
1994-03-29 08:29:20 +04:00
|
|
|
*/
|
1999-01-26 16:59:44 +03:00
|
|
|
if ((sd->sc_link->flags & SDEV_MEDIA_LOADED) == 0) {
|
|
|
|
switch (cmd) {
|
1999-12-24 00:23:19 +03:00
|
|
|
case DIOCKLABEL:
|
1999-01-26 16:59:44 +03:00
|
|
|
case DIOCWLABEL:
|
|
|
|
case DIOCLOCK:
|
|
|
|
case DIOCEJECT:
|
1999-02-08 19:33:16 +03:00
|
|
|
case ODIOCEJECT:
|
1999-01-26 16:59:44 +03:00
|
|
|
case SCIOCIDENTIFY:
|
|
|
|
case OSCIOCIDENTIFY:
|
|
|
|
case SCIOCCOMMAND:
|
|
|
|
case SCIOCDEBUG:
|
1999-02-08 19:33:16 +03:00
|
|
|
if (part == RAW_PART)
|
1999-01-26 16:59:44 +03:00
|
|
|
break;
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
default:
|
1999-01-29 14:17:58 +03:00
|
|
|
if ((sd->sc_link->flags & SDEV_OPEN) == 0)
|
|
|
|
return (ENODEV);
|
|
|
|
else
|
|
|
|
return (EIO);
|
1999-01-26 16:59:44 +03:00
|
|
|
}
|
|
|
|
}
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1994-11-21 01:36:43 +03:00
|
|
|
switch (cmd) {
|
1993-03-21 21:04:42 +03:00
|
|
|
case DIOCGDINFO:
|
1996-01-08 01:01:38 +03:00
|
|
|
*(struct disklabel *)addr = *(sd->sc_dk.dk_label);
|
1997-10-01 05:18:38 +04:00
|
|
|
return (0);
|
1994-03-29 08:29:20 +04:00
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
case DIOCGPART:
|
1996-01-08 01:01:38 +03:00
|
|
|
((struct partinfo *)addr)->disklab = sd->sc_dk.dk_label;
|
1994-10-20 16:33:36 +03:00
|
|
|
((struct partinfo *)addr)->part =
|
1999-02-08 19:33:16 +03:00
|
|
|
&sd->sc_dk.dk_label->d_partitions[part];
|
1997-10-01 05:18:38 +04:00
|
|
|
return (0);
|
1994-03-29 08:29:20 +04:00
|
|
|
|
1995-03-23 14:33:18 +03:00
|
|
|
case DIOCWDINFO:
|
1993-04-12 12:19:28 +04:00
|
|
|
case DIOCSDINFO:
|
|
|
|
if ((flag & FWRITE) == 0)
|
1997-10-01 05:18:38 +04:00
|
|
|
return (EBADF);
|
1995-03-23 14:33:18 +03:00
|
|
|
|
1996-02-15 00:46:52 +03:00
|
|
|
if ((error = sdlock(sd)) != 0)
|
1997-10-01 05:18:38 +04:00
|
|
|
return (error);
|
1995-03-30 03:04:39 +04:00
|
|
|
sd->flags |= SDF_LABELLING;
|
1995-03-23 14:33:18 +03:00
|
|
|
|
1996-01-08 01:01:38 +03:00
|
|
|
error = setdisklabel(sd->sc_dk.dk_label,
|
1995-01-13 13:46:32 +03:00
|
|
|
(struct disklabel *)addr, /*sd->sc_dk.dk_openmask : */0,
|
1996-01-08 01:01:38 +03:00
|
|
|
sd->sc_dk.dk_cpulabel);
|
1995-03-23 14:43:09 +03:00
|
|
|
if (error == 0) {
|
|
|
|
if (cmd == DIOCWDINFO)
|
|
|
|
error = writedisklabel(SDLABELDEV(dev),
|
1996-01-08 01:01:38 +03:00
|
|
|
sdstrategy, sd->sc_dk.dk_label,
|
|
|
|
sd->sc_dk.dk_cpulabel);
|
1995-03-23 14:43:09 +03:00
|
|
|
}
|
1995-03-23 14:33:18 +03:00
|
|
|
|
|
|
|
sd->flags &= ~SDF_LABELLING;
|
|
|
|
sdunlock(sd);
|
1997-10-01 05:18:38 +04:00
|
|
|
return (error);
|
1994-03-29 08:29:20 +04:00
|
|
|
|
1999-12-24 00:23:19 +03:00
|
|
|
case DIOCKLABEL:
|
|
|
|
if (*(int *)addr)
|
|
|
|
sd->sc_link->flags |= SDEV_KEEP_LABEL;
|
|
|
|
else
|
|
|
|
sd->sc_link->flags &= ~SDEV_KEEP_LABEL;
|
|
|
|
return (0);
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
case DIOCWLABEL:
|
|
|
|
if ((flag & FWRITE) == 0)
|
1997-10-01 05:18:38 +04:00
|
|
|
return (EBADF);
|
1994-10-20 16:33:36 +03:00
|
|
|
if (*(int *)addr)
|
|
|
|
sd->flags |= SDF_WLABEL;
|
|
|
|
else
|
|
|
|
sd->flags &= ~SDF_WLABEL;
|
1997-10-01 05:18:38 +04:00
|
|
|
return (0);
|
1994-03-29 08:29:20 +04:00
|
|
|
|
1996-01-30 21:24:47 +03:00
|
|
|
case DIOCLOCK:
|
1997-10-01 05:18:38 +04:00
|
|
|
return (scsipi_prevent(sd->sc_link,
|
|
|
|
(*(int *)addr) ? PR_PREVENT : PR_ALLOW, 0));
|
1999-02-08 19:33:16 +03:00
|
|
|
|
1996-01-30 21:24:47 +03:00
|
|
|
case DIOCEJECT:
|
1999-02-08 19:33:16 +03:00
|
|
|
if ((sd->sc_link->flags & SDEV_REMOVABLE) == 0)
|
|
|
|
return (ENOTTY);
|
|
|
|
if (*(int *)addr == 0) {
|
|
|
|
/*
|
|
|
|
* Don't force eject: check that we are the only
|
|
|
|
* partition open. If so, unlock it.
|
|
|
|
*/
|
|
|
|
if ((sd->sc_dk.dk_openmask & ~(1 << part)) == 0 &&
|
|
|
|
sd->sc_dk.dk_bopenmask + sd->sc_dk.dk_copenmask ==
|
|
|
|
sd->sc_dk.dk_openmask) {
|
1999-10-17 10:22:05 +04:00
|
|
|
error = scsipi_prevent(sd->sc_link, PR_ALLOW,
|
1999-10-01 02:57:52 +04:00
|
|
|
XS_CTL_IGNORE_NOT_READY);
|
1999-02-08 19:33:16 +03:00
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
} else {
|
|
|
|
return (EBUSY);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
case ODIOCEJECT:
|
1996-03-17 05:06:50 +03:00
|
|
|
return ((sd->sc_link->flags & SDEV_REMOVABLE) == 0 ? ENOTTY :
|
1997-08-27 15:22:52 +04:00
|
|
|
scsipi_start(sd->sc_link, SSS_STOP|SSS_LOEJ, 0));
|
1996-01-30 21:24:47 +03:00
|
|
|
|
1997-10-09 03:05:22 +04:00
|
|
|
case DIOCGDEFLABEL:
|
|
|
|
sdgetdefaultlabel(sd, (struct disklabel *)addr);
|
|
|
|
return (0);
|
|
|
|
|
1993-03-21 21:04:42 +03:00
|
|
|
default:
|
1999-02-08 19:33:16 +03:00
|
|
|
if (part != RAW_PART)
|
1997-10-01 05:18:38 +04:00
|
|
|
return (ENOTTY);
|
|
|
|
return (scsipi_do_ioctl(sd->sc_link, dev, cmd, addr, flag, p));
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1994-11-21 01:36:43 +03:00
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
panic("sdioctl: impossible");
|
|
|
|
#endif
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
|
1995-08-13 00:30:45 +04:00
|
|
|
void
|
1997-10-09 03:05:22 +04:00
|
|
|
sdgetdefaultlabel(sd, lp)
|
1994-12-28 22:42:47 +03:00
|
|
|
struct sd_softc *sd;
|
1997-10-09 03:05:22 +04:00
|
|
|
struct disklabel *lp;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1993-04-12 12:19:28 +04:00
|
|
|
|
1995-08-06 03:47:52 +04:00
|
|
|
bzero(lp, sizeof(struct disklabel));
|
1994-03-29 08:29:20 +04:00
|
|
|
|
1995-08-06 03:47:52 +04:00
|
|
|
lp->d_secsize = sd->params.blksize;
|
|
|
|
lp->d_ntracks = sd->params.heads;
|
|
|
|
lp->d_nsectors = sd->params.sectors;
|
|
|
|
lp->d_ncylinders = sd->params.cyls;
|
|
|
|
lp->d_secpercyl = lp->d_ntracks * lp->d_nsectors;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1998-08-05 20:29:04 +04:00
|
|
|
switch (sd->sc_link->type) {
|
|
|
|
#if NSD_SCSIBUS > 0
|
|
|
|
case BUS_SCSI:
|
|
|
|
lp->d_type = DTYPE_SCSI;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#if NSD_ATAPIBUS > 0
|
|
|
|
case BUS_ATAPI:
|
|
|
|
lp->d_type = DTYPE_ATAPI;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
strncpy(lp->d_typename, sd->name, 16);
|
1995-08-06 03:47:52 +04:00
|
|
|
strncpy(lp->d_packname, "fictitious", 16);
|
|
|
|
lp->d_secperunit = sd->params.disksize;
|
1998-01-15 05:21:27 +03:00
|
|
|
lp->d_rpm = sd->params.rot_rate;
|
1995-08-06 03:47:52 +04:00
|
|
|
lp->d_interleave = 1;
|
|
|
|
lp->d_flags = 0;
|
|
|
|
|
|
|
|
lp->d_partitions[RAW_PART].p_offset = 0;
|
|
|
|
lp->d_partitions[RAW_PART].p_size =
|
|
|
|
lp->d_secperunit * (lp->d_secsize / DEV_BSIZE);
|
|
|
|
lp->d_partitions[RAW_PART].p_fstype = FS_UNUSED;
|
|
|
|
lp->d_npartitions = RAW_PART + 1;
|
|
|
|
|
|
|
|
lp->d_magic = DISKMAGIC;
|
|
|
|
lp->d_magic2 = DISKMAGIC;
|
|
|
|
lp->d_checksum = dkcksum(lp);
|
1997-10-09 03:05:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Load the label information on the named device
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
sdgetdisklabel(sd)
|
|
|
|
struct sd_softc *sd;
|
|
|
|
{
|
|
|
|
struct disklabel *lp = sd->sc_dk.dk_label;
|
|
|
|
char *errstring;
|
|
|
|
|
|
|
|
bzero(sd->sc_dk.dk_cpulabel, sizeof(struct cpu_disklabel));
|
|
|
|
|
|
|
|
sdgetdefaultlabel(sd, lp);
|
|
|
|
|
|
|
|
if (lp->d_secpercyl == 0) {
|
|
|
|
lp->d_secpercyl = 100;
|
|
|
|
/* as long as it's not 0 - readdisklabel divides by it (?) */
|
|
|
|
}
|
1994-11-21 01:36:43 +03:00
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
/*
|
|
|
|
* Call the generic disklabel extraction routine
|
|
|
|
*/
|
1996-02-15 00:46:52 +03:00
|
|
|
errstring = readdisklabel(MAKESDDEV(0, sd->sc_dev.dv_unit, RAW_PART),
|
1997-10-01 05:18:38 +04:00
|
|
|
sdstrategy, lp, sd->sc_dk.dk_cpulabel);
|
1996-02-15 00:46:52 +03:00
|
|
|
if (errstring) {
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("%s: %s\n", sd->sc_dev.dv_xname, errstring);
|
1994-11-21 01:36:43 +03:00
|
|
|
return;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-08-15 05:10:54 +04:00
|
|
|
void
|
|
|
|
sd_shutdown(arg)
|
|
|
|
void *arg;
|
|
|
|
{
|
|
|
|
struct sd_softc *sd = arg;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the disk cache needs to be flushed, and the disk supports
|
|
|
|
* it, flush it. We're cold at this point, so we poll for
|
|
|
|
* completion.
|
|
|
|
*/
|
1999-08-26 13:28:17 +04:00
|
|
|
if ((sd->flags & SDF_DIRTY) != 0 && sd->sc_ops->sdo_flush != NULL) {
|
1999-10-01 02:57:52 +04:00
|
|
|
if ((*sd->sc_ops->sdo_flush)(sd, XS_CTL_NOSLEEP|XS_CTL_POLL)) {
|
1999-08-26 13:28:17 +04:00
|
|
|
printf("%s: cache synchronization failed\n",
|
|
|
|
sd->sc_dev.dv_xname);
|
|
|
|
sd->flags &= ~SDF_FLUSHING;
|
|
|
|
} else
|
|
|
|
sd->flags &= ~(SDF_FLUSHING|SDF_DIRTY);
|
|
|
|
}
|
1998-08-15 05:10:54 +04:00
|
|
|
}
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* Tell the device to map out a defective block
|
|
|
|
*/
|
1995-08-13 00:30:45 +04:00
|
|
|
int
|
1996-03-19 06:05:15 +03:00
|
|
|
sd_reassign_blocks(sd, blkno)
|
1994-12-28 22:42:47 +03:00
|
|
|
struct sd_softc *sd;
|
1996-03-19 06:05:15 +03:00
|
|
|
u_long blkno;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1997-08-27 15:22:52 +04:00
|
|
|
struct scsi_reassign_blocks scsipi_cmd;
|
1994-03-29 08:29:20 +04:00
|
|
|
struct scsi_reassign_blocks_data rbdata;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1997-08-27 15:22:52 +04:00
|
|
|
bzero(&scsipi_cmd, sizeof(scsipi_cmd));
|
1993-03-21 21:04:42 +03:00
|
|
|
bzero(&rbdata, sizeof(rbdata));
|
1997-08-27 15:22:52 +04:00
|
|
|
scsipi_cmd.opcode = SCSI_REASSIGN_BLOCKS;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1996-03-19 06:05:15 +03:00
|
|
|
_lto2b(sizeof(rbdata.defect_descriptor[0]), rbdata.length);
|
|
|
|
_lto4b(blkno, rbdata.defect_descriptor[0].dlbaddr);
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1997-10-18 23:50:51 +04:00
|
|
|
return (scsipi_command(sd->sc_link,
|
1997-10-01 05:18:38 +04:00
|
|
|
(struct scsipi_generic *)&scsipi_cmd, sizeof(scsipi_cmd),
|
|
|
|
(u_char *)&rbdata, sizeof(rbdata), SDRETRIES, 5000, NULL,
|
2000-06-09 12:54:19 +04:00
|
|
|
XS_CTL_DATA_OUT | XS_CTL_DATA_ONSTACK));
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
|
1998-07-16 00:21:12 +04:00
|
|
|
/*
|
|
|
|
* Check Errors
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
sd_interpret_sense(xs)
|
|
|
|
struct scsipi_xfer *xs;
|
|
|
|
{
|
|
|
|
struct scsipi_link *sc_link = xs->sc_link;
|
|
|
|
struct scsipi_sense_data *sense = &xs->sense.scsi_sense;
|
|
|
|
struct sd_softc *sd = sc_link->device_softc;
|
|
|
|
int retval = SCSIRET_CONTINUE;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the device is not open yet, let the generic code handle it.
|
|
|
|
*/
|
1999-01-26 16:59:44 +03:00
|
|
|
if ((sc_link->flags & SDEV_MEDIA_LOADED) == 0) {
|
1998-07-16 00:21:12 +04:00
|
|
|
return (retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If it isn't a extended or extended/deferred error, let
|
|
|
|
* the generic code handle it.
|
|
|
|
*/
|
|
|
|
if ((sense->error_code & SSD_ERRCODE) != 0x70 &&
|
|
|
|
(sense->error_code & SSD_ERRCODE) != 0x71) { /* DEFFERRED */
|
|
|
|
return (retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((sense->flags & SSD_KEY) == SKEY_NOT_READY &&
|
|
|
|
sense->add_sense_code == 0x4) {
|
|
|
|
if (sense->add_sense_code_qual == 0x01) {
|
|
|
|
printf("%s: ..is spinning up...waiting\n",
|
|
|
|
sd->sc_dev.dv_xname);
|
|
|
|
/*
|
|
|
|
* I really need a sdrestart function I can call here.
|
|
|
|
*/
|
|
|
|
delay(1000000 * 5); /* 5 seconds */
|
|
|
|
retval = SCSIRET_RETRY;
|
|
|
|
} else if ((sense->add_sense_code_qual == 0x2) &&
|
|
|
|
(sd->sc_link->quirks & SDEV_NOSTARTUNIT) == 0) {
|
|
|
|
if (sd->sc_link->flags & SDEV_REMOVABLE) {
|
1999-05-31 16:05:39 +04:00
|
|
|
printf(
|
|
|
|
"%s: removable disk stopped - not restarting\n",
|
|
|
|
sd->sc_dev.dv_xname);
|
1998-07-16 00:21:12 +04:00
|
|
|
retval = EIO;
|
|
|
|
} else {
|
2000-05-23 14:20:14 +04:00
|
|
|
if (sd->flags & SDF_RESTART)
|
|
|
|
return SCSIRET_RETRY;
|
|
|
|
sd->flags |= SDF_RESTART;
|
1998-07-16 00:21:12 +04:00
|
|
|
printf("%s: respinning up disk\n",
|
|
|
|
sd->sc_dev.dv_xname);
|
|
|
|
retval = scsipi_start(sd->sc_link, SSS_START,
|
2000-05-23 14:20:14 +04:00
|
|
|
XS_CTL_URGENT | XS_CTL_NOSLEEP |
|
|
|
|
((xs->xs_control & XS_CTL_ASYNC) ?
|
|
|
|
XS_CTL_ASYNC : 0));
|
|
|
|
if ((xs->xs_control & XS_CTL_ASYNC) == 0)
|
|
|
|
sd->flags &= ~SDF_RESTART;
|
1998-07-16 00:21:12 +04:00
|
|
|
if (retval != 0) {
|
1999-05-31 16:05:39 +04:00
|
|
|
printf(
|
|
|
|
"%s: respin of disk failed - %d\n",
|
1998-07-16 00:21:12 +04:00
|
|
|
sd->sc_dev.dv_xname, retval);
|
|
|
|
retval = EIO;
|
|
|
|
} else {
|
|
|
|
retval = SCSIRET_RETRY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
int
|
1994-11-21 01:36:43 +03:00
|
|
|
sdsize(dev)
|
|
|
|
dev_t dev;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1994-12-28 22:42:47 +03:00
|
|
|
struct sd_softc *sd;
|
1997-06-19 00:38:59 +04:00
|
|
|
int part, unit, omask;
|
1994-11-21 01:36:43 +03:00
|
|
|
int size;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1997-06-19 00:38:59 +04:00
|
|
|
unit = SDUNIT(dev);
|
|
|
|
if (unit >= sd_cd.cd_ndevs)
|
|
|
|
return (-1);
|
|
|
|
sd = sd_cd.cd_devs[unit];
|
|
|
|
if (sd == NULL)
|
|
|
|
return (-1);
|
|
|
|
|
1999-09-12 01:42:58 +04:00
|
|
|
if ((sd->sc_dev.dv_flags & DVF_ACTIVE) == 0)
|
|
|
|
return (-1);
|
|
|
|
|
1994-11-21 01:36:43 +03:00
|
|
|
part = SDPART(dev);
|
1997-06-19 00:38:59 +04:00
|
|
|
omask = sd->sc_dk.dk_openmask & (1 << part);
|
|
|
|
|
|
|
|
if (omask == 0 && sdopen(dev, 0, S_IFBLK, NULL) != 0)
|
|
|
|
return (-1);
|
1999-01-26 16:59:44 +03:00
|
|
|
if ((sd->sc_link->flags & SDEV_MEDIA_LOADED) == 0)
|
|
|
|
size = -1;
|
|
|
|
else if (sd->sc_dk.dk_label->d_partitions[part].p_fstype != FS_SWAP)
|
1994-11-21 01:36:43 +03:00
|
|
|
size = -1;
|
|
|
|
else
|
1997-06-24 04:28:36 +04:00
|
|
|
size = sd->sc_dk.dk_label->d_partitions[part].p_size *
|
|
|
|
(sd->sc_dk.dk_label->d_secsize / DEV_BSIZE);
|
1997-06-19 00:38:59 +04:00
|
|
|
if (omask == 0 && sdclose(dev, 0, S_IFBLK, NULL) != 0)
|
|
|
|
return (-1);
|
|
|
|
return (size);
|
1994-03-29 08:29:20 +04:00
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
|
1995-06-26 09:16:55 +04:00
|
|
|
/* #define SD_DUMP_NOT_TRUSTED if you just want to watch */
|
1997-08-27 15:22:52 +04:00
|
|
|
static struct scsipi_xfer sx;
|
1995-06-26 09:16:55 +04:00
|
|
|
static int sddoingadump;
|
1993-04-12 12:19:28 +04:00
|
|
|
|
|
|
|
/*
|
1994-03-29 08:29:20 +04:00
|
|
|
* dump all of physical memory into the partition specified, starting
|
|
|
|
* at offset 'dumplo' into the partition.
|
1993-04-12 12:19:28 +04:00
|
|
|
*/
|
|
|
|
int
|
1995-06-26 09:16:55 +04:00
|
|
|
sddump(dev, blkno, va, size)
|
|
|
|
dev_t dev;
|
|
|
|
daddr_t blkno;
|
|
|
|
caddr_t va;
|
|
|
|
size_t size;
|
|
|
|
{
|
|
|
|
struct sd_softc *sd; /* disk unit to do the I/O */
|
|
|
|
struct disklabel *lp; /* disk's disklabel */
|
|
|
|
int unit, part;
|
|
|
|
int sectorsize; /* size of a disk sector */
|
|
|
|
int nsects; /* number of sectors in partition */
|
|
|
|
int sectoff; /* sector offset of partition */
|
|
|
|
int totwrt; /* total number of sectors left to write */
|
|
|
|
int nwrt; /* current number of sectors to write */
|
1997-08-27 15:22:52 +04:00
|
|
|
struct scsipi_rw_big cmd; /* write command */
|
|
|
|
struct scsipi_xfer *xs; /* ... convenience */
|
1994-03-29 08:29:20 +04:00
|
|
|
int retval;
|
|
|
|
|
1995-06-26 09:16:55 +04:00
|
|
|
/* Check if recursive dump; if so, punt. */
|
|
|
|
if (sddoingadump)
|
1997-10-01 05:18:38 +04:00
|
|
|
return (EFAULT);
|
1994-03-29 08:29:20 +04:00
|
|
|
|
1995-06-26 09:16:55 +04:00
|
|
|
/* Mark as active early. */
|
|
|
|
sddoingadump = 1;
|
1994-03-29 08:29:20 +04:00
|
|
|
|
1995-06-26 09:16:55 +04:00
|
|
|
unit = SDUNIT(dev); /* Decompose unit & partition. */
|
|
|
|
part = SDPART(dev);
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1995-06-26 09:16:55 +04:00
|
|
|
/* Check for acceptable drive number. */
|
1996-03-17 03:57:14 +03:00
|
|
|
if (unit >= sd_cd.cd_ndevs || (sd = sd_cd.cd_devs[unit]) == NULL)
|
1997-10-01 05:18:38 +04:00
|
|
|
return (ENXIO);
|
1995-06-26 09:16:55 +04:00
|
|
|
|
1999-10-30 20:35:12 +04:00
|
|
|
if ((sd->sc_dev.dv_flags & DVF_ACTIVE) == 0)
|
|
|
|
return (ENODEV);
|
|
|
|
|
1995-06-26 09:16:55 +04:00
|
|
|
/* Make sure it was initialized. */
|
1996-03-17 05:06:50 +03:00
|
|
|
if ((sd->sc_link->flags & SDEV_MEDIA_LOADED) != SDEV_MEDIA_LOADED)
|
1997-10-01 05:18:38 +04:00
|
|
|
return (ENXIO);
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1995-06-26 09:16:55 +04:00
|
|
|
/* Convert to disk sectors. Request must be a multiple of size. */
|
1996-01-08 01:01:38 +03:00
|
|
|
lp = sd->sc_dk.dk_label;
|
1995-06-26 09:16:55 +04:00
|
|
|
sectorsize = lp->d_secsize;
|
|
|
|
if ((size % sectorsize) != 0)
|
1997-10-01 05:18:38 +04:00
|
|
|
return (EFAULT);
|
1995-06-26 09:16:55 +04:00
|
|
|
totwrt = size / sectorsize;
|
|
|
|
blkno = dbtob(blkno) / sectorsize; /* blkno in DEV_BSIZE units */
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1995-06-26 09:16:55 +04:00
|
|
|
nsects = lp->d_partitions[part].p_size;
|
|
|
|
sectoff = lp->d_partitions[part].p_offset;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1995-06-26 09:16:55 +04:00
|
|
|
/* Check transfer bounds against partition size. */
|
|
|
|
if ((blkno < 0) || ((blkno + totwrt) > nsects))
|
1997-10-01 05:18:38 +04:00
|
|
|
return (EINVAL);
|
1994-03-29 08:29:20 +04:00
|
|
|
|
1995-06-26 09:16:55 +04:00
|
|
|
/* Offset block number to start of partition. */
|
|
|
|
blkno += sectoff;
|
|
|
|
|
|
|
|
xs = &sx;
|
1994-03-29 08:29:20 +04:00
|
|
|
|
1995-06-26 09:16:55 +04:00
|
|
|
while (totwrt > 0) {
|
|
|
|
nwrt = totwrt; /* XXX */
|
|
|
|
#ifndef SD_DUMP_NOT_TRUSTED
|
1994-03-29 08:29:20 +04:00
|
|
|
/*
|
|
|
|
* Fill out the scsi command
|
|
|
|
*/
|
|
|
|
bzero(&cmd, sizeof(cmd));
|
1994-12-28 22:42:47 +03:00
|
|
|
cmd.opcode = WRITE_BIG;
|
1996-03-19 06:05:15 +03:00
|
|
|
_lto4b(blkno, cmd.addr);
|
|
|
|
_lto2b(nwrt, cmd.length);
|
1994-03-29 08:29:20 +04:00
|
|
|
/*
|
1997-08-27 15:22:52 +04:00
|
|
|
* Fill out the scsipi_xfer structure
|
1994-03-29 08:29:20 +04:00
|
|
|
* Note: we cannot sleep as we may be an interrupt
|
1997-10-18 23:50:51 +04:00
|
|
|
* don't use scsipi_command() as it may want to wait
|
|
|
|
* for an xs.
|
1994-03-29 08:29:20 +04:00
|
|
|
*/
|
|
|
|
bzero(xs, sizeof(sx));
|
1999-10-01 02:57:52 +04:00
|
|
|
xs->xs_control |= XS_CTL_NOSLEEP | XS_CTL_POLL |
|
|
|
|
XS_CTL_DATA_OUT;
|
|
|
|
xs->xs_status = 0;
|
1994-03-29 08:29:20 +04:00
|
|
|
xs->sc_link = sd->sc_link;
|
|
|
|
xs->retries = SDRETRIES;
|
|
|
|
xs->timeout = 10000; /* 10000 millisecs for a disk ! */
|
1997-08-27 15:22:52 +04:00
|
|
|
xs->cmd = (struct scsipi_generic *)&cmd;
|
1994-03-29 08:29:20 +04:00
|
|
|
xs->cmdlen = sizeof(cmd);
|
1995-06-26 09:16:55 +04:00
|
|
|
xs->resid = nwrt * sectorsize;
|
1994-03-29 08:29:20 +04:00
|
|
|
xs->error = XS_NOERROR;
|
|
|
|
xs->bp = 0;
|
1995-06-26 09:16:55 +04:00
|
|
|
xs->data = va;
|
|
|
|
xs->datalen = nwrt * sectorsize;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
/*
|
|
|
|
* Pass all this info to the scsi driver.
|
|
|
|
*/
|
1997-10-18 23:50:51 +04:00
|
|
|
retval = scsipi_command_direct(xs);
|
1994-12-28 22:42:47 +03:00
|
|
|
if (retval != COMPLETE)
|
1997-10-01 05:18:38 +04:00
|
|
|
return (ENXIO);
|
1995-06-26 09:16:55 +04:00
|
|
|
#else /* SD_DUMP_NOT_TRUSTED */
|
|
|
|
/* Let's just talk about this first... */
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("sd%d: dump addr 0x%x, blk %d\n", unit, va, blkno);
|
1995-06-26 09:16:55 +04:00
|
|
|
delay(500 * 1000); /* half a second */
|
|
|
|
#endif /* SD_DUMP_NOT_TRUSTED */
|
1994-03-29 08:29:20 +04:00
|
|
|
|
|
|
|
/* update block count */
|
1995-06-26 09:16:55 +04:00
|
|
|
totwrt -= nwrt;
|
|
|
|
blkno += nwrt;
|
|
|
|
va += sectorsize * nwrt;
|
1994-03-29 08:29:20 +04:00
|
|
|
}
|
1995-06-26 09:16:55 +04:00
|
|
|
sddoingadump = 0;
|
1997-10-01 05:18:38 +04:00
|
|
|
return (0);
|
1994-03-29 08:29:20 +04:00
|
|
|
}
|