lpfc.h 36 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066
  1. /*******************************************************************
  2. * This file is part of the Emulex Linux Device Driver for *
  3. * Fibre Channel Host Bus Adapters. *
  4. * Copyright (C) 2004-2015 Emulex. All rights reserved. *
  5. * EMULEX and SLI are trademarks of Emulex. *
  6. * www.emulex.com *
  7. * Portions Copyright (C) 2004-2005 Christoph Hellwig *
  8. * *
  9. * This program is free software; you can redistribute it and/or *
  10. * 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. *
  20. *******************************************************************/
  21. #include <scsi/scsi_host.h>
  22. #if defined(CONFIG_DEBUG_FS) && !defined(CONFIG_SCSI_LPFC_DEBUG_FS)
  23. #define CONFIG_SCSI_LPFC_DEBUG_FS
  24. #endif
  25. struct lpfc_sli2_slim;
  26. #define ELX_MODEL_NAME_SIZE 80
  27. #define LPFC_PCI_DEV_LP 0x1
  28. #define LPFC_PCI_DEV_OC 0x2
  29. #define LPFC_SLI_REV2 2
  30. #define LPFC_SLI_REV3 3
  31. #define LPFC_SLI_REV4 4
  32. #define LPFC_MAX_TARGET 4096 /* max number of targets supported */
  33. #define LPFC_MAX_DISC_THREADS 64 /* max outstanding discovery els
  34. requests */
  35. #define LPFC_MAX_NS_RETRY 3 /* Number of retry attempts to contact
  36. the NameServer before giving up. */
  37. #define LPFC_CMD_PER_LUN 3 /* max outstanding cmds per lun */
  38. #define LPFC_DEFAULT_SG_SEG_CNT 64 /* sg element count per scsi cmnd */
  39. #define LPFC_DEFAULT_MENLO_SG_SEG_CNT 128 /* sg element count per scsi
  40. cmnd for menlo needs nearly twice as for firmware
  41. downloads using bsg */
  42. #define LPFC_MIN_SG_SLI4_BUF_SZ 0x800 /* based on LPFC_DEFAULT_SG_SEG_CNT */
  43. #define LPFC_MAX_SG_SLI4_SEG_CNT_DIF 128 /* sg element count per scsi cmnd */
  44. #define LPFC_MAX_SG_SEG_CNT_DIF 512 /* sg element count per scsi cmnd */
  45. #define LPFC_MAX_SG_SEG_CNT 4096 /* sg element count per scsi cmnd */
  46. #define LPFC_MAX_SGL_SEG_CNT 512 /* SGL element count per scsi cmnd */
  47. #define LPFC_MAX_BPL_SEG_CNT 4096 /* BPL element count per scsi cmnd */
  48. #define LPFC_MAX_SGE_SIZE 0x80000000 /* Maximum data allowed in a SGE */
  49. #define LPFC_IOCB_LIST_CNT 2250 /* list of IOCBs for fast-path usage. */
  50. #define LPFC_Q_RAMP_UP_INTERVAL 120 /* lun q_depth ramp up interval */
  51. #define LPFC_VNAME_LEN 100 /* vport symbolic name length */
  52. #define LPFC_TGTQ_INTERVAL 40000 /* Min amount of time between tgt
  53. queue depth change in millisecs */
  54. #define LPFC_TGTQ_RAMPUP_PCENT 5 /* Target queue rampup in percentage */
  55. #define LPFC_MIN_TGT_QDEPTH 10
  56. #define LPFC_MAX_TGT_QDEPTH 0xFFFF
  57. #define LPFC_MAX_BUCKET_COUNT 20 /* Maximum no. of buckets for stat data
  58. collection. */
  59. /*
  60. * Following time intervals are used of adjusting SCSI device
  61. * queue depths when there are driver resource error or Firmware
  62. * resource error.
  63. */
  64. /* 1 Second */
  65. #define QUEUE_RAMP_DOWN_INTERVAL (msecs_to_jiffies(1000 * 1))
  66. /* Number of exchanges reserved for discovery to complete */
  67. #define LPFC_DISC_IOCB_BUFF_COUNT 20
  68. #define LPFC_HB_MBOX_INTERVAL 5 /* Heart beat interval in seconds. */
  69. #define LPFC_HB_MBOX_TIMEOUT 30 /* Heart beat timeout in seconds. */
  70. #define LPFC_LOOK_AHEAD_OFF 0 /* Look ahead logic is turned off */
  71. /* Error Attention event polling interval */
  72. #define LPFC_ERATT_POLL_INTERVAL 5 /* EATT poll interval in seconds */
  73. /* Define macros for 64 bit support */
  74. #define putPaddrLow(addr) ((uint32_t) (0xffffffff & (u64)(addr)))
  75. #define putPaddrHigh(addr) ((uint32_t) (0xffffffff & (((u64)(addr))>>32)))
  76. #define getPaddr(high, low) ((dma_addr_t)( \
  77. (( (u64)(high)<<16 ) << 16)|( (u64)(low))))
  78. /* Provide maximum configuration definitions. */
  79. #define LPFC_DRVR_TIMEOUT 16 /* driver iocb timeout value in sec */
  80. #define FC_MAX_ADPTMSG 64
  81. #define MAX_HBAEVT 32
  82. /* Number of MSI-X vectors the driver uses */
  83. #define LPFC_MSIX_VECTORS 2
  84. /* lpfc wait event data ready flag */
  85. #define LPFC_DATA_READY (1<<0)
  86. /* queue dump line buffer size */
  87. #define LPFC_LBUF_SZ 128
  88. /* mailbox system shutdown options */
  89. #define LPFC_MBX_NO_WAIT 0
  90. #define LPFC_MBX_WAIT 1
  91. enum lpfc_polling_flags {
  92. ENABLE_FCP_RING_POLLING = 0x1,
  93. DISABLE_FCP_RING_INT = 0x2
  94. };
  95. /* Provide DMA memory definitions the driver uses per port instance. */
  96. struct lpfc_dmabuf {
  97. struct list_head list;
  98. void *virt; /* virtual address ptr */
  99. dma_addr_t phys; /* mapped address */
  100. uint32_t buffer_tag; /* used for tagged queue ring */
  101. };
  102. struct lpfc_dma_pool {
  103. struct lpfc_dmabuf *elements;
  104. uint32_t max_count;
  105. uint32_t current_count;
  106. };
  107. struct hbq_dmabuf {
  108. struct lpfc_dmabuf hbuf;
  109. struct lpfc_dmabuf dbuf;
  110. uint32_t size;
  111. uint32_t tag;
  112. struct lpfc_cq_event cq_event;
  113. unsigned long time_stamp;
  114. };
  115. /* Priority bit. Set value to exceed low water mark in lpfc_mem. */
  116. #define MEM_PRI 0x100
  117. /****************************************************************************/
  118. /* Device VPD save area */
  119. /****************************************************************************/
  120. typedef struct lpfc_vpd {
  121. uint32_t status; /* vpd status value */
  122. uint32_t length; /* number of bytes actually returned */
  123. struct {
  124. uint32_t rsvd1; /* Revision numbers */
  125. uint32_t biuRev;
  126. uint32_t smRev;
  127. uint32_t smFwRev;
  128. uint32_t endecRev;
  129. uint16_t rBit;
  130. uint8_t fcphHigh;
  131. uint8_t fcphLow;
  132. uint8_t feaLevelHigh;
  133. uint8_t feaLevelLow;
  134. uint32_t postKernRev;
  135. uint32_t opFwRev;
  136. uint8_t opFwName[16];
  137. uint32_t sli1FwRev;
  138. uint8_t sli1FwName[16];
  139. uint32_t sli2FwRev;
  140. uint8_t sli2FwName[16];
  141. } rev;
  142. struct {
  143. #ifdef __BIG_ENDIAN_BITFIELD
  144. uint32_t rsvd3 :19; /* Reserved */
  145. uint32_t cdss : 1; /* Configure Data Security SLI */
  146. uint32_t rsvd2 : 3; /* Reserved */
  147. uint32_t cbg : 1; /* Configure BlockGuard */
  148. uint32_t cmv : 1; /* Configure Max VPIs */
  149. uint32_t ccrp : 1; /* Config Command Ring Polling */
  150. uint32_t csah : 1; /* Configure Synchronous Abort Handling */
  151. uint32_t chbs : 1; /* Cofigure Host Backing store */
  152. uint32_t cinb : 1; /* Enable Interrupt Notification Block */
  153. uint32_t cerbm : 1; /* Configure Enhanced Receive Buf Mgmt */
  154. uint32_t cmx : 1; /* Configure Max XRIs */
  155. uint32_t cmr : 1; /* Configure Max RPIs */
  156. #else /* __LITTLE_ENDIAN */
  157. uint32_t cmr : 1; /* Configure Max RPIs */
  158. uint32_t cmx : 1; /* Configure Max XRIs */
  159. uint32_t cerbm : 1; /* Configure Enhanced Receive Buf Mgmt */
  160. uint32_t cinb : 1; /* Enable Interrupt Notification Block */
  161. uint32_t chbs : 1; /* Cofigure Host Backing store */
  162. uint32_t csah : 1; /* Configure Synchronous Abort Handling */
  163. uint32_t ccrp : 1; /* Config Command Ring Polling */
  164. uint32_t cmv : 1; /* Configure Max VPIs */
  165. uint32_t cbg : 1; /* Configure BlockGuard */
  166. uint32_t rsvd2 : 3; /* Reserved */
  167. uint32_t cdss : 1; /* Configure Data Security SLI */
  168. uint32_t rsvd3 :19; /* Reserved */
  169. #endif
  170. } sli3Feat;
  171. } lpfc_vpd_t;
  172. struct lpfc_scsi_buf;
  173. /*
  174. * lpfc stat counters
  175. */
  176. struct lpfc_stats {
  177. /* Statistics for ELS commands */
  178. uint32_t elsLogiCol;
  179. uint32_t elsRetryExceeded;
  180. uint32_t elsXmitRetry;
  181. uint32_t elsDelayRetry;
  182. uint32_t elsRcvDrop;
  183. uint32_t elsRcvFrame;
  184. uint32_t elsRcvRSCN;
  185. uint32_t elsRcvRNID;
  186. uint32_t elsRcvFARP;
  187. uint32_t elsRcvFARPR;
  188. uint32_t elsRcvFLOGI;
  189. uint32_t elsRcvPLOGI;
  190. uint32_t elsRcvADISC;
  191. uint32_t elsRcvPDISC;
  192. uint32_t elsRcvFAN;
  193. uint32_t elsRcvLOGO;
  194. uint32_t elsRcvPRLO;
  195. uint32_t elsRcvPRLI;
  196. uint32_t elsRcvLIRR;
  197. uint32_t elsRcvRLS;
  198. uint32_t elsRcvRPS;
  199. uint32_t elsRcvRPL;
  200. uint32_t elsRcvRRQ;
  201. uint32_t elsRcvRTV;
  202. uint32_t elsRcvECHO;
  203. uint32_t elsRcvLCB;
  204. uint32_t elsRcvRDP;
  205. uint32_t elsXmitFLOGI;
  206. uint32_t elsXmitFDISC;
  207. uint32_t elsXmitPLOGI;
  208. uint32_t elsXmitPRLI;
  209. uint32_t elsXmitADISC;
  210. uint32_t elsXmitLOGO;
  211. uint32_t elsXmitSCR;
  212. uint32_t elsXmitRNID;
  213. uint32_t elsXmitFARP;
  214. uint32_t elsXmitFARPR;
  215. uint32_t elsXmitACC;
  216. uint32_t elsXmitLSRJT;
  217. uint32_t frameRcvBcast;
  218. uint32_t frameRcvMulti;
  219. uint32_t strayXmitCmpl;
  220. uint32_t frameXmitDelay;
  221. uint32_t xriCmdCmpl;
  222. uint32_t xriStatErr;
  223. uint32_t LinkUp;
  224. uint32_t LinkDown;
  225. uint32_t LinkMultiEvent;
  226. uint32_t NoRcvBuf;
  227. uint32_t fcpCmd;
  228. uint32_t fcpCmpl;
  229. uint32_t fcpRspErr;
  230. uint32_t fcpRemoteStop;
  231. uint32_t fcpPortRjt;
  232. uint32_t fcpPortBusy;
  233. uint32_t fcpError;
  234. uint32_t fcpLocalErr;
  235. };
  236. struct lpfc_hba;
  237. enum discovery_state {
  238. LPFC_VPORT_UNKNOWN = 0, /* vport state is unknown */
  239. LPFC_VPORT_FAILED = 1, /* vport has failed */
  240. LPFC_LOCAL_CFG_LINK = 6, /* local NPORT Id configured */
  241. LPFC_FLOGI = 7, /* FLOGI sent to Fabric */
  242. LPFC_FDISC = 8, /* FDISC sent for vport */
  243. LPFC_FABRIC_CFG_LINK = 9, /* Fabric assigned NPORT Id
  244. * configured */
  245. LPFC_NS_REG = 10, /* Register with NameServer */
  246. LPFC_NS_QRY = 11, /* Query NameServer for NPort ID list */
  247. LPFC_BUILD_DISC_LIST = 12, /* Build ADISC and PLOGI lists for
  248. * device authentication / discovery */
  249. LPFC_DISC_AUTH = 13, /* Processing ADISC list */
  250. LPFC_VPORT_READY = 32,
  251. };
  252. enum hba_state {
  253. LPFC_LINK_UNKNOWN = 0, /* HBA state is unknown */
  254. LPFC_WARM_START = 1, /* HBA state after selective reset */
  255. LPFC_INIT_START = 2, /* Initial state after board reset */
  256. LPFC_INIT_MBX_CMDS = 3, /* Initialize HBA with mbox commands */
  257. LPFC_LINK_DOWN = 4, /* HBA initialized, link is down */
  258. LPFC_LINK_UP = 5, /* Link is up - issue READ_LA */
  259. LPFC_CLEAR_LA = 6, /* authentication cmplt - issue
  260. * CLEAR_LA */
  261. LPFC_HBA_READY = 32,
  262. LPFC_HBA_ERROR = -1
  263. };
  264. struct lpfc_vport {
  265. struct lpfc_hba *phba;
  266. struct list_head listentry;
  267. uint8_t port_type;
  268. #define LPFC_PHYSICAL_PORT 1
  269. #define LPFC_NPIV_PORT 2
  270. #define LPFC_FABRIC_PORT 3
  271. enum discovery_state port_state;
  272. uint16_t vpi;
  273. uint16_t vfi;
  274. uint8_t vpi_state;
  275. #define LPFC_VPI_REGISTERED 0x1
  276. uint32_t fc_flag; /* FC flags */
  277. /* Several of these flags are HBA centric and should be moved to
  278. * phba->link_flag (e.g. FC_PTP, FC_PUBLIC_LOOP)
  279. */
  280. #define FC_PT2PT 0x1 /* pt2pt with no fabric */
  281. #define FC_PT2PT_PLOGI 0x2 /* pt2pt initiate PLOGI */
  282. #define FC_DISC_TMO 0x4 /* Discovery timer running */
  283. #define FC_PUBLIC_LOOP 0x8 /* Public loop */
  284. #define FC_LBIT 0x10 /* LOGIN bit in loopinit set */
  285. #define FC_RSCN_MODE 0x20 /* RSCN cmd rcv'ed */
  286. #define FC_NLP_MORE 0x40 /* More node to process in node tbl */
  287. #define FC_OFFLINE_MODE 0x80 /* Interface is offline for diag */
  288. #define FC_FABRIC 0x100 /* We are fabric attached */
  289. #define FC_VPORT_LOGO_RCVD 0x200 /* LOGO received on vport */
  290. #define FC_RSCN_DISCOVERY 0x400 /* Auth all devices after RSCN */
  291. #define FC_LOGO_RCVD_DID_CHNG 0x800 /* FDISC on phys port detect DID chng*/
  292. #define FC_SCSI_SCAN_TMO 0x4000 /* scsi scan timer running */
  293. #define FC_ABORT_DISCOVERY 0x8000 /* we want to abort discovery */
  294. #define FC_NDISC_ACTIVE 0x10000 /* NPort discovery active */
  295. #define FC_BYPASSED_MODE 0x20000 /* NPort is in bypassed mode */
  296. #define FC_VPORT_NEEDS_REG_VPI 0x80000 /* Needs to have its vpi registered */
  297. #define FC_RSCN_DEFERRED 0x100000 /* A deferred RSCN being processed */
  298. #define FC_VPORT_NEEDS_INIT_VPI 0x200000 /* Need to INIT_VPI before FDISC */
  299. #define FC_VPORT_CVL_RCVD 0x400000 /* VLink failed due to CVL */
  300. #define FC_VFI_REGISTERED 0x800000 /* VFI is registered */
  301. #define FC_FDISC_COMPLETED 0x1000000/* FDISC completed */
  302. #define FC_DISC_DELAYED 0x2000000/* Delay NPort discovery */
  303. uint32_t ct_flags;
  304. #define FC_CT_RFF_ID 0x1 /* RFF_ID accepted by switch */
  305. #define FC_CT_RNN_ID 0x2 /* RNN_ID accepted by switch */
  306. #define FC_CT_RSNN_NN 0x4 /* RSNN_NN accepted by switch */
  307. #define FC_CT_RSPN_ID 0x8 /* RSPN_ID accepted by switch */
  308. #define FC_CT_RFT_ID 0x10 /* RFT_ID accepted by switch */
  309. struct list_head fc_nodes;
  310. /* Keep counters for the number of entries in each list. */
  311. uint16_t fc_plogi_cnt;
  312. uint16_t fc_adisc_cnt;
  313. uint16_t fc_reglogin_cnt;
  314. uint16_t fc_prli_cnt;
  315. uint16_t fc_unmap_cnt;
  316. uint16_t fc_map_cnt;
  317. uint16_t fc_npr_cnt;
  318. uint16_t fc_unused_cnt;
  319. struct serv_parm fc_sparam; /* buffer for our service parameters */
  320. uint32_t fc_myDID; /* fibre channel S_ID */
  321. uint32_t fc_prevDID; /* previous fibre channel S_ID */
  322. struct lpfc_name fabric_portname;
  323. struct lpfc_name fabric_nodename;
  324. int32_t stopped; /* HBA has not been restarted since last ERATT */
  325. uint8_t fc_linkspeed; /* Link speed after last READ_LA */
  326. uint32_t num_disc_nodes; /*in addition to hba_state */
  327. uint32_t fc_nlp_cnt; /* outstanding NODELIST requests */
  328. uint32_t fc_rscn_id_cnt; /* count of RSCNs payloads in list */
  329. uint32_t fc_rscn_flush; /* flag use of fc_rscn_id_list */
  330. struct lpfc_dmabuf *fc_rscn_id_list[FC_MAX_HOLD_RSCN];
  331. struct lpfc_name fc_nodename; /* fc nodename */
  332. struct lpfc_name fc_portname; /* fc portname */
  333. struct lpfc_work_evt disc_timeout_evt;
  334. struct timer_list fc_disctmo; /* Discovery rescue timer */
  335. uint8_t fc_ns_retry; /* retries for fabric nameserver */
  336. uint32_t fc_prli_sent; /* cntr for outstanding PRLIs */
  337. spinlock_t work_port_lock;
  338. uint32_t work_port_events; /* Timeout to be handled */
  339. #define WORKER_DISC_TMO 0x1 /* vport: Discovery timeout */
  340. #define WORKER_ELS_TMO 0x2 /* vport: ELS timeout */
  341. #define WORKER_FDMI_TMO 0x4 /* vport: FDMI timeout */
  342. #define WORKER_DELAYED_DISC_TMO 0x8 /* vport: delayed discovery */
  343. #define WORKER_MBOX_TMO 0x100 /* hba: MBOX timeout */
  344. #define WORKER_HB_TMO 0x200 /* hba: Heart beat timeout */
  345. #define WORKER_FABRIC_BLOCK_TMO 0x400 /* hba: fabric block timeout */
  346. #define WORKER_RAMP_DOWN_QUEUE 0x800 /* hba: Decrease Q depth */
  347. #define WORKER_RAMP_UP_QUEUE 0x1000 /* hba: Increase Q depth */
  348. #define WORKER_SERVICE_TXQ 0x2000 /* hba: IOCBs on the txq */
  349. struct timer_list fc_fdmitmo;
  350. struct timer_list els_tmofunc;
  351. struct timer_list delayed_disc_tmo;
  352. int unreg_vpi_cmpl;
  353. uint8_t load_flag;
  354. #define FC_LOADING 0x1 /* HBA in process of loading drvr */
  355. #define FC_UNLOADING 0x2 /* HBA in process of unloading drvr */
  356. /* Vport Config Parameters */
  357. uint32_t cfg_scan_down;
  358. uint32_t cfg_lun_queue_depth;
  359. uint32_t cfg_nodev_tmo;
  360. uint32_t cfg_devloss_tmo;
  361. uint32_t cfg_restrict_login;
  362. uint32_t cfg_peer_port_login;
  363. uint32_t cfg_fcp_class;
  364. uint32_t cfg_use_adisc;
  365. uint32_t cfg_fdmi_on;
  366. #define LPFC_FDMI_SUPPORT 1 /* bit 0 - FDMI supported? */
  367. #define LPFC_FDMI_REG_DELAY 2 /* bit 1 - 60 sec registration delay */
  368. #define LPFC_FDMI_ALL_ATTRIB 4 /* bit 2 - register ALL attributes? */
  369. uint32_t cfg_discovery_threads;
  370. uint32_t cfg_log_verbose;
  371. uint32_t cfg_max_luns;
  372. uint32_t cfg_enable_da_id;
  373. uint32_t cfg_max_scsicmpl_time;
  374. uint32_t cfg_tgt_queue_depth;
  375. uint32_t cfg_first_burst_size;
  376. uint32_t dev_loss_tmo_changed;
  377. struct fc_vport *fc_vport;
  378. #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
  379. struct dentry *debug_disc_trc;
  380. struct dentry *debug_nodelist;
  381. struct dentry *vport_debugfs_root;
  382. struct lpfc_debugfs_trc *disc_trc;
  383. atomic_t disc_trc_cnt;
  384. #endif
  385. uint8_t stat_data_enabled;
  386. uint8_t stat_data_blocked;
  387. struct list_head rcv_buffer_list;
  388. unsigned long rcv_buffer_time_stamp;
  389. uint32_t vport_flag;
  390. #define STATIC_VPORT 1
  391. };
  392. struct hbq_s {
  393. uint16_t entry_count; /* Current number of HBQ slots */
  394. uint16_t buffer_count; /* Current number of buffers posted */
  395. uint32_t next_hbqPutIdx; /* Index to next HBQ slot to use */
  396. uint32_t hbqPutIdx; /* HBQ slot to use */
  397. uint32_t local_hbqGetIdx; /* Local copy of Get index from Port */
  398. void *hbq_virt; /* Virtual ptr to this hbq */
  399. struct list_head hbq_buffer_list; /* buffers assigned to this HBQ */
  400. /* Callback for HBQ buffer allocation */
  401. struct hbq_dmabuf *(*hbq_alloc_buffer) (struct lpfc_hba *);
  402. /* Callback for HBQ buffer free */
  403. void (*hbq_free_buffer) (struct lpfc_hba *,
  404. struct hbq_dmabuf *);
  405. };
  406. #define LPFC_MAX_HBQS 4
  407. /* this matches the position in the lpfc_hbq_defs array */
  408. #define LPFC_ELS_HBQ 0
  409. #define LPFC_EXTRA_HBQ 1
  410. enum hba_temp_state {
  411. HBA_NORMAL_TEMP,
  412. HBA_OVER_TEMP
  413. };
  414. enum intr_type_t {
  415. NONE = 0,
  416. INTx,
  417. MSI,
  418. MSIX,
  419. };
  420. #define LPFC_CT_CTX_MAX 64
  421. struct unsol_rcv_ct_ctx {
  422. uint32_t ctxt_id;
  423. uint32_t SID;
  424. uint32_t valid;
  425. #define UNSOL_INVALID 0
  426. #define UNSOL_VALID 1
  427. uint16_t oxid;
  428. uint16_t rxid;
  429. };
  430. #define LPFC_USER_LINK_SPEED_AUTO 0 /* auto select (default)*/
  431. #define LPFC_USER_LINK_SPEED_1G 1 /* 1 Gigabaud */
  432. #define LPFC_USER_LINK_SPEED_2G 2 /* 2 Gigabaud */
  433. #define LPFC_USER_LINK_SPEED_4G 4 /* 4 Gigabaud */
  434. #define LPFC_USER_LINK_SPEED_8G 8 /* 8 Gigabaud */
  435. #define LPFC_USER_LINK_SPEED_10G 10 /* 10 Gigabaud */
  436. #define LPFC_USER_LINK_SPEED_16G 16 /* 16 Gigabaud */
  437. #define LPFC_USER_LINK_SPEED_MAX LPFC_USER_LINK_SPEED_16G
  438. #define LPFC_USER_LINK_SPEED_BITMAP ((1 << LPFC_USER_LINK_SPEED_16G) | \
  439. (1 << LPFC_USER_LINK_SPEED_10G) | \
  440. (1 << LPFC_USER_LINK_SPEED_8G) | \
  441. (1 << LPFC_USER_LINK_SPEED_4G) | \
  442. (1 << LPFC_USER_LINK_SPEED_2G) | \
  443. (1 << LPFC_USER_LINK_SPEED_1G) | \
  444. (1 << LPFC_USER_LINK_SPEED_AUTO))
  445. #define LPFC_LINK_SPEED_STRING "0, 1, 2, 4, 8, 10, 16"
  446. enum nemb_type {
  447. nemb_mse = 1,
  448. nemb_hbd
  449. };
  450. enum mbox_type {
  451. mbox_rd = 1,
  452. mbox_wr
  453. };
  454. enum dma_type {
  455. dma_mbox = 1,
  456. dma_ebuf
  457. };
  458. enum sta_type {
  459. sta_pre_addr = 1,
  460. sta_pos_addr
  461. };
  462. struct lpfc_mbox_ext_buf_ctx {
  463. uint32_t state;
  464. #define LPFC_BSG_MBOX_IDLE 0
  465. #define LPFC_BSG_MBOX_HOST 1
  466. #define LPFC_BSG_MBOX_PORT 2
  467. #define LPFC_BSG_MBOX_DONE 3
  468. #define LPFC_BSG_MBOX_ABTS 4
  469. enum nemb_type nembType;
  470. enum mbox_type mboxType;
  471. uint32_t numBuf;
  472. uint32_t mbxTag;
  473. uint32_t seqNum;
  474. struct lpfc_dmabuf *mbx_dmabuf;
  475. struct list_head ext_dmabuf_list;
  476. };
  477. struct lpfc_hba {
  478. /* SCSI interface function jump table entries */
  479. int (*lpfc_new_scsi_buf)
  480. (struct lpfc_vport *, int);
  481. struct lpfc_scsi_buf * (*lpfc_get_scsi_buf)
  482. (struct lpfc_hba *, struct lpfc_nodelist *);
  483. int (*lpfc_scsi_prep_dma_buf)
  484. (struct lpfc_hba *, struct lpfc_scsi_buf *);
  485. void (*lpfc_scsi_unprep_dma_buf)
  486. (struct lpfc_hba *, struct lpfc_scsi_buf *);
  487. void (*lpfc_release_scsi_buf)
  488. (struct lpfc_hba *, struct lpfc_scsi_buf *);
  489. void (*lpfc_rampdown_queue_depth)
  490. (struct lpfc_hba *);
  491. void (*lpfc_scsi_prep_cmnd)
  492. (struct lpfc_vport *, struct lpfc_scsi_buf *,
  493. struct lpfc_nodelist *);
  494. /* IOCB interface function jump table entries */
  495. int (*__lpfc_sli_issue_iocb)
  496. (struct lpfc_hba *, uint32_t,
  497. struct lpfc_iocbq *, uint32_t);
  498. void (*__lpfc_sli_release_iocbq)(struct lpfc_hba *,
  499. struct lpfc_iocbq *);
  500. int (*lpfc_hba_down_post)(struct lpfc_hba *phba);
  501. IOCB_t * (*lpfc_get_iocb_from_iocbq)
  502. (struct lpfc_iocbq *);
  503. void (*lpfc_scsi_cmd_iocb_cmpl)
  504. (struct lpfc_hba *, struct lpfc_iocbq *, struct lpfc_iocbq *);
  505. /* MBOX interface function jump table entries */
  506. int (*lpfc_sli_issue_mbox)
  507. (struct lpfc_hba *, LPFC_MBOXQ_t *, uint32_t);
  508. /* Slow-path IOCB process function jump table entries */
  509. void (*lpfc_sli_handle_slow_ring_event)
  510. (struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  511. uint32_t mask);
  512. /* INIT device interface function jump table entries */
  513. int (*lpfc_sli_hbq_to_firmware)
  514. (struct lpfc_hba *, uint32_t, struct hbq_dmabuf *);
  515. int (*lpfc_sli_brdrestart)
  516. (struct lpfc_hba *);
  517. int (*lpfc_sli_brdready)
  518. (struct lpfc_hba *, uint32_t);
  519. void (*lpfc_handle_eratt)
  520. (struct lpfc_hba *);
  521. void (*lpfc_stop_port)
  522. (struct lpfc_hba *);
  523. int (*lpfc_hba_init_link)
  524. (struct lpfc_hba *, uint32_t);
  525. int (*lpfc_hba_down_link)
  526. (struct lpfc_hba *, uint32_t);
  527. int (*lpfc_selective_reset)
  528. (struct lpfc_hba *);
  529. int (*lpfc_bg_scsi_prep_dma_buf)
  530. (struct lpfc_hba *, struct lpfc_scsi_buf *);
  531. /* Add new entries here */
  532. /* SLI4 specific HBA data structure */
  533. struct lpfc_sli4_hba sli4_hba;
  534. struct lpfc_sli sli;
  535. uint8_t pci_dev_grp; /* lpfc PCI dev group: 0x0, 0x1, 0x2,... */
  536. uint32_t sli_rev; /* SLI2, SLI3, or SLI4 */
  537. uint32_t sli3_options; /* Mask of enabled SLI3 options */
  538. #define LPFC_SLI3_HBQ_ENABLED 0x01
  539. #define LPFC_SLI3_NPIV_ENABLED 0x02
  540. #define LPFC_SLI3_VPORT_TEARDOWN 0x04
  541. #define LPFC_SLI3_CRP_ENABLED 0x08
  542. #define LPFC_SLI3_BG_ENABLED 0x20
  543. #define LPFC_SLI3_DSS_ENABLED 0x40
  544. #define LPFC_SLI4_PERFH_ENABLED 0x80
  545. #define LPFC_SLI4_PHWQ_ENABLED 0x100
  546. uint32_t iocb_cmd_size;
  547. uint32_t iocb_rsp_size;
  548. enum hba_state link_state;
  549. uint32_t link_flag; /* link state flags */
  550. #define LS_LOOPBACK_MODE 0x1 /* NPort is in Loopback mode */
  551. /* This flag is set while issuing */
  552. /* INIT_LINK mailbox command */
  553. #define LS_NPIV_FAB_SUPPORTED 0x2 /* Fabric supports NPIV */
  554. #define LS_IGNORE_ERATT 0x4 /* intr handler should ignore ERATT */
  555. uint32_t hba_flag; /* hba generic flags */
  556. #define HBA_ERATT_HANDLED 0x1 /* This flag is set when eratt handled */
  557. #define DEFER_ERATT 0x2 /* Deferred error attention in progress */
  558. #define HBA_FCOE_MODE 0x4 /* HBA function in FCoE Mode */
  559. #define HBA_SP_QUEUE_EVT 0x8 /* Slow-path qevt posted to worker thread*/
  560. #define HBA_POST_RECEIVE_BUFFER 0x10 /* Rcv buffers need to be posted */
  561. #define FCP_XRI_ABORT_EVENT 0x20
  562. #define ELS_XRI_ABORT_EVENT 0x40
  563. #define ASYNC_EVENT 0x80
  564. #define LINK_DISABLED 0x100 /* Link disabled by user */
  565. #define FCF_TS_INPROG 0x200 /* FCF table scan in progress */
  566. #define FCF_RR_INPROG 0x400 /* FCF roundrobin flogi in progress */
  567. #define HBA_FIP_SUPPORT 0x800 /* FIP support in HBA */
  568. #define HBA_AER_ENABLED 0x1000 /* AER enabled with HBA */
  569. #define HBA_DEVLOSS_TMO 0x2000 /* HBA in devloss timeout */
  570. #define HBA_RRQ_ACTIVE 0x4000 /* process the rrq active list */
  571. #define HBA_FCP_IOQ_FLUSH 0x8000 /* FCP I/O queues being flushed */
  572. #define HBA_FW_DUMP_OP 0x10000 /* Skips fn reset before FW dump */
  573. uint32_t fcp_ring_in_use; /* When polling test if intr-hndlr active*/
  574. struct lpfc_dmabuf slim2p;
  575. MAILBOX_t *mbox;
  576. uint32_t *mbox_ext;
  577. struct lpfc_mbox_ext_buf_ctx mbox_ext_buf_ctx;
  578. uint32_t ha_copy;
  579. struct _PCB *pcb;
  580. struct _IOCB *IOCBs;
  581. struct lpfc_dmabuf hbqslimp;
  582. uint16_t pci_cfg_value;
  583. uint8_t fc_linkspeed; /* Link speed after last READ_LA */
  584. uint32_t fc_eventTag; /* event tag for link attention */
  585. uint32_t link_events;
  586. /* These fields used to be binfo */
  587. uint32_t fc_pref_DID; /* preferred D_ID */
  588. uint8_t fc_pref_ALPA; /* preferred AL_PA */
  589. uint32_t fc_edtovResol; /* E_D_TOV timer resolution */
  590. uint32_t fc_edtov; /* E_D_TOV timer value */
  591. uint32_t fc_arbtov; /* ARB_TOV timer value */
  592. uint32_t fc_ratov; /* R_A_TOV timer value */
  593. uint32_t fc_rttov; /* R_T_TOV timer value */
  594. uint32_t fc_altov; /* AL_TOV timer value */
  595. uint32_t fc_crtov; /* C_R_TOV timer value */
  596. uint32_t fc_citov; /* C_I_TOV timer value */
  597. struct serv_parm fc_fabparam; /* fabric service parameters buffer */
  598. uint8_t alpa_map[128]; /* AL_PA map from READ_LA */
  599. uint32_t lmt;
  600. uint32_t fc_topology; /* link topology, from LINK INIT */
  601. uint32_t fc_topology_changed; /* link topology, from LINK INIT */
  602. struct lpfc_stats fc_stat;
  603. struct lpfc_nodelist fc_fcpnodev; /* nodelist entry for no device */
  604. uint32_t nport_event_cnt; /* timestamp for nlplist entry */
  605. uint8_t wwnn[8];
  606. uint8_t wwpn[8];
  607. uint32_t RandomData[7];
  608. /* HBA Config Parameters */
  609. uint32_t cfg_ack0;
  610. uint32_t cfg_enable_npiv;
  611. uint32_t cfg_enable_rrq;
  612. uint32_t cfg_topology;
  613. uint32_t cfg_link_speed;
  614. #define LPFC_FCF_FOV 1 /* Fast fcf failover */
  615. #define LPFC_FCF_PRIORITY 2 /* Priority fcf failover */
  616. uint32_t cfg_fcf_failover_policy;
  617. uint32_t cfg_fcp_io_sched;
  618. uint32_t cfg_fcp2_no_tgt_reset;
  619. uint32_t cfg_cr_delay;
  620. uint32_t cfg_cr_count;
  621. uint32_t cfg_multi_ring_support;
  622. uint32_t cfg_multi_ring_rctl;
  623. uint32_t cfg_multi_ring_type;
  624. uint32_t cfg_poll;
  625. uint32_t cfg_poll_tmo;
  626. uint32_t cfg_task_mgmt_tmo;
  627. uint32_t cfg_use_msi;
  628. uint32_t cfg_fcp_imax;
  629. uint32_t cfg_fcp_cpu_map;
  630. uint32_t cfg_fcp_io_channel;
  631. uint32_t cfg_total_seg_cnt;
  632. uint32_t cfg_sg_seg_cnt;
  633. uint32_t cfg_prot_sg_seg_cnt;
  634. uint32_t cfg_sg_dma_buf_size;
  635. uint64_t cfg_soft_wwnn;
  636. uint64_t cfg_soft_wwpn;
  637. uint32_t cfg_hba_queue_depth;
  638. uint32_t cfg_enable_hba_reset;
  639. uint32_t cfg_enable_hba_heartbeat;
  640. uint32_t cfg_fof;
  641. uint32_t cfg_EnableXLane;
  642. uint8_t cfg_oas_tgt_wwpn[8];
  643. uint8_t cfg_oas_vpt_wwpn[8];
  644. uint32_t cfg_oas_lun_state;
  645. #define OAS_LUN_ENABLE 1
  646. #define OAS_LUN_DISABLE 0
  647. uint32_t cfg_oas_lun_status;
  648. #define OAS_LUN_STATUS_EXISTS 0x01
  649. uint32_t cfg_oas_flags;
  650. #define OAS_FIND_ANY_VPORT 0x01
  651. #define OAS_FIND_ANY_TARGET 0x02
  652. #define OAS_LUN_VALID 0x04
  653. uint32_t cfg_XLanePriority;
  654. uint32_t cfg_enable_bg;
  655. uint32_t cfg_hostmem_hgp;
  656. uint32_t cfg_log_verbose;
  657. uint32_t cfg_aer_support;
  658. uint32_t cfg_sriov_nr_virtfn;
  659. uint32_t cfg_request_firmware_upgrade;
  660. uint32_t cfg_iocb_cnt;
  661. uint32_t cfg_suppress_link_up;
  662. uint32_t cfg_rrq_xri_bitmap_sz;
  663. #define LPFC_INITIALIZE_LINK 0 /* do normal init_link mbox */
  664. #define LPFC_DELAY_INIT_LINK 1 /* layered driver hold off */
  665. #define LPFC_DELAY_INIT_LINK_INDEFINITELY 2 /* wait, manual intervention */
  666. uint32_t cfg_enable_dss;
  667. lpfc_vpd_t vpd; /* vital product data */
  668. struct pci_dev *pcidev;
  669. struct list_head work_list;
  670. uint32_t work_ha; /* Host Attention Bits for WT */
  671. uint32_t work_ha_mask; /* HA Bits owned by WT */
  672. uint32_t work_hs; /* HS stored in case of ERRAT */
  673. uint32_t work_status[2]; /* Extra status from SLIM */
  674. wait_queue_head_t work_waitq;
  675. struct task_struct *worker_thread;
  676. unsigned long data_flags;
  677. uint32_t hbq_in_use; /* HBQs in use flag */
  678. struct list_head rb_pend_list; /* Received buffers to be processed */
  679. uint32_t hbq_count; /* Count of configured HBQs */
  680. struct hbq_s hbqs[LPFC_MAX_HBQS]; /* local copy of hbq indicies */
  681. atomic_t fcp_qidx; /* next work queue to post work to */
  682. unsigned long pci_bar0_map; /* Physical address for PCI BAR0 */
  683. unsigned long pci_bar1_map; /* Physical address for PCI BAR1 */
  684. unsigned long pci_bar2_map; /* Physical address for PCI BAR2 */
  685. void __iomem *slim_memmap_p; /* Kernel memory mapped address for
  686. PCI BAR0 */
  687. void __iomem *ctrl_regs_memmap_p;/* Kernel memory mapped address for
  688. PCI BAR2 */
  689. void __iomem *pci_bar0_memmap_p; /* Kernel memory mapped address for
  690. PCI BAR0 with dual-ULP support */
  691. void __iomem *pci_bar2_memmap_p; /* Kernel memory mapped address for
  692. PCI BAR2 with dual-ULP support */
  693. void __iomem *pci_bar4_memmap_p; /* Kernel memory mapped address for
  694. PCI BAR4 with dual-ULP support */
  695. #define PCI_64BIT_BAR0 0
  696. #define PCI_64BIT_BAR2 2
  697. #define PCI_64BIT_BAR4 4
  698. void __iomem *MBslimaddr; /* virtual address for mbox cmds */
  699. void __iomem *HAregaddr; /* virtual address for host attn reg */
  700. void __iomem *CAregaddr; /* virtual address for chip attn reg */
  701. void __iomem *HSregaddr; /* virtual address for host status
  702. reg */
  703. void __iomem *HCregaddr; /* virtual address for host ctl reg */
  704. struct lpfc_hgp __iomem *host_gp; /* Host side get/put pointers */
  705. struct lpfc_pgp *port_gp;
  706. uint32_t __iomem *hbq_put; /* Address in SLIM to HBQ put ptrs */
  707. uint32_t *hbq_get; /* Host mem address of HBQ get ptrs */
  708. int brd_no; /* FC board number */
  709. char SerialNumber[32]; /* adapter Serial Number */
  710. char OptionROMVersion[32]; /* adapter BIOS / Fcode version */
  711. char ModelDesc[256]; /* Model Description */
  712. char ModelName[80]; /* Model Name */
  713. char ProgramType[256]; /* Program Type */
  714. char Port[20]; /* Port No */
  715. uint8_t vpd_flag; /* VPD data flag */
  716. #define VPD_MODEL_DESC 0x1 /* valid vpd model description */
  717. #define VPD_MODEL_NAME 0x2 /* valid vpd model name */
  718. #define VPD_PROGRAM_TYPE 0x4 /* valid vpd program type */
  719. #define VPD_PORT 0x8 /* valid vpd port data */
  720. #define VPD_MASK 0xf /* mask for any vpd data */
  721. uint8_t soft_wwn_enable;
  722. struct timer_list fcp_poll_timer;
  723. struct timer_list eratt_poll;
  724. /*
  725. * stat counters
  726. */
  727. uint64_t fc4InputRequests;
  728. uint64_t fc4OutputRequests;
  729. uint64_t fc4ControlRequests;
  730. uint64_t bg_guard_err_cnt;
  731. uint64_t bg_apptag_err_cnt;
  732. uint64_t bg_reftag_err_cnt;
  733. /* fastpath list. */
  734. spinlock_t scsi_buf_list_get_lock; /* SCSI buf alloc list lock */
  735. spinlock_t scsi_buf_list_put_lock; /* SCSI buf free list lock */
  736. struct list_head lpfc_scsi_buf_list_get;
  737. struct list_head lpfc_scsi_buf_list_put;
  738. uint32_t total_scsi_bufs;
  739. struct list_head lpfc_iocb_list;
  740. uint32_t total_iocbq_bufs;
  741. struct list_head active_rrq_list;
  742. spinlock_t hbalock;
  743. /* pci_mem_pools */
  744. struct pci_pool *lpfc_scsi_dma_buf_pool;
  745. struct pci_pool *lpfc_mbuf_pool;
  746. struct pci_pool *lpfc_hrb_pool; /* header receive buffer pool */
  747. struct pci_pool *lpfc_drb_pool; /* data receive buffer pool */
  748. struct pci_pool *lpfc_hbq_pool; /* SLI3 hbq buffer pool */
  749. struct lpfc_dma_pool lpfc_mbuf_safety_pool;
  750. mempool_t *mbox_mem_pool;
  751. mempool_t *nlp_mem_pool;
  752. mempool_t *rrq_pool;
  753. mempool_t *active_rrq_pool;
  754. struct fc_host_statistics link_stats;
  755. enum intr_type_t intr_type;
  756. uint32_t intr_mode;
  757. #define LPFC_INTR_ERROR 0xFFFFFFFF
  758. struct msix_entry msix_entries[LPFC_MSIX_VECTORS];
  759. struct list_head port_list;
  760. struct lpfc_vport *pport; /* physical lpfc_vport pointer */
  761. uint16_t max_vpi; /* Maximum virtual nports */
  762. #define LPFC_MAX_VPI 0xFFFF /* Max number of VPI supported */
  763. uint16_t max_vports; /*
  764. * For IOV HBAs max_vpi can change
  765. * after a reset. max_vports is max
  766. * number of vports present. This can
  767. * be greater than max_vpi.
  768. */
  769. uint16_t vpi_base;
  770. uint16_t vfi_base;
  771. unsigned long *vpi_bmask; /* vpi allocation table */
  772. uint16_t *vpi_ids;
  773. uint16_t vpi_count;
  774. struct list_head lpfc_vpi_blk_list;
  775. /* Data structure used by fabric iocb scheduler */
  776. struct list_head fabric_iocb_list;
  777. atomic_t fabric_iocb_count;
  778. struct timer_list fabric_block_timer;
  779. unsigned long bit_flags;
  780. #define FABRIC_COMANDS_BLOCKED 0
  781. atomic_t num_rsrc_err;
  782. atomic_t num_cmd_success;
  783. unsigned long last_rsrc_error_time;
  784. unsigned long last_ramp_down_time;
  785. #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
  786. struct dentry *hba_debugfs_root;
  787. atomic_t debugfs_vport_count;
  788. struct dentry *debug_hbqinfo;
  789. struct dentry *debug_dumpHostSlim;
  790. struct dentry *debug_dumpHBASlim;
  791. struct dentry *debug_dumpData; /* BlockGuard BPL */
  792. struct dentry *debug_dumpDif; /* BlockGuard BPL */
  793. struct dentry *debug_InjErrLBA; /* LBA to inject errors at */
  794. struct dentry *debug_InjErrNPortID; /* NPortID to inject errors at */
  795. struct dentry *debug_InjErrWWPN; /* WWPN to inject errors at */
  796. struct dentry *debug_writeGuard; /* inject write guard_tag errors */
  797. struct dentry *debug_writeApp; /* inject write app_tag errors */
  798. struct dentry *debug_writeRef; /* inject write ref_tag errors */
  799. struct dentry *debug_readGuard; /* inject read guard_tag errors */
  800. struct dentry *debug_readApp; /* inject read app_tag errors */
  801. struct dentry *debug_readRef; /* inject read ref_tag errors */
  802. /* T10 DIF error injection */
  803. uint32_t lpfc_injerr_wgrd_cnt;
  804. uint32_t lpfc_injerr_wapp_cnt;
  805. uint32_t lpfc_injerr_wref_cnt;
  806. uint32_t lpfc_injerr_rgrd_cnt;
  807. uint32_t lpfc_injerr_rapp_cnt;
  808. uint32_t lpfc_injerr_rref_cnt;
  809. uint32_t lpfc_injerr_nportid;
  810. struct lpfc_name lpfc_injerr_wwpn;
  811. sector_t lpfc_injerr_lba;
  812. #define LPFC_INJERR_LBA_OFF (sector_t)(-1)
  813. struct dentry *debug_slow_ring_trc;
  814. struct lpfc_debugfs_trc *slow_ring_trc;
  815. atomic_t slow_ring_trc_cnt;
  816. /* iDiag debugfs sub-directory */
  817. struct dentry *idiag_root;
  818. struct dentry *idiag_pci_cfg;
  819. struct dentry *idiag_bar_acc;
  820. struct dentry *idiag_que_info;
  821. struct dentry *idiag_que_acc;
  822. struct dentry *idiag_drb_acc;
  823. struct dentry *idiag_ctl_acc;
  824. struct dentry *idiag_mbx_acc;
  825. struct dentry *idiag_ext_acc;
  826. #endif
  827. /* Used for deferred freeing of ELS data buffers */
  828. struct list_head elsbuf;
  829. int elsbuf_cnt;
  830. int elsbuf_prev_cnt;
  831. uint8_t temp_sensor_support;
  832. /* Fields used for heart beat. */
  833. unsigned long last_completion_time;
  834. unsigned long skipped_hb;
  835. struct timer_list hb_tmofunc;
  836. uint8_t hb_outstanding;
  837. struct timer_list rrq_tmr;
  838. enum hba_temp_state over_temp_state;
  839. /* ndlp reference management */
  840. spinlock_t ndlp_lock;
  841. /*
  842. * Following bit will be set for all buffer tags which are not
  843. * associated with any HBQ.
  844. */
  845. #define QUE_BUFTAG_BIT (1<<31)
  846. uint32_t buffer_tag_count;
  847. int wait_4_mlo_maint_flg;
  848. wait_queue_head_t wait_4_mlo_m_q;
  849. /* data structure used for latency data collection */
  850. #define LPFC_NO_BUCKET 0
  851. #define LPFC_LINEAR_BUCKET 1
  852. #define LPFC_POWER2_BUCKET 2
  853. uint8_t bucket_type;
  854. uint32_t bucket_base;
  855. uint32_t bucket_step;
  856. /* Maximum number of events that can be outstanding at any time*/
  857. #define LPFC_MAX_EVT_COUNT 512
  858. atomic_t fast_event_count;
  859. uint32_t fcoe_eventtag;
  860. uint32_t fcoe_eventtag_at_fcf_scan;
  861. uint32_t fcoe_cvl_eventtag;
  862. uint32_t fcoe_cvl_eventtag_attn;
  863. struct lpfc_fcf fcf;
  864. uint8_t fc_map[3];
  865. uint8_t valid_vlan;
  866. uint16_t vlan_id;
  867. struct list_head fcf_conn_rec_list;
  868. spinlock_t ct_ev_lock; /* synchronize access to ct_ev_waiters */
  869. struct list_head ct_ev_waiters;
  870. struct unsol_rcv_ct_ctx ct_ctx[LPFC_CT_CTX_MAX];
  871. uint32_t ctx_idx;
  872. uint8_t menlo_flag; /* menlo generic flags */
  873. #define HBA_MENLO_SUPPORT 0x1 /* HBA supports menlo commands */
  874. uint32_t iocb_cnt;
  875. uint32_t iocb_max;
  876. atomic_t sdev_cnt;
  877. uint8_t fips_spec_rev;
  878. uint8_t fips_level;
  879. spinlock_t devicelock; /* lock for luns list */
  880. mempool_t *device_data_mem_pool;
  881. struct list_head luns;
  882. };
  883. static inline struct Scsi_Host *
  884. lpfc_shost_from_vport(struct lpfc_vport *vport)
  885. {
  886. return container_of((void *) vport, struct Scsi_Host, hostdata[0]);
  887. }
  888. static inline void
  889. lpfc_set_loopback_flag(struct lpfc_hba *phba)
  890. {
  891. if (phba->cfg_topology == FLAGS_LOCAL_LB)
  892. phba->link_flag |= LS_LOOPBACK_MODE;
  893. else
  894. phba->link_flag &= ~LS_LOOPBACK_MODE;
  895. }
  896. static inline int
  897. lpfc_is_link_up(struct lpfc_hba *phba)
  898. {
  899. return phba->link_state == LPFC_LINK_UP ||
  900. phba->link_state == LPFC_CLEAR_LA ||
  901. phba->link_state == LPFC_HBA_READY;
  902. }
  903. static inline void
  904. lpfc_worker_wake_up(struct lpfc_hba *phba)
  905. {
  906. /* Set the lpfc data pending flag */
  907. set_bit(LPFC_DATA_READY, &phba->data_flags);
  908. /* Wake up worker thread */
  909. wake_up(&phba->work_waitq);
  910. return;
  911. }
  912. static inline int
  913. lpfc_readl(void __iomem *addr, uint32_t *data)
  914. {
  915. uint32_t temp;
  916. temp = readl(addr);
  917. if (temp == 0xffffffff)
  918. return -EIO;
  919. *data = temp;
  920. return 0;
  921. }
  922. static inline int
  923. lpfc_sli_read_hs(struct lpfc_hba *phba)
  924. {
  925. /*
  926. * There was a link/board error. Read the status register to retrieve
  927. * the error event and process it.
  928. */
  929. phba->sli.slistat.err_attn_event++;
  930. /* Save status info and check for unplug error */
  931. if (lpfc_readl(phba->HSregaddr, &phba->work_hs) ||
  932. lpfc_readl(phba->MBslimaddr + 0xa8, &phba->work_status[0]) ||
  933. lpfc_readl(phba->MBslimaddr + 0xac, &phba->work_status[1])) {
  934. return -EIO;
  935. }
  936. /* Clear chip Host Attention error bit */
  937. writel(HA_ERATT, phba->HAregaddr);
  938. readl(phba->HAregaddr); /* flush */
  939. phba->pport->stopped = 1;
  940. return 0;
  941. }