Home | History | Annotate | Line # | Download | only in scsipi
scsi_base.c revision 1.76
      1  1.76     lukem /*	$NetBSD: scsi_base.c,v 1.76 2001/11/13 06:56:39 lukem Exp $	*/
      2  1.14       cgd 
      3  1.65   mycroft /*-
      4  1.65   mycroft  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5  1.65   mycroft  * All rights reserved.
      6  1.65   mycroft  *
      7  1.65   mycroft  * This code is derived from software contributed to The NetBSD Foundation
      8  1.65   mycroft  * by Charles M. Hannum.
      9   1.9   mycroft  *
     10   1.9   mycroft  * Redistribution and use in source and binary forms, with or without
     11   1.9   mycroft  * modification, are permitted provided that the following conditions
     12   1.9   mycroft  * are met:
     13   1.9   mycroft  * 1. Redistributions of source code must retain the above copyright
     14   1.9   mycroft  *    notice, this list of conditions and the following disclaimer.
     15   1.9   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.9   mycroft  *    notice, this list of conditions and the following disclaimer in the
     17   1.9   mycroft  *    documentation and/or other materials provided with the distribution.
     18   1.9   mycroft  * 3. All advertising materials mentioning features or use of this software
     19   1.9   mycroft  *    must display the following acknowledgement:
     20  1.65   mycroft  *        This product includes software developed by the NetBSD
     21  1.65   mycroft  *        Foundation, Inc. and its contributors.
     22  1.65   mycroft  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.65   mycroft  *    contributors may be used to endorse or promote products derived
     24  1.65   mycroft  *    from this software without specific prior written permission.
     25   1.9   mycroft  *
     26  1.65   mycroft  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.65   mycroft  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.65   mycroft  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.65   mycroft  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.65   mycroft  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.65   mycroft  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.65   mycroft  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.65   mycroft  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.65   mycroft  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.65   mycroft  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.65   mycroft  * POSSIBILITY OF SUCH DAMAGE.
     37   1.1   mycroft  */
     38  1.76     lukem 
     39  1.76     lukem #include <sys/cdefs.h>
     40  1.76     lukem __KERNEL_RCSID(0, "$NetBSD: scsi_base.c,v 1.76 2001/11/13 06:56:39 lukem Exp $");
     41  1.49     enami 
     42   1.1   mycroft #include <sys/types.h>
     43   1.1   mycroft #include <sys/param.h>
     44  1.30   thorpej #include <sys/systm.h>
     45  1.11   mycroft #include <sys/kernel.h>
     46   1.1   mycroft #include <sys/buf.h>
     47   1.1   mycroft #include <sys/uio.h>
     48   1.1   mycroft #include <sys/malloc.h>
     49   1.1   mycroft #include <sys/errno.h>
     50   1.1   mycroft #include <sys/device.h>
     51  1.33  christos #include <sys/proc.h>
     52   1.2   mycroft 
     53  1.47    bouyer #include <dev/scsipi/scsipi_all.h>
     54  1.47    bouyer #include <dev/scsipi/scsi_all.h>
     55  1.47    bouyer #include <dev/scsipi/scsi_disk.h>
     56  1.47    bouyer #include <dev/scsipi/scsiconf.h>
     57  1.47    bouyer #include <dev/scsipi/scsipi_base.h>
     58  1.47    bouyer 
     59   1.1   mycroft /*
     60   1.1   mycroft  * Do a scsi operation, asking a device to run as SCSI-II if it can.
     61   1.1   mycroft  */
     62  1.50     enami int
     63  1.74    bouyer scsi_change_def(periph, flags)
     64  1.74    bouyer 	struct scsipi_periph *periph;
     65  1.11   mycroft 	int flags;
     66   1.1   mycroft {
     67  1.47    bouyer 	struct scsi_changedef scsipi_cmd;
     68   1.1   mycroft 
     69  1.75   thorpej 	memset(&scsipi_cmd, 0, sizeof(scsipi_cmd));
     70  1.47    bouyer 	scsipi_cmd.opcode = SCSI_CHANGE_DEFINITION;
     71  1.47    bouyer 	scsipi_cmd.how = SC_SCSI_2;
     72   1.1   mycroft 
     73  1.74    bouyer 	return (scsipi_command(periph,
     74  1.50     enami 	    (struct scsipi_generic *) &scsipi_cmd, sizeof(scsipi_cmd),
     75  1.71    bouyer 	    0, 0, SCSIPIRETRIES, 100000, NULL, flags));
     76  1.22   mycroft }
     77  1.22   mycroft 
     78  1.22   mycroft /*
     79  1.22   mycroft  * ask the scsi driver to perform a command for us.
     80  1.22   mycroft  * tell it where to read/write the data, and how
     81  1.22   mycroft  * long the data is supposed to be. If we have  a buf
     82  1.22   mycroft  * to associate with the transfer, we need that too.
     83  1.22   mycroft  */
     84  1.50     enami int
     85  1.74    bouyer scsi_scsipi_cmd(periph, scsipi_cmd, cmdlen, data, datalen,
     86  1.47    bouyer 	retries, timeout, bp, flags)
     87  1.74    bouyer 	struct scsipi_periph *periph;
     88  1.47    bouyer 	struct scsipi_generic *scsipi_cmd;
     89  1.22   mycroft 	int cmdlen;
     90  1.74    bouyer 	void *data;
     91  1.74    bouyer 	size_t datalen;
     92  1.22   mycroft 	int retries;
     93  1.22   mycroft 	int timeout;
     94  1.22   mycroft 	struct buf *bp;
     95  1.22   mycroft 	int flags;
     96  1.22   mycroft {
     97  1.47    bouyer 	struct scsipi_xfer *xs;
     98  1.67        pk 	int error, s;
     99  1.22   mycroft 
    100  1.74    bouyer 	SC_DEBUG(periph, SCSIPI_DB2, ("scsi_scsipi_cmd\n"));
    101  1.22   mycroft 
    102  1.25   mycroft #ifdef DIAGNOSTIC
    103  1.69   thorpej 	if (bp != NULL && (flags & XS_CTL_ASYNC) == 0)
    104  1.69   thorpej 		panic("scsi_scsipi_cmd: buffer without async");
    105  1.25   mycroft #endif
    106  1.25   mycroft 
    107  1.74    bouyer 	if ((xs = scsipi_make_xs(periph, scsipi_cmd, cmdlen, data,
    108  1.68   thorpej 	    datalen, retries, timeout, bp, flags)) == NULL) {
    109  1.68   thorpej 		if (bp != NULL) {
    110  1.68   thorpej 			s = splbio();
    111  1.68   thorpej 			bp->b_flags |= B_ERROR;
    112  1.68   thorpej 			bp->b_error = ENOMEM;
    113  1.68   thorpej 			biodone(bp);
    114  1.68   thorpej 			splx(s);
    115  1.68   thorpej 		}
    116  1.50     enami 		return (ENOMEM);
    117  1.68   thorpej 	}
    118  1.58       cgd 
    119  1.58       cgd 	/*
    120  1.58       cgd 	 * Set the LUN in the CDB if we have an older device.  We also
    121  1.74    bouyer 	 * set it for more modern SCSI-2 devices "just in case".
    122  1.58       cgd 	 */
    123  1.74    bouyer 	if (periph->periph_version <= 2)
    124  1.58       cgd 		xs->cmd->bytes[0] |=
    125  1.74    bouyer 		    ((periph->periph_lun << SCSI_CMD_LUN_SHIFT) &
    126  1.58       cgd 			SCSI_CMD_LUN_MASK);
    127  1.22   mycroft 
    128  1.47    bouyer 	if ((error = scsipi_execute_xs(xs)) == EJUSTRETURN)
    129  1.50     enami 		return (0);
    130  1.50     enami 	return (error);
    131   1.1   mycroft }
    132   1.1   mycroft 
    133   1.1   mycroft /*
    134   1.1   mycroft  * Utility routines often used in SCSI stuff
    135   1.1   mycroft  */
    136   1.1   mycroft 
    137   1.1   mycroft /*
    138  1.74    bouyer  * Print out the periph's address info.
    139   1.1   mycroft  */
    140   1.1   mycroft void
    141  1.74    bouyer scsi_print_addr(periph)
    142  1.74    bouyer 	struct scsipi_periph *periph;
    143   1.1   mycroft {
    144  1.74    bouyer 	struct scsipi_channel *chan = periph->periph_channel;
    145  1.74    bouyer 	struct scsipi_adapter *adapt = chan->chan_adapter;
    146   1.1   mycroft 
    147  1.74    bouyer 	printf("%s(%s:%d:%d:%d): ", periph->periph_dev != NULL ?
    148  1.74    bouyer 	    periph->periph_dev->dv_xname : "probe",
    149  1.74    bouyer 	    adapt->adapt_dev->dv_xname,
    150  1.74    bouyer 	    chan->chan_channel, periph->periph_target,
    151  1.74    bouyer 	    periph->periph_lun);
    152  1.70     enami }
    153  1.70     enami 
    154  1.70     enami /*
    155  1.74    bouyer  * Kill off all pending xfers for a periph.
    156  1.70     enami  *
    157  1.70     enami  * Must be called at splbio().
    158  1.70     enami  */
    159  1.70     enami void
    160  1.74    bouyer scsi_kill_pending(periph)
    161  1.74    bouyer 	struct scsipi_periph *periph;
    162  1.70     enami {
    163  1.74    bouyer 	struct scsipi_xfer *xs;
    164  1.70     enami 
    165  1.74    bouyer 	while ((xs = TAILQ_FIRST(&periph->periph_xferq)) != NULL) {
    166  1.70     enami 		xs->error = XS_DRIVER_STUFFUP;
    167  1.70     enami 		scsipi_done(xs);
    168  1.70     enami 	}
    169   1.1   mycroft }
    170