blob: 74f4d18842cc1766d4a67130cc3154c340eb2c3b [file] [log] [blame]
dea31012005-04-17 16:05:31 -05001/*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04003 * Fibre Channel Host Bus Adapters. *
James Smart9413aff2007-04-25 09:53:35 -04004 * Copyright (C) 2004-2007 Emulex. All rights reserved. *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04005 * EMULEX and SLI are trademarks of Emulex. *
dea31012005-04-17 16:05:31 -05006 * www.emulex.com *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04007 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
dea31012005-04-17 16:05:31 -05008 * *
9 * This program is free software; you can redistribute it and/or *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -040010 * modify it under the terms of version 2 of the GNU General *
11 * Public License as published by the Free Software Foundation. *
12 * This program is distributed in the hope that it will be useful. *
13 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
14 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
15 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
16 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
17 * TO BE LEGALLY INVALID. See the GNU General Public License for *
18 * more details, a copy of which can be found in the file COPYING *
19 * included with this package. *
dea31012005-04-17 16:05:31 -050020 *******************************************************************/
21
James Smart2e0fef82007-06-17 19:56:36 -050022#include <scsi/scsi_host.h>
23
dea31012005-04-17 16:05:31 -050024struct lpfc_sli2_slim;
25
dea31012005-04-17 16:05:31 -050026
James Smarte17da182006-07-06 15:49:25 -040027#define LPFC_MAX_TARGET 256 /* max number of targets supported */
28#define LPFC_MAX_DISC_THREADS 64 /* max outstanding discovery els
29 requests */
30#define LPFC_MAX_NS_RETRY 3 /* Number of retry attempts to contact
31 the NameServer before giving up. */
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -050032#define LPFC_CMD_PER_LUN 3 /* max outstanding cmds per lun */
dea31012005-04-17 16:05:31 -050033#define LPFC_SG_SEG_CNT 64 /* sg element count per scsi cmnd */
34#define LPFC_IOCB_LIST_CNT 2250 /* list of IOCBs for fast-path usage. */
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -050035#define LPFC_Q_RAMP_UP_INTERVAL 120 /* lun q_depth ramp up interval */
dea31012005-04-17 16:05:31 -050036
37/* Define macros for 64 bit support */
38#define putPaddrLow(addr) ((uint32_t) (0xffffffff & (u64)(addr)))
39#define putPaddrHigh(addr) ((uint32_t) (0xffffffff & (((u64)(addr))>>32)))
40#define getPaddr(high, low) ((dma_addr_t)( \
41 (( (u64)(high)<<16 ) << 16)|( (u64)(low))))
42/* Provide maximum configuration definitions. */
43#define LPFC_DRVR_TIMEOUT 16 /* driver iocb timeout value in sec */
dea31012005-04-17 16:05:31 -050044#define FC_MAX_ADPTMSG 64
45
46#define MAX_HBAEVT 32
47
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050048enum lpfc_polling_flags {
49 ENABLE_FCP_RING_POLLING = 0x1,
50 DISABLE_FCP_RING_INT = 0x2
51};
52
dea31012005-04-17 16:05:31 -050053/* Provide DMA memory definitions the driver uses per port instance. */
54struct lpfc_dmabuf {
55 struct list_head list;
56 void *virt; /* virtual address ptr */
57 dma_addr_t phys; /* mapped address */
58};
59
60struct lpfc_dma_pool {
61 struct lpfc_dmabuf *elements;
62 uint32_t max_count;
63 uint32_t current_count;
64};
65
James Smarted957682007-06-17 19:56:37 -050066struct hbq_dmabuf {
67 struct lpfc_dmabuf dbuf;
68 uint32_t tag;
69};
70
dea31012005-04-17 16:05:31 -050071/* Priority bit. Set value to exceed low water mark in lpfc_mem. */
72#define MEM_PRI 0x100
73
74
75/****************************************************************************/
76/* Device VPD save area */
77/****************************************************************************/
78typedef struct lpfc_vpd {
79 uint32_t status; /* vpd status value */
80 uint32_t length; /* number of bytes actually returned */
81 struct {
82 uint32_t rsvd1; /* Revision numbers */
83 uint32_t biuRev;
84 uint32_t smRev;
85 uint32_t smFwRev;
86 uint32_t endecRev;
87 uint16_t rBit;
88 uint8_t fcphHigh;
89 uint8_t fcphLow;
90 uint8_t feaLevelHigh;
91 uint8_t feaLevelLow;
92 uint32_t postKernRev;
93 uint32_t opFwRev;
94 uint8_t opFwName[16];
95 uint32_t sli1FwRev;
96 uint8_t sli1FwName[16];
97 uint32_t sli2FwRev;
98 uint8_t sli2FwName[16];
99 } rev;
100} lpfc_vpd_t;
101
102struct lpfc_scsi_buf;
103
104
105/*
106 * lpfc stat counters
107 */
108struct lpfc_stats {
109 /* Statistics for ELS commands */
110 uint32_t elsLogiCol;
111 uint32_t elsRetryExceeded;
112 uint32_t elsXmitRetry;
113 uint32_t elsDelayRetry;
114 uint32_t elsRcvDrop;
115 uint32_t elsRcvFrame;
116 uint32_t elsRcvRSCN;
117 uint32_t elsRcvRNID;
118 uint32_t elsRcvFARP;
119 uint32_t elsRcvFARPR;
120 uint32_t elsRcvFLOGI;
121 uint32_t elsRcvPLOGI;
122 uint32_t elsRcvADISC;
123 uint32_t elsRcvPDISC;
124 uint32_t elsRcvFAN;
125 uint32_t elsRcvLOGO;
126 uint32_t elsRcvPRLO;
127 uint32_t elsRcvPRLI;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -0500128 uint32_t elsRcvLIRR;
129 uint32_t elsRcvRPS;
130 uint32_t elsRcvRPL;
dea31012005-04-17 16:05:31 -0500131 uint32_t elsXmitFLOGI;
132 uint32_t elsXmitPLOGI;
133 uint32_t elsXmitPRLI;
134 uint32_t elsXmitADISC;
135 uint32_t elsXmitLOGO;
136 uint32_t elsXmitSCR;
137 uint32_t elsXmitRNID;
138 uint32_t elsXmitFARP;
139 uint32_t elsXmitFARPR;
140 uint32_t elsXmitACC;
141 uint32_t elsXmitLSRJT;
142
143 uint32_t frameRcvBcast;
144 uint32_t frameRcvMulti;
145 uint32_t strayXmitCmpl;
146 uint32_t frameXmitDelay;
147 uint32_t xriCmdCmpl;
148 uint32_t xriStatErr;
149 uint32_t LinkUp;
150 uint32_t LinkDown;
151 uint32_t LinkMultiEvent;
152 uint32_t NoRcvBuf;
153 uint32_t fcpCmd;
154 uint32_t fcpCmpl;
155 uint32_t fcpRspErr;
156 uint32_t fcpRemoteStop;
157 uint32_t fcpPortRjt;
158 uint32_t fcpPortBusy;
159 uint32_t fcpError;
160 uint32_t fcpLocalErr;
161};
162
163enum sysfs_mbox_state {
164 SMBOX_IDLE,
165 SMBOX_WRITING,
166 SMBOX_READING
167};
168
169struct lpfc_sysfs_mbox {
170 enum sysfs_mbox_state state;
171 size_t offset;
172 struct lpfcMboxq * mbox;
173};
174
James Smart2e0fef82007-06-17 19:56:36 -0500175struct lpfc_hba;
dea31012005-04-17 16:05:31 -0500176
James Smart2e0fef82007-06-17 19:56:36 -0500177enum discovery_state {
178 LPFC_STATE_UNKNOWN = 0, /* HBA state is unknown */
179 LPFC_LOCAL_CFG_LINK = 6, /* local NPORT Id configured */
180 LPFC_FLOGI = 7, /* FLOGI sent to Fabric */
181 LPFC_FABRIC_CFG_LINK = 8, /* Fabric assigned NPORT Id
182 * configured */
183 LPFC_NS_REG = 9, /* Register with NameServer */
184 LPFC_NS_QRY = 10, /* Query NameServer for NPort ID list */
185 LPFC_BUILD_DISC_LIST = 11, /* Build ADISC and PLOGI lists for
186 * device authentication / discovery */
187 LPFC_DISC_AUTH = 12, /* Processing ADISC list */
188 LPFC_VPORT_READY = 32,
189};
dea31012005-04-17 16:05:31 -0500190
James Smart2e0fef82007-06-17 19:56:36 -0500191enum hba_state {
192 LPFC_LINK_UNKNOWN = 0, /* HBA state is unknown */
193 LPFC_WARM_START = 1, /* HBA state after selective reset */
194 LPFC_INIT_START = 2, /* Initial state after board reset */
195 LPFC_INIT_MBX_CMDS = 3, /* Initialize HBA with mbox commands */
196 LPFC_LINK_DOWN = 4, /* HBA initialized, link is down */
197 LPFC_LINK_UP = 5, /* Link is up - issue READ_LA */
198 LPFC_CLEAR_LA = 13, /* authentication cmplt - issue
199 * CLEAR_LA */
200 LPFC_HBA_ERROR = -1
201};
dea31012005-04-17 16:05:31 -0500202
James Smart2e0fef82007-06-17 19:56:36 -0500203struct lpfc_vport {
204 struct list_head listentry;
205 struct lpfc_hba *phba;
206 uint8_t port_type;
207#define LPFC_PHYSICAL_PORT 1
208#define LPFC_NPIV_PORT 2
209#define LPFC_FABRIC_PORT 3
210 enum discovery_state port_state;
dea31012005-04-17 16:05:31 -0500211
dea31012005-04-17 16:05:31 -0500212
dea31012005-04-17 16:05:31 -0500213 uint32_t fc_flag; /* FC flags */
James Smart2e0fef82007-06-17 19:56:36 -0500214/* Several of these flags are HBA centric and should be moved to
215 * phba->link_flag (e.g. FC_PTP, FC_PUBLIC_LOOP)
216 */
dea31012005-04-17 16:05:31 -0500217#define FC_PT2PT 0x1 /* pt2pt with no fabric */
218#define FC_PT2PT_PLOGI 0x2 /* pt2pt initiate PLOGI */
219#define FC_DISC_TMO 0x4 /* Discovery timer running */
220#define FC_PUBLIC_LOOP 0x8 /* Public loop */
221#define FC_LBIT 0x10 /* LOGIN bit in loopinit set */
222#define FC_RSCN_MODE 0x20 /* RSCN cmd rcv'ed */
223#define FC_NLP_MORE 0x40 /* More node to process in node tbl */
224#define FC_OFFLINE_MODE 0x80 /* Interface is offline for diag */
225#define FC_FABRIC 0x100 /* We are fabric attached */
226#define FC_ESTABLISH_LINK 0x200 /* Reestablish Link */
227#define FC_RSCN_DISCOVERY 0x400 /* Authenticate all devices after RSCN*/
dea31012005-04-17 16:05:31 -0500228#define FC_SCSI_SCAN_TMO 0x4000 /* scsi scan timer running */
229#define FC_ABORT_DISCOVERY 0x8000 /* we want to abort discovery */
230#define FC_NDISC_ACTIVE 0x10000 /* NPort discovery active */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500231#define FC_BYPASSED_MODE 0x20000 /* NPort is in bypassed mode */
dea31012005-04-17 16:05:31 -0500232
James Smart685f0bf2007-04-25 09:53:08 -0400233 struct list_head fc_nodes;
dea31012005-04-17 16:05:31 -0500234
235 /* Keep counters for the number of entries in each list. */
236 uint16_t fc_plogi_cnt;
237 uint16_t fc_adisc_cnt;
238 uint16_t fc_reglogin_cnt;
239 uint16_t fc_prli_cnt;
240 uint16_t fc_unmap_cnt;
241 uint16_t fc_map_cnt;
242 uint16_t fc_npr_cnt;
243 uint16_t fc_unused_cnt;
James Smart2e0fef82007-06-17 19:56:36 -0500244 struct serv_parm fc_sparam; /* buffer for our service parameters */
245
246 uint32_t fc_myDID; /* fibre channel S_ID */
247 uint32_t fc_prevDID; /* previous fibre channel S_ID */
248
249 int32_t stopped; /* HBA has not been restarted since last ERATT */
250 uint8_t fc_linkspeed; /* Link speed after last READ_LA */
251
252 uint32_t num_disc_nodes; /*in addition to hba_state */
253
254 uint32_t fc_nlp_cnt; /* outstanding NODELIST requests */
255 uint32_t fc_rscn_id_cnt; /* count of RSCNs payloads in list */
256 struct lpfc_dmabuf *fc_rscn_id_list[FC_MAX_HOLD_RSCN];
257 struct lpfc_name fc_nodename; /* fc nodename */
258 struct lpfc_name fc_portname; /* fc portname */
259
260 struct lpfc_work_evt disc_timeout_evt;
261
262 struct timer_list fc_disctmo; /* Discovery rescue timer */
263 uint8_t fc_ns_retry; /* retries for fabric nameserver */
264 uint32_t fc_prli_sent; /* cntr for outstanding PRLIs */
265
266 spinlock_t work_port_lock;
267 uint32_t work_port_events; /* Timeout to be handled */
268#define WORKER_DISC_TMO 0x1 /* Discovery timeout */
269#define WORKER_ELS_TMO 0x2 /* ELS timeout */
270#define WORKER_MBOX_TMO 0x4 /* MBOX timeout */
271#define WORKER_FDMI_TMO 0x8 /* FDMI timeout */
272
273 struct timer_list fc_fdmitmo;
274 struct timer_list els_tmofunc;
275
276 int unreg_vpi_cmpl;
277
278 uint8_t load_flag;
279#define FC_LOADING 0x1 /* HBA in process of loading drvr */
280#define FC_UNLOADING 0x2 /* HBA in process of unloading drvr */
281
282};
283
James Smarted957682007-06-17 19:56:37 -0500284
285struct hbq_s {
286 uint16_t entry_count; /* Current number of HBQ slots */
287 uint32_t next_hbqPutIdx; /* Index to next HBQ slot to use */
288 uint32_t hbqPutIdx; /* HBQ slot to use */
289 uint32_t local_hbqGetIdx; /* Local copy of Get index from Port */
290};
291
292#define MAX_HBQS 16
293
James Smart2e0fef82007-06-17 19:56:36 -0500294struct lpfc_hba {
295 struct lpfc_sli sli;
James Smarted957682007-06-17 19:56:37 -0500296 uint32_t sli_rev; /* SLI2 or SLI3 */
297 uint32_t sli3_options; /* Mask of enabled SLI3 options */
298#define LPFC_SLI3_ENABLED 0x01
299#define LPFC_SLI3_HBQ_ENABLED 0x02
300#define LPFC_SLI3_INB_ENABLED 0x04
301 uint32_t iocb_cmd_size;
302 uint32_t iocb_rsp_size;
James Smart2e0fef82007-06-17 19:56:36 -0500303
304 enum hba_state link_state;
305 uint32_t link_flag; /* link state flags */
306#define LS_LOOPBACK_MODE 0x40000 /* NPort is in Loopback mode */
307 /* This flag is set while issuing */
308 /* INIT_LINK mailbox command */
309#define LS_IGNORE_ERATT 0x80000 /* intr handler should ignore ERATT */
310
James Smart2e0fef82007-06-17 19:56:36 -0500311 struct lpfc_sli2_slim *slim2p;
312 struct lpfc_dmabuf hbqslimp;
313
314 dma_addr_t slim2p_mapping;
315
316
317 uint16_t pci_cfg_value;
318
319
320 uint8_t fc_linkspeed; /* Link speed after last READ_LA */
321
322 uint32_t fc_eventTag; /* event tag for link attention */
323
324
325 struct timer_list fc_estabtmo; /* link establishment timer */
326 /* These fields used to be binfo */
327 uint32_t fc_pref_DID; /* preferred D_ID */
328 uint8_t fc_pref_ALPA; /* preferred AL_PA */
329 uint32_t fc_edtov; /* E_D_TOV timer value */
330 uint32_t fc_arbtov; /* ARB_TOV timer value */
331 uint32_t fc_ratov; /* R_A_TOV timer value */
332 uint32_t fc_rttov; /* R_T_TOV timer value */
333 uint32_t fc_altov; /* AL_TOV timer value */
334 uint32_t fc_crtov; /* C_R_TOV timer value */
335 uint32_t fc_citov; /* C_I_TOV timer value */
336
337 struct serv_parm fc_fabparam; /* fabric service parameters buffer */
338 uint8_t alpa_map[128]; /* AL_PA map from READ_LA */
339
340 uint32_t lmt;
341
342 uint32_t fc_topology; /* link topology, from LINK INIT */
343
344 struct lpfc_stats fc_stat;
345
dea31012005-04-17 16:05:31 -0500346 struct lpfc_nodelist fc_fcpnodev; /* nodelist entry for no device */
347 uint32_t nport_event_cnt; /* timestamp for nlplist entry */
348
James Smart2e0fef82007-06-17 19:56:36 -0500349 uint8_t wwnn[8];
350 uint8_t wwpn[8];
dea31012005-04-17 16:05:31 -0500351 uint32_t RandomData[7];
352
353 uint32_t cfg_log_verbose;
354 uint32_t cfg_lun_queue_depth;
355 uint32_t cfg_nodev_tmo;
James Smartc01f3202006-08-18 17:47:08 -0400356 uint32_t cfg_devloss_tmo;
dea31012005-04-17 16:05:31 -0500357 uint32_t cfg_hba_queue_depth;
358 uint32_t cfg_fcp_class;
359 uint32_t cfg_use_adisc;
360 uint32_t cfg_ack0;
361 uint32_t cfg_topology;
362 uint32_t cfg_scan_down;
363 uint32_t cfg_link_speed;
364 uint32_t cfg_cr_delay;
365 uint32_t cfg_cr_count;
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -0500366 uint32_t cfg_multi_ring_support;
James Smarta4bc3372006-12-02 13:34:16 -0500367 uint32_t cfg_multi_ring_rctl;
368 uint32_t cfg_multi_ring_type;
dea31012005-04-17 16:05:31 -0500369 uint32_t cfg_fdmi_on;
dea31012005-04-17 16:05:31 -0500370 uint32_t cfg_discovery_threads;
371 uint32_t cfg_max_luns;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500372 uint32_t cfg_poll;
373 uint32_t cfg_poll_tmo;
James Smart4ff43242006-12-02 13:34:56 -0500374 uint32_t cfg_use_msi;
dea31012005-04-17 16:05:31 -0500375 uint32_t cfg_sg_seg_cnt;
376 uint32_t cfg_sg_dma_buf_size;
James Smarta12e07b2006-12-02 13:35:30 -0500377 uint64_t cfg_soft_wwnn;
James Smartc3f28af2006-08-18 17:47:18 -0400378 uint64_t cfg_soft_wwpn;
dea31012005-04-17 16:05:31 -0500379
James Smartc01f3202006-08-18 17:47:08 -0400380 uint32_t dev_loss_tmo_changed;
381
dea31012005-04-17 16:05:31 -0500382 lpfc_vpd_t vpd; /* vital product data */
383
dea31012005-04-17 16:05:31 -0500384 struct pci_dev *pcidev;
385 struct list_head work_list;
386 uint32_t work_ha; /* Host Attention Bits for WT */
387 uint32_t work_ha_mask; /* HA Bits owned by WT */
388 uint32_t work_hs; /* HS stored in case of ERRAT */
389 uint32_t work_status[2]; /* Extra status from SLIM */
dea31012005-04-17 16:05:31 -0500390
391 wait_queue_head_t *work_wait;
392 struct task_struct *worker_thread;
393
James Smarted957682007-06-17 19:56:37 -0500394 struct hbq_dmabuf *hbq_buffer_pool;
395 uint32_t hbq_buffer_count;
396 uint32_t hbq_buff_count; /* Current hbq buffers */
397 uint32_t hbq_count; /* Count of configured HBQs */
398 struct hbq_s hbqs[MAX_HBQS]; /* local copy of hbq indicies */
399
dea31012005-04-17 16:05:31 -0500400 unsigned long pci_bar0_map; /* Physical address for PCI BAR0 */
401 unsigned long pci_bar2_map; /* Physical address for PCI BAR2 */
402 void __iomem *slim_memmap_p; /* Kernel memory mapped address for
403 PCI BAR0 */
404 void __iomem *ctrl_regs_memmap_p;/* Kernel memory mapped address for
405 PCI BAR2 */
406
407 void __iomem *MBslimaddr; /* virtual address for mbox cmds */
408 void __iomem *HAregaddr; /* virtual address for host attn reg */
409 void __iomem *CAregaddr; /* virtual address for chip attn reg */
410 void __iomem *HSregaddr; /* virtual address for host status
411 reg */
412 void __iomem *HCregaddr; /* virtual address for host ctl reg */
413
James Smarted957682007-06-17 19:56:37 -0500414 struct lpfc_hgp __iomem *host_gp; /* Host side get/put pointers */
415 uint32_t __iomem *hbq_put; /* Address in SLIM to HBQ put ptrs */
416 uint32_t __iomem *hbq_get; /* Address in SLIM to HBQ get ptrs */
417
dea31012005-04-17 16:05:31 -0500418 int brd_no; /* FC board number */
419
420 char SerialNumber[32]; /* adapter Serial Number */
421 char OptionROMVersion[32]; /* adapter BIOS / Fcode version */
422 char ModelDesc[256]; /* Model Description */
423 char ModelName[80]; /* Model Name */
424 char ProgramType[256]; /* Program Type */
425 char Port[20]; /* Port No */
426 uint8_t vpd_flag; /* VPD data flag */
427
428#define VPD_MODEL_DESC 0x1 /* valid vpd model description */
429#define VPD_MODEL_NAME 0x2 /* valid vpd model name */
430#define VPD_PROGRAM_TYPE 0x4 /* valid vpd program type */
431#define VPD_PORT 0x8 /* valid vpd port data */
432#define VPD_MASK 0xf /* mask for any vpd data */
433
James Smarta12e07b2006-12-02 13:35:30 -0500434 uint8_t soft_wwn_enable;
James Smartc3f28af2006-08-18 17:47:18 -0400435
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500436 struct timer_list fcp_poll_timer;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500437
dea31012005-04-17 16:05:31 -0500438 /*
439 * stat counters
440 */
441 uint64_t fc4InputRequests;
442 uint64_t fc4OutputRequests;
443 uint64_t fc4ControlRequests;
444
445 struct lpfc_sysfs_mbox sysfs_mbox;
446
447 /* fastpath list. */
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500448 spinlock_t scsi_buf_list_lock;
dea31012005-04-17 16:05:31 -0500449 struct list_head lpfc_scsi_buf_list;
450 uint32_t total_scsi_bufs;
451 struct list_head lpfc_iocb_list;
452 uint32_t total_iocbq_bufs;
James Smart2e0fef82007-06-17 19:56:36 -0500453 spinlock_t hbalock;
dea31012005-04-17 16:05:31 -0500454
455 /* pci_mem_pools */
456 struct pci_pool *lpfc_scsi_dma_buf_pool;
457 struct pci_pool *lpfc_mbuf_pool;
James Smarted957682007-06-17 19:56:37 -0500458 struct pci_pool *lpfc_hbq_pool;
dea31012005-04-17 16:05:31 -0500459 struct lpfc_dma_pool lpfc_mbuf_safety_pool;
460
461 mempool_t *mbox_mem_pool;
462 mempool_t *nlp_mem_pool;
James.Smart@Emulex.Comf888ba32005-08-10 15:03:01 -0400463
464 struct fc_host_statistics link_stats;
James Smart2e0fef82007-06-17 19:56:36 -0500465 struct list_head port_list;
466 struct lpfc_vport *pport; /* physical lpfc_vport pointer */
dea31012005-04-17 16:05:31 -0500467};
468
James Smart2e0fef82007-06-17 19:56:36 -0500469static inline struct Scsi_Host *
470lpfc_shost_from_vport(struct lpfc_vport *vport)
471{
472 return container_of((void *) vport, struct Scsi_Host, hostdata[0]);
James Smart5b8bd0c2007-04-25 09:52:49 -0400473}
dea31012005-04-17 16:05:31 -0500474
James Smart2e0fef82007-06-17 19:56:36 -0500475static inline void
476lpfc_set_loopback_flag(struct lpfc_hba *phba)
477{
478 if (phba->cfg_topology == FLAGS_LOCAL_LB)
479 phba->link_flag |= LS_LOOPBACK_MODE;
480 else
481 phba->link_flag &= ~LS_LOOPBACK_MODE;
482}
483
484static inline int
485lpfc_is_link_up(struct lpfc_hba *phba)
486{
487 return phba->link_state == LPFC_LINK_UP ||
488 phba->link_state == LPFC_CLEAR_LA;
489}
490
491
James Smartd2873e42006-08-18 17:46:43 -0400492
493#define FC_REG_DUMP_EVENT 0x10 /* Register for Dump events */
James Smart2e0fef82007-06-17 19:56:36 -0500494