1997-10-18 23:50:51 +04:00
|
|
|
/* $NetBSD: scsipi_ioctl.c,v 1.28 1997/10/18 19:51:04 thorpej Exp $ */
|
1994-06-29 10:39:25 +04:00
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1994 Charles Hannum. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by Charles Hannum.
|
|
|
|
* 4. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* 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-10-01 05:18:38 +04:00
|
|
|
/*
|
1993-11-24 07:52:44 +03:00
|
|
|
* Contributed by HD Associates (hd@world.std.com).
|
|
|
|
* Copyright (c) 1992, 1993 HD Associates
|
|
|
|
*
|
1997-10-01 05:18:38 +04:00
|
|
|
* Berkeley style copyright.
|
1993-11-24 07:52:44 +03:00
|
|
|
*/
|
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>
|
1995-09-26 22:26:48 +03:00
|
|
|
#include <sys/systm.h>
|
1993-11-24 07:52:44 +03:00
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/buf.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/device.h>
|
1996-09-13 04:35:59 +04:00
|
|
|
#include <sys/fcntl.h>
|
1993-11-24 07:52:44 +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/scsipiconf.h>
|
|
|
|
#include <dev/scsipi/scsiconf.h>
|
1993-11-24 07:52:44 +03:00
|
|
|
#include <sys/scsiio.h>
|
1997-10-01 05:18:38 +04:00
|
|
|
|
1997-08-27 15:22:52 +04:00
|
|
|
#include "scsibus.h"
|
|
|
|
#include "atapibus.h"
|
1993-11-24 07:52:44 +03:00
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
struct scsi_ioctl {
|
1994-12-01 14:53:56 +03:00
|
|
|
LIST_ENTRY(scsi_ioctl) si_list;
|
|
|
|
struct buf si_bp;
|
1994-10-20 23:31:23 +03:00
|
|
|
struct uio si_uio;
|
|
|
|
struct iovec si_iov;
|
1994-12-01 14:53:56 +03:00
|
|
|
scsireq_t si_screq;
|
1997-08-27 15:22:52 +04:00
|
|
|
struct scsipi_link *si_sc_link;
|
1994-12-01 14:53:56 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
LIST_HEAD(, scsi_ioctl) si_head;
|
1994-03-29 08:29:20 +04:00
|
|
|
|
1997-10-01 05:18:38 +04:00
|
|
|
struct scsi_ioctl *si_find __P((struct buf *));
|
|
|
|
void si_free __P((struct scsi_ioctl *));
|
|
|
|
struct scsi_ioctl *si_get __P((void));
|
|
|
|
void scsistrategy __P((struct buf *));
|
1996-02-15 00:46:52 +03:00
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
struct scsi_ioctl *
|
1994-12-01 14:53:56 +03:00
|
|
|
si_get()
|
1994-03-29 08:29:20 +04:00
|
|
|
{
|
|
|
|
struct scsi_ioctl *si;
|
1994-12-01 14:53:56 +03:00
|
|
|
int s;
|
1994-03-29 08:29:20 +04:00
|
|
|
|
1994-12-01 14:53:56 +03:00
|
|
|
si = malloc(sizeof(struct scsi_ioctl), M_TEMP, M_WAITOK);
|
|
|
|
bzero(si, sizeof(struct scsi_ioctl));
|
|
|
|
s = splbio();
|
|
|
|
LIST_INSERT_HEAD(&si_head, si, si_list);
|
|
|
|
splx(s);
|
|
|
|
return (si);
|
1994-03-29 08:29:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
si_free(si)
|
|
|
|
struct scsi_ioctl *si;
|
|
|
|
{
|
1994-12-01 14:53:56 +03:00
|
|
|
int s;
|
1994-03-29 08:29:20 +04:00
|
|
|
|
1994-12-01 14:53:56 +03:00
|
|
|
s = splbio();
|
|
|
|
LIST_REMOVE(si, si_list);
|
1994-03-29 08:29:20 +04:00
|
|
|
splx(s);
|
1994-12-01 14:53:56 +03:00
|
|
|
free(si, M_TEMP);
|
1994-03-29 08:29:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
struct scsi_ioctl *
|
|
|
|
si_find(bp)
|
|
|
|
struct buf *bp;
|
|
|
|
{
|
|
|
|
struct scsi_ioctl *si;
|
1994-12-01 14:53:56 +03:00
|
|
|
int s;
|
1994-03-29 08:29:20 +04:00
|
|
|
|
1994-12-01 14:53:56 +03:00
|
|
|
s = splbio();
|
|
|
|
for (si = si_head.lh_first; si != 0; si = si->si_list.le_next)
|
|
|
|
if (bp == &si->si_bp)
|
|
|
|
break;
|
1994-03-29 08:29:20 +04:00
|
|
|
splx(s);
|
1994-12-01 14:53:56 +03:00
|
|
|
return (si);
|
1994-03-29 08:29:20 +04:00
|
|
|
}
|
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
|
1997-08-27 15:22:52 +04:00
|
|
|
* in the flags passed to scsi_scsipi_cmd(). No other completion processing
|
1993-11-24 07:52:44 +03:00
|
|
|
* 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.
|
|
|
|
*/
|
1993-11-24 12:45:04 +03:00
|
|
|
void
|
1997-08-27 15:22:52 +04:00
|
|
|
scsipi_user_done(xs)
|
|
|
|
struct scsipi_xfer *xs;
|
1993-11-24 12:45:04 +03:00
|
|
|
{
|
|
|
|
struct buf *bp;
|
1994-03-29 08:29:20 +04:00
|
|
|
struct scsi_ioctl *si;
|
1994-12-01 15:12:08 +03:00
|
|
|
scsireq_t *screq;
|
1997-08-27 15:22:52 +04:00
|
|
|
struct scsipi_link *sc_link;
|
1993-11-24 07:52:44 +03:00
|
|
|
|
|
|
|
bp = xs->bp;
|
1997-10-01 05:18:38 +04:00
|
|
|
if (bp == NULL) { /* ALL user requests must have a buf */
|
1997-08-27 15:22:52 +04:00
|
|
|
xs->sc_link->sc_print_addr(xs->sc_link);
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("User command with no buf\n");
|
1993-11-24 12:45:04 +03:00
|
|
|
return;
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
1994-03-29 08:29:20 +04:00
|
|
|
si = si_find(bp);
|
1997-10-01 05:18:38 +04:00
|
|
|
if (si == NULL) {
|
1997-08-27 15:22:52 +04:00
|
|
|
xs->sc_link->sc_print_addr(xs->sc_link);
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("User command with no ioctl\n");
|
1994-03-29 08:29:20 +04:00
|
|
|
return;
|
|
|
|
}
|
1994-10-23 22:24:01 +03:00
|
|
|
screq = &si->si_screq;
|
1994-12-01 15:12:08 +03:00
|
|
|
sc_link = si->si_sc_link;
|
1993-11-24 12:45:04 +03:00
|
|
|
SC_DEBUG(xs->sc_link, SDEV_DB2, ("user-done\n"));
|
1994-12-01 15:12:08 +03:00
|
|
|
|
1993-11-24 07:52:44 +03:00
|
|
|
screq->retsts = 0;
|
|
|
|
screq->status = xs->status;
|
1994-10-23 22:24:01 +03:00
|
|
|
switch (xs->error) {
|
1993-11-24 12:45:04 +03:00
|
|
|
case XS_NOERROR:
|
1994-12-01 15:12:08 +03:00
|
|
|
SC_DEBUG(sc_link, SDEV_DB3, ("no error\n"));
|
1997-10-01 05:18:38 +04:00
|
|
|
screq->datalen_used =
|
|
|
|
xs->datalen - xs->resid; /* probably rubbish */
|
1993-11-24 07:52:44 +03:00
|
|
|
screq->retsts = SCCMD_OK;
|
|
|
|
break;
|
1993-11-24 12:45:04 +03:00
|
|
|
case XS_SENSE:
|
1994-12-01 15:12:08 +03:00
|
|
|
SC_DEBUG(sc_link, SDEV_DB3, ("have sense\n"));
|
1997-10-01 05:18:38 +04:00
|
|
|
screq->senselen_used = min(sizeof(xs->sense.scsi_sense),
|
|
|
|
SENSEBUFLEN);
|
1997-08-27 15:22:52 +04:00
|
|
|
bcopy(&xs->sense.scsi_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:
|
1997-08-27 15:22:52 +04:00
|
|
|
sc_link->sc_print_addr(sc_link);
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("host adapter code inconsistency\n");
|
1993-11-24 07:52:44 +03:00
|
|
|
screq->retsts = SCCMD_UNKNOWN;
|
|
|
|
break;
|
1993-11-24 12:45:04 +03:00
|
|
|
case XS_TIMEOUT:
|
1994-12-01 15:12:08 +03:00
|
|
|
SC_DEBUG(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:
|
1994-12-01 15:12:08 +03:00
|
|
|
SC_DEBUG(sc_link, SDEV_DB3, ("busy\n"));
|
1993-11-24 07:52:44 +03:00
|
|
|
screq->retsts = SCCMD_BUSY;
|
|
|
|
break;
|
|
|
|
default:
|
1997-08-27 15:22:52 +04:00
|
|
|
sc_link->sc_print_addr(sc_link);
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("unknown error category from host adapter code\n");
|
1993-11-24 07:52:44 +03:00
|
|
|
screq->retsts = SCCMD_UNKNOWN;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
biodone(bp); /* we're waiting on it in scsi_strategy() */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Pseudo strategy function
|
1997-08-27 15:22:52 +04:00
|
|
|
* Called by scsipi_do_ioctl() via physio/physstrat if there is to
|
1993-11-24 07:52:44 +03:00
|
|
|
* be data transfered, and directly if there is no data transfer.
|
1997-10-01 05:18:38 +04:00
|
|
|
*
|
1993-11-24 07:52:44 +03:00
|
|
|
* Should I reorganize this so it returns to physio instead
|
1997-08-27 15:22:52 +04:00
|
|
|
* of sleeping in scsiio_scsipi_cmd? Is there any advantage, other
|
1993-11-24 07:52:44 +03:00
|
|
|
* 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]
|
|
|
|
*/
|
1994-03-29 08:29:20 +04:00
|
|
|
void
|
|
|
|
scsistrategy(bp)
|
|
|
|
struct buf *bp;
|
1993-11-24 07:52:44 +03:00
|
|
|
{
|
1994-03-29 08:29:20 +04:00
|
|
|
struct scsi_ioctl *si;
|
1993-11-24 07:52:44 +03:00
|
|
|
scsireq_t *screq;
|
1997-08-27 15:22:52 +04:00
|
|
|
struct scsipi_link *sc_link;
|
1994-12-01 15:12:08 +03:00
|
|
|
int error;
|
1994-04-11 07:53:58 +04:00
|
|
|
int flags = 0;
|
1993-11-24 07:52:44 +03:00
|
|
|
int s;
|
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
si = si_find(bp);
|
1997-10-01 05:18:38 +04:00
|
|
|
if (si == NULL) {
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("user_strat: No ioctl\n");
|
1994-12-01 15:04:43 +03:00
|
|
|
error = EINVAL;
|
|
|
|
goto bad;
|
1994-03-29 08:29:20 +04:00
|
|
|
}
|
1994-10-23 22:24:01 +03:00
|
|
|
screq = &si->si_screq;
|
1994-03-29 08:29:20 +04:00
|
|
|
sc_link = si->si_sc_link;
|
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
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
/*
|
|
|
|
* We're in trouble if physio tried to break up the transfer.
|
1993-11-24 07:52:44 +03:00
|
|
|
*/
|
|
|
|
if (bp->b_bcount != screq->datalen) {
|
1997-08-27 15:22:52 +04:00
|
|
|
sc_link->sc_print_addr(sc_link);
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("physio split the request.. cannot proceed\n");
|
1994-12-01 15:04:43 +03:00
|
|
|
error = EIO;
|
|
|
|
goto bad;
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (screq->timeout == 0) {
|
1994-12-01 15:04:43 +03:00
|
|
|
error = EINVAL;
|
|
|
|
goto bad;
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
|
1997-08-27 15:22:52 +04:00
|
|
|
if (screq->cmdlen > sizeof(struct scsipi_generic)) {
|
|
|
|
sc_link->sc_print_addr(sc_link);
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("cmdlen too big\n");
|
1994-12-01 15:04:43 +03:00
|
|
|
error = EFAULT;
|
|
|
|
goto bad;
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
1997-10-18 23:50:51 +04:00
|
|
|
error = scsipi_command(sc_link,
|
1997-10-01 05:18:38 +04:00
|
|
|
(struct scsipi_generic *)screq->cmd, screq->cmdlen,
|
|
|
|
(u_char *)bp->b_data, screq->datalen,
|
1994-03-29 08:29:20 +04:00
|
|
|
0, /* user must do the retries *//* ignored */
|
1995-01-30 18:54:42 +03:00
|
|
|
screq->timeout, bp, flags | SCSI_USER | SCSI_NOSLEEP);
|
1993-11-24 07:52:44 +03:00
|
|
|
|
1997-08-27 15:22:52 +04:00
|
|
|
/* because there is a bp, scsi_scsipi_cmd will return immediatly */
|
1994-12-01 15:04:43 +03:00
|
|
|
if (error)
|
|
|
|
goto bad;
|
|
|
|
|
1994-12-01 14:53:56 +03:00
|
|
|
SC_DEBUG(sc_link, SDEV_DB3, ("about to sleep\n"));
|
1993-11-24 07:52:44 +03:00
|
|
|
s = splbio();
|
1994-12-01 15:04:43 +03:00
|
|
|
while ((bp->b_flags & B_DONE) == 0)
|
1993-11-24 12:45:04 +03:00
|
|
|
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"));
|
1994-12-01 15:04:43 +03:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
bad:
|
|
|
|
bp->b_flags |= B_ERROR;
|
|
|
|
bp->b_error = error;
|
|
|
|
biodone(bp);
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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
|
1997-08-27 15:22:52 +04:00
|
|
|
scsipi_do_ioctl(sc_link, dev, cmd, addr, flag, p)
|
|
|
|
struct scsipi_link *sc_link;
|
1994-10-20 23:31:23 +03: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;
|
1994-12-28 22:42:47 +03:00
|
|
|
int flag;
|
|
|
|
struct proc *p;
|
1993-11-24 07:52:44 +03:00
|
|
|
{
|
1994-03-29 08:29:20 +04:00
|
|
|
int error;
|
1993-11-24 07:52:44 +03:00
|
|
|
|
1997-08-27 15:22:52 +04:00
|
|
|
SC_DEBUG(sc_link, SDEV_DB2, ("scsipi_do_ioctl(0x%lx)\n", cmd));
|
1994-12-01 14:53:56 +03:00
|
|
|
|
1996-09-13 04:35:59 +04:00
|
|
|
/* Check for the safe-ness of this request. */
|
|
|
|
switch (cmd) {
|
|
|
|
case SCIOCIDENTIFY:
|
|
|
|
break;
|
1997-04-27 02:24:46 +04:00
|
|
|
case SCIOCCOMMAND:
|
|
|
|
if ((((scsireq_t *)addr)->flags & SCCMD_READ) == 0 &&
|
|
|
|
(flag & FWRITE) == 0)
|
1997-10-01 05:18:38 +04:00
|
|
|
return (EBADF);
|
1997-04-27 02:24:46 +04:00
|
|
|
break;
|
1996-09-13 04:35:59 +04:00
|
|
|
default:
|
|
|
|
if ((flag & FWRITE) == 0)
|
1997-10-01 05:18:38 +04:00
|
|
|
return (EBADF);
|
1996-09-13 04:35:59 +04:00
|
|
|
}
|
|
|
|
|
1997-10-01 05:18:38 +04:00
|
|
|
switch (cmd) {
|
1994-03-29 08:29:20 +04:00
|
|
|
case SCIOCCOMMAND: {
|
|
|
|
scsireq_t *screq = (scsireq_t *)addr;
|
1994-10-20 23:31:23 +03:00
|
|
|
struct scsi_ioctl *si;
|
1994-03-29 08:29:20 +04:00
|
|
|
int len;
|
|
|
|
|
1994-12-01 14:53:56 +03:00
|
|
|
si = si_get();
|
1994-10-23 22:24:01 +03:00
|
|
|
si->si_screq = *screq;
|
1994-03-29 08:29:20 +04:00
|
|
|
si->si_sc_link = sc_link;
|
1994-12-28 22:42:47 +03:00
|
|
|
len = screq->datalen;
|
1994-03-29 08:29:20 +04:00
|
|
|
if (len) {
|
1994-12-01 14:53:56 +03:00
|
|
|
si->si_iov.iov_base = screq->databuf;
|
1994-10-20 23:31:23 +03:00
|
|
|
si->si_iov.iov_len = len;
|
|
|
|
si->si_uio.uio_iov = &si->si_iov;
|
|
|
|
si->si_uio.uio_iovcnt = 1;
|
1994-12-01 15:36:35 +03:00
|
|
|
si->si_uio.uio_resid = len;
|
1994-10-20 23:31:23 +03:00
|
|
|
si->si_uio.uio_offset = 0;
|
|
|
|
si->si_uio.uio_segflg = UIO_USERSPACE;
|
1997-10-01 05:18:38 +04:00
|
|
|
si->si_uio.uio_rw =
|
1994-10-20 23:31:23 +03:00
|
|
|
(screq->flags & SCCMD_READ) ? UIO_READ : UIO_WRITE;
|
1994-12-28 22:42:47 +03:00
|
|
|
si->si_uio.uio_procp = p;
|
1994-12-01 14:53:56 +03:00
|
|
|
error = physio(scsistrategy, &si->si_bp, dev,
|
1994-10-20 23:31:23 +03:00
|
|
|
(screq->flags & SCCMD_READ) ? B_READ : B_WRITE,
|
1997-08-27 15:22:52 +04:00
|
|
|
sc_link->adapter->scsipi_minphys, &si->si_uio);
|
1994-03-29 08:29:20 +04:00
|
|
|
} else {
|
|
|
|
/* if no data, no need to translate it.. */
|
1994-12-28 22:42:47 +03:00
|
|
|
si->si_bp.b_flags = 0;
|
1994-12-01 14:53:56 +03:00
|
|
|
si->si_bp.b_data = 0;
|
1994-12-28 22:42:47 +03:00
|
|
|
si->si_bp.b_bcount = 0;
|
1994-12-01 15:26:37 +03:00
|
|
|
si->si_bp.b_dev = dev;
|
1994-12-28 22:42:47 +03:00
|
|
|
si->si_bp.b_proc = p;
|
1994-12-01 14:53:56 +03:00
|
|
|
scsistrategy(&si->si_bp);
|
|
|
|
error = si->si_bp.b_error;
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
1994-12-28 22:42:47 +03:00
|
|
|
*screq = si->si_screq;
|
1994-12-01 14:53:56 +03:00
|
|
|
si_free(si);
|
1997-10-01 05:18:38 +04:00
|
|
|
return (error);
|
1994-03-29 08:29:20 +04:00
|
|
|
}
|
|
|
|
case SCIOCDEBUG: {
|
|
|
|
int level = *((int *)addr);
|
|
|
|
|
|
|
|
SC_DEBUG(sc_link, SDEV_DB3, ("debug set to %d\n", level));
|
|
|
|
sc_link->flags &= ~SDEV_DBX; /* clear debug bits */
|
|
|
|
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;
|
1997-10-01 05:18:38 +04:00
|
|
|
return (0);
|
1994-03-29 08:29:20 +04:00
|
|
|
}
|
1997-08-27 15:22:52 +04:00
|
|
|
#if NSCSIBUS > 0
|
1994-03-29 08:29:20 +04:00
|
|
|
case SCIOCREPROBE: {
|
|
|
|
struct scsi_addr *sca = (struct scsi_addr *)addr;
|
1997-10-01 05:18:38 +04:00
|
|
|
if (sca->type != TYPE_SCSI)
|
|
|
|
return (ENODEV);
|
|
|
|
return (scsi_probe_busses(sca->addr.scsi.scbus,
|
|
|
|
sca->addr.scsi.target, sca->addr.scsi.lun));
|
1994-03-29 08:29:20 +04:00
|
|
|
}
|
1997-09-19 04:59:49 +04:00
|
|
|
#if defined(COMPAT_12) || defined(COMPAT_FREEBSD)
|
|
|
|
/* SCIOCREPROBE before ATAPI staff merge */
|
|
|
|
case OSCIOCREPROBE: {
|
|
|
|
struct oscsi_addr *sca = (struct oscsi_addr *)addr;
|
|
|
|
|
|
|
|
return (scsi_probe_busses(sca->scbus, sca->target, sca->lun));
|
|
|
|
}
|
|
|
|
#endif
|
1997-08-27 15:22:52 +04:00
|
|
|
#endif
|
1994-03-29 08:29:20 +04:00
|
|
|
case SCIOCRECONFIG:
|
|
|
|
case SCIOCDECONFIG:
|
1997-10-01 05:18:38 +04:00
|
|
|
return (EINVAL);
|
1994-03-29 08:29:20 +04:00
|
|
|
case SCIOCIDENTIFY: {
|
|
|
|
struct scsi_addr *sca = (struct scsi_addr *)addr;
|
1997-10-01 05:18:38 +04:00
|
|
|
|
|
|
|
switch (sc_link->type) {
|
|
|
|
case BUS_SCSI:
|
1997-08-27 15:22:52 +04:00
|
|
|
sca->type = TYPE_SCSI;
|
|
|
|
sca->addr.scsi.scbus = sc_link->scsipi_scsi.scsibus;
|
|
|
|
sca->addr.scsi.target = sc_link->scsipi_scsi.target;
|
|
|
|
sca->addr.scsi.lun = sc_link->scsipi_scsi.lun;
|
1997-10-01 05:18:38 +04:00
|
|
|
return (0);
|
|
|
|
case BUS_ATAPI:
|
1997-08-27 15:22:52 +04:00
|
|
|
sca->type = TYPE_ATAPI;
|
|
|
|
sca->addr.atapi.atbus = sc_link->scsipi_atapi.atapibus;
|
|
|
|
sca->addr.atapi.drive = sc_link->scsipi_atapi.drive;
|
1997-10-01 05:18:38 +04:00
|
|
|
return (0);
|
1997-08-27 15:22:52 +04:00
|
|
|
}
|
1997-10-01 05:18:38 +04:00
|
|
|
return (ENXIO);
|
1994-03-29 08:29:20 +04:00
|
|
|
}
|
1997-09-19 04:59:49 +04:00
|
|
|
#if defined(COMPAT_12) || defined(COMPAT_FREEBSD)
|
|
|
|
/* SCIOCIDENTIFY before ATAPI staff merge */
|
|
|
|
case OSCIOCIDENTIFY: {
|
|
|
|
struct oscsi_addr *sca = (struct oscsi_addr *)addr;
|
|
|
|
|
1997-10-01 05:18:38 +04:00
|
|
|
switch (sc_link->type) {
|
|
|
|
case BUS_SCSI:
|
|
|
|
sca->scbus = sc_link->scsipi_scsi.scsibus;
|
|
|
|
sca->target = sc_link->scsipi_scsi.target;
|
|
|
|
sca->lun = sc_link->scsipi_scsi.lun;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
return (ENODEV);
|
1997-09-19 04:59:49 +04:00
|
|
|
}
|
|
|
|
#endif
|
1994-03-29 08:29:20 +04:00
|
|
|
default:
|
1997-10-01 05:18:38 +04:00
|
|
|
return (ENOTTY);
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
|
1994-03-29 08:29:20 +04:00
|
|
|
#ifdef DIAGNOSTIC
|
1997-08-27 15:22:52 +04:00
|
|
|
panic("scsipi_do_ioctl: impossible");
|
1994-03-29 08:29:20 +04:00
|
|
|
#endif
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|