1 /*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
3 * Fibre Channel Host Bus Adapters. *
4 * Copyright (C) 2004-2008 Emulex. All rights reserved. *
5 * EMULEX and SLI are trademarks of Emulex. *
7 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
9 * This program is free software; you can redistribute it and/or *
10 * modify it under the terms of version 2 of the GNU General *
11 * Public License as published by the Free Software Foundation. *
12 * This program is distributed in the hope that it will be useful. *
13 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
14 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
15 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
16 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
17 * TO BE LEGALLY INVALID. See the GNU General Public License for *
18 * more details, a copy of which can be found in the file COPYING *
19 * included with this package. *
20 *******************************************************************/
22 #include <linux/ctype.h>
23 #include <linux/delay.h>
24 #include <linux/pci.h>
25 #include <linux/interrupt.h>
27 #include <scsi/scsi.h>
28 #include <scsi/scsi_device.h>
29 #include <scsi/scsi_host.h>
30 #include <scsi/scsi_tcq.h>
31 #include <scsi/scsi_transport_fc.h>
35 #include "lpfc_disc.h"
36 #include "lpfc_scsi.h"
38 #include "lpfc_logmsg.h"
39 #include "lpfc_version.h"
40 #include "lpfc_compat.h"
41 #include "lpfc_crtn.h"
42 #include "lpfc_vport.h"
44 #define LPFC_DEF_DEVLOSS_TMO 30
45 #define LPFC_MIN_DEVLOSS_TMO 1
46 #define LPFC_MAX_DEVLOSS_TMO 255
48 #define LPFC_MAX_LINK_SPEED 8
49 #define LPFC_LINK_SPEED_BITMAP 0x00000117
50 #define LPFC_LINK_SPEED_STRING "0, 1, 2, 4, 8"
53 lpfc_jedec_to_ascii(int incr, char hdw[])
56 for (i = 0; i < 8; i++) {
59 hdw[7 - i] = 0x30 + j;
61 hdw[7 - i] = 0x61 + j - 10;
69 lpfc_drvr_version_show(struct device *dev, struct device_attribute *attr,
72 return snprintf(buf, PAGE_SIZE, LPFC_MODULE_DESC "\n");
76 lpfc_info_show(struct device *dev, struct device_attribute *attr,
79 struct Scsi_Host *host = class_to_shost(dev);
81 return snprintf(buf, PAGE_SIZE, "%s\n",lpfc_info(host));
85 lpfc_serialnum_show(struct device *dev, struct device_attribute *attr,
88 struct Scsi_Host *shost = class_to_shost(dev);
89 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
90 struct lpfc_hba *phba = vport->phba;
92 return snprintf(buf, PAGE_SIZE, "%s\n",phba->SerialNumber);
96 lpfc_temp_sensor_show(struct device *dev, struct device_attribute *attr,
99 struct Scsi_Host *shost = class_to_shost(dev);
100 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
101 struct lpfc_hba *phba = vport->phba;
102 return snprintf(buf, PAGE_SIZE, "%d\n",phba->temp_sensor_support);
106 lpfc_modeldesc_show(struct device *dev, struct device_attribute *attr,
109 struct Scsi_Host *shost = class_to_shost(dev);
110 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
111 struct lpfc_hba *phba = vport->phba;
113 return snprintf(buf, PAGE_SIZE, "%s\n",phba->ModelDesc);
117 lpfc_modelname_show(struct device *dev, struct device_attribute *attr,
120 struct Scsi_Host *shost = class_to_shost(dev);
121 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
122 struct lpfc_hba *phba = vport->phba;
124 return snprintf(buf, PAGE_SIZE, "%s\n",phba->ModelName);
128 lpfc_programtype_show(struct device *dev, struct device_attribute *attr,
131 struct Scsi_Host *shost = class_to_shost(dev);
132 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
133 struct lpfc_hba *phba = vport->phba;
135 return snprintf(buf, PAGE_SIZE, "%s\n",phba->ProgramType);
139 lpfc_vportnum_show(struct device *dev, struct device_attribute *attr,
142 struct Scsi_Host *shost = class_to_shost(dev);
143 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
144 struct lpfc_hba *phba = vport->phba;
146 return snprintf(buf, PAGE_SIZE, "%s\n",phba->Port);
150 lpfc_fwrev_show(struct device *dev, struct device_attribute *attr,
153 struct Scsi_Host *shost = class_to_shost(dev);
154 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
155 struct lpfc_hba *phba = vport->phba;
158 lpfc_decode_firmware_rev(phba, fwrev, 1);
159 return snprintf(buf, PAGE_SIZE, "%s, sli-%d\n", fwrev, phba->sli_rev);
163 lpfc_hdw_show(struct device *dev, struct device_attribute *attr, char *buf)
166 struct Scsi_Host *shost = class_to_shost(dev);
167 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
168 struct lpfc_hba *phba = vport->phba;
169 lpfc_vpd_t *vp = &phba->vpd;
171 lpfc_jedec_to_ascii(vp->rev.biuRev, hdw);
172 return snprintf(buf, PAGE_SIZE, "%s\n", hdw);
175 lpfc_option_rom_version_show(struct device *dev, struct device_attribute *attr,
178 struct Scsi_Host *shost = class_to_shost(dev);
179 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
180 struct lpfc_hba *phba = vport->phba;
182 return snprintf(buf, PAGE_SIZE, "%s\n", phba->OptionROMVersion);
185 lpfc_state_show(struct device *dev, struct device_attribute *attr,
188 struct Scsi_Host *shost = class_to_shost(dev);
189 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
190 struct lpfc_hba *phba = vport->phba;
193 switch (phba->link_state) {
194 case LPFC_LINK_UNKNOWN:
195 case LPFC_WARM_START:
196 case LPFC_INIT_START:
197 case LPFC_INIT_MBX_CMDS:
200 len += snprintf(buf + len, PAGE_SIZE-len, "Link Down\n");
205 len += snprintf(buf + len, PAGE_SIZE-len, "Link Up - ");
207 switch (vport->port_state) {
208 case LPFC_LOCAL_CFG_LINK:
209 len += snprintf(buf + len, PAGE_SIZE-len,
210 "Configuring Link\n");
214 case LPFC_FABRIC_CFG_LINK:
217 case LPFC_BUILD_DISC_LIST:
219 len += snprintf(buf + len, PAGE_SIZE - len,
222 case LPFC_VPORT_READY:
223 len += snprintf(buf + len, PAGE_SIZE - len, "Ready\n");
226 case LPFC_VPORT_FAILED:
227 len += snprintf(buf + len, PAGE_SIZE - len, "Failed\n");
230 case LPFC_VPORT_UNKNOWN:
231 len += snprintf(buf + len, PAGE_SIZE - len,
236 if (phba->fc_topology == TOPOLOGY_LOOP) {
237 if (vport->fc_flag & FC_PUBLIC_LOOP)
238 len += snprintf(buf + len, PAGE_SIZE-len,
241 len += snprintf(buf + len, PAGE_SIZE-len,
244 if (vport->fc_flag & FC_FABRIC)
245 len += snprintf(buf + len, PAGE_SIZE-len,
248 len += snprintf(buf + len, PAGE_SIZE-len,
257 lpfc_num_discovered_ports_show(struct device *dev,
258 struct device_attribute *attr, char *buf)
260 struct Scsi_Host *shost = class_to_shost(dev);
261 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
263 return snprintf(buf, PAGE_SIZE, "%d\n",
264 vport->fc_map_cnt + vport->fc_unmap_cnt);
269 lpfc_issue_lip(struct Scsi_Host *shost)
271 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
272 struct lpfc_hba *phba = vport->phba;
273 LPFC_MBOXQ_t *pmboxq;
274 int mbxstatus = MBXERR_ERROR;
276 if ((vport->fc_flag & FC_OFFLINE_MODE) ||
277 (phba->sli.sli_flag & LPFC_BLOCK_MGMT_IO))
280 pmboxq = mempool_alloc(phba->mbox_mem_pool,GFP_KERNEL);
285 memset((void *)pmboxq, 0, sizeof (LPFC_MBOXQ_t));
286 pmboxq->mb.mbxCommand = MBX_DOWN_LINK;
287 pmboxq->mb.mbxOwner = OWN_HOST;
289 mbxstatus = lpfc_sli_issue_mbox_wait(phba, pmboxq, LPFC_MBOX_TMO * 2);
291 if ((mbxstatus == MBX_SUCCESS) && (pmboxq->mb.mbxStatus == 0)) {
292 memset((void *)pmboxq, 0, sizeof (LPFC_MBOXQ_t));
293 lpfc_init_link(phba, pmboxq, phba->cfg_topology,
294 phba->cfg_link_speed);
295 mbxstatus = lpfc_sli_issue_mbox_wait(phba, pmboxq,
299 lpfc_set_loopback_flag(phba);
300 if (mbxstatus != MBX_TIMEOUT)
301 mempool_free(pmboxq, phba->mbox_mem_pool);
303 if (mbxstatus == MBXERR_ERROR)
310 lpfc_do_offline(struct lpfc_hba *phba, uint32_t type)
312 struct completion online_compl;
313 struct lpfc_sli_ring *pring;
314 struct lpfc_sli *psli;
319 init_completion(&online_compl);
320 lpfc_workq_post_event(phba, &status, &online_compl,
321 LPFC_EVT_OFFLINE_PREP);
322 wait_for_completion(&online_compl);
329 /* Wait a little for things to settle down, but not
330 * long enough for dev loss timeout to expire.
332 for (i = 0; i < psli->num_rings; i++) {
333 pring = &psli->ring[i];
334 while (pring->txcmplq_cnt) {
336 if (cnt++ > 500) { /* 5 secs */
337 lpfc_printf_log(phba,
338 KERN_WARNING, LOG_INIT,
339 "0466 Outstanding IO when "
340 "bringing Adapter offline\n");
346 init_completion(&online_compl);
347 lpfc_workq_post_event(phba, &status, &online_compl, type);
348 wait_for_completion(&online_compl);
357 lpfc_selective_reset(struct lpfc_hba *phba)
359 struct completion online_compl;
362 if (!phba->cfg_enable_hba_reset)
365 status = lpfc_do_offline(phba, LPFC_EVT_OFFLINE);
370 init_completion(&online_compl);
371 lpfc_workq_post_event(phba, &status, &online_compl,
373 wait_for_completion(&online_compl);
382 lpfc_issue_reset(struct device *dev, struct device_attribute *attr,
383 const char *buf, size_t count)
385 struct Scsi_Host *shost = class_to_shost(dev);
386 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
387 struct lpfc_hba *phba = vport->phba;
389 int status = -EINVAL;
391 if (strncmp(buf, "selective", sizeof("selective") - 1) == 0)
392 status = lpfc_selective_reset(phba);
401 lpfc_nport_evt_cnt_show(struct device *dev, struct device_attribute *attr,
404 struct Scsi_Host *shost = class_to_shost(dev);
405 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
406 struct lpfc_hba *phba = vport->phba;
408 return snprintf(buf, PAGE_SIZE, "%d\n", phba->nport_event_cnt);
412 lpfc_board_mode_show(struct device *dev, struct device_attribute *attr,
415 struct Scsi_Host *shost = class_to_shost(dev);
416 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
417 struct lpfc_hba *phba = vport->phba;
420 if (phba->link_state == LPFC_HBA_ERROR)
422 else if (phba->link_state == LPFC_WARM_START)
423 state = "warm start";
424 else if (phba->link_state == LPFC_INIT_START)
429 return snprintf(buf, PAGE_SIZE, "%s\n", state);
433 lpfc_board_mode_store(struct device *dev, struct device_attribute *attr,
434 const char *buf, size_t count)
436 struct Scsi_Host *shost = class_to_shost(dev);
437 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
438 struct lpfc_hba *phba = vport->phba;
439 struct completion online_compl;
442 if (!phba->cfg_enable_hba_reset)
444 init_completion(&online_compl);
446 if(strncmp(buf, "online", sizeof("online") - 1) == 0) {
447 lpfc_workq_post_event(phba, &status, &online_compl,
449 wait_for_completion(&online_compl);
450 } else if (strncmp(buf, "offline", sizeof("offline") - 1) == 0)
451 status = lpfc_do_offline(phba, LPFC_EVT_OFFLINE);
452 else if (strncmp(buf, "warm", sizeof("warm") - 1) == 0)
453 status = lpfc_do_offline(phba, LPFC_EVT_WARM_START);
454 else if (strncmp(buf, "error", sizeof("error") - 1) == 0)
455 status = lpfc_do_offline(phba, LPFC_EVT_KILL);
466 lpfc_get_hba_info(struct lpfc_hba *phba,
467 uint32_t *mxri, uint32_t *axri,
468 uint32_t *mrpi, uint32_t *arpi,
469 uint32_t *mvpi, uint32_t *avpi)
471 struct lpfc_sli *psli = &phba->sli;
472 LPFC_MBOXQ_t *pmboxq;
477 * prevent udev from issuing mailbox commands until the port is
480 if (phba->link_state < LPFC_LINK_DOWN ||
481 !phba->mbox_mem_pool ||
482 (phba->sli.sli_flag & LPFC_SLI2_ACTIVE) == 0)
485 if (phba->sli.sli_flag & LPFC_BLOCK_MGMT_IO)
488 pmboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
491 memset(pmboxq, 0, sizeof (LPFC_MBOXQ_t));
494 pmb->mbxCommand = MBX_READ_CONFIG;
495 pmb->mbxOwner = OWN_HOST;
496 pmboxq->context1 = NULL;
498 if ((phba->pport->fc_flag & FC_OFFLINE_MODE) ||
499 (!(psli->sli_flag & LPFC_SLI2_ACTIVE)))
500 rc = MBX_NOT_FINISHED;
502 rc = lpfc_sli_issue_mbox_wait(phba, pmboxq, phba->fc_ratov * 2);
504 if (rc != MBX_SUCCESS) {
505 if (rc != MBX_TIMEOUT)
506 mempool_free(pmboxq, phba->mbox_mem_pool);
511 *mrpi = pmb->un.varRdConfig.max_rpi;
513 *arpi = pmb->un.varRdConfig.avail_rpi;
515 *mxri = pmb->un.varRdConfig.max_xri;
517 *axri = pmb->un.varRdConfig.avail_xri;
519 *mvpi = pmb->un.varRdConfig.max_vpi;
521 *avpi = pmb->un.varRdConfig.avail_vpi;
523 mempool_free(pmboxq, phba->mbox_mem_pool);
528 lpfc_max_rpi_show(struct device *dev, struct device_attribute *attr,
531 struct Scsi_Host *shost = class_to_shost(dev);
532 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
533 struct lpfc_hba *phba = vport->phba;
536 if (lpfc_get_hba_info(phba, NULL, NULL, &cnt, NULL, NULL, NULL))
537 return snprintf(buf, PAGE_SIZE, "%d\n", cnt);
538 return snprintf(buf, PAGE_SIZE, "Unknown\n");
542 lpfc_used_rpi_show(struct device *dev, struct device_attribute *attr,
545 struct Scsi_Host *shost = class_to_shost(dev);
546 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
547 struct lpfc_hba *phba = vport->phba;
550 if (lpfc_get_hba_info(phba, NULL, NULL, &cnt, &acnt, NULL, NULL))
551 return snprintf(buf, PAGE_SIZE, "%d\n", (cnt - acnt));
552 return snprintf(buf, PAGE_SIZE, "Unknown\n");
556 lpfc_max_xri_show(struct device *dev, struct device_attribute *attr,
559 struct Scsi_Host *shost = class_to_shost(dev);
560 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
561 struct lpfc_hba *phba = vport->phba;
564 if (lpfc_get_hba_info(phba, &cnt, NULL, NULL, NULL, NULL, NULL))
565 return snprintf(buf, PAGE_SIZE, "%d\n", cnt);
566 return snprintf(buf, PAGE_SIZE, "Unknown\n");
570 lpfc_used_xri_show(struct device *dev, struct device_attribute *attr,
573 struct Scsi_Host *shost = class_to_shost(dev);
574 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
575 struct lpfc_hba *phba = vport->phba;
578 if (lpfc_get_hba_info(phba, &cnt, &acnt, NULL, NULL, NULL, NULL))
579 return snprintf(buf, PAGE_SIZE, "%d\n", (cnt - acnt));
580 return snprintf(buf, PAGE_SIZE, "Unknown\n");
584 lpfc_max_vpi_show(struct device *dev, struct device_attribute *attr,
587 struct Scsi_Host *shost = class_to_shost(dev);
588 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
589 struct lpfc_hba *phba = vport->phba;
592 if (lpfc_get_hba_info(phba, NULL, NULL, NULL, NULL, &cnt, NULL))
593 return snprintf(buf, PAGE_SIZE, "%d\n", cnt);
594 return snprintf(buf, PAGE_SIZE, "Unknown\n");
598 lpfc_used_vpi_show(struct device *dev, struct device_attribute *attr,
601 struct Scsi_Host *shost = class_to_shost(dev);
602 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
603 struct lpfc_hba *phba = vport->phba;
606 if (lpfc_get_hba_info(phba, NULL, NULL, NULL, NULL, &cnt, &acnt))
607 return snprintf(buf, PAGE_SIZE, "%d\n", (cnt - acnt));
608 return snprintf(buf, PAGE_SIZE, "Unknown\n");
612 lpfc_npiv_info_show(struct device *dev, struct device_attribute *attr,
615 struct Scsi_Host *shost = class_to_shost(dev);
616 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
617 struct lpfc_hba *phba = vport->phba;
619 if (!(phba->max_vpi))
620 return snprintf(buf, PAGE_SIZE, "NPIV Not Supported\n");
621 if (vport->port_type == LPFC_PHYSICAL_PORT)
622 return snprintf(buf, PAGE_SIZE, "NPIV Physical\n");
623 return snprintf(buf, PAGE_SIZE, "NPIV Virtual (VPI %d)\n", vport->vpi);
627 lpfc_poll_show(struct device *dev, struct device_attribute *attr,
630 struct Scsi_Host *shost = class_to_shost(dev);
631 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
632 struct lpfc_hba *phba = vport->phba;
634 return snprintf(buf, PAGE_SIZE, "%#x\n", phba->cfg_poll);
638 lpfc_poll_store(struct device *dev, struct device_attribute *attr,
639 const char *buf, size_t count)
641 struct Scsi_Host *shost = class_to_shost(dev);
642 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
643 struct lpfc_hba *phba = vport->phba;
648 if (!isdigit(buf[0]))
651 if (sscanf(buf, "%i", &val) != 1)
654 if ((val & 0x3) != val)
657 spin_lock_irq(&phba->hbalock);
659 old_val = phba->cfg_poll;
661 if (val & ENABLE_FCP_RING_POLLING) {
662 if ((val & DISABLE_FCP_RING_INT) &&
663 !(old_val & DISABLE_FCP_RING_INT)) {
664 creg_val = readl(phba->HCregaddr);
665 creg_val &= ~(HC_R0INT_ENA << LPFC_FCP_RING);
666 writel(creg_val, phba->HCregaddr);
667 readl(phba->HCregaddr); /* flush */
669 lpfc_poll_start_timer(phba);
671 } else if (val != 0x0) {
672 spin_unlock_irq(&phba->hbalock);
676 if (!(val & DISABLE_FCP_RING_INT) &&
677 (old_val & DISABLE_FCP_RING_INT))
679 spin_unlock_irq(&phba->hbalock);
680 del_timer(&phba->fcp_poll_timer);
681 spin_lock_irq(&phba->hbalock);
682 creg_val = readl(phba->HCregaddr);
683 creg_val |= (HC_R0INT_ENA << LPFC_FCP_RING);
684 writel(creg_val, phba->HCregaddr);
685 readl(phba->HCregaddr); /* flush */
688 phba->cfg_poll = val;
690 spin_unlock_irq(&phba->hbalock);
695 #define lpfc_param_show(attr) \
697 lpfc_##attr##_show(struct device *dev, struct device_attribute *attr, \
700 struct Scsi_Host *shost = class_to_shost(dev);\
701 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;\
702 struct lpfc_hba *phba = vport->phba;\
704 val = phba->cfg_##attr;\
705 return snprintf(buf, PAGE_SIZE, "%d\n",\
709 #define lpfc_param_hex_show(attr) \
711 lpfc_##attr##_show(struct device *dev, struct device_attribute *attr, \
714 struct Scsi_Host *shost = class_to_shost(dev);\
715 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;\
716 struct lpfc_hba *phba = vport->phba;\
718 val = phba->cfg_##attr;\
719 return snprintf(buf, PAGE_SIZE, "%#x\n",\
723 #define lpfc_param_init(attr, default, minval, maxval) \
725 lpfc_##attr##_init(struct lpfc_hba *phba, int val) \
727 if (val >= minval && val <= maxval) {\
728 phba->cfg_##attr = val;\
731 lpfc_printf_log(phba, KERN_ERR, LOG_INIT, \
732 "0449 lpfc_"#attr" attribute cannot be set to %d, "\
733 "allowed range is ["#minval", "#maxval"]\n", val); \
734 phba->cfg_##attr = default;\
738 #define lpfc_param_set(attr, default, minval, maxval) \
740 lpfc_##attr##_set(struct lpfc_hba *phba, int val) \
742 if (val >= minval && val <= maxval) {\
743 phba->cfg_##attr = val;\
746 lpfc_printf_log(phba, KERN_ERR, LOG_INIT, \
747 "0450 lpfc_"#attr" attribute cannot be set to %d, "\
748 "allowed range is ["#minval", "#maxval"]\n", val); \
752 #define lpfc_param_store(attr) \
754 lpfc_##attr##_store(struct device *dev, struct device_attribute *attr, \
755 const char *buf, size_t count) \
757 struct Scsi_Host *shost = class_to_shost(dev);\
758 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;\
759 struct lpfc_hba *phba = vport->phba;\
761 if (!isdigit(buf[0]))\
763 if (sscanf(buf, "%i", &val) != 1)\
765 if (lpfc_##attr##_set(phba, val) == 0) \
771 #define lpfc_vport_param_show(attr) \
773 lpfc_##attr##_show(struct device *dev, struct device_attribute *attr, \
776 struct Scsi_Host *shost = class_to_shost(dev);\
777 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;\
779 val = vport->cfg_##attr;\
780 return snprintf(buf, PAGE_SIZE, "%d\n", vport->cfg_##attr);\
783 #define lpfc_vport_param_hex_show(attr) \
785 lpfc_##attr##_show(struct device *dev, struct device_attribute *attr, \
788 struct Scsi_Host *shost = class_to_shost(dev);\
789 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;\
791 val = vport->cfg_##attr;\
792 return snprintf(buf, PAGE_SIZE, "%#x\n", vport->cfg_##attr);\
795 #define lpfc_vport_param_init(attr, default, minval, maxval) \
797 lpfc_##attr##_init(struct lpfc_vport *vport, int val) \
799 if (val >= minval && val <= maxval) {\
800 vport->cfg_##attr = val;\
803 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT, \
804 "0449 lpfc_"#attr" attribute cannot be set to %d, "\
805 "allowed range is ["#minval", "#maxval"]\n", val); \
806 vport->cfg_##attr = default;\
810 #define lpfc_vport_param_set(attr, default, minval, maxval) \
812 lpfc_##attr##_set(struct lpfc_vport *vport, int val) \
814 if (val >= minval && val <= maxval) {\
815 vport->cfg_##attr = val;\
818 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT, \
819 "0450 lpfc_"#attr" attribute cannot be set to %d, "\
820 "allowed range is ["#minval", "#maxval"]\n", val); \
824 #define lpfc_vport_param_store(attr) \
826 lpfc_##attr##_store(struct device *dev, struct device_attribute *attr, \
827 const char *buf, size_t count) \
829 struct Scsi_Host *shost = class_to_shost(dev);\
830 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;\
832 if (!isdigit(buf[0]))\
834 if (sscanf(buf, "%i", &val) != 1)\
836 if (lpfc_##attr##_set(vport, val) == 0) \
843 #define LPFC_ATTR(name, defval, minval, maxval, desc) \
844 static int lpfc_##name = defval;\
845 module_param(lpfc_##name, int, 0);\
846 MODULE_PARM_DESC(lpfc_##name, desc);\
847 lpfc_param_init(name, defval, minval, maxval)
849 #define LPFC_ATTR_R(name, defval, minval, maxval, desc) \
850 static int lpfc_##name = defval;\
851 module_param(lpfc_##name, int, 0);\
852 MODULE_PARM_DESC(lpfc_##name, desc);\
853 lpfc_param_show(name)\
854 lpfc_param_init(name, defval, minval, maxval)\
855 static DEVICE_ATTR(lpfc_##name, S_IRUGO , lpfc_##name##_show, NULL)
857 #define LPFC_ATTR_RW(name, defval, minval, maxval, desc) \
858 static int lpfc_##name = defval;\
859 module_param(lpfc_##name, int, 0);\
860 MODULE_PARM_DESC(lpfc_##name, desc);\
861 lpfc_param_show(name)\
862 lpfc_param_init(name, defval, minval, maxval)\
863 lpfc_param_set(name, defval, minval, maxval)\
864 lpfc_param_store(name)\
865 static DEVICE_ATTR(lpfc_##name, S_IRUGO | S_IWUSR,\
866 lpfc_##name##_show, lpfc_##name##_store)
868 #define LPFC_ATTR_HEX_R(name, defval, minval, maxval, desc) \
869 static int lpfc_##name = defval;\
870 module_param(lpfc_##name, int, 0);\
871 MODULE_PARM_DESC(lpfc_##name, desc);\
872 lpfc_param_hex_show(name)\
873 lpfc_param_init(name, defval, minval, maxval)\
874 static DEVICE_ATTR(lpfc_##name, S_IRUGO , lpfc_##name##_show, NULL)
876 #define LPFC_ATTR_HEX_RW(name, defval, minval, maxval, desc) \
877 static int lpfc_##name = defval;\
878 module_param(lpfc_##name, int, 0);\
879 MODULE_PARM_DESC(lpfc_##name, desc);\
880 lpfc_param_hex_show(name)\
881 lpfc_param_init(name, defval, minval, maxval)\
882 lpfc_param_set(name, defval, minval, maxval)\
883 lpfc_param_store(name)\
884 static DEVICE_ATTR(lpfc_##name, S_IRUGO | S_IWUSR,\
885 lpfc_##name##_show, lpfc_##name##_store)
887 #define LPFC_VPORT_ATTR(name, defval, minval, maxval, desc) \
888 static int lpfc_##name = defval;\
889 module_param(lpfc_##name, int, 0);\
890 MODULE_PARM_DESC(lpfc_##name, desc);\
891 lpfc_vport_param_init(name, defval, minval, maxval)
893 #define LPFC_VPORT_ATTR_R(name, defval, minval, maxval, desc) \
894 static int lpfc_##name = defval;\
895 module_param(lpfc_##name, int, 0);\
896 MODULE_PARM_DESC(lpfc_##name, desc);\
897 lpfc_vport_param_show(name)\
898 lpfc_vport_param_init(name, defval, minval, maxval)\
899 static DEVICE_ATTR(lpfc_##name, S_IRUGO , lpfc_##name##_show, NULL)
901 #define LPFC_VPORT_ATTR_RW(name, defval, minval, maxval, desc) \
902 static int lpfc_##name = defval;\
903 module_param(lpfc_##name, int, 0);\
904 MODULE_PARM_DESC(lpfc_##name, desc);\
905 lpfc_vport_param_show(name)\
906 lpfc_vport_param_init(name, defval, minval, maxval)\
907 lpfc_vport_param_set(name, defval, minval, maxval)\
908 lpfc_vport_param_store(name)\
909 static DEVICE_ATTR(lpfc_##name, S_IRUGO | S_IWUSR,\
910 lpfc_##name##_show, lpfc_##name##_store)
912 #define LPFC_VPORT_ATTR_HEX_R(name, defval, minval, maxval, desc) \
913 static int lpfc_##name = defval;\
914 module_param(lpfc_##name, int, 0);\
915 MODULE_PARM_DESC(lpfc_##name, desc);\
916 lpfc_vport_param_hex_show(name)\
917 lpfc_vport_param_init(name, defval, minval, maxval)\
918 static DEVICE_ATTR(lpfc_##name, S_IRUGO , lpfc_##name##_show, NULL)
920 #define LPFC_VPORT_ATTR_HEX_RW(name, defval, minval, maxval, desc) \
921 static int lpfc_##name = defval;\
922 module_param(lpfc_##name, int, 0);\
923 MODULE_PARM_DESC(lpfc_##name, desc);\
924 lpfc_vport_param_hex_show(name)\
925 lpfc_vport_param_init(name, defval, minval, maxval)\
926 lpfc_vport_param_set(name, defval, minval, maxval)\
927 lpfc_vport_param_store(name)\
928 static DEVICE_ATTR(lpfc_##name, S_IRUGO | S_IWUSR,\
929 lpfc_##name##_show, lpfc_##name##_store)
931 static DEVICE_ATTR(info, S_IRUGO, lpfc_info_show, NULL);
932 static DEVICE_ATTR(serialnum, S_IRUGO, lpfc_serialnum_show, NULL);
933 static DEVICE_ATTR(modeldesc, S_IRUGO, lpfc_modeldesc_show, NULL);
934 static DEVICE_ATTR(modelname, S_IRUGO, lpfc_modelname_show, NULL);
935 static DEVICE_ATTR(programtype, S_IRUGO, lpfc_programtype_show, NULL);
936 static DEVICE_ATTR(portnum, S_IRUGO, lpfc_vportnum_show, NULL);
937 static DEVICE_ATTR(fwrev, S_IRUGO, lpfc_fwrev_show, NULL);
938 static DEVICE_ATTR(hdw, S_IRUGO, lpfc_hdw_show, NULL);
939 static DEVICE_ATTR(state, S_IRUGO, lpfc_state_show, NULL);
940 static DEVICE_ATTR(option_rom_version, S_IRUGO,
941 lpfc_option_rom_version_show, NULL);
942 static DEVICE_ATTR(num_discovered_ports, S_IRUGO,
943 lpfc_num_discovered_ports_show, NULL);
944 static DEVICE_ATTR(nport_evt_cnt, S_IRUGO, lpfc_nport_evt_cnt_show, NULL);
945 static DEVICE_ATTR(lpfc_drvr_version, S_IRUGO, lpfc_drvr_version_show, NULL);
946 static DEVICE_ATTR(board_mode, S_IRUGO | S_IWUSR,
947 lpfc_board_mode_show, lpfc_board_mode_store);
948 static DEVICE_ATTR(issue_reset, S_IWUSR, NULL, lpfc_issue_reset);
949 static DEVICE_ATTR(max_vpi, S_IRUGO, lpfc_max_vpi_show, NULL);
950 static DEVICE_ATTR(used_vpi, S_IRUGO, lpfc_used_vpi_show, NULL);
951 static DEVICE_ATTR(max_rpi, S_IRUGO, lpfc_max_rpi_show, NULL);
952 static DEVICE_ATTR(used_rpi, S_IRUGO, lpfc_used_rpi_show, NULL);
953 static DEVICE_ATTR(max_xri, S_IRUGO, lpfc_max_xri_show, NULL);
954 static DEVICE_ATTR(used_xri, S_IRUGO, lpfc_used_xri_show, NULL);
955 static DEVICE_ATTR(npiv_info, S_IRUGO, lpfc_npiv_info_show, NULL);
956 static DEVICE_ATTR(lpfc_temp_sensor, S_IRUGO, lpfc_temp_sensor_show, NULL);
959 static char *lpfc_soft_wwn_key = "C99G71SL8032A";
962 lpfc_soft_wwn_enable_store(struct device *dev, struct device_attribute *attr,
963 const char *buf, size_t count)
965 struct Scsi_Host *shost = class_to_shost(dev);
966 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
967 struct lpfc_hba *phba = vport->phba;
968 unsigned int cnt = count;
971 * We're doing a simple sanity check for soft_wwpn setting.
972 * We require that the user write a specific key to enable
973 * the soft_wwpn attribute to be settable. Once the attribute
974 * is written, the enable key resets. If further updates are
975 * desired, the key must be written again to re-enable the
978 * The "key" is not secret - it is a hardcoded string shown
979 * here. The intent is to protect against the random user or
980 * application that is just writing attributes.
983 /* count may include a LF at end of string */
984 if (buf[cnt-1] == '\n')
987 if ((cnt != strlen(lpfc_soft_wwn_key)) ||
988 (strncmp(buf, lpfc_soft_wwn_key, strlen(lpfc_soft_wwn_key)) != 0))
991 phba->soft_wwn_enable = 1;
994 static DEVICE_ATTR(lpfc_soft_wwn_enable, S_IWUSR, NULL,
995 lpfc_soft_wwn_enable_store);
998 lpfc_soft_wwpn_show(struct device *dev, struct device_attribute *attr,
1001 struct Scsi_Host *shost = class_to_shost(dev);
1002 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1003 struct lpfc_hba *phba = vport->phba;
1005 return snprintf(buf, PAGE_SIZE, "0x%llx\n",
1006 (unsigned long long)phba->cfg_soft_wwpn);
1011 lpfc_soft_wwpn_store(struct device *dev, struct device_attribute *attr,
1012 const char *buf, size_t count)
1014 struct Scsi_Host *shost = class_to_shost(dev);
1015 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1016 struct lpfc_hba *phba = vport->phba;
1017 struct completion online_compl;
1018 int stat1=0, stat2=0;
1019 unsigned int i, j, cnt=count;
1022 if (!phba->cfg_enable_hba_reset)
1024 spin_lock_irq(&phba->hbalock);
1025 if (phba->over_temp_state == HBA_OVER_TEMP) {
1026 spin_unlock_irq(&phba->hbalock);
1029 spin_unlock_irq(&phba->hbalock);
1030 /* count may include a LF at end of string */
1031 if (buf[cnt-1] == '\n')
1034 if (!phba->soft_wwn_enable || (cnt < 16) || (cnt > 18) ||
1035 ((cnt == 17) && (*buf++ != 'x')) ||
1036 ((cnt == 18) && ((*buf++ != '0') || (*buf++ != 'x'))))
1039 phba->soft_wwn_enable = 0;
1041 memset(wwpn, 0, sizeof(wwpn));
1043 /* Validate and store the new name */
1044 for (i=0, j=0; i < 16; i++) {
1045 if ((*buf >= 'a') && (*buf <= 'f'))
1046 j = ((j << 4) | ((*buf++ -'a') + 10));
1047 else if ((*buf >= 'A') && (*buf <= 'F'))
1048 j = ((j << 4) | ((*buf++ -'A') + 10));
1049 else if ((*buf >= '0') && (*buf <= '9'))
1050 j = ((j << 4) | (*buf++ -'0'));
1054 wwpn[i/2] = j & 0xff;
1058 phba->cfg_soft_wwpn = wwn_to_u64(wwpn);
1059 fc_host_port_name(shost) = phba->cfg_soft_wwpn;
1060 if (phba->cfg_soft_wwnn)
1061 fc_host_node_name(shost) = phba->cfg_soft_wwnn;
1063 dev_printk(KERN_NOTICE, &phba->pcidev->dev,
1064 "lpfc%d: Reinitializing to use soft_wwpn\n", phba->brd_no);
1066 stat1 = lpfc_do_offline(phba, LPFC_EVT_OFFLINE);
1068 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1069 "0463 lpfc_soft_wwpn attribute set failed to "
1070 "reinit adapter - %d\n", stat1);
1071 init_completion(&online_compl);
1072 lpfc_workq_post_event(phba, &stat2, &online_compl, LPFC_EVT_ONLINE);
1073 wait_for_completion(&online_compl);
1075 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1076 "0464 lpfc_soft_wwpn attribute set failed to "
1077 "reinit adapter - %d\n", stat2);
1078 return (stat1 || stat2) ? -EIO : count;
1080 static DEVICE_ATTR(lpfc_soft_wwpn, S_IRUGO | S_IWUSR,\
1081 lpfc_soft_wwpn_show, lpfc_soft_wwpn_store);
1084 lpfc_soft_wwnn_show(struct device *dev, struct device_attribute *attr,
1087 struct Scsi_Host *shost = class_to_shost(dev);
1088 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
1089 return snprintf(buf, PAGE_SIZE, "0x%llx\n",
1090 (unsigned long long)phba->cfg_soft_wwnn);
1095 lpfc_soft_wwnn_store(struct device *dev, struct device_attribute *attr,
1096 const char *buf, size_t count)
1098 struct Scsi_Host *shost = class_to_shost(dev);
1099 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
1100 unsigned int i, j, cnt=count;
1103 /* count may include a LF at end of string */
1104 if (buf[cnt-1] == '\n')
1107 if (!phba->soft_wwn_enable || (cnt < 16) || (cnt > 18) ||
1108 ((cnt == 17) && (*buf++ != 'x')) ||
1109 ((cnt == 18) && ((*buf++ != '0') || (*buf++ != 'x'))))
1113 * Allow wwnn to be set many times, as long as the enable is set.
1114 * However, once the wwpn is set, everything locks.
1117 memset(wwnn, 0, sizeof(wwnn));
1119 /* Validate and store the new name */
1120 for (i=0, j=0; i < 16; i++) {
1121 if ((*buf >= 'a') && (*buf <= 'f'))
1122 j = ((j << 4) | ((*buf++ -'a') + 10));
1123 else if ((*buf >= 'A') && (*buf <= 'F'))
1124 j = ((j << 4) | ((*buf++ -'A') + 10));
1125 else if ((*buf >= '0') && (*buf <= '9'))
1126 j = ((j << 4) | (*buf++ -'0'));
1130 wwnn[i/2] = j & 0xff;
1134 phba->cfg_soft_wwnn = wwn_to_u64(wwnn);
1136 dev_printk(KERN_NOTICE, &phba->pcidev->dev,
1137 "lpfc%d: soft_wwnn set. Value will take effect upon "
1138 "setting of the soft_wwpn\n", phba->brd_no);
1142 static DEVICE_ATTR(lpfc_soft_wwnn, S_IRUGO | S_IWUSR,\
1143 lpfc_soft_wwnn_show, lpfc_soft_wwnn_store);
1146 static int lpfc_poll = 0;
1147 module_param(lpfc_poll, int, 0);
1148 MODULE_PARM_DESC(lpfc_poll, "FCP ring polling mode control:"
1150 " 1 - poll with interrupts enabled"
1151 " 3 - poll and disable FCP ring interrupts");
1153 static DEVICE_ATTR(lpfc_poll, S_IRUGO | S_IWUSR,
1154 lpfc_poll_show, lpfc_poll_store);
1156 int lpfc_sli_mode = 0;
1157 module_param(lpfc_sli_mode, int, 0);
1158 MODULE_PARM_DESC(lpfc_sli_mode, "SLI mode selector:"
1159 " 0 - auto (SLI-3 if supported),"
1160 " 2 - select SLI-2 even on SLI-3 capable HBAs,"
1161 " 3 - select SLI-3");
1163 int lpfc_enable_npiv = 0;
1164 module_param(lpfc_enable_npiv, int, 0);
1165 MODULE_PARM_DESC(lpfc_enable_npiv, "Enable NPIV functionality");
1166 lpfc_param_show(enable_npiv);
1167 lpfc_param_init(enable_npiv, 0, 0, 1);
1168 static DEVICE_ATTR(lpfc_enable_npiv, S_IRUGO,
1169 lpfc_enable_npiv_show, NULL);
1172 # lpfc_nodev_tmo: If set, it will hold all I/O errors on devices that disappear
1173 # until the timer expires. Value range is [0,255]. Default value is 30.
1175 static int lpfc_nodev_tmo = LPFC_DEF_DEVLOSS_TMO;
1176 static int lpfc_devloss_tmo = LPFC_DEF_DEVLOSS_TMO;
1177 module_param(lpfc_nodev_tmo, int, 0);
1178 MODULE_PARM_DESC(lpfc_nodev_tmo,
1179 "Seconds driver will hold I/O waiting "
1180 "for a device to come back");
1182 lpfc_nodev_tmo_show(struct device *dev, struct device_attribute *attr,
1185 struct Scsi_Host *shost = class_to_shost(dev);
1186 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1188 val = vport->cfg_devloss_tmo;
1189 return snprintf(buf, PAGE_SIZE, "%d\n", vport->cfg_devloss_tmo);
1193 lpfc_nodev_tmo_init(struct lpfc_vport *vport, int val)
1195 if (vport->cfg_devloss_tmo != LPFC_DEF_DEVLOSS_TMO) {
1196 vport->cfg_nodev_tmo = vport->cfg_devloss_tmo;
1197 if (val != LPFC_DEF_DEVLOSS_TMO)
1198 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
1199 "0402 Ignoring nodev_tmo module "
1200 "parameter because devloss_tmo is "
1205 if (val >= LPFC_MIN_DEVLOSS_TMO && val <= LPFC_MAX_DEVLOSS_TMO) {
1206 vport->cfg_nodev_tmo = val;
1207 vport->cfg_devloss_tmo = val;
1210 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
1211 "0400 lpfc_nodev_tmo attribute cannot be set to"
1212 " %d, allowed range is [%d, %d]\n",
1213 val, LPFC_MIN_DEVLOSS_TMO, LPFC_MAX_DEVLOSS_TMO);
1214 vport->cfg_nodev_tmo = LPFC_DEF_DEVLOSS_TMO;
1219 lpfc_update_rport_devloss_tmo(struct lpfc_vport *vport)
1221 struct Scsi_Host *shost;
1222 struct lpfc_nodelist *ndlp;
1224 shost = lpfc_shost_from_vport(vport);
1225 spin_lock_irq(shost->host_lock);
1226 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp)
1227 if (NLP_CHK_NODE_ACT(ndlp) && ndlp->rport)
1228 ndlp->rport->dev_loss_tmo = vport->cfg_devloss_tmo;
1229 spin_unlock_irq(shost->host_lock);
1233 lpfc_nodev_tmo_set(struct lpfc_vport *vport, int val)
1235 if (vport->dev_loss_tmo_changed ||
1236 (lpfc_devloss_tmo != LPFC_DEF_DEVLOSS_TMO)) {
1237 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
1238 "0401 Ignoring change to nodev_tmo "
1239 "because devloss_tmo is set.\n");
1242 if (val >= LPFC_MIN_DEVLOSS_TMO && val <= LPFC_MAX_DEVLOSS_TMO) {
1243 vport->cfg_nodev_tmo = val;
1244 vport->cfg_devloss_tmo = val;
1245 lpfc_update_rport_devloss_tmo(vport);
1248 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
1249 "0403 lpfc_nodev_tmo attribute cannot be set to"
1250 "%d, allowed range is [%d, %d]\n",
1251 val, LPFC_MIN_DEVLOSS_TMO, LPFC_MAX_DEVLOSS_TMO);
1255 lpfc_vport_param_store(nodev_tmo)
1257 static DEVICE_ATTR(lpfc_nodev_tmo, S_IRUGO | S_IWUSR,
1258 lpfc_nodev_tmo_show, lpfc_nodev_tmo_store);
1261 # lpfc_devloss_tmo: If set, it will hold all I/O errors on devices that
1262 # disappear until the timer expires. Value range is [0,255]. Default
1265 module_param(lpfc_devloss_tmo, int, 0);
1266 MODULE_PARM_DESC(lpfc_devloss_tmo,
1267 "Seconds driver will hold I/O waiting "
1268 "for a device to come back");
1269 lpfc_vport_param_init(devloss_tmo, LPFC_DEF_DEVLOSS_TMO,
1270 LPFC_MIN_DEVLOSS_TMO, LPFC_MAX_DEVLOSS_TMO)
1271 lpfc_vport_param_show(devloss_tmo)
1273 lpfc_devloss_tmo_set(struct lpfc_vport *vport, int val)
1275 if (val >= LPFC_MIN_DEVLOSS_TMO && val <= LPFC_MAX_DEVLOSS_TMO) {
1276 vport->cfg_nodev_tmo = val;
1277 vport->cfg_devloss_tmo = val;
1278 vport->dev_loss_tmo_changed = 1;
1279 lpfc_update_rport_devloss_tmo(vport);
1283 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
1284 "0404 lpfc_devloss_tmo attribute cannot be set to"
1285 " %d, allowed range is [%d, %d]\n",
1286 val, LPFC_MIN_DEVLOSS_TMO, LPFC_MAX_DEVLOSS_TMO);
1290 lpfc_vport_param_store(devloss_tmo)
1291 static DEVICE_ATTR(lpfc_devloss_tmo, S_IRUGO | S_IWUSR,
1292 lpfc_devloss_tmo_show, lpfc_devloss_tmo_store);
1295 # lpfc_log_verbose: Only turn this flag on if you are willing to risk being
1296 # deluged with LOTS of information.
1297 # You can set a bit mask to record specific types of verbose messages:
1299 # LOG_ELS 0x1 ELS events
1300 # LOG_DISCOVERY 0x2 Link discovery events
1301 # LOG_MBOX 0x4 Mailbox events
1302 # LOG_INIT 0x8 Initialization events
1303 # LOG_LINK_EVENT 0x10 Link events
1304 # LOG_FCP 0x40 FCP traffic history
1305 # LOG_NODE 0x80 Node table events
1306 # LOG_MISC 0x400 Miscellaneous events
1307 # LOG_SLI 0x800 SLI events
1308 # LOG_FCP_ERROR 0x1000 Only log FCP errors
1309 # LOG_LIBDFC 0x2000 LIBDFC events
1310 # LOG_ALL_MSG 0xffff LOG all messages
1312 LPFC_VPORT_ATTR_HEX_RW(log_verbose, 0x0, 0x0, 0xffff,
1313 "Verbose logging bit-mask");
1316 # lpfc_enable_da_id: This turns on the DA_ID CT command that deregisters
1317 # objects that have been registered with the nameserver after login.
1319 LPFC_VPORT_ATTR_R(enable_da_id, 0, 0, 1,
1320 "Deregister nameserver objects before LOGO");
1323 # lun_queue_depth: This parameter is used to limit the number of outstanding
1324 # commands per FCP LUN. Value range is [1,128]. Default value is 30.
1326 LPFC_VPORT_ATTR_R(lun_queue_depth, 30, 1, 128,
1327 "Max number of FCP commands we can queue to a specific LUN");
1330 # hba_queue_depth: This parameter is used to limit the number of outstanding
1331 # commands per lpfc HBA. Value range is [32,8192]. If this parameter
1332 # value is greater than the maximum number of exchanges supported by the HBA,
1333 # then maximum number of exchanges supported by the HBA is used to determine
1334 # the hba_queue_depth.
1336 LPFC_ATTR_R(hba_queue_depth, 8192, 32, 8192,
1337 "Max number of FCP commands we can queue to a lpfc HBA");
1340 # peer_port_login: This parameter allows/prevents logins
1341 # between peer ports hosted on the same physical port.
1342 # When this parameter is set 0 peer ports of same physical port
1343 # are not allowed to login to each other.
1344 # When this parameter is set 1 peer ports of same physical port
1345 # are allowed to login to each other.
1346 # Default value of this parameter is 0.
1348 LPFC_VPORT_ATTR_R(peer_port_login, 0, 0, 1,
1349 "Allow peer ports on the same physical port to login to each "
1353 # restrict_login: This parameter allows/prevents logins
1354 # between Virtual Ports and remote initiators.
1355 # When this parameter is not set (0) Virtual Ports will accept PLOGIs from
1356 # other initiators and will attempt to PLOGI all remote ports.
1357 # When this parameter is set (1) Virtual Ports will reject PLOGIs from
1358 # remote ports and will not attempt to PLOGI to other initiators.
1359 # This parameter does not restrict to the physical port.
1360 # This parameter does not restrict logins to Fabric resident remote ports.
1361 # Default value of this parameter is 1.
1363 static int lpfc_restrict_login = 1;
1364 module_param(lpfc_restrict_login, int, 0);
1365 MODULE_PARM_DESC(lpfc_restrict_login,
1366 "Restrict virtual ports login to remote initiators.");
1367 lpfc_vport_param_show(restrict_login);
1370 lpfc_restrict_login_init(struct lpfc_vport *vport, int val)
1372 if (val < 0 || val > 1) {
1373 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
1374 "0449 lpfc_restrict_login attribute cannot "
1375 "be set to %d, allowed range is [0, 1]\n",
1377 vport->cfg_restrict_login = 1;
1380 if (vport->port_type == LPFC_PHYSICAL_PORT) {
1381 vport->cfg_restrict_login = 0;
1384 vport->cfg_restrict_login = val;
1389 lpfc_restrict_login_set(struct lpfc_vport *vport, int val)
1391 if (val < 0 || val > 1) {
1392 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
1393 "0450 lpfc_restrict_login attribute cannot "
1394 "be set to %d, allowed range is [0, 1]\n",
1396 vport->cfg_restrict_login = 1;
1399 if (vport->port_type == LPFC_PHYSICAL_PORT && val != 0) {
1400 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
1401 "0468 lpfc_restrict_login must be 0 for "
1402 "Physical ports.\n");
1403 vport->cfg_restrict_login = 0;
1406 vport->cfg_restrict_login = val;
1409 lpfc_vport_param_store(restrict_login);
1410 static DEVICE_ATTR(lpfc_restrict_login, S_IRUGO | S_IWUSR,
1411 lpfc_restrict_login_show, lpfc_restrict_login_store);
1414 # Some disk devices have a "select ID" or "select Target" capability.
1415 # From a protocol standpoint "select ID" usually means select the
1416 # Fibre channel "ALPA". In the FC-AL Profile there is an "informative
1417 # annex" which contains a table that maps a "select ID" (a number
1418 # between 0 and 7F) to an ALPA. By default, for compatibility with
1419 # older drivers, the lpfc driver scans this table from low ALPA to high
1422 # Turning on the scan-down variable (on = 1, off = 0) will
1423 # cause the lpfc driver to use an inverted table, effectively
1424 # scanning ALPAs from high to low. Value range is [0,1]. Default value is 1.
1426 # (Note: This "select ID" functionality is a LOOP ONLY characteristic
1427 # and will not work across a fabric. Also this parameter will take
1428 # effect only in the case when ALPA map is not available.)
1430 LPFC_VPORT_ATTR_R(scan_down, 1, 0, 1,
1431 "Start scanning for devices from highest ALPA to lowest");
1434 # lpfc_topology: link topology for init link
1435 # 0x0 = attempt loop mode then point-to-point
1436 # 0x01 = internal loopback mode
1437 # 0x02 = attempt point-to-point mode only
1438 # 0x04 = attempt loop mode only
1439 # 0x06 = attempt point-to-point mode then loop
1440 # Set point-to-point mode if you want to run as an N_Port.
1441 # Set loop mode if you want to run as an NL_Port. Value range is [0,0x6].
1442 # Default value is 0.
1445 lpfc_topology_set(struct lpfc_hba *phba, int val)
1449 if (val >= 0 && val <= 6) {
1450 prev_val = phba->cfg_topology;
1451 phba->cfg_topology = val;
1452 err = lpfc_issue_lip(lpfc_shost_from_vport(phba->pport));
1454 phba->cfg_topology = prev_val;
1457 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1458 "%d:0467 lpfc_topology attribute cannot be set to %d, "
1459 "allowed range is [0, 6]\n",
1463 static int lpfc_topology = 0;
1464 module_param(lpfc_topology, int, 0);
1465 MODULE_PARM_DESC(lpfc_topology, "Select Fibre Channel topology");
1466 lpfc_param_show(topology)
1467 lpfc_param_init(topology, 0, 0, 6)
1468 lpfc_param_store(topology)
1469 static DEVICE_ATTR(lpfc_topology, S_IRUGO | S_IWUSR,
1470 lpfc_topology_show, lpfc_topology_store);
1473 # lpfc_link_speed: Link speed selection for initializing the Fibre Channel
1475 # 0 = auto select (default)
1480 # Value range is [0,8]. Default value is 0.
1483 lpfc_link_speed_set(struct lpfc_hba *phba, int val)
1488 if (((val == LINK_SPEED_1G) && !(phba->lmt & LMT_1Gb)) ||
1489 ((val == LINK_SPEED_2G) && !(phba->lmt & LMT_2Gb)) ||
1490 ((val == LINK_SPEED_4G) && !(phba->lmt & LMT_4Gb)) ||
1491 ((val == LINK_SPEED_8G) && !(phba->lmt & LMT_8Gb)) ||
1492 ((val == LINK_SPEED_10G) && !(phba->lmt & LMT_10Gb)))
1495 if ((val >= 0 && val <= LPFC_MAX_LINK_SPEED)
1496 && (LPFC_LINK_SPEED_BITMAP & (1 << val))) {
1497 prev_val = phba->cfg_link_speed;
1498 phba->cfg_link_speed = val;
1499 err = lpfc_issue_lip(lpfc_shost_from_vport(phba->pport));
1501 phba->cfg_link_speed = prev_val;
1505 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1506 "%d:0469 lpfc_link_speed attribute cannot be set to %d, "
1507 "allowed range is [0, 8]\n",
1512 static int lpfc_link_speed = 0;
1513 module_param(lpfc_link_speed, int, 0);
1514 MODULE_PARM_DESC(lpfc_link_speed, "Select link speed");
1515 lpfc_param_show(link_speed)
1517 lpfc_link_speed_init(struct lpfc_hba *phba, int val)
1519 if ((val >= 0 && val <= LPFC_MAX_LINK_SPEED)
1520 && (LPFC_LINK_SPEED_BITMAP & (1 << val))) {
1521 phba->cfg_link_speed = val;
1524 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1525 "0454 lpfc_link_speed attribute cannot "
1526 "be set to %d, allowed values are "
1527 "["LPFC_LINK_SPEED_STRING"]\n", val);
1528 phba->cfg_link_speed = 0;
1532 lpfc_param_store(link_speed)
1533 static DEVICE_ATTR(lpfc_link_speed, S_IRUGO | S_IWUSR,
1534 lpfc_link_speed_show, lpfc_link_speed_store);
1537 # lpfc_fcp_class: Determines FC class to use for the FCP protocol.
1538 # Value range is [2,3]. Default value is 3.
1540 LPFC_VPORT_ATTR_R(fcp_class, 3, 2, 3,
1541 "Select Fibre Channel class of service for FCP sequences");
1544 # lpfc_use_adisc: Use ADISC for FCP rediscovery instead of PLOGI. Value range
1545 # is [0,1]. Default value is 0.
1547 LPFC_VPORT_ATTR_RW(use_adisc, 0, 0, 1,
1548 "Use ADISC on rediscovery to authenticate FCP devices");
1551 # lpfc_ack0: Use ACK0, instead of ACK1 for class 2 acknowledgement. Value
1552 # range is [0,1]. Default value is 0.
1554 LPFC_ATTR_R(ack0, 0, 0, 1, "Enable ACK0 support");
1557 # lpfc_cr_delay & lpfc_cr_count: Default values for I/O colaesing
1558 # cr_delay (msec) or cr_count outstanding commands. cr_delay can take
1559 # value [0,63]. cr_count can take value [1,255]. Default value of cr_delay
1560 # is 0. Default value of cr_count is 1. The cr_count feature is disabled if
1561 # cr_delay is set to 0.
1563 LPFC_ATTR_RW(cr_delay, 0, 0, 63, "A count of milliseconds after which an "
1564 "interrupt response is generated");
1566 LPFC_ATTR_RW(cr_count, 1, 1, 255, "A count of I/O completions after which an "
1567 "interrupt response is generated");
1570 # lpfc_multi_ring_support: Determines how many rings to spread available
1571 # cmd/rsp IOCB entries across.
1572 # Value range is [1,2]. Default value is 1.
1574 LPFC_ATTR_R(multi_ring_support, 1, 1, 2, "Determines number of primary "
1575 "SLI rings to spread IOCB entries across");
1578 # lpfc_multi_ring_rctl: If lpfc_multi_ring_support is enabled, this
1579 # identifies what rctl value to configure the additional ring for.
1580 # Value range is [1,0xff]. Default value is 4 (Unsolicated Data).
1582 LPFC_ATTR_R(multi_ring_rctl, FC_UNSOL_DATA, 1,
1583 255, "Identifies RCTL for additional ring configuration");
1586 # lpfc_multi_ring_type: If lpfc_multi_ring_support is enabled, this
1587 # identifies what type value to configure the additional ring for.
1588 # Value range is [1,0xff]. Default value is 5 (LLC/SNAP).
1590 LPFC_ATTR_R(multi_ring_type, FC_LLC_SNAP, 1,
1591 255, "Identifies TYPE for additional ring configuration");
1594 # lpfc_fdmi_on: controls FDMI support.
1595 # 0 = no FDMI support
1596 # 1 = support FDMI without attribute of hostname
1597 # 2 = support FDMI with attribute of hostname
1598 # Value range [0,2]. Default value is 0.
1600 LPFC_VPORT_ATTR_RW(fdmi_on, 0, 0, 2, "Enable FDMI support");
1603 # Specifies the maximum number of ELS cmds we can have outstanding (for
1604 # discovery). Value range is [1,64]. Default value = 32.
1606 LPFC_VPORT_ATTR(discovery_threads, 32, 1, 64, "Maximum number of ELS commands "
1607 "during discovery");
1610 # lpfc_max_luns: maximum allowed LUN.
1611 # Value range is [0,65535]. Default value is 255.
1612 # NOTE: The SCSI layer might probe all allowed LUN on some old targets.
1614 LPFC_VPORT_ATTR_R(max_luns, 255, 0, 65535, "Maximum allowed LUN");
1617 # lpfc_poll_tmo: .Milliseconds driver will wait between polling FCP ring.
1618 # Value range is [1,255], default value is 10.
1620 LPFC_ATTR_RW(poll_tmo, 10, 1, 255,
1621 "Milliseconds driver will wait between polling FCP ring");
1624 # lpfc_use_msi: Use MSI (Message Signaled Interrupts) in systems that
1625 # support this feature
1626 # 0 = MSI disabled (default)
1629 # Value range is [0,2]. Default value is 0.
1631 LPFC_ATTR_R(use_msi, 0, 0, 2, "Use Message Signaled Interrupts (1) or "
1632 "MSI-X (2), if possible");
1635 # lpfc_enable_hba_reset: Allow or prevent HBA resets to the hardware.
1636 # 0 = HBA resets disabled
1637 # 1 = HBA resets enabled (default)
1638 # Value range is [0,1]. Default value is 1.
1640 LPFC_ATTR_R(enable_hba_reset, 1, 0, 1, "Enable HBA resets from the driver.");
1643 # lpfc_enable_hba_heartbeat: Enable HBA heartbeat timer..
1644 # 0 = HBA Heartbeat disabled
1645 # 1 = HBA Heartbeat enabled (default)
1646 # Value range is [0,1]. Default value is 1.
1648 LPFC_ATTR_R(enable_hba_heartbeat, 1, 0, 1, "Enable HBA Heartbeat.");
1651 * lpfc_sg_seg_cnt: Initial Maximum DMA Segment Count
1652 * This value can be set to values between 64 and 256. The default value is
1653 * 64, but may be increased to allow for larger Max I/O sizes. The scsi layer
1654 * will be allowed to request I/Os of sizes up to (MAX_SEG_COUNT * SEG_SIZE).
1656 LPFC_ATTR_R(sg_seg_cnt, LPFC_DEFAULT_SG_SEG_CNT, LPFC_DEFAULT_SG_SEG_CNT,
1657 LPFC_MAX_SG_SEG_CNT, "Max Scatter Gather Segment Count");
1659 struct device_attribute *lpfc_hba_attrs[] = {
1661 &dev_attr_serialnum,
1662 &dev_attr_modeldesc,
1663 &dev_attr_modelname,
1664 &dev_attr_programtype,
1668 &dev_attr_option_rom_version,
1670 &dev_attr_num_discovered_ports,
1671 &dev_attr_lpfc_drvr_version,
1672 &dev_attr_lpfc_temp_sensor,
1673 &dev_attr_lpfc_log_verbose,
1674 &dev_attr_lpfc_lun_queue_depth,
1675 &dev_attr_lpfc_hba_queue_depth,
1676 &dev_attr_lpfc_peer_port_login,
1677 &dev_attr_lpfc_nodev_tmo,
1678 &dev_attr_lpfc_devloss_tmo,
1679 &dev_attr_lpfc_fcp_class,
1680 &dev_attr_lpfc_use_adisc,
1681 &dev_attr_lpfc_ack0,
1682 &dev_attr_lpfc_topology,
1683 &dev_attr_lpfc_scan_down,
1684 &dev_attr_lpfc_link_speed,
1685 &dev_attr_lpfc_cr_delay,
1686 &dev_attr_lpfc_cr_count,
1687 &dev_attr_lpfc_multi_ring_support,
1688 &dev_attr_lpfc_multi_ring_rctl,
1689 &dev_attr_lpfc_multi_ring_type,
1690 &dev_attr_lpfc_fdmi_on,
1691 &dev_attr_lpfc_max_luns,
1692 &dev_attr_lpfc_enable_npiv,
1693 &dev_attr_nport_evt_cnt,
1694 &dev_attr_board_mode,
1701 &dev_attr_npiv_info,
1702 &dev_attr_issue_reset,
1703 &dev_attr_lpfc_poll,
1704 &dev_attr_lpfc_poll_tmo,
1705 &dev_attr_lpfc_use_msi,
1706 &dev_attr_lpfc_soft_wwnn,
1707 &dev_attr_lpfc_soft_wwpn,
1708 &dev_attr_lpfc_soft_wwn_enable,
1709 &dev_attr_lpfc_enable_hba_reset,
1710 &dev_attr_lpfc_enable_hba_heartbeat,
1711 &dev_attr_lpfc_sg_seg_cnt,
1715 struct device_attribute *lpfc_vport_attrs[] = {
1718 &dev_attr_num_discovered_ports,
1719 &dev_attr_lpfc_drvr_version,
1720 &dev_attr_lpfc_log_verbose,
1721 &dev_attr_lpfc_lun_queue_depth,
1722 &dev_attr_lpfc_nodev_tmo,
1723 &dev_attr_lpfc_devloss_tmo,
1724 &dev_attr_lpfc_hba_queue_depth,
1725 &dev_attr_lpfc_peer_port_login,
1726 &dev_attr_lpfc_restrict_login,
1727 &dev_attr_lpfc_fcp_class,
1728 &dev_attr_lpfc_use_adisc,
1729 &dev_attr_lpfc_fdmi_on,
1730 &dev_attr_lpfc_max_luns,
1731 &dev_attr_nport_evt_cnt,
1732 &dev_attr_npiv_info,
1733 &dev_attr_lpfc_enable_da_id,
1738 sysfs_ctlreg_write(struct kobject *kobj, struct bin_attribute *bin_attr,
1739 char *buf, loff_t off, size_t count)
1742 struct device *dev = container_of(kobj, struct device, kobj);
1743 struct Scsi_Host *shost = class_to_shost(dev);
1744 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1745 struct lpfc_hba *phba = vport->phba;
1747 if ((off + count) > FF_REG_AREA_SIZE)
1750 if (count == 0) return 0;
1752 if (off % 4 || count % 4 || (unsigned long)buf % 4)
1755 if (!(vport->fc_flag & FC_OFFLINE_MODE)) {
1759 spin_lock_irq(&phba->hbalock);
1760 for (buf_off = 0; buf_off < count; buf_off += sizeof(uint32_t))
1761 writel(*((uint32_t *)(buf + buf_off)),
1762 phba->ctrl_regs_memmap_p + off + buf_off);
1764 spin_unlock_irq(&phba->hbalock);
1770 sysfs_ctlreg_read(struct kobject *kobj, struct bin_attribute *bin_attr,
1771 char *buf, loff_t off, size_t count)
1775 struct device *dev = container_of(kobj, struct device, kobj);
1776 struct Scsi_Host *shost = class_to_shost(dev);
1777 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1778 struct lpfc_hba *phba = vport->phba;
1780 if (off > FF_REG_AREA_SIZE)
1783 if ((off + count) > FF_REG_AREA_SIZE)
1784 count = FF_REG_AREA_SIZE - off;
1786 if (count == 0) return 0;
1788 if (off % 4 || count % 4 || (unsigned long)buf % 4)
1791 spin_lock_irq(&phba->hbalock);
1793 for (buf_off = 0; buf_off < count; buf_off += sizeof(uint32_t)) {
1794 tmp_ptr = (uint32_t *)(buf + buf_off);
1795 *tmp_ptr = readl(phba->ctrl_regs_memmap_p + off + buf_off);
1798 spin_unlock_irq(&phba->hbalock);
1803 static struct bin_attribute sysfs_ctlreg_attr = {
1806 .mode = S_IRUSR | S_IWUSR,
1809 .read = sysfs_ctlreg_read,
1810 .write = sysfs_ctlreg_write,
1815 sysfs_mbox_idle(struct lpfc_hba *phba)
1817 phba->sysfs_mbox.state = SMBOX_IDLE;
1818 phba->sysfs_mbox.offset = 0;
1820 if (phba->sysfs_mbox.mbox) {
1821 mempool_free(phba->sysfs_mbox.mbox,
1822 phba->mbox_mem_pool);
1823 phba->sysfs_mbox.mbox = NULL;
1828 sysfs_mbox_write(struct kobject *kobj, struct bin_attribute *bin_attr,
1829 char *buf, loff_t off, size_t count)
1831 struct device *dev = container_of(kobj, struct device, kobj);
1832 struct Scsi_Host *shost = class_to_shost(dev);
1833 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1834 struct lpfc_hba *phba = vport->phba;
1835 struct lpfcMboxq *mbox = NULL;
1837 if ((count + off) > MAILBOX_CMD_SIZE)
1840 if (off % 4 || count % 4 || (unsigned long)buf % 4)
1847 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
1850 memset(mbox, 0, sizeof (LPFC_MBOXQ_t));
1853 spin_lock_irq(&phba->hbalock);
1856 if (phba->sysfs_mbox.mbox)
1857 mempool_free(mbox, phba->mbox_mem_pool);
1859 phba->sysfs_mbox.mbox = mbox;
1860 phba->sysfs_mbox.state = SMBOX_WRITING;
1862 if (phba->sysfs_mbox.state != SMBOX_WRITING ||
1863 phba->sysfs_mbox.offset != off ||
1864 phba->sysfs_mbox.mbox == NULL) {
1865 sysfs_mbox_idle(phba);
1866 spin_unlock_irq(&phba->hbalock);
1871 memcpy((uint8_t *) & phba->sysfs_mbox.mbox->mb + off,
1874 phba->sysfs_mbox.offset = off + count;
1876 spin_unlock_irq(&phba->hbalock);
1882 sysfs_mbox_read(struct kobject *kobj, struct bin_attribute *bin_attr,
1883 char *buf, loff_t off, size_t count)
1885 struct device *dev = container_of(kobj, struct device, kobj);
1886 struct Scsi_Host *shost = class_to_shost(dev);
1887 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1888 struct lpfc_hba *phba = vport->phba;
1891 if (off > MAILBOX_CMD_SIZE)
1894 if ((count + off) > MAILBOX_CMD_SIZE)
1895 count = MAILBOX_CMD_SIZE - off;
1897 if (off % 4 || count % 4 || (unsigned long)buf % 4)
1900 if (off && count == 0)
1903 spin_lock_irq(&phba->hbalock);
1905 if (phba->over_temp_state == HBA_OVER_TEMP) {
1906 sysfs_mbox_idle(phba);
1907 spin_unlock_irq(&phba->hbalock);
1912 phba->sysfs_mbox.state == SMBOX_WRITING &&
1913 phba->sysfs_mbox.offset >= 2 * sizeof(uint32_t)) {
1915 switch (phba->sysfs_mbox.mbox->mb.mbxCommand) {
1919 case MBX_CONFIG_LINK:
1920 case MBX_CONFIG_RING:
1921 case MBX_RESET_RING:
1922 case MBX_UNREG_LOGIN:
1924 case MBX_DUMP_CONTEXT:
1929 if (!(vport->fc_flag & FC_OFFLINE_MODE)) {
1930 printk(KERN_WARNING "mbox_read:Command 0x%x "
1931 "is illegal in on-line state\n",
1932 phba->sysfs_mbox.mbox->mb.mbxCommand);
1933 sysfs_mbox_idle(phba);
1934 spin_unlock_irq(&phba->hbalock);
1938 case MBX_WRITE_VPARMS:
1941 case MBX_READ_CONFIG:
1942 case MBX_READ_RCONFIG:
1943 case MBX_READ_STATUS:
1946 case MBX_READ_LNK_STAT:
1947 case MBX_DUMP_MEMORY:
1949 case MBX_UPDATE_CFG:
1950 case MBX_KILL_BOARD:
1952 case MBX_LOAD_EXP_ROM:
1954 case MBX_DEL_LD_ENTRY:
1955 case MBX_SET_VARIABLE:
1958 case MBX_READ_SPARM64:
1962 case MBX_REG_LOGIN64:
1963 case MBX_CONFIG_PORT:
1964 case MBX_RUN_BIU_DIAG:
1965 printk(KERN_WARNING "mbox_read: Illegal Command 0x%x\n",
1966 phba->sysfs_mbox.mbox->mb.mbxCommand);
1967 sysfs_mbox_idle(phba);
1968 spin_unlock_irq(&phba->hbalock);
1971 printk(KERN_WARNING "mbox_read: Unknown Command 0x%x\n",
1972 phba->sysfs_mbox.mbox->mb.mbxCommand);
1973 sysfs_mbox_idle(phba);
1974 spin_unlock_irq(&phba->hbalock);
1978 /* If HBA encountered an error attention, allow only DUMP
1979 * or RESTART mailbox commands until the HBA is restarted.
1981 if ((phba->pport->stopped) &&
1982 (phba->sysfs_mbox.mbox->mb.mbxCommand !=
1984 phba->sysfs_mbox.mbox->mb.mbxCommand !=
1986 phba->sysfs_mbox.mbox->mb.mbxCommand !=
1987 MBX_WRITE_VPARMS)) {
1988 sysfs_mbox_idle(phba);
1989 spin_unlock_irq(&phba->hbalock);
1993 phba->sysfs_mbox.mbox->vport = vport;
1995 /* Don't allow mailbox commands to be sent when blocked
1996 * or when in the middle of discovery
1998 if (phba->sli.sli_flag & LPFC_BLOCK_MGMT_IO ||
1999 vport->fc_flag & FC_NDISC_ACTIVE) {
2000 sysfs_mbox_idle(phba);
2001 spin_unlock_irq(&phba->hbalock);
2005 if ((vport->fc_flag & FC_OFFLINE_MODE) ||
2006 (!(phba->sli.sli_flag & LPFC_SLI2_ACTIVE))){
2008 spin_unlock_irq(&phba->hbalock);
2009 rc = lpfc_sli_issue_mbox (phba,
2010 phba->sysfs_mbox.mbox,
2012 spin_lock_irq(&phba->hbalock);
2015 spin_unlock_irq(&phba->hbalock);
2016 rc = lpfc_sli_issue_mbox_wait (phba,
2017 phba->sysfs_mbox.mbox,
2018 lpfc_mbox_tmo_val(phba,
2019 phba->sysfs_mbox.mbox->mb.mbxCommand) * HZ);
2020 spin_lock_irq(&phba->hbalock);
2023 if (rc != MBX_SUCCESS) {
2024 if (rc == MBX_TIMEOUT) {
2025 phba->sysfs_mbox.mbox = NULL;
2027 sysfs_mbox_idle(phba);
2028 spin_unlock_irq(&phba->hbalock);
2029 return (rc == MBX_TIMEOUT) ? -ETIME : -ENODEV;
2031 phba->sysfs_mbox.state = SMBOX_READING;
2033 else if (phba->sysfs_mbox.offset != off ||
2034 phba->sysfs_mbox.state != SMBOX_READING) {
2035 printk(KERN_WARNING "mbox_read: Bad State\n");
2036 sysfs_mbox_idle(phba);
2037 spin_unlock_irq(&phba->hbalock);
2041 memcpy(buf, (uint8_t *) & phba->sysfs_mbox.mbox->mb + off, count);
2043 phba->sysfs_mbox.offset = off + count;
2045 if (phba->sysfs_mbox.offset == MAILBOX_CMD_SIZE)
2046 sysfs_mbox_idle(phba);
2048 spin_unlock_irq(&phba->hbalock);
2053 static struct bin_attribute sysfs_mbox_attr = {
2056 .mode = S_IRUSR | S_IWUSR,
2058 .size = MAILBOX_CMD_SIZE,
2059 .read = sysfs_mbox_read,
2060 .write = sysfs_mbox_write,
2064 lpfc_alloc_sysfs_attr(struct lpfc_vport *vport)
2066 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2069 error = sysfs_create_bin_file(&shost->shost_dev.kobj,
2070 &sysfs_ctlreg_attr);
2074 error = sysfs_create_bin_file(&shost->shost_dev.kobj,
2077 goto out_remove_ctlreg_attr;
2080 out_remove_ctlreg_attr:
2081 sysfs_remove_bin_file(&shost->shost_dev.kobj, &sysfs_ctlreg_attr);
2087 lpfc_free_sysfs_attr(struct lpfc_vport *vport)
2089 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2091 sysfs_remove_bin_file(&shost->shost_dev.kobj, &sysfs_mbox_attr);
2092 sysfs_remove_bin_file(&shost->shost_dev.kobj, &sysfs_ctlreg_attr);
2097 * Dynamic FC Host Attributes Support
2101 lpfc_get_host_port_id(struct Scsi_Host *shost)
2103 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2105 /* note: fc_myDID already in cpu endianness */
2106 fc_host_port_id(shost) = vport->fc_myDID;
2110 lpfc_get_host_port_type(struct Scsi_Host *shost)
2112 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2113 struct lpfc_hba *phba = vport->phba;
2115 spin_lock_irq(shost->host_lock);
2117 if (vport->port_type == LPFC_NPIV_PORT) {
2118 fc_host_port_type(shost) = FC_PORTTYPE_NPIV;
2119 } else if (lpfc_is_link_up(phba)) {
2120 if (phba->fc_topology == TOPOLOGY_LOOP) {
2121 if (vport->fc_flag & FC_PUBLIC_LOOP)
2122 fc_host_port_type(shost) = FC_PORTTYPE_NLPORT;
2124 fc_host_port_type(shost) = FC_PORTTYPE_LPORT;
2126 if (vport->fc_flag & FC_FABRIC)
2127 fc_host_port_type(shost) = FC_PORTTYPE_NPORT;
2129 fc_host_port_type(shost) = FC_PORTTYPE_PTP;
2132 fc_host_port_type(shost) = FC_PORTTYPE_UNKNOWN;
2134 spin_unlock_irq(shost->host_lock);
2138 lpfc_get_host_port_state(struct Scsi_Host *shost)
2140 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2141 struct lpfc_hba *phba = vport->phba;
2143 spin_lock_irq(shost->host_lock);
2145 if (vport->fc_flag & FC_OFFLINE_MODE)
2146 fc_host_port_state(shost) = FC_PORTSTATE_OFFLINE;
2148 switch (phba->link_state) {
2149 case LPFC_LINK_UNKNOWN:
2150 case LPFC_LINK_DOWN:
2151 fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
2155 case LPFC_HBA_READY:
2156 /* Links up, beyond this port_type reports state */
2157 fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
2159 case LPFC_HBA_ERROR:
2160 fc_host_port_state(shost) = FC_PORTSTATE_ERROR;
2163 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
2168 spin_unlock_irq(shost->host_lock);
2172 lpfc_get_host_speed(struct Scsi_Host *shost)
2174 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2175 struct lpfc_hba *phba = vport->phba;
2177 spin_lock_irq(shost->host_lock);
2179 if (lpfc_is_link_up(phba)) {
2180 switch(phba->fc_linkspeed) {
2182 fc_host_speed(shost) = FC_PORTSPEED_1GBIT;
2185 fc_host_speed(shost) = FC_PORTSPEED_2GBIT;
2188 fc_host_speed(shost) = FC_PORTSPEED_4GBIT;
2191 fc_host_speed(shost) = FC_PORTSPEED_8GBIT;
2194 fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN;
2198 fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN;
2200 spin_unlock_irq(shost->host_lock);
2204 lpfc_get_host_fabric_name (struct Scsi_Host *shost)
2206 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2207 struct lpfc_hba *phba = vport->phba;
2210 spin_lock_irq(shost->host_lock);
2212 if ((vport->fc_flag & FC_FABRIC) ||
2213 ((phba->fc_topology == TOPOLOGY_LOOP) &&
2214 (vport->fc_flag & FC_PUBLIC_LOOP)))
2215 node_name = wwn_to_u64(phba->fc_fabparam.nodeName.u.wwn);
2217 /* fabric is local port if there is no F/FL_Port */
2220 spin_unlock_irq(shost->host_lock);
2222 fc_host_fabric_name(shost) = node_name;
2225 static struct fc_host_statistics *
2226 lpfc_get_stats(struct Scsi_Host *shost)
2228 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2229 struct lpfc_hba *phba = vport->phba;
2230 struct lpfc_sli *psli = &phba->sli;
2231 struct fc_host_statistics *hs = &phba->link_stats;
2232 struct lpfc_lnk_stat * lso = &psli->lnk_stat_offsets;
2233 LPFC_MBOXQ_t *pmboxq;
2235 unsigned long seconds;
2239 * prevent udev from issuing mailbox commands until the port is
2242 if (phba->link_state < LPFC_LINK_DOWN ||
2243 !phba->mbox_mem_pool ||
2244 (phba->sli.sli_flag & LPFC_SLI2_ACTIVE) == 0)
2247 if (phba->sli.sli_flag & LPFC_BLOCK_MGMT_IO)
2250 pmboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2253 memset(pmboxq, 0, sizeof (LPFC_MBOXQ_t));
2256 pmb->mbxCommand = MBX_READ_STATUS;
2257 pmb->mbxOwner = OWN_HOST;
2258 pmboxq->context1 = NULL;
2259 pmboxq->vport = vport;
2261 if ((vport->fc_flag & FC_OFFLINE_MODE) ||
2262 (!(psli->sli_flag & LPFC_SLI2_ACTIVE)))
2263 rc = lpfc_sli_issue_mbox(phba, pmboxq, MBX_POLL);
2265 rc = lpfc_sli_issue_mbox_wait(phba, pmboxq, phba->fc_ratov * 2);
2267 if (rc != MBX_SUCCESS) {
2268 if (rc != MBX_TIMEOUT)
2269 mempool_free(pmboxq, phba->mbox_mem_pool);
2273 memset(hs, 0, sizeof (struct fc_host_statistics));
2275 hs->tx_frames = pmb->un.varRdStatus.xmitFrameCnt;
2276 hs->tx_words = (pmb->un.varRdStatus.xmitByteCnt * 256);
2277 hs->rx_frames = pmb->un.varRdStatus.rcvFrameCnt;
2278 hs->rx_words = (pmb->un.varRdStatus.rcvByteCnt * 256);
2280 memset(pmboxq, 0, sizeof (LPFC_MBOXQ_t));
2281 pmb->mbxCommand = MBX_READ_LNK_STAT;
2282 pmb->mbxOwner = OWN_HOST;
2283 pmboxq->context1 = NULL;
2284 pmboxq->vport = vport;
2286 if ((vport->fc_flag & FC_OFFLINE_MODE) ||
2287 (!(psli->sli_flag & LPFC_SLI2_ACTIVE)))
2288 rc = lpfc_sli_issue_mbox(phba, pmboxq, MBX_POLL);
2290 rc = lpfc_sli_issue_mbox_wait(phba, pmboxq, phba->fc_ratov * 2);
2292 if (rc != MBX_SUCCESS) {
2293 if (rc != MBX_TIMEOUT)
2294 mempool_free(pmboxq, phba->mbox_mem_pool);
2298 hs->link_failure_count = pmb->un.varRdLnk.linkFailureCnt;
2299 hs->loss_of_sync_count = pmb->un.varRdLnk.lossSyncCnt;
2300 hs->loss_of_signal_count = pmb->un.varRdLnk.lossSignalCnt;
2301 hs->prim_seq_protocol_err_count = pmb->un.varRdLnk.primSeqErrCnt;
2302 hs->invalid_tx_word_count = pmb->un.varRdLnk.invalidXmitWord;
2303 hs->invalid_crc_count = pmb->un.varRdLnk.crcCnt;
2304 hs->error_frames = pmb->un.varRdLnk.crcCnt;
2306 hs->link_failure_count -= lso->link_failure_count;
2307 hs->loss_of_sync_count -= lso->loss_of_sync_count;
2308 hs->loss_of_signal_count -= lso->loss_of_signal_count;
2309 hs->prim_seq_protocol_err_count -= lso->prim_seq_protocol_err_count;
2310 hs->invalid_tx_word_count -= lso->invalid_tx_word_count;
2311 hs->invalid_crc_count -= lso->invalid_crc_count;
2312 hs->error_frames -= lso->error_frames;
2314 if (phba->fc_topology == TOPOLOGY_LOOP) {
2315 hs->lip_count = (phba->fc_eventTag >> 1);
2316 hs->lip_count -= lso->link_events;
2320 hs->nos_count = (phba->fc_eventTag >> 1);
2321 hs->nos_count -= lso->link_events;
2324 hs->dumped_frames = -1;
2326 seconds = get_seconds();
2327 if (seconds < psli->stats_start)
2328 hs->seconds_since_last_reset = seconds +
2329 ((unsigned long)-1 - psli->stats_start);
2331 hs->seconds_since_last_reset = seconds - psli->stats_start;
2333 mempool_free(pmboxq, phba->mbox_mem_pool);
2339 lpfc_reset_stats(struct Scsi_Host *shost)
2341 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2342 struct lpfc_hba *phba = vport->phba;
2343 struct lpfc_sli *psli = &phba->sli;
2344 struct lpfc_lnk_stat *lso = &psli->lnk_stat_offsets;
2345 LPFC_MBOXQ_t *pmboxq;
2349 if (phba->sli.sli_flag & LPFC_BLOCK_MGMT_IO)
2352 pmboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2355 memset(pmboxq, 0, sizeof(LPFC_MBOXQ_t));
2358 pmb->mbxCommand = MBX_READ_STATUS;
2359 pmb->mbxOwner = OWN_HOST;
2360 pmb->un.varWords[0] = 0x1; /* reset request */
2361 pmboxq->context1 = NULL;
2362 pmboxq->vport = vport;
2364 if ((vport->fc_flag & FC_OFFLINE_MODE) ||
2365 (!(psli->sli_flag & LPFC_SLI2_ACTIVE)))
2366 rc = lpfc_sli_issue_mbox(phba, pmboxq, MBX_POLL);
2368 rc = lpfc_sli_issue_mbox_wait(phba, pmboxq, phba->fc_ratov * 2);
2370 if (rc != MBX_SUCCESS) {
2371 if (rc != MBX_TIMEOUT)
2372 mempool_free(pmboxq, phba->mbox_mem_pool);
2376 memset(pmboxq, 0, sizeof(LPFC_MBOXQ_t));
2377 pmb->mbxCommand = MBX_READ_LNK_STAT;
2378 pmb->mbxOwner = OWN_HOST;
2379 pmboxq->context1 = NULL;
2380 pmboxq->vport = vport;
2382 if ((vport->fc_flag & FC_OFFLINE_MODE) ||
2383 (!(psli->sli_flag & LPFC_SLI2_ACTIVE)))
2384 rc = lpfc_sli_issue_mbox(phba, pmboxq, MBX_POLL);
2386 rc = lpfc_sli_issue_mbox_wait(phba, pmboxq, phba->fc_ratov * 2);
2388 if (rc != MBX_SUCCESS) {
2389 if (rc != MBX_TIMEOUT)
2390 mempool_free( pmboxq, phba->mbox_mem_pool);
2394 lso->link_failure_count = pmb->un.varRdLnk.linkFailureCnt;
2395 lso->loss_of_sync_count = pmb->un.varRdLnk.lossSyncCnt;
2396 lso->loss_of_signal_count = pmb->un.varRdLnk.lossSignalCnt;
2397 lso->prim_seq_protocol_err_count = pmb->un.varRdLnk.primSeqErrCnt;
2398 lso->invalid_tx_word_count = pmb->un.varRdLnk.invalidXmitWord;
2399 lso->invalid_crc_count = pmb->un.varRdLnk.crcCnt;
2400 lso->error_frames = pmb->un.varRdLnk.crcCnt;
2401 lso->link_events = (phba->fc_eventTag >> 1);
2403 psli->stats_start = get_seconds();
2405 mempool_free(pmboxq, phba->mbox_mem_pool);
2411 * The LPFC driver treats linkdown handling as target loss events so there
2412 * are no sysfs handlers for link_down_tmo.
2415 static struct lpfc_nodelist *
2416 lpfc_get_node_by_target(struct scsi_target *starget)
2418 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
2419 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2420 struct lpfc_nodelist *ndlp;
2422 spin_lock_irq(shost->host_lock);
2423 /* Search for this, mapped, target ID */
2424 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
2425 if (NLP_CHK_NODE_ACT(ndlp) &&
2426 ndlp->nlp_state == NLP_STE_MAPPED_NODE &&
2427 starget->id == ndlp->nlp_sid) {
2428 spin_unlock_irq(shost->host_lock);
2432 spin_unlock_irq(shost->host_lock);
2437 lpfc_get_starget_port_id(struct scsi_target *starget)
2439 struct lpfc_nodelist *ndlp = lpfc_get_node_by_target(starget);
2441 fc_starget_port_id(starget) = ndlp ? ndlp->nlp_DID : -1;
2445 lpfc_get_starget_node_name(struct scsi_target *starget)
2447 struct lpfc_nodelist *ndlp = lpfc_get_node_by_target(starget);
2449 fc_starget_node_name(starget) =
2450 ndlp ? wwn_to_u64(ndlp->nlp_nodename.u.wwn) : 0;
2454 lpfc_get_starget_port_name(struct scsi_target *starget)
2456 struct lpfc_nodelist *ndlp = lpfc_get_node_by_target(starget);
2458 fc_starget_port_name(starget) =
2459 ndlp ? wwn_to_u64(ndlp->nlp_portname.u.wwn) : 0;
2463 lpfc_set_rport_loss_tmo(struct fc_rport *rport, uint32_t timeout)
2466 rport->dev_loss_tmo = timeout;
2468 rport->dev_loss_tmo = 1;
2472 #define lpfc_rport_show_function(field, format_string, sz, cast) \
2474 lpfc_show_rport_##field (struct device *dev, \
2475 struct device_attribute *attr, \
2478 struct fc_rport *rport = transport_class_to_rport(dev); \
2479 struct lpfc_rport_data *rdata = rport->hostdata; \
2480 return snprintf(buf, sz, format_string, \
2481 (rdata->target) ? cast rdata->target->field : 0); \
2484 #define lpfc_rport_rd_attr(field, format_string, sz) \
2485 lpfc_rport_show_function(field, format_string, sz, ) \
2486 static FC_RPORT_ATTR(field, S_IRUGO, lpfc_show_rport_##field, NULL)
2489 struct fc_function_template lpfc_transport_functions = {
2490 /* fixed attributes the driver supports */
2491 .show_host_node_name = 1,
2492 .show_host_port_name = 1,
2493 .show_host_supported_classes = 1,
2494 .show_host_supported_fc4s = 1,
2495 .show_host_supported_speeds = 1,
2496 .show_host_maxframe_size = 1,
2498 /* dynamic attributes the driver supports */
2499 .get_host_port_id = lpfc_get_host_port_id,
2500 .show_host_port_id = 1,
2502 .get_host_port_type = lpfc_get_host_port_type,
2503 .show_host_port_type = 1,
2505 .get_host_port_state = lpfc_get_host_port_state,
2506 .show_host_port_state = 1,
2508 /* active_fc4s is shown but doesn't change (thus no get function) */
2509 .show_host_active_fc4s = 1,
2511 .get_host_speed = lpfc_get_host_speed,
2512 .show_host_speed = 1,
2514 .get_host_fabric_name = lpfc_get_host_fabric_name,
2515 .show_host_fabric_name = 1,
2518 * The LPFC driver treats linkdown handling as target loss events
2519 * so there are no sysfs handlers for link_down_tmo.
2522 .get_fc_host_stats = lpfc_get_stats,
2523 .reset_fc_host_stats = lpfc_reset_stats,
2525 .dd_fcrport_size = sizeof(struct lpfc_rport_data),
2526 .show_rport_maxframe_size = 1,
2527 .show_rport_supported_classes = 1,
2529 .set_rport_dev_loss_tmo = lpfc_set_rport_loss_tmo,
2530 .show_rport_dev_loss_tmo = 1,
2532 .get_starget_port_id = lpfc_get_starget_port_id,
2533 .show_starget_port_id = 1,
2535 .get_starget_node_name = lpfc_get_starget_node_name,
2536 .show_starget_node_name = 1,
2538 .get_starget_port_name = lpfc_get_starget_port_name,
2539 .show_starget_port_name = 1,
2541 .issue_fc_host_lip = lpfc_issue_lip,
2542 .dev_loss_tmo_callbk = lpfc_dev_loss_tmo_callbk,
2543 .terminate_rport_io = lpfc_terminate_rport_io,
2545 .dd_fcvport_size = sizeof(struct lpfc_vport *),
2548 struct fc_function_template lpfc_vport_transport_functions = {
2549 /* fixed attributes the driver supports */
2550 .show_host_node_name = 1,
2551 .show_host_port_name = 1,
2552 .show_host_supported_classes = 1,
2553 .show_host_supported_fc4s = 1,
2554 .show_host_supported_speeds = 1,
2555 .show_host_maxframe_size = 1,
2557 /* dynamic attributes the driver supports */
2558 .get_host_port_id = lpfc_get_host_port_id,
2559 .show_host_port_id = 1,
2561 .get_host_port_type = lpfc_get_host_port_type,
2562 .show_host_port_type = 1,
2564 .get_host_port_state = lpfc_get_host_port_state,
2565 .show_host_port_state = 1,
2567 /* active_fc4s is shown but doesn't change (thus no get function) */
2568 .show_host_active_fc4s = 1,
2570 .get_host_speed = lpfc_get_host_speed,
2571 .show_host_speed = 1,
2573 .get_host_fabric_name = lpfc_get_host_fabric_name,
2574 .show_host_fabric_name = 1,
2577 * The LPFC driver treats linkdown handling as target loss events
2578 * so there are no sysfs handlers for link_down_tmo.
2581 .get_fc_host_stats = lpfc_get_stats,
2582 .reset_fc_host_stats = lpfc_reset_stats,
2584 .dd_fcrport_size = sizeof(struct lpfc_rport_data),
2585 .show_rport_maxframe_size = 1,
2586 .show_rport_supported_classes = 1,
2588 .set_rport_dev_loss_tmo = lpfc_set_rport_loss_tmo,
2589 .show_rport_dev_loss_tmo = 1,
2591 .get_starget_port_id = lpfc_get_starget_port_id,
2592 .show_starget_port_id = 1,
2594 .get_starget_node_name = lpfc_get_starget_node_name,
2595 .show_starget_node_name = 1,
2597 .get_starget_port_name = lpfc_get_starget_port_name,
2598 .show_starget_port_name = 1,
2600 .dev_loss_tmo_callbk = lpfc_dev_loss_tmo_callbk,
2601 .terminate_rport_io = lpfc_terminate_rport_io,
2603 .vport_disable = lpfc_vport_disable,
2607 lpfc_get_cfgparam(struct lpfc_hba *phba)
2609 lpfc_cr_delay_init(phba, lpfc_cr_delay);
2610 lpfc_cr_count_init(phba, lpfc_cr_count);
2611 lpfc_multi_ring_support_init(phba, lpfc_multi_ring_support);
2612 lpfc_multi_ring_rctl_init(phba, lpfc_multi_ring_rctl);
2613 lpfc_multi_ring_type_init(phba, lpfc_multi_ring_type);
2614 lpfc_ack0_init(phba, lpfc_ack0);
2615 lpfc_topology_init(phba, lpfc_topology);
2616 lpfc_link_speed_init(phba, lpfc_link_speed);
2617 lpfc_poll_tmo_init(phba, lpfc_poll_tmo);
2618 lpfc_enable_npiv_init(phba, lpfc_enable_npiv);
2619 lpfc_use_msi_init(phba, lpfc_use_msi);
2620 lpfc_enable_hba_reset_init(phba, lpfc_enable_hba_reset);
2621 lpfc_enable_hba_heartbeat_init(phba, lpfc_enable_hba_heartbeat);
2622 phba->cfg_poll = lpfc_poll;
2623 phba->cfg_soft_wwnn = 0L;
2624 phba->cfg_soft_wwpn = 0L;
2625 lpfc_sg_seg_cnt_init(phba, lpfc_sg_seg_cnt);
2626 /* Also reinitialize the host templates with new values. */
2627 lpfc_vport_template.sg_tablesize = phba->cfg_sg_seg_cnt;
2628 lpfc_template.sg_tablesize = phba->cfg_sg_seg_cnt;
2630 * Since the sg_tablesize is module parameter, the sg_dma_buf_size
2631 * used to create the sg_dma_buf_pool must be dynamically calculated.
2632 * 2 segments are added since the IOCB needs a command and response bde.
2634 phba->cfg_sg_dma_buf_size = sizeof(struct fcp_cmnd) +
2635 sizeof(struct fcp_rsp) +
2636 ((phba->cfg_sg_seg_cnt + 2) * sizeof(struct ulp_bde64));
2637 lpfc_hba_queue_depth_init(phba, lpfc_hba_queue_depth);
2642 lpfc_get_vport_cfgparam(struct lpfc_vport *vport)
2644 lpfc_log_verbose_init(vport, lpfc_log_verbose);
2645 lpfc_lun_queue_depth_init(vport, lpfc_lun_queue_depth);
2646 lpfc_devloss_tmo_init(vport, lpfc_devloss_tmo);
2647 lpfc_nodev_tmo_init(vport, lpfc_nodev_tmo);
2648 lpfc_peer_port_login_init(vport, lpfc_peer_port_login);
2649 lpfc_restrict_login_init(vport, lpfc_restrict_login);
2650 lpfc_fcp_class_init(vport, lpfc_fcp_class);
2651 lpfc_use_adisc_init(vport, lpfc_use_adisc);
2652 lpfc_fdmi_on_init(vport, lpfc_fdmi_on);
2653 lpfc_discovery_threads_init(vport, lpfc_discovery_threads);
2654 lpfc_max_luns_init(vport, lpfc_max_luns);
2655 lpfc_scan_down_init(vport, lpfc_scan_down);
2656 lpfc_enable_da_id_init(vport, lpfc_enable_da_id);