NetBSD/sys/dev/scsipi/scsipi_ioctl.c

330 lines
7.7 KiB
C
Raw Normal View History

1993-11-24 07:52:44 +03:00
/*
* Contributed by HD Associates (hd@world.std.com).
* Copyright (c) 1992, 1993 HD Associates
*
* Berkeley style copyright.
*/
1993-11-24 12:45:04 +03:00
1993-11-24 07:52:44 +03:00
#include <sys/types.h>
#include <sys/errno.h>
#include <sys/param.h>
#include <sys/malloc.h>
#include <sys/buf.h>
#include <sys/proc.h>
#include <sys/device.h>
#include <scsi/scsi_all.h>
#include <scsi/scsiconf.h>
#include <sys/scsiio.h>
1993-11-29 23:33:25 +03:00
#define b_screq b_driver1 /* XXX */
#define b_sc_link b_driver2 /* XXX */
1993-11-24 07:52:44 +03:00
/*
* We let the user interpret his own sense in the generic scsi world.
* This routine is called at interrupt time if the SCSI_USER bit was set
* in the flags passed to scsi_scsi_cmd(). No other completion processing
* takes place, even if we are running over another device driver.
* The lower level routines that call us here, will free the xs and restart
* the device's queue if such exists.
*/
#ifndef min
1993-11-24 12:45:04 +03:00
#define min(A,B) ((A<B) ? A : B)
1993-11-24 07:52:44 +03:00
#endif
1993-11-24 12:45:04 +03:00
void scsierr __P((struct buf *, int));
1993-11-24 07:52:44 +03:00
1993-11-24 12:45:04 +03:00
void
scsi_user_done(xs)
struct scsi_xfer *xs;
{
struct buf *bp;
1993-11-24 07:52:44 +03:00
scsireq_t *screq;
bp = xs->bp;
1993-11-24 12:45:04 +03:00
if (!bp) { /* ALL user requests must have a buf */
1993-11-24 07:52:44 +03:00
sc_print_addr(xs->sc_link);
printf("User command with no buf\n");
1993-11-24 12:45:04 +03:00
return;
1993-11-24 07:52:44 +03:00
}
screq = bp->b_screq;
if (!screq) { /* Is it one of ours? (the SCSI_USER bit says it is) */
sc_print_addr(xs->sc_link);
printf("User command with no request\n");
1993-11-24 12:45:04 +03:00
return;
1993-11-24 07:52:44 +03:00
}
1993-11-24 12:45:04 +03:00
SC_DEBUG(xs->sc_link, SDEV_DB2, ("user-done\n"));
1993-11-24 07:52:44 +03:00
screq->retsts = 0;
screq->status = xs->status;
switch(xs->error) {
1993-11-24 12:45:04 +03:00
case XS_NOERROR:
SC_DEBUG(xs->sc_link, SDEV_DB3, ("no error\n"));
1993-11-24 07:52:44 +03:00
screq->datalen_used = xs->datalen - xs->resid; /* probably rubbish */
screq->retsts = SCCMD_OK;
break;
1993-11-24 12:45:04 +03:00
case XS_SENSE:
SC_DEBUG(xs->sc_link, SDEV_DB3, ("have sense\n"));
screq->senselen_used = min(sizeof(xs->sense), SENSEBUFLEN);
bcopy(&xs->sense, screq->sense, screq->senselen);
1993-11-24 07:52:44 +03:00
screq->retsts = SCCMD_SENSE;
break;
1993-11-24 12:45:04 +03:00
case XS_DRIVER_STUFFUP:
1993-11-24 07:52:44 +03:00
sc_print_addr(xs->sc_link);
printf("host adapter code inconsistency\n");
screq->retsts = SCCMD_UNKNOWN;
break;
1993-11-24 12:45:04 +03:00
case XS_TIMEOUT:
SC_DEBUG(xs->sc_link, SDEV_DB3, ("timeout\n"));
1993-11-24 07:52:44 +03:00
screq->retsts = SCCMD_TIMEOUT;
break;
1993-11-24 12:45:04 +03:00
case XS_BUSY:
SC_DEBUG(xs->sc_link, SDEV_DB3, ("busy\n"));
1993-11-24 07:52:44 +03:00
screq->retsts = SCCMD_BUSY;
break;
default:
sc_print_addr(xs->sc_link);
printf("unknown error category from host adapter code\n");
screq->retsts = SCCMD_UNKNOWN;
break;
}
biodone(bp); /* we're waiting on it in scsi_strategy() */
return; /* it'll free the xs and restart any queue */
}
/* Pseudo strategy function
* Called by scsi_do_ioctl() via physio/physstrat if there is to
* be data transfered, and directly if there is no data transfer.
*
* Should I reorganize this so it returns to physio instead
* of sleeping in scsiio_scsi_cmd? Is there any advantage, other
* than avoiding the probable duplicate wakeup in iodone? [PD]
*
* No, seems ok to me... [JRE]
* (I don't see any duplicate wakeups)
*
* Can't be used with block devices or raw_read/raw_write directly
* from the cdevsw/bdevsw tables because they couldn't have added
* the screq structure. [JRE]
*/
void scsistrategy(struct buf *bp)
{
1993-11-24 12:45:04 +03:00
int err;
1993-11-24 07:52:44 +03:00
struct scsi_link *sc_link = bp->b_sc_link;
scsireq_t *screq;
u_int32 flags = 0;
int s;
1993-11-24 12:45:04 +03:00
if (!sc_link) {
1993-11-24 07:52:44 +03:00
printf("user_strat: No link pointer\n");
1993-11-24 12:45:04 +03:00
scsierr(bp, EINVAL);
1993-11-24 07:52:44 +03:00
return;
}
1993-11-24 12:45:04 +03:00
SC_DEBUG(sc_link, SDEV_DB2, ("user_strategy\n"));
1993-11-24 07:52:44 +03:00
screq = bp->b_screq;
1993-11-24 12:45:04 +03:00
if (!screq) {
1993-11-24 07:52:44 +03:00
sc_print_addr(sc_link);
printf("No request block\n");
1993-11-24 12:45:04 +03:00
scsierr(bp, EINVAL);
1993-11-24 07:52:44 +03:00
return;
}
/* We're in trouble if physio tried to break up the
* transfer:
*/
if (bp->b_bcount != screq->datalen) {
sc_print_addr(sc_link);
printf("physio split the request.. cannot proceed\n");
scsierr(bp, EIO);
return;
}
if (screq->timeout == 0) {
scsierr(bp, EINVAL);
return;
}
if (screq->cmdlen > sizeof(struct scsi_generic)) {
sc_print_addr(sc_link);
printf("cmdlen too big ");
scsierr(bp, EFAULT);
return;
}
if (screq->flags & SCCMD_READ)
flags |= SCSI_DATA_IN;
if (screq->flags & SCCMD_WRITE)
flags |= SCSI_DATA_OUT;
if (screq->flags & SCCMD_TARGET)
flags |= SCSI_TARGET;
if (screq->flags & SCCMD_ESCAPE)
flags |= SCSI_ESCAPE;
1993-11-24 12:45:04 +03:00
1993-11-24 07:52:44 +03:00
err = scsi_scsi_cmd(sc_link,
(struct scsi_generic *)screq->cmd,
screq->cmdlen,
(u_char *)bp->b_un.b_addr,
screq->datalen,
0, /* user must do the retries *//* ignored */
screq->timeout,
bp,
flags | SCSI_USER);
1993-11-24 12:45:04 +03:00
/* because there is a bp, scsi_scsi_cmd will return immediatly */
if (err) {
1993-11-24 07:52:44 +03:00
scsierr(bp, err);
return;
}
1993-11-24 12:45:04 +03:00
SC_DEBUG(sc_link, SDEV_DB3, ("about to sleep\n"));
1993-11-24 07:52:44 +03:00
s = splbio();
1993-11-24 12:45:04 +03:00
while (!(bp->b_flags & B_DONE))
tsleep(bp, PRIBIO, "scistr", 0);
1993-11-24 07:52:44 +03:00
splx(s);
1993-11-24 12:45:04 +03:00
SC_DEBUG(sc_link, SDEV_DB3, ("back from sleep\n"));
1993-11-24 07:52:44 +03:00
return;
}
void scsiminphys(struct buf *bp)
{
/*XXX*//* call the adapter's minphys */
}
/*
* Something (e.g. another driver) has called us
* with an sc_link for a target/lun/adapter, and a scsi
* specific ioctl to perform, better try.
* If user-level type command, we must still be running
* in the context of the calling process
*/
1993-11-24 12:45:04 +03:00
int
scsi_do_ioctl(struct scsi_link *sc_link, int cmd, caddr_t addr, int f)
1993-11-24 07:52:44 +03:00
{
1993-11-24 12:45:04 +03:00
int error = 0;
1993-11-24 07:52:44 +03:00
int phys;
1993-11-24 12:45:04 +03:00
SC_DEBUG(sc_link, SDEV_DB2, ("scsi_do_ioctl(0x%x)\n", cmd));
switch(cmd) {
1993-11-24 07:52:44 +03:00
#ifndef __NetBSD__
case SCIOCCOMMAND:
{
/*
* You won't believe this, but the arg copied in
* from the user space, is on the kernel stack
* for this process, so we can't write
* to it at interrupt time..
* we need to copy it in and out!
* Make a static copy using malloc!
*/
scsireq_t *screq2 = (scsireq_t *)addr;
scsireq_t *screq = (scsireq_t *)addr;
int rwflag = (screq->flags & SCCMD_READ) ? B_READ : B_WRITE;
struct buf *bp;
caddr_t d_addr;
int len;
1993-11-24 12:45:04 +03:00
if ((unsigned int)screq < KERNBASE) {
screq = malloc(sizeof(scsireq_t),
M_TEMP, M_WAITOK);
bcopy(screq2, screq, sizeof(scsireq_t));
1993-11-24 07:52:44 +03:00
}
1993-11-24 12:45:04 +03:00
bp = malloc(sizeof (struct buf), M_TEMP, M_WAITOK);
bzero(bp, sizeof(struct buf));
1993-11-24 07:52:44 +03:00
d_addr = screq->databuf;
bp->b_bcount = len = screq->datalen;
bp->b_screq = screq;
bp->b_sc_link = sc_link;
if (len) {
/* have data, translate it. (physio)*/
#ifdef __NetBSD__
#error "dev, mincntfn & uio need defining"
1993-11-24 12:45:04 +03:00
error = physio(scsistrategy, bp, dev, rwflag,
1993-11-24 07:52:44 +03:00
mincntfn, uio);
#else
1993-11-24 12:45:04 +03:00
error = physio(scsistrategy, 0, bp, 0, rwflag,
d_addr, &len, curproc);
1993-11-24 07:52:44 +03:00
#endif
} else {
/* if no data, no need to translate it.. */
bp->b_un.b_addr = 0;
bp->b_dev = -1; /* irrelevant info */
bp->b_flags = 0;
scsistrategy(bp);
1993-11-24 12:45:04 +03:00
error = bp->b_error;
1993-11-24 07:52:44 +03:00
}
1993-11-24 12:45:04 +03:00
free(bp, M_TEMP);
if ((unsigned int)screq2 < KERNBASE) {
bcopy(screq, screq2, sizeof(scsireq_t));
free(screq, M_TEMP);
1993-11-24 07:52:44 +03:00
}
break;
}
#endif /* !NetBSD */
case SCIOCDEBUG:
{
int level = *((int *)addr);
1993-11-24 12:45:04 +03:00
SC_DEBUG(sc_link, SDEV_DB3, ("debug set to %d\n", level));
1993-11-24 07:52:44 +03:00
sc_link->flags &= ~SDEV_DBX; /*clear debug bits */
1993-11-24 12:45:04 +03:00
if (level & 1)
sc_link->flags |= SDEV_DB1;
if (level & 2)
sc_link->flags |= SDEV_DB2;
if (level & 4)
sc_link->flags |= SDEV_DB3;
if (level & 8)
sc_link->flags |= SDEV_DB4;
error = 0;
1993-11-24 07:52:44 +03:00
break;
}
case SCIOCREPROBE:
{
extern int scsibus;
struct scsi_addr *sca = (struct scsi_addr *) addr;
1993-11-24 12:45:04 +03:00
error = scsi_probe_busses(sca->scbus, sca->target, sca->lun);
1993-11-24 07:52:44 +03:00
break;
}
case SCIOCRECONFIG:
case SCIOCDECONFIG:
1993-11-24 12:45:04 +03:00
error = EINVAL;
1993-11-24 07:52:44 +03:00
break;
case SCIOCIDENTIFY:
{
struct scsi_addr *sca = (struct scsi_addr *) addr;
sca->scbus = sc_link->scsibus;
sca->target = sc_link->target;
sca->lun = sc_link->lun;
break;
}
default:
1993-11-24 12:45:04 +03:00
error = ENOTTY;
1993-11-24 07:52:44 +03:00
break;
}
1993-11-24 12:45:04 +03:00
return error;
1993-11-24 07:52:44 +03:00
}
1993-11-24 12:45:04 +03:00
void
scsierr(bp, error)
struct buf *bp;
int error;
1993-11-24 07:52:44 +03:00
{
1993-11-24 12:45:04 +03:00
bp->b_flags |= B_ERROR;
bp->b_error = error;
biodone(bp);
return;
1993-11-24 07:52:44 +03:00
}