2 * QLogic Fibre Channel HBA Driver
3 * Copyright (c) 2003-2014 QLogic Corporation
5 * See LICENSE.qla2xxx for copyright and licensing details.
8 #include "qla_target.h"
10 #include <linux/kthread.h>
11 #include <linux/vmalloc.h>
12 #include <linux/slab.h>
13 #include <linux/delay.h>
15 static int qla24xx_vport_disable(struct fc_vport
*, bool);
17 /* SYSFS attributes --------------------------------------------------------- */
20 qla2x00_sysfs_read_fw_dump(struct file
*filp
, struct kobject
*kobj
,
21 struct bin_attribute
*bin_attr
,
22 char *buf
, loff_t off
, size_t count
)
24 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
25 struct device
, kobj
)));
26 struct qla_hw_data
*ha
= vha
->hw
;
29 if (!(ha
->fw_dump_reading
|| ha
->mctp_dump_reading
))
32 if (IS_P3P_TYPE(ha
)) {
33 if (off
< ha
->md_template_size
) {
34 rval
= memory_read_from_buffer(buf
, count
,
35 &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 return memory_read_from_buffer(buf
, count
, &off
, ha
->mctp_dump
,
45 else if (ha
->fw_dump_reading
)
46 return memory_read_from_buffer(buf
, count
, &off
, ha
->fw_dump
,
53 qla2x00_sysfs_write_fw_dump(struct file
*filp
, struct kobject
*kobj
,
54 struct bin_attribute
*bin_attr
,
55 char *buf
, loff_t off
, size_t count
)
57 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
58 struct device
, kobj
)));
59 struct qla_hw_data
*ha
= vha
->hw
;
65 reading
= simple_strtol(buf
, NULL
, 10);
68 if (!ha
->fw_dump_reading
)
71 ql_log(ql_log_info
, vha
, 0x705d,
72 "Firmware dump cleared on (%ld).\n", vha
->host_no
);
74 if (IS_P3P_TYPE(ha
)) {
78 ha
->fw_dump_reading
= 0;
82 if (ha
->fw_dumped
&& !ha
->fw_dump_reading
) {
83 ha
->fw_dump_reading
= 1;
85 ql_log(ql_log_info
, vha
, 0x705e,
86 "Raw firmware dump ready for read on (%ld).\n",
91 qla2x00_alloc_fw_dump(vha
);
96 qla82xx_set_reset_owner(vha
);
97 qla82xx_idc_unlock(ha
);
98 } else if (IS_QLA8044(ha
)) {
100 qla82xx_set_reset_owner(vha
);
101 qla8044_idc_unlock(ha
);
103 qla2x00_system_error(vha
);
106 if (IS_P3P_TYPE(ha
)) {
107 if (ha
->md_tmplt_hdr
)
108 ql_dbg(ql_dbg_user
, vha
, 0x705b,
109 "MiniDump supported with this firmware.\n");
111 ql_dbg(ql_dbg_user
, vha
, 0x709d,
112 "MiniDump not supported with this firmware.\n");
117 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
120 if (!ha
->mctp_dump_reading
)
122 ql_log(ql_log_info
, vha
, 0x70c1,
123 "MCTP dump cleared on (%ld).\n", vha
->host_no
);
124 ha
->mctp_dump_reading
= 0;
128 if (ha
->mctp_dumped
&& !ha
->mctp_dump_reading
) {
129 ha
->mctp_dump_reading
= 1;
130 ql_log(ql_log_info
, vha
, 0x70c2,
131 "Raw mctp dump ready for read on (%ld).\n",
139 static struct bin_attribute sysfs_fw_dump_attr
= {
142 .mode
= S_IRUSR
| S_IWUSR
,
145 .read
= qla2x00_sysfs_read_fw_dump
,
146 .write
= qla2x00_sysfs_write_fw_dump
,
150 qla2x00_sysfs_read_nvram(struct file
*filp
, struct kobject
*kobj
,
151 struct bin_attribute
*bin_attr
,
152 char *buf
, loff_t off
, size_t count
)
154 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
155 struct device
, kobj
)));
156 struct qla_hw_data
*ha
= vha
->hw
;
158 if (!capable(CAP_SYS_ADMIN
))
161 if (IS_NOCACHE_VPD_TYPE(ha
))
162 ha
->isp_ops
->read_optrom(vha
, ha
->nvram
, ha
->flt_region_nvram
<< 2,
164 return memory_read_from_buffer(buf
, count
, &off
, ha
->nvram
,
169 qla2x00_sysfs_write_nvram(struct file
*filp
, struct kobject
*kobj
,
170 struct bin_attribute
*bin_attr
,
171 char *buf
, loff_t off
, size_t count
)
173 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
174 struct device
, kobj
)));
175 struct qla_hw_data
*ha
= vha
->hw
;
178 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
!= ha
->nvram_size
||
179 !ha
->isp_ops
->write_nvram
)
182 /* Checksum NVRAM. */
183 if (IS_FWI2_CAPABLE(ha
)) {
187 iter
= (uint32_t *)buf
;
189 for (cnt
= 0; cnt
< ((count
>> 2) - 1); cnt
++, iter
++)
190 chksum
+= le32_to_cpu(*iter
);
191 chksum
= ~chksum
+ 1;
192 *iter
= cpu_to_le32(chksum
);
197 iter
= (uint8_t *)buf
;
199 for (cnt
= 0; cnt
< count
- 1; cnt
++)
201 chksum
= ~chksum
+ 1;
205 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
) {
206 ql_log(ql_log_warn
, vha
, 0x705f,
207 "HBA not online, failing NVRAM update.\n");
212 ha
->isp_ops
->write_nvram(vha
, (uint8_t *)buf
, ha
->nvram_base
, count
);
213 ha
->isp_ops
->read_nvram(vha
, (uint8_t *)ha
->nvram
, ha
->nvram_base
,
216 ql_dbg(ql_dbg_user
, vha
, 0x7060,
217 "Setting ISP_ABORT_NEEDED\n");
218 /* NVRAM settings take effect immediately. */
219 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
220 qla2xxx_wake_dpc(vha
);
221 qla2x00_wait_for_chip_reset(vha
);
226 static struct bin_attribute sysfs_nvram_attr
= {
229 .mode
= S_IRUSR
| S_IWUSR
,
232 .read
= qla2x00_sysfs_read_nvram
,
233 .write
= qla2x00_sysfs_write_nvram
,
237 qla2x00_sysfs_read_optrom(struct file
*filp
, struct kobject
*kobj
,
238 struct bin_attribute
*bin_attr
,
239 char *buf
, loff_t off
, size_t count
)
241 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
242 struct device
, kobj
)));
243 struct qla_hw_data
*ha
= vha
->hw
;
246 mutex_lock(&ha
->optrom_mutex
);
248 if (ha
->optrom_state
!= QLA_SREADING
)
251 rval
= memory_read_from_buffer(buf
, count
, &off
, ha
->optrom_buffer
,
252 ha
->optrom_region_size
);
255 mutex_unlock(&ha
->optrom_mutex
);
261 qla2x00_sysfs_write_optrom(struct file
*filp
, struct kobject
*kobj
,
262 struct bin_attribute
*bin_attr
,
263 char *buf
, loff_t off
, size_t count
)
265 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
266 struct device
, kobj
)));
267 struct qla_hw_data
*ha
= vha
->hw
;
269 mutex_lock(&ha
->optrom_mutex
);
271 if (ha
->optrom_state
!= QLA_SWRITING
) {
272 mutex_unlock(&ha
->optrom_mutex
);
275 if (off
> ha
->optrom_region_size
) {
276 mutex_unlock(&ha
->optrom_mutex
);
279 if (off
+ count
> ha
->optrom_region_size
)
280 count
= ha
->optrom_region_size
- off
;
282 memcpy(&ha
->optrom_buffer
[off
], buf
, count
);
283 mutex_unlock(&ha
->optrom_mutex
);
288 static struct bin_attribute sysfs_optrom_attr
= {
291 .mode
= S_IRUSR
| S_IWUSR
,
294 .read
= qla2x00_sysfs_read_optrom
,
295 .write
= qla2x00_sysfs_write_optrom
,
299 qla2x00_sysfs_write_optrom_ctl(struct file
*filp
, struct kobject
*kobj
,
300 struct bin_attribute
*bin_attr
,
301 char *buf
, loff_t off
, size_t count
)
303 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
304 struct device
, kobj
)));
305 struct qla_hw_data
*ha
= vha
->hw
;
307 uint32_t size
= ha
->optrom_size
;
309 ssize_t rval
= count
;
314 if (unlikely(pci_channel_offline(ha
->pdev
)))
317 if (sscanf(buf
, "%d:%x:%x", &val
, &start
, &size
) < 1)
319 if (start
> ha
->optrom_size
)
321 if (size
> ha
->optrom_size
- start
)
322 size
= ha
->optrom_size
- start
;
324 mutex_lock(&ha
->optrom_mutex
);
327 if (ha
->optrom_state
!= QLA_SREADING
&&
328 ha
->optrom_state
!= QLA_SWRITING
) {
332 ha
->optrom_state
= QLA_SWAITING
;
334 ql_dbg(ql_dbg_user
, vha
, 0x7061,
335 "Freeing flash region allocation -- 0x%x bytes.\n",
336 ha
->optrom_region_size
);
338 vfree(ha
->optrom_buffer
);
339 ha
->optrom_buffer
= NULL
;
342 if (ha
->optrom_state
!= QLA_SWAITING
) {
347 ha
->optrom_region_start
= start
;
348 ha
->optrom_region_size
= start
+ size
;
350 ha
->optrom_state
= QLA_SREADING
;
351 ha
->optrom_buffer
= vmalloc(ha
->optrom_region_size
);
352 if (ha
->optrom_buffer
== NULL
) {
353 ql_log(ql_log_warn
, vha
, 0x7062,
354 "Unable to allocate memory for optrom retrieval "
355 "(%x).\n", ha
->optrom_region_size
);
357 ha
->optrom_state
= QLA_SWAITING
;
362 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
) {
363 ql_log(ql_log_warn
, vha
, 0x7063,
364 "HBA not online, failing NVRAM update.\n");
369 ql_dbg(ql_dbg_user
, vha
, 0x7064,
370 "Reading flash region -- 0x%x/0x%x.\n",
371 ha
->optrom_region_start
, ha
->optrom_region_size
);
373 memset(ha
->optrom_buffer
, 0, ha
->optrom_region_size
);
374 ha
->isp_ops
->read_optrom(vha
, ha
->optrom_buffer
,
375 ha
->optrom_region_start
, ha
->optrom_region_size
);
378 if (ha
->optrom_state
!= QLA_SWAITING
) {
384 * We need to be more restrictive on which FLASH regions are
385 * allowed to be updated via user-space. Regions accessible
386 * via this method include:
388 * ISP21xx/ISP22xx/ISP23xx type boards:
390 * 0x000000 -> 0x020000 -- Boot code.
392 * ISP2322/ISP24xx type boards:
394 * 0x000000 -> 0x07ffff -- Boot code.
395 * 0x080000 -> 0x0fffff -- Firmware.
397 * ISP25xx type boards:
399 * 0x000000 -> 0x07ffff -- Boot code.
400 * 0x080000 -> 0x0fffff -- Firmware.
401 * 0x120000 -> 0x12ffff -- VPD and HBA parameters.
404 if (ha
->optrom_size
== OPTROM_SIZE_2300
&& start
== 0)
406 else if (start
== (ha
->flt_region_boot
* 4) ||
407 start
== (ha
->flt_region_fw
* 4))
409 else if (IS_QLA24XX_TYPE(ha
) || IS_QLA25XX(ha
)
410 || IS_CNA_CAPABLE(ha
) || IS_QLA2031(ha
)
414 ql_log(ql_log_warn
, vha
, 0x7065,
415 "Invalid start region 0x%x/0x%x.\n", start
, size
);
420 ha
->optrom_region_start
= start
;
421 ha
->optrom_region_size
= start
+ size
;
423 ha
->optrom_state
= QLA_SWRITING
;
424 ha
->optrom_buffer
= vmalloc(ha
->optrom_region_size
);
425 if (ha
->optrom_buffer
== NULL
) {
426 ql_log(ql_log_warn
, vha
, 0x7066,
427 "Unable to allocate memory for optrom update "
428 "(%x)\n", ha
->optrom_region_size
);
430 ha
->optrom_state
= QLA_SWAITING
;
435 ql_dbg(ql_dbg_user
, vha
, 0x7067,
436 "Staging flash region write -- 0x%x/0x%x.\n",
437 ha
->optrom_region_start
, ha
->optrom_region_size
);
439 memset(ha
->optrom_buffer
, 0, ha
->optrom_region_size
);
442 if (ha
->optrom_state
!= QLA_SWRITING
) {
447 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
) {
448 ql_log(ql_log_warn
, vha
, 0x7068,
449 "HBA not online, failing flash update.\n");
454 ql_dbg(ql_dbg_user
, vha
, 0x7069,
455 "Writing flash region -- 0x%x/0x%x.\n",
456 ha
->optrom_region_start
, ha
->optrom_region_size
);
458 ha
->isp_ops
->write_optrom(vha
, ha
->optrom_buffer
,
459 ha
->optrom_region_start
, ha
->optrom_region_size
);
466 mutex_unlock(&ha
->optrom_mutex
);
470 static struct bin_attribute sysfs_optrom_ctl_attr
= {
472 .name
= "optrom_ctl",
476 .write
= qla2x00_sysfs_write_optrom_ctl
,
480 qla2x00_sysfs_read_vpd(struct file
*filp
, struct kobject
*kobj
,
481 struct bin_attribute
*bin_attr
,
482 char *buf
, loff_t off
, size_t count
)
484 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
485 struct device
, kobj
)));
486 struct qla_hw_data
*ha
= vha
->hw
;
489 if (unlikely(pci_channel_offline(ha
->pdev
)))
492 if (!capable(CAP_SYS_ADMIN
))
495 if (IS_NOCACHE_VPD_TYPE(ha
)) {
496 faddr
= ha
->flt_region_vpd
<< 2;
498 if (IS_QLA27XX(ha
) &&
499 qla27xx_find_valid_image(vha
) == QLA27XX_SECONDARY_IMAGE
)
500 faddr
= ha
->flt_region_vpd_sec
<< 2;
502 ha
->isp_ops
->read_optrom(vha
, ha
->vpd
, faddr
,
505 return memory_read_from_buffer(buf
, count
, &off
, ha
->vpd
, ha
->vpd_size
);
509 qla2x00_sysfs_write_vpd(struct file
*filp
, struct kobject
*kobj
,
510 struct bin_attribute
*bin_attr
,
511 char *buf
, loff_t off
, size_t count
)
513 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
514 struct device
, kobj
)));
515 struct qla_hw_data
*ha
= vha
->hw
;
518 if (unlikely(pci_channel_offline(ha
->pdev
)))
521 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
!= ha
->vpd_size
||
522 !ha
->isp_ops
->write_nvram
)
525 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
) {
526 ql_log(ql_log_warn
, vha
, 0x706a,
527 "HBA not online, failing VPD update.\n");
532 ha
->isp_ops
->write_nvram(vha
, (uint8_t *)buf
, ha
->vpd_base
, count
);
533 ha
->isp_ops
->read_nvram(vha
, (uint8_t *)ha
->vpd
, ha
->vpd_base
, count
);
535 /* Update flash version information for 4Gb & above. */
536 if (!IS_FWI2_CAPABLE(ha
))
539 tmp_data
= vmalloc(256);
541 ql_log(ql_log_warn
, vha
, 0x706b,
542 "Unable to allocate memory for VPD information update.\n");
545 ha
->isp_ops
->get_flash_version(vha
, tmp_data
);
551 static struct bin_attribute sysfs_vpd_attr
= {
554 .mode
= S_IRUSR
| S_IWUSR
,
557 .read
= qla2x00_sysfs_read_vpd
,
558 .write
= qla2x00_sysfs_write_vpd
,
562 qla2x00_sysfs_read_sfp(struct file
*filp
, struct kobject
*kobj
,
563 struct bin_attribute
*bin_attr
,
564 char *buf
, loff_t off
, size_t count
)
566 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
567 struct device
, kobj
)));
568 struct qla_hw_data
*ha
= vha
->hw
;
569 uint16_t iter
, addr
, offset
;
572 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
!= SFP_DEV_SIZE
* 2)
578 ha
->sfp_data
= dma_pool_alloc(ha
->s_dma_pool
, GFP_KERNEL
,
581 ql_log(ql_log_warn
, vha
, 0x706c,
582 "Unable to allocate memory for SFP read-data.\n");
587 memset(ha
->sfp_data
, 0, SFP_BLOCK_SIZE
);
589 for (iter
= 0, offset
= 0; iter
< (SFP_DEV_SIZE
* 2) / SFP_BLOCK_SIZE
;
590 iter
++, offset
+= SFP_BLOCK_SIZE
) {
592 /* Skip to next device address. */
597 rval
= qla2x00_read_sfp(vha
, ha
->sfp_data_dma
, ha
->sfp_data
,
598 addr
, offset
, SFP_BLOCK_SIZE
, BIT_1
);
599 if (rval
!= QLA_SUCCESS
) {
600 ql_log(ql_log_warn
, vha
, 0x706d,
601 "Unable to read SFP data (%x/%x/%x).\n", rval
,
606 memcpy(buf
, ha
->sfp_data
, SFP_BLOCK_SIZE
);
607 buf
+= SFP_BLOCK_SIZE
;
613 static struct bin_attribute sysfs_sfp_attr
= {
616 .mode
= S_IRUSR
| S_IWUSR
,
618 .size
= SFP_DEV_SIZE
* 2,
619 .read
= qla2x00_sysfs_read_sfp
,
623 qla2x00_sysfs_write_reset(struct file
*filp
, struct kobject
*kobj
,
624 struct bin_attribute
*bin_attr
,
625 char *buf
, loff_t off
, size_t count
)
627 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
628 struct device
, kobj
)));
629 struct qla_hw_data
*ha
= vha
->hw
;
630 struct scsi_qla_host
*base_vha
= pci_get_drvdata(ha
->pdev
);
632 uint32_t idc_control
;
633 uint8_t *tmp_data
= NULL
;
637 type
= simple_strtol(buf
, NULL
, 10);
640 ql_log(ql_log_info
, vha
, 0x706e,
641 "Issuing ISP reset.\n");
643 scsi_block_requests(vha
->host
);
644 if (IS_QLA82XX(ha
)) {
645 ha
->flags
.isp82xx_no_md_cap
= 1;
646 qla82xx_idc_lock(ha
);
647 qla82xx_set_reset_owner(vha
);
648 qla82xx_idc_unlock(ha
);
649 } else if (IS_QLA8044(ha
)) {
650 qla8044_idc_lock(ha
);
651 idc_control
= qla8044_rd_reg(ha
,
652 QLA8044_IDC_DRV_CTRL
);
653 qla8044_wr_reg(ha
, QLA8044_IDC_DRV_CTRL
,
654 (idc_control
| GRACEFUL_RESET_BIT1
));
655 qla82xx_set_reset_owner(vha
);
656 qla8044_idc_unlock(ha
);
658 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
659 qla2xxx_wake_dpc(vha
);
661 qla2x00_wait_for_chip_reset(vha
);
662 scsi_unblock_requests(vha
->host
);
665 if (!IS_QLA81XX(ha
) && !IS_QLA83XX(ha
))
668 ql_log(ql_log_info
, vha
, 0x706f,
669 "Issuing MPI reset.\n");
671 if (IS_QLA83XX(ha
) || IS_QLA27XX(ha
)) {
672 uint32_t idc_control
;
674 qla83xx_idc_lock(vha
, 0);
675 __qla83xx_get_idc_control(vha
, &idc_control
);
676 idc_control
|= QLA83XX_IDC_GRACEFUL_RESET
;
677 __qla83xx_set_idc_control(vha
, idc_control
);
678 qla83xx_wr_reg(vha
, QLA83XX_IDC_DEV_STATE
,
679 QLA8XXX_DEV_NEED_RESET
);
680 qla83xx_idc_audit(vha
, IDC_AUDIT_TIMESTAMP
);
681 qla83xx_idc_unlock(vha
, 0);
684 /* Make sure FC side is not in reset */
685 qla2x00_wait_for_hba_online(vha
);
687 /* Issue MPI reset */
688 scsi_block_requests(vha
->host
);
689 if (qla81xx_restart_mpi_firmware(vha
) != QLA_SUCCESS
)
690 ql_log(ql_log_warn
, vha
, 0x7070,
691 "MPI reset failed.\n");
692 scsi_unblock_requests(vha
->host
);
696 if (!IS_P3P_TYPE(ha
) || vha
!= base_vha
) {
697 ql_log(ql_log_info
, vha
, 0x7071,
698 "FCoE ctx reset no supported.\n");
702 ql_log(ql_log_info
, vha
, 0x7072,
703 "Issuing FCoE ctx reset.\n");
704 set_bit(FCOE_CTX_RESET_NEEDED
, &vha
->dpc_flags
);
705 qla2xxx_wake_dpc(vha
);
706 qla2x00_wait_for_fcoe_ctx_reset(vha
);
711 ql_log(ql_log_info
, vha
, 0x70bc,
712 "Disabling Reset by IDC control\n");
713 qla83xx_idc_lock(vha
, 0);
714 __qla83xx_get_idc_control(vha
, &idc_control
);
715 idc_control
|= QLA83XX_IDC_RESET_DISABLED
;
716 __qla83xx_set_idc_control(vha
, idc_control
);
717 qla83xx_idc_unlock(vha
, 0);
722 ql_log(ql_log_info
, vha
, 0x70bd,
723 "Enabling Reset by IDC control\n");
724 qla83xx_idc_lock(vha
, 0);
725 __qla83xx_get_idc_control(vha
, &idc_control
);
726 idc_control
&= ~QLA83XX_IDC_RESET_DISABLED
;
727 __qla83xx_set_idc_control(vha
, idc_control
);
728 qla83xx_idc_unlock(vha
, 0);
731 ql_dbg(ql_dbg_user
, vha
, 0x70e0,
732 "Updating cache versions without reset ");
734 tmp_data
= vmalloc(256);
736 ql_log(ql_log_warn
, vha
, 0x70e1,
737 "Unable to allocate memory for VPD information update.\n");
740 ha
->isp_ops
->get_flash_version(vha
, tmp_data
);
747 static struct bin_attribute sysfs_reset_attr
= {
753 .write
= qla2x00_sysfs_write_reset
,
757 qla2x00_issue_logo(struct file
*filp
, struct kobject
*kobj
,
758 struct bin_attribute
*bin_attr
,
759 char *buf
, loff_t off
, size_t count
)
761 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
762 struct device
, kobj
)));
767 type
= simple_strtol(buf
, NULL
, 10);
769 did
.b
.domain
= (type
& 0x00ff0000) >> 16;
770 did
.b
.area
= (type
& 0x0000ff00) >> 8;
771 did
.b
.al_pa
= (type
& 0x000000ff);
773 ql_log(ql_log_info
, vha
, 0x70e3, "portid=%02x%02x%02x done\n",
774 did
.b
.domain
, did
.b
.area
, did
.b
.al_pa
);
776 ql_log(ql_log_info
, vha
, 0x70e4, "%s: %d\n", __func__
, type
);
778 rval
= qla24xx_els_dcmd_iocb(vha
, ELS_DCMD_LOGO
, did
);
782 static struct bin_attribute sysfs_issue_logo_attr
= {
784 .name
= "issue_logo",
788 .write
= qla2x00_issue_logo
,
792 qla2x00_sysfs_read_xgmac_stats(struct file
*filp
, struct kobject
*kobj
,
793 struct bin_attribute
*bin_attr
,
794 char *buf
, loff_t off
, size_t count
)
796 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
797 struct device
, kobj
)));
798 struct qla_hw_data
*ha
= vha
->hw
;
800 uint16_t actual_size
;
802 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
> XGMAC_DATA_SIZE
)
808 ha
->xgmac_data
= dma_alloc_coherent(&ha
->pdev
->dev
, XGMAC_DATA_SIZE
,
809 &ha
->xgmac_data_dma
, GFP_KERNEL
);
810 if (!ha
->xgmac_data
) {
811 ql_log(ql_log_warn
, vha
, 0x7076,
812 "Unable to allocate memory for XGMAC read-data.\n");
818 memset(ha
->xgmac_data
, 0, XGMAC_DATA_SIZE
);
820 rval
= qla2x00_get_xgmac_stats(vha
, ha
->xgmac_data_dma
,
821 XGMAC_DATA_SIZE
, &actual_size
);
822 if (rval
!= QLA_SUCCESS
) {
823 ql_log(ql_log_warn
, vha
, 0x7077,
824 "Unable to read XGMAC data (%x).\n", rval
);
828 count
= actual_size
> count
? count
: actual_size
;
829 memcpy(buf
, ha
->xgmac_data
, count
);
834 static struct bin_attribute sysfs_xgmac_stats_attr
= {
836 .name
= "xgmac_stats",
840 .read
= qla2x00_sysfs_read_xgmac_stats
,
844 qla2x00_sysfs_read_dcbx_tlv(struct file
*filp
, struct kobject
*kobj
,
845 struct bin_attribute
*bin_attr
,
846 char *buf
, loff_t off
, size_t count
)
848 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
849 struct device
, kobj
)));
850 struct qla_hw_data
*ha
= vha
->hw
;
853 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
> DCBX_TLV_DATA_SIZE
)
859 ha
->dcbx_tlv
= dma_alloc_coherent(&ha
->pdev
->dev
, DCBX_TLV_DATA_SIZE
,
860 &ha
->dcbx_tlv_dma
, GFP_KERNEL
);
862 ql_log(ql_log_warn
, vha
, 0x7078,
863 "Unable to allocate memory for DCBX TLV read-data.\n");
868 memset(ha
->dcbx_tlv
, 0, DCBX_TLV_DATA_SIZE
);
870 rval
= qla2x00_get_dcbx_params(vha
, ha
->dcbx_tlv_dma
,
872 if (rval
!= QLA_SUCCESS
) {
873 ql_log(ql_log_warn
, vha
, 0x7079,
874 "Unable to read DCBX TLV (%x).\n", rval
);
878 memcpy(buf
, ha
->dcbx_tlv
, count
);
883 static struct bin_attribute sysfs_dcbx_tlv_attr
= {
889 .read
= qla2x00_sysfs_read_dcbx_tlv
,
892 static struct sysfs_entry
{
894 struct bin_attribute
*attr
;
896 } bin_file_entries
[] = {
897 { "fw_dump", &sysfs_fw_dump_attr
, },
898 { "nvram", &sysfs_nvram_attr
, },
899 { "optrom", &sysfs_optrom_attr
, },
900 { "optrom_ctl", &sysfs_optrom_ctl_attr
, },
901 { "vpd", &sysfs_vpd_attr
, 1 },
902 { "sfp", &sysfs_sfp_attr
, 1 },
903 { "reset", &sysfs_reset_attr
, },
904 { "issue_logo", &sysfs_issue_logo_attr
, },
905 { "xgmac_stats", &sysfs_xgmac_stats_attr
, 3 },
906 { "dcbx_tlv", &sysfs_dcbx_tlv_attr
, 3 },
911 qla2x00_alloc_sysfs_attr(scsi_qla_host_t
*vha
)
913 struct Scsi_Host
*host
= vha
->host
;
914 struct sysfs_entry
*iter
;
917 for (iter
= bin_file_entries
; iter
->name
; iter
++) {
918 if (iter
->is4GBp_only
&& !IS_FWI2_CAPABLE(vha
->hw
))
920 if (iter
->is4GBp_only
== 2 && !IS_QLA25XX(vha
->hw
))
922 if (iter
->is4GBp_only
== 3 && !(IS_CNA_CAPABLE(vha
->hw
)))
925 ret
= sysfs_create_bin_file(&host
->shost_gendev
.kobj
,
928 ql_log(ql_log_warn
, vha
, 0x00f3,
929 "Unable to create sysfs %s binary attribute (%d).\n",
932 ql_dbg(ql_dbg_init
, vha
, 0x00f4,
933 "Successfully created sysfs %s binary attribure.\n",
939 qla2x00_free_sysfs_attr(scsi_qla_host_t
*vha
, bool stop_beacon
)
941 struct Scsi_Host
*host
= vha
->host
;
942 struct sysfs_entry
*iter
;
943 struct qla_hw_data
*ha
= vha
->hw
;
945 for (iter
= bin_file_entries
; iter
->name
; iter
++) {
946 if (iter
->is4GBp_only
&& !IS_FWI2_CAPABLE(ha
))
948 if (iter
->is4GBp_only
== 2 && !IS_QLA25XX(ha
))
950 if (iter
->is4GBp_only
== 3 && !(IS_CNA_CAPABLE(vha
->hw
)))
952 if (iter
->is4GBp_only
== 0x27 && !IS_QLA27XX(vha
->hw
))
955 sysfs_remove_bin_file(&host
->shost_gendev
.kobj
,
959 if (stop_beacon
&& ha
->beacon_blink_led
== 1)
960 ha
->isp_ops
->beacon_off(vha
);
963 /* Scsi_Host attributes. */
966 qla2x00_drvr_version_show(struct device
*dev
,
967 struct device_attribute
*attr
, char *buf
)
969 return scnprintf(buf
, PAGE_SIZE
, "%s\n", qla2x00_version_str
);
973 qla2x00_fw_version_show(struct device
*dev
,
974 struct device_attribute
*attr
, char *buf
)
976 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
977 struct qla_hw_data
*ha
= vha
->hw
;
980 return scnprintf(buf
, PAGE_SIZE
, "%s\n",
981 ha
->isp_ops
->fw_version_str(vha
, fw_str
, sizeof(fw_str
)));
985 qla2x00_serial_num_show(struct device
*dev
, struct device_attribute
*attr
,
988 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
989 struct qla_hw_data
*ha
= vha
->hw
;
992 if (IS_QLAFX00(vha
->hw
)) {
993 return scnprintf(buf
, PAGE_SIZE
, "%s\n",
994 vha
->hw
->mr
.serial_num
);
995 } else if (IS_FWI2_CAPABLE(ha
)) {
996 qla2xxx_get_vpd_field(vha
, "SN", buf
, PAGE_SIZE
- 1);
997 return strlen(strcat(buf
, "\n"));
1000 sn
= ((ha
->serial0
& 0x1f) << 16) | (ha
->serial2
<< 8) | ha
->serial1
;
1001 return scnprintf(buf
, PAGE_SIZE
, "%c%05d\n", 'A' + sn
/ 100000,
1006 qla2x00_isp_name_show(struct device
*dev
, struct device_attribute
*attr
,
1009 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1010 return scnprintf(buf
, PAGE_SIZE
, "ISP%04X\n", vha
->hw
->pdev
->device
);
1014 qla2x00_isp_id_show(struct device
*dev
, struct device_attribute
*attr
,
1017 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1018 struct qla_hw_data
*ha
= vha
->hw
;
1020 if (IS_QLAFX00(vha
->hw
))
1021 return scnprintf(buf
, PAGE_SIZE
, "%s\n",
1022 vha
->hw
->mr
.hw_version
);
1024 return scnprintf(buf
, PAGE_SIZE
, "%04x %04x %04x %04x\n",
1025 ha
->product_id
[0], ha
->product_id
[1], ha
->product_id
[2],
1030 qla2x00_model_name_show(struct device
*dev
, struct device_attribute
*attr
,
1033 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1035 return scnprintf(buf
, PAGE_SIZE
, "%s\n", vha
->hw
->model_number
);
1039 qla2x00_model_desc_show(struct device
*dev
, struct device_attribute
*attr
,
1042 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1043 return scnprintf(buf
, PAGE_SIZE
, "%s\n", vha
->hw
->model_desc
);
1047 qla2x00_pci_info_show(struct device
*dev
, struct device_attribute
*attr
,
1050 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1053 return scnprintf(buf
, PAGE_SIZE
, "%s\n",
1054 vha
->hw
->isp_ops
->pci_info_str(vha
, pci_info
));
1058 qla2x00_link_state_show(struct device
*dev
, struct device_attribute
*attr
,
1061 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1062 struct qla_hw_data
*ha
= vha
->hw
;
1065 if (atomic_read(&vha
->loop_state
) == LOOP_DOWN
||
1066 atomic_read(&vha
->loop_state
) == LOOP_DEAD
||
1067 vha
->device_flags
& DFLG_NO_CABLE
)
1068 len
= scnprintf(buf
, PAGE_SIZE
, "Link Down\n");
1069 else if (atomic_read(&vha
->loop_state
) != LOOP_READY
||
1070 qla2x00_reset_active(vha
))
1071 len
= scnprintf(buf
, PAGE_SIZE
, "Unknown Link State\n");
1073 len
= scnprintf(buf
, PAGE_SIZE
, "Link Up - ");
1075 switch (ha
->current_topology
) {
1077 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "Loop\n");
1080 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "FL_Port\n");
1083 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
,
1084 "N_Port to N_Port\n");
1087 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "F_Port\n");
1090 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "Loop\n");
1098 qla2x00_zio_show(struct device
*dev
, struct device_attribute
*attr
,
1101 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1104 switch (vha
->hw
->zio_mode
) {
1105 case QLA_ZIO_MODE_6
:
1106 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "Mode 6\n");
1108 case QLA_ZIO_DISABLED
:
1109 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "Disabled\n");
1116 qla2x00_zio_store(struct device
*dev
, struct device_attribute
*attr
,
1117 const char *buf
, size_t count
)
1119 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1120 struct qla_hw_data
*ha
= vha
->hw
;
1124 if (!IS_ZIO_SUPPORTED(ha
))
1127 if (sscanf(buf
, "%d", &val
) != 1)
1131 zio_mode
= QLA_ZIO_MODE_6
;
1133 zio_mode
= QLA_ZIO_DISABLED
;
1135 /* Update per-hba values and queue a reset. */
1136 if (zio_mode
!= QLA_ZIO_DISABLED
|| ha
->zio_mode
!= QLA_ZIO_DISABLED
) {
1137 ha
->zio_mode
= zio_mode
;
1138 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
1144 qla2x00_zio_timer_show(struct device
*dev
, struct device_attribute
*attr
,
1147 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1149 return scnprintf(buf
, PAGE_SIZE
, "%d us\n", vha
->hw
->zio_timer
* 100);
1153 qla2x00_zio_timer_store(struct device
*dev
, struct device_attribute
*attr
,
1154 const char *buf
, size_t count
)
1156 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1160 if (sscanf(buf
, "%d", &val
) != 1)
1162 if (val
> 25500 || val
< 100)
1165 zio_timer
= (uint16_t)(val
/ 100);
1166 vha
->hw
->zio_timer
= zio_timer
;
1172 qla2x00_beacon_show(struct device
*dev
, struct device_attribute
*attr
,
1175 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1178 if (vha
->hw
->beacon_blink_led
)
1179 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "Enabled\n");
1181 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "Disabled\n");
1186 qla2x00_beacon_store(struct device
*dev
, struct device_attribute
*attr
,
1187 const char *buf
, size_t count
)
1189 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1190 struct qla_hw_data
*ha
= vha
->hw
;
1194 if (IS_QLA2100(ha
) || IS_QLA2200(ha
))
1197 if (test_bit(ABORT_ISP_ACTIVE
, &vha
->dpc_flags
)) {
1198 ql_log(ql_log_warn
, vha
, 0x707a,
1199 "Abort ISP active -- ignoring beacon request.\n");
1203 if (sscanf(buf
, "%d", &val
) != 1)
1207 rval
= ha
->isp_ops
->beacon_on(vha
);
1209 rval
= ha
->isp_ops
->beacon_off(vha
);
1211 if (rval
!= QLA_SUCCESS
)
1218 qla2x00_optrom_bios_version_show(struct device
*dev
,
1219 struct device_attribute
*attr
, char *buf
)
1221 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1222 struct qla_hw_data
*ha
= vha
->hw
;
1223 return scnprintf(buf
, PAGE_SIZE
, "%d.%02d\n", ha
->bios_revision
[1],
1224 ha
->bios_revision
[0]);
1228 qla2x00_optrom_efi_version_show(struct device
*dev
,
1229 struct device_attribute
*attr
, char *buf
)
1231 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1232 struct qla_hw_data
*ha
= vha
->hw
;
1233 return scnprintf(buf
, PAGE_SIZE
, "%d.%02d\n", ha
->efi_revision
[1],
1234 ha
->efi_revision
[0]);
1238 qla2x00_optrom_fcode_version_show(struct device
*dev
,
1239 struct device_attribute
*attr
, char *buf
)
1241 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1242 struct qla_hw_data
*ha
= vha
->hw
;
1243 return scnprintf(buf
, PAGE_SIZE
, "%d.%02d\n", ha
->fcode_revision
[1],
1244 ha
->fcode_revision
[0]);
1248 qla2x00_optrom_fw_version_show(struct device
*dev
,
1249 struct device_attribute
*attr
, char *buf
)
1251 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1252 struct qla_hw_data
*ha
= vha
->hw
;
1253 return scnprintf(buf
, PAGE_SIZE
, "%d.%02d.%02d %d\n",
1254 ha
->fw_revision
[0], ha
->fw_revision
[1], ha
->fw_revision
[2],
1255 ha
->fw_revision
[3]);
1259 qla2x00_optrom_gold_fw_version_show(struct device
*dev
,
1260 struct device_attribute
*attr
, char *buf
)
1262 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1263 struct qla_hw_data
*ha
= vha
->hw
;
1265 if (!IS_QLA81XX(ha
) && !IS_QLA83XX(ha
) && !IS_QLA27XX(ha
))
1266 return scnprintf(buf
, PAGE_SIZE
, "\n");
1268 return scnprintf(buf
, PAGE_SIZE
, "%d.%02d.%02d (%d)\n",
1269 ha
->gold_fw_version
[0], ha
->gold_fw_version
[1],
1270 ha
->gold_fw_version
[2], ha
->gold_fw_version
[3]);
1274 qla2x00_total_isp_aborts_show(struct device
*dev
,
1275 struct device_attribute
*attr
, char *buf
)
1277 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1278 return scnprintf(buf
, PAGE_SIZE
, "%d\n",
1279 vha
->qla_stats
.total_isp_aborts
);
1283 qla24xx_84xx_fw_version_show(struct device
*dev
,
1284 struct device_attribute
*attr
, char *buf
)
1286 int rval
= QLA_SUCCESS
;
1287 uint16_t status
[2] = {0, 0};
1288 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1289 struct qla_hw_data
*ha
= vha
->hw
;
1291 if (!IS_QLA84XX(ha
))
1292 return scnprintf(buf
, PAGE_SIZE
, "\n");
1294 if (ha
->cs84xx
->op_fw_version
== 0)
1295 rval
= qla84xx_verify_chip(vha
, status
);
1297 if ((rval
== QLA_SUCCESS
) && (status
[0] == 0))
1298 return scnprintf(buf
, PAGE_SIZE
, "%u\n",
1299 (uint32_t)ha
->cs84xx
->op_fw_version
);
1301 return scnprintf(buf
, PAGE_SIZE
, "\n");
1305 qla2x00_mpi_version_show(struct device
*dev
, struct device_attribute
*attr
,
1308 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1309 struct qla_hw_data
*ha
= vha
->hw
;
1311 if (!IS_QLA81XX(ha
) && !IS_QLA8031(ha
) && !IS_QLA8044(ha
) &&
1313 return scnprintf(buf
, PAGE_SIZE
, "\n");
1315 return scnprintf(buf
, PAGE_SIZE
, "%d.%02d.%02d (%x)\n",
1316 ha
->mpi_version
[0], ha
->mpi_version
[1], ha
->mpi_version
[2],
1317 ha
->mpi_capabilities
);
1321 qla2x00_phy_version_show(struct device
*dev
, struct device_attribute
*attr
,
1324 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1325 struct qla_hw_data
*ha
= vha
->hw
;
1327 if (!IS_QLA81XX(ha
) && !IS_QLA8031(ha
))
1328 return scnprintf(buf
, PAGE_SIZE
, "\n");
1330 return scnprintf(buf
, PAGE_SIZE
, "%d.%02d.%02d\n",
1331 ha
->phy_version
[0], ha
->phy_version
[1], ha
->phy_version
[2]);
1335 qla2x00_flash_block_size_show(struct device
*dev
,
1336 struct device_attribute
*attr
, char *buf
)
1338 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1339 struct qla_hw_data
*ha
= vha
->hw
;
1341 return scnprintf(buf
, PAGE_SIZE
, "0x%x\n", ha
->fdt_block_size
);
1345 qla2x00_vlan_id_show(struct device
*dev
, struct device_attribute
*attr
,
1348 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1350 if (!IS_CNA_CAPABLE(vha
->hw
))
1351 return scnprintf(buf
, PAGE_SIZE
, "\n");
1353 return scnprintf(buf
, PAGE_SIZE
, "%d\n", vha
->fcoe_vlan_id
);
1357 qla2x00_vn_port_mac_address_show(struct device
*dev
,
1358 struct device_attribute
*attr
, char *buf
)
1360 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1362 if (!IS_CNA_CAPABLE(vha
->hw
))
1363 return scnprintf(buf
, PAGE_SIZE
, "\n");
1365 return scnprintf(buf
, PAGE_SIZE
, "%pMR\n", vha
->fcoe_vn_port_mac
);
1369 qla2x00_fabric_param_show(struct device
*dev
, struct device_attribute
*attr
,
1372 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1374 return scnprintf(buf
, PAGE_SIZE
, "%d\n", vha
->hw
->switch_cap
);
1378 qla2x00_thermal_temp_show(struct device
*dev
,
1379 struct device_attribute
*attr
, char *buf
)
1381 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1384 if (qla2x00_reset_active(vha
)) {
1385 ql_log(ql_log_warn
, vha
, 0x70dc, "ISP reset active.\n");
1389 if (vha
->hw
->flags
.eeh_busy
) {
1390 ql_log(ql_log_warn
, vha
, 0x70dd, "PCI EEH busy.\n");
1394 if (qla2x00_get_thermal_temp(vha
, &temp
) == QLA_SUCCESS
)
1395 return scnprintf(buf
, PAGE_SIZE
, "%d\n", temp
);
1398 return scnprintf(buf
, PAGE_SIZE
, "\n");
1402 qla2x00_fw_state_show(struct device
*dev
, struct device_attribute
*attr
,
1405 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1406 int rval
= QLA_FUNCTION_FAILED
;
1410 if (IS_QLAFX00(vha
->hw
)) {
1411 pstate
= qlafx00_fw_state_show(dev
, attr
, buf
);
1412 return scnprintf(buf
, PAGE_SIZE
, "0x%x\n", pstate
);
1415 if (qla2x00_reset_active(vha
))
1416 ql_log(ql_log_warn
, vha
, 0x707c,
1417 "ISP reset active.\n");
1418 else if (!vha
->hw
->flags
.eeh_busy
)
1419 rval
= qla2x00_get_firmware_state(vha
, state
);
1420 if (rval
!= QLA_SUCCESS
)
1421 memset(state
, -1, sizeof(state
));
1423 return scnprintf(buf
, PAGE_SIZE
, "0x%x 0x%x 0x%x 0x%x 0x%x 0x%x\n",
1424 state
[0], state
[1], state
[2], state
[3], state
[4], state
[5]);
1428 qla2x00_diag_requests_show(struct device
*dev
,
1429 struct device_attribute
*attr
, char *buf
)
1431 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1433 if (!IS_BIDI_CAPABLE(vha
->hw
))
1434 return scnprintf(buf
, PAGE_SIZE
, "\n");
1436 return scnprintf(buf
, PAGE_SIZE
, "%llu\n", vha
->bidi_stats
.io_count
);
1440 qla2x00_diag_megabytes_show(struct device
*dev
,
1441 struct device_attribute
*attr
, char *buf
)
1443 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1445 if (!IS_BIDI_CAPABLE(vha
->hw
))
1446 return scnprintf(buf
, PAGE_SIZE
, "\n");
1448 return scnprintf(buf
, PAGE_SIZE
, "%llu\n",
1449 vha
->bidi_stats
.transfer_bytes
>> 20);
1453 qla2x00_fw_dump_size_show(struct device
*dev
, struct device_attribute
*attr
,
1456 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1457 struct qla_hw_data
*ha
= vha
->hw
;
1462 else if (IS_P3P_TYPE(ha
))
1463 size
= ha
->md_template_size
+ ha
->md_dump_size
;
1465 size
= ha
->fw_dump_len
;
1467 return scnprintf(buf
, PAGE_SIZE
, "%d\n", size
);
1471 qla2x00_allow_cna_fw_dump_show(struct device
*dev
,
1472 struct device_attribute
*attr
, char *buf
)
1474 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1476 if (!IS_P3P_TYPE(vha
->hw
))
1477 return scnprintf(buf
, PAGE_SIZE
, "\n");
1479 return scnprintf(buf
, PAGE_SIZE
, "%s\n",
1480 vha
->hw
->allow_cna_fw_dump
? "true" : "false");
1484 qla2x00_allow_cna_fw_dump_store(struct device
*dev
,
1485 struct device_attribute
*attr
, const char *buf
, size_t count
)
1487 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1490 if (!IS_P3P_TYPE(vha
->hw
))
1493 if (sscanf(buf
, "%d", &val
) != 1)
1496 vha
->hw
->allow_cna_fw_dump
= val
!= 0;
1502 qla2x00_pep_version_show(struct device
*dev
, struct device_attribute
*attr
,
1505 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1506 struct qla_hw_data
*ha
= vha
->hw
;
1508 if (!IS_QLA27XX(ha
))
1509 return scnprintf(buf
, PAGE_SIZE
, "\n");
1511 return scnprintf(buf
, PAGE_SIZE
, "%d.%02d.%02d\n",
1512 ha
->pep_version
[0], ha
->pep_version
[1], ha
->pep_version
[2]);
1515 static DEVICE_ATTR(driver_version
, S_IRUGO
, qla2x00_drvr_version_show
, NULL
);
1516 static DEVICE_ATTR(fw_version
, S_IRUGO
, qla2x00_fw_version_show
, NULL
);
1517 static DEVICE_ATTR(serial_num
, S_IRUGO
, qla2x00_serial_num_show
, NULL
);
1518 static DEVICE_ATTR(isp_name
, S_IRUGO
, qla2x00_isp_name_show
, NULL
);
1519 static DEVICE_ATTR(isp_id
, S_IRUGO
, qla2x00_isp_id_show
, NULL
);
1520 static DEVICE_ATTR(model_name
, S_IRUGO
, qla2x00_model_name_show
, NULL
);
1521 static DEVICE_ATTR(model_desc
, S_IRUGO
, qla2x00_model_desc_show
, NULL
);
1522 static DEVICE_ATTR(pci_info
, S_IRUGO
, qla2x00_pci_info_show
, NULL
);
1523 static DEVICE_ATTR(link_state
, S_IRUGO
, qla2x00_link_state_show
, NULL
);
1524 static DEVICE_ATTR(zio
, S_IRUGO
| S_IWUSR
, qla2x00_zio_show
, qla2x00_zio_store
);
1525 static DEVICE_ATTR(zio_timer
, S_IRUGO
| S_IWUSR
, qla2x00_zio_timer_show
,
1526 qla2x00_zio_timer_store
);
1527 static DEVICE_ATTR(beacon
, S_IRUGO
| S_IWUSR
, qla2x00_beacon_show
,
1528 qla2x00_beacon_store
);
1529 static DEVICE_ATTR(optrom_bios_version
, S_IRUGO
,
1530 qla2x00_optrom_bios_version_show
, NULL
);
1531 static DEVICE_ATTR(optrom_efi_version
, S_IRUGO
,
1532 qla2x00_optrom_efi_version_show
, NULL
);
1533 static DEVICE_ATTR(optrom_fcode_version
, S_IRUGO
,
1534 qla2x00_optrom_fcode_version_show
, NULL
);
1535 static DEVICE_ATTR(optrom_fw_version
, S_IRUGO
, qla2x00_optrom_fw_version_show
,
1537 static DEVICE_ATTR(optrom_gold_fw_version
, S_IRUGO
,
1538 qla2x00_optrom_gold_fw_version_show
, NULL
);
1539 static DEVICE_ATTR(84xx_fw_version
, S_IRUGO
, qla24xx_84xx_fw_version_show
,
1541 static DEVICE_ATTR(total_isp_aborts
, S_IRUGO
, qla2x00_total_isp_aborts_show
,
1543 static DEVICE_ATTR(mpi_version
, S_IRUGO
, qla2x00_mpi_version_show
, NULL
);
1544 static DEVICE_ATTR(phy_version
, S_IRUGO
, qla2x00_phy_version_show
, NULL
);
1545 static DEVICE_ATTR(flash_block_size
, S_IRUGO
, qla2x00_flash_block_size_show
,
1547 static DEVICE_ATTR(vlan_id
, S_IRUGO
, qla2x00_vlan_id_show
, NULL
);
1548 static DEVICE_ATTR(vn_port_mac_address
, S_IRUGO
,
1549 qla2x00_vn_port_mac_address_show
, NULL
);
1550 static DEVICE_ATTR(fabric_param
, S_IRUGO
, qla2x00_fabric_param_show
, NULL
);
1551 static DEVICE_ATTR(fw_state
, S_IRUGO
, qla2x00_fw_state_show
, NULL
);
1552 static DEVICE_ATTR(thermal_temp
, S_IRUGO
, qla2x00_thermal_temp_show
, NULL
);
1553 static DEVICE_ATTR(diag_requests
, S_IRUGO
, qla2x00_diag_requests_show
, NULL
);
1554 static DEVICE_ATTR(diag_megabytes
, S_IRUGO
, qla2x00_diag_megabytes_show
, NULL
);
1555 static DEVICE_ATTR(fw_dump_size
, S_IRUGO
, qla2x00_fw_dump_size_show
, NULL
);
1556 static DEVICE_ATTR(allow_cna_fw_dump
, S_IRUGO
| S_IWUSR
,
1557 qla2x00_allow_cna_fw_dump_show
,
1558 qla2x00_allow_cna_fw_dump_store
);
1559 static DEVICE_ATTR(pep_version
, S_IRUGO
, qla2x00_pep_version_show
, NULL
);
1561 struct device_attribute
*qla2x00_host_attrs
[] = {
1562 &dev_attr_driver_version
,
1563 &dev_attr_fw_version
,
1564 &dev_attr_serial_num
,
1567 &dev_attr_model_name
,
1568 &dev_attr_model_desc
,
1570 &dev_attr_link_state
,
1572 &dev_attr_zio_timer
,
1574 &dev_attr_optrom_bios_version
,
1575 &dev_attr_optrom_efi_version
,
1576 &dev_attr_optrom_fcode_version
,
1577 &dev_attr_optrom_fw_version
,
1578 &dev_attr_84xx_fw_version
,
1579 &dev_attr_total_isp_aborts
,
1580 &dev_attr_mpi_version
,
1581 &dev_attr_phy_version
,
1582 &dev_attr_flash_block_size
,
1584 &dev_attr_vn_port_mac_address
,
1585 &dev_attr_fabric_param
,
1587 &dev_attr_optrom_gold_fw_version
,
1588 &dev_attr_thermal_temp
,
1589 &dev_attr_diag_requests
,
1590 &dev_attr_diag_megabytes
,
1591 &dev_attr_fw_dump_size
,
1592 &dev_attr_allow_cna_fw_dump
,
1593 &dev_attr_pep_version
,
1597 /* Host attributes. */
1600 qla2x00_get_host_port_id(struct Scsi_Host
*shost
)
1602 scsi_qla_host_t
*vha
= shost_priv(shost
);
1604 fc_host_port_id(shost
) = vha
->d_id
.b
.domain
<< 16 |
1605 vha
->d_id
.b
.area
<< 8 | vha
->d_id
.b
.al_pa
;
1609 qla2x00_get_host_speed(struct Scsi_Host
*shost
)
1611 struct qla_hw_data
*ha
= ((struct scsi_qla_host
*)
1612 (shost_priv(shost
)))->hw
;
1613 u32 speed
= FC_PORTSPEED_UNKNOWN
;
1615 if (IS_QLAFX00(ha
)) {
1616 qlafx00_get_host_speed(shost
);
1620 switch (ha
->link_data_rate
) {
1621 case PORT_SPEED_1GB
:
1622 speed
= FC_PORTSPEED_1GBIT
;
1624 case PORT_SPEED_2GB
:
1625 speed
= FC_PORTSPEED_2GBIT
;
1627 case PORT_SPEED_4GB
:
1628 speed
= FC_PORTSPEED_4GBIT
;
1630 case PORT_SPEED_8GB
:
1631 speed
= FC_PORTSPEED_8GBIT
;
1633 case PORT_SPEED_10GB
:
1634 speed
= FC_PORTSPEED_10GBIT
;
1636 case PORT_SPEED_16GB
:
1637 speed
= FC_PORTSPEED_16GBIT
;
1639 case PORT_SPEED_32GB
:
1640 speed
= FC_PORTSPEED_32GBIT
;
1643 fc_host_speed(shost
) = speed
;
1647 qla2x00_get_host_port_type(struct Scsi_Host
*shost
)
1649 scsi_qla_host_t
*vha
= shost_priv(shost
);
1650 uint32_t port_type
= FC_PORTTYPE_UNKNOWN
;
1653 fc_host_port_type(shost
) = FC_PORTTYPE_NPIV
;
1656 switch (vha
->hw
->current_topology
) {
1658 port_type
= FC_PORTTYPE_LPORT
;
1661 port_type
= FC_PORTTYPE_NLPORT
;
1664 port_type
= FC_PORTTYPE_PTP
;
1667 port_type
= FC_PORTTYPE_NPORT
;
1670 fc_host_port_type(shost
) = port_type
;
1674 qla2x00_get_starget_node_name(struct scsi_target
*starget
)
1676 struct Scsi_Host
*host
= dev_to_shost(starget
->dev
.parent
);
1677 scsi_qla_host_t
*vha
= shost_priv(host
);
1681 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
1682 if (fcport
->rport
&&
1683 starget
->id
== fcport
->rport
->scsi_target_id
) {
1684 node_name
= wwn_to_u64(fcport
->node_name
);
1689 fc_starget_node_name(starget
) = node_name
;
1693 qla2x00_get_starget_port_name(struct scsi_target
*starget
)
1695 struct Scsi_Host
*host
= dev_to_shost(starget
->dev
.parent
);
1696 scsi_qla_host_t
*vha
= shost_priv(host
);
1700 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
1701 if (fcport
->rport
&&
1702 starget
->id
== fcport
->rport
->scsi_target_id
) {
1703 port_name
= wwn_to_u64(fcport
->port_name
);
1708 fc_starget_port_name(starget
) = port_name
;
1712 qla2x00_get_starget_port_id(struct scsi_target
*starget
)
1714 struct Scsi_Host
*host
= dev_to_shost(starget
->dev
.parent
);
1715 scsi_qla_host_t
*vha
= shost_priv(host
);
1717 uint32_t port_id
= ~0U;
1719 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
1720 if (fcport
->rport
&&
1721 starget
->id
== fcport
->rport
->scsi_target_id
) {
1722 port_id
= fcport
->d_id
.b
.domain
<< 16 |
1723 fcport
->d_id
.b
.area
<< 8 | fcport
->d_id
.b
.al_pa
;
1728 fc_starget_port_id(starget
) = port_id
;
1732 qla2x00_set_rport_loss_tmo(struct fc_rport
*rport
, uint32_t timeout
)
1735 rport
->dev_loss_tmo
= timeout
;
1737 rport
->dev_loss_tmo
= 1;
1741 qla2x00_dev_loss_tmo_callbk(struct fc_rport
*rport
)
1743 struct Scsi_Host
*host
= rport_to_shost(rport
);
1744 fc_port_t
*fcport
= *(fc_port_t
**)rport
->dd_data
;
1745 unsigned long flags
;
1750 /* Now that the rport has been deleted, set the fcport state to
1752 qla2x00_set_fcport_state(fcport
, FCS_DEVICE_DEAD
);
1755 * Transport has effectively 'deleted' the rport, clear
1756 * all local references.
1758 spin_lock_irqsave(host
->host_lock
, flags
);
1759 fcport
->rport
= fcport
->drport
= NULL
;
1760 *((fc_port_t
**)rport
->dd_data
) = NULL
;
1761 spin_unlock_irqrestore(host
->host_lock
, flags
);
1763 if (test_bit(ABORT_ISP_ACTIVE
, &fcport
->vha
->dpc_flags
))
1766 if (unlikely(pci_channel_offline(fcport
->vha
->hw
->pdev
))) {
1767 qla2x00_abort_all_cmds(fcport
->vha
, DID_NO_CONNECT
<< 16);
1773 qla2x00_terminate_rport_io(struct fc_rport
*rport
)
1775 fc_port_t
*fcport
= *(fc_port_t
**)rport
->dd_data
;
1780 if (test_bit(UNLOADING
, &fcport
->vha
->dpc_flags
))
1783 if (test_bit(ABORT_ISP_ACTIVE
, &fcport
->vha
->dpc_flags
))
1786 if (unlikely(pci_channel_offline(fcport
->vha
->hw
->pdev
))) {
1787 qla2x00_abort_all_cmds(fcport
->vha
, DID_NO_CONNECT
<< 16);
1791 * At this point all fcport's software-states are cleared. Perform any
1792 * final cleanup of firmware resources (PCBs and XCBs).
1794 if (fcport
->loop_id
!= FC_NO_LOOP_ID
) {
1795 if (IS_FWI2_CAPABLE(fcport
->vha
->hw
))
1796 fcport
->vha
->hw
->isp_ops
->fabric_logout(fcport
->vha
,
1797 fcport
->loop_id
, fcport
->d_id
.b
.domain
,
1798 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
);
1800 qla2x00_port_logout(fcport
->vha
, fcport
);
1805 qla2x00_issue_lip(struct Scsi_Host
*shost
)
1807 scsi_qla_host_t
*vha
= shost_priv(shost
);
1809 if (IS_QLAFX00(vha
->hw
))
1812 qla2x00_loop_reset(vha
);
1816 static struct fc_host_statistics
*
1817 qla2x00_get_fc_host_stats(struct Scsi_Host
*shost
)
1819 scsi_qla_host_t
*vha
= shost_priv(shost
);
1820 struct qla_hw_data
*ha
= vha
->hw
;
1821 struct scsi_qla_host
*base_vha
= pci_get_drvdata(ha
->pdev
);
1823 struct link_statistics
*stats
;
1824 dma_addr_t stats_dma
;
1825 struct fc_host_statistics
*p
= &vha
->fc_host_stat
;
1827 memset(p
, -1, sizeof(*p
));
1829 if (IS_QLAFX00(vha
->hw
))
1832 if (test_bit(UNLOADING
, &vha
->dpc_flags
))
1835 if (unlikely(pci_channel_offline(ha
->pdev
)))
1838 if (qla2x00_reset_active(vha
))
1841 stats
= dma_alloc_coherent(&ha
->pdev
->dev
,
1842 sizeof(*stats
), &stats_dma
, GFP_KERNEL
);
1844 ql_log(ql_log_warn
, vha
, 0x707d,
1845 "Failed to allocate memory for stats.\n");
1848 memset(stats
, 0, sizeof(*stats
));
1850 rval
= QLA_FUNCTION_FAILED
;
1851 if (IS_FWI2_CAPABLE(ha
)) {
1852 rval
= qla24xx_get_isp_stats(base_vha
, stats
, stats_dma
, 0);
1853 } else if (atomic_read(&base_vha
->loop_state
) == LOOP_READY
&&
1855 /* Must be in a 'READY' state for statistics retrieval. */
1856 rval
= qla2x00_get_link_status(base_vha
, base_vha
->loop_id
,
1860 if (rval
!= QLA_SUCCESS
)
1863 p
->link_failure_count
= stats
->link_fail_cnt
;
1864 p
->loss_of_sync_count
= stats
->loss_sync_cnt
;
1865 p
->loss_of_signal_count
= stats
->loss_sig_cnt
;
1866 p
->prim_seq_protocol_err_count
= stats
->prim_seq_err_cnt
;
1867 p
->invalid_tx_word_count
= stats
->inval_xmit_word_cnt
;
1868 p
->invalid_crc_count
= stats
->inval_crc_cnt
;
1869 if (IS_FWI2_CAPABLE(ha
)) {
1870 p
->lip_count
= stats
->lip_cnt
;
1871 p
->tx_frames
= stats
->tx_frames
;
1872 p
->rx_frames
= stats
->rx_frames
;
1873 p
->dumped_frames
= stats
->discarded_frames
;
1874 p
->nos_count
= stats
->nos_rcvd
;
1876 stats
->dropped_frames
+ stats
->discarded_frames
;
1877 p
->rx_words
= vha
->qla_stats
.input_bytes
;
1878 p
->tx_words
= vha
->qla_stats
.output_bytes
;
1880 p
->fcp_control_requests
= vha
->qla_stats
.control_requests
;
1881 p
->fcp_input_requests
= vha
->qla_stats
.input_requests
;
1882 p
->fcp_output_requests
= vha
->qla_stats
.output_requests
;
1883 p
->fcp_input_megabytes
= vha
->qla_stats
.input_bytes
>> 20;
1884 p
->fcp_output_megabytes
= vha
->qla_stats
.output_bytes
>> 20;
1885 p
->seconds_since_last_reset
=
1886 get_jiffies_64() - vha
->qla_stats
.jiffies_at_last_reset
;
1887 do_div(p
->seconds_since_last_reset
, HZ
);
1890 dma_free_coherent(&ha
->pdev
->dev
, sizeof(struct link_statistics
),
1897 qla2x00_reset_host_stats(struct Scsi_Host
*shost
)
1899 scsi_qla_host_t
*vha
= shost_priv(shost
);
1900 struct qla_hw_data
*ha
= vha
->hw
;
1901 struct scsi_qla_host
*base_vha
= pci_get_drvdata(ha
->pdev
);
1902 struct link_statistics
*stats
;
1903 dma_addr_t stats_dma
;
1905 memset(&vha
->qla_stats
, 0, sizeof(vha
->qla_stats
));
1906 memset(&vha
->fc_host_stat
, 0, sizeof(vha
->fc_host_stat
));
1908 vha
->qla_stats
.jiffies_at_last_reset
= get_jiffies_64();
1910 if (IS_FWI2_CAPABLE(ha
)) {
1911 stats
= dma_alloc_coherent(&ha
->pdev
->dev
,
1912 sizeof(*stats
), &stats_dma
, GFP_KERNEL
);
1914 ql_log(ql_log_warn
, vha
, 0x70d7,
1915 "Failed to allocate memory for stats.\n");
1919 /* reset firmware statistics */
1920 qla24xx_get_isp_stats(base_vha
, stats
, stats_dma
, BIT_0
);
1922 dma_free_coherent(&ha
->pdev
->dev
, sizeof(*stats
),
1928 qla2x00_get_host_symbolic_name(struct Scsi_Host
*shost
)
1930 scsi_qla_host_t
*vha
= shost_priv(shost
);
1932 qla2x00_get_sym_node_name(vha
, fc_host_symbolic_name(shost
),
1933 sizeof(fc_host_symbolic_name(shost
)));
1937 qla2x00_set_host_system_hostname(struct Scsi_Host
*shost
)
1939 scsi_qla_host_t
*vha
= shost_priv(shost
);
1941 set_bit(REGISTER_FDMI_NEEDED
, &vha
->dpc_flags
);
1945 qla2x00_get_host_fabric_name(struct Scsi_Host
*shost
)
1947 scsi_qla_host_t
*vha
= shost_priv(shost
);
1948 uint8_t node_name
[WWN_SIZE
] = { 0xFF, 0xFF, 0xFF, 0xFF, \
1949 0xFF, 0xFF, 0xFF, 0xFF};
1950 u64 fabric_name
= wwn_to_u64(node_name
);
1952 if (vha
->device_flags
& SWITCH_FOUND
)
1953 fabric_name
= wwn_to_u64(vha
->fabric_node_name
);
1955 fc_host_fabric_name(shost
) = fabric_name
;
1959 qla2x00_get_host_port_state(struct Scsi_Host
*shost
)
1961 scsi_qla_host_t
*vha
= shost_priv(shost
);
1962 struct scsi_qla_host
*base_vha
= pci_get_drvdata(vha
->hw
->pdev
);
1964 if (!base_vha
->flags
.online
) {
1965 fc_host_port_state(shost
) = FC_PORTSTATE_OFFLINE
;
1969 switch (atomic_read(&base_vha
->loop_state
)) {
1971 fc_host_port_state(shost
) = FC_PORTSTATE_DIAGNOSTICS
;
1974 if (test_bit(LOOP_RESYNC_NEEDED
, &base_vha
->dpc_flags
))
1975 fc_host_port_state(shost
) = FC_PORTSTATE_DIAGNOSTICS
;
1977 fc_host_port_state(shost
) = FC_PORTSTATE_LINKDOWN
;
1980 fc_host_port_state(shost
) = FC_PORTSTATE_LINKDOWN
;
1983 fc_host_port_state(shost
) = FC_PORTSTATE_ONLINE
;
1986 fc_host_port_state(shost
) = FC_PORTSTATE_UNKNOWN
;
1992 qla24xx_vport_create(struct fc_vport
*fc_vport
, bool disable
)
1996 scsi_qla_host_t
*base_vha
= shost_priv(fc_vport
->shost
);
1997 scsi_qla_host_t
*vha
= NULL
;
1998 struct qla_hw_data
*ha
= base_vha
->hw
;
1999 uint16_t options
= 0;
2001 struct req_que
*req
= ha
->req_q_map
[0];
2003 ret
= qla24xx_vport_create_req_sanity_check(fc_vport
);
2005 ql_log(ql_log_warn
, vha
, 0x707e,
2006 "Vport sanity check failed, status %x\n", ret
);
2010 vha
= qla24xx_create_vhost(fc_vport
);
2012 ql_log(ql_log_warn
, vha
, 0x707f, "Vport create host failed.\n");
2013 return FC_VPORT_FAILED
;
2016 atomic_set(&vha
->vp_state
, VP_OFFLINE
);
2017 fc_vport_set_state(fc_vport
, FC_VPORT_DISABLED
);
2019 atomic_set(&vha
->vp_state
, VP_FAILED
);
2021 /* ready to create vport */
2022 ql_log(ql_log_info
, vha
, 0x7080,
2023 "VP entry id %d assigned.\n", vha
->vp_idx
);
2025 /* initialized vport states */
2026 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
2027 vha
->vp_err_state
= VP_ERR_PORTDWN
;
2028 vha
->vp_prev_err_state
= VP_ERR_UNKWN
;
2029 /* Check if physical ha port is Up */
2030 if (atomic_read(&base_vha
->loop_state
) == LOOP_DOWN
||
2031 atomic_read(&base_vha
->loop_state
) == LOOP_DEAD
) {
2032 /* Don't retry or attempt login of this virtual port */
2033 ql_dbg(ql_dbg_user
, vha
, 0x7081,
2034 "Vport loop state is not UP.\n");
2035 atomic_set(&vha
->loop_state
, LOOP_DEAD
);
2037 fc_vport_set_state(fc_vport
, FC_VPORT_LINKDOWN
);
2040 if (IS_T10_PI_CAPABLE(ha
) && ql2xenabledif
) {
2041 if (ha
->fw_attributes
& BIT_4
) {
2042 int prot
= 0, guard
;
2043 vha
->flags
.difdix_supported
= 1;
2044 ql_dbg(ql_dbg_user
, vha
, 0x7082,
2045 "Registered for DIF/DIX type 1 and 3 protection.\n");
2046 if (ql2xenabledif
== 1)
2047 prot
= SHOST_DIX_TYPE0_PROTECTION
;
2048 scsi_host_set_prot(vha
->host
,
2049 prot
| SHOST_DIF_TYPE1_PROTECTION
2050 | SHOST_DIF_TYPE2_PROTECTION
2051 | SHOST_DIF_TYPE3_PROTECTION
2052 | SHOST_DIX_TYPE1_PROTECTION
2053 | SHOST_DIX_TYPE2_PROTECTION
2054 | SHOST_DIX_TYPE3_PROTECTION
);
2056 guard
= SHOST_DIX_GUARD_CRC
;
2058 if (IS_PI_IPGUARD_CAPABLE(ha
) &&
2059 (ql2xenabledif
> 1 || IS_PI_DIFB_DIX0_CAPABLE(ha
)))
2060 guard
|= SHOST_DIX_GUARD_IP
;
2062 scsi_host_set_guard(vha
->host
, guard
);
2064 vha
->flags
.difdix_supported
= 0;
2067 if (scsi_add_host_with_dma(vha
->host
, &fc_vport
->dev
,
2069 ql_dbg(ql_dbg_user
, vha
, 0x7083,
2070 "scsi_add_host failure for VP[%d].\n", vha
->vp_idx
);
2071 goto vport_create_failed_2
;
2074 /* initialize attributes */
2075 fc_host_dev_loss_tmo(vha
->host
) = ha
->port_down_retry_count
;
2076 fc_host_node_name(vha
->host
) = wwn_to_u64(vha
->node_name
);
2077 fc_host_port_name(vha
->host
) = wwn_to_u64(vha
->port_name
);
2078 fc_host_supported_classes(vha
->host
) =
2079 fc_host_supported_classes(base_vha
->host
);
2080 fc_host_supported_speeds(vha
->host
) =
2081 fc_host_supported_speeds(base_vha
->host
);
2083 qlt_vport_create(vha
, ha
);
2084 qla24xx_vport_disable(fc_vport
, disable
);
2086 if (ha
->flags
.cpu_affinity_enabled
) {
2087 req
= ha
->req_q_map
[1];
2088 ql_dbg(ql_dbg_multiq
, vha
, 0xc000,
2089 "Request queue %p attached with "
2090 "VP[%d], cpu affinity =%d\n",
2091 req
, vha
->vp_idx
, ha
->flags
.cpu_affinity_enabled
);
2093 } else if (ql2xmaxqueues
== 1 || !ha
->npiv_info
)
2095 /* Create a request queue in QoS mode for the vport */
2096 for (cnt
= 0; cnt
< ha
->nvram_npiv_size
; cnt
++) {
2097 if (memcmp(ha
->npiv_info
[cnt
].port_name
, vha
->port_name
, 8) == 0
2098 && memcmp(ha
->npiv_info
[cnt
].node_name
, vha
->node_name
,
2100 qos
= ha
->npiv_info
[cnt
].q_qos
;
2106 ret
= qla25xx_create_req_que(ha
, options
, vha
->vp_idx
, 0, 0,
2109 ql_log(ql_log_warn
, vha
, 0x7084,
2110 "Can't create request queue for VP[%d]\n",
2113 ql_dbg(ql_dbg_multiq
, vha
, 0xc001,
2114 "Request Que:%d Q0s: %d) created for VP[%d]\n",
2115 ret
, qos
, vha
->vp_idx
);
2116 ql_dbg(ql_dbg_user
, vha
, 0x7085,
2117 "Request Que:%d Q0s: %d) created for VP[%d]\n",
2118 ret
, qos
, vha
->vp_idx
);
2119 req
= ha
->req_q_map
[ret
];
2127 vport_create_failed_2
:
2128 qla24xx_disable_vp(vha
);
2129 qla24xx_deallocate_vp_id(vha
);
2130 scsi_host_put(vha
->host
);
2131 return FC_VPORT_FAILED
;
2135 qla24xx_vport_delete(struct fc_vport
*fc_vport
)
2137 scsi_qla_host_t
*vha
= fc_vport
->dd_data
;
2138 struct qla_hw_data
*ha
= vha
->hw
;
2139 uint16_t id
= vha
->vp_idx
;
2141 while (test_bit(LOOP_RESYNC_ACTIVE
, &vha
->dpc_flags
) ||
2142 test_bit(FCPORT_UPDATE_NEEDED
, &vha
->dpc_flags
))
2145 qla24xx_disable_vp(vha
);
2147 vha
->flags
.delete_progress
= 1;
2149 qlt_remove_target(ha
, vha
);
2151 fc_remove_host(vha
->host
);
2153 scsi_remove_host(vha
->host
);
2155 /* Allow timer to run to drain queued items, when removing vp */
2156 qla24xx_deallocate_vp_id(vha
);
2158 if (vha
->timer_active
) {
2159 qla2x00_vp_stop_timer(vha
);
2160 ql_dbg(ql_dbg_user
, vha
, 0x7086,
2161 "Timer for the VP[%d] has stopped\n", vha
->vp_idx
);
2164 qla2x00_free_fcports(vha
);
2166 mutex_lock(&ha
->vport_lock
);
2167 ha
->cur_vport_count
--;
2168 clear_bit(vha
->vp_idx
, ha
->vp_idx_map
);
2169 mutex_unlock(&ha
->vport_lock
);
2171 if (vha
->req
->id
&& !ha
->flags
.cpu_affinity_enabled
) {
2172 if (qla25xx_delete_req_que(vha
, vha
->req
) != QLA_SUCCESS
)
2173 ql_log(ql_log_warn
, vha
, 0x7087,
2174 "Queue delete failed.\n");
2177 ql_log(ql_log_info
, vha
, 0x7088, "VP[%d] deleted.\n", id
);
2178 scsi_host_put(vha
->host
);
2183 qla24xx_vport_disable(struct fc_vport
*fc_vport
, bool disable
)
2185 scsi_qla_host_t
*vha
= fc_vport
->dd_data
;
2188 qla24xx_disable_vp(vha
);
2190 qla24xx_enable_vp(vha
);
2195 struct fc_function_template qla2xxx_transport_functions
= {
2197 .show_host_node_name
= 1,
2198 .show_host_port_name
= 1,
2199 .show_host_supported_classes
= 1,
2200 .show_host_supported_speeds
= 1,
2202 .get_host_port_id
= qla2x00_get_host_port_id
,
2203 .show_host_port_id
= 1,
2204 .get_host_speed
= qla2x00_get_host_speed
,
2205 .show_host_speed
= 1,
2206 .get_host_port_type
= qla2x00_get_host_port_type
,
2207 .show_host_port_type
= 1,
2208 .get_host_symbolic_name
= qla2x00_get_host_symbolic_name
,
2209 .show_host_symbolic_name
= 1,
2210 .set_host_system_hostname
= qla2x00_set_host_system_hostname
,
2211 .show_host_system_hostname
= 1,
2212 .get_host_fabric_name
= qla2x00_get_host_fabric_name
,
2213 .show_host_fabric_name
= 1,
2214 .get_host_port_state
= qla2x00_get_host_port_state
,
2215 .show_host_port_state
= 1,
2217 .dd_fcrport_size
= sizeof(struct fc_port
*),
2218 .show_rport_supported_classes
= 1,
2220 .get_starget_node_name
= qla2x00_get_starget_node_name
,
2221 .show_starget_node_name
= 1,
2222 .get_starget_port_name
= qla2x00_get_starget_port_name
,
2223 .show_starget_port_name
= 1,
2224 .get_starget_port_id
= qla2x00_get_starget_port_id
,
2225 .show_starget_port_id
= 1,
2227 .set_rport_dev_loss_tmo
= qla2x00_set_rport_loss_tmo
,
2228 .show_rport_dev_loss_tmo
= 1,
2230 .issue_fc_host_lip
= qla2x00_issue_lip
,
2231 .dev_loss_tmo_callbk
= qla2x00_dev_loss_tmo_callbk
,
2232 .terminate_rport_io
= qla2x00_terminate_rport_io
,
2233 .get_fc_host_stats
= qla2x00_get_fc_host_stats
,
2234 .reset_fc_host_stats
= qla2x00_reset_host_stats
,
2236 .vport_create
= qla24xx_vport_create
,
2237 .vport_disable
= qla24xx_vport_disable
,
2238 .vport_delete
= qla24xx_vport_delete
,
2239 .bsg_request
= qla24xx_bsg_request
,
2240 .bsg_timeout
= qla24xx_bsg_timeout
,
2243 struct fc_function_template qla2xxx_transport_vport_functions
= {
2245 .show_host_node_name
= 1,
2246 .show_host_port_name
= 1,
2247 .show_host_supported_classes
= 1,
2249 .get_host_port_id
= qla2x00_get_host_port_id
,
2250 .show_host_port_id
= 1,
2251 .get_host_speed
= qla2x00_get_host_speed
,
2252 .show_host_speed
= 1,
2253 .get_host_port_type
= qla2x00_get_host_port_type
,
2254 .show_host_port_type
= 1,
2255 .get_host_symbolic_name
= qla2x00_get_host_symbolic_name
,
2256 .show_host_symbolic_name
= 1,
2257 .set_host_system_hostname
= qla2x00_set_host_system_hostname
,
2258 .show_host_system_hostname
= 1,
2259 .get_host_fabric_name
= qla2x00_get_host_fabric_name
,
2260 .show_host_fabric_name
= 1,
2261 .get_host_port_state
= qla2x00_get_host_port_state
,
2262 .show_host_port_state
= 1,
2264 .dd_fcrport_size
= sizeof(struct fc_port
*),
2265 .show_rport_supported_classes
= 1,
2267 .get_starget_node_name
= qla2x00_get_starget_node_name
,
2268 .show_starget_node_name
= 1,
2269 .get_starget_port_name
= qla2x00_get_starget_port_name
,
2270 .show_starget_port_name
= 1,
2271 .get_starget_port_id
= qla2x00_get_starget_port_id
,
2272 .show_starget_port_id
= 1,
2274 .set_rport_dev_loss_tmo
= qla2x00_set_rport_loss_tmo
,
2275 .show_rport_dev_loss_tmo
= 1,
2277 .issue_fc_host_lip
= qla2x00_issue_lip
,
2278 .dev_loss_tmo_callbk
= qla2x00_dev_loss_tmo_callbk
,
2279 .terminate_rport_io
= qla2x00_terminate_rport_io
,
2280 .get_fc_host_stats
= qla2x00_get_fc_host_stats
,
2281 .reset_fc_host_stats
= qla2x00_reset_host_stats
,
2283 .bsg_request
= qla24xx_bsg_request
,
2284 .bsg_timeout
= qla24xx_bsg_timeout
,
2288 qla2x00_init_host_attr(scsi_qla_host_t
*vha
)
2290 struct qla_hw_data
*ha
= vha
->hw
;
2291 u32 speed
= FC_PORTSPEED_UNKNOWN
;
2293 fc_host_dev_loss_tmo(vha
->host
) = ha
->port_down_retry_count
;
2294 fc_host_node_name(vha
->host
) = wwn_to_u64(vha
->node_name
);
2295 fc_host_port_name(vha
->host
) = wwn_to_u64(vha
->port_name
);
2296 fc_host_supported_classes(vha
->host
) = ha
->tgt
.enable_class_2
?
2297 (FC_COS_CLASS2
|FC_COS_CLASS3
) : FC_COS_CLASS3
;
2298 fc_host_max_npiv_vports(vha
->host
) = ha
->max_npiv_vports
;
2299 fc_host_npiv_vports_inuse(vha
->host
) = ha
->cur_vport_count
;
2301 if (IS_CNA_CAPABLE(ha
))
2302 speed
= FC_PORTSPEED_10GBIT
;
2303 else if (IS_QLA2031(ha
))
2304 speed
= FC_PORTSPEED_16GBIT
| FC_PORTSPEED_8GBIT
|
2306 else if (IS_QLA25XX(ha
))
2307 speed
= FC_PORTSPEED_8GBIT
| FC_PORTSPEED_4GBIT
|
2308 FC_PORTSPEED_2GBIT
| FC_PORTSPEED_1GBIT
;
2309 else if (IS_QLA24XX_TYPE(ha
))
2310 speed
= FC_PORTSPEED_4GBIT
| FC_PORTSPEED_2GBIT
|
2312 else if (IS_QLA23XX(ha
))
2313 speed
= FC_PORTSPEED_2GBIT
| FC_PORTSPEED_1GBIT
;
2314 else if (IS_QLAFX00(ha
))
2315 speed
= FC_PORTSPEED_8GBIT
| FC_PORTSPEED_4GBIT
|
2316 FC_PORTSPEED_2GBIT
| FC_PORTSPEED_1GBIT
;
2317 else if (IS_QLA27XX(ha
))
2318 speed
= FC_PORTSPEED_32GBIT
| FC_PORTSPEED_16GBIT
|
2321 speed
= FC_PORTSPEED_1GBIT
;
2322 fc_host_supported_speeds(vha
->host
) = speed
;