1997-08-20 22:19:12 +04:00
|
|
|
/* $NetBSD: scsi_base.c,v 1.46 1997/08/20 18:19:12 mjacob Exp $ */
|
1994-06-29 10:39:25 +04:00
|
|
|
|
1993-11-24 07:52:44 +03:00
|
|
|
/*
|
1997-04-02 06:29:30 +04:00
|
|
|
* Copyright (c) 1994, 1995, 1997 Charles M. Hannum. All rights reserved.
|
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:
|
1997-04-02 06:29:30 +04:00
|
|
|
* This product includes software developed by Charles M. Hannum.
|
1994-03-29 08:29:20 +04:00
|
|
|
* 4. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
|
|
|
|
*/
|
|
|
|
|
1997-08-20 22:19:12 +04:00
|
|
|
/*
|
|
|
|
* Additions for detail SCSI error printing are
|
|
|
|
* Copyright (c) 1997 by Matthew Jacob.
|
|
|
|
*/
|
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
/*
|
|
|
|
* Originally written by Julian Elischer (julian@dialix.oz.au)
|
1993-11-24 07:52:44 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/param.h>
|
1995-09-26 22:26:48 +03:00
|
|
|
#include <sys/systm.h>
|
1994-04-11 07:53:45 +04:00
|
|
|
#include <sys/kernel.h>
|
1993-11-24 07:52:44 +03:00
|
|
|
#include <sys/buf.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/errno.h>
|
|
|
|
#include <sys/device.h>
|
1996-02-15 00:46:52 +03:00
|
|
|
#include <sys/proc.h>
|
1993-11-24 12:45:04 +03:00
|
|
|
|
1993-11-24 07:52:44 +03:00
|
|
|
#include <scsi/scsi_all.h>
|
|
|
|
#include <scsi/scsi_disk.h>
|
|
|
|
#include <scsi/scsiconf.h>
|
|
|
|
|
1994-04-21 02:13:33 +04:00
|
|
|
LIST_HEAD(xs_free_list, scsi_xfer) xs_free_list;
|
1993-11-24 07:52:44 +03:00
|
|
|
|
1996-02-15 00:46:52 +03:00
|
|
|
static __inline struct scsi_xfer *scsi_make_xs __P((struct scsi_link *,
|
|
|
|
struct scsi_generic *,
|
|
|
|
int cmdlen,
|
|
|
|
u_char *data_addr,
|
|
|
|
int datalen,
|
|
|
|
int retries,
|
|
|
|
int timeout,
|
|
|
|
struct buf *,
|
|
|
|
int flags));
|
|
|
|
|
|
|
|
int sc_err1 __P((struct scsi_xfer *, int));
|
|
|
|
int scsi_interpret_sense __P((struct scsi_xfer *));
|
1997-08-20 22:19:12 +04:00
|
|
|
#ifdef SCSIVERBOSE
|
|
|
|
char *scsi_decode_sense __P((void *, int));
|
|
|
|
#endif
|
1996-02-15 00:46:52 +03:00
|
|
|
|
1993-11-24 07:52:44 +03:00
|
|
|
/*
|
|
|
|
* Get a scsi transfer structure for the caller. Charge the structure
|
|
|
|
* to the device that is referenced by the sc_link structure. If the
|
|
|
|
* sc_link structure has no 'credits' then the device already has the
|
|
|
|
* maximum number or outstanding operations under way. In this stage,
|
|
|
|
* wait on the structure so that when one is freed, we are awoken again
|
|
|
|
* If the SCSI_NOSLEEP flag is set, then do not wait, but rather, return
|
|
|
|
* a NULL pointer, signifying that no slots were available
|
|
|
|
* Note in the link structure, that we are waiting on it.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct scsi_xfer *
|
1994-12-28 22:42:47 +03:00
|
|
|
scsi_get_xs(sc_link, flags)
|
1993-11-24 12:45:04 +03:00
|
|
|
struct scsi_link *sc_link; /* who to charge the xs to */
|
1994-04-11 07:53:45 +04:00
|
|
|
int flags; /* if this call can sleep */
|
1993-11-24 07:52:44 +03:00
|
|
|
{
|
1993-11-24 12:45:04 +03:00
|
|
|
struct scsi_xfer *xs;
|
1994-04-11 07:53:45 +04:00
|
|
|
int s;
|
1993-11-24 07:52:44 +03:00
|
|
|
|
1994-12-28 22:42:47 +03:00
|
|
|
SC_DEBUG(sc_link, SDEV_DB3, ("scsi_get_xs\n"));
|
1993-11-24 07:52:44 +03:00
|
|
|
s = splbio();
|
1994-12-28 22:42:47 +03:00
|
|
|
while (sc_link->openings <= 0) {
|
1993-11-24 07:52:44 +03:00
|
|
|
SC_DEBUG(sc_link, SDEV_DB3, ("sleeping\n"));
|
1994-12-28 22:42:47 +03:00
|
|
|
if ((flags & SCSI_NOSLEEP) != 0) {
|
1993-11-24 07:52:44 +03:00
|
|
|
splx(s);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
sc_link->flags |= SDEV_WAITING;
|
1994-04-21 02:13:33 +04:00
|
|
|
(void) tsleep(sc_link, PRIBIO, "getxs", 0);
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
1994-12-28 22:42:47 +03:00
|
|
|
sc_link->openings--;
|
1996-02-15 00:46:52 +03:00
|
|
|
if ((xs = xs_free_list.lh_first) != NULL) {
|
1994-04-21 02:13:33 +04:00
|
|
|
LIST_REMOVE(xs, free_list);
|
1993-11-24 07:52:44 +03:00
|
|
|
splx(s);
|
|
|
|
} else {
|
|
|
|
splx(s);
|
|
|
|
SC_DEBUG(sc_link, SDEV_DB3, ("making\n"));
|
1994-04-21 02:13:33 +04:00
|
|
|
xs = malloc(sizeof(*xs), M_DEVBUF,
|
1994-12-28 22:42:47 +03:00
|
|
|
((flags & SCSI_NOSLEEP) != 0 ? M_NOWAIT : M_WAITOK));
|
1994-04-21 02:13:33 +04:00
|
|
|
if (!xs) {
|
1993-11-24 07:52:44 +03:00
|
|
|
sc_print_addr(sc_link);
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("cannot allocate scsi xs\n");
|
1994-04-21 02:13:33 +04:00
|
|
|
return 0;
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
}
|
1994-12-28 22:42:47 +03:00
|
|
|
|
1993-11-24 07:52:44 +03:00
|
|
|
SC_DEBUG(sc_link, SDEV_DB3, ("returning\n"));
|
1994-12-28 22:42:47 +03:00
|
|
|
xs->flags = INUSE | flags;
|
1994-04-11 07:53:45 +04:00
|
|
|
return xs;
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Given a scsi_xfer struct, and a device (referenced through sc_link)
|
|
|
|
* return the struct to the free pool and credit the device with it
|
|
|
|
* If another process is waiting for an xs, do a wakeup, let it proceed
|
|
|
|
*/
|
|
|
|
void
|
1994-12-28 22:42:47 +03:00
|
|
|
scsi_free_xs(xs, flags)
|
1993-11-24 07:52:44 +03:00
|
|
|
struct scsi_xfer *xs;
|
1994-04-11 07:53:45 +04:00
|
|
|
int flags;
|
1993-11-24 07:52:44 +03:00
|
|
|
{
|
1994-12-28 22:42:47 +03:00
|
|
|
struct scsi_link *sc_link = xs->sc_link;
|
|
|
|
|
|
|
|
xs->flags &= ~INUSE;
|
1994-04-21 02:13:33 +04:00
|
|
|
LIST_INSERT_HEAD(&xs_free_list, xs, free_list);
|
1993-11-24 07:52:44 +03:00
|
|
|
|
1994-12-28 22:42:47 +03:00
|
|
|
SC_DEBUG(sc_link, SDEV_DB3, ("scsi_free_xs\n"));
|
1993-11-24 07:52:44 +03:00
|
|
|
/* if was 0 and someone waits, wake them up */
|
1994-12-28 22:42:47 +03:00
|
|
|
sc_link->openings++;
|
|
|
|
if ((sc_link->flags & SDEV_WAITING) != 0) {
|
1993-11-25 07:03:20 +03:00
|
|
|
sc_link->flags &= ~SDEV_WAITING;
|
1994-12-28 22:42:47 +03:00
|
|
|
wakeup(sc_link);
|
1993-11-25 07:03:20 +03:00
|
|
|
} else {
|
1993-11-24 07:52:44 +03:00
|
|
|
if (sc_link->device->start) {
|
|
|
|
SC_DEBUG(sc_link, SDEV_DB2, ("calling private start()\n"));
|
1994-11-21 13:39:09 +03:00
|
|
|
(*(sc_link->device->start)) (sc_link->device_softc);
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
1993-11-25 07:03:20 +03:00
|
|
|
}
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
|
1994-12-28 22:42:47 +03:00
|
|
|
/*
|
|
|
|
* Make a scsi_xfer, and return a pointer to it.
|
|
|
|
*/
|
|
|
|
static __inline struct scsi_xfer *
|
|
|
|
scsi_make_xs(sc_link, scsi_cmd, cmdlen, data_addr, datalen,
|
1996-02-15 00:46:52 +03:00
|
|
|
retries, timeout, bp, flags)
|
1994-12-28 22:42:47 +03:00
|
|
|
struct scsi_link *sc_link;
|
|
|
|
struct scsi_generic *scsi_cmd;
|
|
|
|
int cmdlen;
|
|
|
|
u_char *data_addr;
|
|
|
|
int datalen;
|
|
|
|
int retries;
|
|
|
|
int timeout;
|
|
|
|
struct buf *bp;
|
|
|
|
int flags;
|
|
|
|
{
|
|
|
|
struct scsi_xfer *xs;
|
|
|
|
|
|
|
|
if ((xs = scsi_get_xs(sc_link, flags)) == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Fill out the scsi_xfer structure. We don't know whose context
|
|
|
|
* the cmd is in, so copy it.
|
|
|
|
*/
|
|
|
|
xs->sc_link = sc_link;
|
|
|
|
bcopy(scsi_cmd, &xs->cmdstore, cmdlen);
|
|
|
|
xs->cmd = &xs->cmdstore;
|
|
|
|
xs->cmdlen = cmdlen;
|
|
|
|
xs->data = data_addr;
|
|
|
|
xs->datalen = datalen;
|
|
|
|
xs->retries = retries;
|
|
|
|
xs->timeout = timeout;
|
|
|
|
xs->bp = bp;
|
|
|
|
|
1996-09-03 22:20:31 +04:00
|
|
|
/*
|
|
|
|
* Set the LUN in the CDB if we have an older device. We also
|
|
|
|
* set it for more modern SCSI-II devices "just in case".
|
|
|
|
*/
|
|
|
|
if ((sc_link->scsi_version & SID_ANSII) <= 2)
|
|
|
|
xs->cmd->bytes[0] |=
|
|
|
|
((sc_link->lun << SCSI_CMD_LUN_SHIFT) & SCSI_CMD_LUN_MASK);
|
|
|
|
|
1994-12-28 22:42:47 +03:00
|
|
|
return xs;
|
|
|
|
}
|
|
|
|
|
1993-11-24 07:52:44 +03:00
|
|
|
/*
|
|
|
|
* Find out from the device what its capacity is.
|
|
|
|
*/
|
1994-12-28 22:42:47 +03:00
|
|
|
u_long
|
1993-11-24 07:52:44 +03:00
|
|
|
scsi_size(sc_link, flags)
|
|
|
|
struct scsi_link *sc_link;
|
1994-04-11 07:53:45 +04:00
|
|
|
int flags;
|
1993-11-24 07:52:44 +03:00
|
|
|
{
|
|
|
|
struct scsi_read_cap_data rdcap;
|
|
|
|
struct scsi_read_capacity scsi_cmd;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* make up a scsi command and ask the scsi driver to do
|
|
|
|
* it for you.
|
|
|
|
*/
|
|
|
|
bzero(&scsi_cmd, sizeof(scsi_cmd));
|
1994-12-28 22:42:47 +03:00
|
|
|
scsi_cmd.opcode = READ_CAPACITY;
|
1993-11-24 07:52:44 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If the command works, interpret the result as a 4 byte
|
|
|
|
* number of blocks
|
|
|
|
*/
|
1994-12-28 22:42:47 +03:00
|
|
|
if (scsi_scsi_cmd(sc_link, (struct scsi_generic *)&scsi_cmd,
|
|
|
|
sizeof(scsi_cmd), (u_char *)&rdcap, sizeof(rdcap),
|
1993-11-24 12:45:04 +03:00
|
|
|
2, 20000, NULL, flags | SCSI_DATA_IN) != 0) {
|
1993-11-24 07:52:44 +03:00
|
|
|
sc_print_addr(sc_link);
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("could not get size\n");
|
1994-04-11 07:53:45 +04:00
|
|
|
return 0;
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
1996-03-19 06:05:15 +03:00
|
|
|
|
|
|
|
return _4btol(rdcap.addr) + 1;
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get scsi driver to send a "are you ready?" command
|
|
|
|
*/
|
1993-11-24 12:45:04 +03:00
|
|
|
int
|
1993-11-24 07:52:44 +03:00
|
|
|
scsi_test_unit_ready(sc_link, flags)
|
|
|
|
struct scsi_link *sc_link;
|
1994-04-11 07:53:45 +04:00
|
|
|
int flags;
|
1993-11-24 07:52:44 +03:00
|
|
|
{
|
|
|
|
struct scsi_test_unit_ready scsi_cmd;
|
|
|
|
|
|
|
|
bzero(&scsi_cmd, sizeof(scsi_cmd));
|
1994-12-28 22:42:47 +03:00
|
|
|
scsi_cmd.opcode = TEST_UNIT_READY;
|
1993-11-24 07:52:44 +03:00
|
|
|
|
1993-11-24 12:45:04 +03:00
|
|
|
return scsi_scsi_cmd(sc_link, (struct scsi_generic *) &scsi_cmd,
|
1994-12-28 22:42:47 +03:00
|
|
|
sizeof(scsi_cmd), 0, 0, 2, 10000, NULL, flags);
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Do a scsi operation, asking a device to run as SCSI-II if it can.
|
|
|
|
*/
|
1993-11-24 12:45:04 +03:00
|
|
|
int
|
1993-11-24 07:52:44 +03:00
|
|
|
scsi_change_def(sc_link, flags)
|
|
|
|
struct scsi_link *sc_link;
|
1994-04-11 07:53:45 +04:00
|
|
|
int flags;
|
1993-11-24 07:52:44 +03:00
|
|
|
{
|
|
|
|
struct scsi_changedef scsi_cmd;
|
|
|
|
|
|
|
|
bzero(&scsi_cmd, sizeof(scsi_cmd));
|
1994-12-28 22:42:47 +03:00
|
|
|
scsi_cmd.opcode = CHANGE_DEFINITION;
|
1993-11-24 07:52:44 +03:00
|
|
|
scsi_cmd.how = SC_SCSI_2;
|
|
|
|
|
1993-11-24 12:45:04 +03:00
|
|
|
return scsi_scsi_cmd(sc_link, (struct scsi_generic *) &scsi_cmd,
|
|
|
|
sizeof(scsi_cmd), 0, 0, 2, 100000, NULL, flags);
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Do a scsi operation asking a device what it is
|
|
|
|
* Use the scsi_cmd routine in the switch table.
|
|
|
|
*/
|
1993-11-24 12:45:04 +03:00
|
|
|
int
|
1993-11-24 07:52:44 +03:00
|
|
|
scsi_inquire(sc_link, inqbuf, flags)
|
|
|
|
struct scsi_link *sc_link;
|
|
|
|
struct scsi_inquiry_data *inqbuf;
|
1994-04-11 07:53:45 +04:00
|
|
|
int flags;
|
1993-11-24 07:52:44 +03:00
|
|
|
{
|
|
|
|
struct scsi_inquiry scsi_cmd;
|
|
|
|
|
|
|
|
bzero(&scsi_cmd, sizeof(scsi_cmd));
|
1994-12-28 22:42:47 +03:00
|
|
|
scsi_cmd.opcode = INQUIRY;
|
1997-03-20 10:13:07 +03:00
|
|
|
scsi_cmd.length = sizeof(struct scsi_inquiry_data);
|
1993-11-24 07:52:44 +03:00
|
|
|
|
1997-03-20 10:13:07 +03:00
|
|
|
return scsi_scsi_cmd(sc_link, (struct scsi_generic *) &scsi_cmd,
|
|
|
|
sizeof(scsi_cmd), (u_char *) inqbuf,
|
|
|
|
sizeof(struct scsi_inquiry_data), 2, 10000, NULL,
|
|
|
|
SCSI_DATA_IN | flags);
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Prevent or allow the user to remove the media
|
|
|
|
*/
|
1993-11-24 12:45:04 +03:00
|
|
|
int
|
1993-11-24 07:52:44 +03:00
|
|
|
scsi_prevent(sc_link, type, flags)
|
|
|
|
struct scsi_link *sc_link;
|
1994-04-11 07:53:45 +04:00
|
|
|
int type, flags;
|
1993-11-24 07:52:44 +03:00
|
|
|
{
|
|
|
|
struct scsi_prevent scsi_cmd;
|
|
|
|
|
|
|
|
bzero(&scsi_cmd, sizeof(scsi_cmd));
|
1994-12-28 22:42:47 +03:00
|
|
|
scsi_cmd.opcode = PREVENT_ALLOW;
|
1993-11-24 07:52:44 +03:00
|
|
|
scsi_cmd.how = type;
|
1993-11-24 12:45:04 +03:00
|
|
|
return scsi_scsi_cmd(sc_link, (struct scsi_generic *) &scsi_cmd,
|
|
|
|
sizeof(scsi_cmd), 0, 0, 2, 5000, NULL, flags);
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get scsi driver to send a "start up" command
|
|
|
|
*/
|
1993-11-24 12:45:04 +03:00
|
|
|
int
|
1994-04-11 06:23:41 +04:00
|
|
|
scsi_start(sc_link, type, flags)
|
1993-11-24 07:52:44 +03:00
|
|
|
struct scsi_link *sc_link;
|
1994-04-11 07:53:45 +04:00
|
|
|
int type, flags;
|
1994-02-01 23:05:19 +03:00
|
|
|
{
|
|
|
|
struct scsi_start_stop scsi_cmd;
|
|
|
|
|
|
|
|
bzero(&scsi_cmd, sizeof(scsi_cmd));
|
1994-12-28 22:42:47 +03:00
|
|
|
scsi_cmd.opcode = START_STOP;
|
|
|
|
scsi_cmd.byte2 = 0x00;
|
1994-04-11 06:23:41 +04:00
|
|
|
scsi_cmd.how = type;
|
1994-02-01 23:05:19 +03:00
|
|
|
return scsi_scsi_cmd(sc_link, (struct scsi_generic *) &scsi_cmd,
|
1994-04-11 06:23:41 +04:00
|
|
|
sizeof(scsi_cmd), 0, 0, 2,
|
1994-12-28 22:42:47 +03:00
|
|
|
type == SSS_START ? 30000 : 10000, NULL, flags);
|
|
|
|
}
|
|
|
|
|
1993-11-24 07:52:44 +03:00
|
|
|
/*
|
|
|
|
* This routine is called by the scsi interrupt when the transfer is complete.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
scsi_done(xs)
|
|
|
|
struct scsi_xfer *xs;
|
|
|
|
{
|
|
|
|
struct scsi_link *sc_link = xs->sc_link;
|
1997-04-02 06:29:30 +04:00
|
|
|
struct buf *bp;
|
1994-04-11 07:53:45 +04:00
|
|
|
int error;
|
1993-11-24 07:52:44 +03:00
|
|
|
|
|
|
|
SC_DEBUG(sc_link, SDEV_DB2, ("scsi_done\n"));
|
|
|
|
#ifdef SCSIDEBUG
|
1994-12-28 22:42:47 +03:00
|
|
|
if ((sc_link->flags & SDEV_DB1) != 0)
|
1993-11-24 07:52:44 +03:00
|
|
|
show_scsi_cmd(xs);
|
1994-12-28 22:42:47 +03:00
|
|
|
#endif /* SCSIDEBUG */
|
|
|
|
|
1993-11-24 07:52:44 +03:00
|
|
|
/*
|
|
|
|
* If it's a user level request, bypass all usual completion processing,
|
|
|
|
* let the user work it out.. We take reponsibility for freeing the
|
|
|
|
* xs when the user returns. (and restarting the device's queue).
|
|
|
|
*/
|
1994-12-28 22:42:47 +03:00
|
|
|
if ((xs->flags & SCSI_USER) != 0) {
|
1993-11-24 07:52:44 +03:00
|
|
|
SC_DEBUG(sc_link, SDEV_DB3, ("calling user done()\n"));
|
|
|
|
scsi_user_done(xs); /* to take a copy of the sense etc. */
|
|
|
|
SC_DEBUG(sc_link, SDEV_DB3, ("returned from user done()\n "));
|
1994-12-01 15:04:43 +03:00
|
|
|
|
1994-12-28 22:42:47 +03:00
|
|
|
scsi_free_xs(xs, SCSI_NOSLEEP); /* restarts queue too */
|
1993-11-24 07:52:44 +03:00
|
|
|
SC_DEBUG(sc_link, SDEV_DB3, ("returning to adapter\n"));
|
|
|
|
return;
|
|
|
|
}
|
1994-12-28 22:42:47 +03:00
|
|
|
|
1997-03-18 04:28:10 +03:00
|
|
|
if (!((xs->flags & (SCSI_NOSLEEP | SCSI_POLL)) == SCSI_NOSLEEP)) {
|
1993-11-24 07:52:44 +03:00
|
|
|
/*
|
|
|
|
* if it's a normal upper level request, then ask
|
|
|
|
* the upper level code to handle error checking
|
|
|
|
* rather than doing it here at interrupt time
|
|
|
|
*/
|
|
|
|
wakeup(xs);
|
|
|
|
return;
|
|
|
|
}
|
1997-04-02 06:29:30 +04:00
|
|
|
|
1993-11-24 07:52:44 +03:00
|
|
|
/*
|
|
|
|
* Go and handle errors now.
|
1994-12-28 22:42:47 +03:00
|
|
|
* If it returns ERESTART then we should RETRY
|
1993-11-24 07:52:44 +03:00
|
|
|
*/
|
1994-12-28 22:42:47 +03:00
|
|
|
retry:
|
1997-04-02 06:29:30 +04:00
|
|
|
error = sc_err1(xs, 1);
|
|
|
|
if (error == ERESTART) {
|
1994-12-28 22:42:47 +03:00
|
|
|
switch ((*(sc_link->adapter->scsi_cmd)) (xs)) {
|
|
|
|
case SUCCESSFULLY_QUEUED:
|
1993-11-24 07:52:44 +03:00
|
|
|
return;
|
1994-12-28 22:42:47 +03:00
|
|
|
|
|
|
|
case TRY_AGAIN_LATER:
|
|
|
|
xs->error = XS_BUSY;
|
|
|
|
case COMPLETE:
|
|
|
|
goto retry;
|
|
|
|
}
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
1997-04-02 06:29:30 +04:00
|
|
|
|
|
|
|
bp = xs->bp;
|
|
|
|
if (bp) {
|
|
|
|
if (error) {
|
|
|
|
bp->b_error = error;
|
|
|
|
bp->b_flags |= B_ERROR;
|
|
|
|
bp->b_resid = bp->b_bcount;
|
|
|
|
} else {
|
|
|
|
bp->b_error = 0;
|
|
|
|
bp->b_resid = xs->resid;
|
|
|
|
}
|
|
|
|
}
|
1996-01-13 01:43:26 +03:00
|
|
|
if (sc_link->device->done) {
|
|
|
|
/*
|
|
|
|
* Tell the device the operation is actually complete.
|
|
|
|
* No more will happen with this xfer. This for
|
|
|
|
* notification of the upper-level driver only; they
|
|
|
|
* won't be returning any meaningful information to us.
|
|
|
|
*/
|
1997-04-02 06:29:30 +04:00
|
|
|
(*sc_link->device->done)(xs);
|
1996-01-13 01:43:26 +03:00
|
|
|
}
|
1994-12-28 22:42:47 +03:00
|
|
|
scsi_free_xs(xs, SCSI_NOSLEEP);
|
1997-04-02 06:29:30 +04:00
|
|
|
if (bp)
|
|
|
|
biodone(bp);
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
|
1994-12-28 22:42:47 +03:00
|
|
|
int
|
|
|
|
scsi_execute_xs(xs)
|
1993-11-24 07:52:44 +03:00
|
|
|
struct scsi_xfer *xs;
|
1994-12-28 22:42:47 +03:00
|
|
|
{
|
1994-04-11 07:53:45 +04:00
|
|
|
int error;
|
|
|
|
int s;
|
1993-11-24 07:52:44 +03:00
|
|
|
|
1994-12-28 22:42:47 +03:00
|
|
|
xs->flags &= ~ITSDONE;
|
|
|
|
xs->error = XS_NOERROR;
|
|
|
|
xs->resid = xs->datalen;
|
1993-11-24 07:52:44 +03:00
|
|
|
|
|
|
|
retry:
|
|
|
|
/*
|
|
|
|
* Do the transfer. If we are polling we will return:
|
|
|
|
* COMPLETE, Was poll, and scsi_done has been called
|
|
|
|
* TRY_AGAIN_LATER, Adapter short resources, try again
|
|
|
|
*
|
|
|
|
* if under full steam (interrupts) it will return:
|
|
|
|
* SUCCESSFULLY_QUEUED, will do a wakeup when complete
|
|
|
|
* TRY_AGAIN_LATER, (as for polling)
|
|
|
|
* After the wakeup, we must still check if it succeeded
|
|
|
|
*
|
1997-03-18 04:28:10 +03:00
|
|
|
* If we have a SCSI_NOSLEEP (typically because we have a buf)
|
|
|
|
* we just return. All the error proccessing and the buffer
|
|
|
|
* code both expect us to return straight to them, so as soon
|
|
|
|
* as the command is queued, return.
|
1993-11-24 07:52:44 +03:00
|
|
|
*/
|
1994-12-28 22:42:47 +03:00
|
|
|
switch ((*(xs->sc_link->adapter->scsi_cmd)) (xs)) {
|
1993-11-24 07:52:44 +03:00
|
|
|
case SUCCESSFULLY_QUEUED:
|
1997-03-18 04:28:10 +03:00
|
|
|
if ((xs->flags & (SCSI_NOSLEEP | SCSI_POLL)) == SCSI_NOSLEEP)
|
1994-12-28 22:42:47 +03:00
|
|
|
return EJUSTRETURN;
|
1997-03-18 04:28:10 +03:00
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (xs->flags & SCSI_NOSLEEP)
|
|
|
|
panic("scsi_execute_xs: NOSLEEP and POLL");
|
|
|
|
#endif
|
1993-11-24 07:52:44 +03:00
|
|
|
s = splbio();
|
1994-12-28 22:42:47 +03:00
|
|
|
while ((xs->flags & ITSDONE) == 0)
|
1993-11-27 22:49:09 +03:00
|
|
|
tsleep(xs, PRIBIO + 1, "scsi_scsi_cmd", 0);
|
1993-11-24 07:52:44 +03:00
|
|
|
splx(s);
|
|
|
|
case COMPLETE: /* Polling command completed ok */
|
1994-12-28 22:42:47 +03:00
|
|
|
if (xs->bp)
|
|
|
|
return EJUSTRETURN;
|
|
|
|
doit:
|
1994-12-30 08:33:06 +03:00
|
|
|
SC_DEBUG(xs->sc_link, SDEV_DB3, ("back in cmd()\n"));
|
1994-12-28 22:42:47 +03:00
|
|
|
if ((error = sc_err1(xs, 0)) != ERESTART)
|
|
|
|
return error;
|
|
|
|
goto retry;
|
1993-11-24 07:52:44 +03:00
|
|
|
|
|
|
|
case TRY_AGAIN_LATER: /* adapter resource shortage */
|
1994-12-28 22:42:47 +03:00
|
|
|
xs->error = XS_BUSY;
|
|
|
|
goto doit;
|
|
|
|
|
1993-11-24 07:52:44 +03:00
|
|
|
default:
|
1994-12-28 22:42:47 +03:00
|
|
|
panic("scsi_execute_xs: invalid return code");
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
1994-12-28 22:42:47 +03:00
|
|
|
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
panic("scsi_execute_xs: impossible");
|
|
|
|
#endif
|
1996-02-15 00:46:52 +03:00
|
|
|
return EINVAL;
|
1994-12-28 22:42:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ask the scsi driver to perform a command for us.
|
|
|
|
* tell it where to read/write the data, and how
|
|
|
|
* long the data is supposed to be. If we have a buf
|
|
|
|
* to associate with the transfer, we need that too.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
scsi_scsi_cmd(sc_link, scsi_cmd, cmdlen, data_addr, datalen,
|
|
|
|
retries, timeout, bp, flags)
|
|
|
|
struct scsi_link *sc_link;
|
|
|
|
struct scsi_generic *scsi_cmd;
|
|
|
|
int cmdlen;
|
|
|
|
u_char *data_addr;
|
|
|
|
int datalen;
|
|
|
|
int retries;
|
|
|
|
int timeout;
|
|
|
|
struct buf *bp;
|
|
|
|
int flags;
|
|
|
|
{
|
|
|
|
struct scsi_xfer *xs;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
SC_DEBUG(sc_link, SDEV_DB2, ("scsi_cmd\n"));
|
|
|
|
|
1995-01-13 17:38:13 +03:00
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (bp != 0 && (flags & SCSI_NOSLEEP) == 0)
|
|
|
|
panic("scsi_scsi_cmd: buffer without nosleep");
|
|
|
|
#endif
|
|
|
|
|
1994-12-28 22:42:47 +03:00
|
|
|
if ((xs = scsi_make_xs(sc_link, scsi_cmd, cmdlen, data_addr, datalen,
|
|
|
|
retries, timeout, bp, flags)) == NULL)
|
|
|
|
return ENOMEM;
|
|
|
|
|
|
|
|
if ((error = scsi_execute_xs(xs)) == EJUSTRETURN)
|
|
|
|
return 0;
|
|
|
|
|
1993-11-24 07:52:44 +03:00
|
|
|
/*
|
|
|
|
* we have finished with the xfer stuct, free it and
|
|
|
|
* check if anyone else needs to be started up.
|
|
|
|
*/
|
1994-12-28 22:42:47 +03:00
|
|
|
scsi_free_xs(xs, flags);
|
1994-04-11 07:53:45 +04:00
|
|
|
return error;
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
|
1993-11-24 12:45:04 +03:00
|
|
|
int
|
1994-12-28 22:42:47 +03:00
|
|
|
sc_err1(xs, async)
|
1993-11-24 07:52:44 +03:00
|
|
|
struct scsi_xfer *xs;
|
1994-12-28 22:42:47 +03:00
|
|
|
int async;
|
1993-11-24 07:52:44 +03:00
|
|
|
{
|
1994-04-11 07:53:45 +04:00
|
|
|
int error;
|
1993-11-24 07:52:44 +03:00
|
|
|
|
|
|
|
SC_DEBUG(xs->sc_link, SDEV_DB3, ("sc_err1,err = 0x%x \n", xs->error));
|
1994-12-28 22:42:47 +03:00
|
|
|
|
1993-11-24 07:52:44 +03:00
|
|
|
/*
|
|
|
|
* If it has a buf, we might be working with
|
|
|
|
* a request from the buffer cache or some other
|
|
|
|
* piece of code that requires us to process
|
|
|
|
* errors at inetrrupt time. We have probably
|
|
|
|
* been called by scsi_done()
|
|
|
|
*/
|
|
|
|
switch (xs->error) {
|
|
|
|
case XS_NOERROR: /* nearly always hit this one */
|
1994-04-11 07:53:45 +04:00
|
|
|
error = 0;
|
1993-11-24 07:52:44 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case XS_SENSE:
|
1994-12-28 22:42:47 +03:00
|
|
|
if ((error = scsi_interpret_sense(xs)) == ERESTART)
|
|
|
|
goto retry;
|
1994-12-01 16:07:28 +03:00
|
|
|
SC_DEBUG(xs->sc_link, SDEV_DB3,
|
|
|
|
("scsi_interpret_sense returned %d\n", error));
|
1993-11-24 07:52:44 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case XS_BUSY:
|
1994-12-28 22:42:47 +03:00
|
|
|
if (xs->retries) {
|
|
|
|
if ((xs->flags & SCSI_POLL) != 0)
|
|
|
|
delay(1000000);
|
|
|
|
else if ((xs->flags & SCSI_NOSLEEP) == 0)
|
|
|
|
tsleep(&lbolt, PRIBIO, "scbusy", 0);
|
|
|
|
else
|
|
|
|
#if 0
|
|
|
|
timeout(scsi_requeue, xs, hz);
|
|
|
|
#else
|
|
|
|
goto lose;
|
|
|
|
#endif
|
|
|
|
}
|
1993-11-24 07:52:44 +03:00
|
|
|
case XS_TIMEOUT:
|
1994-12-28 22:42:47 +03:00
|
|
|
retry:
|
1993-11-24 07:52:44 +03:00
|
|
|
if (xs->retries--) {
|
|
|
|
xs->error = XS_NOERROR;
|
|
|
|
xs->flags &= ~ITSDONE;
|
1994-12-28 22:42:47 +03:00
|
|
|
return ERESTART;
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
case XS_DRIVER_STUFFUP:
|
1994-12-28 22:42:47 +03:00
|
|
|
lose:
|
|
|
|
error = EIO;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case XS_SELTIMEOUT:
|
|
|
|
/* XXX Disable device? */
|
1994-04-11 07:53:45 +04:00
|
|
|
error = EIO;
|
1993-11-24 07:52:44 +03:00
|
|
|
break;
|
1994-12-01 16:07:28 +03:00
|
|
|
|
1993-11-24 07:52:44 +03:00
|
|
|
default:
|
|
|
|
sc_print_addr(xs->sc_link);
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("unknown error category from scsi driver\n");
|
1994-12-01 16:07:28 +03:00
|
|
|
error = EIO;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1994-12-28 22:42:47 +03:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
1993-11-24 07:52:44 +03:00
|
|
|
/*
|
|
|
|
* Look at the returned sense and act on the error, determining
|
|
|
|
* the unix error number to pass back. (0 = report no error)
|
|
|
|
*
|
|
|
|
* THIS IS THE DEFAULT ERROR HANDLER
|
|
|
|
*/
|
1993-11-24 12:45:04 +03:00
|
|
|
int
|
1993-11-24 07:52:44 +03:00
|
|
|
scsi_interpret_sense(xs)
|
|
|
|
struct scsi_xfer *xs;
|
|
|
|
{
|
|
|
|
struct scsi_sense_data *sense;
|
|
|
|
struct scsi_link *sc_link = xs->sc_link;
|
1994-12-28 22:42:47 +03:00
|
|
|
u_int8_t key;
|
|
|
|
u_int32_t info;
|
1993-11-24 12:45:04 +03:00
|
|
|
int error;
|
1997-08-20 22:19:12 +04:00
|
|
|
#ifndef SCSIVERBOSE
|
1994-12-28 22:42:47 +03:00
|
|
|
static char *error_mes[] = {
|
|
|
|
"soft error (corrected)",
|
|
|
|
"not ready", "medium error",
|
|
|
|
"non-media hardware failure", "illegal request",
|
|
|
|
"unit attention", "readonly device",
|
|
|
|
"no data found", "vendor unique",
|
|
|
|
"copy aborted", "command aborted",
|
|
|
|
"search returned equal", "volume overflow",
|
|
|
|
"verify miscompare", "unknown error key"
|
1993-11-24 07:52:44 +03:00
|
|
|
};
|
1997-08-20 22:19:12 +04:00
|
|
|
#endif
|
1993-11-24 07:52:44 +03:00
|
|
|
|
1994-04-11 07:53:45 +04:00
|
|
|
sense = &xs->sense;
|
1993-11-24 07:52:44 +03:00
|
|
|
#ifdef SCSIDEBUG
|
1994-12-28 22:42:47 +03:00
|
|
|
if ((sc_link->flags & SDEV_DB1) != 0) {
|
|
|
|
int count;
|
1997-08-04 10:55:22 +04:00
|
|
|
printf("code 0x%x valid 0x%x ",
|
1993-11-24 07:52:44 +03:00
|
|
|
sense->error_code & SSD_ERRCODE,
|
|
|
|
sense->error_code & SSD_ERRCODE_VALID ? 1 : 0);
|
1997-08-04 10:55:22 +04:00
|
|
|
printf("seg 0x%x key 0x%x ili 0x%x eom 0x%x fmark 0x%x\n",
|
1996-03-19 06:05:15 +03:00
|
|
|
sense->segment,
|
|
|
|
sense->flags & SSD_KEY,
|
|
|
|
sense->flags & SSD_ILI ? 1 : 0,
|
|
|
|
sense->flags & SSD_EOM ? 1 : 0,
|
|
|
|
sense->flags & SSD_FILEMARK ? 1 : 0);
|
1997-08-04 10:55:22 +04:00
|
|
|
printf("info: 0x%x 0x%x 0x%x 0x%x followed by %d extra bytes\n",
|
1996-03-19 06:05:15 +03:00
|
|
|
sense->info[0],
|
|
|
|
sense->info[1],
|
|
|
|
sense->info[2],
|
|
|
|
sense->info[3],
|
|
|
|
sense->extra_len);
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("extra: ");
|
1996-03-19 06:05:15 +03:00
|
|
|
for (count = 0; count < sense->extra_len; count++)
|
1997-08-04 10:55:22 +04:00
|
|
|
printf("0x%x ", sense->extra_bytes[count]);
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("\n");
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
1997-08-20 22:19:12 +04:00
|
|
|
#endif /* SCSIDEBUG */
|
1993-11-24 07:52:44 +03:00
|
|
|
/*
|
|
|
|
* If the device has it's own error handler, call it first.
|
|
|
|
* If it returns a legit error value, return that, otherwise
|
|
|
|
* it wants us to continue with normal error processing.
|
|
|
|
*/
|
|
|
|
if (sc_link->device->err_handler) {
|
|
|
|
SC_DEBUG(sc_link, SDEV_DB2, ("calling private err_handler()\n"));
|
1993-11-24 12:45:04 +03:00
|
|
|
error = (*sc_link->device->err_handler) (xs);
|
|
|
|
if (error != -1)
|
|
|
|
return error; /* error >= 0 better ? */
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
/* otherwise use the default */
|
|
|
|
switch (sense->error_code & SSD_ERRCODE) {
|
|
|
|
/*
|
|
|
|
* If it's code 70, use the extended stuff and interpret the key
|
|
|
|
*/
|
|
|
|
case 0x71: /* delayed error */
|
|
|
|
sc_print_addr(sc_link);
|
1996-03-19 06:05:15 +03:00
|
|
|
key = sense->flags & SSD_KEY;
|
1997-08-20 22:19:12 +04:00
|
|
|
printf(" DEFERRED ERROR, key = 0x%x\n", key);
|
|
|
|
/* FALLTHROUGH */
|
1993-11-24 07:52:44 +03:00
|
|
|
case 0x70:
|
1996-03-19 06:05:15 +03:00
|
|
|
if ((sense->error_code & SSD_ERRCODE_VALID) != 0)
|
|
|
|
info = _4btol(sense->info);
|
|
|
|
else
|
1993-11-24 07:52:44 +03:00
|
|
|
info = 0;
|
1996-03-19 06:05:15 +03:00
|
|
|
key = sense->flags & SSD_KEY;
|
1993-11-24 07:52:44 +03:00
|
|
|
|
1994-12-28 22:42:47 +03:00
|
|
|
switch (key) {
|
|
|
|
case 0x0: /* NO SENSE */
|
1994-12-29 16:49:57 +03:00
|
|
|
case 0x1: /* RECOVERED ERROR */
|
1994-12-28 22:42:47 +03:00
|
|
|
if (xs->resid == xs->datalen)
|
|
|
|
xs->resid = 0; /* not short read */
|
|
|
|
case 0xc: /* EQUAL */
|
|
|
|
error = 0;
|
|
|
|
break;
|
|
|
|
case 0x2: /* NOT READY */
|
|
|
|
if ((sc_link->flags & SDEV_REMOVABLE) != 0)
|
|
|
|
sc_link->flags &= ~SDEV_MEDIA_LOADED;
|
|
|
|
if ((xs->flags & SCSI_IGNORE_NOT_READY) != 0)
|
|
|
|
return 0;
|
|
|
|
if ((xs->flags & SCSI_SILENT) != 0)
|
|
|
|
return EIO;
|
|
|
|
error = EIO;
|
|
|
|
break;
|
|
|
|
case 0x5: /* ILLEGAL REQUEST */
|
|
|
|
if ((xs->flags & SCSI_IGNORE_ILLEGAL_REQUEST) != 0)
|
|
|
|
return 0;
|
1996-07-05 20:19:02 +04:00
|
|
|
if ((xs->flags & SCSI_SILENT) != 0)
|
|
|
|
return EIO;
|
1994-12-28 22:42:47 +03:00
|
|
|
error = EINVAL;
|
|
|
|
break;
|
|
|
|
case 0x6: /* UNIT ATTENTION */
|
|
|
|
if ((sc_link->flags & SDEV_REMOVABLE) != 0)
|
|
|
|
sc_link->flags &= ~SDEV_MEDIA_LOADED;
|
|
|
|
if ((xs->flags & SCSI_IGNORE_MEDIA_CHANGE) != 0 ||
|
|
|
|
/* XXX Should reupload any transient state. */
|
|
|
|
(sc_link->flags & SDEV_REMOVABLE) == 0)
|
|
|
|
return ERESTART;
|
|
|
|
if ((xs->flags & SCSI_SILENT) != 0)
|
|
|
|
return EIO;
|
|
|
|
error = EIO;
|
|
|
|
break;
|
|
|
|
case 0x7: /* DATA PROTECT */
|
|
|
|
error = EACCES;
|
|
|
|
break;
|
|
|
|
case 0x8: /* BLANK CHECK */
|
|
|
|
error = 0;
|
|
|
|
break;
|
1996-01-31 18:16:06 +03:00
|
|
|
case 0xb: /* COMMAND ABORTED */
|
|
|
|
error = ERESTART;
|
|
|
|
break;
|
1994-12-28 22:42:47 +03:00
|
|
|
case 0xd: /* VOLUME OVERFLOW */
|
|
|
|
error = ENOSPC;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
error = EIO;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1997-08-20 22:19:12 +04:00
|
|
|
|
|
|
|
#ifdef SCSIVERBOSE
|
|
|
|
scsi_print_sense(xs, 0);
|
|
|
|
#else
|
1994-12-28 22:42:47 +03:00
|
|
|
if (key) {
|
1993-11-24 07:52:44 +03:00
|
|
|
sc_print_addr(sc_link);
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("%s", error_mes[key - 1]);
|
1994-12-28 22:42:47 +03:00
|
|
|
if ((sense->error_code & SSD_ERRCODE_VALID) != 0) {
|
1993-11-24 07:52:44 +03:00
|
|
|
switch (key) {
|
1994-12-29 16:49:57 +03:00
|
|
|
case 0x2: /* NOT READY */
|
|
|
|
case 0x5: /* ILLEGAL REQUEST */
|
|
|
|
case 0x6: /* UNIT ATTENTION */
|
1993-11-24 07:52:44 +03:00
|
|
|
case 0x7: /* DATA PROTECT */
|
|
|
|
break;
|
|
|
|
case 0x8: /* BLANK CHECK */
|
1996-10-13 03:23:13 +04:00
|
|
|
printf(", requested size: %d (decimal)",
|
1993-11-24 07:52:44 +03:00
|
|
|
info);
|
|
|
|
break;
|
1996-01-31 18:16:06 +03:00
|
|
|
case 0xb:
|
|
|
|
if (xs->retries)
|
1996-10-13 03:23:13 +04:00
|
|
|
printf(", retrying");
|
|
|
|
printf(", cmd 0x%x, info 0x%x",
|
1996-01-31 18:16:06 +03:00
|
|
|
xs->cmd->opcode, info);
|
|
|
|
break;
|
1993-11-24 07:52:44 +03:00
|
|
|
default:
|
1996-10-13 03:23:13 +04:00
|
|
|
printf(", info = %d (decimal)", info);
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
}
|
1996-03-19 06:05:15 +03:00
|
|
|
if (sense->extra_len != 0) {
|
1995-01-13 17:38:13 +03:00
|
|
|
int n;
|
1996-10-13 03:23:13 +04:00
|
|
|
printf(", data =");
|
1996-03-19 06:05:15 +03:00
|
|
|
for (n = 0; n < sense->extra_len; n++)
|
1997-06-09 23:36:56 +04:00
|
|
|
printf(" %02x", sense->cmd_spec_info[n]);
|
1995-01-13 17:38:13 +03:00
|
|
|
}
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("\n");
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
1997-08-20 22:19:12 +04:00
|
|
|
#endif
|
1994-12-28 22:42:47 +03:00
|
|
|
return error;
|
|
|
|
|
1993-11-24 07:52:44 +03:00
|
|
|
/*
|
|
|
|
* Not code 70, just report it
|
|
|
|
*/
|
|
|
|
default:
|
1994-12-28 22:42:47 +03:00
|
|
|
sc_print_addr(sc_link);
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("error code %d",
|
1994-12-28 22:42:47 +03:00
|
|
|
sense->error_code & SSD_ERRCODE);
|
|
|
|
if ((sense->error_code & SSD_ERRCODE_VALID) != 0) {
|
1996-03-19 06:05:15 +03:00
|
|
|
struct scsi_sense_data_unextended *usense =
|
|
|
|
(struct scsi_sense_data_unextended *)sense;
|
1996-10-13 03:23:13 +04:00
|
|
|
printf(" at block no. %d (decimal)",
|
1996-03-19 06:05:15 +03:00
|
|
|
_3btol(usense->block));
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("\n");
|
1994-04-11 07:53:45 +04:00
|
|
|
return EIO;
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Utility routines often used in SCSI stuff
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Print out the scsi_link structure's address info.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
sc_print_addr(sc_link)
|
1994-12-28 22:42:47 +03:00
|
|
|
struct scsi_link *sc_link;
|
1993-11-24 07:52:44 +03:00
|
|
|
{
|
|
|
|
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("%s(%s:%d:%d): ",
|
1994-12-28 22:42:47 +03:00
|
|
|
sc_link->device_softc ?
|
|
|
|
((struct device *)sc_link->device_softc)->dv_xname : "probe",
|
|
|
|
((struct device *)sc_link->adapter_softc)->dv_xname,
|
|
|
|
sc_link->target, sc_link->lun);
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
|
1997-08-20 22:19:12 +04:00
|
|
|
#ifdef SCSIVERBOSE
|
|
|
|
static const char *sense_keys[16] = {
|
|
|
|
"No Additional Sense",
|
|
|
|
"Soft Error",
|
|
|
|
"Not Ready",
|
|
|
|
"Media Error",
|
|
|
|
"Hardware Error",
|
|
|
|
"Illegal Request",
|
|
|
|
"Unit Attention",
|
|
|
|
"Write Protected",
|
|
|
|
"Blank Check",
|
|
|
|
"Vendor Unique",
|
|
|
|
"Copy Aborted",
|
|
|
|
"Aborted Command",
|
|
|
|
"Equal Error",
|
|
|
|
"Volume Overflow",
|
|
|
|
"Miscompare Error",
|
|
|
|
"Reserved"
|
|
|
|
};
|
|
|
|
static const struct {
|
|
|
|
unsigned char asc;
|
|
|
|
unsigned char ascq;
|
|
|
|
char *description;
|
|
|
|
} adesc[] = {
|
|
|
|
{ 0x00, 0x00, "No Additional Sense Information" },
|
|
|
|
{ 0x00, 0x01, "Filemark Detected" },
|
|
|
|
{ 0x00, 0x02, "End-Of-Partition/Medium Detected" },
|
|
|
|
{ 0x00, 0x03, "Setmark Detected" },
|
|
|
|
{ 0x00, 0x04, "Beginning-Of-Partition/Medium Detected" },
|
|
|
|
{ 0x00, 0x05, "End-Of-Data Detected" },
|
|
|
|
{ 0x00, 0x06, "I/O Process Terminated" },
|
|
|
|
{ 0x00, 0x11, "Audio Play Operation In Progress" },
|
|
|
|
{ 0x00, 0x12, "Audio Play Operation Paused" },
|
|
|
|
{ 0x00, 0x13, "Audio Play Operation Successfully Completed" },
|
|
|
|
{ 0x00, 0x14, "Audio Play Operation Stopped Due to Error" },
|
|
|
|
{ 0x00, 0x15, "No Current Audio Status To Return" },
|
|
|
|
{ 0x01, 0x00, "No Index/Sector Signal" },
|
|
|
|
{ 0x02, 0x00, "No Seek Complete" },
|
|
|
|
{ 0x03, 0x00, "Peripheral Device Write Fault" },
|
|
|
|
{ 0x03, 0x01, "No Write Current" },
|
|
|
|
{ 0x03, 0x02, "Excessive Write Errors" },
|
|
|
|
{ 0x04, 0x00, "Logical Unit Not Ready, Cause Not Reportable" },
|
|
|
|
{ 0x04, 0x01, "Logical Unit Is in Process Of Becoming Ready" },
|
|
|
|
{ 0x04, 0x02, "Logical Unit Not Ready, Initialization Command Required" },
|
|
|
|
{ 0x04, 0x03, "Logical Unit Not Ready, Manual Intervention Required" },
|
|
|
|
{ 0x04, 0x04, "Logical Unit Not Ready, Format In Progress" },
|
|
|
|
{ 0x05, 0x00, "Logical Unit Does Not Respond To Selection" },
|
|
|
|
{ 0x06, 0x00, "No Reference Position Found" },
|
|
|
|
{ 0x07, 0x00, "Multiple Peripheral Devices Selected" },
|
|
|
|
{ 0x08, 0x00, "Logical Unit Communication Failure" },
|
|
|
|
{ 0x08, 0x01, "Logical Unit Communication Timeout" },
|
|
|
|
{ 0x08, 0x02, "Logical Unit Communication Parity Error" },
|
|
|
|
{ 0x09, 0x00, "Track Following Error" },
|
|
|
|
{ 0x09, 0x01, "Tracking Servo Failure" },
|
|
|
|
{ 0x09, 0x02, "Focus Servo Failure" },
|
|
|
|
{ 0x09, 0x03, "Spindle Servo Failure" },
|
|
|
|
{ 0x0A, 0x00, "Error Log Overflow" },
|
|
|
|
{ 0x0C, 0x00, "Write Error" },
|
|
|
|
{ 0x0C, 0x01, "Write Error Recovered with Auto Reallocation" },
|
|
|
|
{ 0x0C, 0x02, "Write Error - Auto Reallocate Failed" },
|
|
|
|
{ 0x10, 0x00, "ID CRC Or ECC Error" },
|
|
|
|
{ 0x11, 0x00, "Unrecovered Read Error" },
|
|
|
|
{ 0x11, 0x01, "Read Retried Exhausted" },
|
|
|
|
{ 0x11, 0x02, "Error Too Long To Correct" },
|
|
|
|
{ 0x11, 0x03, "Multiple Read Errors" },
|
|
|
|
{ 0x11, 0x04, "Unrecovered Read Error - Auto Reallocate Failed" },
|
|
|
|
{ 0x11, 0x05, "L-EC Uncorrectable Error" },
|
|
|
|
{ 0x11, 0x06, "CIRC Unrecovered Error" },
|
|
|
|
{ 0x11, 0x07, "Data Resynchronization Error" },
|
|
|
|
{ 0x11, 0x08, "Incomplete Block Found" },
|
|
|
|
{ 0x11, 0x09, "No Gap Found" },
|
|
|
|
{ 0x11, 0x0A, "Miscorrected Error" },
|
|
|
|
{ 0x11, 0x0B, "Uncorrected Read Error - Recommend Reassignment" },
|
|
|
|
{ 0x11, 0x0C, "Uncorrected Read Error - Recommend Rewrite the Data" },
|
|
|
|
{ 0x12, 0x00, "Address Mark Not Found for ID Field" },
|
|
|
|
{ 0x13, 0x00, "Address Mark Not Found for Data Field" },
|
|
|
|
{ 0x14, 0x00, "Recorded Entity Not Found" },
|
|
|
|
{ 0x14, 0x01, "Record Not Found" },
|
|
|
|
{ 0x14, 0x02, "Filemark or Setmark Not Found" },
|
|
|
|
{ 0x14, 0x03, "End-Of-Data Not Found" },
|
|
|
|
{ 0x14, 0x04, "Block Sequence Error" },
|
|
|
|
{ 0x15, 0x00, "Random Positioning Error" },
|
|
|
|
{ 0x15, 0x01, "Mechanical Positioning Error" },
|
|
|
|
{ 0x15, 0x02, "Positioning Error Detected By Read of Medium" },
|
|
|
|
{ 0x16, 0x00, "Data Synchronization Mark Error" },
|
|
|
|
{ 0x17, 0x00, "Recovered Data With No Error Correction Applied" },
|
|
|
|
{ 0x17, 0x01, "Recovered Data With Retries" },
|
|
|
|
{ 0x17, 0x02, "Recovered Data With Positive Head Offset" },
|
|
|
|
{ 0x17, 0x03, "Recovered Data With Negative Head Offset" },
|
|
|
|
{ 0x17, 0x04, "Recovered Data With Retries and/or CIRC Applied" },
|
|
|
|
{ 0x17, 0x05, "Recovered Data Using Previous Sector ID" },
|
|
|
|
{ 0x17, 0x06, "Recovered Data Without ECC - Data Auto-Reallocated" },
|
|
|
|
{ 0x17, 0x07, "Recovered Data Without ECC - Recommend Reassignment" },
|
|
|
|
{ 0x17, 0x08, "Recovered Data Without ECC - Recommend Rewrite" },
|
|
|
|
{ 0x18, 0x00, "Recovered Data With Error Correction Applied" },
|
|
|
|
{ 0x18, 0x01, "Recovered Data With Error Correction & Retries Applied" },
|
|
|
|
{ 0x18, 0x02, "Recovered Data - Data Auto-Reallocated" },
|
|
|
|
{ 0x18, 0x03, "Recovered Data With CIRC" },
|
|
|
|
{ 0x18, 0x04, "Recovered Data With LEC" },
|
|
|
|
{ 0x18, 0x05, "Recovered Data - Recommend Reassignment" },
|
|
|
|
{ 0x18, 0x06, "Recovered Data - Recommend Rewrite" },
|
|
|
|
{ 0x19, 0x00, "Defect List Error" },
|
|
|
|
{ 0x19, 0x01, "Defect List Not Available" },
|
|
|
|
{ 0x19, 0x02, "Defect List Error in Primary List" },
|
|
|
|
{ 0x19, 0x03, "Defect List Error in Grown List" },
|
|
|
|
{ 0x1A, 0x00, "Parameter List Length Error" },
|
|
|
|
{ 0x1B, 0x00, "Synchronous Data Transfer Error" },
|
|
|
|
{ 0x1C, 0x00, "Defect List Not Found" },
|
|
|
|
{ 0x1C, 0x01, "Primary Defect List Not Found" },
|
|
|
|
{ 0x1C, 0x02, "Grown Defect List Not Found" },
|
|
|
|
{ 0x1D, 0x00, "Miscompare During Verify Operation" },
|
|
|
|
{ 0x1E, 0x00, "Recovered ID with ECC" },
|
|
|
|
{ 0x20, 0x00, "Invalid Command Operation Code" },
|
|
|
|
{ 0x21, 0x00, "Logical Block Address Out of Range" },
|
|
|
|
{ 0x21, 0x01, "Invalid Element Address" },
|
|
|
|
{ 0x22, 0x00, "Illegal Function (Should 20 00, 24 00, or 26 00)" },
|
|
|
|
{ 0x24, 0x00, "Illegal Field in CDB" },
|
|
|
|
{ 0x25, 0x00, "Logical Unit Not Supported" },
|
|
|
|
{ 0x26, 0x00, "Invalid Field In Parameter List" },
|
|
|
|
{ 0x26, 0x01, "Parameter Not Supported" },
|
|
|
|
{ 0x26, 0x02, "Parameter Value Invalid" },
|
|
|
|
{ 0x26, 0x03, "Threshold Parameters Not Supported" },
|
|
|
|
{ 0x27, 0x00, "Write Protected" },
|
|
|
|
{ 0x28, 0x00, "Not Ready To Ready Transition (Medium May Have Changed)" },
|
|
|
|
{ 0x28, 0x01, "Import Or Export Element Accessed" },
|
|
|
|
{ 0x29, 0x00, "Power On, Reset, or Bus Device Reset Occurred" },
|
|
|
|
{ 0x2A, 0x00, "Parameters Changed" },
|
|
|
|
{ 0x2A, 0x01, "Mode Parameters Changed" },
|
|
|
|
{ 0x2A, 0x02, "Log Parameters Changed" },
|
|
|
|
{ 0x2B, 0x00, "Copy Cannot Execute Since Host Cannot Disconnect" },
|
|
|
|
{ 0x2C, 0x00, "Command Sequence Error" },
|
|
|
|
{ 0x2C, 0x01, "Too Many Windows Specified" },
|
|
|
|
{ 0x2C, 0x02, "Invalid Combination of Windows Specified" },
|
|
|
|
{ 0x2D, 0x00, "Overwrite Error On Update In Place" },
|
|
|
|
{ 0x2F, 0x00, "Commands Cleared By Another Initiator" },
|
|
|
|
{ 0x30, 0x00, "Incompatible Medium Installed" },
|
|
|
|
{ 0x30, 0x01, "Cannot Read Medium - Unknown Format" },
|
|
|
|
{ 0x30, 0x02, "Cannot Read Medium - Incompatible Format" },
|
|
|
|
{ 0x30, 0x03, "Cleaning Cartridge Installed" },
|
|
|
|
{ 0x31, 0x00, "Medium Format Corrupted" },
|
|
|
|
{ 0x31, 0x01, "Format Command Failed" },
|
|
|
|
{ 0x32, 0x00, "No Defect Spare Location Available" },
|
|
|
|
{ 0x32, 0x01, "Defect List Update Failure" },
|
|
|
|
{ 0x33, 0x00, "Tape Length Error" },
|
|
|
|
{ 0x36, 0x00, "Ribbon, Ink, or Toner Failure" },
|
|
|
|
{ 0x37, 0x00, "Rounded Parameter" },
|
|
|
|
{ 0x39, 0x00, "Saving Parameters Not Supported" },
|
|
|
|
{ 0x3A, 0x00, "Medium Not Present" },
|
|
|
|
{ 0x3B, 0x00, "Positioning Error" },
|
|
|
|
{ 0x3B, 0x01, "Tape Position Error At Beginning-of-Medium" },
|
|
|
|
{ 0x3B, 0x02, "Tape Position Error At End-of-Medium" },
|
|
|
|
{ 0x3B, 0x03, "Tape or Electronic Vertical Forms Unit Not Ready" },
|
|
|
|
{ 0x3B, 0x04, "Slew Failure" },
|
|
|
|
{ 0x3B, 0x05, "Paper Jam" },
|
|
|
|
{ 0x3B, 0x06, "Failed To Sense Top-Of-Form" },
|
|
|
|
{ 0x3B, 0x07, "Failed To Sense Bottom-Of-Form" },
|
|
|
|
{ 0x3B, 0x08, "Reposition Error" },
|
|
|
|
{ 0x3B, 0x09, "Read Past End Of Medium" },
|
|
|
|
{ 0x3B, 0x0A, "Read Past Begining Of Medium" },
|
|
|
|
{ 0x3B, 0x0B, "Position Past End Of Medium" },
|
|
|
|
{ 0x3B, 0x0C, "Position Past Beginning Of Medium" },
|
|
|
|
{ 0x3B, 0x0D, "Medium Destination Element Full" },
|
|
|
|
{ 0x3B, 0x0E, "Medium Source Element Empty" },
|
|
|
|
{ 0x3D, 0x00, "Invalid Bits In IDENTFY Message" },
|
|
|
|
{ 0x3E, 0x00, "Logical Unit Has Not Self-Configured Yet" },
|
|
|
|
{ 0x3F, 0x00, "Target Operating Conditions Have Changed" },
|
|
|
|
{ 0x3F, 0x01, "Microcode Has Changed" },
|
|
|
|
{ 0x3F, 0x02, "Changed Operating Definition" },
|
|
|
|
{ 0x3F, 0x03, "INQUIRY Data Has Changed" },
|
|
|
|
{ 0x40, 0x00, "RAM FAILURE (Should Use 40 NN)" },
|
|
|
|
{ 0x41, 0x00, "Data Path FAILURE (Should Use 40 NN)" },
|
|
|
|
{ 0x42, 0x00, "Power-On or Self-Test FAILURE (Should Use 40 NN)" },
|
|
|
|
{ 0x43, 0x00, "Message Error" },
|
|
|
|
{ 0x44, 0x00, "Internal Target Failure" },
|
|
|
|
{ 0x45, 0x00, "Select Or Reselect Failure" },
|
|
|
|
{ 0x46, 0x00, "Unsuccessful Soft Reset" },
|
|
|
|
{ 0x47, 0x00, "SCSI Parity Error" },
|
|
|
|
{ 0x48, 0x00, "INITIATOR DETECTED ERROR Message Received" },
|
|
|
|
{ 0x49, 0x00, "Invalid Message Error" },
|
|
|
|
{ 0x4A, 0x00, "Command Phase Error" },
|
|
|
|
{ 0x4B, 0x00, "Data Phase Error" },
|
|
|
|
{ 0x4C, 0x00, "Logical Unit Failed Self-Configuration" },
|
|
|
|
{ 0x4E, 0x00, "Overlapped Commands Attempted" },
|
|
|
|
{ 0x50, 0x00, "Write Append Error" },
|
|
|
|
{ 0x50, 0x01, "Write Append Position Error" },
|
|
|
|
{ 0x50, 0x02, "Position Error Related To Timing" },
|
|
|
|
{ 0x51, 0x00, "Erase Failure" },
|
|
|
|
{ 0x52, 0x00, "Cartridge Fault" },
|
|
|
|
{ 0x53, 0x00, "Media Load or Eject Failed" },
|
|
|
|
{ 0x53, 0x01, "Unload Tape Failure" },
|
|
|
|
{ 0x53, 0x02, "Medium Removal Prevented" },
|
|
|
|
{ 0x54, 0x00, "SCSI To Host System Interface Failure" },
|
|
|
|
{ 0x55, 0x00, "System Resource Failure" },
|
|
|
|
{ 0x57, 0x00, "Unable To Recover Table-Of-Contents" },
|
|
|
|
{ 0x58, 0x00, "Generation Does Not Exist" },
|
|
|
|
{ 0x59, 0x00, "Updated Block Read" },
|
|
|
|
{ 0x5A, 0x00, "Operator Request or State Change Input (Unspecified)" },
|
|
|
|
{ 0x5A, 0x01, "Operator Medium Removal Requested" },
|
|
|
|
{ 0x5A, 0x02, "Operator Selected Write Protect" },
|
|
|
|
{ 0x5A, 0x03, "Operator Selected Write Permit" },
|
|
|
|
{ 0x5B, 0x00, "Log Exception" },
|
|
|
|
{ 0x5B, 0x01, "Threshold Condition Met" },
|
|
|
|
{ 0x5B, 0x02, "Log Counter At Maximum" },
|
|
|
|
{ 0x5B, 0x03, "Log List Codes Exhausted" },
|
|
|
|
{ 0x5C, 0x00, "RPL Status Change" },
|
|
|
|
{ 0x5C, 0x01, "Spindles Synchronized" },
|
|
|
|
{ 0x5C, 0x02, "Spindles Not Synchronized" },
|
|
|
|
{ 0x60, 0x00, "Lamp Failure" },
|
|
|
|
{ 0x61, 0x00, "Video Acquisition Error" },
|
|
|
|
{ 0x61, 0x01, "Unable To Acquire Video" },
|
|
|
|
{ 0x61, 0x02, "Out Of Focus" },
|
|
|
|
{ 0x62, 0x00, "Scan Head Positioning Error" },
|
|
|
|
{ 0x63, 0x00, "End Of User Area Encountered On This Track" },
|
|
|
|
{ 0x64, 0x00, "Illegal Mode For This Track" },
|
|
|
|
{ 0x00, 0x00, (char *) 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
asc2ascii(unsigned char asc, unsigned char ascq, char *result)
|
|
|
|
{
|
|
|
|
register int i = 0;
|
|
|
|
|
|
|
|
while (adesc[i].description != (char *) 0) {
|
|
|
|
if (adesc[i].asc == asc && adesc[i].ascq == ascq) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
if (adesc[i].description == (char *) 0) {
|
|
|
|
if (asc == 0x40 && ascq != 0) {
|
|
|
|
(void) sprintf(result,
|
|
|
|
"Diagnostic Failure on Component 0x%02x",
|
|
|
|
ascq & 0xff);
|
|
|
|
} else {
|
|
|
|
(void) sprintf(result, "ASC 0x%02x ASCQ 0x%02x",
|
|
|
|
asc & 0xff, ascq & 0xff);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
(void) strcpy(result, adesc[i].description);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
scsi_print_sense(xs, verbosity)
|
|
|
|
struct scsi_xfer *xs;
|
|
|
|
int verbosity;
|
|
|
|
{
|
|
|
|
int32_t info;
|
|
|
|
register int i, j, k;
|
|
|
|
char *sbs, *s;
|
|
|
|
|
|
|
|
sc_print_addr(xs->sc_link);
|
|
|
|
s = (char *) &xs->sense;
|
|
|
|
printf(" Check Condition on opcode %x\n", xs->cmd->opcode);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Basics- print out SENSE KEY
|
|
|
|
*/
|
|
|
|
printf(" SENSE KEY: %s", scsi_decode_sense(s, 0));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Print out, unqualified but aligned, FMK, EOM and ILI status.
|
|
|
|
*/
|
|
|
|
if (s[2] & 0xe0) {
|
|
|
|
char pad;
|
|
|
|
printf("\n ");
|
|
|
|
pad = ' ';
|
|
|
|
if (s[2] & SSD_FILEMARK) {
|
|
|
|
printf("%c Filemark Detected", pad);
|
|
|
|
pad = ',';
|
|
|
|
}
|
|
|
|
if (s[2] & SSD_EOM) {
|
|
|
|
printf("%c EOM Detected", pad);
|
|
|
|
pad = ',';
|
|
|
|
}
|
|
|
|
if (s[2] & SSD_ILI) {
|
|
|
|
printf("%c Incorrect Length Indicator Set", pad);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now we should figure out, based upon device type, how
|
|
|
|
* to format the information field. Unfortunately, that's
|
|
|
|
* not convenient here, so we'll print it as a signed
|
|
|
|
* 32 bit integer.
|
|
|
|
*/
|
|
|
|
info = _4btol(&s[3]);
|
|
|
|
if (info) {
|
|
|
|
printf("\n INFO FIELD: %d", info);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now we check additional length to see whether there is
|
|
|
|
* more information to extract.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* enough for command specific information? */
|
|
|
|
if (s[7] < 4) {
|
|
|
|
printf("\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
info = _4btol(&s[8]);
|
|
|
|
if (info) {
|
|
|
|
printf("\n COMMAND INFO: %d (0x%x)", info, info);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Decode ASC && ASCQ info, plus FRU, plus the rest...
|
|
|
|
*/
|
|
|
|
|
|
|
|
sbs = scsi_decode_sense(s, 1);
|
|
|
|
if (sbs) {
|
|
|
|
printf("\n ASC/ASCQ: %s", sbs);
|
|
|
|
}
|
|
|
|
if (s[14] != 0) {
|
|
|
|
printf("\n FRU CODE: 0x%x\n", s[14] & 0xff);
|
|
|
|
}
|
|
|
|
sbs = scsi_decode_sense(s, 3);
|
|
|
|
if (sbs) {
|
|
|
|
printf("\n SKSV: %s", sbs);
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
if (verbosity == 0) {
|
|
|
|
printf("\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now figure whether we should print any additional informtion.
|
|
|
|
*
|
|
|
|
* Where should we start from? If we had SKSV data,
|
|
|
|
* start from offset 18, else from offset 15.
|
|
|
|
*
|
|
|
|
* From that point until the end of the buffer, check for any
|
|
|
|
* nonzero data. If we have some, go back and print the lot,
|
|
|
|
* otherwise we're done.
|
|
|
|
*/
|
|
|
|
if (sbs) {
|
|
|
|
i = 18;
|
|
|
|
} else {
|
|
|
|
i = 15;
|
|
|
|
}
|
|
|
|
for (j = i; j < sizeof (xs->sense); j++) {
|
|
|
|
if (s[j])
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (j == sizeof (xs->sense))
|
|
|
|
return;
|
|
|
|
|
|
|
|
printf("\n Additional Sense Information (byte %d out...):\n", i);
|
|
|
|
if (i == 15) {
|
|
|
|
printf("\n\t%2d:", i);
|
|
|
|
k = 7;
|
|
|
|
} else {
|
|
|
|
printf("\n\t%2d:", i);
|
|
|
|
k = 2;
|
|
|
|
j -= 2;
|
|
|
|
}
|
|
|
|
while (j > 0) {
|
|
|
|
if (i >= sizeof (xs->sense))
|
|
|
|
break;
|
|
|
|
if (k == 8) {
|
|
|
|
k = 0;
|
|
|
|
printf("\n\t%2d:", i);
|
|
|
|
}
|
|
|
|
printf(" 0x%02x", s[i] & 0xff);
|
|
|
|
k++;
|
|
|
|
j--;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
printf("\n\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
scsi_decode_sense(void *sinfo, int flag)
|
|
|
|
{
|
|
|
|
unsigned char *snsbuf;
|
|
|
|
unsigned char skey;
|
|
|
|
static char rqsbuf[132];
|
|
|
|
|
|
|
|
skey = 0;
|
|
|
|
|
|
|
|
snsbuf = (unsigned char *) sinfo;
|
|
|
|
if (flag == 0 || flag == 2 || flag == 3) {
|
|
|
|
skey = snsbuf[2] & 0xf;
|
|
|
|
}
|
|
|
|
if (flag == 0) { /* Sense Key Only */
|
|
|
|
(void) strcpy(rqsbuf, sense_keys[skey]);
|
|
|
|
return (rqsbuf);
|
|
|
|
} else if (flag == 1) { /* ASC/ASCQ Only */
|
|
|
|
asc2ascii(snsbuf[12], snsbuf[13], rqsbuf);
|
|
|
|
return (rqsbuf);
|
|
|
|
} else if (flag == 2) { /* Sense Key && ASC/ASCQ */
|
|
|
|
auto char localbuf[64];
|
|
|
|
asc2ascii(snsbuf[12], snsbuf[13], localbuf);
|
|
|
|
(void) sprintf(rqsbuf, "%s, %s", sense_keys[skey], localbuf);
|
|
|
|
return (rqsbuf);
|
|
|
|
} else if (flag == 3 && snsbuf[7] >= 9 && (snsbuf[15] & 0x80)) {
|
|
|
|
/*
|
|
|
|
* SKSV Data
|
|
|
|
*/
|
|
|
|
switch (skey) {
|
|
|
|
case 0x5: /* Illegal Request */
|
|
|
|
if (snsbuf[15] & 0x8) {
|
|
|
|
(void) sprintf(rqsbuf,
|
|
|
|
"Error in %s, Offset %d, bit %d",
|
|
|
|
(snsbuf[15] & 0x40)? "CDB" : "Parameters",
|
|
|
|
(snsbuf[16] & 0xff) << 8 |
|
|
|
|
(snsbuf[17] & 0xff), snsbuf[15] & 0xf);
|
|
|
|
} else {
|
|
|
|
(void) sprintf(rqsbuf,
|
|
|
|
"Error in %s, Offset %d",
|
|
|
|
(snsbuf[15] & 0x40)? "CDB" : "Parameters",
|
|
|
|
(snsbuf[16] & 0xff) << 8 |
|
|
|
|
(snsbuf[17] & 0xff));
|
|
|
|
}
|
|
|
|
return (rqsbuf);
|
|
|
|
case 0x1:
|
|
|
|
case 0x3:
|
|
|
|
case 0x4:
|
|
|
|
(void) sprintf(rqsbuf, "Actual Retry Count: %d",
|
|
|
|
(snsbuf[16] & 0xff) << 8 | (snsbuf[17] & 0xff));
|
|
|
|
return (rqsbuf);
|
|
|
|
case 0x2:
|
|
|
|
(void) sprintf(rqsbuf, "Progress Indicator: %d",
|
|
|
|
(snsbuf[16] & 0xff) << 8 | (snsbuf[17] & 0xff));
|
|
|
|
return (rqsbuf);
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ((char *) 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
1993-11-24 07:52:44 +03:00
|
|
|
#ifdef SCSIDEBUG
|
|
|
|
/*
|
|
|
|
* Given a scsi_xfer, dump the request, in all it's glory
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
show_scsi_xs(xs)
|
|
|
|
struct scsi_xfer *xs;
|
|
|
|
{
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("xs(%p): ", xs);
|
|
|
|
printf("flg(0x%x)", xs->flags);
|
|
|
|
printf("sc_link(%p)", xs->sc_link);
|
|
|
|
printf("retr(0x%x)", xs->retries);
|
|
|
|
printf("timo(0x%x)", xs->timeout);
|
|
|
|
printf("cmd(%p)", xs->cmd);
|
|
|
|
printf("len(0x%x)", xs->cmdlen);
|
|
|
|
printf("data(%p)", xs->data);
|
|
|
|
printf("len(0x%x)", xs->datalen);
|
|
|
|
printf("res(0x%x)", xs->resid);
|
|
|
|
printf("err(0x%x)", xs->error);
|
|
|
|
printf("bp(%p)", xs->bp);
|
1993-11-24 07:52:44 +03:00
|
|
|
show_scsi_cmd(xs);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1994-06-30 03:32:42 +04:00
|
|
|
show_scsi_cmd(xs)
|
|
|
|
struct scsi_xfer *xs;
|
1993-11-24 07:52:44 +03:00
|
|
|
{
|
|
|
|
u_char *b = (u_char *) xs->cmd;
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
sc_print_addr(xs->sc_link);
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("command: ");
|
1993-11-24 07:52:44 +03:00
|
|
|
|
1994-12-28 22:42:47 +03:00
|
|
|
if ((xs->flags & SCSI_RESET) == 0) {
|
1993-11-24 07:52:44 +03:00
|
|
|
while (i < xs->cmdlen) {
|
|
|
|
if (i)
|
1996-10-13 03:23:13 +04:00
|
|
|
printf(",");
|
1997-08-04 10:55:22 +04:00
|
|
|
printf("0x%x", b[i++]);
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("-[%d bytes]\n", xs->datalen);
|
1993-11-24 07:52:44 +03:00
|
|
|
if (xs->datalen)
|
|
|
|
show_mem(xs->data, min(64, xs->datalen));
|
1993-11-24 12:45:04 +03:00
|
|
|
} else
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("-RESET-\n");
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
show_mem(address, num)
|
1994-12-30 08:33:06 +03:00
|
|
|
u_char *address;
|
|
|
|
int num;
|
1993-11-24 07:52:44 +03:00
|
|
|
{
|
1994-12-30 08:33:06 +03:00
|
|
|
int x;
|
|
|
|
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("------------------------------");
|
1994-12-30 08:33:06 +03:00
|
|
|
for (x = 0; x < num; x++) {
|
|
|
|
if ((x % 16) == 0)
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("\n%03d: ", x);
|
|
|
|
printf("%02x ", *address++);
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("\n------------------------------\n");
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
#endif /*SCSIDEBUG */
|