2 * QLogic Fibre Channel HBA Driver
3 * Copyright (c) 2003-2010 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
;
27 if (ha
->fw_dump_reading
== 0)
30 return memory_read_from_buffer(buf
, count
, &off
, ha
->fw_dump
,
35 qla2x00_sysfs_write_fw_dump(struct file
*filp
, struct kobject
*kobj
,
36 struct bin_attribute
*bin_attr
,
37 char *buf
, loff_t off
, size_t count
)
39 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
40 struct device
, kobj
)));
41 struct qla_hw_data
*ha
= vha
->hw
;
45 DEBUG2(qla_printk(KERN_INFO
, ha
,
46 "Firmware dump not supported for ISP82xx\n"));
53 reading
= simple_strtol(buf
, NULL
, 10);
56 if (!ha
->fw_dump_reading
)
59 qla_printk(KERN_INFO
, ha
,
60 "Firmware dump cleared on (%ld).\n", vha
->host_no
);
62 ha
->fw_dump_reading
= 0;
66 if (ha
->fw_dumped
&& !ha
->fw_dump_reading
) {
67 ha
->fw_dump_reading
= 1;
69 qla_printk(KERN_INFO
, ha
,
70 "Raw firmware dump ready for read on (%ld).\n",
75 qla2x00_alloc_fw_dump(vha
);
78 qla2x00_system_error(vha
);
84 static struct bin_attribute sysfs_fw_dump_attr
= {
87 .mode
= S_IRUSR
| S_IWUSR
,
90 .read
= qla2x00_sysfs_read_fw_dump
,
91 .write
= qla2x00_sysfs_write_fw_dump
,
95 qla2x00_sysfs_read_nvram(struct file
*filp
, struct kobject
*kobj
,
96 struct bin_attribute
*bin_attr
,
97 char *buf
, loff_t off
, size_t count
)
99 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
100 struct device
, kobj
)));
101 struct qla_hw_data
*ha
= vha
->hw
;
103 if (!capable(CAP_SYS_ADMIN
))
106 if (IS_NOCACHE_VPD_TYPE(ha
))
107 ha
->isp_ops
->read_optrom(vha
, ha
->nvram
, ha
->flt_region_nvram
<< 2,
109 return memory_read_from_buffer(buf
, count
, &off
, ha
->nvram
,
114 qla2x00_sysfs_write_nvram(struct file
*filp
, struct kobject
*kobj
,
115 struct bin_attribute
*bin_attr
,
116 char *buf
, loff_t off
, size_t count
)
118 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
119 struct device
, kobj
)));
120 struct qla_hw_data
*ha
= vha
->hw
;
123 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
!= ha
->nvram_size
||
124 !ha
->isp_ops
->write_nvram
)
127 /* Checksum NVRAM. */
128 if (IS_FWI2_CAPABLE(ha
)) {
132 iter
= (uint32_t *)buf
;
134 for (cnt
= 0; cnt
< ((count
>> 2) - 1); cnt
++)
135 chksum
+= le32_to_cpu(*iter
++);
136 chksum
= ~chksum
+ 1;
137 *iter
= cpu_to_le32(chksum
);
142 iter
= (uint8_t *)buf
;
144 for (cnt
= 0; cnt
< count
- 1; cnt
++)
146 chksum
= ~chksum
+ 1;
150 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
) {
151 qla_printk(KERN_WARNING
, ha
,
152 "HBA not online, failing NVRAM update.\n");
157 ha
->isp_ops
->write_nvram(vha
, (uint8_t *)buf
, ha
->nvram_base
, count
);
158 ha
->isp_ops
->read_nvram(vha
, (uint8_t *)ha
->nvram
, ha
->nvram_base
,
161 /* NVRAM settings take effect immediately. */
162 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
163 qla2xxx_wake_dpc(vha
);
164 qla2x00_wait_for_chip_reset(vha
);
169 static struct bin_attribute sysfs_nvram_attr
= {
172 .mode
= S_IRUSR
| S_IWUSR
,
175 .read
= qla2x00_sysfs_read_nvram
,
176 .write
= qla2x00_sysfs_write_nvram
,
180 qla2x00_sysfs_read_optrom(struct file
*filp
, struct kobject
*kobj
,
181 struct bin_attribute
*bin_attr
,
182 char *buf
, loff_t off
, size_t count
)
184 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
185 struct device
, kobj
)));
186 struct qla_hw_data
*ha
= vha
->hw
;
188 if (ha
->optrom_state
!= QLA_SREADING
)
191 return memory_read_from_buffer(buf
, count
, &off
, ha
->optrom_buffer
,
192 ha
->optrom_region_size
);
196 qla2x00_sysfs_write_optrom(struct file
*filp
, struct kobject
*kobj
,
197 struct bin_attribute
*bin_attr
,
198 char *buf
, loff_t off
, size_t count
)
200 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
201 struct device
, kobj
)));
202 struct qla_hw_data
*ha
= vha
->hw
;
204 if (ha
->optrom_state
!= QLA_SWRITING
)
206 if (off
> ha
->optrom_region_size
)
208 if (off
+ count
> ha
->optrom_region_size
)
209 count
= ha
->optrom_region_size
- off
;
211 memcpy(&ha
->optrom_buffer
[off
], buf
, count
);
216 static struct bin_attribute sysfs_optrom_attr
= {
219 .mode
= S_IRUSR
| S_IWUSR
,
222 .read
= qla2x00_sysfs_read_optrom
,
223 .write
= qla2x00_sysfs_write_optrom
,
227 qla2x00_sysfs_write_optrom_ctl(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
;
236 uint32_t size
= ha
->optrom_size
;
242 if (unlikely(pci_channel_offline(ha
->pdev
)))
245 if (sscanf(buf
, "%d:%x:%x", &val
, &start
, &size
) < 1)
247 if (start
> ha
->optrom_size
)
252 if (ha
->optrom_state
!= QLA_SREADING
&&
253 ha
->optrom_state
!= QLA_SWRITING
)
256 ha
->optrom_state
= QLA_SWAITING
;
258 DEBUG2(qla_printk(KERN_INFO
, ha
,
259 "Freeing flash region allocation -- 0x%x bytes.\n",
260 ha
->optrom_region_size
));
262 vfree(ha
->optrom_buffer
);
263 ha
->optrom_buffer
= NULL
;
266 if (ha
->optrom_state
!= QLA_SWAITING
)
269 ha
->optrom_region_start
= start
;
270 ha
->optrom_region_size
= start
+ size
> ha
->optrom_size
?
271 ha
->optrom_size
- start
: size
;
273 ha
->optrom_state
= QLA_SREADING
;
274 ha
->optrom_buffer
= vmalloc(ha
->optrom_region_size
);
275 if (ha
->optrom_buffer
== NULL
) {
276 qla_printk(KERN_WARNING
, ha
,
277 "Unable to allocate memory for optrom retrieval "
278 "(%x).\n", ha
->optrom_region_size
);
280 ha
->optrom_state
= QLA_SWAITING
;
284 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
) {
285 qla_printk(KERN_WARNING
, ha
,
286 "HBA not online, failing NVRAM update.\n");
290 DEBUG2(qla_printk(KERN_INFO
, ha
,
291 "Reading flash region -- 0x%x/0x%x.\n",
292 ha
->optrom_region_start
, ha
->optrom_region_size
));
294 memset(ha
->optrom_buffer
, 0, ha
->optrom_region_size
);
295 ha
->isp_ops
->read_optrom(vha
, ha
->optrom_buffer
,
296 ha
->optrom_region_start
, ha
->optrom_region_size
);
299 if (ha
->optrom_state
!= QLA_SWAITING
)
303 * We need to be more restrictive on which FLASH regions are
304 * allowed to be updated via user-space. Regions accessible
305 * via this method include:
307 * ISP21xx/ISP22xx/ISP23xx type boards:
309 * 0x000000 -> 0x020000 -- Boot code.
311 * ISP2322/ISP24xx type boards:
313 * 0x000000 -> 0x07ffff -- Boot code.
314 * 0x080000 -> 0x0fffff -- Firmware.
316 * ISP25xx type boards:
318 * 0x000000 -> 0x07ffff -- Boot code.
319 * 0x080000 -> 0x0fffff -- Firmware.
320 * 0x120000 -> 0x12ffff -- VPD and HBA parameters.
323 if (ha
->optrom_size
== OPTROM_SIZE_2300
&& start
== 0)
325 else if (start
== (ha
->flt_region_boot
* 4) ||
326 start
== (ha
->flt_region_fw
* 4))
328 else if (IS_QLA25XX(ha
) || IS_QLA8XXX_TYPE(ha
))
331 qla_printk(KERN_WARNING
, ha
,
332 "Invalid start region 0x%x/0x%x.\n", start
, size
);
336 ha
->optrom_region_start
= start
;
337 ha
->optrom_region_size
= start
+ size
> ha
->optrom_size
?
338 ha
->optrom_size
- start
: size
;
340 ha
->optrom_state
= QLA_SWRITING
;
341 ha
->optrom_buffer
= vmalloc(ha
->optrom_region_size
);
342 if (ha
->optrom_buffer
== NULL
) {
343 qla_printk(KERN_WARNING
, ha
,
344 "Unable to allocate memory for optrom update "
345 "(%x).\n", ha
->optrom_region_size
);
347 ha
->optrom_state
= QLA_SWAITING
;
351 DEBUG2(qla_printk(KERN_INFO
, ha
,
352 "Staging flash region write -- 0x%x/0x%x.\n",
353 ha
->optrom_region_start
, ha
->optrom_region_size
));
355 memset(ha
->optrom_buffer
, 0, ha
->optrom_region_size
);
358 if (ha
->optrom_state
!= QLA_SWRITING
)
361 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
) {
362 qla_printk(KERN_WARNING
, ha
,
363 "HBA not online, failing flash update.\n");
367 DEBUG2(qla_printk(KERN_INFO
, ha
,
368 "Writing flash region -- 0x%x/0x%x.\n",
369 ha
->optrom_region_start
, ha
->optrom_region_size
));
371 ha
->isp_ops
->write_optrom(vha
, ha
->optrom_buffer
,
372 ha
->optrom_region_start
, ha
->optrom_region_size
);
380 static struct bin_attribute sysfs_optrom_ctl_attr
= {
382 .name
= "optrom_ctl",
386 .write
= qla2x00_sysfs_write_optrom_ctl
,
390 qla2x00_sysfs_read_vpd(struct file
*filp
, struct kobject
*kobj
,
391 struct bin_attribute
*bin_attr
,
392 char *buf
, loff_t off
, size_t count
)
394 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
395 struct device
, kobj
)));
396 struct qla_hw_data
*ha
= vha
->hw
;
398 if (unlikely(pci_channel_offline(ha
->pdev
)))
401 if (!capable(CAP_SYS_ADMIN
))
404 if (IS_NOCACHE_VPD_TYPE(ha
))
405 ha
->isp_ops
->read_optrom(vha
, ha
->vpd
, ha
->flt_region_vpd
<< 2,
407 return memory_read_from_buffer(buf
, count
, &off
, ha
->vpd
, ha
->vpd_size
);
411 qla2x00_sysfs_write_vpd(struct file
*filp
, struct kobject
*kobj
,
412 struct bin_attribute
*bin_attr
,
413 char *buf
, loff_t off
, size_t count
)
415 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
416 struct device
, kobj
)));
417 struct qla_hw_data
*ha
= vha
->hw
;
420 if (unlikely(pci_channel_offline(ha
->pdev
)))
423 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
!= ha
->vpd_size
||
424 !ha
->isp_ops
->write_nvram
)
427 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
) {
428 qla_printk(KERN_WARNING
, ha
,
429 "HBA not online, failing VPD update.\n");
434 ha
->isp_ops
->write_nvram(vha
, (uint8_t *)buf
, ha
->vpd_base
, count
);
435 ha
->isp_ops
->read_nvram(vha
, (uint8_t *)ha
->vpd
, ha
->vpd_base
, count
);
437 /* Update flash version information for 4Gb & above. */
438 if (!IS_FWI2_CAPABLE(ha
))
441 tmp_data
= vmalloc(256);
443 qla_printk(KERN_WARNING
, ha
,
444 "Unable to allocate memory for VPD information update.\n");
447 ha
->isp_ops
->get_flash_version(vha
, tmp_data
);
453 static struct bin_attribute sysfs_vpd_attr
= {
456 .mode
= S_IRUSR
| S_IWUSR
,
459 .read
= qla2x00_sysfs_read_vpd
,
460 .write
= qla2x00_sysfs_write_vpd
,
464 qla2x00_sysfs_read_sfp(struct file
*filp
, struct kobject
*kobj
,
465 struct bin_attribute
*bin_attr
,
466 char *buf
, loff_t off
, size_t count
)
468 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
469 struct device
, kobj
)));
470 struct qla_hw_data
*ha
= vha
->hw
;
471 uint16_t iter
, addr
, offset
;
474 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
!= SFP_DEV_SIZE
* 2)
480 ha
->sfp_data
= dma_pool_alloc(ha
->s_dma_pool
, GFP_KERNEL
,
483 qla_printk(KERN_WARNING
, ha
,
484 "Unable to allocate memory for SFP read-data.\n");
489 memset(ha
->sfp_data
, 0, SFP_BLOCK_SIZE
);
491 for (iter
= 0, offset
= 0; iter
< (SFP_DEV_SIZE
* 2) / SFP_BLOCK_SIZE
;
492 iter
++, offset
+= SFP_BLOCK_SIZE
) {
494 /* Skip to next device address. */
499 rval
= qla2x00_read_sfp(vha
, ha
->sfp_data_dma
, addr
, offset
,
501 if (rval
!= QLA_SUCCESS
) {
502 qla_printk(KERN_WARNING
, ha
,
503 "Unable to read SFP data (%x/%x/%x).\n", rval
,
508 memcpy(buf
, ha
->sfp_data
, SFP_BLOCK_SIZE
);
509 buf
+= SFP_BLOCK_SIZE
;
515 static struct bin_attribute sysfs_sfp_attr
= {
518 .mode
= S_IRUSR
| S_IWUSR
,
520 .size
= SFP_DEV_SIZE
* 2,
521 .read
= qla2x00_sysfs_read_sfp
,
525 qla2x00_sysfs_write_reset(struct file
*filp
, struct kobject
*kobj
,
526 struct bin_attribute
*bin_attr
,
527 char *buf
, loff_t off
, size_t count
)
529 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
530 struct device
, kobj
)));
531 struct qla_hw_data
*ha
= vha
->hw
;
532 struct scsi_qla_host
*base_vha
= pci_get_drvdata(ha
->pdev
);
538 type
= simple_strtol(buf
, NULL
, 10);
541 qla_printk(KERN_INFO
, ha
,
542 "Issuing ISP reset on (%ld).\n", vha
->host_no
);
544 scsi_block_requests(vha
->host
);
545 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
546 qla2xxx_wake_dpc(vha
);
547 qla2x00_wait_for_chip_reset(vha
);
548 scsi_unblock_requests(vha
->host
);
554 qla_printk(KERN_INFO
, ha
,
555 "Issuing MPI reset on (%ld).\n", vha
->host_no
);
557 /* Make sure FC side is not in reset */
558 qla2x00_wait_for_hba_online(vha
);
560 /* Issue MPI reset */
561 scsi_block_requests(vha
->host
);
562 if (qla81xx_restart_mpi_firmware(vha
) != QLA_SUCCESS
)
563 qla_printk(KERN_WARNING
, ha
,
564 "MPI reset failed on (%ld).\n", vha
->host_no
);
565 scsi_unblock_requests(vha
->host
);
568 if (!IS_QLA82XX(ha
) || vha
!= base_vha
) {
569 qla_printk(KERN_INFO
, ha
,
570 "FCoE ctx reset not supported for host%ld.\n",
575 qla_printk(KERN_INFO
, ha
,
576 "Issuing FCoE CTX reset on host%ld.\n", vha
->host_no
);
577 set_bit(FCOE_CTX_RESET_NEEDED
, &vha
->dpc_flags
);
578 qla2xxx_wake_dpc(vha
);
579 qla2x00_wait_for_fcoe_ctx_reset(vha
);
585 static struct bin_attribute sysfs_reset_attr
= {
591 .write
= qla2x00_sysfs_write_reset
,
595 qla2x00_sysfs_write_edc(struct file
*filp
, struct kobject
*kobj
,
596 struct bin_attribute
*bin_attr
,
597 char *buf
, loff_t off
, size_t count
)
599 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
600 struct device
, kobj
)));
601 struct qla_hw_data
*ha
= vha
->hw
;
602 uint16_t dev
, adr
, opt
, len
;
605 ha
->edc_data_len
= 0;
607 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
< 8)
611 ha
->edc_data
= dma_pool_alloc(ha
->s_dma_pool
, GFP_KERNEL
,
614 DEBUG2(qla_printk(KERN_INFO
, ha
,
615 "Unable to allocate memory for EDC write.\n"));
620 dev
= le16_to_cpup((void *)&buf
[0]);
621 adr
= le16_to_cpup((void *)&buf
[2]);
622 opt
= le16_to_cpup((void *)&buf
[4]);
623 len
= le16_to_cpup((void *)&buf
[6]);
626 if (len
== 0 || len
> DMA_POOL_SIZE
|| len
> count
- 8)
629 memcpy(ha
->edc_data
, &buf
[8], len
);
631 rval
= qla2x00_write_edc(vha
, dev
, adr
, ha
->edc_data_dma
,
632 ha
->edc_data
, len
, opt
);
633 if (rval
!= QLA_SUCCESS
) {
634 DEBUG2(qla_printk(KERN_INFO
, ha
,
635 "Unable to write EDC (%x) %02x:%02x:%04x:%02x:%02x.\n",
636 rval
, dev
, adr
, opt
, len
, *buf
));
643 static struct bin_attribute sysfs_edc_attr
= {
649 .write
= qla2x00_sysfs_write_edc
,
653 qla2x00_sysfs_write_edc_status(struct file
*filp
, struct kobject
*kobj
,
654 struct bin_attribute
*bin_attr
,
655 char *buf
, loff_t off
, size_t count
)
657 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
658 struct device
, kobj
)));
659 struct qla_hw_data
*ha
= vha
->hw
;
660 uint16_t dev
, adr
, opt
, len
;
663 ha
->edc_data_len
= 0;
665 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
< 8)
669 ha
->edc_data
= dma_pool_alloc(ha
->s_dma_pool
, GFP_KERNEL
,
672 DEBUG2(qla_printk(KERN_INFO
, ha
,
673 "Unable to allocate memory for EDC status.\n"));
678 dev
= le16_to_cpup((void *)&buf
[0]);
679 adr
= le16_to_cpup((void *)&buf
[2]);
680 opt
= le16_to_cpup((void *)&buf
[4]);
681 len
= le16_to_cpup((void *)&buf
[6]);
684 if (len
== 0 || len
> DMA_POOL_SIZE
)
687 memset(ha
->edc_data
, 0, len
);
688 rval
= qla2x00_read_edc(vha
, dev
, adr
, ha
->edc_data_dma
,
689 ha
->edc_data
, len
, opt
);
690 if (rval
!= QLA_SUCCESS
) {
691 DEBUG2(qla_printk(KERN_INFO
, ha
,
692 "Unable to write EDC status (%x) %02x:%02x:%04x:%02x.\n",
693 rval
, dev
, adr
, opt
, len
));
697 ha
->edc_data_len
= len
;
703 qla2x00_sysfs_read_edc_status(struct file
*filp
, struct kobject
*kobj
,
704 struct bin_attribute
*bin_attr
,
705 char *buf
, loff_t off
, size_t count
)
707 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
708 struct device
, kobj
)));
709 struct qla_hw_data
*ha
= vha
->hw
;
711 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
== 0)
714 if (!ha
->edc_data
|| ha
->edc_data_len
== 0 || ha
->edc_data_len
> count
)
717 memcpy(buf
, ha
->edc_data
, ha
->edc_data_len
);
719 return ha
->edc_data_len
;
722 static struct bin_attribute sysfs_edc_status_attr
= {
724 .name
= "edc_status",
725 .mode
= S_IRUSR
| S_IWUSR
,
728 .write
= qla2x00_sysfs_write_edc_status
,
729 .read
= qla2x00_sysfs_read_edc_status
,
733 qla2x00_sysfs_read_xgmac_stats(struct file
*filp
, struct kobject
*kobj
,
734 struct bin_attribute
*bin_attr
,
735 char *buf
, loff_t off
, size_t count
)
737 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
738 struct device
, kobj
)));
739 struct qla_hw_data
*ha
= vha
->hw
;
741 uint16_t actual_size
;
743 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
> XGMAC_DATA_SIZE
)
749 ha
->xgmac_data
= dma_alloc_coherent(&ha
->pdev
->dev
, XGMAC_DATA_SIZE
,
750 &ha
->xgmac_data_dma
, GFP_KERNEL
);
751 if (!ha
->xgmac_data
) {
752 qla_printk(KERN_WARNING
, ha
,
753 "Unable to allocate memory for XGMAC read-data.\n");
759 memset(ha
->xgmac_data
, 0, XGMAC_DATA_SIZE
);
761 rval
= qla2x00_get_xgmac_stats(vha
, ha
->xgmac_data_dma
,
762 XGMAC_DATA_SIZE
, &actual_size
);
763 if (rval
!= QLA_SUCCESS
) {
764 qla_printk(KERN_WARNING
, ha
,
765 "Unable to read XGMAC data (%x).\n", rval
);
769 count
= actual_size
> count
? count
: actual_size
;
770 memcpy(buf
, ha
->xgmac_data
, count
);
775 static struct bin_attribute sysfs_xgmac_stats_attr
= {
777 .name
= "xgmac_stats",
781 .read
= qla2x00_sysfs_read_xgmac_stats
,
785 qla2x00_sysfs_read_dcbx_tlv(struct file
*filp
, struct kobject
*kobj
,
786 struct bin_attribute
*bin_attr
,
787 char *buf
, loff_t off
, size_t count
)
789 struct scsi_qla_host
*vha
= shost_priv(dev_to_shost(container_of(kobj
,
790 struct device
, kobj
)));
791 struct qla_hw_data
*ha
= vha
->hw
;
793 uint16_t actual_size
;
795 if (!capable(CAP_SYS_ADMIN
) || off
!= 0 || count
> DCBX_TLV_DATA_SIZE
)
801 ha
->dcbx_tlv
= dma_alloc_coherent(&ha
->pdev
->dev
, DCBX_TLV_DATA_SIZE
,
802 &ha
->dcbx_tlv_dma
, GFP_KERNEL
);
804 qla_printk(KERN_WARNING
, ha
,
805 "Unable to allocate memory for DCBX TLV read-data.\n");
811 memset(ha
->dcbx_tlv
, 0, DCBX_TLV_DATA_SIZE
);
813 rval
= qla2x00_get_dcbx_params(vha
, ha
->dcbx_tlv_dma
,
815 if (rval
!= QLA_SUCCESS
) {
816 qla_printk(KERN_WARNING
, ha
,
817 "Unable to read DCBX TLV data (%x).\n", rval
);
821 memcpy(buf
, ha
->dcbx_tlv
, count
);
826 static struct bin_attribute sysfs_dcbx_tlv_attr
= {
832 .read
= qla2x00_sysfs_read_dcbx_tlv
,
835 static struct sysfs_entry
{
837 struct bin_attribute
*attr
;
839 } bin_file_entries
[] = {
840 { "fw_dump", &sysfs_fw_dump_attr
, },
841 { "nvram", &sysfs_nvram_attr
, },
842 { "optrom", &sysfs_optrom_attr
, },
843 { "optrom_ctl", &sysfs_optrom_ctl_attr
, },
844 { "vpd", &sysfs_vpd_attr
, 1 },
845 { "sfp", &sysfs_sfp_attr
, 1 },
846 { "reset", &sysfs_reset_attr
, },
847 { "edc", &sysfs_edc_attr
, 2 },
848 { "edc_status", &sysfs_edc_status_attr
, 2 },
849 { "xgmac_stats", &sysfs_xgmac_stats_attr
, 3 },
850 { "dcbx_tlv", &sysfs_dcbx_tlv_attr
, 3 },
855 qla2x00_alloc_sysfs_attr(scsi_qla_host_t
*vha
)
857 struct Scsi_Host
*host
= vha
->host
;
858 struct sysfs_entry
*iter
;
861 for (iter
= bin_file_entries
; iter
->name
; iter
++) {
862 if (iter
->is4GBp_only
&& !IS_FWI2_CAPABLE(vha
->hw
))
864 if (iter
->is4GBp_only
== 2 && !IS_QLA25XX(vha
->hw
))
866 if (iter
->is4GBp_only
== 3 && !(IS_QLA8XXX_TYPE(vha
->hw
)))
869 ret
= sysfs_create_bin_file(&host
->shost_gendev
.kobj
,
872 qla_printk(KERN_INFO
, vha
->hw
,
873 "Unable to create sysfs %s binary attribute "
874 "(%d).\n", iter
->name
, ret
);
879 qla2x00_free_sysfs_attr(scsi_qla_host_t
*vha
)
881 struct Scsi_Host
*host
= vha
->host
;
882 struct sysfs_entry
*iter
;
883 struct qla_hw_data
*ha
= vha
->hw
;
885 for (iter
= bin_file_entries
; iter
->name
; iter
++) {
886 if (iter
->is4GBp_only
&& !IS_FWI2_CAPABLE(ha
))
888 if (iter
->is4GBp_only
== 2 && !IS_QLA25XX(ha
))
890 if (iter
->is4GBp_only
== 3 && !!(IS_QLA8XXX_TYPE(vha
->hw
)))
893 sysfs_remove_bin_file(&host
->shost_gendev
.kobj
,
897 if (ha
->beacon_blink_led
== 1)
898 ha
->isp_ops
->beacon_off(vha
);
901 /* Scsi_Host attributes. */
904 qla2x00_drvr_version_show(struct device
*dev
,
905 struct device_attribute
*attr
, char *buf
)
907 return snprintf(buf
, PAGE_SIZE
, "%s\n", qla2x00_version_str
);
911 qla2x00_fw_version_show(struct device
*dev
,
912 struct device_attribute
*attr
, char *buf
)
914 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
915 struct qla_hw_data
*ha
= vha
->hw
;
918 return snprintf(buf
, PAGE_SIZE
, "%s\n",
919 ha
->isp_ops
->fw_version_str(vha
, fw_str
));
923 qla2x00_serial_num_show(struct device
*dev
, struct device_attribute
*attr
,
926 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
927 struct qla_hw_data
*ha
= vha
->hw
;
930 if (IS_FWI2_CAPABLE(ha
)) {
931 qla2xxx_get_vpd_field(vha
, "SN", buf
, PAGE_SIZE
);
932 return snprintf(buf
, PAGE_SIZE
, "%s\n", buf
);
935 sn
= ((ha
->serial0
& 0x1f) << 16) | (ha
->serial2
<< 8) | ha
->serial1
;
936 return snprintf(buf
, PAGE_SIZE
, "%c%05d\n", 'A' + sn
/ 100000,
941 qla2x00_isp_name_show(struct device
*dev
, struct device_attribute
*attr
,
944 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
945 return snprintf(buf
, PAGE_SIZE
, "ISP%04X\n", vha
->hw
->pdev
->device
);
949 qla2x00_isp_id_show(struct device
*dev
, struct device_attribute
*attr
,
952 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
953 struct qla_hw_data
*ha
= vha
->hw
;
954 return snprintf(buf
, PAGE_SIZE
, "%04x %04x %04x %04x\n",
955 ha
->product_id
[0], ha
->product_id
[1], ha
->product_id
[2],
960 qla2x00_model_name_show(struct device
*dev
, struct device_attribute
*attr
,
963 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
964 return snprintf(buf
, PAGE_SIZE
, "%s\n", vha
->hw
->model_number
);
968 qla2x00_model_desc_show(struct device
*dev
, struct device_attribute
*attr
,
971 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
972 return snprintf(buf
, PAGE_SIZE
, "%s\n",
973 vha
->hw
->model_desc
? vha
->hw
->model_desc
: "");
977 qla2x00_pci_info_show(struct device
*dev
, struct device_attribute
*attr
,
980 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
983 return snprintf(buf
, PAGE_SIZE
, "%s\n",
984 vha
->hw
->isp_ops
->pci_info_str(vha
, pci_info
));
988 qla2x00_link_state_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
;
995 if (atomic_read(&vha
->loop_state
) == LOOP_DOWN
||
996 atomic_read(&vha
->loop_state
) == LOOP_DEAD
||
997 vha
->device_flags
& DFLG_NO_CABLE
)
998 len
= snprintf(buf
, PAGE_SIZE
, "Link Down\n");
999 else if (atomic_read(&vha
->loop_state
) != LOOP_READY
||
1000 test_bit(ABORT_ISP_ACTIVE
, &vha
->dpc_flags
) ||
1001 test_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
))
1002 len
= snprintf(buf
, PAGE_SIZE
, "Unknown Link State\n");
1004 len
= snprintf(buf
, PAGE_SIZE
, "Link Up - ");
1006 switch (ha
->current_topology
) {
1008 len
+= snprintf(buf
+ len
, PAGE_SIZE
-len
, "Loop\n");
1011 len
+= snprintf(buf
+ len
, PAGE_SIZE
-len
, "FL_Port\n");
1014 len
+= snprintf(buf
+ len
, PAGE_SIZE
-len
,
1015 "N_Port to N_Port\n");
1018 len
+= snprintf(buf
+ len
, PAGE_SIZE
-len
, "F_Port\n");
1021 len
+= snprintf(buf
+ len
, PAGE_SIZE
-len
, "Loop\n");
1029 qla2x00_zio_show(struct device
*dev
, struct device_attribute
*attr
,
1032 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1035 switch (vha
->hw
->zio_mode
) {
1036 case QLA_ZIO_MODE_6
:
1037 len
+= snprintf(buf
+ len
, PAGE_SIZE
-len
, "Mode 6\n");
1039 case QLA_ZIO_DISABLED
:
1040 len
+= snprintf(buf
+ len
, PAGE_SIZE
-len
, "Disabled\n");
1047 qla2x00_zio_store(struct device
*dev
, struct device_attribute
*attr
,
1048 const char *buf
, size_t count
)
1050 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1051 struct qla_hw_data
*ha
= vha
->hw
;
1055 if (!IS_ZIO_SUPPORTED(ha
))
1058 if (sscanf(buf
, "%d", &val
) != 1)
1062 zio_mode
= QLA_ZIO_MODE_6
;
1064 zio_mode
= QLA_ZIO_DISABLED
;
1066 /* Update per-hba values and queue a reset. */
1067 if (zio_mode
!= QLA_ZIO_DISABLED
|| ha
->zio_mode
!= QLA_ZIO_DISABLED
) {
1068 ha
->zio_mode
= zio_mode
;
1069 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
1075 qla2x00_zio_timer_show(struct device
*dev
, struct device_attribute
*attr
,
1078 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1080 return snprintf(buf
, PAGE_SIZE
, "%d us\n", vha
->hw
->zio_timer
* 100);
1084 qla2x00_zio_timer_store(struct device
*dev
, struct device_attribute
*attr
,
1085 const char *buf
, size_t count
)
1087 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1091 if (sscanf(buf
, "%d", &val
) != 1)
1093 if (val
> 25500 || val
< 100)
1096 zio_timer
= (uint16_t)(val
/ 100);
1097 vha
->hw
->zio_timer
= zio_timer
;
1103 qla2x00_beacon_show(struct device
*dev
, struct device_attribute
*attr
,
1106 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1109 if (vha
->hw
->beacon_blink_led
)
1110 len
+= snprintf(buf
+ len
, PAGE_SIZE
-len
, "Enabled\n");
1112 len
+= snprintf(buf
+ len
, PAGE_SIZE
-len
, "Disabled\n");
1117 qla2x00_beacon_store(struct device
*dev
, struct device_attribute
*attr
,
1118 const char *buf
, size_t count
)
1120 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1121 struct qla_hw_data
*ha
= vha
->hw
;
1125 if (IS_QLA2100(ha
) || IS_QLA2200(ha
))
1128 if (test_bit(ABORT_ISP_ACTIVE
, &vha
->dpc_flags
)) {
1129 qla_printk(KERN_WARNING
, ha
,
1130 "Abort ISP active -- ignoring beacon request.\n");
1134 if (sscanf(buf
, "%d", &val
) != 1)
1138 rval
= ha
->isp_ops
->beacon_on(vha
);
1140 rval
= ha
->isp_ops
->beacon_off(vha
);
1142 if (rval
!= QLA_SUCCESS
)
1149 qla2x00_optrom_bios_version_show(struct device
*dev
,
1150 struct device_attribute
*attr
, char *buf
)
1152 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1153 struct qla_hw_data
*ha
= vha
->hw
;
1154 return snprintf(buf
, PAGE_SIZE
, "%d.%02d\n", ha
->bios_revision
[1],
1155 ha
->bios_revision
[0]);
1159 qla2x00_optrom_efi_version_show(struct device
*dev
,
1160 struct device_attribute
*attr
, char *buf
)
1162 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1163 struct qla_hw_data
*ha
= vha
->hw
;
1164 return snprintf(buf
, PAGE_SIZE
, "%d.%02d\n", ha
->efi_revision
[1],
1165 ha
->efi_revision
[0]);
1169 qla2x00_optrom_fcode_version_show(struct device
*dev
,
1170 struct device_attribute
*attr
, char *buf
)
1172 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1173 struct qla_hw_data
*ha
= vha
->hw
;
1174 return snprintf(buf
, PAGE_SIZE
, "%d.%02d\n", ha
->fcode_revision
[1],
1175 ha
->fcode_revision
[0]);
1179 qla2x00_optrom_fw_version_show(struct device
*dev
,
1180 struct device_attribute
*attr
, char *buf
)
1182 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1183 struct qla_hw_data
*ha
= vha
->hw
;
1184 return snprintf(buf
, PAGE_SIZE
, "%d.%02d.%02d %d\n",
1185 ha
->fw_revision
[0], ha
->fw_revision
[1], ha
->fw_revision
[2],
1186 ha
->fw_revision
[3]);
1190 qla2x00_optrom_gold_fw_version_show(struct device
*dev
,
1191 struct device_attribute
*attr
, char *buf
)
1193 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1194 struct qla_hw_data
*ha
= vha
->hw
;
1196 if (!IS_QLA81XX(ha
))
1197 return snprintf(buf
, PAGE_SIZE
, "\n");
1199 return snprintf(buf
, PAGE_SIZE
, "%d.%02d.%02d (%d)\n",
1200 ha
->gold_fw_version
[0], ha
->gold_fw_version
[1],
1201 ha
->gold_fw_version
[2], ha
->gold_fw_version
[3]);
1205 qla2x00_total_isp_aborts_show(struct device
*dev
,
1206 struct device_attribute
*attr
, char *buf
)
1208 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1209 struct qla_hw_data
*ha
= vha
->hw
;
1210 return snprintf(buf
, PAGE_SIZE
, "%d\n",
1211 ha
->qla_stats
.total_isp_aborts
);
1215 qla24xx_84xx_fw_version_show(struct device
*dev
,
1216 struct device_attribute
*attr
, char *buf
)
1218 int rval
= QLA_SUCCESS
;
1219 uint16_t status
[2] = {0, 0};
1220 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1221 struct qla_hw_data
*ha
= vha
->hw
;
1223 if (!IS_QLA84XX(ha
))
1224 return snprintf(buf
, PAGE_SIZE
, "\n");
1226 if (ha
->cs84xx
->op_fw_version
== 0)
1227 rval
= qla84xx_verify_chip(vha
, status
);
1229 if ((rval
== QLA_SUCCESS
) && (status
[0] == 0))
1230 return snprintf(buf
, PAGE_SIZE
, "%u\n",
1231 (uint32_t)ha
->cs84xx
->op_fw_version
);
1233 return snprintf(buf
, PAGE_SIZE
, "\n");
1237 qla2x00_mpi_version_show(struct device
*dev
, struct device_attribute
*attr
,
1240 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1241 struct qla_hw_data
*ha
= vha
->hw
;
1243 if (!IS_QLA81XX(ha
))
1244 return snprintf(buf
, PAGE_SIZE
, "\n");
1246 return snprintf(buf
, PAGE_SIZE
, "%d.%02d.%02d (%x)\n",
1247 ha
->mpi_version
[0], ha
->mpi_version
[1], ha
->mpi_version
[2],
1248 ha
->mpi_capabilities
);
1252 qla2x00_phy_version_show(struct device
*dev
, struct device_attribute
*attr
,
1255 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1256 struct qla_hw_data
*ha
= vha
->hw
;
1258 if (!IS_QLA81XX(ha
))
1259 return snprintf(buf
, PAGE_SIZE
, "\n");
1261 return snprintf(buf
, PAGE_SIZE
, "%d.%02d.%02d\n",
1262 ha
->phy_version
[0], ha
->phy_version
[1], ha
->phy_version
[2]);
1266 qla2x00_flash_block_size_show(struct device
*dev
,
1267 struct device_attribute
*attr
, char *buf
)
1269 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1270 struct qla_hw_data
*ha
= vha
->hw
;
1272 return snprintf(buf
, PAGE_SIZE
, "0x%x\n", ha
->fdt_block_size
);
1276 qla2x00_vlan_id_show(struct device
*dev
, struct device_attribute
*attr
,
1279 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1281 if (!IS_QLA8XXX_TYPE(vha
->hw
))
1282 return snprintf(buf
, PAGE_SIZE
, "\n");
1284 return snprintf(buf
, PAGE_SIZE
, "%d\n", vha
->fcoe_vlan_id
);
1288 qla2x00_vn_port_mac_address_show(struct device
*dev
,
1289 struct device_attribute
*attr
, char *buf
)
1291 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1293 if (!IS_QLA8XXX_TYPE(vha
->hw
))
1294 return snprintf(buf
, PAGE_SIZE
, "\n");
1296 return snprintf(buf
, PAGE_SIZE
, "%02x:%02x:%02x:%02x:%02x:%02x\n",
1297 vha
->fcoe_vn_port_mac
[5], vha
->fcoe_vn_port_mac
[4],
1298 vha
->fcoe_vn_port_mac
[3], vha
->fcoe_vn_port_mac
[2],
1299 vha
->fcoe_vn_port_mac
[1], vha
->fcoe_vn_port_mac
[0]);
1303 qla2x00_fabric_param_show(struct device
*dev
, struct device_attribute
*attr
,
1306 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1308 return snprintf(buf
, PAGE_SIZE
, "%d\n", vha
->hw
->switch_cap
);
1312 qla2x00_thermal_temp_show(struct device
*dev
,
1313 struct device_attribute
*attr
, char *buf
)
1315 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1316 int rval
= QLA_FUNCTION_FAILED
;
1317 uint16_t temp
, frac
;
1319 if (!vha
->hw
->flags
.thermal_supported
)
1320 return snprintf(buf
, PAGE_SIZE
, "\n");
1323 if (test_bit(ABORT_ISP_ACTIVE
, &vha
->dpc_flags
) ||
1324 test_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
))
1325 DEBUG2_3_11(printk(KERN_WARNING
1326 "%s(%ld): isp reset in progress.\n",
1327 __func__
, vha
->host_no
));
1328 else if (!vha
->hw
->flags
.eeh_busy
)
1329 rval
= qla2x00_get_thermal_temp(vha
, &temp
, &frac
);
1330 if (rval
!= QLA_SUCCESS
)
1333 return snprintf(buf
, PAGE_SIZE
, "%d.%02d\n", temp
, frac
);
1337 qla2x00_fw_state_show(struct device
*dev
, struct device_attribute
*attr
,
1340 scsi_qla_host_t
*vha
= shost_priv(class_to_shost(dev
));
1341 int rval
= QLA_FUNCTION_FAILED
;
1344 if (test_bit(ABORT_ISP_ACTIVE
, &vha
->dpc_flags
) ||
1345 test_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
))
1346 DEBUG2_3_11(printk("%s(%ld): isp reset in progress.\n",
1347 __func__
, vha
->host_no
));
1348 else if (!vha
->hw
->flags
.eeh_busy
)
1349 rval
= qla2x00_get_firmware_state(vha
, state
);
1350 if (rval
!= QLA_SUCCESS
)
1351 memset(state
, -1, sizeof(state
));
1353 return snprintf(buf
, PAGE_SIZE
, "0x%x 0x%x 0x%x 0x%x 0x%x\n", state
[0],
1354 state
[1], state
[2], state
[3], state
[4]);
1357 static DEVICE_ATTR(driver_version
, S_IRUGO
, qla2x00_drvr_version_show
, NULL
);
1358 static DEVICE_ATTR(fw_version
, S_IRUGO
, qla2x00_fw_version_show
, NULL
);
1359 static DEVICE_ATTR(serial_num
, S_IRUGO
, qla2x00_serial_num_show
, NULL
);
1360 static DEVICE_ATTR(isp_name
, S_IRUGO
, qla2x00_isp_name_show
, NULL
);
1361 static DEVICE_ATTR(isp_id
, S_IRUGO
, qla2x00_isp_id_show
, NULL
);
1362 static DEVICE_ATTR(model_name
, S_IRUGO
, qla2x00_model_name_show
, NULL
);
1363 static DEVICE_ATTR(model_desc
, S_IRUGO
, qla2x00_model_desc_show
, NULL
);
1364 static DEVICE_ATTR(pci_info
, S_IRUGO
, qla2x00_pci_info_show
, NULL
);
1365 static DEVICE_ATTR(link_state
, S_IRUGO
, qla2x00_link_state_show
, NULL
);
1366 static DEVICE_ATTR(zio
, S_IRUGO
| S_IWUSR
, qla2x00_zio_show
, qla2x00_zio_store
);
1367 static DEVICE_ATTR(zio_timer
, S_IRUGO
| S_IWUSR
, qla2x00_zio_timer_show
,
1368 qla2x00_zio_timer_store
);
1369 static DEVICE_ATTR(beacon
, S_IRUGO
| S_IWUSR
, qla2x00_beacon_show
,
1370 qla2x00_beacon_store
);
1371 static DEVICE_ATTR(optrom_bios_version
, S_IRUGO
,
1372 qla2x00_optrom_bios_version_show
, NULL
);
1373 static DEVICE_ATTR(optrom_efi_version
, S_IRUGO
,
1374 qla2x00_optrom_efi_version_show
, NULL
);
1375 static DEVICE_ATTR(optrom_fcode_version
, S_IRUGO
,
1376 qla2x00_optrom_fcode_version_show
, NULL
);
1377 static DEVICE_ATTR(optrom_fw_version
, S_IRUGO
, qla2x00_optrom_fw_version_show
,
1379 static DEVICE_ATTR(optrom_gold_fw_version
, S_IRUGO
,
1380 qla2x00_optrom_gold_fw_version_show
, NULL
);
1381 static DEVICE_ATTR(84xx_fw_version
, S_IRUGO
, qla24xx_84xx_fw_version_show
,
1383 static DEVICE_ATTR(total_isp_aborts
, S_IRUGO
, qla2x00_total_isp_aborts_show
,
1385 static DEVICE_ATTR(mpi_version
, S_IRUGO
, qla2x00_mpi_version_show
, NULL
);
1386 static DEVICE_ATTR(phy_version
, S_IRUGO
, qla2x00_phy_version_show
, NULL
);
1387 static DEVICE_ATTR(flash_block_size
, S_IRUGO
, qla2x00_flash_block_size_show
,
1389 static DEVICE_ATTR(vlan_id
, S_IRUGO
, qla2x00_vlan_id_show
, NULL
);
1390 static DEVICE_ATTR(vn_port_mac_address
, S_IRUGO
,
1391 qla2x00_vn_port_mac_address_show
, NULL
);
1392 static DEVICE_ATTR(fabric_param
, S_IRUGO
, qla2x00_fabric_param_show
, NULL
);
1393 static DEVICE_ATTR(fw_state
, S_IRUGO
, qla2x00_fw_state_show
, NULL
);
1394 static DEVICE_ATTR(thermal_temp
, S_IRUGO
, qla2x00_thermal_temp_show
, NULL
);
1396 struct device_attribute
*qla2x00_host_attrs
[] = {
1397 &dev_attr_driver_version
,
1398 &dev_attr_fw_version
,
1399 &dev_attr_serial_num
,
1402 &dev_attr_model_name
,
1403 &dev_attr_model_desc
,
1405 &dev_attr_link_state
,
1407 &dev_attr_zio_timer
,
1409 &dev_attr_optrom_bios_version
,
1410 &dev_attr_optrom_efi_version
,
1411 &dev_attr_optrom_fcode_version
,
1412 &dev_attr_optrom_fw_version
,
1413 &dev_attr_84xx_fw_version
,
1414 &dev_attr_total_isp_aborts
,
1415 &dev_attr_mpi_version
,
1416 &dev_attr_phy_version
,
1417 &dev_attr_flash_block_size
,
1419 &dev_attr_vn_port_mac_address
,
1420 &dev_attr_fabric_param
,
1422 &dev_attr_optrom_gold_fw_version
,
1423 &dev_attr_thermal_temp
,
1427 /* Host attributes. */
1430 qla2x00_get_host_port_id(struct Scsi_Host
*shost
)
1432 scsi_qla_host_t
*vha
= shost_priv(shost
);
1434 fc_host_port_id(shost
) = vha
->d_id
.b
.domain
<< 16 |
1435 vha
->d_id
.b
.area
<< 8 | vha
->d_id
.b
.al_pa
;
1439 qla2x00_get_host_speed(struct Scsi_Host
*shost
)
1441 struct qla_hw_data
*ha
= ((struct scsi_qla_host
*)
1442 (shost_priv(shost
)))->hw
;
1443 u32 speed
= FC_PORTSPEED_UNKNOWN
;
1445 switch (ha
->link_data_rate
) {
1446 case PORT_SPEED_1GB
:
1447 speed
= FC_PORTSPEED_1GBIT
;
1449 case PORT_SPEED_2GB
:
1450 speed
= FC_PORTSPEED_2GBIT
;
1452 case PORT_SPEED_4GB
:
1453 speed
= FC_PORTSPEED_4GBIT
;
1455 case PORT_SPEED_8GB
:
1456 speed
= FC_PORTSPEED_8GBIT
;
1458 case PORT_SPEED_10GB
:
1459 speed
= FC_PORTSPEED_10GBIT
;
1462 fc_host_speed(shost
) = speed
;
1466 qla2x00_get_host_port_type(struct Scsi_Host
*shost
)
1468 scsi_qla_host_t
*vha
= shost_priv(shost
);
1469 uint32_t port_type
= FC_PORTTYPE_UNKNOWN
;
1472 fc_host_port_type(shost
) = FC_PORTTYPE_NPIV
;
1475 switch (vha
->hw
->current_topology
) {
1477 port_type
= FC_PORTTYPE_LPORT
;
1480 port_type
= FC_PORTTYPE_NLPORT
;
1483 port_type
= FC_PORTTYPE_PTP
;
1486 port_type
= FC_PORTTYPE_NPORT
;
1489 fc_host_port_type(shost
) = port_type
;
1493 qla2x00_get_starget_node_name(struct scsi_target
*starget
)
1495 struct Scsi_Host
*host
= dev_to_shost(starget
->dev
.parent
);
1496 scsi_qla_host_t
*vha
= shost_priv(host
);
1500 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
1501 if (fcport
->rport
&&
1502 starget
->id
== fcport
->rport
->scsi_target_id
) {
1503 node_name
= wwn_to_u64(fcport
->node_name
);
1508 fc_starget_node_name(starget
) = node_name
;
1512 qla2x00_get_starget_port_name(struct scsi_target
*starget
)
1514 struct Scsi_Host
*host
= dev_to_shost(starget
->dev
.parent
);
1515 scsi_qla_host_t
*vha
= shost_priv(host
);
1519 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
1520 if (fcport
->rport
&&
1521 starget
->id
== fcport
->rport
->scsi_target_id
) {
1522 port_name
= wwn_to_u64(fcport
->port_name
);
1527 fc_starget_port_name(starget
) = port_name
;
1531 qla2x00_get_starget_port_id(struct scsi_target
*starget
)
1533 struct Scsi_Host
*host
= dev_to_shost(starget
->dev
.parent
);
1534 scsi_qla_host_t
*vha
= shost_priv(host
);
1536 uint32_t port_id
= ~0U;
1538 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
1539 if (fcport
->rport
&&
1540 starget
->id
== fcport
->rport
->scsi_target_id
) {
1541 port_id
= fcport
->d_id
.b
.domain
<< 16 |
1542 fcport
->d_id
.b
.area
<< 8 | fcport
->d_id
.b
.al_pa
;
1547 fc_starget_port_id(starget
) = port_id
;
1551 qla2x00_set_rport_loss_tmo(struct fc_rport
*rport
, uint32_t timeout
)
1554 rport
->dev_loss_tmo
= timeout
;
1556 rport
->dev_loss_tmo
= 1;
1560 qla2x00_dev_loss_tmo_callbk(struct fc_rport
*rport
)
1562 struct Scsi_Host
*host
= rport_to_shost(rport
);
1563 fc_port_t
*fcport
= *(fc_port_t
**)rport
->dd_data
;
1564 unsigned long flags
;
1569 /* Now that the rport has been deleted, set the fcport state to
1571 atomic_set(&fcport
->state
, FCS_DEVICE_DEAD
);
1574 * Transport has effectively 'deleted' the rport, clear
1575 * all local references.
1577 spin_lock_irqsave(host
->host_lock
, flags
);
1578 fcport
->rport
= fcport
->drport
= NULL
;
1579 *((fc_port_t
**)rport
->dd_data
) = NULL
;
1580 spin_unlock_irqrestore(host
->host_lock
, flags
);
1582 if (test_bit(ABORT_ISP_ACTIVE
, &fcport
->vha
->dpc_flags
))
1585 if (unlikely(pci_channel_offline(fcport
->vha
->hw
->pdev
))) {
1586 qla2x00_abort_all_cmds(fcport
->vha
, DID_NO_CONNECT
<< 16);
1592 qla2x00_terminate_rport_io(struct fc_rport
*rport
)
1594 fc_port_t
*fcport
= *(fc_port_t
**)rport
->dd_data
;
1599 if (test_bit(ABORT_ISP_ACTIVE
, &fcport
->vha
->dpc_flags
))
1602 if (unlikely(pci_channel_offline(fcport
->vha
->hw
->pdev
))) {
1603 qla2x00_abort_all_cmds(fcport
->vha
, DID_NO_CONNECT
<< 16);
1607 * At this point all fcport's software-states are cleared. Perform any
1608 * final cleanup of firmware resources (PCBs and XCBs).
1610 if (fcport
->loop_id
!= FC_NO_LOOP_ID
&&
1611 !test_bit(UNLOADING
, &fcport
->vha
->dpc_flags
))
1612 fcport
->vha
->hw
->isp_ops
->fabric_logout(fcport
->vha
,
1613 fcport
->loop_id
, fcport
->d_id
.b
.domain
,
1614 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
);
1618 qla2x00_issue_lip(struct Scsi_Host
*shost
)
1620 scsi_qla_host_t
*vha
= shost_priv(shost
);
1622 qla2x00_loop_reset(vha
);
1626 static struct fc_host_statistics
*
1627 qla2x00_get_fc_host_stats(struct Scsi_Host
*shost
)
1629 scsi_qla_host_t
*vha
= shost_priv(shost
);
1630 struct qla_hw_data
*ha
= vha
->hw
;
1631 struct scsi_qla_host
*base_vha
= pci_get_drvdata(ha
->pdev
);
1633 struct link_statistics
*stats
;
1634 dma_addr_t stats_dma
;
1635 struct fc_host_statistics
*pfc_host_stat
;
1637 pfc_host_stat
= &ha
->fc_host_stat
;
1638 memset(pfc_host_stat
, -1, sizeof(struct fc_host_statistics
));
1640 if (test_bit(UNLOADING
, &vha
->dpc_flags
))
1643 if (unlikely(pci_channel_offline(ha
->pdev
)))
1646 stats
= dma_pool_alloc(ha
->s_dma_pool
, GFP_KERNEL
, &stats_dma
);
1647 if (stats
== NULL
) {
1648 DEBUG2_3_11(printk("%s(%ld): Failed to allocate memory.\n",
1649 __func__
, base_vha
->host_no
));
1652 memset(stats
, 0, DMA_POOL_SIZE
);
1654 rval
= QLA_FUNCTION_FAILED
;
1655 if (IS_FWI2_CAPABLE(ha
)) {
1656 rval
= qla24xx_get_isp_stats(base_vha
, stats
, stats_dma
);
1657 } else if (atomic_read(&base_vha
->loop_state
) == LOOP_READY
&&
1658 !test_bit(ABORT_ISP_ACTIVE
, &base_vha
->dpc_flags
) &&
1659 !test_bit(ISP_ABORT_NEEDED
, &base_vha
->dpc_flags
) &&
1661 /* Must be in a 'READY' state for statistics retrieval. */
1662 rval
= qla2x00_get_link_status(base_vha
, base_vha
->loop_id
,
1666 if (rval
!= QLA_SUCCESS
)
1669 pfc_host_stat
->link_failure_count
= stats
->link_fail_cnt
;
1670 pfc_host_stat
->loss_of_sync_count
= stats
->loss_sync_cnt
;
1671 pfc_host_stat
->loss_of_signal_count
= stats
->loss_sig_cnt
;
1672 pfc_host_stat
->prim_seq_protocol_err_count
= stats
->prim_seq_err_cnt
;
1673 pfc_host_stat
->invalid_tx_word_count
= stats
->inval_xmit_word_cnt
;
1674 pfc_host_stat
->invalid_crc_count
= stats
->inval_crc_cnt
;
1675 if (IS_FWI2_CAPABLE(ha
)) {
1676 pfc_host_stat
->lip_count
= stats
->lip_cnt
;
1677 pfc_host_stat
->tx_frames
= stats
->tx_frames
;
1678 pfc_host_stat
->rx_frames
= stats
->rx_frames
;
1679 pfc_host_stat
->dumped_frames
= stats
->dumped_frames
;
1680 pfc_host_stat
->nos_count
= stats
->nos_rcvd
;
1682 pfc_host_stat
->fcp_input_megabytes
= ha
->qla_stats
.input_bytes
>> 20;
1683 pfc_host_stat
->fcp_output_megabytes
= ha
->qla_stats
.output_bytes
>> 20;
1686 dma_pool_free(ha
->s_dma_pool
, stats
, stats_dma
);
1688 return pfc_host_stat
;
1692 qla2x00_get_host_symbolic_name(struct Scsi_Host
*shost
)
1694 scsi_qla_host_t
*vha
= shost_priv(shost
);
1696 qla2x00_get_sym_node_name(vha
, fc_host_symbolic_name(shost
));
1700 qla2x00_set_host_system_hostname(struct Scsi_Host
*shost
)
1702 scsi_qla_host_t
*vha
= shost_priv(shost
);
1704 set_bit(REGISTER_FDMI_NEEDED
, &vha
->dpc_flags
);
1708 qla2x00_get_host_fabric_name(struct Scsi_Host
*shost
)
1710 scsi_qla_host_t
*vha
= shost_priv(shost
);
1711 uint8_t node_name
[WWN_SIZE
] = { 0xFF, 0xFF, 0xFF, 0xFF, \
1712 0xFF, 0xFF, 0xFF, 0xFF};
1713 u64 fabric_name
= wwn_to_u64(node_name
);
1715 if (vha
->device_flags
& SWITCH_FOUND
)
1716 fabric_name
= wwn_to_u64(vha
->fabric_node_name
);
1718 fc_host_fabric_name(shost
) = fabric_name
;
1722 qla2x00_get_host_port_state(struct Scsi_Host
*shost
)
1724 scsi_qla_host_t
*vha
= shost_priv(shost
);
1725 struct scsi_qla_host
*base_vha
= pci_get_drvdata(vha
->hw
->pdev
);
1727 if (!base_vha
->flags
.online
)
1728 fc_host_port_state(shost
) = FC_PORTSTATE_OFFLINE
;
1729 else if (atomic_read(&base_vha
->loop_state
) == LOOP_TIMEOUT
)
1730 fc_host_port_state(shost
) = FC_PORTSTATE_UNKNOWN
;
1732 fc_host_port_state(shost
) = FC_PORTSTATE_ONLINE
;
1736 qla24xx_vport_create(struct fc_vport
*fc_vport
, bool disable
)
1740 scsi_qla_host_t
*base_vha
= shost_priv(fc_vport
->shost
);
1741 scsi_qla_host_t
*vha
= NULL
;
1742 struct qla_hw_data
*ha
= base_vha
->hw
;
1743 uint16_t options
= 0;
1745 struct req_que
*req
= ha
->req_q_map
[0];
1747 ret
= qla24xx_vport_create_req_sanity_check(fc_vport
);
1749 DEBUG15(printk("qla24xx_vport_create_req_sanity_check failed, "
1750 "status %x\n", ret
));
1754 vha
= qla24xx_create_vhost(fc_vport
);
1756 DEBUG15(printk ("qla24xx_create_vhost failed, vha = %p\n",
1758 return FC_VPORT_FAILED
;
1761 atomic_set(&vha
->vp_state
, VP_OFFLINE
);
1762 fc_vport_set_state(fc_vport
, FC_VPORT_DISABLED
);
1764 atomic_set(&vha
->vp_state
, VP_FAILED
);
1766 /* ready to create vport */
1767 qla_printk(KERN_INFO
, vha
->hw
, "VP entry id %d assigned.\n",
1770 /* initialized vport states */
1771 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
1772 vha
->vp_err_state
= VP_ERR_PORTDWN
;
1773 vha
->vp_prev_err_state
= VP_ERR_UNKWN
;
1774 /* Check if physical ha port is Up */
1775 if (atomic_read(&base_vha
->loop_state
) == LOOP_DOWN
||
1776 atomic_read(&base_vha
->loop_state
) == LOOP_DEAD
) {
1777 /* Don't retry or attempt login of this virtual port */
1778 DEBUG15(printk ("scsi(%ld): pport loop_state is not UP.\n",
1779 base_vha
->host_no
));
1780 atomic_set(&vha
->loop_state
, LOOP_DEAD
);
1782 fc_vport_set_state(fc_vport
, FC_VPORT_LINKDOWN
);
1785 if ((IS_QLA25XX(ha
) || IS_QLA81XX(ha
)) && ql2xenabledif
) {
1786 if (ha
->fw_attributes
& BIT_4
) {
1787 vha
->flags
.difdix_supported
= 1;
1788 DEBUG18(qla_printk(KERN_INFO
, ha
,
1789 "Registering for DIF/DIX type 1 and 3"
1791 scsi_host_set_prot(vha
->host
,
1792 SHOST_DIF_TYPE1_PROTECTION
1793 | SHOST_DIF_TYPE2_PROTECTION
1794 | SHOST_DIF_TYPE3_PROTECTION
1795 | SHOST_DIX_TYPE1_PROTECTION
1796 | SHOST_DIX_TYPE2_PROTECTION
1797 | SHOST_DIX_TYPE3_PROTECTION
);
1798 scsi_host_set_guard(vha
->host
, SHOST_DIX_GUARD_CRC
);
1800 vha
->flags
.difdix_supported
= 0;
1803 if (scsi_add_host_with_dma(vha
->host
, &fc_vport
->dev
,
1805 DEBUG15(printk("scsi(%ld): scsi_add_host failure for VP[%d].\n",
1806 vha
->host_no
, vha
->vp_idx
));
1807 goto vport_create_failed_2
;
1810 /* initialize attributes */
1811 fc_host_dev_loss_tmo(vha
->host
) = ha
->port_down_retry_count
;
1812 fc_host_node_name(vha
->host
) = wwn_to_u64(vha
->node_name
);
1813 fc_host_port_name(vha
->host
) = wwn_to_u64(vha
->port_name
);
1814 fc_host_supported_classes(vha
->host
) =
1815 fc_host_supported_classes(base_vha
->host
);
1816 fc_host_supported_speeds(vha
->host
) =
1817 fc_host_supported_speeds(base_vha
->host
);
1819 qla24xx_vport_disable(fc_vport
, disable
);
1821 if (ha
->flags
.cpu_affinity_enabled
) {
1822 req
= ha
->req_q_map
[1];
1824 } else if (ql2xmaxqueues
== 1 || !ha
->npiv_info
)
1826 /* Create a request queue in QoS mode for the vport */
1827 for (cnt
= 0; cnt
< ha
->nvram_npiv_size
; cnt
++) {
1828 if (memcmp(ha
->npiv_info
[cnt
].port_name
, vha
->port_name
, 8) == 0
1829 && memcmp(ha
->npiv_info
[cnt
].node_name
, vha
->node_name
,
1831 qos
= ha
->npiv_info
[cnt
].q_qos
;
1836 ret
= qla25xx_create_req_que(ha
, options
, vha
->vp_idx
, 0, 0,
1839 qla_printk(KERN_WARNING
, ha
,
1840 "Can't create request queue for vp_idx:%d\n",
1843 DEBUG2(qla_printk(KERN_INFO
, ha
,
1844 "Request Que:%d (QoS: %d) created for vp_idx:%d\n",
1845 ret
, qos
, vha
->vp_idx
));
1846 req
= ha
->req_q_map
[ret
];
1854 vport_create_failed_2
:
1855 qla24xx_disable_vp(vha
);
1856 qla24xx_deallocate_vp_id(vha
);
1857 scsi_host_put(vha
->host
);
1858 return FC_VPORT_FAILED
;
1862 qla24xx_vport_delete(struct fc_vport
*fc_vport
)
1864 scsi_qla_host_t
*vha
= fc_vport
->dd_data
;
1865 struct qla_hw_data
*ha
= vha
->hw
;
1866 uint16_t id
= vha
->vp_idx
;
1868 while (test_bit(LOOP_RESYNC_ACTIVE
, &vha
->dpc_flags
) ||
1869 test_bit(FCPORT_UPDATE_NEEDED
, &vha
->dpc_flags
))
1872 qla24xx_disable_vp(vha
);
1874 vha
->flags
.delete_progress
= 1;
1876 fc_remove_host(vha
->host
);
1878 scsi_remove_host(vha
->host
);
1880 if (vha
->timer_active
) {
1881 qla2x00_vp_stop_timer(vha
);
1882 DEBUG15(printk(KERN_INFO
"scsi(%ld): timer for the vport[%d]"
1883 " = %p has stopped\n", vha
->host_no
, vha
->vp_idx
, vha
));
1886 qla24xx_deallocate_vp_id(vha
);
1888 /* No pending activities shall be there on the vha now */
1889 DEBUG(msleep(random32()%10)); /* Just to see if something falls on
1890 * the net we have placed below */
1892 BUG_ON(atomic_read(&vha
->vref_count
));
1894 qla2x00_free_fcports(vha
);
1896 mutex_lock(&ha
->vport_lock
);
1897 ha
->cur_vport_count
--;
1898 clear_bit(vha
->vp_idx
, ha
->vp_idx_map
);
1899 mutex_unlock(&ha
->vport_lock
);
1901 if (vha
->req
->id
&& !ha
->flags
.cpu_affinity_enabled
) {
1902 if (qla25xx_delete_req_que(vha
, vha
->req
) != QLA_SUCCESS
)
1903 qla_printk(KERN_WARNING
, ha
,
1904 "Queue delete failed.\n");
1907 scsi_host_put(vha
->host
);
1908 qla_printk(KERN_INFO
, ha
, "vport %d deleted\n", id
);
1913 qla24xx_vport_disable(struct fc_vport
*fc_vport
, bool disable
)
1915 scsi_qla_host_t
*vha
= fc_vport
->dd_data
;
1918 qla24xx_disable_vp(vha
);
1920 qla24xx_enable_vp(vha
);
1925 struct fc_function_template qla2xxx_transport_functions
= {
1927 .show_host_node_name
= 1,
1928 .show_host_port_name
= 1,
1929 .show_host_supported_classes
= 1,
1930 .show_host_supported_speeds
= 1,
1932 .get_host_port_id
= qla2x00_get_host_port_id
,
1933 .show_host_port_id
= 1,
1934 .get_host_speed
= qla2x00_get_host_speed
,
1935 .show_host_speed
= 1,
1936 .get_host_port_type
= qla2x00_get_host_port_type
,
1937 .show_host_port_type
= 1,
1938 .get_host_symbolic_name
= qla2x00_get_host_symbolic_name
,
1939 .show_host_symbolic_name
= 1,
1940 .set_host_system_hostname
= qla2x00_set_host_system_hostname
,
1941 .show_host_system_hostname
= 1,
1942 .get_host_fabric_name
= qla2x00_get_host_fabric_name
,
1943 .show_host_fabric_name
= 1,
1944 .get_host_port_state
= qla2x00_get_host_port_state
,
1945 .show_host_port_state
= 1,
1947 .dd_fcrport_size
= sizeof(struct fc_port
*),
1948 .show_rport_supported_classes
= 1,
1950 .get_starget_node_name
= qla2x00_get_starget_node_name
,
1951 .show_starget_node_name
= 1,
1952 .get_starget_port_name
= qla2x00_get_starget_port_name
,
1953 .show_starget_port_name
= 1,
1954 .get_starget_port_id
= qla2x00_get_starget_port_id
,
1955 .show_starget_port_id
= 1,
1957 .set_rport_dev_loss_tmo
= qla2x00_set_rport_loss_tmo
,
1958 .show_rport_dev_loss_tmo
= 1,
1960 .issue_fc_host_lip
= qla2x00_issue_lip
,
1961 .dev_loss_tmo_callbk
= qla2x00_dev_loss_tmo_callbk
,
1962 .terminate_rport_io
= qla2x00_terminate_rport_io
,
1963 .get_fc_host_stats
= qla2x00_get_fc_host_stats
,
1965 .vport_create
= qla24xx_vport_create
,
1966 .vport_disable
= qla24xx_vport_disable
,
1967 .vport_delete
= qla24xx_vport_delete
,
1968 .bsg_request
= qla24xx_bsg_request
,
1969 .bsg_timeout
= qla24xx_bsg_timeout
,
1972 struct fc_function_template qla2xxx_transport_vport_functions
= {
1974 .show_host_node_name
= 1,
1975 .show_host_port_name
= 1,
1976 .show_host_supported_classes
= 1,
1978 .get_host_port_id
= qla2x00_get_host_port_id
,
1979 .show_host_port_id
= 1,
1980 .get_host_speed
= qla2x00_get_host_speed
,
1981 .show_host_speed
= 1,
1982 .get_host_port_type
= qla2x00_get_host_port_type
,
1983 .show_host_port_type
= 1,
1984 .get_host_symbolic_name
= qla2x00_get_host_symbolic_name
,
1985 .show_host_symbolic_name
= 1,
1986 .set_host_system_hostname
= qla2x00_set_host_system_hostname
,
1987 .show_host_system_hostname
= 1,
1988 .get_host_fabric_name
= qla2x00_get_host_fabric_name
,
1989 .show_host_fabric_name
= 1,
1990 .get_host_port_state
= qla2x00_get_host_port_state
,
1991 .show_host_port_state
= 1,
1993 .dd_fcrport_size
= sizeof(struct fc_port
*),
1994 .show_rport_supported_classes
= 1,
1996 .get_starget_node_name
= qla2x00_get_starget_node_name
,
1997 .show_starget_node_name
= 1,
1998 .get_starget_port_name
= qla2x00_get_starget_port_name
,
1999 .show_starget_port_name
= 1,
2000 .get_starget_port_id
= qla2x00_get_starget_port_id
,
2001 .show_starget_port_id
= 1,
2003 .set_rport_dev_loss_tmo
= qla2x00_set_rport_loss_tmo
,
2004 .show_rport_dev_loss_tmo
= 1,
2006 .issue_fc_host_lip
= qla2x00_issue_lip
,
2007 .dev_loss_tmo_callbk
= qla2x00_dev_loss_tmo_callbk
,
2008 .terminate_rport_io
= qla2x00_terminate_rport_io
,
2009 .get_fc_host_stats
= qla2x00_get_fc_host_stats
,
2010 .bsg_request
= qla24xx_bsg_request
,
2011 .bsg_timeout
= qla24xx_bsg_timeout
,
2015 qla2x00_init_host_attr(scsi_qla_host_t
*vha
)
2017 struct qla_hw_data
*ha
= vha
->hw
;
2018 u32 speed
= FC_PORTSPEED_UNKNOWN
;
2020 fc_host_dev_loss_tmo(vha
->host
) = ha
->port_down_retry_count
;
2021 fc_host_node_name(vha
->host
) = wwn_to_u64(vha
->node_name
);
2022 fc_host_port_name(vha
->host
) = wwn_to_u64(vha
->port_name
);
2023 fc_host_supported_classes(vha
->host
) = FC_COS_CLASS3
;
2024 fc_host_max_npiv_vports(vha
->host
) = ha
->max_npiv_vports
;
2025 fc_host_npiv_vports_inuse(vha
->host
) = ha
->cur_vport_count
;
2027 if (IS_QLA8XXX_TYPE(ha
))
2028 speed
= FC_PORTSPEED_10GBIT
;
2029 else if (IS_QLA25XX(ha
))
2030 speed
= FC_PORTSPEED_8GBIT
| FC_PORTSPEED_4GBIT
|
2031 FC_PORTSPEED_2GBIT
| FC_PORTSPEED_1GBIT
;
2032 else if (IS_QLA24XX_TYPE(ha
))
2033 speed
= FC_PORTSPEED_4GBIT
| FC_PORTSPEED_2GBIT
|
2035 else if (IS_QLA23XX(ha
))
2036 speed
= FC_PORTSPEED_2GBIT
| FC_PORTSPEED_1GBIT
;
2038 speed
= FC_PORTSPEED_1GBIT
;
2039 fc_host_supported_speeds(vha
->host
) = speed
;