2 * QLogic Fibre Channel HBA Driver
3 * Copyright (c) 2003-2011 QLogic Corporation
5 * See LICENSE.qla2xxx for copyright and licensing details.
9 #include <linux/kthread.h>
10 #include <linux/vmalloc.h>
11 #include <linux/slab.h>
12 #include <linux/delay.h>
14 static int qla24xx_vport_disable(struct fc_vport
*, bool);
16 /* SYSFS attributes --------------------------------------------------------- */
19 qla2x00_sysfs_read_fw_dump(struct file
*filp
, struct kobject
*kobj
,
20 struct bin_attribute
*bin_attr
,
21 char *buf
, loff_t off
, size_t count
)
23 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
24 struct device
, kobj
)));
25 struct qla_hw_data
*ha
= vha
->hw
;
28 if (ha
->fw_dump_reading
== 0)
32 if (off
< ha
->md_template_size
) {
33 rval
= memory_read_from_buffer(buf
, count
,
34 &off
, ha
->md_tmplt_hdr
, ha
->md_template_size
);
37 off
-= ha
->md_template_size
;
38 rval
= memory_read_from_buffer(buf
, count
,
39 &off
, ha
->md_dump
, ha
->md_dump_size
);
42 return memory_read_from_buffer(buf
, count
, &off
, ha
->fw_dump
,
47 qla2x00_sysfs_write_fw_dump(struct file
*filp
, struct kobject
*kobj
,
48 struct bin_attribute
*bin_attr
,
49 char *buf
, loff_t off
, size_t count
)
51 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
52 struct device
, kobj
)));
53 struct qla_hw_data
*ha
= vha
->hw
;
59 reading
= simple_strtol(buf
, NULL
, 10);
62 if (!ha
->fw_dump_reading
)
65 ql_log(ql_log_info
, vha
, 0x705d,
66 "Firmware dump cleared on (%ld).\n", vha
->host_no
);
68 if (IS_QLA82XX(vha
->hw
)) {
72 ha
->fw_dump_reading
= 0;
76 if (ha
->fw_dumped
&& !ha
->fw_dump_reading
) {
77 ha
->fw_dump_reading
= 1;
79 ql_log(ql_log_info
, vha
, 0x705e,
80 "Raw firmware dump ready for read on (%ld).\n",
85 qla2x00_alloc_fw_dump(vha
);
90 qla82xx_set_reset_owner(vha
);
91 qla82xx_idc_unlock(ha
);
93 qla2x00_system_error(vha
);
98 ql_dbg(ql_dbg_user
, vha
, 0x705b,
99 "MiniDump supported with this firmware.\n");
101 ql_dbg(ql_dbg_user
, vha
, 0x709d,
102 "MiniDump not supported with this firmware.\n");
107 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
113 static struct bin_attribute sysfs_fw_dump_attr
= {
116 .mode
= S_IRUSR
| S_IWUSR
,
119 .read
= qla2x00_sysfs_read_fw_dump
,
120 .write
= qla2x00_sysfs_write_fw_dump
,
124 qla2x00_sysfs_read_nvram(struct file
*filp
, struct kobject
*kobj
,
125 struct bin_attribute
*bin_attr
,
126 char *buf
, loff_t off
, size_t count
)
128 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
129 struct device
, kobj
)));
130 struct qla_hw_data
*ha
= vha
->hw
;
132 if (!capable(CAP_SYS_ADMIN
))
135 if (IS_NOCACHE_VPD_TYPE(ha
))
136 ha
->isp_ops
->read_optrom(vha
, ha
->nvram
, ha
->flt_region_nvram
<< 2,
138 return memory_read_from_buffer(buf
, count
, &off
, ha
->nvram
,
143 qla2x00_sysfs_write_nvram(struct file
*filp
, struct kobject
*kobj
,
144 struct bin_attribute
*bin_attr
,
145 char *buf
, loff_t off
, size_t count
)
147 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
148 struct device
, kobj
)));
149 struct qla_hw_data
*ha
= vha
->hw
;
152 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
!= ha
->nvram_size
||
153 !ha
->isp_ops
->write_nvram
)
156 /* Checksum NVRAM. */
157 if (IS_FWI2_CAPABLE(ha
)) {
161 iter
= (uint32_t *)buf
;
163 for (cnt
= 0; cnt
< ((count
>> 2) - 1); cnt
++)
164 chksum
+= le32_to_cpu(*iter
++);
165 chksum
= ~chksum
+ 1;
166 *iter
= cpu_to_le32(chksum
);
171 iter
= (uint8_t *)buf
;
173 for (cnt
= 0; cnt
< count
- 1; cnt
++)
175 chksum
= ~chksum
+ 1;
179 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
) {
180 ql_log(ql_log_warn
, vha
, 0x705f,
181 "HBA not online, failing NVRAM update.\n");
186 ha
->isp_ops
->write_nvram(vha
, (uint8_t *)buf
, ha
->nvram_base
, count
);
187 ha
->isp_ops
->read_nvram(vha
, (uint8_t *)ha
->nvram
, ha
->nvram_base
,
190 ql_dbg(ql_dbg_user
, vha
, 0x7060,
191 "Setting ISP_ABORT_NEEDED\n");
192 /* NVRAM settings take effect immediately. */
193 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
194 qla2xxx_wake_dpc(vha
);
195 qla2x00_wait_for_chip_reset(vha
);
200 static struct bin_attribute sysfs_nvram_attr
= {
203 .mode
= S_IRUSR
| S_IWUSR
,
206 .read
= qla2x00_sysfs_read_nvram
,
207 .write
= qla2x00_sysfs_write_nvram
,
211 qla2x00_sysfs_read_optrom(struct file
*filp
, struct kobject
*kobj
,
212 struct bin_attribute
*bin_attr
,
213 char *buf
, loff_t off
, size_t count
)
215 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
216 struct device
, kobj
)));
217 struct qla_hw_data
*ha
= vha
->hw
;
219 if (ha
->optrom_state
!= QLA_SREADING
)
222 return memory_read_from_buffer(buf
, count
, &off
, ha
->optrom_buffer
,
223 ha
->optrom_region_size
);
227 qla2x00_sysfs_write_optrom(struct file
*filp
, struct kobject
*kobj
,
228 struct bin_attribute
*bin_attr
,
229 char *buf
, loff_t off
, size_t count
)
231 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
232 struct device
, kobj
)));
233 struct qla_hw_data
*ha
= vha
->hw
;
235 if (ha
->optrom_state
!= QLA_SWRITING
)
237 if (off
> ha
->optrom_region_size
)
239 if (off
+ count
> ha
->optrom_region_size
)
240 count
= ha
->optrom_region_size
- off
;
242 memcpy(&ha
->optrom_buffer
[off
], buf
, count
);
247 static struct bin_attribute sysfs_optrom_attr
= {
250 .mode
= S_IRUSR
| S_IWUSR
,
253 .read
= qla2x00_sysfs_read_optrom
,
254 .write
= qla2x00_sysfs_write_optrom
,
258 qla2x00_sysfs_write_optrom_ctl(struct file
*filp
, struct kobject
*kobj
,
259 struct bin_attribute
*bin_attr
,
260 char *buf
, loff_t off
, size_t count
)
262 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
263 struct device
, kobj
)));
264 struct qla_hw_data
*ha
= vha
->hw
;
267 uint32_t size
= ha
->optrom_size
;
273 if (unlikely(pci_channel_offline(ha
->pdev
)))
276 if (sscanf(buf
, "%d:%x:%x", &val
, &start
, &size
) < 1)
278 if (start
> ha
->optrom_size
)
283 if (ha
->optrom_state
!= QLA_SREADING
&&
284 ha
->optrom_state
!= QLA_SWRITING
)
287 ha
->optrom_state
= QLA_SWAITING
;
289 ql_dbg(ql_dbg_user
, vha
, 0x7061,
290 "Freeing flash region allocation -- 0x%x bytes.\n",
291 ha
->optrom_region_size
);
293 vfree(ha
->optrom_buffer
);
294 ha
->optrom_buffer
= NULL
;
297 if (ha
->optrom_state
!= QLA_SWAITING
)
300 ha
->optrom_region_start
= start
;
301 ha
->optrom_region_size
= start
+ size
> ha
->optrom_size
?
302 ha
->optrom_size
- start
: size
;
304 ha
->optrom_state
= QLA_SREADING
;
305 ha
->optrom_buffer
= vmalloc(ha
->optrom_region_size
);
306 if (ha
->optrom_buffer
== NULL
) {
307 ql_log(ql_log_warn
, vha
, 0x7062,
308 "Unable to allocate memory for optrom retrieval "
309 "(%x).\n", ha
->optrom_region_size
);
311 ha
->optrom_state
= QLA_SWAITING
;
315 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
) {
316 ql_log(ql_log_warn
, vha
, 0x7063,
317 "HBA not online, failing NVRAM update.\n");
321 ql_dbg(ql_dbg_user
, vha
, 0x7064,
322 "Reading flash region -- 0x%x/0x%x.\n",
323 ha
->optrom_region_start
, ha
->optrom_region_size
);
325 memset(ha
->optrom_buffer
, 0, ha
->optrom_region_size
);
326 ha
->isp_ops
->read_optrom(vha
, ha
->optrom_buffer
,
327 ha
->optrom_region_start
, ha
->optrom_region_size
);
330 if (ha
->optrom_state
!= QLA_SWAITING
)
334 * We need to be more restrictive on which FLASH regions are
335 * allowed to be updated via user-space. Regions accessible
336 * via this method include:
338 * ISP21xx/ISP22xx/ISP23xx type boards:
340 * 0x000000 -> 0x020000 -- Boot code.
342 * ISP2322/ISP24xx type boards:
344 * 0x000000 -> 0x07ffff -- Boot code.
345 * 0x080000 -> 0x0fffff -- Firmware.
347 * ISP25xx type boards:
349 * 0x000000 -> 0x07ffff -- Boot code.
350 * 0x080000 -> 0x0fffff -- Firmware.
351 * 0x120000 -> 0x12ffff -- VPD and HBA parameters.
354 if (ha
->optrom_size
== OPTROM_SIZE_2300
&& start
== 0)
356 else if (start
== (ha
->flt_region_boot
* 4) ||
357 start
== (ha
->flt_region_fw
* 4))
359 else if (IS_QLA25XX(ha
) || IS_QLA8XXX_TYPE(ha
))
362 ql_log(ql_log_warn
, vha
, 0x7065,
363 "Invalid start region 0x%x/0x%x.\n", start
, size
);
367 ha
->optrom_region_start
= start
;
368 ha
->optrom_region_size
= start
+ size
> ha
->optrom_size
?
369 ha
->optrom_size
- start
: size
;
371 ha
->optrom_state
= QLA_SWRITING
;
372 ha
->optrom_buffer
= vmalloc(ha
->optrom_region_size
);
373 if (ha
->optrom_buffer
== NULL
) {
374 ql_log(ql_log_warn
, vha
, 0x7066,
375 "Unable to allocate memory for optrom update "
376 "(%x)\n", ha
->optrom_region_size
);
378 ha
->optrom_state
= QLA_SWAITING
;
382 ql_dbg(ql_dbg_user
, vha
, 0x7067,
383 "Staging flash region write -- 0x%x/0x%x.\n",
384 ha
->optrom_region_start
, ha
->optrom_region_size
);
386 memset(ha
->optrom_buffer
, 0, ha
->optrom_region_size
);
389 if (ha
->optrom_state
!= QLA_SWRITING
)
392 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
) {
393 ql_log(ql_log_warn
, vha
, 0x7068,
394 "HBA not online, failing flash update.\n");
398 ql_dbg(ql_dbg_user
, vha
, 0x7069,
399 "Writing flash region -- 0x%x/0x%x.\n",
400 ha
->optrom_region_start
, ha
->optrom_region_size
);
402 ha
->isp_ops
->write_optrom(vha
, ha
->optrom_buffer
,
403 ha
->optrom_region_start
, ha
->optrom_region_size
);
411 static struct bin_attribute sysfs_optrom_ctl_attr
= {
413 .name
= "optrom_ctl",
417 .write
= qla2x00_sysfs_write_optrom_ctl
,
421 qla2x00_sysfs_read_vpd(struct file
*filp
, struct kobject
*kobj
,
422 struct bin_attribute
*bin_attr
,
423 char *buf
, loff_t off
, size_t count
)
425 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
426 struct device
, kobj
)));
427 struct qla_hw_data
*ha
= vha
->hw
;
429 if (unlikely(pci_channel_offline(ha
->pdev
)))
432 if (!capable(CAP_SYS_ADMIN
))
435 if (IS_NOCACHE_VPD_TYPE(ha
))
436 ha
->isp_ops
->read_optrom(vha
, ha
->vpd
, ha
->flt_region_vpd
<< 2,
438 return memory_read_from_buffer(buf
, count
, &off
, ha
->vpd
, ha
->vpd_size
);
442 qla2x00_sysfs_write_vpd(struct file
*filp
, struct kobject
*kobj
,
443 struct bin_attribute
*bin_attr
,
444 char *buf
, loff_t off
, size_t count
)
446 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
447 struct device
, kobj
)));
448 struct qla_hw_data
*ha
= vha
->hw
;
451 if (unlikely(pci_channel_offline(ha
->pdev
)))
454 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
!= ha
->vpd_size
||
455 !ha
->isp_ops
->write_nvram
)
458 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
) {
459 ql_log(ql_log_warn
, vha
, 0x706a,
460 "HBA not online, failing VPD update.\n");
465 ha
->isp_ops
->write_nvram(vha
, (uint8_t *)buf
, ha
->vpd_base
, count
);
466 ha
->isp_ops
->read_nvram(vha
, (uint8_t *)ha
->vpd
, ha
->vpd_base
, count
);
468 /* Update flash version information for 4Gb & above. */
469 if (!IS_FWI2_CAPABLE(ha
))
472 tmp_data
= vmalloc(256);
474 ql_log(ql_log_warn
, vha
, 0x706b,
475 "Unable to allocate memory for VPD information update.\n");
478 ha
->isp_ops
->get_flash_version(vha
, tmp_data
);
484 static struct bin_attribute sysfs_vpd_attr
= {
487 .mode
= S_IRUSR
| S_IWUSR
,
490 .read
= qla2x00_sysfs_read_vpd
,
491 .write
= qla2x00_sysfs_write_vpd
,
495 qla2x00_sysfs_read_sfp(struct file
*filp
, struct kobject
*kobj
,
496 struct bin_attribute
*bin_attr
,
497 char *buf
, loff_t off
, size_t count
)
499 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
500 struct device
, kobj
)));
501 struct qla_hw_data
*ha
= vha
->hw
;
502 uint16_t iter
, addr
, offset
;
505 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
!= SFP_DEV_SIZE
* 2)
511 ha
->sfp_data
= dma_pool_alloc(ha
->s_dma_pool
, GFP_KERNEL
,
514 ql_log(ql_log_warn
, vha
, 0x706c,
515 "Unable to allocate memory for SFP read-data.\n");
520 memset(ha
->sfp_data
, 0, SFP_BLOCK_SIZE
);
522 for (iter
= 0, offset
= 0; iter
< (SFP_DEV_SIZE
* 2) / SFP_BLOCK_SIZE
;
523 iter
++, offset
+= SFP_BLOCK_SIZE
) {
525 /* Skip to next device address. */
530 rval
= qla2x00_read_sfp(vha
, ha
->sfp_data_dma
, ha
->sfp_data
,
531 addr
, offset
, SFP_BLOCK_SIZE
, 0);
532 if (rval
!= QLA_SUCCESS
) {
533 ql_log(ql_log_warn
, vha
, 0x706d,
534 "Unable to read SFP data (%x/%x/%x).\n", rval
,
539 memcpy(buf
, ha
->sfp_data
, SFP_BLOCK_SIZE
);
540 buf
+= SFP_BLOCK_SIZE
;
546 static struct bin_attribute sysfs_sfp_attr
= {
549 .mode
= S_IRUSR
| S_IWUSR
,
551 .size
= SFP_DEV_SIZE
* 2,
552 .read
= qla2x00_sysfs_read_sfp
,
556 qla2x00_sysfs_write_reset(struct file
*filp
, struct kobject
*kobj
,
557 struct bin_attribute
*bin_attr
,
558 char *buf
, loff_t off
, size_t count
)
560 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
561 struct device
, kobj
)));
562 struct qla_hw_data
*ha
= vha
->hw
;
563 struct scsi_qla_host
*base_vha
= pci_get_drvdata(ha
->pdev
);
569 type
= simple_strtol(buf
, NULL
, 10);
572 ql_log(ql_log_info
, vha
, 0x706e,
573 "Issuing ISP reset.\n");
575 scsi_block_requests(vha
->host
);
576 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
577 if (IS_QLA82XX(ha
)) {
578 qla82xx_idc_lock(ha
);
579 qla82xx_set_reset_owner(vha
);
580 qla82xx_idc_unlock(ha
);
582 qla2xxx_wake_dpc(vha
);
583 qla2x00_wait_for_chip_reset(vha
);
584 scsi_unblock_requests(vha
->host
);
590 ql_log(ql_log_info
, vha
, 0x706f,
591 "Issuing MPI reset.\n");
593 /* Make sure FC side is not in reset */
594 qla2x00_wait_for_hba_online(vha
);
596 /* Issue MPI reset */
597 scsi_block_requests(vha
->host
);
598 if (qla81xx_restart_mpi_firmware(vha
) != QLA_SUCCESS
)
599 ql_log(ql_log_warn
, vha
, 0x7070,
600 "MPI reset failed.\n");
601 scsi_unblock_requests(vha
->host
);
604 if (!IS_QLA82XX(ha
) || vha
!= base_vha
) {
605 ql_log(ql_log_info
, vha
, 0x7071,
606 "FCoE ctx reset no supported.\n");
610 ql_log(ql_log_info
, vha
, 0x7072,
611 "Issuing FCoE ctx reset.\n");
612 set_bit(FCOE_CTX_RESET_NEEDED
, &vha
->dpc_flags
);
613 qla2xxx_wake_dpc(vha
);
614 qla2x00_wait_for_fcoe_ctx_reset(vha
);
620 static struct bin_attribute sysfs_reset_attr
= {
626 .write
= qla2x00_sysfs_write_reset
,
630 qla2x00_sysfs_write_edc(struct file
*filp
, struct kobject
*kobj
,
631 struct bin_attribute
*bin_attr
,
632 char *buf
, loff_t off
, size_t count
)
634 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
635 struct device
, kobj
)));
636 struct qla_hw_data
*ha
= vha
->hw
;
637 uint16_t dev
, adr
, opt
, len
;
640 ha
->edc_data_len
= 0;
642 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
< 8)
646 ha
->edc_data
= dma_pool_alloc(ha
->s_dma_pool
, GFP_KERNEL
,
649 ql_log(ql_log_warn
, vha
, 0x7073,
650 "Unable to allocate memory for EDC write.\n");
655 dev
= le16_to_cpup((void *)&buf
[0]);
656 adr
= le16_to_cpup((void *)&buf
[2]);
657 opt
= le16_to_cpup((void *)&buf
[4]);
658 len
= le16_to_cpup((void *)&buf
[6]);
661 if (len
== 0 || len
> DMA_POOL_SIZE
|| len
> count
- 8)
664 memcpy(ha
->edc_data
, &buf
[8], len
);
666 rval
= qla2x00_write_sfp(vha
, ha
->edc_data_dma
, ha
->edc_data
,
668 if (rval
!= QLA_SUCCESS
) {
669 ql_log(ql_log_warn
, vha
, 0x7074,
670 "Unable to write EDC (%x) %02x:%04x:%02x:%02x:%02hhx\n",
671 rval
, dev
, adr
, opt
, len
, buf
[8]);
678 static struct bin_attribute sysfs_edc_attr
= {
684 .write
= qla2x00_sysfs_write_edc
,
688 qla2x00_sysfs_write_edc_status(struct file
*filp
, struct kobject
*kobj
,
689 struct bin_attribute
*bin_attr
,
690 char *buf
, loff_t off
, size_t count
)
692 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
693 struct device
, kobj
)));
694 struct qla_hw_data
*ha
= vha
->hw
;
695 uint16_t dev
, adr
, opt
, len
;
698 ha
->edc_data_len
= 0;
700 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
< 8)
704 ha
->edc_data
= dma_pool_alloc(ha
->s_dma_pool
, GFP_KERNEL
,
707 ql_log(ql_log_warn
, vha
, 0x708c,
708 "Unable to allocate memory for EDC status.\n");
713 dev
= le16_to_cpup((void *)&buf
[0]);
714 adr
= le16_to_cpup((void *)&buf
[2]);
715 opt
= le16_to_cpup((void *)&buf
[4]);
716 len
= le16_to_cpup((void *)&buf
[6]);
719 if (len
== 0 || len
> DMA_POOL_SIZE
)
722 memset(ha
->edc_data
, 0, len
);
723 rval
= qla2x00_read_sfp(vha
, ha
->edc_data_dma
, ha
->edc_data
,
725 if (rval
!= QLA_SUCCESS
) {
726 ql_log(ql_log_info
, vha
, 0x7075,
727 "Unable to write EDC status (%x) %02x:%04x:%02x:%02x.\n",
728 rval
, dev
, adr
, opt
, len
);
732 ha
->edc_data_len
= len
;
738 qla2x00_sysfs_read_edc_status(struct file
*filp
, struct kobject
*kobj
,
739 struct bin_attribute
*bin_attr
,
740 char *buf
, loff_t off
, size_t count
)
742 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
743 struct device
, kobj
)));
744 struct qla_hw_data
*ha
= vha
->hw
;
746 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
== 0)
749 if (!ha
->edc_data
|| ha
->edc_data_len
== 0 || ha
->edc_data_len
> count
)
752 memcpy(buf
, ha
->edc_data
, ha
->edc_data_len
);
754 return ha
->edc_data_len
;
757 static struct bin_attribute sysfs_edc_status_attr
= {
759 .name
= "edc_status",
760 .mode
= S_IRUSR
| S_IWUSR
,
763 .write
= qla2x00_sysfs_write_edc_status
,
764 .read
= qla2x00_sysfs_read_edc_status
,
768 qla2x00_sysfs_read_xgmac_stats(struct file
*filp
, struct kobject
*kobj
,
769 struct bin_attribute
*bin_attr
,
770 char *buf
, loff_t off
, size_t count
)
772 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
773 struct device
, kobj
)));
774 struct qla_hw_data
*ha
= vha
->hw
;
776 uint16_t actual_size
;
778 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
> XGMAC_DATA_SIZE
)
784 ha
->xgmac_data
= dma_alloc_coherent(&ha
->pdev
->dev
, XGMAC_DATA_SIZE
,
785 &ha
->xgmac_data_dma
, GFP_KERNEL
);
786 if (!ha
->xgmac_data
) {
787 ql_log(ql_log_warn
, vha
, 0x7076,
788 "Unable to allocate memory for XGMAC read-data.\n");
794 memset(ha
->xgmac_data
, 0, XGMAC_DATA_SIZE
);
796 rval
= qla2x00_get_xgmac_stats(vha
, ha
->xgmac_data_dma
,
797 XGMAC_DATA_SIZE
, &actual_size
);
798 if (rval
!= QLA_SUCCESS
) {
799 ql_log(ql_log_warn
, vha
, 0x7077,
800 "Unable to read XGMAC data (%x).\n", rval
);
804 count
= actual_size
> count
? count
: actual_size
;
805 memcpy(buf
, ha
->xgmac_data
, count
);
810 static struct bin_attribute sysfs_xgmac_stats_attr
= {
812 .name
= "xgmac_stats",
816 .read
= qla2x00_sysfs_read_xgmac_stats
,
820 qla2x00_sysfs_read_dcbx_tlv(struct file
*filp
, struct kobject
*kobj
,
821 struct bin_attribute
*bin_attr
,
822 char *buf
, loff_t off
, size_t count
)
824 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
825 struct device
, kobj
)));
826 struct qla_hw_data
*ha
= vha
->hw
;
828 uint16_t actual_size
;
830 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
> DCBX_TLV_DATA_SIZE
)
836 ha
->dcbx_tlv
= dma_alloc_coherent(&ha
->pdev
->dev
, DCBX_TLV_DATA_SIZE
,
837 &ha
->dcbx_tlv_dma
, GFP_KERNEL
);
839 ql_log(ql_log_warn
, vha
, 0x7078,
840 "Unable to allocate memory for DCBX TLV read-data.\n");
846 memset(ha
->dcbx_tlv
, 0, DCBX_TLV_DATA_SIZE
);
848 rval
= qla2x00_get_dcbx_params(vha
, ha
->dcbx_tlv_dma
,
850 if (rval
!= QLA_SUCCESS
) {
851 ql_log(ql_log_warn
, vha
, 0x7079,
852 "Unable to read DCBX TLV (%x).\n", rval
);
856 memcpy(buf
, ha
->dcbx_tlv
, count
);
861 static struct bin_attribute sysfs_dcbx_tlv_attr
= {
867 .read
= qla2x00_sysfs_read_dcbx_tlv
,
870 static struct sysfs_entry
{
872 struct bin_attribute
*attr
;
874 } bin_file_entries
[] = {
875 { "fw_dump", &sysfs_fw_dump_attr
, },
876 { "nvram", &sysfs_nvram_attr
, },
877 { "optrom", &sysfs_optrom_attr
, },
878 { "optrom_ctl", &sysfs_optrom_ctl_attr
, },
879 { "vpd", &sysfs_vpd_attr
, 1 },
880 { "sfp", &sysfs_sfp_attr
, 1 },
881 { "reset", &sysfs_reset_attr
, },
882 { "edc", &sysfs_edc_attr
, 2 },
883 { "edc_status", &sysfs_edc_status_attr
, 2 },
884 { "xgmac_stats", &sysfs_xgmac_stats_attr
, 3 },
885 { "dcbx_tlv", &sysfs_dcbx_tlv_attr
, 3 },
890 qla2x00_alloc_sysfs_attr(scsi_qla_host_t
*vha
)
892 struct Scsi_Host
*host
= vha
->host
;
893 struct sysfs_entry
*iter
;
896 for (iter
= bin_file_entries
; iter
->name
; iter
++) {
897 if (iter
->is4GBp_only
&& !IS_FWI2_CAPABLE(vha
->hw
))
899 if (iter
->is4GBp_only
== 2 && !IS_QLA25XX(vha
->hw
))
901 if (iter
->is4GBp_only
== 3 && !(IS_QLA8XXX_TYPE(vha
->hw
)))
904 ret
= sysfs_create_bin_file(&host
->shost_gendev
.kobj
,
907 ql_log(ql_log_warn
, vha
, 0x00f3,
908 "Unable to create sysfs %s binary attribute (%d).\n",
911 ql_dbg(ql_dbg_init
, vha
, 0x00f4,
912 "Successfully created sysfs %s binary attribure.\n",
918 qla2x00_free_sysfs_attr(scsi_qla_host_t
*vha
)
920 struct Scsi_Host
*host
= vha
->host
;
921 struct sysfs_entry
*iter
;
922 struct qla_hw_data
*ha
= vha
->hw
;
924 for (iter
= bin_file_entries
; iter
->name
; iter
++) {
925 if (iter
->is4GBp_only
&& !IS_FWI2_CAPABLE(ha
))
927 if (iter
->is4GBp_only
== 2 && !IS_QLA25XX(ha
))
929 if (iter
->is4GBp_only
== 3 && !!(IS_QLA8XXX_TYPE(vha
->hw
)))
932 sysfs_remove_bin_file(&host
->shost_gendev
.kobj
,
936 if (ha
->beacon_blink_led
== 1)
937 ha
->isp_ops
->beacon_off(vha
);
940 /* Scsi_Host attributes. */
943 qla2x00_drvr_version_show(struct device
*dev
,
944 struct device_attribute
*attr
, char *buf
)
946 return snprintf(buf
, PAGE_SIZE
, "%s\n", qla2x00_version_str
);
950 qla2x00_fw_version_show(struct device
*dev
,
951 struct device_attribute
*attr
, char *buf
)
953 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
954 struct qla_hw_data
*ha
= vha
->hw
;
957 return snprintf(buf
, PAGE_SIZE
, "%s\n",
958 ha
->isp_ops
->fw_version_str(vha
, fw_str
));
962 qla2x00_serial_num_show(struct device
*dev
, struct device_attribute
*attr
,
965 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
966 struct qla_hw_data
*ha
= vha
->hw
;
969 if (IS_FWI2_CAPABLE(ha
)) {
970 qla2xxx_get_vpd_field(vha
, "SN", buf
, PAGE_SIZE
);
971 return snprintf(buf
, PAGE_SIZE
, "%s\n", buf
);
974 sn
= ((ha
->serial0
& 0x1f) << 16) | (ha
->serial2
<< 8) | ha
->serial1
;
975 return snprintf(buf
, PAGE_SIZE
, "%c%05d\n", 'A' + sn
/ 100000,
980 qla2x00_isp_name_show(struct device
*dev
, struct device_attribute
*attr
,
983 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
984 return snprintf(buf
, PAGE_SIZE
, "ISP%04X\n", vha
->hw
->pdev
->device
);
988 qla2x00_isp_id_show(struct device
*dev
, struct device_attribute
*attr
,
991 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
992 struct qla_hw_data
*ha
= vha
->hw
;
993 return snprintf(buf
, PAGE_SIZE
, "%04x %04x %04x %04x\n",
994 ha
->product_id
[0], ha
->product_id
[1], ha
->product_id
[2],
999 qla2x00_model_name_show(struct device
*dev
, struct device_attribute
*attr
,
1002 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1003 return snprintf(buf
, PAGE_SIZE
, "%s\n", vha
->hw
->model_number
);
1007 qla2x00_model_desc_show(struct device
*dev
, struct device_attribute
*attr
,
1010 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1011 return snprintf(buf
, PAGE_SIZE
, "%s\n",
1012 vha
->hw
->model_desc
? vha
->hw
->model_desc
: "");
1016 qla2x00_pci_info_show(struct device
*dev
, struct device_attribute
*attr
,
1019 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1022 return snprintf(buf
, PAGE_SIZE
, "%s\n",
1023 vha
->hw
->isp_ops
->pci_info_str(vha
, pci_info
));
1027 qla2x00_link_state_show(struct device
*dev
, struct device_attribute
*attr
,
1030 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1031 struct qla_hw_data
*ha
= vha
->hw
;
1034 if (atomic_read(&vha
->loop_state
) == LOOP_DOWN
||
1035 atomic_read(&vha
->loop_state
) == LOOP_DEAD
||
1036 vha
->device_flags
& DFLG_NO_CABLE
)
1037 len
= snprintf(buf
, PAGE_SIZE
, "Link Down\n");
1038 else if (atomic_read(&vha
->loop_state
) != LOOP_READY
||
1039 qla2x00_reset_active(vha
))
1040 len
= snprintf(buf
, PAGE_SIZE
, "Unknown Link State\n");
1042 len
= snprintf(buf
, PAGE_SIZE
, "Link Up - ");
1044 switch (ha
->current_topology
) {
1046 len
+= snprintf(buf
+ len
, PAGE_SIZE
-len
, "Loop\n");
1049 len
+= snprintf(buf
+ len
, PAGE_SIZE
-len
, "FL_Port\n");
1052 len
+= snprintf(buf
+ len
, PAGE_SIZE
-len
,
1053 "N_Port to N_Port\n");
1056 len
+= snprintf(buf
+ len
, PAGE_SIZE
-len
, "F_Port\n");
1059 len
+= snprintf(buf
+ len
, PAGE_SIZE
-len
, "Loop\n");
1067 qla2x00_zio_show(struct device
*dev
, struct device_attribute
*attr
,
1070 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1073 switch (vha
->hw
->zio_mode
) {
1074 case QLA_ZIO_MODE_6
:
1075 len
+= snprintf(buf
+ len
, PAGE_SIZE
-len
, "Mode 6\n");
1077 case QLA_ZIO_DISABLED
:
1078 len
+= snprintf(buf
+ len
, PAGE_SIZE
-len
, "Disabled\n");
1085 qla2x00_zio_store(struct device
*dev
, struct device_attribute
*attr
,
1086 const char *buf
, size_t count
)
1088 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1089 struct qla_hw_data
*ha
= vha
->hw
;
1093 if (!IS_ZIO_SUPPORTED(ha
))
1096 if (sscanf(buf
, "%d", &val
) != 1)
1100 zio_mode
= QLA_ZIO_MODE_6
;
1102 zio_mode
= QLA_ZIO_DISABLED
;
1104 /* Update per-hba values and queue a reset. */
1105 if (zio_mode
!= QLA_ZIO_DISABLED
|| ha
->zio_mode
!= QLA_ZIO_DISABLED
) {
1106 ha
->zio_mode
= zio_mode
;
1107 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
1113 qla2x00_zio_timer_show(struct device
*dev
, struct device_attribute
*attr
,
1116 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1118 return snprintf(buf
, PAGE_SIZE
, "%d us\n", vha
->hw
->zio_timer
* 100);
1122 qla2x00_zio_timer_store(struct device
*dev
, struct device_attribute
*attr
,
1123 const char *buf
, size_t count
)
1125 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1129 if (sscanf(buf
, "%d", &val
) != 1)
1131 if (val
> 25500 || val
< 100)
1134 zio_timer
= (uint16_t)(val
/ 100);
1135 vha
->hw
->zio_timer
= zio_timer
;
1141 qla2x00_beacon_show(struct device
*dev
, struct device_attribute
*attr
,
1144 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1147 if (vha
->hw
->beacon_blink_led
)
1148 len
+= snprintf(buf
+ len
, PAGE_SIZE
-len
, "Enabled\n");
1150 len
+= snprintf(buf
+ len
, PAGE_SIZE
-len
, "Disabled\n");
1155 qla2x00_beacon_store(struct device
*dev
, struct device_attribute
*attr
,
1156 const char *buf
, size_t count
)
1158 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1159 struct qla_hw_data
*ha
= vha
->hw
;
1163 if (IS_QLA2100(ha
) || IS_QLA2200(ha
))
1166 if (test_bit(ABORT_ISP_ACTIVE
, &vha
->dpc_flags
)) {
1167 ql_log(ql_log_warn
, vha
, 0x707a,
1168 "Abort ISP active -- ignoring beacon request.\n");
1172 if (sscanf(buf
, "%d", &val
) != 1)
1176 rval
= ha
->isp_ops
->beacon_on(vha
);
1178 rval
= ha
->isp_ops
->beacon_off(vha
);
1180 if (rval
!= QLA_SUCCESS
)
1187 qla2x00_optrom_bios_version_show(struct device
*dev
,
1188 struct device_attribute
*attr
, char *buf
)
1190 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1191 struct qla_hw_data
*ha
= vha
->hw
;
1192 return snprintf(buf
, PAGE_SIZE
, "%d.%02d\n", ha
->bios_revision
[1],
1193 ha
->bios_revision
[0]);
1197 qla2x00_optrom_efi_version_show(struct device
*dev
,
1198 struct device_attribute
*attr
, char *buf
)
1200 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1201 struct qla_hw_data
*ha
= vha
->hw
;
1202 return snprintf(buf
, PAGE_SIZE
, "%d.%02d\n", ha
->efi_revision
[1],
1203 ha
->efi_revision
[0]);
1207 qla2x00_optrom_fcode_version_show(struct device
*dev
,
1208 struct device_attribute
*attr
, char *buf
)
1210 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1211 struct qla_hw_data
*ha
= vha
->hw
;
1212 return snprintf(buf
, PAGE_SIZE
, "%d.%02d\n", ha
->fcode_revision
[1],
1213 ha
->fcode_revision
[0]);
1217 qla2x00_optrom_fw_version_show(struct device
*dev
,
1218 struct device_attribute
*attr
, char *buf
)
1220 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1221 struct qla_hw_data
*ha
= vha
->hw
;
1222 return snprintf(buf
, PAGE_SIZE
, "%d.%02d.%02d %d\n",
1223 ha
->fw_revision
[0], ha
->fw_revision
[1], ha
->fw_revision
[2],
1224 ha
->fw_revision
[3]);
1228 qla2x00_optrom_gold_fw_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
;
1234 if (!IS_QLA81XX(ha
))
1235 return snprintf(buf
, PAGE_SIZE
, "\n");
1237 return snprintf(buf
, PAGE_SIZE
, "%d.%02d.%02d (%d)\n",
1238 ha
->gold_fw_version
[0], ha
->gold_fw_version
[1],
1239 ha
->gold_fw_version
[2], ha
->gold_fw_version
[3]);
1243 qla2x00_total_isp_aborts_show(struct device
*dev
,
1244 struct device_attribute
*attr
, char *buf
)
1246 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1247 struct qla_hw_data
*ha
= vha
->hw
;
1248 return snprintf(buf
, PAGE_SIZE
, "%d\n",
1249 ha
->qla_stats
.total_isp_aborts
);
1253 qla24xx_84xx_fw_version_show(struct device
*dev
,
1254 struct device_attribute
*attr
, char *buf
)
1256 int rval
= QLA_SUCCESS
;
1257 uint16_t status
[2] = {0, 0};
1258 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1259 struct qla_hw_data
*ha
= vha
->hw
;
1261 if (!IS_QLA84XX(ha
))
1262 return snprintf(buf
, PAGE_SIZE
, "\n");
1264 if (ha
->cs84xx
->op_fw_version
== 0)
1265 rval
= qla84xx_verify_chip(vha
, status
);
1267 if ((rval
== QLA_SUCCESS
) && (status
[0] == 0))
1268 return snprintf(buf
, PAGE_SIZE
, "%u\n",
1269 (uint32_t)ha
->cs84xx
->op_fw_version
);
1271 return snprintf(buf
, PAGE_SIZE
, "\n");
1275 qla2x00_mpi_version_show(struct device
*dev
, struct device_attribute
*attr
,
1278 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1279 struct qla_hw_data
*ha
= vha
->hw
;
1281 if (!IS_QLA81XX(ha
))
1282 return snprintf(buf
, PAGE_SIZE
, "\n");
1284 return snprintf(buf
, PAGE_SIZE
, "%d.%02d.%02d (%x)\n",
1285 ha
->mpi_version
[0], ha
->mpi_version
[1], ha
->mpi_version
[2],
1286 ha
->mpi_capabilities
);
1290 qla2x00_phy_version_show(struct device
*dev
, struct device_attribute
*attr
,
1293 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1294 struct qla_hw_data
*ha
= vha
->hw
;
1296 if (!IS_QLA81XX(ha
))
1297 return snprintf(buf
, PAGE_SIZE
, "\n");
1299 return snprintf(buf
, PAGE_SIZE
, "%d.%02d.%02d\n",
1300 ha
->phy_version
[0], ha
->phy_version
[1], ha
->phy_version
[2]);
1304 qla2x00_flash_block_size_show(struct device
*dev
,
1305 struct device_attribute
*attr
, char *buf
)
1307 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1308 struct qla_hw_data
*ha
= vha
->hw
;
1310 return snprintf(buf
, PAGE_SIZE
, "0x%x\n", ha
->fdt_block_size
);
1314 qla2x00_vlan_id_show(struct device
*dev
, struct device_attribute
*attr
,
1317 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1319 if (!IS_QLA8XXX_TYPE(vha
->hw
))
1320 return snprintf(buf
, PAGE_SIZE
, "\n");
1322 return snprintf(buf
, PAGE_SIZE
, "%d\n", vha
->fcoe_vlan_id
);
1326 qla2x00_vn_port_mac_address_show(struct device
*dev
,
1327 struct device_attribute
*attr
, char *buf
)
1329 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1331 if (!IS_QLA8XXX_TYPE(vha
->hw
))
1332 return snprintf(buf
, PAGE_SIZE
, "\n");
1334 return snprintf(buf
, PAGE_SIZE
, "%02x:%02x:%02x:%02x:%02x:%02x\n",
1335 vha
->fcoe_vn_port_mac
[5], vha
->fcoe_vn_port_mac
[4],
1336 vha
->fcoe_vn_port_mac
[3], vha
->fcoe_vn_port_mac
[2],
1337 vha
->fcoe_vn_port_mac
[1], vha
->fcoe_vn_port_mac
[0]);
1341 qla2x00_fabric_param_show(struct device
*dev
, struct device_attribute
*attr
,
1344 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1346 return snprintf(buf
, PAGE_SIZE
, "%d\n", vha
->hw
->switch_cap
);
1350 qla2x00_thermal_temp_show(struct device
*dev
,
1351 struct device_attribute
*attr
, char *buf
)
1353 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1354 int rval
= QLA_FUNCTION_FAILED
;
1355 uint16_t temp
, frac
;
1357 if (!vha
->hw
->flags
.thermal_supported
)
1358 return snprintf(buf
, PAGE_SIZE
, "\n");
1361 if (qla2x00_reset_active(vha
))
1362 ql_log(ql_log_warn
, vha
, 0x707b,
1363 "ISP reset active.\n");
1364 else if (!vha
->hw
->flags
.eeh_busy
)
1365 rval
= qla2x00_get_thermal_temp(vha
, &temp
, &frac
);
1366 if (rval
!= QLA_SUCCESS
)
1369 return snprintf(buf
, PAGE_SIZE
, "%d.%02d\n", temp
, frac
);
1373 qla2x00_fw_state_show(struct device
*dev
, struct device_attribute
*attr
,
1376 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1377 int rval
= QLA_FUNCTION_FAILED
;
1380 if (qla2x00_reset_active(vha
))
1381 ql_log(ql_log_warn
, vha
, 0x707c,
1382 "ISP reset active.\n");
1383 else if (!vha
->hw
->flags
.eeh_busy
)
1384 rval
= qla2x00_get_firmware_state(vha
, state
);
1385 if (rval
!= QLA_SUCCESS
)
1386 memset(state
, -1, sizeof(state
));
1388 return snprintf(buf
, PAGE_SIZE
, "0x%x 0x%x 0x%x 0x%x 0x%x\n", state
[0],
1389 state
[1], state
[2], state
[3], state
[4]);
1392 static DEVICE_ATTR(driver_version
, S_IRUGO
, qla2x00_drvr_version_show
, NULL
);
1393 static DEVICE_ATTR(fw_version
, S_IRUGO
, qla2x00_fw_version_show
, NULL
);
1394 static DEVICE_ATTR(serial_num
, S_IRUGO
, qla2x00_serial_num_show
, NULL
);
1395 static DEVICE_ATTR(isp_name
, S_IRUGO
, qla2x00_isp_name_show
, NULL
);
1396 static DEVICE_ATTR(isp_id
, S_IRUGO
, qla2x00_isp_id_show
, NULL
);
1397 static DEVICE_ATTR(model_name
, S_IRUGO
, qla2x00_model_name_show
, NULL
);
1398 static DEVICE_ATTR(model_desc
, S_IRUGO
, qla2x00_model_desc_show
, NULL
);
1399 static DEVICE_ATTR(pci_info
, S_IRUGO
, qla2x00_pci_info_show
, NULL
);
1400 static DEVICE_ATTR(link_state
, S_IRUGO
, qla2x00_link_state_show
, NULL
);
1401 static DEVICE_ATTR(zio
, S_IRUGO
| S_IWUSR
, qla2x00_zio_show
, qla2x00_zio_store
);
1402 static DEVICE_ATTR(zio_timer
, S_IRUGO
| S_IWUSR
, qla2x00_zio_timer_show
,
1403 qla2x00_zio_timer_store
);
1404 static DEVICE_ATTR(beacon
, S_IRUGO
| S_IWUSR
, qla2x00_beacon_show
,
1405 qla2x00_beacon_store
);
1406 static DEVICE_ATTR(optrom_bios_version
, S_IRUGO
,
1407 qla2x00_optrom_bios_version_show
, NULL
);
1408 static DEVICE_ATTR(optrom_efi_version
, S_IRUGO
,
1409 qla2x00_optrom_efi_version_show
, NULL
);
1410 static DEVICE_ATTR(optrom_fcode_version
, S_IRUGO
,
1411 qla2x00_optrom_fcode_version_show
, NULL
);
1412 static DEVICE_ATTR(optrom_fw_version
, S_IRUGO
, qla2x00_optrom_fw_version_show
,
1414 static DEVICE_ATTR(optrom_gold_fw_version
, S_IRUGO
,
1415 qla2x00_optrom_gold_fw_version_show
, NULL
);
1416 static DEVICE_ATTR(84xx_fw_version
, S_IRUGO
, qla24xx_84xx_fw_version_show
,
1418 static DEVICE_ATTR(total_isp_aborts
, S_IRUGO
, qla2x00_total_isp_aborts_show
,
1420 static DEVICE_ATTR(mpi_version
, S_IRUGO
, qla2x00_mpi_version_show
, NULL
);
1421 static DEVICE_ATTR(phy_version
, S_IRUGO
, qla2x00_phy_version_show
, NULL
);
1422 static DEVICE_ATTR(flash_block_size
, S_IRUGO
, qla2x00_flash_block_size_show
,
1424 static DEVICE_ATTR(vlan_id
, S_IRUGO
, qla2x00_vlan_id_show
, NULL
);
1425 static DEVICE_ATTR(vn_port_mac_address
, S_IRUGO
,
1426 qla2x00_vn_port_mac_address_show
, NULL
);
1427 static DEVICE_ATTR(fabric_param
, S_IRUGO
, qla2x00_fabric_param_show
, NULL
);
1428 static DEVICE_ATTR(fw_state
, S_IRUGO
, qla2x00_fw_state_show
, NULL
);
1429 static DEVICE_ATTR(thermal_temp
, S_IRUGO
, qla2x00_thermal_temp_show
, NULL
);
1431 struct device_attribute
*qla2x00_host_attrs
[] = {
1432 &dev_attr_driver_version
,
1433 &dev_attr_fw_version
,
1434 &dev_attr_serial_num
,
1437 &dev_attr_model_name
,
1438 &dev_attr_model_desc
,
1440 &dev_attr_link_state
,
1442 &dev_attr_zio_timer
,
1444 &dev_attr_optrom_bios_version
,
1445 &dev_attr_optrom_efi_version
,
1446 &dev_attr_optrom_fcode_version
,
1447 &dev_attr_optrom_fw_version
,
1448 &dev_attr_84xx_fw_version
,
1449 &dev_attr_total_isp_aborts
,
1450 &dev_attr_mpi_version
,
1451 &dev_attr_phy_version
,
1452 &dev_attr_flash_block_size
,
1454 &dev_attr_vn_port_mac_address
,
1455 &dev_attr_fabric_param
,
1457 &dev_attr_optrom_gold_fw_version
,
1458 &dev_attr_thermal_temp
,
1462 /* Host attributes. */
1465 qla2x00_get_host_port_id(struct Scsi_Host
*shost
)
1467 scsi_qla_host_t
*vha
= shost_priv(shost
);
1469 fc_host_port_id(shost
) = vha
->d_id
.b
.domain
<< 16 |
1470 vha
->d_id
.b
.area
<< 8 | vha
->d_id
.b
.al_pa
;
1474 qla2x00_get_host_speed(struct Scsi_Host
*shost
)
1476 struct qla_hw_data
*ha
= ((struct scsi_qla_host
*)
1477 (shost_priv(shost
)))->hw
;
1478 u32 speed
= FC_PORTSPEED_UNKNOWN
;
1480 switch (ha
->link_data_rate
) {
1481 case PORT_SPEED_1GB
:
1482 speed
= FC_PORTSPEED_1GBIT
;
1484 case PORT_SPEED_2GB
:
1485 speed
= FC_PORTSPEED_2GBIT
;
1487 case PORT_SPEED_4GB
:
1488 speed
= FC_PORTSPEED_4GBIT
;
1490 case PORT_SPEED_8GB
:
1491 speed
= FC_PORTSPEED_8GBIT
;
1493 case PORT_SPEED_10GB
:
1494 speed
= FC_PORTSPEED_10GBIT
;
1497 fc_host_speed(shost
) = speed
;
1501 qla2x00_get_host_port_type(struct Scsi_Host
*shost
)
1503 scsi_qla_host_t
*vha
= shost_priv(shost
);
1504 uint32_t port_type
= FC_PORTTYPE_UNKNOWN
;
1507 fc_host_port_type(shost
) = FC_PORTTYPE_NPIV
;
1510 switch (vha
->hw
->current_topology
) {
1512 port_type
= FC_PORTTYPE_LPORT
;
1515 port_type
= FC_PORTTYPE_NLPORT
;
1518 port_type
= FC_PORTTYPE_PTP
;
1521 port_type
= FC_PORTTYPE_NPORT
;
1524 fc_host_port_type(shost
) = port_type
;
1528 qla2x00_get_starget_node_name(struct scsi_target
*starget
)
1530 struct Scsi_Host
*host
= dev_to_shost(starget
->dev
.parent
);
1531 scsi_qla_host_t
*vha
= shost_priv(host
);
1535 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
1536 if (fcport
->rport
&&
1537 starget
->id
== fcport
->rport
->scsi_target_id
) {
1538 node_name
= wwn_to_u64(fcport
->node_name
);
1543 fc_starget_node_name(starget
) = node_name
;
1547 qla2x00_get_starget_port_name(struct scsi_target
*starget
)
1549 struct Scsi_Host
*host
= dev_to_shost(starget
->dev
.parent
);
1550 scsi_qla_host_t
*vha
= shost_priv(host
);
1554 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
1555 if (fcport
->rport
&&
1556 starget
->id
== fcport
->rport
->scsi_target_id
) {
1557 port_name
= wwn_to_u64(fcport
->port_name
);
1562 fc_starget_port_name(starget
) = port_name
;
1566 qla2x00_get_starget_port_id(struct scsi_target
*starget
)
1568 struct Scsi_Host
*host
= dev_to_shost(starget
->dev
.parent
);
1569 scsi_qla_host_t
*vha
= shost_priv(host
);
1571 uint32_t port_id
= ~0U;
1573 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
1574 if (fcport
->rport
&&
1575 starget
->id
== fcport
->rport
->scsi_target_id
) {
1576 port_id
= fcport
->d_id
.b
.domain
<< 16 |
1577 fcport
->d_id
.b
.area
<< 8 | fcport
->d_id
.b
.al_pa
;
1582 fc_starget_port_id(starget
) = port_id
;
1586 qla2x00_set_rport_loss_tmo(struct fc_rport
*rport
, uint32_t timeout
)
1589 rport
->dev_loss_tmo
= timeout
;
1591 rport
->dev_loss_tmo
= 1;
1595 qla2x00_dev_loss_tmo_callbk(struct fc_rport
*rport
)
1597 struct Scsi_Host
*host
= rport_to_shost(rport
);
1598 fc_port_t
*fcport
= *(fc_port_t
**)rport
->dd_data
;
1599 unsigned long flags
;
1604 /* Now that the rport has been deleted, set the fcport state to
1606 qla2x00_set_fcport_state(fcport
, FCS_DEVICE_DEAD
);
1609 * Transport has effectively 'deleted' the rport, clear
1610 * all local references.
1612 spin_lock_irqsave(host
->host_lock
, flags
);
1613 fcport
->rport
= fcport
->drport
= NULL
;
1614 *((fc_port_t
**)rport
->dd_data
) = NULL
;
1615 spin_unlock_irqrestore(host
->host_lock
, flags
);
1617 if (test_bit(ABORT_ISP_ACTIVE
, &fcport
->vha
->dpc_flags
))
1620 if (unlikely(pci_channel_offline(fcport
->vha
->hw
->pdev
))) {
1621 qla2x00_abort_all_cmds(fcport
->vha
, DID_NO_CONNECT
<< 16);
1627 qla2x00_terminate_rport_io(struct fc_rport
*rport
)
1629 fc_port_t
*fcport
= *(fc_port_t
**)rport
->dd_data
;
1634 if (test_bit(ABORT_ISP_ACTIVE
, &fcport
->vha
->dpc_flags
))
1637 if (unlikely(pci_channel_offline(fcport
->vha
->hw
->pdev
))) {
1638 qla2x00_abort_all_cmds(fcport
->vha
, DID_NO_CONNECT
<< 16);
1642 * At this point all fcport's software-states are cleared. Perform any
1643 * final cleanup of firmware resources (PCBs and XCBs).
1645 if (fcport
->loop_id
!= FC_NO_LOOP_ID
&&
1646 !test_bit(UNLOADING
, &fcport
->vha
->dpc_flags
))
1647 fcport
->vha
->hw
->isp_ops
->fabric_logout(fcport
->vha
,
1648 fcport
->loop_id
, fcport
->d_id
.b
.domain
,
1649 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
);
1653 qla2x00_issue_lip(struct Scsi_Host
*shost
)
1655 scsi_qla_host_t
*vha
= shost_priv(shost
);
1657 qla2x00_loop_reset(vha
);
1661 static struct fc_host_statistics
*
1662 qla2x00_get_fc_host_stats(struct Scsi_Host
*shost
)
1664 scsi_qla_host_t
*vha
= shost_priv(shost
);
1665 struct qla_hw_data
*ha
= vha
->hw
;
1666 struct scsi_qla_host
*base_vha
= pci_get_drvdata(ha
->pdev
);
1668 struct link_statistics
*stats
;
1669 dma_addr_t stats_dma
;
1670 struct fc_host_statistics
*pfc_host_stat
;
1672 pfc_host_stat
= &ha
->fc_host_stat
;
1673 memset(pfc_host_stat
, -1, sizeof(struct fc_host_statistics
));
1675 if (test_bit(UNLOADING
, &vha
->dpc_flags
))
1678 if (unlikely(pci_channel_offline(ha
->pdev
)))
1681 stats
= dma_pool_alloc(ha
->s_dma_pool
, GFP_KERNEL
, &stats_dma
);
1682 if (stats
== NULL
) {
1683 ql_log(ql_log_warn
, vha
, 0x707d,
1684 "Failed to allocate memory for stats.\n");
1687 memset(stats
, 0, DMA_POOL_SIZE
);
1689 rval
= QLA_FUNCTION_FAILED
;
1690 if (IS_FWI2_CAPABLE(ha
)) {
1691 rval
= qla24xx_get_isp_stats(base_vha
, stats
, stats_dma
);
1692 } else if (atomic_read(&base_vha
->loop_state
) == LOOP_READY
&&
1693 !qla2x00_reset_active(vha
) && !ha
->dpc_active
) {
1694 /* Must be in a 'READY' state for statistics retrieval. */
1695 rval
= qla2x00_get_link_status(base_vha
, base_vha
->loop_id
,
1699 if (rval
!= QLA_SUCCESS
)
1702 pfc_host_stat
->link_failure_count
= stats
->link_fail_cnt
;
1703 pfc_host_stat
->loss_of_sync_count
= stats
->loss_sync_cnt
;
1704 pfc_host_stat
->loss_of_signal_count
= stats
->loss_sig_cnt
;
1705 pfc_host_stat
->prim_seq_protocol_err_count
= stats
->prim_seq_err_cnt
;
1706 pfc_host_stat
->invalid_tx_word_count
= stats
->inval_xmit_word_cnt
;
1707 pfc_host_stat
->invalid_crc_count
= stats
->inval_crc_cnt
;
1708 if (IS_FWI2_CAPABLE(ha
)) {
1709 pfc_host_stat
->lip_count
= stats
->lip_cnt
;
1710 pfc_host_stat
->tx_frames
= stats
->tx_frames
;
1711 pfc_host_stat
->rx_frames
= stats
->rx_frames
;
1712 pfc_host_stat
->dumped_frames
= stats
->dumped_frames
;
1713 pfc_host_stat
->nos_count
= stats
->nos_rcvd
;
1715 pfc_host_stat
->fcp_input_megabytes
= ha
->qla_stats
.input_bytes
>> 20;
1716 pfc_host_stat
->fcp_output_megabytes
= ha
->qla_stats
.output_bytes
>> 20;
1719 dma_pool_free(ha
->s_dma_pool
, stats
, stats_dma
);
1721 return pfc_host_stat
;
1725 qla2x00_get_host_symbolic_name(struct Scsi_Host
*shost
)
1727 scsi_qla_host_t
*vha
= shost_priv(shost
);
1729 qla2x00_get_sym_node_name(vha
, fc_host_symbolic_name(shost
));
1733 qla2x00_set_host_system_hostname(struct Scsi_Host
*shost
)
1735 scsi_qla_host_t
*vha
= shost_priv(shost
);
1737 set_bit(REGISTER_FDMI_NEEDED
, &vha
->dpc_flags
);
1741 qla2x00_get_host_fabric_name(struct Scsi_Host
*shost
)
1743 scsi_qla_host_t
*vha
= shost_priv(shost
);
1744 uint8_t node_name
[WWN_SIZE
] = { 0xFF, 0xFF, 0xFF, 0xFF, \
1745 0xFF, 0xFF, 0xFF, 0xFF};
1746 u64 fabric_name
= wwn_to_u64(node_name
);
1748 if (vha
->device_flags
& SWITCH_FOUND
)
1749 fabric_name
= wwn_to_u64(vha
->fabric_node_name
);
1751 fc_host_fabric_name(shost
) = fabric_name
;
1755 qla2x00_get_host_port_state(struct Scsi_Host
*shost
)
1757 scsi_qla_host_t
*vha
= shost_priv(shost
);
1758 struct scsi_qla_host
*base_vha
= pci_get_drvdata(vha
->hw
->pdev
);
1760 if (!base_vha
->flags
.online
) {
1761 fc_host_port_state(shost
) = FC_PORTSTATE_OFFLINE
;
1765 switch (atomic_read(&base_vha
->loop_state
)) {
1767 fc_host_port_state(shost
) = FC_PORTSTATE_DIAGNOSTICS
;
1770 if (test_bit(LOOP_RESYNC_NEEDED
, &base_vha
->dpc_flags
))
1771 fc_host_port_state(shost
) = FC_PORTSTATE_DIAGNOSTICS
;
1773 fc_host_port_state(shost
) = FC_PORTSTATE_LINKDOWN
;
1776 fc_host_port_state(shost
) = FC_PORTSTATE_LINKDOWN
;
1779 fc_host_port_state(shost
) = FC_PORTSTATE_ONLINE
;
1782 fc_host_port_state(shost
) = FC_PORTSTATE_UNKNOWN
;
1788 qla24xx_vport_create(struct fc_vport
*fc_vport
, bool disable
)
1792 scsi_qla_host_t
*base_vha
= shost_priv(fc_vport
->shost
);
1793 scsi_qla_host_t
*vha
= NULL
;
1794 struct qla_hw_data
*ha
= base_vha
->hw
;
1795 uint16_t options
= 0;
1797 struct req_que
*req
= ha
->req_q_map
[0];
1799 ret
= qla24xx_vport_create_req_sanity_check(fc_vport
);
1801 ql_log(ql_log_warn
, vha
, 0x707e,
1802 "Vport sanity check failed, status %x\n", ret
);
1806 vha
= qla24xx_create_vhost(fc_vport
);
1808 ql_log(ql_log_warn
, vha
, 0x707f, "Vport create host failed.\n");
1809 return FC_VPORT_FAILED
;
1812 atomic_set(&vha
->vp_state
, VP_OFFLINE
);
1813 fc_vport_set_state(fc_vport
, FC_VPORT_DISABLED
);
1815 atomic_set(&vha
->vp_state
, VP_FAILED
);
1817 /* ready to create vport */
1818 ql_log(ql_log_info
, vha
, 0x7080,
1819 "VP entry id %d assigned.\n", vha
->vp_idx
);
1821 /* initialized vport states */
1822 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
1823 vha
->vp_err_state
= VP_ERR_PORTDWN
;
1824 vha
->vp_prev_err_state
= VP_ERR_UNKWN
;
1825 /* Check if physical ha port is Up */
1826 if (atomic_read(&base_vha
->loop_state
) == LOOP_DOWN
||
1827 atomic_read(&base_vha
->loop_state
) == LOOP_DEAD
) {
1828 /* Don't retry or attempt login of this virtual port */
1829 ql_dbg(ql_dbg_user
, vha
, 0x7081,
1830 "Vport loop state is not UP.\n");
1831 atomic_set(&vha
->loop_state
, LOOP_DEAD
);
1833 fc_vport_set_state(fc_vport
, FC_VPORT_LINKDOWN
);
1836 if (IS_T10_PI_CAPABLE(ha
) && ql2xenabledif
) {
1837 if (ha
->fw_attributes
& BIT_4
) {
1839 vha
->flags
.difdix_supported
= 1;
1840 ql_dbg(ql_dbg_user
, vha
, 0x7082,
1841 "Registered for DIF/DIX type 1 and 3 protection.\n");
1842 if (ql2xenabledif
== 1)
1843 prot
= SHOST_DIX_TYPE0_PROTECTION
;
1844 scsi_host_set_prot(vha
->host
,
1845 prot
| SHOST_DIF_TYPE1_PROTECTION
1846 | SHOST_DIF_TYPE2_PROTECTION
1847 | SHOST_DIF_TYPE3_PROTECTION
1848 | SHOST_DIX_TYPE1_PROTECTION
1849 | SHOST_DIX_TYPE2_PROTECTION
1850 | SHOST_DIX_TYPE3_PROTECTION
);
1851 scsi_host_set_guard(vha
->host
, SHOST_DIX_GUARD_CRC
);
1853 vha
->flags
.difdix_supported
= 0;
1856 if (scsi_add_host_with_dma(vha
->host
, &fc_vport
->dev
,
1858 ql_dbg(ql_dbg_user
, vha
, 0x7083,
1859 "scsi_add_host failure for VP[%d].\n", vha
->vp_idx
);
1860 goto vport_create_failed_2
;
1863 /* initialize attributes */
1864 fc_host_dev_loss_tmo(vha
->host
) = ha
->port_down_retry_count
;
1865 fc_host_node_name(vha
->host
) = wwn_to_u64(vha
->node_name
);
1866 fc_host_port_name(vha
->host
) = wwn_to_u64(vha
->port_name
);
1867 fc_host_supported_classes(vha
->host
) =
1868 fc_host_supported_classes(base_vha
->host
);
1869 fc_host_supported_speeds(vha
->host
) =
1870 fc_host_supported_speeds(base_vha
->host
);
1872 qla24xx_vport_disable(fc_vport
, disable
);
1874 if (ha
->flags
.cpu_affinity_enabled
) {
1875 req
= ha
->req_q_map
[1];
1876 ql_dbg(ql_dbg_multiq
, vha
, 0xc000,
1877 "Request queue %p attached with "
1878 "VP[%d], cpu affinity =%d\n",
1879 req
, vha
->vp_idx
, ha
->flags
.cpu_affinity_enabled
);
1881 } else if (ql2xmaxqueues
== 1 || !ha
->npiv_info
)
1883 /* Create a request queue in QoS mode for the vport */
1884 for (cnt
= 0; cnt
< ha
->nvram_npiv_size
; cnt
++) {
1885 if (memcmp(ha
->npiv_info
[cnt
].port_name
, vha
->port_name
, 8) == 0
1886 && memcmp(ha
->npiv_info
[cnt
].node_name
, vha
->node_name
,
1888 qos
= ha
->npiv_info
[cnt
].q_qos
;
1893 ret
= qla25xx_create_req_que(ha
, options
, vha
->vp_idx
, 0, 0,
1896 ql_log(ql_log_warn
, vha
, 0x7084,
1897 "Can't create request queue for VP[%d]\n",
1900 ql_dbg(ql_dbg_multiq
, vha
, 0xc001,
1901 "Request Que:%d Q0s: %d) created for VP[%d]\n",
1902 ret
, qos
, vha
->vp_idx
);
1903 ql_dbg(ql_dbg_user
, vha
, 0x7085,
1904 "Request Que:%d Q0s: %d) created for VP[%d]\n",
1905 ret
, qos
, vha
->vp_idx
);
1906 req
= ha
->req_q_map
[ret
];
1914 vport_create_failed_2
:
1915 qla24xx_disable_vp(vha
);
1916 qla24xx_deallocate_vp_id(vha
);
1917 scsi_host_put(vha
->host
);
1918 return FC_VPORT_FAILED
;
1922 qla24xx_vport_delete(struct fc_vport
*fc_vport
)
1924 scsi_qla_host_t
*vha
= fc_vport
->dd_data
;
1925 struct qla_hw_data
*ha
= vha
->hw
;
1926 uint16_t id
= vha
->vp_idx
;
1928 while (test_bit(LOOP_RESYNC_ACTIVE
, &vha
->dpc_flags
) ||
1929 test_bit(FCPORT_UPDATE_NEEDED
, &vha
->dpc_flags
))
1932 qla24xx_disable_vp(vha
);
1934 vha
->flags
.delete_progress
= 1;
1936 fc_remove_host(vha
->host
);
1938 scsi_remove_host(vha
->host
);
1940 /* Allow timer to run to drain queued items, when removing vp */
1941 qla24xx_deallocate_vp_id(vha
);
1943 if (vha
->timer_active
) {
1944 qla2x00_vp_stop_timer(vha
);
1945 ql_dbg(ql_dbg_user
, vha
, 0x7086,
1946 "Timer for the VP[%d] has stopped\n", vha
->vp_idx
);
1949 /* No pending activities shall be there on the vha now */
1950 if (ql2xextended_error_logging
& ql_dbg_user
)
1951 msleep(random32()%10); /* Just to see if something falls on
1952 * the net we have placed below */
1954 BUG_ON(atomic_read(&vha
->vref_count
));
1956 qla2x00_free_fcports(vha
);
1958 mutex_lock(&ha
->vport_lock
);
1959 ha
->cur_vport_count
--;
1960 clear_bit(vha
->vp_idx
, ha
->vp_idx_map
);
1961 mutex_unlock(&ha
->vport_lock
);
1963 if (vha
->req
->id
&& !ha
->flags
.cpu_affinity_enabled
) {
1964 if (qla25xx_delete_req_que(vha
, vha
->req
) != QLA_SUCCESS
)
1965 ql_log(ql_log_warn
, vha
, 0x7087,
1966 "Queue delete failed.\n");
1969 ql_log(ql_log_info
, vha
, 0x7088, "VP[%d] deleted.\n", id
);
1970 scsi_host_put(vha
->host
);
1975 qla24xx_vport_disable(struct fc_vport
*fc_vport
, bool disable
)
1977 scsi_qla_host_t
*vha
= fc_vport
->dd_data
;
1980 qla24xx_disable_vp(vha
);
1982 qla24xx_enable_vp(vha
);
1987 struct fc_function_template qla2xxx_transport_functions
= {
1989 .show_host_node_name
= 1,
1990 .show_host_port_name
= 1,
1991 .show_host_supported_classes
= 1,
1992 .show_host_supported_speeds
= 1,
1994 .get_host_port_id
= qla2x00_get_host_port_id
,
1995 .show_host_port_id
= 1,
1996 .get_host_speed
= qla2x00_get_host_speed
,
1997 .show_host_speed
= 1,
1998 .get_host_port_type
= qla2x00_get_host_port_type
,
1999 .show_host_port_type
= 1,
2000 .get_host_symbolic_name
= qla2x00_get_host_symbolic_name
,
2001 .show_host_symbolic_name
= 1,
2002 .set_host_system_hostname
= qla2x00_set_host_system_hostname
,
2003 .show_host_system_hostname
= 1,
2004 .get_host_fabric_name
= qla2x00_get_host_fabric_name
,
2005 .show_host_fabric_name
= 1,
2006 .get_host_port_state
= qla2x00_get_host_port_state
,
2007 .show_host_port_state
= 1,
2009 .dd_fcrport_size
= sizeof(struct fc_port
*),
2010 .show_rport_supported_classes
= 1,
2012 .get_starget_node_name
= qla2x00_get_starget_node_name
,
2013 .show_starget_node_name
= 1,
2014 .get_starget_port_name
= qla2x00_get_starget_port_name
,
2015 .show_starget_port_name
= 1,
2016 .get_starget_port_id
= qla2x00_get_starget_port_id
,
2017 .show_starget_port_id
= 1,
2019 .set_rport_dev_loss_tmo
= qla2x00_set_rport_loss_tmo
,
2020 .show_rport_dev_loss_tmo
= 1,
2022 .issue_fc_host_lip
= qla2x00_issue_lip
,
2023 .dev_loss_tmo_callbk
= qla2x00_dev_loss_tmo_callbk
,
2024 .terminate_rport_io
= qla2x00_terminate_rport_io
,
2025 .get_fc_host_stats
= qla2x00_get_fc_host_stats
,
2027 .vport_create
= qla24xx_vport_create
,
2028 .vport_disable
= qla24xx_vport_disable
,
2029 .vport_delete
= qla24xx_vport_delete
,
2030 .bsg_request
= qla24xx_bsg_request
,
2031 .bsg_timeout
= qla24xx_bsg_timeout
,
2034 struct fc_function_template qla2xxx_transport_vport_functions
= {
2036 .show_host_node_name
= 1,
2037 .show_host_port_name
= 1,
2038 .show_host_supported_classes
= 1,
2040 .get_host_port_id
= qla2x00_get_host_port_id
,
2041 .show_host_port_id
= 1,
2042 .get_host_speed
= qla2x00_get_host_speed
,
2043 .show_host_speed
= 1,
2044 .get_host_port_type
= qla2x00_get_host_port_type
,
2045 .show_host_port_type
= 1,
2046 .get_host_symbolic_name
= qla2x00_get_host_symbolic_name
,
2047 .show_host_symbolic_name
= 1,
2048 .set_host_system_hostname
= qla2x00_set_host_system_hostname
,
2049 .show_host_system_hostname
= 1,
2050 .get_host_fabric_name
= qla2x00_get_host_fabric_name
,
2051 .show_host_fabric_name
= 1,
2052 .get_host_port_state
= qla2x00_get_host_port_state
,
2053 .show_host_port_state
= 1,
2055 .dd_fcrport_size
= sizeof(struct fc_port
*),
2056 .show_rport_supported_classes
= 1,
2058 .get_starget_node_name
= qla2x00_get_starget_node_name
,
2059 .show_starget_node_name
= 1,
2060 .get_starget_port_name
= qla2x00_get_starget_port_name
,
2061 .show_starget_port_name
= 1,
2062 .get_starget_port_id
= qla2x00_get_starget_port_id
,
2063 .show_starget_port_id
= 1,
2065 .set_rport_dev_loss_tmo
= qla2x00_set_rport_loss_tmo
,
2066 .show_rport_dev_loss_tmo
= 1,
2068 .issue_fc_host_lip
= qla2x00_issue_lip
,
2069 .dev_loss_tmo_callbk
= qla2x00_dev_loss_tmo_callbk
,
2070 .terminate_rport_io
= qla2x00_terminate_rport_io
,
2071 .get_fc_host_stats
= qla2x00_get_fc_host_stats
,
2072 .bsg_request
= qla24xx_bsg_request
,
2073 .bsg_timeout
= qla24xx_bsg_timeout
,
2077 qla2x00_init_host_attr(scsi_qla_host_t
*vha
)
2079 struct qla_hw_data
*ha
= vha
->hw
;
2080 u32 speed
= FC_PORTSPEED_UNKNOWN
;
2082 fc_host_dev_loss_tmo(vha
->host
) = ha
->port_down_retry_count
;
2083 fc_host_node_name(vha
->host
) = wwn_to_u64(vha
->node_name
);
2084 fc_host_port_name(vha
->host
) = wwn_to_u64(vha
->port_name
);
2085 fc_host_supported_classes(vha
->host
) = FC_COS_CLASS3
;
2086 fc_host_max_npiv_vports(vha
->host
) = ha
->max_npiv_vports
;
2087 fc_host_npiv_vports_inuse(vha
->host
) = ha
->cur_vport_count
;
2089 if (IS_QLA8XXX_TYPE(ha
))
2090 speed
= FC_PORTSPEED_10GBIT
;
2091 else if (IS_QLA25XX(ha
))
2092 speed
= FC_PORTSPEED_8GBIT
| FC_PORTSPEED_4GBIT
|
2093 FC_PORTSPEED_2GBIT
| FC_PORTSPEED_1GBIT
;
2094 else if (IS_QLA24XX_TYPE(ha
))
2095 speed
= FC_PORTSPEED_4GBIT
| FC_PORTSPEED_2GBIT
|
2097 else if (IS_QLA23XX(ha
))
2098 speed
= FC_PORTSPEED_2GBIT
| FC_PORTSPEED_1GBIT
;
2100 speed
= FC_PORTSPEED_1GBIT
;
2101 fc_host_supported_speeds(vha
->host
) = speed
;