1 /*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
3 * Fibre Channel Host Bus Adapters. *
4 * Copyright (C) 2017-2022 Broadcom. All Rights Reserved. The term *
5 * “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. *
6 * Copyright (C) 2004-2016 Emulex. All rights reserved. *
7 * EMULEX and SLI are trademarks of Emulex. *
8 * www.broadcom.com *
9 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
10 * *
11 * This program is free software; you can redistribute it and/or *
12 * modify it under the terms of version 2 of the GNU General *
13 * Public License as published by the Free Software Foundation. *
14 * This program is distributed in the hope that it will be useful. *
15 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
16 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
17 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
18 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
19 * TO BE LEGALLY INVALID. See the GNU General Public License for *
20 * more details, a copy of which can be found in the file COPYING *
21 * included with this package. *
22 *******************************************************************/
23
24 #include <scsi/scsi_host.h>
25 #include <linux/hashtable.h>
26 #include <linux/ktime.h>
27 #include <linux/workqueue.h>
28
29 #if defined(CONFIG_DEBUG_FS) && !defined(CONFIG_SCSI_LPFC_DEBUG_FS)
30 #define CONFIG_SCSI_LPFC_DEBUG_FS
31 #endif
32
33 struct lpfc_sli2_slim;
34
35 #define ELX_MODEL_NAME_SIZE 80
36
37 #define LPFC_PCI_DEV_LP 0x1
38 #define LPFC_PCI_DEV_OC 0x2
39
40 #define LPFC_SLI_REV2 2
41 #define LPFC_SLI_REV3 3
42 #define LPFC_SLI_REV4 4
43
44 #define LPFC_MAX_TARGET 4096 /* max number of targets supported */
45 #define LPFC_MAX_DISC_THREADS 64 /* max outstanding discovery els
46 requests */
47 #define LPFC_MAX_NS_RETRY 3 /* Number of retry attempts to contact
48 the NameServer before giving up. */
49 #define LPFC_CMD_PER_LUN 3 /* max outstanding cmds per lun */
50 #define LPFC_DEFAULT_SG_SEG_CNT 64 /* sg element count per scsi cmnd */
51 #define LPFC_DEFAULT_MENLO_SG_SEG_CNT 128 /* sg element count per scsi
52 cmnd for menlo needs nearly twice as for firmware
53 downloads using bsg */
54
55 #define LPFC_DEFAULT_XPSGL_SIZE 256
56 #define LPFC_MAX_SG_TABLESIZE 0xffff
57 #define LPFC_MIN_SG_SLI4_BUF_SZ 0x800 /* based on LPFC_DEFAULT_SG_SEG_CNT */
58 #define LPFC_MAX_BG_SLI4_SEG_CNT_DIF 128 /* sg element count for BlockGuard */
59 #define LPFC_MAX_SG_SEG_CNT_DIF 512 /* sg element count per scsi cmnd */
60 #define LPFC_MAX_SG_SEG_CNT 4096 /* sg element count per scsi cmnd */
61 #define LPFC_MIN_SG_SEG_CNT 32 /* sg element count per scsi cmnd */
62 #define LPFC_MAX_SGL_SEG_CNT 512 /* SGL element count per scsi cmnd */
63 #define LPFC_MAX_BPL_SEG_CNT 4096 /* BPL element count per scsi cmnd */
64 #define LPFC_MAX_NVME_SEG_CNT 256 /* max SGL element cnt per NVME cmnd */
65
66 #define LPFC_MAX_SGE_SIZE 0x80000000 /* Maximum data allowed in a SGE */
67 #define LPFC_IOCB_LIST_CNT 2250 /* list of IOCBs for fast-path usage. */
68 #define LPFC_Q_RAMP_UP_INTERVAL 120 /* lun q_depth ramp up interval */
69 #define LPFC_VNAME_LEN 100 /* vport symbolic name length */
70 #define LPFC_TGTQ_RAMPUP_PCENT 5 /* Target queue rampup in percentage */
71 #define LPFC_MIN_TGT_QDEPTH 10
72 #define LPFC_MAX_TGT_QDEPTH 0xFFFF
73
74 #define LPFC_MAX_BUCKET_COUNT 20 /* Maximum no. of buckets for stat data
75 collection. */
76 /*
77 * Following time intervals are used of adjusting SCSI device
78 * queue depths when there are driver resource error or Firmware
79 * resource error.
80 */
81 /* 1 Second */
82 #define QUEUE_RAMP_DOWN_INTERVAL (msecs_to_jiffies(1000 * 1))
83
84 /* Number of exchanges reserved for discovery to complete */
85 #define LPFC_DISC_IOCB_BUFF_COUNT 20
86
87 #define LPFC_HB_MBOX_INTERVAL 5 /* Heart beat interval in seconds. */
88 #define LPFC_HB_MBOX_TIMEOUT 30 /* Heart beat timeout in seconds. */
89
90 /* Error Attention event polling interval */
91 #define LPFC_ERATT_POLL_INTERVAL 5 /* EATT poll interval in seconds */
92
93 /* Define macros for 64 bit support */
94 #define putPaddrLow(addr) ((uint32_t) (0xffffffff & (u64)(addr)))
95 #define putPaddrHigh(addr) ((uint32_t) (0xffffffff & (((u64)(addr))>>32)))
96 #define getPaddr(high, low) ((dma_addr_t)( \
97 (( (u64)(high)<<16 ) << 16)|( (u64)(low))))
98 /* Provide maximum configuration definitions. */
99 #define LPFC_DRVR_TIMEOUT 16 /* driver iocb timeout value in sec */
100 #define FC_MAX_ADPTMSG 64
101
102 #define MAX_HBAEVT 32
103 #define MAX_HBAS_NO_RESET 16
104
105 /* Number of MSI-X vectors the driver uses */
106 #define LPFC_MSIX_VECTORS 2
107
108 /* lpfc wait event data ready flag */
109 #define LPFC_DATA_READY 0 /* bit 0 */
110
111 /* queue dump line buffer size */
112 #define LPFC_LBUF_SZ 128
113
114 /* mailbox system shutdown options */
115 #define LPFC_MBX_NO_WAIT 0
116 #define LPFC_MBX_WAIT 1
117
118 #define LPFC_CFG_PARAM_MAGIC_NUM 0xFEAA0005
119 #define LPFC_PORT_CFG_NAME "/cfg/port.cfg"
120
121 #define lpfc_rangecheck(val, min, max) \
122 ((uint)(val) >= (uint)(min) && (val) <= (max))
123
124 enum lpfc_polling_flags {
125 ENABLE_FCP_RING_POLLING = 0x1,
126 DISABLE_FCP_RING_INT = 0x2
127 };
128
129 struct perf_prof {
130 uint16_t cmd_cpu[40];
131 uint16_t rsp_cpu[40];
132 uint16_t qh_cpu[40];
133 uint16_t wqidx[40];
134 };
135
136 /*
137 * Provide for FC4 TYPE x28 - NVME. The
138 * bit mask for FCP and NVME is 0x8 identically
139 * because they are 32 bit positions distance.
140 */
141 #define LPFC_FC4_TYPE_BITMASK 0x00000100
142
143 /* Provide DMA memory definitions the driver uses per port instance. */
144 struct lpfc_dmabuf {
145 struct list_head list;
146 void *virt; /* virtual address ptr */
147 dma_addr_t phys; /* mapped address */
148 uint32_t buffer_tag; /* used for tagged queue ring */
149 };
150
151 struct lpfc_nvmet_ctxbuf {
152 struct list_head list;
153 struct lpfc_async_xchg_ctx *context;
154 struct lpfc_iocbq *iocbq;
155 struct lpfc_sglq *sglq;
156 struct work_struct defer_work;
157 };
158
159 struct lpfc_dma_pool {
160 struct lpfc_dmabuf *elements;
161 uint32_t max_count;
162 uint32_t current_count;
163 };
164
165 struct hbq_dmabuf {
166 struct lpfc_dmabuf hbuf;
167 struct lpfc_dmabuf dbuf;
168 uint16_t total_size;
169 uint16_t bytes_recv;
170 uint32_t tag;
171 struct lpfc_cq_event cq_event;
172 unsigned long time_stamp;
173 void *context;
174 };
175
176 struct rqb_dmabuf {
177 struct lpfc_dmabuf hbuf;
178 struct lpfc_dmabuf dbuf;
179 uint16_t total_size;
180 uint16_t bytes_recv;
181 uint16_t idx;
182 struct lpfc_queue *hrq; /* ptr to associated Header RQ */
183 struct lpfc_queue *drq; /* ptr to associated Data RQ */
184 };
185
186 /* Priority bit. Set value to exceed low water mark in lpfc_mem. */
187 #define MEM_PRI 0x100
188
189
190 /****************************************************************************/
191 /* Device VPD save area */
192 /****************************************************************************/
193 typedef struct lpfc_vpd {
194 uint32_t status; /* vpd status value */
195 uint32_t length; /* number of bytes actually returned */
196 struct {
197 uint32_t rsvd1; /* Revision numbers */
198 uint32_t biuRev;
199 uint32_t smRev;
200 uint32_t smFwRev;
201 uint32_t endecRev;
202 uint16_t rBit;
203 uint8_t fcphHigh;
204 uint8_t fcphLow;
205 uint8_t feaLevelHigh;
206 uint8_t feaLevelLow;
207 uint32_t postKernRev;
208 uint32_t opFwRev;
209 uint8_t opFwName[16];
210 uint32_t sli1FwRev;
211 uint8_t sli1FwName[16];
212 uint32_t sli2FwRev;
213 uint8_t sli2FwName[16];
214 } rev;
215 struct {
216 #ifdef __BIG_ENDIAN_BITFIELD
217 uint32_t rsvd3 :20; /* Reserved */
218 uint32_t rsvd2 : 3; /* Reserved */
219 uint32_t cbg : 1; /* Configure BlockGuard */
220 uint32_t cmv : 1; /* Configure Max VPIs */
221 uint32_t ccrp : 1; /* Config Command Ring Polling */
222 uint32_t csah : 1; /* Configure Synchronous Abort Handling */
223 uint32_t chbs : 1; /* Cofigure Host Backing store */
224 uint32_t cinb : 1; /* Enable Interrupt Notification Block */
225 uint32_t cerbm : 1; /* Configure Enhanced Receive Buf Mgmt */
226 uint32_t cmx : 1; /* Configure Max XRIs */
227 uint32_t cmr : 1; /* Configure Max RPIs */
228 #else /* __LITTLE_ENDIAN */
229 uint32_t cmr : 1; /* Configure Max RPIs */
230 uint32_t cmx : 1; /* Configure Max XRIs */
231 uint32_t cerbm : 1; /* Configure Enhanced Receive Buf Mgmt */
232 uint32_t cinb : 1; /* Enable Interrupt Notification Block */
233 uint32_t chbs : 1; /* Cofigure Host Backing store */
234 uint32_t csah : 1; /* Configure Synchronous Abort Handling */
235 uint32_t ccrp : 1; /* Config Command Ring Polling */
236 uint32_t cmv : 1; /* Configure Max VPIs */
237 uint32_t cbg : 1; /* Configure BlockGuard */
238 uint32_t rsvd2 : 3; /* Reserved */
239 uint32_t rsvd3 :20; /* Reserved */
240 #endif
241 } sli3Feat;
242 } lpfc_vpd_t;
243
244
245 /*
246 * lpfc stat counters
247 */
248 struct lpfc_stats {
249 /* Statistics for ELS commands */
250 uint32_t elsLogiCol;
251 uint32_t elsRetryExceeded;
252 uint32_t elsXmitRetry;
253 uint32_t elsDelayRetry;
254 uint32_t elsRcvDrop;
255 uint32_t elsRcvFrame;
256 uint32_t elsRcvRSCN;
257 uint32_t elsRcvRNID;
258 uint32_t elsRcvFARP;
259 uint32_t elsRcvFARPR;
260 uint32_t elsRcvFLOGI;
261 uint32_t elsRcvPLOGI;
262 uint32_t elsRcvADISC;
263 uint32_t elsRcvPDISC;
264 uint32_t elsRcvFAN;
265 uint32_t elsRcvLOGO;
266 uint32_t elsRcvPRLO;
267 uint32_t elsRcvPRLI;
268 uint32_t elsRcvLIRR;
269 uint32_t elsRcvRLS;
270 uint32_t elsRcvRPL;
271 uint32_t elsRcvRRQ;
272 uint32_t elsRcvRTV;
273 uint32_t elsRcvECHO;
274 uint32_t elsRcvLCB;
275 uint32_t elsRcvRDP;
276 uint32_t elsRcvRDF;
277 uint32_t elsXmitFLOGI;
278 uint32_t elsXmitFDISC;
279 uint32_t elsXmitPLOGI;
280 uint32_t elsXmitPRLI;
281 uint32_t elsXmitADISC;
282 uint32_t elsXmitLOGO;
283 uint32_t elsXmitSCR;
284 uint32_t elsXmitRSCN;
285 uint32_t elsXmitRNID;
286 uint32_t elsXmitFARP;
287 uint32_t elsXmitFARPR;
288 uint32_t elsXmitACC;
289 uint32_t elsXmitLSRJT;
290
291 uint32_t frameRcvBcast;
292 uint32_t frameRcvMulti;
293 uint32_t strayXmitCmpl;
294 uint32_t frameXmitDelay;
295 uint32_t xriCmdCmpl;
296 uint32_t xriStatErr;
297 uint32_t LinkUp;
298 uint32_t LinkDown;
299 uint32_t LinkMultiEvent;
300 uint32_t NoRcvBuf;
301 uint32_t fcpCmd;
302 uint32_t fcpCmpl;
303 uint32_t fcpRspErr;
304 uint32_t fcpRemoteStop;
305 uint32_t fcpPortRjt;
306 uint32_t fcpPortBusy;
307 uint32_t fcpError;
308 uint32_t fcpLocalErr;
309 };
310
311 struct lpfc_hba;
312
313
314 #define LPFC_VMID_TIMER 300 /* timer interval in seconds */
315
316 #define LPFC_MAX_VMID_SIZE 256
317 #define LPFC_COMPRESS_VMID_SIZE 16
318
319 union lpfc_vmid_io_tag {
320 u32 app_id; /* App Id vmid */
321 u8 cs_ctl_vmid; /* Priority tag vmid */
322 };
323
324 #define JIFFIES_PER_HR (HZ * 60 * 60)
325
326 struct lpfc_vmid {
327 u8 flag;
328 #define LPFC_VMID_SLOT_FREE 0x0
329 #define LPFC_VMID_SLOT_USED 0x1
330 #define LPFC_VMID_REQ_REGISTER 0x2
331 #define LPFC_VMID_REGISTERED 0x4
332 #define LPFC_VMID_DE_REGISTER 0x8
333 char host_vmid[LPFC_MAX_VMID_SIZE];
334 union lpfc_vmid_io_tag un;
335 struct hlist_node hnode;
336 u64 io_rd_cnt;
337 u64 io_wr_cnt;
338 u8 vmid_len;
339 u8 delete_inactive; /* Delete if inactive flag 0 = no, 1 = yes */
340 u32 hash_index;
341 u64 __percpu *last_io_time;
342 };
343
344 #define lpfc_vmid_is_type_priority_tag(vport)\
345 (vport->vmid_priority_tagging ? 1 : 0)
346
347 #define LPFC_VMID_HASH_SIZE 256
348 #define LPFC_VMID_HASH_MASK 255
349 #define LPFC_VMID_HASH_SHIFT 6
350
351 struct lpfc_vmid_context {
352 struct lpfc_vmid *vmp;
353 struct lpfc_nodelist *nlp;
354 bool instantiated;
355 };
356
357 struct lpfc_vmid_priority_range {
358 u8 low;
359 u8 high;
360 u8 qos;
361 };
362
363 struct lpfc_vmid_priority_info {
364 u32 num_descriptors;
365 struct lpfc_vmid_priority_range *vmid_range;
366 };
367
368 #define QFPA_EVEN_ONLY 0x01
369 #define QFPA_ODD_ONLY 0x02
370 #define QFPA_EVEN_ODD 0x03
371
372 enum discovery_state {
373 LPFC_VPORT_UNKNOWN = 0, /* vport state is unknown */
374 LPFC_VPORT_FAILED = 1, /* vport has failed */
375 LPFC_LOCAL_CFG_LINK = 6, /* local NPORT Id configured */
376 LPFC_FLOGI = 7, /* FLOGI sent to Fabric */
377 LPFC_FDISC = 8, /* FDISC sent for vport */
378 LPFC_FABRIC_CFG_LINK = 9, /* Fabric assigned NPORT Id
379 * configured */
380 LPFC_NS_REG = 10, /* Register with NameServer */
381 LPFC_NS_QRY = 11, /* Query NameServer for NPort ID list */
382 LPFC_BUILD_DISC_LIST = 12, /* Build ADISC and PLOGI lists for
383 * device authentication / discovery */
384 LPFC_DISC_AUTH = 13, /* Processing ADISC list */
385 LPFC_VPORT_READY = 32,
386 };
387
388 enum hba_state {
389 LPFC_LINK_UNKNOWN = 0, /* HBA state is unknown */
390 LPFC_WARM_START = 1, /* HBA state after selective reset */
391 LPFC_INIT_START = 2, /* Initial state after board reset */
392 LPFC_INIT_MBX_CMDS = 3, /* Initialize HBA with mbox commands */
393 LPFC_LINK_DOWN = 4, /* HBA initialized, link is down */
394 LPFC_LINK_UP = 5, /* Link is up - issue READ_LA */
395 LPFC_CLEAR_LA = 6, /* authentication cmplt - issue
396 * CLEAR_LA */
397 LPFC_HBA_READY = 32,
398 LPFC_HBA_ERROR = -1
399 };
400
401 struct lpfc_trunk_link_state {
402 enum hba_state state;
403 uint8_t fault;
404 };
405
406 struct lpfc_trunk_link {
407 struct lpfc_trunk_link_state link0,
408 link1,
409 link2,
410 link3;
411 };
412
413 /* Format of congestion module parameters */
414 struct lpfc_cgn_param {
415 uint32_t cgn_param_magic;
416 uint8_t cgn_param_version; /* version 1 */
417 uint8_t cgn_param_mode; /* 0=off 1=managed 2=monitor only */
418 #define LPFC_CFG_OFF 0
419 #define LPFC_CFG_MANAGED 1
420 #define LPFC_CFG_MONITOR 2
421 uint8_t cgn_rsvd1;
422 uint8_t cgn_rsvd2;
423 uint8_t cgn_param_level0;
424 uint8_t cgn_param_level1;
425 uint8_t cgn_param_level2;
426 uint8_t byte11;
427 uint8_t byte12;
428 uint8_t byte13;
429 uint8_t byte14;
430 uint8_t byte15;
431 };
432
433 /* Max number of days of congestion data */
434 #define LPFC_MAX_CGN_DAYS 10
435
436 /* Format of congestion buffer info
437 * This structure defines memory thats allocated and registered with
438 * the HBA firmware. When adding or removing fields from this structure
439 * the alignment must match the HBA firmware.
440 */
441
442 struct lpfc_cgn_info {
443 /* Header */
444 __le16 cgn_info_size; /* is sizeof(struct lpfc_cgn_info) */
445 uint8_t cgn_info_version; /* represents format of structure */
446 #define LPFC_CGN_INFO_V1 1
447 #define LPFC_CGN_INFO_V2 2
448 #define LPFC_CGN_INFO_V3 3
449 uint8_t cgn_info_mode; /* 0=off 1=managed 2=monitor only */
450 uint8_t cgn_info_detect;
451 uint8_t cgn_info_action;
452 uint8_t cgn_info_level0;
453 uint8_t cgn_info_level1;
454 uint8_t cgn_info_level2;
455
456 /* Start Time */
457 uint8_t cgn_info_month;
458 uint8_t cgn_info_day;
459 uint8_t cgn_info_year;
460 uint8_t cgn_info_hour;
461 uint8_t cgn_info_minute;
462 uint8_t cgn_info_second;
463
464 /* minute / hours / daily indices */
465 uint8_t cgn_index_minute;
466 uint8_t cgn_index_hour;
467 uint8_t cgn_index_day;
468
469 __le16 cgn_warn_freq;
470 __le16 cgn_alarm_freq;
471 __le16 cgn_lunq;
472 uint8_t cgn_pad1[8];
473
474 /* Driver Information */
475 __le16 cgn_drvr_min[60];
476 __le32 cgn_drvr_hr[24];
477 __le32 cgn_drvr_day[LPFC_MAX_CGN_DAYS];
478
479 /* Congestion Warnings */
480 __le16 cgn_warn_min[60];
481 __le32 cgn_warn_hr[24];
482 __le32 cgn_warn_day[LPFC_MAX_CGN_DAYS];
483
484 /* Latency Information */
485 __le32 cgn_latency_min[60];
486 __le32 cgn_latency_hr[24];
487 __le32 cgn_latency_day[LPFC_MAX_CGN_DAYS];
488
489 /* Bandwidth Information */
490 __le16 cgn_bw_min[60];
491 __le16 cgn_bw_hr[24];
492 __le16 cgn_bw_day[LPFC_MAX_CGN_DAYS];
493
494 /* Congestion Alarms */
495 __le16 cgn_alarm_min[60];
496 __le32 cgn_alarm_hr[24];
497 __le32 cgn_alarm_day[LPFC_MAX_CGN_DAYS];
498
499 struct_group(cgn_stat,
500 uint8_t cgn_stat_npm; /* Notifications per minute */
501
502 /* Start Time */
503 uint8_t cgn_stat_month;
504 uint8_t cgn_stat_day;
505 uint8_t cgn_stat_year;
506 uint8_t cgn_stat_hour;
507 uint8_t cgn_stat_minute;
508 uint8_t cgn_pad2[2];
509
510 __le32 cgn_notification;
511 __le32 cgn_peer_notification;
512 __le32 link_integ_notification;
513 __le32 delivery_notification;
514
515 uint8_t cgn_stat_cgn_month; /* Last congestion notification FPIN */
516 uint8_t cgn_stat_cgn_day;
517 uint8_t cgn_stat_cgn_year;
518 uint8_t cgn_stat_cgn_hour;
519 uint8_t cgn_stat_cgn_min;
520 uint8_t cgn_stat_cgn_sec;
521
522 uint8_t cgn_stat_peer_month; /* Last peer congestion FPIN */
523 uint8_t cgn_stat_peer_day;
524 uint8_t cgn_stat_peer_year;
525 uint8_t cgn_stat_peer_hour;
526 uint8_t cgn_stat_peer_min;
527 uint8_t cgn_stat_peer_sec;
528
529 uint8_t cgn_stat_lnk_month; /* Last link integrity FPIN */
530 uint8_t cgn_stat_lnk_day;
531 uint8_t cgn_stat_lnk_year;
532 uint8_t cgn_stat_lnk_hour;
533 uint8_t cgn_stat_lnk_min;
534 uint8_t cgn_stat_lnk_sec;
535
536 uint8_t cgn_stat_del_month; /* Last delivery notification FPIN */
537 uint8_t cgn_stat_del_day;
538 uint8_t cgn_stat_del_year;
539 uint8_t cgn_stat_del_hour;
540 uint8_t cgn_stat_del_min;
541 uint8_t cgn_stat_del_sec;
542 );
543
544 __le32 cgn_info_crc;
545 #define LPFC_CGN_CRC32_MAGIC_NUMBER 0x1EDC6F41
546 #define LPFC_CGN_CRC32_SEED 0xFFFFFFFF
547 };
548
549 #define LPFC_CGN_INFO_SZ (sizeof(struct lpfc_cgn_info) - \
550 sizeof(uint32_t))
551
552 struct lpfc_cgn_stat {
553 atomic64_t total_bytes;
554 atomic64_t rcv_bytes;
555 atomic64_t rx_latency;
556 #define LPFC_CGN_NOT_SENT 0xFFFFFFFFFFFFFFFFLL
557 atomic_t rx_io_cnt;
558 };
559
560 struct lpfc_cgn_acqe_stat {
561 atomic64_t alarm;
562 atomic64_t warn;
563 };
564
565 struct lpfc_vport {
566 struct lpfc_hba *phba;
567 struct list_head listentry;
568 uint8_t port_type;
569 #define LPFC_PHYSICAL_PORT 1
570 #define LPFC_NPIV_PORT 2
571 #define LPFC_FABRIC_PORT 3
572 enum discovery_state port_state;
573
574 uint16_t vpi;
575 uint16_t vfi;
576 uint8_t vpi_state;
577 #define LPFC_VPI_REGISTERED 0x1
578
579 uint32_t fc_flag; /* FC flags */
580 /* Several of these flags are HBA centric and should be moved to
581 * phba->link_flag (e.g. FC_PTP, FC_PUBLIC_LOOP)
582 */
583 #define FC_PT2PT 0x1 /* pt2pt with no fabric */
584 #define FC_PT2PT_PLOGI 0x2 /* pt2pt initiate PLOGI */
585 #define FC_DISC_TMO 0x4 /* Discovery timer running */
586 #define FC_PUBLIC_LOOP 0x8 /* Public loop */
587 #define FC_LBIT 0x10 /* LOGIN bit in loopinit set */
588 #define FC_RSCN_MODE 0x20 /* RSCN cmd rcv'ed */
589 #define FC_NLP_MORE 0x40 /* More node to process in node tbl */
590 #define FC_OFFLINE_MODE 0x80 /* Interface is offline for diag */
591 #define FC_FABRIC 0x100 /* We are fabric attached */
592 #define FC_VPORT_LOGO_RCVD 0x200 /* LOGO received on vport */
593 #define FC_RSCN_DISCOVERY 0x400 /* Auth all devices after RSCN */
594 #define FC_LOGO_RCVD_DID_CHNG 0x800 /* FDISC on phys port detect DID chng*/
595 #define FC_PT2PT_NO_NVME 0x1000 /* Don't send NVME PRLI */
596 #define FC_SCSI_SCAN_TMO 0x4000 /* scsi scan timer running */
597 #define FC_ABORT_DISCOVERY 0x8000 /* we want to abort discovery */
598 #define FC_NDISC_ACTIVE 0x10000 /* NPort discovery active */
599 #define FC_BYPASSED_MODE 0x20000 /* NPort is in bypassed mode */
600 #define FC_VPORT_NEEDS_REG_VPI 0x80000 /* Needs to have its vpi registered */
601 #define FC_RSCN_DEFERRED 0x100000 /* A deferred RSCN being processed */
602 #define FC_VPORT_NEEDS_INIT_VPI 0x200000 /* Need to INIT_VPI before FDISC */
603 #define FC_VPORT_CVL_RCVD 0x400000 /* VLink failed due to CVL */
604 #define FC_VFI_REGISTERED 0x800000 /* VFI is registered */
605 #define FC_FDISC_COMPLETED 0x1000000/* FDISC completed */
606 #define FC_DISC_DELAYED 0x2000000/* Delay NPort discovery */
607
608 uint32_t ct_flags;
609 #define FC_CT_RFF_ID 0x1 /* RFF_ID accepted by switch */
610 #define FC_CT_RNN_ID 0x2 /* RNN_ID accepted by switch */
611 #define FC_CT_RSNN_NN 0x4 /* RSNN_NN accepted by switch */
612 #define FC_CT_RSPN_ID 0x8 /* RSPN_ID accepted by switch */
613 #define FC_CT_RFT_ID 0x10 /* RFT_ID accepted by switch */
614 #define FC_CT_RPRT_DEFER 0x20 /* Defer issuing FDMI RPRT */
615
616 struct list_head fc_nodes;
617
618 /* Keep counters for the number of entries in each list. */
619 uint16_t fc_plogi_cnt;
620 uint16_t fc_adisc_cnt;
621 uint16_t fc_reglogin_cnt;
622 uint16_t fc_prli_cnt;
623 uint16_t fc_unmap_cnt;
624 uint16_t fc_map_cnt;
625 uint16_t fc_npr_cnt;
626 uint16_t fc_unused_cnt;
627 struct serv_parm fc_sparam; /* buffer for our service parameters */
628
629 uint32_t fc_myDID; /* fibre channel S_ID */
630 uint32_t fc_prevDID; /* previous fibre channel S_ID */
631 struct lpfc_name fabric_portname;
632 struct lpfc_name fabric_nodename;
633
634 int32_t stopped; /* HBA has not been restarted since last ERATT */
635 uint8_t fc_linkspeed; /* Link speed after last READ_LA */
636
637 uint32_t num_disc_nodes; /* in addition to hba_state */
638 uint32_t gidft_inp; /* cnt of outstanding GID_FTs */
639
640 uint32_t fc_nlp_cnt; /* outstanding NODELIST requests */
641 uint32_t fc_rscn_id_cnt; /* count of RSCNs payloads in list */
642 uint32_t fc_rscn_flush; /* flag use of fc_rscn_id_list */
643 struct lpfc_dmabuf *fc_rscn_id_list[FC_MAX_HOLD_RSCN];
644 struct lpfc_name fc_nodename; /* fc nodename */
645 struct lpfc_name fc_portname; /* fc portname */
646
647 struct lpfc_work_evt disc_timeout_evt;
648
649 struct timer_list fc_disctmo; /* Discovery rescue timer */
650 uint8_t fc_ns_retry; /* retries for fabric nameserver */
651 uint32_t fc_prli_sent; /* cntr for outstanding PRLIs */
652
653 spinlock_t work_port_lock;
654 uint32_t work_port_events; /* Timeout to be handled */
655 #define WORKER_DISC_TMO 0x1 /* vport: Discovery timeout */
656 #define WORKER_ELS_TMO 0x2 /* vport: ELS timeout */
657 #define WORKER_DELAYED_DISC_TMO 0x8 /* vport: delayed discovery */
658
659 #define WORKER_MBOX_TMO 0x100 /* hba: MBOX timeout */
660 #define WORKER_HB_TMO 0x200 /* hba: Heart beat timeout */
661 #define WORKER_FABRIC_BLOCK_TMO 0x400 /* hba: fabric block timeout */
662 #define WORKER_RAMP_DOWN_QUEUE 0x800 /* hba: Decrease Q depth */
663 #define WORKER_RAMP_UP_QUEUE 0x1000 /* hba: Increase Q depth */
664 #define WORKER_SERVICE_TXQ 0x2000 /* hba: IOCBs on the txq */
665 #define WORKER_CHECK_INACTIVE_VMID 0x4000 /* hba: check inactive vmids */
666 #define WORKER_CHECK_VMID_ISSUE_QFPA 0x8000 /* vport: Check if qfpa needs
667 * to be issued */
668
669 struct timer_list els_tmofunc;
670 struct timer_list delayed_disc_tmo;
671
672 uint8_t load_flag;
673 #define FC_LOADING 0x1 /* HBA in process of loading drvr */
674 #define FC_UNLOADING 0x2 /* HBA in process of unloading drvr */
675 #define FC_ALLOW_FDMI 0x4 /* port is ready for FDMI requests */
676 #define FC_ALLOW_VMID 0x8 /* Allow VMID I/Os */
677 #define FC_DEREGISTER_ALL_APP_ID 0x10 /* Deregister all VMIDs */
678 /* Vport Config Parameters */
679 uint32_t cfg_scan_down;
680 uint32_t cfg_lun_queue_depth;
681 uint32_t cfg_nodev_tmo;
682 uint32_t cfg_devloss_tmo;
683 uint32_t cfg_restrict_login;
684 uint32_t cfg_peer_port_login;
685 uint32_t cfg_fcp_class;
686 uint32_t cfg_use_adisc;
687 uint32_t cfg_discovery_threads;
688 uint32_t cfg_log_verbose;
689 uint32_t cfg_enable_fc4_type;
690 uint32_t cfg_max_luns;
691 uint32_t cfg_enable_da_id;
692 uint32_t cfg_max_scsicmpl_time;
693 uint32_t cfg_tgt_queue_depth;
694 uint32_t cfg_first_burst_size;
695 uint32_t dev_loss_tmo_changed;
696 /* VMID parameters */
697 u8 lpfc_vmid_host_uuid[LPFC_COMPRESS_VMID_SIZE];
698 u32 max_vmid; /* maximum VMIDs allowed per port */
699 u32 cur_vmid_cnt; /* Current VMID count */
700 #define LPFC_MIN_VMID 4
701 #define LPFC_MAX_VMID 255
702 u32 vmid_inactivity_timeout; /* Time after which the VMID */
703 /* deregisters from switch */
704 u32 vmid_priority_tagging;
705 #define LPFC_VMID_PRIO_TAG_DISABLE 0 /* Disable */
706 #define LPFC_VMID_PRIO_TAG_SUP_TARGETS 1 /* Allow supported targets only */
707 #define LPFC_VMID_PRIO_TAG_ALL_TARGETS 2 /* Allow all targets */
708 unsigned long *vmid_priority_range;
709 #define LPFC_VMID_MAX_PRIORITY_RANGE 256
710 #define LPFC_VMID_PRIORITY_BITMAP_SIZE 32
711 u8 vmid_flag;
712 #define LPFC_VMID_IN_USE 0x1
713 #define LPFC_VMID_ISSUE_QFPA 0x2
714 #define LPFC_VMID_QFPA_CMPL 0x4
715 #define LPFC_VMID_QOS_ENABLED 0x8
716 #define LPFC_VMID_TIMER_ENBLD 0x10
717 #define LPFC_VMID_TYPE_PRIO 0x20
718 struct fc_qfpa_res *qfpa_res;
719
720 struct fc_vport *fc_vport;
721
722 struct lpfc_vmid *vmid;
723 DECLARE_HASHTABLE(hash_table, 8);
724 rwlock_t vmid_lock;
725 struct lpfc_vmid_priority_info vmid_priority;
726
727 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
728 struct dentry *debug_disc_trc;
729 struct dentry *debug_nodelist;
730 struct dentry *debug_nvmestat;
731 struct dentry *debug_scsistat;
732 struct dentry *debug_ioktime;
733 struct dentry *debug_hdwqstat;
734 struct dentry *vport_debugfs_root;
735 struct lpfc_debugfs_trc *disc_trc;
736 atomic_t disc_trc_cnt;
737 #endif
738 uint8_t stat_data_enabled;
739 uint8_t stat_data_blocked;
740 struct list_head rcv_buffer_list;
741 unsigned long rcv_buffer_time_stamp;
742 uint32_t vport_flag;
743 #define STATIC_VPORT 0x1
744 #define FAWWPN_PARAM_CHG 0x2
745
746 uint16_t fdmi_num_disc;
747 uint32_t fdmi_hba_mask;
748 uint32_t fdmi_port_mask;
749
750 /* There is a single nvme instance per vport. */
751 struct nvme_fc_local_port *localport;
752 uint8_t nvmei_support; /* driver supports NVME Initiator */
753 uint32_t last_fcp_wqidx;
754 uint32_t rcv_flogi_cnt; /* How many unsol FLOGIs ACK'd. */
755 };
756
757 struct hbq_s {
758 uint16_t entry_count; /* Current number of HBQ slots */
759 uint16_t buffer_count; /* Current number of buffers posted */
760 uint32_t next_hbqPutIdx; /* Index to next HBQ slot to use */
761 uint32_t hbqPutIdx; /* HBQ slot to use */
762 uint32_t local_hbqGetIdx; /* Local copy of Get index from Port */
763 void *hbq_virt; /* Virtual ptr to this hbq */
764 struct list_head hbq_buffer_list; /* buffers assigned to this HBQ */
765 /* Callback for HBQ buffer allocation */
766 struct hbq_dmabuf *(*hbq_alloc_buffer) (struct lpfc_hba *);
767 /* Callback for HBQ buffer free */
768 void (*hbq_free_buffer) (struct lpfc_hba *,
769 struct hbq_dmabuf *);
770 };
771
772 /* this matches the position in the lpfc_hbq_defs array */
773 #define LPFC_ELS_HBQ 0
774 #define LPFC_MAX_HBQS 1
775
776 enum hba_temp_state {
777 HBA_NORMAL_TEMP,
778 HBA_OVER_TEMP
779 };
780
781 enum intr_type_t {
782 NONE = 0,
783 INTx,
784 MSI,
785 MSIX,
786 };
787
788 #define LPFC_CT_CTX_MAX 64
789 struct unsol_rcv_ct_ctx {
790 uint32_t ctxt_id;
791 uint32_t SID;
792 uint32_t valid;
793 #define UNSOL_INVALID 0
794 #define UNSOL_VALID 1
795 uint16_t oxid;
796 uint16_t rxid;
797 };
798
799 #define LPFC_USER_LINK_SPEED_AUTO 0 /* auto select (default)*/
800 #define LPFC_USER_LINK_SPEED_1G 1 /* 1 Gigabaud */
801 #define LPFC_USER_LINK_SPEED_2G 2 /* 2 Gigabaud */
802 #define LPFC_USER_LINK_SPEED_4G 4 /* 4 Gigabaud */
803 #define LPFC_USER_LINK_SPEED_8G 8 /* 8 Gigabaud */
804 #define LPFC_USER_LINK_SPEED_10G 10 /* 10 Gigabaud */
805 #define LPFC_USER_LINK_SPEED_16G 16 /* 16 Gigabaud */
806 #define LPFC_USER_LINK_SPEED_32G 32 /* 32 Gigabaud */
807 #define LPFC_USER_LINK_SPEED_64G 64 /* 64 Gigabaud */
808 #define LPFC_USER_LINK_SPEED_MAX LPFC_USER_LINK_SPEED_64G
809
810 #define LPFC_LINK_SPEED_STRING "0, 1, 2, 4, 8, 10, 16, 32, 64"
811
812 enum nemb_type {
813 nemb_mse = 1,
814 nemb_hbd
815 };
816
817 enum mbox_type {
818 mbox_rd = 1,
819 mbox_wr
820 };
821
822 enum dma_type {
823 dma_mbox = 1,
824 dma_ebuf
825 };
826
827 enum sta_type {
828 sta_pre_addr = 1,
829 sta_pos_addr
830 };
831
832 struct lpfc_mbox_ext_buf_ctx {
833 uint32_t state;
834 #define LPFC_BSG_MBOX_IDLE 0
835 #define LPFC_BSG_MBOX_HOST 1
836 #define LPFC_BSG_MBOX_PORT 2
837 #define LPFC_BSG_MBOX_DONE 3
838 #define LPFC_BSG_MBOX_ABTS 4
839 enum nemb_type nembType;
840 enum mbox_type mboxType;
841 uint32_t numBuf;
842 uint32_t mbxTag;
843 uint32_t seqNum;
844 struct lpfc_dmabuf *mbx_dmabuf;
845 struct list_head ext_dmabuf_list;
846 };
847
848 struct lpfc_epd_pool {
849 /* Expedite pool */
850 struct list_head list;
851 u32 count;
852 spinlock_t lock; /* lock for expedite pool */
853 };
854
855 enum ras_state {
856 INACTIVE,
857 REG_INPROGRESS,
858 ACTIVE
859 };
860
861 struct lpfc_ras_fwlog {
862 uint8_t *fwlog_buff;
863 uint32_t fw_buffcount; /* Buffer size posted to FW */
864 #define LPFC_RAS_BUFF_ENTERIES 16 /* Each entry can hold max of 64k */
865 #define LPFC_RAS_MAX_ENTRY_SIZE (64 * 1024)
866 #define LPFC_RAS_MIN_BUFF_POST_SIZE (256 * 1024)
867 #define LPFC_RAS_MAX_BUFF_POST_SIZE (1024 * 1024)
868 uint32_t fw_loglevel; /* Log level set */
869 struct lpfc_dmabuf lwpd;
870 struct list_head fwlog_buff_list;
871
872 /* RAS support status on adapter */
873 bool ras_hwsupport; /* RAS Support available on HW or not */
874 bool ras_enabled; /* Ras Enabled for the function */
875 #define LPFC_RAS_DISABLE_LOGGING 0x00
876 #define LPFC_RAS_ENABLE_LOGGING 0x01
877 enum ras_state state; /* RAS logging running state */
878 };
879
880 #define DBG_LOG_STR_SZ 256
881 #define DBG_LOG_SZ 256
882
883 struct dbg_log_ent {
884 char log[DBG_LOG_STR_SZ];
885 u64 t_ns;
886 };
887
888 enum lpfc_irq_chann_mode {
889 /* Assign IRQs to all possible cpus that have hardware queues */
890 NORMAL_MODE,
891
892 /* Assign IRQs only to cpus on the same numa node as HBA */
893 NUMA_MODE,
894
895 /* Assign IRQs only on non-hyperthreaded CPUs. This is the
896 * same as normal_mode, but assign IRQS only on physical CPUs.
897 */
898 NHT_MODE,
899 };
900
901 enum lpfc_hba_bit_flags {
902 FABRIC_COMANDS_BLOCKED,
903 HBA_PCI_ERR,
904 };
905
906 struct lpfc_hba {
907 /* SCSI interface function jump table entries */
908 struct lpfc_io_buf * (*lpfc_get_scsi_buf)
909 (struct lpfc_hba *phba, struct lpfc_nodelist *ndlp,
910 struct scsi_cmnd *cmnd);
911 int (*lpfc_scsi_prep_dma_buf)
912 (struct lpfc_hba *, struct lpfc_io_buf *);
913 void (*lpfc_scsi_unprep_dma_buf)
914 (struct lpfc_hba *, struct lpfc_io_buf *);
915 void (*lpfc_release_scsi_buf)
916 (struct lpfc_hba *, struct lpfc_io_buf *);
917 void (*lpfc_rampdown_queue_depth)
918 (struct lpfc_hba *);
919 void (*lpfc_scsi_prep_cmnd)
920 (struct lpfc_vport *, struct lpfc_io_buf *,
921 struct lpfc_nodelist *);
922 int (*lpfc_scsi_prep_cmnd_buf)
923 (struct lpfc_vport *vport,
924 struct lpfc_io_buf *lpfc_cmd,
925 uint8_t tmo);
926 int (*lpfc_scsi_prep_task_mgmt_cmd)
927 (struct lpfc_vport *vport,
928 struct lpfc_io_buf *lpfc_cmd,
929 u64 lun, u8 task_mgmt_cmd);
930
931 /* IOCB interface function jump table entries */
932 int (*__lpfc_sli_issue_iocb)
933 (struct lpfc_hba *, uint32_t,
934 struct lpfc_iocbq *, uint32_t);
935 int (*__lpfc_sli_issue_fcp_io)
936 (struct lpfc_hba *phba, uint32_t ring_number,
937 struct lpfc_iocbq *piocb, uint32_t flag);
938 void (*__lpfc_sli_release_iocbq)(struct lpfc_hba *,
939 struct lpfc_iocbq *);
940 int (*lpfc_hba_down_post)(struct lpfc_hba *phba);
941 void (*lpfc_scsi_cmd_iocb_cmpl)
942 (struct lpfc_hba *, struct lpfc_iocbq *, struct lpfc_iocbq *);
943
944 /* MBOX interface function jump table entries */
945 int (*lpfc_sli_issue_mbox)
946 (struct lpfc_hba *, LPFC_MBOXQ_t *, uint32_t);
947
948 /* Slow-path IOCB process function jump table entries */
949 void (*lpfc_sli_handle_slow_ring_event)
950 (struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
951 uint32_t mask);
952
953 /* INIT device interface function jump table entries */
954 int (*lpfc_sli_hbq_to_firmware)
955 (struct lpfc_hba *, uint32_t, struct hbq_dmabuf *);
956 int (*lpfc_sli_brdrestart)
957 (struct lpfc_hba *);
958 int (*lpfc_sli_brdready)
959 (struct lpfc_hba *, uint32_t);
960 void (*lpfc_handle_eratt)
961 (struct lpfc_hba *);
962 void (*lpfc_stop_port)
963 (struct lpfc_hba *);
964 int (*lpfc_hba_init_link)
965 (struct lpfc_hba *, uint32_t);
966 int (*lpfc_hba_down_link)
967 (struct lpfc_hba *, uint32_t);
968 int (*lpfc_selective_reset)
969 (struct lpfc_hba *);
970
971 int (*lpfc_bg_scsi_prep_dma_buf)
972 (struct lpfc_hba *, struct lpfc_io_buf *);
973
974 /* Prep SLI WQE/IOCB jump table entries */
975 void (*__lpfc_sli_prep_els_req_rsp)(struct lpfc_iocbq *cmdiocbq,
976 struct lpfc_vport *vport,
977 struct lpfc_dmabuf *bmp,
978 u16 cmd_size, u32 did, u32 elscmd,
979 u8 tmo, u8 expect_rsp);
980 void (*__lpfc_sli_prep_gen_req)(struct lpfc_iocbq *cmdiocbq,
981 struct lpfc_dmabuf *bmp, u16 rpi,
982 u32 num_entry, u8 tmo);
983 void (*__lpfc_sli_prep_xmit_seq64)(struct lpfc_iocbq *cmdiocbq,
984 struct lpfc_dmabuf *bmp, u16 rpi,
985 u16 ox_id, u32 num_entry, u8 rctl,
986 u8 last_seq, u8 cr_cx_cmd);
987 void (*__lpfc_sli_prep_abort_xri)(struct lpfc_iocbq *cmdiocbq,
988 u16 ulp_context, u16 iotag,
989 u8 ulp_class, u16 cqid, bool ia);
990
991 /* expedite pool */
992 struct lpfc_epd_pool epd_pool;
993
994 /* SLI4 specific HBA data structure */
995 struct lpfc_sli4_hba sli4_hba;
996
997 struct workqueue_struct *wq;
998 struct delayed_work eq_delay_work;
999
1000 #define LPFC_IDLE_STAT_DELAY 1000
1001 struct delayed_work idle_stat_delay_work;
1002
1003 struct lpfc_sli sli;
1004 uint8_t pci_dev_grp; /* lpfc PCI dev group: 0x0, 0x1, 0x2,... */
1005 uint32_t sli_rev; /* SLI2, SLI3, or SLI4 */
1006 uint32_t sli3_options; /* Mask of enabled SLI3 options */
1007 #define LPFC_SLI3_HBQ_ENABLED 0x01
1008 #define LPFC_SLI3_NPIV_ENABLED 0x02
1009 #define LPFC_SLI3_VPORT_TEARDOWN 0x04
1010 #define LPFC_SLI3_CRP_ENABLED 0x08
1011 #define LPFC_SLI3_BG_ENABLED 0x20
1012 #define LPFC_SLI3_DSS_ENABLED 0x40
1013 #define LPFC_SLI4_PERFH_ENABLED 0x80
1014 #define LPFC_SLI4_PHWQ_ENABLED 0x100
1015 uint32_t iocb_cmd_size;
1016 uint32_t iocb_rsp_size;
1017
1018 struct lpfc_trunk_link trunk_link;
1019 enum hba_state link_state;
1020 uint32_t link_flag; /* link state flags */
1021 #define LS_LOOPBACK_MODE 0x1 /* NPort is in Loopback mode */
1022 /* This flag is set while issuing */
1023 /* INIT_LINK mailbox command */
1024 #define LS_NPIV_FAB_SUPPORTED 0x2 /* Fabric supports NPIV */
1025 #define LS_IGNORE_ERATT 0x4 /* intr handler should ignore ERATT */
1026 #define LS_MDS_LINK_DOWN 0x8 /* MDS Diagnostics Link Down */
1027 #define LS_MDS_LOOPBACK 0x10 /* MDS Diagnostics Link Up (Loopback) */
1028 #define LS_CT_VEN_RPA 0x20 /* Vendor RPA sent to switch */
1029 #define LS_EXTERNAL_LOOPBACK 0x40 /* External loopback plug inserted */
1030
1031 uint32_t hba_flag; /* hba generic flags */
1032 #define HBA_ERATT_HANDLED 0x1 /* This flag is set when eratt handled */
1033 #define DEFER_ERATT 0x2 /* Deferred error attention in progress */
1034 #define HBA_FCOE_MODE 0x4 /* HBA function in FCoE Mode */
1035 #define HBA_SP_QUEUE_EVT 0x8 /* Slow-path qevt posted to worker thread*/
1036 #define HBA_POST_RECEIVE_BUFFER 0x10 /* Rcv buffers need to be posted */
1037 #define HBA_PERSISTENT_TOPO 0x20 /* Persistent topology support in hba */
1038 #define ELS_XRI_ABORT_EVENT 0x40 /* ELS_XRI abort event was queued */
1039 #define ASYNC_EVENT 0x80
1040 #define LINK_DISABLED 0x100 /* Link disabled by user */
1041 #define FCF_TS_INPROG 0x200 /* FCF table scan in progress */
1042 #define FCF_RR_INPROG 0x400 /* FCF roundrobin flogi in progress */
1043 #define HBA_FIP_SUPPORT 0x800 /* FIP support in HBA */
1044 #define HBA_AER_ENABLED 0x1000 /* AER enabled with HBA */
1045 #define HBA_DEVLOSS_TMO 0x2000 /* HBA in devloss timeout */
1046 #define HBA_RRQ_ACTIVE 0x4000 /* process the rrq active list */
1047 #define HBA_IOQ_FLUSH 0x8000 /* FCP/NVME I/O queues being flushed */
1048 #define HBA_RECOVERABLE_UE 0x20000 /* Firmware supports recoverable UE */
1049 #define HBA_FORCED_LINK_SPEED 0x40000 /*
1050 * Firmware supports Forced Link Speed
1051 * capability
1052 */
1053 #define HBA_FLOGI_ISSUED 0x100000 /* FLOGI was issued */
1054 #define HBA_SHORT_CMF 0x200000 /* shorter CMF timer routine */
1055 #define HBA_CGN_DAY_WRAP 0x400000 /* HBA Congestion info day wraps */
1056 #define HBA_DEFER_FLOGI 0x800000 /* Defer FLOGI till read_sparm cmpl */
1057 #define HBA_SETUP 0x1000000 /* Signifies HBA setup is completed */
1058 #define HBA_NEEDS_CFG_PORT 0x2000000 /* SLI3 - needs a CONFIG_PORT mbox */
1059 #define HBA_HBEAT_INP 0x4000000 /* mbox HBEAT is in progress */
1060 #define HBA_HBEAT_TMO 0x8000000 /* HBEAT initiated after timeout */
1061 #define HBA_FLOGI_OUTSTANDING 0x10000000 /* FLOGI is outstanding */
1062 #define HBA_RHBA_CMPL 0x20000000 /* RHBA FDMI command is successful */
1063
1064 struct completion *fw_dump_cmpl; /* cmpl event tracker for fw_dump */
1065 uint32_t fcp_ring_in_use; /* When polling test if intr-hndlr active*/
1066 struct lpfc_dmabuf slim2p;
1067
1068 MAILBOX_t *mbox;
1069 uint32_t *mbox_ext;
1070 struct lpfc_mbox_ext_buf_ctx mbox_ext_buf_ctx;
1071 uint32_t ha_copy;
1072 struct _PCB *pcb;
1073 struct _IOCB *IOCBs;
1074
1075 struct lpfc_dmabuf hbqslimp;
1076
1077 uint16_t pci_cfg_value;
1078
1079 uint8_t fc_linkspeed; /* Link speed after last READ_LA */
1080
1081 uint32_t fc_eventTag; /* event tag for link attention */
1082 uint32_t link_events;
1083
1084 /* These fields used to be binfo */
1085 uint32_t fc_pref_DID; /* preferred D_ID */
1086 uint8_t fc_pref_ALPA; /* preferred AL_PA */
1087 uint32_t fc_edtovResol; /* E_D_TOV timer resolution */
1088 uint32_t fc_edtov; /* E_D_TOV timer value */
1089 uint32_t fc_arbtov; /* ARB_TOV timer value */
1090 uint32_t fc_ratov; /* R_A_TOV timer value */
1091 uint32_t fc_rttov; /* R_T_TOV timer value */
1092 uint32_t fc_altov; /* AL_TOV timer value */
1093 uint32_t fc_crtov; /* C_R_TOV timer value */
1094
1095 struct serv_parm fc_fabparam; /* fabric service parameters buffer */
1096 uint8_t alpa_map[128]; /* AL_PA map from READ_LA */
1097
1098 uint32_t lmt;
1099
1100 uint32_t fc_topology; /* link topology, from LINK INIT */
1101 uint32_t fc_topology_changed; /* link topology, from LINK INIT */
1102
1103 struct lpfc_stats fc_stat;
1104
1105 struct lpfc_nodelist fc_fcpnodev; /* nodelist entry for no device */
1106 uint32_t nport_event_cnt; /* timestamp for nlplist entry */
1107
1108 uint8_t wwnn[8];
1109 uint8_t wwpn[8];
1110 uint32_t RandomData[7];
1111 uint8_t fcp_embed_io;
1112 uint8_t nvmet_support; /* driver supports NVMET */
1113 #define LPFC_NVMET_MAX_PORTS 32
1114 uint8_t mds_diags_support;
1115 uint8_t bbcredit_support;
1116 uint8_t enab_exp_wqcq_pages;
1117 u8 nsler; /* Firmware supports FC-NVMe-2 SLER */
1118
1119 /* HBA Config Parameters */
1120 uint32_t cfg_ack0;
1121 uint32_t cfg_xri_rebalancing;
1122 uint32_t cfg_xpsgl;
1123 uint32_t cfg_enable_npiv;
1124 uint32_t cfg_enable_rrq;
1125 uint32_t cfg_topology;
1126 uint32_t cfg_link_speed;
1127 #define LPFC_FCF_FOV 1 /* Fast fcf failover */
1128 #define LPFC_FCF_PRIORITY 2 /* Priority fcf failover */
1129 uint32_t cfg_fcf_failover_policy;
1130 uint32_t cfg_fcp_io_sched;
1131 uint32_t cfg_ns_query;
1132 uint32_t cfg_fcp2_no_tgt_reset;
1133 uint32_t cfg_cr_delay;
1134 uint32_t cfg_cr_count;
1135 uint32_t cfg_multi_ring_support;
1136 uint32_t cfg_multi_ring_rctl;
1137 uint32_t cfg_multi_ring_type;
1138 uint32_t cfg_poll;
1139 uint32_t cfg_poll_tmo;
1140 uint32_t cfg_task_mgmt_tmo;
1141 uint32_t cfg_use_msi;
1142 uint32_t cfg_auto_imax;
1143 uint32_t cfg_fcp_imax;
1144 uint32_t cfg_force_rscn;
1145 uint32_t cfg_cq_poll_threshold;
1146 uint32_t cfg_cq_max_proc_limit;
1147 uint32_t cfg_fcp_cpu_map;
1148 uint32_t cfg_fcp_mq_threshold;
1149 uint32_t cfg_hdw_queue;
1150 uint32_t cfg_irq_chann;
1151 uint32_t cfg_suppress_rsp;
1152 uint32_t cfg_nvme_oas;
1153 uint32_t cfg_nvme_embed_cmd;
1154 uint32_t cfg_nvmet_mrq_post;
1155 uint32_t cfg_nvmet_mrq;
1156 uint32_t cfg_enable_nvmet;
1157 uint32_t cfg_nvme_enable_fb;
1158 uint32_t cfg_nvmet_fb_size;
1159 uint32_t cfg_total_seg_cnt;
1160 uint32_t cfg_sg_seg_cnt;
1161 uint32_t cfg_nvme_seg_cnt;
1162 uint32_t cfg_scsi_seg_cnt;
1163 uint32_t cfg_sg_dma_buf_size;
1164 uint32_t cfg_hba_queue_depth;
1165 uint32_t cfg_enable_hba_reset;
1166 uint32_t cfg_enable_hba_heartbeat;
1167 uint32_t cfg_fof;
1168 uint32_t cfg_EnableXLane;
1169 uint8_t cfg_oas_tgt_wwpn[8];
1170 uint8_t cfg_oas_vpt_wwpn[8];
1171 uint32_t cfg_oas_lun_state;
1172 #define OAS_LUN_ENABLE 1
1173 #define OAS_LUN_DISABLE 0
1174 uint32_t cfg_oas_lun_status;
1175 #define OAS_LUN_STATUS_EXISTS 0x01
1176 uint32_t cfg_oas_flags;
1177 #define OAS_FIND_ANY_VPORT 0x01
1178 #define OAS_FIND_ANY_TARGET 0x02
1179 #define OAS_LUN_VALID 0x04
1180 uint32_t cfg_oas_priority;
1181 uint32_t cfg_XLanePriority;
1182 uint32_t cfg_enable_bg;
1183 uint32_t cfg_prot_mask;
1184 uint32_t cfg_prot_guard;
1185 uint32_t cfg_hostmem_hgp;
1186 uint32_t cfg_log_verbose;
1187 uint32_t cfg_enable_fc4_type;
1188 #define LPFC_ENABLE_FCP 1
1189 #define LPFC_ENABLE_NVME 2
1190 #define LPFC_ENABLE_BOTH 3
1191 #if (IS_ENABLED(CONFIG_NVME_FC))
1192 #define LPFC_MAX_ENBL_FC4_TYPE LPFC_ENABLE_BOTH
1193 #define LPFC_DEF_ENBL_FC4_TYPE LPFC_ENABLE_BOTH
1194 #else
1195 #define LPFC_MAX_ENBL_FC4_TYPE LPFC_ENABLE_FCP
1196 #define LPFC_DEF_ENBL_FC4_TYPE LPFC_ENABLE_FCP
1197 #endif
1198 uint32_t cfg_aer_support;
1199 uint32_t cfg_sriov_nr_virtfn;
1200 uint32_t cfg_request_firmware_upgrade;
1201 uint32_t cfg_suppress_link_up;
1202 uint32_t cfg_rrq_xri_bitmap_sz;
1203 u32 cfg_fcp_wait_abts_rsp;
1204 uint32_t cfg_delay_discovery;
1205 uint32_t cfg_sli_mode;
1206 #define LPFC_INITIALIZE_LINK 0 /* do normal init_link mbox */
1207 #define LPFC_DELAY_INIT_LINK 1 /* layered driver hold off */
1208 #define LPFC_DELAY_INIT_LINK_INDEFINITELY 2 /* wait, manual intervention */
1209 uint32_t cfg_fdmi_on;
1210 #define LPFC_FDMI_NO_SUPPORT 0 /* FDMI not supported */
1211 #define LPFC_FDMI_SUPPORT 1 /* FDMI supported? */
1212 uint32_t cfg_enable_SmartSAN;
1213 uint32_t cfg_enable_mds_diags;
1214 uint32_t cfg_ras_fwlog_level;
1215 uint32_t cfg_ras_fwlog_buffsize;
1216 uint32_t cfg_ras_fwlog_func;
1217 uint32_t cfg_enable_bbcr; /* Enable BB Credit Recovery */
1218 uint32_t cfg_enable_dpp; /* Enable Direct Packet Push */
1219 uint32_t cfg_enable_pbde;
1220 uint32_t cfg_enable_mi;
1221 struct nvmet_fc_target_port *targetport;
1222 lpfc_vpd_t vpd; /* vital product data */
1223
1224 u32 cfg_max_vmid; /* maximum VMIDs allowed per port */
1225 u32 cfg_vmid_app_header;
1226 #define LPFC_VMID_APP_HEADER_DISABLE 0
1227 #define LPFC_VMID_APP_HEADER_ENABLE 1
1228 u32 cfg_vmid_priority_tagging;
1229 u32 cfg_vmid_inactivity_timeout; /* Time after which the VMID */
1230 /* deregisters from switch */
1231 struct pci_dev *pcidev;
1232 struct list_head work_list;
1233 uint32_t work_ha; /* Host Attention Bits for WT */
1234 uint32_t work_ha_mask; /* HA Bits owned by WT */
1235 uint32_t work_hs; /* HS stored in case of ERRAT */
1236 uint32_t work_status[2]; /* Extra status from SLIM */
1237
1238 wait_queue_head_t work_waitq;
1239 struct task_struct *worker_thread;
1240 unsigned long data_flags;
1241 uint32_t border_sge_num;
1242
1243 uint32_t hbq_in_use; /* HBQs in use flag */
1244 uint32_t hbq_count; /* Count of configured HBQs */
1245 struct hbq_s hbqs[LPFC_MAX_HBQS]; /* local copy of hbq indicies */
1246
1247 atomic_t fcp_qidx; /* next FCP WQ (RR Policy) */
1248 atomic_t nvme_qidx; /* next NVME WQ (RR Policy) */
1249
1250 phys_addr_t pci_bar0_map; /* Physical address for PCI BAR0 */
1251 phys_addr_t pci_bar1_map; /* Physical address for PCI BAR1 */
1252 phys_addr_t pci_bar2_map; /* Physical address for PCI BAR2 */
1253 void __iomem *slim_memmap_p; /* Kernel memory mapped address for
1254 PCI BAR0 */
1255 void __iomem *ctrl_regs_memmap_p;/* Kernel memory mapped address for
1256 PCI BAR2 */
1257
1258 void __iomem *pci_bar0_memmap_p; /* Kernel memory mapped address for
1259 PCI BAR0 with dual-ULP support */
1260 void __iomem *pci_bar2_memmap_p; /* Kernel memory mapped address for
1261 PCI BAR2 with dual-ULP support */
1262 void __iomem *pci_bar4_memmap_p; /* Kernel memory mapped address for
1263 PCI BAR4 with dual-ULP support */
1264 #define PCI_64BIT_BAR0 0
1265 #define PCI_64BIT_BAR2 2
1266 #define PCI_64BIT_BAR4 4
1267 void __iomem *MBslimaddr; /* virtual address for mbox cmds */
1268 void __iomem *HAregaddr; /* virtual address for host attn reg */
1269 void __iomem *CAregaddr; /* virtual address for chip attn reg */
1270 void __iomem *HSregaddr; /* virtual address for host status
1271 reg */
1272 void __iomem *HCregaddr; /* virtual address for host ctl reg */
1273
1274 struct lpfc_hgp __iomem *host_gp; /* Host side get/put pointers */
1275 struct lpfc_pgp *port_gp;
1276 uint32_t __iomem *hbq_put; /* Address in SLIM to HBQ put ptrs */
1277 uint32_t *hbq_get; /* Host mem address of HBQ get ptrs */
1278
1279 int brd_no; /* FC board number */
1280 char SerialNumber[32]; /* adapter Serial Number */
1281 char OptionROMVersion[32]; /* adapter BIOS / Fcode version */
1282 char BIOSVersion[16]; /* Boot BIOS version */
1283 char ModelDesc[256]; /* Model Description */
1284 char ModelName[80]; /* Model Name */
1285 char ProgramType[256]; /* Program Type */
1286 char Port[20]; /* Port No */
1287 uint8_t vpd_flag; /* VPD data flag */
1288
1289 #define VPD_MODEL_DESC 0x1 /* valid vpd model description */
1290 #define VPD_MODEL_NAME 0x2 /* valid vpd model name */
1291 #define VPD_PROGRAM_TYPE 0x4 /* valid vpd program type */
1292 #define VPD_PORT 0x8 /* valid vpd port data */
1293 #define VPD_MASK 0xf /* mask for any vpd data */
1294
1295
1296 struct timer_list fcp_poll_timer;
1297 struct timer_list eratt_poll;
1298 uint32_t eratt_poll_interval;
1299
1300 uint64_t bg_guard_err_cnt;
1301 uint64_t bg_apptag_err_cnt;
1302 uint64_t bg_reftag_err_cnt;
1303
1304 /* fastpath list. */
1305 spinlock_t scsi_buf_list_get_lock; /* SCSI buf alloc list lock */
1306 spinlock_t scsi_buf_list_put_lock; /* SCSI buf free list lock */
1307 struct list_head lpfc_scsi_buf_list_get;
1308 struct list_head lpfc_scsi_buf_list_put;
1309 uint32_t total_scsi_bufs;
1310 struct list_head lpfc_iocb_list;
1311 uint32_t total_iocbq_bufs;
1312 struct list_head active_rrq_list;
1313 spinlock_t hbalock;
1314 struct work_struct unblock_request_work; /* SCSI layer unblock IOs */
1315
1316 /* dma_mem_pools */
1317 struct dma_pool *lpfc_sg_dma_buf_pool;
1318 struct dma_pool *lpfc_mbuf_pool;
1319 struct dma_pool *lpfc_hrb_pool; /* header receive buffer pool */
1320 struct dma_pool *lpfc_drb_pool; /* data receive buffer pool */
1321 struct dma_pool *lpfc_nvmet_drb_pool; /* data receive buffer pool */
1322 struct dma_pool *lpfc_hbq_pool; /* SLI3 hbq buffer pool */
1323 struct dma_pool *lpfc_cmd_rsp_buf_pool;
1324 struct lpfc_dma_pool lpfc_mbuf_safety_pool;
1325
1326 mempool_t *mbox_mem_pool;
1327 mempool_t *nlp_mem_pool;
1328 mempool_t *rrq_pool;
1329 mempool_t *active_rrq_pool;
1330
1331 struct fc_host_statistics link_stats;
1332 enum lpfc_irq_chann_mode irq_chann_mode;
1333 enum intr_type_t intr_type;
1334 uint32_t intr_mode;
1335 #define LPFC_INTR_ERROR 0xFFFFFFFF
1336 struct list_head port_list;
1337 spinlock_t port_list_lock; /* lock for port_list mutations */
1338 struct lpfc_vport *pport; /* physical lpfc_vport pointer */
1339 uint16_t max_vpi; /* Maximum virtual nports */
1340 #define LPFC_MAX_VPI 0xFF /* Max number VPI supported 0 - 0xff */
1341 #define LPFC_MAX_VPORTS 0x100 /* Max vports per port, with pport */
1342 uint16_t max_vports; /*
1343 * For IOV HBAs max_vpi can change
1344 * after a reset. max_vports is max
1345 * number of vports present. This can
1346 * be greater than max_vpi.
1347 */
1348 uint16_t vpi_base;
1349 uint16_t vfi_base;
1350 unsigned long *vpi_bmask; /* vpi allocation table */
1351 uint16_t *vpi_ids;
1352 uint16_t vpi_count;
1353 struct list_head lpfc_vpi_blk_list;
1354
1355 /* Data structure used by fabric iocb scheduler */
1356 struct list_head fabric_iocb_list;
1357 atomic_t fabric_iocb_count;
1358 struct timer_list fabric_block_timer;
1359 unsigned long bit_flags;
1360 atomic_t num_rsrc_err;
1361 atomic_t num_cmd_success;
1362 unsigned long last_rsrc_error_time;
1363 unsigned long last_ramp_down_time;
1364 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
1365 struct dentry *hba_debugfs_root;
1366 atomic_t debugfs_vport_count;
1367 struct dentry *debug_multixri_pools;
1368 struct dentry *debug_hbqinfo;
1369 struct dentry *debug_dumpHostSlim;
1370 struct dentry *debug_dumpHBASlim;
1371 struct dentry *debug_InjErrLBA; /* LBA to inject errors at */
1372 struct dentry *debug_InjErrNPortID; /* NPortID to inject errors at */
1373 struct dentry *debug_InjErrWWPN; /* WWPN to inject errors at */
1374 struct dentry *debug_writeGuard; /* inject write guard_tag errors */
1375 struct dentry *debug_writeApp; /* inject write app_tag errors */
1376 struct dentry *debug_writeRef; /* inject write ref_tag errors */
1377 struct dentry *debug_readGuard; /* inject read guard_tag errors */
1378 struct dentry *debug_readApp; /* inject read app_tag errors */
1379 struct dentry *debug_readRef; /* inject read ref_tag errors */
1380
1381 struct dentry *debug_nvmeio_trc;
1382 struct lpfc_debugfs_nvmeio_trc *nvmeio_trc;
1383 struct dentry *debug_hdwqinfo;
1384 #ifdef LPFC_HDWQ_LOCK_STAT
1385 struct dentry *debug_lockstat;
1386 #endif
1387 struct dentry *debug_cgn_buffer;
1388 struct dentry *debug_rx_monitor;
1389 struct dentry *debug_ras_log;
1390 atomic_t nvmeio_trc_cnt;
1391 uint32_t nvmeio_trc_size;
1392 uint32_t nvmeio_trc_output_idx;
1393
1394 /* T10 DIF error injection */
1395 uint32_t lpfc_injerr_wgrd_cnt;
1396 uint32_t lpfc_injerr_wapp_cnt;
1397 uint32_t lpfc_injerr_wref_cnt;
1398 uint32_t lpfc_injerr_rgrd_cnt;
1399 uint32_t lpfc_injerr_rapp_cnt;
1400 uint32_t lpfc_injerr_rref_cnt;
1401 uint32_t lpfc_injerr_nportid;
1402 struct lpfc_name lpfc_injerr_wwpn;
1403 sector_t lpfc_injerr_lba;
1404 #define LPFC_INJERR_LBA_OFF (sector_t)(-1)
1405
1406 struct dentry *debug_slow_ring_trc;
1407 struct lpfc_debugfs_trc *slow_ring_trc;
1408 atomic_t slow_ring_trc_cnt;
1409 /* iDiag debugfs sub-directory */
1410 struct dentry *idiag_root;
1411 struct dentry *idiag_pci_cfg;
1412 struct dentry *idiag_bar_acc;
1413 struct dentry *idiag_que_info;
1414 struct dentry *idiag_que_acc;
1415 struct dentry *idiag_drb_acc;
1416 struct dentry *idiag_ctl_acc;
1417 struct dentry *idiag_mbx_acc;
1418 struct dentry *idiag_ext_acc;
1419 uint8_t lpfc_idiag_last_eq;
1420 #endif
1421 uint16_t nvmeio_trc_on;
1422
1423 /* Used for deferred freeing of ELS data buffers */
1424 struct list_head elsbuf;
1425 int elsbuf_cnt;
1426 int elsbuf_prev_cnt;
1427
1428 uint8_t temp_sensor_support;
1429 /* Fields used for heart beat. */
1430 unsigned long last_completion_time;
1431 unsigned long skipped_hb;
1432 struct timer_list hb_tmofunc;
1433 struct timer_list rrq_tmr;
1434 enum hba_temp_state over_temp_state;
1435 /*
1436 * Following bit will be set for all buffer tags which are not
1437 * associated with any HBQ.
1438 */
1439 #define QUE_BUFTAG_BIT (1<<31)
1440 uint32_t buffer_tag_count;
1441 int wait_4_mlo_maint_flg;
1442 wait_queue_head_t wait_4_mlo_m_q;
1443 /* data structure used for latency data collection */
1444 #define LPFC_NO_BUCKET 0
1445 #define LPFC_LINEAR_BUCKET 1
1446 #define LPFC_POWER2_BUCKET 2
1447 uint8_t bucket_type;
1448 uint32_t bucket_base;
1449 uint32_t bucket_step;
1450
1451 /* Maximum number of events that can be outstanding at any time*/
1452 #define LPFC_MAX_EVT_COUNT 512
1453 atomic_t fast_event_count;
1454 uint32_t fcoe_eventtag;
1455 uint32_t fcoe_eventtag_at_fcf_scan;
1456 uint32_t fcoe_cvl_eventtag;
1457 uint32_t fcoe_cvl_eventtag_attn;
1458 struct lpfc_fcf fcf;
1459 uint8_t fc_map[3];
1460 uint8_t valid_vlan;
1461 uint16_t vlan_id;
1462 struct list_head fcf_conn_rec_list;
1463
1464 bool defer_flogi_acc_flag;
1465 uint16_t defer_flogi_acc_rx_id;
1466 uint16_t defer_flogi_acc_ox_id;
1467
1468 spinlock_t ct_ev_lock; /* synchronize access to ct_ev_waiters */
1469 struct list_head ct_ev_waiters;
1470 struct unsol_rcv_ct_ctx ct_ctx[LPFC_CT_CTX_MAX];
1471 uint32_t ctx_idx;
1472 struct timer_list inactive_vmid_poll;
1473
1474 /* RAS Support */
1475 struct lpfc_ras_fwlog ras_fwlog;
1476
1477 uint8_t menlo_flag; /* menlo generic flags */
1478 #define HBA_MENLO_SUPPORT 0x1 /* HBA supports menlo commands */
1479 uint32_t iocb_cnt;
1480 uint32_t iocb_max;
1481 atomic_t sdev_cnt;
1482 spinlock_t devicelock; /* lock for luns list */
1483 mempool_t *device_data_mem_pool;
1484 struct list_head luns;
1485 #define LPFC_TRANSGRESSION_HIGH_TEMPERATURE 0x0080
1486 #define LPFC_TRANSGRESSION_LOW_TEMPERATURE 0x0040
1487 #define LPFC_TRANSGRESSION_HIGH_VOLTAGE 0x0020
1488 #define LPFC_TRANSGRESSION_LOW_VOLTAGE 0x0010
1489 #define LPFC_TRANSGRESSION_HIGH_TXBIAS 0x0008
1490 #define LPFC_TRANSGRESSION_LOW_TXBIAS 0x0004
1491 #define LPFC_TRANSGRESSION_HIGH_TXPOWER 0x0002
1492 #define LPFC_TRANSGRESSION_LOW_TXPOWER 0x0001
1493 #define LPFC_TRANSGRESSION_HIGH_RXPOWER 0x8000
1494 #define LPFC_TRANSGRESSION_LOW_RXPOWER 0x4000
1495 uint16_t sfp_alarm;
1496 uint16_t sfp_warning;
1497
1498 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
1499 uint16_t hdwqstat_on;
1500 #define LPFC_CHECK_OFF 0
1501 #define LPFC_CHECK_NVME_IO 1
1502 #define LPFC_CHECK_NVMET_IO 2
1503 #define LPFC_CHECK_SCSI_IO 4
1504 uint16_t ktime_on;
1505 uint64_t ktime_data_samples;
1506 uint64_t ktime_status_samples;
1507 uint64_t ktime_last_cmd;
1508 uint64_t ktime_seg1_total;
1509 uint64_t ktime_seg1_min;
1510 uint64_t ktime_seg1_max;
1511 uint64_t ktime_seg2_total;
1512 uint64_t ktime_seg2_min;
1513 uint64_t ktime_seg2_max;
1514 uint64_t ktime_seg3_total;
1515 uint64_t ktime_seg3_min;
1516 uint64_t ktime_seg3_max;
1517 uint64_t ktime_seg4_total;
1518 uint64_t ktime_seg4_min;
1519 uint64_t ktime_seg4_max;
1520 uint64_t ktime_seg5_total;
1521 uint64_t ktime_seg5_min;
1522 uint64_t ktime_seg5_max;
1523 uint64_t ktime_seg6_total;
1524 uint64_t ktime_seg6_min;
1525 uint64_t ktime_seg6_max;
1526 uint64_t ktime_seg7_total;
1527 uint64_t ktime_seg7_min;
1528 uint64_t ktime_seg7_max;
1529 uint64_t ktime_seg8_total;
1530 uint64_t ktime_seg8_min;
1531 uint64_t ktime_seg8_max;
1532 uint64_t ktime_seg9_total;
1533 uint64_t ktime_seg9_min;
1534 uint64_t ktime_seg9_max;
1535 uint64_t ktime_seg10_total;
1536 uint64_t ktime_seg10_min;
1537 uint64_t ktime_seg10_max;
1538 #endif
1539 /* CMF objects */
1540 struct lpfc_cgn_stat __percpu *cmf_stat;
1541 uint32_t cmf_interval_rate; /* timer interval limit in ms */
1542 uint32_t cmf_timer_cnt;
1543 #define LPFC_CMF_INTERVAL 90
1544 uint64_t cmf_link_byte_count;
1545 uint64_t cmf_max_line_rate;
1546 uint64_t cmf_max_bytes_per_interval;
1547 uint64_t cmf_last_sync_bw;
1548 #define LPFC_CMF_BLK_SIZE 512
1549 struct hrtimer cmf_timer;
1550 atomic_t cmf_bw_wait;
1551 atomic_t cmf_busy;
1552 atomic_t cmf_stop_io; /* To block request and stop IO's */
1553 uint32_t cmf_active_mode;
1554 uint32_t cmf_info_per_interval;
1555 #define LPFC_MAX_CMF_INFO 32
1556 struct timespec64 cmf_latency; /* Interval congestion timestamp */
1557 uint32_t cmf_last_ts; /* Interval congestion time (ms) */
1558 uint32_t cmf_active_info;
1559
1560 /* Signal / FPIN handling for Congestion Mgmt */
1561 u8 cgn_reg_fpin; /* Negotiated value from RDF */
1562 u8 cgn_init_reg_fpin; /* Initial value from READ_CONFIG */
1563 #define LPFC_CGN_FPIN_NONE 0x0
1564 #define LPFC_CGN_FPIN_WARN 0x1
1565 #define LPFC_CGN_FPIN_ALARM 0x2
1566 #define LPFC_CGN_FPIN_BOTH (LPFC_CGN_FPIN_WARN | LPFC_CGN_FPIN_ALARM)
1567
1568 u8 cgn_reg_signal; /* Negotiated value from EDC */
1569 u8 cgn_init_reg_signal; /* Initial value from READ_CONFIG */
1570 /* cgn_reg_signal and cgn_init_reg_signal use
1571 * enum fc_edc_cg_signal_cap_types
1572 */
1573 u16 cgn_fpin_frequency;
1574 #define LPFC_FPIN_INIT_FREQ 0xffff
1575 u32 cgn_sig_freq;
1576 u32 cgn_acqe_cnt;
1577
1578 /* RX monitor handling for CMF */
1579 struct rxtable_entry *rxtable; /* RX_monitor information */
1580 atomic_t rxtable_idx_head;
1581 #define LPFC_RXMONITOR_TABLE_IN_USE (LPFC_MAX_RXMONITOR_ENTRY + 73)
1582 atomic_t rxtable_idx_tail;
1583 atomic_t rx_max_read_cnt; /* Maximum read bytes */
1584 uint64_t rx_block_cnt;
1585
1586 /* Congestion parameters from flash */
1587 struct lpfc_cgn_param cgn_p;
1588
1589 /* Statistics counter for ACQE cgn alarms and warnings */
1590 struct lpfc_cgn_acqe_stat cgn_acqe_stat;
1591
1592 /* Congestion buffer information */
1593 struct lpfc_dmabuf *cgn_i; /* Congestion Info buffer */
1594 atomic_t cgn_fabric_warn_cnt; /* Total warning cgn events for info */
1595 atomic_t cgn_fabric_alarm_cnt; /* Total alarm cgn events for info */
1596 atomic_t cgn_sync_warn_cnt; /* Total warning events for SYNC wqe */
1597 atomic_t cgn_sync_alarm_cnt; /* Total alarm events for SYNC wqe */
1598 atomic_t cgn_driver_evt_cnt; /* Total driver cgn events for fmw */
1599 atomic_t cgn_latency_evt_cnt;
1600 struct timespec64 cgn_daily_ts;
1601 atomic64_t cgn_latency_evt; /* Avg latency per minute */
1602 unsigned long cgn_evt_timestamp;
1603 #define LPFC_CGN_TIMER_TO_MIN 60000 /* ms in a minute */
1604 uint32_t cgn_evt_minute;
1605 #define LPFC_SEC_MIN 60
1606 #define LPFC_MIN_HOUR 60
1607 #define LPFC_HOUR_DAY 24
1608 #define LPFC_MIN_DAY (LPFC_MIN_HOUR * LPFC_HOUR_DAY)
1609
1610 struct hlist_node cpuhp; /* used for cpuhp per hba callback */
1611 struct timer_list cpuhp_poll_timer;
1612 struct list_head poll_list; /* slowpath eq polling list */
1613 #define LPFC_POLL_HB 1 /* slowpath heartbeat */
1614 #define LPFC_POLL_FASTPATH 0 /* called from fastpath */
1615 #define LPFC_POLL_SLOWPATH 1 /* called from slowpath */
1616
1617 char os_host_name[MAXHOSTNAMELEN];
1618
1619 /* SCSI host template information - for physical port */
1620 struct scsi_host_template port_template;
1621 /* SCSI host template information - for all vports */
1622 struct scsi_host_template vport_template;
1623 atomic_t dbg_log_idx;
1624 atomic_t dbg_log_cnt;
1625 atomic_t dbg_log_dmping;
1626 struct dbg_log_ent dbg_log[DBG_LOG_SZ];
1627 };
1628
1629 #define LPFC_MAX_RXMONITOR_ENTRY 800
1630 #define LPFC_MAX_RXMONITOR_DUMP 32
1631 struct rxtable_entry {
1632 uint64_t cmf_bytes; /* Total no of read bytes for CMF_SYNC_WQE */
1633 uint64_t total_bytes; /* Total no of read bytes requested */
1634 uint64_t rcv_bytes; /* Total no of read bytes completed */
1635 uint64_t avg_io_size;
1636 uint64_t avg_io_latency;/* Average io latency in microseconds */
1637 uint64_t max_read_cnt; /* Maximum read bytes */
1638 uint64_t max_bytes_per_interval;
1639 uint32_t cmf_busy;
1640 uint32_t cmf_info; /* CMF_SYNC_WQE info */
1641 uint32_t io_cnt;
1642 uint32_t timer_utilization;
1643 uint32_t timer_interval;
1644 };
1645
1646 static inline struct Scsi_Host *
lpfc_shost_from_vport(struct lpfc_vport * vport)1647 lpfc_shost_from_vport(struct lpfc_vport *vport)
1648 {
1649 return container_of((void *) vport, struct Scsi_Host, hostdata[0]);
1650 }
1651
1652 static inline void
lpfc_set_loopback_flag(struct lpfc_hba * phba)1653 lpfc_set_loopback_flag(struct lpfc_hba *phba)
1654 {
1655 if (phba->cfg_topology == FLAGS_LOCAL_LB)
1656 phba->link_flag |= LS_LOOPBACK_MODE;
1657 else
1658 phba->link_flag &= ~LS_LOOPBACK_MODE;
1659 }
1660
1661 static inline int
lpfc_is_link_up(struct lpfc_hba * phba)1662 lpfc_is_link_up(struct lpfc_hba *phba)
1663 {
1664 return phba->link_state == LPFC_LINK_UP ||
1665 phba->link_state == LPFC_CLEAR_LA ||
1666 phba->link_state == LPFC_HBA_READY;
1667 }
1668
1669 static inline void
lpfc_worker_wake_up(struct lpfc_hba * phba)1670 lpfc_worker_wake_up(struct lpfc_hba *phba)
1671 {
1672 /* Set the lpfc data pending flag */
1673 set_bit(LPFC_DATA_READY, &phba->data_flags);
1674
1675 /* Wake up worker thread */
1676 wake_up(&phba->work_waitq);
1677 return;
1678 }
1679
1680 static inline int
lpfc_readl(void __iomem * addr,uint32_t * data)1681 lpfc_readl(void __iomem *addr, uint32_t *data)
1682 {
1683 uint32_t temp;
1684 temp = readl(addr);
1685 if (temp == 0xffffffff)
1686 return -EIO;
1687 *data = temp;
1688 return 0;
1689 }
1690
1691 static inline int
lpfc_sli_read_hs(struct lpfc_hba * phba)1692 lpfc_sli_read_hs(struct lpfc_hba *phba)
1693 {
1694 /*
1695 * There was a link/board error. Read the status register to retrieve
1696 * the error event and process it.
1697 */
1698 phba->sli.slistat.err_attn_event++;
1699
1700 /* Save status info and check for unplug error */
1701 if (lpfc_readl(phba->HSregaddr, &phba->work_hs) ||
1702 lpfc_readl(phba->MBslimaddr + 0xa8, &phba->work_status[0]) ||
1703 lpfc_readl(phba->MBslimaddr + 0xac, &phba->work_status[1])) {
1704 return -EIO;
1705 }
1706
1707 /* Clear chip Host Attention error bit */
1708 writel(HA_ERATT, phba->HAregaddr);
1709 readl(phba->HAregaddr); /* flush */
1710 phba->pport->stopped = 1;
1711
1712 return 0;
1713 }
1714
1715 static inline struct lpfc_sli_ring *
lpfc_phba_elsring(struct lpfc_hba * phba)1716 lpfc_phba_elsring(struct lpfc_hba *phba)
1717 {
1718 /* Return NULL if sli_rev has become invalid due to bad fw */
1719 if (phba->sli_rev != LPFC_SLI_REV4 &&
1720 phba->sli_rev != LPFC_SLI_REV3 &&
1721 phba->sli_rev != LPFC_SLI_REV2)
1722 return NULL;
1723
1724 if (phba->sli_rev == LPFC_SLI_REV4) {
1725 if (phba->sli4_hba.els_wq)
1726 return phba->sli4_hba.els_wq->pring;
1727 else
1728 return NULL;
1729 }
1730 return &phba->sli.sli3_ring[LPFC_ELS_RING];
1731 }
1732
1733 /**
1734 * lpfc_next_online_cpu - Finds next online CPU on cpumask
1735 * @mask: Pointer to phba's cpumask member.
1736 * @start: starting cpu index
1737 *
1738 * Note: If no valid cpu found, then nr_cpu_ids is returned.
1739 *
1740 **/
1741 static inline unsigned int
lpfc_next_online_cpu(const struct cpumask * mask,unsigned int start)1742 lpfc_next_online_cpu(const struct cpumask *mask, unsigned int start)
1743 {
1744 unsigned int cpu_it;
1745
1746 for_each_cpu_wrap(cpu_it, mask, start) {
1747 if (cpu_online(cpu_it))
1748 break;
1749 }
1750
1751 return cpu_it;
1752 }
1753 /**
1754 * lpfc_sli4_mod_hba_eq_delay - update EQ delay
1755 * @phba: Pointer to HBA context object.
1756 * @q: The Event Queue to update.
1757 * @delay: The delay value (in us) to be written.
1758 *
1759 **/
1760 static inline void
lpfc_sli4_mod_hba_eq_delay(struct lpfc_hba * phba,struct lpfc_queue * eq,u32 delay)1761 lpfc_sli4_mod_hba_eq_delay(struct lpfc_hba *phba, struct lpfc_queue *eq,
1762 u32 delay)
1763 {
1764 struct lpfc_register reg_data;
1765
1766 reg_data.word0 = 0;
1767 bf_set(lpfc_sliport_eqdelay_id, ®_data, eq->queue_id);
1768 bf_set(lpfc_sliport_eqdelay_delay, ®_data, delay);
1769 writel(reg_data.word0, phba->sli4_hba.u.if_type2.EQDregaddr);
1770 eq->q_mode = delay;
1771 }
1772
1773
1774 /*
1775 * Macro that declares tables and a routine to perform enum type to
1776 * ascii string lookup.
1777 *
1778 * Defines a <key,value> table for an enum. Uses xxx_INIT defines for
1779 * the enum to populate the table. Macro defines a routine (named
1780 * by caller) that will search all elements of the table for the key
1781 * and return the name string if found or "Unrecognized" if not found.
1782 */
1783 #define DECLARE_ENUM2STR_LOOKUP(routine, enum_name, enum_init) \
1784 static struct { \
1785 enum enum_name value; \
1786 char *name; \
1787 } fc_##enum_name##_e2str_names[] = enum_init; \
1788 static const char *routine(enum enum_name table_key) \
1789 { \
1790 int i; \
1791 char *name = "Unrecognized"; \
1792 \
1793 for (i = 0; i < ARRAY_SIZE(fc_##enum_name##_e2str_names); i++) {\
1794 if (fc_##enum_name##_e2str_names[i].value == table_key) {\
1795 name = fc_##enum_name##_e2str_names[i].name; \
1796 break; \
1797 } \
1798 } \
1799 return name; \
1800 }
1801
1802 /**
1803 * lpfc_is_vmid_enabled - returns if VMID is enabled for either switch types
1804 * @phba: Pointer to HBA context object.
1805 *
1806 * Relationship between the enable, target support and if vmid tag is required
1807 * for the particular combination
1808 * ---------------------------------------------------
1809 * Switch Enable Flag Target Support VMID Needed
1810 * ---------------------------------------------------
1811 * App Id 0 NA N
1812 * App Id 1 0 N
1813 * App Id 1 1 Y
1814 * Pr Tag 0 NA N
1815 * Pr Tag 1 0 N
1816 * Pr Tag 1 1 Y
1817 * Pr Tag 2 * Y
1818 ---------------------------------------------------
1819 *
1820 **/
lpfc_is_vmid_enabled(struct lpfc_hba * phba)1821 static inline int lpfc_is_vmid_enabled(struct lpfc_hba *phba)
1822 {
1823 return phba->cfg_vmid_app_header || phba->cfg_vmid_priority_tagging;
1824 }
1825
1826 static inline
get_job_ulpstatus(struct lpfc_hba * phba,struct lpfc_iocbq * iocbq)1827 u8 get_job_ulpstatus(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1828 {
1829 if (phba->sli_rev == LPFC_SLI_REV4)
1830 return bf_get(lpfc_wcqe_c_status, &iocbq->wcqe_cmpl);
1831 else
1832 return iocbq->iocb.ulpStatus;
1833 }
1834
1835 static inline
get_job_word4(struct lpfc_hba * phba,struct lpfc_iocbq * iocbq)1836 u32 get_job_word4(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1837 {
1838 if (phba->sli_rev == LPFC_SLI_REV4)
1839 return iocbq->wcqe_cmpl.parameter;
1840 else
1841 return iocbq->iocb.un.ulpWord[4];
1842 }
1843
1844 static inline
get_job_cmnd(struct lpfc_hba * phba,struct lpfc_iocbq * iocbq)1845 u8 get_job_cmnd(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1846 {
1847 if (phba->sli_rev == LPFC_SLI_REV4)
1848 return bf_get(wqe_cmnd, &iocbq->wqe.generic.wqe_com);
1849 else
1850 return iocbq->iocb.ulpCommand;
1851 }
1852
1853 static inline
get_job_ulpcontext(struct lpfc_hba * phba,struct lpfc_iocbq * iocbq)1854 u16 get_job_ulpcontext(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1855 {
1856 if (phba->sli_rev == LPFC_SLI_REV4)
1857 return bf_get(wqe_ctxt_tag, &iocbq->wqe.generic.wqe_com);
1858 else
1859 return iocbq->iocb.ulpContext;
1860 }
1861
1862 static inline
get_job_rcvoxid(struct lpfc_hba * phba,struct lpfc_iocbq * iocbq)1863 u16 get_job_rcvoxid(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1864 {
1865 if (phba->sli_rev == LPFC_SLI_REV4)
1866 return bf_get(wqe_rcvoxid, &iocbq->wqe.generic.wqe_com);
1867 else
1868 return iocbq->iocb.unsli3.rcvsli3.ox_id;
1869 }
1870
1871 static inline
get_job_data_placed(struct lpfc_hba * phba,struct lpfc_iocbq * iocbq)1872 u32 get_job_data_placed(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1873 {
1874 if (phba->sli_rev == LPFC_SLI_REV4)
1875 return iocbq->wcqe_cmpl.total_data_placed;
1876 else
1877 return iocbq->iocb.un.genreq64.bdl.bdeSize;
1878 }
1879
1880 static inline
get_job_abtsiotag(struct lpfc_hba * phba,struct lpfc_iocbq * iocbq)1881 u32 get_job_abtsiotag(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1882 {
1883 if (phba->sli_rev == LPFC_SLI_REV4)
1884 return iocbq->wqe.abort_cmd.wqe_com.abort_tag;
1885 else
1886 return iocbq->iocb.un.acxri.abortIoTag;
1887 }
1888
1889 static inline
get_job_els_rsp64_did(struct lpfc_hba * phba,struct lpfc_iocbq * iocbq)1890 u32 get_job_els_rsp64_did(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1891 {
1892 if (phba->sli_rev == LPFC_SLI_REV4)
1893 return bf_get(wqe_els_did, &iocbq->wqe.els_req.wqe_dest);
1894 else
1895 return iocbq->iocb.un.elsreq64.remoteID;
1896 }
1897