linux 2.6.16.38 w/ vs2.0.3-rc1
[linux-2.6.git] / drivers / scsi / qla2xxx / qla_sup.c
index c71dbd5..3866a57 100644 (file)
@@ -97,7 +97,7 @@ qla2x00_write_nvram_word(scsi_qla_host_t *ha, uint32_t addr, uint16_t data)
 {
        int count;
        uint16_t word;
-       uint32_t nv_cmd, wait_cnt;
+       uint32_t nv_cmd;
        struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
 
        qla2x00_nv_write(ha, NVR_DATA_OUT);
@@ -127,13 +127,7 @@ qla2x00_write_nvram_word(scsi_qla_host_t *ha, uint32_t addr, uint16_t data)
        /* Wait for NVRAM to become ready */
        WRT_REG_WORD(&reg->nvram, NVR_SELECT);
        RD_REG_WORD(&reg->nvram);               /* PCI Posting. */
-       wait_cnt = NVR_WAIT_CNT;
        do {
-               if (!--wait_cnt) {
-                       DEBUG9_10(printk("%s(%ld): NVRAM didn't go ready...\n",
-                           __func__, ha->host_no));
-                       break;
-               }
                NVRAM_DELAY();
                word = RD_REG_WORD(&reg->nvram);
        } while ((word & NVR_DATA_IN) == 0);
@@ -307,17 +301,16 @@ qla2x00_clear_nvram_protection(scsi_qla_host_t *ha)
 {
        int ret, stat;
        struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
-       uint32_t word, wait_cnt;
+       uint32_t word;
        uint16_t wprot, wprot_old;
 
        /* Clear NVRAM write protection. */
        ret = QLA_FUNCTION_FAILED;
-
-       wprot_old = cpu_to_le16(qla2x00_get_nvram_word(ha, ha->nvram_base));
-       stat = qla2x00_write_nvram_word_tmo(ha, ha->nvram_base,
+       wprot_old = cpu_to_le16(qla2x00_get_nvram_word(ha, 0));
+       stat = qla2x00_write_nvram_word_tmo(ha, 0,
            __constant_cpu_to_le16(0x1234), 100000);
-       wprot = cpu_to_le16(qla2x00_get_nvram_word(ha, ha->nvram_base));
-       if (stat != QLA_SUCCESS || wprot != 0x1234) {
+       wprot = cpu_to_le16(qla2x00_get_nvram_word(ha, 0));
+       if (stat != QLA_SUCCESS || wprot != __constant_cpu_to_le16(0x1234)) {
                /* Write enable. */
                qla2x00_nv_write(ha, NVR_DATA_OUT);
                qla2x00_nv_write(ha, 0);
@@ -348,22 +341,14 @@ qla2x00_clear_nvram_protection(scsi_qla_host_t *ha)
                /* Wait for NVRAM to become ready. */
                WRT_REG_WORD(&reg->nvram, NVR_SELECT);
                RD_REG_WORD(&reg->nvram);       /* PCI Posting. */
-               wait_cnt = NVR_WAIT_CNT;
                do {
-                       if (!--wait_cnt) {
-                               DEBUG9_10(printk("%s(%ld): NVRAM didn't go "
-                                   "ready...\n", __func__,
-                                   ha->host_no));
-                               break;
-                       }
                        NVRAM_DELAY();
                        word = RD_REG_WORD(&reg->nvram);
                } while ((word & NVR_DATA_IN) == 0);
 
-               if (wait_cnt)
-                       ret = QLA_SUCCESS;
+               ret = QLA_SUCCESS;
        } else
-               qla2x00_write_nvram_word(ha, ha->nvram_base, wprot_old);
+               qla2x00_write_nvram_word(ha, 0, wprot_old);
 
        return ret;
 }
@@ -372,7 +357,7 @@ static void
 qla2x00_set_nvram_protection(scsi_qla_host_t *ha, int stat)
 {
        struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
-       uint32_t word, wait_cnt;
+       uint32_t word;
 
        if (stat != QLA_SUCCESS)
                return;
@@ -408,13 +393,7 @@ qla2x00_set_nvram_protection(scsi_qla_host_t *ha, int stat)
        /* Wait for NVRAM to become ready. */
        WRT_REG_WORD(&reg->nvram, NVR_SELECT);
        RD_REG_WORD(&reg->nvram);               /* PCI Posting. */
-       wait_cnt = NVR_WAIT_CNT;
        do {
-               if (!--wait_cnt) {
-                       DEBUG9_10(printk("%s(%ld): NVRAM didn't go ready...\n",
-                           __func__, ha->host_no));
-                       break;
-               }
                NVRAM_DELAY();
                word = RD_REG_WORD(&reg->nvram);
        } while ((word & NVR_DATA_IN) == 0);
@@ -521,20 +500,6 @@ qla24xx_get_flash_manufacturer(scsi_qla_host_t *ha, uint8_t *man_id,
        ids = qla24xx_read_flash_dword(ha, flash_data_to_access_addr(0xd03ab));
        *man_id = LSB(ids);
        *flash_id = MSB(ids);
-
-       /* Check if man_id and flash_id are valid. */
-       if (ids != 0xDEADDEAD && (*man_id == 0 || *flash_id == 0)) {
-               /* Read information using 0x9f opcode
-                * Device ID, Mfg ID would be read in the format:
-                *   <Ext Dev Info><Device ID Part2><Device ID Part 1><Mfg ID>
-                * Example: ATMEL 0x00 01 45 1F
-                * Extract MFG and Dev ID from last two bytes.
-                */
-               ids = qla24xx_read_flash_dword(ha,
-                   flash_data_to_access_addr(0xd009f));
-               *man_id = LSB(ids);
-               *flash_id = MSB(ids);
-       }
 }
 
 int
@@ -543,8 +508,8 @@ qla24xx_write_flash_data(scsi_qla_host_t *ha, uint32_t *dwptr, uint32_t faddr,
 {
        int ret;
        uint32_t liter;
-       uint32_t sec_mask, rest_addr, conf_addr, sec_end_mask;
-       uint32_t fdata, findex ;
+       uint32_t sec_mask, rest_addr, conf_addr;
+       uint32_t fdata;
        uint8_t man_id, flash_id;
        struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
 
@@ -554,7 +519,6 @@ qla24xx_write_flash_data(scsi_qla_host_t *ha, uint32_t *dwptr, uint32_t faddr,
        DEBUG9(printk("%s(%ld): Flash man_id=%d flash_id=%d\n", __func__,
            ha->host_no, man_id, flash_id));
 
-       sec_end_mask = 0;
        conf_addr = flash_conf_to_access_addr(0x03d8);
        switch (man_id) {
        case 0xbf: /* STT flash. */
@@ -567,12 +531,6 @@ qla24xx_write_flash_data(scsi_qla_host_t *ha, uint32_t *dwptr, uint32_t faddr,
                rest_addr = 0x3fff;
                sec_mask = 0x3c000;
                break;
-       case 0x1f: // Atmel 26DF081A
-               rest_addr = 0x0fff;
-               sec_mask = 0xff000;
-               sec_end_mask = 0x003ff;
-               conf_addr = flash_conf_to_access_addr(0x0320);
-               break;
        default:
                /* Default to 64 kb sector size. */
                rest_addr = 0x3fff;
@@ -587,30 +545,11 @@ qla24xx_write_flash_data(scsi_qla_host_t *ha, uint32_t *dwptr, uint32_t faddr,
 
        /* Disable flash write-protection. */
        qla24xx_write_flash_dword(ha, flash_conf_to_access_addr(0x101), 0);
-       /* Some flash parts need an additional zero-write to clear bits.*/
-       qla24xx_write_flash_dword(ha, flash_conf_to_access_addr(0x101), 0);
 
        do {    /* Loop once to provide quick error exit. */
                for (liter = 0; liter < dwords; liter++, faddr++, dwptr++) {
-                       if (man_id == 0x1f) {
-                               findex = faddr << 2;
-                               fdata = findex & sec_mask;
-                       } else {
-                               findex = faddr;
-                               fdata = (findex & sec_mask) << 2;
-                       }
-
                        /* Are we at the beginning of a sector? */
-                       if ((findex & rest_addr) == 0) {
-                               /*
-                                * Do sector unprotect at 4K boundry for Atmel
-                                * part.
-                                */
-                               if (man_id == 0x1f)
-                                       qla24xx_write_flash_dword(ha,
-                                           flash_conf_to_access_addr(0x0339),
-                                           (fdata & 0xff00) | ((fdata << 16) &
-                                           0xff0000) | ((fdata >> 16) & 0xff));
+                       if ((faddr & rest_addr) == 0) {
                                fdata = (faddr & sec_mask) << 2;
                                ret = qla24xx_write_flash_dword(ha, conf_addr,
                                    (fdata & 0xff00) |((fdata << 16) &
@@ -631,14 +570,6 @@ qla24xx_write_flash_data(scsi_qla_host_t *ha, uint32_t *dwptr, uint32_t faddr,
                                    ha->host_no, faddr, *dwptr));
                                break;
                        }
-
-                       /* Do sector protect at 4K boundry for Atmel part. */
-                       if (man_id == 0x1f &&
-                           ((faddr & sec_end_mask) == 0x3ff))
-                               qla24xx_write_flash_dword(ha,
-                                   flash_conf_to_access_addr(0x0336),
-                                   (fdata & 0xff00) | ((fdata << 16) &
-                                   0xff0000) | ((fdata >> 16) & 0xff));
                }
        } while (0);
 
@@ -1260,6 +1191,11 @@ qla2x00_poll_flash(scsi_qla_host_t *ha, uint32_t addr, uint8_t poll_data,
        return status;
 }
 
+#define IS_OEM_001(ha) \
+       ((ha)->pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2322 && \
+        (ha)->pdev->subsystem_vendor == 0x1028 && \
+        (ha)->pdev->subsystem_device == 0x0170)
+
 /**
  * qla2x00_program_flash_address() - Programs a flash address
  * @ha: HA context
@@ -1418,7 +1354,7 @@ qla2x00_resume_hba(struct scsi_qla_host *ha)
        /* Resume HBA. */
        clear_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags);
        set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
-       qla2xxx_wake_dpc(ha);
+       up(ha->dpc_wait);
        qla2x00_wait_for_hba_online(ha);
        scsi_unblock_requests(ha->host);
 }
@@ -1716,7 +1652,7 @@ qla24xx_write_optrom_data(struct scsi_qla_host *ha, uint8_t *buf,
        /* Resume HBA -- RISC reset needed. */
        clear_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags);
        set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
-       qla2xxx_wake_dpc(ha);
+       up(ha->dpc_wait);
        qla2x00_wait_for_hba_online(ha);
        scsi_unblock_requests(ha->host);