blob: 1f3873ae9d682b3dfefc36820041a4ddcdd55fa6 [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. *
4 * Copyright (C) 2004-2005 Emulex. All rights reserved. *
5 * 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
dea31012005-04-17 16:05:31 -050022struct lpfc_sli2_slim;
23
24#define LPFC_MAX_TARGET 256 /* max targets supported */
25#define LPFC_MAX_DISC_THREADS 64 /* max outstanding discovery els req */
26#define LPFC_MAX_NS_RETRY 3 /* max NameServer retries */
27
28#define LPFC_DFT_HBA_Q_DEPTH 2048 /* max cmds per hba */
29#define LPFC_LC_HBA_Q_DEPTH 1024 /* max cmds per low cost hba */
30#define LPFC_LP101_HBA_Q_DEPTH 128 /* max cmds per low cost hba */
31
32#define LPFC_CMD_PER_LUN 30 /* max outstanding cmds per lun */
33#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. */
35
36/* Define macros for 64 bit support */
37#define putPaddrLow(addr) ((uint32_t) (0xffffffff & (u64)(addr)))
38#define putPaddrHigh(addr) ((uint32_t) (0xffffffff & (((u64)(addr))>>32)))
39#define getPaddr(high, low) ((dma_addr_t)( \
40 (( (u64)(high)<<16 ) << 16)|( (u64)(low))))
41/* Provide maximum configuration definitions. */
42#define LPFC_DRVR_TIMEOUT 16 /* driver iocb timeout value in sec */
43#define MAX_FCP_TARGET 256 /* max num of FCP targets supported */
44#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
66/* Priority bit. Set value to exceed low water mark in lpfc_mem. */
67#define MEM_PRI 0x100
68
69
70/****************************************************************************/
71/* Device VPD save area */
72/****************************************************************************/
73typedef struct lpfc_vpd {
74 uint32_t status; /* vpd status value */
75 uint32_t length; /* number of bytes actually returned */
76 struct {
77 uint32_t rsvd1; /* Revision numbers */
78 uint32_t biuRev;
79 uint32_t smRev;
80 uint32_t smFwRev;
81 uint32_t endecRev;
82 uint16_t rBit;
83 uint8_t fcphHigh;
84 uint8_t fcphLow;
85 uint8_t feaLevelHigh;
86 uint8_t feaLevelLow;
87 uint32_t postKernRev;
88 uint32_t opFwRev;
89 uint8_t opFwName[16];
90 uint32_t sli1FwRev;
91 uint8_t sli1FwName[16];
92 uint32_t sli2FwRev;
93 uint8_t sli2FwName[16];
94 } rev;
95} lpfc_vpd_t;
96
97struct lpfc_scsi_buf;
98
99
100/*
101 * lpfc stat counters
102 */
103struct lpfc_stats {
104 /* Statistics for ELS commands */
105 uint32_t elsLogiCol;
106 uint32_t elsRetryExceeded;
107 uint32_t elsXmitRetry;
108 uint32_t elsDelayRetry;
109 uint32_t elsRcvDrop;
110 uint32_t elsRcvFrame;
111 uint32_t elsRcvRSCN;
112 uint32_t elsRcvRNID;
113 uint32_t elsRcvFARP;
114 uint32_t elsRcvFARPR;
115 uint32_t elsRcvFLOGI;
116 uint32_t elsRcvPLOGI;
117 uint32_t elsRcvADISC;
118 uint32_t elsRcvPDISC;
119 uint32_t elsRcvFAN;
120 uint32_t elsRcvLOGO;
121 uint32_t elsRcvPRLO;
122 uint32_t elsRcvPRLI;
123 uint32_t elsRcvRRQ;
124 uint32_t elsXmitFLOGI;
125 uint32_t elsXmitPLOGI;
126 uint32_t elsXmitPRLI;
127 uint32_t elsXmitADISC;
128 uint32_t elsXmitLOGO;
129 uint32_t elsXmitSCR;
130 uint32_t elsXmitRNID;
131 uint32_t elsXmitFARP;
132 uint32_t elsXmitFARPR;
133 uint32_t elsXmitACC;
134 uint32_t elsXmitLSRJT;
135
136 uint32_t frameRcvBcast;
137 uint32_t frameRcvMulti;
138 uint32_t strayXmitCmpl;
139 uint32_t frameXmitDelay;
140 uint32_t xriCmdCmpl;
141 uint32_t xriStatErr;
142 uint32_t LinkUp;
143 uint32_t LinkDown;
144 uint32_t LinkMultiEvent;
145 uint32_t NoRcvBuf;
146 uint32_t fcpCmd;
147 uint32_t fcpCmpl;
148 uint32_t fcpRspErr;
149 uint32_t fcpRemoteStop;
150 uint32_t fcpPortRjt;
151 uint32_t fcpPortBusy;
152 uint32_t fcpError;
153 uint32_t fcpLocalErr;
154};
155
156enum sysfs_mbox_state {
157 SMBOX_IDLE,
158 SMBOX_WRITING,
159 SMBOX_READING
160};
161
162struct lpfc_sysfs_mbox {
163 enum sysfs_mbox_state state;
164 size_t offset;
165 struct lpfcMboxq * mbox;
166};
167
168struct lpfc_hba {
169 struct list_head hba_list; /* List of hbas/ports */
170 struct lpfc_sli sli;
171 struct lpfc_sli2_slim *slim2p;
172 dma_addr_t slim2p_mapping;
173 uint16_t pci_cfg_value;
174
James.Smart@Emulex.Com6175c022005-11-28 11:42:05 -0500175 struct semaphore hba_can_block;
dea31012005-04-17 16:05:31 -0500176 uint32_t hba_state;
177
178#define LPFC_INIT_START 1 /* Initial state after board reset */
179#define LPFC_INIT_MBX_CMDS 2 /* Initialize HBA with mbox commands */
180#define LPFC_LINK_DOWN 3 /* HBA initialized, link is down */
181#define LPFC_LINK_UP 4 /* Link is up - issue READ_LA */
182#define LPFC_LOCAL_CFG_LINK 5 /* local NPORT Id configured */
183#define LPFC_FLOGI 6 /* FLOGI sent to Fabric */
184#define LPFC_FABRIC_CFG_LINK 7 /* Fabric assigned NPORT Id
185 configured */
186#define LPFC_NS_REG 8 /* Register with NameServer */
187#define LPFC_NS_QRY 9 /* Query NameServer for NPort ID list */
188#define LPFC_BUILD_DISC_LIST 10 /* Build ADISC and PLOGI lists for
189 * device authentication / discovery */
190#define LPFC_DISC_AUTH 11 /* Processing ADISC list */
191#define LPFC_CLEAR_LA 12 /* authentication cmplt - issue
192 CLEAR_LA */
193#define LPFC_HBA_READY 32
194#define LPFC_HBA_ERROR 0xff
195
196 uint8_t fc_linkspeed; /* Link speed after last READ_LA */
197
198 uint32_t fc_eventTag; /* event tag for link attention */
199 uint32_t fc_prli_sent; /* cntr for outstanding PRLIs */
200
201 uint32_t num_disc_nodes; /*in addition to hba_state */
202
203 struct timer_list fc_estabtmo; /* link establishment timer */
204 struct timer_list fc_disctmo; /* Discovery rescue timer */
205 struct timer_list fc_fdmitmo; /* fdmi timer */
206 /* These fields used to be binfo */
207 struct lpfc_name fc_nodename; /* fc nodename */
208 struct lpfc_name fc_portname; /* fc portname */
209 uint32_t fc_pref_DID; /* preferred D_ID */
210 uint8_t fc_pref_ALPA; /* preferred AL_PA */
211 uint32_t fc_edtov; /* E_D_TOV timer value */
212 uint32_t fc_arbtov; /* ARB_TOV timer value */
213 uint32_t fc_ratov; /* R_A_TOV timer value */
214 uint32_t fc_rttov; /* R_T_TOV timer value */
215 uint32_t fc_altov; /* AL_TOV timer value */
216 uint32_t fc_crtov; /* C_R_TOV timer value */
217 uint32_t fc_citov; /* C_I_TOV timer value */
218 uint32_t fc_myDID; /* fibre channel S_ID */
219 uint32_t fc_prevDID; /* previous fibre channel S_ID */
220
221 struct serv_parm fc_sparam; /* buffer for our service parameters */
222 struct serv_parm fc_fabparam; /* fabric service parameters buffer */
223 uint8_t alpa_map[128]; /* AL_PA map from READ_LA */
224
225 uint8_t fc_ns_retry; /* retries for fabric nameserver */
226 uint32_t fc_nlp_cnt; /* outstanding NODELIST requests */
227 uint32_t fc_rscn_id_cnt; /* count of RSCNs payloads in list */
228 struct lpfc_dmabuf *fc_rscn_id_list[FC_MAX_HOLD_RSCN];
229 uint32_t lmt;
230 uint32_t fc_flag; /* FC flags */
231#define FC_PT2PT 0x1 /* pt2pt with no fabric */
232#define FC_PT2PT_PLOGI 0x2 /* pt2pt initiate PLOGI */
233#define FC_DISC_TMO 0x4 /* Discovery timer running */
234#define FC_PUBLIC_LOOP 0x8 /* Public loop */
235#define FC_LBIT 0x10 /* LOGIN bit in loopinit set */
236#define FC_RSCN_MODE 0x20 /* RSCN cmd rcv'ed */
237#define FC_NLP_MORE 0x40 /* More node to process in node tbl */
238#define FC_OFFLINE_MODE 0x80 /* Interface is offline for diag */
239#define FC_FABRIC 0x100 /* We are fabric attached */
240#define FC_ESTABLISH_LINK 0x200 /* Reestablish Link */
241#define FC_RSCN_DISCOVERY 0x400 /* Authenticate all devices after RSCN*/
242#define FC_LOADING 0x1000 /* HBA in process of loading drvr */
243#define FC_UNLOADING 0x2000 /* HBA in process of unloading drvr */
244#define FC_SCSI_SCAN_TMO 0x4000 /* scsi scan timer running */
245#define FC_ABORT_DISCOVERY 0x8000 /* we want to abort discovery */
246#define FC_NDISC_ACTIVE 0x10000 /* NPort discovery active */
247
248 uint32_t fc_topology; /* link topology, from LINK INIT */
249
250 struct lpfc_stats fc_stat;
251
252 /* These are the head/tail pointers for the bind, plogi, adisc, unmap,
253 * and map lists. Their counters are immediately following.
254 */
255 struct list_head fc_plogi_list;
256 struct list_head fc_adisc_list;
257 struct list_head fc_reglogin_list;
258 struct list_head fc_prli_list;
259 struct list_head fc_nlpunmap_list;
260 struct list_head fc_nlpmap_list;
261 struct list_head fc_npr_list;
262 struct list_head fc_unused_list;
263
264 /* Keep counters for the number of entries in each list. */
265 uint16_t fc_plogi_cnt;
266 uint16_t fc_adisc_cnt;
267 uint16_t fc_reglogin_cnt;
268 uint16_t fc_prli_cnt;
269 uint16_t fc_unmap_cnt;
270 uint16_t fc_map_cnt;
271 uint16_t fc_npr_cnt;
272 uint16_t fc_unused_cnt;
273 struct lpfc_nodelist fc_fcpnodev; /* nodelist entry for no device */
274 uint32_t nport_event_cnt; /* timestamp for nlplist entry */
275
dea31012005-04-17 16:05:31 -0500276 uint32_t wwnn[2];
277 uint32_t RandomData[7];
278
279 uint32_t cfg_log_verbose;
280 uint32_t cfg_lun_queue_depth;
281 uint32_t cfg_nodev_tmo;
282 uint32_t cfg_hba_queue_depth;
283 uint32_t cfg_fcp_class;
284 uint32_t cfg_use_adisc;
285 uint32_t cfg_ack0;
286 uint32_t cfg_topology;
287 uint32_t cfg_scan_down;
288 uint32_t cfg_link_speed;
289 uint32_t cfg_cr_delay;
290 uint32_t cfg_cr_count;
291 uint32_t cfg_fdmi_on;
292 uint32_t cfg_fcp_bind_method;
293 uint32_t cfg_discovery_threads;
294 uint32_t cfg_max_luns;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500295 uint32_t cfg_poll;
296 uint32_t cfg_poll_tmo;
dea31012005-04-17 16:05:31 -0500297 uint32_t cfg_sg_seg_cnt;
298 uint32_t cfg_sg_dma_buf_size;
299
300 lpfc_vpd_t vpd; /* vital product data */
301
302 struct Scsi_Host *host;
303 struct pci_dev *pcidev;
304 struct list_head work_list;
305 uint32_t work_ha; /* Host Attention Bits for WT */
306 uint32_t work_ha_mask; /* HA Bits owned by WT */
307 uint32_t work_hs; /* HS stored in case of ERRAT */
308 uint32_t work_status[2]; /* Extra status from SLIM */
309 uint32_t work_hba_events; /* Timeout to be handled */
310#define WORKER_DISC_TMO 0x1 /* Discovery timeout */
311#define WORKER_ELS_TMO 0x2 /* ELS timeout */
312#define WORKER_MBOX_TMO 0x4 /* MBOX timeout */
313#define WORKER_FDMI_TMO 0x8 /* FDMI timeout */
314
315 wait_queue_head_t *work_wait;
316 struct task_struct *worker_thread;
317
318 unsigned long pci_bar0_map; /* Physical address for PCI BAR0 */
319 unsigned long pci_bar2_map; /* Physical address for PCI BAR2 */
320 void __iomem *slim_memmap_p; /* Kernel memory mapped address for
321 PCI BAR0 */
322 void __iomem *ctrl_regs_memmap_p;/* Kernel memory mapped address for
323 PCI BAR2 */
324
325 void __iomem *MBslimaddr; /* virtual address for mbox cmds */
326 void __iomem *HAregaddr; /* virtual address for host attn reg */
327 void __iomem *CAregaddr; /* virtual address for chip attn reg */
328 void __iomem *HSregaddr; /* virtual address for host status
329 reg */
330 void __iomem *HCregaddr; /* virtual address for host ctl reg */
331
332 int brd_no; /* FC board number */
333
334 char SerialNumber[32]; /* adapter Serial Number */
335 char OptionROMVersion[32]; /* adapter BIOS / Fcode version */
336 char ModelDesc[256]; /* Model Description */
337 char ModelName[80]; /* Model Name */
338 char ProgramType[256]; /* Program Type */
339 char Port[20]; /* Port No */
340 uint8_t vpd_flag; /* VPD data flag */
341
342#define VPD_MODEL_DESC 0x1 /* valid vpd model description */
343#define VPD_MODEL_NAME 0x2 /* valid vpd model name */
344#define VPD_PROGRAM_TYPE 0x4 /* valid vpd program type */
345#define VPD_PORT 0x8 /* valid vpd port data */
346#define VPD_MASK 0xf /* mask for any vpd data */
347
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500348 struct timer_list fcp_poll_timer;
dea31012005-04-17 16:05:31 -0500349 struct timer_list els_tmofunc;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500350
dea31012005-04-17 16:05:31 -0500351 /*
352 * stat counters
353 */
354 uint64_t fc4InputRequests;
355 uint64_t fc4OutputRequests;
356 uint64_t fc4ControlRequests;
357
358 struct lpfc_sysfs_mbox sysfs_mbox;
359
360 /* fastpath list. */
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500361 spinlock_t scsi_buf_list_lock;
dea31012005-04-17 16:05:31 -0500362 struct list_head lpfc_scsi_buf_list;
363 uint32_t total_scsi_bufs;
364 struct list_head lpfc_iocb_list;
365 uint32_t total_iocbq_bufs;
366
367 /* pci_mem_pools */
368 struct pci_pool *lpfc_scsi_dma_buf_pool;
369 struct pci_pool *lpfc_mbuf_pool;
370 struct lpfc_dma_pool lpfc_mbuf_safety_pool;
371
372 mempool_t *mbox_mem_pool;
373 mempool_t *nlp_mem_pool;
374 struct list_head freebufList;
375 struct list_head ctrspbuflist;
376 struct list_head rnidrspbuflist;
James.Smart@Emulex.Comf888ba32005-08-10 15:03:01 -0400377
378 struct fc_host_statistics link_stats;
dea31012005-04-17 16:05:31 -0500379};
380
381
382struct rnidrsp {
383 void *buf;
384 uint32_t uniqueid;
385 struct list_head list;
386 uint32_t data;
387};