blob: af129966bd11008eb4efe16456b6ee1a1471b002 [file] [log] [blame]
dea31012005-04-17 16:05:31 -05001/*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04003 * Fibre Channel Host Bus Adapters. *
James Smartf25e8e72015-04-07 15:07:28 -04004 * Copyright (C) 2004-2015 Emulex. All rights reserved. *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04005 * EMULEX and SLI are trademarks of Emulex. *
dea31012005-04-17 16:05:31 -05006 * www.emulex.com *
7 * *
8 * This program is free software; you can redistribute it and/or *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04009 * modify it under the terms of version 2 of the GNU General *
10 * Public License as published by the Free Software Foundation. *
11 * This program is distributed in the hope that it will be useful. *
12 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
13 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
14 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
15 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
16 * TO BE LEGALLY INVALID. See the GNU General Public License for *
17 * more details, a copy of which can be found in the file COPYING *
18 * included with this package. *
dea31012005-04-17 16:05:31 -050019 *******************************************************************/
20
21/*
James Smart09372822008-01-11 01:52:54 -050022 * Fibre Channel SCSI LAN Device Driver CT support: FC Generic Services FC-GS
dea31012005-04-17 16:05:31 -050023 */
24
25#include <linux/blkdev.h>
26#include <linux/pci.h>
27#include <linux/interrupt.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
dea31012005-04-17 16:05:31 -050029#include <linux/utsname.h>
30
James.Smart@Emulex.Com91886522005-08-10 15:03:09 -040031#include <scsi/scsi.h>
dea31012005-04-17 16:05:31 -050032#include <scsi/scsi_device.h>
33#include <scsi/scsi_host.h>
James.Smart@Emulex.Comf888ba32005-08-10 15:03:01 -040034#include <scsi/scsi_transport_fc.h>
James Smart6a9c52c2009-10-02 15:16:51 -040035#include <scsi/fc/fc_fs.h>
dea31012005-04-17 16:05:31 -050036
James Smartda0436e2009-05-22 14:51:39 -040037#include "lpfc_hw4.h"
dea31012005-04-17 16:05:31 -050038#include "lpfc_hw.h"
39#include "lpfc_sli.h"
James Smartda0436e2009-05-22 14:51:39 -040040#include "lpfc_sli4.h"
James Smartea2151b2008-09-07 11:52:10 -040041#include "lpfc_nl.h"
dea31012005-04-17 16:05:31 -050042#include "lpfc_disc.h"
43#include "lpfc_scsi.h"
44#include "lpfc.h"
45#include "lpfc_logmsg.h"
46#include "lpfc_crtn.h"
47#include "lpfc_version.h"
James Smart92d7f7b2007-06-17 19:56:38 -050048#include "lpfc_vport.h"
James Smart858c9f62007-06-17 19:56:39 -050049#include "lpfc_debugfs.h"
dea31012005-04-17 16:05:31 -050050
James Smart76a95d72010-11-20 23:11:48 -050051/* FDMI Port Speed definitions */
52#define HBA_PORTSPEED_1GBIT 0x0001 /* 1 GBit/sec */
53#define HBA_PORTSPEED_2GBIT 0x0002 /* 2 GBit/sec */
54#define HBA_PORTSPEED_4GBIT 0x0008 /* 4 GBit/sec */
55#define HBA_PORTSPEED_10GBIT 0x0004 /* 10 GBit/sec */
56#define HBA_PORTSPEED_8GBIT 0x0010 /* 8 GBit/sec */
57#define HBA_PORTSPEED_16GBIT 0x0020 /* 16 GBit/sec */
58#define HBA_PORTSPEED_UNKNOWN 0x0800 /* Unknown */
dea31012005-04-17 16:05:31 -050059
60#define FOURBYTES 4
61
62
63static char *lpfc_release_version = LPFC_DRIVER_VERSION;
64
James Smarted957682007-06-17 19:56:37 -050065static void
66lpfc_ct_ignore_hbq_buffer(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq,
James Smart92d7f7b2007-06-17 19:56:38 -050067 struct lpfc_dmabuf *mp, uint32_t size)
James Smarted957682007-06-17 19:56:37 -050068{
James Smarted957682007-06-17 19:56:37 -050069 if (!mp) {
James Smart9c2face2008-01-11 01:53:18 -050070 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
James Smart97eab632008-04-07 10:16:05 -040071 "0146 Ignoring unsolicited CT No HBQ "
James Smart9c2face2008-01-11 01:53:18 -050072 "status = x%x\n",
73 piocbq->iocb.ulpStatus);
James Smarted957682007-06-17 19:56:37 -050074 }
James Smart9c2face2008-01-11 01:53:18 -050075 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
76 "0145 Ignoring unsolicted CT HBQ Size:%d "
77 "status = x%x\n",
78 size, piocbq->iocb.ulpStatus);
79}
80
81static void
82lpfc_ct_unsol_buffer(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq,
83 struct lpfc_dmabuf *mp, uint32_t size)
84{
85 lpfc_ct_ignore_hbq_buffer(phba, piocbq, mp, size);
James Smarted957682007-06-17 19:56:37 -050086}
87
dea31012005-04-17 16:05:31 -050088void
James Smart2e0fef82007-06-17 19:56:36 -050089lpfc_ct_unsol_event(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
90 struct lpfc_iocbq *piocbq)
dea31012005-04-17 16:05:31 -050091{
James Smarted957682007-06-17 19:56:37 -050092 struct lpfc_dmabuf *mp = NULL;
dea31012005-04-17 16:05:31 -050093 IOCB_t *icmd = &piocbq->iocb;
James Smarted957682007-06-17 19:56:37 -050094 int i;
95 struct lpfc_iocbq *iocbq;
96 dma_addr_t paddr;
97 uint32_t size;
James Smart9c2face2008-01-11 01:53:18 -050098 struct list_head head;
99 struct lpfc_dmabuf *bdeBuf;
James Smart92d7f7b2007-06-17 19:56:38 -0500100
James Smart4fede782010-01-26 23:08:55 -0500101 if (lpfc_bsg_ct_unsol_event(phba, pring, piocbq) == 0)
102 return;
James Smartf1c3b0f2009-07-19 10:01:32 -0400103
James Smart92d7f7b2007-06-17 19:56:38 -0500104 if (unlikely(icmd->ulpStatus == IOSTAT_NEED_BUFFER)) {
105 lpfc_sli_hbqbuf_add_hbqs(phba, LPFC_ELS_HBQ);
106 } else if ((icmd->ulpStatus == IOSTAT_LOCAL_REJECT) &&
James Smarte3d2b802012-08-14 14:25:43 -0400107 ((icmd->un.ulpWord[4] & IOERR_PARAM_MASK) ==
108 IOERR_RCV_BUFFER_WAITING)) {
dea31012005-04-17 16:05:31 -0500109 /* Not enough posted buffers; Try posting more buffers */
110 phba->fc_stat.NoRcvBuf++;
James Smart92d7f7b2007-06-17 19:56:38 -0500111 if (!(phba->sli3_options & LPFC_SLI3_HBQ_ENABLED))
James Smart495a7142008-06-14 22:52:59 -0400112 lpfc_post_buffer(phba, pring, 2);
dea31012005-04-17 16:05:31 -0500113 return;
114 }
115
116 /* If there are no BDEs associated with this IOCB,
117 * there is nothing to do.
118 */
119 if (icmd->ulpBdeCount == 0)
120 return;
121
James Smarted957682007-06-17 19:56:37 -0500122 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
James Smart9c2face2008-01-11 01:53:18 -0500123 INIT_LIST_HEAD(&head);
124 list_add_tail(&head, &piocbq->list);
125 list_for_each_entry(iocbq, &head, list) {
James Smarted957682007-06-17 19:56:37 -0500126 icmd = &iocbq->iocb;
James Smart9c2face2008-01-11 01:53:18 -0500127 if (icmd->ulpBdeCount == 0)
James Smarted957682007-06-17 19:56:37 -0500128 continue;
James Smart9c2face2008-01-11 01:53:18 -0500129 bdeBuf = iocbq->context2;
130 iocbq->context2 = NULL;
James Smarted957682007-06-17 19:56:37 -0500131 size = icmd->un.cont64[0].tus.f.bdeSize;
James Smart9c2face2008-01-11 01:53:18 -0500132 lpfc_ct_unsol_buffer(phba, piocbq, bdeBuf, size);
133 lpfc_in_buf_free(phba, bdeBuf);
James Smarted957682007-06-17 19:56:37 -0500134 if (icmd->ulpBdeCount == 2) {
James Smart9c2face2008-01-11 01:53:18 -0500135 bdeBuf = iocbq->context3;
136 iocbq->context3 = NULL;
137 size = icmd->unsli3.rcvsli3.bde2.tus.f.bdeSize;
138 lpfc_ct_unsol_buffer(phba, piocbq, bdeBuf,
139 size);
140 lpfc_in_buf_free(phba, bdeBuf);
James Smarted957682007-06-17 19:56:37 -0500141 }
dea31012005-04-17 16:05:31 -0500142 }
James Smart9c2face2008-01-11 01:53:18 -0500143 list_del(&head);
James Smarted957682007-06-17 19:56:37 -0500144 } else {
James Smartd7c255b2008-08-24 21:50:00 -0400145 INIT_LIST_HEAD(&head);
146 list_add_tail(&head, &piocbq->list);
147 list_for_each_entry(iocbq, &head, list) {
James Smarted957682007-06-17 19:56:37 -0500148 icmd = &iocbq->iocb;
James Smart9c2face2008-01-11 01:53:18 -0500149 if (icmd->ulpBdeCount == 0)
James Smartd7c255b2008-08-24 21:50:00 -0400150 lpfc_ct_unsol_buffer(phba, iocbq, NULL, 0);
James Smarted957682007-06-17 19:56:37 -0500151 for (i = 0; i < icmd->ulpBdeCount; i++) {
152 paddr = getPaddr(icmd->un.cont64[i].addrHigh,
153 icmd->un.cont64[i].addrLow);
154 mp = lpfc_sli_ringpostbuf_get(phba, pring,
155 paddr);
156 size = icmd->un.cont64[i].tus.f.bdeSize;
James Smartd7c255b2008-08-24 21:50:00 -0400157 lpfc_ct_unsol_buffer(phba, iocbq, mp, size);
James Smart92d7f7b2007-06-17 19:56:38 -0500158 lpfc_in_buf_free(phba, mp);
James Smarted957682007-06-17 19:56:37 -0500159 }
James Smart495a7142008-06-14 22:52:59 -0400160 lpfc_post_buffer(phba, pring, i);
dea31012005-04-17 16:05:31 -0500161 }
James Smartd7c255b2008-08-24 21:50:00 -0400162 list_del(&head);
dea31012005-04-17 16:05:31 -0500163 }
dea31012005-04-17 16:05:31 -0500164}
165
James Smart6669f9b2009-10-02 15:16:45 -0400166/**
James Smart6dd9e312013-01-03 15:43:37 -0500167 * lpfc_ct_handle_unsol_abort - ct upper level protocol abort handler
James Smart6669f9b2009-10-02 15:16:45 -0400168 * @phba: Pointer to HBA context object.
James Smart6dd9e312013-01-03 15:43:37 -0500169 * @dmabuf: pointer to a dmabuf that describes the FC sequence
James Smart6669f9b2009-10-02 15:16:45 -0400170 *
James Smart6dd9e312013-01-03 15:43:37 -0500171 * This function serves as the upper level protocol abort handler for CT
172 * protocol.
173 *
174 * Return 1 if abort has been handled, 0 otherwise.
James Smart6669f9b2009-10-02 15:16:45 -0400175 **/
James Smart6dd9e312013-01-03 15:43:37 -0500176int
177lpfc_ct_handle_unsol_abort(struct lpfc_hba *phba, struct hbq_dmabuf *dmabuf)
James Smart6669f9b2009-10-02 15:16:45 -0400178{
James Smart6dd9e312013-01-03 15:43:37 -0500179 int handled;
James Smart6669f9b2009-10-02 15:16:45 -0400180
James Smart6dd9e312013-01-03 15:43:37 -0500181 /* CT upper level goes through BSG */
182 handled = lpfc_bsg_ct_unsol_abort(phba, dmabuf);
James Smart6669f9b2009-10-02 15:16:45 -0400183
James Smart6dd9e312013-01-03 15:43:37 -0500184 return handled;
James Smart6669f9b2009-10-02 15:16:45 -0400185}
186
dea31012005-04-17 16:05:31 -0500187static void
James Smart2e0fef82007-06-17 19:56:36 -0500188lpfc_free_ct_rsp(struct lpfc_hba *phba, struct lpfc_dmabuf *mlist)
dea31012005-04-17 16:05:31 -0500189{
190 struct lpfc_dmabuf *mlast, *next_mlast;
191
192 list_for_each_entry_safe(mlast, next_mlast, &mlist->list, list) {
193 lpfc_mbuf_free(phba, mlast->virt, mlast->phys);
194 list_del(&mlast->list);
195 kfree(mlast);
196 }
197 lpfc_mbuf_free(phba, mlist->virt, mlist->phys);
198 kfree(mlist);
199 return;
200}
201
202static struct lpfc_dmabuf *
James Smart2e0fef82007-06-17 19:56:36 -0500203lpfc_alloc_ct_rsp(struct lpfc_hba *phba, int cmdcode, struct ulp_bde64 *bpl,
dea31012005-04-17 16:05:31 -0500204 uint32_t size, int *entries)
205{
206 struct lpfc_dmabuf *mlist = NULL;
207 struct lpfc_dmabuf *mp;
208 int cnt, i = 0;
209
James Smart09372822008-01-11 01:52:54 -0500210 /* We get chunks of FCELSSIZE */
dea31012005-04-17 16:05:31 -0500211 cnt = size > FCELSSIZE ? FCELSSIZE: size;
212
213 while (size) {
214 /* Allocate buffer for rsp payload */
215 mp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
216 if (!mp) {
217 if (mlist)
218 lpfc_free_ct_rsp(phba, mlist);
219 return NULL;
220 }
221
222 INIT_LIST_HEAD(&mp->list);
223
James Smart92d7f7b2007-06-17 19:56:38 -0500224 if (cmdcode == be16_to_cpu(SLI_CTNS_GID_FT) ||
225 cmdcode == be16_to_cpu(SLI_CTNS_GFF_ID))
dea31012005-04-17 16:05:31 -0500226 mp->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &(mp->phys));
227 else
228 mp->virt = lpfc_mbuf_alloc(phba, 0, &(mp->phys));
229
230 if (!mp->virt) {
231 kfree(mp);
Eric Sesterhenn0b3a82d2006-10-10 14:41:43 -0700232 if (mlist)
233 lpfc_free_ct_rsp(phba, mlist);
dea31012005-04-17 16:05:31 -0500234 return NULL;
235 }
236
237 /* Queue it to a linked list */
238 if (!mlist)
239 mlist = mp;
240 else
241 list_add_tail(&mp->list, &mlist->list);
242
James Smart34b02dc2008-08-24 21:49:55 -0400243 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64I;
dea31012005-04-17 16:05:31 -0500244 /* build buffer ptr list for IOCB */
James Smart92d7f7b2007-06-17 19:56:38 -0500245 bpl->addrLow = le32_to_cpu(putPaddrLow(mp->phys) );
246 bpl->addrHigh = le32_to_cpu(putPaddrHigh(mp->phys) );
dea31012005-04-17 16:05:31 -0500247 bpl->tus.f.bdeSize = (uint16_t) cnt;
248 bpl->tus.w = le32_to_cpu(bpl->tus.w);
249 bpl++;
250
251 i++;
252 size -= cnt;
253 }
254
255 *entries = i;
256 return mlist;
257}
258
James Smart858c9f62007-06-17 19:56:39 -0500259int
260lpfc_ct_free_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *ctiocb)
261{
262 struct lpfc_dmabuf *buf_ptr;
263
James Smart51ef4c22007-08-02 11:10:31 -0400264 if (ctiocb->context_un.ndlp) {
265 lpfc_nlp_put(ctiocb->context_un.ndlp);
266 ctiocb->context_un.ndlp = NULL;
267 }
James Smart858c9f62007-06-17 19:56:39 -0500268 if (ctiocb->context1) {
269 buf_ptr = (struct lpfc_dmabuf *) ctiocb->context1;
270 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
271 kfree(buf_ptr);
272 ctiocb->context1 = NULL;
273 }
274 if (ctiocb->context2) {
275 lpfc_free_ct_rsp(phba, (struct lpfc_dmabuf *) ctiocb->context2);
276 ctiocb->context2 = NULL;
277 }
278
279 if (ctiocb->context3) {
280 buf_ptr = (struct lpfc_dmabuf *) ctiocb->context3;
281 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
282 kfree(buf_ptr);
Felipe Pena1109c942013-10-15 21:29:50 -0300283 ctiocb->context3 = NULL;
James Smart858c9f62007-06-17 19:56:39 -0500284 }
285 lpfc_sli_release_iocbq(phba, ctiocb);
286 return 0;
287}
288
dea31012005-04-17 16:05:31 -0500289static int
James Smart2e0fef82007-06-17 19:56:36 -0500290lpfc_gen_req(struct lpfc_vport *vport, struct lpfc_dmabuf *bmp,
dea31012005-04-17 16:05:31 -0500291 struct lpfc_dmabuf *inp, struct lpfc_dmabuf *outp,
292 void (*cmpl) (struct lpfc_hba *, struct lpfc_iocbq *,
293 struct lpfc_iocbq *),
294 struct lpfc_nodelist *ndlp, uint32_t usr_flg, uint32_t num_entry,
James Smart92d7f7b2007-06-17 19:56:38 -0500295 uint32_t tmo, uint8_t retry)
dea31012005-04-17 16:05:31 -0500296{
James Smart2e0fef82007-06-17 19:56:36 -0500297 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500298 IOCB_t *icmd;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400299 struct lpfc_iocbq *geniocb;
James Smart92d7f7b2007-06-17 19:56:38 -0500300 int rc;
dea31012005-04-17 16:05:31 -0500301
302 /* Allocate buffer for command iocb */
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400303 geniocb = lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -0500304
305 if (geniocb == NULL)
306 return 1;
dea31012005-04-17 16:05:31 -0500307
308 icmd = &geniocb->iocb;
309 icmd->un.genreq64.bdl.ulpIoTag32 = 0;
310 icmd->un.genreq64.bdl.addrHigh = putPaddrHigh(bmp->phys);
311 icmd->un.genreq64.bdl.addrLow = putPaddrLow(bmp->phys);
James Smart34b02dc2008-08-24 21:49:55 -0400312 icmd->un.genreq64.bdl.bdeFlags = BUFF_TYPE_BLP_64;
dea31012005-04-17 16:05:31 -0500313 icmd->un.genreq64.bdl.bdeSize = (num_entry * sizeof (struct ulp_bde64));
314
315 if (usr_flg)
316 geniocb->context3 = NULL;
317 else
318 geniocb->context3 = (uint8_t *) bmp;
319
320 /* Save for completion so we can release these resources */
321 geniocb->context1 = (uint8_t *) inp;
322 geniocb->context2 = (uint8_t *) outp;
James Smarte47c9092008-02-08 18:49:26 -0500323 geniocb->context_un.ndlp = lpfc_nlp_get(ndlp);
dea31012005-04-17 16:05:31 -0500324
325 /* Fill in payload, bp points to frame payload */
326 icmd->ulpCommand = CMD_GEN_REQUEST64_CR;
327
328 /* Fill in rest of iocb */
329 icmd->un.genreq64.w5.hcsw.Fctl = (SI | LA);
330 icmd->un.genreq64.w5.hcsw.Dfctl = 0;
James Smart6a9c52c2009-10-02 15:16:51 -0400331 icmd->un.genreq64.w5.hcsw.Rctl = FC_RCTL_DD_UNSOL_CTL;
332 icmd->un.genreq64.w5.hcsw.Type = FC_TYPE_CT;
dea31012005-04-17 16:05:31 -0500333
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500334 if (!tmo) {
335 /* FC spec states we need 3 * ratov for CT requests */
336 tmo = (3 * phba->fc_ratov);
337 }
dea31012005-04-17 16:05:31 -0500338 icmd->ulpTimeout = tmo;
339 icmd->ulpBdeCount = 1;
340 icmd->ulpLe = 1;
341 icmd->ulpClass = CLASS3;
342 icmd->ulpContext = ndlp->nlp_rpi;
James Smart6d368e52011-05-24 11:44:12 -0400343 if (phba->sli_rev == LPFC_SLI_REV4)
344 icmd->ulpContext = phba->sli4_hba.rpi_ids[ndlp->nlp_rpi];
dea31012005-04-17 16:05:31 -0500345
James Smart92d7f7b2007-06-17 19:56:38 -0500346 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
347 /* For GEN_REQUEST64_CR, use the RPI */
348 icmd->ulpCt_h = 0;
349 icmd->ulpCt_l = 0;
350 }
351
dea31012005-04-17 16:05:31 -0500352 /* Issue GEN REQ IOCB for NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -0400353 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
354 "0119 Issue GEN REQ IOCB to NPORT x%x "
355 "Data: x%x x%x\n",
356 ndlp->nlp_DID, icmd->ulpIoTag,
357 vport->port_state);
dea31012005-04-17 16:05:31 -0500358 geniocb->iocb_cmpl = cmpl;
359 geniocb->drvrTimeout = icmd->ulpTimeout + LPFC_DRVR_TIMEOUT;
James Smart2e0fef82007-06-17 19:56:36 -0500360 geniocb->vport = vport;
James Smart92d7f7b2007-06-17 19:56:38 -0500361 geniocb->retry = retry;
James Smart3772a992009-05-22 14:50:54 -0400362 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, geniocb, 0);
James Smart92d7f7b2007-06-17 19:56:38 -0500363
364 if (rc == IOCB_ERROR) {
James Bottomley604a3e32005-10-29 10:28:33 -0500365 lpfc_sli_release_iocbq(phba, geniocb);
dea31012005-04-17 16:05:31 -0500366 return 1;
367 }
dea31012005-04-17 16:05:31 -0500368
369 return 0;
370}
371
372static int
James Smart2e0fef82007-06-17 19:56:36 -0500373lpfc_ct_cmd(struct lpfc_vport *vport, struct lpfc_dmabuf *inmp,
dea31012005-04-17 16:05:31 -0500374 struct lpfc_dmabuf *bmp, struct lpfc_nodelist *ndlp,
375 void (*cmpl) (struct lpfc_hba *, struct lpfc_iocbq *,
376 struct lpfc_iocbq *),
James Smart92d7f7b2007-06-17 19:56:38 -0500377 uint32_t rsp_size, uint8_t retry)
dea31012005-04-17 16:05:31 -0500378{
James Smart2e0fef82007-06-17 19:56:36 -0500379 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500380 struct ulp_bde64 *bpl = (struct ulp_bde64 *) bmp->virt;
381 struct lpfc_dmabuf *outmp;
382 int cnt = 0, status;
383 int cmdcode = ((struct lpfc_sli_ct_request *) inmp->virt)->
384 CommandResponse.bits.CmdRsp;
385
386 bpl++; /* Skip past ct request */
387
388 /* Put buffer(s) for ct rsp in bpl */
389 outmp = lpfc_alloc_ct_rsp(phba, cmdcode, bpl, rsp_size, &cnt);
390 if (!outmp)
391 return -ENOMEM;
James Smart6a9c52c2009-10-02 15:16:51 -0400392 /*
393 * Form the CT IOCB. The total number of BDEs in this IOCB
394 * is the single command plus response count from
395 * lpfc_alloc_ct_rsp.
396 */
397 cnt += 1;
James Smart2e0fef82007-06-17 19:56:36 -0500398 status = lpfc_gen_req(vport, bmp, inmp, outmp, cmpl, ndlp, 0,
James Smart6a9c52c2009-10-02 15:16:51 -0400399 cnt, 0, retry);
dea31012005-04-17 16:05:31 -0500400 if (status) {
401 lpfc_free_ct_rsp(phba, outmp);
402 return -ENOMEM;
403 }
404 return 0;
405}
406
James Smart549e55c2007-08-02 11:09:51 -0400407struct lpfc_vport *
James Smart92d7f7b2007-06-17 19:56:38 -0500408lpfc_find_vport_by_did(struct lpfc_hba *phba, uint32_t did) {
James Smart92d7f7b2007-06-17 19:56:38 -0500409 struct lpfc_vport *vport_curr;
James Smart549e55c2007-08-02 11:09:51 -0400410 unsigned long flags;
James Smart92d7f7b2007-06-17 19:56:38 -0500411
James Smart549e55c2007-08-02 11:09:51 -0400412 spin_lock_irqsave(&phba->hbalock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -0500413 list_for_each_entry(vport_curr, &phba->port_list, listentry) {
James Smart549e55c2007-08-02 11:09:51 -0400414 if ((vport_curr->fc_myDID) && (vport_curr->fc_myDID == did)) {
415 spin_unlock_irqrestore(&phba->hbalock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -0500416 return vport_curr;
James Smart549e55c2007-08-02 11:09:51 -0400417 }
James Smart92d7f7b2007-06-17 19:56:38 -0500418 }
James Smart549e55c2007-08-02 11:09:51 -0400419 spin_unlock_irqrestore(&phba->hbalock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -0500420 return NULL;
421}
422
dea31012005-04-17 16:05:31 -0500423static int
James Smart2e0fef82007-06-17 19:56:36 -0500424lpfc_ns_rsp(struct lpfc_vport *vport, struct lpfc_dmabuf *mp, uint32_t Size)
dea31012005-04-17 16:05:31 -0500425{
James Smart2e0fef82007-06-17 19:56:36 -0500426 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500427 struct lpfc_sli_ct_request *Response =
428 (struct lpfc_sli_ct_request *) mp->virt;
429 struct lpfc_nodelist *ndlp = NULL;
430 struct lpfc_dmabuf *mlast, *next_mp;
431 uint32_t *ctptr = (uint32_t *) & Response->un.gid.PortType;
James Smart2e0fef82007-06-17 19:56:36 -0500432 uint32_t Did, CTentry;
dea31012005-04-17 16:05:31 -0500433 int Cnt;
434 struct list_head head;
435
James Smart2e0fef82007-06-17 19:56:36 -0500436 lpfc_set_disctmo(vport);
James Smart92d7f7b2007-06-17 19:56:38 -0500437 vport->num_disc_nodes = 0;
James Smart0ff10d42008-01-11 01:52:36 -0500438 vport->fc_ns_retry = 0;
dea31012005-04-17 16:05:31 -0500439
dea31012005-04-17 16:05:31 -0500440
441 list_add_tail(&head, &mp->list);
442 list_for_each_entry_safe(mp, next_mp, &head, list) {
443 mlast = mp;
444
James Smart7054a602007-04-25 09:52:34 -0400445 Cnt = Size > FCELSSIZE ? FCELSSIZE : Size;
446
dea31012005-04-17 16:05:31 -0500447 Size -= Cnt;
448
James Smart1dcb58e2007-04-25 09:51:30 -0400449 if (!ctptr) {
dea31012005-04-17 16:05:31 -0500450 ctptr = (uint32_t *) mlast->virt;
James Smart1dcb58e2007-04-25 09:51:30 -0400451 } else
dea31012005-04-17 16:05:31 -0500452 Cnt -= 16; /* subtract length of CT header */
453
454 /* Loop through entire NameServer list of DIDs */
James Smart7054a602007-04-25 09:52:34 -0400455 while (Cnt >= sizeof (uint32_t)) {
dea31012005-04-17 16:05:31 -0500456 /* Get next DID from NameServer List */
457 CTentry = *ctptr++;
458 Did = ((be32_to_cpu(CTentry)) & Mask_DID);
James Smart92d7f7b2007-06-17 19:56:38 -0500459
dea31012005-04-17 16:05:31 -0500460 ndlp = NULL;
James Smart92d7f7b2007-06-17 19:56:38 -0500461
462 /*
463 * Check for rscn processing or not
464 * To conserve rpi's, filter out addresses for other
465 * vports on the same physical HBAs.
466 */
467 if ((Did != vport->fc_myDID) &&
468 ((lpfc_find_vport_by_did(phba, Did) == NULL) ||
James Smart3de2a652007-08-02 11:09:59 -0400469 vport->cfg_peer_port_login)) {
James Smart92d7f7b2007-06-17 19:56:38 -0500470 if ((vport->port_type != LPFC_NPIV_PORT) ||
James Smart98c9ea52007-10-27 13:37:33 -0400471 (!(vport->ct_flags & FC_CT_RFF_ID)) ||
James Smart3de2a652007-08-02 11:09:59 -0400472 (!vport->cfg_restrict_login)) {
James Smart92d7f7b2007-06-17 19:56:38 -0500473 ndlp = lpfc_setup_disc_node(vport, Did);
James Smart58da1ff2008-04-07 10:15:56 -0400474 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
James Smart858c9f62007-06-17 19:56:39 -0500475 lpfc_debugfs_disc_trc(vport,
476 LPFC_DISC_TRC_CT,
477 "Parse GID_FTrsp: "
478 "did:x%x flg:x%x x%x",
479 Did, ndlp->nlp_flag,
480 vport->fc_flag);
481
James Smarte8b62012007-08-02 11:10:09 -0400482 lpfc_printf_vlog(vport,
483 KERN_INFO,
James Smart92d7f7b2007-06-17 19:56:38 -0500484 LOG_DISCOVERY,
James Smarte8b62012007-08-02 11:10:09 -0400485 "0238 Process "
James Smart92d7f7b2007-06-17 19:56:38 -0500486 "x%x NameServer Rsp"
487 "Data: x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -0400488 Did, ndlp->nlp_flag,
James Smart92d7f7b2007-06-17 19:56:38 -0500489 vport->fc_flag,
490 vport->fc_rscn_id_cnt);
491 } else {
James Smart858c9f62007-06-17 19:56:39 -0500492 lpfc_debugfs_disc_trc(vport,
493 LPFC_DISC_TRC_CT,
494 "Skip1 GID_FTrsp: "
495 "did:x%x flg:x%x cnt:%d",
496 Did, vport->fc_flag,
497 vport->fc_rscn_id_cnt);
498
James Smarte8b62012007-08-02 11:10:09 -0400499 lpfc_printf_vlog(vport,
500 KERN_INFO,
James Smart92d7f7b2007-06-17 19:56:38 -0500501 LOG_DISCOVERY,
James Smarte8b62012007-08-02 11:10:09 -0400502 "0239 Skip x%x "
James Smart92d7f7b2007-06-17 19:56:38 -0500503 "NameServer Rsp Data: "
504 "x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -0400505 Did, vport->fc_flag,
James Smart92d7f7b2007-06-17 19:56:38 -0500506 vport->fc_rscn_id_cnt);
507 }
508
509 } else {
510 if (!(vport->fc_flag & FC_RSCN_MODE) ||
511 (lpfc_rscn_payload_check(vport, Did))) {
James Smart858c9f62007-06-17 19:56:39 -0500512 lpfc_debugfs_disc_trc(vport,
513 LPFC_DISC_TRC_CT,
514 "Query GID_FTrsp: "
515 "did:x%x flg:x%x cnt:%d",
516 Did, vport->fc_flag,
517 vport->fc_rscn_id_cnt);
518
James Smart0ff10d42008-01-11 01:52:36 -0500519 /* This NPortID was previously
520 * a FCP target, * Don't even
521 * bother to send GFF_ID.
522 */
523 ndlp = lpfc_findnode_did(vport,
524 Did);
James Smarte47c9092008-02-08 18:49:26 -0500525 if (ndlp &&
526 NLP_CHK_NODE_ACT(ndlp)
527 && (ndlp->nlp_type &
528 NLP_FCP_TARGET))
James Smart0ff10d42008-01-11 01:52:36 -0500529 lpfc_setup_disc_node
530 (vport, Did);
531 else if (lpfc_ns_cmd(vport,
James Smart92d7f7b2007-06-17 19:56:38 -0500532 SLI_CTNS_GFF_ID,
533 0, Did) == 0)
534 vport->num_disc_nodes++;
James Smart6a9c52c2009-10-02 15:16:51 -0400535 else
536 lpfc_setup_disc_node
537 (vport, Did);
James Smart92d7f7b2007-06-17 19:56:38 -0500538 }
539 else {
James Smart858c9f62007-06-17 19:56:39 -0500540 lpfc_debugfs_disc_trc(vport,
541 LPFC_DISC_TRC_CT,
542 "Skip2 GID_FTrsp: "
543 "did:x%x flg:x%x cnt:%d",
544 Did, vport->fc_flag,
545 vport->fc_rscn_id_cnt);
546
James Smarte8b62012007-08-02 11:10:09 -0400547 lpfc_printf_vlog(vport,
548 KERN_INFO,
James Smart92d7f7b2007-06-17 19:56:38 -0500549 LOG_DISCOVERY,
James Smarte8b62012007-08-02 11:10:09 -0400550 "0245 Skip x%x "
James Smart92d7f7b2007-06-17 19:56:38 -0500551 "NameServer Rsp Data: "
552 "x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -0400553 Did, vport->fc_flag,
James Smart92d7f7b2007-06-17 19:56:38 -0500554 vport->fc_rscn_id_cnt);
555 }
556 }
dea31012005-04-17 16:05:31 -0500557 }
James Smart76b2c342015-04-07 15:07:19 -0400558 if (CTentry & (cpu_to_be32(SLI_CT_LAST_ENTRY)))
dea31012005-04-17 16:05:31 -0500559 goto nsout1;
560 Cnt -= sizeof (uint32_t);
561 }
562 ctptr = NULL;
563
564 }
565
566nsout1:
567 list_del(&head);
dea31012005-04-17 16:05:31 -0500568 return 0;
569}
570
dea31012005-04-17 16:05:31 -0500571static void
James Smart2e0fef82007-06-17 19:56:36 -0500572lpfc_cmpl_ct_cmd_gid_ft(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
573 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -0500574{
James Smart2e0fef82007-06-17 19:56:36 -0500575 struct lpfc_vport *vport = cmdiocb->vport;
James Smart92d7f7b2007-06-17 19:56:38 -0500576 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -0500577 IOCB_t *irsp;
dea31012005-04-17 16:05:31 -0500578 struct lpfc_dmabuf *bmp;
dea31012005-04-17 16:05:31 -0500579 struct lpfc_dmabuf *outp;
dea31012005-04-17 16:05:31 -0500580 struct lpfc_sli_ct_request *CTrsp;
James Smart51ef4c22007-08-02 11:10:31 -0400581 struct lpfc_nodelist *ndlp;
James Smart58da1ff2008-04-07 10:15:56 -0400582 int rc;
dea31012005-04-17 16:05:31 -0500583
James Smart51ef4c22007-08-02 11:10:31 -0400584 /* First save ndlp, before we overwrite it */
585 ndlp = cmdiocb->context_un.ndlp;
586
dea31012005-04-17 16:05:31 -0500587 /* we pass cmdiocb to state machine which needs rspiocb as well */
588 cmdiocb->context_un.rsp_iocb = rspiocb;
589
dea31012005-04-17 16:05:31 -0500590 outp = (struct lpfc_dmabuf *) cmdiocb->context2;
591 bmp = (struct lpfc_dmabuf *) cmdiocb->context3;
James Smart858c9f62007-06-17 19:56:39 -0500592 irsp = &rspiocb->iocb;
593
594 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_CT,
595 "GID_FT cmpl: status:x%x/x%x rtry:%d",
596 irsp->ulpStatus, irsp->un.ulpWord[4], vport->fc_ns_retry);
dea31012005-04-17 16:05:31 -0500597
James Smart92d7f7b2007-06-17 19:56:38 -0500598 /* Don't bother processing response if vport is being torn down. */
James Smarteada2722008-12-04 22:39:13 -0500599 if (vport->load_flag & FC_UNLOADING) {
600 if (vport->fc_flag & FC_RSCN_MODE)
601 lpfc_els_flush_rscn(vport);
James Smart92d7f7b2007-06-17 19:56:38 -0500602 goto out;
James Smarteada2722008-12-04 22:39:13 -0500603 }
James Smart92d7f7b2007-06-17 19:56:38 -0500604
James Smart58da1ff2008-04-07 10:15:56 -0400605 if (lpfc_els_chk_latt(vport)) {
James Smarte8b62012007-08-02 11:10:09 -0400606 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
607 "0216 Link event during NS query\n");
James Smarteada2722008-12-04 22:39:13 -0500608 if (vport->fc_flag & FC_RSCN_MODE)
609 lpfc_els_flush_rscn(vport);
James Smart858c9f62007-06-17 19:56:39 -0500610 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
611 goto out;
612 }
James Smart58da1ff2008-04-07 10:15:56 -0400613 if (lpfc_error_lost_link(irsp)) {
614 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
615 "0226 NS query failed due to link event\n");
James Smarteada2722008-12-04 22:39:13 -0500616 if (vport->fc_flag & FC_RSCN_MODE)
617 lpfc_els_flush_rscn(vport);
James Smart58da1ff2008-04-07 10:15:56 -0400618 goto out;
619 }
James Smart858c9f62007-06-17 19:56:39 -0500620 if (irsp->ulpStatus) {
dea31012005-04-17 16:05:31 -0500621 /* Check for retry */
James Smart2e0fef82007-06-17 19:56:36 -0500622 if (vport->fc_ns_retry < LPFC_MAX_NS_RETRY) {
James Smart58da1ff2008-04-07 10:15:56 -0400623 if (irsp->ulpStatus != IOSTAT_LOCAL_REJECT ||
James Smartedb22f02012-10-31 14:45:21 -0400624 (irsp->un.ulpWord[4] & IOERR_PARAM_MASK) !=
James Smarte3d2b802012-08-14 14:25:43 -0400625 IOERR_NO_RESOURCES)
James Smart858c9f62007-06-17 19:56:39 -0500626 vport->fc_ns_retry++;
James Smart0ff10d42008-01-11 01:52:36 -0500627
James Smart58da1ff2008-04-07 10:15:56 -0400628 /* CT command is being retried */
629 rc = lpfc_ns_cmd(vport, SLI_CTNS_GID_FT,
James Smart92d7f7b2007-06-17 19:56:38 -0500630 vport->fc_ns_retry, 0);
James Smart58da1ff2008-04-07 10:15:56 -0400631 if (rc == 0)
632 goto out;
James Smart92d7f7b2007-06-17 19:56:38 -0500633 }
James Smarteada2722008-12-04 22:39:13 -0500634 if (vport->fc_flag & FC_RSCN_MODE)
635 lpfc_els_flush_rscn(vport);
James Smart92d7f7b2007-06-17 19:56:38 -0500636 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -0400637 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
638 "0257 GID_FT Query error: 0x%x 0x%x\n",
639 irsp->ulpStatus, vport->fc_ns_retry);
dea31012005-04-17 16:05:31 -0500640 } else {
641 /* Good status, continue checking */
642 CTrsp = (struct lpfc_sli_ct_request *) outp->virt;
643 if (CTrsp->CommandResponse.bits.CmdRsp ==
James Smart76b2c342015-04-07 15:07:19 -0400644 cpu_to_be16(SLI_CT_RESPONSE_FS_ACC)) {
James Smarte8b62012007-08-02 11:10:09 -0400645 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
646 "0208 NameServer Rsp Data: x%x\n",
647 vport->fc_flag);
James Smart2e0fef82007-06-17 19:56:36 -0500648 lpfc_ns_rsp(vport, outp,
dea31012005-04-17 16:05:31 -0500649 (uint32_t) (irsp->un.genreq64.bdl.bdeSize));
650 } else if (CTrsp->CommandResponse.bits.CmdRsp ==
651 be16_to_cpu(SLI_CT_RESPONSE_FS_RJT)) {
652 /* NameServer Rsp Error */
James Smarta58cbd52007-08-02 11:09:43 -0400653 if ((CTrsp->ReasonCode == SLI_CT_UNABLE_TO_PERFORM_REQ)
654 && (CTrsp->Explanation == SLI_CT_NO_FC4_TYPES)) {
James Smarte8b62012007-08-02 11:10:09 -0400655 lpfc_printf_vlog(vport, KERN_INFO,
656 LOG_DISCOVERY,
657 "0269 No NameServer Entries "
James Smarta58cbd52007-08-02 11:09:43 -0400658 "Data: x%x x%x x%x x%x\n",
James Smarta58cbd52007-08-02 11:09:43 -0400659 CTrsp->CommandResponse.bits.CmdRsp,
660 (uint32_t) CTrsp->ReasonCode,
661 (uint32_t) CTrsp->Explanation,
662 vport->fc_flag);
663
664 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_CT,
665 "GID_FT no entry cmd:x%x rsn:x%x exp:x%x",
666 (uint32_t)CTrsp->CommandResponse.bits.CmdRsp,
667 (uint32_t) CTrsp->ReasonCode,
668 (uint32_t) CTrsp->Explanation);
James Smarte8b62012007-08-02 11:10:09 -0400669 } else {
670 lpfc_printf_vlog(vport, KERN_INFO,
671 LOG_DISCOVERY,
672 "0240 NameServer Rsp Error "
dea31012005-04-17 16:05:31 -0500673 "Data: x%x x%x x%x x%x\n",
dea31012005-04-17 16:05:31 -0500674 CTrsp->CommandResponse.bits.CmdRsp,
675 (uint32_t) CTrsp->ReasonCode,
676 (uint32_t) CTrsp->Explanation,
James Smart2e0fef82007-06-17 19:56:36 -0500677 vport->fc_flag);
James Smart858c9f62007-06-17 19:56:39 -0500678
James Smarta58cbd52007-08-02 11:09:43 -0400679 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_CT,
James Smart858c9f62007-06-17 19:56:39 -0500680 "GID_FT rsp err1 cmd:x%x rsn:x%x exp:x%x",
681 (uint32_t)CTrsp->CommandResponse.bits.CmdRsp,
682 (uint32_t) CTrsp->ReasonCode,
683 (uint32_t) CTrsp->Explanation);
James Smarta58cbd52007-08-02 11:09:43 -0400684 }
685
James Smart858c9f62007-06-17 19:56:39 -0500686
dea31012005-04-17 16:05:31 -0500687 } else {
688 /* NameServer Rsp Error */
James Smarte8b62012007-08-02 11:10:09 -0400689 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
690 "0241 NameServer Rsp Error "
dea31012005-04-17 16:05:31 -0500691 "Data: x%x x%x x%x x%x\n",
dea31012005-04-17 16:05:31 -0500692 CTrsp->CommandResponse.bits.CmdRsp,
693 (uint32_t) CTrsp->ReasonCode,
694 (uint32_t) CTrsp->Explanation,
James Smart2e0fef82007-06-17 19:56:36 -0500695 vport->fc_flag);
James Smart858c9f62007-06-17 19:56:39 -0500696
697 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_CT,
698 "GID_FT rsp err2 cmd:x%x rsn:x%x exp:x%x",
699 (uint32_t)CTrsp->CommandResponse.bits.CmdRsp,
700 (uint32_t) CTrsp->ReasonCode,
701 (uint32_t) CTrsp->Explanation);
dea31012005-04-17 16:05:31 -0500702 }
703 }
704 /* Link up / RSCN discovery */
James Smart92d7f7b2007-06-17 19:56:38 -0500705 if (vport->num_disc_nodes == 0) {
706 /*
707 * The driver has cycled through all Nports in the RSCN payload.
708 * Complete the handling by cleaning up and marking the
709 * current driver state.
710 */
711 if (vport->port_state >= LPFC_DISC_AUTH) {
712 if (vport->fc_flag & FC_RSCN_MODE) {
713 lpfc_els_flush_rscn(vport);
714 spin_lock_irq(shost->host_lock);
715 vport->fc_flag |= FC_RSCN_MODE; /* RSCN still */
716 spin_unlock_irq(shost->host_lock);
717 }
718 else
719 lpfc_els_flush_rscn(vport);
720 }
721
722 lpfc_disc_start(vport);
723 }
dea31012005-04-17 16:05:31 -0500724out:
James Smart51ef4c22007-08-02 11:10:31 -0400725 cmdiocb->context_un.ndlp = ndlp; /* Now restore ndlp for free */
James Smart858c9f62007-06-17 19:56:39 -0500726 lpfc_ct_free_iocb(phba, cmdiocb);
dea31012005-04-17 16:05:31 -0500727 return;
728}
729
James Smart311464e2007-08-02 11:10:37 -0400730static void
James Smart92d7f7b2007-06-17 19:56:38 -0500731lpfc_cmpl_ct_cmd_gff_id(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
732 struct lpfc_iocbq *rspiocb)
733{
734 struct lpfc_vport *vport = cmdiocb->vport;
735 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
736 IOCB_t *irsp = &rspiocb->iocb;
James Smart92d7f7b2007-06-17 19:56:38 -0500737 struct lpfc_dmabuf *inp = (struct lpfc_dmabuf *) cmdiocb->context1;
738 struct lpfc_dmabuf *outp = (struct lpfc_dmabuf *) cmdiocb->context2;
739 struct lpfc_sli_ct_request *CTrsp;
James Smart0ff10d42008-01-11 01:52:36 -0500740 int did, rc, retry;
James Smart92d7f7b2007-06-17 19:56:38 -0500741 uint8_t fbits;
742 struct lpfc_nodelist *ndlp;
743
744 did = ((struct lpfc_sli_ct_request *) inp->virt)->un.gff.PortId;
745 did = be32_to_cpu(did);
746
James Smart858c9f62007-06-17 19:56:39 -0500747 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_CT,
748 "GFF_ID cmpl: status:x%x/x%x did:x%x",
749 irsp->ulpStatus, irsp->un.ulpWord[4], did);
750
James Smart92d7f7b2007-06-17 19:56:38 -0500751 if (irsp->ulpStatus == IOSTAT_SUCCESS) {
752 /* Good status, continue checking */
753 CTrsp = (struct lpfc_sli_ct_request *) outp->virt;
754 fbits = CTrsp->un.gff_acc.fbits[FCP_TYPE_FEATURE_OFFSET];
755
756 if (CTrsp->CommandResponse.bits.CmdRsp ==
757 be16_to_cpu(SLI_CT_RESPONSE_FS_ACC)) {
758 if ((fbits & FC4_FEATURE_INIT) &&
759 !(fbits & FC4_FEATURE_TARGET)) {
James Smarte8b62012007-08-02 11:10:09 -0400760 lpfc_printf_vlog(vport, KERN_INFO,
761 LOG_DISCOVERY,
762 "0270 Skip x%x GFF "
763 "NameServer Rsp Data: (init) "
764 "x%x x%x\n", did, fbits,
765 vport->fc_rscn_id_cnt);
James Smart92d7f7b2007-06-17 19:56:38 -0500766 goto out;
767 }
768 }
769 }
James Smart858c9f62007-06-17 19:56:39 -0500770 else {
James Smart0ff10d42008-01-11 01:52:36 -0500771 /* Check for retry */
772 if (cmdiocb->retry < LPFC_MAX_NS_RETRY) {
773 retry = 1;
774 if (irsp->ulpStatus == IOSTAT_LOCAL_REJECT) {
James Smarte3d2b802012-08-14 14:25:43 -0400775 switch ((irsp->un.ulpWord[4] &
776 IOERR_PARAM_MASK)) {
777
James Smart0ff10d42008-01-11 01:52:36 -0500778 case IOERR_NO_RESOURCES:
779 /* We don't increment the retry
780 * count for this case.
781 */
782 break;
783 case IOERR_LINK_DOWN:
784 case IOERR_SLI_ABORTED:
785 case IOERR_SLI_DOWN:
786 retry = 0;
787 break;
788 default:
789 cmdiocb->retry++;
790 }
791 }
792 else
793 cmdiocb->retry++;
794
795 if (retry) {
796 /* CT command is being retried */
797 rc = lpfc_ns_cmd(vport, SLI_CTNS_GFF_ID,
798 cmdiocb->retry, did);
799 if (rc == 0) {
800 /* success */
801 lpfc_ct_free_iocb(phba, cmdiocb);
802 return;
803 }
804 }
805 }
James Smarte8b62012007-08-02 11:10:09 -0400806 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
807 "0267 NameServer GFF Rsp "
808 "x%x Error (%d %d) Data: x%x x%x\n",
809 did, irsp->ulpStatus, irsp->un.ulpWord[4],
James Smart7f5f3d02008-02-08 18:50:14 -0500810 vport->fc_flag, vport->fc_rscn_id_cnt);
James Smart858c9f62007-06-17 19:56:39 -0500811 }
812
James Smart92d7f7b2007-06-17 19:56:38 -0500813 /* This is a target port, unregistered port, or the GFF_ID failed */
814 ndlp = lpfc_setup_disc_node(vport, did);
James Smart58da1ff2008-04-07 10:15:56 -0400815 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
James Smarte8b62012007-08-02 11:10:09 -0400816 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
817 "0242 Process x%x GFF "
818 "NameServer Rsp Data: x%x x%x x%x\n",
819 did, ndlp->nlp_flag, vport->fc_flag,
820 vport->fc_rscn_id_cnt);
James Smart92d7f7b2007-06-17 19:56:38 -0500821 } else {
James Smarte8b62012007-08-02 11:10:09 -0400822 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
823 "0243 Skip x%x GFF "
824 "NameServer Rsp Data: x%x x%x\n", did,
825 vport->fc_flag, vport->fc_rscn_id_cnt);
James Smart92d7f7b2007-06-17 19:56:38 -0500826 }
827out:
828 /* Link up / RSCN discovery */
829 if (vport->num_disc_nodes)
830 vport->num_disc_nodes--;
831 if (vport->num_disc_nodes == 0) {
832 /*
833 * The driver has cycled through all Nports in the RSCN payload.
834 * Complete the handling by cleaning up and marking the
835 * current driver state.
836 */
837 if (vport->port_state >= LPFC_DISC_AUTH) {
838 if (vport->fc_flag & FC_RSCN_MODE) {
839 lpfc_els_flush_rscn(vport);
840 spin_lock_irq(shost->host_lock);
841 vport->fc_flag |= FC_RSCN_MODE; /* RSCN still */
842 spin_unlock_irq(shost->host_lock);
843 }
844 else
845 lpfc_els_flush_rscn(vport);
846 }
847 lpfc_disc_start(vport);
848 }
James Smart858c9f62007-06-17 19:56:39 -0500849 lpfc_ct_free_iocb(phba, cmdiocb);
James Smart92d7f7b2007-06-17 19:56:38 -0500850 return;
851}
852
853
dea31012005-04-17 16:05:31 -0500854static void
James Smart7ee5d432007-10-27 13:37:17 -0400855lpfc_cmpl_ct(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
856 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -0500857{
James Smart92d7f7b2007-06-17 19:56:38 -0500858 struct lpfc_vport *vport = cmdiocb->vport;
dea31012005-04-17 16:05:31 -0500859 struct lpfc_dmabuf *inp;
860 struct lpfc_dmabuf *outp;
861 IOCB_t *irsp;
862 struct lpfc_sli_ct_request *CTrsp;
James Smart51ef4c22007-08-02 11:10:31 -0400863 struct lpfc_nodelist *ndlp;
James Smart92d7f7b2007-06-17 19:56:38 -0500864 int cmdcode, rc;
865 uint8_t retry;
James Smart858c9f62007-06-17 19:56:39 -0500866 uint32_t latt;
dea31012005-04-17 16:05:31 -0500867
James Smart51ef4c22007-08-02 11:10:31 -0400868 /* First save ndlp, before we overwrite it */
869 ndlp = cmdiocb->context_un.ndlp;
870
dea31012005-04-17 16:05:31 -0500871 /* we pass cmdiocb to state machine which needs rspiocb as well */
872 cmdiocb->context_un.rsp_iocb = rspiocb;
873
874 inp = (struct lpfc_dmabuf *) cmdiocb->context1;
875 outp = (struct lpfc_dmabuf *) cmdiocb->context2;
dea31012005-04-17 16:05:31 -0500876 irsp = &rspiocb->iocb;
877
James Smart92d7f7b2007-06-17 19:56:38 -0500878 cmdcode = be16_to_cpu(((struct lpfc_sli_ct_request *) inp->virt)->
879 CommandResponse.bits.CmdRsp);
dea31012005-04-17 16:05:31 -0500880 CTrsp = (struct lpfc_sli_ct_request *) outp->virt;
881
James Smart858c9f62007-06-17 19:56:39 -0500882 latt = lpfc_els_chk_latt(vport);
883
884 /* RFT request completes status <ulpStatus> CmdRsp <CmdRsp> */
James Smarte8b62012007-08-02 11:10:09 -0400885 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
James Smart7ee5d432007-10-27 13:37:17 -0400886 "0209 CT Request completes, latt %d, "
James Smarte8b62012007-08-02 11:10:09 -0400887 "ulpStatus x%x CmdRsp x%x, Context x%x, Tag x%x\n",
888 latt, irsp->ulpStatus,
889 CTrsp->CommandResponse.bits.CmdRsp,
890 cmdiocb->iocb.ulpContext, cmdiocb->iocb.ulpIoTag);
dea31012005-04-17 16:05:31 -0500891
James Smart858c9f62007-06-17 19:56:39 -0500892 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_CT,
893 "CT cmd cmpl: status:x%x/x%x cmd:x%x",
894 irsp->ulpStatus, irsp->un.ulpWord[4], cmdcode);
895
James Smart92d7f7b2007-06-17 19:56:38 -0500896 if (irsp->ulpStatus) {
James Smarte8b62012007-08-02 11:10:09 -0400897 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
James Smart6e155202013-07-15 18:35:21 -0400898 "0268 NS cmd x%x Error (x%x x%x)\n",
James Smarte8b62012007-08-02 11:10:09 -0400899 cmdcode, irsp->ulpStatus, irsp->un.ulpWord[4]);
James Smart858c9f62007-06-17 19:56:39 -0500900
James Smart92d7f7b2007-06-17 19:56:38 -0500901 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
James Smarte3d2b802012-08-14 14:25:43 -0400902 (((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
903 IOERR_SLI_DOWN) ||
904 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
905 IOERR_SLI_ABORTED)))
James Smart92d7f7b2007-06-17 19:56:38 -0500906 goto out;
907
908 retry = cmdiocb->retry;
909 if (retry >= LPFC_MAX_NS_RETRY)
910 goto out;
911
912 retry++;
James Smarte8b62012007-08-02 11:10:09 -0400913 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
James Smartd7c255b2008-08-24 21:50:00 -0400914 "0250 Retrying NS cmd %x\n", cmdcode);
James Smart92d7f7b2007-06-17 19:56:38 -0500915 rc = lpfc_ns_cmd(vport, cmdcode, retry, 0);
916 if (rc == 0)
917 goto out;
918 }
919
920out:
James Smart51ef4c22007-08-02 11:10:31 -0400921 cmdiocb->context_un.ndlp = ndlp; /* Now restore ndlp for free */
James Smart858c9f62007-06-17 19:56:39 -0500922 lpfc_ct_free_iocb(phba, cmdiocb);
dea31012005-04-17 16:05:31 -0500923 return;
924}
925
926static void
James Smart7ee5d432007-10-27 13:37:17 -0400927lpfc_cmpl_ct_cmd_rft_id(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
928 struct lpfc_iocbq *rspiocb)
929{
930 IOCB_t *irsp = &rspiocb->iocb;
931 struct lpfc_vport *vport = cmdiocb->vport;
932
James Smart98c9ea52007-10-27 13:37:33 -0400933 if (irsp->ulpStatus == IOSTAT_SUCCESS) {
934 struct lpfc_dmabuf *outp;
935 struct lpfc_sli_ct_request *CTrsp;
936
937 outp = (struct lpfc_dmabuf *) cmdiocb->context2;
938 CTrsp = (struct lpfc_sli_ct_request *) outp->virt;
939 if (CTrsp->CommandResponse.bits.CmdRsp ==
940 be16_to_cpu(SLI_CT_RESPONSE_FS_ACC))
941 vport->ct_flags |= FC_CT_RFT_ID;
942 }
James Smart7ee5d432007-10-27 13:37:17 -0400943 lpfc_cmpl_ct(phba, cmdiocb, rspiocb);
944 return;
945}
946
947static void
James Smart2e0fef82007-06-17 19:56:36 -0500948lpfc_cmpl_ct_cmd_rnn_id(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
949 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -0500950{
James Smart7ee5d432007-10-27 13:37:17 -0400951 IOCB_t *irsp = &rspiocb->iocb;
952 struct lpfc_vport *vport = cmdiocb->vport;
953
James Smart98c9ea52007-10-27 13:37:33 -0400954 if (irsp->ulpStatus == IOSTAT_SUCCESS) {
955 struct lpfc_dmabuf *outp;
956 struct lpfc_sli_ct_request *CTrsp;
957
958 outp = (struct lpfc_dmabuf *) cmdiocb->context2;
959 CTrsp = (struct lpfc_sli_ct_request *) outp->virt;
960 if (CTrsp->CommandResponse.bits.CmdRsp ==
961 be16_to_cpu(SLI_CT_RESPONSE_FS_ACC))
962 vport->ct_flags |= FC_CT_RNN_ID;
963 }
James Smart7ee5d432007-10-27 13:37:17 -0400964 lpfc_cmpl_ct(phba, cmdiocb, rspiocb);
dea31012005-04-17 16:05:31 -0500965 return;
966}
967
968static void
James Smart92d7f7b2007-06-17 19:56:38 -0500969lpfc_cmpl_ct_cmd_rspn_id(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
970 struct lpfc_iocbq *rspiocb)
971{
James Smart7ee5d432007-10-27 13:37:17 -0400972 IOCB_t *irsp = &rspiocb->iocb;
973 struct lpfc_vport *vport = cmdiocb->vport;
974
James Smart98c9ea52007-10-27 13:37:33 -0400975 if (irsp->ulpStatus == IOSTAT_SUCCESS) {
976 struct lpfc_dmabuf *outp;
977 struct lpfc_sli_ct_request *CTrsp;
978
979 outp = (struct lpfc_dmabuf *) cmdiocb->context2;
980 CTrsp = (struct lpfc_sli_ct_request *) outp->virt;
981 if (CTrsp->CommandResponse.bits.CmdRsp ==
982 be16_to_cpu(SLI_CT_RESPONSE_FS_ACC))
983 vport->ct_flags |= FC_CT_RSPN_ID;
984 }
James Smart7ee5d432007-10-27 13:37:17 -0400985 lpfc_cmpl_ct(phba, cmdiocb, rspiocb);
James Smart92d7f7b2007-06-17 19:56:38 -0500986 return;
987}
988
989static void
James Smart2e0fef82007-06-17 19:56:36 -0500990lpfc_cmpl_ct_cmd_rsnn_nn(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
991 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -0500992{
James Smart7ee5d432007-10-27 13:37:17 -0400993 IOCB_t *irsp = &rspiocb->iocb;
994 struct lpfc_vport *vport = cmdiocb->vport;
995
James Smart98c9ea52007-10-27 13:37:33 -0400996 if (irsp->ulpStatus == IOSTAT_SUCCESS) {
997 struct lpfc_dmabuf *outp;
998 struct lpfc_sli_ct_request *CTrsp;
999
1000 outp = (struct lpfc_dmabuf *) cmdiocb->context2;
1001 CTrsp = (struct lpfc_sli_ct_request *) outp->virt;
1002 if (CTrsp->CommandResponse.bits.CmdRsp ==
1003 be16_to_cpu(SLI_CT_RESPONSE_FS_ACC))
1004 vport->ct_flags |= FC_CT_RSNN_NN;
1005 }
James Smart7ee5d432007-10-27 13:37:17 -04001006 lpfc_cmpl_ct(phba, cmdiocb, rspiocb);
1007 return;
1008}
1009
1010static void
1011lpfc_cmpl_ct_cmd_da_id(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1012 struct lpfc_iocbq *rspiocb)
1013{
1014 struct lpfc_vport *vport = cmdiocb->vport;
1015
1016 /* even if it fails we will act as though it succeeded. */
1017 vport->ct_flags = 0;
1018 lpfc_cmpl_ct(phba, cmdiocb, rspiocb);
dea31012005-04-17 16:05:31 -05001019 return;
1020}
1021
James Smart2fb9bd82006-12-02 13:33:57 -05001022static void
James Smart92d7f7b2007-06-17 19:56:38 -05001023lpfc_cmpl_ct_cmd_rff_id(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1024 struct lpfc_iocbq *rspiocb)
James Smart2fb9bd82006-12-02 13:33:57 -05001025{
James Smart92d7f7b2007-06-17 19:56:38 -05001026 IOCB_t *irsp = &rspiocb->iocb;
1027 struct lpfc_vport *vport = cmdiocb->vport;
1028
James Smart98c9ea52007-10-27 13:37:33 -04001029 if (irsp->ulpStatus == IOSTAT_SUCCESS) {
1030 struct lpfc_dmabuf *outp;
1031 struct lpfc_sli_ct_request *CTrsp;
1032
1033 outp = (struct lpfc_dmabuf *) cmdiocb->context2;
1034 CTrsp = (struct lpfc_sli_ct_request *) outp->virt;
1035 if (CTrsp->CommandResponse.bits.CmdRsp ==
1036 be16_to_cpu(SLI_CT_RESPONSE_FS_ACC))
1037 vport->ct_flags |= FC_CT_RFF_ID;
1038 }
James Smart7ee5d432007-10-27 13:37:17 -04001039 lpfc_cmpl_ct(phba, cmdiocb, rspiocb);
James Smart2fb9bd82006-12-02 13:33:57 -05001040 return;
1041}
1042
James Smart495a7142008-06-14 22:52:59 -04001043int
James Smart92d7f7b2007-06-17 19:56:38 -05001044lpfc_vport_symbolic_port_name(struct lpfc_vport *vport, char *symbol,
1045 size_t size)
1046{
1047 int n;
1048 uint8_t *wwn = vport->phba->wwpn;
1049
1050 n = snprintf(symbol, size,
1051 "Emulex PPN-%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x",
1052 wwn[0], wwn[1], wwn[2], wwn[3],
1053 wwn[4], wwn[5], wwn[6], wwn[7]);
1054
1055 if (vport->port_type == LPFC_PHYSICAL_PORT)
1056 return n;
1057
1058 if (n < size)
1059 n += snprintf(symbol + n, size - n, " VPort-%d", vport->vpi);
1060
James Smarteada2722008-12-04 22:39:13 -05001061 if (n < size &&
1062 strlen(vport->fc_vport->symbolic_name))
1063 n += snprintf(symbol + n, size - n, " VName-%s",
1064 vport->fc_vport->symbolic_name);
James Smart92d7f7b2007-06-17 19:56:38 -05001065 return n;
1066}
1067
1068int
1069lpfc_vport_symbolic_node_name(struct lpfc_vport *vport, char *symbol,
1070 size_t size)
dea31012005-04-17 16:05:31 -05001071{
James Smart6b5151f2012-01-18 16:24:06 -05001072 char fwrev[FW_REV_STR_SIZE];
James Smart92d7f7b2007-06-17 19:56:38 -05001073 int n;
dea31012005-04-17 16:05:31 -05001074
James Smart92d7f7b2007-06-17 19:56:38 -05001075 lpfc_decode_firmware_rev(vport->phba, fwrev, 0);
dea31012005-04-17 16:05:31 -05001076
James Smartf0bf5f92015-04-07 15:07:18 -04001077 n = snprintf(symbol, size, "Emulex %s", vport->phba->ModelName);
1078
1079 if (size < n)
1080 return n;
1081 n += snprintf(symbol + n, size - n, " FV%s", fwrev);
1082
1083 if (size < n)
1084 return n;
1085 n += snprintf(symbol + n, size - n, " DV%s", lpfc_release_version);
1086
1087 if (size < n)
1088 return n;
1089 n += snprintf(symbol + n, size - n, " HN:%s", init_utsname()->nodename);
1090
1091 /* Note :- OS name is "Linux" */
1092 if (size < n)
1093 return n;
1094 n += snprintf(symbol + n, size - n, " OS:%s", init_utsname()->sysname);
1095
James Smart92d7f7b2007-06-17 19:56:38 -05001096 return n;
dea31012005-04-17 16:05:31 -05001097}
1098
James Smart76b2c342015-04-07 15:07:19 -04001099static uint32_t
1100lpfc_find_map_node(struct lpfc_vport *vport)
1101{
1102 struct lpfc_nodelist *ndlp, *next_ndlp;
1103 struct Scsi_Host *shost;
1104 uint32_t cnt = 0;
1105
1106 shost = lpfc_shost_from_vport(vport);
1107 spin_lock_irq(shost->host_lock);
1108 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
1109 if (ndlp->nlp_type & NLP_FABRIC)
1110 continue;
1111 if ((ndlp->nlp_state == NLP_STE_MAPPED_NODE) ||
1112 (ndlp->nlp_state == NLP_STE_UNMAPPED_NODE))
1113 cnt++;
1114 }
1115 spin_unlock_irq(shost->host_lock);
1116 return cnt;
1117}
1118
dea31012005-04-17 16:05:31 -05001119/*
1120 * lpfc_ns_cmd
1121 * Description:
1122 * Issue Cmd to NameServer
1123 * SLI_CTNS_GID_FT
1124 * LI_CTNS_RFT_ID
1125 */
1126int
James Smart92d7f7b2007-06-17 19:56:38 -05001127lpfc_ns_cmd(struct lpfc_vport *vport, int cmdcode,
1128 uint8_t retry, uint32_t context)
dea31012005-04-17 16:05:31 -05001129{
James Smart92d7f7b2007-06-17 19:56:38 -05001130 struct lpfc_nodelist * ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05001131 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001132 struct lpfc_dmabuf *mp, *bmp;
1133 struct lpfc_sli_ct_request *CtReq;
1134 struct ulp_bde64 *bpl;
1135 void (*cmpl) (struct lpfc_hba *, struct lpfc_iocbq *,
1136 struct lpfc_iocbq *) = NULL;
1137 uint32_t rsp_size = 1024;
James Smart92d7f7b2007-06-17 19:56:38 -05001138 size_t size;
James Smart858c9f62007-06-17 19:56:39 -05001139 int rc = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05001140
1141 ndlp = lpfc_findnode_did(vport, NameServer_DID);
James Smarte47c9092008-02-08 18:49:26 -05001142 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)
1143 || ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) {
James Smart858c9f62007-06-17 19:56:39 -05001144 rc=1;
1145 goto ns_cmd_exit;
1146 }
dea31012005-04-17 16:05:31 -05001147
1148 /* fill in BDEs for command */
1149 /* Allocate buffer for command payload */
1150 mp = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL);
James Smart858c9f62007-06-17 19:56:39 -05001151 if (!mp) {
1152 rc=2;
dea31012005-04-17 16:05:31 -05001153 goto ns_cmd_exit;
James Smart858c9f62007-06-17 19:56:39 -05001154 }
dea31012005-04-17 16:05:31 -05001155
1156 INIT_LIST_HEAD(&mp->list);
1157 mp->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &(mp->phys));
James Smart858c9f62007-06-17 19:56:39 -05001158 if (!mp->virt) {
1159 rc=3;
dea31012005-04-17 16:05:31 -05001160 goto ns_cmd_free_mp;
James Smart858c9f62007-06-17 19:56:39 -05001161 }
dea31012005-04-17 16:05:31 -05001162
1163 /* Allocate buffer for Buffer ptr list */
1164 bmp = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL);
James Smart858c9f62007-06-17 19:56:39 -05001165 if (!bmp) {
1166 rc=4;
dea31012005-04-17 16:05:31 -05001167 goto ns_cmd_free_mpvirt;
James Smart858c9f62007-06-17 19:56:39 -05001168 }
dea31012005-04-17 16:05:31 -05001169
1170 INIT_LIST_HEAD(&bmp->list);
1171 bmp->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &(bmp->phys));
James Smart858c9f62007-06-17 19:56:39 -05001172 if (!bmp->virt) {
1173 rc=5;
dea31012005-04-17 16:05:31 -05001174 goto ns_cmd_free_bmp;
James Smart858c9f62007-06-17 19:56:39 -05001175 }
dea31012005-04-17 16:05:31 -05001176
1177 /* NameServer Req */
James Smarte8b62012007-08-02 11:10:09 -04001178 lpfc_printf_vlog(vport, KERN_INFO ,LOG_DISCOVERY,
1179 "0236 NameServer Req Data: x%x x%x x%x\n",
1180 cmdcode, vport->fc_flag, vport->fc_rscn_id_cnt);
dea31012005-04-17 16:05:31 -05001181
1182 bpl = (struct ulp_bde64 *) bmp->virt;
1183 memset(bpl, 0, sizeof(struct ulp_bde64));
James Smart92d7f7b2007-06-17 19:56:38 -05001184 bpl->addrHigh = le32_to_cpu(putPaddrHigh(mp->phys) );
1185 bpl->addrLow = le32_to_cpu(putPaddrLow(mp->phys) );
dea31012005-04-17 16:05:31 -05001186 bpl->tus.f.bdeFlags = 0;
1187 if (cmdcode == SLI_CTNS_GID_FT)
1188 bpl->tus.f.bdeSize = GID_REQUEST_SZ;
James Smart92d7f7b2007-06-17 19:56:38 -05001189 else if (cmdcode == SLI_CTNS_GFF_ID)
1190 bpl->tus.f.bdeSize = GFF_REQUEST_SZ;
dea31012005-04-17 16:05:31 -05001191 else if (cmdcode == SLI_CTNS_RFT_ID)
1192 bpl->tus.f.bdeSize = RFT_REQUEST_SZ;
1193 else if (cmdcode == SLI_CTNS_RNN_ID)
1194 bpl->tus.f.bdeSize = RNN_REQUEST_SZ;
James Smart92d7f7b2007-06-17 19:56:38 -05001195 else if (cmdcode == SLI_CTNS_RSPN_ID)
1196 bpl->tus.f.bdeSize = RSPN_REQUEST_SZ;
dea31012005-04-17 16:05:31 -05001197 else if (cmdcode == SLI_CTNS_RSNN_NN)
1198 bpl->tus.f.bdeSize = RSNN_REQUEST_SZ;
James Smart7ee5d432007-10-27 13:37:17 -04001199 else if (cmdcode == SLI_CTNS_DA_ID)
1200 bpl->tus.f.bdeSize = DA_ID_REQUEST_SZ;
James Smart2fb9bd82006-12-02 13:33:57 -05001201 else if (cmdcode == SLI_CTNS_RFF_ID)
1202 bpl->tus.f.bdeSize = RFF_REQUEST_SZ;
dea31012005-04-17 16:05:31 -05001203 else
1204 bpl->tus.f.bdeSize = 0;
1205 bpl->tus.w = le32_to_cpu(bpl->tus.w);
1206
1207 CtReq = (struct lpfc_sli_ct_request *) mp->virt;
1208 memset(CtReq, 0, sizeof (struct lpfc_sli_ct_request));
1209 CtReq->RevisionId.bits.Revision = SLI_CT_REVISION;
1210 CtReq->RevisionId.bits.InId = 0;
1211 CtReq->FsType = SLI_CT_DIRECTORY_SERVICE;
1212 CtReq->FsSubType = SLI_CT_DIRECTORY_NAME_SERVER;
1213 CtReq->CommandResponse.bits.Size = 0;
1214 switch (cmdcode) {
1215 case SLI_CTNS_GID_FT:
1216 CtReq->CommandResponse.bits.CmdRsp =
James Smart76b2c342015-04-07 15:07:19 -04001217 cpu_to_be16(SLI_CTNS_GID_FT);
dea31012005-04-17 16:05:31 -05001218 CtReq->un.gid.Fc4Type = SLI_CTPT_FCP;
James Smart92d7f7b2007-06-17 19:56:38 -05001219 if (vport->port_state < LPFC_NS_QRY)
James Smart2e0fef82007-06-17 19:56:36 -05001220 vport->port_state = LPFC_NS_QRY;
1221 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05001222 cmpl = lpfc_cmpl_ct_cmd_gid_ft;
1223 rsp_size = FC_MAX_NS_RSP;
1224 break;
1225
James Smart92d7f7b2007-06-17 19:56:38 -05001226 case SLI_CTNS_GFF_ID:
1227 CtReq->CommandResponse.bits.CmdRsp =
James Smart76b2c342015-04-07 15:07:19 -04001228 cpu_to_be16(SLI_CTNS_GFF_ID);
James Smart09372822008-01-11 01:52:54 -05001229 CtReq->un.gff.PortId = cpu_to_be32(context);
James Smart92d7f7b2007-06-17 19:56:38 -05001230 cmpl = lpfc_cmpl_ct_cmd_gff_id;
1231 break;
1232
dea31012005-04-17 16:05:31 -05001233 case SLI_CTNS_RFT_ID:
James Smart7ee5d432007-10-27 13:37:17 -04001234 vport->ct_flags &= ~FC_CT_RFT_ID;
dea31012005-04-17 16:05:31 -05001235 CtReq->CommandResponse.bits.CmdRsp =
James Smart76b2c342015-04-07 15:07:19 -04001236 cpu_to_be16(SLI_CTNS_RFT_ID);
James Smart09372822008-01-11 01:52:54 -05001237 CtReq->un.rft.PortId = cpu_to_be32(vport->fc_myDID);
dea31012005-04-17 16:05:31 -05001238 CtReq->un.rft.fcpReg = 1;
1239 cmpl = lpfc_cmpl_ct_cmd_rft_id;
1240 break;
1241
1242 case SLI_CTNS_RNN_ID:
James Smart7ee5d432007-10-27 13:37:17 -04001243 vport->ct_flags &= ~FC_CT_RNN_ID;
dea31012005-04-17 16:05:31 -05001244 CtReq->CommandResponse.bits.CmdRsp =
James Smart76b2c342015-04-07 15:07:19 -04001245 cpu_to_be16(SLI_CTNS_RNN_ID);
James Smart09372822008-01-11 01:52:54 -05001246 CtReq->un.rnn.PortId = cpu_to_be32(vport->fc_myDID);
James Smart2e0fef82007-06-17 19:56:36 -05001247 memcpy(CtReq->un.rnn.wwnn, &vport->fc_nodename,
dea31012005-04-17 16:05:31 -05001248 sizeof (struct lpfc_name));
1249 cmpl = lpfc_cmpl_ct_cmd_rnn_id;
1250 break;
1251
James Smart92d7f7b2007-06-17 19:56:38 -05001252 case SLI_CTNS_RSPN_ID:
James Smart7ee5d432007-10-27 13:37:17 -04001253 vport->ct_flags &= ~FC_CT_RSPN_ID;
James Smart92d7f7b2007-06-17 19:56:38 -05001254 CtReq->CommandResponse.bits.CmdRsp =
James Smart76b2c342015-04-07 15:07:19 -04001255 cpu_to_be16(SLI_CTNS_RSPN_ID);
James Smart09372822008-01-11 01:52:54 -05001256 CtReq->un.rspn.PortId = cpu_to_be32(vport->fc_myDID);
James Smart92d7f7b2007-06-17 19:56:38 -05001257 size = sizeof(CtReq->un.rspn.symbname);
1258 CtReq->un.rspn.len =
1259 lpfc_vport_symbolic_port_name(vport,
1260 CtReq->un.rspn.symbname, size);
1261 cmpl = lpfc_cmpl_ct_cmd_rspn_id;
1262 break;
dea31012005-04-17 16:05:31 -05001263 case SLI_CTNS_RSNN_NN:
James Smart7ee5d432007-10-27 13:37:17 -04001264 vport->ct_flags &= ~FC_CT_RSNN_NN;
dea31012005-04-17 16:05:31 -05001265 CtReq->CommandResponse.bits.CmdRsp =
James Smart76b2c342015-04-07 15:07:19 -04001266 cpu_to_be16(SLI_CTNS_RSNN_NN);
James Smart2e0fef82007-06-17 19:56:36 -05001267 memcpy(CtReq->un.rsnn.wwnn, &vport->fc_nodename,
dea31012005-04-17 16:05:31 -05001268 sizeof (struct lpfc_name));
James Smart92d7f7b2007-06-17 19:56:38 -05001269 size = sizeof(CtReq->un.rsnn.symbname);
1270 CtReq->un.rsnn.len =
1271 lpfc_vport_symbolic_node_name(vport,
1272 CtReq->un.rsnn.symbname, size);
dea31012005-04-17 16:05:31 -05001273 cmpl = lpfc_cmpl_ct_cmd_rsnn_nn;
1274 break;
James Smart7ee5d432007-10-27 13:37:17 -04001275 case SLI_CTNS_DA_ID:
1276 /* Implement DA_ID Nameserver request */
1277 CtReq->CommandResponse.bits.CmdRsp =
James Smart76b2c342015-04-07 15:07:19 -04001278 cpu_to_be16(SLI_CTNS_DA_ID);
James Smart09372822008-01-11 01:52:54 -05001279 CtReq->un.da_id.port_id = cpu_to_be32(vport->fc_myDID);
James Smart7ee5d432007-10-27 13:37:17 -04001280 cmpl = lpfc_cmpl_ct_cmd_da_id;
1281 break;
James Smart92d7f7b2007-06-17 19:56:38 -05001282 case SLI_CTNS_RFF_ID:
James Smart7ee5d432007-10-27 13:37:17 -04001283 vport->ct_flags &= ~FC_CT_RFF_ID;
James Smart92d7f7b2007-06-17 19:56:38 -05001284 CtReq->CommandResponse.bits.CmdRsp =
James Smart76b2c342015-04-07 15:07:19 -04001285 cpu_to_be16(SLI_CTNS_RFF_ID);
Joe Perchesa419aef2009-08-18 11:18:35 -07001286 CtReq->un.rff.PortId = cpu_to_be32(vport->fc_myDID);
James Smart92d7f7b2007-06-17 19:56:38 -05001287 CtReq->un.rff.fbits = FC4_FEATURE_INIT;
James Smart6a9c52c2009-10-02 15:16:51 -04001288 CtReq->un.rff.type_code = FC_TYPE_FCP;
James Smart92d7f7b2007-06-17 19:56:38 -05001289 cmpl = lpfc_cmpl_ct_cmd_rff_id;
1290 break;
dea31012005-04-17 16:05:31 -05001291 }
James Smarte47c9092008-02-08 18:49:26 -05001292 /* The lpfc_ct_cmd/lpfc_get_req shall increment ndlp reference count
1293 * to hold ndlp reference for the corresponding callback function.
1294 */
James Smart858c9f62007-06-17 19:56:39 -05001295 if (!lpfc_ct_cmd(vport, mp, bmp, ndlp, cmpl, rsp_size, retry)) {
dea31012005-04-17 16:05:31 -05001296 /* On success, The cmpl function will free the buffers */
James Smart858c9f62007-06-17 19:56:39 -05001297 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_CT,
1298 "Issue CT cmd: cmd:x%x did:x%x",
1299 cmdcode, ndlp->nlp_DID, 0);
dea31012005-04-17 16:05:31 -05001300 return 0;
James Smart858c9f62007-06-17 19:56:39 -05001301 }
James Smart858c9f62007-06-17 19:56:39 -05001302 rc=6;
James Smarte47c9092008-02-08 18:49:26 -05001303
1304 /* Decrement ndlp reference count to release ndlp reference held
1305 * for the failed command's callback function.
1306 */
James Smart51ef4c22007-08-02 11:10:31 -04001307 lpfc_nlp_put(ndlp);
James Smarte47c9092008-02-08 18:49:26 -05001308
dea31012005-04-17 16:05:31 -05001309 lpfc_mbuf_free(phba, bmp->virt, bmp->phys);
1310ns_cmd_free_bmp:
1311 kfree(bmp);
1312ns_cmd_free_mpvirt:
1313 lpfc_mbuf_free(phba, mp->virt, mp->phys);
1314ns_cmd_free_mp:
1315 kfree(mp);
1316ns_cmd_exit:
James Smarte8b62012007-08-02 11:10:09 -04001317 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
1318 "0266 Issue NameServer Req x%x err %d Data: x%x x%x\n",
1319 cmdcode, rc, vport->fc_flag, vport->fc_rscn_id_cnt);
dea31012005-04-17 16:05:31 -05001320 return 1;
1321}
1322
1323static void
James Smart2e0fef82007-06-17 19:56:36 -05001324lpfc_cmpl_ct_cmd_fdmi(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1325 struct lpfc_iocbq * rspiocb)
dea31012005-04-17 16:05:31 -05001326{
dea31012005-04-17 16:05:31 -05001327 struct lpfc_dmabuf *inp = cmdiocb->context1;
1328 struct lpfc_dmabuf *outp = cmdiocb->context2;
1329 struct lpfc_sli_ct_request *CTrsp = outp->virt;
1330 struct lpfc_sli_ct_request *CTcmd = inp->virt;
1331 struct lpfc_nodelist *ndlp;
1332 uint16_t fdmi_cmd = CTcmd->CommandResponse.bits.CmdRsp;
1333 uint16_t fdmi_rsp = CTrsp->CommandResponse.bits.CmdRsp;
James Smart2e0fef82007-06-17 19:56:36 -05001334 struct lpfc_vport *vport = cmdiocb->vport;
James Smart858c9f62007-06-17 19:56:39 -05001335 IOCB_t *irsp = &rspiocb->iocb;
1336 uint32_t latt;
1337
1338 latt = lpfc_els_chk_latt(vport);
James Smart858c9f62007-06-17 19:56:39 -05001339 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_CT,
1340 "FDMI cmpl: status:x%x/x%x latt:%d",
1341 irsp->ulpStatus, irsp->un.ulpWord[4], latt);
1342
1343 if (latt || irsp->ulpStatus) {
James Smarte8b62012007-08-02 11:10:09 -04001344 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
1345 "0229 FDMI cmd %04x failed, latt = %d "
1346 "ulpStatus: x%x, rid x%x\n",
1347 be16_to_cpu(fdmi_cmd), latt, irsp->ulpStatus,
1348 irsp->un.ulpWord[4]);
James Smart76b2c342015-04-07 15:07:19 -04001349 goto fail_out;
James Smart858c9f62007-06-17 19:56:39 -05001350 }
dea31012005-04-17 16:05:31 -05001351
James Smart2e0fef82007-06-17 19:56:36 -05001352 ndlp = lpfc_findnode_did(vport, FDMI_DID);
James Smarte47c9092008-02-08 18:49:26 -05001353 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
1354 goto fail_out;
1355
James Smart76b2c342015-04-07 15:07:19 -04001356 if (fdmi_rsp == cpu_to_be16(SLI_CT_RESPONSE_FS_RJT)) {
dea31012005-04-17 16:05:31 -05001357 /* FDMI rsp failed */
James Smarte8b62012007-08-02 11:10:09 -04001358 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
1359 "0220 FDMI rsp failed Data: x%x\n",
1360 be16_to_cpu(fdmi_cmd));
dea31012005-04-17 16:05:31 -05001361 }
1362
James Smart76b2c342015-04-07 15:07:19 -04001363fail_out:
1364 lpfc_ct_free_iocb(phba, cmdiocb);
1365}
1366
1367static void
1368lpfc_cmpl_ct_disc_fdmi(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1369 struct lpfc_iocbq *rspiocb)
1370{
1371 struct lpfc_vport *vport = cmdiocb->vport;
1372 struct lpfc_dmabuf *inp = cmdiocb->context1;
1373 struct lpfc_sli_ct_request *CTcmd = inp->virt;
1374 uint16_t fdmi_cmd = CTcmd->CommandResponse.bits.CmdRsp;
1375 struct lpfc_nodelist *ndlp;
1376
1377 lpfc_cmpl_ct_cmd_fdmi(phba, cmdiocb, rspiocb);
1378
1379 ndlp = lpfc_findnode_did(vport, FDMI_DID);
1380 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
1381 return;
1382
1383 /*
1384 * Need to cycle thru FDMI registration for discovery
1385 * DHBA -> DPRT -> RHBA -> RPA
1386 */
dea31012005-04-17 16:05:31 -05001387 switch (be16_to_cpu(fdmi_cmd)) {
1388 case SLI_MGMT_RHBA:
James Smart2e0fef82007-06-17 19:56:36 -05001389 lpfc_fdmi_cmd(vport, ndlp, SLI_MGMT_RPA);
dea31012005-04-17 16:05:31 -05001390 break;
1391
dea31012005-04-17 16:05:31 -05001392 case SLI_MGMT_DHBA:
James Smart2e0fef82007-06-17 19:56:36 -05001393 lpfc_fdmi_cmd(vport, ndlp, SLI_MGMT_DPRT);
dea31012005-04-17 16:05:31 -05001394 break;
1395
1396 case SLI_MGMT_DPRT:
James Smart2e0fef82007-06-17 19:56:36 -05001397 lpfc_fdmi_cmd(vport, ndlp, SLI_MGMT_RHBA);
dea31012005-04-17 16:05:31 -05001398 break;
1399 }
dea31012005-04-17 16:05:31 -05001400}
James Smart2e0fef82007-06-17 19:56:36 -05001401
James Smart76b2c342015-04-07 15:07:19 -04001402
dea31012005-04-17 16:05:31 -05001403int
James Smart2e0fef82007-06-17 19:56:36 -05001404lpfc_fdmi_cmd(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp, int cmdcode)
dea31012005-04-17 16:05:31 -05001405{
James Smart2e0fef82007-06-17 19:56:36 -05001406 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001407 struct lpfc_dmabuf *mp, *bmp;
1408 struct lpfc_sli_ct_request *CtReq;
1409 struct ulp_bde64 *bpl;
1410 uint32_t size;
James Smart76b2c342015-04-07 15:07:19 -04001411 uint32_t rsp_size;
1412 struct lpfc_fdmi_reg_hba *rh;
1413 struct lpfc_fdmi_port_entry *pe;
1414 struct lpfc_fdmi_reg_portattr *pab = NULL;
1415 struct lpfc_fdmi_attr_block *ab = NULL;
1416 struct lpfc_fdmi_attr_entry *ae;
1417 struct lpfc_fdmi_attr_def *ad;
dea31012005-04-17 16:05:31 -05001418 void (*cmpl) (struct lpfc_hba *, struct lpfc_iocbq *,
1419 struct lpfc_iocbq *);
1420
James Smart76b2c342015-04-07 15:07:19 -04001421 if (ndlp == NULL) {
1422 ndlp = lpfc_findnode_did(vport, FDMI_DID);
1423 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
1424 return 0;
1425 cmpl = lpfc_cmpl_ct_cmd_fdmi; /* cmd interface */
1426 } else {
1427 cmpl = lpfc_cmpl_ct_disc_fdmi; /* called from discovery */
1428 }
dea31012005-04-17 16:05:31 -05001429
1430 /* fill in BDEs for command */
1431 /* Allocate buffer for command payload */
James Smart76b2c342015-04-07 15:07:19 -04001432 mp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
dea31012005-04-17 16:05:31 -05001433 if (!mp)
1434 goto fdmi_cmd_exit;
1435
1436 mp->virt = lpfc_mbuf_alloc(phba, 0, &(mp->phys));
1437 if (!mp->virt)
1438 goto fdmi_cmd_free_mp;
1439
1440 /* Allocate buffer for Buffer ptr list */
James Smart76b2c342015-04-07 15:07:19 -04001441 bmp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
dea31012005-04-17 16:05:31 -05001442 if (!bmp)
1443 goto fdmi_cmd_free_mpvirt;
1444
1445 bmp->virt = lpfc_mbuf_alloc(phba, 0, &(bmp->phys));
1446 if (!bmp->virt)
1447 goto fdmi_cmd_free_bmp;
1448
1449 INIT_LIST_HEAD(&mp->list);
1450 INIT_LIST_HEAD(&bmp->list);
1451
1452 /* FDMI request */
James Smarte8b62012007-08-02 11:10:09 -04001453 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
1454 "0218 FDMI Request Data: x%x x%x x%x\n",
1455 vport->fc_flag, vport->port_state, cmdcode);
James Smart76b2c342015-04-07 15:07:19 -04001456 CtReq = (struct lpfc_sli_ct_request *)mp->virt;
dea31012005-04-17 16:05:31 -05001457
James Smart76b2c342015-04-07 15:07:19 -04001458 /* First populate the CT_IU preamble */
dea31012005-04-17 16:05:31 -05001459 memset(CtReq, 0, sizeof(struct lpfc_sli_ct_request));
1460 CtReq->RevisionId.bits.Revision = SLI_CT_REVISION;
1461 CtReq->RevisionId.bits.InId = 0;
1462
1463 CtReq->FsType = SLI_CT_MANAGEMENT_SERVICE;
1464 CtReq->FsSubType = SLI_CT_FDMI_Subtypes;
James Smart76b2c342015-04-07 15:07:19 -04001465
1466 CtReq->CommandResponse.bits.CmdRsp = cpu_to_be16(cmdcode);
1467 rsp_size = LPFC_BPL_SIZE;
dea31012005-04-17 16:05:31 -05001468 size = 0;
1469
James Smart76b2c342015-04-07 15:07:19 -04001470 /* Next fill in the specific FDMI cmd information */
dea31012005-04-17 16:05:31 -05001471 switch (cmdcode) {
James Smart76b2c342015-04-07 15:07:19 -04001472 case SLI_MGMT_RHAT:
dea31012005-04-17 16:05:31 -05001473 case SLI_MGMT_RHBA:
1474 {
1475 lpfc_vpd_t *vp = &phba->vpd;
1476 uint32_t i, j, incr;
James Smart76b2c342015-04-07 15:07:19 -04001477 int len = 0;
dea31012005-04-17 16:05:31 -05001478
James Smart76b2c342015-04-07 15:07:19 -04001479 rh = (struct lpfc_fdmi_reg_hba *)&CtReq->un.PortID;
1480 /* HBA Identifier */
James Smart2e0fef82007-06-17 19:56:36 -05001481 memcpy(&rh->hi.PortName, &vport->fc_sparam.portName,
James Smart76b2c342015-04-07 15:07:19 -04001482 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05001483
James Smart76b2c342015-04-07 15:07:19 -04001484 if (cmdcode == SLI_MGMT_RHBA) {
1485 /* Registered Port List */
1486 /* One entry (port) per adapter */
1487 rh->rpl.EntryCnt = cpu_to_be32(1);
1488 memcpy(&rh->rpl.pe, &vport->fc_sparam.portName,
1489 sizeof(struct lpfc_name));
1490
1491 /* point to the HBA attribute block */
1492 size = 2 * sizeof(struct lpfc_name) +
1493 FOURBYTES;
1494 } else {
1495 size = sizeof(struct lpfc_name);
1496 }
1497 ab = (struct lpfc_fdmi_attr_block *)
1498 ((uint8_t *)rh + size);
dea31012005-04-17 16:05:31 -05001499 ab->EntryCnt = 0;
dea31012005-04-17 16:05:31 -05001500 size += FOURBYTES;
James Smart76b2c342015-04-07 15:07:19 -04001501
1502 /*
1503 * Point to beginning of first HBA attribute entry
1504 */
1505 /* #1 HBA attribute entry */
1506 ad = (struct lpfc_fdmi_attr_def *)
1507 ((uint8_t *)rh + size);
1508 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1509 memset(ae, 0, sizeof(struct lpfc_name));
1510 ad->AttrType = cpu_to_be16(RHBA_NODENAME);
1511 ad->AttrLen = cpu_to_be16(FOURBYTES
1512 + sizeof(struct lpfc_name));
James Smart2e0fef82007-06-17 19:56:36 -05001513 memcpy(&ae->un.NodeName, &vport->fc_sparam.nodeName,
James Smart76b2c342015-04-07 15:07:19 -04001514 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05001515 ab->EntryCnt++;
James Smart76b2c342015-04-07 15:07:19 -04001516 size += FOURBYTES + sizeof(struct lpfc_name);
1517 if ((size + LPFC_FDMI_MAX_AE_SIZE) >
1518 (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
1519 goto hba_out;
dea31012005-04-17 16:05:31 -05001520
1521 /* #2 HBA attribute entry */
James Smart76b2c342015-04-07 15:07:19 -04001522 ad = (struct lpfc_fdmi_attr_def *)
1523 ((uint8_t *)rh + size);
1524 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1525 memset(ae, 0, sizeof(ae->un.Manufacturer));
1526 ad->AttrType = cpu_to_be16(RHBA_MANUFACTURER);
1527 strncpy(ae->un.Manufacturer, "Emulex Corporation",
1528 sizeof(ae->un.Manufacturer));
1529 len = strnlen(ae->un.Manufacturer,
1530 sizeof(ae->un.Manufacturer));
dea31012005-04-17 16:05:31 -05001531 len += (len & 3) ? (4 - (len & 3)) : 4;
James Smart76b2c342015-04-07 15:07:19 -04001532 ad->AttrLen = cpu_to_be16(FOURBYTES + len);
dea31012005-04-17 16:05:31 -05001533 ab->EntryCnt++;
1534 size += FOURBYTES + len;
James Smart76b2c342015-04-07 15:07:19 -04001535 if ((size + LPFC_FDMI_MAX_AE_SIZE) >
1536 (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
1537 goto hba_out;
dea31012005-04-17 16:05:31 -05001538
1539 /* #3 HBA attribute entry */
James Smart76b2c342015-04-07 15:07:19 -04001540 ad = (struct lpfc_fdmi_attr_def *)
1541 ((uint8_t *)rh + size);
1542 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1543 memset(ae, 0, sizeof(ae->un.SerialNumber));
1544 ad->AttrType = cpu_to_be16(RHBA_SERIAL_NUMBER);
1545 strncpy(ae->un.SerialNumber, phba->SerialNumber,
1546 sizeof(ae->un.SerialNumber));
1547 len = strnlen(ae->un.SerialNumber,
1548 sizeof(ae->un.SerialNumber));
dea31012005-04-17 16:05:31 -05001549 len += (len & 3) ? (4 - (len & 3)) : 4;
James Smart76b2c342015-04-07 15:07:19 -04001550 ad->AttrLen = cpu_to_be16(FOURBYTES + len);
dea31012005-04-17 16:05:31 -05001551 ab->EntryCnt++;
1552 size += FOURBYTES + len;
James Smart76b2c342015-04-07 15:07:19 -04001553 if ((size + LPFC_FDMI_MAX_AE_SIZE) >
1554 (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
1555 goto hba_out;
dea31012005-04-17 16:05:31 -05001556
1557 /* #4 HBA attribute entry */
James Smart76b2c342015-04-07 15:07:19 -04001558 ad = (struct lpfc_fdmi_attr_def *)
1559 ((uint8_t *)rh + size);
1560 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1561 memset(ae, 0, sizeof(ae->un.Model));
1562 ad->AttrType = cpu_to_be16(RHBA_MODEL);
1563 strncpy(ae->un.Model, phba->ModelName,
1564 sizeof(ae->un.Model));
1565 len = strnlen(ae->un.Model, sizeof(ae->un.Model));
dea31012005-04-17 16:05:31 -05001566 len += (len & 3) ? (4 - (len & 3)) : 4;
James Smart76b2c342015-04-07 15:07:19 -04001567 ad->AttrLen = cpu_to_be16(FOURBYTES + len);
dea31012005-04-17 16:05:31 -05001568 ab->EntryCnt++;
1569 size += FOURBYTES + len;
James Smart76b2c342015-04-07 15:07:19 -04001570 if ((size + LPFC_FDMI_MAX_AE_SIZE) >
1571 (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
1572 goto hba_out;
dea31012005-04-17 16:05:31 -05001573
1574 /* #5 HBA attribute entry */
James Smart76b2c342015-04-07 15:07:19 -04001575 ad = (struct lpfc_fdmi_attr_def *)
1576 ((uint8_t *)rh + size);
1577 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1578 memset(ae, 0, sizeof(ae->un.ModelDescription));
1579 ad->AttrType = cpu_to_be16(RHBA_MODEL_DESCRIPTION);
1580 strncpy(ae->un.ModelDescription, phba->ModelDesc,
1581 sizeof(ae->un.ModelDescription));
1582 len = strnlen(ae->un.ModelDescription,
1583 sizeof(ae->un.ModelDescription));
dea31012005-04-17 16:05:31 -05001584 len += (len & 3) ? (4 - (len & 3)) : 4;
James Smart76b2c342015-04-07 15:07:19 -04001585 ad->AttrLen = cpu_to_be16(FOURBYTES + len);
dea31012005-04-17 16:05:31 -05001586 ab->EntryCnt++;
1587 size += FOURBYTES + len;
James Smart76b2c342015-04-07 15:07:19 -04001588 if ((size + 8) > (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
1589 goto hba_out;
dea31012005-04-17 16:05:31 -05001590
1591 /* #6 HBA attribute entry */
James Smart76b2c342015-04-07 15:07:19 -04001592 ad = (struct lpfc_fdmi_attr_def *)
1593 ((uint8_t *)rh + size);
1594 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1595 memset(ae, 0, 8);
1596 ad->AttrType = cpu_to_be16(RHBA_HARDWARE_VERSION);
1597 ad->AttrLen = cpu_to_be16(FOURBYTES + 8);
dea31012005-04-17 16:05:31 -05001598 /* Convert JEDEC ID to ascii for hardware version */
1599 incr = vp->rev.biuRev;
1600 for (i = 0; i < 8; i++) {
1601 j = (incr & 0xf);
1602 if (j <= 9)
1603 ae->un.HardwareVersion[7 - i] =
James Smart76b2c342015-04-07 15:07:19 -04001604 (char)((uint8_t)0x30 +
1605 (uint8_t)j);
dea31012005-04-17 16:05:31 -05001606 else
1607 ae->un.HardwareVersion[7 - i] =
James Smart76b2c342015-04-07 15:07:19 -04001608 (char)((uint8_t)0x61 +
1609 (uint8_t)(j - 10));
dea31012005-04-17 16:05:31 -05001610 incr = (incr >> 4);
1611 }
1612 ab->EntryCnt++;
1613 size += FOURBYTES + 8;
James Smart76b2c342015-04-07 15:07:19 -04001614 if ((size + LPFC_FDMI_MAX_AE_SIZE) >
1615 (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
1616 goto hba_out;
dea31012005-04-17 16:05:31 -05001617
1618 /* #7 HBA attribute entry */
James Smart76b2c342015-04-07 15:07:19 -04001619 ad = (struct lpfc_fdmi_attr_def *)
1620 ((uint8_t *)rh + size);
1621 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1622 memset(ae, 0, sizeof(ae->un.DriverVersion));
1623 ad->AttrType = cpu_to_be16(RHBA_DRIVER_VERSION);
1624 strncpy(ae->un.DriverVersion, lpfc_release_version,
1625 sizeof(ae->un.DriverVersion));
1626 len = strnlen(ae->un.DriverVersion,
1627 sizeof(ae->un.DriverVersion));
dea31012005-04-17 16:05:31 -05001628 len += (len & 3) ? (4 - (len & 3)) : 4;
James Smart76b2c342015-04-07 15:07:19 -04001629 ad->AttrLen = cpu_to_be16(FOURBYTES + len);
dea31012005-04-17 16:05:31 -05001630 ab->EntryCnt++;
1631 size += FOURBYTES + len;
James Smart76b2c342015-04-07 15:07:19 -04001632 if ((size + LPFC_FDMI_MAX_AE_SIZE) >
1633 (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
1634 goto hba_out;
dea31012005-04-17 16:05:31 -05001635
1636 /* #8 HBA attribute entry */
James Smart76b2c342015-04-07 15:07:19 -04001637 ad = (struct lpfc_fdmi_attr_def *)
1638 ((uint8_t *)rh + size);
1639 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1640 memset(ae, 0, sizeof(ae->un.OptionROMVersion));
1641 ad->AttrType = cpu_to_be16(RHBA_OPTION_ROM_VERSION);
1642 strncpy(ae->un.OptionROMVersion, phba->OptionROMVersion,
1643 sizeof(ae->un.OptionROMVersion));
1644 len = strnlen(ae->un.OptionROMVersion,
1645 sizeof(ae->un.OptionROMVersion));
dea31012005-04-17 16:05:31 -05001646 len += (len & 3) ? (4 - (len & 3)) : 4;
James Smart76b2c342015-04-07 15:07:19 -04001647 ad->AttrLen = cpu_to_be16(FOURBYTES + len);
dea31012005-04-17 16:05:31 -05001648 ab->EntryCnt++;
1649 size += FOURBYTES + len;
James Smart76b2c342015-04-07 15:07:19 -04001650 if ((size + LPFC_FDMI_MAX_AE_SIZE) >
1651 (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
1652 goto hba_out;
dea31012005-04-17 16:05:31 -05001653
1654 /* #9 HBA attribute entry */
James Smart76b2c342015-04-07 15:07:19 -04001655 ad = (struct lpfc_fdmi_attr_def *)
1656 ((uint8_t *)rh + size);
1657 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1658 memset(ae, 0, sizeof(ae->un.FirmwareVersion));
1659 ad->AttrType = cpu_to_be16(RHBA_FIRMWARE_VERSION);
dea31012005-04-17 16:05:31 -05001660 lpfc_decode_firmware_rev(phba, ae->un.FirmwareVersion,
1661 1);
James Smart76b2c342015-04-07 15:07:19 -04001662 len = strnlen(ae->un.FirmwareVersion,
1663 sizeof(ae->un.FirmwareVersion));
dea31012005-04-17 16:05:31 -05001664 len += (len & 3) ? (4 - (len & 3)) : 4;
James Smart76b2c342015-04-07 15:07:19 -04001665 ad->AttrLen = cpu_to_be16(FOURBYTES + len);
dea31012005-04-17 16:05:31 -05001666 ab->EntryCnt++;
1667 size += FOURBYTES + len;
James Smart76b2c342015-04-07 15:07:19 -04001668 if ((size + LPFC_FDMI_MAX_AE_SIZE) >
1669 (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
1670 goto hba_out;
dea31012005-04-17 16:05:31 -05001671
1672 /* #10 HBA attribute entry */
James Smart76b2c342015-04-07 15:07:19 -04001673 ad = (struct lpfc_fdmi_attr_def *)
1674 ((uint8_t *)rh + size);
1675 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1676 memset(ae, 0, sizeof(ae->un.OsNameVersion));
1677 ad->AttrType = cpu_to_be16(RHBA_OS_NAME_VERSION);
1678 snprintf(ae->un.OsNameVersion,
1679 sizeof(ae->un.OsNameVersion),
1680 "%s %s %s",
1681 init_utsname()->sysname,
1682 init_utsname()->release,
1683 init_utsname()->version);
1684 len = strnlen(ae->un.OsNameVersion,
1685 sizeof(ae->un.OsNameVersion));
dea31012005-04-17 16:05:31 -05001686 len += (len & 3) ? (4 - (len & 3)) : 4;
James Smart76b2c342015-04-07 15:07:19 -04001687 ad->AttrLen = cpu_to_be16(FOURBYTES + len);
dea31012005-04-17 16:05:31 -05001688 ab->EntryCnt++;
1689 size += FOURBYTES + len;
James Smart76b2c342015-04-07 15:07:19 -04001690 if ((size + 4) > (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
1691 goto hba_out;
dea31012005-04-17 16:05:31 -05001692
1693 /* #11 HBA attribute entry */
James Smart76b2c342015-04-07 15:07:19 -04001694 ad = (struct lpfc_fdmi_attr_def *)
1695 ((uint8_t *)rh + size);
1696 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1697 ad->AttrType =
1698 cpu_to_be16(RHBA_MAX_CT_PAYLOAD_LEN);
1699 ad->AttrLen = cpu_to_be16(FOURBYTES + 4);
1700 ae->un.MaxCTPayloadLen = cpu_to_be32(LPFC_MAX_CT_SIZE);
dea31012005-04-17 16:05:31 -05001701 ab->EntryCnt++;
1702 size += FOURBYTES + 4;
James Smart76b2c342015-04-07 15:07:19 -04001703 if ((size + LPFC_FDMI_MAX_AE_SIZE) >
1704 (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
1705 goto hba_out;
dea31012005-04-17 16:05:31 -05001706
James Smart76b2c342015-04-07 15:07:19 -04001707 /*
1708 * Currently switches don't seem to support the
1709 * following extended HBA attributes.
1710 */
1711 if (!(vport->cfg_fdmi_on & LPFC_FDMI_ALL_ATTRIB))
1712 goto hba_out;
1713
1714 /* #12 HBA attribute entry */
1715 ad = (struct lpfc_fdmi_attr_def *)
1716 ((uint8_t *)rh + size);
1717 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1718 memset(ae, 0, sizeof(ae->un.NodeSymName));
1719 ad->AttrType = cpu_to_be16(RHBA_SYM_NODENAME);
1720 len = lpfc_vport_symbolic_node_name(vport,
1721 ae->un.NodeSymName, sizeof(ae->un.NodeSymName));
1722 len += (len & 3) ? (4 - (len & 3)) : 4;
1723 ad->AttrLen = cpu_to_be16(FOURBYTES + len);
1724 ab->EntryCnt++;
1725 size += FOURBYTES + len;
1726hba_out:
1727 ab->EntryCnt = cpu_to_be32(ab->EntryCnt);
dea31012005-04-17 16:05:31 -05001728 /* Total size */
1729 size = GID_REQUEST_SZ - 4 + size;
1730 }
1731 break;
1732
James Smart76b2c342015-04-07 15:07:19 -04001733 case SLI_MGMT_RPRT:
dea31012005-04-17 16:05:31 -05001734 case SLI_MGMT_RPA:
1735 {
1736 lpfc_vpd_t *vp;
1737 struct serv_parm *hsp;
James Smart76b2c342015-04-07 15:07:19 -04001738 int len = 0;
dea31012005-04-17 16:05:31 -05001739
1740 vp = &phba->vpd;
1741
James Smart76b2c342015-04-07 15:07:19 -04001742 if (cmdcode == SLI_MGMT_RPRT) {
1743 rh = (struct lpfc_fdmi_reg_hba *)
1744 &CtReq->un.PortID;
1745 /* HBA Identifier */
1746 memcpy(&rh->hi.PortName,
1747 &vport->fc_sparam.portName,
1748 sizeof(struct lpfc_name));
1749 pab = (struct lpfc_fdmi_reg_portattr *)
1750 &rh->rpl.EntryCnt;
1751 } else
1752 pab = (struct lpfc_fdmi_reg_portattr *)
1753 &CtReq->un.PortID;
1754 size = sizeof(struct lpfc_name) + FOURBYTES;
1755 memcpy((uint8_t *)&pab->PortName,
1756 (uint8_t *)&vport->fc_sparam.portName,
1757 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05001758 pab->ab.EntryCnt = 0;
1759
1760 /* #1 Port attribute entry */
James Smart76b2c342015-04-07 15:07:19 -04001761 ad = (struct lpfc_fdmi_attr_def *)
1762 ((uint8_t *)pab + size);
1763 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1764 memset(ae, 0, sizeof(ae->un.FC4Types));
1765 ad->AttrType =
1766 cpu_to_be16(RPRT_SUPPORTED_FC4_TYPES);
1767 ad->AttrLen = cpu_to_be16(FOURBYTES + 32);
1768 ae->un.FC4Types[0] = 0x40; /* Type 1 - ELS */
1769 ae->un.FC4Types[1] = 0x80; /* Type 8 - FCP */
1770 ae->un.FC4Types[4] = 0x80; /* Type 32 - CT */
dea31012005-04-17 16:05:31 -05001771 pab->ab.EntryCnt++;
1772 size += FOURBYTES + 32;
1773
1774 /* #2 Port attribute entry */
James Smart76b2c342015-04-07 15:07:19 -04001775 ad = (struct lpfc_fdmi_attr_def *)
1776 ((uint8_t *)pab + size);
1777 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1778 ad->AttrType = cpu_to_be16(RPRT_SUPPORTED_SPEED);
1779 ad->AttrLen = cpu_to_be16(FOURBYTES + 4);
Jamie Wellnitz74b72a52006-02-28 22:33:04 -05001780 ae->un.SupportSpeed = 0;
James Smart76a95d72010-11-20 23:11:48 -05001781 if (phba->lmt & LMT_16Gb)
1782 ae->un.SupportSpeed |= HBA_PORTSPEED_16GBIT;
Jamie Wellnitz74b72a52006-02-28 22:33:04 -05001783 if (phba->lmt & LMT_10Gb)
James Smart76a95d72010-11-20 23:11:48 -05001784 ae->un.SupportSpeed |= HBA_PORTSPEED_10GBIT;
Jamie Wellnitz74b72a52006-02-28 22:33:04 -05001785 if (phba->lmt & LMT_8Gb)
1786 ae->un.SupportSpeed |= HBA_PORTSPEED_8GBIT;
1787 if (phba->lmt & LMT_4Gb)
1788 ae->un.SupportSpeed |= HBA_PORTSPEED_4GBIT;
1789 if (phba->lmt & LMT_2Gb)
1790 ae->un.SupportSpeed |= HBA_PORTSPEED_2GBIT;
1791 if (phba->lmt & LMT_1Gb)
1792 ae->un.SupportSpeed |= HBA_PORTSPEED_1GBIT;
James Smart76b2c342015-04-07 15:07:19 -04001793 ae->un.SupportSpeed =
1794 cpu_to_be32(ae->un.SupportSpeed);
Jamie Wellnitz74b72a52006-02-28 22:33:04 -05001795
dea31012005-04-17 16:05:31 -05001796 pab->ab.EntryCnt++;
1797 size += FOURBYTES + 4;
1798
1799 /* #3 Port attribute entry */
James Smart76b2c342015-04-07 15:07:19 -04001800 ad = (struct lpfc_fdmi_attr_def *)
1801 ((uint8_t *)pab + size);
1802 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1803 ad->AttrType = cpu_to_be16(RPRT_PORT_SPEED);
1804 ad->AttrLen = cpu_to_be16(FOURBYTES + 4);
1805 switch (phba->fc_linkspeed) {
James Smart76a95d72010-11-20 23:11:48 -05001806 case LPFC_LINK_SPEED_1GHZ:
1807 ae->un.PortSpeed = HBA_PORTSPEED_1GBIT;
dea31012005-04-17 16:05:31 -05001808 break;
James Smart76a95d72010-11-20 23:11:48 -05001809 case LPFC_LINK_SPEED_2GHZ:
1810 ae->un.PortSpeed = HBA_PORTSPEED_2GBIT;
dea31012005-04-17 16:05:31 -05001811 break;
James Smart76a95d72010-11-20 23:11:48 -05001812 case LPFC_LINK_SPEED_4GHZ:
1813 ae->un.PortSpeed = HBA_PORTSPEED_4GBIT;
dea31012005-04-17 16:05:31 -05001814 break;
James Smart76a95d72010-11-20 23:11:48 -05001815 case LPFC_LINK_SPEED_8GHZ:
1816 ae->un.PortSpeed = HBA_PORTSPEED_8GBIT;
James Smartb87eab32007-04-25 09:53:28 -04001817 break;
James Smart76a95d72010-11-20 23:11:48 -05001818 case LPFC_LINK_SPEED_10GHZ:
1819 ae->un.PortSpeed = HBA_PORTSPEED_10GBIT;
James Smartf4b4c682009-05-22 14:53:12 -04001820 break;
James Smart76a95d72010-11-20 23:11:48 -05001821 case LPFC_LINK_SPEED_16GHZ:
1822 ae->un.PortSpeed = HBA_PORTSPEED_16GBIT;
1823 break;
1824 default:
1825 ae->un.PortSpeed = HBA_PORTSPEED_UNKNOWN;
dea31012005-04-17 16:05:31 -05001826 break;
1827 }
James Smart76b2c342015-04-07 15:07:19 -04001828 ae->un.PortSpeed = cpu_to_be32(ae->un.PortSpeed);
dea31012005-04-17 16:05:31 -05001829 pab->ab.EntryCnt++;
1830 size += FOURBYTES + 4;
1831
1832 /* #4 Port attribute entry */
James Smart76b2c342015-04-07 15:07:19 -04001833 ad = (struct lpfc_fdmi_attr_def *)
1834 ((uint8_t *)pab + size);
1835 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1836 ad->AttrType = cpu_to_be16(RPRT_MAX_FRAME_SIZE);
1837 ad->AttrLen = cpu_to_be16(FOURBYTES + 4);
1838 hsp = (struct serv_parm *)&vport->fc_sparam;
dea31012005-04-17 16:05:31 -05001839 ae->un.MaxFrameSize =
James Smart76b2c342015-04-07 15:07:19 -04001840 (((uint32_t)hsp->cmn.
1841 bbRcvSizeMsb) << 8) | (uint32_t)hsp->cmn.
dea31012005-04-17 16:05:31 -05001842 bbRcvSizeLsb;
James Smart76b2c342015-04-07 15:07:19 -04001843 ae->un.MaxFrameSize =
1844 cpu_to_be32(ae->un.MaxFrameSize);
dea31012005-04-17 16:05:31 -05001845 pab->ab.EntryCnt++;
1846 size += FOURBYTES + 4;
James Smart76b2c342015-04-07 15:07:19 -04001847 if ((size + LPFC_FDMI_MAX_AE_SIZE) >
1848 (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
1849 goto port_out;
dea31012005-04-17 16:05:31 -05001850
1851 /* #5 Port attribute entry */
James Smart76b2c342015-04-07 15:07:19 -04001852 ad = (struct lpfc_fdmi_attr_def *)
1853 ((uint8_t *)pab + size);
1854 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1855 memset(ae, 0, sizeof(ae->un.OsDeviceName));
1856 ad->AttrType = cpu_to_be16(RPRT_OS_DEVICE_NAME);
1857 strncpy((char *)ae->un.OsDeviceName, LPFC_DRIVER_NAME,
1858 sizeof(ae->un.OsDeviceName));
1859 len = strnlen((char *)ae->un.OsDeviceName,
1860 sizeof(ae->un.OsDeviceName));
dea31012005-04-17 16:05:31 -05001861 len += (len & 3) ? (4 - (len & 3)) : 4;
James Smart76b2c342015-04-07 15:07:19 -04001862 ad->AttrLen = cpu_to_be16(FOURBYTES + len);
dea31012005-04-17 16:05:31 -05001863 pab->ab.EntryCnt++;
1864 size += FOURBYTES + len;
James Smart76b2c342015-04-07 15:07:19 -04001865 if ((size + LPFC_FDMI_MAX_AE_SIZE) >
1866 (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
1867 goto port_out;
dea31012005-04-17 16:05:31 -05001868
James Smart76b2c342015-04-07 15:07:19 -04001869 /* #6 Port attribute entry */
1870 ad = (struct lpfc_fdmi_attr_def *)
1871 ((uint8_t *)pab + size);
1872 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1873 memset(ae, 0, sizeof(ae->un.HostName));
1874 snprintf(ae->un.HostName, sizeof(ae->un.HostName), "%s",
1875 init_utsname()->nodename);
1876 ad->AttrType = cpu_to_be16(RPRT_HOST_NAME);
1877 len = strnlen(ae->un.HostName,
1878 sizeof(ae->un.HostName));
1879 len += (len & 3) ? (4 - (len & 3)) : 4;
1880 ad->AttrLen =
1881 cpu_to_be16(FOURBYTES + len);
1882 pab->ab.EntryCnt++;
1883 size += FOURBYTES + len;
1884 if ((size + sizeof(struct lpfc_name)) >
1885 (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
1886 goto port_out;
dea31012005-04-17 16:05:31 -05001887
James Smart76b2c342015-04-07 15:07:19 -04001888 /*
1889 * Currently switches don't seem to support the
1890 * following extended Port attributes.
1891 */
1892 if (!(vport->cfg_fdmi_on & LPFC_FDMI_ALL_ATTRIB))
1893 goto port_out;
1894
1895 /* #7 Port attribute entry */
1896 ad = (struct lpfc_fdmi_attr_def *)
1897 ((uint8_t *)pab + size);
1898 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1899 memset(ae, 0, sizeof(struct lpfc_name));
1900 ad->AttrType = cpu_to_be16(RPRT_NODENAME);
1901 ad->AttrLen = cpu_to_be16(FOURBYTES
1902 + sizeof(struct lpfc_name));
1903 memcpy(&ae->un.NodeName, &vport->fc_sparam.nodeName,
1904 sizeof(struct lpfc_name));
1905 pab->ab.EntryCnt++;
1906 size += FOURBYTES + sizeof(struct lpfc_name);
1907 if ((size + sizeof(struct lpfc_name)) >
1908 (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
1909 goto port_out;
1910
1911 /* #8 Port attribute entry */
1912 ad = (struct lpfc_fdmi_attr_def *)
1913 ((uint8_t *)pab + size);
1914 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1915 memset(ae, 0, sizeof(struct lpfc_name));
1916 ad->AttrType = cpu_to_be16(RPRT_PORTNAME);
1917 ad->AttrLen = cpu_to_be16(FOURBYTES
1918 + sizeof(struct lpfc_name));
1919 memcpy(&ae->un.PortName, &vport->fc_sparam.portName,
1920 sizeof(struct lpfc_name));
1921 pab->ab.EntryCnt++;
1922 size += FOURBYTES + sizeof(struct lpfc_name);
1923 if ((size + LPFC_FDMI_MAX_AE_SIZE) >
1924 (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
1925 goto port_out;
1926
1927 /* #9 Port attribute entry */
1928 ad = (struct lpfc_fdmi_attr_def *)
1929 ((uint8_t *)pab + size);
1930 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1931 memset(ae, 0, sizeof(ae->un.NodeSymName));
1932 ad->AttrType = cpu_to_be16(RPRT_SYM_PORTNAME);
1933 len = lpfc_vport_symbolic_port_name(vport,
1934 ae->un.NodeSymName, sizeof(ae->un.NodeSymName));
1935 len += (len & 3) ? (4 - (len & 3)) : 4;
1936 ad->AttrLen = cpu_to_be16(FOURBYTES + len);
1937 pab->ab.EntryCnt++;
1938 size += FOURBYTES + len;
1939 if ((size + 4) > (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
1940 goto port_out;
1941
1942 /* #10 Port attribute entry */
1943 ad = (struct lpfc_fdmi_attr_def *)
1944 ((uint8_t *)pab + size);
1945 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1946 ad->AttrType = cpu_to_be16(RPRT_PORT_TYPE);
1947 ae->un.PortState = 0;
1948 ad->AttrLen = cpu_to_be16(FOURBYTES + 4);
1949 pab->ab.EntryCnt++;
1950 size += FOURBYTES + 4;
1951 if ((size + 4) > (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
1952 goto port_out;
1953
1954 /* #11 Port attribute entry */
1955 ad = (struct lpfc_fdmi_attr_def *)
1956 ((uint8_t *)pab + size);
1957 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1958 ad->AttrType = cpu_to_be16(RPRT_SUPPORTED_CLASS);
1959 ae->un.SupportClass =
1960 cpu_to_be32(FC_COS_CLASS2 | FC_COS_CLASS3);
1961 ad->AttrLen = cpu_to_be16(FOURBYTES + 4);
1962 pab->ab.EntryCnt++;
1963 size += FOURBYTES + 4;
1964 if ((size + sizeof(struct lpfc_name)) >
1965 (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
1966 goto port_out;
1967
1968 /* #12 Port attribute entry */
1969 ad = (struct lpfc_fdmi_attr_def *)
1970 ((uint8_t *)pab + size);
1971 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1972 memset(ae, 0, sizeof(struct lpfc_name));
1973 ad->AttrType = cpu_to_be16(RPRT_FABRICNAME);
1974 ad->AttrLen = cpu_to_be16(FOURBYTES
1975 + sizeof(struct lpfc_name));
1976 memcpy(&ae->un.FabricName, &vport->fabric_nodename,
1977 sizeof(struct lpfc_name));
1978 pab->ab.EntryCnt++;
1979 size += FOURBYTES + sizeof(struct lpfc_name);
1980 if ((size + LPFC_FDMI_MAX_AE_SIZE) >
1981 (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
1982 goto port_out;
1983
1984 /* #13 Port attribute entry */
1985 ad = (struct lpfc_fdmi_attr_def *)
1986 ((uint8_t *)pab + size);
1987 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
1988 memset(ae, 0, sizeof(ae->un.FC4Types));
1989 ad->AttrType =
1990 cpu_to_be16(RPRT_ACTIVE_FC4_TYPES);
1991 ad->AttrLen = cpu_to_be16(FOURBYTES + 32);
1992 ae->un.FC4Types[0] = 0x40; /* Type 1 - ELS */
1993 ae->un.FC4Types[1] = 0x80; /* Type 8 - FCP */
1994 ae->un.FC4Types[4] = 0x80; /* Type 32 - CT */
1995 pab->ab.EntryCnt++;
1996 size += FOURBYTES + 32;
1997 if ((size + 4) > (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
1998 goto port_out;
1999
2000 /* #257 Port attribute entry */
2001 ad = (struct lpfc_fdmi_attr_def *)
2002 ((uint8_t *)pab + size);
2003 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2004 ad->AttrType = cpu_to_be16(RPRT_PORT_STATE);
2005 ae->un.PortState = 0;
2006 ad->AttrLen = cpu_to_be16(FOURBYTES + 4);
2007 pab->ab.EntryCnt++;
2008 size += FOURBYTES + 4;
2009 if ((size + 4) > (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
2010 goto port_out;
2011
2012 /* #258 Port attribute entry */
2013 ad = (struct lpfc_fdmi_attr_def *)
2014 ((uint8_t *)pab + size);
2015 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2016 ad->AttrType = cpu_to_be16(RPRT_DISC_PORT);
2017 ae->un.PortState = lpfc_find_map_node(vport);
2018 ae->un.PortState = cpu_to_be32(ae->un.PortState);
2019 ad->AttrLen = cpu_to_be16(FOURBYTES + 4);
2020 pab->ab.EntryCnt++;
2021 size += FOURBYTES + 4;
2022 if ((size + 4) > (LPFC_BPL_SIZE - LPFC_CT_PREAMBLE))
2023 goto port_out;
2024
2025 /* #259 Port attribute entry */
2026 ad = (struct lpfc_fdmi_attr_def *)
2027 ((uint8_t *)pab + size);
2028 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue;
2029 ad->AttrType = cpu_to_be16(RPRT_PORT_ID);
2030 ae->un.PortId = cpu_to_be32(vport->fc_myDID);
2031 ad->AttrLen = cpu_to_be16(FOURBYTES + 4);
2032 pab->ab.EntryCnt++;
2033 size += FOURBYTES + 4;
2034port_out:
2035 pab->ab.EntryCnt = cpu_to_be32(pab->ab.EntryCnt);
dea31012005-04-17 16:05:31 -05002036 /* Total size */
2037 size = GID_REQUEST_SZ - 4 + size;
2038 }
2039 break;
2040
James Smart76b2c342015-04-07 15:07:19 -04002041 case SLI_MGMT_GHAT:
2042 case SLI_MGMT_GRPL:
2043 rsp_size = FC_MAX_NS_RSP;
dea31012005-04-17 16:05:31 -05002044 case SLI_MGMT_DHBA:
James Smart76b2c342015-04-07 15:07:19 -04002045 case SLI_MGMT_DHAT:
2046 pe = (struct lpfc_fdmi_port_entry *)&CtReq->un.PortID;
2047 memcpy((uint8_t *)&pe->PortName,
2048 (uint8_t *)&vport->fc_sparam.portName,
2049 sizeof(struct lpfc_name));
2050 size = GID_REQUEST_SZ - 4 + sizeof(struct lpfc_name);
dea31012005-04-17 16:05:31 -05002051 break;
2052
James Smart76b2c342015-04-07 15:07:19 -04002053 case SLI_MGMT_GPAT:
2054 case SLI_MGMT_GPAS:
2055 rsp_size = FC_MAX_NS_RSP;
dea31012005-04-17 16:05:31 -05002056 case SLI_MGMT_DPRT:
James Smart76b2c342015-04-07 15:07:19 -04002057 case SLI_MGMT_DPA:
2058 pe = (struct lpfc_fdmi_port_entry *)&CtReq->un.PortID;
2059 memcpy((uint8_t *)&pe->PortName,
2060 (uint8_t *)&vport->fc_sparam.portName,
2061 sizeof(struct lpfc_name));
2062 size = GID_REQUEST_SZ - 4 + sizeof(struct lpfc_name);
dea31012005-04-17 16:05:31 -05002063 break;
James Smart76b2c342015-04-07 15:07:19 -04002064 case SLI_MGMT_GRHL:
2065 size = GID_REQUEST_SZ - 4;
2066 break;
2067 default:
2068 lpfc_printf_vlog(vport, KERN_WARNING, LOG_DISCOVERY,
2069 "0298 FDMI cmdcode x%x not supported\n",
2070 cmdcode);
2071 goto fdmi_cmd_free_bmpvirt;
dea31012005-04-17 16:05:31 -05002072 }
James Smart76b2c342015-04-07 15:07:19 -04002073 CtReq->CommandResponse.bits.Size = cpu_to_be16(rsp_size);
dea31012005-04-17 16:05:31 -05002074
James Smart76b2c342015-04-07 15:07:19 -04002075 bpl = (struct ulp_bde64 *)bmp->virt;
2076 bpl->addrHigh = le32_to_cpu(putPaddrHigh(mp->phys));
2077 bpl->addrLow = le32_to_cpu(putPaddrLow(mp->phys));
dea31012005-04-17 16:05:31 -05002078 bpl->tus.f.bdeFlags = 0;
2079 bpl->tus.f.bdeSize = size;
dea31012005-04-17 16:05:31 -05002080
James Smart76b2c342015-04-07 15:07:19 -04002081 /*
2082 * The lpfc_ct_cmd/lpfc_get_req shall increment ndlp reference count
James Smarte47c9092008-02-08 18:49:26 -05002083 * to hold ndlp reference for the corresponding callback function.
2084 */
James Smart76b2c342015-04-07 15:07:19 -04002085 if (!lpfc_ct_cmd(vport, mp, bmp, ndlp, cmpl, rsp_size, 0))
dea31012005-04-17 16:05:31 -05002086 return 0;
2087
James Smart76b2c342015-04-07 15:07:19 -04002088 /*
2089 * Decrement ndlp reference count to release ndlp reference held
James Smarte47c9092008-02-08 18:49:26 -05002090 * for the failed command's callback function.
2091 */
James Smart51ef4c22007-08-02 11:10:31 -04002092 lpfc_nlp_put(ndlp);
James Smarte47c9092008-02-08 18:49:26 -05002093
James Smart76b2c342015-04-07 15:07:19 -04002094fdmi_cmd_free_bmpvirt:
dea31012005-04-17 16:05:31 -05002095 lpfc_mbuf_free(phba, bmp->virt, bmp->phys);
2096fdmi_cmd_free_bmp:
2097 kfree(bmp);
2098fdmi_cmd_free_mpvirt:
2099 lpfc_mbuf_free(phba, mp->virt, mp->phys);
2100fdmi_cmd_free_mp:
2101 kfree(mp);
2102fdmi_cmd_exit:
2103 /* Issue FDMI request failed */
James Smarte8b62012007-08-02 11:10:09 -04002104 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
2105 "0244 Issue FDMI request failed Data: x%x\n",
2106 cmdcode);
dea31012005-04-17 16:05:31 -05002107 return 1;
2108}
2109
James Smart92494142011-02-16 12:39:44 -05002110/**
2111 * lpfc_delayed_disc_tmo - Timeout handler for delayed discovery timer.
2112 * @ptr - Context object of the timer.
2113 *
2114 * This function set the WORKER_DELAYED_DISC_TMO flag and wake up
2115 * the worker thread.
2116 **/
2117void
2118lpfc_delayed_disc_tmo(unsigned long ptr)
2119{
2120 struct lpfc_vport *vport = (struct lpfc_vport *)ptr;
2121 struct lpfc_hba *phba = vport->phba;
2122 uint32_t tmo_posted;
2123 unsigned long iflag;
2124
2125 spin_lock_irqsave(&vport->work_port_lock, iflag);
2126 tmo_posted = vport->work_port_events & WORKER_DELAYED_DISC_TMO;
2127 if (!tmo_posted)
2128 vport->work_port_events |= WORKER_DELAYED_DISC_TMO;
2129 spin_unlock_irqrestore(&vport->work_port_lock, iflag);
2130
2131 if (!tmo_posted)
2132 lpfc_worker_wake_up(phba);
2133 return;
2134}
2135
2136/**
2137 * lpfc_delayed_disc_timeout_handler - Function called by worker thread to
2138 * handle delayed discovery.
2139 * @vport: pointer to a host virtual N_Port data structure.
2140 *
2141 * This function start nport discovery of the vport.
2142 **/
2143void
2144lpfc_delayed_disc_timeout_handler(struct lpfc_vport *vport)
2145{
2146 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2147
2148 spin_lock_irq(shost->host_lock);
2149 if (!(vport->fc_flag & FC_DISC_DELAYED)) {
2150 spin_unlock_irq(shost->host_lock);
2151 return;
2152 }
2153 vport->fc_flag &= ~FC_DISC_DELAYED;
2154 spin_unlock_irq(shost->host_lock);
2155
2156 lpfc_do_scr_ns_plogi(vport->phba, vport);
2157}
2158
dea31012005-04-17 16:05:31 -05002159void
2160lpfc_fdmi_tmo(unsigned long ptr)
2161{
James Smart2e0fef82007-06-17 19:56:36 -05002162 struct lpfc_vport *vport = (struct lpfc_vport *)ptr;
2163 struct lpfc_hba *phba = vport->phba;
James Smart5e9d9b82008-06-14 22:52:53 -04002164 uint32_t tmo_posted;
dea31012005-04-17 16:05:31 -05002165 unsigned long iflag;
2166
James Smart2e0fef82007-06-17 19:56:36 -05002167 spin_lock_irqsave(&vport->work_port_lock, iflag);
James Smart5e9d9b82008-06-14 22:52:53 -04002168 tmo_posted = vport->work_port_events & WORKER_FDMI_TMO;
2169 if (!tmo_posted)
James Smart2e0fef82007-06-17 19:56:36 -05002170 vport->work_port_events |= WORKER_FDMI_TMO;
James Smart5e9d9b82008-06-14 22:52:53 -04002171 spin_unlock_irqrestore(&vport->work_port_lock, iflag);
James Smart92d7f7b2007-06-17 19:56:38 -05002172
James Smart5e9d9b82008-06-14 22:52:53 -04002173 if (!tmo_posted)
2174 lpfc_worker_wake_up(phba);
2175 return;
dea31012005-04-17 16:05:31 -05002176}
2177
2178void
James Smart2e0fef82007-06-17 19:56:36 -05002179lpfc_fdmi_timeout_handler(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05002180{
2181 struct lpfc_nodelist *ndlp;
2182
James Smart2e0fef82007-06-17 19:56:36 -05002183 ndlp = lpfc_findnode_did(vport, FDMI_DID);
James Smarte47c9092008-02-08 18:49:26 -05002184 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
James Smart2e0fef82007-06-17 19:56:36 -05002185 if (init_utsname()->nodename[0] != '\0')
2186 lpfc_fdmi_cmd(vport, ndlp, SLI_MGMT_DHBA);
2187 else
James Smart256ec0d2013-04-17 20:14:58 -04002188 mod_timer(&vport->fc_fdmitmo, jiffies +
2189 msecs_to_jiffies(1000 * 60));
dea31012005-04-17 16:05:31 -05002190 }
dea31012005-04-17 16:05:31 -05002191 return;
2192}
2193
dea31012005-04-17 16:05:31 -05002194void
James Smart2e0fef82007-06-17 19:56:36 -05002195lpfc_decode_firmware_rev(struct lpfc_hba *phba, char *fwrevision, int flag)
dea31012005-04-17 16:05:31 -05002196{
2197 struct lpfc_sli *psli = &phba->sli;
2198 lpfc_vpd_t *vp = &phba->vpd;
2199 uint32_t b1, b2, b3, b4, i, rev;
2200 char c;
2201 uint32_t *ptr, str[4];
2202 uint8_t *fwname;
2203
James Smartf1126682009-06-10 17:22:44 -04002204 if (phba->sli_rev == LPFC_SLI_REV4)
James Smart6b5151f2012-01-18 16:24:06 -05002205 snprintf(fwrevision, FW_REV_STR_SIZE, "%s", vp->rev.opFwName);
James Smartf1126682009-06-10 17:22:44 -04002206 else if (vp->rev.rBit) {
James Smartf4b4c682009-05-22 14:53:12 -04002207 if (psli->sli_flag & LPFC_SLI_ACTIVE)
dea31012005-04-17 16:05:31 -05002208 rev = vp->rev.sli2FwRev;
2209 else
2210 rev = vp->rev.sli1FwRev;
2211
2212 b1 = (rev & 0x0000f000) >> 12;
2213 b2 = (rev & 0x00000f00) >> 8;
2214 b3 = (rev & 0x000000c0) >> 6;
2215 b4 = (rev & 0x00000030) >> 4;
2216
2217 switch (b4) {
2218 case 0:
2219 c = 'N';
2220 break;
2221 case 1:
2222 c = 'A';
2223 break;
2224 case 2:
2225 c = 'B';
2226 break;
James Smart73d91e52011-10-10 21:32:10 -04002227 case 3:
2228 c = 'X';
2229 break;
dea31012005-04-17 16:05:31 -05002230 default:
2231 c = 0;
2232 break;
2233 }
2234 b4 = (rev & 0x0000000f);
2235
James Smartf4b4c682009-05-22 14:53:12 -04002236 if (psli->sli_flag & LPFC_SLI_ACTIVE)
dea31012005-04-17 16:05:31 -05002237 fwname = vp->rev.sli2FwName;
2238 else
2239 fwname = vp->rev.sli1FwName;
2240
2241 for (i = 0; i < 16; i++)
2242 if (fwname[i] == 0x20)
2243 fwname[i] = 0;
2244
2245 ptr = (uint32_t*)fwname;
2246
2247 for (i = 0; i < 3; i++)
2248 str[i] = be32_to_cpu(*ptr++);
2249
2250 if (c == 0) {
2251 if (flag)
2252 sprintf(fwrevision, "%d.%d%d (%s)",
2253 b1, b2, b3, (char *)str);
2254 else
2255 sprintf(fwrevision, "%d.%d%d", b1,
2256 b2, b3);
2257 } else {
2258 if (flag)
2259 sprintf(fwrevision, "%d.%d%d%c%d (%s)",
2260 b1, b2, b3, c,
2261 b4, (char *)str);
2262 else
2263 sprintf(fwrevision, "%d.%d%d%c%d",
2264 b1, b2, b3, c, b4);
2265 }
2266 } else {
2267 rev = vp->rev.smFwRev;
2268
2269 b1 = (rev & 0xff000000) >> 24;
2270 b2 = (rev & 0x00f00000) >> 20;
2271 b3 = (rev & 0x000f0000) >> 16;
2272 c = (rev & 0x0000ff00) >> 8;
2273 b4 = (rev & 0x000000ff);
2274
Roel Kluind44a6d22010-01-17 16:15:57 +01002275 sprintf(fwrevision, "%d.%d%d%c%d", b1, b2, b3, c, b4);
dea31012005-04-17 16:05:31 -05002276 }
2277 return;
2278}