xref: /illumos-gate/usr/src/uts/common/sys/fibre-channel/fca/emlxs/emlxs_fc.h (revision 6a573d82e26abdedeb701fcdd5b5461b2fa0da40)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 
22 /*
23  * Copyright 2010 Emulex.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 #ifndef _EMLXS_FC_H
28 #define	_EMLXS_FC_H
29 
30 #ifdef	__cplusplus
31 extern "C" {
32 #endif
33 
34 typedef struct emlxs_buf
35 {
36 	fc_packet_t		*pkt;		/* scsi_pkt reference */
37 	struct emlxs_port	*port;		/* pointer to port */
38 	void			*bmp;		/* Save the buffer pointer */
39 						/* list for later use. */
40 	struct emlxs_buf	*fc_fwd;	/* Use it by chip_Q */
41 	struct emlxs_buf	*fc_bkwd;	/* Use it by chip_Q */
42 	struct emlxs_buf	*next;		/* Use it when the iodone */
43 	void 			*node;		/* Save node and used by */
44 						/* abort */
45 	void			*channel;	/* Save channel and used by */
46 						/* abort */
47 	struct emlxs_buf	*fpkt;		/* Flush pkt pointer */
48 	struct XRIobject	*xp;		/* Exchange resource */
49 	IOCBQ			iocbq;
50 	kmutex_t		mtx;
51 	uint32_t		pkt_flags;
52 	uint32_t		iotag;		/* iotag for this cmd */
53 	uint32_t		ticks;		/* save the timeout ticks */
54 						/* for the fc_packet_t */
55 	uint32_t		abort_attempts;
56 	uint32_t		lun;		/* Save LUN id and used by */
57 						/* abort */
58 	uint32_t		class;		/* Save class and used by */
59 						/* abort */
60 	uint32_t		ucmd;		/* Unsolicted command that */
61 						/* this packet is responding */
62 						/* to, if any */
63 	int32_t			flush_count;	/* Valid only in flush pkts */
64 	uint32_t		did;
65 
66 #ifdef SFCT_SUPPORT
67 	kmutex_t		fct_mtx;
68 	fc_packet_t		*fct_pkt;
69 	fct_cmd_t		*fct_cmd;
70 
71 	uint8_t			fct_type;
72 
73 #define	EMLXS_FCT_ELS_CMD		0x01	/* Unsolicted */
74 #define	EMLXS_FCT_ELS_REQ		0x02	/* Solicited */
75 #define	EMLXS_FCT_ELS_RSP		0x04
76 #define	EMLXS_FCT_CT_REQ		0x08	/* Solicited */
77 #define	EMLXS_FCT_FCP_CMD		0x10	/* Unsolicted */
78 #define	EMLXS_FCT_FCP_DATA		0x20
79 #define	EMLXS_FCT_FCP_STATUS		0x40
80 
81 
82 	uint8_t			fct_flags;
83 
84 #define	EMLXS_FCT_SEND_STATUS		0x01
85 #define	EMLXS_FCT_ABORT_INP		0x02
86 #define	EMLXS_FCT_IO_INP		0x04
87 #define	EMLXS_FCT_REGISTERED		0x10
88 #define	EMLXS_FCT_PLOGI_RECEIVED	0x20
89 #define	EMLXS_FCT_FLOGI			0x40
90 
91 	uint16_t		fct_state;
92 
93 #define	EMLXS_FCT_FCP_CMD_RECEIVED	1
94 #define	EMLXS_FCT_ELS_CMD_RECEIVED	2
95 #define	EMLXS_FCT_CMD_POSTED		3
96 #define	EMLXS_FCT_CMD_WAITQ		4
97 #define	EMLXS_FCT_SEND_CMD_RSP		5
98 #define	EMLXS_FCT_SEND_ELS_RSP		6
99 #define	EMLXS_FCT_SEND_ELS_REQ		7
100 #define	EMLXS_FCT_SEND_CT_REQ		8
101 #define	EMLXS_FCT_RSP_PENDING		9
102 #define	EMLXS_FCT_REQ_PENDING		10
103 #define	EMLXS_FCT_REG_PENDING		11
104 #define	EMLXS_FCT_REG_COMPLETE		12
105 #define	EMLXS_FCT_OWNED			13
106 #define	EMLXS_FCT_SEND_FCP_DATA		14
107 #define	EMLXS_FCT_SEND_FCP_STATUS	15
108 #define	EMLXS_FCT_DATA_PENDING		16
109 #define	EMLXS_FCT_STATUS_PENDING	17
110 #define	EMLXS_FCT_PKT_COMPLETE		18
111 #define	EMLXS_FCT_PKT_FCPRSP_COMPLETE	19
112 #define	EMLXS_FCT_PKT_ELSRSP_COMPLETE	20
113 #define	EMLXS_FCT_PKT_ELSCMD_COMPLETE	21
114 #define	EMLXS_FCT_PKT_CTCMD_COMPLETE	22
115 #define	EMLXS_FCT_REQ_COMPLETE		23
116 #define	EMLXS_FCT_CLOSE_PENDING		24
117 #define	EMLXS_FCT_ABORT_PENDING		25
118 #define	EMLXS_FCT_ABORT_DONE		26
119 #define	EMLXS_FCT_IO_DONE		27
120 
121 #define	EMLXS_FCT_IOCB_ISSUED		256 /* For tracing only */
122 #define	EMLXS_FCT_IOCB_COMPLETE		257 /* For tracing only */
123 
124 	stmf_data_buf_t		*fct_buf;
125 
126 #endif /* SFCT_SUPPORT */
127 
128 #ifdef SAN_DIAG_SUPPORT
129 	hrtime_t		sd_start_time;
130 #endif
131 } emlxs_buf_t;
132 
133 
134 
135 #ifdef FCT_IO_TRACE
136 #define	EMLXS_FCT_STATE_CHG(_fct_cmd, _cmd_sbp, _state)	\
137 	(_cmd_sbp)->fct_state = _state;			\
138 	emlxs_fct_io_trace((_cmd_sbp)->port, _fct_cmd, _state)
139 #else
140 /* define to set fct_state */
141 #define	EMLXS_FCT_STATE_CHG(_fct_cmd, _cmd_sbp, _state)	\
142 	(_cmd_sbp)->fct_state = _state
143 #endif /* FCT_IO_TRACE */
144 
145 
146 /* pkt_flags */
147 #define	PACKET_IN_COMPLETION	0x00000001
148 #define	PACKET_IN_TXQ		0x00000002
149 #define	PACKET_IN_CHIPQ		0x00000004
150 #define	PACKET_IN_DONEQ		0x00000008
151 
152 #define	PACKET_FCP_RESET	0x00000030
153 #define	PACKET_FCP_TGT_RESET	0x00000010
154 #define	PACKET_FCP_LUN_RESET	0x00000020
155 #define	PACKET_POLLED		0x00000040
156 
157 #ifdef EMLXS_I386
158 #define	PACKET_FCP_SWAPPED	0x00000100
159 #define	PACKET_ELS_SWAPPED	0x00000200
160 #define	PACKET_CT_SWAPPED	0x00000400
161 #define	PACKET_CSP_SWAPPED	0x00000800
162 #endif	/* EMLXS_I386 */
163 
164 #define	PACKET_STALE		0x00001000
165 
166 #define	PACKET_IN_TIMEOUT	0x00010000
167 #define	PACKET_IN_FLUSH		0x00020000
168 #define	PACKET_IN_ABORT		0x00040000
169 #define	PACKET_XRI_CLOSED	0x00080000 /* An XRI abort/close was issued */
170 
171 #define	PACKET_CHIP_COMP	0x00100000
172 #define	PACKET_COMPLETED	0x00200000
173 #define	PACKET_ULP_OWNED	0x00400000
174 
175 #define	PACKET_STATE_VALID	0x01000000
176 #define	PACKET_FCP_RSP_VALID	0x02000000
177 #define	PACKET_ELS_RSP_VALID	0x04000000
178 #define	PACKET_CT_RSP_VALID	0x08000000
179 
180 #define	PACKET_DELAY_REQUIRED	0x10000000
181 #define	PACKET_ALLOCATED	0x40000000
182 #define	PACKET_VALID		0x80000000
183 
184 
185 #define	STALE_PACKET		((emlxs_buf_t *)0xFFFFFFFF)
186 
187 
188 /*
189  * From fc_error.h pkt_reason (except for state = NPORT_RJT, FABRIC_RJT,
190  * NPORT_BSY, FABRIC_BSY, LS_RJT, BA_RJT, FS_RJT)
191  *
192  * FCA unique error codes can begin after FC_REASON_FCA_UNIQUE.
193  * Each FCA defines its own set with values greater >= 0x7F
194  */
195 #define	FC_REASON_FCA_DEFINED   0x100
196 
197 
198 /*
199  * Device VPD save area
200  */
201 
202 typedef struct emlxs_vpd
203 {
204 	uint32_t	biuRev;
205 	uint32_t	smRev;
206 	uint32_t	smFwRev;
207 	uint32_t	endecRev;
208 	uint16_t	rBit;
209 	uint8_t		fcphHigh;
210 	uint8_t		fcphLow;
211 	uint8_t		feaLevelHigh;
212 	uint8_t		feaLevelLow;
213 
214 	uint32_t	postKernRev;
215 	char		postKernName[32];
216 
217 	uint32_t	opFwRev;
218 	char		opFwName[32];
219 	char		opFwLabel[32];
220 
221 	uint32_t	sli1FwRev;
222 	char		sli1FwName[32];
223 	char		sli1FwLabel[32];
224 
225 	uint32_t	sli2FwRev;
226 	char		sli2FwName[32];
227 	char		sli2FwLabel[32];
228 
229 	uint32_t	sli3FwRev;
230 	char		sli3FwName[32];
231 	char		sli3FwLabel[32];
232 
233 	uint32_t	sli4FwRev;
234 	char		sli4FwName[32];
235 	char		sli4FwLabel[32];
236 
237 	char		fw_version[32];
238 	char		fw_label[32];
239 
240 	char		fcode_version[32];
241 	char		boot_version[32];
242 
243 	char		serial_num[32];
244 	char		part_num[32];
245 	char		port_num[20];
246 	char		eng_change[32];
247 	char		manufacturer[80];
248 	char		model[80];
249 	char		model_desc[256];
250 	char		prog_types[256];
251 	char		id[80];
252 
253 	uint32_t	port_index;
254 	uint8_t		link_speed;
255 } emlxs_vpd_t;
256 
257 
258 typedef struct emlxs_queue
259 {
260 	uint8_t		*q_first;	/* queue first element */
261 	uint8_t		*q_last;	/* queue last element */
262 	uint16_t	q_cnt;	/* current length of queue */
263 	uint16_t	q_max;	/* max length queue can get */
264 } emlxs_queue_t;
265 typedef emlxs_queue_t Q;
266 
267 
268 
269 /*
270  * This structure is used when allocating a buffer pool.
271  * Note: this should be identical to gasket buf_info (fldl.h).
272  */
273 typedef struct emlxs_buf_info
274 {
275 	int32_t		size;	/* Specifies the number of bytes to allocate. */
276 	int32_t		align;	/* The desired address boundary. */
277 
278 	int32_t		flags;
279 
280 #define	FC_MBUF_DMA		0x01	/* blocks are for DMA */
281 #define	FC_MBUF_PHYSONLY	0x02	/* For malloc - map a given virtual */
282 					/* address to physical address (skip */
283 					/* the malloc). */
284 					/* For free - just unmap the given */
285 					/* physical address (skip the free). */
286 #define	FC_MBUF_IOCTL		0x04	/* called from dfc_ioctl */
287 #define	FC_MBUF_UNLOCK		0x08	/* called with driver unlocked */
288 #define	FC_MBUF_SNGLSG		0x10	/* allocate a single contiguous */
289 					/* physical memory */
290 #define	FC_MBUF_DMA32		0x20
291 
292 	uint64_t	phys;		/* specifies physical buffer pointer */
293 	void		*virt;		/* specifies virtual buffer pointer */
294 	void		*data_handle;
295 	void		*dma_handle;
296 } emlxs_buf_info_t;
297 typedef emlxs_buf_info_t MBUF_INFO;
298 
299 
300 #define	EMLXS_MAX_HBQ   	16	/* Max HBQs handled by firmware */
301 #define	EMLXS_ELS_HBQ_ID	0
302 #define	EMLXS_IP_HBQ_ID		1
303 #define	EMLXS_CT_HBQ_ID		2
304 #define	EMLXS_FCT_HBQ_ID	3
305 
306 #ifdef SFCT_SUPPORT
307 #define	EMLXS_NUM_HBQ		4	/* Number of HBQs supported by driver */
308 #else
309 #define	EMLXS_NUM_HBQ		3	/* Number of HBQs supported by driver */
310 #endif /* SFCT_SUPPORT */
311 
312 
313 /*
314  * An IO Channel is a object that comprises a xmit/cmpl
315  * path for IOs.
316  * For SLI3, an IO path maps to a ring (cmd/rsp)
317  * For SLI4, an IO path map to a queue pair (WQ/CQ)
318  */
319 typedef struct emlxs_channel
320 {
321 	struct emlxs_hba *hba;			/* ptr to hba for channel */
322 	void		*iopath;		/* ptr to SLI3/4 io path */
323 
324 	kmutex_t	rsp_lock;
325 	IOCBQ		*rsp_head;	/* deferred completion head */
326 	IOCBQ		*rsp_tail;	/* deferred completion tail */
327 	emlxs_thread_t  intr_thread;
328 
329 
330 	uint16_t	channelno;
331 	uint16_t	chan_flag;
332 
333 #define	EMLXS_NEEDS_TRIGGER 1
334 
335 	/* Protected by EMLXS_TX_CHANNEL_LOCK */
336 	emlxs_queue_t	nodeq;			/* Node service queue */
337 
338 	kmutex_t	channel_cmd_lock;
339 	uint32_t	timeout;
340 
341 	/* Channel command counters */
342 	uint32_t	ulpSendCmd;
343 	uint32_t	ulpCmplCmd;
344 	uint32_t	hbaSendCmd;
345 	uint32_t	hbaCmplCmd;
346 	uint32_t	hbaSendCmd_sbp;
347 	uint32_t	hbaCmplCmd_sbp;
348 
349 } emlxs_channel_t;
350 typedef emlxs_channel_t CHANNEL;
351 
352 /*
353  * Should be able to handle max number of io paths for a
354  * SLI4 HBA (EMLXS_MAX_WQS) or for a SLI3 HBA (MAX_RINGS)
355  */
356 #define	MAX_CHANNEL EMLXS_MSI_MAX_INTRS
357 
358 
359 /* Structure used to access adapter rings */
360 typedef struct emlxs_ring
361 {
362 	void		*fc_cmdringaddr;	/* virtual offset for cmd */
363 						/* rings */
364 	void		*fc_rspringaddr;	/* virtual offset for rsp */
365 						/* rings */
366 
367 	uint8_t		*fc_mpon;		/* index ptr for match */
368 						/* structure */
369 	uint8_t		*fc_mpoff;		/* index ptr for match */
370 						/* structure */
371 	struct emlxs_hba *hba;			/* ptr to hba for ring */
372 
373 	uint8_t		fc_numCiocb;		/* number of command iocb's */
374 						/* per ring */
375 	uint8_t		fc_numRiocb;		/* number of response iocb's */
376 						/* per ring */
377 	uint8_t		fc_rspidx;		/* current index in response */
378 						/* ring */
379 	uint8_t		fc_cmdidx;		/* current index in command */
380 						/* ring */
381 	uint8_t		fc_port_rspidx;
382 	uint8_t		fc_port_cmdidx;
383 	uint8_t		ringno;
384 
385 	uint16_t	fc_missbufcnt;		/* buf cnt we need to repost */
386 	CHANNEL		*channelp;
387 
388 
389 } emlxs_ring_t;
390 typedef emlxs_ring_t RING;
391 
392 
393 #ifdef SAN_DIAG_SUPPORT
394 /*
395  * Although right now it's just 1 field, SAN Diag anticipates that this
396  * structure will grow in the future.
397  */
398 typedef struct sd_timestat_level0 {
399 	int		count;
400 } sd_timestat_level0_t;
401 #endif
402 
403 typedef struct emlxs_node
404 {
405 	struct emlxs_node	*nlp_list_next;
406 	struct emlxs_node	*nlp_list_prev;
407 
408 	NAME_TYPE		nlp_portname;	/* port name */
409 	NAME_TYPE		nlp_nodename;	/* node name */
410 
411 	uint32_t		nlp_DID;	/* fibre channel D_ID */
412 	uint32_t		nlp_oldDID;
413 
414 	uint16_t		nlp_Rpi;	/* login id returned by */
415 						/* REG_LOGIN */
416 	uint16_t		nlp_Xri;	/* login id returned by */
417 						/* REG_LOGIN */
418 
419 	uint8_t			nlp_fcp_info;	/* Remote class info */
420 
421 	/* nlp_fcp_info */
422 #define	NLP_FCP_TGT_DEVICE	0x10	/* FCP TGT device */
423 #define	NLP_FCP_INI_DEVICE	0x20	/* FCP Initiator device */
424 #define	NLP_FCP_2_DEVICE	0x40	/* FCP-2 TGT device */
425 #define	NLP_EMLX_VPORT		0x80    /* Virtual port */
426 
427 	uint32_t		nlp_force_rscn;
428 	uint32_t		nlp_tag;	/* Tag used by port_offline */
429 	uint32_t		flag;
430 
431 #define	NODE_POOL_ALLOCATED 	0x00000001
432 
433 	SERV_PARM		sparm;
434 
435 	/* Protected by EMLXS_TX_CHANNEL_LOCK */
436 	uint32_t		nlp_active;	/* Node active flag */
437 	uint32_t		nlp_base;
438 	uint32_t		nlp_flag[MAX_CHANNEL];	/* Node level channel */
439 							/* flags */
440 
441 	/* nlp_flag */
442 #define	NLP_CLOSED		0x1
443 #define	NLP_OFFLINE		0x2
444 #define	NLP_RPI_XRI		0x4
445 
446 	uint32_t		nlp_tics[MAX_CHANNEL];	/* gate timeout */
447 	emlxs_queue_t		nlp_tx[MAX_CHANNEL];	/* Transmit Q head */
448 	emlxs_queue_t		nlp_ptx[MAX_CHANNEL];	/* Priority transmit */
449 							/* Queue head */
450 	void			*nlp_next[MAX_CHANNEL];	/* Service Request */
451 							/* Queue pointer used */
452 							/* when node needs */
453 							/* servicing */
454 #ifdef DHCHAP_SUPPORT
455 	emlxs_node_dhc_t	node_dhc;
456 #endif	/* DHCHAP_SUPPORT */
457 
458 #ifdef SAN_DIAG_SUPPORT
459 	sd_timestat_level0_t	sd_dev_bucket[SD_IO_LATENCY_MAX_BUCKETS];
460 #endif
461 
462 	struct RPIobject	*RPIp;	/* SLI4 only */
463 #define	EMLXS_NODE_TO_RPI(_h, _n)	\
464 	((_n)?((_n->RPIp)?_n->RPIp:emlxs_sli4_find_rpi(_h, _n->nlp_Rpi)):NULL)
465 
466 } emlxs_node_t;
467 typedef emlxs_node_t NODELIST;
468 
469 
470 
471 #define	NADDR_LEN	6	/* MAC network address length */
472 typedef struct emlxs_fcip_nethdr
473 {
474 	NAME_TYPE	fc_destname;	/* destination port name */
475 	NAME_TYPE	fc_srcname;	/* source port name */
476 } emlxs_fcip_nethdr_t;
477 typedef emlxs_fcip_nethdr_t NETHDR;
478 
479 
480 #define	MEM_NLP		0	/* memory segment to hold node list entries */
481 #define	MEM_IOCB	1	/* memory segment to hold iocb commands */
482 #define	MEM_MBOX	2	/* memory segment to hold mailbox cmds  */
483 #define	MEM_BPL		3	/* and to hold buffer ptr lists - SLI2   */
484 #define	MEM_BUF		4	/* memory segment to hold buffer data   */
485 #define	MEM_ELSBUF	4	/* memory segment to hold buffer data   */
486 #define	MEM_IPBUF	5	/* memory segment to hold IP buffer data */
487 #define	MEM_CTBUF	6	/* memory segment to hold CT buffer data */
488 #define	MEM_FCTBUF	7	/* memory segment to hold FCT buffer data */
489 
490 #ifdef SFCT_SUPPORT
491 #define	FC_MAX_SEG	8
492 #else
493 #define	FC_MAX_SEG	7
494 #endif /* SFCT_SUPPORT */
495 
496 
497 /* A BPL entry is 12 bytes. Subtract 2 for command and response buffers */
498 #define	BPL_TO_SGLLEN(_bpl)   ((_bpl/12)-2)
499 #define	MEM_BPL_SIZE		1024  /* Default size */
500 
501 /* A SGL entry is 16 bytes. Subtract 2 for command and response buffers */
502 #define	SGL_TO_SGLLEN(_sgl)   ((_sgl/16)-2)
503 #define	MEM_SGL_SIZE		4096  /* Default size */
504 
505 #ifdef EMLXS_I386
506 #define	EMLXS_SGLLEN		BPL_TO_SGLLEN(MEM_BPL_SIZE)
507 #else	/* EMLXS_SPARC */
508 #define	EMLXS_SGLLEN		1
509 #endif	/* EMLXS_I386 */
510 
511 #define	MEM_BUF_SIZE		1024
512 #define	MEM_BUF_COUNT		64
513 
514 #define	MEM_ELSBUF_SIZE   	MEM_BUF_SIZE
515 #define	MEM_ELSBUF_COUNT  	hba->max_nodes
516 #define	MEM_IPBUF_SIZE  	65535
517 #define	MEM_IPBUF_COUNT		60
518 #define	MEM_CTBUF_SIZE		MAX_CT_PAYLOAD	/* (1024*320) */
519 #define	MEM_CTBUF_COUNT		8
520 #define	MEM_FCTBUF_SIZE  	65535
521 #define	MEM_FCTBUF_COUNT	128
522 
523 typedef struct emlxs_memseg
524 {
525 	uint8_t			*fc_memget_ptr;
526 	uint8_t			*fc_memget_end;
527 	uint8_t			*fc_memput_ptr;
528 	uint8_t			*fc_memput_end;
529 
530 	uint8_t			*fc_memstart_virt;	/* beginning address */
531 							/* of memory block */
532 	uint64_t		fc_memstart_phys;	/* beginning address */
533 							/* of memory block */
534 	ddi_dma_handle_t	fc_mem_dma_handle;
535 	ddi_acc_handle_t	fc_mem_dat_handle;
536 	uint32_t		fc_total_memsize;
537 	uint32_t		fc_memsize;		/* size of mem blks */
538 	uint32_t		fc_numblks;		/* no of mem blks */
539 	uint32_t		fc_memget_cnt;		/* no of mem get blks */
540 	uint32_t		fc_memput_cnt;		/* no of mem put blks */
541 	uint32_t		fc_memflag;  /* emlxs_buf_info_t FLAGS */
542 	uint32_t		fc_reserved; /* used with priority flag */
543 	uint32_t		fc_memalign;
544 	uint32_t		fc_memtag;
545 	char			fc_label[32];
546 
547 } emlxs_memseg_t;
548 typedef emlxs_memseg_t MEMSEG;
549 
550 
551 /* Board stat counters */
552 typedef struct emlxs_stats
553 {
554 	uint32_t	LinkUp;
555 	uint32_t	LinkDown;
556 	uint32_t	LinkEvent;
557 	uint32_t	LinkMultiEvent;
558 
559 	uint32_t	MboxIssued;
560 	uint32_t	MboxCompleted;	/* MboxError + MbxGood */
561 	uint32_t	MboxGood;
562 	uint32_t	MboxError;
563 	uint32_t	MboxBusy;
564 	uint32_t	MboxInvalid;
565 
566 	uint32_t	IocbIssued[MAX_CHANNEL];
567 	uint32_t	IocbReceived[MAX_CHANNEL];
568 	uint32_t	IocbTxPut[MAX_CHANNEL];
569 	uint32_t	IocbTxGet[MAX_CHANNEL];
570 	uint32_t	IocbRingFull[MAX_CHANNEL];
571 	uint32_t	IocbThrottled;
572 
573 	uint32_t	IntrEvent[8];
574 
575 	uint32_t	FcpIssued;
576 	uint32_t	FcpCompleted;	/* FcpGood + FcpError */
577 	uint32_t	FcpGood;
578 	uint32_t	FcpError;
579 
580 	uint32_t	FcpEvent;	/* FcpStray + FcpCompleted */
581 	uint32_t	FcpStray;
582 #ifdef SFCT_SUPPORT
583 	uint32_t	FctRingEvent;
584 	uint32_t	FctRingError;
585 	uint32_t	FctRingDropped;
586 #endif /* SFCT_SUPPORT */
587 
588 	uint32_t	ElsEvent;	/* ElsStray + ElsCmplt (cmd + rsp) */
589 	uint32_t	ElsStray;
590 
591 	uint32_t	ElsCmdIssued;
592 	uint32_t	ElsCmdCompleted;	/* ElsCmdGood + ElsCmdError */
593 	uint32_t	ElsCmdGood;
594 	uint32_t	ElsCmdError;
595 
596 	uint32_t	ElsRspIssued;
597 	uint32_t	ElsRspCompleted;
598 
599 	uint32_t	ElsRcvEvent;	/* ElsRcvErr + ElsRcvDrop + ElsCmdRcv */
600 	uint32_t	ElsRcvError;
601 	uint32_t	ElsRcvDropped;
602 	uint32_t	ElsCmdReceived;	/* ElsRscnRcv + ElsPlogiRcv + ... */
603 	uint32_t	ElsRscnReceived;
604 	uint32_t	ElsFlogiReceived;
605 	uint32_t	ElsPlogiReceived;
606 	uint32_t	ElsPrliReceived;
607 	uint32_t	ElsPrloReceived;
608 	uint32_t	ElsLogoReceived;
609 	uint32_t	ElsAdiscReceived;
610 	uint32_t	ElsAuthReceived;
611 	uint32_t	ElsGenReceived;
612 
613 	uint32_t	CtEvent;	/* CtStray + CtCompleted (cmd + rsp) */
614 	uint32_t	CtStray;
615 
616 	uint32_t	CtCmdIssued;
617 	uint32_t	CtCmdCompleted;	/* CtCmdGood + CtCmdError */
618 	uint32_t	CtCmdGood;
619 	uint32_t	CtCmdError;
620 
621 	uint32_t	CtRspIssued;
622 	uint32_t	CtRspCompleted;
623 
624 	uint32_t	CtRcvEvent;	/* CtRcvError + CtRcvDrop + CtCmdRcvd */
625 	uint32_t	CtRcvError;
626 	uint32_t	CtRcvDropped;
627 	uint32_t	CtCmdReceived;
628 
629 	uint32_t	IpEvent;	/* IpStray + IpSeqCmpl + IpBcastCmpl */
630 	uint32_t	IpStray;
631 
632 	uint32_t	IpSeqIssued;
633 	uint32_t	IpSeqCompleted;	/* IpSeqGood + IpSeqError */
634 	uint32_t	IpSeqGood;
635 	uint32_t	IpSeqError;
636 
637 	uint32_t	IpBcastIssued;
638 	uint32_t	IpBcastCompleted;	/* IpBcastGood + IpBcastError */
639 	uint32_t	IpBcastGood;
640 	uint32_t	IpBcastError;
641 
642 	uint32_t	IpRcvEvent;	/* IpDrop + IpSeqRcv + IpBcastRcv */
643 	uint32_t	IpDropped;
644 	uint32_t	IpSeqReceived;
645 	uint32_t	IpBcastReceived;
646 
647 	uint32_t	IpUbPosted;
648 	uint32_t	ElsUbPosted;
649 	uint32_t	CtUbPosted;
650 #ifdef SFCT_SUPPORT
651 	uint32_t	FctUbPosted;
652 #endif /* SFCT_SUPPORT */
653 
654 	uint32_t	ResetTime;	/* Time of last reset */
655 } emlxs_stats_t;
656 
657 
658 #define	FC_MAX_ADPTMSG   (8*28)	/* max size of a msg from adapter */
659 
660 #define	EMLXS_NUM_THREADS	8
661 #define	EMLXS_MIN_TASKS		8
662 #define	EMLXS_MAX_TASKS		8
663 
664 #define	EMLXS_NUM_HASH_QUES	32
665 #define	EMLXS_DID_HASH(x)	((x) & (EMLXS_NUM_HASH_QUES - 1))
666 
667 
668 /* pkt_tran_flag */
669 #define	FC_TRAN_COMPLETED	0x8000
670 
671 
672 typedef struct emlxs_dfc_event
673 {
674 	uint32_t	pid;
675 	uint32_t	event;
676 	uint32_t	last_id;
677 
678 	void		*dataout;
679 	uint32_t	size;
680 	uint32_t	mode;
681 } emlxs_dfc_event_t;
682 
683 
684 typedef struct emlxs_hba_event
685 {
686 	uint32_t	last_id;
687 	uint32_t	new;
688 	uint32_t	missed;
689 } emlxs_hba_event_t;
690 
691 
692 #ifdef SFCT_SUPPORT
693 
694 #define	TGTPORTSTAT			port->fct_stat
695 
696 /*
697  * FctP2IOXcnt will count IOs by their fcpDL. Counters
698  * are for buckets of various power of 2 sizes.
699  * Bucket 0  <  512  > 0
700  * Bucket 1  >= 512  < 1024
701  * Bucket 2  >= 1024 < 2048
702  * Bucket 3  >= 2048 < 4096
703  * Bucket 4  >= 4096 < 8192
704  * Bucket 5  >= 8192 < 16K
705  * Bucket 6  >= 16K  < 32K
706  * Bucket 7  >= 32K  < 64K
707  * Bucket 8  >= 64K  < 128K
708  * Bucket 9  >= 128K < 256K
709  * Bucket 10 >= 256K < 512K
710  * Bucket 11 >= 512K < 1MB
711  * Bucket 12 >= 1MB  < 2MB
712  * Bucket 13 >= 2MB  < 4MB
713  * Bucket 14 >= 4MB  < 8MB
714  * Bucket 15 >= 8MB
715  */
716 #define	MAX_TGTPORT_IOCNT  16
717 
718 
719 /*
720  * These routines will bump the right counter, based on
721  * the size of the IO inputed, with the least number of
722  * comparisions.  A max of 5 comparisions is only needed
723  * to classify the IO in one of 16 ranges. A binary search
724  * to locate the high bit in the size is used.
725  */
726 #define	EMLXS_BUMP_RDIOCTR(port, cnt) \
727 { \
728 	/* Use binary search to find the first high bit */ \
729 	if (cnt & 0xffff0000) { \
730 		if (cnt & 0xff800000) { \
731 			TGTPORTSTAT.FctP2IORcnt[15]++; \
732 		} \
733 		else { \
734 			/* It must be 0x007f0000 */ \
735 			if (cnt & 0x00700000) { \
736 				if (cnt & 0x00400000) { \
737 					TGTPORTSTAT.FctP2IORcnt[14]++; \
738 				} \
739 				else { \
740 					/* it must be 0x00300000 */ \
741 					if (cnt & 0x00200000) { \
742 						TGTPORTSTAT.FctP2IORcnt[13]++; \
743 					} \
744 					else { \
745 						/* It must be 0x00100000 */ \
746 						TGTPORTSTAT.FctP2IORcnt[12]++; \
747 					} \
748 				} \
749 			} \
750 			else { \
751 				/* It must be 0x000f0000 */ \
752 				if (cnt & 0x000c0000) {	\
753 					if (cnt & 0x00080000) {	\
754 						TGTPORTSTAT.FctP2IORcnt[11]++; \
755 					} \
756 					else { \
757 						/* It must be 0x00040000 */ \
758 						TGTPORTSTAT.FctP2IORcnt[10]++; \
759 					} \
760 				} \
761 				else { \
762 					/* It must be 0x00030000 */ \
763 					if (cnt & 0x00020000) {	\
764 						TGTPORTSTAT.FctP2IORcnt[9]++; \
765 					} \
766 					else { \
767 						/* It must be 0x00010000 */ \
768 						TGTPORTSTAT.FctP2IORcnt[8]++; \
769 					} \
770 				} \
771 			} \
772 		} \
773 	} \
774 	else { \
775 		if (cnt & 0x0000fe00) { \
776 			if (cnt & 0x0000f000) { \
777 				if (cnt & 0x0000c000) { \
778 					if (cnt & 0x00008000) { \
779 						TGTPORTSTAT.FctP2IORcnt[7]++; \
780 					} \
781 					else { \
782 						/* It must be 0x00004000 */ \
783 						TGTPORTSTAT.FctP2IORcnt[6]++; \
784 					} \
785 				} \
786 				else { \
787 					/* It must be 0x00000300 */ \
788 					if (cnt & 0x00000200) { \
789 						TGTPORTSTAT.FctP2IORcnt[5]++; \
790 					} \
791 					else { \
792 						/* It must be 0x00000100 */ \
793 						TGTPORTSTAT.FctP2IORcnt[4]++; \
794 					} \
795 				} \
796 			} \
797 			else { \
798 				/* It must be 0x00000e00 */ \
799 				if (cnt & 0x00000800) { \
800 					TGTPORTSTAT.FctP2IORcnt[3]++; \
801 				} \
802 				else { \
803 					/* It must be 0x00000600 */ \
804 					if (cnt & 0x00000400) { \
805 						TGTPORTSTAT.FctP2IORcnt[2]++; \
806 					} \
807 					else { \
808 						/* It must be 0x00000200 */ \
809 						TGTPORTSTAT.FctP2IORcnt[1]++; \
810 					} \
811 				} \
812 			} \
813 		} \
814 		else { \
815 			/* It must be 0x000001ff */ \
816 			TGTPORTSTAT.FctP2IORcnt[0]++; \
817 		} \
818 	} \
819 }
820 
821 
822 #define	EMLXS_BUMP_WRIOCTR(port, cnt) \
823 { \
824 /* Use binary search to find the first high bit */ \
825 	if (cnt & 0xffff0000) { \
826 		if (cnt & 0xff800000) { \
827 			TGTPORTSTAT.FctP2IOWcnt[15]++; \
828 		} \
829 		else { \
830 			/* It must be 0x007f0000 */ \
831 			if (cnt & 0x00700000) { \
832 				if (cnt & 0x00400000) { \
833 					TGTPORTSTAT.FctP2IOWcnt[14]++; \
834 				} \
835 				else { \
836 					/* It must be 0x00300000 */ \
837 					if (cnt & 0x00200000) { \
838 						TGTPORTSTAT.FctP2IOWcnt[13]++; \
839 					} \
840 					else { \
841 						/* It must be 0x00100000 */ \
842 						TGTPORTSTAT.FctP2IOWcnt[12]++; \
843 					} \
844 				} \
845 			} \
846 			else { \
847 				/* It must be 0x000f0000 */ \
848 				if (cnt & 0x000c0000) { \
849 					if (cnt & 0x00080000) { \
850 						TGTPORTSTAT.FctP2IOWcnt[11]++; \
851 					} \
852 					else { \
853 						/* it must be 0x00040000 */ \
854 						TGTPORTSTAT.FctP2IOWcnt[10]++; \
855 					} \
856 				} \
857 				else { \
858 					/* It must be 0x00030000 */ \
859 					if (cnt & 0x00020000) { \
860 						TGTPORTSTAT.FctP2IOWcnt[9]++; \
861 					} \
862 					else { \
863 						/* It must be 0x00010000 */ \
864 						TGTPORTSTAT.FctP2IOWcnt[8]++; \
865 					} \
866 				} \
867 			} \
868 		} \
869 	} \
870 	else { \
871 		if (cnt & 0x0000fe00) { \
872 			if (cnt & 0x0000f000) { \
873 				if (cnt & 0x0000c000) { \
874 					if (cnt & 0x00008000) { \
875 						TGTPORTSTAT.FctP2IOWcnt[7]++; \
876 					} \
877 					else { \
878 						/* It must be 0x00004000 */ \
879 						TGTPORTSTAT.FctP2IOWcnt[6]++; \
880 					} \
881 				} \
882 				else { \
883 					/* It must be 0x00000300 */ \
884 					if (cnt & 0x00000200) { \
885 						TGTPORTSTAT.FctP2IOWcnt[5]++; \
886 					} \
887 					else { \
888 						/* It must be 0x00000100 */ \
889 						TGTPORTSTAT.FctP2IOWcnt[4]++; \
890 					} \
891 				} \
892 			} \
893 			else { \
894 				/* It must be 0x00000e00 */ \
895 				if (cnt & 0x00000800) { \
896 					TGTPORTSTAT.FctP2IOWcnt[3]++; \
897 				} \
898 				else { \
899 					/* It must be 0x00000600 */ \
900 					if (cnt & 0x00000400) { \
901 						TGTPORTSTAT.FctP2IOWcnt[2]++; \
902 					} \
903 					else { \
904 						/* It must be 0x00000200 */ \
905 						TGTPORTSTAT.FctP2IOWcnt[1]++; \
906 					} \
907 				} \
908 			} \
909 		} \
910 		else { \
911 			/* It must be 0x000001ff */ \
912 			TGTPORTSTAT.FctP2IOWcnt[0]++; \
913 		} \
914 	} \
915 }
916 
917 typedef struct emlxs_tgtport_stat
918 {
919 	/* IO counters */
920 	uint64_t	FctP2IOWcnt[MAX_TGTPORT_IOCNT]; /* Writes */
921 	uint64_t	FctP2IORcnt[MAX_TGTPORT_IOCNT]; /* Reads  */
922 	uint64_t	FctIOCmdCnt;			/* Other, ie TUR */
923 	uint64_t	FctCmdReceived;			/* total IOs */
924 	uint64_t	FctReadBytes;			/* total read bytes */
925 	uint64_t	FctWriteBytes;			/* total write bytes */
926 
927 	/* IOCB handling counters */
928 	uint64_t	FctEvent;	/* FctStray + FctCompleted */
929 	uint64_t	FctCompleted;	/* FctCmplGood + FctCmplError */
930 	uint64_t	FctCmplGood;
931 
932 	uint32_t	FctCmplError;
933 	uint32_t	FctStray;
934 
935 	/* Fct event counters */
936 	uint32_t	FctRcvDropped;
937 	uint32_t	FctOverQDepth;
938 	uint32_t	FctOutstandingIO;
939 	uint32_t	FctFailedPortRegister;
940 	uint32_t	FctPortRegister;
941 	uint32_t	FctPortDeregister;
942 
943 	uint32_t	FctAbortSent;
944 	uint32_t	FctNoBuffer;
945 	uint32_t	FctScsiStatusErr;
946 	uint32_t	FctScsiQfullErr;
947 	uint32_t	FctScsiResidOver;
948 	uint32_t	FctScsiResidUnder;
949 	uint32_t	FctScsiSenseErr;
950 
951 	uint32_t	FctFiller1;
952 } emlxs_tgtport_stat_t;
953 
954 #ifdef FCT_IO_TRACE
955 #define	MAX_IO_TRACE	67
956 typedef struct emlxs_iotrace
957 {
958 	fct_cmd_t	*fct_cmd;
959 	uint32_t	xri;
960 	uint8_t		marker;  /* 0xff */
961 	uint8_t		trc[MAX_IO_TRACE]; /* trc[0] = index */
962 } emlxs_iotrace_t;
963 #endif /* FCT_IO_TRACE */
964 #endif /* SFCT_SUPPORT */
965 
966 
967 /*
968  *     Port Information Data Structure
969  */
970 
971 typedef struct emlxs_port
972 {
973 	struct emlxs_hba	*hba;
974 
975 	/* Virtual port management */
976 	uint32_t		vpi;
977 	uint32_t		flag;
978 #define	EMLXS_PORT_ENABLE		0x00000001
979 #define	EMLXS_PORT_BOUND		0x00000002
980 
981 #define	EMLXS_PORT_REGISTERED		0x00010000	/* VPI registered */
982 #define	EMLXS_PORT_INIT_VPI_CMPL	0x00020000	/* Init VPI - SLI4 */
983 #define	EMLXS_PORT_REG_VPI_CMPL		0x00040000	/* Reg VPI - SLI4 */
984 #define	EMLXS_PORT_IP_UP		0x00000010
985 #define	EMLXS_PORT_CONFIG		0x00000020
986 #define	EMLXS_PORT_RESTRICTED		0x00000040	/* Restrict logins */
987 							/* flag */
988 #define	EMLXS_PORT_FLOGI_CMPL		0x00000080	/* Fabric login */
989 							/* completed */
990 
991 #define	EMLXS_PORT_RESET_MASK		0x0000FFFF	/* Flags to keep */
992 							/* across hard reset */
993 #define	EMLXS_PORT_LINKDOWN_MASK	0xFFFFFFFF	/* Flags to keep */
994 							/* across link reset */
995 
996 	uint32_t		options;
997 #define	EMLXS_OPT_RESTRICT		0x00000001	/* Force restricted */
998 							/* logins */
999 #define	EMLXS_OPT_UNRESTRICT		0x00000002	/* Force Unrestricted */
1000 							/* logins */
1001 #define	EMLXS_OPT_RESTRICT_MASK		0x00000003
1002 
1003 
1004 	/* FC world wide names */
1005 	NAME_TYPE		wwnn;
1006 	NAME_TYPE		wwpn;
1007 	char			snn[256];
1008 	char			spn[256];
1009 
1010 	/* Common service paramters */
1011 	SERV_PARM		sparam;
1012 	SERV_PARM		fabric_sparam;
1013 
1014 	/* fc_id management */
1015 	uint32_t		did;
1016 	uint32_t		prev_did;
1017 
1018 	/* support FC_PORT_GET_P2P_INFO only */
1019 	uint32_t		rdid;
1020 
1021 	/* FC_AL management */
1022 	uint8_t			lip_type;
1023 	uint8_t			alpa_map[128];
1024 
1025 	/* Node management */
1026 	emlxs_node_t		node_base;
1027 	uint32_t		node_count;
1028 	krwlock_t		node_rwlock;
1029 	emlxs_node_t		*node_table[EMLXS_NUM_HASH_QUES];
1030 
1031 	/* Polled packet management */
1032 	kcondvar_t		pkt_lock_cv;	/* pkt polling */
1033 	kmutex_t		pkt_lock;	/* pkt polling */
1034 
1035 	/* ULP */
1036 	uint32_t		ulp_statec;
1037 	void			(*ulp_statec_cb) ();	/* Port state change */
1038 							/* callback routine */
1039 	void			(*ulp_unsol_cb) ();	/* unsolicited event */
1040 							/* callback routine */
1041 	opaque_t		ulp_handle;
1042 
1043 	/* ULP unsolicited buffers */
1044 	kmutex_t		ub_lock;
1045 	uint32_t		ub_count;
1046 	emlxs_unsol_buf_t	*ub_pool;
1047 	uint32_t		ub_post[MAX_CHANNEL];
1048 	uint32_t		ub_timer;
1049 
1050 	emlxs_ub_priv_t		*ub_wait_head;	/* Unsolicited IO received */
1051 						/* before link up */
1052 	emlxs_ub_priv_t		*ub_wait_tail;	/* Unsolicited IO received */
1053 						/* before link up */
1054 
1055 
1056 #ifdef DHCHAP_SUPPORT
1057 	emlxs_port_dhc_t	port_dhc;
1058 #endif	/* DHCHAP_SUPPORT */
1059 
1060 	uint16_t		ini_mode;
1061 	uint16_t		tgt_mode;
1062 
1063 #ifdef SFCT_SUPPORT
1064 
1065 #define	FCT_BUF_COUNT_512		256
1066 #define	FCT_BUF_COUNT_8K		128
1067 #define	FCT_BUF_COUNT_64K		64
1068 #define	FCT_BUF_COUNT_128K		64
1069 #define	FCT_MAX_BUCKETS			16
1070 #define	FCT_DMEM_MAX_BUF_SIZE		131072   /* 128K */
1071 #define	FCT_DMEM_MAX_BUF_SEGMENT	8388608  /* 8M */
1072 
1073 	struct emlxs_fct_dmem_bucket dmem_bucket[FCT_MAX_BUCKETS];
1074 
1075 	char			cfd_name[24];
1076 	stmf_port_provider_t	*port_provider;
1077 	fct_local_port_t	*fct_port;
1078 	uint32_t		fct_flags;
1079 
1080 #define	FCT_STATE_PORT_ONLINE		0x00000001
1081 #define	FCT_STATE_NOT_ACKED		0x00000002
1082 #define	FCT_STATE_LINK_UP		0x00000010
1083 #define	FCT_STATE_LINK_UP_ACKED		0x00000020
1084 
1085 	emlxs_tgtport_stat_t	fct_stat;
1086 
1087 	/* Used to save fct_cmd for deferred unsol ELS commands, except FLOGI */
1088 	emlxs_buf_t		*fct_wait_head;
1089 	emlxs_buf_t		*fct_wait_tail;
1090 
1091 	/* Used to save context for deferred unsol FLOGIs */
1092 	fct_flogi_xchg_t	fx;
1093 
1094 #ifdef FCT_IO_TRACE
1095 	emlxs_iotrace_t		*iotrace;
1096 	uint16_t		iotrace_cnt;
1097 	uint16_t		iotrace_index;
1098 	kmutex_t		iotrace_mtx;
1099 #endif /* FCT_IO_TRACE */
1100 
1101 #endif /* SFCT_SUPPORT */
1102 
1103 #ifdef SAN_DIAG_SUPPORT
1104 	uint8_t			sd_io_latency_state;
1105 #define	SD_INVALID	0x00
1106 #define	SD_COLLECTING	0x01
1107 #define	SD_STOPPED	0x02
1108 
1109 	/* SD event management list */
1110 	uint32_t		sd_event_mask;   /* bit-mask */
1111 	emlxs_dfc_event_t	sd_events[MAX_DFC_EVENTS];
1112 #endif
1113 	/* Used for SLI4 */
1114 	uint16_t	outstandingRPIs;
1115 	struct VFIobject *VFIp;
1116 } emlxs_port_t;
1117 
1118 
1119 
1120 /* Host Attn reg */
1121 #define	FC_HA_REG(_hba)		((volatile uint32_t *) \
1122 				    ((_hba)->sli.sli3.ha_reg_addr))
1123 
1124 /* Chip Attn reg */
1125 #define	FC_CA_REG(_hba)		((volatile uint32_t *) \
1126 				    ((_hba)->sli.sli3.ca_reg_addr))
1127 
1128 /* Host Status reg */
1129 #define	FC_HS_REG(_hba)		((volatile uint32_t *) \
1130 				    ((_hba)->sli.sli3.hs_reg_addr))
1131 
1132 /* Host Cntl reg */
1133 #define	FC_HC_REG(_hba)		((volatile uint32_t *) \
1134 				    ((_hba)->sli.sli3.hc_reg_addr))
1135 
1136 /* BIU Configuration reg */
1137 #define	FC_BC_REG(_hba)		((volatile uint32_t *) \
1138 				    ((_hba)->sli.sli3.bc_reg_addr))
1139 
1140 /* Used by SBUS adapter */
1141 /* TITAN Cntl reg */
1142 #define	FC_SHC_REG(_hba)	((volatile uint32_t *) \
1143 				    ((_hba)->sli.sli3.shc_reg_addr))
1144 
1145 /* TITAN Status reg */
1146 #define	FC_SHS_REG(_hba)	((volatile uint32_t *) \
1147 				    ((_hba)->sli.sli3.shs_reg_addr))
1148 
1149 /* TITAN Update reg */
1150 #define	FC_SHU_REG(_hba)	((volatile uint32_t *) \
1151 				    ((_hba)->sli.sli3.shu_reg_addr))
1152 
1153 /* MPU Semaphore reg */
1154 #define	FC_SEMA_REG(_hba)	((volatile uint32_t *)\
1155 				    ((_hba)->sli.sli4.MPUEPSemaphore_reg_addr))
1156 
1157 /* Bootstrap Mailbox Doorbell reg */
1158 #define	FC_MBDB_REG(_hba)	((volatile uint32_t *) \
1159 				    ((_hba)->sli.sli4.MBDB_reg_addr))
1160 
1161 /* MQ Doorbell reg */
1162 #define	FC_MQDB_REG(_hba)	((volatile uint32_t *) \
1163 				    ((_hba)->sli.sli4.MQDB_reg_addr))
1164 
1165 /* CQ Doorbell reg */
1166 #define	FC_CQDB_REG(_hba)	((volatile uint32_t *) \
1167 				    ((_hba)->sli.sli4.CQDB_reg_addr))
1168 
1169 /* WQ Doorbell reg */
1170 #define	FC_WQDB_REG(_hba)	((volatile uint32_t *) \
1171 				    ((_hba)->sli.sli4.WQDB_reg_addr))
1172 
1173 /* RQ Doorbell reg */
1174 #define	FC_RQDB_REG(_hba)	((volatile uint32_t *) \
1175 				    ((_hba)->sli.sli4.RQDB_reg_addr))
1176 
1177 
1178 #define	FC_SLIM2_MAILBOX(_hba)	((MAILBOX *)(_hba)->sli.sli3.slim2.virt)
1179 
1180 #define	FC_SLIM1_MAILBOX(_hba)	((MAILBOX *)(_hba)->sli.sli3.slim_addr)
1181 
1182 #define	FC_MAILBOX(_hba)	(((_hba)->flag & FC_SLIM2_MODE) ? \
1183 	FC_SLIM2_MAILBOX(_hba) : FC_SLIM1_MAILBOX(_hba))
1184 
1185 #define	WRITE_CSR_REG(_hba, _regp, _value) ddi_put32(\
1186 	(_hba)->sli.sli3.csr_acc_handle, (uint32_t *)(_regp), \
1187 	(uint32_t)(_value))
1188 
1189 #define	READ_CSR_REG(_hba, _regp) ddi_get32(\
1190 	(_hba)->sli.sli3.csr_acc_handle, (uint32_t *)(_regp))
1191 
1192 #define	WRITE_SLIM_ADDR(_hba, _regp, _value) ddi_put32(\
1193 	(_hba)->sli.sli3.slim_acc_handle, (uint32_t *)(_regp), \
1194 	(uint32_t)(_value))
1195 
1196 #define	READ_SLIM_ADDR(_hba, _regp) ddi_get32(\
1197 	(_hba)->sli.sli3.slim_acc_handle, (uint32_t *)(_regp))
1198 
1199 #define	WRITE_SLIM_COPY(_hba, _bufp, _slimp, _wcnt) ddi_rep_put32(\
1200 	(_hba)->sli.sli3.slim_acc_handle, (uint32_t *)(_bufp), \
1201 	(uint32_t *)(_slimp), (_wcnt), DDI_DEV_AUTOINCR)
1202 
1203 #define	READ_SLIM_COPY(_hba, _bufp, _slimp, _wcnt) ddi_rep_get32(\
1204 	(_hba)->sli.sli3.slim_acc_handle, (uint32_t *)(_bufp), \
1205 	(uint32_t *)(_slimp), (_wcnt), DDI_DEV_AUTOINCR)
1206 
1207 /* Used by SBUS adapter */
1208 #define	WRITE_SBUS_CSR_REG(_hba, _regp, _value)	ddi_put32(\
1209 	(_hba)->sli.sli3.sbus_csr_handle, (uint32_t *)(_regp), \
1210 	(uint32_t)(_value))
1211 
1212 #define	READ_SBUS_CSR_REG(_hba, _regp) ddi_get32(\
1213 	(_hba)->sli.sli3.sbus_csr_handle, (uint32_t *)(_regp))
1214 
1215 #define	SBUS_WRITE_FLASH_COPY(_hba, _offset, _value) ddi_put8(\
1216 	(_hba)->sli.sli3.sbus_flash_acc_handle, \
1217 	(uint8_t *)((volatile uint8_t *)(_hba)->sli.sli3.sbus_flash_addr + \
1218 	(_offset)), (uint8_t)(_value))
1219 
1220 #define	SBUS_READ_FLASH_COPY(_hba, _offset) ddi_get8(\
1221 	(_hba)->sli.sli3.sbus_flash_acc_handle, \
1222 	(uint8_t *)((volatile uint8_t *)(_hba)->sli.sli3.sbus_flash_addr + \
1223 	(_offset)))
1224 
1225 /* SLI4 registers */
1226 #define	WRITE_BAR1_REG(_hba, _regp, _value) ddi_put32(\
1227 	(_hba)->sli.sli4.bar1_acc_handle, (uint32_t *)(_regp), \
1228 	(uint32_t)(_value))
1229 
1230 #define	READ_BAR1_REG(_hba, _regp) ddi_get32(\
1231 	(_hba)->sli.sli4.bar1_acc_handle, (uint32_t *)(_regp))
1232 
1233 #define	WRITE_BAR2_REG(_hba, _regp, _value) ddi_put32(\
1234 	(_hba)->sli.sli4.bar2_acc_handle, (uint32_t *)(_regp), \
1235 	(uint32_t)(_value))
1236 
1237 #define	READ_BAR2_REG(_hba, _regp) ddi_get32(\
1238 	(_hba)->sli.sli4.bar2_acc_handle, (uint32_t *)(_regp))
1239 
1240 
1241 #define	EMLXS_STATE_CHANGE(_hba, _state)\
1242 {									\
1243 	mutex_enter(&EMLXS_PORT_LOCK);					\
1244 	EMLXS_STATE_CHANGE_LOCKED((_hba), (_state));			\
1245 	mutex_exit(&EMLXS_PORT_LOCK);					\
1246 }
1247 
1248 /* Used when EMLXS_PORT_LOCK is already held */
1249 #define	EMLXS_STATE_CHANGE_LOCKED(_hba, _state)			\
1250 {									\
1251 	if ((_hba)->state != (_state))					\
1252 	{								\
1253 		uint32_t _st = _state;					\
1254 		EMLXS_MSGF(EMLXS_CONTEXT,				\
1255 			&emlxs_state_msg, "%s --> %s",			\
1256 			emlxs_ffstate_xlate((_hba)->state),		\
1257 			emlxs_ffstate_xlate(_state));			\
1258 			(_hba)->state = (_state);			\
1259 		if ((_st) == FC_ERROR)					\
1260 		{							\
1261 			(_hba)->flag |= FC_HARDWARE_ERROR;		\
1262 		}							\
1263 	}								\
1264 }
1265 
1266 #ifdef FMA_SUPPORT
1267 #define	EMLXS_CHK_ACC_HANDLE(_hba, _acc) \
1268 	if (emlxs_fm_check_acc_handle(_hba, _acc) != DDI_FM_OK) { \
1269 		EMLXS_MSGF(EMLXS_CONTEXT, \
1270 		    &emlxs_invalid_access_handle_msg, NULL); \
1271 	}
1272 #endif  /* FMA_SUPPORT */
1273 
1274 /*
1275  * This is the HBA control area for the adapter
1276  */
1277 
1278 #ifdef MODSYM_SUPPORT
1279 
1280 typedef struct emlxs_modsym
1281 {
1282 	ddi_modhandle_t  mod_fctl;	/* For Leadville */
1283 
1284 	/* Leadville (fctl) */
1285 	int		(*fc_fca_attach)(dev_info_t *, fc_fca_tran_t *);
1286 	int		(*fc_fca_detach)(dev_info_t *);
1287 	int		(*fc_fca_init)(struct dev_ops *);
1288 
1289 #ifdef SFCT_SUPPORT
1290 	uint32_t	fct_modopen;
1291 	uint32_t	reserved;  /* Padding for alignment */
1292 
1293 	ddi_modhandle_t  mod_fct;	/* For Comstar */
1294 	ddi_modhandle_t  mod_stmf;	/* For Comstar */
1295 
1296 	/* Comstar (fct) */
1297 	void*	(*fct_alloc)(fct_struct_id_t, int, int);
1298 	void	(*fct_free)(void *);
1299 	void*	(*fct_scsi_task_alloc)(void *, uint16_t, uint32_t, uint8_t *,
1300 			uint16_t, uint16_t);
1301 	int	(*fct_register_local_port)(fct_local_port_t *);
1302 	void	(*fct_deregister_local_port)(fct_local_port_t *);
1303 	void	(*fct_handle_event)(fct_local_port_t *, int, uint32_t, caddr_t);
1304 	void	(*fct_post_rcvd_cmd)(fct_cmd_t *, stmf_data_buf_t *);
1305 	void	(*fct_ctl)(void *, int, void *);
1306 	void	(*fct_queue_cmd_for_termination)(fct_cmd_t *, fct_status_t);
1307 	void	(*fct_send_response_done)(fct_cmd_t *, fct_status_t, uint32_t);
1308 	void	(*fct_send_cmd_done)(fct_cmd_t *, fct_status_t, uint32_t);
1309 	void	(*fct_scsi_data_xfer_done)(fct_cmd_t *, stmf_data_buf_t *,
1310 			uint32_t);
1311 	fct_status_t	(*fct_port_shutdown)
1312 				(fct_local_port_t *, uint32_t, char *);
1313 	fct_status_t	(*fct_port_initialize)
1314 				(fct_local_port_t *, uint32_t, char *);
1315 	void		(*fct_cmd_fca_aborted)
1316 				(fct_cmd_t *, fct_status_t, int);
1317 	fct_status_t	(*fct_handle_rcvd_flogi)
1318 				(fct_local_port_t *, fct_flogi_xchg_t *);
1319 
1320 	/* Comstar (stmf) */
1321 	void*  (*stmf_alloc)(stmf_struct_id_t, int, int);
1322 	void   (*stmf_free)(void *);
1323 	void	(*stmf_deregister_port_provider) (stmf_port_provider_t *);
1324 	int	(*stmf_register_port_provider) (stmf_port_provider_t *);
1325 #endif /* SFCT_SUPPORT */
1326 } emlxs_modsym_t;
1327 extern emlxs_modsym_t emlxs_modsym;
1328 
1329 #define	MODSYM(_f)	emlxs_modsym._f
1330 
1331 #else
1332 
1333 #define	MODSYM(_f)	_f
1334 
1335 #endif /* MODSYM_SUPPORT */
1336 
1337 
1338 
1339 /* defines for resource state */
1340 #define	RESOURCE_FREE		0
1341 #define	RESOURCE_ALLOCATED	1
1342 
1343 #define	RESOURCE_FCFI_REG	2
1344 #define	RESOURCE_FCFI_DISC	4
1345 #define	RESOURCE_FCFI_VLAN_ID	8
1346 
1347 #define	RESOURCE_VFI_REG	2
1348 
1349 #define	RESOURCE_RPI_PAUSED	2
1350 
1351 #define	RESOURCE_XRI_RESERVED		2
1352 #define	RESOURCE_XRI_PENDING_IO		4
1353 #define	RESOURCE_XRI_ABORT_INP		8
1354 
1355 typedef struct VFIobject
1356 {
1357 	uint16_t	index;
1358 	uint16_t	VFI;
1359 	uint16_t	state;
1360 	uint16_t	outstandingVPIs;
1361 	struct FCFIobject *FCFIp;
1362 } VFIobj_t;
1363 
1364 typedef struct RPIobject
1365 {
1366 	uint16_t	index;
1367 	uint16_t	RPI;
1368 	uint16_t	state;
1369 	uint16_t	outstandingXRIs;
1370 	emlxs_port_t	*VPIp;
1371 	uint32_t	did;
1372 	emlxs_node_t	*node;
1373 } RPIobj_t;
1374 
1375 typedef struct XRIobject
1376 {
1377 	struct XRIobject *_f;
1378 	struct XRIobject *_b;
1379 	uint16_t	XRI;
1380 	uint16_t	state;
1381 	uint16_t	sge_count;
1382 	uint16_t	iotag;
1383 	MBUF_INFO	SGList;
1384 	RPIobj_t	*RPIp;
1385 	emlxs_buf_t	*sbp;
1386 	uint32_t 	rx_id; /* Used for unsol exchanges */
1387 } XRIobj_t;
1388 
1389 typedef struct FCFIobject
1390 {
1391 	uint16_t	index;
1392 	uint16_t	FCFI;
1393 	uint16_t	FCF_index;
1394 	uint16_t	state;
1395 	uint16_t	outstandingVFIs;
1396 	uint16_t	vlan_id;
1397 	uint32_t	EventTag;
1398 	struct VFIobject *fcf_vfi;
1399 	emlxs_port_t	*fcf_vpi;
1400 	struct RPIobject scratch_rpi;
1401 	SERV_PARM	fcf_sparam;
1402 	FCF_RECORD_t	fcf_rec;
1403 } FCFIobj_t;
1404 
1405 typedef struct RPIHdrTmplate
1406 {
1407 	uint32_t	Word[16];  /* 64 bytes */
1408 } RPIHdrTmplate_t;
1409 
1410 typedef struct EQ_DESC
1411 {
1412 	uint16_t	host_index;
1413 	uint16_t	max_index;
1414 	uint16_t	qid;
1415 	uint16_t	msix_vector;
1416 	kmutex_t	lastwq_lock;
1417 	uint16_t	lastwq;
1418 	MBUF_INFO	addr;
1419 } EQ_DESC_t;
1420 
1421 typedef struct CQ_DESC
1422 {
1423 	uint16_t	host_index;
1424 	uint16_t	max_index;
1425 	uint16_t	qid;
1426 	uint16_t	eqid;
1427 	uint16_t	type;
1428 #define	EMLXS_CQ_TYPE_GROUP1	1  /* associated with a MQ and async events */
1429 #define	EMLXS_CQ_TYPE_GROUP2	2  /* associated with a WQ and RQ */
1430 	uint16_t	rsvd;
1431 
1432 	MBUF_INFO	addr;
1433 	CHANNEL		*channelp; /* ptr to CHANNEL associated with CQ */
1434 
1435 } CQ_DESC_t;
1436 
1437 typedef struct WQ_DESC
1438 {
1439 	uint16_t	host_index;
1440 	uint16_t	max_index;
1441 	uint16_t	port_index;
1442 	uint16_t	release_depth;
1443 #define	WQE_RELEASE_DEPTH	(8 * EMLXS_NUM_WQ_PAGES)
1444 	uint16_t	qid;
1445 	uint16_t	cqid;
1446 	MBUF_INFO	addr;
1447 } WQ_DESC_t;
1448 
1449 typedef struct RQ_DESC
1450 {
1451 	uint16_t	host_index;
1452 	uint16_t	max_index;
1453 	uint16_t	qid;
1454 	uint16_t	cqid;
1455 
1456 	MBUF_INFO	addr;
1457 	MBUF_INFO	rqb[RQ_DEPTH];
1458 
1459 	kmutex_t	lock;
1460 
1461 } RQ_DESC_t;
1462 
1463 
1464 typedef struct RXQ_DESC
1465 {
1466 	kmutex_t	lock;
1467 	emlxs_queue_t	active;
1468 
1469 } RXQ_DESC_t;
1470 
1471 
1472 typedef struct MQ_DESC
1473 {
1474 	uint16_t	host_index;
1475 	uint16_t	max_index;
1476 	uint16_t	qid;
1477 	uint16_t	cqid;
1478 	MBUF_INFO	addr;
1479 } MQ_DESC_t;
1480 
1481 /* Define the number of queues the driver will be using */
1482 #define	EMLXS_MAX_EQS	EMLXS_MSI_MAX_INTRS
1483 #define	EMLXS_MAX_WQS	EMLXS_MSI_MAX_INTRS
1484 #define	EMLXS_MAX_RQS	2	/* ONLY 1 pair is allowed */
1485 #define	EMLXS_MAX_MQS	1
1486 
1487 /* One CQ for each WQ & (RQ pair) plus one for the MQ */
1488 #define	EMLXS_MAX_CQS	(EMLXS_MAX_WQS + (EMLXS_MAX_RQS/2) + 1)
1489 
1490 /* The First CQ created is ALWAYS for mbox / event handling */
1491 #define	EMLXS_CQ_MBOX		0
1492 
1493 /* The Second CQ created is ALWAYS for unsol rcv handling */
1494 /* At this time we are allowing ONLY 1 pair of RQs */
1495 #define	EMLXS_CQ_RCV		1
1496 
1497 /* The remaining CQs are for WQ completions */
1498 #define	EMLXS_CQ_OFFSET_WQ	2
1499 
1500 
1501 /* FCFI RQ Configuration */
1502 #define	EMLXS_FCFI_RQ0_INDEX	0
1503 #define	EMLXS_FCFI_RQ0_RMASK	0 /* match all */
1504 #define	EMLXS_FCFI_RQ0_RCTL	0 /* match all */
1505 #define	EMLXS_FCFI_RQ0_TMASK	0 /* match all */
1506 #define	EMLXS_FCFI_RQ0_TYPE	0 /* match all */
1507 
1508 /* Define the maximum value for a Queue Id */
1509 #define	EMLXS_MAX_EQ_IDS	256
1510 #define	EMLXS_MAX_CQ_IDS	1024
1511 #define	EMLXS_MAX_WQ_IDS	1024
1512 #define	EMLXS_MAX_RQ_IDS	4
1513 
1514 #define	EMLXS_RXQ_ELS		0
1515 #define	EMLXS_RXQ_CT		1
1516 #define	EMLXS_MAX_RXQS		2
1517 
1518 #define	PCI_CONFIG_SIZE   0x80
1519 
1520 typedef struct emlxs_sli3
1521 {
1522 	/* SLIM management */
1523 	MATCHMAP	slim2;
1524 
1525 	/* HBQ management */
1526 	uint32_t	hbq_count;	/* Total number of HBQs */
1527 					/* configured */
1528 	HBQ_INIT_t	hbq_table[EMLXS_NUM_HBQ];
1529 
1530 	/* Adapter memory management */
1531 	caddr_t		csr_addr;
1532 	caddr_t		slim_addr;
1533 	ddi_acc_handle_t csr_acc_handle;
1534 	ddi_acc_handle_t slim_acc_handle;
1535 
1536 	/* SBUS adapter management */
1537 	caddr_t		sbus_flash_addr;	/* Virt addr of R/W */
1538 						/* Flash */
1539 	caddr_t		sbus_core_addr;		/* Virt addr of TITAN */
1540 						/* CORE */
1541 	caddr_t		sbus_csr_addr;		/* Virt addr of TITAN */
1542 						/* CSR */
1543 	ddi_acc_handle_t sbus_flash_acc_handle;
1544 	ddi_acc_handle_t sbus_core_acc_handle;
1545 	ddi_acc_handle_t sbus_csr_handle;
1546 
1547 	/* SLI 2/3 Adapter register management */
1548 	uint32_t	*bc_reg_addr;	/* virtual offset for BIU */
1549 					/* config reg */
1550 	uint32_t	*ha_reg_addr;	/* virtual offset for host */
1551 					/* attn reg */
1552 	uint32_t	*hc_reg_addr;	/* virtual offset for host */
1553 					/* ctl reg */
1554 	uint32_t	*ca_reg_addr;	/* virtual offset for FF */
1555 					/* attn reg */
1556 	uint32_t	*hs_reg_addr;	/* virtual offset for */
1557 					/* status reg */
1558 	uint32_t	*shc_reg_addr;	/* virtual offset for SBUS */
1559 					/* Ctrl reg */
1560 	uint32_t	*shs_reg_addr;	/* virtual offset for SBUS */
1561 					/* Status reg */
1562 	uint32_t	*shu_reg_addr;	/* virtual offset for SBUS */
1563 					/* Update reg */
1564 	uint16_t	hgp_ring_offset;
1565 	uint16_t	hgp_hbq_offset;
1566 	uint16_t	iocb_cmd_size;
1567 	uint16_t	iocb_rsp_size;
1568 	uint32_t	hc_copy;	/* local copy of HC register */
1569 
1570 	/* Ring management */
1571 	uint32_t	ring_count;
1572 	emlxs_ring_t	ring[MAX_RINGS];
1573 	kmutex_t	ring_cmd_lock[MAX_RINGS];
1574 	uint8_t		ring_masks[4];	/* number of masks/rings used */
1575 	uint8_t		ring_rval[6];
1576 	uint8_t		ring_rmask[6];
1577 	uint8_t		ring_tval[6];
1578 	uint8_t		ring_tmask[6];
1579 
1580 	/* Protected by EMLXS_FCTAB_LOCK */
1581 #ifdef EMLXS_SPARC
1582 	MEMSEG		fcp_bpl_seg;
1583 	MATCHMAP	**fcp_bpl_table; /* iotag table for */
1584 					/* bpl buffers */
1585 #endif	/* EMLXS_SPARC */
1586 	uint32_t	mem_bpl_size;
1587 } emlxs_sli3_t;
1588 
1589 typedef struct emlxs_sli4
1590 {
1591 	MATCHMAP	bootstrapmb;
1592 	caddr_t		bar1_addr;
1593 	caddr_t		bar2_addr;
1594 	ddi_acc_handle_t bar1_acc_handle;
1595 	ddi_acc_handle_t bar2_acc_handle;
1596 
1597 	/* SLI4 Adapter register management */
1598 	uint32_t	*MPUEPSemaphore_reg_addr;
1599 	uint32_t	*MBDB_reg_addr;
1600 
1601 	uint32_t	*CQDB_reg_addr;
1602 	uint32_t	*MQDB_reg_addr;
1603 	uint32_t	*WQDB_reg_addr;
1604 	uint32_t	*RQDB_reg_addr;
1605 
1606 	uint32_t	flag;
1607 #define	EMLXS_SLI4_INTR_ENABLED		0x1
1608 
1609 	uint16_t	XRICount;
1610 	uint16_t	XRIBase;
1611 	uint16_t	RPICount;
1612 	uint16_t	RPIBase;
1613 	uint16_t	VPICount;
1614 	uint16_t	VPIBase;
1615 	uint16_t	VFICount;
1616 	uint16_t	VFIBase;
1617 	uint16_t	FCFICount;
1618 
1619 	kmutex_t	id_lock; /* for FCFI, VFI, VPI, RPI, XRI mgmt */
1620 	FCFIobj_t	*FCFIp;
1621 	VFIobj_t	*VFIp;
1622 
1623 	/* Save Config Region 23 info */
1624 	tlv_fcoe_t	cfgFCOE;
1625 	tlv_fcfconnectlist_t	cfgFCF;
1626 
1627 	MBUF_INFO	slim2;
1628 	MBUF_INFO	dump_region;
1629 #define	EMLXS_DUMP_REGION_SIZE	1024
1630 
1631 	RPIobj_t	*RPIp;
1632 	MBUF_INFO	HeaderTmplate;
1633 	XRIobj_t	*XRIp;
1634 
1635 	/* Double linked list for available XRIs */
1636 	XRIobj_t	*XRIfree_f;
1637 	XRIobj_t	*XRIfree_b;
1638 	uint32_t	xrif_count;
1639 	uint32_t	mem_sgl_size;
1640 
1641 	/* Double linked list for XRIs in use */
1642 	XRIobj_t	*XRIinuse_f;
1643 	XRIobj_t	*XRIinuse_b;
1644 	uint32_t	xria_count;
1645 
1646 	EQ_DESC_t	eq[EMLXS_MAX_EQS];
1647 	CQ_DESC_t	cq[EMLXS_MAX_CQS];
1648 	WQ_DESC_t	wq[EMLXS_MAX_WQS];
1649 	RQ_DESC_t	rq[EMLXS_MAX_RQS];
1650 	MQ_DESC_t	mq;
1651 
1652 	/* Used to map a queue ID to a queue DESC_t */
1653 	uint16_t	eq_map[EMLXS_MAX_EQ_IDS];
1654 	uint16_t	cq_map[EMLXS_MAX_CQ_IDS];
1655 	uint16_t	wq_map[EMLXS_MAX_WQ_IDS];
1656 	uint16_t	rq_map[EMLXS_MAX_RQ_IDS];
1657 
1658 	RXQ_DESC_t	rxq[EMLXS_MAX_RXQS];
1659 
1660 	uint32_t	ue_mask_lo;
1661 	uint32_t	ue_mask_hi;
1662 } emlxs_sli4_t;
1663 
1664 
1665 typedef struct emlxs_sli_api
1666 {
1667 	int		(*sli_map_hdw)();
1668 	void		(*sli_unmap_hdw)();
1669 	int32_t		(*sli_online)();
1670 	void		(*sli_offline)();
1671 	uint32_t	(*sli_hba_reset)();
1672 	void		(*sli_hba_kill)();
1673 	void		(*sli_issue_iocb_cmd)();
1674 	uint32_t	(*sli_issue_mbox_cmd)();
1675 	uint32_t	(*sli_prep_fct_iocb)();
1676 	uint32_t	(*sli_prep_fcp_iocb)();
1677 	uint32_t	(*sli_prep_ip_iocb)();
1678 	uint32_t	(*sli_prep_els_iocb)();
1679 	uint32_t	(*sli_prep_ct_iocb)();
1680 	void		(*sli_poll_intr)();
1681 	int32_t		(*sli_intx_intr)();
1682 	uint32_t	(*sli_msi_intr)();
1683 	void		(*sli_disable_intr)();
1684 	void		(*sli_timer)();
1685 	void		(*sli_poll_erratt)();
1686 
1687 } emlxs_sli_api_t;
1688 
1689 
1690 typedef struct emlxs_hba
1691 {
1692 	dev_info_t	*dip;
1693 	int32_t		emlxinst;
1694 	int32_t		ddiinst;
1695 	uint8_t		pci_function_number;
1696 	uint8_t		pci_device_number;
1697 	uint8_t		pci_bus_number;
1698 #ifdef FMA_SUPPORT
1699 	int32_t		fm_caps;	/* FMA capabilities */
1700 #endif	/* FMA_SUPPORT */
1701 	fc_fca_tran_t	*fca_tran;
1702 
1703 	/* DMA attributes */
1704 	ddi_dma_attr_t	dma_attr;
1705 	ddi_dma_attr_t	dma_attr_ro;
1706 	ddi_dma_attr_t	dma_attr_1sg;
1707 	ddi_dma_attr_t	dma_attr_fcip_rsp;
1708 
1709 	/* HBA Info */
1710 	emlxs_model_t	model_info;
1711 	emlxs_vpd_t	vpd;	/* vital product data */
1712 	NAME_TYPE	wwnn;
1713 	NAME_TYPE	wwpn;
1714 	char		snn[256];
1715 	char		spn[256];
1716 	PROG_ID		load_list[MAX_LOAD_ENTRY];
1717 	WAKE_UP_PARMS	wakeup_parms;
1718 	uint32_t	max_nodes;
1719 	uint32_t	io_throttle;
1720 	uint32_t	io_active;
1721 	uint32_t	bus_type;
1722 #define	PCI_FC  	0
1723 #define	SBUS_FC		1
1724 
1725 	/* Link management */
1726 	uint32_t	link_event_tag;
1727 	uint8_t		topology;
1728 	uint8_t		linkspeed;
1729 	uint16_t	qos_linkspeed;
1730 	uint32_t	linkup_wait_flag;
1731 	kcondvar_t	linkup_lock_cv;
1732 	kmutex_t	linkup_lock;
1733 
1734 	/* Memory Pool management */
1735 	emlxs_memseg_t	memseg[FC_MAX_SEG];	/* memory for buffer */
1736 							/* structures */
1737 	kmutex_t	memget_lock;	/* locks all memory pools get */
1738 	kmutex_t	memput_lock;	/* locks all memory pools put */
1739 
1740 	/* Fibre Channel Service Parameters */
1741 	SERV_PARM	sparam;
1742 	uint32_t	fc_edtov;	/* E_D_TOV timer value */
1743 	uint32_t	fc_arbtov;	/* ARB_TOV timer value */
1744 	uint32_t	fc_ratov;	/* R_A_TOV timer value */
1745 	uint32_t	fc_rttov;	/* R_T_TOV timer value */
1746 	uint32_t	fc_altov;	/* AL_TOV timer value */
1747 	uint32_t	fc_crtov;	/* C_R_TOV timer value */
1748 	uint32_t	fc_citov;	/* C_I_TOV timer value */
1749 
1750 	/* Adapter State management */
1751 	int32_t		state;
1752 #define	FC_ERROR		0x01	/* Adapter shutdown */
1753 #define	FC_KILLED		0x02	/* Adapter interlocked/killed */
1754 #define	FC_WARM_START		0x03	/* Adapter reset, but not restarted */
1755 #define	FC_INIT_START		0x10	/* Adapter restarted */
1756 #define	FC_INIT_NVPARAMS	0x11
1757 #define	FC_INIT_REV		0x12
1758 #define	FC_INIT_CFGPORT		0x13
1759 #define	FC_INIT_CFGRING		0x14
1760 #define	FC_INIT_INITLINK	0x15
1761 #define	FC_LINK_DOWN		0x20
1762 #define	FC_LINK_DOWN_PERSIST	0x21
1763 #define	FC_LINK_UP		0x30
1764 #define	FC_CLEAR_LA		0x31
1765 #define	FC_READY		0x40
1766 
1767 	uint32_t	flag;
1768 #define	FC_ONLINING_MODE	0x00000001
1769 #define	FC_ONLINE_MODE		0x00000002
1770 #define	FC_OFFLINING_MODE	0x00000004
1771 #define	FC_OFFLINE_MODE		0x00000008
1772 
1773 #define	FC_NPIV_ENABLED		0x00000010	/* NPIV enabled on adapter    */
1774 #define	FC_NPIV_SUPPORTED	0x00000020	/* NPIV supported on fabric   */
1775 #define	FC_NPIV_UNSUPPORTED	0x00000040	/* NPIV unsupported on fabric */
1776 #define	FC_NPIV_LINKUP		0x00000100	/* NPIV enabled, supported, */
1777 						/* and link is ready */
1778 #define	FC_NPIV_DELAY_REQUIRED	0x00000200	/* Delay issuing FLOGI/FDISC */
1779 						/* and NameServer cmds */
1780 
1781 #define	FC_BOOTSTRAPMB_INIT	0x00000400
1782 #define	FC_FIP_SUPPORTED	0x00000800	/* FIP supported */
1783 
1784 #define	FC_FABRIC_ATTACHED	0x00001000
1785 #define	FC_PT_TO_PT		0x00002000
1786 #define	FC_BYPASSED_MODE	0x00004000
1787 #define	FC_MENLO_MODE		0x00008000	/* Menlo maintenance mode */
1788 
1789 #define	FC_DUMP_SAFE		0x00010000	/* Safe to DUMP */
1790 #define	FC_DUMP_ACTIVE		0x00020000	/* DUMP in progress */
1791 
1792 #define	FC_SLIM2_MODE		0x00100000	/* SLIM in host memory */
1793 #define	FC_INTERLOCKED		0x00200000
1794 #define	FC_HBQ_ENABLED		0x00400000
1795 #define	FC_ASYNC_EVENTS		0x00800000
1796 
1797 #define	FC_ILB_MODE		0x01000000
1798 #define	FC_ELB_MODE		0x02000000
1799 #define	FC_LOOPBACK_MODE	0x03000000	/* Loopback Mode Mask */
1800 #define	FC_DUMP			0x04000000	/* DUMP in progress */
1801 #define	FC_SHUTDOWN		0x08000000	/* SHUTDOWN in progress */
1802 
1803 #define	FC_OVERTEMP_EVENT	0x10000000	/* FC_ERROR reason: */
1804 						/* over temperature event */
1805 #define	FC_MBOX_TIMEOUT		0x20000000	/* FC_ERROR reason: */
1806 						/* mailbox timeout event */
1807 #define	FC_DMA_CHECK_ERROR	0x40000000	/* Shared memory (slim,..) */
1808 						/* DMA handle went bad */
1809 #define	FC_HARDWARE_ERROR	0x80000000	/* FC_ERROR state triggered */
1810 
1811 #define	FC_RESET_MASK		0x00030C1F	/* Bits to protect during */
1812 						/* a hard reset */
1813 #define	FC_LINKDOWN_MASK	0xFFF30C1F	/* Bits to protect during */
1814 						/* a linkdown */
1815 
1816 	uint32_t fw_timer;
1817 	uint32_t fw_flag;
1818 #define	FW_UPDATE_NEEDED	0x00000001
1819 #define	FW_UPDATE_KERNEL	0x00000002
1820 
1821 	uint32_t temperature;			/* Last reported temperature */
1822 
1823 	/* SBUS adapter management */
1824 	caddr_t		sbus_pci_addr;		/* Virt addr of TITAN */
1825 						/* pci config */
1826 	ddi_acc_handle_t sbus_pci_handle;
1827 
1828 	/* PCI BUS adapter management */
1829 	caddr_t		pci_addr;
1830 	ddi_acc_handle_t pci_acc_handle;
1831 
1832 	uint32_t	sli_mode;
1833 #define	EMLXS_HBA_SLI1_MODE	1
1834 #define	EMLXS_HBA_SLI2_MODE	2
1835 #define	EMLXS_HBA_SLI3_MODE	3
1836 #define	EMLXS_HBA_SLI4_MODE	4
1837 
1838 	/* SLI private data */
1839 	union {
1840 		emlxs_sli3_t sli3;
1841 		emlxs_sli4_t sli4;
1842 	} sli;
1843 
1844 	/* SLI API entry point routines */
1845 	emlxs_sli_api_t sli_api;
1846 
1847 	uint32_t	io_poll_count;	/* Number of poll commands */
1848 					/* in progress */
1849 
1850 	/* IO Completion management */
1851 	uint32_t	iodone_count;	/* Number of IO's on done Q */
1852 	/* Protected by EMLXS_PORT_LOCK  */
1853 	emlxs_buf_t	*iodone_list;	/* fc_packet being deferred */
1854 	emlxs_buf_t	*iodone_tail;	/* fc_packet being deferred */
1855 	emlxs_thread_t	iodone_thread;
1856 	emlxs_thread_t	*spawn_thread_head;
1857 	emlxs_thread_t	*spawn_thread_tail;
1858 	kmutex_t	spawn_lock;
1859 	uint32_t	spawn_open;
1860 
1861 	/* IO Channel management */
1862 	int32_t		chan_count;
1863 	emlxs_channel_t	chan[MAX_CHANNEL];
1864 	kmutex_t	channel_tx_lock;
1865 	uint8_t		channel_fcp;	/* Default channel to use for FCP IO */
1866 #define	CHANNEL_FCT channel_fcp
1867 	uint8_t		channel_ip;	/* Default channel to use for IP IO */
1868 	uint8_t		channel_els;	/* Default channel to use for ELS IO */
1869 	uint8_t		channel_ct;	/* Default channel to use for CT IO */
1870 
1871 	/* IOTag management */
1872 	emlxs_buf_t	**fc_table;	/* sc_buf pointers indexed by */
1873 					/* iotag */
1874 	uint16_t	fc_iotag;	/* used to identify I/Os */
1875 	uint16_t	fc_oor_iotag;	/* OutOfRange (fc_table) iotags */
1876 					/* typically used for Abort/close */
1877 #define	EMLXS_MAX_ABORT_TAG	0x7fff
1878 	uint16_t	max_iotag;	/* ALL IOCBs except aborts */
1879 	kmutex_t	iotag_lock;
1880 	uint32_t	io_count;		/* No of IO holding */
1881 						/* regular iotag */
1882 	uint32_t	channel_tx_count;	/* No of IO on tx Q */
1883 
1884 	/* Mailbox Management */
1885 	uint32_t	mbox_queue_flag;
1886 	emlxs_queue_t	mbox_queue;
1887 	uint32_t	*mbox_mqe;	/* active mbox mqe */
1888 	uint8_t		*mbox_mbq;	/* active MAILBOXQ */
1889 	kcondvar_t	mbox_lock_cv;	/* MBX_SLEEP */
1890 	kmutex_t	mbox_lock;	/* MBX_SLEEP */
1891 	uint32_t	mbox_timer;
1892 
1893 	/* Interrupt management */
1894 	void		*intr_arg;
1895 	uint32_t	intr_unclaimed;
1896 	uint32_t	intr_autoClear;
1897 	uint32_t	intr_flags;
1898 #define	EMLXS_INTX_INITED	0x0001
1899 #define	EMLXS_INTX_ADDED	0x0002
1900 #define	EMLXS_MSI_ENABLED	0x0010
1901 #define	EMLXS_MSI_INITED	0x0020
1902 #define	EMLXS_MSI_ADDED		0x0040
1903 #define	EMLXS_INTR_INITED	(EMLXS_INTX_INITED|EMLXS_MSI_INITED)
1904 #define	EMLXS_INTR_ADDED	(EMLXS_INTX_ADDED|EMLXS_MSI_ADDED)
1905 
1906 #ifdef MSI_SUPPORT
1907 	ddi_intr_handle_t *intr_htable;
1908 	uint32_t	*intr_pri;
1909 	int32_t		*intr_cap;
1910 	uint32_t	intr_count;
1911 	uint32_t	intr_type;
1912 	uint32_t	intr_cond;
1913 	uint32_t	intr_map[EMLXS_MSI_MAX_INTRS];
1914 	uint32_t	intr_mask;
1915 	uint32_t	msi_cap_offset;
1916 #define	MSI_CAP_ID	0x05
1917 
1918 	uint32_t	msix_cap_offset;
1919 #define	MSIX_CAP_ID	0x11
1920 
1921 	kmutex_t	intr_lock[EMLXS_MSI_MAX_INTRS];
1922 #endif	/* MSI_SUPPORT */
1923 
1924 	uint32_t	heartbeat_timer;
1925 	uint32_t	heartbeat_flag;
1926 	uint32_t	heartbeat_active;
1927 
1928 	/* IOCTL management */
1929 	kmutex_t	ioctl_lock;
1930 	uint32_t	ioctl_flags;
1931 #define	EMLXS_OPEN		0x00000001
1932 #define	EMLXS_OPEN_EXCLUSIVE	0x00000002
1933 
1934 	/* Timer management */
1935 	kcondvar_t	timer_lock_cv;
1936 	kmutex_t	timer_lock;
1937 	timeout_id_t	timer_id;
1938 	uint32_t	timer_tics;
1939 	uint32_t	timer_flags;
1940 #define	EMLXS_TIMER_STARTED	0x0000001
1941 #define	EMLXS_TIMER_BUSY	0x0000002
1942 #define	EMLXS_TIMER_KILL	0x0000004
1943 #define	EMLXS_TIMER_ENDED	0x0000008
1944 
1945 	/* Misc Timers */
1946 	uint32_t	linkup_timer;
1947 	uint32_t	discovery_timer;
1948 	uint32_t	pkt_timer;
1949 
1950 	/* Power Management */
1951 	uint32_t	pm_state;
1952 	/* pm_state */
1953 #define	EMLXS_PM_IN_ATTACH	0x00000001
1954 #define	EMLXS_PM_IN_DETACH	0x00000002
1955 #define	EMLXS_PM_IN_SOL_CB	0x00000010
1956 #define	EMLXS_PM_IN_UNSOL_CB	0x00000020
1957 #define	EMLXS_PM_IN_LINK_RESET	0x00000100
1958 #define	EMLXS_PM_IN_HARD_RESET	0x00000200
1959 #define	EMLXS_PM_SUSPENDED	0x01000000
1960 
1961 	uint32_t	pm_level;
1962 	/* pm_level */
1963 #define	EMLXS_PM_ADAPTER_DOWN	0
1964 #define	EMLXS_PM_ADAPTER_UP	1
1965 
1966 	uint32_t	pm_busy;
1967 	kmutex_t	pm_lock;
1968 	uint8_t		pm_config[PCI_CONFIG_SIZE];
1969 #ifdef IDLE_TIMER
1970 	uint32_t	pm_idle_timer;
1971 	uint32_t	pm_active;	/* Only used by timer */
1972 #endif	/* IDLE_TIMER */
1973 
1974 	/* Loopback management */
1975 	uint32_t	loopback_tics;
1976 	void		*loopback_pkt;
1977 
1978 	/* Event management */
1979 	emlxs_event_queue_t event_queue;
1980 	uint32_t	event_mask;
1981 	uint32_t	event_timer;
1982 	emlxs_dfc_event_t dfc_event[MAX_DFC_EVENTS];
1983 	emlxs_hba_event_t hba_event;
1984 
1985 	/* Parameter management */
1986 	emlxs_config_t	config[NUM_CFG_PARAM];
1987 
1988 	/* Driver stat management */
1989 	kstat_t		*kstat;
1990 	emlxs_stats_t	stats;
1991 
1992 	/* Log management */
1993 	emlxs_msg_log_t	log;
1994 
1995 	/* Port managment */
1996 	uint32_t	vpi_base;
1997 	uint32_t	vpi_max;
1998 	uint32_t	vpi_high;
1999 	uint32_t	num_of_ports;
2000 
2001 	kmutex_t	port_lock;	/* locks port, nodes, rings */
2002 	emlxs_port_t	port[MAX_VPORTS + 1];	/* port specific info */
2003 						/* Last one is for */
2004 						/* NPIV ready test */
2005 
2006 #ifdef DHCHAP_SUPPORT
2007 	kmutex_t	dhc_lock;
2008 	kmutex_t	auth_lock;
2009 	emlxs_auth_cfg_t	auth_cfg;	/* Default auth_cfg. */
2010 						/* Points to list of entries. */
2011 						/* Protected by auth_lock */
2012 	uint32_t	auth_cfg_count;
2013 	emlxs_auth_key_t	auth_key;	/* Default auth_key. */
2014 						/* Points to list of entries. */
2015 						/* Protected by auth_lock */
2016 	uint32_t	auth_key_count;
2017 	uint32_t	rdn_flag;
2018 #endif	/* DHCHAP_SUPPORT */
2019 
2020 	uint16_t	ini_mode;
2021 	uint16_t	tgt_mode;
2022 
2023 #ifdef TEST_SUPPORT
2024 	uint32_t	underrun_counter;
2025 #endif /* TEST_SUPPORT */
2026 
2027 #ifdef MODFW_SUPPORT
2028 	ddi_modhandle_t	fw_modhandle;
2029 #endif /* MODFW_SUPPORT */
2030 
2031 #ifdef DUMP_SUPPORT
2032 	emlxs_file_t	dump_txtfile;
2033 	emlxs_file_t	dump_dmpfile;
2034 	emlxs_file_t	dump_ceefile;
2035 	kmutex_t	dump_lock;
2036 #define	EMLXS_DUMP_LOCK		hba->dump_lock
2037 #define	EMLXS_TXT_FILE		1
2038 #define	EMLXS_DMP_FILE		2
2039 #define	EMLXS_CEE_FILE		3
2040 
2041 #define	EMLXS_DRV_DUMP		0
2042 #define	EMLXS_TEMP_DUMP		1
2043 #define	EMLXS_USER_DUMP		2
2044 
2045 #endif /* DUMP_SUPPORT */
2046 
2047 } emlxs_hba_t;
2048 
2049 #define	EMLXS_SLI_MAP_HDW 		(hba->sli_api.sli_map_hdw)
2050 #define	EMLXS_SLI_UNMAP_HDW		(hba->sli_api.sli_unmap_hdw)
2051 #define	EMLXS_SLI_ONLINE		(hba->sli_api.sli_online)
2052 #define	EMLXS_SLI_OFFLINE		(hba->sli_api.sli_offline)
2053 #define	EMLXS_SLI_HBA_RESET		(hba->sli_api.sli_hba_reset)
2054 #define	EMLXS_SLI_HBA_KILL		(hba->sli_api.sli_hba_kill)
2055 #define	EMLXS_SLI_ISSUE_IOCB_CMD	(hba->sli_api.sli_issue_iocb_cmd)
2056 #define	EMLXS_SLI_ISSUE_MBOX_CMD	(hba->sli_api.sli_issue_mbox_cmd)
2057 #define	EMLXS_SLI_PREP_FCT_IOCB		(hba->sli_api.sli_prep_fct_iocb)
2058 #define	EMLXS_SLI_PREP_FCP_IOCB		(hba->sli_api.sli_prep_fcp_iocb)
2059 #define	EMLXS_SLI_PREP_IP_IOCB		(hba->sli_api.sli_prep_ip_iocb)
2060 #define	EMLXS_SLI_PREP_ELS_IOCB		(hba->sli_api.sli_prep_els_iocb)
2061 #define	EMLXS_SLI_PREP_CT_IOCB		(hba->sli_api.sli_prep_ct_iocb)
2062 #define	EMLXS_SLI_POLL_INTR		(hba->sli_api.sli_poll_intr)
2063 #define	EMLXS_SLI_INTX_INTR		(hba->sli_api.sli_intx_intr)
2064 #define	EMLXS_SLI_MSI_INTR		(hba->sli_api.sli_msi_intr)
2065 #define	EMLXS_SLI_DISABLE_INTR		(hba->sli_api.sli_disable_intr)
2066 #define	EMLXS_SLI_TIMER			(hba->sli_api.sli_timer)
2067 #define	EMLXS_SLI_POLL_ERRATT		(hba->sli_api.sli_poll_erratt)
2068 
2069 #define	EMLXS_HBA_T  1  /* flag emlxs_hba_t is already typedefed */
2070 
2071 #ifdef MSI_SUPPORT
2072 #define	EMLXS_INTR_INIT(_hba, _m)		emlxs_msi_init(_hba, _m)
2073 #define	EMLXS_INTR_UNINIT(_hba)			emlxs_msi_uninit(_hba)
2074 #define	EMLXS_INTR_ADD(_hba)			emlxs_msi_add(_hba)
2075 #define	EMLXS_INTR_REMOVE(_hba)			emlxs_msi_remove(_hba)
2076 #else
2077 #define	EMLXS_INTR_INIT(_hba, _m)		emlxs_intx_init(_hba, _m)
2078 #define	EMLXS_INTR_UNINIT(_hba)			emlxs_intx_uninit(_hba)
2079 #define	EMLXS_INTR_ADD(_hba)			emlxs_intx_add(_hba)
2080 #define	EMLXS_INTR_REMOVE(_hba)			emlxs_intx_remove(_hba)
2081 #endif	/* MSI_SUPPORT */
2082 
2083 
2084 /* Power Management Component */
2085 #define	EMLXS_PM_ADAPTER	0
2086 
2087 
2088 #define	DRV_TIME	(uint32_t)(ddi_get_time() - emlxs_device.drv_timestamp)
2089 
2090 #define	HBA			port->hba
2091 #define	PPORT			hba->port[0]
2092 #define	VPORT(x)		hba->port[x]
2093 #define	EMLXS_TIMER_LOCK	hba->timer_lock
2094 #define	VPD			hba->vpd
2095 #define	CFG			hba->config[0]
2096 #define	LOG			hba->log
2097 #define	EVENTQ			hba->event_queue
2098 #define	EMLXS_MBOX_LOCK		hba->mbox_lock
2099 #define	EMLXS_MBOX_CV		hba->mbox_lock_cv
2100 #define	EMLXS_LINKUP_LOCK	hba->linkup_lock
2101 #define	EMLXS_LINKUP_CV		hba->linkup_lock_cv
2102 #define	EMLXS_TX_CHANNEL_LOCK	hba->channel_tx_lock	/* ring txq lock */
2103 #define	EMLXS_MEMGET_LOCK	hba->memget_lock	/* mempool get lock */
2104 #define	EMLXS_MEMPUT_LOCK	hba->memput_lock	/* mempool put lock */
2105 #define	EMLXS_IOCTL_LOCK	hba->ioctl_lock		/* ioctl lock */
2106 #define	EMLXS_SPAWN_LOCK	hba->spawn_lock		/* spawn lock */
2107 #define	EMLXS_PM_LOCK		hba->pm_lock		/* pm lock */
2108 #define	HBASTATS		hba->stats
2109 #define	EMLXS_CMD_RING_LOCK(n)	hba->sli.sli3.ring_cmd_lock[n]
2110 #define	EMLXS_FCTAB_LOCK	hba->iotag_lock
2111 #define	EMLXS_PORT_LOCK		hba->port_lock		/* locks ports, */
2112 							/* nodes, rings */
2113 #define	EMLXS_INTR_LOCK(_id)	hba->intr_lock[_id]	/* locks intr threads */
2114 
2115 #define	EMLXS_PKT_LOCK		port->pkt_lock		/* used for pkt */
2116 							/* polling */
2117 #define	EMLXS_PKT_CV		port->pkt_lock_cv	/* Used for pkt */
2118 							/* polling */
2119 #define	EMLXS_UB_LOCK		port->ub_lock		/* locks unsolicited */
2120 							/* buffer pool */
2121 
2122 /* These SWAPs will swap on any platform */
2123 #define	SWAP32_BUFFER(_b, _c)		emlxs_swap32_buffer(_b, _c)
2124 #define	SWAP32_BCOPY(_s, _d, _c)	emlxs_swap32_bcopy(_s, _d, _c)
2125 
2126 #define	SWAP64(_x)	((((uint64_t)(_x) & 0xFF)<<56) | \
2127 			    (((uint64_t)(_x) & 0xFF00)<<40) | \
2128 			    (((uint64_t)(_x) & 0xFF0000)<<24) | \
2129 			    (((uint64_t)(_x) & 0xFF000000)<<8) | \
2130 			    (((uint64_t)(_x) & 0xFF00000000)>>8) | \
2131 			    (((uint64_t)(_x) & 0xFF0000000000)>>24) | \
2132 			    (((uint64_t)(_x) & 0xFF000000000000)>>40) | \
2133 			    (((uint64_t)(_x) & 0xFF00000000000000)>>56))
2134 
2135 #define	SWAP32(_x)	((((uint32_t)(_x) & 0xFF)<<24) | \
2136 			    (((uint32_t)(_x) & 0xFF00)<<8) | \
2137 			    (((uint32_t)(_x) & 0xFF0000)>>8) | \
2138 			    (((uint32_t)(_x) & 0xFF000000)>>24))
2139 
2140 #define	SWAP16(_x)	((((uint16_t)(_x) & 0xFF)<<8) | \
2141 			    (((uint16_t)(_x) & 0xFF00)>>8))
2142 
2143 #define	SWAP24_LO(_x)	((((uint32_t)(_x) & 0xFF)<<16) | \
2144 			    ((uint32_t)(_x) & 0xFF00FF00) | \
2145 			    (((uint32_t)(_x) & 0x00FF0000)>>16))
2146 
2147 #define	SWAP24_HI(_x)	(((uint32_t)(_x) & 0x00FF00FF) | \
2148 			    (((uint32_t)(_x) & 0x0000FF00)<<16) | \
2149 			    (((uint32_t)(_x) & 0xFF000000)>>16))
2150 
2151 /* These LE_SWAPs will only swap on a LE platform */
2152 #ifdef EMLXS_LITTLE_ENDIAN
2153 #define	LE_SWAP32_BUFFER(_b, _c)	SWAP32_BUFFER(_b, _c)
2154 #define	LE_SWAP32_BCOPY(_s, _d, _c)	SWAP32_BCOPY(_s, _d, _c)
2155 #define	LE_SWAP64(_x)			SWAP64(_x)
2156 #define	LE_SWAP32(_x)			SWAP32(_x)
2157 #define	LE_SWAP16(_x)			SWAP16(_x)
2158 #define	LE_SWAP24_LO(_x)		SWAP24_LO(X)
2159 #define	LE_SWAP24_HI(_x)		SWAP24_HI(X)
2160 
2161 #if (EMLXS_MODREVX == EMLXS_MODREV2X)
2162 #undef	LE_SWAP24_LO
2163 #define	LE_SWAP24_LO(_x)		(_x)
2164 #undef	LE_SWAP24_HI
2165 #define	LE_SWAP24_HI(_x)		(_x)
2166 #endif	/* EMLXS_MODREV2X */
2167 
2168 #else /* BIG ENDIAN */
2169 #define	LE_SWAP32_BUFFER(_b, _c)
2170 #define	LE_SWAP32_BCOPY(_s, _d, _c)	bcopy(_s, _d, _c)
2171 #define	LE_SWAP64(_x)			(_x)
2172 #define	LE_SWAP32(_x)			(_x)
2173 #define	LE_SWAP16(_x)			(_x)
2174 #define	LE_SWAP24_LO(_x)		(_x)
2175 #define	LE_SWAP24_HI(_x)		(_x)
2176 #endif /* EMLXS_LITTLE_ENDIAN */
2177 
2178 /* These BE_SWAPs will only swap on a BE platform */
2179 #ifdef EMLXS_BIG_ENDIAN
2180 #define	BE_SWAP32_BUFFER(_b, _c)	SWAP32_BUFFER(_b, _c)
2181 #define	BE_SWAP32_BCOPY(_s, _d, _c)	SWAP32_BCOPY(_s, _d, _c)
2182 #define	BE_SWAP64(_x)			SWAP64(_x)
2183 #define	BE_SWAP32(_x)			SWAP32(_x)
2184 #define	BE_SWAP16(_x)			SWAP16(_x)
2185 #else /* LITTLE ENDIAN */
2186 #define	BE_SWAP32_BUFFER(_b, _c)
2187 #define	BE_SWAP32_BCOPY(_s, _d, _c)	bcopy(_s, _d, _c)
2188 #define	BE_SWAP64(_x)			(_x)
2189 #define	BE_SWAP32(_x)			(_x)
2190 #define	BE_SWAP16(_x)			(_x)
2191 #endif /* EMLXS_BIG_ENDIAN */
2192 
2193 #ifdef	__cplusplus
2194 }
2195 #endif
2196 
2197 #endif	/* _EMLXS_FC_H */
2198