1993-08-20 09:23:30 +00:00
|
|
|
/*
|
1993-11-18 05:03:27 +00:00
|
|
|
* Written by grefen@?????
|
|
|
|
* Based on scsi drivers by Julian Elischer (julian@tfs.com)
|
1993-08-20 09:23:30 +00:00
|
|
|
*
|
1993-11-18 05:03:27 +00:00
|
|
|
* $Id: ch.c,v 2.2 93/10/16 00:58:30 julian Exp Locker: julian $
|
1993-06-12 14:58:17 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <ch.h>
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
|
|
|
|
#include <sys/errno.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/buf.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/user.h>
|
|
|
|
#include <sys/chio.h>
|
|
|
|
|
|
|
|
#include <scsi/scsi_all.h>
|
|
|
|
#include <scsi/scsi_changer.h>
|
|
|
|
#include <scsi/scsiconf.h>
|
|
|
|
|
1993-11-18 05:03:27 +00:00
|
|
|
struct scsi_xfer ch_scsi_xfer[NCH];
|
|
|
|
u_int32 ch_xfer_block_wait[NCH];
|
1993-06-12 14:58:17 +00:00
|
|
|
|
|
|
|
#define PAGESIZ 4096
|
|
|
|
#define STQSIZE 4
|
1993-11-18 05:03:27 +00:00
|
|
|
#define CHRETRIES 2
|
1993-06-12 14:58:17 +00:00
|
|
|
|
|
|
|
#define MODE(z) ( (minor(z) & 0x0F) )
|
|
|
|
#define UNIT(z) ( (minor(z) >> 4) )
|
|
|
|
|
|
|
|
#define ESUCCESS 0
|
|
|
|
|
1993-11-18 05:03:27 +00:00
|
|
|
errval chattach();
|
1993-06-12 14:58:17 +00:00
|
|
|
|
1993-11-18 05:03:27 +00:00
|
|
|
/*
|
|
|
|
* This driver is so simple it uses all the default services
|
|
|
|
*/
|
|
|
|
struct scsi_device ch_switch =
|
1993-06-12 14:58:17 +00:00
|
|
|
{
|
1993-11-18 05:03:27 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
"ch",
|
|
|
|
0,
|
|
|
|
0, 0
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ch_data {
|
|
|
|
u_int32 flags;
|
|
|
|
struct scsi_link *sc_link; /* all the inter level info */
|
|
|
|
u_int16 chmo; /* Offset of first CHM */
|
|
|
|
u_int16 chms; /* No. of CHM */
|
|
|
|
u_int16 slots; /* No. of Storage Elements */
|
|
|
|
u_int16 sloto; /* Offset of first SE */
|
|
|
|
u_int16 imexs; /* No. of Import/Export Slots */
|
|
|
|
u_int16 imexo; /* Offset of first IM/EX */
|
|
|
|
u_int16 drives; /* No. of CTS */
|
|
|
|
u_int16 driveo; /* Offset of first CTS */
|
|
|
|
u_int16 rot; /* CHM can rotate */
|
|
|
|
u_long op_matrix; /* possible opertaions */
|
|
|
|
u_int16 lsterr; /* details of lasterror */
|
|
|
|
u_char stor; /* posible Storage locations */
|
|
|
|
u_int32 initialized;
|
|
|
|
} ch_data[NCH];
|
1993-06-12 14:58:17 +00:00
|
|
|
|
|
|
|
#define CH_OPEN 0x01
|
|
|
|
#define CH_KNOWN 0x02
|
|
|
|
|
1993-11-18 05:03:27 +00:00
|
|
|
static u_int32 next_ch_unit = 0;
|
1993-06-12 14:58:17 +00:00
|
|
|
|
1993-11-18 05:03:27 +00:00
|
|
|
/*
|
|
|
|
* The routine called by the low level scsi routine when it discovers
|
|
|
|
* a device suitable for this driver.
|
|
|
|
*/
|
|
|
|
errval
|
|
|
|
chattach(sc_link)
|
|
|
|
struct scsi_link *sc_link;
|
1993-06-12 14:58:17 +00:00
|
|
|
{
|
1993-11-18 05:03:27 +00:00
|
|
|
u_int32 unit, i, stat;
|
1993-06-12 14:58:17 +00:00
|
|
|
unsigned char *tbl;
|
|
|
|
|
1993-11-18 05:03:27 +00:00
|
|
|
SC_DEBUG(sc_link, SDEV_DB2, ("chattach: "));
|
|
|
|
/*
|
|
|
|
* Check we have the resources for another drive
|
|
|
|
*/
|
1993-06-12 14:58:17 +00:00
|
|
|
unit = next_ch_unit++;
|
1993-11-18 05:03:27 +00:00
|
|
|
if (unit >= NCH) {
|
|
|
|
printf("Too many scsi changers..(%d > %d) reconfigure kernel\n", (unit + 1), NCH);
|
|
|
|
return (0);
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
1993-11-18 05:03:27 +00:00
|
|
|
/*
|
|
|
|
* Store information needed to contact our base driver
|
|
|
|
*/
|
|
|
|
ch_data[unit].sc_link = sc_link;
|
|
|
|
sc_link->device = &ch_switch;
|
|
|
|
sc_link->dev_unit = unit;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Use the subdriver to request information regarding
|
|
|
|
* the drive. We cannot use interrupts yet, so the
|
|
|
|
* request must specify this.
|
|
|
|
*/
|
|
|
|
if ((ch_mode_sense(unit, SCSI_NOSLEEP | SCSI_NOMASK /*| SCSI_SILENT */ ))) {
|
1993-08-21 20:01:59 +00:00
|
|
|
printf("ch%d: scsi changer :- offline\n", unit);
|
1993-11-18 05:03:27 +00:00
|
|
|
stat = CH_OPEN;
|
|
|
|
} else {
|
|
|
|
printf("ch%d: scsi changer, %d slot(s) %d drive(s) %d arm(s) %d i/e-slot(s)\n",
|
|
|
|
unit, ch_data[unit].slots, ch_data[unit].drives, ch_data[unit].chms, ch_data[unit].imexs);
|
|
|
|
stat = CH_KNOWN;
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
1993-11-18 05:03:27 +00:00
|
|
|
ch_data[unit].initialized = 1;
|
1993-06-12 14:58:17 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
1993-11-18 05:03:27 +00:00
|
|
|
/*
|
|
|
|
* open the device.
|
|
|
|
*/
|
|
|
|
errval
|
1993-06-12 14:58:17 +00:00
|
|
|
chopen(dev)
|
|
|
|
{
|
1993-11-18 05:03:27 +00:00
|
|
|
errval errcode = 0;
|
|
|
|
u_int32 unit, mode;
|
|
|
|
struct scsi_link *sc_link;
|
1993-06-12 14:58:17 +00:00
|
|
|
|
|
|
|
unit = UNIT(dev);
|
|
|
|
mode = MODE(dev);
|
|
|
|
|
1993-11-18 05:03:27 +00:00
|
|
|
/*
|
|
|
|
* Check the unit is legal
|
|
|
|
*/
|
|
|
|
if (unit >= NCH) {
|
|
|
|
printf("ch%d: ch %d > %d\n", unit, unit, NCH);
|
1993-06-12 14:58:17 +00:00
|
|
|
errcode = ENXIO;
|
1993-11-18 05:03:27 +00:00
|
|
|
return (errcode);
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
1993-11-18 05:03:27 +00:00
|
|
|
/*
|
|
|
|
* Only allow one at a time
|
|
|
|
*/
|
|
|
|
if (ch_data[unit].flags & CH_OPEN) {
|
|
|
|
printf("ch%d: already open\n", unit);
|
|
|
|
return ENXIO;
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
1993-11-18 05:03:27 +00:00
|
|
|
/*
|
|
|
|
* Make sure the device has been initialised
|
|
|
|
*/
|
|
|
|
if (!ch_data[unit].initialized)
|
|
|
|
return (ENXIO);
|
|
|
|
|
|
|
|
sc_link = ch_data[unit].sc_link;
|
|
|
|
|
|
|
|
SC_DEBUG(sc_link, SDEV_DB1, ("chopen: dev=0x%x (unit %d (of %d))\n"
|
|
|
|
,dev, unit, NCH));
|
|
|
|
/*
|
|
|
|
* Catch any unit attention errors.
|
|
|
|
*/
|
|
|
|
scsi_test_unit_ready(sc_link, SCSI_SILENT);
|
|
|
|
|
|
|
|
sc_link->flags |= SDEV_OPEN;
|
|
|
|
/*
|
|
|
|
* Check that it is still responding and ok.
|
|
|
|
*/
|
|
|
|
if (errcode = (scsi_test_unit_ready(sc_link, 0))) {
|
|
|
|
printf("ch%d: not ready\n", unit);
|
|
|
|
sc_link->flags &= ~SDEV_OPEN;
|
|
|
|
return errcode;
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
1993-11-18 05:03:27 +00:00
|
|
|
/*
|
|
|
|
* Make sure data is loaded
|
|
|
|
*/
|
|
|
|
if (errcode = (ch_mode_sense(unit, SCSI_NOSLEEP | SCSI_NOMASK))) {
|
|
|
|
printf("ch%d: scsi changer :- offline\n", unit);
|
|
|
|
sc_link->flags &= ~SDEV_OPEN;
|
|
|
|
return (errcode);
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
|
|
|
ch_data[unit].flags = CH_OPEN;
|
1993-11-18 05:03:27 +00:00
|
|
|
return 0;
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
|
|
|
|
1993-11-18 05:03:27 +00:00
|
|
|
/*
|
|
|
|
* close the device.. only called if we are the LAST
|
|
|
|
* occurence of an open device
|
|
|
|
*/
|
|
|
|
errval
|
1993-06-12 14:58:17 +00:00
|
|
|
chclose(dev)
|
|
|
|
{
|
1993-11-18 05:03:27 +00:00
|
|
|
unsigned char unit, mode;
|
|
|
|
struct scsi_link *sc_link;
|
1993-06-12 14:58:17 +00:00
|
|
|
|
|
|
|
unit = UNIT(dev);
|
|
|
|
mode = MODE(dev);
|
1993-11-18 05:03:27 +00:00
|
|
|
sc_link = ch_data[unit].sc_link;
|
1993-06-12 14:58:17 +00:00
|
|
|
|
1993-11-18 05:03:27 +00:00
|
|
|
SC_DEBUG(sc_link, SDEV_DB1, ("Closing device"));
|
1993-06-12 14:58:17 +00:00
|
|
|
ch_data[unit].flags = 0;
|
1993-11-18 05:03:27 +00:00
|
|
|
sc_link->flags &= ~SDEV_OPEN;
|
|
|
|
return (0);
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
|
|
|
|
1993-11-18 05:03:27 +00:00
|
|
|
/*
|
|
|
|
* Perform special action on behalf of the user
|
|
|
|
* Knows about the internals of this device
|
|
|
|
*/
|
|
|
|
errval
|
1993-06-12 14:58:17 +00:00
|
|
|
chioctl(dev, cmd, arg, mode)
|
1993-11-18 05:03:27 +00:00
|
|
|
dev_t dev;
|
|
|
|
u_int32 cmd;
|
|
|
|
caddr_t arg;
|
1993-06-12 14:58:17 +00:00
|
|
|
{
|
1993-11-18 05:03:27 +00:00
|
|
|
/* struct ch_cmd_buf *args; */
|
1993-06-12 14:58:17 +00:00
|
|
|
union scsi_cmd *scsi_cmd;
|
1993-11-18 05:03:27 +00:00
|
|
|
register i, j;
|
|
|
|
u_int32 opri;
|
|
|
|
errval errcode = 0;
|
1993-06-12 14:58:17 +00:00
|
|
|
unsigned char unit;
|
1993-11-18 05:03:27 +00:00
|
|
|
u_int32 number, flags;
|
|
|
|
errval ret;
|
|
|
|
struct scsi_link *sc_link;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find the device that the user is talking about
|
|
|
|
*/
|
|
|
|
flags = 0; /* give error messages, act on errors etc. */
|
1993-06-12 14:58:17 +00:00
|
|
|
unit = UNIT(dev);
|
1993-11-18 05:03:27 +00:00
|
|
|
sc_link = ch_data[unit].sc_link;
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case CHIOOP:{
|
|
|
|
struct chop *ch = (struct chop *) arg;
|
|
|
|
SC_DEBUG(sc_link, SDEV_DB2,
|
|
|
|
("[chtape_chop: %x]\n", ch->ch_op));
|
|
|
|
|
|
|
|
switch ((short) (ch->ch_op)) {
|
|
|
|
case CHGETPARAM:
|
|
|
|
ch->u.getparam.chmo = ch_data[unit].chmo;
|
|
|
|
ch->u.getparam.chms = ch_data[unit].chms;
|
|
|
|
ch->u.getparam.sloto = ch_data[unit].sloto;
|
|
|
|
ch->u.getparam.slots = ch_data[unit].slots;
|
|
|
|
ch->u.getparam.imexo = ch_data[unit].imexo;
|
|
|
|
ch->u.getparam.imexs = ch_data[unit].imexs;
|
|
|
|
ch->u.getparam.driveo = ch_data[unit].driveo;
|
|
|
|
ch->u.getparam.drives = ch_data[unit].drives;
|
|
|
|
ch->u.getparam.rot = ch_data[unit].rot;
|
|
|
|
ch->result = 0;
|
|
|
|
return 0;
|
|
|
|
break;
|
|
|
|
case CHPOSITION:
|
|
|
|
return ch_position(unit, &ch->result, ch->u.position.chm,
|
|
|
|
ch->u.position.to,
|
|
|
|
flags);
|
|
|
|
case CHMOVE:
|
|
|
|
return ch_move(unit, &ch->result, ch->u.position.chm,
|
|
|
|
ch->u.move.from, ch->u.move.to,
|
|
|
|
flags);
|
|
|
|
case CHGETELEM:
|
|
|
|
return ch_getelem(unit, &ch->result, ch->u.get_elem_stat.type,
|
|
|
|
ch->u.get_elem_stat.from, &ch->u.get_elem_stat.elem_data,
|
|
|
|
flags);
|
|
|
|
default:
|
|
|
|
return EINVAL;
|
|
|
|
}
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
|
|
|
default:
|
1993-11-18 05:03:27 +00:00
|
|
|
return scsi_do_ioctl(sc_link, cmd, arg, mode);
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
1993-11-18 05:03:27 +00:00
|
|
|
return (ret ? ESUCCESS : EIO);
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
|
|
|
|
1993-11-18 05:03:27 +00:00
|
|
|
errval
|
|
|
|
ch_getelem(unit, stat, type, from, data, flags)
|
|
|
|
u_int32 unit, from, flags;
|
|
|
|
short *stat;
|
|
|
|
char *data;
|
1993-06-12 14:58:17 +00:00
|
|
|
{
|
|
|
|
struct scsi_read_element_status scsi_cmd;
|
1993-11-18 05:03:27 +00:00
|
|
|
char elbuf[32];
|
|
|
|
errval ret;
|
1993-06-12 14:58:17 +00:00
|
|
|
|
|
|
|
bzero(&scsi_cmd, sizeof(scsi_cmd));
|
|
|
|
scsi_cmd.op_code = READ_ELEMENT_STATUS;
|
1993-08-20 09:23:30 +00:00
|
|
|
scsi_cmd.byte2 = type;
|
1993-11-18 05:03:27 +00:00
|
|
|
scsi_cmd.starting_element_addr[0] = (from >> 8) & 0xff;
|
|
|
|
scsi_cmd.starting_element_addr[1] = from & 0xff;
|
|
|
|
scsi_cmd.number_of_elements[1] = 1;
|
|
|
|
scsi_cmd.allocation_length[2] = 32;
|
|
|
|
|
|
|
|
if ((ret = scsi_scsi_cmd(ch_data[unit].sc_link,
|
|
|
|
(struct scsi_generic *) &scsi_cmd,
|
|
|
|
sizeof(scsi_cmd),
|
|
|
|
(u_char *) elbuf,
|
|
|
|
32,
|
|
|
|
CHRETRIES,
|
|
|
|
100000,
|
|
|
|
NULL,
|
|
|
|
SCSI_DATA_IN | flags) != ESUCCESS)) {
|
|
|
|
*stat = ch_data[unit].lsterr;
|
|
|
|
bcopy(elbuf + 16, data, 16);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
bcopy(elbuf + 16, data, 16); /*Just a hack sh */
|
1993-06-12 14:58:17 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
1993-11-18 05:03:27 +00:00
|
|
|
errval
|
|
|
|
ch_move(unit, stat, chm, from, to, flags)
|
|
|
|
u_int32 unit, chm, from, to, flags;
|
|
|
|
short *stat;
|
1993-06-12 14:58:17 +00:00
|
|
|
{
|
|
|
|
struct scsi_move_medium scsi_cmd;
|
1993-11-18 05:03:27 +00:00
|
|
|
errval ret;
|
1993-06-12 14:58:17 +00:00
|
|
|
|
|
|
|
bzero(&scsi_cmd, sizeof(scsi_cmd));
|
|
|
|
scsi_cmd.op_code = MOVE_MEDIUM;
|
1993-11-18 05:03:27 +00:00
|
|
|
scsi_cmd.transport_element_address[0] = (chm >> 8) & 0xff;
|
|
|
|
scsi_cmd.transport_element_address[1] = chm & 0xff;
|
|
|
|
scsi_cmd.source_address[0] = (from >> 8) & 0xff;
|
|
|
|
scsi_cmd.source_address[1] = from & 0xff;
|
|
|
|
scsi_cmd.destination_address[0] = (to >> 8) & 0xff;
|
|
|
|
scsi_cmd.destination_address[1] = to & 0xff;
|
|
|
|
scsi_cmd.invert = (chm & CH_INVERT) ? 1 : 0;
|
|
|
|
if ((ret = scsi_scsi_cmd(ch_data[unit].sc_link,
|
|
|
|
(struct scsi_generic *) &scsi_cmd,
|
|
|
|
sizeof(scsi_cmd),
|
|
|
|
NULL,
|
|
|
|
0,
|
|
|
|
CHRETRIES,
|
|
|
|
100000,
|
|
|
|
NULL,
|
|
|
|
flags) != ESUCCESS)) {
|
|
|
|
*stat = ch_data[unit].lsterr;
|
|
|
|
return ret;
|
|
|
|
}
|
1993-06-12 14:58:17 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
1993-11-18 05:03:27 +00:00
|
|
|
errval
|
|
|
|
ch_position(unit, stat, chm, to, flags)
|
|
|
|
u_int32 unit, chm, to, flags;
|
|
|
|
short *stat;
|
1993-06-12 14:58:17 +00:00
|
|
|
{
|
|
|
|
struct scsi_position_to_element scsi_cmd;
|
1993-11-18 05:03:27 +00:00
|
|
|
errval ret;
|
1993-06-12 14:58:17 +00:00
|
|
|
|
|
|
|
bzero(&scsi_cmd, sizeof(scsi_cmd));
|
|
|
|
scsi_cmd.op_code = POSITION_TO_ELEMENT;
|
1993-11-18 05:03:27 +00:00
|
|
|
scsi_cmd.transport_element_address[0] = (chm >> 8) & 0xff;
|
|
|
|
scsi_cmd.transport_element_address[1] = chm & 0xff;
|
|
|
|
scsi_cmd.source_address[0] = (to >> 8) & 0xff;
|
|
|
|
scsi_cmd.source_address[1] = to & 0xff;
|
|
|
|
scsi_cmd.invert = (chm & CH_INVERT) ? 1 : 0;
|
|
|
|
if ((ret = scsi_scsi_cmd(ch_data[unit].sc_link,
|
|
|
|
(struct scsi_generic *) &scsi_cmd,
|
|
|
|
sizeof(scsi_cmd),
|
|
|
|
NULL,
|
|
|
|
0,
|
|
|
|
CHRETRIES,
|
|
|
|
100000,
|
|
|
|
NULL,
|
|
|
|
flags) != ESUCCESS)) {
|
|
|
|
*stat = ch_data[unit].lsterr;
|
|
|
|
return ret;
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
1993-11-18 05:03:27 +00:00
|
|
|
return ret;
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __STDC__
|
|
|
|
#define b2tol(a) (((unsigned)(a##_1) << 8) + (unsigned)a##_0 )
|
|
|
|
#else
|
|
|
|
#define b2tol(a) (((unsigned)(a/**/_1) << 8) + (unsigned)a/**/_0 )
|
|
|
|
#endif
|
|
|
|
|
1993-11-18 05:03:27 +00:00
|
|
|
/*
|
|
|
|
* Get the scsi driver to send a full inquiry to the
|
|
|
|
* device and use the results to fill out the global
|
|
|
|
* parameter structure.
|
|
|
|
*/
|
|
|
|
errval
|
1993-06-12 14:58:17 +00:00
|
|
|
ch_mode_sense(unit, flags)
|
1993-11-18 05:03:27 +00:00
|
|
|
u_int32 unit, flags;
|
1993-06-12 14:58:17 +00:00
|
|
|
{
|
|
|
|
struct scsi_mode_sense scsi_cmd;
|
1993-11-18 05:03:27 +00:00
|
|
|
u_char scsi_sense[128]; /* Can't use scsi_mode_sense_data because of
|
|
|
|
* missing block descriptor
|
|
|
|
*/
|
1993-06-12 14:58:17 +00:00
|
|
|
u_char *b;
|
1993-11-18 05:03:27 +00:00
|
|
|
int32 i, l;
|
|
|
|
errval errcode;
|
|
|
|
struct scsi_link *sc_link = ch_data[unit].sc_link;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* First check if we have it all loaded
|
|
|
|
*/
|
|
|
|
if (sc_link->flags & SDEV_MEDIA_LOADED)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* First do a mode sense
|
|
|
|
*/
|
|
|
|
/* sc_link->flags &= ~SDEV_MEDIA_LOADED; *//*XXX */
|
|
|
|
bzero(&scsi_cmd, sizeof(scsi_cmd));
|
|
|
|
scsi_cmd.op_code = MODE_SENSE;
|
|
|
|
scsi_cmd.byte2 = SMS_DBD;
|
|
|
|
scsi_cmd.page = 0x3f; /* All Pages */
|
|
|
|
scsi_cmd.length = sizeof(scsi_sense);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read in the pages
|
|
|
|
*/
|
|
|
|
if (errcode = scsi_scsi_cmd(sc_link,
|
|
|
|
(struct scsi_generic *) &scsi_cmd,
|
|
|
|
sizeof(struct scsi_mode_sense),
|
|
|
|
(u_char *) & scsi_sense,
|
|
|
|
sizeof (scsi_sense),
|
|
|
|
CHRETRIES,
|
|
|
|
5000,
|
|
|
|
NULL,
|
|
|
|
flags | SCSI_DATA_IN) != 0) {
|
|
|
|
if (!(flags & SCSI_SILENT))
|
1993-08-21 20:01:59 +00:00
|
|
|
printf("ch%d: could not mode sense\n", unit);
|
1993-11-18 05:03:27 +00:00
|
|
|
return (errcode);
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
1993-11-18 05:03:27 +00:00
|
|
|
sc_link->flags |= SDEV_MEDIA_LOADED;
|
|
|
|
l = scsi_sense[0] - 3;
|
|
|
|
b = &scsi_sense[4];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* To avoid alignment problems
|
|
|
|
*/
|
|
|
|
/* XXX - FIX THIS FOR MSB */
|
1993-06-12 14:58:17 +00:00
|
|
|
#define p2copy(valp) (valp[1]+ (valp[0]<<8));valp+=2
|
|
|
|
#define p4copy(valp) (valp[3]+ (valp[2]<<8) + (valp[1]<<16) + (valp[0]<<24));valp+=4
|
|
|
|
#if 0
|
1993-11-18 05:03:27 +00:00
|
|
|
printf("\nmode_sense %d\n", l);
|
|
|
|
for (i = 0; i < l + 4; i++) {
|
|
|
|
printf("%x%c", scsi_sense[i], i % 8 == 7 ? '\n' : ':');
|
|
|
|
} printf("\n");
|
1993-06-12 14:58:17 +00:00
|
|
|
#endif
|
1993-11-18 05:03:27 +00:00
|
|
|
for (i = 0; i < l;) {
|
|
|
|
u_int32 pc = (*b++) & 0x3f;
|
|
|
|
u_int32 pl = *b++;
|
|
|
|
u_char *bb = b;
|
|
|
|
switch (pc) {
|
|
|
|
case 0x1d:
|
|
|
|
ch_data[unit].chmo = p2copy(bb);
|
|
|
|
ch_data[unit].chms = p2copy(bb);
|
|
|
|
ch_data[unit].sloto = p2copy(bb);
|
|
|
|
ch_data[unit].slots = p2copy(bb);
|
|
|
|
ch_data[unit].imexo = p2copy(bb);
|
|
|
|
ch_data[unit].imexs = p2copy(bb);
|
|
|
|
ch_data[unit].driveo = p2copy(bb);
|
|
|
|
ch_data[unit].drives = p2copy(bb);
|
1993-06-12 14:58:17 +00:00
|
|
|
break;
|
1993-11-18 05:03:27 +00:00
|
|
|
case 0x1e:
|
|
|
|
ch_data[unit].rot = (*b) & 1;
|
|
|
|
break;
|
|
|
|
case 0x1f:
|
|
|
|
ch_data[unit].stor = *b & 0xf;
|
|
|
|
bb += 2;
|
|
|
|
ch_data[unit].stor = p4copy(bb);
|
1993-06-12 14:58:17 +00:00
|
|
|
break;
|
|
|
|
default:
|
1993-11-18 05:03:27 +00:00
|
|
|
break;
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
1993-11-18 05:03:27 +00:00
|
|
|
b += pl;
|
|
|
|
i += pl + 2;
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
1993-11-18 05:03:27 +00:00
|
|
|
SC_DEBUG(sc_link, SDEV_DB2,
|
|
|
|
(" cht(%d-%d)slot(%d-%d)imex(%d-%d)cts(%d-%d) %s rotate\n",
|
|
|
|
ch_data[unit].chmo, ch_data[unit].chms,
|
|
|
|
ch_data[unit].sloto, ch_data[unit].slots,
|
|
|
|
ch_data[unit].imexo, ch_data[unit].imexs,
|
|
|
|
ch_data[unit].driveo, ch_data[unit].drives,
|
|
|
|
ch_data[unit].rot ? "can" : "can't"));
|
|
|
|
return (0);
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|