Home | History | Annotate | Line # | Download | only in ic
isp_target.c revision 1.10.2.7
      1  1.10.2.7  nathanw /* $NetBSD: isp_target.c,v 1.10.2.7 2002/06/20 03:44:50 nathanw Exp $ */
      2       1.9   mjacob /*
      3       1.9   mjacob  * This driver, which is contained in NetBSD in the files:
      4       1.9   mjacob  *
      5       1.9   mjacob  *	sys/dev/ic/isp.c
      6      1.10      wiz  *	sys/dev/ic/isp_inline.h
      7      1.10      wiz  *	sys/dev/ic/isp_netbsd.c
      8      1.10      wiz  *	sys/dev/ic/isp_netbsd.h
      9      1.10      wiz  *	sys/dev/ic/isp_target.c
     10      1.10      wiz  *	sys/dev/ic/isp_target.h
     11      1.10      wiz  *	sys/dev/ic/isp_tpublic.h
     12      1.10      wiz  *	sys/dev/ic/ispmbox.h
     13      1.10      wiz  *	sys/dev/ic/ispreg.h
     14      1.10      wiz  *	sys/dev/ic/ispvar.h
     15       1.9   mjacob  *	sys/microcode/isp/asm_sbus.h
     16       1.9   mjacob  *	sys/microcode/isp/asm_1040.h
     17       1.9   mjacob  *	sys/microcode/isp/asm_1080.h
     18       1.9   mjacob  *	sys/microcode/isp/asm_12160.h
     19       1.9   mjacob  *	sys/microcode/isp/asm_2100.h
     20       1.9   mjacob  *	sys/microcode/isp/asm_2200.h
     21       1.9   mjacob  *	sys/pci/isp_pci.c
     22       1.9   mjacob  *	sys/sbus/isp_sbus.c
     23       1.9   mjacob  *
     24       1.9   mjacob  * Is being actively maintained by Matthew Jacob (mjacob (at) netbsd.org).
     25       1.9   mjacob  * This driver also is shared source with FreeBSD, OpenBSD, Linux, Solaris,
     26       1.9   mjacob  * Linux versions. This tends to be an interesting maintenance problem.
     27       1.9   mjacob  *
     28       1.9   mjacob  * Please coordinate with Matthew Jacob on changes you wish to make here.
     29       1.9   mjacob  */
     30       1.1   mjacob /*
     31       1.1   mjacob  * Machine and OS Independent Target Mode Code for the Qlogic SCSI/FC adapters.
     32       1.1   mjacob  *
     33  1.10.2.1  nathanw  * Copyright (c) 1999, 2000, 2001 by Matthew Jacob
     34       1.1   mjacob  * All rights reserved.
     35       1.1   mjacob  * mjacob (at) feral.com
     36       1.1   mjacob  *
     37       1.1   mjacob  * Redistribution and use in source and binary forms, with or without
     38       1.1   mjacob  * modification, are permitted provided that the following conditions
     39       1.1   mjacob  * are met:
     40       1.1   mjacob  * 1. Redistributions of source code must retain the above copyright
     41       1.1   mjacob  *    notice immediately at the beginning of the file, without modification,
     42       1.1   mjacob  *    this list of conditions, and the following disclaimer.
     43  1.10.2.1  nathanw  * 2. The name of the author may not be used to endorse or promote products
     44       1.1   mjacob  *    derived from this software without specific prior written permission.
     45       1.1   mjacob  *
     46       1.1   mjacob  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     47       1.1   mjacob  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     48       1.1   mjacob  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     49       1.1   mjacob  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
     50       1.1   mjacob  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     51       1.1   mjacob  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     52       1.1   mjacob  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     53       1.1   mjacob  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     54       1.1   mjacob  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     55       1.1   mjacob  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     56       1.1   mjacob  * SUCH DAMAGE.
     57       1.1   mjacob  */
     58       1.1   mjacob 
     59       1.1   mjacob /*
     60  1.10.2.6  nathanw  * Bug fixes gratefully acknowledged from:
     61  1.10.2.6  nathanw  *     Oded Kedem <oded (at) kashya.com>
     62  1.10.2.6  nathanw  */
     63  1.10.2.6  nathanw /*
     64       1.1   mjacob  * Include header file appropriate for platform we're building on.
     65       1.1   mjacob  */
     66  1.10.2.4  nathanw 
     67  1.10.2.4  nathanw #include <sys/cdefs.h>
     68  1.10.2.7  nathanw __KERNEL_RCSID(0, "$NetBSD: isp_target.c,v 1.10.2.7 2002/06/20 03:44:50 nathanw Exp $");
     69       1.1   mjacob 
     70       1.1   mjacob #ifdef	__NetBSD__
     71       1.1   mjacob #include <dev/ic/isp_netbsd.h>
     72       1.1   mjacob #endif
     73       1.1   mjacob #ifdef	__FreeBSD__
     74       1.1   mjacob #include <dev/isp/isp_freebsd.h>
     75       1.1   mjacob #endif
     76       1.1   mjacob #ifdef	__OpenBSD__
     77       1.1   mjacob #include <dev/ic/isp_openbsd.h>
     78       1.1   mjacob #endif
     79       1.1   mjacob #ifdef	__linux__
     80       1.1   mjacob #include "isp_linux.h"
     81       1.1   mjacob #endif
     82       1.1   mjacob 
     83       1.1   mjacob #ifdef	ISP_TARGET_MODE
     84  1.10.2.1  nathanw static const char atiocope[] =
     85  1.10.2.3  nathanw     "ATIO returned for lun %d because it was in the middle of Bus Device Reset "
     86  1.10.2.3  nathanw     "on bus %d";
     87  1.10.2.1  nathanw static const char atior[] =
     88  1.10.2.3  nathanw     "ATIO returned on for lun %d on from IID %d because a Bus Reset occurred "
     89  1.10.2.3  nathanw     "on bus %d";
     90       1.1   mjacob 
     91  1.10.2.1  nathanw static void isp_got_msg(struct ispsoftc *, int, in_entry_t *);
     92  1.10.2.1  nathanw static void isp_got_msg_fc(struct ispsoftc *, int, in_fcentry_t *);
     93  1.10.2.1  nathanw static void isp_notify_ack(struct ispsoftc *, void *);
     94       1.1   mjacob static void isp_handle_atio(struct ispsoftc *, at_entry_t *);
     95       1.1   mjacob static void isp_handle_atio2(struct ispsoftc *, at2_entry_t *);
     96       1.1   mjacob static void isp_handle_ctio(struct ispsoftc *, ct_entry_t *);
     97       1.1   mjacob static void isp_handle_ctio2(struct ispsoftc *, ct2_entry_t *);
     98       1.1   mjacob 
     99       1.1   mjacob /*
    100       1.1   mjacob  * The Qlogic driver gets an interrupt to look at response queue entries.
    101       1.1   mjacob  * Some of these are status completions for initiatior mode commands, but
    102       1.1   mjacob  * if target mode is enabled, we get a whole wad of response queue entries
    103       1.1   mjacob  * to be handled here.
    104       1.1   mjacob  *
    105       1.1   mjacob  * Basically the split into 3 main groups: Lun Enable/Modification responses,
    106       1.1   mjacob  * SCSI Command processing, and Immediate Notification events.
    107       1.1   mjacob  *
    108       1.1   mjacob  * You start by writing a request queue entry to enable target mode (and
    109       1.1   mjacob  * establish some resource limitations which you can modify later).
    110       1.1   mjacob  * The f/w responds with a LUN ENABLE or LUN MODIFY response with
    111       1.1   mjacob  * the status of this action. If the enable was successful, you can expect...
    112       1.1   mjacob  *
    113       1.1   mjacob  * Response queue entries with SCSI commands encapsulate show up in an ATIO
    114       1.1   mjacob  * (Accept Target IO) type- sometimes with enough info to stop the command at
    115       1.1   mjacob  * this level. Ultimately the driver has to feed back to the f/w's request
    116       1.1   mjacob  * queue a sequence of CTIOs (continue target I/O) that describe data to
    117       1.1   mjacob  * be moved and/or status to be sent) and finally finishing with sending
    118       1.1   mjacob  * to the f/w's response queue an ATIO which then completes the handshake
    119       1.1   mjacob  * with the f/w for that command. There's a lot of variations on this theme,
    120       1.1   mjacob  * including flags you can set in the CTIO for the Qlogic 2X00 fibre channel
    121       1.1   mjacob  * cards that 'auto-replenish' the f/w's ATIO count, but this is the basic
    122       1.1   mjacob  * gist of it.
    123       1.1   mjacob  *
    124       1.1   mjacob  * The third group that can show up in the response queue are Immediate
    125       1.1   mjacob  * Notification events. These include things like notifications of SCSI bus
    126       1.1   mjacob  * resets, or Bus Device Reset messages or other messages received. This
    127  1.10.2.1  nathanw  * a classic oddbins area. It can get  a little weird because you then turn
    128       1.1   mjacob  * around and acknowledge the Immediate Notify by writing an entry onto the
    129       1.1   mjacob  * request queue and then the f/w turns around and gives you an acknowledgement
    130       1.1   mjacob  * to *your* acknowledgement on the response queue (the idea being to let
    131       1.1   mjacob  * the f/w tell you when the event is *really* over I guess).
    132       1.1   mjacob  *
    133       1.1   mjacob  */
    134       1.1   mjacob 
    135       1.1   mjacob 
    136       1.1   mjacob /*
    137       1.1   mjacob  * A new response queue entry has arrived. The interrupt service code
    138       1.1   mjacob  * has already swizzled it into the platform dependent from canonical form.
    139       1.1   mjacob  *
    140       1.1   mjacob  * Because of the way this driver is designed, unfortunately most of the
    141       1.1   mjacob  * actual synchronization work has to be done in the platform specific
    142       1.1   mjacob  * code- we have no synchroniation primitives in the common code.
    143       1.1   mjacob  */
    144       1.1   mjacob 
    145       1.1   mjacob int
    146  1.10.2.1  nathanw isp_target_notify(struct ispsoftc *isp, void *vptr, u_int16_t *optrp)
    147       1.1   mjacob {
    148       1.1   mjacob 	u_int16_t status, seqid;
    149       1.1   mjacob 	union {
    150       1.1   mjacob 		at_entry_t	*atiop;
    151       1.1   mjacob 		at2_entry_t	*at2iop;
    152       1.1   mjacob 		ct_entry_t	*ctiop;
    153       1.1   mjacob 		ct2_entry_t	*ct2iop;
    154       1.1   mjacob 		lun_entry_t	*lunenp;
    155       1.1   mjacob 		in_entry_t	*inotp;
    156       1.1   mjacob 		in_fcentry_t	*inot_fcp;
    157       1.1   mjacob 		na_entry_t	*nackp;
    158       1.1   mjacob 		na_fcentry_t	*nack_fcp;
    159       1.1   mjacob 		isphdr_t	*hp;
    160       1.1   mjacob 		void *		*vp;
    161       1.1   mjacob #define	atiop		unp.atiop
    162       1.1   mjacob #define	at2iop		unp.at2iop
    163       1.1   mjacob #define	ctiop		unp.ctiop
    164       1.1   mjacob #define	ct2iop		unp.ct2iop
    165       1.1   mjacob #define	lunenp		unp.lunenp
    166       1.1   mjacob #define	inotp		unp.inotp
    167       1.1   mjacob #define	inot_fcp	unp.inot_fcp
    168       1.1   mjacob #define	nackp		unp.nackp
    169       1.1   mjacob #define	nack_fcp	unp.nack_fcp
    170       1.1   mjacob #define	hdrp		unp.hp
    171       1.1   mjacob 	} unp;
    172  1.10.2.5  nathanw 	u_int8_t local[QENTRY_LEN];
    173  1.10.2.7  nathanw 	int bus, type, rval = 1;
    174       1.1   mjacob 
    175  1.10.2.5  nathanw 	type = isp_get_response_type(isp, (isphdr_t *)vptr);
    176       1.1   mjacob 	unp.vp = vptr;
    177       1.1   mjacob 
    178       1.1   mjacob 	ISP_TDQE(isp, "isp_target_notify", (int) *optrp, vptr);
    179       1.1   mjacob 
    180  1.10.2.5  nathanw 	switch(type) {
    181       1.1   mjacob 	case RQSTYPE_ATIO:
    182  1.10.2.5  nathanw 		isp_get_atio(isp, atiop, (at_entry_t *) local);
    183  1.10.2.5  nathanw 		isp_handle_atio(isp, (at_entry_t *) local);
    184       1.1   mjacob 		break;
    185       1.1   mjacob 	case RQSTYPE_CTIO:
    186  1.10.2.5  nathanw 		isp_get_ctio(isp, ctiop, (ct_entry_t *) local);
    187  1.10.2.5  nathanw 		isp_handle_ctio(isp, (ct_entry_t *) local);
    188       1.1   mjacob 		break;
    189       1.1   mjacob 	case RQSTYPE_ATIO2:
    190  1.10.2.5  nathanw 		isp_get_atio2(isp, at2iop, (at2_entry_t *) local);
    191  1.10.2.5  nathanw 		isp_handle_atio2(isp, (at2_entry_t *) local);
    192       1.1   mjacob 		break;
    193       1.1   mjacob 	case RQSTYPE_CTIO2:
    194  1.10.2.5  nathanw 		isp_get_ctio2(isp, ct2iop, (ct2_entry_t *) local);
    195  1.10.2.5  nathanw 		isp_handle_ctio2(isp, (ct2_entry_t *) local);
    196       1.1   mjacob 		break;
    197       1.1   mjacob 	case RQSTYPE_ENABLE_LUN:
    198       1.1   mjacob 	case RQSTYPE_MODIFY_LUN:
    199  1.10.2.5  nathanw 		isp_get_enable_lun(isp, lunenp, (lun_entry_t *) local);
    200  1.10.2.5  nathanw 		(void) isp_async(isp, ISPASYNC_TARGET_ACTION, local);
    201       1.1   mjacob 		break;
    202       1.1   mjacob 
    203       1.1   mjacob 	case RQSTYPE_NOTIFY:
    204       1.1   mjacob 		/*
    205       1.1   mjacob 		 * Either the ISP received a SCSI message it can't
    206       1.1   mjacob 		 * handle, or it's returning an Immed. Notify entry
    207       1.1   mjacob 		 * we sent. We can send Immed. Notify entries to
    208       1.1   mjacob 		 * increment the firmware's resource count for them
    209       1.1   mjacob 		 * (we set this initially in the Enable Lun entry).
    210       1.1   mjacob 		 */
    211       1.3   mjacob 		bus = 0;
    212       1.1   mjacob 		if (IS_FC(isp)) {
    213  1.10.2.5  nathanw 			isp_get_notify_fc(isp, inot_fcp, (in_fcentry_t *)local);
    214  1.10.2.5  nathanw 			inot_fcp = (in_fcentry_t *) local;
    215       1.1   mjacob 			status = inot_fcp->in_status;
    216       1.1   mjacob 			seqid = inot_fcp->in_seqid;
    217       1.1   mjacob 		} else {
    218  1.10.2.5  nathanw 			isp_get_notify(isp, inotp, (in_entry_t *)local);
    219  1.10.2.5  nathanw 			inotp = (in_entry_t *) local;
    220       1.1   mjacob 			status = inotp->in_status & 0xff;
    221       1.1   mjacob 			seqid = inotp->in_seqid;
    222       1.3   mjacob 			if (IS_DUALBUS(isp)) {
    223  1.10.2.3  nathanw 				bus = GET_BUS_VAL(inotp->in_iid);
    224  1.10.2.3  nathanw 				SET_BUS_VAL(inotp->in_iid, 0);
    225       1.3   mjacob 			}
    226       1.1   mjacob 		}
    227  1.10.2.3  nathanw 		isp_prt(isp, ISP_LOGTDEBUG0,
    228  1.10.2.3  nathanw 		    "Immediate Notify On Bus %d, status=0x%x seqid=0x%x",
    229  1.10.2.3  nathanw 		    bus, status, seqid);
    230  1.10.2.3  nathanw 
    231  1.10.2.3  nathanw 		/*
    232  1.10.2.3  nathanw 		 * ACK it right away.
    233  1.10.2.3  nathanw 		 */
    234  1.10.2.5  nathanw 		isp_notify_ack(isp, (status == IN_RESET)? NULL : local);
    235       1.1   mjacob 		switch (status) {
    236       1.1   mjacob 		case IN_RESET:
    237       1.1   mjacob 			(void) isp_async(isp, ISPASYNC_BUS_RESET, &bus);
    238       1.1   mjacob 			break;
    239       1.1   mjacob 		case IN_MSG_RECEIVED:
    240       1.1   mjacob 		case IN_IDE_RECEIVED:
    241       1.1   mjacob 			if (IS_FC(isp)) {
    242  1.10.2.5  nathanw 				isp_got_msg_fc(isp, bus, (in_fcentry_t *)local);
    243       1.1   mjacob 			} else {
    244  1.10.2.5  nathanw 				isp_got_msg(isp, bus, (in_entry_t *)local);
    245       1.1   mjacob 			}
    246       1.1   mjacob 			break;
    247       1.1   mjacob 		case IN_RSRC_UNAVAIL:
    248       1.7   mjacob 			isp_prt(isp, ISP_LOGWARN, "Firmware out of ATIOs");
    249       1.1   mjacob 			break;
    250       1.1   mjacob 		case IN_PORT_LOGOUT:
    251  1.10.2.7  nathanw 		case IN_ABORT_TASK:
    252       1.1   mjacob 		case IN_PORT_CHANGED:
    253       1.1   mjacob 		case IN_GLOBAL_LOGO:
    254  1.10.2.7  nathanw 			(void) isp_async(isp, ISPASYNC_TARGET_ACTION, &local);
    255       1.1   mjacob 			break;
    256       1.1   mjacob 		default:
    257       1.7   mjacob 			isp_prt(isp, ISP_LOGERR,
    258       1.7   mjacob 			    "bad status (0x%x) in isp_target_notify", status);
    259       1.1   mjacob 			break;
    260       1.1   mjacob 		}
    261       1.1   mjacob 		break;
    262       1.1   mjacob 
    263       1.1   mjacob 	case RQSTYPE_NOTIFY_ACK:
    264       1.1   mjacob 		/*
    265       1.1   mjacob 		 * The ISP is acknowledging our acknowledgement of an
    266       1.1   mjacob 		 * Immediate Notify entry for some asynchronous event.
    267       1.1   mjacob 		 */
    268       1.1   mjacob 		if (IS_FC(isp)) {
    269  1.10.2.5  nathanw 			isp_get_notify_ack_fc(isp, nack_fcp,
    270  1.10.2.5  nathanw 			    (na_fcentry_t *)local);
    271  1.10.2.5  nathanw 			nack_fcp = (na_fcentry_t *)local;
    272       1.7   mjacob 			isp_prt(isp, ISP_LOGTDEBUG1,
    273       1.7   mjacob 			    "Notify Ack status=0x%x seqid 0x%x",
    274       1.7   mjacob 			    nack_fcp->na_status, nack_fcp->na_seqid);
    275       1.1   mjacob 		} else {
    276  1.10.2.5  nathanw 			isp_get_notify_ack(isp, nackp, (na_entry_t *)local);
    277  1.10.2.5  nathanw 			nackp = (na_entry_t *)local;
    278       1.7   mjacob 			isp_prt(isp, ISP_LOGTDEBUG1,
    279       1.7   mjacob 			    "Notify Ack event 0x%x status=0x%x seqid 0x%x",
    280       1.7   mjacob 			    nackp->na_event, nackp->na_status, nackp->na_seqid);
    281       1.1   mjacob 		}
    282       1.1   mjacob 		break;
    283       1.1   mjacob 	default:
    284       1.7   mjacob 		isp_prt(isp, ISP_LOGERR,
    285  1.10.2.5  nathanw 		    "Unknown entry type 0x%x in isp_target_notify", type);
    286  1.10.2.7  nathanw 		rval = 0;
    287       1.1   mjacob 		break;
    288       1.1   mjacob 	}
    289       1.1   mjacob #undef	atiop
    290       1.1   mjacob #undef	at2iop
    291       1.1   mjacob #undef	ctiop
    292       1.1   mjacob #undef	ct2iop
    293       1.1   mjacob #undef	lunenp
    294       1.1   mjacob #undef	inotp
    295       1.1   mjacob #undef	inot_fcp
    296       1.1   mjacob #undef	nackp
    297       1.1   mjacob #undef	nack_fcp
    298       1.1   mjacob #undef	hdrp
    299       1.1   mjacob 	return (rval);
    300       1.1   mjacob }
    301       1.1   mjacob 
    302       1.1   mjacob 
    303       1.1   mjacob /*
    304       1.1   mjacob  * Toggle (on/off) target mode for bus/target/lun
    305       1.1   mjacob  *
    306       1.1   mjacob  * The caller has checked for overlap and legality.
    307       1.1   mjacob  *
    308       1.1   mjacob  * Note that not all of bus, target or lun can be paid attention to.
    309       1.1   mjacob  * Note also that this action will not be complete until the f/w writes
    310       1.1   mjacob  * response entry. The caller is responsible for synchronizing this.
    311       1.1   mjacob  */
    312       1.1   mjacob int
    313  1.10.2.1  nathanw isp_lun_cmd(struct ispsoftc *isp, int cmd, int bus, int tgt, int lun,
    314  1.10.2.2  nathanw     int cmd_cnt, int inot_cnt, u_int32_t opaque)
    315       1.1   mjacob {
    316       1.1   mjacob 	lun_entry_t el;
    317  1.10.2.5  nathanw 	u_int16_t nxti, optr;
    318       1.1   mjacob 	void *outp;
    319       1.1   mjacob 
    320       1.1   mjacob 
    321       1.1   mjacob 	MEMZERO(&el, sizeof (el));
    322       1.3   mjacob 	if (IS_DUALBUS(isp)) {
    323       1.3   mjacob 		el.le_rsvd = (bus & 0x1) << 7;
    324       1.3   mjacob 	}
    325  1.10.2.2  nathanw 	el.le_cmd_count = cmd_cnt;
    326  1.10.2.2  nathanw 	el.le_in_count = inot_cnt;
    327       1.1   mjacob 	if (cmd == RQSTYPE_ENABLE_LUN) {
    328       1.1   mjacob 		if (IS_SCSI(isp)) {
    329       1.5   mjacob 			el.le_flags = LUN_TQAE|LUN_DISAD;
    330       1.1   mjacob 			el.le_cdb6len = 12;
    331       1.1   mjacob 			el.le_cdb7len = 12;
    332       1.1   mjacob 		}
    333       1.1   mjacob 	} else if (cmd == -RQSTYPE_ENABLE_LUN) {
    334       1.1   mjacob 		cmd = RQSTYPE_ENABLE_LUN;
    335       1.1   mjacob 		el.le_cmd_count = 0;
    336       1.1   mjacob 		el.le_in_count = 0;
    337       1.1   mjacob 	} else if (cmd == -RQSTYPE_MODIFY_LUN) {
    338       1.1   mjacob 		cmd = RQSTYPE_MODIFY_LUN;
    339       1.1   mjacob 		el.le_ops = LUN_CCDECR | LUN_INDECR;
    340       1.1   mjacob 	} else {
    341       1.1   mjacob 		el.le_ops = LUN_CCINCR | LUN_ININCR;
    342       1.1   mjacob 	}
    343       1.1   mjacob 	el.le_header.rqs_entry_type = cmd;
    344       1.1   mjacob 	el.le_header.rqs_entry_count = 1;
    345       1.1   mjacob 	el.le_reserved = opaque;
    346       1.1   mjacob 	if (IS_SCSI(isp)) {
    347       1.1   mjacob 		el.le_tgt = tgt;
    348       1.1   mjacob 		el.le_lun = lun;
    349  1.10.2.3  nathanw 	} else if ((FCPARAM(isp)->isp_fwattr & ISP_FW_ATTR_SCCLUN) == 0) {
    350       1.1   mjacob 		el.le_lun = lun;
    351       1.1   mjacob 	}
    352  1.10.2.1  nathanw 	el.le_timeout = 2;
    353       1.1   mjacob 
    354  1.10.2.5  nathanw 	if (isp_getrqentry(isp, &nxti, &optr, &outp)) {
    355  1.10.2.5  nathanw 		isp_prt(isp, ISP_LOGERR,
    356       1.7   mjacob 		    "Request Queue Overflow in isp_lun_cmd");
    357       1.1   mjacob 		return (-1);
    358       1.1   mjacob 	}
    359       1.1   mjacob 	ISP_TDQE(isp, "isp_lun_cmd", (int) optr, &el);
    360  1.10.2.5  nathanw 	isp_put_enable_lun(isp, &el, outp);
    361  1.10.2.5  nathanw 	ISP_ADD_REQUEST(isp, nxti);
    362       1.1   mjacob 	return (0);
    363       1.1   mjacob }
    364       1.1   mjacob 
    365       1.1   mjacob 
    366       1.1   mjacob int
    367  1.10.2.1  nathanw isp_target_put_entry(struct ispsoftc *isp, void *ap)
    368       1.1   mjacob {
    369       1.1   mjacob 	void *outp;
    370  1.10.2.5  nathanw 	u_int16_t nxti, optr;
    371       1.1   mjacob 	u_int8_t etype = ((isphdr_t *) ap)->rqs_entry_type;
    372       1.1   mjacob 
    373  1.10.2.5  nathanw 	if (isp_getrqentry(isp, &nxti, &optr, &outp)) {
    374       1.7   mjacob 		isp_prt(isp, ISP_LOGWARN,
    375       1.7   mjacob 		    "Request Queue Overflow in isp_target_put_entry");
    376       1.1   mjacob 		return (-1);
    377       1.1   mjacob 	}
    378       1.1   mjacob 	switch (etype) {
    379       1.1   mjacob 	case RQSTYPE_ATIO:
    380  1.10.2.5  nathanw 		isp_put_atio(isp, (at_entry_t *) ap, (at_entry_t *) outp);
    381       1.1   mjacob 		break;
    382       1.1   mjacob 	case RQSTYPE_ATIO2:
    383  1.10.2.5  nathanw 		isp_put_atio2(isp, (at2_entry_t *) ap, (at2_entry_t *) outp);
    384       1.1   mjacob 		break;
    385       1.1   mjacob 	case RQSTYPE_CTIO:
    386  1.10.2.5  nathanw 		isp_put_ctio(isp, (ct_entry_t *) ap, (ct_entry_t *) outp);
    387       1.1   mjacob 		break;
    388       1.1   mjacob 	case RQSTYPE_CTIO2:
    389  1.10.2.5  nathanw 		isp_put_ctio2(isp, (ct2_entry_t *) ap, (ct2_entry_t *) outp);
    390       1.1   mjacob 		break;
    391       1.1   mjacob 	default:
    392       1.7   mjacob 		isp_prt(isp, ISP_LOGERR,
    393       1.7   mjacob 		    "Unknown type 0x%x in isp_put_entry", etype);
    394       1.1   mjacob 		return (-1);
    395       1.1   mjacob 	}
    396       1.1   mjacob 
    397       1.1   mjacob 	ISP_TDQE(isp, "isp_target_put_entry", (int) optr, ap);;
    398  1.10.2.5  nathanw 	ISP_ADD_REQUEST(isp, nxti);
    399       1.1   mjacob 	return (0);
    400       1.1   mjacob }
    401       1.1   mjacob 
    402       1.1   mjacob int
    403  1.10.2.1  nathanw isp_target_put_atio(struct ispsoftc *isp, void *arg)
    404       1.1   mjacob {
    405       1.1   mjacob 	union {
    406       1.1   mjacob 		at_entry_t _atio;
    407       1.1   mjacob 		at2_entry_t _atio2;
    408       1.1   mjacob 	} atun;
    409       1.1   mjacob 
    410       1.1   mjacob 	MEMZERO(&atun, sizeof atun);
    411       1.1   mjacob 	if (IS_FC(isp)) {
    412  1.10.2.1  nathanw 		at2_entry_t *aep = arg;
    413       1.1   mjacob 		atun._atio2.at_header.rqs_entry_type = RQSTYPE_ATIO2;
    414       1.1   mjacob 		atun._atio2.at_header.rqs_entry_count = 1;
    415  1.10.2.3  nathanw 		if (FCPARAM(isp)->isp_fwattr & ISP_FW_ATTR_SCCLUN) {
    416  1.10.2.1  nathanw 			atun._atio2.at_scclun = (u_int16_t) aep->at_scclun;
    417       1.5   mjacob 		} else {
    418  1.10.2.3  nathanw 			atun._atio2.at_lun = (u_int8_t) aep->at_lun;
    419       1.5   mjacob 		}
    420       1.1   mjacob 		atun._atio2.at_status = CT_OK;
    421       1.1   mjacob 	} else {
    422  1.10.2.1  nathanw 		at_entry_t *aep = arg;
    423       1.1   mjacob 		atun._atio.at_header.rqs_entry_type = RQSTYPE_ATIO;
    424       1.1   mjacob 		atun._atio.at_header.rqs_entry_count = 1;
    425  1.10.2.1  nathanw 		atun._atio.at_handle = aep->at_handle;
    426  1.10.2.1  nathanw 		atun._atio.at_iid = aep->at_iid;
    427  1.10.2.1  nathanw 		atun._atio.at_tgt = aep->at_tgt;
    428  1.10.2.1  nathanw 		atun._atio.at_lun = aep->at_lun;
    429  1.10.2.1  nathanw 		atun._atio.at_tag_type = aep->at_tag_type;
    430  1.10.2.1  nathanw 		atun._atio.at_tag_val = aep->at_tag_val;
    431  1.10.2.1  nathanw 		atun._atio.at_status = (aep->at_flags & AT_TQAE);
    432  1.10.2.1  nathanw 		atun._atio.at_status |= CT_OK;
    433       1.1   mjacob 	}
    434       1.1   mjacob 	return (isp_target_put_entry(isp, &atun));
    435       1.1   mjacob }
    436       1.1   mjacob 
    437       1.1   mjacob /*
    438       1.1   mjacob  * Command completion- both for handling cases of no resources or
    439       1.1   mjacob  * no blackhole driver, or other cases where we have to, inline,
    440       1.1   mjacob  * finish the command sanely, or for normal command completion.
    441       1.1   mjacob  *
    442       1.1   mjacob  * The 'completion' code value has the scsi status byte in the low 8 bits.
    443       1.1   mjacob  * If status is a CHECK CONDITION and bit 8 is nonzero, then bits 12..15 have
    444       1.1   mjacob  * the sense key and  bits 16..23 have the ASCQ and bits 24..31 have the ASC
    445       1.1   mjacob  * values.
    446       1.1   mjacob  *
    447       1.1   mjacob  * NB: the key, asc, ascq, cannot be used for parallel SCSI as it doesn't
    448  1.10.2.1  nathanw  * NB: inline SCSI sense reporting. As such, we lose this information. XXX.
    449       1.1   mjacob  *
    450       1.1   mjacob  * For both parallel && fibre channel, we use the feature that does
    451       1.1   mjacob  * an automatic resource autoreplenish so we don't have then later do
    452       1.1   mjacob  * put of an atio to replenish the f/w's resource count.
    453       1.1   mjacob  */
    454       1.1   mjacob 
    455       1.1   mjacob int
    456  1.10.2.1  nathanw isp_endcmd(struct ispsoftc *isp, void *arg, u_int32_t code, u_int16_t hdl)
    457       1.1   mjacob {
    458       1.1   mjacob 	int sts;
    459       1.1   mjacob 	union {
    460       1.1   mjacob 		ct_entry_t _ctio;
    461       1.1   mjacob 		ct2_entry_t _ctio2;
    462       1.1   mjacob 	} un;
    463       1.1   mjacob 
    464       1.1   mjacob 	MEMZERO(&un, sizeof un);
    465       1.1   mjacob 	sts = code & 0xff;
    466       1.1   mjacob 
    467       1.1   mjacob 	if (IS_FC(isp)) {
    468       1.1   mjacob 		at2_entry_t *aep = arg;
    469       1.1   mjacob 		ct2_entry_t *cto = &un._ctio2;
    470       1.1   mjacob 
    471       1.1   mjacob 		cto->ct_header.rqs_entry_type = RQSTYPE_CTIO2;
    472       1.1   mjacob 		cto->ct_header.rqs_entry_count = 1;
    473       1.1   mjacob 		cto->ct_iid = aep->at_iid;
    474  1.10.2.3  nathanw 		if ((FCPARAM(isp)->isp_fwattr & ISP_FW_ATTR_SCCLUN) == 0) {
    475       1.5   mjacob 			cto->ct_lun = aep->at_lun;
    476       1.5   mjacob 		}
    477       1.1   mjacob 		cto->ct_rxid = aep->at_rxid;
    478       1.2   mjacob 		cto->rsp.m1.ct_scsi_status = sts & 0xff;
    479       1.1   mjacob 		cto->ct_flags = CT2_SENDSTATUS | CT2_NO_DATA | CT2_FLAG_MODE1;
    480       1.1   mjacob 		if (hdl == 0) {
    481       1.1   mjacob 			cto->ct_flags |= CT2_CCINCR;
    482       1.1   mjacob 		}
    483       1.1   mjacob 		if (aep->at_datalen) {
    484       1.1   mjacob 			cto->ct_resid = aep->at_datalen;
    485  1.10.2.2  nathanw 			cto->rsp.m1.ct_scsi_status |= CT2_DATA_UNDER;
    486       1.1   mjacob 		}
    487       1.2   mjacob 		if ((sts & 0xff) == SCSI_CHECK && (sts & ECMD_SVALID)) {
    488       1.1   mjacob 			cto->rsp.m1.ct_resp[0] = 0xf0;
    489       1.1   mjacob 			cto->rsp.m1.ct_resp[2] = (code >> 12) & 0xf;
    490       1.1   mjacob 			cto->rsp.m1.ct_resp[7] = 8;
    491       1.1   mjacob 			cto->rsp.m1.ct_resp[12] = (code >> 24) & 0xff;
    492       1.1   mjacob 			cto->rsp.m1.ct_resp[13] = (code >> 16) & 0xff;
    493       1.1   mjacob 			cto->rsp.m1.ct_senselen = 16;
    494  1.10.2.2  nathanw 			cto->rsp.m1.ct_scsi_status |= CT2_SNSLEN_VALID;
    495       1.1   mjacob 		}
    496  1.10.2.1  nathanw 		cto->ct_syshandle = hdl;
    497       1.1   mjacob 	} else {
    498       1.1   mjacob 		at_entry_t *aep = arg;
    499       1.1   mjacob 		ct_entry_t *cto = &un._ctio;
    500       1.1   mjacob 
    501       1.1   mjacob 		cto->ct_header.rqs_entry_type = RQSTYPE_CTIO;
    502       1.1   mjacob 		cto->ct_header.rqs_entry_count = 1;
    503  1.10.2.1  nathanw 		cto->ct_fwhandle = aep->at_handle;
    504       1.1   mjacob 		cto->ct_iid = aep->at_iid;
    505       1.1   mjacob 		cto->ct_tgt = aep->at_tgt;
    506       1.1   mjacob 		cto->ct_lun = aep->at_lun;
    507       1.1   mjacob 		cto->ct_tag_type = aep->at_tag_type;
    508       1.1   mjacob 		cto->ct_tag_val = aep->at_tag_val;
    509  1.10.2.1  nathanw 		if (aep->at_flags & AT_TQAE) {
    510  1.10.2.1  nathanw 			cto->ct_flags |= CT_TQAE;
    511  1.10.2.1  nathanw 		}
    512       1.1   mjacob 		cto->ct_flags = CT_SENDSTATUS | CT_NO_DATA;
    513       1.1   mjacob 		if (hdl == 0) {
    514       1.1   mjacob 			cto->ct_flags |= CT_CCINCR;
    515       1.1   mjacob 		}
    516       1.1   mjacob 		cto->ct_scsi_status = sts;
    517  1.10.2.1  nathanw 		cto->ct_syshandle = hdl;
    518       1.1   mjacob 	}
    519       1.1   mjacob 	return (isp_target_put_entry(isp, &un));
    520       1.1   mjacob }
    521       1.1   mjacob 
    522  1.10.2.7  nathanw int
    523  1.10.2.1  nathanw isp_target_async(struct ispsoftc *isp, int bus, int event)
    524       1.1   mjacob {
    525       1.1   mjacob 	tmd_event_t evt;
    526       1.1   mjacob 	tmd_msg_t msg;
    527       1.1   mjacob 
    528       1.1   mjacob 	switch (event) {
    529       1.1   mjacob 	/*
    530       1.1   mjacob 	 * These three we handle here to propagate an effective bus reset
    531       1.1   mjacob 	 * upstream, but these do not require any immediate notify actions
    532       1.1   mjacob 	 * so we return when done.
    533       1.1   mjacob 	 */
    534  1.10.2.3  nathanw 	case ASYNC_LIP_F8:
    535       1.1   mjacob 	case ASYNC_LIP_OCCURRED:
    536       1.1   mjacob 	case ASYNC_LOOP_UP:
    537       1.1   mjacob 	case ASYNC_LOOP_DOWN:
    538       1.1   mjacob 	case ASYNC_LOOP_RESET:
    539  1.10.2.3  nathanw 	case ASYNC_PTPMODE:
    540  1.10.2.3  nathanw 		/*
    541  1.10.2.3  nathanw 		 * These don't require any immediate notify actions. We used
    542  1.10.2.3  nathanw 		 * treat them like SCSI Bus Resets, but that was just plain
    543  1.10.2.3  nathanw 		 * wrong. Let the normal CTIO completion report what occurred.
    544  1.10.2.3  nathanw 		 */
    545  1.10.2.7  nathanw                 return (0);
    546  1.10.2.3  nathanw 
    547       1.1   mjacob 	case ASYNC_BUS_RESET:
    548       1.1   mjacob 	case ASYNC_TIMEOUT_RESET:
    549       1.1   mjacob 		if (IS_FC(isp)) {
    550  1.10.2.7  nathanw 			return (0); /* we'll be getting an inotify instead */
    551       1.1   mjacob 		}
    552       1.1   mjacob 		evt.ev_bus = bus;
    553       1.1   mjacob 		evt.ev_event = event;
    554       1.1   mjacob 		(void) isp_async(isp, ISPASYNC_TARGET_EVENT, &evt);
    555       1.1   mjacob 		break;
    556       1.1   mjacob 	case ASYNC_DEVICE_RESET:
    557       1.1   mjacob 		/*
    558       1.1   mjacob 		 * Bus Device Reset resets a specific target, so
    559       1.1   mjacob 		 * we pass this as a synthesized message.
    560       1.1   mjacob 		 */
    561       1.1   mjacob 		MEMZERO(&msg, sizeof msg);
    562       1.1   mjacob 		if (IS_FC(isp)) {
    563       1.8   mjacob 			msg.nt_iid = FCPARAM(isp)->isp_loopid;
    564       1.1   mjacob 		} else {
    565       1.8   mjacob 			msg.nt_iid = SDPARAM(isp)->isp_initiator_id;
    566       1.1   mjacob 		}
    567       1.1   mjacob 		msg.nt_bus = bus;
    568       1.1   mjacob 		msg.nt_msg[0] = MSG_BUS_DEV_RESET;
    569       1.1   mjacob 		(void) isp_async(isp, ISPASYNC_TARGET_MESSAGE, &msg);
    570       1.1   mjacob 		break;
    571       1.1   mjacob 	default:
    572       1.7   mjacob 		isp_prt(isp, ISP_LOGERR,
    573       1.7   mjacob 		    "isp_target_async: unknown event 0x%x", event);
    574       1.1   mjacob 		break;
    575       1.1   mjacob 	}
    576       1.6   mjacob 	if (isp->isp_state == ISP_RUNSTATE)
    577       1.6   mjacob 		isp_notify_ack(isp, NULL);
    578  1.10.2.7  nathanw 	return(0);
    579       1.1   mjacob }
    580       1.1   mjacob 
    581       1.1   mjacob 
    582       1.1   mjacob /*
    583       1.1   mjacob  * Process a received message.
    584       1.1   mjacob  * The ISP firmware can handle most messages, there are only
    585       1.1   mjacob  * a few that we need to deal with:
    586       1.1   mjacob  * - abort: clean up the current command
    587       1.1   mjacob  * - abort tag and clear queue
    588       1.1   mjacob  */
    589       1.1   mjacob 
    590       1.1   mjacob static void
    591  1.10.2.1  nathanw isp_got_msg(struct ispsoftc *isp, int bus, in_entry_t *inp)
    592       1.1   mjacob {
    593       1.1   mjacob 	u_int8_t status = inp->in_status & ~QLTM_SVALID;
    594       1.1   mjacob 
    595       1.1   mjacob 	if (status == IN_IDE_RECEIVED || status == IN_MSG_RECEIVED) {
    596       1.1   mjacob 		tmd_msg_t msg;
    597       1.1   mjacob 
    598       1.1   mjacob 		MEMZERO(&msg, sizeof (msg));
    599       1.1   mjacob 		msg.nt_bus = bus;
    600       1.1   mjacob 		msg.nt_iid = inp->in_iid;
    601       1.1   mjacob 		msg.nt_tgt = inp->in_tgt;
    602       1.1   mjacob 		msg.nt_lun = inp->in_lun;
    603       1.1   mjacob 		msg.nt_tagtype = inp->in_tag_type;
    604       1.1   mjacob 		msg.nt_tagval = inp->in_tag_val;
    605       1.1   mjacob 		MEMCPY(msg.nt_msg, inp->in_msg, IN_MSGLEN);
    606       1.1   mjacob 		(void) isp_async(isp, ISPASYNC_TARGET_MESSAGE, &msg);
    607       1.1   mjacob 	} else {
    608       1.7   mjacob 		isp_prt(isp, ISP_LOGERR,
    609       1.7   mjacob 		    "unknown immediate notify status 0x%x", inp->in_status);
    610       1.1   mjacob 	}
    611       1.1   mjacob }
    612       1.1   mjacob 
    613       1.1   mjacob /*
    614       1.1   mjacob  * Synthesize a message from the task management flags in a FCP_CMND_IU.
    615       1.1   mjacob  */
    616       1.1   mjacob static void
    617  1.10.2.1  nathanw isp_got_msg_fc(struct ispsoftc *isp, int bus, in_fcentry_t *inp)
    618       1.1   mjacob {
    619  1.10.2.3  nathanw 	int lun;
    620  1.10.2.1  nathanw 	static const char f1[] = "%s from iid %d lun %d seq 0x%x";
    621  1.10.2.1  nathanw 	static const char f2[] =
    622       1.7   mjacob 	    "unknown %s 0x%x lun %d iid %d task flags 0x%x seq 0x%x\n";
    623       1.1   mjacob 
    624  1.10.2.3  nathanw 	if (FCPARAM(isp)->isp_fwattr & ISP_FW_ATTR_SCCLUN) {
    625  1.10.2.3  nathanw 		lun = inp->in_scclun;
    626  1.10.2.3  nathanw 	} else {
    627  1.10.2.3  nathanw 		lun = inp->in_lun;
    628  1.10.2.3  nathanw 	}
    629  1.10.2.3  nathanw 
    630       1.1   mjacob 	if (inp->in_status != IN_MSG_RECEIVED) {
    631       1.7   mjacob 		isp_prt(isp, ISP_LOGINFO, f2, "immediate notify status",
    632  1.10.2.3  nathanw 		    inp->in_status, lun, inp->in_iid,
    633       1.1   mjacob 		    inp->in_task_flags,  inp->in_seqid);
    634       1.1   mjacob 	} else {
    635       1.1   mjacob 		tmd_msg_t msg;
    636       1.1   mjacob 
    637       1.1   mjacob 		MEMZERO(&msg, sizeof (msg));
    638       1.1   mjacob 		msg.nt_bus = bus;
    639       1.1   mjacob 		msg.nt_iid = inp->in_iid;
    640       1.1   mjacob 		msg.nt_tagval = inp->in_seqid;
    641  1.10.2.3  nathanw 		msg.nt_lun = lun;
    642       1.1   mjacob 
    643       1.1   mjacob 		if (inp->in_task_flags & TASK_FLAGS_ABORT_TASK) {
    644       1.7   mjacob 			isp_prt(isp, ISP_LOGINFO, f1, "ABORT TASK",
    645  1.10.2.3  nathanw 			    inp->in_iid, msg.nt_lun, inp->in_seqid);
    646       1.1   mjacob 			msg.nt_msg[0] = MSG_ABORT_TAG;
    647       1.1   mjacob 		} else if (inp->in_task_flags & TASK_FLAGS_CLEAR_TASK_SET) {
    648       1.7   mjacob 			isp_prt(isp, ISP_LOGINFO, f1, "CLEAR TASK SET",
    649  1.10.2.3  nathanw 			    inp->in_iid, msg.nt_lun, inp->in_seqid);
    650       1.1   mjacob 			msg.nt_msg[0] = MSG_CLEAR_QUEUE;
    651       1.1   mjacob 		} else if (inp->in_task_flags & TASK_FLAGS_TARGET_RESET) {
    652       1.7   mjacob 			isp_prt(isp, ISP_LOGINFO, f1, "TARGET RESET",
    653  1.10.2.3  nathanw 			    inp->in_iid, msg.nt_lun, inp->in_seqid);
    654       1.1   mjacob 			msg.nt_msg[0] = MSG_BUS_DEV_RESET;
    655       1.1   mjacob 		} else if (inp->in_task_flags & TASK_FLAGS_CLEAR_ACA) {
    656       1.7   mjacob 			isp_prt(isp, ISP_LOGINFO, f1, "CLEAR ACA",
    657  1.10.2.3  nathanw 			    inp->in_iid, msg.nt_lun, inp->in_seqid);
    658       1.1   mjacob 			/* ???? */
    659       1.1   mjacob 			msg.nt_msg[0] = MSG_REL_RECOVERY;
    660       1.1   mjacob 		} else if (inp->in_task_flags & TASK_FLAGS_TERMINATE_TASK) {
    661       1.7   mjacob 			isp_prt(isp, ISP_LOGINFO, f1, "TERMINATE TASK",
    662  1.10.2.3  nathanw 			    inp->in_iid, msg.nt_lun, inp->in_seqid);
    663       1.1   mjacob 			msg.nt_msg[0] = MSG_TERM_IO_PROC;
    664       1.1   mjacob 		} else {
    665       1.7   mjacob 			isp_prt(isp, ISP_LOGWARN, f2, "task flag",
    666  1.10.2.3  nathanw 			    inp->in_status, msg.nt_lun, inp->in_iid,
    667       1.1   mjacob 			    inp->in_task_flags,  inp->in_seqid);
    668       1.1   mjacob 		}
    669       1.1   mjacob 		if (msg.nt_msg[0]) {
    670       1.1   mjacob 			(void) isp_async(isp, ISPASYNC_TARGET_MESSAGE, &msg);
    671       1.1   mjacob 		}
    672       1.1   mjacob 	}
    673       1.1   mjacob }
    674       1.1   mjacob 
    675       1.1   mjacob static void
    676  1.10.2.1  nathanw isp_notify_ack(struct ispsoftc *isp, void *arg)
    677       1.1   mjacob {
    678       1.1   mjacob 	char storage[QENTRY_LEN];
    679  1.10.2.5  nathanw 	u_int16_t nxti, optr;
    680       1.1   mjacob 	void *outp;
    681       1.1   mjacob 
    682  1.10.2.5  nathanw 	if (isp_getrqentry(isp, &nxti, &optr, &outp)) {
    683       1.7   mjacob 		isp_prt(isp, ISP_LOGWARN,
    684       1.7   mjacob 		    "Request Queue Overflow For isp_notify_ack");
    685       1.1   mjacob 		return;
    686       1.1   mjacob 	}
    687       1.1   mjacob 
    688       1.2   mjacob 	MEMZERO(storage, QENTRY_LEN);
    689       1.1   mjacob 
    690       1.1   mjacob 	if (IS_FC(isp)) {
    691       1.1   mjacob 		na_fcentry_t *na = (na_fcentry_t *) storage;
    692       1.1   mjacob 		if (arg) {
    693       1.1   mjacob 			in_fcentry_t *inp = arg;
    694       1.2   mjacob 			MEMCPY(storage, arg, sizeof (isphdr_t));
    695       1.1   mjacob 			na->na_iid = inp->in_iid;
    696  1.10.2.3  nathanw 			if (FCPARAM(isp)->isp_fwattr & ISP_FW_ATTR_SCCLUN) {
    697       1.5   mjacob 				na->na_lun = inp->in_scclun;
    698       1.5   mjacob 			} else {
    699       1.5   mjacob 				na->na_lun = inp->in_lun;
    700       1.5   mjacob 			}
    701       1.1   mjacob 			na->na_task_flags = inp->in_task_flags;
    702       1.1   mjacob 			na->na_seqid = inp->in_seqid;
    703       1.1   mjacob 			na->na_flags = NAFC_RCOUNT;
    704  1.10.2.6  nathanw 			na->na_status = inp->in_status;
    705       1.1   mjacob 			if (inp->in_status == IN_RESET) {
    706       1.1   mjacob 				na->na_flags |= NAFC_RST_CLRD;
    707       1.1   mjacob 			}
    708       1.1   mjacob 		} else {
    709       1.1   mjacob 			na->na_flags = NAFC_RST_CLRD;
    710       1.1   mjacob 		}
    711       1.4       he 		na->na_header.rqs_entry_type = RQSTYPE_NOTIFY_ACK;
    712       1.4       he 		na->na_header.rqs_entry_count = 1;
    713  1.10.2.5  nathanw 		isp_put_notify_ack_fc(isp, na, (na_fcentry_t *)outp);
    714       1.1   mjacob 	} else {
    715       1.1   mjacob 		na_entry_t *na = (na_entry_t *) storage;
    716       1.1   mjacob 		if (arg) {
    717       1.1   mjacob 			in_entry_t *inp = arg;
    718       1.2   mjacob 			MEMCPY(storage, arg, sizeof (isphdr_t));
    719       1.1   mjacob 			na->na_iid = inp->in_iid;
    720       1.1   mjacob 			na->na_lun = inp->in_lun;
    721       1.1   mjacob 			na->na_tgt = inp->in_tgt;
    722       1.1   mjacob 			na->na_seqid = inp->in_seqid;
    723       1.1   mjacob 			if (inp->in_status == IN_RESET) {
    724       1.4       he 				na->na_event = NA_RST_CLRD;
    725       1.1   mjacob 			}
    726       1.1   mjacob 		} else {
    727       1.4       he 			na->na_event = NA_RST_CLRD;
    728       1.1   mjacob 		}
    729       1.4       he 		na->na_header.rqs_entry_type = RQSTYPE_NOTIFY_ACK;
    730       1.4       he 		na->na_header.rqs_entry_count = 1;
    731  1.10.2.5  nathanw 		isp_put_notify_ack(isp, na, (na_entry_t *)outp);
    732       1.1   mjacob 	}
    733       1.1   mjacob 	ISP_TDQE(isp, "isp_notify_ack", (int) optr, storage);
    734  1.10.2.5  nathanw 	ISP_ADD_REQUEST(isp, nxti);
    735       1.1   mjacob }
    736       1.1   mjacob 
    737       1.1   mjacob static void
    738  1.10.2.1  nathanw isp_handle_atio(struct ispsoftc *isp, at_entry_t *aep)
    739       1.1   mjacob {
    740       1.1   mjacob 	int lun;
    741       1.1   mjacob 	lun = aep->at_lun;
    742       1.1   mjacob 	/*
    743       1.1   mjacob 	 * The firmware status (except for the QLTM_SVALID bit) indicates
    744       1.1   mjacob 	 * why this ATIO was sent to us.
    745       1.1   mjacob 	 *
    746       1.1   mjacob 	 * If QLTM_SVALID is set, the firware has recommended Sense Data.
    747       1.1   mjacob 	 *
    748       1.1   mjacob 	 * If the DISCONNECTS DISABLED bit is set in the flags field,
    749       1.1   mjacob 	 * we're still connected on the SCSI bus - i.e. the initiator
    750       1.1   mjacob 	 * did not set DiscPriv in the identify message. We don't care
    751       1.1   mjacob 	 * about this so it's ignored.
    752       1.1   mjacob 	 */
    753       1.1   mjacob 
    754       1.1   mjacob 	switch(aep->at_status & ~QLTM_SVALID) {
    755       1.1   mjacob 	case AT_PATH_INVALID:
    756       1.1   mjacob 		/*
    757       1.1   mjacob 		 * ATIO rejected by the firmware due to disabled lun.
    758       1.1   mjacob 		 */
    759       1.7   mjacob 		isp_prt(isp, ISP_LOGERR,
    760       1.7   mjacob 		    "rejected ATIO for disabled lun %d", lun);
    761       1.1   mjacob 		break;
    762       1.1   mjacob 	case AT_NOCAP:
    763       1.1   mjacob 		/*
    764       1.1   mjacob 		 * Requested Capability not available
    765       1.1   mjacob 		 * We sent an ATIO that overflowed the firmware's
    766       1.1   mjacob 		 * command resource count.
    767       1.1   mjacob 		 */
    768       1.7   mjacob 		isp_prt(isp, ISP_LOGERR,
    769       1.7   mjacob 		    "rejected ATIO for lun %d because of command count"
    770       1.7   mjacob 		    " overflow", lun);
    771       1.1   mjacob 		break;
    772       1.1   mjacob 
    773       1.1   mjacob 	case AT_BDR_MSG:
    774       1.1   mjacob 		/*
    775       1.1   mjacob 		 * If we send an ATIO to the firmware to increment
    776       1.1   mjacob 		 * its command resource count, and the firmware is
    777       1.1   mjacob 		 * recovering from a Bus Device Reset, it returns
    778       1.1   mjacob 		 * the ATIO with this status. We set the command
    779  1.10.2.5  nathanw 		 * resource count in the Enable Lun entry and do
    780       1.1   mjacob 		 * not increment it. Therefore we should never get
    781       1.1   mjacob 		 * this status here.
    782       1.1   mjacob 		 */
    783  1.10.2.3  nathanw 		isp_prt(isp, ISP_LOGERR, atiocope, lun,
    784  1.10.2.3  nathanw 		    GET_BUS_VAL(aep->at_iid));
    785       1.1   mjacob 		break;
    786       1.1   mjacob 
    787       1.1   mjacob 	case AT_CDB:		/* Got a CDB */
    788       1.1   mjacob 	case AT_PHASE_ERROR:	/* Bus Phase Sequence Error */
    789       1.1   mjacob 		/*
    790       1.1   mjacob 		 * Punt to platform specific layer.
    791       1.1   mjacob 		 */
    792       1.1   mjacob 		(void) isp_async(isp, ISPASYNC_TARGET_ACTION, aep);
    793       1.1   mjacob 		break;
    794       1.1   mjacob 
    795       1.1   mjacob 	case AT_RESET:
    796       1.1   mjacob 		/*
    797       1.1   mjacob 		 * A bus reset came along an blew away this command. Why
    798       1.1   mjacob 		 * they do this in addition the async event code stuff,
    799       1.1   mjacob 		 * I dunno.
    800       1.1   mjacob 		 *
    801       1.1   mjacob 		 * Ignore it because the async event will clear things
    802       1.1   mjacob 		 * up for us.
    803       1.1   mjacob 		 */
    804  1.10.2.3  nathanw 		isp_prt(isp, ISP_LOGWARN, atior, lun,
    805  1.10.2.3  nathanw 		    GET_IID_VAL(aep->at_iid), GET_BUS_VAL(aep->at_iid));
    806       1.1   mjacob 		break;
    807       1.1   mjacob 
    808       1.1   mjacob 
    809       1.1   mjacob 	default:
    810       1.7   mjacob 		isp_prt(isp, ISP_LOGERR,
    811       1.7   mjacob 		    "Unknown ATIO status 0x%x from initiator %d for lun %d",
    812       1.7   mjacob 		    aep->at_status, aep->at_iid, lun);
    813  1.10.2.1  nathanw 		(void) isp_target_put_atio(isp, aep);
    814       1.1   mjacob 		break;
    815       1.1   mjacob 	}
    816       1.1   mjacob }
    817       1.1   mjacob 
    818       1.1   mjacob static void
    819  1.10.2.1  nathanw isp_handle_atio2(struct ispsoftc *isp, at2_entry_t *aep)
    820       1.1   mjacob {
    821       1.1   mjacob 	int lun;
    822       1.5   mjacob 
    823  1.10.2.3  nathanw 	if (FCPARAM(isp)->isp_fwattr & ISP_FW_ATTR_SCCLUN) {
    824       1.5   mjacob 		lun = aep->at_scclun;
    825       1.5   mjacob 	} else {
    826       1.5   mjacob 		lun = aep->at_lun;
    827       1.5   mjacob 	}
    828       1.5   mjacob 
    829       1.1   mjacob 	/*
    830       1.1   mjacob 	 * The firmware status (except for the QLTM_SVALID bit) indicates
    831       1.1   mjacob 	 * why this ATIO was sent to us.
    832       1.1   mjacob 	 *
    833       1.1   mjacob 	 * If QLTM_SVALID is set, the firware has recommended Sense Data.
    834       1.1   mjacob 	 *
    835       1.1   mjacob 	 * If the DISCONNECTS DISABLED bit is set in the flags field,
    836       1.1   mjacob 	 * we're still connected on the SCSI bus - i.e. the initiator
    837       1.1   mjacob 	 * did not set DiscPriv in the identify message. We don't care
    838       1.1   mjacob 	 * about this so it's ignored.
    839       1.1   mjacob 	 */
    840       1.1   mjacob 
    841       1.1   mjacob 	switch(aep->at_status & ~QLTM_SVALID) {
    842       1.1   mjacob 	case AT_PATH_INVALID:
    843       1.1   mjacob 		/*
    844       1.1   mjacob 		 * ATIO rejected by the firmware due to disabled lun.
    845       1.1   mjacob 		 */
    846       1.7   mjacob 		isp_prt(isp, ISP_LOGERR,
    847       1.7   mjacob 		    "rejected ATIO2 for disabled lun %d", lun);
    848       1.1   mjacob 		break;
    849       1.1   mjacob 	case AT_NOCAP:
    850       1.1   mjacob 		/*
    851       1.1   mjacob 		 * Requested Capability not available
    852       1.1   mjacob 		 * We sent an ATIO that overflowed the firmware's
    853       1.1   mjacob 		 * command resource count.
    854       1.1   mjacob 		 */
    855       1.7   mjacob 		isp_prt(isp, ISP_LOGERR,
    856       1.7   mjacob 		    "rejected ATIO2 for lun %d- command count overflow", lun);
    857       1.1   mjacob 		break;
    858       1.1   mjacob 
    859       1.1   mjacob 	case AT_BDR_MSG:
    860       1.1   mjacob 		/*
    861       1.1   mjacob 		 * If we send an ATIO to the firmware to increment
    862       1.1   mjacob 		 * its command resource count, and the firmware is
    863       1.1   mjacob 		 * recovering from a Bus Device Reset, it returns
    864       1.1   mjacob 		 * the ATIO with this status. We set the command
    865       1.1   mjacob 		 * resource count in the Enable Lun entry and no
    866       1.1   mjacob 		 * not increment it. Therefore we should never get
    867       1.1   mjacob 		 * this status here.
    868       1.1   mjacob 		 */
    869  1.10.2.3  nathanw 		isp_prt(isp, ISP_LOGERR, atiocope, lun, 0);
    870       1.1   mjacob 		break;
    871       1.1   mjacob 
    872       1.1   mjacob 	case AT_CDB:		/* Got a CDB */
    873       1.1   mjacob 		/*
    874       1.1   mjacob 		 * Punt to platform specific layer.
    875       1.1   mjacob 		 */
    876       1.1   mjacob 		(void) isp_async(isp, ISPASYNC_TARGET_ACTION, aep);
    877       1.1   mjacob 		break;
    878       1.1   mjacob 
    879       1.1   mjacob 	case AT_RESET:
    880       1.1   mjacob 		/*
    881       1.1   mjacob 		 * A bus reset came along an blew away this command. Why
    882       1.1   mjacob 		 * they do this in addition the async event code stuff,
    883       1.1   mjacob 		 * I dunno.
    884       1.1   mjacob 		 *
    885       1.1   mjacob 		 * Ignore it because the async event will clear things
    886       1.1   mjacob 		 * up for us.
    887       1.1   mjacob 		 */
    888  1.10.2.3  nathanw 		isp_prt(isp, ISP_LOGERR, atior, lun, aep->at_iid, 0);
    889       1.1   mjacob 		break;
    890       1.1   mjacob 
    891       1.1   mjacob 
    892       1.1   mjacob 	default:
    893       1.7   mjacob 		isp_prt(isp, ISP_LOGERR,
    894       1.7   mjacob 		    "Unknown ATIO2 status 0x%x from initiator %d for lun %d",
    895       1.7   mjacob 		    aep->at_status, aep->at_iid, lun);
    896  1.10.2.1  nathanw 		(void) isp_target_put_atio(isp, aep);
    897       1.1   mjacob 		break;
    898       1.1   mjacob 	}
    899       1.1   mjacob }
    900       1.1   mjacob 
    901       1.1   mjacob static void
    902  1.10.2.1  nathanw isp_handle_ctio(struct ispsoftc *isp, ct_entry_t *ct)
    903       1.1   mjacob {
    904  1.10.2.1  nathanw 	void *xs;
    905       1.7   mjacob 	int pl = ISP_LOGTDEBUG2;
    906       1.1   mjacob 	char *fmsg = NULL;
    907       1.1   mjacob 
    908  1.10.2.1  nathanw 	if (ct->ct_syshandle) {
    909  1.10.2.1  nathanw 		xs = isp_find_xs(isp, ct->ct_syshandle);
    910       1.1   mjacob 		if (xs == NULL)
    911       1.7   mjacob 			pl = ISP_LOGALL;
    912       1.1   mjacob 	} else {
    913       1.1   mjacob 		xs = NULL;
    914       1.1   mjacob 	}
    915       1.1   mjacob 
    916       1.1   mjacob 	switch(ct->ct_status & ~QLTM_SVALID) {
    917       1.1   mjacob 	case CT_OK:
    918       1.1   mjacob 		/*
    919       1.1   mjacob 		 * There are generally 3 possibilities as to why we'd get
    920       1.1   mjacob 		 * this condition:
    921       1.1   mjacob 		 * 	We disconnected after receiving a CDB.
    922       1.1   mjacob 		 * 	We sent or received data.
    923       1.1   mjacob 		 * 	We sent status & command complete.
    924       1.1   mjacob 		 */
    925       1.1   mjacob 
    926       1.4       he 		if (ct->ct_flags & CT_SENDSTATUS) {
    927       1.4       he 			break;
    928       1.4       he 		} else if ((ct->ct_flags & CT_DATAMASK) == CT_NO_DATA) {
    929       1.1   mjacob 			/*
    930       1.1   mjacob 			 * Nothing to do in this case.
    931       1.1   mjacob 			 */
    932       1.7   mjacob 			isp_prt(isp, pl, "CTIO- iid %d disconnected OK",
    933       1.7   mjacob 			    ct->ct_iid);
    934       1.1   mjacob 			return;
    935       1.1   mjacob 		}
    936       1.1   mjacob 		break;
    937       1.1   mjacob 
    938       1.1   mjacob 	case CT_BDR_MSG:
    939       1.1   mjacob 		/*
    940       1.1   mjacob 		 * Bus Device Reset message received or the SCSI Bus has
    941       1.1   mjacob 		 * been Reset; the firmware has gone to Bus Free.
    942       1.1   mjacob 		 *
    943       1.1   mjacob 		 * The firmware generates an async mailbox interupt to
    944       1.1   mjacob 		 * notify us of this and returns outstanding CTIOs with this
    945       1.1   mjacob 		 * status. These CTIOs are handled in that same way as
    946       1.1   mjacob 		 * CT_ABORTED ones, so just fall through here.
    947       1.1   mjacob 		 */
    948       1.1   mjacob 		fmsg = "Bus Device Reset";
    949       1.1   mjacob 		/*FALLTHROUGH*/
    950       1.1   mjacob 	case CT_RESET:
    951       1.1   mjacob 		if (fmsg == NULL)
    952       1.1   mjacob 			fmsg = "Bus Reset";
    953       1.1   mjacob 		/*FALLTHROUGH*/
    954       1.1   mjacob 	case CT_ABORTED:
    955       1.1   mjacob 		/*
    956       1.1   mjacob 		 * When an Abort message is received the firmware goes to
    957       1.1   mjacob 		 * Bus Free and returns all outstanding CTIOs with the status
    958       1.1   mjacob 		 * set, then sends us an Immediate Notify entry.
    959       1.1   mjacob 		 */
    960       1.1   mjacob 		if (fmsg == NULL)
    961  1.10.2.3  nathanw 			fmsg = "ABORT TAG message sent by Initiator";
    962       1.1   mjacob 
    963       1.7   mjacob 		isp_prt(isp, ISP_LOGWARN, "CTIO destroyed by %s", fmsg);
    964       1.1   mjacob 		break;
    965       1.1   mjacob 
    966       1.1   mjacob 	case CT_INVAL:
    967       1.1   mjacob 		/*
    968       1.1   mjacob 		 * CTIO rejected by the firmware due to disabled lun.
    969       1.1   mjacob 		 * "Cannot Happen".
    970       1.1   mjacob 		 */
    971       1.7   mjacob 		isp_prt(isp, ISP_LOGERR,
    972       1.7   mjacob 		    "Firmware rejected CTIO for disabled lun %d",
    973       1.7   mjacob 		    ct->ct_lun);
    974       1.1   mjacob 		break;
    975       1.1   mjacob 
    976       1.1   mjacob 	case CT_NOPATH:
    977       1.1   mjacob 		/*
    978       1.1   mjacob 		 * CTIO rejected by the firmware due "no path for the
    979       1.1   mjacob 		 * nondisconnecting nexus specified". This means that
    980       1.1   mjacob 		 * we tried to access the bus while a non-disconnecting
    981       1.1   mjacob 		 * command is in process.
    982       1.1   mjacob 		 */
    983       1.7   mjacob 		isp_prt(isp, ISP_LOGERR,
    984       1.7   mjacob 		    "Firmware rejected CTIO for bad nexus %d/%d/%d",
    985       1.7   mjacob 		    ct->ct_iid, ct->ct_tgt, ct->ct_lun);
    986       1.1   mjacob 		break;
    987       1.1   mjacob 
    988       1.1   mjacob 	case CT_RSELTMO:
    989       1.1   mjacob 		fmsg = "Reselection";
    990       1.1   mjacob 		/*FALLTHROUGH*/
    991       1.1   mjacob 	case CT_TIMEOUT:
    992       1.1   mjacob 		if (fmsg == NULL)
    993       1.1   mjacob 			fmsg = "Command";
    994       1.7   mjacob 		isp_prt(isp, ISP_LOGERR, "Firmware timed out on %s", fmsg);
    995       1.1   mjacob 		break;
    996       1.1   mjacob 
    997  1.10.2.1  nathanw 	case	CT_PANIC:
    998  1.10.2.1  nathanw 		if (fmsg == NULL)
    999  1.10.2.1  nathanw 			fmsg = "Unrecoverable Error";
   1000  1.10.2.1  nathanw 		/*FALLTHROUGH*/
   1001       1.1   mjacob 	case CT_ERR:
   1002  1.10.2.1  nathanw 		if (fmsg == NULL)
   1003  1.10.2.1  nathanw 			fmsg = "Completed with Error";
   1004       1.1   mjacob 		/*FALLTHROUGH*/
   1005       1.1   mjacob 	case CT_PHASE_ERROR:
   1006       1.1   mjacob 		if (fmsg == NULL)
   1007       1.1   mjacob 			fmsg = "Phase Sequence Error";
   1008       1.1   mjacob 		/*FALLTHROUGH*/
   1009       1.1   mjacob 	case CT_TERMINATED:
   1010       1.1   mjacob 		if (fmsg == NULL)
   1011       1.1   mjacob 			fmsg = "terminated by TERMINATE TRANSFER";
   1012       1.1   mjacob 		/*FALLTHROUGH*/
   1013       1.1   mjacob 	case CT_NOACK:
   1014       1.1   mjacob 		if (fmsg == NULL)
   1015       1.1   mjacob 			fmsg = "unacknowledged Immediate Notify pending";
   1016       1.7   mjacob 		isp_prt(isp, ISP_LOGERR, "CTIO returned by f/w- %s", fmsg);
   1017       1.1   mjacob 		break;
   1018       1.1   mjacob 	default:
   1019       1.7   mjacob 		isp_prt(isp, ISP_LOGERR, "Unknown CTIO status 0x%x",
   1020       1.1   mjacob 		    ct->ct_status & ~QLTM_SVALID);
   1021       1.1   mjacob 		break;
   1022       1.1   mjacob 	}
   1023       1.1   mjacob 
   1024       1.1   mjacob 	if (xs == NULL) {
   1025       1.1   mjacob 		/*
   1026       1.1   mjacob 		 * There may be more than one CTIO for a data transfer,
   1027       1.1   mjacob 		 * or this may be a status CTIO we're not monitoring.
   1028       1.1   mjacob 		 *
   1029       1.1   mjacob 		 * The assumption is that they'll all be returned in the
   1030       1.1   mjacob 		 * order we got them.
   1031       1.1   mjacob 		 */
   1032  1.10.2.1  nathanw 		if (ct->ct_syshandle == 0) {
   1033       1.1   mjacob 			if ((ct->ct_flags & CT_SENDSTATUS) == 0) {
   1034       1.7   mjacob 				isp_prt(isp, pl,
   1035       1.7   mjacob 				    "intermediate CTIO completed ok");
   1036       1.1   mjacob 			} else {
   1037       1.7   mjacob 				isp_prt(isp, pl,
   1038       1.7   mjacob 				    "unmonitored CTIO completed ok");
   1039       1.1   mjacob 			}
   1040       1.1   mjacob 		} else {
   1041       1.7   mjacob 			isp_prt(isp, pl,
   1042       1.7   mjacob 			    "NO xs for CTIO (handle 0x%x) status 0x%x",
   1043  1.10.2.1  nathanw 			    ct->ct_syshandle, ct->ct_status & ~QLTM_SVALID);
   1044       1.1   mjacob 		}
   1045       1.1   mjacob 	} else {
   1046  1.10.2.2  nathanw 		/*
   1047  1.10.2.2  nathanw 		 * Final CTIO completed. Release DMA resources and
   1048  1.10.2.2  nathanw 		 * notify platform dependent layers.
   1049  1.10.2.2  nathanw 		 */
   1050  1.10.2.2  nathanw 		if ((ct->ct_flags & CT_DATAMASK) != CT_NO_DATA) {
   1051  1.10.2.1  nathanw 			ISP_DMAFREE(isp, xs, ct->ct_syshandle);
   1052       1.1   mjacob 		}
   1053  1.10.2.1  nathanw 		isp_prt(isp, pl, "final CTIO complete");
   1054       1.1   mjacob 		/*
   1055       1.1   mjacob 		 * The platform layer will destroy the handle if appropriate.
   1056       1.1   mjacob 		 */
   1057  1.10.2.1  nathanw 		(void) isp_async(isp, ISPASYNC_TARGET_ACTION, ct);
   1058       1.1   mjacob 	}
   1059       1.1   mjacob }
   1060       1.1   mjacob 
   1061       1.1   mjacob static void
   1062  1.10.2.1  nathanw isp_handle_ctio2(struct ispsoftc *isp, ct2_entry_t *ct)
   1063       1.1   mjacob {
   1064       1.7   mjacob 	XS_T *xs;
   1065       1.7   mjacob 	int pl = ISP_LOGTDEBUG2;
   1066       1.1   mjacob 	char *fmsg = NULL;
   1067       1.1   mjacob 
   1068  1.10.2.1  nathanw 	if (ct->ct_syshandle) {
   1069  1.10.2.1  nathanw 		xs = isp_find_xs(isp, ct->ct_syshandle);
   1070       1.1   mjacob 		if (xs == NULL)
   1071       1.7   mjacob 			pl = ISP_LOGALL;
   1072       1.1   mjacob 	} else {
   1073       1.1   mjacob 		xs = NULL;
   1074       1.1   mjacob 	}
   1075       1.1   mjacob 
   1076       1.1   mjacob 	switch(ct->ct_status & ~QLTM_SVALID) {
   1077  1.10.2.2  nathanw 	case CT_BUS_ERROR:
   1078  1.10.2.2  nathanw 		isp_prt(isp, ISP_LOGERR, "PCI DMA Bus Error");
   1079  1.10.2.2  nathanw 		/* FALL Through */
   1080  1.10.2.2  nathanw 	case CT_DATA_OVER:
   1081  1.10.2.2  nathanw 	case CT_DATA_UNDER:
   1082       1.1   mjacob 	case CT_OK:
   1083       1.1   mjacob 		/*
   1084       1.1   mjacob 		 * There are generally 2 possibilities as to why we'd get
   1085       1.1   mjacob 		 * this condition:
   1086       1.1   mjacob 		 * 	We sent or received data.
   1087       1.1   mjacob 		 * 	We sent status & command complete.
   1088       1.1   mjacob 		 */
   1089       1.1   mjacob 
   1090       1.1   mjacob 		break;
   1091       1.1   mjacob 
   1092       1.1   mjacob 	case CT_BDR_MSG:
   1093       1.1   mjacob 		/*
   1094  1.10.2.2  nathanw 		 * Target Reset function received.
   1095       1.1   mjacob 		 *
   1096       1.1   mjacob 		 * The firmware generates an async mailbox interupt to
   1097       1.1   mjacob 		 * notify us of this and returns outstanding CTIOs with this
   1098       1.1   mjacob 		 * status. These CTIOs are handled in that same way as
   1099       1.1   mjacob 		 * CT_ABORTED ones, so just fall through here.
   1100       1.1   mjacob 		 */
   1101  1.10.2.2  nathanw 		fmsg = "TARGET RESET Task Management Function Received";
   1102       1.1   mjacob 		/*FALLTHROUGH*/
   1103       1.1   mjacob 	case CT_RESET:
   1104       1.1   mjacob 		if (fmsg == NULL)
   1105  1.10.2.2  nathanw 			fmsg = "LIP Reset";
   1106       1.1   mjacob 		/*FALLTHROUGH*/
   1107       1.1   mjacob 	case CT_ABORTED:
   1108       1.1   mjacob 		/*
   1109       1.1   mjacob 		 * When an Abort message is received the firmware goes to
   1110       1.1   mjacob 		 * Bus Free and returns all outstanding CTIOs with the status
   1111       1.1   mjacob 		 * set, then sends us an Immediate Notify entry.
   1112       1.1   mjacob 		 */
   1113       1.1   mjacob 		if (fmsg == NULL)
   1114  1.10.2.2  nathanw 			fmsg = "ABORT Task Management Function Received";
   1115       1.1   mjacob 
   1116       1.7   mjacob 		isp_prt(isp, ISP_LOGERR, "CTIO2 destroyed by %s", fmsg);
   1117       1.1   mjacob 		break;
   1118       1.1   mjacob 
   1119       1.1   mjacob 	case CT_INVAL:
   1120       1.1   mjacob 		/*
   1121       1.2   mjacob 		 * CTIO rejected by the firmware - invalid data direction.
   1122       1.1   mjacob 		 */
   1123       1.7   mjacob 		isp_prt(isp, ISP_LOGERR, "CTIO2 had wrong data directiond");
   1124       1.1   mjacob 		break;
   1125       1.1   mjacob 
   1126       1.1   mjacob 	case CT_RSELTMO:
   1127  1.10.2.2  nathanw 		fmsg = "failure to reconnect to initiator";
   1128       1.1   mjacob 		/*FALLTHROUGH*/
   1129       1.1   mjacob 	case CT_TIMEOUT:
   1130       1.1   mjacob 		if (fmsg == NULL)
   1131  1.10.2.2  nathanw 			fmsg = "command";
   1132       1.7   mjacob 		isp_prt(isp, ISP_LOGERR, "Firmware timed out on %s", fmsg);
   1133       1.1   mjacob 		break;
   1134       1.1   mjacob 
   1135       1.1   mjacob 	case CT_ERR:
   1136       1.1   mjacob 		fmsg = "Completed with Error";
   1137       1.1   mjacob 		/*FALLTHROUGH*/
   1138       1.1   mjacob 	case CT_LOGOUT:
   1139       1.1   mjacob 		if (fmsg == NULL)
   1140       1.1   mjacob 			fmsg = "Port Logout";
   1141       1.1   mjacob 		/*FALLTHROUGH*/
   1142       1.1   mjacob 	case CT_PORTNOTAVAIL:
   1143       1.1   mjacob 		if (fmsg == NULL)
   1144       1.1   mjacob 			fmsg = "Port not available";
   1145  1.10.2.2  nathanw 	case CT_PORTCHANGED:
   1146  1.10.2.2  nathanw 		if (fmsg == NULL)
   1147  1.10.2.2  nathanw 			fmsg = "Port Changed";
   1148       1.1   mjacob 	case CT_NOACK:
   1149       1.1   mjacob 		if (fmsg == NULL)
   1150       1.1   mjacob 			fmsg = "unacknowledged Immediate Notify pending";
   1151       1.7   mjacob 		isp_prt(isp, ISP_LOGERR, "CTIO returned by f/w- %s", fmsg);
   1152       1.1   mjacob 		break;
   1153       1.1   mjacob 
   1154       1.1   mjacob 	case CT_INVRXID:
   1155       1.1   mjacob 		/*
   1156       1.1   mjacob 		 * CTIO rejected by the firmware because an invalid RX_ID.
   1157       1.1   mjacob 		 * Just print a message.
   1158       1.1   mjacob 		 */
   1159       1.7   mjacob 		isp_prt(isp, ISP_LOGERR,
   1160       1.7   mjacob 		    "CTIO2 completed with Invalid RX_ID 0x%x", ct->ct_rxid);
   1161       1.1   mjacob 		break;
   1162       1.1   mjacob 
   1163       1.1   mjacob 	default:
   1164  1.10.2.1  nathanw 		isp_prt(isp, ISP_LOGERR, "Unknown CTIO2 status 0x%x",
   1165       1.7   mjacob 		    ct->ct_status & ~QLTM_SVALID);
   1166       1.1   mjacob 		break;
   1167       1.1   mjacob 	}
   1168       1.1   mjacob 
   1169       1.1   mjacob 	if (xs == NULL) {
   1170       1.1   mjacob 		/*
   1171       1.1   mjacob 		 * There may be more than one CTIO for a data transfer,
   1172       1.1   mjacob 		 * or this may be a status CTIO we're not monitoring.
   1173       1.1   mjacob 		 *
   1174       1.1   mjacob 		 * The assumption is that they'll all be returned in the
   1175       1.1   mjacob 		 * order we got them.
   1176       1.1   mjacob 		 */
   1177  1.10.2.1  nathanw 		if (ct->ct_syshandle == 0) {
   1178       1.1   mjacob 			if ((ct->ct_flags & CT_SENDSTATUS) == 0) {
   1179       1.7   mjacob 				isp_prt(isp, pl,
   1180       1.7   mjacob 				    "intermediate CTIO completed ok");
   1181       1.1   mjacob 			} else {
   1182       1.7   mjacob 				isp_prt(isp, pl,
   1183       1.7   mjacob 				    "unmonitored CTIO completed ok");
   1184       1.1   mjacob 			}
   1185       1.1   mjacob 		} else {
   1186       1.7   mjacob 			isp_prt(isp, pl,
   1187       1.7   mjacob 			    "NO xs for CTIO (handle 0x%x) status 0x%x",
   1188  1.10.2.1  nathanw 			    ct->ct_syshandle, ct->ct_status & ~QLTM_SVALID);
   1189       1.1   mjacob 		}
   1190       1.1   mjacob 	} else {
   1191  1.10.2.2  nathanw 		if ((ct->ct_flags & CT2_DATAMASK) != CT2_NO_DATA) {
   1192  1.10.2.2  nathanw 			ISP_DMAFREE(isp, xs, ct->ct_syshandle);
   1193  1.10.2.2  nathanw 		}
   1194       1.1   mjacob 		if (ct->ct_flags & CT_SENDSTATUS) {
   1195       1.1   mjacob 			/*
   1196       1.1   mjacob 			 * Sent status and command complete.
   1197       1.1   mjacob 			 *
   1198       1.1   mjacob 			 * We're now really done with this command, so we
   1199       1.1   mjacob 			 * punt to the platform dependent layers because
   1200       1.1   mjacob 			 * only there can we do the appropriate command
   1201       1.1   mjacob 			 * complete thread synchronization.
   1202       1.1   mjacob 			 */
   1203       1.7   mjacob 			isp_prt(isp, pl, "status CTIO complete");
   1204       1.1   mjacob 		} else {
   1205       1.1   mjacob 			/*
   1206       1.1   mjacob 			 * Final CTIO completed. Release DMA resources and
   1207       1.1   mjacob 			 * notify platform dependent layers.
   1208       1.1   mjacob 			 */
   1209       1.7   mjacob 			isp_prt(isp, pl, "data CTIO complete");
   1210       1.1   mjacob 		}
   1211       1.1   mjacob 		(void) isp_async(isp, ISPASYNC_TARGET_ACTION, ct);
   1212       1.1   mjacob 		/*
   1213       1.1   mjacob 		 * The platform layer will destroy the handle if appropriate.
   1214       1.1   mjacob 		 */
   1215       1.1   mjacob 	}
   1216       1.1   mjacob }
   1217       1.1   mjacob #endif
   1218