Home | History | Annotate | Line # | Download | only in ic
isp_netbsd.h revision 1.27
      1  1.27   mjacob /* $NetBSD: isp_netbsd.h,v 1.27 2000/08/01 23:55:11 mjacob Exp $ */
      2   1.1   mjacob /*
      3   1.1   mjacob  * NetBSD Specific definitions for the Qlogic ISP Host Adapter
      4  1.15   mjacob  * Matthew Jacob <mjacob (at) nas.nasa.gov>
      5  1.15   mjacob  */
      6  1.15   mjacob /*
      7  1.15   mjacob  * Copyright (C) 1997, 1998, 1999 National Aeronautics & Space Administration
      8   1.1   mjacob  * All rights reserved.
      9   1.1   mjacob  *
     10   1.1   mjacob  * Redistribution and use in source and binary forms, with or without
     11   1.1   mjacob  * modification, are permitted provided that the following conditions
     12   1.1   mjacob  * are met:
     13   1.1   mjacob  * 1. Redistributions of source code must retain the above copyright
     14  1.15   mjacob  *    notice, this list of conditions and the following disclaimer.
     15   1.1   mjacob  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1   mjacob  *    notice, this list of conditions and the following disclaimer in the
     17   1.1   mjacob  *    documentation and/or other materials provided with the distribution.
     18   1.1   mjacob  * 3. The name of the author may not be used to endorse or promote products
     19  1.15   mjacob  *    derived from this software without specific prior written permission
     20   1.1   mjacob  *
     21  1.15   mjacob  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22  1.15   mjacob  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23  1.15   mjacob  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24  1.15   mjacob  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25  1.15   mjacob  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26  1.15   mjacob  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27  1.15   mjacob  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28  1.15   mjacob  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29  1.15   mjacob  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30  1.15   mjacob  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31   1.1   mjacob  */
     32   1.1   mjacob #ifndef	_ISP_NETBSD_H
     33   1.1   mjacob #define	_ISP_NETBSD_H
     34   1.1   mjacob 
     35   1.1   mjacob #include <sys/types.h>
     36   1.1   mjacob #include <sys/param.h>
     37   1.1   mjacob #include <sys/systm.h>
     38   1.1   mjacob #include <sys/kernel.h>
     39   1.1   mjacob #include <sys/errno.h>
     40   1.1   mjacob #include <sys/ioctl.h>
     41   1.1   mjacob #include <sys/device.h>
     42   1.1   mjacob #include <sys/malloc.h>
     43   1.1   mjacob #include <sys/buf.h>
     44   1.1   mjacob #include <sys/proc.h>
     45   1.1   mjacob #include <sys/user.h>
     46   1.1   mjacob 
     47   1.1   mjacob 
     48   1.1   mjacob #include <dev/scsipi/scsi_all.h>
     49   1.1   mjacob #include <dev/scsipi/scsipi_all.h>
     50   1.1   mjacob #include <dev/scsipi/scsiconf.h>
     51   1.1   mjacob 
     52   1.1   mjacob #include <dev/scsipi/scsi_message.h>
     53   1.1   mjacob #include <dev/scsipi/scsipi_debug.h>
     54   1.1   mjacob 
     55  1.15   mjacob #include "opt_isp.h"
     56  1.26   mjacob 
     57  1.15   mjacob 
     58  1.27   mjacob #define	ISP_PLATFORM_VERSION_MAJOR	1
     59  1.27   mjacob #define	ISP_PLATFORM_VERSION_MINOR	0
     60   1.1   mjacob 
     61   1.1   mjacob struct isposinfo {
     62   1.1   mjacob 	struct device		_dev;
     63   1.1   mjacob 	struct scsipi_link	_link;
     64  1.14   mjacob 	struct scsipi_link	_link_b;
     65   1.6   mjacob 	struct scsipi_adapter   _adapter;
     66  1.27   mjacob 	int	splsaved;
     67  1.27   mjacob 	int	mboxwaiting;
     68  1.27   mjacob 	unsigned int
     69  1.27   mjacob 				: 28,
     70  1.27   mjacob 		onintstack	: 1,
     71  1.27   mjacob 		no_mbox_ints	: 1,
     72  1.27   mjacob 		blocked		: 1,
     73  1.27   mjacob 		islocked	: 1;
     74  1.18   mjacob 	union {
     75  1.27   mjacob 		u_int64_t	_wwn;
     76  1.18   mjacob 		u_int16_t	_discovered[2];
     77  1.27   mjacob #define	wwn_seed	un._wwn
     78  1.27   mjacob #define	discovered	un._discovered
     79  1.18   mjacob 	} un;
     80  1.10   mjacob 	TAILQ_HEAD(, scsipi_xfer) waitq;
     81  1.23  thorpej 	struct callout _restart;
     82   1.1   mjacob };
     83  1.18   mjacob 
     84  1.27   mjacob /*
     85  1.27   mjacob  * Required Macros/Defines
     86  1.27   mjacob  */
     87  1.27   mjacob 
     88  1.27   mjacob #define	INLINE			inline
     89  1.27   mjacob 
     90  1.27   mjacob #define	ISP2100_FABRIC		1
     91  1.15   mjacob #define	ISP2100_SCRLEN		0x400
     92   1.1   mjacob 
     93  1.27   mjacob #define	MEMZERO			bzero
     94  1.27   mjacob #define	MEMCPY(dst, src, amt)	bcopy((src), (dst), (amt))
     95  1.27   mjacob #define	SNPRINTF		snprintf
     96  1.27   mjacob #define	STRNCAT			strncat
     97  1.27   mjacob #define	USEC_DELAY		DELAY
     98  1.27   mjacob 
     99  1.27   mjacob #define	NANOTIME_T		struct timeval
    100  1.27   mjacob #define	GET_NANOTIME		microtime
    101  1.27   mjacob #define	GET_NANOSEC(x)		(((x)->tv_sec * 1000000 + (x)->tv_usec) * 1000)
    102  1.27   mjacob #define	NANOTIME_SUB		isp_microtime_sub
    103   1.1   mjacob 
    104  1.27   mjacob #define	MAXISPREQUEST(isp)	256
    105   1.8   mjacob 
    106  1.11   mjacob #ifdef	__alpha__
    107  1.27   mjacob #define	MEMORYBARRIER(isp, type, offset, size)	alpha_mb()
    108  1.11   mjacob #else
    109  1.27   mjacob #define	MEMORYBARRIER(isp, type, offset, size)
    110  1.11   mjacob #endif
    111   1.3   mjacob 
    112  1.27   mjacob #define	MBOX_ACQUIRE(isp)
    113  1.27   mjacob #define	MBOX_WAIT_COMPLETE	isp_wait_complete
    114  1.13   mjacob 
    115  1.27   mjacob #define	MBOX_NOTIFY_COMPLETE(isp)					\
    116  1.27   mjacob 	if (isp->isp_osinfo.mboxwaiting) {				\
    117  1.27   mjacob                 isp->isp_osinfo.mboxwaiting = 0;			\
    118  1.27   mjacob                 wakeup(&isp->isp_osinfo.mboxwaiting);			\
    119  1.27   mjacob         }								\
    120  1.27   mjacob 	isp->isp_mboxbsy = 0
    121   1.1   mjacob 
    122  1.27   mjacob #define	MBOX_RELEASE(isp)
    123  1.26   mjacob 
    124  1.27   mjacob #ifndef	SCSI_GOOD
    125  1.27   mjacob #define	SCSI_GOOD	0x0
    126  1.27   mjacob #endif
    127  1.27   mjacob #ifndef	SCSI_CHECK
    128  1.27   mjacob #define	SCSI_CHECK	0x2
    129  1.27   mjacob #endif
    130  1.27   mjacob #ifndef	SCSI_BUSY
    131  1.27   mjacob #define	SCSI_BUSY	0x8
    132  1.27   mjacob #endif
    133  1.27   mjacob #ifndef	SCSI_QFULL
    134  1.27   mjacob #define	SCSI_QFULL	0x28
    135  1.27   mjacob #endif
    136  1.26   mjacob 
    137  1.27   mjacob #define	XS_T			struct scsipi_xfer
    138  1.27   mjacob #define	XS_CHANNEL(xs)		\
    139  1.27   mjacob 	(((int) (xs)->sc_link->scsipi_scsi.channel == SCSI_CHANNEL_ONLY_ONE) ? \
    140  1.27   mjacob 	    0 : (xs)->sc_link->scsipi_scsi.channel)
    141   1.1   mjacob #define	XS_ISP(xs)		(xs)->sc_link->adapter_softc
    142  1.11   mjacob #define	XS_LUN(xs)		((int) (xs)->sc_link->scsipi_scsi.lun)
    143  1.11   mjacob #define	XS_TGT(xs)		((int) (xs)->sc_link->scsipi_scsi.target)
    144  1.27   mjacob #define	XS_CDBP(xs)		((caddr_t) (xs)->cmd)
    145  1.27   mjacob #define	XS_CDBLEN(xs)		(xs)->cmdlen
    146   1.1   mjacob #define	XS_XFRLEN(xs)		(xs)->datalen
    147   1.1   mjacob #define	XS_TIME(xs)		(xs)->timeout
    148  1.27   mjacob #define	XS_RESID(xs)		(xs)->resid
    149  1.27   mjacob #define	XS_STSP(xs)		(&(xs)->status)
    150   1.1   mjacob #define	XS_SNSP(xs)		(&(xs)->sense.scsi_sense)
    151  1.27   mjacob #define	XS_SNSLEN(xs)		(sizeof (xs)->sense)
    152   1.1   mjacob #define	XS_SNSKEY(xs)		((xs)->sense.scsi_sense.flags)
    153  1.27   mjacob #define	XS_TAG_P(ccb)		(((xs)->xs_control & XS_CTL_POLL) != 0)
    154  1.27   mjacob #define	XS_TAG_TYPE(xs)	\
    155  1.27   mjacob 	(((xs)->xs_control & XS_CTL_URGENT) ? REQFLAG_HTAG : REQFLAG_OTAG)
    156  1.27   mjacob 
    157  1.27   mjacob 
    158  1.27   mjacob #define	XS_SETERR(xs, v)	(xs)->error = v
    159  1.27   mjacob 
    160  1.27   mjacob #	define	HBA_NOERROR		XS_NOERROR
    161  1.27   mjacob #	define	HBA_BOTCH		XS_DRIVER_STUFFUP
    162  1.27   mjacob #	define	HBA_CMDTIMEOUT		XS_TIMEOUT
    163  1.27   mjacob #	define	HBA_SELTIMEOUT		XS_SELTIMEOUT
    164  1.27   mjacob #	define	HBA_TGTBSY		XS_BUSY
    165  1.27   mjacob #	define	HBA_BUSRESET		XS_RESET
    166  1.27   mjacob #	define	HBA_ABORTED		XS_DRIVER_STUFFUP
    167  1.27   mjacob #	define	HBA_DATAOVR		XS_DRIVER_STUFFUP
    168  1.27   mjacob #	define	HBA_ARQFAIL		XS_DRIVER_STUFFUP
    169   1.1   mjacob 
    170  1.27   mjacob #define	XS_ERR(xs)		(xs)->error
    171  1.27   mjacob 
    172  1.27   mjacob #define	XS_NOERR(xs)		(xs)->error == XS_NOERROR
    173  1.27   mjacob 
    174  1.27   mjacob #define	XS_INITERR(xs)		(xs)->error = 0, XS_CMD_S_CLEAR(xs)
    175  1.27   mjacob 
    176  1.27   mjacob #define	XS_SAVE_SENSE(xs, sp)				\
    177  1.27   mjacob 	bcopy(sp->req_sense_data, &(xs)->sense,		\
    178  1.27   mjacob 	    imin(XS_SNSLEN(xs), sp->req_sense_len))
    179  1.27   mjacob 
    180  1.27   mjacob #define	XS_SET_STATE_STAT(a, b, c)
    181  1.27   mjacob 
    182  1.27   mjacob #define	DEFAULT_IID(x)		7
    183  1.27   mjacob #define	DEFAULT_LOOPID(x)	108
    184  1.27   mjacob #define	DEFAULT_NODEWWN(isp)	(isp)->isp_osinfo.un._wwn
    185  1.27   mjacob #define	DEFAULT_PORTWWN(isp)	\
    186  1.27   mjacob 	isp_port_from_node_wwn((isp), DEFAULT_NODEWWN(isp))
    187  1.27   mjacob #define	PORT_FROM_NODE_WWN	isp_port_from_node_wwn
    188  1.27   mjacob 
    189  1.27   mjacob #define	ISP_UNSWIZZLE_AND_COPY_PDBP(isp, dest, src)	\
    190  1.27   mjacob 	if((void *)src != (void *)dest) bcopy(src, dest, sizeof (isp_pdb_t))
    191  1.27   mjacob #define	ISP_SWIZZLE_ICB(a, b)
    192  1.27   mjacob #ifdef	__sparc__
    193  1.27   mjacob #define ISP_SWIZZLE_REQUEST(a, b)			\
    194  1.27   mjacob 	ISP_SBUSIFY_ISPHDR(a, &(b)->req_header);	\
    195  1.27   mjacob         ISP_SBUSIFY_ISPREQ(a, b)
    196  1.27   mjacob #define ISP_UNSWIZZLE_RESPONSE(a, b, c)			\
    197  1.27   mjacob 	ISP_SBUSIFY_ISPHDR(a, &(b)->req_header)
    198   1.3   mjacob #else
    199  1.27   mjacob #define	ISP_SWIZZLE_REQUEST(a, b)
    200  1.27   mjacob #define	ISP_UNSWIZZLE_RESPONSE(a, b, c)
    201   1.3   mjacob #endif
    202  1.27   mjacob #define	ISP_SWIZZLE_SNS_REQ(a, b)
    203  1.27   mjacob #define	ISP_UNSWIZZLE_SNS_RSP(a, b, c)
    204  1.27   mjacob #ifdef	__sparc__
    205  1.27   mjacob #define	ISP_SWIZZLE_NVRAM_WORD(isp, rp)	\
    206  1.27   mjacob 	{								\
    207  1.27   mjacob 		u_int16_t tmp = *rp >> 8;				\
    208  1.27   mjacob 		tmp |= ((*rp & 0xff) << 8);				\
    209  1.27   mjacob 		*rp = tmp;						\
    210  1.27   mjacob 	}
    211  1.27   mjacob #else
    212  1.27   mjacob #define	ISP_SWIZZLE_NVRAM_WORD(isp, rp)
    213  1.27   mjacob #endif
    214  1.27   mjacob 
    215  1.27   mjacob /*
    216  1.27   mjacob  * Includes of common header files
    217  1.27   mjacob  */
    218   1.1   mjacob 
    219  1.27   mjacob #include <dev/ic/ispreg.h>
    220  1.27   mjacob #include <dev/ic/ispvar.h>
    221  1.27   mjacob #include <dev/ic/ispmbox.h>
    222  1.27   mjacob 
    223  1.27   mjacob /*
    224  1.27   mjacob  * isp_osinfo definitions, extensions and shorthand.
    225  1.27   mjacob  */
    226  1.27   mjacob #define	isp_name	isp_osinfo._dev.dv_xname
    227  1.27   mjacob #define	isp_unit	isp_osinfo._dev.dv_unit
    228  1.27   mjacob 
    229  1.27   mjacob /*
    230  1.27   mjacob  * Driver prototypes..
    231  1.27   mjacob  */
    232  1.27   mjacob void isp_attach __P((struct ispsoftc *));
    233  1.27   mjacob void isp_uninit __P((struct ispsoftc *));
    234  1.27   mjacob 
    235  1.27   mjacob static inline void isp_lock __P((struct ispsoftc *));
    236  1.27   mjacob static inline void isp_unlock __P((struct ispsoftc *));
    237  1.27   mjacob static inline char *strncat __P((char *, const char *, size_t));
    238  1.27   mjacob static inline u_int64_t
    239  1.27   mjacob isp_port_from_node_wwn __P((struct ispsoftc *, u_int64_t));
    240  1.27   mjacob static inline u_int64_t
    241  1.27   mjacob isp_microtime_sub __P((struct timeval *, struct timeval *));
    242  1.27   mjacob static void isp_wait_complete __P((struct ispsoftc *));
    243  1.27   mjacob 
    244  1.27   mjacob /*
    245  1.27   mjacob  * Driver wide data...
    246  1.27   mjacob  */
    247  1.27   mjacob 
    248  1.27   mjacob /*
    249  1.27   mjacob  * Locking macros...
    250  1.27   mjacob  */
    251  1.27   mjacob #define	ISP_LOCK		isp_lock
    252  1.27   mjacob #define	ISP_UNLOCK		isp_unlock
    253  1.27   mjacob 
    254  1.27   mjacob /*
    255  1.27   mjacob  * Platform private flags
    256  1.27   mjacob  */
    257   1.1   mjacob 
    258  1.26   mjacob #define	XS_PSTS_INWDOG		0x10000000
    259  1.26   mjacob #define	XS_PSTS_GRACE		0x20000000
    260  1.26   mjacob #define	XS_PSTS_ALL		0x30000000
    261  1.26   mjacob 
    262  1.26   mjacob #define	XS_CMD_S_WDOG(xs)	(xs)->xs_status |= XS_PSTS_INWDOG
    263  1.26   mjacob #define	XS_CMD_C_WDOG(xs)	(xs)->xs_status &= ~XS_PSTS_INWDOG
    264  1.26   mjacob #define	XS_CMD_WDOG_P(xs)	(((xs)->xs_status & XS_PSTS_INWDOG) != 0)
    265  1.26   mjacob 
    266  1.26   mjacob #define	XS_CMD_S_GRACE(xs)	(xs)->xs_status |= XS_PSTS_GRACE
    267  1.26   mjacob #define	XS_CMD_C_GRACE(xs)	(xs)->xs_status &= ~XS_PSTS_GRACE
    268  1.26   mjacob #define	XS_CMD_GRACE_P(xs)	(((xs)->xs_status & XS_PSTS_GRACE) != 0)
    269  1.26   mjacob 
    270  1.26   mjacob #define	XS_CMD_S_DONE(xs)	(xs)->xs_status |= XS_STS_DONE
    271  1.26   mjacob #define	XS_CMD_C_DONE(xs)	(xs)->xs_status &= ~XS_STS_DONE
    272  1.26   mjacob #define	XS_CMD_DONE_P(xs)	(((xs)->xs_status & XS_STS_DONE) != 0)
    273  1.26   mjacob 
    274  1.26   mjacob #define	XS_CMD_S_CLEAR(xs)	(xs)->xs_status &= ~XS_PSTS_ALL
    275  1.26   mjacob 
    276   1.1   mjacob /*
    277  1.27   mjacob  * Platform specific 'inline' or support functions
    278   1.1   mjacob  */
    279  1.27   mjacob static inline void
    280  1.27   mjacob isp_lock(isp)
    281  1.27   mjacob 	struct ispsoftc *isp;
    282  1.27   mjacob {
    283  1.27   mjacob 	int s = splbio();
    284  1.27   mjacob 	if (isp->isp_osinfo.islocked == 0) {
    285  1.27   mjacob 		isp->isp_osinfo.islocked = 1;
    286  1.27   mjacob 		isp->isp_osinfo.splsaved = s;
    287  1.27   mjacob 	} else {
    288  1.27   mjacob 		splx(s);
    289  1.27   mjacob 	}
    290  1.27   mjacob }
    291   1.1   mjacob 
    292  1.27   mjacob static inline void
    293  1.27   mjacob isp_unlock(isp)
    294  1.27   mjacob 	struct ispsoftc *isp;
    295  1.27   mjacob {
    296  1.27   mjacob 	if (isp->isp_osinfo.islocked) {
    297  1.27   mjacob 		isp->isp_osinfo.islocked = 0;
    298  1.27   mjacob 		splx(isp->isp_osinfo.splsaved);
    299  1.27   mjacob 	}
    300  1.27   mjacob }
    301   1.1   mjacob 
    302  1.26   mjacob static inline char *
    303  1.27   mjacob strncat(d, s, c)
    304  1.27   mjacob 	char *d;
    305  1.27   mjacob 	const char *s;
    306  1.27   mjacob 	size_t c;
    307  1.26   mjacob {
    308  1.26   mjacob         char *t = d;
    309  1.26   mjacob 
    310  1.26   mjacob         if (c) {
    311  1.26   mjacob                 while (*d)
    312  1.26   mjacob                         d++;
    313  1.26   mjacob                 while ((*d++ = *s++)) {
    314  1.26   mjacob                         if (--c == 0) {
    315  1.26   mjacob                                 *d = '\0';
    316  1.26   mjacob                                 break;
    317  1.26   mjacob                         }
    318  1.26   mjacob                 }
    319  1.26   mjacob         }
    320  1.26   mjacob         return (t);
    321  1.26   mjacob }
    322  1.26   mjacob 
    323  1.27   mjacob static inline u_int64_t
    324  1.27   mjacob isp_microtime_sub(b, a)
    325  1.27   mjacob 	struct timeval *b;
    326  1.27   mjacob 	struct timeval *a;
    327  1.27   mjacob {
    328  1.27   mjacob 	struct timeval x;
    329  1.27   mjacob 	u_int64_t elapsed;
    330  1.27   mjacob 	timersub(b, a, &x);
    331  1.27   mjacob 	elapsed = GET_NANOSEC(&x);
    332  1.27   mjacob 	if (elapsed == 0)
    333  1.27   mjacob 		elapsed++;
    334  1.27   mjacob 	return (elapsed);
    335  1.27   mjacob }
    336  1.18   mjacob 
    337  1.27   mjacob static inline void
    338  1.27   mjacob isp_wait_complete(isp)
    339  1.27   mjacob 	struct ispsoftc *isp;
    340  1.27   mjacob {
    341  1.27   mjacob 	if (isp->isp_osinfo.onintstack || isp->isp_osinfo.no_mbox_ints) {
    342  1.27   mjacob 		int usecs = 0;
    343  1.27   mjacob 		while (usecs < 2 * 1000000) {
    344  1.27   mjacob 			(void) isp_intr(isp);
    345  1.27   mjacob 			if (isp->isp_mboxbsy == 0) {
    346  1.27   mjacob 				break;
    347  1.27   mjacob 			}
    348  1.27   mjacob 			USEC_DELAY(500);
    349  1.27   mjacob 			usecs += 500;
    350  1.27   mjacob 		}
    351  1.27   mjacob 		if (isp->isp_mboxbsy != 0) {
    352  1.27   mjacob 			isp_prt(isp, ISP_LOGWARN, "Mailbox Cmd (poll) Timeout");
    353  1.27   mjacob 		}
    354  1.27   mjacob 	} else {
    355  1.27   mjacob 		int rv = 0;
    356  1.27   mjacob                 isp->isp_osinfo.mboxwaiting = 1;
    357  1.27   mjacob                 while (isp->isp_osinfo.mboxwaiting && rv == 0) {
    358  1.27   mjacob 			static struct timeval twosec = { 2, 0 };
    359  1.27   mjacob 			int timo;
    360  1.27   mjacob 			struct timeval tv;
    361  1.27   mjacob 			microtime(&tv);
    362  1.27   mjacob 			timeradd(&tv, &twosec, &tv);
    363  1.27   mjacob 			if ((timo = hzto(&tv)) == 0) {
    364  1.27   mjacob 				timo = 1;
    365  1.27   mjacob 			}
    366  1.27   mjacob 			rv = tsleep(&isp->isp_osinfo.mboxwaiting,
    367  1.27   mjacob 			    PRIBIO, "isp_mboxcmd", timo);
    368  1.27   mjacob 		}
    369  1.27   mjacob 		if (rv == EWOULDBLOCK) {
    370  1.27   mjacob 			isp->isp_mboxbsy = 0;
    371  1.27   mjacob 			isp->isp_osinfo.mboxwaiting = 0;
    372  1.27   mjacob 			isp_prt(isp, ISP_LOGWARN, "Mailbox Cmd (intr) Timeout");
    373  1.27   mjacob 		}
    374  1.27   mjacob 	}
    375  1.27   mjacob }
    376  1.27   mjacob 
    377  1.27   mjacob static inline u_int64_t
    378  1.27   mjacob isp_port_from_node_wwn(struct ispsoftc *isp, u_int64_t node_wwn)
    379  1.27   mjacob {
    380  1.27   mjacob 	u_int64_t rv = node_wwn;
    381  1.27   mjacob 	if ((node_wwn >> 60) == 2) {
    382  1.27   mjacob 		rv = node_wwn |
    383  1.27   mjacob 		    (((u_int64_t)(isp->isp_unit+1)) << 48);
    384  1.27   mjacob 	}
    385  1.27   mjacob 	return (rv);
    386  1.27   mjacob }
    387  1.27   mjacob 
    388  1.27   mjacob /*
    389  1.27   mjacob  * Common inline functions
    390  1.27   mjacob  */
    391  1.18   mjacob #define	INLINE	inline
    392  1.18   mjacob #include <dev/ic/isp_inline.h>
    393  1.18   mjacob 
    394  1.19   mjacob #if	!defined(ISP_DISABLE_FW) && !defined(ISP_COMPILE_FW)
    395  1.19   mjacob #define	ISP_COMPILE_FW	1
    396  1.19   mjacob #endif
    397   1.1   mjacob #endif	/* _ISP_NETBSD_H */
    398