1*4882a593Smuzhiyun /******************************************************************* 2*4882a593Smuzhiyun * This file is part of the Emulex Linux Device Driver for * 3*4882a593Smuzhiyun * Fibre Channel Host Bus Adapters. * 4*4882a593Smuzhiyun * Copyright (C) 2017-2018 Broadcom. All Rights Reserved. The term * 5*4882a593Smuzhiyun * “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. * 6*4882a593Smuzhiyun * Copyright (C) 2004-2013 Emulex. All rights reserved. * 7*4882a593Smuzhiyun * EMULEX and SLI are trademarks of Emulex. * 8*4882a593Smuzhiyun * www.broadcom.com * 9*4882a593Smuzhiyun * * 10*4882a593Smuzhiyun * This program is free software; you can redistribute it and/or * 11*4882a593Smuzhiyun * modify it under the terms of version 2 of the GNU General * 12*4882a593Smuzhiyun * Public License as published by the Free Software Foundation. * 13*4882a593Smuzhiyun * This program is distributed in the hope that it will be useful. * 14*4882a593Smuzhiyun * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND * 15*4882a593Smuzhiyun * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, * 16*4882a593Smuzhiyun * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE * 17*4882a593Smuzhiyun * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD * 18*4882a593Smuzhiyun * TO BE LEGALLY INVALID. See the GNU General Public License for * 19*4882a593Smuzhiyun * more details, a copy of which can be found in the file COPYING * 20*4882a593Smuzhiyun * included with this package. * 21*4882a593Smuzhiyun *******************************************************************/ 22*4882a593Smuzhiyun 23*4882a593Smuzhiyun #define FC_MAX_HOLD_RSCN 32 /* max number of deferred RSCNs */ 24*4882a593Smuzhiyun #define FC_MAX_NS_RSP 64512 /* max size NameServer rsp */ 25*4882a593Smuzhiyun #define FC_MAXLOOP 126 /* max devices supported on a fc loop */ 26*4882a593Smuzhiyun #define LPFC_DISC_FLOGI_TMO 10 /* Discovery FLOGI ratov */ 27*4882a593Smuzhiyun 28*4882a593Smuzhiyun 29*4882a593Smuzhiyun /* This is the protocol dependent definition for a Node List Entry. 30*4882a593Smuzhiyun * This is used by Fibre Channel protocol to support FCP. 31*4882a593Smuzhiyun */ 32*4882a593Smuzhiyun 33*4882a593Smuzhiyun /* worker thread events */ 34*4882a593Smuzhiyun enum lpfc_work_type { 35*4882a593Smuzhiyun LPFC_EVT_ONLINE, 36*4882a593Smuzhiyun LPFC_EVT_OFFLINE_PREP, 37*4882a593Smuzhiyun LPFC_EVT_OFFLINE, 38*4882a593Smuzhiyun LPFC_EVT_WARM_START, 39*4882a593Smuzhiyun LPFC_EVT_KILL, 40*4882a593Smuzhiyun LPFC_EVT_ELS_RETRY, 41*4882a593Smuzhiyun LPFC_EVT_DEV_LOSS, 42*4882a593Smuzhiyun LPFC_EVT_FASTPATH_MGMT_EVT, 43*4882a593Smuzhiyun LPFC_EVT_RESET_HBA, 44*4882a593Smuzhiyun LPFC_EVT_RECOVER_PORT 45*4882a593Smuzhiyun }; 46*4882a593Smuzhiyun 47*4882a593Smuzhiyun /* structure used to queue event to the discovery tasklet */ 48*4882a593Smuzhiyun struct lpfc_work_evt { 49*4882a593Smuzhiyun struct list_head evt_listp; 50*4882a593Smuzhiyun void *evt_arg1; 51*4882a593Smuzhiyun void *evt_arg2; 52*4882a593Smuzhiyun enum lpfc_work_type evt; 53*4882a593Smuzhiyun }; 54*4882a593Smuzhiyun 55*4882a593Smuzhiyun struct lpfc_scsi_check_condition_event; 56*4882a593Smuzhiyun struct lpfc_scsi_varqueuedepth_event; 57*4882a593Smuzhiyun struct lpfc_scsi_event_header; 58*4882a593Smuzhiyun struct lpfc_fabric_event_header; 59*4882a593Smuzhiyun struct lpfc_fcprdchkerr_event; 60*4882a593Smuzhiyun 61*4882a593Smuzhiyun /* structure used for sending events from fast path */ 62*4882a593Smuzhiyun struct lpfc_fast_path_event { 63*4882a593Smuzhiyun struct lpfc_work_evt work_evt; 64*4882a593Smuzhiyun struct lpfc_vport *vport; 65*4882a593Smuzhiyun union { 66*4882a593Smuzhiyun struct lpfc_scsi_check_condition_event check_cond_evt; 67*4882a593Smuzhiyun struct lpfc_scsi_varqueuedepth_event queue_depth_evt; 68*4882a593Smuzhiyun struct lpfc_scsi_event_header scsi_evt; 69*4882a593Smuzhiyun struct lpfc_fabric_event_header fabric_evt; 70*4882a593Smuzhiyun struct lpfc_fcprdchkerr_event read_check_error; 71*4882a593Smuzhiyun } un; 72*4882a593Smuzhiyun }; 73*4882a593Smuzhiyun 74*4882a593Smuzhiyun #define LPFC_SLI4_MAX_XRI 1024 /* Used to make the ndlp's xri_bitmap */ 75*4882a593Smuzhiyun #define XRI_BITMAP_ULONGS (LPFC_SLI4_MAX_XRI / BITS_PER_LONG) 76*4882a593Smuzhiyun struct lpfc_node_rrqs { 77*4882a593Smuzhiyun unsigned long xri_bitmap[XRI_BITMAP_ULONGS]; 78*4882a593Smuzhiyun }; 79*4882a593Smuzhiyun 80*4882a593Smuzhiyun struct lpfc_nodelist { 81*4882a593Smuzhiyun struct list_head nlp_listp; 82*4882a593Smuzhiyun struct lpfc_name nlp_portname; 83*4882a593Smuzhiyun struct lpfc_name nlp_nodename; 84*4882a593Smuzhiyun uint32_t nlp_flag; /* entry flags */ 85*4882a593Smuzhiyun uint32_t nlp_DID; /* FC D_ID of entry */ 86*4882a593Smuzhiyun uint32_t nlp_last_elscmd; /* Last ELS cmd sent */ 87*4882a593Smuzhiyun uint16_t nlp_type; 88*4882a593Smuzhiyun #define NLP_FC_NODE 0x1 /* entry is an FC node */ 89*4882a593Smuzhiyun #define NLP_FABRIC 0x4 /* entry rep a Fabric entity */ 90*4882a593Smuzhiyun #define NLP_FCP_TARGET 0x8 /* entry is an FCP target */ 91*4882a593Smuzhiyun #define NLP_FCP_INITIATOR 0x10 /* entry is an FCP Initiator */ 92*4882a593Smuzhiyun #define NLP_NVME_TARGET 0x20 /* entry is a NVME Target */ 93*4882a593Smuzhiyun #define NLP_NVME_INITIATOR 0x40 /* entry is a NVME Initiator */ 94*4882a593Smuzhiyun #define NLP_NVME_DISCOVERY 0x80 /* entry has NVME disc srvc */ 95*4882a593Smuzhiyun 96*4882a593Smuzhiyun uint16_t nlp_fc4_type; /* FC types node supports. */ 97*4882a593Smuzhiyun /* Assigned from GID_FF, only 98*4882a593Smuzhiyun * FCP (0x8) and NVME (0x28) 99*4882a593Smuzhiyun * supported. 100*4882a593Smuzhiyun */ 101*4882a593Smuzhiyun #define NLP_FC4_NONE 0x0 102*4882a593Smuzhiyun #define NLP_FC4_FCP 0x1 /* FC4 Type FCP (value x8)) */ 103*4882a593Smuzhiyun #define NLP_FC4_NVME 0x2 /* FC4 TYPE NVME (value x28) */ 104*4882a593Smuzhiyun 105*4882a593Smuzhiyun uint16_t nlp_rpi; 106*4882a593Smuzhiyun uint16_t nlp_state; /* state transition indicator */ 107*4882a593Smuzhiyun uint16_t nlp_prev_state; /* state transition indicator */ 108*4882a593Smuzhiyun uint16_t nlp_xri; /* output exchange id for RPI */ 109*4882a593Smuzhiyun uint16_t nlp_sid; /* scsi id */ 110*4882a593Smuzhiyun #define NLP_NO_SID 0xffff 111*4882a593Smuzhiyun uint16_t nlp_maxframe; /* Max RCV frame size */ 112*4882a593Smuzhiyun uint8_t nlp_class_sup; /* Supported Classes */ 113*4882a593Smuzhiyun uint8_t nlp_retry; /* used for ELS retries */ 114*4882a593Smuzhiyun uint8_t nlp_fcp_info; /* class info, bits 0-3 */ 115*4882a593Smuzhiyun #define NLP_FCP_2_DEVICE 0x10 /* FCP-2 device */ 116*4882a593Smuzhiyun u8 nlp_nvme_info; /* NVME NSLER Support */ 117*4882a593Smuzhiyun #define NLP_NVME_NSLER 0x1 /* NVME NSLER device */ 118*4882a593Smuzhiyun 119*4882a593Smuzhiyun uint16_t nlp_usg_map; /* ndlp management usage bitmap */ 120*4882a593Smuzhiyun #define NLP_USG_NODE_ACT_BIT 0x1 /* Indicate ndlp is actively used */ 121*4882a593Smuzhiyun #define NLP_USG_IACT_REQ_BIT 0x2 /* Request to inactivate ndlp */ 122*4882a593Smuzhiyun #define NLP_USG_FREE_REQ_BIT 0x4 /* Request to invoke ndlp memory free */ 123*4882a593Smuzhiyun #define NLP_USG_FREE_ACK_BIT 0x8 /* Indicate ndlp memory free invoked */ 124*4882a593Smuzhiyun 125*4882a593Smuzhiyun struct timer_list nlp_delayfunc; /* Used for delayed ELS cmds */ 126*4882a593Smuzhiyun struct lpfc_hba *phba; 127*4882a593Smuzhiyun struct fc_rport *rport; /* scsi_transport_fc port structure */ 128*4882a593Smuzhiyun struct lpfc_nvme_rport *nrport; /* nvme transport rport struct. */ 129*4882a593Smuzhiyun struct lpfc_vport *vport; 130*4882a593Smuzhiyun struct lpfc_work_evt els_retry_evt; 131*4882a593Smuzhiyun struct lpfc_work_evt dev_loss_evt; 132*4882a593Smuzhiyun struct lpfc_work_evt recovery_evt; 133*4882a593Smuzhiyun struct kref kref; 134*4882a593Smuzhiyun atomic_t cmd_pending; 135*4882a593Smuzhiyun uint32_t cmd_qdepth; 136*4882a593Smuzhiyun unsigned long last_change_time; 137*4882a593Smuzhiyun unsigned long *active_rrqs_xri_bitmap; 138*4882a593Smuzhiyun struct lpfc_scsicmd_bkt *lat_data; /* Latency data */ 139*4882a593Smuzhiyun uint32_t fc4_prli_sent; 140*4882a593Smuzhiyun uint32_t upcall_flags; 141*4882a593Smuzhiyun #define NLP_WAIT_FOR_UNREG 0x1 142*4882a593Smuzhiyun 143*4882a593Smuzhiyun uint32_t nvme_fb_size; /* NVME target's supported byte cnt */ 144*4882a593Smuzhiyun #define NVME_FB_BIT_SHIFT 9 /* PRLI Rsp first burst in 512B units. */ 145*4882a593Smuzhiyun uint32_t nlp_defer_did; 146*4882a593Smuzhiyun }; 147*4882a593Smuzhiyun struct lpfc_node_rrq { 148*4882a593Smuzhiyun struct list_head list; 149*4882a593Smuzhiyun uint16_t xritag; 150*4882a593Smuzhiyun uint16_t send_rrq; 151*4882a593Smuzhiyun uint16_t rxid; 152*4882a593Smuzhiyun uint32_t nlp_DID; /* FC D_ID of entry */ 153*4882a593Smuzhiyun struct lpfc_vport *vport; 154*4882a593Smuzhiyun struct lpfc_nodelist *ndlp; 155*4882a593Smuzhiyun unsigned long rrq_stop_time; 156*4882a593Smuzhiyun }; 157*4882a593Smuzhiyun 158*4882a593Smuzhiyun #define lpfc_ndlp_check_qdepth(phba, ndlp) \ 159*4882a593Smuzhiyun (ndlp->cmd_qdepth < phba->sli4_hba.max_cfg_param.max_xri) 160*4882a593Smuzhiyun 161*4882a593Smuzhiyun /* Defines for nlp_flag (uint32) */ 162*4882a593Smuzhiyun #define NLP_IGNR_REG_CMPL 0x00000001 /* Rcvd rscn before we cmpl reg login */ 163*4882a593Smuzhiyun #define NLP_REG_LOGIN_SEND 0x00000002 /* sent reglogin to adapter */ 164*4882a593Smuzhiyun #define NLP_RELEASE_RPI 0x00000004 /* Release RPI to free pool */ 165*4882a593Smuzhiyun #define NLP_SUPPRESS_RSP 0x00000010 /* Remote NPort supports suppress rsp */ 166*4882a593Smuzhiyun #define NLP_PLOGI_SND 0x00000020 /* sent PLOGI request for this entry */ 167*4882a593Smuzhiyun #define NLP_PRLI_SND 0x00000040 /* sent PRLI request for this entry */ 168*4882a593Smuzhiyun #define NLP_ADISC_SND 0x00000080 /* sent ADISC request for this entry */ 169*4882a593Smuzhiyun #define NLP_LOGO_SND 0x00000100 /* sent LOGO request for this entry */ 170*4882a593Smuzhiyun #define NLP_RNID_SND 0x00000400 /* sent RNID request for this entry */ 171*4882a593Smuzhiyun #define NLP_ELS_SND_MASK 0x000007e0 /* sent ELS request for this entry */ 172*4882a593Smuzhiyun #define NLP_NVMET_RECOV 0x00001000 /* NVMET auditing node for recovery. */ 173*4882a593Smuzhiyun #define NLP_FCP_PRLI_RJT 0x00002000 /* Rport does not support FCP PRLI. */ 174*4882a593Smuzhiyun #define NLP_UNREG_INP 0x00008000 /* UNREG_RPI cmd is in progress */ 175*4882a593Smuzhiyun #define NLP_DEFER_RM 0x00010000 /* Remove this ndlp if no longer used */ 176*4882a593Smuzhiyun #define NLP_DELAY_TMO 0x00020000 /* delay timeout is running for node */ 177*4882a593Smuzhiyun #define NLP_NPR_2B_DISC 0x00040000 /* node is included in num_disc_nodes */ 178*4882a593Smuzhiyun #define NLP_RCV_PLOGI 0x00080000 /* Rcv'ed PLOGI from remote system */ 179*4882a593Smuzhiyun #define NLP_LOGO_ACC 0x00100000 /* Process LOGO after ACC completes */ 180*4882a593Smuzhiyun #define NLP_TGT_NO_SCSIID 0x00200000 /* good PRLI but no binding for scsid */ 181*4882a593Smuzhiyun #define NLP_ISSUE_LOGO 0x00400000 /* waiting to issue a LOGO */ 182*4882a593Smuzhiyun #define NLP_IN_DEV_LOSS 0x00800000 /* devloss in progress */ 183*4882a593Smuzhiyun #define NLP_ACC_REGLOGIN 0x01000000 /* Issue Reg Login after successful 184*4882a593Smuzhiyun ACC */ 185*4882a593Smuzhiyun #define NLP_NPR_ADISC 0x02000000 /* Issue ADISC when dq'ed from 186*4882a593Smuzhiyun NPR list */ 187*4882a593Smuzhiyun #define NLP_RM_DFLT_RPI 0x04000000 /* need to remove leftover dflt RPI */ 188*4882a593Smuzhiyun #define NLP_NODEV_REMOVE 0x08000000 /* Defer removal till discovery ends */ 189*4882a593Smuzhiyun #define NLP_TARGET_REMOVE 0x10000000 /* Target remove in process */ 190*4882a593Smuzhiyun #define NLP_SC_REQ 0x20000000 /* Target requires authentication */ 191*4882a593Smuzhiyun #define NLP_FIRSTBURST 0x40000000 /* Target supports FirstBurst */ 192*4882a593Smuzhiyun #define NLP_RPI_REGISTERED 0x80000000 /* nlp_rpi is valid */ 193*4882a593Smuzhiyun 194*4882a593Smuzhiyun 195*4882a593Smuzhiyun /* ndlp usage management macros */ 196*4882a593Smuzhiyun #define NLP_CHK_NODE_ACT(ndlp) (((ndlp)->nlp_usg_map \ 197*4882a593Smuzhiyun & NLP_USG_NODE_ACT_BIT) \ 198*4882a593Smuzhiyun && \ 199*4882a593Smuzhiyun !((ndlp)->nlp_usg_map \ 200*4882a593Smuzhiyun & NLP_USG_FREE_ACK_BIT)) 201*4882a593Smuzhiyun #define NLP_SET_NODE_ACT(ndlp) ((ndlp)->nlp_usg_map \ 202*4882a593Smuzhiyun |= NLP_USG_NODE_ACT_BIT) 203*4882a593Smuzhiyun #define NLP_INT_NODE_ACT(ndlp) ((ndlp)->nlp_usg_map \ 204*4882a593Smuzhiyun = NLP_USG_NODE_ACT_BIT) 205*4882a593Smuzhiyun #define NLP_CLR_NODE_ACT(ndlp) ((ndlp)->nlp_usg_map \ 206*4882a593Smuzhiyun &= ~NLP_USG_NODE_ACT_BIT) 207*4882a593Smuzhiyun #define NLP_CHK_IACT_REQ(ndlp) ((ndlp)->nlp_usg_map \ 208*4882a593Smuzhiyun & NLP_USG_IACT_REQ_BIT) 209*4882a593Smuzhiyun #define NLP_SET_IACT_REQ(ndlp) ((ndlp)->nlp_usg_map \ 210*4882a593Smuzhiyun |= NLP_USG_IACT_REQ_BIT) 211*4882a593Smuzhiyun #define NLP_CHK_FREE_REQ(ndlp) ((ndlp)->nlp_usg_map \ 212*4882a593Smuzhiyun & NLP_USG_FREE_REQ_BIT) 213*4882a593Smuzhiyun #define NLP_SET_FREE_REQ(ndlp) ((ndlp)->nlp_usg_map \ 214*4882a593Smuzhiyun |= NLP_USG_FREE_REQ_BIT) 215*4882a593Smuzhiyun #define NLP_CHK_FREE_ACK(ndlp) ((ndlp)->nlp_usg_map \ 216*4882a593Smuzhiyun & NLP_USG_FREE_ACK_BIT) 217*4882a593Smuzhiyun #define NLP_SET_FREE_ACK(ndlp) ((ndlp)->nlp_usg_map \ 218*4882a593Smuzhiyun |= NLP_USG_FREE_ACK_BIT) 219*4882a593Smuzhiyun 220*4882a593Smuzhiyun /* There are 4 different double linked lists nodelist entries can reside on. 221*4882a593Smuzhiyun * The Port Login (PLOGI) list and Address Discovery (ADISC) list are used 222*4882a593Smuzhiyun * when Link Up discovery or Registered State Change Notification (RSCN) 223*4882a593Smuzhiyun * processing is needed. Each list holds the nodes that require a PLOGI or 224*4882a593Smuzhiyun * ADISC Extended Link Service (ELS) request. These lists keep track of the 225*4882a593Smuzhiyun * nodes affected by an RSCN, or a Link Up (Typically, all nodes are effected 226*4882a593Smuzhiyun * by Link Up) event. The unmapped_list contains all nodes that have 227*4882a593Smuzhiyun * successfully logged into at the Fibre Channel level. The 228*4882a593Smuzhiyun * mapped_list will contain all nodes that are mapped FCP targets. 229*4882a593Smuzhiyun * 230*4882a593Smuzhiyun * The bind list is a list of undiscovered (potentially non-existent) nodes 231*4882a593Smuzhiyun * that we have saved binding information on. This information is used when 232*4882a593Smuzhiyun * nodes transition from the unmapped to the mapped list. 233*4882a593Smuzhiyun */ 234*4882a593Smuzhiyun 235*4882a593Smuzhiyun /* Defines for nlp_state */ 236*4882a593Smuzhiyun #define NLP_STE_UNUSED_NODE 0x0 /* node is just allocated */ 237*4882a593Smuzhiyun #define NLP_STE_PLOGI_ISSUE 0x1 /* PLOGI was sent to NL_PORT */ 238*4882a593Smuzhiyun #define NLP_STE_ADISC_ISSUE 0x2 /* ADISC was sent to NL_PORT */ 239*4882a593Smuzhiyun #define NLP_STE_REG_LOGIN_ISSUE 0x3 /* REG_LOGIN was issued for NL_PORT */ 240*4882a593Smuzhiyun #define NLP_STE_PRLI_ISSUE 0x4 /* PRLI was sent to NL_PORT */ 241*4882a593Smuzhiyun #define NLP_STE_LOGO_ISSUE 0x5 /* LOGO was sent to NL_PORT */ 242*4882a593Smuzhiyun #define NLP_STE_UNMAPPED_NODE 0x6 /* PRLI completed from NL_PORT */ 243*4882a593Smuzhiyun #define NLP_STE_MAPPED_NODE 0x7 /* Identified as a FCP Target */ 244*4882a593Smuzhiyun #define NLP_STE_NPR_NODE 0x8 /* NPort disappeared */ 245*4882a593Smuzhiyun #define NLP_STE_MAX_STATE 0x9 246*4882a593Smuzhiyun #define NLP_STE_FREED_NODE 0xff /* node entry was freed to MEM_NLP */ 247*4882a593Smuzhiyun 248*4882a593Smuzhiyun /* For UNUSED_NODE state, the node has just been allocated. 249*4882a593Smuzhiyun * For PLOGI_ISSUE and REG_LOGIN_ISSUE, the node is on 250*4882a593Smuzhiyun * the PLOGI list. For REG_LOGIN_COMPL, the node is taken off the PLOGI list 251*4882a593Smuzhiyun * and put on the unmapped list. For ADISC processing, the node is taken off 252*4882a593Smuzhiyun * the ADISC list and placed on either the mapped or unmapped list (depending 253*4882a593Smuzhiyun * on its previous state). Once on the unmapped list, a PRLI is issued and the 254*4882a593Smuzhiyun * state changed to PRLI_ISSUE. When the PRLI completion occurs, the state is 255*4882a593Smuzhiyun * changed to PRLI_COMPL. If the completion indicates a mapped 256*4882a593Smuzhiyun * node, the node is taken off the unmapped list. The binding list is checked 257*4882a593Smuzhiyun * for a valid binding, or a binding is automatically assigned. If binding 258*4882a593Smuzhiyun * assignment is unsuccessful, the node is left on the unmapped list. If 259*4882a593Smuzhiyun * binding assignment is successful, the associated binding list entry (if 260*4882a593Smuzhiyun * any) is removed, and the node is placed on the mapped list. 261*4882a593Smuzhiyun */ 262*4882a593Smuzhiyun /* 263*4882a593Smuzhiyun * For a Link Down, all nodes on the ADISC, PLOGI, unmapped or mapped 264*4882a593Smuzhiyun * lists will receive a DEVICE_RECOVERY event. If the linkdown or devloss timers 265*4882a593Smuzhiyun * expire, all effected nodes will receive a DEVICE_RM event. 266*4882a593Smuzhiyun */ 267*4882a593Smuzhiyun /* 268*4882a593Smuzhiyun * For a Link Up or RSCN, all nodes will move from the mapped / unmapped lists 269*4882a593Smuzhiyun * to either the ADISC or PLOGI list. After a Nameserver query or ALPA loopmap 270*4882a593Smuzhiyun * check, additional nodes may be added (DEVICE_ADD) or removed (DEVICE_RM) to / 271*4882a593Smuzhiyun * from the PLOGI or ADISC lists. Once the PLOGI and ADISC lists are populated, 272*4882a593Smuzhiyun * we will first process the ADISC list. 32 entries are processed initially and 273*4882a593Smuzhiyun * ADISC is initited for each one. Completions / Events for each node are 274*4882a593Smuzhiyun * funnelled thru the state machine. As each node finishes ADISC processing, it 275*4882a593Smuzhiyun * starts ADISC for any nodes waiting for ADISC processing. If no nodes are 276*4882a593Smuzhiyun * waiting, and the ADISC list count is identically 0, then we are done. For 277*4882a593Smuzhiyun * Link Up discovery, since all nodes on the PLOGI list are UNREG_LOGIN'ed, we 278*4882a593Smuzhiyun * can issue a CLEAR_LA and reenable Link Events. Next we will process the PLOGI 279*4882a593Smuzhiyun * list. 32 entries are processed initially and PLOGI is initited for each one. 280*4882a593Smuzhiyun * Completions / Events for each node are funnelled thru the state machine. As 281*4882a593Smuzhiyun * each node finishes PLOGI processing, it starts PLOGI for any nodes waiting 282*4882a593Smuzhiyun * for PLOGI processing. If no nodes are waiting, and the PLOGI list count is 283*4882a593Smuzhiyun * identically 0, then we are done. We have now completed discovery / RSCN 284*4882a593Smuzhiyun * handling. Upon completion, ALL nodes should be on either the mapped or 285*4882a593Smuzhiyun * unmapped lists. 286*4882a593Smuzhiyun */ 287*4882a593Smuzhiyun 288*4882a593Smuzhiyun /* Defines for Node List Entry Events that could happen */ 289*4882a593Smuzhiyun #define NLP_EVT_RCV_PLOGI 0x0 /* Rcv'd an ELS PLOGI command */ 290*4882a593Smuzhiyun #define NLP_EVT_RCV_PRLI 0x1 /* Rcv'd an ELS PRLI command */ 291*4882a593Smuzhiyun #define NLP_EVT_RCV_LOGO 0x2 /* Rcv'd an ELS LOGO command */ 292*4882a593Smuzhiyun #define NLP_EVT_RCV_ADISC 0x3 /* Rcv'd an ELS ADISC command */ 293*4882a593Smuzhiyun #define NLP_EVT_RCV_PDISC 0x4 /* Rcv'd an ELS PDISC command */ 294*4882a593Smuzhiyun #define NLP_EVT_RCV_PRLO 0x5 /* Rcv'd an ELS PRLO command */ 295*4882a593Smuzhiyun #define NLP_EVT_CMPL_PLOGI 0x6 /* Sent an ELS PLOGI command */ 296*4882a593Smuzhiyun #define NLP_EVT_CMPL_PRLI 0x7 /* Sent an ELS PRLI command */ 297*4882a593Smuzhiyun #define NLP_EVT_CMPL_LOGO 0x8 /* Sent an ELS LOGO command */ 298*4882a593Smuzhiyun #define NLP_EVT_CMPL_ADISC 0x9 /* Sent an ELS ADISC command */ 299*4882a593Smuzhiyun #define NLP_EVT_CMPL_REG_LOGIN 0xa /* REG_LOGIN mbox cmd completed */ 300*4882a593Smuzhiyun #define NLP_EVT_DEVICE_RM 0xb /* Device not found in NS / ALPAmap */ 301*4882a593Smuzhiyun #define NLP_EVT_DEVICE_RECOVERY 0xc /* Device existence unknown */ 302*4882a593Smuzhiyun #define NLP_EVT_MAX_EVENT 0xd 303*4882a593Smuzhiyun #define NLP_EVT_NOTHING_PENDING 0xff 304