Home | History | Annotate | Line # | Download | only in ic
      1  1.6  msaitoh /*	$NetBSD: aic7xxx_cam.h,v 1.6 2022/01/01 10:32:29 msaitoh Exp $	*/
      2  1.2     fvdl 
      3  1.1     fvdl /*
      4  1.1     fvdl  * Data structures and definitions for the CAM system.
      5  1.1     fvdl  *
      6  1.1     fvdl  * Copyright (c) 1997 Justin T. Gibbs.
      7  1.1     fvdl  * Copyright (c) 2000 Adaptec Inc.
      8  1.1     fvdl  * All rights reserved.
      9  1.1     fvdl  *
     10  1.1     fvdl  * Redistribution and use in source and binary forms, with or without
     11  1.1     fvdl  * modification, are permitted provided that the following conditions
     12  1.1     fvdl  * are met:
     13  1.1     fvdl  * 1. Redistributions of source code must retain the above copyright
     14  1.1     fvdl  *    notice, this list of conditions, and the following disclaimer,
     15  1.1     fvdl  *    without modification.
     16  1.1     fvdl  * 2. The name of the author may not be used to endorse or promote products
     17  1.1     fvdl  *    derived from this software without specific prior written permission.
     18  1.1     fvdl  *
     19  1.1     fvdl  * Alternatively, this software may be distributed under the terms of the
     20  1.1     fvdl  * GNU General Public License ("GPL").
     21  1.1     fvdl  *
     22  1.1     fvdl  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     23  1.1     fvdl  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24  1.1     fvdl  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25  1.1     fvdl  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
     26  1.1     fvdl  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27  1.1     fvdl  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28  1.1     fvdl  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29  1.1     fvdl  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30  1.1     fvdl  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31  1.1     fvdl  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32  1.1     fvdl  * SUCH DAMAGE.
     33  1.1     fvdl  *
     34  1.1     fvdl  */
     35  1.1     fvdl /*
     36  1.1     fvdl  * Ported from FreeBSD by Pascal Renauld, Network Storage Solutions, Inc. - April 2003
     37  1.1     fvdl  */
     38  1.1     fvdl 
     39  1.1     fvdl #ifndef _AIC7XXX_CAM_H
     40  1.1     fvdl #define _AIC7XXX_CAM_H
     41  1.1     fvdl 
     42  1.1     fvdl #define SCSI_REV_2	2
     43  1.1     fvdl 
     44  1.1     fvdl 
     45  1.1     fvdl #define	CAM_BUS_WILDCARD ((u_int)~0)
     46  1.1     fvdl #define	CAM_TARGET_WILDCARD ((u_int)~0)
     47  1.3     fvdl #define	CAM_LUN_WILDCARD -1
     48  1.1     fvdl 
     49  1.1     fvdl /*
     50  1.1     fvdl  * XXX translate FreeBSD SCSI status byte values to NetBSD, and define
     51  1.1     fvdl  * a few more.
     52  1.1     fvdl  */
     53  1.1     fvdl #define SCSI_STATUS_OK                  SCSI_OK
     54  1.1     fvdl #define SCSI_STATUS_CHECK_COND          SCSI_CHECK
     55  1.1     fvdl #define SCSI_STATUS_COND_MET            0x04
     56  1.1     fvdl #define SCSI_STATUS_BUSY                SCSI_BUSY
     57  1.1     fvdl #define SCSI_STATUS_INTERMED            SCSI_INTERM
     58  1.1     fvdl #define SCSI_STATUS_INTERMED_COND_MET   0x14
     59  1.1     fvdl #define SCSI_STATUS_RESERV_CONFLICT     0x18
     60  1.1     fvdl #define SCSI_STATUS_CMD_TERMINATED      SCSI_TERMINATED
     61  1.1     fvdl #define SCSI_STATUS_QUEUE_FULL          SCSI_QUEUE_FULL
     62  1.1     fvdl 
     63  1.1     fvdl /* CAM Status field values */
     64  1.1     fvdl typedef enum {
     65  1.1     fvdl 	CAM_REQ_INPROG = XS_STS_DONE,		/* CCB request is in progress */
     66  1.1     fvdl 	CAM_REQ_CMP = XS_NOERROR,		/* CCB request completed without error */
     67  1.1     fvdl 	CAM_REQ_ABORTED = XS_DRIVER_STUFFUP,	/* CCB request aborted by the host */
     68  1.1     fvdl 	CAM_UA_ABORT,				/* Unable to abort CCB request */
     69  1.1     fvdl 	CAM_REQ_CMP_ERR = XS_DRIVER_STUFFUP,	/* CCB request completed with an error */
     70  1.6  msaitoh 	CAM_BUSY = XS_BUSY,			/* CAM subsystem is busy */
     71  1.1     fvdl 	CAM_REQ_INVALID = XS_DRIVER_STUFFUP,	/* CCB request was invalid */
     72  1.1     fvdl 	CAM_PATH_INVALID,			/* Supplied Path ID is invalid */
     73  1.1     fvdl 	CAM_SEL_TIMEOUT = XS_SELTIMEOUT,	/* Target Selection Timeout */
     74  1.5  mlelstv 	CAM_CMD_TIMEOUT = XS_TIMEOUT,		/* Command timeout */
     75  1.1     fvdl 	CAM_SCSI_STATUS_ERROR,			/* SCSI error, look at error code in CCB */
     76  1.1     fvdl 	CAM_SCSI_BUS_RESET = XS_RESET,		/* SCSI Bus Reset Sent/Received */
     77  1.1     fvdl 	CAM_UNCOR_PARITY = XS_DRIVER_STUFFUP,	/* Uncorrectable parity error occurred */
     78  1.1     fvdl 	CAM_AUTOSENSE_FAIL = XS_DRIVER_STUFFUP,	/* Autosense: request sense cmd fail */
     79  1.1     fvdl 	CAM_NO_HBA = XS_DRIVER_STUFFUP,		/* No HBA Detected Error */
     80  1.1     fvdl 	CAM_DATA_RUN_ERR = XS_DRIVER_STUFFUP,	/* Data Overrun error */
     81  1.1     fvdl 	CAM_UNEXP_BUSFREE = XS_DRIVER_STUFFUP,	/* Unexpected Bus Free */
     82  1.1     fvdl 	CAM_SEQUENCE_FAIL = XS_DRIVER_STUFFUP,	/* Protocol Violation */
     83  1.1     fvdl 	CAM_CCB_LEN_ERR,			/* CCB length supplied is inadequate */
     84  1.1     fvdl 	CAM_PROVIDE_FAIL,			/* Unable to provide requested capability */
     85  1.1     fvdl 	CAM_BDR_SENT = XS_RESET,		/* A SCSI BDR msg was sent to target */
     86  1.1     fvdl 	CAM_REQ_TERMIO,				/* CCB request terminated by the host */
     87  1.1     fvdl 	CAM_UNREC_HBA_ERROR,			/* Unrecoverable Host Bus Adapter Error */
     88  1.1     fvdl 	CAM_REQ_TOO_BIG,			/* The request was too large for this host */
     89  1.1     fvdl 	CAM_UA_TERMIO,				/* Unable to terminate I/O CCB request */
     90  1.1     fvdl 	CAM_MSG_REJECT_REC,			/* Message Reject Received */
     91  1.1     fvdl 	CAM_DEV_NOT_THERE,			/* SCSI Device Not Installed/there */
     92  1.1     fvdl 	CAM_RESRC_UNAVAIL,			/* Resource Unavailable */
     93  1.1     fvdl 	/*
     94  1.1     fvdl 	 * This request should be requeued to preserve
     95  1.1     fvdl 	 * transaction ordering.  This typically occurs
     96  1.1     fvdl 	 * when the SIM recognizes an error that should
     97  1.1     fvdl 	 * freeze the queue and must place additional
     98  1.1     fvdl 	 * requests for the target at the sim level
     99  1.1     fvdl 	 * back into the XPT queue.
    100  1.1     fvdl 	 */
    101  1.1     fvdl 	CAM_REQUEUE_REQ = XS_REQUEUE,
    102  1.1     fvdl 	CAM_DEV_QFRZN		= 0x40,
    103  1.1     fvdl 
    104  1.1     fvdl 	CAM_STATUS_MASK		= 0x3F
    105  1.1     fvdl } cam_status;
    106  1.1     fvdl 
    107  1.1     fvdl typedef enum {
    108  1.4  tsutsui 	CAM_DIR_IN		= XS_CTL_DATA_IN,
    109  1.1     fvdl 	CAM_DIR_OUT		= XS_CTL_DATA_OUT,
    110  1.1     fvdl } ccb_flags;
    111  1.1     fvdl 
    112  1.1     fvdl typedef enum {
    113  1.1     fvdl 	AC_BUS_RESET            =       0x001,
    114  1.1     fvdl 	AC_UNSOL_RESEL          =       0x002,
    115  1.1     fvdl 	AC_SCSI_AEN             =       0x008,
    116  1.1     fvdl 	AC_SENT_BDR             =       0x010,
    117  1.1     fvdl 	AC_PATH_REGISTERED      =       0x020,
    118  1.1     fvdl 	AC_PATH_DEREGISTERED    =       0x040,
    119  1.1     fvdl 	AC_FOUND_DEVICE         =       0x080,
    120  1.1     fvdl 	AC_LOST_DEVICE          =       0x100,
    121  1.1     fvdl 	AC_TRANSFER_NEG         =       0x200,
    122  1.1     fvdl 	AC_INQ_CHANGED          =       0x400,
    123  1.1     fvdl 	AC_GETDEV_CHANGED       =       0x800,
    124  1.1     fvdl } ac_code;
    125  1.1     fvdl 
    126  1.1     fvdl #endif /* _AIC7XXX_CAM_H */
    127