2 * QLogic Fibre Channel HBA Driver
3 * Copyright (c) 2003-2013 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
++)
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
;
245 if (ha
->optrom_state
!= QLA_SREADING
)
248 return memory_read_from_buffer(buf
, count
, &off
, ha
->optrom_buffer
,
249 ha
->optrom_region_size
);
253 qla2x00_sysfs_write_optrom(struct file
*filp
, struct kobject
*kobj
,
254 struct bin_attribute
*bin_attr
,
255 char *buf
, loff_t off
, size_t count
)
257 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
258 struct device
, kobj
)));
259 struct qla_hw_data
*ha
= vha
->hw
;
261 if (ha
->optrom_state
!= QLA_SWRITING
)
263 if (off
> ha
->optrom_region_size
)
265 if (off
+ count
> ha
->optrom_region_size
)
266 count
= ha
->optrom_region_size
- off
;
268 memcpy(&ha
->optrom_buffer
[off
], buf
, count
);
273 static struct bin_attribute sysfs_optrom_attr
= {
276 .mode
= S_IRUSR
| S_IWUSR
,
279 .read
= qla2x00_sysfs_read_optrom
,
280 .write
= qla2x00_sysfs_write_optrom
,
284 qla2x00_sysfs_write_optrom_ctl(struct file
*filp
, struct kobject
*kobj
,
285 struct bin_attribute
*bin_attr
,
286 char *buf
, loff_t off
, size_t count
)
288 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
289 struct device
, kobj
)));
290 struct qla_hw_data
*ha
= vha
->hw
;
293 uint32_t size
= ha
->optrom_size
;
299 if (unlikely(pci_channel_offline(ha
->pdev
)))
302 if (sscanf(buf
, "%d:%x:%x", &val
, &start
, &size
) < 1)
304 if (start
> ha
->optrom_size
)
309 if (ha
->optrom_state
!= QLA_SREADING
&&
310 ha
->optrom_state
!= QLA_SWRITING
)
313 ha
->optrom_state
= QLA_SWAITING
;
315 ql_dbg(ql_dbg_user
, vha
, 0x7061,
316 "Freeing flash region allocation -- 0x%x bytes.\n",
317 ha
->optrom_region_size
);
319 vfree(ha
->optrom_buffer
);
320 ha
->optrom_buffer
= NULL
;
323 if (ha
->optrom_state
!= QLA_SWAITING
)
326 ha
->optrom_region_start
= start
;
327 ha
->optrom_region_size
= start
+ size
> ha
->optrom_size
?
328 ha
->optrom_size
- start
: size
;
330 ha
->optrom_state
= QLA_SREADING
;
331 ha
->optrom_buffer
= vmalloc(ha
->optrom_region_size
);
332 if (ha
->optrom_buffer
== NULL
) {
333 ql_log(ql_log_warn
, vha
, 0x7062,
334 "Unable to allocate memory for optrom retrieval "
335 "(%x).\n", ha
->optrom_region_size
);
337 ha
->optrom_state
= QLA_SWAITING
;
341 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
) {
342 ql_log(ql_log_warn
, vha
, 0x7063,
343 "HBA not online, failing NVRAM update.\n");
347 ql_dbg(ql_dbg_user
, vha
, 0x7064,
348 "Reading flash region -- 0x%x/0x%x.\n",
349 ha
->optrom_region_start
, ha
->optrom_region_size
);
351 memset(ha
->optrom_buffer
, 0, ha
->optrom_region_size
);
352 ha
->isp_ops
->read_optrom(vha
, ha
->optrom_buffer
,
353 ha
->optrom_region_start
, ha
->optrom_region_size
);
356 if (ha
->optrom_state
!= QLA_SWAITING
)
360 * We need to be more restrictive on which FLASH regions are
361 * allowed to be updated via user-space. Regions accessible
362 * via this method include:
364 * ISP21xx/ISP22xx/ISP23xx type boards:
366 * 0x000000 -> 0x020000 -- Boot code.
368 * ISP2322/ISP24xx type boards:
370 * 0x000000 -> 0x07ffff -- Boot code.
371 * 0x080000 -> 0x0fffff -- Firmware.
373 * ISP25xx type boards:
375 * 0x000000 -> 0x07ffff -- Boot code.
376 * 0x080000 -> 0x0fffff -- Firmware.
377 * 0x120000 -> 0x12ffff -- VPD and HBA parameters.
380 if (ha
->optrom_size
== OPTROM_SIZE_2300
&& start
== 0)
382 else if (start
== (ha
->flt_region_boot
* 4) ||
383 start
== (ha
->flt_region_fw
* 4))
385 else if (IS_QLA24XX_TYPE(ha
) || IS_QLA25XX(ha
)
386 || IS_CNA_CAPABLE(ha
) || IS_QLA2031(ha
))
389 ql_log(ql_log_warn
, vha
, 0x7065,
390 "Invalid start region 0x%x/0x%x.\n", start
, size
);
394 ha
->optrom_region_start
= start
;
395 ha
->optrom_region_size
= start
+ size
> ha
->optrom_size
?
396 ha
->optrom_size
- start
: size
;
398 ha
->optrom_state
= QLA_SWRITING
;
399 ha
->optrom_buffer
= vmalloc(ha
->optrom_region_size
);
400 if (ha
->optrom_buffer
== NULL
) {
401 ql_log(ql_log_warn
, vha
, 0x7066,
402 "Unable to allocate memory for optrom update "
403 "(%x)\n", ha
->optrom_region_size
);
405 ha
->optrom_state
= QLA_SWAITING
;
409 ql_dbg(ql_dbg_user
, vha
, 0x7067,
410 "Staging flash region write -- 0x%x/0x%x.\n",
411 ha
->optrom_region_start
, ha
->optrom_region_size
);
413 memset(ha
->optrom_buffer
, 0, ha
->optrom_region_size
);
416 if (ha
->optrom_state
!= QLA_SWRITING
)
419 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
) {
420 ql_log(ql_log_warn
, vha
, 0x7068,
421 "HBA not online, failing flash update.\n");
425 ql_dbg(ql_dbg_user
, vha
, 0x7069,
426 "Writing flash region -- 0x%x/0x%x.\n",
427 ha
->optrom_region_start
, ha
->optrom_region_size
);
429 ha
->isp_ops
->write_optrom(vha
, ha
->optrom_buffer
,
430 ha
->optrom_region_start
, ha
->optrom_region_size
);
438 static struct bin_attribute sysfs_optrom_ctl_attr
= {
440 .name
= "optrom_ctl",
444 .write
= qla2x00_sysfs_write_optrom_ctl
,
448 qla2x00_sysfs_read_vpd(struct file
*filp
, struct kobject
*kobj
,
449 struct bin_attribute
*bin_attr
,
450 char *buf
, loff_t off
, size_t count
)
452 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
453 struct device
, kobj
)));
454 struct qla_hw_data
*ha
= vha
->hw
;
456 if (unlikely(pci_channel_offline(ha
->pdev
)))
459 if (!capable(CAP_SYS_ADMIN
))
462 if (IS_NOCACHE_VPD_TYPE(ha
))
463 ha
->isp_ops
->read_optrom(vha
, ha
->vpd
, ha
->flt_region_vpd
<< 2,
465 return memory_read_from_buffer(buf
, count
, &off
, ha
->vpd
, ha
->vpd_size
);
469 qla2x00_sysfs_write_vpd(struct file
*filp
, struct kobject
*kobj
,
470 struct bin_attribute
*bin_attr
,
471 char *buf
, loff_t off
, size_t count
)
473 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
474 struct device
, kobj
)));
475 struct qla_hw_data
*ha
= vha
->hw
;
478 if (unlikely(pci_channel_offline(ha
->pdev
)))
481 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
!= ha
->vpd_size
||
482 !ha
->isp_ops
->write_nvram
)
485 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
) {
486 ql_log(ql_log_warn
, vha
, 0x706a,
487 "HBA not online, failing VPD update.\n");
492 ha
->isp_ops
->write_nvram(vha
, (uint8_t *)buf
, ha
->vpd_base
, count
);
493 ha
->isp_ops
->read_nvram(vha
, (uint8_t *)ha
->vpd
, ha
->vpd_base
, count
);
495 /* Update flash version information for 4Gb & above. */
496 if (!IS_FWI2_CAPABLE(ha
))
499 tmp_data
= vmalloc(256);
501 ql_log(ql_log_warn
, vha
, 0x706b,
502 "Unable to allocate memory for VPD information update.\n");
505 ha
->isp_ops
->get_flash_version(vha
, tmp_data
);
511 static struct bin_attribute sysfs_vpd_attr
= {
514 .mode
= S_IRUSR
| S_IWUSR
,
517 .read
= qla2x00_sysfs_read_vpd
,
518 .write
= qla2x00_sysfs_write_vpd
,
522 qla2x00_sysfs_read_sfp(struct file
*filp
, struct kobject
*kobj
,
523 struct bin_attribute
*bin_attr
,
524 char *buf
, loff_t off
, size_t count
)
526 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
527 struct device
, kobj
)));
528 struct qla_hw_data
*ha
= vha
->hw
;
529 uint16_t iter
, addr
, offset
;
532 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
!= SFP_DEV_SIZE
* 2)
538 ha
->sfp_data
= dma_pool_alloc(ha
->s_dma_pool
, GFP_KERNEL
,
541 ql_log(ql_log_warn
, vha
, 0x706c,
542 "Unable to allocate memory for SFP read-data.\n");
547 memset(ha
->sfp_data
, 0, SFP_BLOCK_SIZE
);
549 for (iter
= 0, offset
= 0; iter
< (SFP_DEV_SIZE
* 2) / SFP_BLOCK_SIZE
;
550 iter
++, offset
+= SFP_BLOCK_SIZE
) {
552 /* Skip to next device address. */
557 rval
= qla2x00_read_sfp(vha
, ha
->sfp_data_dma
, ha
->sfp_data
,
558 addr
, offset
, SFP_BLOCK_SIZE
, 0);
559 if (rval
!= QLA_SUCCESS
) {
560 ql_log(ql_log_warn
, vha
, 0x706d,
561 "Unable to read SFP data (%x/%x/%x).\n", rval
,
566 memcpy(buf
, ha
->sfp_data
, SFP_BLOCK_SIZE
);
567 buf
+= SFP_BLOCK_SIZE
;
573 static struct bin_attribute sysfs_sfp_attr
= {
576 .mode
= S_IRUSR
| S_IWUSR
,
578 .size
= SFP_DEV_SIZE
* 2,
579 .read
= qla2x00_sysfs_read_sfp
,
583 qla2x00_sysfs_write_reset(struct file
*filp
, struct kobject
*kobj
,
584 struct bin_attribute
*bin_attr
,
585 char *buf
, loff_t off
, size_t count
)
587 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
588 struct device
, kobj
)));
589 struct qla_hw_data
*ha
= vha
->hw
;
590 struct scsi_qla_host
*base_vha
= pci_get_drvdata(ha
->pdev
);
592 uint32_t idc_control
;
593 uint8_t *tmp_data
= NULL
;
597 type
= simple_strtol(buf
, NULL
, 10);
600 ql_log(ql_log_info
, vha
, 0x706e,
601 "Issuing ISP reset.\n");
603 scsi_block_requests(vha
->host
);
604 if (IS_QLA82XX(ha
)) {
605 ha
->flags
.isp82xx_no_md_cap
= 1;
606 qla82xx_idc_lock(ha
);
607 qla82xx_set_reset_owner(vha
);
608 qla82xx_idc_unlock(ha
);
609 } else if (IS_QLA8044(ha
)) {
610 qla8044_idc_lock(ha
);
611 idc_control
= qla8044_rd_reg(ha
,
612 QLA8044_IDC_DRV_CTRL
);
613 qla8044_wr_reg(ha
, QLA8044_IDC_DRV_CTRL
,
614 (idc_control
| GRACEFUL_RESET_BIT1
));
615 qla82xx_set_reset_owner(vha
);
616 qla8044_idc_unlock(ha
);
618 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
619 qla2xxx_wake_dpc(vha
);
621 qla2x00_wait_for_chip_reset(vha
);
622 scsi_unblock_requests(vha
->host
);
625 if (!IS_QLA81XX(ha
) && !IS_QLA83XX(ha
))
628 ql_log(ql_log_info
, vha
, 0x706f,
629 "Issuing MPI reset.\n");
631 if (IS_QLA83XX(ha
)) {
632 uint32_t idc_control
;
634 qla83xx_idc_lock(vha
, 0);
635 __qla83xx_get_idc_control(vha
, &idc_control
);
636 idc_control
|= QLA83XX_IDC_GRACEFUL_RESET
;
637 __qla83xx_set_idc_control(vha
, idc_control
);
638 qla83xx_wr_reg(vha
, QLA83XX_IDC_DEV_STATE
,
639 QLA8XXX_DEV_NEED_RESET
);
640 qla83xx_idc_audit(vha
, IDC_AUDIT_TIMESTAMP
);
641 qla83xx_idc_unlock(vha
, 0);
644 /* Make sure FC side is not in reset */
645 qla2x00_wait_for_hba_online(vha
);
647 /* Issue MPI reset */
648 scsi_block_requests(vha
->host
);
649 if (qla81xx_restart_mpi_firmware(vha
) != QLA_SUCCESS
)
650 ql_log(ql_log_warn
, vha
, 0x7070,
651 "MPI reset failed.\n");
652 scsi_unblock_requests(vha
->host
);
656 if (!IS_P3P_TYPE(ha
) || vha
!= base_vha
) {
657 ql_log(ql_log_info
, vha
, 0x7071,
658 "FCoE ctx reset no supported.\n");
662 ql_log(ql_log_info
, vha
, 0x7072,
663 "Issuing FCoE ctx reset.\n");
664 set_bit(FCOE_CTX_RESET_NEEDED
, &vha
->dpc_flags
);
665 qla2xxx_wake_dpc(vha
);
666 qla2x00_wait_for_fcoe_ctx_reset(vha
);
671 ql_log(ql_log_info
, vha
, 0x70bc,
672 "Disabling Reset by IDC control\n");
673 qla83xx_idc_lock(vha
, 0);
674 __qla83xx_get_idc_control(vha
, &idc_control
);
675 idc_control
|= QLA83XX_IDC_RESET_DISABLED
;
676 __qla83xx_set_idc_control(vha
, idc_control
);
677 qla83xx_idc_unlock(vha
, 0);
682 ql_log(ql_log_info
, vha
, 0x70bd,
683 "Enabling Reset by IDC control\n");
684 qla83xx_idc_lock(vha
, 0);
685 __qla83xx_get_idc_control(vha
, &idc_control
);
686 idc_control
&= ~QLA83XX_IDC_RESET_DISABLED
;
687 __qla83xx_set_idc_control(vha
, idc_control
);
688 qla83xx_idc_unlock(vha
, 0);
691 ql_dbg(ql_dbg_user
, vha
, 0x70e0,
692 "Updating cache versions without reset ");
694 tmp_data
= vmalloc(256);
696 ql_log(ql_log_warn
, vha
, 0x70e1,
697 "Unable to allocate memory for VPD information update.\n");
700 ha
->isp_ops
->get_flash_version(vha
, tmp_data
);
707 static struct bin_attribute sysfs_reset_attr
= {
713 .write
= qla2x00_sysfs_write_reset
,
717 qla2x00_sysfs_read_xgmac_stats(struct file
*filp
, struct kobject
*kobj
,
718 struct bin_attribute
*bin_attr
,
719 char *buf
, loff_t off
, size_t count
)
721 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
722 struct device
, kobj
)));
723 struct qla_hw_data
*ha
= vha
->hw
;
725 uint16_t actual_size
;
727 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
> XGMAC_DATA_SIZE
)
733 ha
->xgmac_data
= dma_alloc_coherent(&ha
->pdev
->dev
, XGMAC_DATA_SIZE
,
734 &ha
->xgmac_data_dma
, GFP_KERNEL
);
735 if (!ha
->xgmac_data
) {
736 ql_log(ql_log_warn
, vha
, 0x7076,
737 "Unable to allocate memory for XGMAC read-data.\n");
743 memset(ha
->xgmac_data
, 0, XGMAC_DATA_SIZE
);
745 rval
= qla2x00_get_xgmac_stats(vha
, ha
->xgmac_data_dma
,
746 XGMAC_DATA_SIZE
, &actual_size
);
747 if (rval
!= QLA_SUCCESS
) {
748 ql_log(ql_log_warn
, vha
, 0x7077,
749 "Unable to read XGMAC data (%x).\n", rval
);
753 count
= actual_size
> count
? count
: actual_size
;
754 memcpy(buf
, ha
->xgmac_data
, count
);
759 static struct bin_attribute sysfs_xgmac_stats_attr
= {
761 .name
= "xgmac_stats",
765 .read
= qla2x00_sysfs_read_xgmac_stats
,
769 qla2x00_sysfs_read_dcbx_tlv(struct file
*filp
, struct kobject
*kobj
,
770 struct bin_attribute
*bin_attr
,
771 char *buf
, loff_t off
, size_t count
)
773 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
774 struct device
, kobj
)));
775 struct qla_hw_data
*ha
= vha
->hw
;
777 uint16_t actual_size
;
779 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
> DCBX_TLV_DATA_SIZE
)
785 ha
->dcbx_tlv
= dma_alloc_coherent(&ha
->pdev
->dev
, DCBX_TLV_DATA_SIZE
,
786 &ha
->dcbx_tlv_dma
, GFP_KERNEL
);
788 ql_log(ql_log_warn
, vha
, 0x7078,
789 "Unable to allocate memory for DCBX TLV read-data.\n");
795 memset(ha
->dcbx_tlv
, 0, DCBX_TLV_DATA_SIZE
);
797 rval
= qla2x00_get_dcbx_params(vha
, ha
->dcbx_tlv_dma
,
799 if (rval
!= QLA_SUCCESS
) {
800 ql_log(ql_log_warn
, vha
, 0x7079,
801 "Unable to read DCBX TLV (%x).\n", rval
);
805 memcpy(buf
, ha
->dcbx_tlv
, count
);
810 static struct bin_attribute sysfs_dcbx_tlv_attr
= {
816 .read
= qla2x00_sysfs_read_dcbx_tlv
,
819 static struct sysfs_entry
{
821 struct bin_attribute
*attr
;
823 } bin_file_entries
[] = {
824 { "fw_dump", &sysfs_fw_dump_attr
, },
825 { "nvram", &sysfs_nvram_attr
, },
826 { "optrom", &sysfs_optrom_attr
, },
827 { "optrom_ctl", &sysfs_optrom_ctl_attr
, },
828 { "vpd", &sysfs_vpd_attr
, 1 },
829 { "sfp", &sysfs_sfp_attr
, 1 },
830 { "reset", &sysfs_reset_attr
, },
831 { "xgmac_stats", &sysfs_xgmac_stats_attr
, 3 },
832 { "dcbx_tlv", &sysfs_dcbx_tlv_attr
, 3 },
837 qla2x00_alloc_sysfs_attr(scsi_qla_host_t
*vha
)
839 struct Scsi_Host
*host
= vha
->host
;
840 struct sysfs_entry
*iter
;
843 for (iter
= bin_file_entries
; iter
->name
; iter
++) {
844 if (iter
->is4GBp_only
&& !IS_FWI2_CAPABLE(vha
->hw
))
846 if (iter
->is4GBp_only
== 2 && !IS_QLA25XX(vha
->hw
))
848 if (iter
->is4GBp_only
== 3 && !(IS_CNA_CAPABLE(vha
->hw
)))
851 ret
= sysfs_create_bin_file(&host
->shost_gendev
.kobj
,
854 ql_log(ql_log_warn
, vha
, 0x00f3,
855 "Unable to create sysfs %s binary attribute (%d).\n",
858 ql_dbg(ql_dbg_init
, vha
, 0x00f4,
859 "Successfully created sysfs %s binary attribure.\n",
865 qla2x00_free_sysfs_attr(scsi_qla_host_t
*vha
, bool stop_beacon
)
867 struct Scsi_Host
*host
= vha
->host
;
868 struct sysfs_entry
*iter
;
869 struct qla_hw_data
*ha
= vha
->hw
;
871 for (iter
= bin_file_entries
; iter
->name
; iter
++) {
872 if (iter
->is4GBp_only
&& !IS_FWI2_CAPABLE(ha
))
874 if (iter
->is4GBp_only
== 2 && !IS_QLA25XX(ha
))
876 if (iter
->is4GBp_only
== 3 && !(IS_CNA_CAPABLE(vha
->hw
)))
879 sysfs_remove_bin_file(&host
->shost_gendev
.kobj
,
883 if (stop_beacon
&& ha
->beacon_blink_led
== 1)
884 ha
->isp_ops
->beacon_off(vha
);
887 /* Scsi_Host attributes. */
890 qla2x00_drvr_version_show(struct device
*dev
,
891 struct device_attribute
*attr
, char *buf
)
893 return scnprintf(buf
, PAGE_SIZE
, "%s\n", qla2x00_version_str
);
897 qla2x00_fw_version_show(struct device
*dev
,
898 struct device_attribute
*attr
, char *buf
)
900 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
901 struct qla_hw_data
*ha
= vha
->hw
;
904 return scnprintf(buf
, PAGE_SIZE
, "%s\n",
905 ha
->isp_ops
->fw_version_str(vha
, fw_str
));
909 qla2x00_serial_num_show(struct device
*dev
, struct device_attribute
*attr
,
912 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
913 struct qla_hw_data
*ha
= vha
->hw
;
916 if (IS_QLAFX00(vha
->hw
)) {
917 return scnprintf(buf
, PAGE_SIZE
, "%s\n",
918 vha
->hw
->mr
.serial_num
);
919 } else if (IS_FWI2_CAPABLE(ha
)) {
920 qla2xxx_get_vpd_field(vha
, "SN", buf
, PAGE_SIZE
- 1);
921 return strlen(strcat(buf
, "\n"));
924 sn
= ((ha
->serial0
& 0x1f) << 16) | (ha
->serial2
<< 8) | ha
->serial1
;
925 return scnprintf(buf
, PAGE_SIZE
, "%c%05d\n", 'A' + sn
/ 100000,
930 qla2x00_isp_name_show(struct device
*dev
, struct device_attribute
*attr
,
933 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
934 return scnprintf(buf
, PAGE_SIZE
, "ISP%04X\n", vha
->hw
->pdev
->device
);
938 qla2x00_isp_id_show(struct device
*dev
, struct device_attribute
*attr
,
941 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
942 struct qla_hw_data
*ha
= vha
->hw
;
944 if (IS_QLAFX00(vha
->hw
))
945 return scnprintf(buf
, PAGE_SIZE
, "%s\n",
946 vha
->hw
->mr
.hw_version
);
948 return scnprintf(buf
, PAGE_SIZE
, "%04x %04x %04x %04x\n",
949 ha
->product_id
[0], ha
->product_id
[1], ha
->product_id
[2],
954 qla2x00_model_name_show(struct device
*dev
, struct device_attribute
*attr
,
957 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
959 return scnprintf(buf
, PAGE_SIZE
, "%s\n", vha
->hw
->model_number
);
963 qla2x00_model_desc_show(struct device
*dev
, struct device_attribute
*attr
,
966 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
967 return scnprintf(buf
, PAGE_SIZE
, "%s\n",
968 vha
->hw
->model_desc
? vha
->hw
->model_desc
: "");
972 qla2x00_pci_info_show(struct device
*dev
, struct device_attribute
*attr
,
975 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
978 return scnprintf(buf
, PAGE_SIZE
, "%s\n",
979 vha
->hw
->isp_ops
->pci_info_str(vha
, pci_info
));
983 qla2x00_link_state_show(struct device
*dev
, struct device_attribute
*attr
,
986 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
987 struct qla_hw_data
*ha
= vha
->hw
;
990 if (atomic_read(&vha
->loop_state
) == LOOP_DOWN
||
991 atomic_read(&vha
->loop_state
) == LOOP_DEAD
||
992 vha
->device_flags
& DFLG_NO_CABLE
)
993 len
= scnprintf(buf
, PAGE_SIZE
, "Link Down\n");
994 else if (atomic_read(&vha
->loop_state
) != LOOP_READY
||
995 qla2x00_reset_active(vha
))
996 len
= scnprintf(buf
, PAGE_SIZE
, "Unknown Link State\n");
998 len
= scnprintf(buf
, PAGE_SIZE
, "Link Up - ");
1000 switch (ha
->current_topology
) {
1002 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "Loop\n");
1005 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "FL_Port\n");
1008 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
,
1009 "N_Port to N_Port\n");
1012 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "F_Port\n");
1015 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "Loop\n");
1023 qla2x00_zio_show(struct device
*dev
, struct device_attribute
*attr
,
1026 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1029 switch (vha
->hw
->zio_mode
) {
1030 case QLA_ZIO_MODE_6
:
1031 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "Mode 6\n");
1033 case QLA_ZIO_DISABLED
:
1034 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "Disabled\n");
1041 qla2x00_zio_store(struct device
*dev
, struct device_attribute
*attr
,
1042 const char *buf
, size_t count
)
1044 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1045 struct qla_hw_data
*ha
= vha
->hw
;
1049 if (!IS_ZIO_SUPPORTED(ha
))
1052 if (sscanf(buf
, "%d", &val
) != 1)
1056 zio_mode
= QLA_ZIO_MODE_6
;
1058 zio_mode
= QLA_ZIO_DISABLED
;
1060 /* Update per-hba values and queue a reset. */
1061 if (zio_mode
!= QLA_ZIO_DISABLED
|| ha
->zio_mode
!= QLA_ZIO_DISABLED
) {
1062 ha
->zio_mode
= zio_mode
;
1063 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
1069 qla2x00_zio_timer_show(struct device
*dev
, struct device_attribute
*attr
,
1072 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1074 return scnprintf(buf
, PAGE_SIZE
, "%d us\n", vha
->hw
->zio_timer
* 100);
1078 qla2x00_zio_timer_store(struct device
*dev
, struct device_attribute
*attr
,
1079 const char *buf
, size_t count
)
1081 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1085 if (sscanf(buf
, "%d", &val
) != 1)
1087 if (val
> 25500 || val
< 100)
1090 zio_timer
= (uint16_t)(val
/ 100);
1091 vha
->hw
->zio_timer
= zio_timer
;
1097 qla2x00_beacon_show(struct device
*dev
, struct device_attribute
*attr
,
1100 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1103 if (vha
->hw
->beacon_blink_led
)
1104 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "Enabled\n");
1106 len
+= scnprintf(buf
+ len
, PAGE_SIZE
-len
, "Disabled\n");
1111 qla2x00_beacon_store(struct device
*dev
, struct device_attribute
*attr
,
1112 const char *buf
, size_t count
)
1114 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1115 struct qla_hw_data
*ha
= vha
->hw
;
1119 if (IS_QLA2100(ha
) || IS_QLA2200(ha
))
1122 if (test_bit(ABORT_ISP_ACTIVE
, &vha
->dpc_flags
)) {
1123 ql_log(ql_log_warn
, vha
, 0x707a,
1124 "Abort ISP active -- ignoring beacon request.\n");
1128 if (sscanf(buf
, "%d", &val
) != 1)
1132 rval
= ha
->isp_ops
->beacon_on(vha
);
1134 rval
= ha
->isp_ops
->beacon_off(vha
);
1136 if (rval
!= QLA_SUCCESS
)
1143 qla2x00_optrom_bios_version_show(struct device
*dev
,
1144 struct device_attribute
*attr
, char *buf
)
1146 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1147 struct qla_hw_data
*ha
= vha
->hw
;
1148 return scnprintf(buf
, PAGE_SIZE
, "%d.%02d\n", ha
->bios_revision
[1],
1149 ha
->bios_revision
[0]);
1153 qla2x00_optrom_efi_version_show(struct device
*dev
,
1154 struct device_attribute
*attr
, char *buf
)
1156 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1157 struct qla_hw_data
*ha
= vha
->hw
;
1158 return scnprintf(buf
, PAGE_SIZE
, "%d.%02d\n", ha
->efi_revision
[1],
1159 ha
->efi_revision
[0]);
1163 qla2x00_optrom_fcode_version_show(struct device
*dev
,
1164 struct device_attribute
*attr
, char *buf
)
1166 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1167 struct qla_hw_data
*ha
= vha
->hw
;
1168 return scnprintf(buf
, PAGE_SIZE
, "%d.%02d\n", ha
->fcode_revision
[1],
1169 ha
->fcode_revision
[0]);
1173 qla2x00_optrom_fw_version_show(struct device
*dev
,
1174 struct device_attribute
*attr
, char *buf
)
1176 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1177 struct qla_hw_data
*ha
= vha
->hw
;
1178 return scnprintf(buf
, PAGE_SIZE
, "%d.%02d.%02d %d\n",
1179 ha
->fw_revision
[0], ha
->fw_revision
[1], ha
->fw_revision
[2],
1180 ha
->fw_revision
[3]);
1184 qla2x00_optrom_gold_fw_version_show(struct device
*dev
,
1185 struct device_attribute
*attr
, char *buf
)
1187 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1188 struct qla_hw_data
*ha
= vha
->hw
;
1190 if (!IS_QLA81XX(ha
) && !IS_QLA83XX(ha
))
1191 return scnprintf(buf
, PAGE_SIZE
, "\n");
1193 return scnprintf(buf
, PAGE_SIZE
, "%d.%02d.%02d (%d)\n",
1194 ha
->gold_fw_version
[0], ha
->gold_fw_version
[1],
1195 ha
->gold_fw_version
[2], ha
->gold_fw_version
[3]);
1199 qla2x00_total_isp_aborts_show(struct device
*dev
,
1200 struct device_attribute
*attr
, char *buf
)
1202 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1203 return scnprintf(buf
, PAGE_SIZE
, "%d\n",
1204 vha
->qla_stats
.total_isp_aborts
);
1208 qla24xx_84xx_fw_version_show(struct device
*dev
,
1209 struct device_attribute
*attr
, char *buf
)
1211 int rval
= QLA_SUCCESS
;
1212 uint16_t status
[2] = {0, 0};
1213 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1214 struct qla_hw_data
*ha
= vha
->hw
;
1216 if (!IS_QLA84XX(ha
))
1217 return scnprintf(buf
, PAGE_SIZE
, "\n");
1219 if (ha
->cs84xx
->op_fw_version
== 0)
1220 rval
= qla84xx_verify_chip(vha
, status
);
1222 if ((rval
== QLA_SUCCESS
) && (status
[0] == 0))
1223 return scnprintf(buf
, PAGE_SIZE
, "%u\n",
1224 (uint32_t)ha
->cs84xx
->op_fw_version
);
1226 return scnprintf(buf
, PAGE_SIZE
, "\n");
1230 qla2x00_mpi_version_show(struct device
*dev
, struct device_attribute
*attr
,
1233 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1234 struct qla_hw_data
*ha
= vha
->hw
;
1236 if (!IS_QLA81XX(ha
) && !IS_QLA8031(ha
) && !IS_QLA8044(ha
))
1237 return scnprintf(buf
, PAGE_SIZE
, "\n");
1239 return scnprintf(buf
, PAGE_SIZE
, "%d.%02d.%02d (%x)\n",
1240 ha
->mpi_version
[0], ha
->mpi_version
[1], ha
->mpi_version
[2],
1241 ha
->mpi_capabilities
);
1245 qla2x00_phy_version_show(struct device
*dev
, struct device_attribute
*attr
,
1248 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1249 struct qla_hw_data
*ha
= vha
->hw
;
1251 if (!IS_QLA81XX(ha
) && !IS_QLA8031(ha
))
1252 return scnprintf(buf
, PAGE_SIZE
, "\n");
1254 return scnprintf(buf
, PAGE_SIZE
, "%d.%02d.%02d\n",
1255 ha
->phy_version
[0], ha
->phy_version
[1], ha
->phy_version
[2]);
1259 qla2x00_flash_block_size_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 return scnprintf(buf
, PAGE_SIZE
, "0x%x\n", ha
->fdt_block_size
);
1269 qla2x00_vlan_id_show(struct device
*dev
, struct device_attribute
*attr
,
1272 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1274 if (!IS_CNA_CAPABLE(vha
->hw
))
1275 return scnprintf(buf
, PAGE_SIZE
, "\n");
1277 return scnprintf(buf
, PAGE_SIZE
, "%d\n", vha
->fcoe_vlan_id
);
1281 qla2x00_vn_port_mac_address_show(struct device
*dev
,
1282 struct device_attribute
*attr
, char *buf
)
1284 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1286 if (!IS_CNA_CAPABLE(vha
->hw
))
1287 return scnprintf(buf
, PAGE_SIZE
, "\n");
1289 return scnprintf(buf
, PAGE_SIZE
, "%pMR\n", vha
->fcoe_vn_port_mac
);
1293 qla2x00_fabric_param_show(struct device
*dev
, struct device_attribute
*attr
,
1296 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1298 return scnprintf(buf
, PAGE_SIZE
, "%d\n", vha
->hw
->switch_cap
);
1302 qla2x00_thermal_temp_show(struct device
*dev
,
1303 struct device_attribute
*attr
, char *buf
)
1305 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1308 if (qla2x00_reset_active(vha
)) {
1309 ql_log(ql_log_warn
, vha
, 0x70dc, "ISP reset active.\n");
1313 if (vha
->hw
->flags
.eeh_busy
) {
1314 ql_log(ql_log_warn
, vha
, 0x70dd, "PCI EEH busy.\n");
1318 if (qla2x00_get_thermal_temp(vha
, &temp
) == QLA_SUCCESS
)
1319 return scnprintf(buf
, PAGE_SIZE
, "%d\n", temp
);
1322 return scnprintf(buf
, PAGE_SIZE
, "\n");
1326 qla2x00_fw_state_show(struct device
*dev
, struct device_attribute
*attr
,
1329 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1330 int rval
= QLA_FUNCTION_FAILED
;
1334 if (IS_QLAFX00(vha
->hw
)) {
1335 pstate
= qlafx00_fw_state_show(dev
, attr
, buf
);
1336 return scnprintf(buf
, PAGE_SIZE
, "0x%x\n", pstate
);
1339 if (qla2x00_reset_active(vha
))
1340 ql_log(ql_log_warn
, vha
, 0x707c,
1341 "ISP reset active.\n");
1342 else if (!vha
->hw
->flags
.eeh_busy
)
1343 rval
= qla2x00_get_firmware_state(vha
, state
);
1344 if (rval
!= QLA_SUCCESS
)
1345 memset(state
, -1, sizeof(state
));
1347 return scnprintf(buf
, PAGE_SIZE
, "0x%x 0x%x 0x%x 0x%x 0x%x\n", state
[0],
1348 state
[1], state
[2], state
[3], state
[4]);
1352 qla2x00_diag_requests_show(struct device
*dev
,
1353 struct device_attribute
*attr
, char *buf
)
1355 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1357 if (!IS_BIDI_CAPABLE(vha
->hw
))
1358 return scnprintf(buf
, PAGE_SIZE
, "\n");
1360 return scnprintf(buf
, PAGE_SIZE
, "%llu\n", vha
->bidi_stats
.io_count
);
1364 qla2x00_diag_megabytes_show(struct device
*dev
,
1365 struct device_attribute
*attr
, char *buf
)
1367 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1369 if (!IS_BIDI_CAPABLE(vha
->hw
))
1370 return scnprintf(buf
, PAGE_SIZE
, "\n");
1372 return scnprintf(buf
, PAGE_SIZE
, "%llu\n",
1373 vha
->bidi_stats
.transfer_bytes
>> 20);
1377 qla2x00_fw_dump_size_show(struct device
*dev
, struct device_attribute
*attr
,
1380 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1381 struct qla_hw_data
*ha
= vha
->hw
;
1386 else if (IS_QLA82XX(ha
))
1387 size
= ha
->md_template_size
+ ha
->md_dump_size
;
1389 size
= ha
->fw_dump_len
;
1391 return scnprintf(buf
, PAGE_SIZE
, "%d\n", size
);
1394 static DEVICE_ATTR(driver_version
, S_IRUGO
, qla2x00_drvr_version_show
, NULL
);
1395 static DEVICE_ATTR(fw_version
, S_IRUGO
, qla2x00_fw_version_show
, NULL
);
1396 static DEVICE_ATTR(serial_num
, S_IRUGO
, qla2x00_serial_num_show
, NULL
);
1397 static DEVICE_ATTR(isp_name
, S_IRUGO
, qla2x00_isp_name_show
, NULL
);
1398 static DEVICE_ATTR(isp_id
, S_IRUGO
, qla2x00_isp_id_show
, NULL
);
1399 static DEVICE_ATTR(model_name
, S_IRUGO
, qla2x00_model_name_show
, NULL
);
1400 static DEVICE_ATTR(model_desc
, S_IRUGO
, qla2x00_model_desc_show
, NULL
);
1401 static DEVICE_ATTR(pci_info
, S_IRUGO
, qla2x00_pci_info_show
, NULL
);
1402 static DEVICE_ATTR(link_state
, S_IRUGO
, qla2x00_link_state_show
, NULL
);
1403 static DEVICE_ATTR(zio
, S_IRUGO
| S_IWUSR
, qla2x00_zio_show
, qla2x00_zio_store
);
1404 static DEVICE_ATTR(zio_timer
, S_IRUGO
| S_IWUSR
, qla2x00_zio_timer_show
,
1405 qla2x00_zio_timer_store
);
1406 static DEVICE_ATTR(beacon
, S_IRUGO
| S_IWUSR
, qla2x00_beacon_show
,
1407 qla2x00_beacon_store
);
1408 static DEVICE_ATTR(optrom_bios_version
, S_IRUGO
,
1409 qla2x00_optrom_bios_version_show
, NULL
);
1410 static DEVICE_ATTR(optrom_efi_version
, S_IRUGO
,
1411 qla2x00_optrom_efi_version_show
, NULL
);
1412 static DEVICE_ATTR(optrom_fcode_version
, S_IRUGO
,
1413 qla2x00_optrom_fcode_version_show
, NULL
);
1414 static DEVICE_ATTR(optrom_fw_version
, S_IRUGO
, qla2x00_optrom_fw_version_show
,
1416 static DEVICE_ATTR(optrom_gold_fw_version
, S_IRUGO
,
1417 qla2x00_optrom_gold_fw_version_show
, NULL
);
1418 static DEVICE_ATTR(84xx_fw_version
, S_IRUGO
, qla24xx_84xx_fw_version_show
,
1420 static DEVICE_ATTR(total_isp_aborts
, S_IRUGO
, qla2x00_total_isp_aborts_show
,
1422 static DEVICE_ATTR(mpi_version
, S_IRUGO
, qla2x00_mpi_version_show
, NULL
);
1423 static DEVICE_ATTR(phy_version
, S_IRUGO
, qla2x00_phy_version_show
, NULL
);
1424 static DEVICE_ATTR(flash_block_size
, S_IRUGO
, qla2x00_flash_block_size_show
,
1426 static DEVICE_ATTR(vlan_id
, S_IRUGO
, qla2x00_vlan_id_show
, NULL
);
1427 static DEVICE_ATTR(vn_port_mac_address
, S_IRUGO
,
1428 qla2x00_vn_port_mac_address_show
, NULL
);
1429 static DEVICE_ATTR(fabric_param
, S_IRUGO
, qla2x00_fabric_param_show
, NULL
);
1430 static DEVICE_ATTR(fw_state
, S_IRUGO
, qla2x00_fw_state_show
, NULL
);
1431 static DEVICE_ATTR(thermal_temp
, S_IRUGO
, qla2x00_thermal_temp_show
, NULL
);
1432 static DEVICE_ATTR(diag_requests
, S_IRUGO
, qla2x00_diag_requests_show
, NULL
);
1433 static DEVICE_ATTR(diag_megabytes
, S_IRUGO
, qla2x00_diag_megabytes_show
, NULL
);
1434 static DEVICE_ATTR(fw_dump_size
, S_IRUGO
, qla2x00_fw_dump_size_show
, NULL
);
1436 struct device_attribute
*qla2x00_host_attrs
[] = {
1437 &dev_attr_driver_version
,
1438 &dev_attr_fw_version
,
1439 &dev_attr_serial_num
,
1442 &dev_attr_model_name
,
1443 &dev_attr_model_desc
,
1445 &dev_attr_link_state
,
1447 &dev_attr_zio_timer
,
1449 &dev_attr_optrom_bios_version
,
1450 &dev_attr_optrom_efi_version
,
1451 &dev_attr_optrom_fcode_version
,
1452 &dev_attr_optrom_fw_version
,
1453 &dev_attr_84xx_fw_version
,
1454 &dev_attr_total_isp_aborts
,
1455 &dev_attr_mpi_version
,
1456 &dev_attr_phy_version
,
1457 &dev_attr_flash_block_size
,
1459 &dev_attr_vn_port_mac_address
,
1460 &dev_attr_fabric_param
,
1462 &dev_attr_optrom_gold_fw_version
,
1463 &dev_attr_thermal_temp
,
1464 &dev_attr_diag_requests
,
1465 &dev_attr_diag_megabytes
,
1466 &dev_attr_fw_dump_size
,
1470 /* Host attributes. */
1473 qla2x00_get_host_port_id(struct Scsi_Host
*shost
)
1475 scsi_qla_host_t
*vha
= shost_priv(shost
);
1477 fc_host_port_id(shost
) = vha
->d_id
.b
.domain
<< 16 |
1478 vha
->d_id
.b
.area
<< 8 | vha
->d_id
.b
.al_pa
;
1482 qla2x00_get_host_speed(struct Scsi_Host
*shost
)
1484 struct qla_hw_data
*ha
= ((struct scsi_qla_host
*)
1485 (shost_priv(shost
)))->hw
;
1486 u32 speed
= FC_PORTSPEED_UNKNOWN
;
1488 if (IS_QLAFX00(ha
)) {
1489 qlafx00_get_host_speed(shost
);
1493 switch (ha
->link_data_rate
) {
1494 case PORT_SPEED_1GB
:
1495 speed
= FC_PORTSPEED_1GBIT
;
1497 case PORT_SPEED_2GB
:
1498 speed
= FC_PORTSPEED_2GBIT
;
1500 case PORT_SPEED_4GB
:
1501 speed
= FC_PORTSPEED_4GBIT
;
1503 case PORT_SPEED_8GB
:
1504 speed
= FC_PORTSPEED_8GBIT
;
1506 case PORT_SPEED_10GB
:
1507 speed
= FC_PORTSPEED_10GBIT
;
1509 case PORT_SPEED_16GB
:
1510 speed
= FC_PORTSPEED_16GBIT
;
1513 fc_host_speed(shost
) = speed
;
1517 qla2x00_get_host_port_type(struct Scsi_Host
*shost
)
1519 scsi_qla_host_t
*vha
= shost_priv(shost
);
1520 uint32_t port_type
= FC_PORTTYPE_UNKNOWN
;
1523 fc_host_port_type(shost
) = FC_PORTTYPE_NPIV
;
1526 switch (vha
->hw
->current_topology
) {
1528 port_type
= FC_PORTTYPE_LPORT
;
1531 port_type
= FC_PORTTYPE_NLPORT
;
1534 port_type
= FC_PORTTYPE_PTP
;
1537 port_type
= FC_PORTTYPE_NPORT
;
1540 fc_host_port_type(shost
) = port_type
;
1544 qla2x00_get_starget_node_name(struct scsi_target
*starget
)
1546 struct Scsi_Host
*host
= dev_to_shost(starget
->dev
.parent
);
1547 scsi_qla_host_t
*vha
= shost_priv(host
);
1551 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
1552 if (fcport
->rport
&&
1553 starget
->id
== fcport
->rport
->scsi_target_id
) {
1554 node_name
= wwn_to_u64(fcport
->node_name
);
1559 fc_starget_node_name(starget
) = node_name
;
1563 qla2x00_get_starget_port_name(struct scsi_target
*starget
)
1565 struct Scsi_Host
*host
= dev_to_shost(starget
->dev
.parent
);
1566 scsi_qla_host_t
*vha
= shost_priv(host
);
1570 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
1571 if (fcport
->rport
&&
1572 starget
->id
== fcport
->rport
->scsi_target_id
) {
1573 port_name
= wwn_to_u64(fcport
->port_name
);
1578 fc_starget_port_name(starget
) = port_name
;
1582 qla2x00_get_starget_port_id(struct scsi_target
*starget
)
1584 struct Scsi_Host
*host
= dev_to_shost(starget
->dev
.parent
);
1585 scsi_qla_host_t
*vha
= shost_priv(host
);
1587 uint32_t port_id
= ~0U;
1589 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
1590 if (fcport
->rport
&&
1591 starget
->id
== fcport
->rport
->scsi_target_id
) {
1592 port_id
= fcport
->d_id
.b
.domain
<< 16 |
1593 fcport
->d_id
.b
.area
<< 8 | fcport
->d_id
.b
.al_pa
;
1598 fc_starget_port_id(starget
) = port_id
;
1602 qla2x00_set_rport_loss_tmo(struct fc_rport
*rport
, uint32_t timeout
)
1605 rport
->dev_loss_tmo
= timeout
;
1607 rport
->dev_loss_tmo
= 1;
1611 qla2x00_dev_loss_tmo_callbk(struct fc_rport
*rport
)
1613 struct Scsi_Host
*host
= rport_to_shost(rport
);
1614 fc_port_t
*fcport
= *(fc_port_t
**)rport
->dd_data
;
1615 unsigned long flags
;
1620 /* Now that the rport has been deleted, set the fcport state to
1622 qla2x00_set_fcport_state(fcport
, FCS_DEVICE_DEAD
);
1625 * Transport has effectively 'deleted' the rport, clear
1626 * all local references.
1628 spin_lock_irqsave(host
->host_lock
, flags
);
1629 fcport
->rport
= fcport
->drport
= NULL
;
1630 *((fc_port_t
**)rport
->dd_data
) = NULL
;
1631 spin_unlock_irqrestore(host
->host_lock
, flags
);
1633 if (test_bit(ABORT_ISP_ACTIVE
, &fcport
->vha
->dpc_flags
))
1636 if (unlikely(pci_channel_offline(fcport
->vha
->hw
->pdev
))) {
1637 qla2x00_abort_all_cmds(fcport
->vha
, DID_NO_CONNECT
<< 16);
1643 qla2x00_terminate_rport_io(struct fc_rport
*rport
)
1645 fc_port_t
*fcport
= *(fc_port_t
**)rport
->dd_data
;
1650 if (test_bit(ABORT_ISP_ACTIVE
, &fcport
->vha
->dpc_flags
))
1653 if (unlikely(pci_channel_offline(fcport
->vha
->hw
->pdev
))) {
1654 qla2x00_abort_all_cmds(fcport
->vha
, DID_NO_CONNECT
<< 16);
1658 * At this point all fcport's software-states are cleared. Perform any
1659 * final cleanup of firmware resources (PCBs and XCBs).
1661 if (fcport
->loop_id
!= FC_NO_LOOP_ID
) {
1662 if (IS_FWI2_CAPABLE(fcport
->vha
->hw
))
1663 fcport
->vha
->hw
->isp_ops
->fabric_logout(fcport
->vha
,
1664 fcport
->loop_id
, fcport
->d_id
.b
.domain
,
1665 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
);
1667 qla2x00_port_logout(fcport
->vha
, fcport
);
1672 qla2x00_issue_lip(struct Scsi_Host
*shost
)
1674 scsi_qla_host_t
*vha
= shost_priv(shost
);
1676 if (IS_QLAFX00(vha
->hw
))
1679 qla2x00_loop_reset(vha
);
1683 static struct fc_host_statistics
*
1684 qla2x00_get_fc_host_stats(struct Scsi_Host
*shost
)
1686 scsi_qla_host_t
*vha
= shost_priv(shost
);
1687 struct qla_hw_data
*ha
= vha
->hw
;
1688 struct scsi_qla_host
*base_vha
= pci_get_drvdata(ha
->pdev
);
1690 struct link_statistics
*stats
;
1691 dma_addr_t stats_dma
;
1692 struct fc_host_statistics
*pfc_host_stat
;
1694 pfc_host_stat
= &vha
->fc_host_stat
;
1695 memset(pfc_host_stat
, -1, sizeof(struct fc_host_statistics
));
1697 if (IS_QLAFX00(vha
->hw
))
1700 if (test_bit(UNLOADING
, &vha
->dpc_flags
))
1703 if (unlikely(pci_channel_offline(ha
->pdev
)))
1706 if (qla2x00_reset_active(vha
))
1709 stats
= dma_pool_alloc(ha
->s_dma_pool
, GFP_KERNEL
, &stats_dma
);
1710 if (stats
== NULL
) {
1711 ql_log(ql_log_warn
, vha
, 0x707d,
1712 "Failed to allocate memory for stats.\n");
1715 memset(stats
, 0, DMA_POOL_SIZE
);
1717 rval
= QLA_FUNCTION_FAILED
;
1718 if (IS_FWI2_CAPABLE(ha
)) {
1719 rval
= qla24xx_get_isp_stats(base_vha
, stats
, stats_dma
);
1720 } else if (atomic_read(&base_vha
->loop_state
) == LOOP_READY
&&
1722 /* Must be in a 'READY' state for statistics retrieval. */
1723 rval
= qla2x00_get_link_status(base_vha
, base_vha
->loop_id
,
1727 if (rval
!= QLA_SUCCESS
)
1730 pfc_host_stat
->link_failure_count
= stats
->link_fail_cnt
;
1731 pfc_host_stat
->loss_of_sync_count
= stats
->loss_sync_cnt
;
1732 pfc_host_stat
->loss_of_signal_count
= stats
->loss_sig_cnt
;
1733 pfc_host_stat
->prim_seq_protocol_err_count
= stats
->prim_seq_err_cnt
;
1734 pfc_host_stat
->invalid_tx_word_count
= stats
->inval_xmit_word_cnt
;
1735 pfc_host_stat
->invalid_crc_count
= stats
->inval_crc_cnt
;
1736 if (IS_FWI2_CAPABLE(ha
)) {
1737 pfc_host_stat
->lip_count
= stats
->lip_cnt
;
1738 pfc_host_stat
->tx_frames
= stats
->tx_frames
;
1739 pfc_host_stat
->rx_frames
= stats
->rx_frames
;
1740 pfc_host_stat
->dumped_frames
= stats
->discarded_frames
;
1741 pfc_host_stat
->nos_count
= stats
->nos_rcvd
;
1742 pfc_host_stat
->error_frames
=
1743 stats
->dropped_frames
+ stats
->discarded_frames
;
1744 pfc_host_stat
->rx_words
= vha
->qla_stats
.input_bytes
;
1745 pfc_host_stat
->tx_words
= vha
->qla_stats
.output_bytes
;
1747 pfc_host_stat
->fcp_control_requests
= vha
->qla_stats
.control_requests
;
1748 pfc_host_stat
->fcp_input_requests
= vha
->qla_stats
.input_requests
;
1749 pfc_host_stat
->fcp_output_requests
= vha
->qla_stats
.output_requests
;
1750 pfc_host_stat
->fcp_input_megabytes
= vha
->qla_stats
.input_bytes
>> 20;
1751 pfc_host_stat
->fcp_output_megabytes
= vha
->qla_stats
.output_bytes
>> 20;
1752 pfc_host_stat
->seconds_since_last_reset
=
1753 get_jiffies_64() - vha
->qla_stats
.jiffies_at_last_reset
;
1754 do_div(pfc_host_stat
->seconds_since_last_reset
, HZ
);
1757 dma_pool_free(ha
->s_dma_pool
, stats
, stats_dma
);
1759 return pfc_host_stat
;
1763 qla2x00_reset_host_stats(struct Scsi_Host
*shost
)
1765 scsi_qla_host_t
*vha
= shost_priv(shost
);
1767 memset(&vha
->fc_host_stat
, 0, sizeof(vha
->fc_host_stat
));
1769 vha
->qla_stats
.jiffies_at_last_reset
= get_jiffies_64();
1773 qla2x00_get_host_symbolic_name(struct Scsi_Host
*shost
)
1775 scsi_qla_host_t
*vha
= shost_priv(shost
);
1777 qla2x00_get_sym_node_name(vha
, fc_host_symbolic_name(shost
));
1781 qla2x00_set_host_system_hostname(struct Scsi_Host
*shost
)
1783 scsi_qla_host_t
*vha
= shost_priv(shost
);
1785 set_bit(REGISTER_FDMI_NEEDED
, &vha
->dpc_flags
);
1789 qla2x00_get_host_fabric_name(struct Scsi_Host
*shost
)
1791 scsi_qla_host_t
*vha
= shost_priv(shost
);
1792 uint8_t node_name
[WWN_SIZE
] = { 0xFF, 0xFF, 0xFF, 0xFF, \
1793 0xFF, 0xFF, 0xFF, 0xFF};
1794 u64 fabric_name
= wwn_to_u64(node_name
);
1796 if (vha
->device_flags
& SWITCH_FOUND
)
1797 fabric_name
= wwn_to_u64(vha
->fabric_node_name
);
1799 fc_host_fabric_name(shost
) = fabric_name
;
1803 qla2x00_get_host_port_state(struct Scsi_Host
*shost
)
1805 scsi_qla_host_t
*vha
= shost_priv(shost
);
1806 struct scsi_qla_host
*base_vha
= pci_get_drvdata(vha
->hw
->pdev
);
1808 if (!base_vha
->flags
.online
) {
1809 fc_host_port_state(shost
) = FC_PORTSTATE_OFFLINE
;
1813 switch (atomic_read(&base_vha
->loop_state
)) {
1815 fc_host_port_state(shost
) = FC_PORTSTATE_DIAGNOSTICS
;
1818 if (test_bit(LOOP_RESYNC_NEEDED
, &base_vha
->dpc_flags
))
1819 fc_host_port_state(shost
) = FC_PORTSTATE_DIAGNOSTICS
;
1821 fc_host_port_state(shost
) = FC_PORTSTATE_LINKDOWN
;
1824 fc_host_port_state(shost
) = FC_PORTSTATE_LINKDOWN
;
1827 fc_host_port_state(shost
) = FC_PORTSTATE_ONLINE
;
1830 fc_host_port_state(shost
) = FC_PORTSTATE_UNKNOWN
;
1836 qla24xx_vport_create(struct fc_vport
*fc_vport
, bool disable
)
1840 scsi_qla_host_t
*base_vha
= shost_priv(fc_vport
->shost
);
1841 scsi_qla_host_t
*vha
= NULL
;
1842 struct qla_hw_data
*ha
= base_vha
->hw
;
1843 uint16_t options
= 0;
1845 struct req_que
*req
= ha
->req_q_map
[0];
1847 ret
= qla24xx_vport_create_req_sanity_check(fc_vport
);
1849 ql_log(ql_log_warn
, vha
, 0x707e,
1850 "Vport sanity check failed, status %x\n", ret
);
1854 vha
= qla24xx_create_vhost(fc_vport
);
1856 ql_log(ql_log_warn
, vha
, 0x707f, "Vport create host failed.\n");
1857 return FC_VPORT_FAILED
;
1860 atomic_set(&vha
->vp_state
, VP_OFFLINE
);
1861 fc_vport_set_state(fc_vport
, FC_VPORT_DISABLED
);
1863 atomic_set(&vha
->vp_state
, VP_FAILED
);
1865 /* ready to create vport */
1866 ql_log(ql_log_info
, vha
, 0x7080,
1867 "VP entry id %d assigned.\n", vha
->vp_idx
);
1869 /* initialized vport states */
1870 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
1871 vha
->vp_err_state
= VP_ERR_PORTDWN
;
1872 vha
->vp_prev_err_state
= VP_ERR_UNKWN
;
1873 /* Check if physical ha port is Up */
1874 if (atomic_read(&base_vha
->loop_state
) == LOOP_DOWN
||
1875 atomic_read(&base_vha
->loop_state
) == LOOP_DEAD
) {
1876 /* Don't retry or attempt login of this virtual port */
1877 ql_dbg(ql_dbg_user
, vha
, 0x7081,
1878 "Vport loop state is not UP.\n");
1879 atomic_set(&vha
->loop_state
, LOOP_DEAD
);
1881 fc_vport_set_state(fc_vport
, FC_VPORT_LINKDOWN
);
1884 if (IS_T10_PI_CAPABLE(ha
) && ql2xenabledif
) {
1885 if (ha
->fw_attributes
& BIT_4
) {
1886 int prot
= 0, guard
;
1887 vha
->flags
.difdix_supported
= 1;
1888 ql_dbg(ql_dbg_user
, vha
, 0x7082,
1889 "Registered for DIF/DIX type 1 and 3 protection.\n");
1890 if (ql2xenabledif
== 1)
1891 prot
= SHOST_DIX_TYPE0_PROTECTION
;
1892 scsi_host_set_prot(vha
->host
,
1893 prot
| SHOST_DIF_TYPE1_PROTECTION
1894 | SHOST_DIF_TYPE2_PROTECTION
1895 | SHOST_DIF_TYPE3_PROTECTION
1896 | SHOST_DIX_TYPE1_PROTECTION
1897 | SHOST_DIX_TYPE2_PROTECTION
1898 | SHOST_DIX_TYPE3_PROTECTION
);
1900 guard
= SHOST_DIX_GUARD_CRC
;
1902 if (IS_PI_IPGUARD_CAPABLE(ha
) &&
1903 (ql2xenabledif
> 1 || IS_PI_DIFB_DIX0_CAPABLE(ha
)))
1904 guard
|= SHOST_DIX_GUARD_IP
;
1906 scsi_host_set_guard(vha
->host
, guard
);
1908 vha
->flags
.difdix_supported
= 0;
1911 if (scsi_add_host_with_dma(vha
->host
, &fc_vport
->dev
,
1913 ql_dbg(ql_dbg_user
, vha
, 0x7083,
1914 "scsi_add_host failure for VP[%d].\n", vha
->vp_idx
);
1915 goto vport_create_failed_2
;
1918 /* initialize attributes */
1919 fc_host_dev_loss_tmo(vha
->host
) = ha
->port_down_retry_count
;
1920 fc_host_node_name(vha
->host
) = wwn_to_u64(vha
->node_name
);
1921 fc_host_port_name(vha
->host
) = wwn_to_u64(vha
->port_name
);
1922 fc_host_supported_classes(vha
->host
) =
1923 fc_host_supported_classes(base_vha
->host
);
1924 fc_host_supported_speeds(vha
->host
) =
1925 fc_host_supported_speeds(base_vha
->host
);
1927 qlt_vport_create(vha
, ha
);
1928 qla24xx_vport_disable(fc_vport
, disable
);
1930 if (ha
->flags
.cpu_affinity_enabled
) {
1931 req
= ha
->req_q_map
[1];
1932 ql_dbg(ql_dbg_multiq
, vha
, 0xc000,
1933 "Request queue %p attached with "
1934 "VP[%d], cpu affinity =%d\n",
1935 req
, vha
->vp_idx
, ha
->flags
.cpu_affinity_enabled
);
1937 } else if (ql2xmaxqueues
== 1 || !ha
->npiv_info
)
1939 /* Create a request queue in QoS mode for the vport */
1940 for (cnt
= 0; cnt
< ha
->nvram_npiv_size
; cnt
++) {
1941 if (memcmp(ha
->npiv_info
[cnt
].port_name
, vha
->port_name
, 8) == 0
1942 && memcmp(ha
->npiv_info
[cnt
].node_name
, vha
->node_name
,
1944 qos
= ha
->npiv_info
[cnt
].q_qos
;
1950 ret
= qla25xx_create_req_que(ha
, options
, vha
->vp_idx
, 0, 0,
1953 ql_log(ql_log_warn
, vha
, 0x7084,
1954 "Can't create request queue for VP[%d]\n",
1957 ql_dbg(ql_dbg_multiq
, vha
, 0xc001,
1958 "Request Que:%d Q0s: %d) created for VP[%d]\n",
1959 ret
, qos
, vha
->vp_idx
);
1960 ql_dbg(ql_dbg_user
, vha
, 0x7085,
1961 "Request Que:%d Q0s: %d) created for VP[%d]\n",
1962 ret
, qos
, vha
->vp_idx
);
1963 req
= ha
->req_q_map
[ret
];
1971 vport_create_failed_2
:
1972 qla24xx_disable_vp(vha
);
1973 qla24xx_deallocate_vp_id(vha
);
1974 scsi_host_put(vha
->host
);
1975 return FC_VPORT_FAILED
;
1979 qla24xx_vport_delete(struct fc_vport
*fc_vport
)
1981 scsi_qla_host_t
*vha
= fc_vport
->dd_data
;
1982 struct qla_hw_data
*ha
= vha
->hw
;
1983 uint16_t id
= vha
->vp_idx
;
1985 while (test_bit(LOOP_RESYNC_ACTIVE
, &vha
->dpc_flags
) ||
1986 test_bit(FCPORT_UPDATE_NEEDED
, &vha
->dpc_flags
))
1989 qla24xx_disable_vp(vha
);
1991 vha
->flags
.delete_progress
= 1;
1993 qlt_remove_target(ha
, vha
);
1995 fc_remove_host(vha
->host
);
1997 scsi_remove_host(vha
->host
);
1999 /* Allow timer to run to drain queued items, when removing vp */
2000 qla24xx_deallocate_vp_id(vha
);
2002 if (vha
->timer_active
) {
2003 qla2x00_vp_stop_timer(vha
);
2004 ql_dbg(ql_dbg_user
, vha
, 0x7086,
2005 "Timer for the VP[%d] has stopped\n", vha
->vp_idx
);
2008 BUG_ON(atomic_read(&vha
->vref_count
));
2010 qla2x00_free_fcports(vha
);
2012 mutex_lock(&ha
->vport_lock
);
2013 ha
->cur_vport_count
--;
2014 clear_bit(vha
->vp_idx
, ha
->vp_idx_map
);
2015 mutex_unlock(&ha
->vport_lock
);
2017 if (vha
->req
->id
&& !ha
->flags
.cpu_affinity_enabled
) {
2018 if (qla25xx_delete_req_que(vha
, vha
->req
) != QLA_SUCCESS
)
2019 ql_log(ql_log_warn
, vha
, 0x7087,
2020 "Queue delete failed.\n");
2023 ql_log(ql_log_info
, vha
, 0x7088, "VP[%d] deleted.\n", id
);
2024 scsi_host_put(vha
->host
);
2029 qla24xx_vport_disable(struct fc_vport
*fc_vport
, bool disable
)
2031 scsi_qla_host_t
*vha
= fc_vport
->dd_data
;
2034 qla24xx_disable_vp(vha
);
2036 qla24xx_enable_vp(vha
);
2041 struct fc_function_template qla2xxx_transport_functions
= {
2043 .show_host_node_name
= 1,
2044 .show_host_port_name
= 1,
2045 .show_host_supported_classes
= 1,
2046 .show_host_supported_speeds
= 1,
2048 .get_host_port_id
= qla2x00_get_host_port_id
,
2049 .show_host_port_id
= 1,
2050 .get_host_speed
= qla2x00_get_host_speed
,
2051 .show_host_speed
= 1,
2052 .get_host_port_type
= qla2x00_get_host_port_type
,
2053 .show_host_port_type
= 1,
2054 .get_host_symbolic_name
= qla2x00_get_host_symbolic_name
,
2055 .show_host_symbolic_name
= 1,
2056 .set_host_system_hostname
= qla2x00_set_host_system_hostname
,
2057 .show_host_system_hostname
= 1,
2058 .get_host_fabric_name
= qla2x00_get_host_fabric_name
,
2059 .show_host_fabric_name
= 1,
2060 .get_host_port_state
= qla2x00_get_host_port_state
,
2061 .show_host_port_state
= 1,
2063 .dd_fcrport_size
= sizeof(struct fc_port
*),
2064 .show_rport_supported_classes
= 1,
2066 .get_starget_node_name
= qla2x00_get_starget_node_name
,
2067 .show_starget_node_name
= 1,
2068 .get_starget_port_name
= qla2x00_get_starget_port_name
,
2069 .show_starget_port_name
= 1,
2070 .get_starget_port_id
= qla2x00_get_starget_port_id
,
2071 .show_starget_port_id
= 1,
2073 .set_rport_dev_loss_tmo
= qla2x00_set_rport_loss_tmo
,
2074 .show_rport_dev_loss_tmo
= 1,
2076 .issue_fc_host_lip
= qla2x00_issue_lip
,
2077 .dev_loss_tmo_callbk
= qla2x00_dev_loss_tmo_callbk
,
2078 .terminate_rport_io
= qla2x00_terminate_rport_io
,
2079 .get_fc_host_stats
= qla2x00_get_fc_host_stats
,
2080 .reset_fc_host_stats
= qla2x00_reset_host_stats
,
2082 .vport_create
= qla24xx_vport_create
,
2083 .vport_disable
= qla24xx_vport_disable
,
2084 .vport_delete
= qla24xx_vport_delete
,
2085 .bsg_request
= qla24xx_bsg_request
,
2086 .bsg_timeout
= qla24xx_bsg_timeout
,
2089 struct fc_function_template qla2xxx_transport_vport_functions
= {
2091 .show_host_node_name
= 1,
2092 .show_host_port_name
= 1,
2093 .show_host_supported_classes
= 1,
2095 .get_host_port_id
= qla2x00_get_host_port_id
,
2096 .show_host_port_id
= 1,
2097 .get_host_speed
= qla2x00_get_host_speed
,
2098 .show_host_speed
= 1,
2099 .get_host_port_type
= qla2x00_get_host_port_type
,
2100 .show_host_port_type
= 1,
2101 .get_host_symbolic_name
= qla2x00_get_host_symbolic_name
,
2102 .show_host_symbolic_name
= 1,
2103 .set_host_system_hostname
= qla2x00_set_host_system_hostname
,
2104 .show_host_system_hostname
= 1,
2105 .get_host_fabric_name
= qla2x00_get_host_fabric_name
,
2106 .show_host_fabric_name
= 1,
2107 .get_host_port_state
= qla2x00_get_host_port_state
,
2108 .show_host_port_state
= 1,
2110 .dd_fcrport_size
= sizeof(struct fc_port
*),
2111 .show_rport_supported_classes
= 1,
2113 .get_starget_node_name
= qla2x00_get_starget_node_name
,
2114 .show_starget_node_name
= 1,
2115 .get_starget_port_name
= qla2x00_get_starget_port_name
,
2116 .show_starget_port_name
= 1,
2117 .get_starget_port_id
= qla2x00_get_starget_port_id
,
2118 .show_starget_port_id
= 1,
2120 .set_rport_dev_loss_tmo
= qla2x00_set_rport_loss_tmo
,
2121 .show_rport_dev_loss_tmo
= 1,
2123 .issue_fc_host_lip
= qla2x00_issue_lip
,
2124 .dev_loss_tmo_callbk
= qla2x00_dev_loss_tmo_callbk
,
2125 .terminate_rport_io
= qla2x00_terminate_rport_io
,
2126 .get_fc_host_stats
= qla2x00_get_fc_host_stats
,
2127 .reset_fc_host_stats
= qla2x00_reset_host_stats
,
2129 .bsg_request
= qla24xx_bsg_request
,
2130 .bsg_timeout
= qla24xx_bsg_timeout
,
2134 qla2x00_init_host_attr(scsi_qla_host_t
*vha
)
2136 struct qla_hw_data
*ha
= vha
->hw
;
2137 u32 speed
= FC_PORTSPEED_UNKNOWN
;
2139 fc_host_dev_loss_tmo(vha
->host
) = ha
->port_down_retry_count
;
2140 fc_host_node_name(vha
->host
) = wwn_to_u64(vha
->node_name
);
2141 fc_host_port_name(vha
->host
) = wwn_to_u64(vha
->port_name
);
2142 fc_host_supported_classes(vha
->host
) = ha
->tgt
.enable_class_2
?
2143 (FC_COS_CLASS2
|FC_COS_CLASS3
) : FC_COS_CLASS3
;
2144 fc_host_max_npiv_vports(vha
->host
) = ha
->max_npiv_vports
;
2145 fc_host_npiv_vports_inuse(vha
->host
) = ha
->cur_vport_count
;
2147 if (IS_CNA_CAPABLE(ha
))
2148 speed
= FC_PORTSPEED_10GBIT
;
2149 else if (IS_QLA2031(ha
))
2150 speed
= FC_PORTSPEED_16GBIT
| FC_PORTSPEED_8GBIT
|
2152 else if (IS_QLA25XX(ha
))
2153 speed
= FC_PORTSPEED_8GBIT
| FC_PORTSPEED_4GBIT
|
2154 FC_PORTSPEED_2GBIT
| FC_PORTSPEED_1GBIT
;
2155 else if (IS_QLA24XX_TYPE(ha
))
2156 speed
= FC_PORTSPEED_4GBIT
| FC_PORTSPEED_2GBIT
|
2158 else if (IS_QLA23XX(ha
))
2159 speed
= FC_PORTSPEED_2GBIT
| FC_PORTSPEED_1GBIT
;
2160 else if (IS_QLAFX00(ha
))
2161 speed
= FC_PORTSPEED_8GBIT
| FC_PORTSPEED_4GBIT
|
2162 FC_PORTSPEED_2GBIT
| FC_PORTSPEED_1GBIT
;
2164 speed
= FC_PORTSPEED_1GBIT
;
2165 fc_host_supported_speeds(vha
->host
) = speed
;