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 <scsi/scsi_transport_fc.h>
13 qla2x00_mbx_sem_timeout(unsigned long data)
15 struct semaphore *sem_ptr = (struct semaphore *)data;
17 DEBUG11(printk("qla2x00_sem_timeout: entered.\n");)
19 if (sem_ptr != NULL) {
23 DEBUG11(printk("qla2x00_mbx_sem_timeout: exiting.\n");)
27 * qla2x00_mailbox_command
28 * Issue mailbox command and waits for completion.
31 * ha = adapter block pointer.
32 * mcp = driver internal mbx struct pointer.
35 * mb[MAX_MAILBOX_REGISTER_COUNT] = returned mailbox data.
38 * 0 : QLA_SUCCESS = cmd performed success
39 * 1 : QLA_FUNCTION_FAILED (error encountered)
40 * 6 : QLA_FUNCTION_TIMEOUT (timeout condition encountered)
46 qla2x00_mailbox_command(scsi_qla_host_t *ha, mbx_cmd_t *mcp)
49 unsigned long flags = 0;
50 device_reg_t __iomem *reg = ha->iobase;
51 struct timer_list tmp_intr_timer;
53 uint8_t io_lock_on = ha->flags.init_done;
56 uint16_t __iomem *optr;
59 unsigned long mbx_flags = 0;
60 unsigned long wait_time;
63 abort_active = test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
65 DEBUG11(printk("%s(%ld): entered.\n", __func__, ha->host_no);)
68 * Wait for active mailbox commands to finish by waiting at most tov
69 * seconds. This is to serialize actual issuing of mailbox cmds during
73 if (qla2x00_down_timeout(&ha->mbx_cmd_sem, mcp->tov * HZ)) {
74 /* Timeout occurred. Return error. */
75 DEBUG2_3_11(printk("%s(%ld): cmd access timeout. "
76 "Exiting.\n", __func__, ha->host_no);)
77 return QLA_FUNCTION_TIMEOUT;
81 ha->flags.mbox_busy = 1;
82 /* Save mailbox command for debug */
85 /* Try to get mailbox register access */
87 spin_lock_irqsave(&ha->mbx_reg_lock, mbx_flags);
89 DEBUG11(printk("scsi(%ld): prepare to issue mbox cmd=0x%x.\n",
90 ha->host_no, mcp->mb[0]);)
92 spin_lock_irqsave(&ha->hardware_lock, flags);
94 /* Load mailbox registers. */
95 if (IS_QLA24XX(ha) || IS_QLA25XX(ha))
96 optr = (uint16_t __iomem *)®->isp24.mailbox0;
98 optr = (uint16_t __iomem *)MAILBOX_REG(ha, ®->isp, 0);
101 command = mcp->mb[0];
102 mboxes = mcp->out_mb;
104 for (cnt = 0; cnt < ha->mbx_count; cnt++) {
105 if (IS_QLA2200(ha) && cnt == 8)
107 (uint16_t __iomem *)MAILBOX_REG(ha, ®->isp, 8);
109 WRT_REG_WORD(optr, *iptr);
116 #if defined(QL_DEBUG_LEVEL_1)
117 printk("%s(%ld): Loaded MBX registers (displayed in bytes) = \n",
118 __func__, ha->host_no);
119 qla2x00_dump_buffer((uint8_t *)mcp->mb, 16);
121 qla2x00_dump_buffer(((uint8_t *)mcp->mb + 0x10), 16);
123 qla2x00_dump_buffer(((uint8_t *)mcp->mb + 0x20), 8);
125 printk("%s(%ld): I/O address = %p.\n", __func__, ha->host_no, optr);
126 qla2x00_dump_regs(ha);
129 /* Issue set host interrupt command to send cmd out. */
130 ha->flags.mbox_int = 0;
131 clear_bit(MBX_INTERRUPT, &ha->mbx_cmd_flags);
133 /* Unlock mbx registers and wait for interrupt */
134 DEBUG11(printk("%s(%ld): going to unlock irq & waiting for interrupt. "
135 "jiffies=%lx.\n", __func__, ha->host_no, jiffies);)
137 /* Wait for mbx cmd completion until timeout */
139 if (!abort_active && io_lock_on) {
140 /* sleep on completion semaphore */
141 DEBUG11(printk("%s(%ld): INTERRUPT MODE. Initializing timer.\n",
142 __func__, ha->host_no);)
144 init_timer(&tmp_intr_timer);
145 tmp_intr_timer.data = (unsigned long)&ha->mbx_intr_sem;
146 tmp_intr_timer.expires = jiffies + mcp->tov * HZ;
147 tmp_intr_timer.function =
148 (void (*)(unsigned long))qla2x00_mbx_sem_timeout;
150 DEBUG11(printk("%s(%ld): Adding timer.\n", __func__,
152 add_timer(&tmp_intr_timer);
154 DEBUG11(printk("%s(%ld): going to unlock & sleep. "
155 "time=0x%lx.\n", __func__, ha->host_no, jiffies);)
157 set_bit(MBX_INTR_WAIT, &ha->mbx_cmd_flags);
159 if (IS_QLA24XX(ha) || IS_QLA25XX(ha))
160 WRT_REG_DWORD(®->isp24.hccr, HCCRX_SET_HOST_INT);
162 WRT_REG_WORD(®->isp.hccr, HCCR_SET_HOST_INT);
163 spin_unlock_irqrestore(&ha->hardware_lock, flags);
166 spin_unlock_irqrestore(&ha->mbx_reg_lock, mbx_flags);
168 /* Wait for either the timer to expire
169 * or the mbox completion interrupt
171 down(&ha->mbx_intr_sem);
173 DEBUG11(printk("%s(%ld): waking up. time=0x%lx\n", __func__,
174 ha->host_no, jiffies);)
175 clear_bit(MBX_INTR_WAIT, &ha->mbx_cmd_flags);
177 /* delete the timer */
178 del_timer(&tmp_intr_timer);
180 DEBUG3_11(printk("%s(%ld): cmd=%x POLLING MODE.\n", __func__,
181 ha->host_no, command);)
183 if (IS_QLA24XX(ha) || IS_QLA25XX(ha))
184 WRT_REG_DWORD(®->isp24.hccr, HCCRX_SET_HOST_INT);
186 WRT_REG_WORD(®->isp.hccr, HCCR_SET_HOST_INT);
187 spin_unlock_irqrestore(&ha->hardware_lock, flags);
189 spin_unlock_irqrestore(&ha->mbx_reg_lock, mbx_flags);
191 wait_time = jiffies + mcp->tov * HZ; /* wait at most tov secs */
192 while (!ha->flags.mbox_int) {
193 if (time_after(jiffies, wait_time))
196 /* Check for pending interrupts. */
199 if (command != MBC_LOAD_RISC_RAM_EXTENDED &&
206 spin_lock_irqsave(&ha->mbx_reg_lock, mbx_flags);
208 /* Check whether we timed out */
209 if (ha->flags.mbox_int) {
212 DEBUG3_11(printk("%s(%ld): cmd %x completed.\n", __func__,
213 ha->host_no, command);)
215 /* Got interrupt. Clear the flag. */
216 ha->flags.mbox_int = 0;
217 clear_bit(MBX_INTERRUPT, &ha->mbx_cmd_flags);
219 if (ha->mailbox_out[0] != MBS_COMMAND_COMPLETE)
220 rval = QLA_FUNCTION_FAILED;
222 /* Load return mailbox registers. */
224 iptr = (uint16_t *)&ha->mailbox_out[0];
226 for (cnt = 0; cnt < ha->mbx_count; cnt++) {
236 #if defined(QL_DEBUG_LEVEL_2) || defined(QL_DEBUG_LEVEL_3) || \
237 defined(QL_DEBUG_LEVEL_11)
241 if (IS_QLA24XX(ha) || IS_QLA25XX(ha)) {
242 mb0 = RD_REG_WORD(®->isp24.mailbox0);
243 ictrl = RD_REG_DWORD(®->isp24.ictrl);
245 mb0 = RD_MAILBOX_REG(ha, ®->isp, 0);
246 ictrl = RD_REG_WORD(®->isp.ictrl);
248 printk("%s(%ld): **** MB Command Timeout for cmd %x ****\n",
249 __func__, ha->host_no, command);
250 printk("%s(%ld): icontrol=%x jiffies=%lx\n", __func__,
251 ha->host_no, ictrl, jiffies);
252 printk("%s(%ld): *** mailbox[0] = 0x%x ***\n", __func__,
254 qla2x00_dump_regs(ha);
257 rval = QLA_FUNCTION_TIMEOUT;
261 spin_unlock_irqrestore(&ha->mbx_reg_lock, mbx_flags);
263 ha->flags.mbox_busy = 0;
269 DEBUG11(printk("%s(%ld): checking for additional resp "
270 "interrupt.\n", __func__, ha->host_no);)
272 /* polling mode for non isp_abort commands. */
276 if (rval == QLA_FUNCTION_TIMEOUT &&
277 mcp->mb[0] != MBC_GEN_SYSTEM_ERROR) {
278 if (!io_lock_on || (mcp->flags & IOCTL_CMD)) {
279 /* not in dpc. schedule it for dpc to take over. */
280 DEBUG(printk("%s(%ld): timeout schedule "
281 "isp_abort_needed.\n", __func__, ha->host_no);)
282 DEBUG2_3_11(printk("%s(%ld): timeout schedule "
283 "isp_abort_needed.\n", __func__, ha->host_no);)
284 qla_printk(KERN_WARNING, ha,
285 "Mailbox command timeout occured. Scheduling ISP "
287 set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
288 if (ha->dpc_wait && !ha->dpc_active)
291 } else if (!abort_active) {
292 /* call abort directly since we are in the DPC thread */
293 DEBUG(printk("%s(%ld): timeout calling abort_isp\n",
294 __func__, ha->host_no);)
295 DEBUG2_3_11(printk("%s(%ld): timeout calling "
296 "abort_isp\n", __func__, ha->host_no);)
297 qla_printk(KERN_WARNING, ha,
298 "Mailbox command timeout occured. Issuing ISP "
301 set_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
302 clear_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
303 if (qla2x00_abort_isp(ha)) {
304 /* Failed. retry later. */
305 set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
307 clear_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
308 DEBUG(printk("%s(%ld): finished abort_isp\n", __func__,
310 DEBUG2_3_11(printk("%s(%ld): finished abort_isp\n",
311 __func__, ha->host_no);)
315 /* Allow next mbx cmd to come in. */
317 up(&ha->mbx_cmd_sem);
320 DEBUG2_3_11(printk("%s(%ld): **** FAILED. mbx0=%x, mbx1=%x, "
321 "mbx2=%x, cmd=%x ****\n", __func__, ha->host_no,
322 mcp->mb[0], mcp->mb[1], mcp->mb[2], command);)
324 DEBUG11(printk("%s(%ld): done.\n", __func__, ha->host_no);)
331 qla2x00_load_ram(scsi_qla_host_t *ha, dma_addr_t req_dma, uint32_t risc_addr,
332 uint32_t risc_code_size)
336 mbx_cmd_t *mcp = &mc;
338 DEBUG11(printk("%s(%ld): entered.\n", __func__, ha->host_no));
340 if (MSW(risc_addr) || IS_QLA24XX(ha) || IS_QLA25XX(ha)) {
341 mcp->mb[0] = MBC_LOAD_RISC_RAM_EXTENDED;
342 mcp->mb[8] = MSW(risc_addr);
343 mcp->out_mb = MBX_8|MBX_0;
345 mcp->mb[0] = MBC_LOAD_RISC_RAM;
348 mcp->mb[1] = LSW(risc_addr);
349 mcp->mb[2] = MSW(req_dma);
350 mcp->mb[3] = LSW(req_dma);
351 mcp->mb[6] = MSW(MSD(req_dma));
352 mcp->mb[7] = LSW(MSD(req_dma));
353 mcp->out_mb |= MBX_7|MBX_6|MBX_3|MBX_2|MBX_1;
354 if (IS_QLA24XX(ha) || IS_QLA25XX(ha)) {
355 mcp->mb[4] = MSW(risc_code_size);
356 mcp->mb[5] = LSW(risc_code_size);
357 mcp->out_mb |= MBX_5|MBX_4;
359 mcp->mb[4] = LSW(risc_code_size);
360 mcp->out_mb |= MBX_4;
366 rval = qla2x00_mailbox_command(ha, mcp);
368 if (rval != QLA_SUCCESS) {
369 DEBUG2_3_11(printk("%s(%ld): failed=%x mb[0]=%x.\n", __func__,
370 ha->host_no, rval, mcp->mb[0]));
372 DEBUG11(printk("%s(%ld): done.\n", __func__, ha->host_no));
380 * Start adapter firmware.
383 * ha = adapter block pointer.
384 * TARGET_QUEUE_LOCK must be released.
385 * ADAPTER_STATE_LOCK must be released.
388 * qla2x00 local function return status code.
394 qla2x00_execute_fw(scsi_qla_host_t *ha, uint32_t risc_addr)
398 mbx_cmd_t *mcp = &mc;
400 DEBUG11(printk("%s(%ld): entered.\n", __func__, ha->host_no);)
402 mcp->mb[0] = MBC_EXECUTE_FIRMWARE;
405 if (IS_QLA24XX(ha) || IS_QLA25XX(ha)) {
406 mcp->mb[1] = MSW(risc_addr);
407 mcp->mb[2] = LSW(risc_addr);
409 mcp->out_mb |= MBX_3|MBX_2|MBX_1;
412 mcp->mb[1] = LSW(risc_addr);
413 mcp->out_mb |= MBX_1;
414 if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
416 mcp->out_mb |= MBX_2;
422 rval = qla2x00_mailbox_command(ha, mcp);
424 if (rval != QLA_SUCCESS) {
425 DEBUG2_3_11(printk("%s(%ld): failed=%x mb[0]=%x.\n", __func__,
426 ha->host_no, rval, mcp->mb[0]));
428 if (IS_QLA24XX(ha) || IS_QLA25XX(ha)) {
429 DEBUG11(printk("%s(%ld): done exchanges=%x.\n",
430 __func__, ha->host_no, mcp->mb[1]);)
432 DEBUG11(printk("%s(%ld): done.\n", __func__,
441 * qla2x00_get_fw_version
442 * Get firmware version.
445 * ha: adapter state pointer.
446 * major: pointer for major number.
447 * minor: pointer for minor number.
448 * subminor: pointer for subminor number.
451 * qla2x00 local function return status code.
457 qla2x00_get_fw_version(scsi_qla_host_t *ha, uint16_t *major, uint16_t *minor,
458 uint16_t *subminor, uint16_t *attributes, uint32_t *memory)
462 mbx_cmd_t *mcp = &mc;
464 DEBUG11(printk("%s(%ld): entered.\n", __func__, ha->host_no));
466 mcp->mb[0] = MBC_GET_FIRMWARE_VERSION;
468 mcp->in_mb = MBX_6|MBX_5|MBX_4|MBX_3|MBX_2|MBX_1|MBX_0;
471 rval = qla2x00_mailbox_command(ha, mcp);
473 /* Return mailbox data. */
476 *subminor = mcp->mb[3];
477 *attributes = mcp->mb[6];
478 if (IS_QLA2100(ha) || IS_QLA2200(ha))
479 *memory = 0x1FFFF; /* Defaults to 128KB. */
481 *memory = (mcp->mb[5] << 16) | mcp->mb[4];
483 if (rval != QLA_SUCCESS) {
485 DEBUG2_3_11(printk("%s(%ld): failed=%x.\n", __func__,
489 DEBUG11(printk("%s(%ld): done.\n", __func__, ha->host_no));
494 * qla2x00_get_fw_options
495 * Set firmware options.
498 * ha = adapter block pointer.
499 * fwopt = pointer for firmware options.
502 * qla2x00 local function return status code.
508 qla2x00_get_fw_options(scsi_qla_host_t *ha, uint16_t *fwopts)
512 mbx_cmd_t *mcp = &mc;
514 DEBUG11(printk("%s(%ld): entered.\n", __func__, ha->host_no));
516 mcp->mb[0] = MBC_GET_FIRMWARE_OPTION;
518 mcp->in_mb = MBX_3|MBX_2|MBX_1|MBX_0;
521 rval = qla2x00_mailbox_command(ha, mcp);
523 if (rval != QLA_SUCCESS) {
525 DEBUG2_3_11(printk("%s(%ld): failed=%x.\n", __func__,
528 fwopts[0] = mcp->mb[0];
529 fwopts[1] = mcp->mb[1];
530 fwopts[2] = mcp->mb[2];
531 fwopts[3] = mcp->mb[3];
533 DEBUG11(printk("%s(%ld): done.\n", __func__, ha->host_no));
541 * qla2x00_set_fw_options
542 * Set firmware options.
545 * ha = adapter block pointer.
546 * fwopt = pointer for firmware options.
549 * qla2x00 local function return status code.
555 qla2x00_set_fw_options(scsi_qla_host_t *ha, uint16_t *fwopts)
559 mbx_cmd_t *mcp = &mc;
561 DEBUG11(printk("%s(%ld): entered.\n", __func__, ha->host_no));
563 mcp->mb[0] = MBC_SET_FIRMWARE_OPTION;
564 mcp->mb[1] = fwopts[1];
565 mcp->mb[2] = fwopts[2];
566 mcp->mb[3] = fwopts[3];
567 mcp->out_mb = MBX_3|MBX_2|MBX_1|MBX_0;
569 if (IS_QLA24XX(ha) || IS_QLA25XX(ha)) {
572 mcp->mb[10] = fwopts[10];
573 mcp->mb[11] = fwopts[11];
574 mcp->mb[12] = 0; /* Undocumented, but used */
575 mcp->out_mb |= MBX_12|MBX_11|MBX_10;
579 rval = qla2x00_mailbox_command(ha, mcp);
581 fwopts[0] = mcp->mb[0];
583 if (rval != QLA_SUCCESS) {
585 DEBUG2_3_11(printk("%s(%ld): failed=%x (%x/%x).\n", __func__,
586 ha->host_no, rval, mcp->mb[0], mcp->mb[1]));
589 DEBUG11(printk("%s(%ld): done.\n", __func__, ha->host_no));
596 * qla2x00_mbx_reg_test
597 * Mailbox register wrap test.
600 * ha = adapter block pointer.
601 * TARGET_QUEUE_LOCK must be released.
602 * ADAPTER_STATE_LOCK must be released.
605 * qla2x00 local function return status code.
611 qla2x00_mbx_reg_test(scsi_qla_host_t *ha)
615 mbx_cmd_t *mcp = &mc;
617 DEBUG11(printk("qla2x00_mbx_reg_test(%ld): entered.\n", ha->host_no);)
619 mcp->mb[0] = MBC_MAILBOX_REGISTER_TEST;
627 mcp->out_mb = MBX_7|MBX_6|MBX_5|MBX_4|MBX_3|MBX_2|MBX_1|MBX_0;
628 mcp->in_mb = MBX_7|MBX_6|MBX_5|MBX_4|MBX_3|MBX_2|MBX_1|MBX_0;
631 rval = qla2x00_mailbox_command(ha, mcp);
633 if (rval == QLA_SUCCESS) {
634 if (mcp->mb[1] != 0xAAAA || mcp->mb[2] != 0x5555 ||
635 mcp->mb[3] != 0xAA55 || mcp->mb[4] != 0x55AA)
636 rval = QLA_FUNCTION_FAILED;
637 if (mcp->mb[5] != 0xA5A5 || mcp->mb[6] != 0x5A5A ||
638 mcp->mb[7] != 0x2525)
639 rval = QLA_FUNCTION_FAILED;
642 if (rval != QLA_SUCCESS) {
644 DEBUG2_3_11(printk("qla2x00_mbx_reg_test(%ld): failed=%x.\n",
648 DEBUG11(printk("qla2x00_mbx_reg_test(%ld): done.\n",
656 * qla2x00_verify_checksum
657 * Verify firmware checksum.
660 * ha = adapter block pointer.
661 * TARGET_QUEUE_LOCK must be released.
662 * ADAPTER_STATE_LOCK must be released.
665 * qla2x00 local function return status code.
671 qla2x00_verify_checksum(scsi_qla_host_t *ha, uint32_t risc_addr)
675 mbx_cmd_t *mcp = &mc;
677 DEBUG11(printk("%s(%ld): entered.\n", __func__, ha->host_no);)
679 mcp->mb[0] = MBC_VERIFY_CHECKSUM;
682 if (IS_QLA24XX(ha) || IS_QLA25XX(ha)) {
683 mcp->mb[1] = MSW(risc_addr);
684 mcp->mb[2] = LSW(risc_addr);
685 mcp->out_mb |= MBX_2|MBX_1;
686 mcp->in_mb |= MBX_2|MBX_1;
688 mcp->mb[1] = LSW(risc_addr);
689 mcp->out_mb |= MBX_1;
695 rval = qla2x00_mailbox_command(ha, mcp);
697 if (rval != QLA_SUCCESS) {
698 DEBUG2_3_11(printk("%s(%ld): failed=%x chk sum=%x.\n", __func__,
699 ha->host_no, rval, (IS_QLA24XX(ha) || IS_QLA25XX(ha) ?
700 (mcp->mb[2] << 16) | mcp->mb[1]: mcp->mb[1]));)
702 DEBUG11(printk("%s(%ld): done.\n", __func__, ha->host_no);)
710 * Issue IOCB using mailbox command
713 * ha = adapter state pointer.
714 * buffer = buffer pointer.
715 * phys_addr = physical address of buffer.
716 * size = size of buffer.
717 * TARGET_QUEUE_LOCK must be released.
718 * ADAPTER_STATE_LOCK must be released.
721 * qla2x00 local function return status code.
727 qla2x00_issue_iocb(scsi_qla_host_t *ha, void* buffer, dma_addr_t phys_addr,
732 mbx_cmd_t *mcp = &mc;
734 mcp->mb[0] = MBC_IOCB_COMMAND_A64;
736 mcp->mb[2] = MSW(phys_addr);
737 mcp->mb[3] = LSW(phys_addr);
738 mcp->mb[6] = MSW(MSD(phys_addr));
739 mcp->mb[7] = LSW(MSD(phys_addr));
740 mcp->out_mb = MBX_7|MBX_6|MBX_3|MBX_2|MBX_1|MBX_0;
741 mcp->in_mb = MBX_2|MBX_0;
744 rval = qla2x00_mailbox_command(ha, mcp);
746 if (rval != QLA_SUCCESS) {
748 DEBUG(printk("qla2x00_issue_iocb(%ld): failed rval 0x%x\n",
750 DEBUG2(printk("qla2x00_issue_iocb(%ld): failed rval 0x%x\n",
753 sts_entry_t *sts_entry = (sts_entry_t *) buffer;
755 /* Mask reserved bits. */
756 sts_entry->entry_status &=
757 IS_QLA24XX(ha) || IS_QLA25XX(ha) ? RF_MASK_24XX :RF_MASK;
764 * qla2x00_abort_command
765 * Abort command aborts a specified IOCB.
768 * ha = adapter block pointer.
769 * sp = SB structure pointer.
772 * qla2x00 local function return status code.
778 qla2x00_abort_command(scsi_qla_host_t *ha, srb_t *sp)
780 unsigned long flags = 0;
785 mbx_cmd_t *mcp = &mc;
787 DEBUG11(printk("qla2x00_abort_command(%ld): entered.\n", ha->host_no);)
791 spin_lock_irqsave(&ha->hardware_lock, flags);
792 for (handle = 1; handle < MAX_OUTSTANDING_COMMANDS; handle++) {
793 if (ha->outstanding_cmds[handle] == sp)
796 spin_unlock_irqrestore(&ha->hardware_lock, flags);
798 if (handle == MAX_OUTSTANDING_COMMANDS) {
799 /* command not found */
800 return QLA_FUNCTION_FAILED;
803 mcp->mb[0] = MBC_ABORT_COMMAND;
804 if (HAS_EXTENDED_IDS(ha))
805 mcp->mb[1] = fcport->loop_id;
807 mcp->mb[1] = fcport->loop_id << 8;
808 mcp->mb[2] = (uint16_t)handle;
809 mcp->mb[3] = (uint16_t)(handle >> 16);
810 mcp->mb[6] = (uint16_t)sp->cmd->device->lun;
811 mcp->out_mb = MBX_6|MBX_3|MBX_2|MBX_1|MBX_0;
815 rval = qla2x00_mailbox_command(ha, mcp);
817 if (rval != QLA_SUCCESS) {
818 DEBUG2_3_11(printk("qla2x00_abort_command(%ld): failed=%x.\n",
821 sp->flags |= SRB_ABORT_PENDING;
822 DEBUG11(printk("qla2x00_abort_command(%ld): done.\n",
831 * qla2x00_abort_target
832 * Issue abort target mailbox command.
835 * ha = adapter block pointer.
838 * qla2x00 local function return status code.
844 qla2x00_abort_target(fc_port_t *fcport)
848 mbx_cmd_t *mcp = &mc;
854 DEBUG11(printk("%s(%ld): entered.\n", __func__, fcport->ha->host_no);)
857 mcp->mb[0] = MBC_ABORT_TARGET;
858 mcp->out_mb = MBX_2|MBX_1|MBX_0;
859 if (HAS_EXTENDED_IDS(ha)) {
860 mcp->mb[1] = fcport->loop_id;
862 mcp->out_mb |= MBX_10;
864 mcp->mb[1] = fcport->loop_id << 8;
866 mcp->mb[2] = ha->loop_reset_delay;
871 rval = qla2x00_mailbox_command(ha, mcp);
873 /* Issue marker command. */
874 ha->marker_needed = 1;
876 if (rval != QLA_SUCCESS) {
877 DEBUG2_3_11(printk("qla2x00_abort_target(%ld): failed=%x.\n",
881 DEBUG11(printk("qla2x00_abort_target(%ld): done.\n",
890 * qla2x00_get_adapter_id
891 * Get adapter ID and topology.
894 * ha = adapter block pointer.
895 * id = pointer for loop ID.
896 * al_pa = pointer for AL_PA.
897 * area = pointer for area.
898 * domain = pointer for domain.
899 * top = pointer for topology.
900 * TARGET_QUEUE_LOCK must be released.
901 * ADAPTER_STATE_LOCK must be released.
904 * qla2x00 local function return status code.
910 qla2x00_get_adapter_id(scsi_qla_host_t *ha, uint16_t *id, uint8_t *al_pa,
911 uint8_t *area, uint8_t *domain, uint16_t *top)
915 mbx_cmd_t *mcp = &mc;
917 DEBUG11(printk("qla2x00_get_adapter_id(%ld): entered.\n",
920 mcp->mb[0] = MBC_GET_ADAPTER_LOOP_ID;
922 mcp->in_mb = MBX_7|MBX_6|MBX_3|MBX_2|MBX_1|MBX_0;
925 rval = qla2x00_mailbox_command(ha, mcp);
926 if (mcp->mb[0] == MBS_COMMAND_ERROR)
927 rval = QLA_COMMAND_ERROR;
931 *al_pa = LSB(mcp->mb[2]);
932 *area = MSB(mcp->mb[2]);
933 *domain = LSB(mcp->mb[3]);
936 if (rval != QLA_SUCCESS) {
938 DEBUG2_3_11(printk("qla2x00_get_adapter_id(%ld): failed=%x.\n",
942 DEBUG11(printk("qla2x00_get_adapter_id(%ld): done.\n",
950 * qla2x00_get_retry_cnt
951 * Get current firmware login retry count and delay.
954 * ha = adapter block pointer.
955 * retry_cnt = pointer to login retry count.
956 * tov = pointer to login timeout value.
959 * qla2x00 local function return status code.
965 qla2x00_get_retry_cnt(scsi_qla_host_t *ha, uint8_t *retry_cnt, uint8_t *tov,
971 mbx_cmd_t *mcp = &mc;
973 DEBUG11(printk("qla2x00_get_retry_cnt(%ld): entered.\n",
976 mcp->mb[0] = MBC_GET_RETRY_COUNT;
978 mcp->in_mb = MBX_3|MBX_2|MBX_1|MBX_0;
981 rval = qla2x00_mailbox_command(ha, mcp);
983 if (rval != QLA_SUCCESS) {
985 DEBUG2_3_11(printk("qla2x00_get_retry_cnt(%ld): failed = %x.\n",
986 ha->host_no, mcp->mb[0]);)
988 /* Convert returned data and check our values. */
989 *r_a_tov = mcp->mb[3] / 2;
990 ratov = (mcp->mb[3]/2) / 10; /* mb[3] value is in 100ms */
991 if (mcp->mb[1] * ratov > (*retry_cnt) * (*tov)) {
992 /* Update to the larger values */
993 *retry_cnt = (uint8_t)mcp->mb[1];
997 DEBUG11(printk("qla2x00_get_retry_cnt(%ld): done. mb3=%d "
998 "ratov=%d.\n", ha->host_no, mcp->mb[3], ratov);)
1005 * qla2x00_init_firmware
1006 * Initialize adapter firmware.
1009 * ha = adapter block pointer.
1010 * dptr = Initialization control block pointer.
1011 * size = size of initialization control block.
1012 * TARGET_QUEUE_LOCK must be released.
1013 * ADAPTER_STATE_LOCK must be released.
1016 * qla2x00 local function return status code.
1022 qla2x00_init_firmware(scsi_qla_host_t *ha, uint16_t size)
1026 mbx_cmd_t *mcp = &mc;
1028 DEBUG11(printk("qla2x00_init_firmware(%ld): entered.\n",
1031 mcp->mb[0] = MBC_INITIALIZE_FIRMWARE;
1032 mcp->mb[2] = MSW(ha->init_cb_dma);
1033 mcp->mb[3] = LSW(ha->init_cb_dma);
1036 mcp->mb[6] = MSW(MSD(ha->init_cb_dma));
1037 mcp->mb[7] = LSW(MSD(ha->init_cb_dma));
1038 mcp->out_mb = MBX_7|MBX_6|MBX_3|MBX_2|MBX_0;
1039 mcp->in_mb = MBX_5|MBX_4|MBX_0;
1040 mcp->buf_size = size;
1041 mcp->flags = MBX_DMA_OUT;
1043 rval = qla2x00_mailbox_command(ha, mcp);
1045 if (rval != QLA_SUCCESS) {
1047 DEBUG2_3_11(printk("qla2x00_init_firmware(%ld): failed=%x "
1049 ha->host_no, rval, mcp->mb[0]);)
1052 DEBUG11(printk("qla2x00_init_firmware(%ld): done.\n",
1060 * qla2x00_get_port_database
1061 * Issue normal/enhanced get port database mailbox command
1062 * and copy device name as necessary.
1065 * ha = adapter state pointer.
1066 * dev = structure pointer.
1067 * opt = enhanced cmd option byte.
1070 * qla2x00 local function return status code.
1076 qla2x00_get_port_database(scsi_qla_host_t *ha, fc_port_t *fcport, uint8_t opt)
1080 mbx_cmd_t *mcp = &mc;
1081 port_database_t *pd;
1082 struct port_database_24xx *pd24;
1085 DEBUG11(printk("%s(%ld): entered.\n", __func__, ha->host_no);)
1088 pd = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, &pd_dma);
1090 DEBUG2_3(printk("%s(%ld): failed to allocate Port Database "
1091 "structure.\n", __func__, ha->host_no));
1092 return QLA_MEMORY_ALLOC_FAILED;
1094 memset(pd, 0, max(PORT_DATABASE_SIZE, PORT_DATABASE_24XX_SIZE));
1096 mcp->mb[0] = MBC_GET_PORT_DATABASE;
1097 if (opt != 0 && !IS_QLA24XX(ha) && !IS_QLA25XX(ha))
1098 mcp->mb[0] = MBC_ENHANCED_GET_PORT_DATABASE;
1099 mcp->mb[2] = MSW(pd_dma);
1100 mcp->mb[3] = LSW(pd_dma);
1101 mcp->mb[6] = MSW(MSD(pd_dma));
1102 mcp->mb[7] = LSW(MSD(pd_dma));
1103 mcp->out_mb = MBX_7|MBX_6|MBX_3|MBX_2|MBX_0;
1105 if (IS_QLA24XX(ha) || IS_QLA25XX(ha)) {
1106 mcp->mb[1] = fcport->loop_id;
1108 mcp->out_mb |= MBX_10|MBX_1;
1109 mcp->in_mb |= MBX_1;
1110 } else if (HAS_EXTENDED_IDS(ha)) {
1111 mcp->mb[1] = fcport->loop_id;
1113 mcp->out_mb |= MBX_10|MBX_1;
1115 mcp->mb[1] = fcport->loop_id << 8 | opt;
1116 mcp->out_mb |= MBX_1;
1118 mcp->buf_size = (IS_QLA24XX(ha) || IS_QLA25XX(ha) ?
1119 PORT_DATABASE_24XX_SIZE : PORT_DATABASE_SIZE);
1120 mcp->flags = MBX_DMA_IN;
1121 mcp->tov = (ha->login_timeout * 2) + (ha->login_timeout / 2);
1122 rval = qla2x00_mailbox_command(ha, mcp);
1123 if (rval != QLA_SUCCESS)
1126 if (IS_QLA24XX(ha) || IS_QLA25XX(ha)) {
1127 pd24 = (struct port_database_24xx *) pd;
1129 /* Check for logged in state. */
1130 if (pd24->current_login_state != PDS_PRLI_COMPLETE &&
1131 pd24->last_login_state != PDS_PRLI_COMPLETE) {
1132 DEBUG2(printk("%s(%ld): Unable to verify "
1133 "login-state (%x/%x) for loop_id %x\n",
1134 __func__, ha->host_no,
1135 pd24->current_login_state,
1136 pd24->last_login_state, fcport->loop_id));
1137 rval = QLA_FUNCTION_FAILED;
1141 /* Names are little-endian. */
1142 memcpy(fcport->node_name, pd24->node_name, WWN_SIZE);
1143 memcpy(fcport->port_name, pd24->port_name, WWN_SIZE);
1145 /* Get port_id of device. */
1146 fcport->d_id.b.domain = pd24->port_id[0];
1147 fcport->d_id.b.area = pd24->port_id[1];
1148 fcport->d_id.b.al_pa = pd24->port_id[2];
1149 fcport->d_id.b.rsvd_1 = 0;
1151 /* If not target must be initiator or unknown type. */
1152 if ((pd24->prli_svc_param_word_3[0] & BIT_4) == 0)
1153 fcport->port_type = FCT_INITIATOR;
1155 fcport->port_type = FCT_TARGET;
1157 /* Check for logged in state. */
1158 if (pd->master_state != PD_STATE_PORT_LOGGED_IN &&
1159 pd->slave_state != PD_STATE_PORT_LOGGED_IN) {
1160 rval = QLA_FUNCTION_FAILED;
1164 /* Names are little-endian. */
1165 memcpy(fcport->node_name, pd->node_name, WWN_SIZE);
1166 memcpy(fcport->port_name, pd->port_name, WWN_SIZE);
1168 /* Get port_id of device. */
1169 fcport->d_id.b.domain = pd->port_id[0];
1170 fcport->d_id.b.area = pd->port_id[3];
1171 fcport->d_id.b.al_pa = pd->port_id[2];
1172 fcport->d_id.b.rsvd_1 = 0;
1174 /* Check for device require authentication. */
1175 pd->common_features & BIT_5 ? (fcport->flags |= FCF_AUTH_REQ) :
1176 (fcport->flags &= ~FCF_AUTH_REQ);
1178 /* If not target must be initiator or unknown type. */
1179 if ((pd->prli_svc_param_word_3[0] & BIT_4) == 0)
1180 fcport->port_type = FCT_INITIATOR;
1182 fcport->port_type = FCT_TARGET;
1184 /* Passback COS information. */
1185 fcport->supported_classes = (pd->options & BIT_4) ?
1186 FC_COS_CLASS2: FC_COS_CLASS3;
1190 dma_pool_free(ha->s_dma_pool, pd, pd_dma);
1192 if (rval != QLA_SUCCESS) {
1193 DEBUG2_3_11(printk("%s(%ld): failed=%x mb[0]=%x mb[1]=%x.\n",
1194 __func__, ha->host_no, rval, mcp->mb[0], mcp->mb[1]));
1196 DEBUG11(printk("%s(%ld): done.\n", __func__, ha->host_no));
1203 * qla2x00_get_firmware_state
1204 * Get adapter firmware state.
1207 * ha = adapter block pointer.
1208 * dptr = pointer for firmware state.
1209 * TARGET_QUEUE_LOCK must be released.
1210 * ADAPTER_STATE_LOCK must be released.
1213 * qla2x00 local function return status code.
1219 qla2x00_get_firmware_state(scsi_qla_host_t *ha, uint16_t *dptr)
1223 mbx_cmd_t *mcp = &mc;
1225 DEBUG11(printk("qla2x00_get_firmware_state(%ld): entered.\n",
1228 mcp->mb[0] = MBC_GET_FIRMWARE_STATE;
1229 mcp->out_mb = MBX_0;
1230 mcp->in_mb = MBX_2|MBX_1|MBX_0;
1233 rval = qla2x00_mailbox_command(ha, mcp);
1235 /* Return firmware state. */
1238 if (rval != QLA_SUCCESS) {
1240 DEBUG2_3_11(printk("qla2x00_get_firmware_state(%ld): "
1241 "failed=%x.\n", ha->host_no, rval);)
1244 DEBUG11(printk("qla2x00_get_firmware_state(%ld): done.\n",
1252 * qla2x00_get_port_name
1253 * Issue get port name mailbox command.
1254 * Returned name is in big endian format.
1257 * ha = adapter block pointer.
1258 * loop_id = loop ID of device.
1259 * name = pointer for name.
1260 * TARGET_QUEUE_LOCK must be released.
1261 * ADAPTER_STATE_LOCK must be released.
1264 * qla2x00 local function return status code.
1270 qla2x00_get_port_name(scsi_qla_host_t *ha, uint16_t loop_id, uint8_t *name,
1275 mbx_cmd_t *mcp = &mc;
1277 DEBUG11(printk("qla2x00_get_port_name(%ld): entered.\n",
1280 mcp->mb[0] = MBC_GET_PORT_NAME;
1281 mcp->out_mb = MBX_1|MBX_0;
1282 if (HAS_EXTENDED_IDS(ha)) {
1283 mcp->mb[1] = loop_id;
1285 mcp->out_mb |= MBX_10;
1287 mcp->mb[1] = loop_id << 8 | opt;
1290 mcp->in_mb = MBX_7|MBX_6|MBX_3|MBX_2|MBX_1|MBX_0;
1293 rval = qla2x00_mailbox_command(ha, mcp);
1295 if (rval != QLA_SUCCESS) {
1297 DEBUG2_3_11(printk("qla2x00_get_port_name(%ld): failed=%x.\n",
1298 ha->host_no, rval);)
1301 /* This function returns name in big endian. */
1302 name[0] = LSB(mcp->mb[2]);
1303 name[1] = MSB(mcp->mb[2]);
1304 name[2] = LSB(mcp->mb[3]);
1305 name[3] = MSB(mcp->mb[3]);
1306 name[4] = LSB(mcp->mb[6]);
1307 name[5] = MSB(mcp->mb[6]);
1308 name[6] = LSB(mcp->mb[7]);
1309 name[7] = MSB(mcp->mb[7]);
1312 DEBUG11(printk("qla2x00_get_port_name(%ld): done.\n",
1321 * Issue LIP reset mailbox command.
1324 * ha = adapter block pointer.
1325 * TARGET_QUEUE_LOCK must be released.
1326 * ADAPTER_STATE_LOCK must be released.
1329 * qla2x00 local function return status code.
1335 qla2x00_lip_reset(scsi_qla_host_t *ha)
1339 mbx_cmd_t *mcp = &mc;
1341 DEBUG11(printk("%s(%ld): entered.\n", __func__, ha->host_no);)
1343 if (IS_QLA24XX(ha) || IS_QLA25XX(ha)) {
1344 mcp->mb[0] = MBC_LIP_FULL_LOGIN;
1348 mcp->out_mb = MBX_3|MBX_2|MBX_1|MBX_0;
1350 mcp->mb[0] = MBC_LIP_RESET;
1351 mcp->out_mb = MBX_3|MBX_2|MBX_1|MBX_0;
1352 if (HAS_EXTENDED_IDS(ha)) {
1353 mcp->mb[1] = 0x00ff;
1355 mcp->out_mb |= MBX_10;
1357 mcp->mb[1] = 0xff00;
1359 mcp->mb[2] = ha->loop_reset_delay;
1365 rval = qla2x00_mailbox_command(ha, mcp);
1367 if (rval != QLA_SUCCESS) {
1369 DEBUG2_3_11(printk("%s(%ld): failed=%x.\n",
1370 __func__, ha->host_no, rval);)
1373 DEBUG11(printk("%s(%ld): done.\n", __func__, ha->host_no);)
1384 * ha = adapter block pointer.
1385 * sns = pointer for command.
1386 * cmd_size = command size.
1387 * buf_size = response/command size.
1388 * TARGET_QUEUE_LOCK must be released.
1389 * ADAPTER_STATE_LOCK must be released.
1392 * qla2x00 local function return status code.
1398 qla2x00_send_sns(scsi_qla_host_t *ha, dma_addr_t sns_phys_address,
1399 uint16_t cmd_size, size_t buf_size)
1403 mbx_cmd_t *mcp = &mc;
1405 DEBUG11(printk("qla2x00_send_sns(%ld): entered.\n",
1408 DEBUG11(printk("qla2x00_send_sns: retry cnt=%d ratov=%d total "
1409 "tov=%d.\n", ha->retry_count, ha->login_timeout, mcp->tov);)
1411 mcp->mb[0] = MBC_SEND_SNS_COMMAND;
1412 mcp->mb[1] = cmd_size;
1413 mcp->mb[2] = MSW(sns_phys_address);
1414 mcp->mb[3] = LSW(sns_phys_address);
1415 mcp->mb[6] = MSW(MSD(sns_phys_address));
1416 mcp->mb[7] = LSW(MSD(sns_phys_address));
1417 mcp->out_mb = MBX_7|MBX_6|MBX_3|MBX_2|MBX_1|MBX_0;
1418 mcp->in_mb = MBX_0|MBX_1;
1419 mcp->buf_size = buf_size;
1420 mcp->flags = MBX_DMA_OUT|MBX_DMA_IN;
1421 mcp->tov = (ha->login_timeout * 2) + (ha->login_timeout / 2);
1422 rval = qla2x00_mailbox_command(ha, mcp);
1424 if (rval != QLA_SUCCESS) {
1426 DEBUG(printk("qla2x00_send_sns(%ld): failed=%x mb[0]=%x "
1427 "mb[1]=%x.\n", ha->host_no, rval, mcp->mb[0], mcp->mb[1]);)
1428 DEBUG2_3_11(printk("qla2x00_send_sns(%ld): failed=%x mb[0]=%x "
1429 "mb[1]=%x.\n", ha->host_no, rval, mcp->mb[0], mcp->mb[1]);)
1432 DEBUG11(printk("qla2x00_send_sns(%ld): done.\n", ha->host_no);)
1439 qla24xx_login_fabric(scsi_qla_host_t *ha, uint16_t loop_id, uint8_t domain,
1440 uint8_t area, uint8_t al_pa, uint16_t *mb, uint8_t opt)
1444 struct logio_entry_24xx *lg;
1448 DEBUG11(printk("%s(%ld): entered.\n", __func__, ha->host_no);)
1450 lg = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, &lg_dma);
1452 DEBUG2_3(printk("%s(%ld): failed to allocate Login IOCB.\n",
1453 __func__, ha->host_no));
1454 return QLA_MEMORY_ALLOC_FAILED;
1456 memset(lg, 0, sizeof(struct logio_entry_24xx));
1458 lg->entry_type = LOGINOUT_PORT_IOCB_TYPE;
1459 lg->entry_count = 1;
1460 lg->nport_handle = cpu_to_le16(loop_id);
1461 lg->control_flags = __constant_cpu_to_le16(LCF_COMMAND_PLOGI);
1463 lg->control_flags |= __constant_cpu_to_le16(LCF_COND_PLOGI);
1464 lg->port_id[0] = al_pa;
1465 lg->port_id[1] = area;
1466 lg->port_id[2] = domain;
1467 rval = qla2x00_issue_iocb(ha, lg, lg_dma, 0);
1468 if (rval != QLA_SUCCESS) {
1469 DEBUG2_3_11(printk("%s(%ld): failed to issue Login IOCB "
1470 "(%x).\n", __func__, ha->host_no, rval);)
1471 } else if (lg->entry_status != 0) {
1472 DEBUG2_3_11(printk("%s(%ld): failed to complete IOCB "
1473 "-- error status (%x).\n", __func__, ha->host_no,
1475 rval = QLA_FUNCTION_FAILED;
1476 } else if (lg->comp_status != __constant_cpu_to_le16(CS_COMPLETE)) {
1477 iop[0] = le32_to_cpu(lg->io_parameter[0]);
1478 iop[1] = le32_to_cpu(lg->io_parameter[1]);
1480 DEBUG2_3_11(printk("%s(%ld): failed to complete IOCB "
1481 "-- completion status (%x) ioparam=%x/%x.\n", __func__,
1482 ha->host_no, le16_to_cpu(lg->comp_status), iop[0],
1486 case LSC_SCODE_PORTID_USED:
1487 mb[0] = MBS_PORT_ID_USED;
1488 mb[1] = LSW(iop[1]);
1490 case LSC_SCODE_NPORT_USED:
1491 mb[0] = MBS_LOOP_ID_USED;
1493 case LSC_SCODE_NOLINK:
1494 case LSC_SCODE_NOIOCB:
1495 case LSC_SCODE_NOXCB:
1496 case LSC_SCODE_CMD_FAILED:
1497 case LSC_SCODE_NOFABRIC:
1498 case LSC_SCODE_FW_NOT_READY:
1499 case LSC_SCODE_NOT_LOGGED_IN:
1500 case LSC_SCODE_NOPCB:
1501 case LSC_SCODE_ELS_REJECT:
1502 case LSC_SCODE_CMD_PARAM_ERR:
1503 case LSC_SCODE_NONPORT:
1504 case LSC_SCODE_LOGGED_IN:
1505 case LSC_SCODE_NOFLOGI_ACC:
1507 mb[0] = MBS_COMMAND_ERROR;
1511 DEBUG11(printk("%s(%ld): done.\n", __func__, ha->host_no);)
1513 iop[0] = le32_to_cpu(lg->io_parameter[0]);
1515 mb[0] = MBS_COMMAND_COMPLETE;
1517 if (iop[0] & BIT_4) {
1523 /* Passback COS information. */
1525 if (lg->io_parameter[7] || lg->io_parameter[8])
1526 mb[10] |= BIT_0; /* Class 2. */
1527 if (lg->io_parameter[9] || lg->io_parameter[10])
1528 mb[10] |= BIT_1; /* Class 3. */
1531 dma_pool_free(ha->s_dma_pool, lg, lg_dma);
1537 * qla2x00_login_fabric
1538 * Issue login fabric port mailbox command.
1541 * ha = adapter block pointer.
1542 * loop_id = device loop ID.
1543 * domain = device domain.
1544 * area = device area.
1545 * al_pa = device AL_PA.
1546 * status = pointer for return status.
1547 * opt = command options.
1548 * TARGET_QUEUE_LOCK must be released.
1549 * ADAPTER_STATE_LOCK must be released.
1552 * qla2x00 local function return status code.
1558 qla2x00_login_fabric(scsi_qla_host_t *ha, uint16_t loop_id, uint8_t domain,
1559 uint8_t area, uint8_t al_pa, uint16_t *mb, uint8_t opt)
1563 mbx_cmd_t *mcp = &mc;
1565 DEBUG11(printk("qla2x00_login_fabric(%ld): entered.\n", ha->host_no);)
1567 mcp->mb[0] = MBC_LOGIN_FABRIC_PORT;
1568 mcp->out_mb = MBX_3|MBX_2|MBX_1|MBX_0;
1569 if (HAS_EXTENDED_IDS(ha)) {
1570 mcp->mb[1] = loop_id;
1572 mcp->out_mb |= MBX_10;
1574 mcp->mb[1] = (loop_id << 8) | opt;
1576 mcp->mb[2] = domain;
1577 mcp->mb[3] = area << 8 | al_pa;
1579 mcp->in_mb = MBX_7|MBX_6|MBX_2|MBX_1|MBX_0;
1580 mcp->tov = (ha->login_timeout * 2) + (ha->login_timeout / 2);
1582 rval = qla2x00_mailbox_command(ha, mcp);
1584 /* Return mailbox statuses. */
1591 /* COS retrieved from Get-Port-Database mailbox command. */
1595 if (rval != QLA_SUCCESS) {
1596 /* RLU tmp code: need to change main mailbox_command function to
1597 * return ok even when the mailbox completion value is not
1598 * SUCCESS. The caller needs to be responsible to interpret
1599 * the return values of this mailbox command if we're not
1600 * to change too much of the existing code.
1602 if (mcp->mb[0] == 0x4001 || mcp->mb[0] == 0x4002 ||
1603 mcp->mb[0] == 0x4003 || mcp->mb[0] == 0x4005 ||
1604 mcp->mb[0] == 0x4006)
1608 DEBUG2_3_11(printk("qla2x00_login_fabric(%ld): failed=%x "
1609 "mb[0]=%x mb[1]=%x mb[2]=%x.\n", ha->host_no, rval,
1610 mcp->mb[0], mcp->mb[1], mcp->mb[2]);)
1613 DEBUG11(printk("qla2x00_login_fabric(%ld): done.\n",
1621 * qla2x00_login_local_device
1622 * Issue login loop port mailbox command.
1625 * ha = adapter block pointer.
1626 * loop_id = device loop ID.
1627 * opt = command options.
1630 * Return status code.
1637 qla2x00_login_local_device(scsi_qla_host_t *ha, uint16_t loop_id,
1638 uint16_t *mb_ret, uint8_t opt)
1642 mbx_cmd_t *mcp = &mc;
1644 DEBUG3(printk("%s(%ld): entered.\n", __func__, ha->host_no);)
1646 mcp->mb[0] = MBC_LOGIN_LOOP_PORT;
1647 if (HAS_EXTENDED_IDS(ha))
1648 mcp->mb[1] = loop_id;
1650 mcp->mb[1] = loop_id << 8;
1652 mcp->out_mb = MBX_2|MBX_1|MBX_0;
1653 mcp->in_mb = MBX_7|MBX_6|MBX_1|MBX_0;
1654 mcp->tov = (ha->login_timeout * 2) + (ha->login_timeout / 2);
1656 rval = qla2x00_mailbox_command(ha, mcp);
1658 /* Return mailbox statuses. */
1659 if (mb_ret != NULL) {
1660 mb_ret[0] = mcp->mb[0];
1661 mb_ret[1] = mcp->mb[1];
1662 mb_ret[6] = mcp->mb[6];
1663 mb_ret[7] = mcp->mb[7];
1666 if (rval != QLA_SUCCESS) {
1667 /* AV tmp code: need to change main mailbox_command function to
1668 * return ok even when the mailbox completion value is not
1669 * SUCCESS. The caller needs to be responsible to interpret
1670 * the return values of this mailbox command if we're not
1671 * to change too much of the existing code.
1673 if (mcp->mb[0] == 0x4005 || mcp->mb[0] == 0x4006)
1676 DEBUG(printk("%s(%ld): failed=%x mb[0]=%x mb[1]=%x "
1677 "mb[6]=%x mb[7]=%x.\n", __func__, ha->host_no, rval,
1678 mcp->mb[0], mcp->mb[1], mcp->mb[6], mcp->mb[7]);)
1679 DEBUG2_3(printk("%s(%ld): failed=%x mb[0]=%x mb[1]=%x "
1680 "mb[6]=%x mb[7]=%x.\n", __func__, ha->host_no, rval,
1681 mcp->mb[0], mcp->mb[1], mcp->mb[6], mcp->mb[7]);)
1684 DEBUG3(printk("%s(%ld): done.\n", __func__, ha->host_no);)
1691 qla24xx_fabric_logout(scsi_qla_host_t *ha, uint16_t loop_id, uint8_t domain,
1692 uint8_t area, uint8_t al_pa)
1695 struct logio_entry_24xx *lg;
1698 DEBUG11(printk("%s(%ld): entered.\n", __func__, ha->host_no);)
1700 lg = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, &lg_dma);
1702 DEBUG2_3(printk("%s(%ld): failed to allocate Logout IOCB.\n",
1703 __func__, ha->host_no));
1704 return QLA_MEMORY_ALLOC_FAILED;
1706 memset(lg, 0, sizeof(struct logio_entry_24xx));
1708 lg->entry_type = LOGINOUT_PORT_IOCB_TYPE;
1709 lg->entry_count = 1;
1710 lg->nport_handle = cpu_to_le16(loop_id);
1712 __constant_cpu_to_le16(LCF_COMMAND_LOGO|LCF_EXPL_LOGO);
1713 lg->port_id[0] = al_pa;
1714 lg->port_id[1] = area;
1715 lg->port_id[2] = domain;
1716 rval = qla2x00_issue_iocb(ha, lg, lg_dma, 0);
1717 if (rval != QLA_SUCCESS) {
1718 DEBUG2_3_11(printk("%s(%ld): failed to issue Logout IOCB "
1719 "(%x).\n", __func__, ha->host_no, rval);)
1720 } else if (lg->entry_status != 0) {
1721 DEBUG2_3_11(printk("%s(%ld): failed to complete IOCB "
1722 "-- error status (%x).\n", __func__, ha->host_no,
1724 rval = QLA_FUNCTION_FAILED;
1725 } else if (lg->comp_status != __constant_cpu_to_le16(CS_COMPLETE)) {
1726 DEBUG2_3_11(printk("%s(%ld): failed to complete IOCB "
1727 "-- completion status (%x) ioparam=%x/%x.\n", __func__,
1728 ha->host_no, le16_to_cpu(lg->comp_status),
1729 le32_to_cpu(lg->io_parameter[0]),
1730 le32_to_cpu(lg->io_parameter[1]));)
1733 DEBUG11(printk("%s(%ld): done.\n", __func__, ha->host_no);)
1736 dma_pool_free(ha->s_dma_pool, lg, lg_dma);
1742 * qla2x00_fabric_logout
1743 * Issue logout fabric port mailbox command.
1746 * ha = adapter block pointer.
1747 * loop_id = device loop ID.
1748 * TARGET_QUEUE_LOCK must be released.
1749 * ADAPTER_STATE_LOCK must be released.
1752 * qla2x00 local function return status code.
1758 qla2x00_fabric_logout(scsi_qla_host_t *ha, uint16_t loop_id, uint8_t domain,
1759 uint8_t area, uint8_t al_pa)
1763 mbx_cmd_t *mcp = &mc;
1765 DEBUG11(printk("qla2x00_fabric_logout(%ld): entered.\n",
1768 mcp->mb[0] = MBC_LOGOUT_FABRIC_PORT;
1769 mcp->out_mb = MBX_1|MBX_0;
1770 if (HAS_EXTENDED_IDS(ha)) {
1771 mcp->mb[1] = loop_id;
1773 mcp->out_mb |= MBX_10;
1775 mcp->mb[1] = loop_id << 8;
1778 mcp->in_mb = MBX_1|MBX_0;
1781 rval = qla2x00_mailbox_command(ha, mcp);
1783 if (rval != QLA_SUCCESS) {
1785 DEBUG2_3_11(printk("qla2x00_fabric_logout(%ld): failed=%x "
1786 "mbx1=%x.\n", ha->host_no, rval, mcp->mb[1]);)
1789 DEBUG11(printk("qla2x00_fabric_logout(%ld): done.\n",
1797 * qla2x00_full_login_lip
1798 * Issue full login LIP mailbox command.
1801 * ha = adapter block pointer.
1802 * TARGET_QUEUE_LOCK must be released.
1803 * ADAPTER_STATE_LOCK must be released.
1806 * qla2x00 local function return status code.
1812 qla2x00_full_login_lip(scsi_qla_host_t *ha)
1816 mbx_cmd_t *mcp = &mc;
1818 DEBUG11(printk("qla2x00_full_login_lip(%ld): entered.\n",
1821 mcp->mb[0] = MBC_LIP_FULL_LOGIN;
1825 mcp->out_mb = MBX_3|MBX_2|MBX_1|MBX_0;
1829 rval = qla2x00_mailbox_command(ha, mcp);
1831 if (rval != QLA_SUCCESS) {
1833 DEBUG2_3_11(printk("qla2x00_full_login_lip(%ld): failed=%x.\n",
1834 ha->host_no, rval);)
1837 DEBUG11(printk("qla2x00_full_login_lip(%ld): done.\n",
1845 * qla2x00_get_id_list
1848 * ha = adapter block pointer.
1851 * qla2x00 local function return status code.
1857 qla2x00_get_id_list(scsi_qla_host_t *ha, void *id_list, dma_addr_t id_list_dma,
1862 mbx_cmd_t *mcp = &mc;
1864 DEBUG11(printk("qla2x00_get_id_list(%ld): entered.\n",
1867 if (id_list == NULL)
1868 return QLA_FUNCTION_FAILED;
1870 mcp->mb[0] = MBC_GET_ID_LIST;
1871 mcp->out_mb = MBX_0;
1872 if (IS_QLA24XX(ha) || IS_QLA25XX(ha)) {
1873 mcp->mb[2] = MSW(id_list_dma);
1874 mcp->mb[3] = LSW(id_list_dma);
1875 mcp->mb[6] = MSW(MSD(id_list_dma));
1876 mcp->mb[7] = LSW(MSD(id_list_dma));
1877 mcp->out_mb |= MBX_7|MBX_6|MBX_3|MBX_2;
1879 mcp->mb[1] = MSW(id_list_dma);
1880 mcp->mb[2] = LSW(id_list_dma);
1881 mcp->mb[3] = MSW(MSD(id_list_dma));
1882 mcp->mb[6] = LSW(MSD(id_list_dma));
1883 mcp->out_mb |= MBX_6|MBX_3|MBX_2|MBX_1;
1885 mcp->in_mb = MBX_1|MBX_0;
1888 rval = qla2x00_mailbox_command(ha, mcp);
1890 if (rval != QLA_SUCCESS) {
1892 DEBUG2_3_11(printk("qla2x00_get_id_list(%ld): failed=%x.\n",
1893 ha->host_no, rval);)
1895 *entries = mcp->mb[1];
1896 DEBUG11(printk("qla2x00_get_id_list(%ld): done.\n",
1904 * qla2x00_get_resource_cnts
1905 * Get current firmware resource counts.
1908 * ha = adapter block pointer.
1911 * qla2x00 local function return status code.
1917 qla2x00_get_resource_cnts(scsi_qla_host_t *ha, uint16_t *cur_xchg_cnt,
1918 uint16_t *orig_xchg_cnt, uint16_t *cur_iocb_cnt, uint16_t *orig_iocb_cnt)
1922 mbx_cmd_t *mcp = &mc;
1924 DEBUG11(printk("%s(%ld): entered.\n", __func__, ha->host_no));
1926 mcp->mb[0] = MBC_GET_RESOURCE_COUNTS;
1927 mcp->out_mb = MBX_0;
1928 mcp->in_mb = MBX_10|MBX_7|MBX_6|MBX_3|MBX_2|MBX_1|MBX_0;
1931 rval = qla2x00_mailbox_command(ha, mcp);
1933 if (rval != QLA_SUCCESS) {
1935 DEBUG2_3_11(printk("%s(%ld): failed = %x.\n", __func__,
1936 ha->host_no, mcp->mb[0]);)
1938 DEBUG11(printk("%s(%ld): done. mb1=%x mb2=%x mb3=%x mb6=%x "
1939 "mb7=%x mb10=%x.\n", __func__, ha->host_no,
1940 mcp->mb[1], mcp->mb[2], mcp->mb[3], mcp->mb[6], mcp->mb[7],
1944 *cur_xchg_cnt = mcp->mb[3];
1946 *orig_xchg_cnt = mcp->mb[6];
1948 *cur_iocb_cnt = mcp->mb[7];
1950 *orig_iocb_cnt = mcp->mb[10];
1956 #if defined(QL_DEBUG_LEVEL_3)
1958 * qla2x00_get_fcal_position_map
1959 * Get FCAL (LILP) position map using mailbox command
1962 * ha = adapter state pointer.
1963 * pos_map = buffer pointer (can be NULL).
1966 * qla2x00 local function return status code.
1972 qla2x00_get_fcal_position_map(scsi_qla_host_t *ha, char *pos_map)
1976 mbx_cmd_t *mcp = &mc;
1978 dma_addr_t pmap_dma;
1980 pmap = dma_pool_alloc(ha->s_dma_pool, GFP_ATOMIC, &pmap_dma);
1982 DEBUG2_3_11(printk("%s(%ld): **** Mem Alloc Failed ****",
1983 __func__, ha->host_no));
1984 return QLA_MEMORY_ALLOC_FAILED;
1986 memset(pmap, 0, FCAL_MAP_SIZE);
1988 mcp->mb[0] = MBC_GET_FC_AL_POSITION_MAP;
1989 mcp->mb[2] = MSW(pmap_dma);
1990 mcp->mb[3] = LSW(pmap_dma);
1991 mcp->mb[6] = MSW(MSD(pmap_dma));
1992 mcp->mb[7] = LSW(MSD(pmap_dma));
1993 mcp->out_mb = MBX_7|MBX_6|MBX_3|MBX_2|MBX_0;
1994 mcp->in_mb = MBX_1|MBX_0;
1995 mcp->buf_size = FCAL_MAP_SIZE;
1996 mcp->flags = MBX_DMA_IN;
1997 mcp->tov = (ha->login_timeout * 2) + (ha->login_timeout / 2);
1998 rval = qla2x00_mailbox_command(ha, mcp);
2000 if (rval == QLA_SUCCESS) {
2001 DEBUG11(printk("%s(%ld): (mb0=%x/mb1=%x) FC/AL Position Map "
2002 "size (%x)\n", __func__, ha->host_no, mcp->mb[0],
2003 mcp->mb[1], (unsigned)pmap[0]));
2004 DEBUG11(qla2x00_dump_buffer(pmap, pmap[0] + 1));
2007 memcpy(pos_map, pmap, FCAL_MAP_SIZE);
2009 dma_pool_free(ha->s_dma_pool, pmap, pmap_dma);
2011 if (rval != QLA_SUCCESS) {
2012 DEBUG2_3_11(printk("%s(%ld): failed=%x.\n", __func__,
2013 ha->host_no, rval));
2015 DEBUG11(printk("%s(%ld): done.\n", __func__, ha->host_no));
2022 qla24xx_get_isp_stats(scsi_qla_host_t *ha, uint32_t *dwbuf, uint32_t dwords,
2027 mbx_cmd_t *mcp = &mc;
2028 uint32_t *sbuf, *siter;
2029 dma_addr_t sbuf_dma;
2031 DEBUG11(printk("%s(%ld): entered.\n", __func__, ha->host_no);)
2033 if (dwords > (DMA_POOL_SIZE / 4)) {
2034 DEBUG2_3_11(printk("%s(%ld): Unabled to retrieve %d DWORDs "
2035 "(max %d).\n", __func__, ha->host_no, dwords,
2036 DMA_POOL_SIZE / 4));
2039 sbuf = dma_pool_alloc(ha->s_dma_pool, GFP_ATOMIC, &sbuf_dma);
2041 DEBUG2_3_11(printk("%s(%ld): Failed to allocate memory.\n",
2042 __func__, ha->host_no));
2045 memset(sbuf, 0, DMA_POOL_SIZE);
2047 mcp->mb[0] = MBC_GET_LINK_PRIV_STATS;
2048 mcp->mb[2] = MSW(sbuf_dma);
2049 mcp->mb[3] = LSW(sbuf_dma);
2050 mcp->mb[6] = MSW(MSD(sbuf_dma));
2051 mcp->mb[7] = LSW(MSD(sbuf_dma));
2052 mcp->mb[8] = dwords;
2054 mcp->out_mb = MBX_10|MBX_8|MBX_7|MBX_6|MBX_3|MBX_2|MBX_0;
2055 mcp->in_mb = MBX_2|MBX_1|MBX_0;
2057 mcp->flags = IOCTL_CMD;
2058 rval = qla2x00_mailbox_command(ha, mcp);
2060 if (rval == QLA_SUCCESS) {
2061 if (mcp->mb[0] != MBS_COMMAND_COMPLETE) {
2062 DEBUG2_3_11(printk("%s(%ld): cmd failed. mbx0=%x.\n",
2063 __func__, ha->host_no, mcp->mb[0]));
2064 status[0] = mcp->mb[0];
2067 /* Copy over data -- firmware data is LE. */
2070 *dwbuf++ = le32_to_cpu(*siter++);
2074 DEBUG2_3_11(printk("%s(%ld): failed=%x.\n", __func__,
2075 ha->host_no, rval));
2079 dma_pool_free(ha->s_dma_pool, sbuf, sbuf_dma);
2086 qla24xx_abort_command(scsi_qla_host_t *ha, srb_t *sp)
2090 unsigned long flags = 0;
2092 struct abort_entry_24xx *abt;
2096 DEBUG11(printk("%s(%ld): entered.\n", __func__, ha->host_no);)
2098 fcport = sp->fcport;
2100 spin_lock_irqsave(&ha->hardware_lock, flags);
2101 for (handle = 1; handle < MAX_OUTSTANDING_COMMANDS; handle++) {
2102 if (ha->outstanding_cmds[handle] == sp)
2105 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2106 if (handle == MAX_OUTSTANDING_COMMANDS) {
2107 /* Command not found. */
2108 return QLA_FUNCTION_FAILED;
2111 abt = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, &abt_dma);
2113 DEBUG2_3(printk("%s(%ld): failed to allocate Abort IOCB.\n",
2114 __func__, ha->host_no));
2115 return QLA_MEMORY_ALLOC_FAILED;
2117 memset(abt, 0, sizeof(struct abort_entry_24xx));
2119 abt->entry_type = ABORT_IOCB_TYPE;
2120 abt->entry_count = 1;
2121 abt->nport_handle = cpu_to_le16(fcport->loop_id);
2122 abt->handle_to_abort = handle;
2123 abt->port_id[0] = fcport->d_id.b.al_pa;
2124 abt->port_id[1] = fcport->d_id.b.area;
2125 abt->port_id[2] = fcport->d_id.b.domain;
2126 rval = qla2x00_issue_iocb(ha, abt, abt_dma, 0);
2127 if (rval != QLA_SUCCESS) {
2128 DEBUG2_3_11(printk("%s(%ld): failed to issue IOCB (%x).\n",
2129 __func__, ha->host_no, rval);)
2130 } else if (abt->entry_status != 0) {
2131 DEBUG2_3_11(printk("%s(%ld): failed to complete IOCB "
2132 "-- error status (%x).\n", __func__, ha->host_no,
2133 abt->entry_status));
2134 rval = QLA_FUNCTION_FAILED;
2135 } else if (abt->nport_handle != __constant_cpu_to_le16(0)) {
2136 DEBUG2_3_11(printk("%s(%ld): failed to complete IOCB "
2137 "-- completion status (%x).\n", __func__, ha->host_no,
2138 le16_to_cpu(abt->nport_handle));)
2139 rval = QLA_FUNCTION_FAILED;
2141 DEBUG11(printk("%s(%ld): done.\n", __func__, ha->host_no);)
2142 sp->flags |= SRB_ABORT_PENDING;
2145 dma_pool_free(ha->s_dma_pool, abt, abt_dma);
2150 struct tsk_mgmt_cmd {
2152 struct tsk_mgmt_entry tsk;
2153 struct sts_entry_24xx sts;
2158 qla24xx_abort_target(fc_port_t *fcport)
2161 struct tsk_mgmt_cmd *tsk;
2163 scsi_qla_host_t *ha;
2168 DEBUG11(printk("%s(%ld): entered.\n", __func__, fcport->ha->host_no);)
2171 tsk = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, &tsk_dma);
2173 DEBUG2_3(printk("%s(%ld): failed to allocate Task Management "
2174 "IOCB.\n", __func__, ha->host_no));
2175 return QLA_MEMORY_ALLOC_FAILED;
2177 memset(tsk, 0, sizeof(struct tsk_mgmt_cmd));
2179 tsk->p.tsk.entry_type = TSK_MGMT_IOCB_TYPE;
2180 tsk->p.tsk.entry_count = 1;
2181 tsk->p.tsk.nport_handle = cpu_to_le16(fcport->loop_id);
2182 tsk->p.tsk.timeout = __constant_cpu_to_le16(25);
2183 tsk->p.tsk.control_flags = __constant_cpu_to_le32(TCF_TARGET_RESET);
2184 tsk->p.tsk.port_id[0] = fcport->d_id.b.al_pa;
2185 tsk->p.tsk.port_id[1] = fcport->d_id.b.area;
2186 tsk->p.tsk.port_id[2] = fcport->d_id.b.domain;
2187 rval = qla2x00_issue_iocb(ha, tsk, tsk_dma, 0);
2188 if (rval != QLA_SUCCESS) {
2189 DEBUG2_3_11(printk("%s(%ld): failed to issue Target Reset IOCB "
2190 "(%x).\n", __func__, ha->host_no, rval);)
2192 } else if (tsk->p.sts.entry_status != 0) {
2193 DEBUG2_3_11(printk("%s(%ld): failed to complete IOCB "
2194 "-- error status (%x).\n", __func__, ha->host_no,
2195 tsk->p.sts.entry_status));
2196 rval = QLA_FUNCTION_FAILED;
2198 } else if (tsk->p.sts.comp_status !=
2199 __constant_cpu_to_le16(CS_COMPLETE)) {
2200 DEBUG2_3_11(printk("%s(%ld): failed to complete IOCB "
2201 "-- completion status (%x).\n", __func__,
2202 ha->host_no, le16_to_cpu(tsk->p.sts.comp_status));)
2203 rval = QLA_FUNCTION_FAILED;
2207 /* Issue marker IOCB. */
2208 rval = qla2x00_marker(ha, fcport->loop_id, 0, MK_SYNC_ID);
2209 if (rval != QLA_SUCCESS) {
2210 DEBUG2_3_11(printk("%s(%ld): failed to issue Marker IOCB "
2211 "(%x).\n", __func__, ha->host_no, rval);)
2213 DEBUG11(printk("%s(%ld): done.\n", __func__, ha->host_no);)
2217 dma_pool_free(ha->s_dma_pool, tsk, tsk_dma);
2223 qla2x00_system_error(scsi_qla_host_t *ha)
2227 mbx_cmd_t *mcp = &mc;
2229 if (!IS_QLA24XX(ha) && !IS_QLA25XX(ha))
2230 return QLA_FUNCTION_FAILED;
2232 DEBUG11(printk("%s(%ld): entered.\n", __func__, ha->host_no));
2234 mcp->mb[0] = MBC_GEN_SYSTEM_ERROR;
2235 mcp->out_mb = MBX_0;
2239 rval = qla2x00_mailbox_command(ha, mcp);
2241 if (rval != QLA_SUCCESS) {
2242 DEBUG2_3_11(printk("%s(%ld): failed=%x.\n", __func__,
2243 ha->host_no, rval));
2245 DEBUG11(printk("%s(%ld): done.\n", __func__, ha->host_no));
2252 * qla2x00_get_serdes_params() -
2258 qla2x00_get_serdes_params(scsi_qla_host_t *ha, uint16_t *sw_em_1g,
2259 uint16_t *sw_em_2g, uint16_t *sw_em_4g)
2263 mbx_cmd_t *mcp = &mc;
2265 DEBUG11(printk("%s(%ld): entered.\n", __func__, ha->host_no));
2267 mcp->mb[0] = MBC_SERDES_PARAMS;
2269 mcp->out_mb = MBX_1|MBX_0;
2270 mcp->in_mb = MBX_4|MBX_3|MBX_2|MBX_0;
2273 rval = qla2x00_mailbox_command(ha, mcp);
2275 if (rval != QLA_SUCCESS) {
2277 DEBUG2_3_11(printk("%s(%ld): failed=%x (%x).\n", __func__,
2278 ha->host_no, rval, mcp->mb[0]));
2280 DEBUG11(printk("%s(%ld): done.\n", __func__, ha->host_no));
2283 *sw_em_1g = mcp->mb[2];
2285 *sw_em_2g = mcp->mb[3];
2287 *sw_em_4g = mcp->mb[4];
2294 * qla2x00_set_serdes_params() -
2300 qla2x00_set_serdes_params(scsi_qla_host_t *ha, uint16_t sw_em_1g,
2301 uint16_t sw_em_2g, uint16_t sw_em_4g)
2305 mbx_cmd_t *mcp = &mc;
2307 DEBUG11(printk("%s(%ld): entered.\n", __func__, ha->host_no));
2309 mcp->mb[0] = MBC_SERDES_PARAMS;
2311 mcp->mb[2] = sw_em_1g;
2312 mcp->mb[3] = sw_em_2g;
2313 mcp->mb[4] = sw_em_4g;
2314 mcp->out_mb = MBX_4|MBX_3|MBX_2|MBX_1|MBX_0;
2318 rval = qla2x00_mailbox_command(ha, mcp);
2320 if (rval != QLA_SUCCESS) {
2322 DEBUG2_3_11(printk("%s(%ld): failed=%x (%x).\n", __func__,
2323 ha->host_no, rval, mcp->mb[0]));
2326 DEBUG11(printk("%s(%ld): done.\n", __func__, ha->host_no));
2333 qla2x00_stop_firmware(scsi_qla_host_t *ha)
2337 mbx_cmd_t *mcp = &mc;
2339 if (!IS_QLA24XX(ha) && !IS_QLA25XX(ha))
2340 return QLA_FUNCTION_FAILED;
2342 DEBUG11(printk("%s(%ld): entered.\n", __func__, ha->host_no));
2344 mcp->mb[0] = MBC_STOP_FIRMWARE;
2345 mcp->out_mb = MBX_0;
2349 rval = qla2x00_mailbox_command(ha, mcp);
2351 if (rval != QLA_SUCCESS) {
2352 DEBUG2_3_11(printk("%s(%ld): failed=%x.\n", __func__,
2353 ha->host_no, rval));
2355 DEBUG11(printk("%s(%ld): done.\n", __func__, ha->host_no));