1 // SPDX-License-Identifier: GPL-2.0-only
3 * QLogic Fibre Channel HBA Driver
4 * Copyright (c) 2003-2014 QLogic Corporation
7 #include "qla_target.h"
9 #include <linux/kthread.h>
10 #include <linux/vmalloc.h>
11 #include <linux/slab.h>
12 #include <linux/delay.h>
14 static int qla24xx_vport_disable(struct fc_vport
*, bool);
16 /* SYSFS attributes --------------------------------------------------------- */
19 qla2x00_sysfs_read_fw_dump(struct file
*filp
, struct kobject
*kobj
,
20 struct bin_attribute
*bin_attr
,
21 char *buf
, loff_t off
, size_t count
)
23 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
24 struct device
, kobj
)));
25 struct qla_hw_data
*ha
= vha
->hw
;
28 if (!(ha
->fw_dump_reading
|| ha
->mctp_dump_reading
||
29 ha
->mpi_fw_dump_reading
))
32 mutex_lock(&ha
->optrom_mutex
);
33 if (IS_P3P_TYPE(ha
)) {
34 if (off
< ha
->md_template_size
) {
35 rval
= memory_read_from_buffer(buf
, count
,
36 &off
, ha
->md_tmplt_hdr
, ha
->md_template_size
);
38 off
-= ha
->md_template_size
;
39 rval
= memory_read_from_buffer(buf
, count
,
40 &off
, ha
->md_dump
, ha
->md_dump_size
);
42 } else if (ha
->mctp_dumped
&& ha
->mctp_dump_reading
) {
43 rval
= memory_read_from_buffer(buf
, count
, &off
, ha
->mctp_dump
,
45 } else if (ha
->mpi_fw_dumped
&& ha
->mpi_fw_dump_reading
) {
46 rval
= memory_read_from_buffer(buf
, count
, &off
,
49 } else if (ha
->fw_dump_reading
) {
50 rval
= memory_read_from_buffer(buf
, count
, &off
, ha
->fw_dump
,
55 mutex_unlock(&ha
->optrom_mutex
);
60 qla2x00_sysfs_write_fw_dump(struct file
*filp
, struct kobject
*kobj
,
61 struct bin_attribute
*bin_attr
,
62 char *buf
, loff_t off
, size_t count
)
64 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
65 struct device
, kobj
)));
66 struct qla_hw_data
*ha
= vha
->hw
;
72 reading
= simple_strtol(buf
, NULL
, 10);
75 if (!ha
->fw_dump_reading
)
78 ql_log(ql_log_info
, vha
, 0x705d,
79 "Firmware dump cleared on (%ld).\n", vha
->host_no
);
81 if (IS_P3P_TYPE(ha
)) {
85 ha
->fw_dump_reading
= 0;
86 ha
->fw_dumped
= false;
89 if (ha
->fw_dumped
&& !ha
->fw_dump_reading
) {
90 ha
->fw_dump_reading
= 1;
92 ql_log(ql_log_info
, vha
, 0x705e,
93 "Raw firmware dump ready for read on (%ld).\n",
98 qla2x00_alloc_fw_dump(vha
);
101 if (IS_QLA82XX(ha
)) {
102 qla82xx_idc_lock(ha
);
103 qla82xx_set_reset_owner(vha
);
104 qla82xx_idc_unlock(ha
);
105 } else if (IS_QLA8044(ha
)) {
106 qla8044_idc_lock(ha
);
107 qla82xx_set_reset_owner(vha
);
108 qla8044_idc_unlock(ha
);
110 qla2x00_system_error(vha
);
114 if (IS_P3P_TYPE(ha
)) {
115 if (ha
->md_tmplt_hdr
)
116 ql_dbg(ql_dbg_user
, vha
, 0x705b,
117 "MiniDump supported with this firmware.\n");
119 ql_dbg(ql_dbg_user
, vha
, 0x709d,
120 "MiniDump not supported with this firmware.\n");
125 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
128 if (!ha
->mctp_dump_reading
)
130 ql_log(ql_log_info
, vha
, 0x70c1,
131 "MCTP dump cleared on (%ld).\n", vha
->host_no
);
132 ha
->mctp_dump_reading
= 0;
136 if (ha
->mctp_dumped
&& !ha
->mctp_dump_reading
) {
137 ha
->mctp_dump_reading
= 1;
138 ql_log(ql_log_info
, vha
, 0x70c2,
139 "Raw mctp dump ready for read on (%ld).\n",
144 if (!ha
->mpi_fw_dump_reading
)
146 ql_log(ql_log_info
, vha
, 0x70e7,
147 "MPI firmware dump cleared on (%ld).\n", vha
->host_no
);
148 ha
->mpi_fw_dump_reading
= 0;
149 ha
->mpi_fw_dumped
= 0;
152 if (ha
->mpi_fw_dumped
&& !ha
->mpi_fw_dump_reading
) {
153 ha
->mpi_fw_dump_reading
= 1;
154 ql_log(ql_log_info
, vha
, 0x70e8,
155 "Raw MPI firmware dump ready for read on (%ld).\n",
160 if (IS_QLA27XX(ha
) || IS_QLA28XX(ha
)) {
161 ql_log(ql_log_info
, vha
, 0x70e9,
162 "Issuing MPI firmware dump on host#%ld.\n",
164 ha
->isp_ops
->mpi_fw_dump(vha
, 0);
171 static struct bin_attribute sysfs_fw_dump_attr
= {
174 .mode
= S_IRUSR
| S_IWUSR
,
177 .read
= qla2x00_sysfs_read_fw_dump
,
178 .write
= qla2x00_sysfs_write_fw_dump
,
182 qla2x00_sysfs_read_nvram(struct file
*filp
, struct kobject
*kobj
,
183 struct bin_attribute
*bin_attr
,
184 char *buf
, loff_t off
, size_t count
)
186 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
187 struct device
, kobj
)));
188 struct qla_hw_data
*ha
= vha
->hw
;
190 struct active_regions active_regions
= { };
192 if (!capable(CAP_SYS_ADMIN
))
195 mutex_lock(&ha
->optrom_mutex
);
196 if (qla2x00_chip_is_down(vha
)) {
197 mutex_unlock(&ha
->optrom_mutex
);
201 if (!IS_NOCACHE_VPD_TYPE(ha
)) {
202 mutex_unlock(&ha
->optrom_mutex
);
206 faddr
= ha
->flt_region_nvram
;
207 if (IS_QLA28XX(ha
)) {
208 qla28xx_get_aux_images(vha
, &active_regions
);
209 if (active_regions
.aux
.vpd_nvram
== QLA27XX_SECONDARY_IMAGE
)
210 faddr
= ha
->flt_region_nvram_sec
;
212 ha
->isp_ops
->read_optrom(vha
, ha
->nvram
, faddr
<< 2, ha
->nvram_size
);
214 mutex_unlock(&ha
->optrom_mutex
);
217 return memory_read_from_buffer(buf
, count
, &off
, ha
->nvram
,
222 qla2x00_sysfs_write_nvram(struct file
*filp
, struct kobject
*kobj
,
223 struct bin_attribute
*bin_attr
,
224 char *buf
, loff_t off
, size_t count
)
226 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
227 struct device
, kobj
)));
228 struct qla_hw_data
*ha
= vha
->hw
;
231 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
!= ha
->nvram_size
||
232 !ha
->isp_ops
->write_nvram
)
235 /* Checksum NVRAM. */
236 if (IS_FWI2_CAPABLE(ha
)) {
237 __le32
*iter
= (__force __le32
*)buf
;
241 for (cnt
= 0; cnt
< ((count
>> 2) - 1); cnt
++, iter
++)
242 chksum
+= le32_to_cpu(*iter
);
243 chksum
= ~chksum
+ 1;
244 *iter
= cpu_to_le32(chksum
);
249 iter
= (uint8_t *)buf
;
251 for (cnt
= 0; cnt
< count
- 1; cnt
++)
253 chksum
= ~chksum
+ 1;
257 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
) {
258 ql_log(ql_log_warn
, vha
, 0x705f,
259 "HBA not online, failing NVRAM update.\n");
263 mutex_lock(&ha
->optrom_mutex
);
264 if (qla2x00_chip_is_down(vha
)) {
265 mutex_unlock(&ha
->optrom_mutex
);
270 ha
->isp_ops
->write_nvram(vha
, buf
, ha
->nvram_base
, count
);
271 ha
->isp_ops
->read_nvram(vha
, ha
->nvram
, ha
->nvram_base
,
273 mutex_unlock(&ha
->optrom_mutex
);
275 ql_dbg(ql_dbg_user
, vha
, 0x7060,
276 "Setting ISP_ABORT_NEEDED\n");
277 /* NVRAM settings take effect immediately. */
278 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
279 qla2xxx_wake_dpc(vha
);
280 qla2x00_wait_for_chip_reset(vha
);
285 static struct bin_attribute sysfs_nvram_attr
= {
288 .mode
= S_IRUSR
| S_IWUSR
,
291 .read
= qla2x00_sysfs_read_nvram
,
292 .write
= qla2x00_sysfs_write_nvram
,
296 qla2x00_sysfs_read_optrom(struct file
*filp
, struct kobject
*kobj
,
297 struct bin_attribute
*bin_attr
,
298 char *buf
, loff_t off
, size_t count
)
300 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
301 struct device
, kobj
)));
302 struct qla_hw_data
*ha
= vha
->hw
;
305 mutex_lock(&ha
->optrom_mutex
);
307 if (ha
->optrom_state
!= QLA_SREADING
)
310 rval
= memory_read_from_buffer(buf
, count
, &off
, ha
->optrom_buffer
,
311 ha
->optrom_region_size
);
314 mutex_unlock(&ha
->optrom_mutex
);
320 qla2x00_sysfs_write_optrom(struct file
*filp
, struct kobject
*kobj
,
321 struct bin_attribute
*bin_attr
,
322 char *buf
, loff_t off
, size_t count
)
324 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
325 struct device
, kobj
)));
326 struct qla_hw_data
*ha
= vha
->hw
;
328 mutex_lock(&ha
->optrom_mutex
);
330 if (ha
->optrom_state
!= QLA_SWRITING
) {
331 mutex_unlock(&ha
->optrom_mutex
);
334 if (off
> ha
->optrom_region_size
) {
335 mutex_unlock(&ha
->optrom_mutex
);
338 if (off
+ count
> ha
->optrom_region_size
)
339 count
= ha
->optrom_region_size
- off
;
341 memcpy(&ha
->optrom_buffer
[off
], buf
, count
);
342 mutex_unlock(&ha
->optrom_mutex
);
347 static struct bin_attribute sysfs_optrom_attr
= {
350 .mode
= S_IRUSR
| S_IWUSR
,
353 .read
= qla2x00_sysfs_read_optrom
,
354 .write
= qla2x00_sysfs_write_optrom
,
358 qla2x00_sysfs_write_optrom_ctl(struct file
*filp
, struct kobject
*kobj
,
359 struct bin_attribute
*bin_attr
,
360 char *buf
, loff_t off
, size_t count
)
362 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
363 struct device
, kobj
)));
364 struct qla_hw_data
*ha
= vha
->hw
;
366 uint32_t size
= ha
->optrom_size
;
368 ssize_t rval
= count
;
373 if (unlikely(pci_channel_offline(ha
->pdev
)))
376 if (sscanf(buf
, "%d:%x:%x", &val
, &start
, &size
) < 1)
378 if (start
> ha
->optrom_size
)
380 if (size
> ha
->optrom_size
- start
)
381 size
= ha
->optrom_size
- start
;
383 mutex_lock(&ha
->optrom_mutex
);
384 if (qla2x00_chip_is_down(vha
)) {
385 mutex_unlock(&ha
->optrom_mutex
);
390 if (ha
->optrom_state
!= QLA_SREADING
&&
391 ha
->optrom_state
!= QLA_SWRITING
) {
395 ha
->optrom_state
= QLA_SWAITING
;
397 ql_dbg(ql_dbg_user
, vha
, 0x7061,
398 "Freeing flash region allocation -- 0x%x bytes.\n",
399 ha
->optrom_region_size
);
401 vfree(ha
->optrom_buffer
);
402 ha
->optrom_buffer
= NULL
;
405 if (ha
->optrom_state
!= QLA_SWAITING
) {
410 ha
->optrom_region_start
= start
;
411 ha
->optrom_region_size
= size
;
413 ha
->optrom_state
= QLA_SREADING
;
414 ha
->optrom_buffer
= vzalloc(ha
->optrom_region_size
);
415 if (ha
->optrom_buffer
== NULL
) {
416 ql_log(ql_log_warn
, vha
, 0x7062,
417 "Unable to allocate memory for optrom retrieval "
418 "(%x).\n", ha
->optrom_region_size
);
420 ha
->optrom_state
= QLA_SWAITING
;
425 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
) {
426 ql_log(ql_log_warn
, vha
, 0x7063,
427 "HBA not online, failing NVRAM update.\n");
432 ql_dbg(ql_dbg_user
, vha
, 0x7064,
433 "Reading flash region -- 0x%x/0x%x.\n",
434 ha
->optrom_region_start
, ha
->optrom_region_size
);
436 ha
->isp_ops
->read_optrom(vha
, ha
->optrom_buffer
,
437 ha
->optrom_region_start
, ha
->optrom_region_size
);
440 if (ha
->optrom_state
!= QLA_SWAITING
) {
446 * We need to be more restrictive on which FLASH regions are
447 * allowed to be updated via user-space. Regions accessible
448 * via this method include:
450 * ISP21xx/ISP22xx/ISP23xx type boards:
452 * 0x000000 -> 0x020000 -- Boot code.
454 * ISP2322/ISP24xx type boards:
456 * 0x000000 -> 0x07ffff -- Boot code.
457 * 0x080000 -> 0x0fffff -- Firmware.
459 * ISP25xx type boards:
461 * 0x000000 -> 0x07ffff -- Boot code.
462 * 0x080000 -> 0x0fffff -- Firmware.
463 * 0x120000 -> 0x12ffff -- VPD and HBA parameters.
465 * > ISP25xx type boards:
467 * None -- should go through BSG.
470 if (ha
->optrom_size
== OPTROM_SIZE_2300
&& start
== 0)
472 else if (IS_QLA24XX_TYPE(ha
) || IS_QLA25XX(ha
))
475 ql_log(ql_log_warn
, vha
, 0x7065,
476 "Invalid start region 0x%x/0x%x.\n", start
, size
);
481 ha
->optrom_region_start
= start
;
482 ha
->optrom_region_size
= size
;
484 ha
->optrom_state
= QLA_SWRITING
;
485 ha
->optrom_buffer
= vzalloc(ha
->optrom_region_size
);
486 if (ha
->optrom_buffer
== NULL
) {
487 ql_log(ql_log_warn
, vha
, 0x7066,
488 "Unable to allocate memory for optrom update "
489 "(%x)\n", ha
->optrom_region_size
);
491 ha
->optrom_state
= QLA_SWAITING
;
496 ql_dbg(ql_dbg_user
, vha
, 0x7067,
497 "Staging flash region write -- 0x%x/0x%x.\n",
498 ha
->optrom_region_start
, ha
->optrom_region_size
);
502 if (ha
->optrom_state
!= QLA_SWRITING
) {
507 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
) {
508 ql_log(ql_log_warn
, vha
, 0x7068,
509 "HBA not online, failing flash update.\n");
514 ql_dbg(ql_dbg_user
, vha
, 0x7069,
515 "Writing flash region -- 0x%x/0x%x.\n",
516 ha
->optrom_region_start
, ha
->optrom_region_size
);
518 rval
= ha
->isp_ops
->write_optrom(vha
, ha
->optrom_buffer
,
519 ha
->optrom_region_start
, ha
->optrom_region_size
);
528 mutex_unlock(&ha
->optrom_mutex
);
532 static struct bin_attribute sysfs_optrom_ctl_attr
= {
534 .name
= "optrom_ctl",
538 .write
= qla2x00_sysfs_write_optrom_ctl
,
542 qla2x00_sysfs_read_vpd(struct file
*filp
, struct kobject
*kobj
,
543 struct bin_attribute
*bin_attr
,
544 char *buf
, loff_t off
, size_t count
)
546 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
547 struct device
, kobj
)));
548 struct qla_hw_data
*ha
= vha
->hw
;
550 struct active_regions active_regions
= { };
552 if (unlikely(pci_channel_offline(ha
->pdev
)))
555 if (!capable(CAP_SYS_ADMIN
))
558 if (!IS_NOCACHE_VPD_TYPE(ha
))
561 faddr
= ha
->flt_region_vpd
<< 2;
563 if (IS_QLA28XX(ha
)) {
564 qla28xx_get_aux_images(vha
, &active_regions
);
565 if (active_regions
.aux
.vpd_nvram
== QLA27XX_SECONDARY_IMAGE
)
566 faddr
= ha
->flt_region_vpd_sec
<< 2;
568 ql_dbg(ql_dbg_init
, vha
, 0x7070,
569 "Loading %s nvram image.\n",
570 active_regions
.aux
.vpd_nvram
== QLA27XX_PRIMARY_IMAGE
?
571 "primary" : "secondary");
574 mutex_lock(&ha
->optrom_mutex
);
575 if (qla2x00_chip_is_down(vha
)) {
576 mutex_unlock(&ha
->optrom_mutex
);
580 ha
->isp_ops
->read_optrom(vha
, ha
->vpd
, faddr
, ha
->vpd_size
);
581 mutex_unlock(&ha
->optrom_mutex
);
583 ha
->isp_ops
->read_optrom(vha
, ha
->vpd
, faddr
, ha
->vpd_size
);
585 return memory_read_from_buffer(buf
, count
, &off
, ha
->vpd
, ha
->vpd_size
);
589 qla2x00_sysfs_write_vpd(struct file
*filp
, struct kobject
*kobj
,
590 struct bin_attribute
*bin_attr
,
591 char *buf
, loff_t off
, size_t count
)
593 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
594 struct device
, kobj
)));
595 struct qla_hw_data
*ha
= vha
->hw
;
598 if (unlikely(pci_channel_offline(ha
->pdev
)))
601 if (qla2x00_chip_is_down(vha
))
604 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
!= ha
->vpd_size
||
605 !ha
->isp_ops
->write_nvram
)
608 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
) {
609 ql_log(ql_log_warn
, vha
, 0x706a,
610 "HBA not online, failing VPD update.\n");
614 mutex_lock(&ha
->optrom_mutex
);
615 if (qla2x00_chip_is_down(vha
)) {
616 mutex_unlock(&ha
->optrom_mutex
);
621 ha
->isp_ops
->write_nvram(vha
, buf
, ha
->vpd_base
, count
);
622 ha
->isp_ops
->read_nvram(vha
, ha
->vpd
, ha
->vpd_base
, count
);
624 /* Update flash version information for 4Gb & above. */
625 if (!IS_FWI2_CAPABLE(ha
)) {
626 mutex_unlock(&ha
->optrom_mutex
);
630 tmp_data
= vmalloc(256);
632 mutex_unlock(&ha
->optrom_mutex
);
633 ql_log(ql_log_warn
, vha
, 0x706b,
634 "Unable to allocate memory for VPD information update.\n");
637 ha
->isp_ops
->get_flash_version(vha
, tmp_data
);
640 mutex_unlock(&ha
->optrom_mutex
);
645 static struct bin_attribute sysfs_vpd_attr
= {
648 .mode
= S_IRUSR
| S_IWUSR
,
651 .read
= qla2x00_sysfs_read_vpd
,
652 .write
= qla2x00_sysfs_write_vpd
,
656 qla2x00_sysfs_read_sfp(struct file
*filp
, struct kobject
*kobj
,
657 struct bin_attribute
*bin_attr
,
658 char *buf
, loff_t off
, size_t count
)
660 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
661 struct device
, kobj
)));
664 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
< SFP_DEV_SIZE
)
667 mutex_lock(&vha
->hw
->optrom_mutex
);
668 if (qla2x00_chip_is_down(vha
)) {
669 mutex_unlock(&vha
->hw
->optrom_mutex
);
673 rval
= qla2x00_read_sfp_dev(vha
, buf
, count
);
674 mutex_unlock(&vha
->hw
->optrom_mutex
);
682 static struct bin_attribute sysfs_sfp_attr
= {
685 .mode
= S_IRUSR
| S_IWUSR
,
687 .size
= SFP_DEV_SIZE
,
688 .read
= qla2x00_sysfs_read_sfp
,
692 qla2x00_sysfs_write_reset(struct file
*filp
, struct kobject
*kobj
,
693 struct bin_attribute
*bin_attr
,
694 char *buf
, loff_t off
, size_t count
)
696 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
697 struct device
, kobj
)));
698 struct qla_hw_data
*ha
= vha
->hw
;
699 struct scsi_qla_host
*base_vha
= pci_get_drvdata(ha
->pdev
);
701 uint32_t idc_control
;
702 uint8_t *tmp_data
= NULL
;
707 type
= simple_strtol(buf
, NULL
, 10);
710 ql_log(ql_log_info
, vha
, 0x706e,
711 "Issuing ISP reset.\n");
713 if (vha
->hw
->flags
.port_isolated
) {
714 ql_log(ql_log_info
, vha
, 0x706e,
715 "Port is isolated, returning.\n");
719 scsi_block_requests(vha
->host
);
720 if (IS_QLA82XX(ha
)) {
721 ha
->flags
.isp82xx_no_md_cap
= 1;
722 qla82xx_idc_lock(ha
);
723 qla82xx_set_reset_owner(vha
);
724 qla82xx_idc_unlock(ha
);
725 } else if (IS_QLA8044(ha
)) {
726 qla8044_idc_lock(ha
);
727 idc_control
= qla8044_rd_reg(ha
,
728 QLA8044_IDC_DRV_CTRL
);
729 qla8044_wr_reg(ha
, QLA8044_IDC_DRV_CTRL
,
730 (idc_control
| GRACEFUL_RESET_BIT1
));
731 qla82xx_set_reset_owner(vha
);
732 qla8044_idc_unlock(ha
);
734 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
735 qla2xxx_wake_dpc(vha
);
737 qla2x00_wait_for_chip_reset(vha
);
738 scsi_unblock_requests(vha
->host
);
741 if (!IS_QLA81XX(ha
) && !IS_QLA83XX(ha
) &&
742 !IS_QLA27XX(ha
) && !IS_QLA28XX(ha
))
745 ql_log(ql_log_info
, vha
, 0x706f,
746 "Issuing MPI reset.\n");
748 if (IS_QLA83XX(ha
)) {
749 uint32_t idc_control
;
751 qla83xx_idc_lock(vha
, 0);
752 __qla83xx_get_idc_control(vha
, &idc_control
);
753 idc_control
|= QLA83XX_IDC_GRACEFUL_RESET
;
754 __qla83xx_set_idc_control(vha
, idc_control
);
755 qla83xx_wr_reg(vha
, QLA83XX_IDC_DEV_STATE
,
756 QLA8XXX_DEV_NEED_RESET
);
757 qla83xx_idc_audit(vha
, IDC_AUDIT_TIMESTAMP
);
758 qla83xx_idc_unlock(vha
, 0);
761 /* Make sure FC side is not in reset */
762 WARN_ON_ONCE(qla2x00_wait_for_hba_online(vha
) !=
765 /* Issue MPI reset */
766 scsi_block_requests(vha
->host
);
767 if (qla81xx_restart_mpi_firmware(vha
) != QLA_SUCCESS
)
768 ql_log(ql_log_warn
, vha
, 0x7070,
769 "MPI reset failed.\n");
770 scsi_unblock_requests(vha
->host
);
775 if (!IS_P3P_TYPE(ha
) || vha
!= base_vha
) {
776 ql_log(ql_log_info
, vha
, 0x7071,
777 "FCoE ctx reset not supported.\n");
781 ql_log(ql_log_info
, vha
, 0x7072,
782 "Issuing FCoE ctx reset.\n");
783 set_bit(FCOE_CTX_RESET_NEEDED
, &vha
->dpc_flags
);
784 qla2xxx_wake_dpc(vha
);
785 qla2x00_wait_for_fcoe_ctx_reset(vha
);
790 ql_log(ql_log_info
, vha
, 0x70bc,
791 "Disabling Reset by IDC control\n");
792 qla83xx_idc_lock(vha
, 0);
793 __qla83xx_get_idc_control(vha
, &idc_control
);
794 idc_control
|= QLA83XX_IDC_RESET_DISABLED
;
795 __qla83xx_set_idc_control(vha
, idc_control
);
796 qla83xx_idc_unlock(vha
, 0);
801 ql_log(ql_log_info
, vha
, 0x70bd,
802 "Enabling Reset by IDC control\n");
803 qla83xx_idc_lock(vha
, 0);
804 __qla83xx_get_idc_control(vha
, &idc_control
);
805 idc_control
&= ~QLA83XX_IDC_RESET_DISABLED
;
806 __qla83xx_set_idc_control(vha
, idc_control
);
807 qla83xx_idc_unlock(vha
, 0);
810 ql_dbg(ql_dbg_user
, vha
, 0x70e0,
811 "Updating cache versions without reset ");
813 tmp_data
= vmalloc(256);
815 ql_log(ql_log_warn
, vha
, 0x70e1,
816 "Unable to allocate memory for VPD information update.\n");
819 ha
->isp_ops
->get_flash_version(vha
, tmp_data
);
826 static struct bin_attribute sysfs_reset_attr
= {
832 .write
= qla2x00_sysfs_write_reset
,
836 qla2x00_issue_logo(struct file
*filp
, struct kobject
*kobj
,
837 struct bin_attribute
*bin_attr
,
838 char *buf
, loff_t off
, size_t count
)
840 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
841 struct device
, kobj
)));
845 if (!capable(CAP_SYS_ADMIN
))
848 if (unlikely(pci_channel_offline(vha
->hw
->pdev
)))
851 if (qla2x00_chip_is_down(vha
))
854 type
= simple_strtol(buf
, NULL
, 10);
856 did
.b
.domain
= (type
& 0x00ff0000) >> 16;
857 did
.b
.area
= (type
& 0x0000ff00) >> 8;
858 did
.b
.al_pa
= (type
& 0x000000ff);
860 ql_log(ql_log_info
, vha
, 0xd04d, "portid=%02x%02x%02x done\n",
861 did
.b
.domain
, did
.b
.area
, did
.b
.al_pa
);
863 ql_log(ql_log_info
, vha
, 0x70e4, "%s: %d\n", __func__
, type
);
865 qla24xx_els_dcmd_iocb(vha
, ELS_DCMD_LOGO
, did
);
869 static struct bin_attribute sysfs_issue_logo_attr
= {
871 .name
= "issue_logo",
875 .write
= qla2x00_issue_logo
,
879 qla2x00_sysfs_read_xgmac_stats(struct file
*filp
, struct kobject
*kobj
,
880 struct bin_attribute
*bin_attr
,
881 char *buf
, loff_t off
, size_t count
)
883 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
884 struct device
, kobj
)));
885 struct qla_hw_data
*ha
= vha
->hw
;
887 uint16_t actual_size
;
889 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
> XGMAC_DATA_SIZE
)
892 if (unlikely(pci_channel_offline(ha
->pdev
)))
894 mutex_lock(&vha
->hw
->optrom_mutex
);
895 if (qla2x00_chip_is_down(vha
)) {
896 mutex_unlock(&vha
->hw
->optrom_mutex
);
903 ha
->xgmac_data
= dma_alloc_coherent(&ha
->pdev
->dev
, XGMAC_DATA_SIZE
,
904 &ha
->xgmac_data_dma
, GFP_KERNEL
);
905 if (!ha
->xgmac_data
) {
906 mutex_unlock(&vha
->hw
->optrom_mutex
);
907 ql_log(ql_log_warn
, vha
, 0x7076,
908 "Unable to allocate memory for XGMAC read-data.\n");
914 memset(ha
->xgmac_data
, 0, XGMAC_DATA_SIZE
);
916 rval
= qla2x00_get_xgmac_stats(vha
, ha
->xgmac_data_dma
,
917 XGMAC_DATA_SIZE
, &actual_size
);
919 mutex_unlock(&vha
->hw
->optrom_mutex
);
920 if (rval
!= QLA_SUCCESS
) {
921 ql_log(ql_log_warn
, vha
, 0x7077,
922 "Unable to read XGMAC data (%x).\n", rval
);
926 count
= actual_size
> count
? count
: actual_size
;
927 memcpy(buf
, ha
->xgmac_data
, count
);
932 static struct bin_attribute sysfs_xgmac_stats_attr
= {
934 .name
= "xgmac_stats",
938 .read
= qla2x00_sysfs_read_xgmac_stats
,
942 qla2x00_sysfs_read_dcbx_tlv(struct file
*filp
, struct kobject
*kobj
,
943 struct bin_attribute
*bin_attr
,
944 char *buf
, loff_t off
, size_t count
)
946 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
947 struct device
, kobj
)));
948 struct qla_hw_data
*ha
= vha
->hw
;
951 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
> DCBX_TLV_DATA_SIZE
)
954 mutex_lock(&vha
->hw
->optrom_mutex
);
957 if (qla2x00_chip_is_down(vha
)) {
958 mutex_unlock(&vha
->hw
->optrom_mutex
);
962 ha
->dcbx_tlv
= dma_alloc_coherent(&ha
->pdev
->dev
, DCBX_TLV_DATA_SIZE
,
963 &ha
->dcbx_tlv_dma
, GFP_KERNEL
);
965 mutex_unlock(&vha
->hw
->optrom_mutex
);
966 ql_log(ql_log_warn
, vha
, 0x7078,
967 "Unable to allocate memory for DCBX TLV read-data.\n");
972 memset(ha
->dcbx_tlv
, 0, DCBX_TLV_DATA_SIZE
);
974 rval
= qla2x00_get_dcbx_params(vha
, ha
->dcbx_tlv_dma
,
977 mutex_unlock(&vha
->hw
->optrom_mutex
);
979 if (rval
!= QLA_SUCCESS
) {
980 ql_log(ql_log_warn
, vha
, 0x7079,
981 "Unable to read DCBX TLV (%x).\n", rval
);
985 memcpy(buf
, ha
->dcbx_tlv
, count
);
990 static struct bin_attribute sysfs_dcbx_tlv_attr
= {
996 .read
= qla2x00_sysfs_read_dcbx_tlv
,
999 static struct sysfs_entry
{
1001 struct bin_attribute
*attr
;
1003 } bin_file_entries
[] = {
1004 { "fw_dump", &sysfs_fw_dump_attr
, },
1005 { "nvram", &sysfs_nvram_attr
, },
1006 { "optrom", &sysfs_optrom_attr
, },
1007 { "optrom_ctl", &sysfs_optrom_ctl_attr
, },
1008 { "vpd", &sysfs_vpd_attr
, 1 },
1009 { "sfp", &sysfs_sfp_attr
, 1 },
1010 { "reset", &sysfs_reset_attr
, },
1011 { "issue_logo", &sysfs_issue_logo_attr
, },
1012 { "xgmac_stats", &sysfs_xgmac_stats_attr
, 3 },
1013 { "dcbx_tlv", &sysfs_dcbx_tlv_attr
, 3 },
1018 qla2x00_alloc_sysfs_attr(scsi_qla_host_t
*vha
)
1020 struct Scsi_Host
*host
= vha
->host
;
1021 struct sysfs_entry
*iter
;
1024 for (iter
= bin_file_entries
; iter
->name
; iter
++) {
1025 if (iter
->type
&& !IS_FWI2_CAPABLE(vha
->hw
))
1027 if (iter
->type
== 2 && !IS_QLA25XX(vha
->hw
))
1029 if (iter
->type
== 3 && !(IS_CNA_CAPABLE(vha
->hw
)))
1032 ret
= sysfs_create_bin_file(&host
->shost_gendev
.kobj
,
1035 ql_log(ql_log_warn
, vha
, 0x00f3,
1036 "Unable to create sysfs %s binary attribute (%d).\n",
1039 ql_dbg(ql_dbg_init
, vha
, 0x00f4,
1040 "Successfully created sysfs %s binary attribute.\n",
1046 qla2x00_free_sysfs_attr(scsi_qla_host_t
*vha
, bool stop_beacon
)
1048 struct Scsi_Host
*host
= vha
->host
;
1049 struct sysfs_entry
*iter
;
1050 struct qla_hw_data
*ha
= vha
->hw
;
1052 for (iter
= bin_file_entries
; iter
->name
; iter
++) {
1053 if (iter
->type
&& !IS_FWI2_CAPABLE(ha
))
1055 if (iter
->type
== 2 && !IS_QLA25XX(ha
))
1057 if (iter
->type
== 3 && !(IS_CNA_CAPABLE(ha
)))
1060 sysfs_remove_bin_file(&host
->shost_gendev
.kobj
,
1064 if (stop_beacon
&& ha
->beacon_blink_led
== 1)
1065 ha
->isp_ops
->beacon_off(vha
);
1068 /* Scsi_Host attributes. */
1071 qla2x00_fw_version_show(struct device
*dev
,
1072 struct device_attribute
*attr
, char *buf
)
1074 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1075 struct qla_hw_data
*ha
= vha
->hw
;
1078 return scnprintf(buf
, PAGE_SIZE
, "%s\n",
1079 ha
->isp_ops
->fw_version_str(vha
, fw_str
, sizeof(fw_str
)));
1083 qla2x00_serial_num_show(struct device
*dev
, struct device_attribute
*attr
,
1086 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1087 struct qla_hw_data
*ha
= vha
->hw
;
1090 if (IS_QLAFX00(vha
->hw
)) {
1091 return scnprintf(buf
, PAGE_SIZE
, "%s\n",
1092 vha
->hw
->mr
.serial_num
);
1093 } else if (IS_FWI2_CAPABLE(ha
)) {
1094 qla2xxx_get_vpd_field(vha
, "SN", buf
, PAGE_SIZE
- 1);
1095 return strlen(strcat(buf
, "\n"));
1098 sn
= ((ha
->serial0
& 0x1f) << 16) | (ha
->serial2
<< 8) | ha
->serial1
;
1099 return scnprintf(buf
, PAGE_SIZE
, "%c%05d\n", 'A' + sn
/ 100000,
1104 qla2x00_isp_name_show(struct device
*dev
, struct device_attribute
*attr
,
1107 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1109 return scnprintf(buf
, PAGE_SIZE
, "ISP%04X\n", vha
->hw
->pdev
->device
);
1113 qla2x00_isp_id_show(struct device
*dev
, struct device_attribute
*attr
,
1116 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1117 struct qla_hw_data
*ha
= vha
->hw
;
1119 if (IS_QLAFX00(vha
->hw
))
1120 return scnprintf(buf
, PAGE_SIZE
, "%s\n",
1121 vha
->hw
->mr
.hw_version
);
1123 return scnprintf(buf
, PAGE_SIZE
, "%04x %04x %04x %04x\n",
1124 ha
->product_id
[0], ha
->product_id
[1], ha
->product_id
[2],
1129 qla2x00_model_name_show(struct device
*dev
, struct device_attribute
*attr
,
1132 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1134 return scnprintf(buf
, PAGE_SIZE
, "%s\n", vha
->hw
->model_number
);
1138 qla2x00_model_desc_show(struct device
*dev
, struct device_attribute
*attr
,
1141 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1143 return scnprintf(buf
, PAGE_SIZE
, "%s\n", vha
->hw
->model_desc
);
1147 qla2x00_pci_info_show(struct device
*dev
, struct device_attribute
*attr
,
1150 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1153 return scnprintf(buf
, PAGE_SIZE
, "%s\n",
1154 vha
->hw
->isp_ops
->pci_info_str(vha
, pci_info
,
1159 qla2x00_link_state_show(struct device
*dev
, struct device_attribute
*attr
,
1162 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1163 struct qla_hw_data
*ha
= vha
->hw
;
1166 if (atomic_read(&vha
->loop_state
) == LOOP_DOWN
||
1167 atomic_read(&vha
->loop_state
) == LOOP_DEAD
||
1168 vha
->device_flags
& DFLG_NO_CABLE
)
1169 len
= scnprintf(buf
, PAGE_SIZE
, "Link Down\n");
1170 else if (atomic_read(&vha
->loop_state
) != LOOP_READY
||
1171 qla2x00_chip_is_down(vha
))
1172 len
= scnprintf(buf
, PAGE_SIZE
, "Unknown Link State\n");
1174 len
= scnprintf(buf
, PAGE_SIZE
, "Link Up - ");
1176 switch (ha
->current_topology
) {
1178 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "Loop\n");
1181 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "FL_Port\n");
1184 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
,
1185 "N_Port to N_Port\n");
1188 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "F_Port\n");
1191 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "Loop\n");
1199 qla2x00_zio_show(struct device
*dev
, struct device_attribute
*attr
,
1202 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1205 switch (vha
->hw
->zio_mode
) {
1206 case QLA_ZIO_MODE_6
:
1207 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "Mode 6\n");
1209 case QLA_ZIO_DISABLED
:
1210 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "Disabled\n");
1217 qla2x00_zio_store(struct device
*dev
, struct device_attribute
*attr
,
1218 const char *buf
, size_t count
)
1220 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1221 struct qla_hw_data
*ha
= vha
->hw
;
1225 if (!IS_ZIO_SUPPORTED(ha
))
1228 if (sscanf(buf
, "%d", &val
) != 1)
1232 zio_mode
= QLA_ZIO_MODE_6
;
1234 zio_mode
= QLA_ZIO_DISABLED
;
1236 /* Update per-hba values and queue a reset. */
1237 if (zio_mode
!= QLA_ZIO_DISABLED
|| ha
->zio_mode
!= QLA_ZIO_DISABLED
) {
1238 ha
->zio_mode
= zio_mode
;
1239 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
1245 qla2x00_zio_timer_show(struct device
*dev
, struct device_attribute
*attr
,
1248 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1250 return scnprintf(buf
, PAGE_SIZE
, "%d us\n", vha
->hw
->zio_timer
* 100);
1254 qla2x00_zio_timer_store(struct device
*dev
, struct device_attribute
*attr
,
1255 const char *buf
, size_t count
)
1257 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1261 if (sscanf(buf
, "%d", &val
) != 1)
1263 if (val
> 25500 || val
< 100)
1266 zio_timer
= (uint16_t)(val
/ 100);
1267 vha
->hw
->zio_timer
= zio_timer
;
1273 qla_zio_threshold_show(struct device
*dev
, struct device_attribute
*attr
,
1276 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1278 return scnprintf(buf
, PAGE_SIZE
, "%d exchanges\n",
1279 vha
->hw
->last_zio_threshold
);
1283 qla_zio_threshold_store(struct device
*dev
, struct device_attribute
*attr
,
1284 const char *buf
, size_t count
)
1286 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1289 if (vha
->hw
->zio_mode
!= QLA_ZIO_MODE_6
)
1291 if (sscanf(buf
, "%d", &val
) != 1)
1293 if (val
< 0 || val
> 256)
1296 atomic_set(&vha
->hw
->zio_threshold
, val
);
1301 qla2x00_beacon_show(struct device
*dev
, struct device_attribute
*attr
,
1304 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1307 if (vha
->hw
->beacon_blink_led
)
1308 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "Enabled\n");
1310 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "Disabled\n");
1315 qla2x00_beacon_store(struct device
*dev
, struct device_attribute
*attr
,
1316 const char *buf
, size_t count
)
1318 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1319 struct qla_hw_data
*ha
= vha
->hw
;
1323 if (IS_QLA2100(ha
) || IS_QLA2200(ha
))
1326 if (sscanf(buf
, "%d", &val
) != 1)
1329 mutex_lock(&vha
->hw
->optrom_mutex
);
1330 if (qla2x00_chip_is_down(vha
)) {
1331 mutex_unlock(&vha
->hw
->optrom_mutex
);
1332 ql_log(ql_log_warn
, vha
, 0x707a,
1333 "Abort ISP active -- ignoring beacon request.\n");
1338 rval
= ha
->isp_ops
->beacon_on(vha
);
1340 rval
= ha
->isp_ops
->beacon_off(vha
);
1342 if (rval
!= QLA_SUCCESS
)
1345 mutex_unlock(&vha
->hw
->optrom_mutex
);
1351 qla2x00_beacon_config_show(struct device
*dev
, struct device_attribute
*attr
,
1354 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1355 struct qla_hw_data
*ha
= vha
->hw
;
1356 uint16_t led
[3] = { 0 };
1358 if (!IS_QLA2031(ha
) && !IS_QLA27XX(ha
) && !IS_QLA28XX(ha
))
1361 if (ql26xx_led_config(vha
, 0, led
))
1362 return scnprintf(buf
, PAGE_SIZE
, "\n");
1364 return scnprintf(buf
, PAGE_SIZE
, "%#04hx %#04hx %#04hx\n",
1365 led
[0], led
[1], led
[2]);
1369 qla2x00_beacon_config_store(struct device
*dev
, struct device_attribute
*attr
,
1370 const char *buf
, size_t count
)
1372 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1373 struct qla_hw_data
*ha
= vha
->hw
;
1374 uint16_t options
= BIT_0
;
1375 uint16_t led
[3] = { 0 };
1379 if (!IS_QLA2031(ha
) && !IS_QLA27XX(ha
) && !IS_QLA28XX(ha
))
1382 n
= sscanf(buf
, "%hx %hx %hx %hx", word
+0, word
+1, word
+2, word
+3);
1385 options
|= BIT_3
|BIT_2
|BIT_1
;
1395 /* check led index */
1417 if (ql26xx_led_config(vha
, options
, led
))
1424 qla2x00_optrom_bios_version_show(struct device
*dev
,
1425 struct device_attribute
*attr
, char *buf
)
1427 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1428 struct qla_hw_data
*ha
= vha
->hw
;
1430 return scnprintf(buf
, PAGE_SIZE
, "%d.%02d\n", ha
->bios_revision
[1],
1431 ha
->bios_revision
[0]);
1435 qla2x00_optrom_efi_version_show(struct device
*dev
,
1436 struct device_attribute
*attr
, char *buf
)
1438 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1439 struct qla_hw_data
*ha
= vha
->hw
;
1441 return scnprintf(buf
, PAGE_SIZE
, "%d.%02d\n", ha
->efi_revision
[1],
1442 ha
->efi_revision
[0]);
1446 qla2x00_optrom_fcode_version_show(struct device
*dev
,
1447 struct device_attribute
*attr
, char *buf
)
1449 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1450 struct qla_hw_data
*ha
= vha
->hw
;
1452 return scnprintf(buf
, PAGE_SIZE
, "%d.%02d\n", ha
->fcode_revision
[1],
1453 ha
->fcode_revision
[0]);
1457 qla2x00_optrom_fw_version_show(struct device
*dev
,
1458 struct device_attribute
*attr
, char *buf
)
1460 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1461 struct qla_hw_data
*ha
= vha
->hw
;
1463 return scnprintf(buf
, PAGE_SIZE
, "%d.%02d.%02d %d\n",
1464 ha
->fw_revision
[0], ha
->fw_revision
[1], ha
->fw_revision
[2],
1465 ha
->fw_revision
[3]);
1469 qla2x00_optrom_gold_fw_version_show(struct device
*dev
,
1470 struct device_attribute
*attr
, char *buf
)
1472 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1473 struct qla_hw_data
*ha
= vha
->hw
;
1475 if (!IS_QLA81XX(ha
) && !IS_QLA83XX(ha
) &&
1476 !IS_QLA27XX(ha
) && !IS_QLA28XX(ha
))
1477 return scnprintf(buf
, PAGE_SIZE
, "\n");
1479 return scnprintf(buf
, PAGE_SIZE
, "%d.%02d.%02d (%d)\n",
1480 ha
->gold_fw_version
[0], ha
->gold_fw_version
[1],
1481 ha
->gold_fw_version
[2], ha
->gold_fw_version
[3]);
1485 qla2x00_total_isp_aborts_show(struct device
*dev
,
1486 struct device_attribute
*attr
, char *buf
)
1488 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1490 return scnprintf(buf
, PAGE_SIZE
, "%d\n",
1491 vha
->qla_stats
.total_isp_aborts
);
1495 qla24xx_84xx_fw_version_show(struct device
*dev
,
1496 struct device_attribute
*attr
, char *buf
)
1498 int rval
= QLA_SUCCESS
;
1499 uint16_t status
[2] = { 0 };
1500 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1501 struct qla_hw_data
*ha
= vha
->hw
;
1503 if (!IS_QLA84XX(ha
))
1504 return scnprintf(buf
, PAGE_SIZE
, "\n");
1506 if (!ha
->cs84xx
->op_fw_version
) {
1507 rval
= qla84xx_verify_chip(vha
, status
);
1509 if (!rval
&& !status
[0])
1510 return scnprintf(buf
, PAGE_SIZE
, "%u\n",
1511 (uint32_t)ha
->cs84xx
->op_fw_version
);
1514 return scnprintf(buf
, PAGE_SIZE
, "\n");
1518 qla2x00_serdes_version_show(struct device
*dev
, struct device_attribute
*attr
,
1521 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1522 struct qla_hw_data
*ha
= vha
->hw
;
1524 if (!IS_QLA27XX(ha
) && !IS_QLA28XX(ha
))
1525 return scnprintf(buf
, PAGE_SIZE
, "\n");
1527 return scnprintf(buf
, PAGE_SIZE
, "%d.%02d.%02d\n",
1528 ha
->serdes_version
[0], ha
->serdes_version
[1],
1529 ha
->serdes_version
[2]);
1533 qla2x00_mpi_version_show(struct device
*dev
, struct device_attribute
*attr
,
1536 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1537 struct qla_hw_data
*ha
= vha
->hw
;
1539 if (!IS_QLA81XX(ha
) && !IS_QLA8031(ha
) && !IS_QLA8044(ha
) &&
1540 !IS_QLA27XX(ha
) && !IS_QLA28XX(ha
))
1541 return scnprintf(buf
, PAGE_SIZE
, "\n");
1543 return scnprintf(buf
, PAGE_SIZE
, "%d.%02d.%02d (%x)\n",
1544 ha
->mpi_version
[0], ha
->mpi_version
[1], ha
->mpi_version
[2],
1545 ha
->mpi_capabilities
);
1549 qla2x00_phy_version_show(struct device
*dev
, struct device_attribute
*attr
,
1552 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1553 struct qla_hw_data
*ha
= vha
->hw
;
1555 if (!IS_QLA81XX(ha
) && !IS_QLA8031(ha
))
1556 return scnprintf(buf
, PAGE_SIZE
, "\n");
1558 return scnprintf(buf
, PAGE_SIZE
, "%d.%02d.%02d\n",
1559 ha
->phy_version
[0], ha
->phy_version
[1], ha
->phy_version
[2]);
1563 qla2x00_flash_block_size_show(struct device
*dev
,
1564 struct device_attribute
*attr
, char *buf
)
1566 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1567 struct qla_hw_data
*ha
= vha
->hw
;
1569 return scnprintf(buf
, PAGE_SIZE
, "0x%x\n", ha
->fdt_block_size
);
1573 qla2x00_vlan_id_show(struct device
*dev
, struct device_attribute
*attr
,
1576 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1578 if (!IS_CNA_CAPABLE(vha
->hw
))
1579 return scnprintf(buf
, PAGE_SIZE
, "\n");
1581 return scnprintf(buf
, PAGE_SIZE
, "%d\n", vha
->fcoe_vlan_id
);
1585 qla2x00_vn_port_mac_address_show(struct device
*dev
,
1586 struct device_attribute
*attr
, char *buf
)
1588 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1590 if (!IS_CNA_CAPABLE(vha
->hw
))
1591 return scnprintf(buf
, PAGE_SIZE
, "\n");
1593 return scnprintf(buf
, PAGE_SIZE
, "%pMR\n", vha
->fcoe_vn_port_mac
);
1597 qla2x00_fabric_param_show(struct device
*dev
, struct device_attribute
*attr
,
1600 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1602 return scnprintf(buf
, PAGE_SIZE
, "%d\n", vha
->hw
->switch_cap
);
1606 qla2x00_thermal_temp_show(struct device
*dev
,
1607 struct device_attribute
*attr
, char *buf
)
1609 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1613 mutex_lock(&vha
->hw
->optrom_mutex
);
1614 if (qla2x00_chip_is_down(vha
)) {
1615 mutex_unlock(&vha
->hw
->optrom_mutex
);
1616 ql_log(ql_log_warn
, vha
, 0x70dc, "ISP reset active.\n");
1620 if (vha
->hw
->flags
.eeh_busy
) {
1621 mutex_unlock(&vha
->hw
->optrom_mutex
);
1622 ql_log(ql_log_warn
, vha
, 0x70dd, "PCI EEH busy.\n");
1626 rc
= qla2x00_get_thermal_temp(vha
, &temp
);
1627 mutex_unlock(&vha
->hw
->optrom_mutex
);
1628 if (rc
== QLA_SUCCESS
)
1629 return scnprintf(buf
, PAGE_SIZE
, "%d\n", temp
);
1632 return scnprintf(buf
, PAGE_SIZE
, "\n");
1636 qla2x00_fw_state_show(struct device
*dev
, struct device_attribute
*attr
,
1639 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1640 int rval
= QLA_FUNCTION_FAILED
;
1644 if (IS_QLAFX00(vha
->hw
)) {
1645 pstate
= qlafx00_fw_state_show(dev
, attr
, buf
);
1646 return scnprintf(buf
, PAGE_SIZE
, "0x%x\n", pstate
);
1649 mutex_lock(&vha
->hw
->optrom_mutex
);
1650 if (qla2x00_chip_is_down(vha
)) {
1651 mutex_unlock(&vha
->hw
->optrom_mutex
);
1652 ql_log(ql_log_warn
, vha
, 0x707c,
1653 "ISP reset active.\n");
1655 } else if (vha
->hw
->flags
.eeh_busy
) {
1656 mutex_unlock(&vha
->hw
->optrom_mutex
);
1660 rval
= qla2x00_get_firmware_state(vha
, state
);
1661 mutex_unlock(&vha
->hw
->optrom_mutex
);
1663 if (rval
!= QLA_SUCCESS
) {
1664 memset(state
, -1, sizeof(state
));
1665 rval
= qla2x00_get_firmware_state(vha
, state
);
1668 return scnprintf(buf
, PAGE_SIZE
, "0x%x 0x%x 0x%x 0x%x 0x%x 0x%x\n",
1669 state
[0], state
[1], state
[2], state
[3], state
[4], state
[5]);
1673 qla2x00_diag_requests_show(struct device
*dev
,
1674 struct device_attribute
*attr
, char *buf
)
1676 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1678 if (!IS_BIDI_CAPABLE(vha
->hw
))
1679 return scnprintf(buf
, PAGE_SIZE
, "\n");
1681 return scnprintf(buf
, PAGE_SIZE
, "%llu\n", vha
->bidi_stats
.io_count
);
1685 qla2x00_diag_megabytes_show(struct device
*dev
,
1686 struct device_attribute
*attr
, char *buf
)
1688 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1690 if (!IS_BIDI_CAPABLE(vha
->hw
))
1691 return scnprintf(buf
, PAGE_SIZE
, "\n");
1693 return scnprintf(buf
, PAGE_SIZE
, "%llu\n",
1694 vha
->bidi_stats
.transfer_bytes
>> 20);
1698 qla2x00_fw_dump_size_show(struct device
*dev
, struct device_attribute
*attr
,
1701 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1702 struct qla_hw_data
*ha
= vha
->hw
;
1707 else if (IS_P3P_TYPE(ha
))
1708 size
= ha
->md_template_size
+ ha
->md_dump_size
;
1710 size
= ha
->fw_dump_len
;
1712 return scnprintf(buf
, PAGE_SIZE
, "%d\n", size
);
1716 qla2x00_allow_cna_fw_dump_show(struct device
*dev
,
1717 struct device_attribute
*attr
, char *buf
)
1719 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1721 if (!IS_P3P_TYPE(vha
->hw
))
1722 return scnprintf(buf
, PAGE_SIZE
, "\n");
1724 return scnprintf(buf
, PAGE_SIZE
, "%s\n",
1725 vha
->hw
->allow_cna_fw_dump
? "true" : "false");
1729 qla2x00_allow_cna_fw_dump_store(struct device
*dev
,
1730 struct device_attribute
*attr
, const char *buf
, size_t count
)
1732 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1735 if (!IS_P3P_TYPE(vha
->hw
))
1738 if (sscanf(buf
, "%d", &val
) != 1)
1741 vha
->hw
->allow_cna_fw_dump
= val
!= 0;
1747 qla2x00_pep_version_show(struct device
*dev
, struct device_attribute
*attr
,
1750 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1751 struct qla_hw_data
*ha
= vha
->hw
;
1753 if (!IS_QLA27XX(ha
) && !IS_QLA28XX(ha
))
1754 return scnprintf(buf
, PAGE_SIZE
, "\n");
1756 return scnprintf(buf
, PAGE_SIZE
, "%d.%02d.%02d\n",
1757 ha
->pep_version
[0], ha
->pep_version
[1], ha
->pep_version
[2]);
1761 qla2x00_min_supported_speed_show(struct device
*dev
,
1762 struct device_attribute
*attr
, char *buf
)
1764 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1765 struct qla_hw_data
*ha
= vha
->hw
;
1767 if (!IS_QLA27XX(ha
) && !IS_QLA28XX(ha
))
1768 return scnprintf(buf
, PAGE_SIZE
, "\n");
1770 return scnprintf(buf
, PAGE_SIZE
, "%s\n",
1771 ha
->min_supported_speed
== 6 ? "64Gps" :
1772 ha
->min_supported_speed
== 5 ? "32Gps" :
1773 ha
->min_supported_speed
== 4 ? "16Gps" :
1774 ha
->min_supported_speed
== 3 ? "8Gps" :
1775 ha
->min_supported_speed
== 2 ? "4Gps" :
1776 ha
->min_supported_speed
!= 0 ? "unknown" : "");
1780 qla2x00_max_supported_speed_show(struct device
*dev
,
1781 struct device_attribute
*attr
, char *buf
)
1783 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1784 struct qla_hw_data
*ha
= vha
->hw
;
1786 if (!IS_QLA27XX(ha
) && !IS_QLA28XX(ha
))
1787 return scnprintf(buf
, PAGE_SIZE
, "\n");
1789 return scnprintf(buf
, PAGE_SIZE
, "%s\n",
1790 ha
->max_supported_speed
== 2 ? "64Gps" :
1791 ha
->max_supported_speed
== 1 ? "32Gps" :
1792 ha
->max_supported_speed
== 0 ? "16Gps" : "unknown");
1796 qla2x00_port_speed_store(struct device
*dev
, struct device_attribute
*attr
,
1797 const char *buf
, size_t count
)
1799 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(dev
));
1802 int mode
= QLA_SET_DATA_RATE_LR
;
1803 struct qla_hw_data
*ha
= vha
->hw
;
1805 if (!IS_QLA27XX(ha
) && !IS_QLA28XX(ha
)) {
1806 ql_log(ql_log_warn
, vha
, 0x70d8,
1807 "Speed setting not supported \n");
1811 rval
= kstrtol(buf
, 10, &type
);
1815 if (type
== 40 || type
== 80 || type
== 160 ||
1817 ql_dbg(ql_dbg_user
, vha
, 0x70d9,
1818 "Setting will be affected after a loss of sync\n");
1820 mode
= QLA_SET_DATA_RATE_NOLR
;
1823 oldspeed
= ha
->set_data_rate
;
1827 ha
->set_data_rate
= PORT_SPEED_AUTO
;
1830 ha
->set_data_rate
= PORT_SPEED_4GB
;
1833 ha
->set_data_rate
= PORT_SPEED_8GB
;
1836 ha
->set_data_rate
= PORT_SPEED_16GB
;
1839 ha
->set_data_rate
= PORT_SPEED_32GB
;
1842 ql_log(ql_log_warn
, vha
, 0x1199,
1843 "Unrecognized speed setting:%lx. Setting Autoneg\n",
1845 ha
->set_data_rate
= PORT_SPEED_AUTO
;
1848 if (qla2x00_chip_is_down(vha
) || (oldspeed
== ha
->set_data_rate
))
1851 ql_log(ql_log_info
, vha
, 0x70da,
1852 "Setting speed to %lx Gbps \n", type
);
1854 rval
= qla2x00_set_data_rate(vha
, mode
);
1855 if (rval
!= QLA_SUCCESS
)
1861 static const struct {
1864 } port_speed_str
[] = {
1865 { PORT_SPEED_4GB
, "4" },
1866 { PORT_SPEED_8GB
, "8" },
1867 { PORT_SPEED_16GB
, "16" },
1868 { PORT_SPEED_32GB
, "32" },
1869 { PORT_SPEED_64GB
, "64" },
1870 { PORT_SPEED_10GB
, "10" },
1874 qla2x00_port_speed_show(struct device
*dev
, struct device_attribute
*attr
,
1877 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(dev
));
1878 struct qla_hw_data
*ha
= vha
->hw
;
1881 char *speed
= "Unknown";
1883 rval
= qla2x00_get_data_rate(vha
);
1884 if (rval
!= QLA_SUCCESS
) {
1885 ql_log(ql_log_warn
, vha
, 0x70db,
1886 "Unable to get port speed rval:%zd\n", rval
);
1890 for (i
= 0; i
< ARRAY_SIZE(port_speed_str
); i
++) {
1891 if (port_speed_str
[i
].rate
!= ha
->link_data_rate
)
1893 speed
= port_speed_str
[i
].str
;
1897 return scnprintf(buf
, PAGE_SIZE
, "%s\n", speed
);
1901 qla2x00_mpi_pause_store(struct device
*dev
,
1902 struct device_attribute
*attr
, const char *buf
, size_t count
)
1904 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1907 if (sscanf(buf
, "%d", &rval
) != 1)
1910 ql_log(ql_log_warn
, vha
, 0x7089, "Pausing MPI...\n");
1912 rval
= qla83xx_wr_reg(vha
, 0x002012d4, 0x30000001);
1914 if (rval
!= QLA_SUCCESS
) {
1915 ql_log(ql_log_warn
, vha
, 0x708a, "Unable to pause MPI.\n");
1922 static DEVICE_ATTR(mpi_pause
, S_IWUSR
, NULL
, qla2x00_mpi_pause_store
);
1927 qlini_mode_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1929 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1932 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
,
1933 "Supported options: enabled | disabled | dual | exclusive\n");
1936 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "Current selection: ");
1938 switch (vha
->qlini_mode
) {
1939 case QLA2XXX_INI_MODE_EXCLUSIVE
:
1940 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
,
1941 QLA2XXX_INI_MODE_STR_EXCLUSIVE
);
1943 case QLA2XXX_INI_MODE_DISABLED
:
1944 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
,
1945 QLA2XXX_INI_MODE_STR_DISABLED
);
1947 case QLA2XXX_INI_MODE_ENABLED
:
1948 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
,
1949 QLA2XXX_INI_MODE_STR_ENABLED
);
1951 case QLA2XXX_INI_MODE_DUAL
:
1952 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
,
1953 QLA2XXX_INI_MODE_STR_DUAL
);
1956 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "\n");
1961 static char *mode_to_str
[] = {
1968 #define NEED_EXCH_OFFLOAD(_exchg) ((_exchg) > FW_DEF_EXCHANGES_CNT)
1969 static void qla_set_ini_mode(scsi_qla_host_t
*vha
, int op
)
1974 MODE_CHANGE_NO_ACTION
,
1975 TARGET_STILL_ACTIVE
,
1977 int action
= NO_ACTION
;
1979 u8 eo_toggle
= 0; /* exchange offload flipped */
1981 switch (vha
->qlini_mode
) {
1982 case QLA2XXX_INI_MODE_DISABLED
:
1984 case QLA2XXX_INI_MODE_DISABLED
:
1985 if (qla_tgt_mode_enabled(vha
)) {
1986 if (NEED_EXCH_OFFLOAD(vha
->u_ql2xexchoffld
) !=
1987 vha
->hw
->flags
.exchoffld_enabled
)
1989 if (((vha
->ql2xexchoffld
!=
1990 vha
->u_ql2xexchoffld
) &&
1991 NEED_EXCH_OFFLOAD(vha
->u_ql2xexchoffld
)) ||
1994 * The number of exchange to be offload
1995 * was tweaked or offload option was
1998 action
= MODE_CHANGE_ACCEPT
;
2000 action
= MODE_CHANGE_NO_ACTION
;
2003 action
= MODE_CHANGE_NO_ACTION
;
2006 case QLA2XXX_INI_MODE_EXCLUSIVE
:
2007 if (qla_tgt_mode_enabled(vha
)) {
2008 if (NEED_EXCH_OFFLOAD(vha
->u_ql2xexchoffld
) !=
2009 vha
->hw
->flags
.exchoffld_enabled
)
2011 if (((vha
->ql2xexchoffld
!=
2012 vha
->u_ql2xexchoffld
) &&
2013 NEED_EXCH_OFFLOAD(vha
->u_ql2xexchoffld
)) ||
2016 * The number of exchange to be offload
2017 * was tweaked or offload option was
2020 action
= MODE_CHANGE_ACCEPT
;
2022 action
= MODE_CHANGE_NO_ACTION
;
2025 action
= MODE_CHANGE_ACCEPT
;
2028 case QLA2XXX_INI_MODE_DUAL
:
2029 action
= MODE_CHANGE_ACCEPT
;
2030 /* active_mode is target only, reset it to dual */
2031 if (qla_tgt_mode_enabled(vha
)) {
2033 action
= MODE_CHANGE_ACCEPT
;
2035 action
= MODE_CHANGE_NO_ACTION
;
2039 case QLA2XXX_INI_MODE_ENABLED
:
2040 if (qla_tgt_mode_enabled(vha
))
2041 action
= TARGET_STILL_ACTIVE
;
2043 action
= MODE_CHANGE_ACCEPT
;
2050 case QLA2XXX_INI_MODE_EXCLUSIVE
:
2052 case QLA2XXX_INI_MODE_EXCLUSIVE
:
2053 if (qla_tgt_mode_enabled(vha
)) {
2054 if (NEED_EXCH_OFFLOAD(vha
->u_ql2xexchoffld
) !=
2055 vha
->hw
->flags
.exchoffld_enabled
)
2057 if (((vha
->ql2xexchoffld
!=
2058 vha
->u_ql2xexchoffld
) &&
2059 NEED_EXCH_OFFLOAD(vha
->u_ql2xexchoffld
)) ||
2062 * The number of exchange to be offload
2063 * was tweaked or offload option was
2066 action
= MODE_CHANGE_ACCEPT
;
2074 case QLA2XXX_INI_MODE_DISABLED
:
2075 if (qla_tgt_mode_enabled(vha
)) {
2076 if (NEED_EXCH_OFFLOAD(vha
->u_ql2xexchoffld
) !=
2077 vha
->hw
->flags
.exchoffld_enabled
)
2079 if (((vha
->ql2xexchoffld
!=
2080 vha
->u_ql2xexchoffld
) &&
2081 NEED_EXCH_OFFLOAD(vha
->u_ql2xexchoffld
)) ||
2083 action
= MODE_CHANGE_ACCEPT
;
2085 action
= MODE_CHANGE_NO_ACTION
;
2087 action
= MODE_CHANGE_NO_ACTION
;
2090 case QLA2XXX_INI_MODE_DUAL
: /* exclusive -> dual */
2091 if (qla_tgt_mode_enabled(vha
)) {
2092 action
= MODE_CHANGE_ACCEPT
;
2095 action
= MODE_CHANGE_ACCEPT
;
2098 case QLA2XXX_INI_MODE_ENABLED
:
2099 if (qla_tgt_mode_enabled(vha
))
2100 action
= TARGET_STILL_ACTIVE
;
2102 if (vha
->hw
->flags
.fw_started
)
2103 action
= MODE_CHANGE_NO_ACTION
;
2105 action
= MODE_CHANGE_ACCEPT
;
2111 case QLA2XXX_INI_MODE_ENABLED
:
2113 case QLA2XXX_INI_MODE_ENABLED
:
2114 if (NEED_EXCH_OFFLOAD(vha
->u_ql2xiniexchg
) !=
2115 vha
->hw
->flags
.exchoffld_enabled
)
2117 if (((vha
->ql2xiniexchg
!= vha
->u_ql2xiniexchg
) &&
2118 NEED_EXCH_OFFLOAD(vha
->u_ql2xiniexchg
)) ||
2120 action
= MODE_CHANGE_ACCEPT
;
2124 case QLA2XXX_INI_MODE_DUAL
:
2125 case QLA2XXX_INI_MODE_DISABLED
:
2126 action
= MODE_CHANGE_ACCEPT
;
2129 action
= MODE_CHANGE_NO_ACTION
;
2134 case QLA2XXX_INI_MODE_DUAL
:
2136 case QLA2XXX_INI_MODE_DUAL
:
2137 if (qla_tgt_mode_enabled(vha
) ||
2138 qla_dual_mode_enabled(vha
)) {
2139 if (NEED_EXCH_OFFLOAD(vha
->u_ql2xexchoffld
+
2140 vha
->u_ql2xiniexchg
) !=
2141 vha
->hw
->flags
.exchoffld_enabled
)
2144 if ((((vha
->ql2xexchoffld
+
2145 vha
->ql2xiniexchg
) !=
2146 (vha
->u_ql2xiniexchg
+
2147 vha
->u_ql2xexchoffld
)) &&
2148 NEED_EXCH_OFFLOAD(vha
->u_ql2xiniexchg
+
2149 vha
->u_ql2xexchoffld
)) || eo_toggle
)
2150 action
= MODE_CHANGE_ACCEPT
;
2154 if (NEED_EXCH_OFFLOAD(vha
->u_ql2xexchoffld
+
2155 vha
->u_ql2xiniexchg
) !=
2156 vha
->hw
->flags
.exchoffld_enabled
)
2159 if ((((vha
->ql2xexchoffld
+ vha
->ql2xiniexchg
)
2160 != (vha
->u_ql2xiniexchg
+
2161 vha
->u_ql2xexchoffld
)) &&
2162 NEED_EXCH_OFFLOAD(vha
->u_ql2xiniexchg
+
2163 vha
->u_ql2xexchoffld
)) || eo_toggle
)
2164 action
= MODE_CHANGE_NO_ACTION
;
2170 case QLA2XXX_INI_MODE_DISABLED
:
2171 if (qla_tgt_mode_enabled(vha
) ||
2172 qla_dual_mode_enabled(vha
)) {
2173 /* turning off initiator mode */
2175 action
= MODE_CHANGE_ACCEPT
;
2177 action
= MODE_CHANGE_NO_ACTION
;
2181 case QLA2XXX_INI_MODE_EXCLUSIVE
:
2182 if (qla_tgt_mode_enabled(vha
) ||
2183 qla_dual_mode_enabled(vha
)) {
2185 action
= MODE_CHANGE_ACCEPT
;
2187 action
= MODE_CHANGE_ACCEPT
;
2191 case QLA2XXX_INI_MODE_ENABLED
:
2192 if (qla_tgt_mode_enabled(vha
) ||
2193 qla_dual_mode_enabled(vha
)) {
2194 action
= TARGET_STILL_ACTIVE
;
2196 action
= MODE_CHANGE_ACCEPT
;
2203 case MODE_CHANGE_ACCEPT
:
2204 ql_log(ql_log_warn
, vha
, 0xffff,
2205 "Mode change accepted. From %s to %s, Tgt exchg %d|%d. ini exchg %d|%d\n",
2206 mode_to_str
[vha
->qlini_mode
], mode_to_str
[op
],
2207 vha
->ql2xexchoffld
, vha
->u_ql2xexchoffld
,
2208 vha
->ql2xiniexchg
, vha
->u_ql2xiniexchg
);
2210 vha
->qlini_mode
= op
;
2211 vha
->ql2xexchoffld
= vha
->u_ql2xexchoffld
;
2212 vha
->ql2xiniexchg
= vha
->u_ql2xiniexchg
;
2215 vha
->flags
.online
= 1;
2216 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
2219 case MODE_CHANGE_NO_ACTION
:
2220 ql_log(ql_log_warn
, vha
, 0xffff,
2221 "Mode is set. No action taken. From %s to %s, Tgt exchg %d|%d. ini exchg %d|%d\n",
2222 mode_to_str
[vha
->qlini_mode
], mode_to_str
[op
],
2223 vha
->ql2xexchoffld
, vha
->u_ql2xexchoffld
,
2224 vha
->ql2xiniexchg
, vha
->u_ql2xiniexchg
);
2225 vha
->qlini_mode
= op
;
2226 vha
->ql2xexchoffld
= vha
->u_ql2xexchoffld
;
2227 vha
->ql2xiniexchg
= vha
->u_ql2xiniexchg
;
2230 case TARGET_STILL_ACTIVE
:
2231 ql_log(ql_log_warn
, vha
, 0xffff,
2232 "Target Mode is active. Unable to change Mode.\n");
2237 ql_log(ql_log_warn
, vha
, 0xffff,
2238 "Mode unchange. No action taken. %d|%d pct %d|%d.\n",
2239 vha
->qlini_mode
, op
,
2240 vha
->ql2xexchoffld
, vha
->u_ql2xexchoffld
);
2246 qlini_mode_store(struct device
*dev
, struct device_attribute
*attr
,
2247 const char *buf
, size_t count
)
2249 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
2255 if (strncasecmp(QLA2XXX_INI_MODE_STR_EXCLUSIVE
, buf
,
2256 strlen(QLA2XXX_INI_MODE_STR_EXCLUSIVE
)) == 0)
2257 ini
= QLA2XXX_INI_MODE_EXCLUSIVE
;
2258 else if (strncasecmp(QLA2XXX_INI_MODE_STR_DISABLED
, buf
,
2259 strlen(QLA2XXX_INI_MODE_STR_DISABLED
)) == 0)
2260 ini
= QLA2XXX_INI_MODE_DISABLED
;
2261 else if (strncasecmp(QLA2XXX_INI_MODE_STR_ENABLED
, buf
,
2262 strlen(QLA2XXX_INI_MODE_STR_ENABLED
)) == 0)
2263 ini
= QLA2XXX_INI_MODE_ENABLED
;
2264 else if (strncasecmp(QLA2XXX_INI_MODE_STR_DUAL
, buf
,
2265 strlen(QLA2XXX_INI_MODE_STR_DUAL
)) == 0)
2266 ini
= QLA2XXX_INI_MODE_DUAL
;
2270 qla_set_ini_mode(vha
, ini
);
2275 ql2xexchoffld_show(struct device
*dev
, struct device_attribute
*attr
,
2278 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
2281 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
,
2282 "target exchange: new %d : current: %d\n\n",
2283 vha
->u_ql2xexchoffld
, vha
->ql2xexchoffld
);
2285 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
,
2286 "Please (re)set operating mode via \"/sys/class/scsi_host/host%ld/qlini_mode\" to load new setting.\n",
2293 ql2xexchoffld_store(struct device
*dev
, struct device_attribute
*attr
,
2294 const char *buf
, size_t count
)
2296 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
2299 if (sscanf(buf
, "%d", &val
) != 1)
2302 if (val
> FW_MAX_EXCHANGES_CNT
)
2303 val
= FW_MAX_EXCHANGES_CNT
;
2307 vha
->u_ql2xexchoffld
= val
;
2312 ql2xiniexchg_show(struct device
*dev
, struct device_attribute
*attr
,
2315 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
2318 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
,
2319 "target exchange: new %d : current: %d\n\n",
2320 vha
->u_ql2xiniexchg
, vha
->ql2xiniexchg
);
2322 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
,
2323 "Please (re)set operating mode via \"/sys/class/scsi_host/host%ld/qlini_mode\" to load new setting.\n",
2330 ql2xiniexchg_store(struct device
*dev
, struct device_attribute
*attr
,
2331 const char *buf
, size_t count
)
2333 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
2336 if (sscanf(buf
, "%d", &val
) != 1)
2339 if (val
> FW_MAX_EXCHANGES_CNT
)
2340 val
= FW_MAX_EXCHANGES_CNT
;
2344 vha
->u_ql2xiniexchg
= val
;
2349 qla2x00_dif_bundle_statistics_show(struct device
*dev
,
2350 struct device_attribute
*attr
, char *buf
)
2352 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
2353 struct qla_hw_data
*ha
= vha
->hw
;
2355 return scnprintf(buf
, PAGE_SIZE
,
2356 "cross=%llu read=%llu write=%llu kalloc=%llu dma_alloc=%llu unusable=%u\n",
2357 ha
->dif_bundle_crossed_pages
, ha
->dif_bundle_reads
,
2358 ha
->dif_bundle_writes
, ha
->dif_bundle_kallocs
,
2359 ha
->dif_bundle_dma_allocs
, ha
->pool
.unusable
.count
);
2363 qla2x00_fw_attr_show(struct device
*dev
,
2364 struct device_attribute
*attr
, char *buf
)
2366 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
2367 struct qla_hw_data
*ha
= vha
->hw
;
2369 if (!IS_QLA27XX(ha
) && !IS_QLA28XX(ha
))
2370 return scnprintf(buf
, PAGE_SIZE
, "\n");
2372 return scnprintf(buf
, PAGE_SIZE
, "%llx\n",
2373 (uint64_t)ha
->fw_attributes_ext
[1] << 48 |
2374 (uint64_t)ha
->fw_attributes_ext
[0] << 32 |
2375 (uint64_t)ha
->fw_attributes_h
<< 16 |
2376 (uint64_t)ha
->fw_attributes
);
2380 qla2x00_port_no_show(struct device
*dev
, struct device_attribute
*attr
,
2383 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
2385 return scnprintf(buf
, PAGE_SIZE
, "%u\n", vha
->hw
->port_no
);
2389 qla2x00_dport_diagnostics_show(struct device
*dev
,
2390 struct device_attribute
*attr
, char *buf
)
2392 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
2394 if (!IS_QLA83XX(vha
->hw
) && !IS_QLA27XX(vha
->hw
) &&
2395 !IS_QLA28XX(vha
->hw
))
2396 return scnprintf(buf
, PAGE_SIZE
, "\n");
2398 if (!*vha
->dport_data
)
2399 return scnprintf(buf
, PAGE_SIZE
, "\n");
2401 return scnprintf(buf
, PAGE_SIZE
, "%04x %04x %04x %04x\n",
2402 vha
->dport_data
[0], vha
->dport_data
[1],
2403 vha
->dport_data
[2], vha
->dport_data
[3]);
2405 static DEVICE_ATTR(dport_diagnostics
, 0444,
2406 qla2x00_dport_diagnostics_show
, NULL
);
2408 static DEVICE_STRING_ATTR_RO(driver_version
, S_IRUGO
, qla2x00_version_str
);
2409 static DEVICE_ATTR(fw_version
, S_IRUGO
, qla2x00_fw_version_show
, NULL
);
2410 static DEVICE_ATTR(serial_num
, S_IRUGO
, qla2x00_serial_num_show
, NULL
);
2411 static DEVICE_ATTR(isp_name
, S_IRUGO
, qla2x00_isp_name_show
, NULL
);
2412 static DEVICE_ATTR(isp_id
, S_IRUGO
, qla2x00_isp_id_show
, NULL
);
2413 static DEVICE_ATTR(model_name
, S_IRUGO
, qla2x00_model_name_show
, NULL
);
2414 static DEVICE_ATTR(model_desc
, S_IRUGO
, qla2x00_model_desc_show
, NULL
);
2415 static DEVICE_ATTR(pci_info
, S_IRUGO
, qla2x00_pci_info_show
, NULL
);
2416 static DEVICE_ATTR(link_state
, S_IRUGO
, qla2x00_link_state_show
, NULL
);
2417 static DEVICE_ATTR(zio
, S_IRUGO
| S_IWUSR
, qla2x00_zio_show
, qla2x00_zio_store
);
2418 static DEVICE_ATTR(zio_timer
, S_IRUGO
| S_IWUSR
, qla2x00_zio_timer_show
,
2419 qla2x00_zio_timer_store
);
2420 static DEVICE_ATTR(beacon
, S_IRUGO
| S_IWUSR
, qla2x00_beacon_show
,
2421 qla2x00_beacon_store
);
2422 static DEVICE_ATTR(beacon_config
, 0644, qla2x00_beacon_config_show
,
2423 qla2x00_beacon_config_store
);
2424 static DEVICE_ATTR(optrom_bios_version
, S_IRUGO
,
2425 qla2x00_optrom_bios_version_show
, NULL
);
2426 static DEVICE_ATTR(optrom_efi_version
, S_IRUGO
,
2427 qla2x00_optrom_efi_version_show
, NULL
);
2428 static DEVICE_ATTR(optrom_fcode_version
, S_IRUGO
,
2429 qla2x00_optrom_fcode_version_show
, NULL
);
2430 static DEVICE_ATTR(optrom_fw_version
, S_IRUGO
, qla2x00_optrom_fw_version_show
,
2432 static DEVICE_ATTR(optrom_gold_fw_version
, S_IRUGO
,
2433 qla2x00_optrom_gold_fw_version_show
, NULL
);
2434 static DEVICE_ATTR(84xx_fw_version
, S_IRUGO
, qla24xx_84xx_fw_version_show
,
2436 static DEVICE_ATTR(total_isp_aborts
, S_IRUGO
, qla2x00_total_isp_aborts_show
,
2438 static DEVICE_ATTR(serdes_version
, 0444, qla2x00_serdes_version_show
, NULL
);
2439 static DEVICE_ATTR(mpi_version
, S_IRUGO
, qla2x00_mpi_version_show
, NULL
);
2440 static DEVICE_ATTR(phy_version
, S_IRUGO
, qla2x00_phy_version_show
, NULL
);
2441 static DEVICE_ATTR(flash_block_size
, S_IRUGO
, qla2x00_flash_block_size_show
,
2443 static DEVICE_ATTR(vlan_id
, S_IRUGO
, qla2x00_vlan_id_show
, NULL
);
2444 static DEVICE_ATTR(vn_port_mac_address
, S_IRUGO
,
2445 qla2x00_vn_port_mac_address_show
, NULL
);
2446 static DEVICE_ATTR(fabric_param
, S_IRUGO
, qla2x00_fabric_param_show
, NULL
);
2447 static DEVICE_ATTR(fw_state
, S_IRUGO
, qla2x00_fw_state_show
, NULL
);
2448 static DEVICE_ATTR(thermal_temp
, S_IRUGO
, qla2x00_thermal_temp_show
, NULL
);
2449 static DEVICE_ATTR(diag_requests
, S_IRUGO
, qla2x00_diag_requests_show
, NULL
);
2450 static DEVICE_ATTR(diag_megabytes
, S_IRUGO
, qla2x00_diag_megabytes_show
, NULL
);
2451 static DEVICE_ATTR(fw_dump_size
, S_IRUGO
, qla2x00_fw_dump_size_show
, NULL
);
2452 static DEVICE_ATTR(allow_cna_fw_dump
, S_IRUGO
| S_IWUSR
,
2453 qla2x00_allow_cna_fw_dump_show
,
2454 qla2x00_allow_cna_fw_dump_store
);
2455 static DEVICE_ATTR(pep_version
, S_IRUGO
, qla2x00_pep_version_show
, NULL
);
2456 static DEVICE_ATTR(min_supported_speed
, 0444,
2457 qla2x00_min_supported_speed_show
, NULL
);
2458 static DEVICE_ATTR(max_supported_speed
, 0444,
2459 qla2x00_max_supported_speed_show
, NULL
);
2460 static DEVICE_ATTR(zio_threshold
, 0644,
2461 qla_zio_threshold_show
,
2462 qla_zio_threshold_store
);
2463 static DEVICE_ATTR_RW(qlini_mode
);
2464 static DEVICE_ATTR_RW(ql2xexchoffld
);
2465 static DEVICE_ATTR_RW(ql2xiniexchg
);
2466 static DEVICE_ATTR(dif_bundle_statistics
, 0444,
2467 qla2x00_dif_bundle_statistics_show
, NULL
);
2468 static DEVICE_ATTR(port_speed
, 0644, qla2x00_port_speed_show
,
2469 qla2x00_port_speed_store
);
2470 static DEVICE_ATTR(port_no
, 0444, qla2x00_port_no_show
, NULL
);
2471 static DEVICE_ATTR(fw_attr
, 0444, qla2x00_fw_attr_show
, NULL
);
2473 static struct attribute
*qla2x00_host_attrs
[] = {
2474 &dev_attr_driver_version
.attr
.attr
,
2475 &dev_attr_fw_version
.attr
,
2476 &dev_attr_serial_num
.attr
,
2477 &dev_attr_isp_name
.attr
,
2478 &dev_attr_isp_id
.attr
,
2479 &dev_attr_model_name
.attr
,
2480 &dev_attr_model_desc
.attr
,
2481 &dev_attr_pci_info
.attr
,
2482 &dev_attr_link_state
.attr
,
2484 &dev_attr_zio_timer
.attr
,
2485 &dev_attr_beacon
.attr
,
2486 &dev_attr_beacon_config
.attr
,
2487 &dev_attr_optrom_bios_version
.attr
,
2488 &dev_attr_optrom_efi_version
.attr
,
2489 &dev_attr_optrom_fcode_version
.attr
,
2490 &dev_attr_optrom_fw_version
.attr
,
2491 &dev_attr_84xx_fw_version
.attr
,
2492 &dev_attr_total_isp_aborts
.attr
,
2493 &dev_attr_serdes_version
.attr
,
2494 &dev_attr_mpi_version
.attr
,
2495 &dev_attr_phy_version
.attr
,
2496 &dev_attr_flash_block_size
.attr
,
2497 &dev_attr_vlan_id
.attr
,
2498 &dev_attr_vn_port_mac_address
.attr
,
2499 &dev_attr_fabric_param
.attr
,
2500 &dev_attr_fw_state
.attr
,
2501 &dev_attr_optrom_gold_fw_version
.attr
,
2502 &dev_attr_thermal_temp
.attr
,
2503 &dev_attr_diag_requests
.attr
,
2504 &dev_attr_diag_megabytes
.attr
,
2505 &dev_attr_fw_dump_size
.attr
,
2506 &dev_attr_allow_cna_fw_dump
.attr
,
2507 &dev_attr_pep_version
.attr
,
2508 &dev_attr_min_supported_speed
.attr
,
2509 &dev_attr_max_supported_speed
.attr
,
2510 &dev_attr_zio_threshold
.attr
,
2511 &dev_attr_dif_bundle_statistics
.attr
,
2512 &dev_attr_port_speed
.attr
,
2513 &dev_attr_port_no
.attr
,
2514 &dev_attr_fw_attr
.attr
,
2515 &dev_attr_dport_diagnostics
.attr
,
2516 &dev_attr_mpi_pause
.attr
,
2517 &dev_attr_qlini_mode
.attr
,
2518 &dev_attr_ql2xiniexchg
.attr
,
2519 &dev_attr_ql2xexchoffld
.attr
,
2523 static umode_t
qla_host_attr_is_visible(struct kobject
*kobj
,
2524 struct attribute
*attr
, int i
)
2526 if (ql2x_ini_mode
!= QLA2XXX_INI_MODE_DUAL
&&
2527 (attr
== &dev_attr_qlini_mode
.attr
||
2528 attr
== &dev_attr_ql2xiniexchg
.attr
||
2529 attr
== &dev_attr_ql2xexchoffld
.attr
))
2534 static const struct attribute_group qla2x00_host_attr_group
= {
2535 .is_visible
= qla_host_attr_is_visible
,
2536 .attrs
= qla2x00_host_attrs
2539 const struct attribute_group
*qla2x00_host_groups
[] = {
2540 &qla2x00_host_attr_group
,
2544 /* Host attributes. */
2547 qla2x00_get_host_port_id(struct Scsi_Host
*shost
)
2549 scsi_qla_host_t
*vha
= shost_priv(shost
);
2551 fc_host_port_id(shost
) = vha
->d_id
.b
.domain
<< 16 |
2552 vha
->d_id
.b
.area
<< 8 | vha
->d_id
.b
.al_pa
;
2556 qla2x00_get_host_speed(struct Scsi_Host
*shost
)
2558 scsi_qla_host_t
*vha
= shost_priv(shost
);
2561 if (IS_QLAFX00(vha
->hw
)) {
2562 qlafx00_get_host_speed(shost
);
2566 switch (vha
->hw
->link_data_rate
) {
2567 case PORT_SPEED_1GB
:
2568 speed
= FC_PORTSPEED_1GBIT
;
2570 case PORT_SPEED_2GB
:
2571 speed
= FC_PORTSPEED_2GBIT
;
2573 case PORT_SPEED_4GB
:
2574 speed
= FC_PORTSPEED_4GBIT
;
2576 case PORT_SPEED_8GB
:
2577 speed
= FC_PORTSPEED_8GBIT
;
2579 case PORT_SPEED_10GB
:
2580 speed
= FC_PORTSPEED_10GBIT
;
2582 case PORT_SPEED_16GB
:
2583 speed
= FC_PORTSPEED_16GBIT
;
2585 case PORT_SPEED_32GB
:
2586 speed
= FC_PORTSPEED_32GBIT
;
2588 case PORT_SPEED_64GB
:
2589 speed
= FC_PORTSPEED_64GBIT
;
2592 speed
= FC_PORTSPEED_UNKNOWN
;
2596 fc_host_speed(shost
) = speed
;
2600 qla2x00_get_host_port_type(struct Scsi_Host
*shost
)
2602 scsi_qla_host_t
*vha
= shost_priv(shost
);
2606 fc_host_port_type(shost
) = FC_PORTTYPE_NPIV
;
2609 switch (vha
->hw
->current_topology
) {
2611 port_type
= FC_PORTTYPE_LPORT
;
2614 port_type
= FC_PORTTYPE_NLPORT
;
2617 port_type
= FC_PORTTYPE_PTP
;
2620 port_type
= FC_PORTTYPE_NPORT
;
2623 port_type
= FC_PORTTYPE_UNKNOWN
;
2627 fc_host_port_type(shost
) = port_type
;
2631 qla2x00_get_starget_node_name(struct scsi_target
*starget
)
2633 struct Scsi_Host
*host
= dev_to_shost(starget
->dev
.parent
);
2634 scsi_qla_host_t
*vha
= shost_priv(host
);
2638 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
2639 if (fcport
->rport
&&
2640 starget
->id
== fcport
->rport
->scsi_target_id
) {
2641 node_name
= wwn_to_u64(fcport
->node_name
);
2646 fc_starget_node_name(starget
) = node_name
;
2650 qla2x00_get_starget_port_name(struct scsi_target
*starget
)
2652 struct Scsi_Host
*host
= dev_to_shost(starget
->dev
.parent
);
2653 scsi_qla_host_t
*vha
= shost_priv(host
);
2657 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
2658 if (fcport
->rport
&&
2659 starget
->id
== fcport
->rport
->scsi_target_id
) {
2660 port_name
= wwn_to_u64(fcport
->port_name
);
2665 fc_starget_port_name(starget
) = port_name
;
2669 qla2x00_get_starget_port_id(struct scsi_target
*starget
)
2671 struct Scsi_Host
*host
= dev_to_shost(starget
->dev
.parent
);
2672 scsi_qla_host_t
*vha
= shost_priv(host
);
2674 uint32_t port_id
= ~0U;
2676 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
2677 if (fcport
->rport
&&
2678 starget
->id
== fcport
->rport
->scsi_target_id
) {
2679 port_id
= fcport
->d_id
.b
.domain
<< 16 |
2680 fcport
->d_id
.b
.area
<< 8 | fcport
->d_id
.b
.al_pa
;
2685 fc_starget_port_id(starget
) = port_id
;
2689 qla2x00_set_rport_loss_tmo(struct fc_rport
*rport
, uint32_t timeout
)
2691 fc_port_t
*fcport
= *(fc_port_t
**)rport
->dd_data
;
2693 rport
->dev_loss_tmo
= timeout
? timeout
: 1;
2695 if (IS_ENABLED(CONFIG_NVME_FC
) && fcport
&& fcport
->nvme_remote_port
)
2696 nvme_fc_set_remoteport_devloss(fcport
->nvme_remote_port
,
2697 rport
->dev_loss_tmo
);
2701 qla2x00_dev_loss_tmo_callbk(struct fc_rport
*rport
)
2703 struct Scsi_Host
*host
= rport_to_shost(rport
);
2704 fc_port_t
*fcport
= *(fc_port_t
**)rport
->dd_data
;
2705 unsigned long flags
;
2710 ql_dbg(ql_dbg_async
, fcport
->vha
, 0x5101,
2711 DBG_FCPORT_PRFMT(fcport
, "dev_loss_tmo expiry, rport_state=%d",
2712 rport
->port_state
));
2715 * Now that the rport has been deleted, set the fcport state to
2716 * FCS_DEVICE_DEAD, if the fcport is still lost.
2718 if (fcport
->scan_state
!= QLA_FCPORT_FOUND
)
2719 qla2x00_set_fcport_state(fcport
, FCS_DEVICE_DEAD
);
2722 * Transport has effectively 'deleted' the rport, clear
2723 * all local references.
2725 spin_lock_irqsave(host
->host_lock
, flags
);
2726 /* Confirm port has not reappeared before clearing pointers. */
2727 if (rport
->port_state
!= FC_PORTSTATE_ONLINE
) {
2728 fcport
->rport
= NULL
;
2729 *((fc_port_t
**)rport
->dd_data
) = NULL
;
2731 spin_unlock_irqrestore(host
->host_lock
, flags
);
2733 if (test_bit(ABORT_ISP_ACTIVE
, &fcport
->vha
->dpc_flags
))
2736 if (unlikely(pci_channel_offline(fcport
->vha
->hw
->pdev
))) {
2737 /* Will wait for wind down of adapter */
2738 ql_dbg(ql_dbg_aer
, fcport
->vha
, 0x900c,
2739 "%s pci offline detected (id %06x)\n", __func__
,
2741 qla_pci_set_eeh_busy(fcport
->vha
);
2742 qla2x00_eh_wait_for_pending_commands(fcport
->vha
, fcport
->d_id
.b24
,
2749 qla2x00_terminate_rport_io(struct fc_rport
*rport
)
2751 fc_port_t
*fcport
= *(fc_port_t
**)rport
->dd_data
;
2752 scsi_qla_host_t
*vha
;
2757 if (test_bit(UNLOADING
, &fcport
->vha
->dpc_flags
))
2760 if (test_bit(ABORT_ISP_ACTIVE
, &fcport
->vha
->dpc_flags
))
2764 if (unlikely(pci_channel_offline(fcport
->vha
->hw
->pdev
))) {
2765 /* Will wait for wind down of adapter */
2766 ql_dbg(ql_dbg_aer
, fcport
->vha
, 0x900b,
2767 "%s pci offline detected (id %06x)\n", __func__
,
2769 qla_pci_set_eeh_busy(vha
);
2770 qla2x00_eh_wait_for_pending_commands(fcport
->vha
, fcport
->d_id
.b24
,
2775 * At this point all fcport's software-states are cleared. Perform any
2776 * final cleanup of firmware resources (PCBs and XCBs).
2778 * Attempt to cleanup only lost devices.
2780 if (fcport
->loop_id
!= FC_NO_LOOP_ID
) {
2781 if (IS_FWI2_CAPABLE(fcport
->vha
->hw
) &&
2782 fcport
->scan_state
!= QLA_FCPORT_FOUND
) {
2783 if (fcport
->loop_id
!= FC_NO_LOOP_ID
)
2784 fcport
->logout_on_delete
= 1;
2786 if (!EDIF_NEGOTIATION_PENDING(fcport
)) {
2787 ql_dbg(ql_dbg_disc
, fcport
->vha
, 0x911e,
2788 "%s %d schedule session deletion\n", __func__
,
2790 qlt_schedule_sess_for_deletion(fcport
);
2792 } else if (!IS_FWI2_CAPABLE(fcport
->vha
->hw
)) {
2793 qla2x00_port_logout(fcport
->vha
, fcport
);
2797 /* check for any straggling io left behind */
2798 if (qla2x00_eh_wait_for_pending_commands(fcport
->vha
, fcport
->d_id
.b24
, 0, WAIT_TARGET
)) {
2799 ql_log(ql_log_warn
, vha
, 0x300b,
2800 "IO not return. Resetting. \n");
2801 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
2802 qla2xxx_wake_dpc(vha
);
2803 qla2x00_wait_for_chip_reset(vha
);
2808 qla2x00_issue_lip(struct Scsi_Host
*shost
)
2810 scsi_qla_host_t
*vha
= shost_priv(shost
);
2812 if (IS_QLAFX00(vha
->hw
))
2815 if (vha
->hw
->flags
.port_isolated
)
2818 qla2x00_loop_reset(vha
);
2822 static struct fc_host_statistics
*
2823 qla2x00_get_fc_host_stats(struct Scsi_Host
*shost
)
2825 scsi_qla_host_t
*vha
= shost_priv(shost
);
2826 struct qla_hw_data
*ha
= vha
->hw
;
2827 struct scsi_qla_host
*base_vha
= pci_get_drvdata(ha
->pdev
);
2829 struct link_statistics
*stats
;
2830 dma_addr_t stats_dma
;
2831 struct fc_host_statistics
*p
= &vha
->fc_host_stat
;
2832 struct qla_qpair
*qpair
;
2834 u64 ib
= 0, ob
= 0, ir
= 0, or = 0;
2836 memset(p
, -1, sizeof(*p
));
2838 if (IS_QLAFX00(vha
->hw
))
2841 if (test_bit(UNLOADING
, &vha
->dpc_flags
))
2844 if (unlikely(pci_channel_offline(ha
->pdev
)))
2847 if (qla2x00_chip_is_down(vha
))
2850 stats
= dma_alloc_coherent(&ha
->pdev
->dev
, sizeof(*stats
), &stats_dma
,
2853 ql_log(ql_log_warn
, vha
, 0x707d,
2854 "Failed to allocate memory for stats.\n");
2858 rval
= QLA_FUNCTION_FAILED
;
2859 if (IS_FWI2_CAPABLE(ha
)) {
2860 rval
= qla24xx_get_isp_stats(base_vha
, stats
, stats_dma
, 0);
2861 } else if (atomic_read(&base_vha
->loop_state
) == LOOP_READY
&&
2863 /* Must be in a 'READY' state for statistics retrieval. */
2864 rval
= qla2x00_get_link_status(base_vha
, base_vha
->loop_id
,
2868 if (rval
!= QLA_SUCCESS
)
2872 for (i
= 0; i
< vha
->hw
->max_qpairs
; i
++) {
2873 qpair
= vha
->hw
->queue_pair_map
[i
];
2876 ir
+= qpair
->counters
.input_requests
;
2877 or += qpair
->counters
.output_requests
;
2878 ib
+= qpair
->counters
.input_bytes
;
2879 ob
+= qpair
->counters
.output_bytes
;
2881 ir
+= ha
->base_qpair
->counters
.input_requests
;
2882 or += ha
->base_qpair
->counters
.output_requests
;
2883 ib
+= ha
->base_qpair
->counters
.input_bytes
;
2884 ob
+= ha
->base_qpair
->counters
.output_bytes
;
2886 ir
+= vha
->qla_stats
.input_requests
;
2887 or += vha
->qla_stats
.output_requests
;
2888 ib
+= vha
->qla_stats
.input_bytes
;
2889 ob
+= vha
->qla_stats
.output_bytes
;
2892 p
->link_failure_count
= le32_to_cpu(stats
->link_fail_cnt
);
2893 p
->loss_of_sync_count
= le32_to_cpu(stats
->loss_sync_cnt
);
2894 p
->loss_of_signal_count
= le32_to_cpu(stats
->loss_sig_cnt
);
2895 p
->prim_seq_protocol_err_count
= le32_to_cpu(stats
->prim_seq_err_cnt
);
2896 p
->invalid_tx_word_count
= le32_to_cpu(stats
->inval_xmit_word_cnt
);
2897 p
->invalid_crc_count
= le32_to_cpu(stats
->inval_crc_cnt
);
2898 if (IS_FWI2_CAPABLE(ha
)) {
2899 p
->lip_count
= le32_to_cpu(stats
->lip_cnt
);
2900 p
->tx_frames
= le32_to_cpu(stats
->tx_frames
);
2901 p
->rx_frames
= le32_to_cpu(stats
->rx_frames
);
2902 p
->dumped_frames
= le32_to_cpu(stats
->discarded_frames
);
2903 p
->nos_count
= le32_to_cpu(stats
->nos_rcvd
);
2905 le32_to_cpu(stats
->dropped_frames
) +
2906 le32_to_cpu(stats
->discarded_frames
);
2907 if (IS_QLA83XX(ha
) || IS_QLA27XX(ha
) || IS_QLA28XX(ha
)) {
2908 p
->rx_words
= le64_to_cpu(stats
->fpm_recv_word_cnt
);
2909 p
->tx_words
= le64_to_cpu(stats
->fpm_xmit_word_cnt
);
2911 p
->rx_words
= ib
>> 2;
2912 p
->tx_words
= ob
>> 2;
2916 p
->fcp_control_requests
= vha
->qla_stats
.control_requests
;
2917 p
->fcp_input_requests
= ir
;
2918 p
->fcp_output_requests
= or;
2919 p
->fcp_input_megabytes
= ib
>> 20;
2920 p
->fcp_output_megabytes
= ob
>> 20;
2921 p
->seconds_since_last_reset
=
2922 get_jiffies_64() - vha
->qla_stats
.jiffies_at_last_reset
;
2923 do_div(p
->seconds_since_last_reset
, HZ
);
2926 dma_free_coherent(&ha
->pdev
->dev
, sizeof(struct link_statistics
),
2933 qla2x00_reset_host_stats(struct Scsi_Host
*shost
)
2935 scsi_qla_host_t
*vha
= shost_priv(shost
);
2936 struct qla_hw_data
*ha
= vha
->hw
;
2937 struct scsi_qla_host
*base_vha
= pci_get_drvdata(ha
->pdev
);
2938 struct link_statistics
*stats
;
2939 dma_addr_t stats_dma
;
2941 struct qla_qpair
*qpair
;
2943 memset(&vha
->qla_stats
, 0, sizeof(vha
->qla_stats
));
2944 memset(&vha
->fc_host_stat
, 0, sizeof(vha
->fc_host_stat
));
2945 for (i
= 0; i
< vha
->hw
->max_qpairs
; i
++) {
2946 qpair
= vha
->hw
->queue_pair_map
[i
];
2949 memset(&qpair
->counters
, 0, sizeof(qpair
->counters
));
2951 memset(&ha
->base_qpair
->counters
, 0, sizeof(qpair
->counters
));
2953 vha
->qla_stats
.jiffies_at_last_reset
= get_jiffies_64();
2955 if (IS_FWI2_CAPABLE(ha
)) {
2958 stats
= dma_alloc_coherent(&ha
->pdev
->dev
,
2959 sizeof(*stats
), &stats_dma
, GFP_KERNEL
);
2961 ql_log(ql_log_warn
, vha
, 0x70d7,
2962 "Failed to allocate memory for stats.\n");
2966 /* reset firmware statistics */
2967 rval
= qla24xx_get_isp_stats(base_vha
, stats
, stats_dma
, BIT_0
);
2968 if (rval
!= QLA_SUCCESS
)
2969 ql_log(ql_log_warn
, vha
, 0x70de,
2970 "Resetting ISP statistics failed: rval = %d\n",
2973 dma_free_coherent(&ha
->pdev
->dev
, sizeof(*stats
),
2979 qla2x00_get_host_symbolic_name(struct Scsi_Host
*shost
)
2981 scsi_qla_host_t
*vha
= shost_priv(shost
);
2983 qla2x00_get_sym_node_name(vha
, fc_host_symbolic_name(shost
),
2984 sizeof(fc_host_symbolic_name(shost
)));
2988 qla2x00_set_host_system_hostname(struct Scsi_Host
*shost
)
2990 scsi_qla_host_t
*vha
= shost_priv(shost
);
2992 set_bit(REGISTER_FDMI_NEEDED
, &vha
->dpc_flags
);
2996 qla2x00_get_host_fabric_name(struct Scsi_Host
*shost
)
2998 scsi_qla_host_t
*vha
= shost_priv(shost
);
2999 static const uint8_t node_name
[WWN_SIZE
] = {
3000 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF
3002 u64 fabric_name
= wwn_to_u64(node_name
);
3004 if (vha
->device_flags
& SWITCH_FOUND
)
3005 fabric_name
= wwn_to_u64(vha
->fabric_node_name
);
3007 fc_host_fabric_name(shost
) = fabric_name
;
3011 qla2x00_get_host_port_state(struct Scsi_Host
*shost
)
3013 scsi_qla_host_t
*vha
= shost_priv(shost
);
3014 struct scsi_qla_host
*base_vha
= pci_get_drvdata(vha
->hw
->pdev
);
3016 if (!base_vha
->flags
.online
) {
3017 fc_host_port_state(shost
) = FC_PORTSTATE_OFFLINE
;
3021 switch (atomic_read(&base_vha
->loop_state
)) {
3023 fc_host_port_state(shost
) = FC_PORTSTATE_DIAGNOSTICS
;
3026 if (test_bit(LOOP_RESYNC_NEEDED
, &base_vha
->dpc_flags
))
3027 fc_host_port_state(shost
) = FC_PORTSTATE_DIAGNOSTICS
;
3029 fc_host_port_state(shost
) = FC_PORTSTATE_LINKDOWN
;
3032 fc_host_port_state(shost
) = FC_PORTSTATE_LINKDOWN
;
3035 fc_host_port_state(shost
) = FC_PORTSTATE_ONLINE
;
3038 fc_host_port_state(shost
) = FC_PORTSTATE_UNKNOWN
;
3044 qla24xx_vport_create(struct fc_vport
*fc_vport
, bool disable
)
3048 scsi_qla_host_t
*base_vha
= shost_priv(fc_vport
->shost
);
3049 scsi_qla_host_t
*vha
= NULL
;
3050 struct qla_hw_data
*ha
= base_vha
->hw
;
3052 struct req_que
*req
= ha
->req_q_map
[0];
3053 struct qla_qpair
*qpair
;
3055 ret
= qla24xx_vport_create_req_sanity_check(fc_vport
);
3057 ql_log(ql_log_warn
, vha
, 0x707e,
3058 "Vport sanity check failed, status %x\n", ret
);
3062 vha
= qla24xx_create_vhost(fc_vport
);
3064 ql_log(ql_log_warn
, vha
, 0x707f, "Vport create host failed.\n");
3065 return FC_VPORT_FAILED
;
3068 atomic_set(&vha
->vp_state
, VP_OFFLINE
);
3069 fc_vport_set_state(fc_vport
, FC_VPORT_DISABLED
);
3071 atomic_set(&vha
->vp_state
, VP_FAILED
);
3073 /* ready to create vport */
3074 ql_log(ql_log_info
, vha
, 0x7080,
3075 "VP entry id %d assigned.\n", vha
->vp_idx
);
3077 /* initialized vport states */
3078 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
3079 vha
->vp_err_state
= VP_ERR_PORTDWN
;
3080 vha
->vp_prev_err_state
= VP_ERR_UNKWN
;
3081 /* Check if physical ha port is Up */
3082 if (atomic_read(&base_vha
->loop_state
) == LOOP_DOWN
||
3083 atomic_read(&base_vha
->loop_state
) == LOOP_DEAD
) {
3084 /* Don't retry or attempt login of this virtual port */
3085 ql_dbg(ql_dbg_user
, vha
, 0x7081,
3086 "Vport loop state is not UP.\n");
3087 atomic_set(&vha
->loop_state
, LOOP_DEAD
);
3089 fc_vport_set_state(fc_vport
, FC_VPORT_LINKDOWN
);
3092 if (IS_T10_PI_CAPABLE(ha
) && ql2xenabledif
) {
3093 if (ha
->fw_attributes
& BIT_4
) {
3094 int prot
= 0, guard
;
3096 vha
->flags
.difdix_supported
= 1;
3097 ql_dbg(ql_dbg_user
, vha
, 0x7082,
3098 "Registered for DIF/DIX type 1 and 3 protection.\n");
3099 scsi_host_set_prot(vha
->host
,
3100 prot
| SHOST_DIF_TYPE1_PROTECTION
3101 | SHOST_DIF_TYPE2_PROTECTION
3102 | SHOST_DIF_TYPE3_PROTECTION
3103 | SHOST_DIX_TYPE1_PROTECTION
3104 | SHOST_DIX_TYPE2_PROTECTION
3105 | SHOST_DIX_TYPE3_PROTECTION
);
3107 guard
= SHOST_DIX_GUARD_CRC
;
3109 if (IS_PI_IPGUARD_CAPABLE(ha
) &&
3110 (ql2xenabledif
> 1 || IS_PI_DIFB_DIX0_CAPABLE(ha
)))
3111 guard
|= SHOST_DIX_GUARD_IP
;
3113 scsi_host_set_guard(vha
->host
, guard
);
3115 vha
->flags
.difdix_supported
= 0;
3118 if (scsi_add_host_with_dma(vha
->host
, &fc_vport
->dev
,
3120 ql_dbg(ql_dbg_user
, vha
, 0x7083,
3121 "scsi_add_host failure for VP[%d].\n", vha
->vp_idx
);
3122 goto vport_create_failed_2
;
3125 /* initialize attributes */
3126 fc_host_dev_loss_tmo(vha
->host
) = ha
->port_down_retry_count
;
3127 fc_host_node_name(vha
->host
) = wwn_to_u64(vha
->node_name
);
3128 fc_host_port_name(vha
->host
) = wwn_to_u64(vha
->port_name
);
3129 fc_host_supported_classes(vha
->host
) =
3130 fc_host_supported_classes(base_vha
->host
);
3131 fc_host_supported_speeds(vha
->host
) =
3132 fc_host_supported_speeds(base_vha
->host
);
3134 qlt_vport_create(vha
, ha
);
3135 qla24xx_vport_disable(fc_vport
, disable
);
3137 if (!ql2xmqsupport
|| !ha
->npiv_info
)
3140 /* Create a request queue in QoS mode for the vport */
3141 for (cnt
= 0; cnt
< ha
->nvram_npiv_size
; cnt
++) {
3142 if (memcmp(ha
->npiv_info
[cnt
].port_name
, vha
->port_name
, 8) == 0
3143 && memcmp(ha
->npiv_info
[cnt
].node_name
, vha
->node_name
,
3145 qos
= ha
->npiv_info
[cnt
].q_qos
;
3151 qpair
= qla2xxx_create_qpair(vha
, qos
, vha
->vp_idx
, true);
3153 ql_log(ql_log_warn
, vha
, 0x7084,
3154 "Can't create qpair for VP[%d]\n",
3157 ql_dbg(ql_dbg_multiq
, vha
, 0xc001,
3158 "Queue pair: %d Qos: %d) created for VP[%d]\n",
3159 qpair
->id
, qos
, vha
->vp_idx
);
3160 ql_dbg(ql_dbg_user
, vha
, 0x7085,
3161 "Queue Pair: %d Qos: %d) created for VP[%d]\n",
3162 qpair
->id
, qos
, vha
->vp_idx
);
3172 vport_create_failed_2
:
3173 qla24xx_disable_vp(vha
);
3174 qla24xx_deallocate_vp_id(vha
);
3175 scsi_host_put(vha
->host
);
3176 return FC_VPORT_FAILED
;
3180 qla24xx_vport_delete(struct fc_vport
*fc_vport
)
3182 scsi_qla_host_t
*vha
= fc_vport
->dd_data
;
3183 struct qla_hw_data
*ha
= vha
->hw
;
3184 uint16_t id
= vha
->vp_idx
;
3186 set_bit(VPORT_DELETE
, &vha
->dpc_flags
);
3188 while (test_bit(LOOP_RESYNC_ACTIVE
, &vha
->dpc_flags
))
3192 qla24xx_disable_vp(vha
);
3193 qla2x00_wait_for_sess_deletion(vha
);
3195 qla_nvme_delete(vha
);
3196 qla_enode_stop(vha
);
3199 vha
->flags
.delete_progress
= 1;
3201 qlt_remove_target(ha
, vha
);
3203 fc_remove_host(vha
->host
);
3205 scsi_remove_host(vha
->host
);
3207 /* Allow timer to run to drain queued items, when removing vp */
3208 qla24xx_deallocate_vp_id(vha
);
3210 if (vha
->timer_active
) {
3211 qla2x00_vp_stop_timer(vha
);
3212 ql_dbg(ql_dbg_user
, vha
, 0x7086,
3213 "Timer for the VP[%d] has stopped\n", vha
->vp_idx
);
3216 qla2x00_free_fcports(vha
);
3218 mutex_lock(&ha
->vport_lock
);
3219 ha
->cur_vport_count
--;
3220 clear_bit(vha
->vp_idx
, ha
->vp_idx_map
);
3221 mutex_unlock(&ha
->vport_lock
);
3223 dma_free_coherent(&ha
->pdev
->dev
, vha
->gnl
.size
, vha
->gnl
.l
,
3230 if (vha
->qpair
&& vha
->qpair
->vp_idx
== vha
->vp_idx
) {
3231 if (qla2xxx_delete_qpair(vha
, vha
->qpair
) != QLA_SUCCESS
)
3232 ql_log(ql_log_warn
, vha
, 0x7087,
3233 "Queue Pair delete failed.\n");
3236 ql_log(ql_log_info
, vha
, 0x7088, "VP[%d] deleted.\n", id
);
3237 scsi_host_put(vha
->host
);
3242 qla24xx_vport_disable(struct fc_vport
*fc_vport
, bool disable
)
3244 scsi_qla_host_t
*vha
= fc_vport
->dd_data
;
3247 qla24xx_disable_vp(vha
);
3249 qla24xx_enable_vp(vha
);
3254 struct fc_function_template qla2xxx_transport_functions
= {
3256 .show_host_node_name
= 1,
3257 .show_host_port_name
= 1,
3258 .show_host_supported_classes
= 1,
3259 .show_host_supported_speeds
= 1,
3261 .get_host_port_id
= qla2x00_get_host_port_id
,
3262 .show_host_port_id
= 1,
3263 .get_host_speed
= qla2x00_get_host_speed
,
3264 .show_host_speed
= 1,
3265 .get_host_port_type
= qla2x00_get_host_port_type
,
3266 .show_host_port_type
= 1,
3267 .get_host_symbolic_name
= qla2x00_get_host_symbolic_name
,
3268 .show_host_symbolic_name
= 1,
3269 .set_host_system_hostname
= qla2x00_set_host_system_hostname
,
3270 .show_host_system_hostname
= 1,
3271 .get_host_fabric_name
= qla2x00_get_host_fabric_name
,
3272 .show_host_fabric_name
= 1,
3273 .get_host_port_state
= qla2x00_get_host_port_state
,
3274 .show_host_port_state
= 1,
3276 .dd_fcrport_size
= sizeof(struct fc_port
*),
3277 .show_rport_supported_classes
= 1,
3279 .get_starget_node_name
= qla2x00_get_starget_node_name
,
3280 .show_starget_node_name
= 1,
3281 .get_starget_port_name
= qla2x00_get_starget_port_name
,
3282 .show_starget_port_name
= 1,
3283 .get_starget_port_id
= qla2x00_get_starget_port_id
,
3284 .show_starget_port_id
= 1,
3286 .set_rport_dev_loss_tmo
= qla2x00_set_rport_loss_tmo
,
3287 .show_rport_dev_loss_tmo
= 1,
3289 .issue_fc_host_lip
= qla2x00_issue_lip
,
3290 .dev_loss_tmo_callbk
= qla2x00_dev_loss_tmo_callbk
,
3291 .terminate_rport_io
= qla2x00_terminate_rport_io
,
3292 .get_fc_host_stats
= qla2x00_get_fc_host_stats
,
3293 .reset_fc_host_stats
= qla2x00_reset_host_stats
,
3295 .vport_create
= qla24xx_vport_create
,
3296 .vport_disable
= qla24xx_vport_disable
,
3297 .vport_delete
= qla24xx_vport_delete
,
3298 .bsg_request
= qla24xx_bsg_request
,
3299 .bsg_timeout
= qla24xx_bsg_timeout
,
3302 struct fc_function_template qla2xxx_transport_vport_functions
= {
3304 .show_host_node_name
= 1,
3305 .show_host_port_name
= 1,
3306 .show_host_supported_classes
= 1,
3308 .get_host_port_id
= qla2x00_get_host_port_id
,
3309 .show_host_port_id
= 1,
3310 .get_host_speed
= qla2x00_get_host_speed
,
3311 .show_host_speed
= 1,
3312 .get_host_port_type
= qla2x00_get_host_port_type
,
3313 .show_host_port_type
= 1,
3314 .get_host_symbolic_name
= qla2x00_get_host_symbolic_name
,
3315 .show_host_symbolic_name
= 1,
3316 .set_host_system_hostname
= qla2x00_set_host_system_hostname
,
3317 .show_host_system_hostname
= 1,
3318 .get_host_fabric_name
= qla2x00_get_host_fabric_name
,
3319 .show_host_fabric_name
= 1,
3320 .get_host_port_state
= qla2x00_get_host_port_state
,
3321 .show_host_port_state
= 1,
3323 .dd_fcrport_size
= sizeof(struct fc_port
*),
3324 .show_rport_supported_classes
= 1,
3326 .get_starget_node_name
= qla2x00_get_starget_node_name
,
3327 .show_starget_node_name
= 1,
3328 .get_starget_port_name
= qla2x00_get_starget_port_name
,
3329 .show_starget_port_name
= 1,
3330 .get_starget_port_id
= qla2x00_get_starget_port_id
,
3331 .show_starget_port_id
= 1,
3333 .set_rport_dev_loss_tmo
= qla2x00_set_rport_loss_tmo
,
3334 .show_rport_dev_loss_tmo
= 1,
3336 .issue_fc_host_lip
= qla2x00_issue_lip
,
3337 .dev_loss_tmo_callbk
= qla2x00_dev_loss_tmo_callbk
,
3338 .terminate_rport_io
= qla2x00_terminate_rport_io
,
3339 .get_fc_host_stats
= qla2x00_get_fc_host_stats
,
3340 .reset_fc_host_stats
= qla2x00_reset_host_stats
,
3342 .bsg_request
= qla24xx_bsg_request
,
3343 .bsg_timeout
= qla24xx_bsg_timeout
,
3347 qla2x00_get_host_supported_speeds(scsi_qla_host_t
*vha
, uint speeds
)
3349 uint supported_speeds
= FC_PORTSPEED_UNKNOWN
;
3351 if (speeds
& FDMI_PORT_SPEED_64GB
)
3352 supported_speeds
|= FC_PORTSPEED_64GBIT
;
3353 if (speeds
& FDMI_PORT_SPEED_32GB
)
3354 supported_speeds
|= FC_PORTSPEED_32GBIT
;
3355 if (speeds
& FDMI_PORT_SPEED_16GB
)
3356 supported_speeds
|= FC_PORTSPEED_16GBIT
;
3357 if (speeds
& FDMI_PORT_SPEED_8GB
)
3358 supported_speeds
|= FC_PORTSPEED_8GBIT
;
3359 if (speeds
& FDMI_PORT_SPEED_4GB
)
3360 supported_speeds
|= FC_PORTSPEED_4GBIT
;
3361 if (speeds
& FDMI_PORT_SPEED_2GB
)
3362 supported_speeds
|= FC_PORTSPEED_2GBIT
;
3363 if (speeds
& FDMI_PORT_SPEED_1GB
)
3364 supported_speeds
|= FC_PORTSPEED_1GBIT
;
3366 return supported_speeds
;
3370 qla2x00_init_host_attr(scsi_qla_host_t
*vha
)
3372 struct qla_hw_data
*ha
= vha
->hw
;
3373 u32 speeds
= 0, fdmi_speed
= 0;
3375 fc_host_dev_loss_tmo(vha
->host
) = ha
->port_down_retry_count
;
3376 fc_host_node_name(vha
->host
) = wwn_to_u64(vha
->node_name
);
3377 fc_host_port_name(vha
->host
) = wwn_to_u64(vha
->port_name
);
3378 fc_host_supported_classes(vha
->host
) = ha
->base_qpair
->enable_class_2
?
3379 (FC_COS_CLASS2
|FC_COS_CLASS3
) : FC_COS_CLASS3
;
3380 fc_host_max_npiv_vports(vha
->host
) = ha
->max_npiv_vports
;
3381 fc_host_npiv_vports_inuse(vha
->host
) = ha
->cur_vport_count
;
3383 fdmi_speed
= qla25xx_fdmi_port_speed_capability(ha
);
3384 speeds
= qla2x00_get_host_supported_speeds(vha
, fdmi_speed
);
3386 fc_host_supported_speeds(vha
->host
) = speeds
;