2 * QLogic Fibre Channel HBA Driver
3 * Copyright (c) 2003-2008 QLogic Corporation
5 * See LICENSE.qla2xxx for copyright and licensing details.
9 #include <linux/kthread.h>
10 #include <linux/vmalloc.h>
11 #include <linux/delay.h>
13 static int qla24xx_vport_disable(struct fc_vport *, bool);
15 /* SYSFS attributes --------------------------------------------------------- */
18 qla2x00_sysfs_read_fw_dump(struct kobject *kobj,
19 struct bin_attribute *bin_attr,
20 char *buf, loff_t off, size_t count)
22 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
23 struct device, kobj)));
24 struct qla_hw_data *ha = vha->hw;
26 if (ha->fw_dump_reading == 0)
29 return memory_read_from_buffer(buf, count, &off, ha->fw_dump,
34 qla2x00_sysfs_write_fw_dump(struct kobject *kobj,
35 struct bin_attribute *bin_attr,
36 char *buf, loff_t off, size_t count)
38 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
39 struct device, kobj)));
40 struct qla_hw_data *ha = vha->hw;
46 reading = simple_strtol(buf, NULL, 10);
49 if (!ha->fw_dump_reading)
52 qla_printk(KERN_INFO, ha,
53 "Firmware dump cleared on (%ld).\n", vha->host_no);
55 ha->fw_dump_reading = 0;
59 if (ha->fw_dumped && !ha->fw_dump_reading) {
60 ha->fw_dump_reading = 1;
62 qla_printk(KERN_INFO, ha,
63 "Raw firmware dump ready for read on (%ld).\n",
68 qla2x00_alloc_fw_dump(vha);
71 qla2x00_system_error(vha);
77 static struct bin_attribute sysfs_fw_dump_attr = {
80 .mode = S_IRUSR | S_IWUSR,
83 .read = qla2x00_sysfs_read_fw_dump,
84 .write = qla2x00_sysfs_write_fw_dump,
88 qla2x00_sysfs_read_nvram(struct kobject *kobj,
89 struct bin_attribute *bin_attr,
90 char *buf, loff_t off, size_t count)
92 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
93 struct device, kobj)));
94 struct qla_hw_data *ha = vha->hw;
96 if (!capable(CAP_SYS_ADMIN))
99 if (IS_NOCACHE_VPD_TYPE(ha))
100 ha->isp_ops->read_optrom(vha, ha->nvram, ha->flt_region_nvram << 2,
102 return memory_read_from_buffer(buf, count, &off, ha->nvram,
107 qla2x00_sysfs_write_nvram(struct kobject *kobj,
108 struct bin_attribute *bin_attr,
109 char *buf, loff_t off, size_t count)
111 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
112 struct device, kobj)));
113 struct qla_hw_data *ha = vha->hw;
116 if (!capable(CAP_SYS_ADMIN) || off != 0 || count != ha->nvram_size ||
117 !ha->isp_ops->write_nvram)
120 /* Checksum NVRAM. */
121 if (IS_FWI2_CAPABLE(ha)) {
125 iter = (uint32_t *)buf;
127 for (cnt = 0; cnt < ((count >> 2) - 1); cnt++)
128 chksum += le32_to_cpu(*iter++);
129 chksum = ~chksum + 1;
130 *iter = cpu_to_le32(chksum);
135 iter = (uint8_t *)buf;
137 for (cnt = 0; cnt < count - 1; cnt++)
139 chksum = ~chksum + 1;
143 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
144 qla_printk(KERN_WARNING, ha,
145 "HBA not online, failing NVRAM update.\n");
150 ha->isp_ops->write_nvram(vha, (uint8_t *)buf, ha->nvram_base, count);
151 ha->isp_ops->read_nvram(vha, (uint8_t *)ha->nvram, ha->nvram_base,
154 /* NVRAM settings take effect immediately. */
155 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
156 qla2xxx_wake_dpc(vha);
157 qla2x00_wait_for_chip_reset(vha);
162 static struct bin_attribute sysfs_nvram_attr = {
165 .mode = S_IRUSR | S_IWUSR,
168 .read = qla2x00_sysfs_read_nvram,
169 .write = qla2x00_sysfs_write_nvram,
173 qla2x00_sysfs_read_optrom(struct kobject *kobj,
174 struct bin_attribute *bin_attr,
175 char *buf, loff_t off, size_t count)
177 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
178 struct device, kobj)));
179 struct qla_hw_data *ha = vha->hw;
181 if (ha->optrom_state != QLA_SREADING)
184 return memory_read_from_buffer(buf, count, &off, ha->optrom_buffer,
185 ha->optrom_region_size);
189 qla2x00_sysfs_write_optrom(struct kobject *kobj,
190 struct bin_attribute *bin_attr,
191 char *buf, loff_t off, size_t count)
193 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
194 struct device, kobj)));
195 struct qla_hw_data *ha = vha->hw;
197 if (ha->optrom_state != QLA_SWRITING)
199 if (off > ha->optrom_region_size)
201 if (off + count > ha->optrom_region_size)
202 count = ha->optrom_region_size - off;
204 memcpy(&ha->optrom_buffer[off], buf, count);
209 static struct bin_attribute sysfs_optrom_attr = {
212 .mode = S_IRUSR | S_IWUSR,
215 .read = qla2x00_sysfs_read_optrom,
216 .write = qla2x00_sysfs_write_optrom,
220 qla2x00_sysfs_write_optrom_ctl(struct kobject *kobj,
221 struct bin_attribute *bin_attr,
222 char *buf, loff_t off, size_t count)
224 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
225 struct device, kobj)));
226 struct qla_hw_data *ha = vha->hw;
229 uint32_t size = ha->optrom_size;
235 if (sscanf(buf, "%d:%x:%x", &val, &start, &size) < 1)
237 if (start > ha->optrom_size)
242 if (ha->optrom_state != QLA_SREADING &&
243 ha->optrom_state != QLA_SWRITING)
246 ha->optrom_state = QLA_SWAITING;
248 DEBUG2(qla_printk(KERN_INFO, ha,
249 "Freeing flash region allocation -- 0x%x bytes.\n",
250 ha->optrom_region_size));
252 vfree(ha->optrom_buffer);
253 ha->optrom_buffer = NULL;
256 if (ha->optrom_state != QLA_SWAITING)
259 ha->optrom_region_start = start;
260 ha->optrom_region_size = start + size > ha->optrom_size ?
261 ha->optrom_size - start : size;
263 ha->optrom_state = QLA_SREADING;
264 ha->optrom_buffer = vmalloc(ha->optrom_region_size);
265 if (ha->optrom_buffer == NULL) {
266 qla_printk(KERN_WARNING, ha,
267 "Unable to allocate memory for optrom retrieval "
268 "(%x).\n", ha->optrom_region_size);
270 ha->optrom_state = QLA_SWAITING;
274 DEBUG2(qla_printk(KERN_INFO, ha,
275 "Reading flash region -- 0x%x/0x%x.\n",
276 ha->optrom_region_start, ha->optrom_region_size));
278 memset(ha->optrom_buffer, 0, ha->optrom_region_size);
279 ha->isp_ops->read_optrom(vha, ha->optrom_buffer,
280 ha->optrom_region_start, ha->optrom_region_size);
283 if (ha->optrom_state != QLA_SWAITING)
287 * We need to be more restrictive on which FLASH regions are
288 * allowed to be updated via user-space. Regions accessible
289 * via this method include:
291 * ISP21xx/ISP22xx/ISP23xx type boards:
293 * 0x000000 -> 0x020000 -- Boot code.
295 * ISP2322/ISP24xx type boards:
297 * 0x000000 -> 0x07ffff -- Boot code.
298 * 0x080000 -> 0x0fffff -- Firmware.
300 * ISP25xx type boards:
302 * 0x000000 -> 0x07ffff -- Boot code.
303 * 0x080000 -> 0x0fffff -- Firmware.
304 * 0x120000 -> 0x12ffff -- VPD and HBA parameters.
307 if (ha->optrom_size == OPTROM_SIZE_2300 && start == 0)
309 else if (start == (ha->flt_region_boot * 4) ||
310 start == (ha->flt_region_fw * 4))
312 else if (IS_QLA25XX(ha) || IS_QLA81XX(ha))
315 qla_printk(KERN_WARNING, ha,
316 "Invalid start region 0x%x/0x%x.\n", start, size);
320 ha->optrom_region_start = start;
321 ha->optrom_region_size = start + size > ha->optrom_size ?
322 ha->optrom_size - start : size;
324 ha->optrom_state = QLA_SWRITING;
325 ha->optrom_buffer = vmalloc(ha->optrom_region_size);
326 if (ha->optrom_buffer == NULL) {
327 qla_printk(KERN_WARNING, ha,
328 "Unable to allocate memory for optrom update "
329 "(%x).\n", ha->optrom_region_size);
331 ha->optrom_state = QLA_SWAITING;
335 DEBUG2(qla_printk(KERN_INFO, ha,
336 "Staging flash region write -- 0x%x/0x%x.\n",
337 ha->optrom_region_start, ha->optrom_region_size));
339 memset(ha->optrom_buffer, 0, ha->optrom_region_size);
342 if (ha->optrom_state != QLA_SWRITING)
345 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
346 qla_printk(KERN_WARNING, ha,
347 "HBA not online, failing flash update.\n");
351 DEBUG2(qla_printk(KERN_INFO, ha,
352 "Writing flash region -- 0x%x/0x%x.\n",
353 ha->optrom_region_start, ha->optrom_region_size));
355 ha->isp_ops->write_optrom(vha, ha->optrom_buffer,
356 ha->optrom_region_start, ha->optrom_region_size);
364 static struct bin_attribute sysfs_optrom_ctl_attr = {
366 .name = "optrom_ctl",
370 .write = qla2x00_sysfs_write_optrom_ctl,
374 qla2x00_sysfs_read_vpd(struct kobject *kobj,
375 struct bin_attribute *bin_attr,
376 char *buf, loff_t off, size_t count)
378 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
379 struct device, kobj)));
380 struct qla_hw_data *ha = vha->hw;
382 if (!capable(CAP_SYS_ADMIN))
385 if (IS_NOCACHE_VPD_TYPE(ha))
386 ha->isp_ops->read_optrom(vha, ha->vpd, ha->flt_region_vpd << 2,
388 return memory_read_from_buffer(buf, count, &off, ha->vpd, ha->vpd_size);
392 qla2x00_sysfs_write_vpd(struct kobject *kobj,
393 struct bin_attribute *bin_attr,
394 char *buf, loff_t off, size_t count)
396 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
397 struct device, kobj)));
398 struct qla_hw_data *ha = vha->hw;
401 if (!capable(CAP_SYS_ADMIN) || off != 0 || count != ha->vpd_size ||
402 !ha->isp_ops->write_nvram)
405 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
406 qla_printk(KERN_WARNING, ha,
407 "HBA not online, failing VPD update.\n");
412 ha->isp_ops->write_nvram(vha, (uint8_t *)buf, ha->vpd_base, count);
413 ha->isp_ops->read_nvram(vha, (uint8_t *)ha->vpd, ha->vpd_base, count);
415 /* Update flash version information for 4Gb & above. */
416 if (!IS_FWI2_CAPABLE(ha))
419 tmp_data = vmalloc(256);
421 qla_printk(KERN_WARNING, ha,
422 "Unable to allocate memory for VPD information update.\n");
425 ha->isp_ops->get_flash_version(vha, tmp_data);
431 static struct bin_attribute sysfs_vpd_attr = {
434 .mode = S_IRUSR | S_IWUSR,
437 .read = qla2x00_sysfs_read_vpd,
438 .write = qla2x00_sysfs_write_vpd,
442 qla2x00_sysfs_read_sfp(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;
449 uint16_t iter, addr, offset;
452 if (!capable(CAP_SYS_ADMIN) || off != 0 || count != SFP_DEV_SIZE * 2)
458 ha->sfp_data = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
461 qla_printk(KERN_WARNING, ha,
462 "Unable to allocate memory for SFP read-data.\n");
467 memset(ha->sfp_data, 0, SFP_BLOCK_SIZE);
469 for (iter = 0, offset = 0; iter < (SFP_DEV_SIZE * 2) / SFP_BLOCK_SIZE;
470 iter++, offset += SFP_BLOCK_SIZE) {
472 /* Skip to next device address. */
477 rval = qla2x00_read_sfp(vha, ha->sfp_data_dma, addr, offset,
479 if (rval != QLA_SUCCESS) {
480 qla_printk(KERN_WARNING, ha,
481 "Unable to read SFP data (%x/%x/%x).\n", rval,
486 memcpy(buf, ha->sfp_data, SFP_BLOCK_SIZE);
487 buf += SFP_BLOCK_SIZE;
493 static struct bin_attribute sysfs_sfp_attr = {
496 .mode = S_IRUSR | S_IWUSR,
498 .size = SFP_DEV_SIZE * 2,
499 .read = qla2x00_sysfs_read_sfp,
503 qla2x00_sysfs_write_reset(struct kobject *kobj,
504 struct bin_attribute *bin_attr,
505 char *buf, loff_t off, size_t count)
507 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
508 struct device, kobj)));
509 struct qla_hw_data *ha = vha->hw;
515 type = simple_strtol(buf, NULL, 10);
518 qla_printk(KERN_INFO, ha,
519 "Issuing ISP reset on (%ld).\n", vha->host_no);
521 scsi_block_requests(vha->host);
522 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
523 qla2xxx_wake_dpc(vha);
524 qla2x00_wait_for_chip_reset(vha);
525 scsi_unblock_requests(vha->host);
531 qla_printk(KERN_INFO, ha,
532 "Issuing MPI reset on (%ld).\n", vha->host_no);
534 /* Make sure FC side is not in reset */
535 qla2x00_wait_for_hba_online(vha);
537 /* Issue MPI reset */
538 scsi_block_requests(vha->host);
539 if (qla81xx_restart_mpi_firmware(vha) != QLA_SUCCESS)
540 qla_printk(KERN_WARNING, ha,
541 "MPI reset failed on (%ld).\n", vha->host_no);
542 scsi_unblock_requests(vha->host);
548 static struct bin_attribute sysfs_reset_attr = {
554 .write = qla2x00_sysfs_write_reset,
558 qla2x00_sysfs_write_edc(struct kobject *kobj,
559 struct bin_attribute *bin_attr,
560 char *buf, loff_t off, size_t count)
562 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
563 struct device, kobj)));
564 struct qla_hw_data *ha = vha->hw;
565 uint16_t dev, adr, opt, len;
568 ha->edc_data_len = 0;
570 if (!capable(CAP_SYS_ADMIN) || off != 0 || count < 8)
574 ha->edc_data = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
577 DEBUG2(qla_printk(KERN_INFO, ha,
578 "Unable to allocate memory for EDC write.\n"));
583 dev = le16_to_cpup((void *)&buf[0]);
584 adr = le16_to_cpup((void *)&buf[2]);
585 opt = le16_to_cpup((void *)&buf[4]);
586 len = le16_to_cpup((void *)&buf[6]);
589 if (len == 0 || len > DMA_POOL_SIZE || len > count - 8)
592 memcpy(ha->edc_data, &buf[8], len);
594 rval = qla2x00_write_edc(vha, dev, adr, ha->edc_data_dma,
595 ha->edc_data, len, opt);
596 if (rval != QLA_SUCCESS) {
597 DEBUG2(qla_printk(KERN_INFO, ha,
598 "Unable to write EDC (%x) %02x:%02x:%04x:%02x:%02x.\n",
599 rval, dev, adr, opt, len, *buf));
606 static struct bin_attribute sysfs_edc_attr = {
612 .write = qla2x00_sysfs_write_edc,
616 qla2x00_sysfs_write_edc_status(struct kobject *kobj,
617 struct bin_attribute *bin_attr,
618 char *buf, loff_t off, size_t count)
620 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
621 struct device, kobj)));
622 struct qla_hw_data *ha = vha->hw;
623 uint16_t dev, adr, opt, len;
626 ha->edc_data_len = 0;
628 if (!capable(CAP_SYS_ADMIN) || off != 0 || count < 8)
632 ha->edc_data = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
635 DEBUG2(qla_printk(KERN_INFO, ha,
636 "Unable to allocate memory for EDC status.\n"));
641 dev = le16_to_cpup((void *)&buf[0]);
642 adr = le16_to_cpup((void *)&buf[2]);
643 opt = le16_to_cpup((void *)&buf[4]);
644 len = le16_to_cpup((void *)&buf[6]);
647 if (len == 0 || len > DMA_POOL_SIZE)
650 memset(ha->edc_data, 0, len);
651 rval = qla2x00_read_edc(vha, dev, adr, ha->edc_data_dma,
652 ha->edc_data, len, opt);
653 if (rval != QLA_SUCCESS) {
654 DEBUG2(qla_printk(KERN_INFO, ha,
655 "Unable to write EDC status (%x) %02x:%02x:%04x:%02x.\n",
656 rval, dev, adr, opt, len));
660 ha->edc_data_len = len;
666 qla2x00_sysfs_read_edc_status(struct kobject *kobj,
667 struct bin_attribute *bin_attr,
668 char *buf, loff_t off, size_t count)
670 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
671 struct device, kobj)));
672 struct qla_hw_data *ha = vha->hw;
674 if (!capable(CAP_SYS_ADMIN) || off != 0 || count == 0)
677 if (!ha->edc_data || ha->edc_data_len == 0 || ha->edc_data_len > count)
680 memcpy(buf, ha->edc_data, ha->edc_data_len);
682 return ha->edc_data_len;
685 static struct bin_attribute sysfs_edc_status_attr = {
687 .name = "edc_status",
688 .mode = S_IRUSR | S_IWUSR,
691 .write = qla2x00_sysfs_write_edc_status,
692 .read = qla2x00_sysfs_read_edc_status,
696 qla2x00_sysfs_read_xgmac_stats(struct kobject *kobj,
697 struct bin_attribute *bin_attr,
698 char *buf, loff_t off, size_t count)
700 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
701 struct device, kobj)));
702 struct qla_hw_data *ha = vha->hw;
704 uint16_t actual_size;
706 if (!capable(CAP_SYS_ADMIN) || off != 0 || count > XGMAC_DATA_SIZE)
712 ha->xgmac_data = dma_alloc_coherent(&ha->pdev->dev, XGMAC_DATA_SIZE,
713 &ha->xgmac_data_dma, GFP_KERNEL);
714 if (!ha->xgmac_data) {
715 qla_printk(KERN_WARNING, ha,
716 "Unable to allocate memory for XGMAC read-data.\n");
722 memset(ha->xgmac_data, 0, XGMAC_DATA_SIZE);
724 rval = qla2x00_get_xgmac_stats(vha, ha->xgmac_data_dma,
725 XGMAC_DATA_SIZE, &actual_size);
726 if (rval != QLA_SUCCESS) {
727 qla_printk(KERN_WARNING, ha,
728 "Unable to read XGMAC data (%x).\n", rval);
732 count = actual_size > count ? count: actual_size;
733 memcpy(buf, ha->xgmac_data, count);
738 static struct bin_attribute sysfs_xgmac_stats_attr = {
740 .name = "xgmac_stats",
744 .read = qla2x00_sysfs_read_xgmac_stats,
748 qla2x00_sysfs_read_dcbx_tlv(struct kobject *kobj,
749 struct bin_attribute *bin_attr,
750 char *buf, loff_t off, size_t count)
752 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
753 struct device, kobj)));
754 struct qla_hw_data *ha = vha->hw;
756 uint16_t actual_size;
758 if (!capable(CAP_SYS_ADMIN) || off != 0 || count > DCBX_TLV_DATA_SIZE)
764 ha->dcbx_tlv = dma_alloc_coherent(&ha->pdev->dev, DCBX_TLV_DATA_SIZE,
765 &ha->dcbx_tlv_dma, GFP_KERNEL);
767 qla_printk(KERN_WARNING, ha,
768 "Unable to allocate memory for DCBX TLV read-data.\n");
774 memset(ha->dcbx_tlv, 0, DCBX_TLV_DATA_SIZE);
776 rval = qla2x00_get_dcbx_params(vha, ha->dcbx_tlv_dma,
778 if (rval != QLA_SUCCESS) {
779 qla_printk(KERN_WARNING, ha,
780 "Unable to read DCBX TLV data (%x).\n", rval);
784 memcpy(buf, ha->dcbx_tlv, count);
789 static struct bin_attribute sysfs_dcbx_tlv_attr = {
795 .read = qla2x00_sysfs_read_dcbx_tlv,
798 static struct sysfs_entry {
800 struct bin_attribute *attr;
802 } bin_file_entries[] = {
803 { "fw_dump", &sysfs_fw_dump_attr, },
804 { "nvram", &sysfs_nvram_attr, },
805 { "optrom", &sysfs_optrom_attr, },
806 { "optrom_ctl", &sysfs_optrom_ctl_attr, },
807 { "vpd", &sysfs_vpd_attr, 1 },
808 { "sfp", &sysfs_sfp_attr, 1 },
809 { "reset", &sysfs_reset_attr, },
810 { "edc", &sysfs_edc_attr, 2 },
811 { "edc_status", &sysfs_edc_status_attr, 2 },
812 { "xgmac_stats", &sysfs_xgmac_stats_attr, 3 },
813 { "dcbx_tlv", &sysfs_dcbx_tlv_attr, 3 },
818 qla2x00_alloc_sysfs_attr(scsi_qla_host_t *vha)
820 struct Scsi_Host *host = vha->host;
821 struct sysfs_entry *iter;
824 for (iter = bin_file_entries; iter->name; iter++) {
825 if (iter->is4GBp_only && !IS_FWI2_CAPABLE(vha->hw))
827 if (iter->is4GBp_only == 2 && !IS_QLA25XX(vha->hw))
829 if (iter->is4GBp_only == 3 && !IS_QLA81XX(vha->hw))
832 ret = sysfs_create_bin_file(&host->shost_gendev.kobj,
835 qla_printk(KERN_INFO, vha->hw,
836 "Unable to create sysfs %s binary attribute "
837 "(%d).\n", iter->name, ret);
842 qla2x00_free_sysfs_attr(scsi_qla_host_t *vha)
844 struct Scsi_Host *host = vha->host;
845 struct sysfs_entry *iter;
846 struct qla_hw_data *ha = vha->hw;
848 for (iter = bin_file_entries; iter->name; iter++) {
849 if (iter->is4GBp_only && !IS_FWI2_CAPABLE(ha))
851 if (iter->is4GBp_only == 2 && !IS_QLA25XX(ha))
853 if (iter->is4GBp_only == 3 && !IS_QLA81XX(ha))
856 sysfs_remove_bin_file(&host->shost_gendev.kobj,
860 if (ha->beacon_blink_led == 1)
861 ha->isp_ops->beacon_off(vha);
864 /* Scsi_Host attributes. */
867 qla2x00_drvr_version_show(struct device *dev,
868 struct device_attribute *attr, char *buf)
870 return snprintf(buf, PAGE_SIZE, "%s\n", qla2x00_version_str);
874 qla2x00_fw_version_show(struct device *dev,
875 struct device_attribute *attr, char *buf)
877 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
878 struct qla_hw_data *ha = vha->hw;
881 return snprintf(buf, PAGE_SIZE, "%s\n",
882 ha->isp_ops->fw_version_str(vha, fw_str));
886 qla2x00_serial_num_show(struct device *dev, struct device_attribute *attr,
889 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
890 struct qla_hw_data *ha = vha->hw;
893 if (IS_FWI2_CAPABLE(ha)) {
894 qla2xxx_get_vpd_field(vha, "SN", buf, PAGE_SIZE);
895 return snprintf(buf, PAGE_SIZE, "%s\n", buf);
898 sn = ((ha->serial0 & 0x1f) << 16) | (ha->serial2 << 8) | ha->serial1;
899 return snprintf(buf, PAGE_SIZE, "%c%05d\n", 'A' + sn / 100000,
904 qla2x00_isp_name_show(struct device *dev, struct device_attribute *attr,
907 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
908 return snprintf(buf, PAGE_SIZE, "ISP%04X\n", vha->hw->pdev->device);
912 qla2x00_isp_id_show(struct device *dev, struct device_attribute *attr,
915 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
916 struct qla_hw_data *ha = vha->hw;
917 return snprintf(buf, PAGE_SIZE, "%04x %04x %04x %04x\n",
918 ha->product_id[0], ha->product_id[1], ha->product_id[2],
923 qla2x00_model_name_show(struct device *dev, struct device_attribute *attr,
926 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
927 return snprintf(buf, PAGE_SIZE, "%s\n", vha->hw->model_number);
931 qla2x00_model_desc_show(struct device *dev, struct device_attribute *attr,
934 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
935 return snprintf(buf, PAGE_SIZE, "%s\n",
936 vha->hw->model_desc ? vha->hw->model_desc : "");
940 qla2x00_pci_info_show(struct device *dev, struct device_attribute *attr,
943 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
946 return snprintf(buf, PAGE_SIZE, "%s\n",
947 vha->hw->isp_ops->pci_info_str(vha, pci_info));
951 qla2x00_link_state_show(struct device *dev, struct device_attribute *attr,
954 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
955 struct qla_hw_data *ha = vha->hw;
958 if (atomic_read(&vha->loop_state) == LOOP_DOWN ||
959 atomic_read(&vha->loop_state) == LOOP_DEAD)
960 len = snprintf(buf, PAGE_SIZE, "Link Down\n");
961 else if (atomic_read(&vha->loop_state) != LOOP_READY ||
962 test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags) ||
963 test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
964 len = snprintf(buf, PAGE_SIZE, "Unknown Link State\n");
966 len = snprintf(buf, PAGE_SIZE, "Link Up - ");
968 switch (ha->current_topology) {
970 len += snprintf(buf + len, PAGE_SIZE-len, "Loop\n");
973 len += snprintf(buf + len, PAGE_SIZE-len, "FL_Port\n");
976 len += snprintf(buf + len, PAGE_SIZE-len,
977 "N_Port to N_Port\n");
980 len += snprintf(buf + len, PAGE_SIZE-len, "F_Port\n");
983 len += snprintf(buf + len, PAGE_SIZE-len, "Loop\n");
991 qla2x00_zio_show(struct device *dev, struct device_attribute *attr,
994 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
997 switch (vha->hw->zio_mode) {
999 len += snprintf(buf + len, PAGE_SIZE-len, "Mode 6\n");
1001 case QLA_ZIO_DISABLED:
1002 len += snprintf(buf + len, PAGE_SIZE-len, "Disabled\n");
1009 qla2x00_zio_store(struct device *dev, struct device_attribute *attr,
1010 const char *buf, size_t count)
1012 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1013 struct qla_hw_data *ha = vha->hw;
1017 if (!IS_ZIO_SUPPORTED(ha))
1020 if (sscanf(buf, "%d", &val) != 1)
1024 zio_mode = QLA_ZIO_MODE_6;
1026 zio_mode = QLA_ZIO_DISABLED;
1028 /* Update per-hba values and queue a reset. */
1029 if (zio_mode != QLA_ZIO_DISABLED || ha->zio_mode != QLA_ZIO_DISABLED) {
1030 ha->zio_mode = zio_mode;
1031 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
1037 qla2x00_zio_timer_show(struct device *dev, struct device_attribute *attr,
1040 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1042 return snprintf(buf, PAGE_SIZE, "%d us\n", vha->hw->zio_timer * 100);
1046 qla2x00_zio_timer_store(struct device *dev, struct device_attribute *attr,
1047 const char *buf, size_t count)
1049 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1053 if (sscanf(buf, "%d", &val) != 1)
1055 if (val > 25500 || val < 100)
1058 zio_timer = (uint16_t)(val / 100);
1059 vha->hw->zio_timer = zio_timer;
1065 qla2x00_beacon_show(struct device *dev, struct device_attribute *attr,
1068 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1071 if (vha->hw->beacon_blink_led)
1072 len += snprintf(buf + len, PAGE_SIZE-len, "Enabled\n");
1074 len += snprintf(buf + len, PAGE_SIZE-len, "Disabled\n");
1079 qla2x00_beacon_store(struct device *dev, struct device_attribute *attr,
1080 const char *buf, size_t count)
1082 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1083 struct qla_hw_data *ha = vha->hw;
1087 if (IS_QLA2100(ha) || IS_QLA2200(ha))
1090 if (test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags)) {
1091 qla_printk(KERN_WARNING, ha,
1092 "Abort ISP active -- ignoring beacon request.\n");
1096 if (sscanf(buf, "%d", &val) != 1)
1100 rval = ha->isp_ops->beacon_on(vha);
1102 rval = ha->isp_ops->beacon_off(vha);
1104 if (rval != QLA_SUCCESS)
1111 qla2x00_optrom_bios_version_show(struct device *dev,
1112 struct device_attribute *attr, char *buf)
1114 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1115 struct qla_hw_data *ha = vha->hw;
1116 return snprintf(buf, PAGE_SIZE, "%d.%02d\n", ha->bios_revision[1],
1117 ha->bios_revision[0]);
1121 qla2x00_optrom_efi_version_show(struct device *dev,
1122 struct device_attribute *attr, char *buf)
1124 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1125 struct qla_hw_data *ha = vha->hw;
1126 return snprintf(buf, PAGE_SIZE, "%d.%02d\n", ha->efi_revision[1],
1127 ha->efi_revision[0]);
1131 qla2x00_optrom_fcode_version_show(struct device *dev,
1132 struct device_attribute *attr, char *buf)
1134 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1135 struct qla_hw_data *ha = vha->hw;
1136 return snprintf(buf, PAGE_SIZE, "%d.%02d\n", ha->fcode_revision[1],
1137 ha->fcode_revision[0]);
1141 qla2x00_optrom_fw_version_show(struct device *dev,
1142 struct device_attribute *attr, char *buf)
1144 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1145 struct qla_hw_data *ha = vha->hw;
1146 return snprintf(buf, PAGE_SIZE, "%d.%02d.%02d %d\n",
1147 ha->fw_revision[0], ha->fw_revision[1], ha->fw_revision[2],
1148 ha->fw_revision[3]);
1152 qla2x00_total_isp_aborts_show(struct device *dev,
1153 struct device_attribute *attr, char *buf)
1155 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1156 struct qla_hw_data *ha = vha->hw;
1157 return snprintf(buf, PAGE_SIZE, "%d\n",
1158 ha->qla_stats.total_isp_aborts);
1162 qla2x00_mpi_version_show(struct device *dev, struct device_attribute *attr,
1165 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1166 struct qla_hw_data *ha = vha->hw;
1168 if (!IS_QLA81XX(ha))
1169 return snprintf(buf, PAGE_SIZE, "\n");
1171 return snprintf(buf, PAGE_SIZE, "%d.%02d.%02d (%x)\n",
1172 ha->mpi_version[0], ha->mpi_version[1], ha->mpi_version[2],
1173 ha->mpi_capabilities);
1177 qla2x00_phy_version_show(struct device *dev, struct device_attribute *attr,
1180 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1181 struct qla_hw_data *ha = vha->hw;
1183 if (!IS_QLA81XX(ha))
1184 return snprintf(buf, PAGE_SIZE, "\n");
1186 return snprintf(buf, PAGE_SIZE, "%d.%02d.%02d\n",
1187 ha->phy_version[0], ha->phy_version[1], ha->phy_version[2]);
1191 qla2x00_flash_block_size_show(struct device *dev,
1192 struct device_attribute *attr, char *buf)
1194 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1195 struct qla_hw_data *ha = vha->hw;
1197 return snprintf(buf, PAGE_SIZE, "0x%x\n", ha->fdt_block_size);
1201 qla2x00_vlan_id_show(struct device *dev, struct device_attribute *attr,
1204 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1206 if (!IS_QLA81XX(vha->hw))
1207 return snprintf(buf, PAGE_SIZE, "\n");
1209 return snprintf(buf, PAGE_SIZE, "%d\n", vha->fcoe_vlan_id);
1213 qla2x00_vn_port_mac_address_show(struct device *dev,
1214 struct device_attribute *attr, char *buf)
1216 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1218 if (!IS_QLA81XX(vha->hw))
1219 return snprintf(buf, PAGE_SIZE, "\n");
1221 return snprintf(buf, PAGE_SIZE, "%02x:%02x:%02x:%02x:%02x:%02x\n",
1222 vha->fcoe_vn_port_mac[5], vha->fcoe_vn_port_mac[4],
1223 vha->fcoe_vn_port_mac[3], vha->fcoe_vn_port_mac[2],
1224 vha->fcoe_vn_port_mac[1], vha->fcoe_vn_port_mac[0]);
1228 qla2x00_fabric_param_show(struct device *dev, struct device_attribute *attr,
1231 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1233 return snprintf(buf, PAGE_SIZE, "%d\n", vha->hw->switch_cap);
1237 qla2x00_fw_state_show(struct device *dev, struct device_attribute *attr,
1240 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1244 rval = qla2x00_get_firmware_state(vha, state);
1245 if (rval != QLA_SUCCESS)
1246 memset(state, -1, sizeof(state));
1248 return snprintf(buf, PAGE_SIZE, "0x%x 0x%x 0x%x 0x%x 0x%x\n", state[0],
1249 state[1], state[2], state[3], state[4]);
1252 static DEVICE_ATTR(driver_version, S_IRUGO, qla2x00_drvr_version_show, NULL);
1253 static DEVICE_ATTR(fw_version, S_IRUGO, qla2x00_fw_version_show, NULL);
1254 static DEVICE_ATTR(serial_num, S_IRUGO, qla2x00_serial_num_show, NULL);
1255 static DEVICE_ATTR(isp_name, S_IRUGO, qla2x00_isp_name_show, NULL);
1256 static DEVICE_ATTR(isp_id, S_IRUGO, qla2x00_isp_id_show, NULL);
1257 static DEVICE_ATTR(model_name, S_IRUGO, qla2x00_model_name_show, NULL);
1258 static DEVICE_ATTR(model_desc, S_IRUGO, qla2x00_model_desc_show, NULL);
1259 static DEVICE_ATTR(pci_info, S_IRUGO, qla2x00_pci_info_show, NULL);
1260 static DEVICE_ATTR(link_state, S_IRUGO, qla2x00_link_state_show, NULL);
1261 static DEVICE_ATTR(zio, S_IRUGO | S_IWUSR, qla2x00_zio_show, qla2x00_zio_store);
1262 static DEVICE_ATTR(zio_timer, S_IRUGO | S_IWUSR, qla2x00_zio_timer_show,
1263 qla2x00_zio_timer_store);
1264 static DEVICE_ATTR(beacon, S_IRUGO | S_IWUSR, qla2x00_beacon_show,
1265 qla2x00_beacon_store);
1266 static DEVICE_ATTR(optrom_bios_version, S_IRUGO,
1267 qla2x00_optrom_bios_version_show, NULL);
1268 static DEVICE_ATTR(optrom_efi_version, S_IRUGO,
1269 qla2x00_optrom_efi_version_show, NULL);
1270 static DEVICE_ATTR(optrom_fcode_version, S_IRUGO,
1271 qla2x00_optrom_fcode_version_show, NULL);
1272 static DEVICE_ATTR(optrom_fw_version, S_IRUGO, qla2x00_optrom_fw_version_show,
1274 static DEVICE_ATTR(total_isp_aborts, S_IRUGO, qla2x00_total_isp_aborts_show,
1276 static DEVICE_ATTR(mpi_version, S_IRUGO, qla2x00_mpi_version_show, NULL);
1277 static DEVICE_ATTR(phy_version, S_IRUGO, qla2x00_phy_version_show, NULL);
1278 static DEVICE_ATTR(flash_block_size, S_IRUGO, qla2x00_flash_block_size_show,
1280 static DEVICE_ATTR(vlan_id, S_IRUGO, qla2x00_vlan_id_show, NULL);
1281 static DEVICE_ATTR(vn_port_mac_address, S_IRUGO,
1282 qla2x00_vn_port_mac_address_show, NULL);
1283 static DEVICE_ATTR(fabric_param, S_IRUGO, qla2x00_fabric_param_show, NULL);
1284 static DEVICE_ATTR(fw_state, S_IRUGO, qla2x00_fw_state_show, NULL);
1286 struct device_attribute *qla2x00_host_attrs[] = {
1287 &dev_attr_driver_version,
1288 &dev_attr_fw_version,
1289 &dev_attr_serial_num,
1292 &dev_attr_model_name,
1293 &dev_attr_model_desc,
1295 &dev_attr_link_state,
1297 &dev_attr_zio_timer,
1299 &dev_attr_optrom_bios_version,
1300 &dev_attr_optrom_efi_version,
1301 &dev_attr_optrom_fcode_version,
1302 &dev_attr_optrom_fw_version,
1303 &dev_attr_total_isp_aborts,
1304 &dev_attr_mpi_version,
1305 &dev_attr_phy_version,
1306 &dev_attr_flash_block_size,
1308 &dev_attr_vn_port_mac_address,
1309 &dev_attr_fabric_param,
1314 /* Host attributes. */
1317 qla2x00_get_host_port_id(struct Scsi_Host *shost)
1319 scsi_qla_host_t *vha = shost_priv(shost);
1321 fc_host_port_id(shost) = vha->d_id.b.domain << 16 |
1322 vha->d_id.b.area << 8 | vha->d_id.b.al_pa;
1326 qla2x00_get_host_speed(struct Scsi_Host *shost)
1328 struct qla_hw_data *ha = ((struct scsi_qla_host *)
1329 (shost_priv(shost)))->hw;
1330 u32 speed = FC_PORTSPEED_UNKNOWN;
1332 switch (ha->link_data_rate) {
1333 case PORT_SPEED_1GB:
1334 speed = FC_PORTSPEED_1GBIT;
1336 case PORT_SPEED_2GB:
1337 speed = FC_PORTSPEED_2GBIT;
1339 case PORT_SPEED_4GB:
1340 speed = FC_PORTSPEED_4GBIT;
1342 case PORT_SPEED_8GB:
1343 speed = FC_PORTSPEED_8GBIT;
1345 case PORT_SPEED_10GB:
1346 speed = FC_PORTSPEED_10GBIT;
1349 fc_host_speed(shost) = speed;
1353 qla2x00_get_host_port_type(struct Scsi_Host *shost)
1355 scsi_qla_host_t *vha = shost_priv(shost);
1356 uint32_t port_type = FC_PORTTYPE_UNKNOWN;
1359 fc_host_port_type(shost) = FC_PORTTYPE_NPIV;
1362 switch (vha->hw->current_topology) {
1364 port_type = FC_PORTTYPE_LPORT;
1367 port_type = FC_PORTTYPE_NLPORT;
1370 port_type = FC_PORTTYPE_PTP;
1373 port_type = FC_PORTTYPE_NPORT;
1376 fc_host_port_type(shost) = port_type;
1380 qla2x00_get_starget_node_name(struct scsi_target *starget)
1382 struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
1383 scsi_qla_host_t *vha = shost_priv(host);
1387 list_for_each_entry(fcport, &vha->vp_fcports, list) {
1388 if (fcport->rport &&
1389 starget->id == fcport->rport->scsi_target_id) {
1390 node_name = wwn_to_u64(fcport->node_name);
1395 fc_starget_node_name(starget) = node_name;
1399 qla2x00_get_starget_port_name(struct scsi_target *starget)
1401 struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
1402 scsi_qla_host_t *vha = shost_priv(host);
1406 list_for_each_entry(fcport, &vha->vp_fcports, list) {
1407 if (fcport->rport &&
1408 starget->id == fcport->rport->scsi_target_id) {
1409 port_name = wwn_to_u64(fcport->port_name);
1414 fc_starget_port_name(starget) = port_name;
1418 qla2x00_get_starget_port_id(struct scsi_target *starget)
1420 struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
1421 scsi_qla_host_t *vha = shost_priv(host);
1423 uint32_t port_id = ~0U;
1425 list_for_each_entry(fcport, &vha->vp_fcports, list) {
1426 if (fcport->rport &&
1427 starget->id == fcport->rport->scsi_target_id) {
1428 port_id = fcport->d_id.b.domain << 16 |
1429 fcport->d_id.b.area << 8 | fcport->d_id.b.al_pa;
1434 fc_starget_port_id(starget) = port_id;
1438 qla2x00_set_rport_loss_tmo(struct fc_rport *rport, uint32_t timeout)
1441 rport->dev_loss_tmo = timeout;
1443 rport->dev_loss_tmo = 1;
1447 qla2x00_dev_loss_tmo_callbk(struct fc_rport *rport)
1449 struct Scsi_Host *host = rport_to_shost(rport);
1450 fc_port_t *fcport = *(fc_port_t **)rport->dd_data;
1455 if (unlikely(pci_channel_offline(fcport->vha->hw->pdev)))
1456 qla2x00_abort_all_cmds(fcport->vha, DID_NO_CONNECT << 16);
1458 qla2x00_abort_fcport_cmds(fcport);
1461 * Transport has effectively 'deleted' the rport, clear
1462 * all local references.
1464 spin_lock_irq(host->host_lock);
1465 fcport->rport = NULL;
1466 *((fc_port_t **)rport->dd_data) = NULL;
1467 spin_unlock_irq(host->host_lock);
1471 qla2x00_terminate_rport_io(struct fc_rport *rport)
1473 fc_port_t *fcport = *(fc_port_t **)rport->dd_data;
1478 if (unlikely(pci_channel_offline(fcport->vha->hw->pdev))) {
1479 qla2x00_abort_all_cmds(fcport->vha, DID_NO_CONNECT << 16);
1483 * At this point all fcport's software-states are cleared. Perform any
1484 * final cleanup of firmware resources (PCBs and XCBs).
1486 if (fcport->loop_id != FC_NO_LOOP_ID &&
1487 !test_bit(UNLOADING, &fcport->vha->dpc_flags))
1488 fcport->vha->hw->isp_ops->fabric_logout(fcport->vha,
1489 fcport->loop_id, fcport->d_id.b.domain,
1490 fcport->d_id.b.area, fcport->d_id.b.al_pa);
1492 qla2x00_abort_fcport_cmds(fcport);
1496 qla2x00_issue_lip(struct Scsi_Host *shost)
1498 scsi_qla_host_t *vha = shost_priv(shost);
1500 qla2x00_loop_reset(vha);
1504 static struct fc_host_statistics *
1505 qla2x00_get_fc_host_stats(struct Scsi_Host *shost)
1507 scsi_qla_host_t *vha = shost_priv(shost);
1508 struct qla_hw_data *ha = vha->hw;
1509 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
1511 struct link_statistics *stats;
1512 dma_addr_t stats_dma;
1513 struct fc_host_statistics *pfc_host_stat;
1515 pfc_host_stat = &ha->fc_host_stat;
1516 memset(pfc_host_stat, -1, sizeof(struct fc_host_statistics));
1518 stats = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, &stats_dma);
1519 if (stats == NULL) {
1520 DEBUG2_3_11(printk("%s(%ld): Failed to allocate memory.\n",
1521 __func__, base_vha->host_no));
1524 memset(stats, 0, DMA_POOL_SIZE);
1526 rval = QLA_FUNCTION_FAILED;
1527 if (IS_FWI2_CAPABLE(ha)) {
1528 rval = qla24xx_get_isp_stats(base_vha, stats, stats_dma);
1529 } else if (atomic_read(&base_vha->loop_state) == LOOP_READY &&
1530 !test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) &&
1531 !test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags) &&
1533 /* Must be in a 'READY' state for statistics retrieval. */
1534 rval = qla2x00_get_link_status(base_vha, base_vha->loop_id,
1538 if (rval != QLA_SUCCESS)
1541 pfc_host_stat->link_failure_count = stats->link_fail_cnt;
1542 pfc_host_stat->loss_of_sync_count = stats->loss_sync_cnt;
1543 pfc_host_stat->loss_of_signal_count = stats->loss_sig_cnt;
1544 pfc_host_stat->prim_seq_protocol_err_count = stats->prim_seq_err_cnt;
1545 pfc_host_stat->invalid_tx_word_count = stats->inval_xmit_word_cnt;
1546 pfc_host_stat->invalid_crc_count = stats->inval_crc_cnt;
1547 if (IS_FWI2_CAPABLE(ha)) {
1548 pfc_host_stat->lip_count = stats->lip_cnt;
1549 pfc_host_stat->tx_frames = stats->tx_frames;
1550 pfc_host_stat->rx_frames = stats->rx_frames;
1551 pfc_host_stat->dumped_frames = stats->dumped_frames;
1552 pfc_host_stat->nos_count = stats->nos_rcvd;
1554 pfc_host_stat->fcp_input_megabytes = ha->qla_stats.input_bytes >> 20;
1555 pfc_host_stat->fcp_output_megabytes = ha->qla_stats.output_bytes >> 20;
1558 dma_pool_free(ha->s_dma_pool, stats, stats_dma);
1560 return pfc_host_stat;
1564 qla2x00_get_host_symbolic_name(struct Scsi_Host *shost)
1566 scsi_qla_host_t *vha = shost_priv(shost);
1568 qla2x00_get_sym_node_name(vha, fc_host_symbolic_name(shost));
1572 qla2x00_set_host_system_hostname(struct Scsi_Host *shost)
1574 scsi_qla_host_t *vha = shost_priv(shost);
1576 set_bit(REGISTER_FDMI_NEEDED, &vha->dpc_flags);
1580 qla2x00_get_host_fabric_name(struct Scsi_Host *shost)
1582 scsi_qla_host_t *vha = shost_priv(shost);
1585 if (vha->device_flags & SWITCH_FOUND)
1586 node_name = wwn_to_u64(vha->fabric_node_name);
1588 node_name = wwn_to_u64(vha->node_name);
1590 fc_host_fabric_name(shost) = node_name;
1594 qla2x00_get_host_port_state(struct Scsi_Host *shost)
1596 scsi_qla_host_t *vha = shost_priv(shost);
1597 struct scsi_qla_host *base_vha = pci_get_drvdata(vha->hw->pdev);
1599 if (!base_vha->flags.online)
1600 fc_host_port_state(shost) = FC_PORTSTATE_OFFLINE;
1601 else if (atomic_read(&base_vha->loop_state) == LOOP_TIMEOUT)
1602 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
1604 fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
1608 qla24xx_vport_create(struct fc_vport *fc_vport, bool disable)
1612 scsi_qla_host_t *base_vha = shost_priv(fc_vport->shost);
1613 scsi_qla_host_t *vha = NULL;
1614 struct qla_hw_data *ha = base_vha->hw;
1615 uint16_t options = 0;
1617 struct req_que *req = ha->req_q_map[0];
1619 ret = qla24xx_vport_create_req_sanity_check(fc_vport);
1621 DEBUG15(printk("qla24xx_vport_create_req_sanity_check failed, "
1622 "status %x\n", ret));
1626 vha = qla24xx_create_vhost(fc_vport);
1628 DEBUG15(printk ("qla24xx_create_vhost failed, vha = %p\n",
1630 return FC_VPORT_FAILED;
1633 atomic_set(&vha->vp_state, VP_OFFLINE);
1634 fc_vport_set_state(fc_vport, FC_VPORT_DISABLED);
1636 atomic_set(&vha->vp_state, VP_FAILED);
1638 /* ready to create vport */
1639 qla_printk(KERN_INFO, vha->hw, "VP entry id %d assigned.\n",
1642 /* initialized vport states */
1643 atomic_set(&vha->loop_state, LOOP_DOWN);
1644 vha->vp_err_state= VP_ERR_PORTDWN;
1645 vha->vp_prev_err_state= VP_ERR_UNKWN;
1646 /* Check if physical ha port is Up */
1647 if (atomic_read(&base_vha->loop_state) == LOOP_DOWN ||
1648 atomic_read(&base_vha->loop_state) == LOOP_DEAD) {
1649 /* Don't retry or attempt login of this virtual port */
1650 DEBUG15(printk ("scsi(%ld): pport loop_state is not UP.\n",
1651 base_vha->host_no));
1652 atomic_set(&vha->loop_state, LOOP_DEAD);
1654 fc_vport_set_state(fc_vport, FC_VPORT_LINKDOWN);
1657 if (scsi_add_host(vha->host, &fc_vport->dev)) {
1658 DEBUG15(printk("scsi(%ld): scsi_add_host failure for VP[%d].\n",
1659 vha->host_no, vha->vp_idx));
1660 goto vport_create_failed_2;
1663 /* initialize attributes */
1664 fc_host_node_name(vha->host) = wwn_to_u64(vha->node_name);
1665 fc_host_port_name(vha->host) = wwn_to_u64(vha->port_name);
1666 fc_host_supported_classes(vha->host) =
1667 fc_host_supported_classes(base_vha->host);
1668 fc_host_supported_speeds(vha->host) =
1669 fc_host_supported_speeds(base_vha->host);
1671 qla24xx_vport_disable(fc_vport, disable);
1673 if (ql2xmultique_tag) {
1674 req = ha->req_q_map[1];
1676 } else if (ql2xmaxqueues == 1 || !ha->npiv_info)
1678 /* Create a request queue in QoS mode for the vport */
1679 for (cnt = 0; cnt < ha->nvram_npiv_size; cnt++) {
1680 if (memcmp(ha->npiv_info[cnt].port_name, vha->port_name, 8) == 0
1681 && memcmp(ha->npiv_info[cnt].node_name, vha->node_name,
1683 qos = ha->npiv_info[cnt].q_qos;
1688 ret = qla25xx_create_req_que(ha, options, vha->vp_idx, 0, 0,
1691 qla_printk(KERN_WARNING, ha,
1692 "Can't create request queue for vp_idx:%d\n",
1695 DEBUG2(qla_printk(KERN_INFO, ha,
1696 "Request Que:%d (QoS: %d) created for vp_idx:%d\n",
1697 ret, qos, vha->vp_idx));
1698 req = ha->req_q_map[ret];
1706 vport_create_failed_2:
1707 qla24xx_disable_vp(vha);
1708 qla24xx_deallocate_vp_id(vha);
1709 scsi_host_put(vha->host);
1710 return FC_VPORT_FAILED;
1714 qla24xx_vport_delete(struct fc_vport *fc_vport)
1716 scsi_qla_host_t *vha = fc_vport->dd_data;
1717 fc_port_t *fcport, *tfcport;
1718 struct qla_hw_data *ha = vha->hw;
1719 uint16_t id = vha->vp_idx;
1721 while (test_bit(LOOP_RESYNC_ACTIVE, &vha->dpc_flags) ||
1722 test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags))
1725 qla24xx_disable_vp(vha);
1727 fc_remove_host(vha->host);
1729 scsi_remove_host(vha->host);
1731 list_for_each_entry_safe(fcport, tfcport, &vha->vp_fcports, list) {
1732 list_del(&fcport->list);
1737 qla24xx_deallocate_vp_id(vha);
1739 if (vha->timer_active) {
1740 qla2x00_vp_stop_timer(vha);
1741 DEBUG15(printk ("scsi(%ld): timer for the vport[%d] = %p "
1743 vha->host_no, vha->vp_idx, vha));
1746 if (vha->req->id && !ql2xmultique_tag) {
1747 if (qla25xx_delete_req_que(vha, vha->req) != QLA_SUCCESS)
1748 qla_printk(KERN_WARNING, ha,
1749 "Queue delete failed.\n");
1752 scsi_host_put(vha->host);
1753 qla_printk(KERN_INFO, ha, "vport %d deleted\n", id);
1758 qla24xx_vport_disable(struct fc_vport *fc_vport, bool disable)
1760 scsi_qla_host_t *vha = fc_vport->dd_data;
1763 qla24xx_disable_vp(vha);
1765 qla24xx_enable_vp(vha);
1770 struct fc_function_template qla2xxx_transport_functions = {
1772 .show_host_node_name = 1,
1773 .show_host_port_name = 1,
1774 .show_host_supported_classes = 1,
1775 .show_host_supported_speeds = 1,
1777 .get_host_port_id = qla2x00_get_host_port_id,
1778 .show_host_port_id = 1,
1779 .get_host_speed = qla2x00_get_host_speed,
1780 .show_host_speed = 1,
1781 .get_host_port_type = qla2x00_get_host_port_type,
1782 .show_host_port_type = 1,
1783 .get_host_symbolic_name = qla2x00_get_host_symbolic_name,
1784 .show_host_symbolic_name = 1,
1785 .set_host_system_hostname = qla2x00_set_host_system_hostname,
1786 .show_host_system_hostname = 1,
1787 .get_host_fabric_name = qla2x00_get_host_fabric_name,
1788 .show_host_fabric_name = 1,
1789 .get_host_port_state = qla2x00_get_host_port_state,
1790 .show_host_port_state = 1,
1792 .dd_fcrport_size = sizeof(struct fc_port *),
1793 .show_rport_supported_classes = 1,
1795 .get_starget_node_name = qla2x00_get_starget_node_name,
1796 .show_starget_node_name = 1,
1797 .get_starget_port_name = qla2x00_get_starget_port_name,
1798 .show_starget_port_name = 1,
1799 .get_starget_port_id = qla2x00_get_starget_port_id,
1800 .show_starget_port_id = 1,
1802 .set_rport_dev_loss_tmo = qla2x00_set_rport_loss_tmo,
1803 .show_rport_dev_loss_tmo = 1,
1805 .issue_fc_host_lip = qla2x00_issue_lip,
1806 .dev_loss_tmo_callbk = qla2x00_dev_loss_tmo_callbk,
1807 .terminate_rport_io = qla2x00_terminate_rport_io,
1808 .get_fc_host_stats = qla2x00_get_fc_host_stats,
1810 .vport_create = qla24xx_vport_create,
1811 .vport_disable = qla24xx_vport_disable,
1812 .vport_delete = qla24xx_vport_delete,
1815 struct fc_function_template qla2xxx_transport_vport_functions = {
1817 .show_host_node_name = 1,
1818 .show_host_port_name = 1,
1819 .show_host_supported_classes = 1,
1821 .get_host_port_id = qla2x00_get_host_port_id,
1822 .show_host_port_id = 1,
1823 .get_host_speed = qla2x00_get_host_speed,
1824 .show_host_speed = 1,
1825 .get_host_port_type = qla2x00_get_host_port_type,
1826 .show_host_port_type = 1,
1827 .get_host_symbolic_name = qla2x00_get_host_symbolic_name,
1828 .show_host_symbolic_name = 1,
1829 .set_host_system_hostname = qla2x00_set_host_system_hostname,
1830 .show_host_system_hostname = 1,
1831 .get_host_fabric_name = qla2x00_get_host_fabric_name,
1832 .show_host_fabric_name = 1,
1833 .get_host_port_state = qla2x00_get_host_port_state,
1834 .show_host_port_state = 1,
1836 .dd_fcrport_size = sizeof(struct fc_port *),
1837 .show_rport_supported_classes = 1,
1839 .get_starget_node_name = qla2x00_get_starget_node_name,
1840 .show_starget_node_name = 1,
1841 .get_starget_port_name = qla2x00_get_starget_port_name,
1842 .show_starget_port_name = 1,
1843 .get_starget_port_id = qla2x00_get_starget_port_id,
1844 .show_starget_port_id = 1,
1846 .set_rport_dev_loss_tmo = qla2x00_set_rport_loss_tmo,
1847 .show_rport_dev_loss_tmo = 1,
1849 .issue_fc_host_lip = qla2x00_issue_lip,
1850 .dev_loss_tmo_callbk = qla2x00_dev_loss_tmo_callbk,
1851 .terminate_rport_io = qla2x00_terminate_rport_io,
1852 .get_fc_host_stats = qla2x00_get_fc_host_stats,
1856 qla2x00_init_host_attr(scsi_qla_host_t *vha)
1858 struct qla_hw_data *ha = vha->hw;
1859 u32 speed = FC_PORTSPEED_UNKNOWN;
1861 fc_host_node_name(vha->host) = wwn_to_u64(vha->node_name);
1862 fc_host_port_name(vha->host) = wwn_to_u64(vha->port_name);
1863 fc_host_supported_classes(vha->host) = FC_COS_CLASS3;
1864 fc_host_max_npiv_vports(vha->host) = ha->max_npiv_vports;
1865 fc_host_npiv_vports_inuse(vha->host) = ha->cur_vport_count;
1868 speed = FC_PORTSPEED_10GBIT;
1869 else if (IS_QLA25XX(ha))
1870 speed = FC_PORTSPEED_8GBIT | FC_PORTSPEED_4GBIT |
1871 FC_PORTSPEED_2GBIT | FC_PORTSPEED_1GBIT;
1872 else if (IS_QLA24XX_TYPE(ha))
1873 speed = FC_PORTSPEED_4GBIT | FC_PORTSPEED_2GBIT |
1875 else if (IS_QLA23XX(ha))
1876 speed = FC_PORTSPEED_2GBIT | FC_PORTSPEED_1GBIT;
1878 speed = FC_PORTSPEED_1GBIT;
1879 fc_host_supported_speeds(vha->host) = speed;