]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/scsi/lpfc/lpfc_ct.c
Merge tag 'at91-ab-4.13-soc' of git://git.kernel.org/pub/scm/linux/kernel/git/abellon...
[mirror_ubuntu-bionic-kernel.git] / drivers / scsi / lpfc / lpfc_ct.c
CommitLineData
dea3101e
JB
1/*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
c44ce173 3 * Fibre Channel Host Bus Adapters. *
d080abe0
JS
4 * Copyright (C) 2017 Broadcom. All Rights Reserved. The term *
5 * “Broadcom” refers to Broadcom Limited and/or its subsidiaries. *
50611577 6 * Copyright (C) 2004-2016 Emulex. All rights reserved. *
c44ce173 7 * EMULEX and SLI are trademarks of Emulex. *
d080abe0 8 * www.broadcom.com *
dea3101e
JB
9 * *
10 * This program is free software; you can redistribute it and/or *
c44ce173
JSEC
11 * modify it under the terms of version 2 of the GNU General *
12 * Public License as published by the Free Software Foundation. *
13 * This program is distributed in the hope that it will be useful. *
14 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
15 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
16 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
17 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
18 * TO BE LEGALLY INVALID. See the GNU General Public License for *
19 * more details, a copy of which can be found in the file COPYING *
20 * included with this package. *
dea3101e
JB
21 *******************************************************************/
22
23/*
09372820 24 * Fibre Channel SCSI LAN Device Driver CT support: FC Generic Services FC-GS
dea3101e
JB
25 */
26
27#include <linux/blkdev.h>
28#include <linux/pci.h>
29#include <linux/interrupt.h>
5a0e3ad6 30#include <linux/slab.h>
dea3101e
JB
31#include <linux/utsname.h>
32
91886523 33#include <scsi/scsi.h>
dea3101e
JB
34#include <scsi/scsi_device.h>
35#include <scsi/scsi_host.h>
f888ba3c 36#include <scsi/scsi_transport_fc.h>
6a9c52cf 37#include <scsi/fc/fc_fs.h>
dea3101e 38
da0436e9 39#include "lpfc_hw4.h"
dea3101e
JB
40#include "lpfc_hw.h"
41#include "lpfc_sli.h"
da0436e9 42#include "lpfc_sli4.h"
ea2151b4 43#include "lpfc_nl.h"
dea3101e 44#include "lpfc_disc.h"
dea3101e 45#include "lpfc.h"
a0f2d3ef
JS
46#include "lpfc_scsi.h"
47#include "lpfc_nvme.h"
dea3101e
JB
48#include "lpfc_logmsg.h"
49#include "lpfc_crtn.h"
50#include "lpfc_version.h"
92d7f7b0 51#include "lpfc_vport.h"
858c9f6c 52#include "lpfc_debugfs.h"
dea3101e 53
a085e87c
JS
54/* FDMI Port Speed definitions - FC-GS-7 */
55#define HBA_PORTSPEED_1GFC 0x00000001 /* 1G FC */
56#define HBA_PORTSPEED_2GFC 0x00000002 /* 2G FC */
57#define HBA_PORTSPEED_4GFC 0x00000008 /* 4G FC */
58#define HBA_PORTSPEED_10GFC 0x00000004 /* 10G FC */
59#define HBA_PORTSPEED_8GFC 0x00000010 /* 8G FC */
60#define HBA_PORTSPEED_16GFC 0x00000020 /* 16G FC */
61#define HBA_PORTSPEED_32GFC 0x00000040 /* 32G FC */
62#define HBA_PORTSPEED_20GFC 0x00000080 /* 20G FC */
63#define HBA_PORTSPEED_40GFC 0x00000100 /* 40G FC */
64#define HBA_PORTSPEED_128GFC 0x00000200 /* 128G FC */
65#define HBA_PORTSPEED_64GFC 0x00000400 /* 64G FC */
66#define HBA_PORTSPEED_256GFC 0x00000800 /* 256G FC */
67#define HBA_PORTSPEED_UNKNOWN 0x00008000 /* Unknown */
68#define HBA_PORTSPEED_10GE 0x00010000 /* 10G E */
69#define HBA_PORTSPEED_40GE 0x00020000 /* 40G E */
70#define HBA_PORTSPEED_100GE 0x00040000 /* 100G E */
71#define HBA_PORTSPEED_25GE 0x00080000 /* 25G E */
72#define HBA_PORTSPEED_50GE 0x00100000 /* 50G E */
73#define HBA_PORTSPEED_400GE 0x00200000 /* 400G E */
dea3101e
JB
74
75#define FOURBYTES 4
76
77
78static char *lpfc_release_version = LPFC_DRIVER_VERSION;
79
ed957684 80static void
9c2face6
JS
81lpfc_ct_ignore_hbq_buffer(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq,
82 struct lpfc_dmabuf *mp, uint32_t size)
ed957684
JS
83{
84 if (!mp) {
9c2face6 85 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
97eab634 86 "0146 Ignoring unsolicited CT No HBQ "
9c2face6
JS
87 "status = x%x\n",
88 piocbq->iocb.ulpStatus);
ed957684 89 }
9c2face6
JS
90 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
91 "0145 Ignoring unsolicted CT HBQ Size:%d "
92 "status = x%x\n",
93 size, piocbq->iocb.ulpStatus);
ed957684
JS
94}
95
96static void
9c2face6
JS
97lpfc_ct_unsol_buffer(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq,
98 struct lpfc_dmabuf *mp, uint32_t size)
ed957684 99{
9c2face6 100 lpfc_ct_ignore_hbq_buffer(phba, piocbq, mp, size);
ed957684
JS
101}
102
dea3101e 103void
2e0fef85
JS
104lpfc_ct_unsol_event(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
105 struct lpfc_iocbq *piocbq)
dea3101e 106{
ed957684 107 struct lpfc_dmabuf *mp = NULL;
dea3101e 108 IOCB_t *icmd = &piocbq->iocb;
ed957684
JS
109 int i;
110 struct lpfc_iocbq *iocbq;
111 dma_addr_t paddr;
112 uint32_t size;
9c2face6
JS
113 struct list_head head;
114 struct lpfc_dmabuf *bdeBuf;
dea3101e 115
4fede78f
JS
116 if (lpfc_bsg_ct_unsol_event(phba, pring, piocbq) == 0)
117 return;
f1c3b0fc 118
92d7f7b0
JS
119 if (unlikely(icmd->ulpStatus == IOSTAT_NEED_BUFFER)) {
120 lpfc_sli_hbqbuf_add_hbqs(phba, LPFC_ELS_HBQ);
121 } else if ((icmd->ulpStatus == IOSTAT_LOCAL_REJECT) &&
e3d2b802
JS
122 ((icmd->un.ulpWord[4] & IOERR_PARAM_MASK) ==
123 IOERR_RCV_BUFFER_WAITING)) {
dea3101e
JB
124 /* Not enough posted buffers; Try posting more buffers */
125 phba->fc_stat.NoRcvBuf++;
92d7f7b0 126 if (!(phba->sli3_options & LPFC_SLI3_HBQ_ENABLED))
495a714c 127 lpfc_post_buffer(phba, pring, 2);
dea3101e
JB
128 return;
129 }
130
131 /* If there are no BDEs associated with this IOCB,
132 * there is nothing to do.
133 */
134 if (icmd->ulpBdeCount == 0)
135 return;
136
ed957684 137 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
9c2face6
JS
138 INIT_LIST_HEAD(&head);
139 list_add_tail(&head, &piocbq->list);
140 list_for_each_entry(iocbq, &head, list) {
ed957684 141 icmd = &iocbq->iocb;
9c2face6 142 if (icmd->ulpBdeCount == 0)
ed957684 143 continue;
9c2face6
JS
144 bdeBuf = iocbq->context2;
145 iocbq->context2 = NULL;
ed957684 146 size = icmd->un.cont64[0].tus.f.bdeSize;
9c2face6
JS
147 lpfc_ct_unsol_buffer(phba, piocbq, bdeBuf, size);
148 lpfc_in_buf_free(phba, bdeBuf);
ed957684 149 if (icmd->ulpBdeCount == 2) {
9c2face6
JS
150 bdeBuf = iocbq->context3;
151 iocbq->context3 = NULL;
152 size = icmd->unsli3.rcvsli3.bde2.tus.f.bdeSize;
153 lpfc_ct_unsol_buffer(phba, piocbq, bdeBuf,
154 size);
155 lpfc_in_buf_free(phba, bdeBuf);
ed957684 156 }
dea3101e 157 }
9c2face6 158 list_del(&head);
ed957684 159 } else {
d7c255b2
JS
160 INIT_LIST_HEAD(&head);
161 list_add_tail(&head, &piocbq->list);
162 list_for_each_entry(iocbq, &head, list) {
ed957684 163 icmd = &iocbq->iocb;
9c2face6 164 if (icmd->ulpBdeCount == 0)
d7c255b2 165 lpfc_ct_unsol_buffer(phba, iocbq, NULL, 0);
ed957684
JS
166 for (i = 0; i < icmd->ulpBdeCount; i++) {
167 paddr = getPaddr(icmd->un.cont64[i].addrHigh,
168 icmd->un.cont64[i].addrLow);
169 mp = lpfc_sli_ringpostbuf_get(phba, pring,
170 paddr);
171 size = icmd->un.cont64[i].tus.f.bdeSize;
d7c255b2 172 lpfc_ct_unsol_buffer(phba, iocbq, mp, size);
92d7f7b0 173 lpfc_in_buf_free(phba, mp);
ed957684 174 }
495a714c 175 lpfc_post_buffer(phba, pring, i);
dea3101e 176 }
d7c255b2 177 list_del(&head);
dea3101e 178 }
dea3101e
JB
179}
180
6669f9bb 181/**
6dd9e31c 182 * lpfc_ct_handle_unsol_abort - ct upper level protocol abort handler
6669f9bb 183 * @phba: Pointer to HBA context object.
6dd9e31c 184 * @dmabuf: pointer to a dmabuf that describes the FC sequence
6669f9bb 185 *
6dd9e31c
JS
186 * This function serves as the upper level protocol abort handler for CT
187 * protocol.
188 *
189 * Return 1 if abort has been handled, 0 otherwise.
6669f9bb 190 **/
6dd9e31c
JS
191int
192lpfc_ct_handle_unsol_abort(struct lpfc_hba *phba, struct hbq_dmabuf *dmabuf)
6669f9bb 193{
6dd9e31c 194 int handled;
6669f9bb 195
6dd9e31c
JS
196 /* CT upper level goes through BSG */
197 handled = lpfc_bsg_ct_unsol_abort(phba, dmabuf);
6669f9bb 198
6dd9e31c 199 return handled;
6669f9bb
JS
200}
201
dea3101e 202static void
2e0fef85 203lpfc_free_ct_rsp(struct lpfc_hba *phba, struct lpfc_dmabuf *mlist)
dea3101e
JB
204{
205 struct lpfc_dmabuf *mlast, *next_mlast;
206
207 list_for_each_entry_safe(mlast, next_mlast, &mlist->list, list) {
208 lpfc_mbuf_free(phba, mlast->virt, mlast->phys);
209 list_del(&mlast->list);
210 kfree(mlast);
211 }
212 lpfc_mbuf_free(phba, mlist->virt, mlist->phys);
213 kfree(mlist);
214 return;
215}
216
217static struct lpfc_dmabuf *
2e0fef85 218lpfc_alloc_ct_rsp(struct lpfc_hba *phba, int cmdcode, struct ulp_bde64 *bpl,
dea3101e
JB
219 uint32_t size, int *entries)
220{
221 struct lpfc_dmabuf *mlist = NULL;
222 struct lpfc_dmabuf *mp;
223 int cnt, i = 0;
224
09372820 225 /* We get chunks of FCELSSIZE */
dea3101e
JB
226 cnt = size > FCELSSIZE ? FCELSSIZE: size;
227
228 while (size) {
229 /* Allocate buffer for rsp payload */
230 mp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
231 if (!mp) {
232 if (mlist)
233 lpfc_free_ct_rsp(phba, mlist);
234 return NULL;
235 }
236
237 INIT_LIST_HEAD(&mp->list);
238
92d7f7b0
JS
239 if (cmdcode == be16_to_cpu(SLI_CTNS_GID_FT) ||
240 cmdcode == be16_to_cpu(SLI_CTNS_GFF_ID))
dea3101e
JB
241 mp->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &(mp->phys));
242 else
243 mp->virt = lpfc_mbuf_alloc(phba, 0, &(mp->phys));
244
245 if (!mp->virt) {
246 kfree(mp);
0b3a82d3
ES
247 if (mlist)
248 lpfc_free_ct_rsp(phba, mlist);
dea3101e
JB
249 return NULL;
250 }
251
252 /* Queue it to a linked list */
253 if (!mlist)
254 mlist = mp;
255 else
256 list_add_tail(&mp->list, &mlist->list);
257
34b02dcd 258 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64I;
dea3101e 259 /* build buffer ptr list for IOCB */
92d7f7b0
JS
260 bpl->addrLow = le32_to_cpu(putPaddrLow(mp->phys) );
261 bpl->addrHigh = le32_to_cpu(putPaddrHigh(mp->phys) );
dea3101e
JB
262 bpl->tus.f.bdeSize = (uint16_t) cnt;
263 bpl->tus.w = le32_to_cpu(bpl->tus.w);
264 bpl++;
265
266 i++;
267 size -= cnt;
268 }
269
270 *entries = i;
271 return mlist;
272}
273
858c9f6c
JS
274int
275lpfc_ct_free_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *ctiocb)
276{
277 struct lpfc_dmabuf *buf_ptr;
278
51ef4c26
JS
279 if (ctiocb->context_un.ndlp) {
280 lpfc_nlp_put(ctiocb->context_un.ndlp);
281 ctiocb->context_un.ndlp = NULL;
282 }
858c9f6c
JS
283 if (ctiocb->context1) {
284 buf_ptr = (struct lpfc_dmabuf *) ctiocb->context1;
285 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
286 kfree(buf_ptr);
287 ctiocb->context1 = NULL;
288 }
289 if (ctiocb->context2) {
290 lpfc_free_ct_rsp(phba, (struct lpfc_dmabuf *) ctiocb->context2);
291 ctiocb->context2 = NULL;
292 }
293
294 if (ctiocb->context3) {
295 buf_ptr = (struct lpfc_dmabuf *) ctiocb->context3;
296 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
297 kfree(buf_ptr);
1109c944 298 ctiocb->context3 = NULL;
858c9f6c
JS
299 }
300 lpfc_sli_release_iocbq(phba, ctiocb);
301 return 0;
302}
303
4258e98e
JS
304/**
305 * lpfc_gen_req - Build and issue a GEN_REQUEST command to the SLI Layer
306 * @vport: pointer to a host virtual N_Port data structure.
307 * @bmp: Pointer to BPL for SLI command
308 * @inp: Pointer to data buffer for response data.
309 * @outp: Pointer to data buffer that hold the CT command.
310 * @cmpl: completion routine to call when command completes
311 * @ndlp: Destination NPort nodelist entry
312 *
313 * This function as the final part for issuing a CT command.
314 */
dea3101e 315static int
2e0fef85 316lpfc_gen_req(struct lpfc_vport *vport, struct lpfc_dmabuf *bmp,
dea3101e
JB
317 struct lpfc_dmabuf *inp, struct lpfc_dmabuf *outp,
318 void (*cmpl) (struct lpfc_hba *, struct lpfc_iocbq *,
319 struct lpfc_iocbq *),
320 struct lpfc_nodelist *ndlp, uint32_t usr_flg, uint32_t num_entry,
92d7f7b0 321 uint32_t tmo, uint8_t retry)
dea3101e 322{
2e0fef85 323 struct lpfc_hba *phba = vport->phba;
dea3101e 324 IOCB_t *icmd;
0bd4ca25 325 struct lpfc_iocbq *geniocb;
92d7f7b0 326 int rc;
dea3101e
JB
327
328 /* Allocate buffer for command iocb */
0bd4ca25 329 geniocb = lpfc_sli_get_iocbq(phba);
dea3101e
JB
330
331 if (geniocb == NULL)
332 return 1;
dea3101e
JB
333
334 icmd = &geniocb->iocb;
335 icmd->un.genreq64.bdl.ulpIoTag32 = 0;
336 icmd->un.genreq64.bdl.addrHigh = putPaddrHigh(bmp->phys);
337 icmd->un.genreq64.bdl.addrLow = putPaddrLow(bmp->phys);
34b02dcd 338 icmd->un.genreq64.bdl.bdeFlags = BUFF_TYPE_BLP_64;
4258e98e 339 icmd->un.genreq64.bdl.bdeSize = (num_entry * sizeof(struct ulp_bde64));
dea3101e
JB
340
341 if (usr_flg)
342 geniocb->context3 = NULL;
343 else
344 geniocb->context3 = (uint8_t *) bmp;
345
346 /* Save for completion so we can release these resources */
347 geniocb->context1 = (uint8_t *) inp;
348 geniocb->context2 = (uint8_t *) outp;
e47c9093 349 geniocb->context_un.ndlp = lpfc_nlp_get(ndlp);
dea3101e
JB
350
351 /* Fill in payload, bp points to frame payload */
352 icmd->ulpCommand = CMD_GEN_REQUEST64_CR;
353
354 /* Fill in rest of iocb */
355 icmd->un.genreq64.w5.hcsw.Fctl = (SI | LA);
356 icmd->un.genreq64.w5.hcsw.Dfctl = 0;
6a9c52cf
JS
357 icmd->un.genreq64.w5.hcsw.Rctl = FC_RCTL_DD_UNSOL_CTL;
358 icmd->un.genreq64.w5.hcsw.Type = FC_TYPE_CT;
dea3101e 359
c9f8735b
JW
360 if (!tmo) {
361 /* FC spec states we need 3 * ratov for CT requests */
362 tmo = (3 * phba->fc_ratov);
363 }
dea3101e
JB
364 icmd->ulpTimeout = tmo;
365 icmd->ulpBdeCount = 1;
366 icmd->ulpLe = 1;
367 icmd->ulpClass = CLASS3;
368 icmd->ulpContext = ndlp->nlp_rpi;
6d368e53
JS
369 if (phba->sli_rev == LPFC_SLI_REV4)
370 icmd->ulpContext = phba->sli4_hba.rpi_ids[ndlp->nlp_rpi];
dea3101e 371
92d7f7b0
JS
372 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
373 /* For GEN_REQUEST64_CR, use the RPI */
374 icmd->ulpCt_h = 0;
375 icmd->ulpCt_l = 0;
376 }
377
dea3101e 378 /* Issue GEN REQ IOCB for NPORT <did> */
e8b62011
JS
379 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
380 "0119 Issue GEN REQ IOCB to NPORT x%x "
381 "Data: x%x x%x\n",
382 ndlp->nlp_DID, icmd->ulpIoTag,
383 vport->port_state);
dea3101e
JB
384 geniocb->iocb_cmpl = cmpl;
385 geniocb->drvrTimeout = icmd->ulpTimeout + LPFC_DRVR_TIMEOUT;
2e0fef85 386 geniocb->vport = vport;
92d7f7b0 387 geniocb->retry = retry;
3772a991 388 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, geniocb, 0);
92d7f7b0
JS
389
390 if (rc == IOCB_ERROR) {
604a3e30 391 lpfc_sli_release_iocbq(phba, geniocb);
dea3101e
JB
392 return 1;
393 }
dea3101e
JB
394
395 return 0;
396}
397
4258e98e
JS
398/**
399 * lpfc_ct_cmd - Build and issue a CT command
400 * @vport: pointer to a host virtual N_Port data structure.
401 * @inmp: Pointer to data buffer for response data.
402 * @bmp: Pointer to BPL for SLI command
403 * @ndlp: Destination NPort nodelist entry
404 * @cmpl: completion routine to call when command completes
405 *
406 * This function is called for issuing a CT command.
407 */
dea3101e 408static int
2e0fef85 409lpfc_ct_cmd(struct lpfc_vport *vport, struct lpfc_dmabuf *inmp,
dea3101e
JB
410 struct lpfc_dmabuf *bmp, struct lpfc_nodelist *ndlp,
411 void (*cmpl) (struct lpfc_hba *, struct lpfc_iocbq *,
412 struct lpfc_iocbq *),
92d7f7b0 413 uint32_t rsp_size, uint8_t retry)
dea3101e 414{
2e0fef85 415 struct lpfc_hba *phba = vport->phba;
dea3101e
JB
416 struct ulp_bde64 *bpl = (struct ulp_bde64 *) bmp->virt;
417 struct lpfc_dmabuf *outmp;
418 int cnt = 0, status;
419 int cmdcode = ((struct lpfc_sli_ct_request *) inmp->virt)->
420 CommandResponse.bits.CmdRsp;
421
422 bpl++; /* Skip past ct request */
423
424 /* Put buffer(s) for ct rsp in bpl */
425 outmp = lpfc_alloc_ct_rsp(phba, cmdcode, bpl, rsp_size, &cnt);
426 if (!outmp)
427 return -ENOMEM;
6a9c52cf
JS
428 /*
429 * Form the CT IOCB. The total number of BDEs in this IOCB
430 * is the single command plus response count from
431 * lpfc_alloc_ct_rsp.
432 */
433 cnt += 1;
2e0fef85 434 status = lpfc_gen_req(vport, bmp, inmp, outmp, cmpl, ndlp, 0,
6a9c52cf 435 cnt, 0, retry);
dea3101e
JB
436 if (status) {
437 lpfc_free_ct_rsp(phba, outmp);
438 return -ENOMEM;
439 }
440 return 0;
441}
442
549e55cd 443struct lpfc_vport *
92d7f7b0 444lpfc_find_vport_by_did(struct lpfc_hba *phba, uint32_t did) {
92d7f7b0 445 struct lpfc_vport *vport_curr;
549e55cd 446 unsigned long flags;
92d7f7b0 447
549e55cd 448 spin_lock_irqsave(&phba->hbalock, flags);
92d7f7b0 449 list_for_each_entry(vport_curr, &phba->port_list, listentry) {
549e55cd
JS
450 if ((vport_curr->fc_myDID) && (vport_curr->fc_myDID == did)) {
451 spin_unlock_irqrestore(&phba->hbalock, flags);
92d7f7b0 452 return vport_curr;
549e55cd 453 }
92d7f7b0 454 }
549e55cd 455 spin_unlock_irqrestore(&phba->hbalock, flags);
92d7f7b0
JS
456 return NULL;
457}
458
a0f2d3ef
JS
459static void
460lpfc_prep_node_fc4type(struct lpfc_vport *vport, uint32_t Did, uint8_t fc4_type)
461{
462 struct lpfc_nodelist *ndlp;
463
464 if ((vport->port_type != LPFC_NPIV_PORT) ||
465 !(vport->ct_flags & FC_CT_RFF_ID) || !vport->cfg_restrict_login) {
466
467 ndlp = lpfc_setup_disc_node(vport, Did);
468
469 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
bd2cdd5e
JS
470 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_CT,
471 "Parse GID_FTrsp: did:x%x flg:x%x x%x",
472 Did, ndlp->nlp_flag, vport->fc_flag);
473
a0f2d3ef
JS
474 /* By default, the driver expects to support FCP FC4 */
475 if (fc4_type == FC_TYPE_FCP)
476 ndlp->nlp_fc4_type |= NLP_FC4_FCP;
477
478 if (fc4_type == FC_TYPE_NVME)
479 ndlp->nlp_fc4_type |= NLP_FC4_NVME;
480
481 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
482 "0238 Process x%06x NameServer Rsp "
483 "Data: x%x x%x x%x x%x\n", Did,
484 ndlp->nlp_flag, ndlp->nlp_fc4_type,
485 vport->fc_flag,
486 vport->fc_rscn_id_cnt);
bd2cdd5e
JS
487 } else {
488 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_CT,
489 "Skip1 GID_FTrsp: did:x%x flg:x%x cnt:%d",
490 Did, vport->fc_flag, vport->fc_rscn_id_cnt);
491
a0f2d3ef
JS
492 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
493 "0239 Skip x%06x NameServer Rsp "
494 "Data: x%x x%x\n", Did,
495 vport->fc_flag,
496 vport->fc_rscn_id_cnt);
bd2cdd5e 497 }
a0f2d3ef
JS
498 } else {
499 if (!(vport->fc_flag & FC_RSCN_MODE) ||
500 lpfc_rscn_payload_check(vport, Did)) {
bd2cdd5e
JS
501 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_CT,
502 "Query GID_FTrsp: did:x%x flg:x%x cnt:%d",
503 Did, vport->fc_flag, vport->fc_rscn_id_cnt);
504
a0f2d3ef
JS
505 /*
506 * This NPortID was previously a FCP target,
507 * Don't even bother to send GFF_ID.
508 */
509 ndlp = lpfc_findnode_did(vport, Did);
510 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
511 ndlp->nlp_fc4_type = fc4_type;
512
513 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
514 ndlp->nlp_fc4_type = fc4_type;
515
516 if (ndlp->nlp_type & NLP_FCP_TARGET)
517 lpfc_setup_disc_node(vport, Did);
518
519 else if (lpfc_ns_cmd(vport, SLI_CTNS_GFF_ID,
520 0, Did) == 0)
521 vport->num_disc_nodes++;
522
523 else
524 lpfc_setup_disc_node(vport, Did);
525 }
bd2cdd5e
JS
526 } else {
527 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_CT,
528 "Skip2 GID_FTrsp: did:x%x flg:x%x cnt:%d",
529 Did, vport->fc_flag, vport->fc_rscn_id_cnt);
530
a0f2d3ef
JS
531 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
532 "0245 Skip x%06x NameServer Rsp "
533 "Data: x%x x%x\n", Did,
534 vport->fc_flag,
535 vport->fc_rscn_id_cnt);
bd2cdd5e 536 }
a0f2d3ef
JS
537 }
538}
539
1c5b12f7
JS
540static void
541lpfc_ns_rsp_audit_did(struct lpfc_vport *vport, uint32_t Did, uint8_t fc4_type)
542{
543 struct lpfc_hba *phba = vport->phba;
544 struct lpfc_nodelist *ndlp = NULL;
545 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
546
547 /*
548 * To conserve rpi's, filter out addresses for other
549 * vports on the same physical HBAs.
550 */
551 if (Did != vport->fc_myDID &&
552 (!lpfc_find_vport_by_did(phba, Did) ||
553 vport->cfg_peer_port_login)) {
554 if (!phba->nvmet_support) {
555 /* FCPI/NVMEI path. Process Did */
556 lpfc_prep_node_fc4type(vport, Did, fc4_type);
557 return;
558 }
559 /* NVMET path. NVMET only cares about NVMEI nodes. */
560 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
561 if (ndlp->nlp_type != NLP_NVME_INITIATOR ||
562 ndlp->nlp_state != NLP_STE_UNMAPPED_NODE)
563 continue;
564 spin_lock_irq(shost->host_lock);
565 if (ndlp->nlp_DID == Did)
566 ndlp->nlp_flag &= ~NLP_NVMET_RECOV;
567 else
568 ndlp->nlp_flag |= NLP_NVMET_RECOV;
569 spin_unlock_irq(shost->host_lock);
570 }
571 }
572}
573
dea3101e 574static int
a0f2d3ef
JS
575lpfc_ns_rsp(struct lpfc_vport *vport, struct lpfc_dmabuf *mp, uint8_t fc4_type,
576 uint32_t Size)
dea3101e
JB
577{
578 struct lpfc_sli_ct_request *Response =
579 (struct lpfc_sli_ct_request *) mp->virt;
dea3101e
JB
580 struct lpfc_dmabuf *mlast, *next_mp;
581 uint32_t *ctptr = (uint32_t *) & Response->un.gid.PortType;
2e0fef85 582 uint32_t Did, CTentry;
dea3101e
JB
583 int Cnt;
584 struct list_head head;
1c5b12f7
JS
585 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
586 struct lpfc_nodelist *ndlp = NULL;
dea3101e 587
2e0fef85 588 lpfc_set_disctmo(vport);
92d7f7b0 589 vport->num_disc_nodes = 0;
0ff10d46 590 vport->fc_ns_retry = 0;
dea3101e 591
dea3101e
JB
592
593 list_add_tail(&head, &mp->list);
594 list_for_each_entry_safe(mp, next_mp, &head, list) {
595 mlast = mp;
596
7054a606
JS
597 Cnt = Size > FCELSSIZE ? FCELSSIZE : Size;
598
dea3101e
JB
599 Size -= Cnt;
600
1dcb58e5 601 if (!ctptr) {
dea3101e 602 ctptr = (uint32_t *) mlast->virt;
1dcb58e5 603 } else
dea3101e
JB
604 Cnt -= 16; /* subtract length of CT header */
605
606 /* Loop through entire NameServer list of DIDs */
4258e98e 607 while (Cnt >= sizeof(uint32_t)) {
dea3101e
JB
608 /* Get next DID from NameServer List */
609 CTentry = *ctptr++;
610 Did = ((be32_to_cpu(CTentry)) & Mask_DID);
1c5b12f7 611 lpfc_ns_rsp_audit_did(vport, Did, fc4_type);
76b2c34a 612 if (CTentry & (cpu_to_be32(SLI_CT_LAST_ENTRY)))
dea3101e 613 goto nsout1;
a0f2d3ef 614
4258e98e 615 Cnt -= sizeof(uint32_t);
dea3101e
JB
616 }
617 ctptr = NULL;
618
619 }
620
1c5b12f7
JS
621 /* All GID_FT entries processed. If the driver is running in
622 * in target mode, put impacted nodes into recovery and drop
623 * the RPI to flush outstanding IO.
624 */
625 if (vport->phba->nvmet_support) {
626 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
627 if (!(ndlp->nlp_flag & NLP_NVMET_RECOV))
628 continue;
629 lpfc_disc_state_machine(vport, ndlp, NULL,
630 NLP_EVT_DEVICE_RECOVERY);
631 spin_lock_irq(shost->host_lock);
632 ndlp->nlp_flag &= ~NLP_NVMET_RECOV;
0d618cf4 633 spin_unlock_irq(shost->host_lock);
1c5b12f7
JS
634 }
635 }
636
dea3101e
JB
637nsout1:
638 list_del(&head);
dea3101e
JB
639 return 0;
640}
641
dea3101e 642static void
2e0fef85
JS
643lpfc_cmpl_ct_cmd_gid_ft(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
644 struct lpfc_iocbq *rspiocb)
dea3101e 645{
2e0fef85 646 struct lpfc_vport *vport = cmdiocb->vport;
92d7f7b0 647 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea3101e 648 IOCB_t *irsp;
dea3101e 649 struct lpfc_dmabuf *outp;
a0f2d3ef 650 struct lpfc_dmabuf *inp;
dea3101e 651 struct lpfc_sli_ct_request *CTrsp;
a0f2d3ef 652 struct lpfc_sli_ct_request *CTreq;
51ef4c26 653 struct lpfc_nodelist *ndlp;
a0f2d3ef 654 int rc, type;
dea3101e 655
51ef4c26
JS
656 /* First save ndlp, before we overwrite it */
657 ndlp = cmdiocb->context_un.ndlp;
658
dea3101e
JB
659 /* we pass cmdiocb to state machine which needs rspiocb as well */
660 cmdiocb->context_un.rsp_iocb = rspiocb;
a0f2d3ef 661 inp = (struct lpfc_dmabuf *) cmdiocb->context1;
dea3101e 662 outp = (struct lpfc_dmabuf *) cmdiocb->context2;
858c9f6c
JS
663 irsp = &rspiocb->iocb;
664
665 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_CT,
666 "GID_FT cmpl: status:x%x/x%x rtry:%d",
667 irsp->ulpStatus, irsp->un.ulpWord[4], vport->fc_ns_retry);
dea3101e 668
92d7f7b0 669 /* Don't bother processing response if vport is being torn down. */
eada272d
JS
670 if (vport->load_flag & FC_UNLOADING) {
671 if (vport->fc_flag & FC_RSCN_MODE)
672 lpfc_els_flush_rscn(vport);
92d7f7b0 673 goto out;
eada272d 674 }
92d7f7b0 675
58da1ffb 676 if (lpfc_els_chk_latt(vport)) {
e8b62011
JS
677 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
678 "0216 Link event during NS query\n");
eada272d
JS
679 if (vport->fc_flag & FC_RSCN_MODE)
680 lpfc_els_flush_rscn(vport);
858c9f6c
JS
681 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
682 goto out;
683 }
58da1ffb
JS
684 if (lpfc_error_lost_link(irsp)) {
685 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
686 "0226 NS query failed due to link event\n");
eada272d
JS
687 if (vport->fc_flag & FC_RSCN_MODE)
688 lpfc_els_flush_rscn(vport);
58da1ffb
JS
689 goto out;
690 }
858c9f6c 691 if (irsp->ulpStatus) {
dea3101e 692 /* Check for retry */
2e0fef85 693 if (vport->fc_ns_retry < LPFC_MAX_NS_RETRY) {
58da1ffb 694 if (irsp->ulpStatus != IOSTAT_LOCAL_REJECT ||
edb22f06 695 (irsp->un.ulpWord[4] & IOERR_PARAM_MASK) !=
e3d2b802 696 IOERR_NO_RESOURCES)
858c9f6c 697 vport->fc_ns_retry++;
0ff10d46 698
a0f2d3ef
JS
699 type = lpfc_get_gidft_type(vport, cmdiocb);
700 if (type == 0)
701 goto out;
702
58da1ffb 703 /* CT command is being retried */
a0f2d3ef 704 vport->gidft_inp--;
58da1ffb 705 rc = lpfc_ns_cmd(vport, SLI_CTNS_GID_FT,
a0f2d3ef 706 vport->fc_ns_retry, type);
58da1ffb
JS
707 if (rc == 0)
708 goto out;
92d7f7b0 709 }
eada272d
JS
710 if (vport->fc_flag & FC_RSCN_MODE)
711 lpfc_els_flush_rscn(vport);
92d7f7b0 712 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
e8b62011
JS
713 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
714 "0257 GID_FT Query error: 0x%x 0x%x\n",
715 irsp->ulpStatus, vport->fc_ns_retry);
dea3101e
JB
716 } else {
717 /* Good status, continue checking */
a0f2d3ef 718 CTreq = (struct lpfc_sli_ct_request *) inp->virt;
dea3101e
JB
719 CTrsp = (struct lpfc_sli_ct_request *) outp->virt;
720 if (CTrsp->CommandResponse.bits.CmdRsp ==
76b2c34a 721 cpu_to_be16(SLI_CT_RESPONSE_FS_ACC)) {
e8b62011 722 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
a0f2d3ef
JS
723 "0208 NameServer Rsp Data: x%x x%x\n",
724 vport->fc_flag,
725 CTreq->un.gid.Fc4Type);
726
727 lpfc_ns_rsp(vport,
728 outp,
729 CTreq->un.gid.Fc4Type,
dea3101e
JB
730 (uint32_t) (irsp->un.genreq64.bdl.bdeSize));
731 } else if (CTrsp->CommandResponse.bits.CmdRsp ==
732 be16_to_cpu(SLI_CT_RESPONSE_FS_RJT)) {
733 /* NameServer Rsp Error */
a58cbd52
JS
734 if ((CTrsp->ReasonCode == SLI_CT_UNABLE_TO_PERFORM_REQ)
735 && (CTrsp->Explanation == SLI_CT_NO_FC4_TYPES)) {
e8b62011
JS
736 lpfc_printf_vlog(vport, KERN_INFO,
737 LOG_DISCOVERY,
738 "0269 No NameServer Entries "
a58cbd52 739 "Data: x%x x%x x%x x%x\n",
a58cbd52
JS
740 CTrsp->CommandResponse.bits.CmdRsp,
741 (uint32_t) CTrsp->ReasonCode,
742 (uint32_t) CTrsp->Explanation,
743 vport->fc_flag);
744
745 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_CT,
746 "GID_FT no entry cmd:x%x rsn:x%x exp:x%x",
747 (uint32_t)CTrsp->CommandResponse.bits.CmdRsp,
748 (uint32_t) CTrsp->ReasonCode,
749 (uint32_t) CTrsp->Explanation);
e8b62011
JS
750 } else {
751 lpfc_printf_vlog(vport, KERN_INFO,
752 LOG_DISCOVERY,
753 "0240 NameServer Rsp Error "
dea3101e 754 "Data: x%x x%x x%x x%x\n",
dea3101e
JB
755 CTrsp->CommandResponse.bits.CmdRsp,
756 (uint32_t) CTrsp->ReasonCode,
757 (uint32_t) CTrsp->Explanation,
2e0fef85 758 vport->fc_flag);
858c9f6c 759
a58cbd52 760 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_CT,
858c9f6c
JS
761 "GID_FT rsp err1 cmd:x%x rsn:x%x exp:x%x",
762 (uint32_t)CTrsp->CommandResponse.bits.CmdRsp,
763 (uint32_t) CTrsp->ReasonCode,
764 (uint32_t) CTrsp->Explanation);
a58cbd52
JS
765 }
766
858c9f6c 767
dea3101e
JB
768 } else {
769 /* NameServer Rsp Error */
e8b62011
JS
770 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
771 "0241 NameServer Rsp Error "
dea3101e 772 "Data: x%x x%x x%x x%x\n",
dea3101e
JB
773 CTrsp->CommandResponse.bits.CmdRsp,
774 (uint32_t) CTrsp->ReasonCode,
775 (uint32_t) CTrsp->Explanation,
2e0fef85 776 vport->fc_flag);
858c9f6c
JS
777
778 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_CT,
779 "GID_FT rsp err2 cmd:x%x rsn:x%x exp:x%x",
780 (uint32_t)CTrsp->CommandResponse.bits.CmdRsp,
781 (uint32_t) CTrsp->ReasonCode,
782 (uint32_t) CTrsp->Explanation);
dea3101e 783 }
a0f2d3ef 784 vport->gidft_inp--;
dea3101e
JB
785 }
786 /* Link up / RSCN discovery */
a0f2d3ef
JS
787 if ((vport->num_disc_nodes == 0) &&
788 (vport->gidft_inp == 0)) {
92d7f7b0
JS
789 /*
790 * The driver has cycled through all Nports in the RSCN payload.
791 * Complete the handling by cleaning up and marking the
792 * current driver state.
793 */
794 if (vport->port_state >= LPFC_DISC_AUTH) {
795 if (vport->fc_flag & FC_RSCN_MODE) {
796 lpfc_els_flush_rscn(vport);
797 spin_lock_irq(shost->host_lock);
798 vport->fc_flag |= FC_RSCN_MODE; /* RSCN still */
799 spin_unlock_irq(shost->host_lock);
800 }
801 else
802 lpfc_els_flush_rscn(vport);
803 }
804
805 lpfc_disc_start(vport);
806 }
807out:
51ef4c26 808 cmdiocb->context_un.ndlp = ndlp; /* Now restore ndlp for free */
858c9f6c 809 lpfc_ct_free_iocb(phba, cmdiocb);
92d7f7b0
JS
810 return;
811}
812
311464ec 813static void
92d7f7b0
JS
814lpfc_cmpl_ct_cmd_gff_id(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
815 struct lpfc_iocbq *rspiocb)
816{
817 struct lpfc_vport *vport = cmdiocb->vport;
818 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
819 IOCB_t *irsp = &rspiocb->iocb;
92d7f7b0
JS
820 struct lpfc_dmabuf *inp = (struct lpfc_dmabuf *) cmdiocb->context1;
821 struct lpfc_dmabuf *outp = (struct lpfc_dmabuf *) cmdiocb->context2;
822 struct lpfc_sli_ct_request *CTrsp;
0ff10d46 823 int did, rc, retry;
92d7f7b0
JS
824 uint8_t fbits;
825 struct lpfc_nodelist *ndlp;
826
827 did = ((struct lpfc_sli_ct_request *) inp->virt)->un.gff.PortId;
828 did = be32_to_cpu(did);
829
858c9f6c
JS
830 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_CT,
831 "GFF_ID cmpl: status:x%x/x%x did:x%x",
832 irsp->ulpStatus, irsp->un.ulpWord[4], did);
833
92d7f7b0
JS
834 if (irsp->ulpStatus == IOSTAT_SUCCESS) {
835 /* Good status, continue checking */
836 CTrsp = (struct lpfc_sli_ct_request *) outp->virt;
837 fbits = CTrsp->un.gff_acc.fbits[FCP_TYPE_FEATURE_OFFSET];
838
839 if (CTrsp->CommandResponse.bits.CmdRsp ==
840 be16_to_cpu(SLI_CT_RESPONSE_FS_ACC)) {
841 if ((fbits & FC4_FEATURE_INIT) &&
842 !(fbits & FC4_FEATURE_TARGET)) {
e8b62011
JS
843 lpfc_printf_vlog(vport, KERN_INFO,
844 LOG_DISCOVERY,
845 "0270 Skip x%x GFF "
846 "NameServer Rsp Data: (init) "
847 "x%x x%x\n", did, fbits,
848 vport->fc_rscn_id_cnt);
92d7f7b0
JS
849 goto out;
850 }
851 }
852 }
858c9f6c 853 else {
0ff10d46
JS
854 /* Check for retry */
855 if (cmdiocb->retry < LPFC_MAX_NS_RETRY) {
856 retry = 1;
857 if (irsp->ulpStatus == IOSTAT_LOCAL_REJECT) {
e3d2b802
JS
858 switch ((irsp->un.ulpWord[4] &
859 IOERR_PARAM_MASK)) {
860
0ff10d46
JS
861 case IOERR_NO_RESOURCES:
862 /* We don't increment the retry
863 * count for this case.
864 */
865 break;
866 case IOERR_LINK_DOWN:
867 case IOERR_SLI_ABORTED:
868 case IOERR_SLI_DOWN:
869 retry = 0;
870 break;
871 default:
872 cmdiocb->retry++;
873 }
874 }
875 else
876 cmdiocb->retry++;
877
878 if (retry) {
879 /* CT command is being retried */
880 rc = lpfc_ns_cmd(vport, SLI_CTNS_GFF_ID,
881 cmdiocb->retry, did);
882 if (rc == 0) {
883 /* success */
884 lpfc_ct_free_iocb(phba, cmdiocb);
885 return;
886 }
887 }
888 }
e8b62011
JS
889 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
890 "0267 NameServer GFF Rsp "
891 "x%x Error (%d %d) Data: x%x x%x\n",
892 did, irsp->ulpStatus, irsp->un.ulpWord[4],
7f5f3d0d 893 vport->fc_flag, vport->fc_rscn_id_cnt);
858c9f6c
JS
894 }
895
92d7f7b0
JS
896 /* This is a target port, unregistered port, or the GFF_ID failed */
897 ndlp = lpfc_setup_disc_node(vport, did);
58da1ffb 898 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
e8b62011
JS
899 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
900 "0242 Process x%x GFF "
901 "NameServer Rsp Data: x%x x%x x%x\n",
902 did, ndlp->nlp_flag, vport->fc_flag,
903 vport->fc_rscn_id_cnt);
92d7f7b0 904 } else {
e8b62011
JS
905 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
906 "0243 Skip x%x GFF "
907 "NameServer Rsp Data: x%x x%x\n", did,
908 vport->fc_flag, vport->fc_rscn_id_cnt);
92d7f7b0 909 }
dea3101e 910out:
92d7f7b0
JS
911 /* Link up / RSCN discovery */
912 if (vport->num_disc_nodes)
913 vport->num_disc_nodes--;
914 if (vport->num_disc_nodes == 0) {
915 /*
916 * The driver has cycled through all Nports in the RSCN payload.
917 * Complete the handling by cleaning up and marking the
918 * current driver state.
919 */
920 if (vport->port_state >= LPFC_DISC_AUTH) {
921 if (vport->fc_flag & FC_RSCN_MODE) {
922 lpfc_els_flush_rscn(vport);
923 spin_lock_irq(shost->host_lock);
924 vport->fc_flag |= FC_RSCN_MODE; /* RSCN still */
925 spin_unlock_irq(shost->host_lock);
926 }
927 else
928 lpfc_els_flush_rscn(vport);
929 }
930 lpfc_disc_start(vport);
931 }
858c9f6c 932 lpfc_ct_free_iocb(phba, cmdiocb);
dea3101e
JB
933 return;
934}
935
a0f2d3ef
JS
936static void
937lpfc_cmpl_ct_cmd_gft_id(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
938 struct lpfc_iocbq *rspiocb)
939{
940 struct lpfc_vport *vport = cmdiocb->vport;
941 IOCB_t *irsp = &rspiocb->iocb;
942 struct lpfc_dmabuf *inp = (struct lpfc_dmabuf *)cmdiocb->context1;
943 struct lpfc_dmabuf *outp = (struct lpfc_dmabuf *)cmdiocb->context2;
944 struct lpfc_sli_ct_request *CTrsp;
945 int did;
946 struct lpfc_nodelist *ndlp;
947 uint32_t fc4_data_0, fc4_data_1;
948
949 did = ((struct lpfc_sli_ct_request *)inp->virt)->un.gft.PortId;
950 did = be32_to_cpu(did);
951
bd2cdd5e
JS
952 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_CT,
953 "GFT_ID cmpl: status:x%x/x%x did:x%x",
954 irsp->ulpStatus, irsp->un.ulpWord[4], did);
955
a0f2d3ef
JS
956 if (irsp->ulpStatus == IOSTAT_SUCCESS) {
957 /* Good status, continue checking */
958 CTrsp = (struct lpfc_sli_ct_request *)outp->virt;
959 fc4_data_0 = be32_to_cpu(CTrsp->un.gft_acc.fc4_types[0]);
960 fc4_data_1 = be32_to_cpu(CTrsp->un.gft_acc.fc4_types[1]);
961 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
962 "3062 DID x%06x GFT Wd0 x%08x Wd1 x%08x\n",
963 did, fc4_data_0, fc4_data_1);
964
965 ndlp = lpfc_findnode_did(vport, did);
966 if (ndlp) {
967 /* The bitmask value for FCP and NVME FCP types is
968 * the same because they are 32 bits distant from
969 * each other in word0 and word0.
970 */
971 if (fc4_data_0 & LPFC_FC4_TYPE_BITMASK)
972 ndlp->nlp_fc4_type |= NLP_FC4_FCP;
973 if (fc4_data_1 & LPFC_FC4_TYPE_BITMASK)
974 ndlp->nlp_fc4_type |= NLP_FC4_NVME;
975 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
976 "3064 Setting ndlp %p, DID x%06x with "
977 "FC4 x%08x, Data: x%08x x%08x\n",
978 ndlp, did, ndlp->nlp_fc4_type,
979 FC_TYPE_FCP, FC_TYPE_NVME);
b5ccc7d6 980 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
a0f2d3ef 981 }
a0f2d3ef
JS
982 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
983 lpfc_issue_els_prli(vport, ndlp, 0);
984 } else
985 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
986 "3065 GFT_ID failed x%08x\n", irsp->ulpStatus);
987
988 lpfc_ct_free_iocb(phba, cmdiocb);
989}
92d7f7b0 990
dea3101e 991static void
7ee5d43e
JS
992lpfc_cmpl_ct(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
993 struct lpfc_iocbq *rspiocb)
dea3101e 994{
92d7f7b0 995 struct lpfc_vport *vport = cmdiocb->vport;
dea3101e
JB
996 struct lpfc_dmabuf *inp;
997 struct lpfc_dmabuf *outp;
998 IOCB_t *irsp;
999 struct lpfc_sli_ct_request *CTrsp;
51ef4c26 1000 struct lpfc_nodelist *ndlp;
92d7f7b0
JS
1001 int cmdcode, rc;
1002 uint8_t retry;
858c9f6c 1003 uint32_t latt;
dea3101e 1004
51ef4c26
JS
1005 /* First save ndlp, before we overwrite it */
1006 ndlp = cmdiocb->context_un.ndlp;
1007
dea3101e
JB
1008 /* we pass cmdiocb to state machine which needs rspiocb as well */
1009 cmdiocb->context_un.rsp_iocb = rspiocb;
1010
1011 inp = (struct lpfc_dmabuf *) cmdiocb->context1;
1012 outp = (struct lpfc_dmabuf *) cmdiocb->context2;
dea3101e
JB
1013 irsp = &rspiocb->iocb;
1014
92d7f7b0
JS
1015 cmdcode = be16_to_cpu(((struct lpfc_sli_ct_request *) inp->virt)->
1016 CommandResponse.bits.CmdRsp);
dea3101e
JB
1017 CTrsp = (struct lpfc_sli_ct_request *) outp->virt;
1018
858c9f6c
JS
1019 latt = lpfc_els_chk_latt(vport);
1020
1021 /* RFT request completes status <ulpStatus> CmdRsp <CmdRsp> */
e8b62011 1022 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
7ee5d43e 1023 "0209 CT Request completes, latt %d, "
e8b62011
JS
1024 "ulpStatus x%x CmdRsp x%x, Context x%x, Tag x%x\n",
1025 latt, irsp->ulpStatus,
1026 CTrsp->CommandResponse.bits.CmdRsp,
1027 cmdiocb->iocb.ulpContext, cmdiocb->iocb.ulpIoTag);
dea3101e 1028
858c9f6c
JS
1029 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_CT,
1030 "CT cmd cmpl: status:x%x/x%x cmd:x%x",
1031 irsp->ulpStatus, irsp->un.ulpWord[4], cmdcode);
1032
92d7f7b0 1033 if (irsp->ulpStatus) {
e8b62011 1034 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
6e15520d 1035 "0268 NS cmd x%x Error (x%x x%x)\n",
e8b62011 1036 cmdcode, irsp->ulpStatus, irsp->un.ulpWord[4]);
858c9f6c 1037
92d7f7b0 1038 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
e3d2b802
JS
1039 (((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
1040 IOERR_SLI_DOWN) ||
1041 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
1042 IOERR_SLI_ABORTED)))
92d7f7b0
JS
1043 goto out;
1044
1045 retry = cmdiocb->retry;
1046 if (retry >= LPFC_MAX_NS_RETRY)
1047 goto out;
1048
1049 retry++;
e8b62011 1050 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
d7c255b2 1051 "0250 Retrying NS cmd %x\n", cmdcode);
92d7f7b0
JS
1052 rc = lpfc_ns_cmd(vport, cmdcode, retry, 0);
1053 if (rc == 0)
1054 goto out;
1055 }
1056
1057out:
51ef4c26 1058 cmdiocb->context_un.ndlp = ndlp; /* Now restore ndlp for free */
858c9f6c 1059 lpfc_ct_free_iocb(phba, cmdiocb);
dea3101e
JB
1060 return;
1061}
1062
7ee5d43e
JS
1063static void
1064lpfc_cmpl_ct_cmd_rft_id(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1065 struct lpfc_iocbq *rspiocb)
1066{
1067 IOCB_t *irsp = &rspiocb->iocb;
1068 struct lpfc_vport *vport = cmdiocb->vport;
1069
98c9ea5c
JS
1070 if (irsp->ulpStatus == IOSTAT_SUCCESS) {
1071 struct lpfc_dmabuf *outp;
1072 struct lpfc_sli_ct_request *CTrsp;
1073
1074 outp = (struct lpfc_dmabuf *) cmdiocb->context2;
1075 CTrsp = (struct lpfc_sli_ct_request *) outp->virt;
1076 if (CTrsp->CommandResponse.bits.CmdRsp ==
1077 be16_to_cpu(SLI_CT_RESPONSE_FS_ACC))
1078 vport->ct_flags |= FC_CT_RFT_ID;
1079 }
7ee5d43e
JS
1080 lpfc_cmpl_ct(phba, cmdiocb, rspiocb);
1081 return;
1082}
1083
dea3101e 1084static void
2e0fef85
JS
1085lpfc_cmpl_ct_cmd_rnn_id(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1086 struct lpfc_iocbq *rspiocb)
dea3101e 1087{
7ee5d43e
JS
1088 IOCB_t *irsp = &rspiocb->iocb;
1089 struct lpfc_vport *vport = cmdiocb->vport;
1090
98c9ea5c
JS
1091 if (irsp->ulpStatus == IOSTAT_SUCCESS) {
1092 struct lpfc_dmabuf *outp;
1093 struct lpfc_sli_ct_request *CTrsp;
1094
1095 outp = (struct lpfc_dmabuf *) cmdiocb->context2;
1096 CTrsp = (struct lpfc_sli_ct_request *) outp->virt;
1097 if (CTrsp->CommandResponse.bits.CmdRsp ==
1098 be16_to_cpu(SLI_CT_RESPONSE_FS_ACC))
1099 vport->ct_flags |= FC_CT_RNN_ID;
1100 }
7ee5d43e 1101 lpfc_cmpl_ct(phba, cmdiocb, rspiocb);
dea3101e
JB
1102 return;
1103}
1104
92d7f7b0
JS
1105static void
1106lpfc_cmpl_ct_cmd_rspn_id(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1107 struct lpfc_iocbq *rspiocb)
1108{
7ee5d43e
JS
1109 IOCB_t *irsp = &rspiocb->iocb;
1110 struct lpfc_vport *vport = cmdiocb->vport;
1111
98c9ea5c
JS
1112 if (irsp->ulpStatus == IOSTAT_SUCCESS) {
1113 struct lpfc_dmabuf *outp;
1114 struct lpfc_sli_ct_request *CTrsp;
1115
1116 outp = (struct lpfc_dmabuf *) cmdiocb->context2;
1117 CTrsp = (struct lpfc_sli_ct_request *) outp->virt;
1118 if (CTrsp->CommandResponse.bits.CmdRsp ==
1119 be16_to_cpu(SLI_CT_RESPONSE_FS_ACC))
1120 vport->ct_flags |= FC_CT_RSPN_ID;
1121 }
7ee5d43e 1122 lpfc_cmpl_ct(phba, cmdiocb, rspiocb);
92d7f7b0
JS
1123 return;
1124}
1125
dea3101e 1126static void
2e0fef85
JS
1127lpfc_cmpl_ct_cmd_rsnn_nn(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1128 struct lpfc_iocbq *rspiocb)
dea3101e 1129{
7ee5d43e
JS
1130 IOCB_t *irsp = &rspiocb->iocb;
1131 struct lpfc_vport *vport = cmdiocb->vport;
1132
98c9ea5c
JS
1133 if (irsp->ulpStatus == IOSTAT_SUCCESS) {
1134 struct lpfc_dmabuf *outp;
1135 struct lpfc_sli_ct_request *CTrsp;
1136
1137 outp = (struct lpfc_dmabuf *) cmdiocb->context2;
1138 CTrsp = (struct lpfc_sli_ct_request *) outp->virt;
1139 if (CTrsp->CommandResponse.bits.CmdRsp ==
1140 be16_to_cpu(SLI_CT_RESPONSE_FS_ACC))
1141 vport->ct_flags |= FC_CT_RSNN_NN;
1142 }
7ee5d43e
JS
1143 lpfc_cmpl_ct(phba, cmdiocb, rspiocb);
1144 return;
1145}
1146
1147static void
1148lpfc_cmpl_ct_cmd_da_id(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1149 struct lpfc_iocbq *rspiocb)
1150{
1151 struct lpfc_vport *vport = cmdiocb->vport;
1152
1153 /* even if it fails we will act as though it succeeded. */
1154 vport->ct_flags = 0;
1155 lpfc_cmpl_ct(phba, cmdiocb, rspiocb);
dea3101e
JB
1156 return;
1157}
1158
2fb9bd8b 1159static void
92d7f7b0
JS
1160lpfc_cmpl_ct_cmd_rff_id(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1161 struct lpfc_iocbq *rspiocb)
2fb9bd8b 1162{
92d7f7b0
JS
1163 IOCB_t *irsp = &rspiocb->iocb;
1164 struct lpfc_vport *vport = cmdiocb->vport;
1165
98c9ea5c
JS
1166 if (irsp->ulpStatus == IOSTAT_SUCCESS) {
1167 struct lpfc_dmabuf *outp;
1168 struct lpfc_sli_ct_request *CTrsp;
1169
1170 outp = (struct lpfc_dmabuf *) cmdiocb->context2;
1171 CTrsp = (struct lpfc_sli_ct_request *) outp->virt;
1172 if (CTrsp->CommandResponse.bits.CmdRsp ==
1173 be16_to_cpu(SLI_CT_RESPONSE_FS_ACC))
1174 vport->ct_flags |= FC_CT_RFF_ID;
1175 }
7ee5d43e 1176 lpfc_cmpl_ct(phba, cmdiocb, rspiocb);
2fb9bd8b
JS
1177 return;
1178}
1179
a0f2d3ef
JS
1180/*
1181 * Although the symbolic port name is thought to be an integer
1182 * as of January 18, 2016, leave it as a string until more of
1183 * the record state becomes defined.
1184 */
495a714c 1185int
92d7f7b0
JS
1186lpfc_vport_symbolic_port_name(struct lpfc_vport *vport, char *symbol,
1187 size_t size)
1188{
1189 int n;
92d7f7b0 1190
a0f2d3ef
JS
1191 /*
1192 * Use the lpfc board number as the Symbolic Port
1193 * Name object. NPIV is not in play so this integer
1194 * value is sufficient and unique per FC-ID.
1195 */
1196 n = snprintf(symbol, size, "%d", vport->phba->brd_no);
92d7f7b0
JS
1197 return n;
1198}
1199
a0f2d3ef 1200
92d7f7b0
JS
1201int
1202lpfc_vport_symbolic_node_name(struct lpfc_vport *vport, char *symbol,
1203 size_t size)
dea3101e 1204{
6b5151fd 1205 char fwrev[FW_REV_STR_SIZE];
92d7f7b0 1206 int n;
dea3101e 1207
92d7f7b0 1208 lpfc_decode_firmware_rev(vport->phba, fwrev, 0);
dea3101e 1209
f0bf5f91 1210 n = snprintf(symbol, size, "Emulex %s", vport->phba->ModelName);
f0bf5f91
JS
1211 if (size < n)
1212 return n;
f0bf5f91 1213
a0f2d3ef 1214 n += snprintf(symbol + n, size - n, " FV%s", fwrev);
f0bf5f91
JS
1215 if (size < n)
1216 return n;
f0bf5f91 1217
a0f2d3ef
JS
1218 n += snprintf(symbol + n, size - n, " DV%s.",
1219 lpfc_release_version);
f0bf5f91
JS
1220 if (size < n)
1221 return n;
f0bf5f91 1222
a0f2d3ef
JS
1223 n += snprintf(symbol + n, size - n, " HN:%s.",
1224 init_utsname()->nodename);
f0bf5f91
JS
1225 if (size < n)
1226 return n;
f0bf5f91 1227
a0f2d3ef
JS
1228 /* Note :- OS name is "Linux" */
1229 n += snprintf(symbol + n, size - n, " OS:%s\n",
1230 init_utsname()->sysname);
92d7f7b0 1231 return n;
dea3101e
JB
1232}
1233
76b2c34a
JS
1234static uint32_t
1235lpfc_find_map_node(struct lpfc_vport *vport)
1236{
1237 struct lpfc_nodelist *ndlp, *next_ndlp;
1238 struct Scsi_Host *shost;
1239 uint32_t cnt = 0;
1240
1241 shost = lpfc_shost_from_vport(vport);
1242 spin_lock_irq(shost->host_lock);
1243 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
1244 if (ndlp->nlp_type & NLP_FABRIC)
1245 continue;
1246 if ((ndlp->nlp_state == NLP_STE_MAPPED_NODE) ||
1247 (ndlp->nlp_state == NLP_STE_UNMAPPED_NODE))
1248 cnt++;
1249 }
1250 spin_unlock_irq(shost->host_lock);
1251 return cnt;
1252}
1253
a0f2d3ef
JS
1254/*
1255 * This routine will return the FC4 Type associated with the CT
1256 * GID_FT command.
1257 */
1258int
1259lpfc_get_gidft_type(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb)
1260{
1261 struct lpfc_sli_ct_request *CtReq;
1262 struct lpfc_dmabuf *mp;
1263 uint32_t type;
1264
1265 mp = cmdiocb->context1;
1266 if (mp == NULL)
1267 return 0;
1268 CtReq = (struct lpfc_sli_ct_request *)mp->virt;
1269 type = (uint32_t)CtReq->un.gid.Fc4Type;
1270 if ((type != SLI_CTPT_FCP) && (type != SLI_CTPT_NVME))
1271 return 0;
1272 return type;
1273}
1274
dea3101e
JB
1275/*
1276 * lpfc_ns_cmd
1277 * Description:
1278 * Issue Cmd to NameServer
1279 * SLI_CTNS_GID_FT
1280 * LI_CTNS_RFT_ID
1281 */
1282int
92d7f7b0
JS
1283lpfc_ns_cmd(struct lpfc_vport *vport, int cmdcode,
1284 uint8_t retry, uint32_t context)
dea3101e 1285{
92d7f7b0 1286 struct lpfc_nodelist * ndlp;
2e0fef85 1287 struct lpfc_hba *phba = vport->phba;
dea3101e
JB
1288 struct lpfc_dmabuf *mp, *bmp;
1289 struct lpfc_sli_ct_request *CtReq;
1290 struct ulp_bde64 *bpl;
1291 void (*cmpl) (struct lpfc_hba *, struct lpfc_iocbq *,
1292 struct lpfc_iocbq *) = NULL;
1293 uint32_t rsp_size = 1024;
92d7f7b0 1294 size_t size;
858c9f6c 1295 int rc = 0;
92d7f7b0
JS
1296
1297 ndlp = lpfc_findnode_did(vport, NameServer_DID);
e47c9093
JS
1298 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)
1299 || ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) {
858c9f6c
JS
1300 rc=1;
1301 goto ns_cmd_exit;
1302 }
dea3101e
JB
1303
1304 /* fill in BDEs for command */
1305 /* Allocate buffer for command payload */
4258e98e 1306 mp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
858c9f6c
JS
1307 if (!mp) {
1308 rc=2;
dea3101e 1309 goto ns_cmd_exit;
858c9f6c 1310 }
dea3101e
JB
1311
1312 INIT_LIST_HEAD(&mp->list);
1313 mp->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &(mp->phys));
858c9f6c
JS
1314 if (!mp->virt) {
1315 rc=3;
dea3101e 1316 goto ns_cmd_free_mp;
858c9f6c 1317 }
dea3101e
JB
1318
1319 /* Allocate buffer for Buffer ptr list */
4258e98e 1320 bmp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
858c9f6c
JS
1321 if (!bmp) {
1322 rc=4;
dea3101e 1323 goto ns_cmd_free_mpvirt;
858c9f6c 1324 }
dea3101e
JB
1325
1326 INIT_LIST_HEAD(&bmp->list);
1327 bmp->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &(bmp->phys));
858c9f6c
JS
1328 if (!bmp->virt) {
1329 rc=5;
dea3101e 1330 goto ns_cmd_free_bmp;
858c9f6c 1331 }
dea3101e
JB
1332
1333 /* NameServer Req */
e8b62011 1334 lpfc_printf_vlog(vport, KERN_INFO ,LOG_DISCOVERY,
a0f2d3ef
JS
1335 "0236 NameServer Req Data: x%x x%x x%x x%x\n",
1336 cmdcode, vport->fc_flag, vport->fc_rscn_id_cnt,
1337 context);
dea3101e
JB
1338
1339 bpl = (struct ulp_bde64 *) bmp->virt;
1340 memset(bpl, 0, sizeof(struct ulp_bde64));
92d7f7b0
JS
1341 bpl->addrHigh = le32_to_cpu(putPaddrHigh(mp->phys) );
1342 bpl->addrLow = le32_to_cpu(putPaddrLow(mp->phys) );
dea3101e
JB
1343 bpl->tus.f.bdeFlags = 0;
1344 if (cmdcode == SLI_CTNS_GID_FT)
1345 bpl->tus.f.bdeSize = GID_REQUEST_SZ;
92d7f7b0
JS
1346 else if (cmdcode == SLI_CTNS_GFF_ID)
1347 bpl->tus.f.bdeSize = GFF_REQUEST_SZ;
a0f2d3ef
JS
1348 else if (cmdcode == SLI_CTNS_GFT_ID)
1349 bpl->tus.f.bdeSize = GFT_REQUEST_SZ;
dea3101e
JB
1350 else if (cmdcode == SLI_CTNS_RFT_ID)
1351 bpl->tus.f.bdeSize = RFT_REQUEST_SZ;
1352 else if (cmdcode == SLI_CTNS_RNN_ID)
1353 bpl->tus.f.bdeSize = RNN_REQUEST_SZ;
92d7f7b0
JS
1354 else if (cmdcode == SLI_CTNS_RSPN_ID)
1355 bpl->tus.f.bdeSize = RSPN_REQUEST_SZ;
dea3101e
JB
1356 else if (cmdcode == SLI_CTNS_RSNN_NN)
1357 bpl->tus.f.bdeSize = RSNN_REQUEST_SZ;
7ee5d43e
JS
1358 else if (cmdcode == SLI_CTNS_DA_ID)
1359 bpl->tus.f.bdeSize = DA_ID_REQUEST_SZ;
2fb9bd8b
JS
1360 else if (cmdcode == SLI_CTNS_RFF_ID)
1361 bpl->tus.f.bdeSize = RFF_REQUEST_SZ;
dea3101e
JB
1362 else
1363 bpl->tus.f.bdeSize = 0;
1364 bpl->tus.w = le32_to_cpu(bpl->tus.w);
1365
1366 CtReq = (struct lpfc_sli_ct_request *) mp->virt;
4258e98e 1367 memset(CtReq, 0, sizeof(struct lpfc_sli_ct_request));
dea3101e
JB
1368 CtReq->RevisionId.bits.Revision = SLI_CT_REVISION;
1369 CtReq->RevisionId.bits.InId = 0;
1370 CtReq->FsType = SLI_CT_DIRECTORY_SERVICE;
1371 CtReq->FsSubType = SLI_CT_DIRECTORY_NAME_SERVER;
1372 CtReq->CommandResponse.bits.Size = 0;
1373 switch (cmdcode) {
1374 case SLI_CTNS_GID_FT:
1375 CtReq->CommandResponse.bits.CmdRsp =
76b2c34a 1376 cpu_to_be16(SLI_CTNS_GID_FT);
a0f2d3ef
JS
1377 CtReq->un.gid.Fc4Type = context;
1378
92d7f7b0 1379 if (vport->port_state < LPFC_NS_QRY)
2e0fef85
JS
1380 vport->port_state = LPFC_NS_QRY;
1381 lpfc_set_disctmo(vport);
dea3101e
JB
1382 cmpl = lpfc_cmpl_ct_cmd_gid_ft;
1383 rsp_size = FC_MAX_NS_RSP;
1384 break;
1385
92d7f7b0
JS
1386 case SLI_CTNS_GFF_ID:
1387 CtReq->CommandResponse.bits.CmdRsp =
76b2c34a 1388 cpu_to_be16(SLI_CTNS_GFF_ID);
09372820 1389 CtReq->un.gff.PortId = cpu_to_be32(context);
92d7f7b0
JS
1390 cmpl = lpfc_cmpl_ct_cmd_gff_id;
1391 break;
1392
a0f2d3ef
JS
1393 case SLI_CTNS_GFT_ID:
1394 CtReq->CommandResponse.bits.CmdRsp =
1395 cpu_to_be16(SLI_CTNS_GFT_ID);
1396 CtReq->un.gft.PortId = cpu_to_be32(context);
1397 cmpl = lpfc_cmpl_ct_cmd_gft_id;
1398 break;
1399
dea3101e 1400 case SLI_CTNS_RFT_ID:
7ee5d43e 1401 vport->ct_flags &= ~FC_CT_RFT_ID;
dea3101e 1402 CtReq->CommandResponse.bits.CmdRsp =
76b2c34a 1403 cpu_to_be16(SLI_CTNS_RFT_ID);
09372820 1404 CtReq->un.rft.PortId = cpu_to_be32(vport->fc_myDID);
a0f2d3ef
JS
1405
1406 /* Register FC4 FCP type if enabled. */
1407 if ((phba->cfg_enable_fc4_type == LPFC_ENABLE_BOTH) ||
1408 (phba->cfg_enable_fc4_type == LPFC_ENABLE_FCP))
1409 CtReq->un.rft.fcpReg = 1;
1410
1411 /* Register NVME type if enabled. Defined LE and swapped.
1412 * rsvd[0] is used as word1 because of the hard-coded
1413 * word0 usage in the ct_request data structure.
1414 */
1415 if ((phba->cfg_enable_fc4_type == LPFC_ENABLE_BOTH) ||
1416 (phba->cfg_enable_fc4_type == LPFC_ENABLE_NVME))
1417 CtReq->un.rft.rsvd[0] = cpu_to_be32(0x00000100);
1418
dea3101e
JB
1419 cmpl = lpfc_cmpl_ct_cmd_rft_id;
1420 break;
1421
1422 case SLI_CTNS_RNN_ID:
7ee5d43e 1423 vport->ct_flags &= ~FC_CT_RNN_ID;
dea3101e 1424 CtReq->CommandResponse.bits.CmdRsp =
76b2c34a 1425 cpu_to_be16(SLI_CTNS_RNN_ID);
09372820 1426 CtReq->un.rnn.PortId = cpu_to_be32(vport->fc_myDID);
2e0fef85 1427 memcpy(CtReq->un.rnn.wwnn, &vport->fc_nodename,
4258e98e 1428 sizeof(struct lpfc_name));
dea3101e
JB
1429 cmpl = lpfc_cmpl_ct_cmd_rnn_id;
1430 break;
1431
92d7f7b0 1432 case SLI_CTNS_RSPN_ID:
7ee5d43e 1433 vport->ct_flags &= ~FC_CT_RSPN_ID;
92d7f7b0 1434 CtReq->CommandResponse.bits.CmdRsp =
76b2c34a 1435 cpu_to_be16(SLI_CTNS_RSPN_ID);
09372820 1436 CtReq->un.rspn.PortId = cpu_to_be32(vport->fc_myDID);
92d7f7b0
JS
1437 size = sizeof(CtReq->un.rspn.symbname);
1438 CtReq->un.rspn.len =
1439 lpfc_vport_symbolic_port_name(vport,
1440 CtReq->un.rspn.symbname, size);
1441 cmpl = lpfc_cmpl_ct_cmd_rspn_id;
1442 break;
dea3101e 1443 case SLI_CTNS_RSNN_NN:
7ee5d43e 1444 vport->ct_flags &= ~FC_CT_RSNN_NN;
dea3101e 1445 CtReq->CommandResponse.bits.CmdRsp =
76b2c34a 1446 cpu_to_be16(SLI_CTNS_RSNN_NN);
2e0fef85 1447 memcpy(CtReq->un.rsnn.wwnn, &vport->fc_nodename,
4258e98e 1448 sizeof(struct lpfc_name));
92d7f7b0
JS
1449 size = sizeof(CtReq->un.rsnn.symbname);
1450 CtReq->un.rsnn.len =
1451 lpfc_vport_symbolic_node_name(vport,
1452 CtReq->un.rsnn.symbname, size);
dea3101e
JB
1453 cmpl = lpfc_cmpl_ct_cmd_rsnn_nn;
1454 break;
7ee5d43e
JS
1455 case SLI_CTNS_DA_ID:
1456 /* Implement DA_ID Nameserver request */
1457 CtReq->CommandResponse.bits.CmdRsp =
76b2c34a 1458 cpu_to_be16(SLI_CTNS_DA_ID);
09372820 1459 CtReq->un.da_id.port_id = cpu_to_be32(vport->fc_myDID);
7ee5d43e
JS
1460 cmpl = lpfc_cmpl_ct_cmd_da_id;
1461 break;
92d7f7b0 1462 case SLI_CTNS_RFF_ID:
7ee5d43e 1463 vport->ct_flags &= ~FC_CT_RFF_ID;
92d7f7b0 1464 CtReq->CommandResponse.bits.CmdRsp =
76b2c34a 1465 cpu_to_be16(SLI_CTNS_RFF_ID);
a419aef8 1466 CtReq->un.rff.PortId = cpu_to_be32(vport->fc_myDID);
92d7f7b0 1467 CtReq->un.rff.fbits = FC4_FEATURE_INIT;
a0f2d3ef
JS
1468
1469 /* The driver always supports FC_TYPE_FCP. However, the
1470 * caller can specify NVME (type x28) as well. But only
1471 * these that FC4 type is supported.
1472 */
1473 if (((phba->cfg_enable_fc4_type == LPFC_ENABLE_BOTH) ||
1474 (phba->cfg_enable_fc4_type == LPFC_ENABLE_NVME)) &&
1475 (context == FC_TYPE_NVME)) {
8c258641
JS
1476 if ((vport == phba->pport) && phba->nvmet_support) {
1477 CtReq->un.rff.fbits = (FC4_FEATURE_TARGET |
1478 FC4_FEATURE_NVME_DISC);
d613b6a7 1479 lpfc_nvmet_update_targetport(phba);
8c258641
JS
1480 } else {
1481 lpfc_nvme_update_localport(vport);
1482 }
a0f2d3ef
JS
1483 CtReq->un.rff.type_code = context;
1484
1485 } else if (((phba->cfg_enable_fc4_type == LPFC_ENABLE_BOTH) ||
1486 (phba->cfg_enable_fc4_type == LPFC_ENABLE_FCP)) &&
1487 (context == FC_TYPE_FCP))
1488 CtReq->un.rff.type_code = context;
1489
1490 else
1491 goto ns_cmd_free_bmpvirt;
1492
92d7f7b0
JS
1493 cmpl = lpfc_cmpl_ct_cmd_rff_id;
1494 break;
dea3101e 1495 }
e47c9093
JS
1496 /* The lpfc_ct_cmd/lpfc_get_req shall increment ndlp reference count
1497 * to hold ndlp reference for the corresponding callback function.
1498 */
858c9f6c 1499 if (!lpfc_ct_cmd(vport, mp, bmp, ndlp, cmpl, rsp_size, retry)) {
dea3101e 1500 /* On success, The cmpl function will free the buffers */
858c9f6c
JS
1501 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_CT,
1502 "Issue CT cmd: cmd:x%x did:x%x",
1503 cmdcode, ndlp->nlp_DID, 0);
dea3101e 1504 return 0;
858c9f6c 1505 }
858c9f6c 1506 rc=6;
e47c9093
JS
1507
1508 /* Decrement ndlp reference count to release ndlp reference held
1509 * for the failed command's callback function.
1510 */
51ef4c26 1511 lpfc_nlp_put(ndlp);
e47c9093 1512
a0f2d3ef 1513ns_cmd_free_bmpvirt:
dea3101e
JB
1514 lpfc_mbuf_free(phba, bmp->virt, bmp->phys);
1515ns_cmd_free_bmp:
1516 kfree(bmp);
1517ns_cmd_free_mpvirt:
1518 lpfc_mbuf_free(phba, mp->virt, mp->phys);
1519ns_cmd_free_mp:
1520 kfree(mp);
1521ns_cmd_exit:
e8b62011
JS
1522 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
1523 "0266 Issue NameServer Req x%x err %d Data: x%x x%x\n",
1524 cmdcode, rc, vport->fc_flag, vport->fc_rscn_id_cnt);
dea3101e
JB
1525 return 1;
1526}
1527
4258e98e
JS
1528/**
1529 * lpfc_cmpl_ct_disc_fdmi - Handle a discovery FDMI completion
1530 * @phba: Pointer to HBA context object.
1531 * @cmdiocb: Pointer to the command IOCBQ.
1532 * @rspiocb: Pointer to the response IOCBQ.
1533 *
1534 * This function to handle the completion of a driver initiated FDMI
1535 * CT command issued during discovery.
1536 */
dea3101e 1537static void
4258e98e
JS
1538lpfc_cmpl_ct_disc_fdmi(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1539 struct lpfc_iocbq *rspiocb)
dea3101e 1540{
4258e98e 1541 struct lpfc_vport *vport = cmdiocb->vport;
dea3101e
JB
1542 struct lpfc_dmabuf *inp = cmdiocb->context1;
1543 struct lpfc_dmabuf *outp = cmdiocb->context2;
dea3101e 1544 struct lpfc_sli_ct_request *CTcmd = inp->virt;
4258e98e 1545 struct lpfc_sli_ct_request *CTrsp = outp->virt;
dea3101e
JB
1546 uint16_t fdmi_cmd = CTcmd->CommandResponse.bits.CmdRsp;
1547 uint16_t fdmi_rsp = CTrsp->CommandResponse.bits.CmdRsp;
858c9f6c 1548 IOCB_t *irsp = &rspiocb->iocb;
4258e98e
JS
1549 struct lpfc_nodelist *ndlp;
1550 uint32_t latt, cmd, err;
858c9f6c
JS
1551
1552 latt = lpfc_els_chk_latt(vport);
858c9f6c
JS
1553 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_CT,
1554 "FDMI cmpl: status:x%x/x%x latt:%d",
1555 irsp->ulpStatus, irsp->un.ulpWord[4], latt);
1556
1557 if (latt || irsp->ulpStatus) {
4258e98e
JS
1558
1559 /* Look for a retryable error */
1560 if (irsp->ulpStatus == IOSTAT_LOCAL_REJECT) {
1561 switch ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK)) {
1562 case IOERR_SLI_ABORTED:
1563 case IOERR_ABORT_IN_PROGRESS:
1564 case IOERR_SEQUENCE_TIMEOUT:
1565 case IOERR_ILLEGAL_FRAME:
1566 case IOERR_NO_RESOURCES:
1567 case IOERR_ILLEGAL_COMMAND:
1568 cmdiocb->retry++;
1569 if (cmdiocb->retry >= LPFC_FDMI_MAX_RETRY)
1570 break;
1571
1572 /* Retry the same FDMI command */
1573 err = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING,
1574 cmdiocb, 0);
1575 if (err == IOCB_ERROR)
1576 break;
1577 return;
1578 default:
1579 break;
1580 }
1581 }
1582
e8b62011
JS
1583 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
1584 "0229 FDMI cmd %04x failed, latt = %d "
1585 "ulpStatus: x%x, rid x%x\n",
1586 be16_to_cpu(fdmi_cmd), latt, irsp->ulpStatus,
1587 irsp->un.ulpWord[4]);
858c9f6c 1588 }
4258e98e 1589 lpfc_ct_free_iocb(phba, cmdiocb);
dea3101e 1590
2e0fef85 1591 ndlp = lpfc_findnode_did(vport, FDMI_DID);
e47c9093 1592 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
4258e98e 1593 return;
e47c9093 1594
4258e98e
JS
1595 /* Check for a CT LS_RJT response */
1596 cmd = be16_to_cpu(fdmi_cmd);
76b2c34a 1597 if (fdmi_rsp == cpu_to_be16(SLI_CT_RESPONSE_FS_RJT)) {
dea3101e 1598 /* FDMI rsp failed */
e8b62011 1599 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4258e98e
JS
1600 "0220 FDMI cmd failed FS_RJT Data: x%x", cmd);
1601
1602 /* Should we fallback to FDMI-2 / FDMI-1 ? */
1603 switch (cmd) {
1604 case SLI_MGMT_RHBA:
1605 if (vport->fdmi_hba_mask == LPFC_FDMI2_HBA_ATTR) {
1606 /* Fallback to FDMI-1 */
1607 vport->fdmi_hba_mask = LPFC_FDMI1_HBA_ATTR;
1608 vport->fdmi_port_mask = LPFC_FDMI1_PORT_ATTR;
1609 /* Start over */
1610 lpfc_fdmi_cmd(vport, ndlp, SLI_MGMT_DHBA, 0);
1611 }
1612 return;
1613
1614 case SLI_MGMT_RPRT:
1615 if (vport->fdmi_port_mask == LPFC_FDMI2_PORT_ATTR) {
1616 /* Fallback to FDMI-1 */
1617 vport->fdmi_port_mask = LPFC_FDMI1_PORT_ATTR;
1618 /* Start over */
1619 lpfc_fdmi_cmd(vport, ndlp, cmd, 0);
1620 }
1621 if (vport->fdmi_port_mask == LPFC_FDMI2_SMART_ATTR) {
1622 vport->fdmi_port_mask = LPFC_FDMI2_PORT_ATTR;
1623 /* Retry the same command */
1624 lpfc_fdmi_cmd(vport, ndlp, cmd, 0);
1625 }
1626 return;
1627
1628 case SLI_MGMT_RPA:
1629 if (vport->fdmi_port_mask == LPFC_FDMI2_PORT_ATTR) {
1630 /* Fallback to FDMI-1 */
1631 vport->fdmi_hba_mask = LPFC_FDMI1_HBA_ATTR;
1632 vport->fdmi_port_mask = LPFC_FDMI1_PORT_ATTR;
1633 /* Start over */
1634 lpfc_fdmi_cmd(vport, ndlp, SLI_MGMT_DHBA, 0);
1635 }
1636 if (vport->fdmi_port_mask == LPFC_FDMI2_SMART_ATTR) {
1637 vport->fdmi_port_mask = LPFC_FDMI2_PORT_ATTR;
1638 /* Retry the same command */
1639 lpfc_fdmi_cmd(vport, ndlp, cmd, 0);
1640 }
1641 return;
1642 }
dea3101e
JB
1643 }
1644
4258e98e
JS
1645 /*
1646 * On success, need to cycle thru FDMI registration for discovery
1647 * DHBA -> DPRT -> RHBA -> RPA (physical port)
1648 * DPRT -> RPRT (vports)
1649 */
1650 switch (cmd) {
1651 case SLI_MGMT_RHBA:
1652 lpfc_fdmi_cmd(vport, ndlp, SLI_MGMT_RPA, 0);
1653 break;
1654
1655 case SLI_MGMT_DHBA:
1656 lpfc_fdmi_cmd(vport, ndlp, SLI_MGMT_DPRT, 0);
1657 break;
1658
1659 case SLI_MGMT_DPRT:
1660 if (vport->port_type == LPFC_PHYSICAL_PORT)
1661 lpfc_fdmi_cmd(vport, ndlp, SLI_MGMT_RHBA, 0);
1662 else
1663 lpfc_fdmi_cmd(vport, ndlp, SLI_MGMT_RPRT, 0);
1664 break;
1665 }
1666 return;
76b2c34a
JS
1667}
1668
4258e98e
JS
1669
1670/**
1671 * lpfc_fdmi_num_disc_check - Check how many mapped NPorts we are connected to
1672 * @vport: pointer to a host virtual N_Port data structure.
1673 *
1674 * Called from hbeat timeout routine to check if the number of discovered
1675 * ports has changed. If so, re-register thar port Attribute.
1676 */
1677void
1678lpfc_fdmi_num_disc_check(struct lpfc_vport *vport)
76b2c34a 1679{
4258e98e 1680 struct lpfc_hba *phba = vport->phba;
76b2c34a 1681 struct lpfc_nodelist *ndlp;
4258e98e 1682 uint16_t cnt;
76b2c34a 1683
4258e98e
JS
1684 if (!lpfc_is_link_up(phba))
1685 return;
1686
a03a4219
JS
1687 /* Must be connected to a Fabric */
1688 if (!(vport->fc_flag & FC_FABRIC))
1689 return;
1690
4258e98e
JS
1691 if (!(vport->fdmi_port_mask & LPFC_FDMI_PORT_ATTR_num_disc))
1692 return;
1693
1694 cnt = lpfc_find_map_node(vport);
1695 if (cnt == vport->fdmi_num_disc)
1696 return;
76b2c34a
JS
1697
1698 ndlp = lpfc_findnode_did(vport, FDMI_DID);
1699 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
1700 return;
1701
4258e98e
JS
1702 if (vport->port_type == LPFC_PHYSICAL_PORT) {
1703 lpfc_fdmi_cmd(vport, ndlp, SLI_MGMT_RPA,
1704 LPFC_FDMI_PORT_ATTR_num_disc);
1705 } else {
1706 lpfc_fdmi_cmd(vport, ndlp, SLI_MGMT_RPRT,
1707 LPFC_FDMI_PORT_ATTR_num_disc);
1708 }
1709}
dea3101e 1710
4258e98e 1711/* Routines for all individual HBA attributes */
bd4b3e5c 1712static int
4258e98e
JS
1713lpfc_fdmi_hba_attr_wwnn(struct lpfc_vport *vport, struct lpfc_fdmi_attr_def *ad)
1714{
1715 struct lpfc_fdmi_attr_entry *ae;
1716 uint32_t size;
dea3101e 1717
4258e98e
JS
1718 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1719 memset(ae, 0, sizeof(struct lpfc_name));
1720
1721 memcpy(&ae->un.AttrWWN, &vport->fc_sparam.nodeName,
1722 sizeof(struct lpfc_name));
1723 size = FOURBYTES + sizeof(struct lpfc_name);
1724 ad->AttrLen = cpu_to_be16(size);
1725 ad->AttrType = cpu_to_be16(RHBA_NODENAME);
1726 return size;
1727}
bd4b3e5c 1728static int
4258e98e
JS
1729lpfc_fdmi_hba_attr_manufacturer(struct lpfc_vport *vport,
1730 struct lpfc_fdmi_attr_def *ad)
1731{
1732 struct lpfc_fdmi_attr_entry *ae;
1733 uint32_t len, size;
1734
1735 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1736 memset(ae, 0, 256);
1737
1738 strncpy(ae->un.AttrString,
1739 "Emulex Corporation",
1740 sizeof(ae->un.AttrString));
1741 len = strnlen(ae->un.AttrString,
1742 sizeof(ae->un.AttrString));
1743 len += (len & 3) ? (4 - (len & 3)) : 4;
1744 size = FOURBYTES + len;
1745 ad->AttrLen = cpu_to_be16(size);
1746 ad->AttrType = cpu_to_be16(RHBA_MANUFACTURER);
1747 return size;
1748}
1749
bd4b3e5c 1750static int
4258e98e
JS
1751lpfc_fdmi_hba_attr_sn(struct lpfc_vport *vport, struct lpfc_fdmi_attr_def *ad)
1752{
1753 struct lpfc_hba *phba = vport->phba;
1754 struct lpfc_fdmi_attr_entry *ae;
1755 uint32_t len, size;
1756
1757 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1758 memset(ae, 0, 256);
1759
1760 strncpy(ae->un.AttrString, phba->SerialNumber,
1761 sizeof(ae->un.AttrString));
1762 len = strnlen(ae->un.AttrString,
1763 sizeof(ae->un.AttrString));
1764 len += (len & 3) ? (4 - (len & 3)) : 4;
1765 size = FOURBYTES + len;
1766 ad->AttrLen = cpu_to_be16(size);
1767 ad->AttrType = cpu_to_be16(RHBA_SERIAL_NUMBER);
1768 return size;
1769}
1770
bd4b3e5c 1771static int
4258e98e
JS
1772lpfc_fdmi_hba_attr_model(struct lpfc_vport *vport,
1773 struct lpfc_fdmi_attr_def *ad)
1774{
1775 struct lpfc_hba *phba = vport->phba;
1776 struct lpfc_fdmi_attr_entry *ae;
1777 uint32_t len, size;
1778
1779 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1780 memset(ae, 0, 256);
1781
1782 strncpy(ae->un.AttrString, phba->ModelName,
1783 sizeof(ae->un.AttrString));
1784 len = strnlen(ae->un.AttrString, sizeof(ae->un.AttrString));
1785 len += (len & 3) ? (4 - (len & 3)) : 4;
1786 size = FOURBYTES + len;
1787 ad->AttrLen = cpu_to_be16(size);
1788 ad->AttrType = cpu_to_be16(RHBA_MODEL);
1789 return size;
1790}
1791
bd4b3e5c 1792static int
4258e98e
JS
1793lpfc_fdmi_hba_attr_description(struct lpfc_vport *vport,
1794 struct lpfc_fdmi_attr_def *ad)
1795{
1796 struct lpfc_hba *phba = vport->phba;
1797 struct lpfc_fdmi_attr_entry *ae;
1798 uint32_t len, size;
1799
1800 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1801 memset(ae, 0, 256);
1802
1803 strncpy(ae->un.AttrString, phba->ModelDesc,
1804 sizeof(ae->un.AttrString));
1805 len = strnlen(ae->un.AttrString,
1806 sizeof(ae->un.AttrString));
1807 len += (len & 3) ? (4 - (len & 3)) : 4;
1808 size = FOURBYTES + len;
1809 ad->AttrLen = cpu_to_be16(size);
1810 ad->AttrType = cpu_to_be16(RHBA_MODEL_DESCRIPTION);
1811 return size;
1812}
1813
bd4b3e5c 1814static int
4258e98e
JS
1815lpfc_fdmi_hba_attr_hdw_ver(struct lpfc_vport *vport,
1816 struct lpfc_fdmi_attr_def *ad)
1817{
1818 struct lpfc_hba *phba = vport->phba;
1819 lpfc_vpd_t *vp = &phba->vpd;
1820 struct lpfc_fdmi_attr_entry *ae;
1821 uint32_t i, j, incr, size;
1822
1823 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1824 memset(ae, 0, 256);
1825
1826 /* Convert JEDEC ID to ascii for hardware version */
1827 incr = vp->rev.biuRev;
1828 for (i = 0; i < 8; i++) {
1829 j = (incr & 0xf);
1830 if (j <= 9)
1831 ae->un.AttrString[7 - i] =
1832 (char)((uint8_t) 0x30 +
1833 (uint8_t) j);
1834 else
1835 ae->un.AttrString[7 - i] =
1836 (char)((uint8_t) 0x61 +
1837 (uint8_t) (j - 10));
1838 incr = (incr >> 4);
1839 }
1840 size = FOURBYTES + 8;
1841 ad->AttrLen = cpu_to_be16(size);
1842 ad->AttrType = cpu_to_be16(RHBA_HARDWARE_VERSION);
1843 return size;
1844}
1845
bd4b3e5c 1846static int
4258e98e
JS
1847lpfc_fdmi_hba_attr_drvr_ver(struct lpfc_vport *vport,
1848 struct lpfc_fdmi_attr_def *ad)
1849{
1850 struct lpfc_fdmi_attr_entry *ae;
1851 uint32_t len, size;
1852
1853 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1854 memset(ae, 0, 256);
1855
1856 strncpy(ae->un.AttrString, lpfc_release_version,
1857 sizeof(ae->un.AttrString));
1858 len = strnlen(ae->un.AttrString,
1859 sizeof(ae->un.AttrString));
1860 len += (len & 3) ? (4 - (len & 3)) : 4;
1861 size = FOURBYTES + len;
1862 ad->AttrLen = cpu_to_be16(size);
1863 ad->AttrType = cpu_to_be16(RHBA_DRIVER_VERSION);
1864 return size;
1865}
1866
bd4b3e5c 1867static int
4258e98e
JS
1868lpfc_fdmi_hba_attr_rom_ver(struct lpfc_vport *vport,
1869 struct lpfc_fdmi_attr_def *ad)
1870{
1871 struct lpfc_hba *phba = vport->phba;
1872 struct lpfc_fdmi_attr_entry *ae;
1873 uint32_t len, size;
1874
1875 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1876 memset(ae, 0, 256);
1877
1878 if (phba->sli_rev == LPFC_SLI_REV4)
1879 lpfc_decode_firmware_rev(phba, ae->un.AttrString, 1);
1880 else
1881 strncpy(ae->un.AttrString, phba->OptionROMVersion,
1882 sizeof(ae->un.AttrString));
1883 len = strnlen(ae->un.AttrString,
1884 sizeof(ae->un.AttrString));
1885 len += (len & 3) ? (4 - (len & 3)) : 4;
1886 size = FOURBYTES + len;
1887 ad->AttrLen = cpu_to_be16(size);
1888 ad->AttrType = cpu_to_be16(RHBA_OPTION_ROM_VERSION);
1889 return size;
1890}
1891
bd4b3e5c 1892static int
4258e98e
JS
1893lpfc_fdmi_hba_attr_fmw_ver(struct lpfc_vport *vport,
1894 struct lpfc_fdmi_attr_def *ad)
1895{
1896 struct lpfc_hba *phba = vport->phba;
1897 struct lpfc_fdmi_attr_entry *ae;
1898 uint32_t len, size;
1899
1900 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1901 memset(ae, 0, 256);
1902
1903 lpfc_decode_firmware_rev(phba, ae->un.AttrString, 1);
1904 len = strnlen(ae->un.AttrString,
1905 sizeof(ae->un.AttrString));
1906 len += (len & 3) ? (4 - (len & 3)) : 4;
1907 size = FOURBYTES + len;
1908 ad->AttrLen = cpu_to_be16(size);
1909 ad->AttrType = cpu_to_be16(RHBA_FIRMWARE_VERSION);
1910 return size;
1911}
1912
bd4b3e5c 1913static int
4258e98e
JS
1914lpfc_fdmi_hba_attr_os_ver(struct lpfc_vport *vport,
1915 struct lpfc_fdmi_attr_def *ad)
1916{
1917 struct lpfc_fdmi_attr_entry *ae;
1918 uint32_t len, size;
1919
1920 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1921 memset(ae, 0, 256);
1922
1923 snprintf(ae->un.AttrString, sizeof(ae->un.AttrString), "%s %s %s",
1924 init_utsname()->sysname,
1925 init_utsname()->release,
1926 init_utsname()->version);
1927
1928 len = strnlen(ae->un.AttrString, sizeof(ae->un.AttrString));
1929 len += (len & 3) ? (4 - (len & 3)) : 4;
1930 size = FOURBYTES + len;
1931 ad->AttrLen = cpu_to_be16(size);
1932 ad->AttrType = cpu_to_be16(RHBA_OS_NAME_VERSION);
1933 return size;
1934}
1935
bd4b3e5c 1936static int
4258e98e
JS
1937lpfc_fdmi_hba_attr_ct_len(struct lpfc_vport *vport,
1938 struct lpfc_fdmi_attr_def *ad)
1939{
1940 struct lpfc_fdmi_attr_entry *ae;
1941 uint32_t size;
1942
1943 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1944
1945 ae->un.AttrInt = cpu_to_be32(LPFC_MAX_CT_SIZE);
1946 size = FOURBYTES + sizeof(uint32_t);
1947 ad->AttrLen = cpu_to_be16(size);
1948 ad->AttrType = cpu_to_be16(RHBA_MAX_CT_PAYLOAD_LEN);
1949 return size;
1950}
1951
bd4b3e5c 1952static int
4258e98e
JS
1953lpfc_fdmi_hba_attr_symbolic_name(struct lpfc_vport *vport,
1954 struct lpfc_fdmi_attr_def *ad)
1955{
1956 struct lpfc_fdmi_attr_entry *ae;
1957 uint32_t len, size;
1958
1959 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1960 memset(ae, 0, 256);
1961
1962 len = lpfc_vport_symbolic_node_name(vport,
1963 ae->un.AttrString, 256);
1964 len += (len & 3) ? (4 - (len & 3)) : 4;
1965 size = FOURBYTES + len;
1966 ad->AttrLen = cpu_to_be16(size);
1967 ad->AttrType = cpu_to_be16(RHBA_SYM_NODENAME);
1968 return size;
1969}
1970
bd4b3e5c 1971static int
4258e98e
JS
1972lpfc_fdmi_hba_attr_vendor_info(struct lpfc_vport *vport,
1973 struct lpfc_fdmi_attr_def *ad)
1974{
1975 struct lpfc_fdmi_attr_entry *ae;
1976 uint32_t size;
1977
1978 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1979
1980 /* Nothing is defined for this currently */
1981 ae->un.AttrInt = cpu_to_be32(0);
1982 size = FOURBYTES + sizeof(uint32_t);
1983 ad->AttrLen = cpu_to_be16(size);
1984 ad->AttrType = cpu_to_be16(RHBA_VENDOR_INFO);
1985 return size;
1986}
1987
bd4b3e5c 1988static int
4258e98e
JS
1989lpfc_fdmi_hba_attr_num_ports(struct lpfc_vport *vport,
1990 struct lpfc_fdmi_attr_def *ad)
1991{
1992 struct lpfc_fdmi_attr_entry *ae;
1993 uint32_t size;
1994
1995 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1996
1997 /* Each driver instance corresponds to a single port */
1998 ae->un.AttrInt = cpu_to_be32(1);
1999 size = FOURBYTES + sizeof(uint32_t);
2000 ad->AttrLen = cpu_to_be16(size);
2001 ad->AttrType = cpu_to_be16(RHBA_NUM_PORTS);
2002 return size;
2003}
2004
bd4b3e5c 2005static int
4258e98e
JS
2006lpfc_fdmi_hba_attr_fabric_wwnn(struct lpfc_vport *vport,
2007 struct lpfc_fdmi_attr_def *ad)
2008{
2009 struct lpfc_fdmi_attr_entry *ae;
2010 uint32_t size;
2011
2012 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2013 memset(ae, 0, sizeof(struct lpfc_name));
2014
2015 memcpy(&ae->un.AttrWWN, &vport->fabric_nodename,
2016 sizeof(struct lpfc_name));
2017 size = FOURBYTES + sizeof(struct lpfc_name);
2018 ad->AttrLen = cpu_to_be16(size);
2019 ad->AttrType = cpu_to_be16(RHBA_FABRIC_WWNN);
2020 return size;
2021}
2022
bd4b3e5c 2023static int
4258e98e
JS
2024lpfc_fdmi_hba_attr_bios_ver(struct lpfc_vport *vport,
2025 struct lpfc_fdmi_attr_def *ad)
2026{
2027 struct lpfc_hba *phba = vport->phba;
2028 struct lpfc_fdmi_attr_entry *ae;
2029 uint32_t len, size;
2030
2031 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2032 memset(ae, 0, 256);
2033
2034 lpfc_decode_firmware_rev(phba, ae->un.AttrString, 1);
2035 len = strnlen(ae->un.AttrString,
2036 sizeof(ae->un.AttrString));
2037 len += (len & 3) ? (4 - (len & 3)) : 4;
2038 size = FOURBYTES + len;
2039 ad->AttrLen = cpu_to_be16(size);
2040 ad->AttrType = cpu_to_be16(RHBA_BIOS_VERSION);
2041 return size;
2042}
2043
bd4b3e5c 2044static int
4258e98e
JS
2045lpfc_fdmi_hba_attr_bios_state(struct lpfc_vport *vport,
2046 struct lpfc_fdmi_attr_def *ad)
2047{
2048 struct lpfc_fdmi_attr_entry *ae;
2049 uint32_t size;
2050
2051 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2052
2053 /* Driver doesn't have access to this information */
2054 ae->un.AttrInt = cpu_to_be32(0);
2055 size = FOURBYTES + sizeof(uint32_t);
2056 ad->AttrLen = cpu_to_be16(size);
2057 ad->AttrType = cpu_to_be16(RHBA_BIOS_STATE);
2058 return size;
2059}
2060
bd4b3e5c 2061static int
4258e98e
JS
2062lpfc_fdmi_hba_attr_vendor_id(struct lpfc_vport *vport,
2063 struct lpfc_fdmi_attr_def *ad)
2064{
2065 struct lpfc_fdmi_attr_entry *ae;
2066 uint32_t len, size;
2067
2068 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2069 memset(ae, 0, 256);
2070
2071 strncpy(ae->un.AttrString, "EMULEX",
2072 sizeof(ae->un.AttrString));
2073 len = strnlen(ae->un.AttrString,
2074 sizeof(ae->un.AttrString));
2075 len += (len & 3) ? (4 - (len & 3)) : 4;
2076 size = FOURBYTES + len;
2077 ad->AttrLen = cpu_to_be16(size);
2078 ad->AttrType = cpu_to_be16(RHBA_VENDOR_ID);
2079 return size;
2080}
2081
2082/* Routines for all individual PORT attributes */
bd4b3e5c 2083static int
4258e98e
JS
2084lpfc_fdmi_port_attr_fc4type(struct lpfc_vport *vport,
2085 struct lpfc_fdmi_attr_def *ad)
2086{
2087 struct lpfc_fdmi_attr_entry *ae;
2088 uint32_t size;
2089
2090 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2091 memset(ae, 0, 32);
2092
2093 ae->un.AttrTypes[3] = 0x02; /* Type 1 - ELS */
2094 ae->un.AttrTypes[2] = 0x01; /* Type 8 - FCP */
82820f0c 2095 ae->un.AttrTypes[6] = 0x01; /* Type 40 - NVME */
4258e98e
JS
2096 ae->un.AttrTypes[7] = 0x01; /* Type 32 - CT */
2097 size = FOURBYTES + 32;
2098 ad->AttrLen = cpu_to_be16(size);
2099 ad->AttrType = cpu_to_be16(RPRT_SUPPORTED_FC4_TYPES);
2100 return size;
2101}
2102
bd4b3e5c 2103static int
4258e98e
JS
2104lpfc_fdmi_port_attr_support_speed(struct lpfc_vport *vport,
2105 struct lpfc_fdmi_attr_def *ad)
2106{
2107 struct lpfc_hba *phba = vport->phba;
2108 struct lpfc_fdmi_attr_entry *ae;
2109 uint32_t size;
2110
2111 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2112
2113 ae->un.AttrInt = 0;
a085e87c
JS
2114 if (!(phba->hba_flag & HBA_FCOE_MODE)) {
2115 if (phba->lmt & LMT_32Gb)
2116 ae->un.AttrInt |= HBA_PORTSPEED_32GFC;
2117 if (phba->lmt & LMT_16Gb)
2118 ae->un.AttrInt |= HBA_PORTSPEED_16GFC;
2119 if (phba->lmt & LMT_10Gb)
2120 ae->un.AttrInt |= HBA_PORTSPEED_10GFC;
2121 if (phba->lmt & LMT_8Gb)
2122 ae->un.AttrInt |= HBA_PORTSPEED_8GFC;
2123 if (phba->lmt & LMT_4Gb)
2124 ae->un.AttrInt |= HBA_PORTSPEED_4GFC;
2125 if (phba->lmt & LMT_2Gb)
2126 ae->un.AttrInt |= HBA_PORTSPEED_2GFC;
2127 if (phba->lmt & LMT_1Gb)
2128 ae->un.AttrInt |= HBA_PORTSPEED_1GFC;
2129 } else {
2130 /* FCoE links support only one speed */
2131 switch (phba->fc_linkspeed) {
2132 case LPFC_ASYNC_LINK_SPEED_10GBPS:
2133 ae->un.AttrInt = HBA_PORTSPEED_10GE;
2134 break;
2135 case LPFC_ASYNC_LINK_SPEED_25GBPS:
2136 ae->un.AttrInt = HBA_PORTSPEED_25GE;
2137 break;
2138 case LPFC_ASYNC_LINK_SPEED_40GBPS:
2139 ae->un.AttrInt = HBA_PORTSPEED_40GE;
2140 break;
2141 case LPFC_ASYNC_LINK_SPEED_100GBPS:
2142 ae->un.AttrInt = HBA_PORTSPEED_100GE;
2143 break;
2144 }
2145 }
4258e98e
JS
2146 ae->un.AttrInt = cpu_to_be32(ae->un.AttrInt);
2147 size = FOURBYTES + sizeof(uint32_t);
2148 ad->AttrLen = cpu_to_be16(size);
2149 ad->AttrType = cpu_to_be16(RPRT_SUPPORTED_SPEED);
2150 return size;
2151}
2152
bd4b3e5c 2153static int
4258e98e
JS
2154lpfc_fdmi_port_attr_speed(struct lpfc_vport *vport,
2155 struct lpfc_fdmi_attr_def *ad)
2156{
2157 struct lpfc_hba *phba = vport->phba;
2158 struct lpfc_fdmi_attr_entry *ae;
2159 uint32_t size;
2160
2161 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2162
a085e87c
JS
2163 if (!(phba->hba_flag & HBA_FCOE_MODE)) {
2164 switch (phba->fc_linkspeed) {
2165 case LPFC_LINK_SPEED_1GHZ:
2166 ae->un.AttrInt = HBA_PORTSPEED_1GFC;
2167 break;
2168 case LPFC_LINK_SPEED_2GHZ:
2169 ae->un.AttrInt = HBA_PORTSPEED_2GFC;
2170 break;
2171 case LPFC_LINK_SPEED_4GHZ:
2172 ae->un.AttrInt = HBA_PORTSPEED_4GFC;
2173 break;
2174 case LPFC_LINK_SPEED_8GHZ:
2175 ae->un.AttrInt = HBA_PORTSPEED_8GFC;
2176 break;
2177 case LPFC_LINK_SPEED_10GHZ:
2178 ae->un.AttrInt = HBA_PORTSPEED_10GFC;
2179 break;
2180 case LPFC_LINK_SPEED_16GHZ:
2181 ae->un.AttrInt = HBA_PORTSPEED_16GFC;
2182 break;
2183 case LPFC_LINK_SPEED_32GHZ:
2184 ae->un.AttrInt = HBA_PORTSPEED_32GFC;
2185 break;
2186 default:
2187 ae->un.AttrInt = HBA_PORTSPEED_UNKNOWN;
2188 break;
2189 }
2190 } else {
2191 switch (phba->fc_linkspeed) {
2192 case LPFC_ASYNC_LINK_SPEED_10GBPS:
2193 ae->un.AttrInt = HBA_PORTSPEED_10GE;
2194 break;
2195 case LPFC_ASYNC_LINK_SPEED_25GBPS:
2196 ae->un.AttrInt = HBA_PORTSPEED_25GE;
2197 break;
2198 case LPFC_ASYNC_LINK_SPEED_40GBPS:
2199 ae->un.AttrInt = HBA_PORTSPEED_40GE;
2200 break;
2201 case LPFC_ASYNC_LINK_SPEED_100GBPS:
2202 ae->un.AttrInt = HBA_PORTSPEED_100GE;
2203 break;
2204 default:
2205 ae->un.AttrInt = HBA_PORTSPEED_UNKNOWN;
2206 break;
2207 }
dea3101e 2208 }
a085e87c 2209
4258e98e
JS
2210 ae->un.AttrInt = cpu_to_be32(ae->un.AttrInt);
2211 size = FOURBYTES + sizeof(uint32_t);
2212 ad->AttrLen = cpu_to_be16(size);
2213 ad->AttrType = cpu_to_be16(RPRT_PORT_SPEED);
2214 return size;
2215}
2216
bd4b3e5c 2217static int
4258e98e
JS
2218lpfc_fdmi_port_attr_max_frame(struct lpfc_vport *vport,
2219 struct lpfc_fdmi_attr_def *ad)
2220{
2221 struct serv_parm *hsp;
2222 struct lpfc_fdmi_attr_entry *ae;
2223 uint32_t size;
2224
2225 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2226
2227 hsp = (struct serv_parm *)&vport->fc_sparam;
2228 ae->un.AttrInt = (((uint32_t) hsp->cmn.bbRcvSizeMsb) << 8) |
2229 (uint32_t) hsp->cmn.bbRcvSizeLsb;
2230 ae->un.AttrInt = cpu_to_be32(ae->un.AttrInt);
2231 size = FOURBYTES + sizeof(uint32_t);
2232 ad->AttrLen = cpu_to_be16(size);
2233 ad->AttrType = cpu_to_be16(RPRT_MAX_FRAME_SIZE);
2234 return size;
2235}
2236
bd4b3e5c 2237static int
4258e98e
JS
2238lpfc_fdmi_port_attr_os_devname(struct lpfc_vport *vport,
2239 struct lpfc_fdmi_attr_def *ad)
2240{
2241 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2242 struct lpfc_fdmi_attr_entry *ae;
2243 uint32_t len, size;
2244
2245 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2246 memset(ae, 0, 256);
2247
2248 snprintf(ae->un.AttrString, sizeof(ae->un.AttrString),
2249 "/sys/class/scsi_host/host%d", shost->host_no);
2250 len = strnlen((char *)ae->un.AttrString,
2251 sizeof(ae->un.AttrString));
2252 len += (len & 3) ? (4 - (len & 3)) : 4;
2253 size = FOURBYTES + len;
2254 ad->AttrLen = cpu_to_be16(size);
2255 ad->AttrType = cpu_to_be16(RPRT_OS_DEVICE_NAME);
2256 return size;
2257}
2258
bd4b3e5c 2259static int
4258e98e
JS
2260lpfc_fdmi_port_attr_host_name(struct lpfc_vport *vport,
2261 struct lpfc_fdmi_attr_def *ad)
2262{
2263 struct lpfc_fdmi_attr_entry *ae;
2264 uint32_t len, size;
2265
2266 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2267 memset(ae, 0, 256);
2268
2269 snprintf(ae->un.AttrString, sizeof(ae->un.AttrString), "%s",
2270 init_utsname()->nodename);
2271
2272 len = strnlen(ae->un.AttrString, sizeof(ae->un.AttrString));
2273 len += (len & 3) ? (4 - (len & 3)) : 4;
2274 size = FOURBYTES + len;
2275 ad->AttrLen = cpu_to_be16(size);
2276 ad->AttrType = cpu_to_be16(RPRT_HOST_NAME);
2277 return size;
2278}
2279
bd4b3e5c 2280static int
4258e98e
JS
2281lpfc_fdmi_port_attr_wwnn(struct lpfc_vport *vport,
2282 struct lpfc_fdmi_attr_def *ad)
2283{
2284 struct lpfc_fdmi_attr_entry *ae;
2285 uint32_t size;
2286
2287 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2288 memset(ae, 0, sizeof(struct lpfc_name));
2289
2290 memcpy(&ae->un.AttrWWN, &vport->fc_sparam.nodeName,
2291 sizeof(struct lpfc_name));
2292 size = FOURBYTES + sizeof(struct lpfc_name);
2293 ad->AttrLen = cpu_to_be16(size);
2294 ad->AttrType = cpu_to_be16(RPRT_NODENAME);
2295 return size;
2296}
2297
bd4b3e5c 2298static int
4258e98e
JS
2299lpfc_fdmi_port_attr_wwpn(struct lpfc_vport *vport,
2300 struct lpfc_fdmi_attr_def *ad)
2301{
2302 struct lpfc_fdmi_attr_entry *ae;
2303 uint32_t size;
2304
2305 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2306 memset(ae, 0, sizeof(struct lpfc_name));
2307
2308 memcpy(&ae->un.AttrWWN, &vport->fc_sparam.portName,
2309 sizeof(struct lpfc_name));
2310 size = FOURBYTES + sizeof(struct lpfc_name);
2311 ad->AttrLen = cpu_to_be16(size);
2312 ad->AttrType = cpu_to_be16(RPRT_PORTNAME);
2313 return size;
2314}
2315
bd4b3e5c 2316static int
4258e98e
JS
2317lpfc_fdmi_port_attr_symbolic_name(struct lpfc_vport *vport,
2318 struct lpfc_fdmi_attr_def *ad)
2319{
2320 struct lpfc_fdmi_attr_entry *ae;
2321 uint32_t len, size;
2322
2323 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2324 memset(ae, 0, 256);
2325
2326 len = lpfc_vport_symbolic_port_name(vport, ae->un.AttrString, 256);
2327 len += (len & 3) ? (4 - (len & 3)) : 4;
2328 size = FOURBYTES + len;
2329 ad->AttrLen = cpu_to_be16(size);
2330 ad->AttrType = cpu_to_be16(RPRT_SYM_PORTNAME);
2331 return size;
2332}
2333
bd4b3e5c 2334static int
4258e98e
JS
2335lpfc_fdmi_port_attr_port_type(struct lpfc_vport *vport,
2336 struct lpfc_fdmi_attr_def *ad)
2337{
2338 struct lpfc_hba *phba = vport->phba;
2339 struct lpfc_fdmi_attr_entry *ae;
2340 uint32_t size;
2341
2342 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2343 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP)
2344 ae->un.AttrInt = cpu_to_be32(LPFC_FDMI_PORTTYPE_NLPORT);
2345 else
2346 ae->un.AttrInt = cpu_to_be32(LPFC_FDMI_PORTTYPE_NPORT);
2347 size = FOURBYTES + sizeof(uint32_t);
2348 ad->AttrLen = cpu_to_be16(size);
2349 ad->AttrType = cpu_to_be16(RPRT_PORT_TYPE);
2350 return size;
2351}
2352
bd4b3e5c 2353static int
4258e98e
JS
2354lpfc_fdmi_port_attr_class(struct lpfc_vport *vport,
2355 struct lpfc_fdmi_attr_def *ad)
2356{
2357 struct lpfc_fdmi_attr_entry *ae;
2358 uint32_t size;
2359
2360 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2361 ae->un.AttrInt = cpu_to_be32(FC_COS_CLASS2 | FC_COS_CLASS3);
2362 size = FOURBYTES + sizeof(uint32_t);
2363 ad->AttrLen = cpu_to_be16(size);
2364 ad->AttrType = cpu_to_be16(RPRT_SUPPORTED_CLASS);
2365 return size;
2366}
2367
bd4b3e5c 2368static int
4258e98e
JS
2369lpfc_fdmi_port_attr_fabric_wwpn(struct lpfc_vport *vport,
2370 struct lpfc_fdmi_attr_def *ad)
2371{
2372 struct lpfc_fdmi_attr_entry *ae;
2373 uint32_t size;
2374
2375 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2376 memset(ae, 0, sizeof(struct lpfc_name));
2377
2378 memcpy(&ae->un.AttrWWN, &vport->fabric_portname,
2379 sizeof(struct lpfc_name));
2380 size = FOURBYTES + sizeof(struct lpfc_name);
2381 ad->AttrLen = cpu_to_be16(size);
2382 ad->AttrType = cpu_to_be16(RPRT_FABRICNAME);
2383 return size;
2384}
2385
bd4b3e5c 2386static int
4258e98e
JS
2387lpfc_fdmi_port_attr_active_fc4type(struct lpfc_vport *vport,
2388 struct lpfc_fdmi_attr_def *ad)
2389{
2390 struct lpfc_fdmi_attr_entry *ae;
2391 uint32_t size;
2392
2393 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2394 memset(ae, 0, 32);
2395
2396 ae->un.AttrTypes[3] = 0x02; /* Type 1 - ELS */
2397 ae->un.AttrTypes[2] = 0x01; /* Type 8 - FCP */
2398 ae->un.AttrTypes[7] = 0x01; /* Type 32 - CT */
2399 size = FOURBYTES + 32;
2400 ad->AttrLen = cpu_to_be16(size);
2401 ad->AttrType = cpu_to_be16(RPRT_ACTIVE_FC4_TYPES);
2402 return size;
2403}
2404
bd4b3e5c 2405static int
4258e98e
JS
2406lpfc_fdmi_port_attr_port_state(struct lpfc_vport *vport,
2407 struct lpfc_fdmi_attr_def *ad)
2408{
2409 struct lpfc_fdmi_attr_entry *ae;
2410 uint32_t size;
2411
2412 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2413 /* Link Up - operational */
2414 ae->un.AttrInt = cpu_to_be32(LPFC_FDMI_PORTSTATE_ONLINE);
2415 size = FOURBYTES + sizeof(uint32_t);
2416 ad->AttrLen = cpu_to_be16(size);
2417 ad->AttrType = cpu_to_be16(RPRT_PORT_STATE);
2418 return size;
2419}
2420
bd4b3e5c 2421static int
4258e98e
JS
2422lpfc_fdmi_port_attr_num_disc(struct lpfc_vport *vport,
2423 struct lpfc_fdmi_attr_def *ad)
2424{
2425 struct lpfc_fdmi_attr_entry *ae;
2426 uint32_t size;
2427
2428 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2429 vport->fdmi_num_disc = lpfc_find_map_node(vport);
2430 ae->un.AttrInt = cpu_to_be32(vport->fdmi_num_disc);
2431 size = FOURBYTES + sizeof(uint32_t);
2432 ad->AttrLen = cpu_to_be16(size);
2433 ad->AttrType = cpu_to_be16(RPRT_DISC_PORT);
2434 return size;
2435}
2436
bd4b3e5c 2437static int
4258e98e
JS
2438lpfc_fdmi_port_attr_nportid(struct lpfc_vport *vport,
2439 struct lpfc_fdmi_attr_def *ad)
2440{
2441 struct lpfc_fdmi_attr_entry *ae;
2442 uint32_t size;
2443
2444 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2445 ae->un.AttrInt = cpu_to_be32(vport->fc_myDID);
2446 size = FOURBYTES + sizeof(uint32_t);
2447 ad->AttrLen = cpu_to_be16(size);
2448 ad->AttrType = cpu_to_be16(RPRT_PORT_ID);
2449 return size;
2450}
2451
bd4b3e5c 2452static int
4258e98e
JS
2453lpfc_fdmi_smart_attr_service(struct lpfc_vport *vport,
2454 struct lpfc_fdmi_attr_def *ad)
2455{
2456 struct lpfc_fdmi_attr_entry *ae;
2457 uint32_t len, size;
2458
2459 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2460 memset(ae, 0, 256);
2461
2462 strncpy(ae->un.AttrString, "Smart SAN Initiator",
2463 sizeof(ae->un.AttrString));
2464 len = strnlen(ae->un.AttrString,
2465 sizeof(ae->un.AttrString));
2466 len += (len & 3) ? (4 - (len & 3)) : 4;
2467 size = FOURBYTES + len;
2468 ad->AttrLen = cpu_to_be16(size);
2469 ad->AttrType = cpu_to_be16(RPRT_SMART_SERVICE);
2470 return size;
2471}
2472
bd4b3e5c 2473static int
4258e98e
JS
2474lpfc_fdmi_smart_attr_guid(struct lpfc_vport *vport,
2475 struct lpfc_fdmi_attr_def *ad)
2476{
2477 struct lpfc_fdmi_attr_entry *ae;
2478 uint32_t size;
2479
2480 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2481 memset(ae, 0, 256);
2482
2483 memcpy(&ae->un.AttrString, &vport->fc_sparam.nodeName,
2484 sizeof(struct lpfc_name));
2485 memcpy((((uint8_t *)&ae->un.AttrString) +
2486 sizeof(struct lpfc_name)),
2487 &vport->fc_sparam.portName, sizeof(struct lpfc_name));
2488 size = FOURBYTES + (2 * sizeof(struct lpfc_name));
2489 ad->AttrLen = cpu_to_be16(size);
2490 ad->AttrType = cpu_to_be16(RPRT_SMART_GUID);
2491 return size;
2492}
2493
bd4b3e5c 2494static int
4258e98e
JS
2495lpfc_fdmi_smart_attr_version(struct lpfc_vport *vport,
2496 struct lpfc_fdmi_attr_def *ad)
2497{
2498 struct lpfc_fdmi_attr_entry *ae;
2499 uint32_t len, size;
2500
2501 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2502 memset(ae, 0, 256);
2503
56204984 2504 strncpy(ae->un.AttrString, "Smart SAN Version 2.0",
4258e98e
JS
2505 sizeof(ae->un.AttrString));
2506 len = strnlen(ae->un.AttrString,
2507 sizeof(ae->un.AttrString));
2508 len += (len & 3) ? (4 - (len & 3)) : 4;
2509 size = FOURBYTES + len;
2510 ad->AttrLen = cpu_to_be16(size);
2511 ad->AttrType = cpu_to_be16(RPRT_SMART_VERSION);
2512 return size;
2513}
2514
bd4b3e5c 2515static int
4258e98e
JS
2516lpfc_fdmi_smart_attr_model(struct lpfc_vport *vport,
2517 struct lpfc_fdmi_attr_def *ad)
2518{
2519 struct lpfc_hba *phba = vport->phba;
2520 struct lpfc_fdmi_attr_entry *ae;
2521 uint32_t len, size;
2522
2523 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2524 memset(ae, 0, 256);
2525
2526 strncpy(ae->un.AttrString, phba->ModelName,
2527 sizeof(ae->un.AttrString));
2528 len = strnlen(ae->un.AttrString, sizeof(ae->un.AttrString));
2529 len += (len & 3) ? (4 - (len & 3)) : 4;
2530 size = FOURBYTES + len;
2531 ad->AttrLen = cpu_to_be16(size);
2532 ad->AttrType = cpu_to_be16(RPRT_SMART_MODEL);
2533 return size;
2534}
2535
bd4b3e5c 2536static int
4258e98e
JS
2537lpfc_fdmi_smart_attr_port_info(struct lpfc_vport *vport,
2538 struct lpfc_fdmi_attr_def *ad)
2539{
2540 struct lpfc_fdmi_attr_entry *ae;
2541 uint32_t size;
2542
2543 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2544
2545 /* SRIOV (type 3) is not supported */
2546 if (vport->vpi)
2547 ae->un.AttrInt = cpu_to_be32(2); /* NPIV */
2548 else
2549 ae->un.AttrInt = cpu_to_be32(1); /* Physical */
2550 size = FOURBYTES + sizeof(uint32_t);
2551 ad->AttrLen = cpu_to_be16(size);
2552 ad->AttrType = cpu_to_be16(RPRT_SMART_PORT_INFO);
2553 return size;
2554}
2555
bd4b3e5c 2556static int
4258e98e
JS
2557lpfc_fdmi_smart_attr_qos(struct lpfc_vport *vport,
2558 struct lpfc_fdmi_attr_def *ad)
2559{
2560 struct lpfc_fdmi_attr_entry *ae;
2561 uint32_t size;
2562
2563 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2564 ae->un.AttrInt = cpu_to_be32(0);
2565 size = FOURBYTES + sizeof(uint32_t);
2566 ad->AttrLen = cpu_to_be16(size);
2567 ad->AttrType = cpu_to_be16(RPRT_SMART_QOS);
2568 return size;
2569}
2570
bd4b3e5c 2571static int
4258e98e
JS
2572lpfc_fdmi_smart_attr_security(struct lpfc_vport *vport,
2573 struct lpfc_fdmi_attr_def *ad)
2574{
2575 struct lpfc_fdmi_attr_entry *ae;
2576 uint32_t size;
2577
2578 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
56204984 2579 ae->un.AttrInt = cpu_to_be32(1);
4258e98e
JS
2580 size = FOURBYTES + sizeof(uint32_t);
2581 ad->AttrLen = cpu_to_be16(size);
2582 ad->AttrType = cpu_to_be16(RPRT_SMART_SECURITY);
2583 return size;
dea3101e 2584}
2e0fef85 2585
4258e98e
JS
2586/* RHBA attribute jump table */
2587int (*lpfc_fdmi_hba_action[])
2588 (struct lpfc_vport *vport, struct lpfc_fdmi_attr_def *ad) = {
2589 /* Action routine Mask bit Attribute type */
2590 lpfc_fdmi_hba_attr_wwnn, /* bit0 RHBA_NODENAME */
2591 lpfc_fdmi_hba_attr_manufacturer, /* bit1 RHBA_MANUFACTURER */
2592 lpfc_fdmi_hba_attr_sn, /* bit2 RHBA_SERIAL_NUMBER */
2593 lpfc_fdmi_hba_attr_model, /* bit3 RHBA_MODEL */
2594 lpfc_fdmi_hba_attr_description, /* bit4 RHBA_MODEL_DESCRIPTION */
2595 lpfc_fdmi_hba_attr_hdw_ver, /* bit5 RHBA_HARDWARE_VERSION */
2596 lpfc_fdmi_hba_attr_drvr_ver, /* bit6 RHBA_DRIVER_VERSION */
2597 lpfc_fdmi_hba_attr_rom_ver, /* bit7 RHBA_OPTION_ROM_VERSION */
2598 lpfc_fdmi_hba_attr_fmw_ver, /* bit8 RHBA_FIRMWARE_VERSION */
2599 lpfc_fdmi_hba_attr_os_ver, /* bit9 RHBA_OS_NAME_VERSION */
2600 lpfc_fdmi_hba_attr_ct_len, /* bit10 RHBA_MAX_CT_PAYLOAD_LEN */
2601 lpfc_fdmi_hba_attr_symbolic_name, /* bit11 RHBA_SYM_NODENAME */
2602 lpfc_fdmi_hba_attr_vendor_info, /* bit12 RHBA_VENDOR_INFO */
2603 lpfc_fdmi_hba_attr_num_ports, /* bit13 RHBA_NUM_PORTS */
2604 lpfc_fdmi_hba_attr_fabric_wwnn, /* bit14 RHBA_FABRIC_WWNN */
2605 lpfc_fdmi_hba_attr_bios_ver, /* bit15 RHBA_BIOS_VERSION */
2606 lpfc_fdmi_hba_attr_bios_state, /* bit16 RHBA_BIOS_STATE */
2607 lpfc_fdmi_hba_attr_vendor_id, /* bit17 RHBA_VENDOR_ID */
2608};
2609
2610/* RPA / RPRT attribute jump table */
2611int (*lpfc_fdmi_port_action[])
2612 (struct lpfc_vport *vport, struct lpfc_fdmi_attr_def *ad) = {
2613 /* Action routine Mask bit Attribute type */
2614 lpfc_fdmi_port_attr_fc4type, /* bit0 RPRT_SUPPORT_FC4_TYPES */
2615 lpfc_fdmi_port_attr_support_speed, /* bit1 RPRT_SUPPORTED_SPEED */
2616 lpfc_fdmi_port_attr_speed, /* bit2 RPRT_PORT_SPEED */
2617 lpfc_fdmi_port_attr_max_frame, /* bit3 RPRT_MAX_FRAME_SIZE */
2618 lpfc_fdmi_port_attr_os_devname, /* bit4 RPRT_OS_DEVICE_NAME */
2619 lpfc_fdmi_port_attr_host_name, /* bit5 RPRT_HOST_NAME */
2620 lpfc_fdmi_port_attr_wwnn, /* bit6 RPRT_NODENAME */
2621 lpfc_fdmi_port_attr_wwpn, /* bit7 RPRT_PORTNAME */
2622 lpfc_fdmi_port_attr_symbolic_name, /* bit8 RPRT_SYM_PORTNAME */
2623 lpfc_fdmi_port_attr_port_type, /* bit9 RPRT_PORT_TYPE */
2624 lpfc_fdmi_port_attr_class, /* bit10 RPRT_SUPPORTED_CLASS */
2625 lpfc_fdmi_port_attr_fabric_wwpn, /* bit11 RPRT_FABRICNAME */
2626 lpfc_fdmi_port_attr_active_fc4type, /* bit12 RPRT_ACTIVE_FC4_TYPES */
2627 lpfc_fdmi_port_attr_port_state, /* bit13 RPRT_PORT_STATE */
2628 lpfc_fdmi_port_attr_num_disc, /* bit14 RPRT_DISC_PORT */
2629 lpfc_fdmi_port_attr_nportid, /* bit15 RPRT_PORT_ID */
2630 lpfc_fdmi_smart_attr_service, /* bit16 RPRT_SMART_SERVICE */
2631 lpfc_fdmi_smart_attr_guid, /* bit17 RPRT_SMART_GUID */
2632 lpfc_fdmi_smart_attr_version, /* bit18 RPRT_SMART_VERSION */
2633 lpfc_fdmi_smart_attr_model, /* bit19 RPRT_SMART_MODEL */
2634 lpfc_fdmi_smart_attr_port_info, /* bit20 RPRT_SMART_PORT_INFO */
2635 lpfc_fdmi_smart_attr_qos, /* bit21 RPRT_SMART_QOS */
2636 lpfc_fdmi_smart_attr_security, /* bit22 RPRT_SMART_SECURITY */
2637};
76b2c34a 2638
4258e98e
JS
2639/**
2640 * lpfc_fdmi_cmd - Build and send a FDMI cmd to the specified NPort
2641 * @vport: pointer to a host virtual N_Port data structure.
2642 * @ndlp: ndlp to send FDMI cmd to (if NULL use FDMI_DID)
2643 * cmdcode: FDMI command to send
2644 * mask: Mask of HBA or PORT Attributes to send
2645 *
2646 * Builds and sends a FDMI command using the CT subsystem.
2647 */
dea3101e 2648int
4258e98e
JS
2649lpfc_fdmi_cmd(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2650 int cmdcode, uint32_t new_mask)
dea3101e 2651{
2e0fef85 2652 struct lpfc_hba *phba = vport->phba;
dea3101e
JB
2653 struct lpfc_dmabuf *mp, *bmp;
2654 struct lpfc_sli_ct_request *CtReq;
2655 struct ulp_bde64 *bpl;
4258e98e 2656 uint32_t bit_pos;
dea3101e 2657 uint32_t size;
76b2c34a 2658 uint32_t rsp_size;
4258e98e 2659 uint32_t mask;
76b2c34a
JS
2660 struct lpfc_fdmi_reg_hba *rh;
2661 struct lpfc_fdmi_port_entry *pe;
2662 struct lpfc_fdmi_reg_portattr *pab = NULL;
2663 struct lpfc_fdmi_attr_block *ab = NULL;
4258e98e
JS
2664 int (*func)(struct lpfc_vport *vport, struct lpfc_fdmi_attr_def *ad);
2665 void (*cmpl)(struct lpfc_hba *, struct lpfc_iocbq *,
2666 struct lpfc_iocbq *);
dea3101e 2667
4258e98e
JS
2668 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
2669 return 0;
2670
2671 cmpl = lpfc_cmpl_ct_disc_fdmi; /* called from discovery */
dea3101e
JB
2672
2673 /* fill in BDEs for command */
2674 /* Allocate buffer for command payload */
76b2c34a 2675 mp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
dea3101e
JB
2676 if (!mp)
2677 goto fdmi_cmd_exit;
2678
2679 mp->virt = lpfc_mbuf_alloc(phba, 0, &(mp->phys));
2680 if (!mp->virt)
2681 goto fdmi_cmd_free_mp;
2682
2683 /* Allocate buffer for Buffer ptr list */
76b2c34a 2684 bmp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
dea3101e
JB
2685 if (!bmp)
2686 goto fdmi_cmd_free_mpvirt;
2687
2688 bmp->virt = lpfc_mbuf_alloc(phba, 0, &(bmp->phys));
2689 if (!bmp->virt)
2690 goto fdmi_cmd_free_bmp;
2691
2692 INIT_LIST_HEAD(&mp->list);
2693 INIT_LIST_HEAD(&bmp->list);
2694
2695 /* FDMI request */
e8b62011
JS
2696 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
2697 "0218 FDMI Request Data: x%x x%x x%x\n",
2698 vport->fc_flag, vport->port_state, cmdcode);
76b2c34a 2699 CtReq = (struct lpfc_sli_ct_request *)mp->virt;
dea3101e 2700
76b2c34a 2701 /* First populate the CT_IU preamble */
dea3101e
JB
2702 memset(CtReq, 0, sizeof(struct lpfc_sli_ct_request));
2703 CtReq->RevisionId.bits.Revision = SLI_CT_REVISION;
2704 CtReq->RevisionId.bits.InId = 0;
2705
2706 CtReq->FsType = SLI_CT_MANAGEMENT_SERVICE;
2707 CtReq->FsSubType = SLI_CT_FDMI_Subtypes;
76b2c34a
JS
2708
2709 CtReq->CommandResponse.bits.CmdRsp = cpu_to_be16(cmdcode);
2710 rsp_size = LPFC_BPL_SIZE;
dea3101e
JB
2711 size = 0;
2712
76b2c34a 2713 /* Next fill in the specific FDMI cmd information */
dea3101e 2714 switch (cmdcode) {
76b2c34a 2715 case SLI_MGMT_RHAT:
dea3101e 2716 case SLI_MGMT_RHBA:
4258e98e
JS
2717 rh = (struct lpfc_fdmi_reg_hba *)&CtReq->un.PortID;
2718 /* HBA Identifier */
2719 memcpy(&rh->hi.PortName, &phba->pport->fc_sparam.portName,
2720 sizeof(struct lpfc_name));
dea3101e 2721
4258e98e
JS
2722 if (cmdcode == SLI_MGMT_RHBA) {
2723 /* Registered Port List */
2724 /* One entry (port) per adapter */
2725 rh->rpl.EntryCnt = cpu_to_be32(1);
2726 memcpy(&rh->rpl.pe, &phba->pport->fc_sparam.portName,
76b2c34a
JS
2727 sizeof(struct lpfc_name));
2728
4258e98e
JS
2729 /* point to the HBA attribute block */
2730 size = 2 * sizeof(struct lpfc_name) +
2731 FOURBYTES;
2732 } else {
2733 size = sizeof(struct lpfc_name);
2734 }
2735 ab = (struct lpfc_fdmi_attr_block *)((uint8_t *)rh + size);
2736 ab->EntryCnt = 0;
2737 size += FOURBYTES;
2738 bit_pos = 0;
2739 if (new_mask)
2740 mask = new_mask;
2741 else
2742 mask = vport->fdmi_hba_mask;
2743
2744 /* Mask will dictate what attributes to build in the request */
2745 while (mask) {
2746 if (mask & 0x1) {
2747 func = lpfc_fdmi_hba_action[bit_pos];
2748 size += func(vport,
2749 (struct lpfc_fdmi_attr_def *)
2750 ((uint8_t *)rh + size));
2751 ab->EntryCnt++;
2752 if ((size + 256) >
2753 (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
2754 goto hba_out;
dea3101e 2755 }
4258e98e
JS
2756 mask = mask >> 1;
2757 bit_pos++;
dea3101e 2758 }
4258e98e
JS
2759hba_out:
2760 ab->EntryCnt = cpu_to_be32(ab->EntryCnt);
2761 /* Total size */
2762 size = GID_REQUEST_SZ - 4 + size;
dea3101e
JB
2763 break;
2764
76b2c34a 2765 case SLI_MGMT_RPRT:
dea3101e 2766 case SLI_MGMT_RPA:
4258e98e
JS
2767 pab = (struct lpfc_fdmi_reg_portattr *)&CtReq->un.PortID;
2768 if (cmdcode == SLI_MGMT_RPRT) {
2769 rh = (struct lpfc_fdmi_reg_hba *)pab;
2770 /* HBA Identifier */
2771 memcpy(&rh->hi.PortName,
2772 &phba->pport->fc_sparam.portName,
76b2c34a 2773 sizeof(struct lpfc_name));
4258e98e
JS
2774 pab = (struct lpfc_fdmi_reg_portattr *)
2775 ((uint8_t *)pab + sizeof(struct lpfc_name));
2776 }
dea3101e 2777
4258e98e
JS
2778 memcpy((uint8_t *)&pab->PortName,
2779 (uint8_t *)&vport->fc_sparam.portName,
2780 sizeof(struct lpfc_name));
2781 size += sizeof(struct lpfc_name) + FOURBYTES;
2782 pab->ab.EntryCnt = 0;
2783 bit_pos = 0;
2784 if (new_mask)
2785 mask = new_mask;
2786 else
2787 mask = vport->fdmi_port_mask;
2788
2789 /* Mask will dictate what attributes to build in the request */
2790 while (mask) {
2791 if (mask & 0x1) {
2792 func = lpfc_fdmi_port_action[bit_pos];
2793 size += func(vport,
2794 (struct lpfc_fdmi_attr_def *)
2795 ((uint8_t *)pab + size));
2796 pab->ab.EntryCnt++;
2797 if ((size + 256) >
2798 (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
2799 goto port_out;
2800 }
2801 mask = mask >> 1;
2802 bit_pos++;
dea3101e 2803 }
4258e98e
JS
2804port_out:
2805 pab->ab.EntryCnt = cpu_to_be32(pab->ab.EntryCnt);
2806 /* Total size */
2807 if (cmdcode == SLI_MGMT_RPRT)
2808 size += sizeof(struct lpfc_name);
2809 size = GID_REQUEST_SZ - 4 + size;
dea3101e
JB
2810 break;
2811
76b2c34a
JS
2812 case SLI_MGMT_GHAT:
2813 case SLI_MGMT_GRPL:
2814 rsp_size = FC_MAX_NS_RSP;
dea3101e 2815 case SLI_MGMT_DHBA:
76b2c34a
JS
2816 case SLI_MGMT_DHAT:
2817 pe = (struct lpfc_fdmi_port_entry *)&CtReq->un.PortID;
2818 memcpy((uint8_t *)&pe->PortName,
2819 (uint8_t *)&vport->fc_sparam.portName,
2820 sizeof(struct lpfc_name));
2821 size = GID_REQUEST_SZ - 4 + sizeof(struct lpfc_name);
dea3101e
JB
2822 break;
2823
76b2c34a
JS
2824 case SLI_MGMT_GPAT:
2825 case SLI_MGMT_GPAS:
2826 rsp_size = FC_MAX_NS_RSP;
dea3101e 2827 case SLI_MGMT_DPRT:
76b2c34a
JS
2828 case SLI_MGMT_DPA:
2829 pe = (struct lpfc_fdmi_port_entry *)&CtReq->un.PortID;
2830 memcpy((uint8_t *)&pe->PortName,
2831 (uint8_t *)&vport->fc_sparam.portName,
2832 sizeof(struct lpfc_name));
2833 size = GID_REQUEST_SZ - 4 + sizeof(struct lpfc_name);
2834 break;
2835 case SLI_MGMT_GRHL:
2836 size = GID_REQUEST_SZ - 4;
dea3101e 2837 break;
76b2c34a
JS
2838 default:
2839 lpfc_printf_vlog(vport, KERN_WARNING, LOG_DISCOVERY,
2840 "0298 FDMI cmdcode x%x not supported\n",
2841 cmdcode);
2842 goto fdmi_cmd_free_bmpvirt;
dea3101e 2843 }
76b2c34a 2844 CtReq->CommandResponse.bits.Size = cpu_to_be16(rsp_size);
dea3101e 2845
76b2c34a
JS
2846 bpl = (struct ulp_bde64 *)bmp->virt;
2847 bpl->addrHigh = le32_to_cpu(putPaddrHigh(mp->phys));
2848 bpl->addrLow = le32_to_cpu(putPaddrLow(mp->phys));
dea3101e
JB
2849 bpl->tus.f.bdeFlags = 0;
2850 bpl->tus.f.bdeSize = size;
dea3101e 2851
76b2c34a
JS
2852 /*
2853 * The lpfc_ct_cmd/lpfc_get_req shall increment ndlp reference count
e47c9093
JS
2854 * to hold ndlp reference for the corresponding callback function.
2855 */
76b2c34a 2856 if (!lpfc_ct_cmd(vport, mp, bmp, ndlp, cmpl, rsp_size, 0))
dea3101e
JB
2857 return 0;
2858
76b2c34a
JS
2859 /*
2860 * Decrement ndlp reference count to release ndlp reference held
e47c9093
JS
2861 * for the failed command's callback function.
2862 */
51ef4c26 2863 lpfc_nlp_put(ndlp);
e47c9093 2864
76b2c34a 2865fdmi_cmd_free_bmpvirt:
dea3101e
JB
2866 lpfc_mbuf_free(phba, bmp->virt, bmp->phys);
2867fdmi_cmd_free_bmp:
2868 kfree(bmp);
2869fdmi_cmd_free_mpvirt:
2870 lpfc_mbuf_free(phba, mp->virt, mp->phys);
2871fdmi_cmd_free_mp:
2872 kfree(mp);
2873fdmi_cmd_exit:
2874 /* Issue FDMI request failed */
e8b62011
JS
2875 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
2876 "0244 Issue FDMI request failed Data: x%x\n",
2877 cmdcode);
dea3101e
JB
2878 return 1;
2879}
2880
92494144
JS
2881/**
2882 * lpfc_delayed_disc_tmo - Timeout handler for delayed discovery timer.
2883 * @ptr - Context object of the timer.
2884 *
2885 * This function set the WORKER_DELAYED_DISC_TMO flag and wake up
2886 * the worker thread.
2887 **/
2888void
2889lpfc_delayed_disc_tmo(unsigned long ptr)
2890{
2891 struct lpfc_vport *vport = (struct lpfc_vport *)ptr;
2892 struct lpfc_hba *phba = vport->phba;
2893 uint32_t tmo_posted;
2894 unsigned long iflag;
2895
2896 spin_lock_irqsave(&vport->work_port_lock, iflag);
2897 tmo_posted = vport->work_port_events & WORKER_DELAYED_DISC_TMO;
2898 if (!tmo_posted)
2899 vport->work_port_events |= WORKER_DELAYED_DISC_TMO;
2900 spin_unlock_irqrestore(&vport->work_port_lock, iflag);
2901
2902 if (!tmo_posted)
2903 lpfc_worker_wake_up(phba);
2904 return;
2905}
2906
2907/**
2908 * lpfc_delayed_disc_timeout_handler - Function called by worker thread to
2909 * handle delayed discovery.
2910 * @vport: pointer to a host virtual N_Port data structure.
2911 *
2912 * This function start nport discovery of the vport.
2913 **/
2914void
2915lpfc_delayed_disc_timeout_handler(struct lpfc_vport *vport)
2916{
2917 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2918
2919 spin_lock_irq(shost->host_lock);
2920 if (!(vport->fc_flag & FC_DISC_DELAYED)) {
2921 spin_unlock_irq(shost->host_lock);
2922 return;
2923 }
2924 vport->fc_flag &= ~FC_DISC_DELAYED;
2925 spin_unlock_irq(shost->host_lock);
2926
2927 lpfc_do_scr_ns_plogi(vport->phba, vport);
2928}
2929
dea3101e 2930void
2e0fef85 2931lpfc_decode_firmware_rev(struct lpfc_hba *phba, char *fwrevision, int flag)
dea3101e
JB
2932{
2933 struct lpfc_sli *psli = &phba->sli;
2934 lpfc_vpd_t *vp = &phba->vpd;
2935 uint32_t b1, b2, b3, b4, i, rev;
2936 char c;
2937 uint32_t *ptr, str[4];
2938 uint8_t *fwname;
2939
f1126688 2940 if (phba->sli_rev == LPFC_SLI_REV4)
6b5151fd 2941 snprintf(fwrevision, FW_REV_STR_SIZE, "%s", vp->rev.opFwName);
f1126688 2942 else if (vp->rev.rBit) {
f4b4c68f 2943 if (psli->sli_flag & LPFC_SLI_ACTIVE)
dea3101e
JB
2944 rev = vp->rev.sli2FwRev;
2945 else
2946 rev = vp->rev.sli1FwRev;
2947
2948 b1 = (rev & 0x0000f000) >> 12;
2949 b2 = (rev & 0x00000f00) >> 8;
2950 b3 = (rev & 0x000000c0) >> 6;
2951 b4 = (rev & 0x00000030) >> 4;
2952
2953 switch (b4) {
2954 case 0:
2955 c = 'N';
2956 break;
2957 case 1:
2958 c = 'A';
2959 break;
2960 case 2:
2961 c = 'B';
2962 break;
73d91e50
JS
2963 case 3:
2964 c = 'X';
2965 break;
dea3101e
JB
2966 default:
2967 c = 0;
2968 break;
2969 }
2970 b4 = (rev & 0x0000000f);
2971
f4b4c68f 2972 if (psli->sli_flag & LPFC_SLI_ACTIVE)
dea3101e
JB
2973 fwname = vp->rev.sli2FwName;
2974 else
2975 fwname = vp->rev.sli1FwName;
2976
2977 for (i = 0; i < 16; i++)
2978 if (fwname[i] == 0x20)
2979 fwname[i] = 0;
2980
2981 ptr = (uint32_t*)fwname;
2982
2983 for (i = 0; i < 3; i++)
2984 str[i] = be32_to_cpu(*ptr++);
2985
2986 if (c == 0) {
2987 if (flag)
2988 sprintf(fwrevision, "%d.%d%d (%s)",
2989 b1, b2, b3, (char *)str);
2990 else
2991 sprintf(fwrevision, "%d.%d%d", b1,
2992 b2, b3);
2993 } else {
2994 if (flag)
2995 sprintf(fwrevision, "%d.%d%d%c%d (%s)",
2996 b1, b2, b3, c,
2997 b4, (char *)str);
2998 else
2999 sprintf(fwrevision, "%d.%d%d%c%d",
3000 b1, b2, b3, c, b4);
3001 }
3002 } else {
3003 rev = vp->rev.smFwRev;
3004
3005 b1 = (rev & 0xff000000) >> 24;
3006 b2 = (rev & 0x00f00000) >> 20;
3007 b3 = (rev & 0x000f0000) >> 16;
3008 c = (rev & 0x0000ff00) >> 8;
3009 b4 = (rev & 0x000000ff);
3010
d44a6d2b 3011 sprintf(fwrevision, "%d.%d%d%c%d", b1, b2, b3, c, b4);
dea3101e
JB
3012 }
3013 return;
3014}