2 * QLogic Fibre Channel HBA Driver
3 * Copyright (c) 2003-2005 QLogic Corporation
5 * See LICENSE.qla2xxx for copyright and licensing details.
9 #include <linux/delay.h>
10 #include <linux/vmalloc.h>
11 #include <scsi/scsi_transport_fc.h>
13 #include "qla_devtbl.h"
15 /* XXX(hch): this is ugly, but we don't want to pull in exioctl.h */
16 #ifndef EXT_IS_LUN_BIT_SET
17 #define EXT_IS_LUN_BIT_SET(P,L) \
18 (((P)->mask[L/8] & (0x80 >> (L%8)))?1:0)
19 #define EXT_SET_LUN_BIT(P,L) \
20 ((P)->mask[L/8] |= (0x80 >> (L%8)))
24 * QLogic ISP2x00 Hardware Support Function Prototypes.
26 static int qla2x00_isp_firmware(scsi_qla_host_t *);
27 static void qla2x00_resize_request_q(scsi_qla_host_t *);
28 static int qla2x00_setup_chip(scsi_qla_host_t *);
29 static void qla2x00_init_response_q_entries(scsi_qla_host_t *);
30 static int qla2x00_init_rings(scsi_qla_host_t *);
31 static int qla2x00_fw_ready(scsi_qla_host_t *);
32 static int qla2x00_configure_hba(scsi_qla_host_t *);
33 static int qla2x00_configure_loop(scsi_qla_host_t *);
34 static int qla2x00_configure_local_loop(scsi_qla_host_t *);
35 static void qla2x00_update_fcport(scsi_qla_host_t *, fc_port_t *);
36 static int qla2x00_configure_fabric(scsi_qla_host_t *);
37 static int qla2x00_find_all_fabric_devs(scsi_qla_host_t *, struct list_head *);
38 static int qla2x00_device_resync(scsi_qla_host_t *);
39 static int qla2x00_fabric_dev_login(scsi_qla_host_t *, fc_port_t *,
42 static int qla2x00_restart_isp(scsi_qla_host_t *);
44 /****************************************************************************/
45 /* QLogic ISP2x00 Hardware Support Functions. */
46 /****************************************************************************/
49 * qla2x00_initialize_adapter
53 * ha = adapter block pointer.
59 qla2x00_initialize_adapter(scsi_qla_host_t *ha)
62 uint8_t restart_risc = 0;
66 /* Clear adapter flags. */
68 ha->flags.reset_active = 0;
69 atomic_set(&ha->loop_down_timer, LOOP_DOWN_TIME);
70 atomic_set(&ha->loop_state, LOOP_DOWN);
73 ha->flags.management_server_logged_in = 0;
74 ha->marker_needed = 0;
76 ha->isp_abort_cnt = 0;
77 ha->beacon_blink_led = 0;
78 set_bit(REGISTER_FDMI_NEEDED, &ha->dpc_flags);
80 qla_printk(KERN_INFO, ha, "Configuring PCI space...\n");
81 rval = ha->isp_ops.pci_config(ha);
83 DEBUG2(printk("scsi(%ld): Unable to configure PCI space=n",
88 ha->isp_ops.reset_chip(ha);
90 qla_printk(KERN_INFO, ha, "Configure NVRAM parameters...\n");
92 ha->isp_ops.nvram_config(ha);
94 qla_printk(KERN_INFO, ha, "Verifying loaded RISC code...\n");
98 * Try to configure the loop.
103 /* If firmware needs to be loaded */
104 if (qla2x00_isp_firmware(ha) != QLA_SUCCESS) {
105 if ((rval = ha->isp_ops.chip_diag(ha)) == QLA_SUCCESS) {
106 rval = qla2x00_setup_chip(ha);
110 if (rval == QLA_SUCCESS &&
111 (rval = qla2x00_init_rings(ha)) == QLA_SUCCESS) {
112 check_fw_ready_again:
114 * Wait for a successful LIP up to a maximum
115 * of (in seconds): RISC login timeout value,
116 * RISC retry count value, and port down retry
117 * value OR a minimum of 4 seconds OR If no
118 * cable, only 5 seconds.
120 rval = qla2x00_fw_ready(ha);
121 if (rval == QLA_SUCCESS) {
122 clear_bit(RESET_MARKER_NEEDED, &ha->dpc_flags);
124 /* Issue a marker after FW becomes ready. */
125 qla2x00_marker(ha, 0, 0, MK_SYNC_ALL);
128 * Wait at most MAX_TARGET RSCNs for a stable
133 clear_bit(LOOP_RESYNC_NEEDED,
135 rval = qla2x00_configure_loop(ha);
137 if (test_and_clear_bit(ISP_ABORT_NEEDED,
144 * If loop state change while we were
145 * discoverying devices then wait for
149 if (atomic_read(&ha->loop_state) !=
150 LOOP_READY && retry--) {
151 goto check_fw_ready_again;
154 } while (!atomic_read(&ha->loop_down_timer) &&
157 (test_bit(LOOP_RESYNC_NEEDED,
161 rval = QLA_FUNCTION_FAILED;
162 } else if (ha->device_flags & DFLG_NO_CABLE)
163 /* If no cable, then all is good. */
166 } while (restart_risc && retry--);
168 if (rval == QLA_SUCCESS) {
169 clear_bit(RESET_MARKER_NEEDED, &ha->dpc_flags);
170 qla2x00_marker(ha, 0, 0, MK_SYNC_ALL);
171 ha->marker_needed = 0;
173 ha->flags.online = 1;
175 DEBUG2_3(printk("%s(): **** FAILED ****\n", __func__));
182 * qla2100_pci_config() - Setup ISP21xx PCI configuration registers.
185 * Returns 0 on success.
188 qla2100_pci_config(scsi_qla_host_t *ha)
193 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
195 pci_set_master(ha->pdev);
197 if (pci_set_mwi(ha->pdev))
198 mwi = PCI_COMMAND_INVALIDATE;
199 pci_read_config_word(ha->pdev, PCI_REVISION_ID, &ha->revision);
201 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
202 w |= mwi | (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
203 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
205 /* Reset expansion ROM address decode enable */
206 pci_read_config_dword(ha->pdev, PCI_ROM_ADDRESS, &d);
207 d &= ~PCI_ROM_ADDRESS_ENABLE;
208 pci_write_config_dword(ha->pdev, PCI_ROM_ADDRESS, d);
210 /* Get PCI bus information. */
211 spin_lock_irqsave(&ha->hardware_lock, flags);
212 ha->pci_attr = RD_REG_WORD(®->ctrl_status);
213 spin_unlock_irqrestore(&ha->hardware_lock, flags);
219 * qla2300_pci_config() - Setup ISP23xx PCI configuration registers.
222 * Returns 0 on success.
225 qla2300_pci_config(scsi_qla_host_t *ha)
229 unsigned long flags = 0;
231 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
233 pci_set_master(ha->pdev);
235 if (pci_set_mwi(ha->pdev))
236 mwi = PCI_COMMAND_INVALIDATE;
237 pci_read_config_word(ha->pdev, PCI_REVISION_ID, &ha->revision);
239 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
240 w |= mwi | (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
242 if (IS_QLA2322(ha) || IS_QLA6322(ha))
243 w &= ~PCI_COMMAND_INTX_DISABLE;
246 * If this is a 2300 card and not 2312, reset the
247 * COMMAND_INVALIDATE due to a bug in the 2300. Unfortunately,
248 * the 2310 also reports itself as a 2300 so we need to get the
249 * fb revision level -- a 6 indicates it really is a 2300 and
252 if (IS_QLA2300(ha)) {
253 spin_lock_irqsave(&ha->hardware_lock, flags);
256 WRT_REG_WORD(®->hccr, HCCR_PAUSE_RISC);
257 for (cnt = 0; cnt < 30000; cnt++) {
258 if ((RD_REG_WORD(®->hccr) & HCCR_RISC_PAUSE) != 0)
264 /* Select FPM registers. */
265 WRT_REG_WORD(®->ctrl_status, 0x20);
266 RD_REG_WORD(®->ctrl_status);
268 /* Get the fb rev level */
269 ha->fb_rev = RD_FB_CMD_REG(ha, reg);
271 if (ha->fb_rev == FPM_2300)
272 w &= ~PCI_COMMAND_INVALIDATE;
274 /* Deselect FPM registers. */
275 WRT_REG_WORD(®->ctrl_status, 0x0);
276 RD_REG_WORD(®->ctrl_status);
278 /* Release RISC module. */
279 WRT_REG_WORD(®->hccr, HCCR_RELEASE_RISC);
280 for (cnt = 0; cnt < 30000; cnt++) {
281 if ((RD_REG_WORD(®->hccr) & HCCR_RISC_PAUSE) == 0)
287 spin_unlock_irqrestore(&ha->hardware_lock, flags);
289 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
291 pci_write_config_byte(ha->pdev, PCI_LATENCY_TIMER, 0x80);
293 /* Reset expansion ROM address decode enable */
294 pci_read_config_dword(ha->pdev, PCI_ROM_ADDRESS, &d);
295 d &= ~PCI_ROM_ADDRESS_ENABLE;
296 pci_write_config_dword(ha->pdev, PCI_ROM_ADDRESS, d);
298 /* Get PCI bus information. */
299 spin_lock_irqsave(&ha->hardware_lock, flags);
300 ha->pci_attr = RD_REG_WORD(®->ctrl_status);
301 spin_unlock_irqrestore(&ha->hardware_lock, flags);
307 * qla24xx_pci_config() - Setup ISP24xx PCI configuration registers.
310 * Returns 0 on success.
313 qla24xx_pci_config(scsi_qla_host_t *ha)
317 unsigned long flags = 0;
318 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
319 int pcix_cmd_reg, pcie_dctl_reg;
321 pci_set_master(ha->pdev);
323 if (pci_set_mwi(ha->pdev))
324 mwi = PCI_COMMAND_INVALIDATE;
325 pci_read_config_word(ha->pdev, PCI_REVISION_ID, &ha->revision);
327 pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
328 w |= mwi | (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
329 w &= ~PCI_COMMAND_INTX_DISABLE;
330 pci_write_config_word(ha->pdev, PCI_COMMAND, w);
332 pci_write_config_byte(ha->pdev, PCI_LATENCY_TIMER, 0x80);
334 /* PCI-X -- adjust Maximum Memory Read Byte Count (2048). */
335 pcix_cmd_reg = pci_find_capability(ha->pdev, PCI_CAP_ID_PCIX);
339 pcix_cmd_reg += PCI_X_CMD;
340 pci_read_config_word(ha->pdev, pcix_cmd_reg, &pcix_cmd);
341 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
343 pci_write_config_word(ha->pdev, pcix_cmd_reg, pcix_cmd);
346 /* PCIe -- adjust Maximum Read Request Size (2048). */
347 pcie_dctl_reg = pci_find_capability(ha->pdev, PCI_CAP_ID_EXP);
351 pcie_dctl_reg += PCI_EXP_DEVCTL;
352 pci_read_config_word(ha->pdev, pcie_dctl_reg, &pcie_dctl);
353 pcie_dctl &= ~PCI_EXP_DEVCTL_READRQ;
355 pci_write_config_word(ha->pdev, pcie_dctl_reg, pcie_dctl);
358 /* Reset expansion ROM address decode enable */
359 pci_read_config_dword(ha->pdev, PCI_ROM_ADDRESS, &d);
360 d &= ~PCI_ROM_ADDRESS_ENABLE;
361 pci_write_config_dword(ha->pdev, PCI_ROM_ADDRESS, d);
363 /* Get PCI bus information. */
364 spin_lock_irqsave(&ha->hardware_lock, flags);
365 ha->pci_attr = RD_REG_DWORD(®->ctrl_status);
366 spin_unlock_irqrestore(&ha->hardware_lock, flags);
372 * qla2x00_isp_firmware() - Choose firmware image.
375 * Returns 0 on success.
378 qla2x00_isp_firmware(scsi_qla_host_t *ha)
382 /* Assume loading risc code */
383 rval = QLA_FUNCTION_FAILED;
385 if (ha->flags.disable_risc_code_load) {
386 DEBUG2(printk("scsi(%ld): RISC CODE NOT loaded\n",
388 qla_printk(KERN_INFO, ha, "RISC CODE NOT loaded\n");
390 /* Verify checksum of loaded RISC code. */
391 rval = qla2x00_verify_checksum(ha,
392 IS_QLA24XX(ha) || IS_QLA25XX(ha) ? RISC_SADDRESS :
393 *ha->brd_info->fw_info[0].fwstart);
397 DEBUG2_3(printk("scsi(%ld): **** Load RISC code ****\n",
405 * qla2x00_reset_chip() - Reset ISP chip.
408 * Returns 0 on success.
411 qla2x00_reset_chip(scsi_qla_host_t *ha)
413 unsigned long flags = 0;
414 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
416 unsigned long mbx_flags = 0;
419 ha->isp_ops.disable_intrs(ha);
421 spin_lock_irqsave(&ha->hardware_lock, flags);
423 /* Turn off master enable */
425 pci_read_config_word(ha->pdev, PCI_COMMAND, &cmd);
426 cmd &= ~PCI_COMMAND_MASTER;
427 pci_write_config_word(ha->pdev, PCI_COMMAND, cmd);
429 if (!IS_QLA2100(ha)) {
431 WRT_REG_WORD(®->hccr, HCCR_PAUSE_RISC);
432 if (IS_QLA2200(ha) || IS_QLA2300(ha)) {
433 for (cnt = 0; cnt < 30000; cnt++) {
434 if ((RD_REG_WORD(®->hccr) &
435 HCCR_RISC_PAUSE) != 0)
440 RD_REG_WORD(®->hccr); /* PCI Posting. */
444 /* Select FPM registers. */
445 WRT_REG_WORD(®->ctrl_status, 0x20);
446 RD_REG_WORD(®->ctrl_status); /* PCI Posting. */
448 /* FPM Soft Reset. */
449 WRT_REG_WORD(®->fpm_diag_config, 0x100);
450 RD_REG_WORD(®->fpm_diag_config); /* PCI Posting. */
452 /* Toggle Fpm Reset. */
453 if (!IS_QLA2200(ha)) {
454 WRT_REG_WORD(®->fpm_diag_config, 0x0);
455 RD_REG_WORD(®->fpm_diag_config); /* PCI Posting. */
458 /* Select frame buffer registers. */
459 WRT_REG_WORD(®->ctrl_status, 0x10);
460 RD_REG_WORD(®->ctrl_status); /* PCI Posting. */
462 /* Reset frame buffer FIFOs. */
463 if (IS_QLA2200(ha)) {
464 WRT_FB_CMD_REG(ha, reg, 0xa000);
465 RD_FB_CMD_REG(ha, reg); /* PCI Posting. */
467 WRT_FB_CMD_REG(ha, reg, 0x00fc);
469 /* Read back fb_cmd until zero or 3 seconds max */
470 for (cnt = 0; cnt < 3000; cnt++) {
471 if ((RD_FB_CMD_REG(ha, reg) & 0xff) == 0)
477 /* Select RISC module registers. */
478 WRT_REG_WORD(®->ctrl_status, 0);
479 RD_REG_WORD(®->ctrl_status); /* PCI Posting. */
481 /* Reset RISC processor. */
482 WRT_REG_WORD(®->hccr, HCCR_RESET_RISC);
483 RD_REG_WORD(®->hccr); /* PCI Posting. */
485 /* Release RISC processor. */
486 WRT_REG_WORD(®->hccr, HCCR_RELEASE_RISC);
487 RD_REG_WORD(®->hccr); /* PCI Posting. */
490 WRT_REG_WORD(®->hccr, HCCR_CLR_RISC_INT);
491 WRT_REG_WORD(®->hccr, HCCR_CLR_HOST_INT);
493 /* Reset ISP chip. */
494 WRT_REG_WORD(®->ctrl_status, CSR_ISP_SOFT_RESET);
496 /* Wait for RISC to recover from reset. */
497 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
499 * It is necessary to for a delay here since the card doesn't
500 * respond to PCI reads during a reset. On some architectures
501 * this will result in an MCA.
504 for (cnt = 30000; cnt; cnt--) {
505 if ((RD_REG_WORD(®->ctrl_status) &
506 CSR_ISP_SOFT_RESET) == 0)
513 /* Reset RISC processor. */
514 WRT_REG_WORD(®->hccr, HCCR_RESET_RISC);
516 WRT_REG_WORD(®->semaphore, 0);
518 /* Release RISC processor. */
519 WRT_REG_WORD(®->hccr, HCCR_RELEASE_RISC);
520 RD_REG_WORD(®->hccr); /* PCI Posting. */
522 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
523 for (cnt = 0; cnt < 30000; cnt++) {
524 if (!(test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags)))
525 spin_lock_irqsave(&ha->mbx_reg_lock, mbx_flags);
527 if (RD_MAILBOX_REG(ha, reg, 0) != MBS_BUSY) {
528 if (!(test_bit(ABORT_ISP_ACTIVE,
530 spin_unlock_irqrestore(
531 &ha->mbx_reg_lock, mbx_flags);
535 if (!(test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags)))
536 spin_unlock_irqrestore(&ha->mbx_reg_lock,
544 /* Turn on master enable */
545 cmd |= PCI_COMMAND_MASTER;
546 pci_write_config_word(ha->pdev, PCI_COMMAND, cmd);
548 /* Disable RISC pause on FPM parity error. */
549 if (!IS_QLA2100(ha)) {
550 WRT_REG_WORD(®->hccr, HCCR_DISABLE_PARITY_PAUSE);
551 RD_REG_WORD(®->hccr); /* PCI Posting. */
554 spin_unlock_irqrestore(&ha->hardware_lock, flags);
558 * qla24xx_reset_risc() - Perform full reset of ISP24xx RISC.
561 * Returns 0 on success.
564 qla24xx_reset_risc(scsi_qla_host_t *ha)
566 unsigned long flags = 0;
567 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
571 spin_lock_irqsave(&ha->hardware_lock, flags);
574 WRT_REG_DWORD(®->ctrl_status, CSRX_DMA_SHUTDOWN|MWB_4096_BYTES);
575 for (cnt = 0; cnt < 30000; cnt++) {
576 if ((RD_REG_DWORD(®->ctrl_status) & CSRX_DMA_ACTIVE) == 0)
582 WRT_REG_DWORD(®->ctrl_status,
583 CSRX_ISP_SOFT_RESET|CSRX_DMA_SHUTDOWN|MWB_4096_BYTES);
584 pci_read_config_word(ha->pdev, PCI_COMMAND, &wd);
587 /* Wait for firmware to complete NVRAM accesses. */
588 d2 = (uint32_t) RD_REG_WORD(®->mailbox0);
589 for (cnt = 10000 ; cnt && d2; cnt--) {
591 d2 = (uint32_t) RD_REG_WORD(®->mailbox0);
595 /* Wait for soft-reset to complete. */
596 d2 = RD_REG_DWORD(®->ctrl_status);
597 for (cnt = 6000000 ; cnt && (d2 & CSRX_ISP_SOFT_RESET); cnt--) {
599 d2 = RD_REG_DWORD(®->ctrl_status);
603 WRT_REG_DWORD(®->hccr, HCCRX_SET_RISC_RESET);
604 RD_REG_DWORD(®->hccr);
606 WRT_REG_DWORD(®->hccr, HCCRX_REL_RISC_PAUSE);
607 RD_REG_DWORD(®->hccr);
609 WRT_REG_DWORD(®->hccr, HCCRX_CLR_RISC_RESET);
610 RD_REG_DWORD(®->hccr);
612 d2 = (uint32_t) RD_REG_WORD(®->mailbox0);
613 for (cnt = 6000000 ; cnt && d2; cnt--) {
615 d2 = (uint32_t) RD_REG_WORD(®->mailbox0);
619 spin_unlock_irqrestore(&ha->hardware_lock, flags);
623 * qla24xx_reset_chip() - Reset ISP24xx chip.
626 * Returns 0 on success.
629 qla24xx_reset_chip(scsi_qla_host_t *ha)
631 ha->isp_ops.disable_intrs(ha);
633 /* Perform RISC reset. */
634 qla24xx_reset_risc(ha);
638 * qla2x00_chip_diag() - Test chip for proper operation.
641 * Returns 0 on success.
644 qla2x00_chip_diag(scsi_qla_host_t *ha)
647 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
648 unsigned long flags = 0;
653 /* Assume a failed state */
654 rval = QLA_FUNCTION_FAILED;
656 DEBUG3(printk("scsi(%ld): Testing device at %lx.\n",
657 ha->host_no, (u_long)®->flash_address));
659 spin_lock_irqsave(&ha->hardware_lock, flags);
661 /* Reset ISP chip. */
662 WRT_REG_WORD(®->ctrl_status, CSR_ISP_SOFT_RESET);
665 * We need to have a delay here since the card will not respond while
666 * in reset causing an MCA on some architectures.
669 data = qla2x00_debounce_register(®->ctrl_status);
670 for (cnt = 6000000 ; cnt && (data & CSR_ISP_SOFT_RESET); cnt--) {
672 data = RD_REG_WORD(®->ctrl_status);
677 goto chip_diag_failed;
679 DEBUG3(printk("scsi(%ld): Reset register cleared by chip reset\n",
682 /* Reset RISC processor. */
683 WRT_REG_WORD(®->hccr, HCCR_RESET_RISC);
684 WRT_REG_WORD(®->hccr, HCCR_RELEASE_RISC);
686 /* Workaround for QLA2312 PCI parity error */
687 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
688 data = qla2x00_debounce_register(MAILBOX_REG(ha, reg, 0));
689 for (cnt = 6000000; cnt && (data == MBS_BUSY); cnt--) {
691 data = RD_MAILBOX_REG(ha, reg, 0);
698 goto chip_diag_failed;
700 /* Check product ID of chip */
701 DEBUG3(printk("scsi(%ld): Checking product ID of chip\n", ha->host_no));
703 mb[1] = RD_MAILBOX_REG(ha, reg, 1);
704 mb[2] = RD_MAILBOX_REG(ha, reg, 2);
705 mb[3] = RD_MAILBOX_REG(ha, reg, 3);
706 mb[4] = qla2x00_debounce_register(MAILBOX_REG(ha, reg, 4));
707 if (mb[1] != PROD_ID_1 || (mb[2] != PROD_ID_2 && mb[2] != PROD_ID_2a) ||
708 mb[3] != PROD_ID_3) {
709 qla_printk(KERN_WARNING, ha,
710 "Wrong product ID = 0x%x,0x%x,0x%x\n", mb[1], mb[2], mb[3]);
712 goto chip_diag_failed;
714 ha->product_id[0] = mb[1];
715 ha->product_id[1] = mb[2];
716 ha->product_id[2] = mb[3];
717 ha->product_id[3] = mb[4];
719 /* Adjust fw RISC transfer size */
720 if (ha->request_q_length > 1024)
721 ha->fw_transfer_size = REQUEST_ENTRY_SIZE * 1024;
723 ha->fw_transfer_size = REQUEST_ENTRY_SIZE *
724 ha->request_q_length;
726 if (IS_QLA2200(ha) &&
727 RD_MAILBOX_REG(ha, reg, 7) == QLA2200A_RISC_ROM_VER) {
728 /* Limit firmware transfer size with a 2200A */
729 DEBUG3(printk("scsi(%ld): Found QLA2200A chip.\n",
732 ha->fw_transfer_size = 128;
735 /* Wrap Incoming Mailboxes Test. */
736 spin_unlock_irqrestore(&ha->hardware_lock, flags);
738 DEBUG3(printk("scsi(%ld): Checking mailboxes.\n", ha->host_no));
739 rval = qla2x00_mbx_reg_test(ha);
741 DEBUG(printk("scsi(%ld): Failed mailbox send register test\n",
743 qla_printk(KERN_WARNING, ha,
744 "Failed mailbox send register test\n");
747 /* Flag a successful rval */
750 spin_lock_irqsave(&ha->hardware_lock, flags);
754 DEBUG2_3(printk("scsi(%ld): Chip diagnostics **** FAILED "
755 "****\n", ha->host_no));
757 spin_unlock_irqrestore(&ha->hardware_lock, flags);
763 * qla24xx_chip_diag() - Test ISP24xx for proper operation.
766 * Returns 0 on success.
769 qla24xx_chip_diag(scsi_qla_host_t *ha)
773 /* Perform RISC reset. */
774 qla24xx_reset_risc(ha);
776 ha->fw_transfer_size = REQUEST_ENTRY_SIZE * 1024;
778 rval = qla2x00_mbx_reg_test(ha);
780 DEBUG(printk("scsi(%ld): Failed mailbox send register test\n",
782 qla_printk(KERN_WARNING, ha,
783 "Failed mailbox send register test\n");
785 /* Flag a successful rval */
793 qla2x00_alloc_fw_dump(scsi_qla_host_t *ha)
796 ha->fw_dump24_len = sizeof(struct qla24xx_fw_dump);
797 ha->fw_dump24_len += (ha->fw_memory_size - 0x100000) * sizeof(uint32_t);
798 ha->fw_dump24 = vmalloc(ha->fw_dump24_len);
800 qla_printk(KERN_INFO, ha, "Allocated (%d KB) for firmware "
801 "dump...\n", ha->fw_dump24_len / 1024);
803 qla_printk(KERN_WARNING, ha, "Unable to allocate (%d KB) for "
804 "firmware dump!!!\n", ha->fw_dump24_len / 1024);
808 * qla2x00_resize_request_q() - Resize request queue given available ISP memory.
811 * Returns 0 on success.
814 qla2x00_resize_request_q(scsi_qla_host_t *ha)
817 uint16_t fw_iocb_cnt = 0;
818 uint16_t request_q_length = REQUEST_ENTRY_CNT_2XXX_EXT_MEM;
819 dma_addr_t request_dma;
820 request_t *request_ring;
822 /* Valid only on recent ISPs. */
823 if (IS_QLA2100(ha) || IS_QLA2200(ha))
826 if (IS_QLA24XX(ha) || IS_QLA25XX(ha))
827 qla2x00_alloc_fw_dump(ha);
829 /* Retrieve IOCB counts available to the firmware. */
830 rval = qla2x00_get_resource_cnts(ha, NULL, NULL, NULL, &fw_iocb_cnt);
833 /* No point in continuing if current settings are sufficient. */
834 if (fw_iocb_cnt < 1024)
836 if (ha->request_q_length >= request_q_length)
839 /* Attempt to claim larger area for request queue. */
840 request_ring = dma_alloc_coherent(&ha->pdev->dev,
841 (request_q_length + 1) * sizeof(request_t), &request_dma,
843 if (request_ring == NULL)
846 /* Resize successful, report extensions. */
847 qla_printk(KERN_INFO, ha, "Extended memory detected (%d KB)...\n",
848 (ha->fw_memory_size + 1) / 1024);
849 qla_printk(KERN_INFO, ha, "Resizing request queue depth "
850 "(%d -> %d)...\n", ha->request_q_length, request_q_length);
852 /* Clear old allocations. */
853 dma_free_coherent(&ha->pdev->dev,
854 (ha->request_q_length + 1) * sizeof(request_t), ha->request_ring,
857 /* Begin using larger queue. */
858 ha->request_q_length = request_q_length;
859 ha->request_ring = request_ring;
860 ha->request_dma = request_dma;
864 * qla2x00_setup_chip() - Load and start RISC firmware.
867 * Returns 0 on success.
870 qla2x00_setup_chip(scsi_qla_host_t *ha)
873 uint32_t srisc_address = 0;
875 /* Load firmware sequences */
876 rval = ha->isp_ops.load_risc(ha, &srisc_address);
877 if (rval == QLA_SUCCESS) {
878 DEBUG(printk("scsi(%ld): Verifying Checksum of loaded RISC "
879 "code.\n", ha->host_no));
881 rval = qla2x00_verify_checksum(ha, srisc_address);
882 if (rval == QLA_SUCCESS) {
883 /* Start firmware execution. */
884 DEBUG(printk("scsi(%ld): Checksum OK, start "
885 "firmware.\n", ha->host_no));
887 rval = qla2x00_execute_fw(ha, srisc_address);
888 /* Retrieve firmware information. */
889 if (rval == QLA_SUCCESS && ha->fw_major_version == 0) {
890 qla2x00_get_fw_version(ha,
891 &ha->fw_major_version,
892 &ha->fw_minor_version,
893 &ha->fw_subminor_version,
894 &ha->fw_attributes, &ha->fw_memory_size);
895 qla2x00_resize_request_q(ha);
898 DEBUG2(printk(KERN_INFO
899 "scsi(%ld): ISP Firmware failed checksum.\n",
905 DEBUG2_3(printk("scsi(%ld): Setup chip **** FAILED ****.\n",
913 * qla2x00_init_response_q_entries() - Initializes response queue entries.
916 * Beginning of request ring has initialization control block already built
917 * by nvram config routine.
919 * Returns 0 on success.
922 qla2x00_init_response_q_entries(scsi_qla_host_t *ha)
927 pkt = ha->response_ring_ptr;
928 for (cnt = 0; cnt < ha->response_q_length; cnt++) {
929 pkt->signature = RESPONSE_PROCESSED;
936 * qla2x00_update_fw_options() - Read and process firmware options.
939 * Returns 0 on success.
942 qla2x00_update_fw_options(scsi_qla_host_t *ha)
944 uint16_t swing, emphasis, tx_sens, rx_sens;
946 memset(ha->fw_options, 0, sizeof(ha->fw_options));
947 qla2x00_get_fw_options(ha, ha->fw_options);
949 if (IS_QLA2100(ha) || IS_QLA2200(ha))
952 /* Serial Link options. */
953 DEBUG3(printk("scsi(%ld): Serial link options:\n",
955 DEBUG3(qla2x00_dump_buffer((uint8_t *)&ha->fw_seriallink_options,
956 sizeof(ha->fw_seriallink_options)));
958 ha->fw_options[1] &= ~FO1_SET_EMPHASIS_SWING;
959 if (ha->fw_seriallink_options[3] & BIT_2) {
960 ha->fw_options[1] |= FO1_SET_EMPHASIS_SWING;
963 swing = ha->fw_seriallink_options[2] & (BIT_2 | BIT_1 | BIT_0);
964 emphasis = (ha->fw_seriallink_options[2] &
965 (BIT_4 | BIT_3)) >> 3;
966 tx_sens = ha->fw_seriallink_options[0] &
967 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
968 rx_sens = (ha->fw_seriallink_options[0] &
969 (BIT_7 | BIT_6 | BIT_5 | BIT_4)) >> 4;
970 ha->fw_options[10] = (emphasis << 14) | (swing << 8);
971 if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
974 ha->fw_options[10] |= (tx_sens << 4) | rx_sens;
975 } else if (IS_QLA2322(ha) || IS_QLA6322(ha))
976 ha->fw_options[10] |= BIT_5 |
977 ((rx_sens & (BIT_1 | BIT_0)) << 2) |
978 (tx_sens & (BIT_1 | BIT_0));
981 swing = (ha->fw_seriallink_options[2] &
982 (BIT_7 | BIT_6 | BIT_5)) >> 5;
983 emphasis = ha->fw_seriallink_options[3] & (BIT_1 | BIT_0);
984 tx_sens = ha->fw_seriallink_options[1] &
985 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
986 rx_sens = (ha->fw_seriallink_options[1] &
987 (BIT_7 | BIT_6 | BIT_5 | BIT_4)) >> 4;
988 ha->fw_options[11] = (emphasis << 14) | (swing << 8);
989 if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
992 ha->fw_options[11] |= (tx_sens << 4) | rx_sens;
993 } else if (IS_QLA2322(ha) || IS_QLA6322(ha))
994 ha->fw_options[11] |= BIT_5 |
995 ((rx_sens & (BIT_1 | BIT_0)) << 2) |
996 (tx_sens & (BIT_1 | BIT_0));
1000 /* Return command IOCBs without waiting for an ABTS to complete. */
1001 ha->fw_options[3] |= BIT_13;
1004 if (ha->flags.enable_led_scheme)
1005 ha->fw_options[2] |= BIT_12;
1007 /* Update firmware options. */
1008 qla2x00_set_fw_options(ha, ha->fw_options);
1012 qla24xx_update_fw_options(scsi_qla_host_t *ha)
1016 /* Update Serial Link options. */
1017 if ((le16_to_cpu(ha->fw_seriallink_options24[0]) & BIT_0) == 0)
1020 rval = qla2x00_set_serdes_params(ha,
1021 le16_to_cpu(ha->fw_seriallink_options24[1]),
1022 le16_to_cpu(ha->fw_seriallink_options24[2]),
1023 le16_to_cpu(ha->fw_seriallink_options24[3]));
1024 if (rval != QLA_SUCCESS) {
1025 qla_printk(KERN_WARNING, ha,
1026 "Unable to update Serial Link options (%x).\n", rval);
1031 qla2x00_config_rings(struct scsi_qla_host *ha)
1033 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1035 /* Setup ring parameters in initialization control block. */
1036 ha->init_cb->request_q_outpointer = __constant_cpu_to_le16(0);
1037 ha->init_cb->response_q_inpointer = __constant_cpu_to_le16(0);
1038 ha->init_cb->request_q_length = cpu_to_le16(ha->request_q_length);
1039 ha->init_cb->response_q_length = cpu_to_le16(ha->response_q_length);
1040 ha->init_cb->request_q_address[0] = cpu_to_le32(LSD(ha->request_dma));
1041 ha->init_cb->request_q_address[1] = cpu_to_le32(MSD(ha->request_dma));
1042 ha->init_cb->response_q_address[0] = cpu_to_le32(LSD(ha->response_dma));
1043 ha->init_cb->response_q_address[1] = cpu_to_le32(MSD(ha->response_dma));
1045 WRT_REG_WORD(ISP_REQ_Q_IN(ha, reg), 0);
1046 WRT_REG_WORD(ISP_REQ_Q_OUT(ha, reg), 0);
1047 WRT_REG_WORD(ISP_RSP_Q_IN(ha, reg), 0);
1048 WRT_REG_WORD(ISP_RSP_Q_OUT(ha, reg), 0);
1049 RD_REG_WORD(ISP_RSP_Q_OUT(ha, reg)); /* PCI Posting. */
1053 qla24xx_config_rings(struct scsi_qla_host *ha)
1055 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1056 struct init_cb_24xx *icb;
1058 /* Setup ring parameters in initialization control block. */
1059 icb = (struct init_cb_24xx *)ha->init_cb;
1060 icb->request_q_outpointer = __constant_cpu_to_le16(0);
1061 icb->response_q_inpointer = __constant_cpu_to_le16(0);
1062 icb->request_q_length = cpu_to_le16(ha->request_q_length);
1063 icb->response_q_length = cpu_to_le16(ha->response_q_length);
1064 icb->request_q_address[0] = cpu_to_le32(LSD(ha->request_dma));
1065 icb->request_q_address[1] = cpu_to_le32(MSD(ha->request_dma));
1066 icb->response_q_address[0] = cpu_to_le32(LSD(ha->response_dma));
1067 icb->response_q_address[1] = cpu_to_le32(MSD(ha->response_dma));
1069 WRT_REG_DWORD(®->req_q_in, 0);
1070 WRT_REG_DWORD(®->req_q_out, 0);
1071 WRT_REG_DWORD(®->rsp_q_in, 0);
1072 WRT_REG_DWORD(®->rsp_q_out, 0);
1073 RD_REG_DWORD(®->rsp_q_out);
1077 * qla2x00_init_rings() - Initializes firmware.
1080 * Beginning of request ring has initialization control block already built
1081 * by nvram config routine.
1083 * Returns 0 on success.
1086 qla2x00_init_rings(scsi_qla_host_t *ha)
1089 unsigned long flags = 0;
1092 spin_lock_irqsave(&ha->hardware_lock, flags);
1094 /* Clear outstanding commands array. */
1095 for (cnt = 0; cnt < MAX_OUTSTANDING_COMMANDS; cnt++)
1096 ha->outstanding_cmds[cnt] = NULL;
1098 ha->current_outstanding_cmd = 0;
1100 /* Clear RSCN queue. */
1101 ha->rscn_in_ptr = 0;
1102 ha->rscn_out_ptr = 0;
1104 /* Initialize firmware. */
1105 ha->request_ring_ptr = ha->request_ring;
1106 ha->req_ring_index = 0;
1107 ha->req_q_cnt = ha->request_q_length;
1108 ha->response_ring_ptr = ha->response_ring;
1109 ha->rsp_ring_index = 0;
1111 /* Initialize response queue entries */
1112 qla2x00_init_response_q_entries(ha);
1114 ha->isp_ops.config_rings(ha);
1116 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1118 /* Update any ISP specific firmware options before initialization. */
1119 ha->isp_ops.update_fw_options(ha);
1121 DEBUG(printk("scsi(%ld): Issue init firmware.\n", ha->host_no));
1122 rval = qla2x00_init_firmware(ha, ha->init_cb_size);
1124 DEBUG2_3(printk("scsi(%ld): Init firmware **** FAILED ****.\n",
1127 DEBUG3(printk("scsi(%ld): Init firmware -- success.\n",
1135 * qla2x00_fw_ready() - Waits for firmware ready.
1138 * Returns 0 on success.
1141 qla2x00_fw_ready(scsi_qla_host_t *ha)
1144 unsigned long wtime, mtime;
1145 uint16_t min_wait; /* Minimum wait time if loop is down */
1146 uint16_t wait_time; /* Wait time if loop is coming ready */
1151 /* 20 seconds for loop down. */
1155 * Firmware should take at most one RATOV to login, plus 5 seconds for
1156 * our own processing.
1158 if ((wait_time = (ha->retry_count*ha->login_timeout) + 5) < min_wait) {
1159 wait_time = min_wait;
1162 /* Min wait time if loop down */
1163 mtime = jiffies + (min_wait * HZ);
1165 /* wait time before firmware ready */
1166 wtime = jiffies + (wait_time * HZ);
1168 /* Wait for ISP to finish LIP */
1169 if (!ha->flags.init_done)
1170 qla_printk(KERN_INFO, ha, "Waiting for LIP to complete...\n");
1172 DEBUG3(printk("scsi(%ld): Waiting for LIP to complete...\n",
1176 rval = qla2x00_get_firmware_state(ha, &fw_state);
1177 if (rval == QLA_SUCCESS) {
1178 if (fw_state < FSTATE_LOSS_OF_SYNC) {
1179 ha->device_flags &= ~DFLG_NO_CABLE;
1181 if (fw_state == FSTATE_READY) {
1182 DEBUG(printk("scsi(%ld): F/W Ready - OK \n",
1185 qla2x00_get_retry_cnt(ha, &ha->retry_count,
1186 &ha->login_timeout, &ha->r_a_tov);
1192 rval = QLA_FUNCTION_FAILED;
1194 if (atomic_read(&ha->loop_down_timer) &&
1195 (fw_state >= FSTATE_LOSS_OF_SYNC ||
1196 fw_state == FSTATE_WAIT_AL_PA)) {
1197 /* Loop down. Timeout on min_wait for states
1198 * other than Wait for Login.
1200 if (time_after_eq(jiffies, mtime)) {
1201 qla_printk(KERN_INFO, ha,
1202 "Cable is unplugged...\n");
1204 ha->device_flags |= DFLG_NO_CABLE;
1209 /* Mailbox cmd failed. Timeout on min_wait. */
1210 if (time_after_eq(jiffies, mtime))
1214 if (time_after_eq(jiffies, wtime))
1217 /* Delay for a while */
1220 DEBUG3(printk("scsi(%ld): fw_state=%x curr time=%lx.\n",
1221 ha->host_no, fw_state, jiffies));
1224 DEBUG(printk("scsi(%ld): fw_state=%x curr time=%lx.\n",
1225 ha->host_no, fw_state, jiffies));
1228 DEBUG2_3(printk("scsi(%ld): Firmware ready **** FAILED ****.\n",
1236 * qla2x00_configure_hba
1237 * Setup adapter context.
1240 * ha = adapter state pointer.
1249 qla2x00_configure_hba(scsi_qla_host_t *ha)
1257 char connect_type[22];
1259 /* Get host addresses. */
1260 rval = qla2x00_get_adapter_id(ha,
1261 &loop_id, &al_pa, &area, &domain, &topo);
1262 if (rval != QLA_SUCCESS) {
1263 if (LOOP_TRANSITION(ha) || atomic_read(&ha->loop_down_timer) ||
1264 (rval == QLA_COMMAND_ERROR && loop_id == 0x7)) {
1265 DEBUG2(printk("%s(%ld) Loop is in a transition state\n",
1266 __func__, ha->host_no));
1268 qla_printk(KERN_WARNING, ha,
1269 "ERROR -- Unable to get host loop ID.\n");
1270 set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
1276 qla_printk(KERN_INFO, ha,
1277 "Cannot get topology - retrying.\n");
1278 return (QLA_FUNCTION_FAILED);
1281 ha->loop_id = loop_id;
1284 ha->min_external_loopid = SNS_FIRST_LOOP_ID;
1285 ha->operating_mode = LOOP;
1289 DEBUG3(printk("scsi(%ld): HBA in NL topology.\n",
1291 ha->current_topology = ISP_CFG_NL;
1292 strcpy(connect_type, "(Loop)");
1296 DEBUG3(printk("scsi(%ld): HBA in FL topology.\n",
1298 ha->current_topology = ISP_CFG_FL;
1299 strcpy(connect_type, "(FL_Port)");
1303 DEBUG3(printk("scsi(%ld): HBA in N P2P topology.\n",
1305 ha->operating_mode = P2P;
1306 ha->current_topology = ISP_CFG_N;
1307 strcpy(connect_type, "(N_Port-to-N_Port)");
1311 DEBUG3(printk("scsi(%ld): HBA in F P2P topology.\n",
1313 ha->operating_mode = P2P;
1314 ha->current_topology = ISP_CFG_F;
1315 strcpy(connect_type, "(F_Port)");
1319 DEBUG3(printk("scsi(%ld): HBA in unknown topology %x. "
1321 ha->host_no, topo));
1322 ha->current_topology = ISP_CFG_NL;
1323 strcpy(connect_type, "(Loop)");
1327 /* Save Host port and loop ID. */
1328 /* byte order - Big Endian */
1329 ha->d_id.b.domain = domain;
1330 ha->d_id.b.area = area;
1331 ha->d_id.b.al_pa = al_pa;
1333 if (!ha->flags.init_done)
1334 qla_printk(KERN_INFO, ha,
1335 "Topology - %s, Host Loop address 0x%x\n",
1336 connect_type, ha->loop_id);
1339 DEBUG2_3(printk("scsi(%ld): FAILED.\n", ha->host_no));
1341 DEBUG3(printk("scsi(%ld): exiting normally.\n", ha->host_no));
1348 * NVRAM configuration for ISP 2xxx
1351 * ha = adapter block pointer.
1354 * initialization control block in response_ring
1355 * host adapters parameters in host adapter block
1361 qla2x00_nvram_config(scsi_qla_host_t *ha)
1366 uint8_t *dptr1, *dptr2;
1367 init_cb_t *icb = ha->init_cb;
1368 nvram_t *nv = (nvram_t *)ha->request_ring;
1369 uint8_t *ptr = (uint8_t *)ha->request_ring;
1370 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1374 /* Determine NVRAM starting address. */
1375 ha->nvram_size = sizeof(nvram_t);
1377 if (!IS_QLA2100(ha) && !IS_QLA2200(ha) && !IS_QLA2300(ha))
1378 if ((RD_REG_WORD(®->ctrl_status) >> 14) == 1)
1379 ha->nvram_base = 0x80;
1381 /* Get NVRAM data and calculate checksum. */
1382 ha->isp_ops.read_nvram(ha, ptr, ha->nvram_base, ha->nvram_size);
1383 for (cnt = 0, chksum = 0; cnt < ha->nvram_size; cnt++)
1386 DEBUG5(printk("scsi(%ld): Contents of NVRAM\n", ha->host_no));
1387 DEBUG5(qla2x00_dump_buffer((uint8_t *)ha->request_ring,
1390 /* Bad NVRAM data, set defaults parameters. */
1391 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' ||
1392 nv->id[2] != 'P' || nv->id[3] != ' ' || nv->nvram_version < 1) {
1393 /* Reset NVRAM data. */
1394 qla_printk(KERN_WARNING, ha, "Inconsistent NVRAM detected: "
1395 "checksum=0x%x id=%c version=0x%x.\n", chksum, nv->id[0],
1397 qla_printk(KERN_WARNING, ha, "Falling back to functioning (yet "
1398 "invalid -- WWPN) defaults.\n");
1401 * Set default initialization control block.
1403 memset(nv, 0, ha->nvram_size);
1404 nv->parameter_block_version = ICB_VERSION;
1406 if (IS_QLA23XX(ha)) {
1407 nv->firmware_options[0] = BIT_2 | BIT_1;
1408 nv->firmware_options[1] = BIT_7 | BIT_5;
1409 nv->add_firmware_options[0] = BIT_5;
1410 nv->add_firmware_options[1] = BIT_5 | BIT_4;
1411 nv->frame_payload_size = __constant_cpu_to_le16(2048);
1412 nv->special_options[1] = BIT_7;
1413 } else if (IS_QLA2200(ha)) {
1414 nv->firmware_options[0] = BIT_2 | BIT_1;
1415 nv->firmware_options[1] = BIT_7 | BIT_5;
1416 nv->add_firmware_options[0] = BIT_5;
1417 nv->add_firmware_options[1] = BIT_5 | BIT_4;
1418 nv->frame_payload_size = __constant_cpu_to_le16(1024);
1419 } else if (IS_QLA2100(ha)) {
1420 nv->firmware_options[0] = BIT_3 | BIT_1;
1421 nv->firmware_options[1] = BIT_5;
1422 nv->frame_payload_size = __constant_cpu_to_le16(1024);
1425 nv->max_iocb_allocation = __constant_cpu_to_le16(256);
1426 nv->execution_throttle = __constant_cpu_to_le16(16);
1427 nv->retry_count = 8;
1428 nv->retry_delay = 1;
1430 nv->port_name[0] = 33;
1431 nv->port_name[3] = 224;
1432 nv->port_name[4] = 139;
1434 nv->login_timeout = 4;
1437 * Set default host adapter parameters
1439 nv->host_p[1] = BIT_2;
1440 nv->reset_delay = 5;
1441 nv->port_down_retry_count = 8;
1442 nv->max_luns_per_target = __constant_cpu_to_le16(8);
1443 nv->link_down_timeout = 60;
1448 #if defined(CONFIG_IA64_GENERIC) || defined(CONFIG_IA64_SGI_SN2)
1450 * The SN2 does not provide BIOS emulation which means you can't change
1451 * potentially bogus BIOS settings. Force the use of default settings
1452 * for link rate and frame size. Hope that the rest of the settings
1455 if (ia64_platform_is("sn2")) {
1456 nv->frame_payload_size = __constant_cpu_to_le16(2048);
1458 nv->special_options[1] = BIT_7;
1462 /* Reset Initialization control block */
1463 memset(icb, 0, ha->init_cb_size);
1466 * Setup driver NVRAM options.
1468 nv->firmware_options[0] |= (BIT_6 | BIT_1);
1469 nv->firmware_options[0] &= ~(BIT_5 | BIT_4);
1470 nv->firmware_options[1] |= (BIT_5 | BIT_0);
1471 nv->firmware_options[1] &= ~BIT_4;
1473 if (IS_QLA23XX(ha)) {
1474 nv->firmware_options[0] |= BIT_2;
1475 nv->firmware_options[0] &= ~BIT_3;
1476 nv->add_firmware_options[1] |= BIT_5 | BIT_4;
1478 if (IS_QLA2300(ha)) {
1479 if (ha->fb_rev == FPM_2310) {
1480 strcpy(ha->model_number, "QLA2310");
1482 strcpy(ha->model_number, "QLA2300");
1486 memcmp(nv->model_number, BINZERO,
1487 sizeof(nv->model_number)) != 0) {
1490 strncpy(ha->model_number, nv->model_number,
1491 sizeof(nv->model_number));
1492 st = en = ha->model_number;
1493 en += sizeof(nv->model_number) - 1;
1495 if (*en != 0x20 && *en != 0x00)
1502 index = (ha->pdev->subsystem_device & 0xff);
1503 if (index < QLA_MODEL_NAMES) {
1504 strcpy(ha->model_number,
1505 qla2x00_model_name[index]);
1507 qla2x00_model_desc[index];
1509 strcpy(ha->model_number, "QLA23xx");
1513 } else if (IS_QLA2200(ha)) {
1514 nv->firmware_options[0] |= BIT_2;
1516 * 'Point-to-point preferred, else loop' is not a safe
1517 * connection mode setting.
1519 if ((nv->add_firmware_options[0] & (BIT_6 | BIT_5 | BIT_4)) ==
1521 /* Force 'loop preferred, else point-to-point'. */
1522 nv->add_firmware_options[0] &= ~(BIT_6 | BIT_5 | BIT_4);
1523 nv->add_firmware_options[0] |= BIT_5;
1525 strcpy(ha->model_number, "QLA22xx");
1526 } else /*if (IS_QLA2100(ha))*/ {
1527 strcpy(ha->model_number, "QLA2100");
1531 * Copy over NVRAM RISC parameter block to initialization control block.
1533 dptr1 = (uint8_t *)icb;
1534 dptr2 = (uint8_t *)&nv->parameter_block_version;
1535 cnt = (uint8_t *)&icb->request_q_outpointer - (uint8_t *)&icb->version;
1537 *dptr1++ = *dptr2++;
1539 /* Copy 2nd half. */
1540 dptr1 = (uint8_t *)icb->add_firmware_options;
1541 cnt = (uint8_t *)icb->reserved_3 - (uint8_t *)icb->add_firmware_options;
1543 *dptr1++ = *dptr2++;
1545 /* Prepare nodename */
1546 if ((icb->firmware_options[1] & BIT_6) == 0) {
1548 * Firmware will apply the following mask if the nodename was
1551 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
1552 icb->node_name[0] &= 0xF0;
1556 * Set host adapter parameters.
1558 ha->flags.disable_risc_code_load = ((nv->host_p[0] & BIT_4) ? 1 : 0);
1559 /* Always load RISC code on non ISP2[12]00 chips. */
1560 if (!IS_QLA2100(ha) && !IS_QLA2200(ha))
1561 ha->flags.disable_risc_code_load = 0;
1562 ha->flags.enable_lip_reset = ((nv->host_p[1] & BIT_1) ? 1 : 0);
1563 ha->flags.enable_lip_full_login = ((nv->host_p[1] & BIT_2) ? 1 : 0);
1564 ha->flags.enable_target_reset = ((nv->host_p[1] & BIT_3) ? 1 : 0);
1565 ha->flags.enable_led_scheme = (nv->special_options[1] & BIT_4) ? 1 : 0;
1567 ha->operating_mode =
1568 (icb->add_firmware_options[0] & (BIT_6 | BIT_5 | BIT_4)) >> 4;
1570 memcpy(ha->fw_seriallink_options, nv->seriallink_options,
1571 sizeof(ha->fw_seriallink_options));
1573 /* save HBA serial number */
1574 ha->serial0 = icb->port_name[5];
1575 ha->serial1 = icb->port_name[6];
1576 ha->serial2 = icb->port_name[7];
1577 ha->node_name = icb->node_name;
1578 ha->port_name = icb->port_name;
1580 icb->execution_throttle = __constant_cpu_to_le16(0xFFFF);
1582 ha->retry_count = nv->retry_count;
1584 /* Set minimum login_timeout to 4 seconds. */
1585 if (nv->login_timeout < ql2xlogintimeout)
1586 nv->login_timeout = ql2xlogintimeout;
1587 if (nv->login_timeout < 4)
1588 nv->login_timeout = 4;
1589 ha->login_timeout = nv->login_timeout;
1590 icb->login_timeout = nv->login_timeout;
1592 /* Set minimum RATOV to 200 tenths of a second. */
1595 ha->loop_reset_delay = nv->reset_delay;
1597 /* Link Down Timeout = 0:
1599 * When Port Down timer expires we will start returning
1600 * I/O's to OS with "DID_NO_CONNECT".
1602 * Link Down Timeout != 0:
1604 * The driver waits for the link to come up after link down
1605 * before returning I/Os to OS with "DID_NO_CONNECT".
1607 if (nv->link_down_timeout == 0) {
1608 ha->loop_down_abort_time =
1609 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
1611 ha->link_down_timeout = nv->link_down_timeout;
1612 ha->loop_down_abort_time =
1613 (LOOP_DOWN_TIME - ha->link_down_timeout);
1617 * Need enough time to try and get the port back.
1619 ha->port_down_retry_count = nv->port_down_retry_count;
1620 if (qlport_down_retry)
1621 ha->port_down_retry_count = qlport_down_retry;
1622 /* Set login_retry_count */
1623 ha->login_retry_count = nv->retry_count;
1624 if (ha->port_down_retry_count == nv->port_down_retry_count &&
1625 ha->port_down_retry_count > 3)
1626 ha->login_retry_count = ha->port_down_retry_count;
1627 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
1628 ha->login_retry_count = ha->port_down_retry_count;
1629 if (ql2xloginretrycount)
1630 ha->login_retry_count = ql2xloginretrycount;
1632 icb->lun_enables = __constant_cpu_to_le16(0);
1633 icb->command_resource_count = 0;
1634 icb->immediate_notify_resource_count = 0;
1635 icb->timeout = __constant_cpu_to_le16(0);
1637 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
1639 icb->firmware_options[0] &= ~BIT_3;
1640 icb->add_firmware_options[0] &=
1641 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0);
1642 icb->add_firmware_options[0] |= BIT_2;
1643 icb->response_accumulation_timer = 3;
1644 icb->interrupt_delay_timer = 5;
1646 ha->flags.process_response_queue = 1;
1649 if (!ha->flags.init_done) {
1650 ha->zio_mode = icb->add_firmware_options[0] &
1651 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
1652 ha->zio_timer = icb->interrupt_delay_timer ?
1653 icb->interrupt_delay_timer: 2;
1655 icb->add_firmware_options[0] &=
1656 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0);
1657 ha->flags.process_response_queue = 0;
1658 if (ha->zio_mode != QLA_ZIO_DISABLED) {
1659 DEBUG2(printk("scsi(%ld): ZIO mode %d enabled; timer "
1660 "delay (%d us).\n", ha->host_no, ha->zio_mode,
1661 ha->zio_timer * 100));
1662 qla_printk(KERN_INFO, ha,
1663 "ZIO mode %d enabled; timer delay (%d us).\n",
1664 ha->zio_mode, ha->zio_timer * 100);
1666 icb->add_firmware_options[0] |= (uint8_t)ha->zio_mode;
1667 icb->interrupt_delay_timer = (uint8_t)ha->zio_timer;
1668 ha->flags.process_response_queue = 1;
1673 DEBUG2_3(printk(KERN_WARNING
1674 "scsi(%ld): NVRAM configuration failed!\n", ha->host_no));
1680 qla2x00_rport_add(void *data)
1682 fc_port_t *fcport = data;
1684 qla2x00_reg_remote_port(fcport->ha, fcport);
1688 qla2x00_rport_del(void *data)
1690 fc_port_t *fcport = data;
1693 fc_remote_port_delete(fcport->rport);
1694 fcport->rport = NULL;
1698 * qla2x00_alloc_fcport() - Allocate a generic fcport.
1700 * @flags: allocation flags
1702 * Returns a pointer to the allocated fcport, or NULL, if none available.
1705 qla2x00_alloc_fcport(scsi_qla_host_t *ha, gfp_t flags)
1709 fcport = kmalloc(sizeof(fc_port_t), flags);
1713 /* Setup fcport template structure. */
1714 memset(fcport, 0, sizeof (fc_port_t));
1716 fcport->port_type = FCT_UNKNOWN;
1717 fcport->loop_id = FC_NO_LOOP_ID;
1718 fcport->iodesc_idx_sent = IODESC_INVALID_INDEX;
1719 atomic_set(&fcport->state, FCS_UNCONFIGURED);
1720 fcport->flags = FCF_RLC_SUPPORT;
1721 fcport->supported_classes = FC_COS_UNSPECIFIED;
1722 INIT_WORK(&fcport->rport_add_work, qla2x00_rport_add, fcport);
1723 INIT_WORK(&fcport->rport_del_work, qla2x00_rport_del, fcport);
1729 * qla2x00_configure_loop
1730 * Updates Fibre Channel Device Database with what is actually on loop.
1733 * ha = adapter block pointer.
1738 * 2 = database was full and device was not configured.
1741 qla2x00_configure_loop(scsi_qla_host_t *ha)
1744 unsigned long flags, save_flags;
1748 /* Get Initiator ID */
1749 if (test_bit(LOCAL_LOOP_UPDATE, &ha->dpc_flags)) {
1750 rval = qla2x00_configure_hba(ha);
1751 if (rval != QLA_SUCCESS) {
1752 DEBUG(printk("scsi(%ld): Unable to configure HBA.\n",
1758 save_flags = flags = ha->dpc_flags;
1759 DEBUG(printk("scsi(%ld): Configure loop -- dpc flags =0x%lx\n",
1760 ha->host_no, flags));
1763 * If we have both an RSCN and PORT UPDATE pending then handle them
1764 * both at the same time.
1766 clear_bit(LOCAL_LOOP_UPDATE, &ha->dpc_flags);
1767 clear_bit(RSCN_UPDATE, &ha->dpc_flags);
1769 /* Determine what we need to do */
1770 if (ha->current_topology == ISP_CFG_FL &&
1771 (test_bit(LOCAL_LOOP_UPDATE, &flags))) {
1773 ha->flags.rscn_queue_overflow = 1;
1774 set_bit(RSCN_UPDATE, &flags);
1776 } else if (ha->current_topology == ISP_CFG_F &&
1777 (test_bit(LOCAL_LOOP_UPDATE, &flags))) {
1779 ha->flags.rscn_queue_overflow = 1;
1780 set_bit(RSCN_UPDATE, &flags);
1781 clear_bit(LOCAL_LOOP_UPDATE, &flags);
1783 } else if (!ha->flags.online ||
1784 (test_bit(ABORT_ISP_ACTIVE, &flags))) {
1786 ha->flags.rscn_queue_overflow = 1;
1787 set_bit(RSCN_UPDATE, &flags);
1788 set_bit(LOCAL_LOOP_UPDATE, &flags);
1791 if (test_bit(LOCAL_LOOP_UPDATE, &flags)) {
1792 if (test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags)) {
1793 rval = QLA_FUNCTION_FAILED;
1795 rval = qla2x00_configure_local_loop(ha);
1799 if (rval == QLA_SUCCESS && test_bit(RSCN_UPDATE, &flags)) {
1800 if (LOOP_TRANSITION(ha)) {
1801 rval = QLA_FUNCTION_FAILED;
1803 rval = qla2x00_configure_fabric(ha);
1807 if (rval == QLA_SUCCESS) {
1808 if (atomic_read(&ha->loop_down_timer) ||
1809 test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags)) {
1810 rval = QLA_FUNCTION_FAILED;
1812 atomic_set(&ha->loop_state, LOOP_READY);
1814 DEBUG(printk("scsi(%ld): LOOP READY\n", ha->host_no));
1819 DEBUG2_3(printk("%s(%ld): *** FAILED ***\n",
1820 __func__, ha->host_no));
1822 DEBUG3(printk("%s: exiting normally\n", __func__));
1825 /* Restore state if a resync event occured during processing */
1826 if (test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags)) {
1827 if (test_bit(LOCAL_LOOP_UPDATE, &save_flags))
1828 set_bit(LOCAL_LOOP_UPDATE, &ha->dpc_flags);
1829 if (test_bit(RSCN_UPDATE, &save_flags))
1830 set_bit(RSCN_UPDATE, &ha->dpc_flags);
1839 * qla2x00_configure_local_loop
1840 * Updates Fibre Channel Device Database with local loop devices.
1843 * ha = adapter block pointer.
1849 qla2x00_configure_local_loop(scsi_qla_host_t *ha)
1854 fc_port_t *fcport, *new_fcport;
1860 uint8_t domain, area, al_pa;
1864 entries = MAX_FIBRE_DEVICES;
1866 DEBUG3(printk("scsi(%ld): Getting FCAL position map\n", ha->host_no));
1867 DEBUG3(qla2x00_get_fcal_position_map(ha, NULL));
1869 /* Get list of logged in devices. */
1870 memset(ha->gid_list, 0, GID_LIST_SIZE);
1871 rval = qla2x00_get_id_list(ha, ha->gid_list, ha->gid_list_dma,
1873 if (rval != QLA_SUCCESS)
1874 goto cleanup_allocation;
1876 DEBUG3(printk("scsi(%ld): Entries in ID list (%d)\n",
1877 ha->host_no, entries));
1878 DEBUG3(qla2x00_dump_buffer((uint8_t *)ha->gid_list,
1879 entries * sizeof(struct gid_list_info)));
1881 /* Allocate temporary fcport for any new fcports discovered. */
1882 new_fcport = qla2x00_alloc_fcport(ha, GFP_KERNEL);
1883 if (new_fcport == NULL) {
1884 rval = QLA_MEMORY_ALLOC_FAILED;
1885 goto cleanup_allocation;
1887 new_fcport->flags &= ~FCF_FABRIC_DEVICE;
1890 * Mark local devices that were present with FCF_DEVICE_LOST for now.
1892 list_for_each_entry(fcport, &ha->fcports, list) {
1893 if (atomic_read(&fcport->state) == FCS_ONLINE &&
1894 fcport->port_type != FCT_BROADCAST &&
1895 (fcport->flags & FCF_FABRIC_DEVICE) == 0) {
1897 DEBUG(printk("scsi(%ld): Marking port lost, "
1899 ha->host_no, fcport->loop_id));
1901 atomic_set(&fcport->state, FCS_DEVICE_LOST);
1902 fcport->flags &= ~FCF_FARP_DONE;
1906 /* Add devices to port list. */
1907 id_iter = (char *)ha->gid_list;
1908 for (index = 0; index < entries; index++) {
1909 domain = ((struct gid_list_info *)id_iter)->domain;
1910 area = ((struct gid_list_info *)id_iter)->area;
1911 al_pa = ((struct gid_list_info *)id_iter)->al_pa;
1912 if (IS_QLA2100(ha) || IS_QLA2200(ha))
1913 loop_id = (uint16_t)
1914 ((struct gid_list_info *)id_iter)->loop_id_2100;
1916 loop_id = le16_to_cpu(
1917 ((struct gid_list_info *)id_iter)->loop_id);
1918 id_iter += ha->gid_list_info_size;
1920 /* Bypass reserved domain fields. */
1921 if ((domain & 0xf0) == 0xf0)
1924 /* Bypass if not same domain and area of adapter. */
1925 if (area && domain &&
1926 (area != ha->d_id.b.area || domain != ha->d_id.b.domain))
1929 /* Bypass invalid local loop ID. */
1930 if (loop_id > LAST_LOCAL_LOOP_ID)
1933 /* Fill in member data. */
1934 new_fcport->d_id.b.domain = domain;
1935 new_fcport->d_id.b.area = area;
1936 new_fcport->d_id.b.al_pa = al_pa;
1937 new_fcport->loop_id = loop_id;
1938 rval2 = qla2x00_get_port_database(ha, new_fcport, 0);
1939 if (rval2 != QLA_SUCCESS) {
1940 DEBUG2(printk("scsi(%ld): Failed to retrieve fcport "
1941 "information -- get_port_database=%x, "
1943 ha->host_no, rval2, new_fcport->loop_id));
1944 DEBUG2(printk("scsi(%ld): Scheduling resync...\n",
1946 set_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags);
1950 /* Check for matching device in port list. */
1953 list_for_each_entry(fcport, &ha->fcports, list) {
1954 if (memcmp(new_fcport->port_name, fcport->port_name,
1958 fcport->flags &= ~(FCF_FABRIC_DEVICE |
1959 FCF_PERSISTENT_BOUND);
1960 fcport->loop_id = new_fcport->loop_id;
1961 fcport->port_type = new_fcport->port_type;
1962 fcport->d_id.b24 = new_fcport->d_id.b24;
1963 memcpy(fcport->node_name, new_fcport->node_name,
1971 /* New device, add to fcports list. */
1972 new_fcport->flags &= ~FCF_PERSISTENT_BOUND;
1973 list_add_tail(&new_fcport->list, &ha->fcports);
1975 /* Allocate a new replacement fcport. */
1976 fcport = new_fcport;
1977 new_fcport = qla2x00_alloc_fcport(ha, GFP_KERNEL);
1978 if (new_fcport == NULL) {
1979 rval = QLA_MEMORY_ALLOC_FAILED;
1980 goto cleanup_allocation;
1982 new_fcport->flags &= ~FCF_FABRIC_DEVICE;
1985 qla2x00_update_fcport(ha, fcport);
1993 if (rval != QLA_SUCCESS) {
1994 DEBUG2(printk("scsi(%ld): Configure local loop error exit: "
1995 "rval=%x\n", ha->host_no, rval));
1999 ha->device_flags |= DFLG_LOCAL_DEVICES;
2000 ha->device_flags &= ~DFLG_RETRY_LOCAL_DEVICES;
2007 qla2x00_probe_for_all_luns(scsi_qla_host_t *ha)
2011 qla2x00_mark_all_devices_lost(ha);
2012 list_for_each_entry(fcport, &ha->fcports, list) {
2013 if (fcport->port_type != FCT_TARGET)
2016 qla2x00_update_fcport(ha, fcport);
2021 * qla2x00_update_fcport
2022 * Updates device on list.
2025 * ha = adapter block pointer.
2026 * fcport = port structure pointer.
2036 qla2x00_update_fcport(scsi_qla_host_t *ha, fc_port_t *fcport)
2039 unsigned long flags;
2043 fcport->login_retry = 0;
2044 fcport->port_login_retry_count = ha->port_down_retry_count *
2046 atomic_set(&fcport->port_down_timer, ha->port_down_retry_count *
2048 fcport->flags &= ~FCF_LOGIN_NEEDED;
2051 * Check for outstanding cmd on tape Bypass LUN discovery if active
2054 if (fcport->flags & FCF_TAPE_PRESENT) {
2055 spin_lock_irqsave(&ha->hardware_lock, flags);
2056 for (index = 1; index < MAX_OUTSTANDING_COMMANDS; index++) {
2059 if ((sp = ha->outstanding_cmds[index]) != 0) {
2061 if (sfcp == fcport) {
2062 atomic_set(&fcport->state, FCS_ONLINE);
2063 spin_unlock_irqrestore(
2064 &ha->hardware_lock, flags);
2069 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2072 if (fcport->port_type == FCT_INITIATOR ||
2073 fcport->port_type == FCT_BROADCAST)
2074 fcport->device_type = TYPE_PROCESSOR;
2076 atomic_set(&fcport->state, FCS_ONLINE);
2078 if (ha->flags.init_done)
2079 qla2x00_reg_remote_port(ha, fcport);
2083 qla2x00_reg_remote_port(scsi_qla_host_t *ha, fc_port_t *fcport)
2085 struct fc_rport_identifiers rport_ids;
2086 struct fc_rport *rport;
2088 if (fcport->rport) {
2089 fc_remote_port_delete(fcport->rport);
2090 fcport->rport = NULL;
2093 rport_ids.node_name = wwn_to_u64(fcport->node_name);
2094 rport_ids.port_name = wwn_to_u64(fcport->port_name);
2095 rport_ids.port_id = fcport->d_id.b.domain << 16 |
2096 fcport->d_id.b.area << 8 | fcport->d_id.b.al_pa;
2097 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
2098 fcport->rport = rport = fc_remote_port_add(ha->host, 0, &rport_ids);
2100 qla_printk(KERN_WARNING, ha,
2101 "Unable to allocate fc remote port!\n");
2104 *((fc_port_t **)rport->dd_data) = fcport;
2105 rport->supported_classes = fcport->supported_classes;
2107 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
2108 if (fcport->port_type == FCT_INITIATOR)
2109 rport_ids.roles |= FC_RPORT_ROLE_FCP_INITIATOR;
2110 if (fcport->port_type == FCT_TARGET)
2111 rport_ids.roles |= FC_RPORT_ROLE_FCP_TARGET;
2112 fc_remote_port_rolechg(rport, rport_ids.roles);
2114 if (rport->scsi_target_id != -1 &&
2115 rport->scsi_target_id < ha->host->max_id)
2116 fcport->os_target_id = rport->scsi_target_id;
2120 * qla2x00_configure_fabric
2121 * Setup SNS devices with loop ID's.
2124 * ha = adapter block pointer.
2131 qla2x00_configure_fabric(scsi_qla_host_t *ha)
2134 fc_port_t *fcport, *fcptemp;
2135 uint16_t next_loopid;
2136 uint16_t mb[MAILBOX_REGISTER_COUNT];
2138 LIST_HEAD(new_fcports);
2140 /* If FL port exists, then SNS is present */
2141 if (IS_QLA24XX(ha) || IS_QLA25XX(ha))
2142 loop_id = NPH_F_PORT;
2144 loop_id = SNS_FL_PORT;
2145 rval = qla2x00_get_port_name(ha, loop_id, NULL, 0);
2146 if (rval != QLA_SUCCESS) {
2147 DEBUG2(printk("scsi(%ld): MBC_GET_PORT_NAME Failed, No FL "
2148 "Port\n", ha->host_no));
2150 ha->device_flags &= ~SWITCH_FOUND;
2151 return (QLA_SUCCESS);
2154 /* Mark devices that need re-synchronization. */
2155 rval2 = qla2x00_device_resync(ha);
2156 if (rval2 == QLA_RSCNS_HANDLED) {
2157 /* No point doing the scan, just continue. */
2158 return (QLA_SUCCESS);
2162 if (ql2xfdmienable &&
2163 test_and_clear_bit(REGISTER_FDMI_NEEDED, &ha->dpc_flags))
2164 qla2x00_fdmi_register(ha);
2166 /* Ensure we are logged into the SNS. */
2167 if (IS_QLA24XX(ha) || IS_QLA25XX(ha))
2170 loop_id = SIMPLE_NAME_SERVER;
2171 ha->isp_ops.fabric_login(ha, loop_id, 0xff, 0xff,
2172 0xfc, mb, BIT_1 | BIT_0);
2173 if (mb[0] != MBS_COMMAND_COMPLETE) {
2174 DEBUG2(qla_printk(KERN_INFO, ha,
2175 "Failed SNS login: loop_id=%x mb[0]=%x mb[1]=%x "
2176 "mb[2]=%x mb[6]=%x mb[7]=%x\n", loop_id,
2177 mb[0], mb[1], mb[2], mb[6], mb[7]));
2178 return (QLA_SUCCESS);
2181 if (test_and_clear_bit(REGISTER_FC4_NEEDED, &ha->dpc_flags)) {
2182 if (qla2x00_rft_id(ha)) {
2184 DEBUG2(printk("scsi(%ld): Register FC-4 "
2185 "TYPE failed.\n", ha->host_no));
2187 if (qla2x00_rff_id(ha)) {
2189 DEBUG2(printk("scsi(%ld): Register FC-4 "
2190 "Features failed.\n", ha->host_no));
2192 if (qla2x00_rnn_id(ha)) {
2194 DEBUG2(printk("scsi(%ld): Register Node Name "
2195 "failed.\n", ha->host_no));
2196 } else if (qla2x00_rsnn_nn(ha)) {
2198 DEBUG2(printk("scsi(%ld): Register Symbolic "
2199 "Node Name failed.\n", ha->host_no));
2203 rval = qla2x00_find_all_fabric_devs(ha, &new_fcports);
2204 if (rval != QLA_SUCCESS)
2208 * Logout all previous fabric devices marked lost, except
2211 list_for_each_entry(fcport, &ha->fcports, list) {
2212 if (test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags))
2215 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0)
2218 if (atomic_read(&fcport->state) == FCS_DEVICE_LOST) {
2219 qla2x00_mark_device_lost(ha, fcport,
2220 ql2xplogiabsentdevice);
2221 if (fcport->loop_id != FC_NO_LOOP_ID &&
2222 (fcport->flags & FCF_TAPE_PRESENT) == 0 &&
2223 fcport->port_type != FCT_INITIATOR &&
2224 fcport->port_type != FCT_BROADCAST) {
2226 ha->isp_ops.fabric_logout(ha,
2228 fcport->d_id.b.domain,
2229 fcport->d_id.b.area,
2230 fcport->d_id.b.al_pa);
2231 fcport->loop_id = FC_NO_LOOP_ID;
2236 /* Starting free loop ID. */
2237 next_loopid = ha->min_external_loopid;
2240 * Scan through our port list and login entries that need to be
2243 list_for_each_entry(fcport, &ha->fcports, list) {
2244 if (atomic_read(&ha->loop_down_timer) ||
2245 test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags))
2248 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0 ||
2249 (fcport->flags & FCF_LOGIN_NEEDED) == 0)
2252 if (fcport->loop_id == FC_NO_LOOP_ID) {
2253 fcport->loop_id = next_loopid;
2254 rval = qla2x00_find_new_loop_id(ha, fcport);
2255 if (rval != QLA_SUCCESS) {
2256 /* Ran out of IDs to use */
2260 /* Login and update database */
2261 qla2x00_fabric_dev_login(ha, fcport, &next_loopid);
2264 /* Exit if out of loop IDs. */
2265 if (rval != QLA_SUCCESS) {
2270 * Login and add the new devices to our port list.
2272 list_for_each_entry_safe(fcport, fcptemp, &new_fcports, list) {
2273 if (atomic_read(&ha->loop_down_timer) ||
2274 test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags))
2277 /* Find a new loop ID to use. */
2278 fcport->loop_id = next_loopid;
2279 rval = qla2x00_find_new_loop_id(ha, fcport);
2280 if (rval != QLA_SUCCESS) {
2281 /* Ran out of IDs to use */
2285 /* Remove device from the new list and add it to DB */
2286 list_del(&fcport->list);
2287 list_add_tail(&fcport->list, &ha->fcports);
2289 /* Login and update database */
2290 qla2x00_fabric_dev_login(ha, fcport, &next_loopid);
2294 /* Free all new device structures not processed. */
2295 list_for_each_entry_safe(fcport, fcptemp, &new_fcports, list) {
2296 list_del(&fcport->list);
2301 DEBUG2(printk("scsi(%ld): Configure fabric error exit: "
2302 "rval=%d\n", ha->host_no, rval));
2310 * qla2x00_find_all_fabric_devs
2313 * ha = adapter block pointer.
2314 * dev = database device entry pointer.
2323 qla2x00_find_all_fabric_devs(scsi_qla_host_t *ha, struct list_head *new_fcports)
2327 fc_port_t *fcport, *new_fcport, *fcptemp;
2332 int first_dev, last_dev;
2333 port_id_t wrap, nxt_d_id;
2337 /* Try GID_PT to get device list, else GAN. */
2338 swl = kmalloc(sizeof(sw_info_t) * MAX_FIBRE_DEVICES, GFP_ATOMIC);
2341 DEBUG2(printk("scsi(%ld): GID_PT allocations failed, fallback "
2342 "on GA_NXT\n", ha->host_no));
2344 memset(swl, 0, sizeof(sw_info_t) * MAX_FIBRE_DEVICES);
2345 if (qla2x00_gid_pt(ha, swl) != QLA_SUCCESS) {
2348 } else if (qla2x00_gpn_id(ha, swl) != QLA_SUCCESS) {
2351 } else if (qla2x00_gnn_id(ha, swl) != QLA_SUCCESS) {
2358 /* Allocate temporary fcport for any new fcports discovered. */
2359 new_fcport = qla2x00_alloc_fcport(ha, GFP_KERNEL);
2360 if (new_fcport == NULL) {
2362 return (QLA_MEMORY_ALLOC_FAILED);
2364 new_fcport->flags |= (FCF_FABRIC_DEVICE | FCF_LOGIN_NEEDED);
2366 /* Set start port ID scan at adapter ID. */
2370 /* Starting free loop ID. */
2371 loop_id = ha->min_external_loopid;
2372 for (; loop_id <= ha->last_loop_id; loop_id++) {
2373 if (qla2x00_is_reserved_id(ha, loop_id))
2376 if (atomic_read(&ha->loop_down_timer) || LOOP_TRANSITION(ha))
2381 wrap.b24 = new_fcport->d_id.b24;
2383 new_fcport->d_id.b24 = swl[swl_idx].d_id.b24;
2384 memcpy(new_fcport->node_name,
2385 swl[swl_idx].node_name, WWN_SIZE);
2386 memcpy(new_fcport->port_name,
2387 swl[swl_idx].port_name, WWN_SIZE);
2389 if (swl[swl_idx].d_id.b.rsvd_1 != 0) {
2395 /* Send GA_NXT to the switch */
2396 rval = qla2x00_ga_nxt(ha, new_fcport);
2397 if (rval != QLA_SUCCESS) {
2398 qla_printk(KERN_WARNING, ha,
2399 "SNS scan failed -- assuming zero-entry "
2401 list_for_each_entry_safe(fcport, fcptemp,
2402 new_fcports, list) {
2403 list_del(&fcport->list);
2411 /* If wrap on switch device list, exit. */
2413 wrap.b24 = new_fcport->d_id.b24;
2415 } else if (new_fcport->d_id.b24 == wrap.b24) {
2416 DEBUG2(printk("scsi(%ld): device wrap (%02x%02x%02x)\n",
2417 ha->host_no, new_fcport->d_id.b.domain,
2418 new_fcport->d_id.b.area, new_fcport->d_id.b.al_pa));
2422 /* Bypass if host adapter. */
2423 if (new_fcport->d_id.b24 == ha->d_id.b24)
2426 /* Bypass if same domain and area of adapter. */
2427 if (((new_fcport->d_id.b24 & 0xffff00) ==
2428 (ha->d_id.b24 & 0xffff00)) && ha->current_topology ==
2432 /* Bypass reserved domain fields. */
2433 if ((new_fcport->d_id.b.domain & 0xf0) == 0xf0)
2436 /* Locate matching device in database. */
2438 list_for_each_entry(fcport, &ha->fcports, list) {
2439 if (memcmp(new_fcport->port_name, fcport->port_name,
2446 * If address the same and state FCS_ONLINE, nothing
2449 if (fcport->d_id.b24 == new_fcport->d_id.b24 &&
2450 atomic_read(&fcport->state) == FCS_ONLINE) {
2455 * If device was not a fabric device before.
2457 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0) {
2458 fcport->d_id.b24 = new_fcport->d_id.b24;
2459 fcport->loop_id = FC_NO_LOOP_ID;
2460 fcport->flags |= (FCF_FABRIC_DEVICE |
2462 fcport->flags &= ~FCF_PERSISTENT_BOUND;
2467 * Port ID changed or device was marked to be updated;
2468 * Log it out if still logged in and mark it for
2471 fcport->d_id.b24 = new_fcport->d_id.b24;
2472 fcport->flags |= FCF_LOGIN_NEEDED;
2473 if (fcport->loop_id != FC_NO_LOOP_ID &&
2474 (fcport->flags & FCF_TAPE_PRESENT) == 0 &&
2475 fcport->port_type != FCT_INITIATOR &&
2476 fcport->port_type != FCT_BROADCAST) {
2477 ha->isp_ops.fabric_logout(ha, fcport->loop_id,
2478 fcport->d_id.b.domain, fcport->d_id.b.area,
2479 fcport->d_id.b.al_pa);
2480 fcport->loop_id = FC_NO_LOOP_ID;
2489 /* If device was not in our fcports list, then add it. */
2490 list_add_tail(&new_fcport->list, new_fcports);
2492 /* Allocate a new replacement fcport. */
2493 nxt_d_id.b24 = new_fcport->d_id.b24;
2494 new_fcport = qla2x00_alloc_fcport(ha, GFP_KERNEL);
2495 if (new_fcport == NULL) {
2497 return (QLA_MEMORY_ALLOC_FAILED);
2499 new_fcport->flags |= (FCF_FABRIC_DEVICE | FCF_LOGIN_NEEDED);
2500 new_fcport->d_id.b24 = nxt_d_id.b24;
2506 if (!list_empty(new_fcports))
2507 ha->device_flags |= DFLG_FABRIC_DEVICES;
2513 * qla2x00_find_new_loop_id
2514 * Scan through our port list and find a new usable loop ID.
2517 * ha: adapter state pointer.
2518 * dev: port structure pointer.
2521 * qla2x00 local function return status code.
2527 qla2x00_find_new_loop_id(scsi_qla_host_t *ha, fc_port_t *dev)
2532 uint16_t first_loop_id;
2536 /* Save starting loop ID. */
2537 first_loop_id = dev->loop_id;
2540 /* Skip loop ID if already used by adapter. */
2541 if (dev->loop_id == ha->loop_id) {
2545 /* Skip reserved loop IDs. */
2546 while (qla2x00_is_reserved_id(ha, dev->loop_id)) {
2550 /* Reset loop ID if passed the end. */
2551 if (dev->loop_id > ha->last_loop_id) {
2552 /* first loop ID. */
2553 dev->loop_id = ha->min_external_loopid;
2556 /* Check for loop ID being already in use. */
2559 list_for_each_entry(fcport, &ha->fcports, list) {
2560 if (fcport->loop_id == dev->loop_id && fcport != dev) {
2561 /* ID possibly in use */
2567 /* If not in use then it is free to use. */
2572 /* ID in use. Try next value. */
2575 /* If wrap around. No free ID to use. */
2576 if (dev->loop_id == first_loop_id) {
2577 dev->loop_id = FC_NO_LOOP_ID;
2578 rval = QLA_FUNCTION_FAILED;
2587 * qla2x00_device_resync
2588 * Marks devices in the database that needs resynchronization.
2591 * ha = adapter block pointer.
2597 qla2x00_device_resync(scsi_qla_host_t *ha)
2603 uint32_t rscn_entry;
2604 uint8_t rscn_out_iter;
2608 rval = QLA_RSCNS_HANDLED;
2610 while (ha->rscn_out_ptr != ha->rscn_in_ptr ||
2611 ha->flags.rscn_queue_overflow) {
2613 rscn_entry = ha->rscn_queue[ha->rscn_out_ptr];
2614 format = MSB(MSW(rscn_entry));
2615 d_id.b.domain = LSB(MSW(rscn_entry));
2616 d_id.b.area = MSB(LSW(rscn_entry));
2617 d_id.b.al_pa = LSB(LSW(rscn_entry));
2619 DEBUG(printk("scsi(%ld): RSCN queue entry[%d] = "
2620 "[%02x/%02x%02x%02x].\n",
2621 ha->host_no, ha->rscn_out_ptr, format, d_id.b.domain,
2622 d_id.b.area, d_id.b.al_pa));
2625 if (ha->rscn_out_ptr == MAX_RSCN_COUNT)
2626 ha->rscn_out_ptr = 0;
2628 /* Skip duplicate entries. */
2629 for (rscn_out_iter = ha->rscn_out_ptr;
2630 !ha->flags.rscn_queue_overflow &&
2631 rscn_out_iter != ha->rscn_in_ptr;
2632 rscn_out_iter = (rscn_out_iter ==
2633 (MAX_RSCN_COUNT - 1)) ? 0: rscn_out_iter + 1) {
2635 if (rscn_entry != ha->rscn_queue[rscn_out_iter])
2638 DEBUG(printk("scsi(%ld): Skipping duplicate RSCN queue "
2639 "entry found at [%d].\n", ha->host_no,
2642 ha->rscn_out_ptr = rscn_out_iter;
2645 /* Queue overflow, set switch default case. */
2646 if (ha->flags.rscn_queue_overflow) {
2647 DEBUG(printk("scsi(%ld): device_resync: rscn "
2648 "overflow.\n", ha->host_no));
2651 ha->flags.rscn_queue_overflow = 0;
2656 if (ql2xprocessrscn &&
2657 !IS_QLA2100(ha) && !IS_QLA2200(ha) &&
2658 !IS_QLA6312(ha) && !IS_QLA6322(ha) &&
2659 !IS_QLA24XX(ha) && !IS_QLA25XX(ha) &&
2660 ha->flags.init_done) {
2661 /* Handle port RSCN via asyncronous IOCBs */
2662 rval2 = qla2x00_handle_port_rscn(ha, rscn_entry,
2664 if (rval2 == QLA_SUCCESS)
2678 ha->rscn_out_ptr = ha->rscn_in_ptr;
2684 /* Abort any outstanding IO descriptors. */
2685 if (!IS_QLA2100(ha) && !IS_QLA2200(ha))
2686 qla2x00_cancel_io_descriptors(ha);
2688 list_for_each_entry(fcport, &ha->fcports, list) {
2689 if ((fcport->flags & FCF_FABRIC_DEVICE) == 0 ||
2690 (fcport->d_id.b24 & mask) != d_id.b24 ||
2691 fcport->port_type == FCT_BROADCAST)
2694 if (atomic_read(&fcport->state) == FCS_ONLINE) {
2696 fcport->port_type != FCT_INITIATOR) {
2697 qla2x00_mark_device_lost(ha, fcport, 0);
2700 fcport->flags &= ~FCF_FARP_DONE;
2707 * qla2x00_fabric_dev_login
2708 * Login fabric target device and update FC port database.
2711 * ha: adapter state pointer.
2712 * fcport: port structure list pointer.
2713 * next_loopid: contains value of a new loop ID that can be used
2714 * by the next login attempt.
2717 * qla2x00 local function return status code.
2723 qla2x00_fabric_dev_login(scsi_qla_host_t *ha, fc_port_t *fcport,
2724 uint16_t *next_loopid)
2733 rval = qla2x00_fabric_login(ha, fcport, next_loopid);
2734 if (rval == QLA_SUCCESS) {
2735 /* Send an ADISC to tape devices.*/
2737 if (fcport->flags & FCF_TAPE_PRESENT)
2739 rval = qla2x00_get_port_database(ha, fcport, opts);
2740 if (rval != QLA_SUCCESS) {
2741 ha->isp_ops.fabric_logout(ha, fcport->loop_id,
2742 fcport->d_id.b.domain, fcport->d_id.b.area,
2743 fcport->d_id.b.al_pa);
2744 qla2x00_mark_device_lost(ha, fcport, 1);
2747 qla2x00_update_fcport(ha, fcport);
2755 * qla2x00_fabric_login
2756 * Issue fabric login command.
2759 * ha = adapter block pointer.
2760 * device = pointer to FC device type structure.
2763 * 0 - Login successfully
2765 * 2 - Initiator device
2769 qla2x00_fabric_login(scsi_qla_host_t *ha, fc_port_t *fcport,
2770 uint16_t *next_loopid)
2774 uint16_t tmp_loopid;
2775 uint16_t mb[MAILBOX_REGISTER_COUNT];
2781 DEBUG(printk("scsi(%ld): Trying Fabric Login w/loop id 0x%04x "
2782 "for port %02x%02x%02x.\n",
2783 ha->host_no, fcport->loop_id, fcport->d_id.b.domain,
2784 fcport->d_id.b.area, fcport->d_id.b.al_pa));
2786 /* Login fcport on switch. */
2787 ha->isp_ops.fabric_login(ha, fcport->loop_id,
2788 fcport->d_id.b.domain, fcport->d_id.b.area,
2789 fcport->d_id.b.al_pa, mb, BIT_0);
2790 if (mb[0] == MBS_PORT_ID_USED) {
2792 * Device has another loop ID. The firmware team
2793 * recommends the driver perform an implicit login with
2794 * the specified ID again. The ID we just used is save
2795 * here so we return with an ID that can be tried by
2799 tmp_loopid = fcport->loop_id;
2800 fcport->loop_id = mb[1];
2802 DEBUG(printk("Fabric Login: port in use - next "
2803 "loop id=0x%04x, port Id=%02x%02x%02x.\n",
2804 fcport->loop_id, fcport->d_id.b.domain,
2805 fcport->d_id.b.area, fcport->d_id.b.al_pa));
2807 } else if (mb[0] == MBS_COMMAND_COMPLETE) {
2812 /* A retry occurred before. */
2813 *next_loopid = tmp_loopid;
2816 * No retry occurred before. Just increment the
2817 * ID value for next login.
2819 *next_loopid = (fcport->loop_id + 1);
2822 if (mb[1] & BIT_0) {
2823 fcport->port_type = FCT_INITIATOR;
2825 fcport->port_type = FCT_TARGET;
2826 if (mb[1] & BIT_1) {
2827 fcport->flags |= FCF_TAPE_PRESENT;
2832 fcport->supported_classes |= FC_COS_CLASS2;
2834 fcport->supported_classes |= FC_COS_CLASS3;
2838 } else if (mb[0] == MBS_LOOP_ID_USED) {
2840 * Loop ID already used, try next loop ID.
2843 rval = qla2x00_find_new_loop_id(ha, fcport);
2844 if (rval != QLA_SUCCESS) {
2845 /* Ran out of loop IDs to use */
2848 } else if (mb[0] == MBS_COMMAND_ERROR) {
2850 * Firmware possibly timed out during login. If NO
2851 * retries are left to do then the device is declared
2854 *next_loopid = fcport->loop_id;
2855 ha->isp_ops.fabric_logout(ha, fcport->loop_id,
2856 fcport->d_id.b.domain, fcport->d_id.b.area,
2857 fcport->d_id.b.al_pa);
2858 qla2x00_mark_device_lost(ha, fcport, 1);
2864 * unrecoverable / not handled error
2866 DEBUG2(printk("%s(%ld): failed=%x port_id=%02x%02x%02x "
2867 "loop_id=%x jiffies=%lx.\n",
2868 __func__, ha->host_no, mb[0],
2869 fcport->d_id.b.domain, fcport->d_id.b.area,
2870 fcport->d_id.b.al_pa, fcport->loop_id, jiffies));
2872 *next_loopid = fcport->loop_id;
2873 ha->isp_ops.fabric_logout(ha, fcport->loop_id,
2874 fcport->d_id.b.domain, fcport->d_id.b.area,
2875 fcport->d_id.b.al_pa);
2876 fcport->loop_id = FC_NO_LOOP_ID;
2877 fcport->login_retry = 0;
2888 * qla2x00_local_device_login
2889 * Issue local device login command.
2892 * ha = adapter block pointer.
2893 * loop_id = loop id of device to login to.
2895 * Returns (Where's the #define!!!!):
2896 * 0 - Login successfully
2901 qla2x00_local_device_login(scsi_qla_host_t *ha, uint16_t loop_id)
2904 uint16_t mb[MAILBOX_REGISTER_COUNT];
2906 memset(mb, 0, sizeof(mb));
2907 rval = qla2x00_login_local_device(ha, loop_id, mb, BIT_0);
2908 if (rval == QLA_SUCCESS) {
2909 /* Interrogate mailbox registers for any errors */
2910 if (mb[0] == MBS_COMMAND_ERROR)
2912 else if (mb[0] == MBS_COMMAND_PARAMETER_ERROR)
2913 /* device not in PCB table */
2921 * qla2x00_loop_resync
2922 * Resync with fibre channel devices.
2925 * ha = adapter block pointer.
2931 qla2x00_loop_resync(scsi_qla_host_t *ha)
2938 atomic_set(&ha->loop_state, LOOP_UPDATE);
2939 clear_bit(ISP_ABORT_RETRY, &ha->dpc_flags);
2940 if (ha->flags.online) {
2941 if (!(rval = qla2x00_fw_ready(ha))) {
2942 /* Wait at most MAX_TARGET RSCNs for a stable link. */
2945 atomic_set(&ha->loop_state, LOOP_UPDATE);
2947 /* Issue a marker after FW becomes ready. */
2948 qla2x00_marker(ha, 0, 0, MK_SYNC_ALL);
2949 ha->marker_needed = 0;
2951 /* Remap devices on Loop. */
2952 clear_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags);
2954 qla2x00_configure_loop(ha);
2956 } while (!atomic_read(&ha->loop_down_timer) &&
2957 !(test_bit(ISP_ABORT_NEEDED, &ha->dpc_flags)) &&
2959 (test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags)));
2963 if (test_bit(ISP_ABORT_NEEDED, &ha->dpc_flags)) {
2964 return (QLA_FUNCTION_FAILED);
2968 DEBUG2_3(printk("%s(): **** FAILED ****\n", __func__));
2975 qla2x00_rescan_fcports(scsi_qla_host_t *ha)
2981 list_for_each_entry(fcport, &ha->fcports, list) {
2982 if ((fcport->flags & FCF_RESCAN_NEEDED) == 0)
2985 qla2x00_update_fcport(ha, fcport);
2986 fcport->flags &= ~FCF_RESCAN_NEEDED;
2990 qla2x00_probe_for_all_luns(ha);
2995 * Resets ISP and aborts all outstanding commands.
2998 * ha = adapter block pointer.
3004 qla2x00_abort_isp(scsi_qla_host_t *ha)
3006 unsigned long flags = 0;
3011 if (ha->flags.online) {
3012 ha->flags.online = 0;
3013 clear_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
3015 qla_printk(KERN_INFO, ha,
3016 "Performing ISP error recovery - ha= %p.\n", ha);
3017 ha->isp_ops.reset_chip(ha);
3019 atomic_set(&ha->loop_down_timer, LOOP_DOWN_TIME);
3020 if (atomic_read(&ha->loop_state) != LOOP_DOWN) {
3021 atomic_set(&ha->loop_state, LOOP_DOWN);
3022 qla2x00_mark_all_devices_lost(ha);
3024 if (!atomic_read(&ha->loop_down_timer))
3025 atomic_set(&ha->loop_down_timer,
3029 spin_lock_irqsave(&ha->hardware_lock, flags);
3030 /* Requeue all commands in outstanding command list. */
3031 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
3032 sp = ha->outstanding_cmds[cnt];
3034 ha->outstanding_cmds[cnt] = NULL;
3036 sp->cmd->result = DID_RESET << 16;
3037 sp->cmd->host_scribble = (unsigned char *)NULL;
3038 qla2x00_sp_compl(ha, sp);
3041 spin_unlock_irqrestore(&ha->hardware_lock, flags);
3043 ha->isp_ops.nvram_config(ha);
3045 if (!qla2x00_restart_isp(ha)) {
3046 clear_bit(RESET_MARKER_NEEDED, &ha->dpc_flags);
3048 if (!atomic_read(&ha->loop_down_timer)) {
3050 * Issue marker command only when we are going
3051 * to start the I/O .
3053 ha->marker_needed = 1;
3056 ha->flags.online = 1;
3058 ha->isp_ops.enable_intrs(ha);
3060 ha->isp_abort_cnt = 0;
3061 clear_bit(ISP_ABORT_RETRY, &ha->dpc_flags);
3062 } else { /* failed the ISP abort */
3063 ha->flags.online = 1;
3064 if (test_bit(ISP_ABORT_RETRY, &ha->dpc_flags)) {
3065 if (ha->isp_abort_cnt == 0) {
3066 qla_printk(KERN_WARNING, ha,
3067 "ISP error recovery failed - "
3068 "board disabled\n");
3070 * The next call disables the board
3073 ha->isp_ops.reset_adapter(ha);
3074 ha->flags.online = 0;
3075 clear_bit(ISP_ABORT_RETRY,
3078 } else { /* schedule another ISP abort */
3079 ha->isp_abort_cnt--;
3080 DEBUG(printk("qla%ld: ISP abort - "
3081 "retry remaining %d\n",
3082 ha->host_no, ha->isp_abort_cnt);)
3086 ha->isp_abort_cnt = MAX_RETRIES_OF_ISP_ABORT;
3087 DEBUG(printk("qla2x00(%ld): ISP error recovery "
3088 "- retrying (%d) more times\n",
3089 ha->host_no, ha->isp_abort_cnt);)
3090 set_bit(ISP_ABORT_RETRY, &ha->dpc_flags);
3098 qla_printk(KERN_INFO, ha,
3099 "qla2x00_abort_isp: **** FAILED ****\n");
3101 DEBUG(printk(KERN_INFO
3102 "qla2x00_abort_isp(%ld): exiting.\n",
3110 * qla2x00_restart_isp
3111 * restarts the ISP after a reset
3114 * ha = adapter block pointer.
3120 qla2x00_restart_isp(scsi_qla_host_t *ha)
3123 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
3124 unsigned long flags = 0;
3127 /* If firmware needs to be loaded */
3128 if (qla2x00_isp_firmware(ha)) {
3129 ha->flags.online = 0;
3130 if (!(status = ha->isp_ops.chip_diag(ha))) {
3131 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
3132 status = qla2x00_setup_chip(ha);
3136 spin_lock_irqsave(&ha->hardware_lock, flags);
3138 if (!IS_QLA24XX(ha) && !IS_QLA25XX(ha)) {
3140 * Disable SRAM, Instruction RAM and GP RAM
3143 WRT_REG_WORD(®->hccr,
3144 (HCCR_ENABLE_PARITY + 0x0));
3145 RD_REG_WORD(®->hccr);
3148 spin_unlock_irqrestore(&ha->hardware_lock, flags);
3150 status = qla2x00_setup_chip(ha);
3152 spin_lock_irqsave(&ha->hardware_lock, flags);
3154 if (!IS_QLA24XX(ha) && !IS_QLA25XX(ha)) {
3155 /* Enable proper parity */
3158 WRT_REG_WORD(®->hccr,
3159 (HCCR_ENABLE_PARITY + 0x1));
3162 * SRAM, Instruction RAM and GP RAM
3165 WRT_REG_WORD(®->hccr,
3166 (HCCR_ENABLE_PARITY + 0x7));
3167 RD_REG_WORD(®->hccr);
3170 spin_unlock_irqrestore(&ha->hardware_lock, flags);
3175 if (!status && !(status = qla2x00_init_rings(ha))) {
3176 clear_bit(RESET_MARKER_NEEDED, &ha->dpc_flags);
3177 if (!(status = qla2x00_fw_ready(ha))) {
3178 DEBUG(printk("%s(): Start configure loop, "
3179 "status = %d\n", __func__, status);)
3181 /* Issue a marker after FW becomes ready. */
3182 qla2x00_marker(ha, 0, 0, MK_SYNC_ALL);
3184 ha->flags.online = 1;
3185 /* Wait at most MAX_TARGET RSCNs for a stable link. */
3188 clear_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags);
3189 qla2x00_configure_loop(ha);
3191 } while (!atomic_read(&ha->loop_down_timer) &&
3192 !(test_bit(ISP_ABORT_NEEDED, &ha->dpc_flags)) &&
3194 (test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags)));
3197 /* if no cable then assume it's good */
3198 if ((ha->device_flags & DFLG_NO_CABLE))
3201 DEBUG(printk("%s(): Configure loop done, status = 0x%x\n",
3209 * qla2x00_reset_adapter
3213 * ha = adapter block pointer.
3216 qla2x00_reset_adapter(scsi_qla_host_t *ha)
3218 unsigned long flags = 0;
3219 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
3221 ha->flags.online = 0;
3222 ha->isp_ops.disable_intrs(ha);
3224 spin_lock_irqsave(&ha->hardware_lock, flags);
3225 WRT_REG_WORD(®->hccr, HCCR_RESET_RISC);
3226 RD_REG_WORD(®->hccr); /* PCI Posting. */
3227 WRT_REG_WORD(®->hccr, HCCR_RELEASE_RISC);
3228 RD_REG_WORD(®->hccr); /* PCI Posting. */
3229 spin_unlock_irqrestore(&ha->hardware_lock, flags);
3233 qla24xx_reset_adapter(scsi_qla_host_t *ha)
3235 unsigned long flags = 0;
3236 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
3238 ha->flags.online = 0;
3239 ha->isp_ops.disable_intrs(ha);
3241 spin_lock_irqsave(&ha->hardware_lock, flags);
3242 WRT_REG_DWORD(®->hccr, HCCRX_SET_RISC_RESET);
3243 RD_REG_DWORD(®->hccr);
3244 WRT_REG_DWORD(®->hccr, HCCRX_REL_RISC_PAUSE);
3245 RD_REG_DWORD(®->hccr);
3246 spin_unlock_irqrestore(&ha->hardware_lock, flags);
3250 qla24xx_nvram_config(scsi_qla_host_t *ha)
3253 struct init_cb_24xx *icb;
3254 struct nvram_24xx *nv;
3256 uint8_t *dptr1, *dptr2;
3261 icb = (struct init_cb_24xx *)ha->init_cb;
3262 nv = (struct nvram_24xx *)ha->request_ring;
3264 /* Determine NVRAM starting address. */
3265 ha->nvram_size = sizeof(struct nvram_24xx);
3266 ha->nvram_base = FA_NVRAM_FUNC0_ADDR;
3267 if (PCI_FUNC(ha->pdev->devfn))
3268 ha->nvram_base = FA_NVRAM_FUNC1_ADDR;
3270 /* Get NVRAM data and calculate checksum. */
3271 dptr = (uint32_t *)nv;
3272 ha->isp_ops.read_nvram(ha, (uint8_t *)dptr, ha->nvram_base,
3274 for (cnt = 0, chksum = 0; cnt < ha->nvram_size >> 2; cnt++)
3275 chksum += le32_to_cpu(*dptr++);
3277 DEBUG5(printk("scsi(%ld): Contents of NVRAM\n", ha->host_no));
3278 DEBUG5(qla2x00_dump_buffer((uint8_t *)ha->request_ring,
3281 /* Bad NVRAM data, set defaults parameters. */
3282 if (chksum || nv->id[0] != 'I' || nv->id[1] != 'S' || nv->id[2] != 'P'
3283 || nv->id[3] != ' ' ||
3284 nv->nvram_version < __constant_cpu_to_le16(ICB_VERSION)) {
3285 /* Reset NVRAM data. */
3286 qla_printk(KERN_WARNING, ha, "Inconsistent NVRAM detected: "
3287 "checksum=0x%x id=%c version=0x%x.\n", chksum, nv->id[0],
3288 le16_to_cpu(nv->nvram_version));
3289 qla_printk(KERN_WARNING, ha, "Falling back to functioning (yet "
3290 "invalid -- WWPN) defaults.\n");
3293 * Set default initialization control block.
3295 memset(nv, 0, ha->nvram_size);
3296 nv->nvram_version = __constant_cpu_to_le16(ICB_VERSION);
3297 nv->version = __constant_cpu_to_le16(ICB_VERSION);
3298 nv->frame_payload_size = __constant_cpu_to_le16(2048);
3299 nv->execution_throttle = __constant_cpu_to_le16(0xFFFF);
3300 nv->exchange_count = __constant_cpu_to_le16(0);
3301 nv->hard_address = __constant_cpu_to_le16(124);
3302 nv->port_name[0] = 0x21;
3303 nv->port_name[1] = 0x00 + PCI_FUNC(ha->pdev->devfn);
3304 nv->port_name[2] = 0x00;
3305 nv->port_name[3] = 0xe0;
3306 nv->port_name[4] = 0x8b;
3307 nv->port_name[5] = 0x1c;
3308 nv->port_name[6] = 0x55;
3309 nv->port_name[7] = 0x86;
3310 nv->node_name[0] = 0x20;
3311 nv->node_name[1] = 0x00;
3312 nv->node_name[2] = 0x00;
3313 nv->node_name[3] = 0xe0;
3314 nv->node_name[4] = 0x8b;
3315 nv->node_name[5] = 0x1c;
3316 nv->node_name[6] = 0x55;
3317 nv->node_name[7] = 0x86;
3318 nv->login_retry_count = __constant_cpu_to_le16(8);
3319 nv->link_down_timeout = __constant_cpu_to_le16(200);
3320 nv->interrupt_delay_timer = __constant_cpu_to_le16(0);
3321 nv->login_timeout = __constant_cpu_to_le16(0);
3322 nv->firmware_options_1 =
3323 __constant_cpu_to_le32(BIT_14|BIT_13|BIT_2|BIT_1);
3324 nv->firmware_options_2 = __constant_cpu_to_le32(2 << 4);
3325 nv->firmware_options_2 |= __constant_cpu_to_le32(BIT_12);
3326 nv->firmware_options_3 = __constant_cpu_to_le32(2 << 13);
3327 nv->host_p = __constant_cpu_to_le32(BIT_11|BIT_10);
3328 nv->efi_parameters = __constant_cpu_to_le32(0);
3329 nv->reset_delay = 5;
3330 nv->max_luns_per_target = __constant_cpu_to_le16(128);
3331 nv->port_down_retry_count = __constant_cpu_to_le16(30);
3332 nv->link_down_timeout = __constant_cpu_to_le16(30);
3337 /* Reset Initialization control block */
3338 memset(icb, 0, sizeof(struct init_cb_24xx));
3340 /* Copy 1st segment. */
3341 dptr1 = (uint8_t *)icb;
3342 dptr2 = (uint8_t *)&nv->version;
3343 cnt = (uint8_t *)&icb->response_q_inpointer - (uint8_t *)&icb->version;
3345 *dptr1++ = *dptr2++;
3347 icb->login_retry_count = nv->login_retry_count;
3348 icb->link_down_timeout = nv->link_down_timeout;
3350 /* Copy 2nd segment. */
3351 dptr1 = (uint8_t *)&icb->interrupt_delay_timer;
3352 dptr2 = (uint8_t *)&nv->interrupt_delay_timer;
3353 cnt = (uint8_t *)&icb->reserved_3 -
3354 (uint8_t *)&icb->interrupt_delay_timer;
3356 *dptr1++ = *dptr2++;
3359 * Setup driver NVRAM options.
3361 if (memcmp(nv->model_name, BINZERO, sizeof(nv->model_name)) != 0) {
3365 strncpy(ha->model_number, nv->model_name,
3366 sizeof(nv->model_name));
3367 st = en = ha->model_number;
3368 en += sizeof(nv->model_name) - 1;
3370 if (*en != 0x20 && *en != 0x00)
3375 index = (ha->pdev->subsystem_device & 0xff);
3376 if (index < QLA_MODEL_NAMES)
3377 ha->model_desc = qla2x00_model_desc[index];
3379 strcpy(ha->model_number, "QLA2462");
3381 /* Prepare nodename */
3382 if ((icb->firmware_options_1 & BIT_14) == 0) {
3384 * Firmware will apply the following mask if the nodename was
3387 memcpy(icb->node_name, icb->port_name, WWN_SIZE);
3388 icb->node_name[0] &= 0xF0;
3391 /* Set host adapter parameters. */
3392 ha->flags.disable_risc_code_load = 0;
3393 ha->flags.enable_lip_reset = 1;
3394 ha->flags.enable_lip_full_login = 1;
3395 ha->flags.enable_target_reset = 1;
3396 ha->flags.enable_led_scheme = 0;
3398 ha->operating_mode =
3399 (icb->firmware_options_2 & (BIT_6 | BIT_5 | BIT_4)) >> 4;
3401 memcpy(ha->fw_seriallink_options24, nv->seriallink_options,
3402 sizeof(ha->fw_seriallink_options24));
3404 /* save HBA serial number */
3405 ha->serial0 = icb->port_name[5];
3406 ha->serial1 = icb->port_name[6];
3407 ha->serial2 = icb->port_name[7];
3408 ha->node_name = icb->node_name;
3409 ha->port_name = icb->port_name;
3411 icb->execution_throttle = __constant_cpu_to_le16(0xFFFF);
3413 ha->retry_count = le16_to_cpu(nv->login_retry_count);
3415 /* Set minimum login_timeout to 4 seconds. */
3416 if (le16_to_cpu(nv->login_timeout) < ql2xlogintimeout)
3417 nv->login_timeout = cpu_to_le16(ql2xlogintimeout);
3418 if (le16_to_cpu(nv->login_timeout) < 4)
3419 nv->login_timeout = __constant_cpu_to_le16(4);
3420 ha->login_timeout = le16_to_cpu(nv->login_timeout);
3421 icb->login_timeout = cpu_to_le16(nv->login_timeout);
3423 /* Set minimum RATOV to 200 tenths of a second. */
3426 ha->loop_reset_delay = nv->reset_delay;
3428 /* Link Down Timeout = 0:
3430 * When Port Down timer expires we will start returning
3431 * I/O's to OS with "DID_NO_CONNECT".
3433 * Link Down Timeout != 0:
3435 * The driver waits for the link to come up after link down
3436 * before returning I/Os to OS with "DID_NO_CONNECT".
3438 if (le16_to_cpu(nv->link_down_timeout) == 0) {
3439 ha->loop_down_abort_time =
3440 (LOOP_DOWN_TIME - LOOP_DOWN_TIMEOUT);
3442 ha->link_down_timeout = le16_to_cpu(nv->link_down_timeout);
3443 ha->loop_down_abort_time =
3444 (LOOP_DOWN_TIME - ha->link_down_timeout);
3447 /* Need enough time to try and get the port back. */
3448 ha->port_down_retry_count = le16_to_cpu(nv->port_down_retry_count);
3449 if (qlport_down_retry)
3450 ha->port_down_retry_count = qlport_down_retry;
3452 /* Set login_retry_count */
3453 ha->login_retry_count = le16_to_cpu(nv->login_retry_count);
3454 if (ha->port_down_retry_count ==
3455 le16_to_cpu(nv->port_down_retry_count) &&
3456 ha->port_down_retry_count > 3)
3457 ha->login_retry_count = ha->port_down_retry_count;
3458 else if (ha->port_down_retry_count > (int)ha->login_retry_count)
3459 ha->login_retry_count = ha->port_down_retry_count;
3460 if (ql2xloginretrycount)
3461 ha->login_retry_count = ql2xloginretrycount;
3464 if (!ha->flags.init_done) {
3465 ha->zio_mode = le32_to_cpu(icb->firmware_options_2) &
3466 (BIT_3 | BIT_2 | BIT_1 | BIT_0);
3467 ha->zio_timer = le16_to_cpu(icb->interrupt_delay_timer) ?
3468 le16_to_cpu(icb->interrupt_delay_timer): 2;
3470 icb->firmware_options_2 &= __constant_cpu_to_le32(
3471 ~(BIT_3 | BIT_2 | BIT_1 | BIT_0));
3472 ha->flags.process_response_queue = 0;
3473 if (ha->zio_mode != QLA_ZIO_DISABLED) {
3474 DEBUG2(printk("scsi(%ld): ZIO mode %d enabled; timer delay "
3475 "(%d us).\n", ha->host_no, ha->zio_mode,
3476 ha->zio_timer * 100));
3477 qla_printk(KERN_INFO, ha,
3478 "ZIO mode %d enabled; timer delay (%d us).\n",
3479 ha->zio_mode, ha->zio_timer * 100);
3481 icb->firmware_options_2 |= cpu_to_le32(
3482 (uint32_t)ha->zio_mode);
3483 icb->interrupt_delay_timer = cpu_to_le16(ha->zio_timer);
3484 ha->flags.process_response_queue = 1;
3488 DEBUG2_3(printk(KERN_WARNING
3489 "scsi(%ld): NVRAM configuration failed!\n", ha->host_no));
3494 #if defined(CONFIG_SCSI_QLA2XXX_EMBEDDED_FIRMWARE)
3497 qla2x00_load_risc(scsi_qla_host_t *ha, uint32_t *srisc_addr)
3501 uint16_t *risc_code;
3502 uint32_t risc_addr, risc_size;
3504 struct qla_fw_info *fw_iter;
3508 /* Load firmware sequences */
3509 fw_iter = ha->brd_info->fw_info;
3510 *srisc_addr = *ha->brd_info->fw_info->fwstart;
3511 while (fw_iter->addressing != FW_INFO_ADDR_NOMORE) {
3512 risc_code = fw_iter->fwcode;
3513 risc_size = *fw_iter->fwlen;
3514 if (fw_iter->addressing == FW_INFO_ADDR_NORMAL)
3515 risc_addr = *fw_iter->fwstart;
3517 risc_addr = *fw_iter->lfwstart;
3521 while (risc_size > 0 && !rval) {
3522 cnt = (uint16_t)(ha->fw_transfer_size >> 1);
3523 if (cnt > risc_size)
3526 DEBUG7(printk("scsi(%ld): Loading risc segment@ "
3527 "addr %p, number of bytes 0x%x, offset 0x%lx.\n",
3528 ha->host_no, risc_code, cnt, risc_addr));
3530 req_ring = (uint16_t *)ha->request_ring;
3531 for (i = 0; i < cnt; i++)
3532 req_ring[i] = cpu_to_le16(risc_code[i]);
3534 rval = qla2x00_load_ram(ha, ha->request_dma, risc_addr,
3537 DEBUG(printk("scsi(%ld): [ERROR] Failed to "
3538 "load segment %d of firmware\n",
3540 qla_printk(KERN_WARNING, ha,
3541 "[ERROR] Failed to load segment %d of "
3544 qla2x00_dump_regs(ha);
3554 /* Next firmware sequence */
3561 qla24xx_load_risc(scsi_qla_host_t *ha, uint32_t *srisc_addr)
3565 uint32_t *risc_code;
3566 uint32_t risc_addr, risc_size;
3568 struct qla_fw_info *fw_iter;
3572 /* Load firmware sequences */
3573 fw_iter = ha->brd_info->fw_info;
3574 *srisc_addr = *((uint32_t *)fw_iter->lfwstart);
3575 while (fw_iter->addressing != FW_INFO_ADDR_NOMORE) {
3576 risc_code = (uint32_t *)fw_iter->fwcode;
3577 risc_size = *((uint32_t *)fw_iter->fwlen);
3578 risc_addr = *((uint32_t *)fw_iter->lfwstart);
3582 while (risc_size > 0 && !rval) {
3583 cnt = (uint32_t)(ha->fw_transfer_size >> 2);
3584 if (cnt > risc_size)
3587 DEBUG7(printk("scsi(%ld): Loading risc segment@ "
3588 "addr %p, number of bytes 0x%x, offset 0x%lx.\n",
3589 ha->host_no, risc_code, cnt, risc_addr));
3591 req_ring = (uint32_t *)ha->request_ring;
3592 for (i = 0; i < cnt; i++)
3593 req_ring[i] = cpu_to_le32(risc_code[i]);
3595 rval = qla2x00_load_ram(ha, ha->request_dma, risc_addr,
3598 DEBUG(printk("scsi(%ld): [ERROR] Failed to "
3599 "load segment %d of firmware\n",
3601 qla_printk(KERN_WARNING, ha,
3602 "[ERROR] Failed to load segment %d of "
3605 qla2x00_dump_regs(ha);
3615 /* Next firmware sequence */
3622 qla24xx_load_risc_flash(scsi_qla_host_t *ha, uint32_t *srisc_addr)
3625 int segments, fragment;
3627 uint32_t *dcode, dlen;
3634 segments = FA_RISC_CODE_SEGMENTS;
3635 faddr = FA_RISC_CODE_ADDR;
3636 dcode = (uint32_t *)ha->request_ring;
3639 /* Validate firmware image by checking version. */
3640 qla24xx_read_flash_data(ha, dcode, faddr + 4, 4);
3641 for (i = 0; i < 4; i++)
3642 dcode[i] = be32_to_cpu(dcode[i]);
3643 if ((dcode[0] == 0xffffffff && dcode[1] == 0xffffffff &&
3644 dcode[2] == 0xffffffff && dcode[3] == 0xffffffff) ||
3645 (dcode[0] == 0 && dcode[1] == 0 && dcode[2] == 0 &&
3647 qla_printk(KERN_WARNING, ha,
3648 "Unable to verify integrity of flash firmware image!\n");
3649 qla_printk(KERN_WARNING, ha,
3650 "Firmware data: %08x %08x %08x %08x!\n", dcode[0],
3651 dcode[1], dcode[2], dcode[3]);
3653 return QLA_FUNCTION_FAILED;
3656 while (segments && rval == QLA_SUCCESS) {
3657 /* Read segment's load information. */
3658 qla24xx_read_flash_data(ha, dcode, faddr, 4);
3660 risc_addr = be32_to_cpu(dcode[2]);
3661 *srisc_addr = *srisc_addr == 0 ? risc_addr : *srisc_addr;
3662 risc_size = be32_to_cpu(dcode[3]);
3665 while (risc_size > 0 && rval == QLA_SUCCESS) {
3666 dlen = (uint32_t)(ha->fw_transfer_size >> 2);
3667 if (dlen > risc_size)
3670 DEBUG7(printk("scsi(%ld): Loading risc segment@ risc "
3671 "addr %x, number of dwords 0x%x, offset 0x%x.\n",
3672 ha->host_no, risc_addr, dlen, faddr));
3674 qla24xx_read_flash_data(ha, dcode, faddr, dlen);
3675 for (i = 0; i < dlen; i++)
3676 dcode[i] = swab32(dcode[i]);
3678 rval = qla2x00_load_ram(ha, ha->request_dma, risc_addr,
3681 DEBUG(printk("scsi(%ld):[ERROR] Failed to load "
3682 "segment %d of firmware\n", ha->host_no,
3684 qla_printk(KERN_WARNING, ha,
3685 "[ERROR] Failed to load segment %d of "
3686 "firmware\n", fragment);
3703 #else /* !defined(CONFIG_SCSI_QLA2XXX_EMBEDDED_FIRMWARE) */
3706 qla2x00_load_risc(scsi_qla_host_t *ha, uint32_t *srisc_addr)
3710 uint16_t *wcode, *fwcode;
3711 uint32_t risc_addr, risc_size, fwclen, wlen, *seg;
3712 struct fw_blob *blob;
3714 /* Load firmware blob. */
3715 blob = qla2x00_request_firmware(ha);
3717 qla_printk(KERN_ERR, ha, "Firmware image unavailable.\n");
3718 return QLA_FUNCTION_FAILED;
3723 wcode = (uint16_t *)ha->request_ring;
3725 fwcode = (uint16_t *)blob->fw->data;
3728 /* Validate firmware image by checking version. */
3729 if (blob->fw->size < 8 * sizeof(uint16_t)) {
3730 qla_printk(KERN_WARNING, ha,
3731 "Unable to verify integrity of firmware image (%Zd)!\n",
3733 goto fail_fw_integrity;
3735 for (i = 0; i < 4; i++)
3736 wcode[i] = be16_to_cpu(fwcode[i + 4]);
3737 if ((wcode[0] == 0xffff && wcode[1] == 0xffff && wcode[2] == 0xffff &&
3738 wcode[3] == 0xffff) || (wcode[0] == 0 && wcode[1] == 0 &&
3739 wcode[2] == 0 && wcode[3] == 0)) {
3740 qla_printk(KERN_WARNING, ha,
3741 "Unable to verify integrity of firmware image!\n");
3742 qla_printk(KERN_WARNING, ha,
3743 "Firmware data: %04x %04x %04x %04x!\n", wcode[0],
3744 wcode[1], wcode[2], wcode[3]);
3745 goto fail_fw_integrity;
3749 while (*seg && rval == QLA_SUCCESS) {
3751 *srisc_addr = *srisc_addr == 0 ? *seg : *srisc_addr;
3752 risc_size = be16_to_cpu(fwcode[3]);
3754 /* Validate firmware image size. */
3755 fwclen += risc_size * sizeof(uint16_t);
3756 if (blob->fw->size < fwclen) {
3757 qla_printk(KERN_WARNING, ha,
3758 "Unable to verify integrity of firmware image "
3759 "(%Zd)!\n", blob->fw->size);
3760 goto fail_fw_integrity;
3764 while (risc_size > 0 && rval == QLA_SUCCESS) {
3765 wlen = (uint16_t)(ha->fw_transfer_size >> 1);
3766 if (wlen > risc_size)
3769 DEBUG7(printk("scsi(%ld): Loading risc segment@ risc "
3770 "addr %x, number of words 0x%x.\n", ha->host_no,
3773 for (i = 0; i < wlen; i++)
3774 wcode[i] = swab16(fwcode[i]);
3776 rval = qla2x00_load_ram(ha, ha->request_dma, risc_addr,
3779 DEBUG(printk("scsi(%ld):[ERROR] Failed to load "
3780 "segment %d of firmware\n", ha->host_no,
3782 qla_printk(KERN_WARNING, ha,
3783 "[ERROR] Failed to load segment %d of "
3784 "firmware\n", fragment);
3800 return QLA_FUNCTION_FAILED;
3804 qla24xx_load_risc(scsi_qla_host_t *ha, uint32_t *srisc_addr)
3807 int segments, fragment;
3808 uint32_t *dcode, dlen;
3812 struct fw_blob *blob;
3813 uint32_t *fwcode, fwclen;
3815 /* Load firmware blob. */
3816 blob = qla2x00_request_firmware(ha);
3818 qla_printk(KERN_ERR, ha, "Firmware image unavailable.\n");
3819 return QLA_FUNCTION_FAILED;
3824 segments = FA_RISC_CODE_SEGMENTS;
3825 dcode = (uint32_t *)ha->request_ring;
3827 fwcode = (uint32_t *)blob->fw->data;
3830 /* Validate firmware image by checking version. */
3831 if (blob->fw->size < 8 * sizeof(uint32_t)) {
3832 qla_printk(KERN_WARNING, ha,
3833 "Unable to verify integrity of firmware image (%Zd)!\n",
3835 goto fail_fw_integrity;
3837 for (i = 0; i < 4; i++)
3838 dcode[i] = be32_to_cpu(fwcode[i + 4]);
3839 if ((dcode[0] == 0xffffffff && dcode[1] == 0xffffffff &&
3840 dcode[2] == 0xffffffff && dcode[3] == 0xffffffff) ||
3841 (dcode[0] == 0 && dcode[1] == 0 && dcode[2] == 0 &&
3843 qla_printk(KERN_WARNING, ha,
3844 "Unable to verify integrity of firmware image!\n");
3845 qla_printk(KERN_WARNING, ha,
3846 "Firmware data: %08x %08x %08x %08x!\n", dcode[0],
3847 dcode[1], dcode[2], dcode[3]);
3848 goto fail_fw_integrity;
3851 while (segments && rval == QLA_SUCCESS) {
3852 risc_addr = be32_to_cpu(fwcode[2]);
3853 *srisc_addr = *srisc_addr == 0 ? risc_addr : *srisc_addr;
3854 risc_size = be32_to_cpu(fwcode[3]);
3856 /* Validate firmware image size. */
3857 fwclen += risc_size * sizeof(uint32_t);
3858 if (blob->fw->size < fwclen) {
3859 qla_printk(KERN_WARNING, ha,
3860 "Unable to verify integrity of firmware image "
3861 "(%Zd)!\n", blob->fw->size);
3863 goto fail_fw_integrity;
3867 while (risc_size > 0 && rval == QLA_SUCCESS) {
3868 dlen = (uint32_t)(ha->fw_transfer_size >> 2);
3869 if (dlen > risc_size)
3872 DEBUG7(printk("scsi(%ld): Loading risc segment@ risc "
3873 "addr %x, number of dwords 0x%x.\n", ha->host_no,
3876 for (i = 0; i < dlen; i++)
3877 dcode[i] = swab32(fwcode[i]);
3879 rval = qla2x00_load_ram(ha, ha->request_dma, risc_addr,
3882 DEBUG(printk("scsi(%ld):[ERROR] Failed to load "
3883 "segment %d of firmware\n", ha->host_no,
3885 qla_printk(KERN_WARNING, ha,
3886 "[ERROR] Failed to load segment %d of "
3887 "firmware\n", fragment);
3903 return QLA_FUNCTION_FAILED;