diff options
author | Andrew Vasquez <andrew.vasquez@qlogic.com> | 2009-03-24 12:08:14 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2009-04-03 10:22:51 -0400 |
commit | 3d79038f92841052aced9aec43c9d9aa864d28ab (patch) | |
tree | 8d8d1323ac0ba111add5e0b5bd1c14a36e9a211a /drivers/scsi/qla2xxx/qla_sup.c | |
parent | d1b1bef4c9e67aa550e602a6a7f93bbb47dff0b8 (diff) |
[SCSI] qla2xxx: Always use an FLT's NVRAM/VPD region information.
Rather than assuming a particular layout of the data. Applies to
recent ISPs only.
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/qla2xxx/qla_sup.c')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_sup.c | 31 |
1 files changed, 29 insertions, 2 deletions
diff --git a/drivers/scsi/qla2xxx/qla_sup.c b/drivers/scsi/qla2xxx/qla_sup.c index 468c114e937e..0664667c2e9d 100644 --- a/drivers/scsi/qla2xxx/qla_sup.c +++ b/drivers/scsi/qla2xxx/qla_sup.c | |||
@@ -629,6 +629,14 @@ qla2xxx_get_flt_info(scsi_qla_host_t *vha, uint32_t flt_addr) | |||
629 | { FA_BOOT_CODE_ADDR, FA_BOOT_CODE_ADDR, FA_BOOT_CODE_ADDR_81 }; | 629 | { FA_BOOT_CODE_ADDR, FA_BOOT_CODE_ADDR, FA_BOOT_CODE_ADDR_81 }; |
630 | const uint32_t def_vpd_nvram[] = | 630 | const uint32_t def_vpd_nvram[] = |
631 | { FA_VPD_NVRAM_ADDR, FA_VPD_NVRAM_ADDR, FA_VPD_NVRAM_ADDR_81 }; | 631 | { FA_VPD_NVRAM_ADDR, FA_VPD_NVRAM_ADDR, FA_VPD_NVRAM_ADDR_81 }; |
632 | const uint32_t def_vpd0[] = | ||
633 | { 0, 0, FA_VPD0_ADDR_81 }; | ||
634 | const uint32_t def_vpd1[] = | ||
635 | { 0, 0, FA_VPD1_ADDR_81 }; | ||
636 | const uint32_t def_nvram0[] = | ||
637 | { 0, 0, FA_NVRAM0_ADDR_81 }; | ||
638 | const uint32_t def_nvram1[] = | ||
639 | { 0, 0, FA_NVRAM1_ADDR_81 }; | ||
632 | const uint32_t def_fdt[] = | 640 | const uint32_t def_fdt[] = |
633 | { FA_FLASH_DESCR_ADDR_24, FA_FLASH_DESCR_ADDR, | 641 | { FA_FLASH_DESCR_ADDR_24, FA_FLASH_DESCR_ADDR, |
634 | FA_FLASH_DESCR_ADDR_81 }; | 642 | FA_FLASH_DESCR_ADDR_81 }; |
@@ -693,6 +701,20 @@ qla2xxx_get_flt_info(scsi_qla_host_t *vha, uint32_t flt_addr) | |||
693 | break; | 701 | break; |
694 | case FLT_REG_VPD_0: | 702 | case FLT_REG_VPD_0: |
695 | ha->flt_region_vpd_nvram = start; | 703 | ha->flt_region_vpd_nvram = start; |
704 | if (!(PCI_FUNC(ha->pdev->devfn) & 1)) | ||
705 | ha->flt_region_vpd = start; | ||
706 | break; | ||
707 | case FLT_REG_VPD_1: | ||
708 | if (PCI_FUNC(ha->pdev->devfn) & 1) | ||
709 | ha->flt_region_vpd = start; | ||
710 | break; | ||
711 | case FLT_REG_NVRAM_0: | ||
712 | if (!(PCI_FUNC(ha->pdev->devfn) & 1)) | ||
713 | ha->flt_region_nvram = start; | ||
714 | break; | ||
715 | case FLT_REG_NVRAM_1: | ||
716 | if (PCI_FUNC(ha->pdev->devfn) & 1) | ||
717 | ha->flt_region_nvram = start; | ||
696 | break; | 718 | break; |
697 | case FLT_REG_FDT: | 719 | case FLT_REG_FDT: |
698 | ha->flt_region_fdt = start; | 720 | ha->flt_region_fdt = start; |
@@ -722,13 +744,18 @@ no_flash_data: | |||
722 | ha->flt_region_fw = def_fw[def]; | 744 | ha->flt_region_fw = def_fw[def]; |
723 | ha->flt_region_boot = def_boot[def]; | 745 | ha->flt_region_boot = def_boot[def]; |
724 | ha->flt_region_vpd_nvram = def_vpd_nvram[def]; | 746 | ha->flt_region_vpd_nvram = def_vpd_nvram[def]; |
747 | ha->flt_region_vpd = !(PCI_FUNC(ha->pdev->devfn) & 1) ? | ||
748 | def_vpd0[def]: def_vpd1[def]; | ||
749 | ha->flt_region_nvram = !(PCI_FUNC(ha->pdev->devfn) & 1) ? | ||
750 | def_nvram0[def]: def_nvram1[def]; | ||
725 | ha->flt_region_fdt = def_fdt[def]; | 751 | ha->flt_region_fdt = def_fdt[def]; |
726 | ha->flt_region_npiv_conf = !(PCI_FUNC(ha->pdev->devfn) & 1) ? | 752 | ha->flt_region_npiv_conf = !(PCI_FUNC(ha->pdev->devfn) & 1) ? |
727 | def_npiv_conf0[def]: def_npiv_conf1[def]; | 753 | def_npiv_conf0[def]: def_npiv_conf1[def]; |
728 | done: | 754 | done: |
729 | DEBUG2(qla_printk(KERN_DEBUG, ha, "FLT[%s]: boot=0x%x fw=0x%x " | 755 | DEBUG2(qla_printk(KERN_DEBUG, ha, "FLT[%s]: boot=0x%x fw=0x%x " |
730 | "vpd_nvram=0x%x fdt=0x%x flt=0x%x npiv=0x%x.\n", loc, | 756 | "vpd_nvram=0x%x vpd=0x%x nvram=0x%x fdt=0x%x flt=0x%x " |
731 | ha->flt_region_boot, ha->flt_region_fw, ha->flt_region_vpd_nvram, | 757 | "npiv=0x%x.\n", loc, ha->flt_region_boot, ha->flt_region_fw, |
758 | ha->flt_region_vpd_nvram, ha->flt_region_vpd, ha->flt_region_nvram, | ||
732 | ha->flt_region_fdt, ha->flt_region_flt, ha->flt_region_npiv_conf)); | 759 | ha->flt_region_fdt, ha->flt_region_flt, ha->flt_region_npiv_conf)); |
733 | } | 760 | } |
734 | 761 | ||