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>
12 qla2x00_mbx_sem_timeout(unsigned long data
)
14 struct semaphore
*sem_ptr
= (struct semaphore
*)data
;
16 DEBUG11(printk("qla2x00_sem_timeout: entered.\n"));
18 if (sem_ptr
!= NULL
) {
22 DEBUG11(printk("qla2x00_mbx_sem_timeout: exiting.\n"));
26 * qla2x00_mailbox_command
27 * Issue mailbox command and waits for completion.
30 * ha = adapter block pointer.
31 * mcp = driver internal mbx struct pointer.
34 * mb[MAX_MAILBOX_REGISTER_COUNT] = returned mailbox data.
37 * 0 : QLA_SUCCESS = cmd performed success
38 * 1 : QLA_FUNCTION_FAILED (error encountered)
39 * 6 : QLA_FUNCTION_TIMEOUT (timeout condition encountered)
45 qla2x00_mailbox_command(scsi_qla_host_t
*ha
, mbx_cmd_t
*mcp
)
48 unsigned long flags
= 0;
49 device_reg_t __iomem
*reg
= ha
->iobase
;
50 struct timer_list tmp_intr_timer
;
52 uint8_t io_lock_on
= ha
->flags
.init_done
;
55 uint16_t __iomem
*optr
;
58 unsigned long mbx_flags
= 0;
59 unsigned long wait_time
;
62 abort_active
= test_bit(ABORT_ISP_ACTIVE
, &ha
->dpc_flags
);
64 DEBUG11(printk("%s(%ld): entered.\n", __func__
, ha
->host_no
));
67 * Wait for active mailbox commands to finish by waiting at most tov
68 * seconds. This is to serialize actual issuing of mailbox cmds during
72 if (qla2x00_down_timeout(&ha
->mbx_cmd_sem
, mcp
->tov
* HZ
)) {
73 /* Timeout occurred. Return error. */
74 DEBUG2_3_11(printk("%s(%ld): cmd access timeout. "
75 "Exiting.\n", __func__
, ha
->host_no
));
76 return QLA_FUNCTION_TIMEOUT
;
80 ha
->flags
.mbox_busy
= 1;
81 /* Save mailbox command for debug */
84 /* Try to get mailbox register access */
86 spin_lock_irqsave(&ha
->mbx_reg_lock
, mbx_flags
);
88 DEBUG11(printk("scsi(%ld): prepare to issue mbox cmd=0x%x.\n",
89 ha
->host_no
, mcp
->mb
[0]));
91 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
93 /* Load mailbox registers. */
94 if (IS_QLA24XX(ha
) || IS_QLA54XX(ha
))
95 optr
= (uint16_t __iomem
*)®
->isp24
.mailbox0
;
97 optr
= (uint16_t __iomem
*)MAILBOX_REG(ha
, ®
->isp
, 0);
100 command
= mcp
->mb
[0];
101 mboxes
= mcp
->out_mb
;
103 for (cnt
= 0; cnt
< ha
->mbx_count
; cnt
++) {
104 if (IS_QLA2200(ha
) && cnt
== 8)
106 (uint16_t __iomem
*)MAILBOX_REG(ha
, ®
->isp
, 8);
108 WRT_REG_WORD(optr
, *iptr
);
115 #if defined(QL_DEBUG_LEVEL_1)
116 printk("%s(%ld): Loaded MBX registers (displayed in bytes) = \n",
117 __func__
, ha
->host_no
);
118 qla2x00_dump_buffer((uint8_t *)mcp
->mb
, 16);
120 qla2x00_dump_buffer(((uint8_t *)mcp
->mb
+ 0x10), 16);
122 qla2x00_dump_buffer(((uint8_t *)mcp
->mb
+ 0x20), 8);
124 printk("%s(%ld): I/O address = %p.\n", __func__
, ha
->host_no
, optr
);
125 qla2x00_dump_regs(ha
);
128 /* Issue set host interrupt command to send cmd out. */
129 ha
->flags
.mbox_int
= 0;
130 clear_bit(MBX_INTERRUPT
, &ha
->mbx_cmd_flags
);
132 /* Unlock mbx registers and wait for interrupt */
133 DEBUG11(printk("%s(%ld): going to unlock irq & waiting for interrupt. "
134 "jiffies=%lx.\n", __func__
, ha
->host_no
, jiffies
));
136 /* Wait for mbx cmd completion until timeout */
138 if (!abort_active
&& io_lock_on
) {
139 /* sleep on completion semaphore */
140 DEBUG11(printk("%s(%ld): INTERRUPT MODE. Initializing timer.\n",
141 __func__
, ha
->host_no
));
143 init_timer(&tmp_intr_timer
);
144 tmp_intr_timer
.data
= (unsigned long)&ha
->mbx_intr_sem
;
145 tmp_intr_timer
.expires
= jiffies
+ mcp
->tov
* HZ
;
146 tmp_intr_timer
.function
=
147 (void (*)(unsigned long))qla2x00_mbx_sem_timeout
;
149 DEBUG11(printk("%s(%ld): Adding timer.\n", __func__
,
151 add_timer(&tmp_intr_timer
);
153 DEBUG11(printk("%s(%ld): going to unlock & sleep. "
154 "time=0x%lx.\n", __func__
, ha
->host_no
, jiffies
));
156 set_bit(MBX_INTR_WAIT
, &ha
->mbx_cmd_flags
);
158 if (IS_QLA24XX(ha
) || IS_QLA54XX(ha
))
159 WRT_REG_DWORD(®
->isp24
.hccr
, HCCRX_SET_HOST_INT
);
161 WRT_REG_WORD(®
->isp
.hccr
, HCCR_SET_HOST_INT
);
162 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
165 spin_unlock_irqrestore(&ha
->mbx_reg_lock
, mbx_flags
);
167 /* Wait for either the timer to expire
168 * or the mbox completion interrupt
170 down(&ha
->mbx_intr_sem
);
172 DEBUG11(printk("%s(%ld): waking up. time=0x%lx\n", __func__
,
173 ha
->host_no
, jiffies
));
174 clear_bit(MBX_INTR_WAIT
, &ha
->mbx_cmd_flags
);
176 /* delete the timer */
177 del_timer(&tmp_intr_timer
);
179 DEBUG3_11(printk("%s(%ld): cmd=%x POLLING MODE.\n", __func__
,
180 ha
->host_no
, command
));
182 if (IS_QLA24XX(ha
) || IS_QLA54XX(ha
))
183 WRT_REG_DWORD(®
->isp24
.hccr
, HCCRX_SET_HOST_INT
);
185 WRT_REG_WORD(®
->isp
.hccr
, HCCR_SET_HOST_INT
);
186 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
188 spin_unlock_irqrestore(&ha
->mbx_reg_lock
, mbx_flags
);
190 wait_time
= jiffies
+ mcp
->tov
* HZ
; /* wait at most tov secs */
191 while (!ha
->flags
.mbox_int
) {
192 if (time_after(jiffies
, wait_time
))
195 /* Check for pending interrupts. */
198 if (command
!= MBC_LOAD_RISC_RAM_EXTENDED
&&
205 spin_lock_irqsave(&ha
->mbx_reg_lock
, mbx_flags
);
207 /* Check whether we timed out */
208 if (ha
->flags
.mbox_int
) {
211 DEBUG3_11(printk("%s(%ld): cmd %x completed.\n", __func__
,
212 ha
->host_no
, command
));
214 /* Got interrupt. Clear the flag. */
215 ha
->flags
.mbox_int
= 0;
216 clear_bit(MBX_INTERRUPT
, &ha
->mbx_cmd_flags
);
218 if (ha
->mailbox_out
[0] != MBS_COMMAND_COMPLETE
)
219 rval
= QLA_FUNCTION_FAILED
;
221 /* Load return mailbox registers. */
223 iptr
= (uint16_t *)&ha
->mailbox_out
[0];
225 for (cnt
= 0; cnt
< ha
->mbx_count
; cnt
++) {
235 #if defined(QL_DEBUG_LEVEL_2) || defined(QL_DEBUG_LEVEL_3) || \
236 defined(QL_DEBUG_LEVEL_11)
240 if (IS_QLA24XX(ha
) || IS_QLA54XX(ha
)) {
241 mb0
= RD_REG_WORD(®
->isp24
.mailbox0
);
242 ictrl
= RD_REG_DWORD(®
->isp24
.ictrl
);
244 mb0
= RD_MAILBOX_REG(ha
, ®
->isp
, 0);
245 ictrl
= RD_REG_WORD(®
->isp
.ictrl
);
247 printk("%s(%ld): **** MB Command Timeout for cmd %x ****\n",
248 __func__
, ha
->host_no
, command
);
249 printk("%s(%ld): icontrol=%x jiffies=%lx\n", __func__
,
250 ha
->host_no
, ictrl
, jiffies
);
251 printk("%s(%ld): *** mailbox[0] = 0x%x ***\n", __func__
,
253 qla2x00_dump_regs(ha
);
256 rval
= QLA_FUNCTION_TIMEOUT
;
260 spin_unlock_irqrestore(&ha
->mbx_reg_lock
, mbx_flags
);
262 ha
->flags
.mbox_busy
= 0;
268 DEBUG11(printk("%s(%ld): checking for additional resp "
269 "interrupt.\n", __func__
, ha
->host_no
));
271 /* polling mode for non isp_abort commands. */
275 if (rval
== QLA_FUNCTION_TIMEOUT
&&
276 mcp
->mb
[0] != MBC_GEN_SYSTEM_ERROR
) {
277 if (!io_lock_on
|| (mcp
->flags
& IOCTL_CMD
)) {
278 /* not in dpc. schedule it for dpc to take over. */
279 DEBUG(printk("%s(%ld): timeout schedule "
280 "isp_abort_needed.\n", __func__
, ha
->host_no
));
281 DEBUG2_3_11(printk("%s(%ld): timeout schedule "
282 "isp_abort_needed.\n", __func__
, ha
->host_no
));
283 qla_printk(KERN_WARNING
, ha
,
284 "Mailbox command timeout occured. Scheduling ISP "
286 set_bit(ISP_ABORT_NEEDED
, &ha
->dpc_flags
);
287 qla2xxx_wake_dpc(ha
);
288 } else if (!abort_active
) {
289 /* call abort directly since we are in the DPC thread */
290 DEBUG(printk("%s(%ld): timeout calling abort_isp\n",
291 __func__
, ha
->host_no
));
292 DEBUG2_3_11(printk("%s(%ld): timeout calling "
293 "abort_isp\n", __func__
, ha
->host_no
));
294 qla_printk(KERN_WARNING
, ha
,
295 "Mailbox command timeout occured. Issuing ISP "
298 set_bit(ABORT_ISP_ACTIVE
, &ha
->dpc_flags
);
299 clear_bit(ISP_ABORT_NEEDED
, &ha
->dpc_flags
);
300 if (qla2x00_abort_isp(ha
)) {
301 /* Failed. retry later. */
302 set_bit(ISP_ABORT_NEEDED
, &ha
->dpc_flags
);
304 clear_bit(ABORT_ISP_ACTIVE
, &ha
->dpc_flags
);
305 DEBUG(printk("%s(%ld): finished abort_isp\n", __func__
,
307 DEBUG2_3_11(printk("%s(%ld): finished abort_isp\n",
308 __func__
, ha
->host_no
));
312 /* Allow next mbx cmd to come in. */
314 up(&ha
->mbx_cmd_sem
);
317 DEBUG2_3_11(printk("%s(%ld): **** FAILED. mbx0=%x, mbx1=%x, "
318 "mbx2=%x, cmd=%x ****\n", __func__
, ha
->host_no
,
319 mcp
->mb
[0], mcp
->mb
[1], mcp
->mb
[2], command
));
321 DEBUG11(printk("%s(%ld): done.\n", __func__
, ha
->host_no
));
328 qla2x00_load_ram(scsi_qla_host_t
*ha
, dma_addr_t req_dma
, uint32_t risc_addr
,
329 uint32_t risc_code_size
)
333 mbx_cmd_t
*mcp
= &mc
;
335 DEBUG11(printk("%s(%ld): entered.\n", __func__
, ha
->host_no
));
337 if (MSW(risc_addr
) || IS_QLA24XX(ha
) || IS_QLA54XX(ha
)) {
338 mcp
->mb
[0] = MBC_LOAD_RISC_RAM_EXTENDED
;
339 mcp
->mb
[8] = MSW(risc_addr
);
340 mcp
->out_mb
= MBX_8
|MBX_0
;
342 mcp
->mb
[0] = MBC_LOAD_RISC_RAM
;
345 mcp
->mb
[1] = LSW(risc_addr
);
346 mcp
->mb
[2] = MSW(req_dma
);
347 mcp
->mb
[3] = LSW(req_dma
);
348 mcp
->mb
[6] = MSW(MSD(req_dma
));
349 mcp
->mb
[7] = LSW(MSD(req_dma
));
350 mcp
->out_mb
|= MBX_7
|MBX_6
|MBX_3
|MBX_2
|MBX_1
;
351 if (IS_QLA24XX(ha
) || IS_QLA54XX(ha
)) {
352 mcp
->mb
[4] = MSW(risc_code_size
);
353 mcp
->mb
[5] = LSW(risc_code_size
);
354 mcp
->out_mb
|= MBX_5
|MBX_4
;
356 mcp
->mb
[4] = LSW(risc_code_size
);
357 mcp
->out_mb
|= MBX_4
;
363 rval
= qla2x00_mailbox_command(ha
, mcp
);
365 if (rval
!= QLA_SUCCESS
) {
366 DEBUG2_3_11(printk("%s(%ld): failed=%x mb[0]=%x.\n", __func__
,
367 ha
->host_no
, rval
, mcp
->mb
[0]));
369 DEBUG11(printk("%s(%ld): done.\n", __func__
, ha
->host_no
));
377 * Start adapter firmware.
380 * ha = adapter block pointer.
381 * TARGET_QUEUE_LOCK must be released.
382 * ADAPTER_STATE_LOCK must be released.
385 * qla2x00 local function return status code.
391 qla2x00_execute_fw(scsi_qla_host_t
*ha
, uint32_t risc_addr
)
395 mbx_cmd_t
*mcp
= &mc
;
397 DEBUG11(printk("%s(%ld): entered.\n", __func__
, ha
->host_no
));
399 mcp
->mb
[0] = MBC_EXECUTE_FIRMWARE
;
402 if (IS_QLA24XX(ha
) || IS_QLA54XX(ha
)) {
403 mcp
->mb
[1] = MSW(risc_addr
);
404 mcp
->mb
[2] = LSW(risc_addr
);
406 mcp
->out_mb
|= MBX_3
|MBX_2
|MBX_1
;
409 mcp
->mb
[1] = LSW(risc_addr
);
410 mcp
->out_mb
|= MBX_1
;
411 if (IS_QLA2322(ha
) || IS_QLA6322(ha
)) {
413 mcp
->out_mb
|= MBX_2
;
419 rval
= qla2x00_mailbox_command(ha
, mcp
);
421 if (rval
!= QLA_SUCCESS
) {
422 DEBUG2_3_11(printk("%s(%ld): failed=%x mb[0]=%x.\n", __func__
,
423 ha
->host_no
, rval
, mcp
->mb
[0]));
425 if (IS_QLA24XX(ha
) || IS_QLA54XX(ha
)) {
426 DEBUG11(printk("%s(%ld): done exchanges=%x.\n",
427 __func__
, ha
->host_no
, mcp
->mb
[1]));
429 DEBUG11(printk("%s(%ld): done.\n", __func__
,
438 * qla2x00_get_fw_version
439 * Get firmware version.
442 * ha: adapter state pointer.
443 * major: pointer for major number.
444 * minor: pointer for minor number.
445 * subminor: pointer for subminor number.
448 * qla2x00 local function return status code.
454 qla2x00_get_fw_version(scsi_qla_host_t
*ha
, uint16_t *major
, uint16_t *minor
,
455 uint16_t *subminor
, uint16_t *attributes
, uint32_t *memory
)
459 mbx_cmd_t
*mcp
= &mc
;
461 DEBUG11(printk("%s(%ld): entered.\n", __func__
, ha
->host_no
));
463 mcp
->mb
[0] = MBC_GET_FIRMWARE_VERSION
;
465 mcp
->in_mb
= MBX_6
|MBX_5
|MBX_4
|MBX_3
|MBX_2
|MBX_1
|MBX_0
;
468 rval
= qla2x00_mailbox_command(ha
, mcp
);
470 /* Return mailbox data. */
473 *subminor
= mcp
->mb
[3];
474 *attributes
= mcp
->mb
[6];
475 if (IS_QLA2100(ha
) || IS_QLA2200(ha
))
476 *memory
= 0x1FFFF; /* Defaults to 128KB. */
478 *memory
= (mcp
->mb
[5] << 16) | mcp
->mb
[4];
480 if (rval
!= QLA_SUCCESS
) {
482 DEBUG2_3_11(printk("%s(%ld): failed=%x.\n", __func__
,
486 DEBUG11(printk("%s(%ld): done.\n", __func__
, ha
->host_no
));
491 * qla2x00_get_fw_options
492 * Set firmware options.
495 * ha = adapter block pointer.
496 * fwopt = pointer for firmware options.
499 * qla2x00 local function return status code.
505 qla2x00_get_fw_options(scsi_qla_host_t
*ha
, uint16_t *fwopts
)
509 mbx_cmd_t
*mcp
= &mc
;
511 DEBUG11(printk("%s(%ld): entered.\n", __func__
, ha
->host_no
));
513 mcp
->mb
[0] = MBC_GET_FIRMWARE_OPTION
;
515 mcp
->in_mb
= MBX_3
|MBX_2
|MBX_1
|MBX_0
;
518 rval
= qla2x00_mailbox_command(ha
, mcp
);
520 if (rval
!= QLA_SUCCESS
) {
522 DEBUG2_3_11(printk("%s(%ld): failed=%x.\n", __func__
,
525 fwopts
[0] = mcp
->mb
[0];
526 fwopts
[1] = mcp
->mb
[1];
527 fwopts
[2] = mcp
->mb
[2];
528 fwopts
[3] = mcp
->mb
[3];
530 DEBUG11(printk("%s(%ld): done.\n", __func__
, ha
->host_no
));
538 * qla2x00_set_fw_options
539 * Set firmware options.
542 * ha = adapter block pointer.
543 * fwopt = pointer for firmware options.
546 * qla2x00 local function return status code.
552 qla2x00_set_fw_options(scsi_qla_host_t
*ha
, uint16_t *fwopts
)
556 mbx_cmd_t
*mcp
= &mc
;
558 DEBUG11(printk("%s(%ld): entered.\n", __func__
, ha
->host_no
));
560 mcp
->mb
[0] = MBC_SET_FIRMWARE_OPTION
;
561 mcp
->mb
[1] = fwopts
[1];
562 mcp
->mb
[2] = fwopts
[2];
563 mcp
->mb
[3] = fwopts
[3];
564 mcp
->out_mb
= MBX_3
|MBX_2
|MBX_1
|MBX_0
;
566 if (IS_QLA24XX(ha
) || IS_QLA54XX(ha
)) {
569 mcp
->mb
[10] = fwopts
[10];
570 mcp
->mb
[11] = fwopts
[11];
571 mcp
->mb
[12] = 0; /* Undocumented, but used */
572 mcp
->out_mb
|= MBX_12
|MBX_11
|MBX_10
;
576 rval
= qla2x00_mailbox_command(ha
, mcp
);
578 fwopts
[0] = mcp
->mb
[0];
580 if (rval
!= QLA_SUCCESS
) {
582 DEBUG2_3_11(printk("%s(%ld): failed=%x (%x/%x).\n", __func__
,
583 ha
->host_no
, rval
, mcp
->mb
[0], mcp
->mb
[1]));
586 DEBUG11(printk("%s(%ld): done.\n", __func__
, ha
->host_no
));
593 * qla2x00_mbx_reg_test
594 * Mailbox register wrap test.
597 * ha = adapter block pointer.
598 * TARGET_QUEUE_LOCK must be released.
599 * ADAPTER_STATE_LOCK must be released.
602 * qla2x00 local function return status code.
608 qla2x00_mbx_reg_test(scsi_qla_host_t
*ha
)
612 mbx_cmd_t
*mcp
= &mc
;
614 DEBUG11(printk("qla2x00_mbx_reg_test(%ld): entered.\n", ha
->host_no
));
616 mcp
->mb
[0] = MBC_MAILBOX_REGISTER_TEST
;
624 mcp
->out_mb
= MBX_7
|MBX_6
|MBX_5
|MBX_4
|MBX_3
|MBX_2
|MBX_1
|MBX_0
;
625 mcp
->in_mb
= MBX_7
|MBX_6
|MBX_5
|MBX_4
|MBX_3
|MBX_2
|MBX_1
|MBX_0
;
628 rval
= qla2x00_mailbox_command(ha
, mcp
);
630 if (rval
== QLA_SUCCESS
) {
631 if (mcp
->mb
[1] != 0xAAAA || mcp
->mb
[2] != 0x5555 ||
632 mcp
->mb
[3] != 0xAA55 || mcp
->mb
[4] != 0x55AA)
633 rval
= QLA_FUNCTION_FAILED
;
634 if (mcp
->mb
[5] != 0xA5A5 || mcp
->mb
[6] != 0x5A5A ||
635 mcp
->mb
[7] != 0x2525)
636 rval
= QLA_FUNCTION_FAILED
;
639 if (rval
!= QLA_SUCCESS
) {
641 DEBUG2_3_11(printk("qla2x00_mbx_reg_test(%ld): failed=%x.\n",
645 DEBUG11(printk("qla2x00_mbx_reg_test(%ld): done.\n",
653 * qla2x00_verify_checksum
654 * Verify firmware checksum.
657 * ha = adapter block pointer.
658 * TARGET_QUEUE_LOCK must be released.
659 * ADAPTER_STATE_LOCK must be released.
662 * qla2x00 local function return status code.
668 qla2x00_verify_checksum(scsi_qla_host_t
*ha
, uint32_t risc_addr
)
672 mbx_cmd_t
*mcp
= &mc
;
674 DEBUG11(printk("%s(%ld): entered.\n", __func__
, ha
->host_no
));
676 mcp
->mb
[0] = MBC_VERIFY_CHECKSUM
;
679 if (IS_QLA24XX(ha
) || IS_QLA54XX(ha
)) {
680 mcp
->mb
[1] = MSW(risc_addr
);
681 mcp
->mb
[2] = LSW(risc_addr
);
682 mcp
->out_mb
|= MBX_2
|MBX_1
;
683 mcp
->in_mb
|= MBX_2
|MBX_1
;
685 mcp
->mb
[1] = LSW(risc_addr
);
686 mcp
->out_mb
|= MBX_1
;
692 rval
= qla2x00_mailbox_command(ha
, mcp
);
694 if (rval
!= QLA_SUCCESS
) {
695 DEBUG2_3_11(printk("%s(%ld): failed=%x chk sum=%x.\n", __func__
,
696 ha
->host_no
, rval
, (IS_QLA24XX(ha
) || IS_QLA54XX(ha
) ?
697 (mcp
->mb
[2] << 16) | mcp
->mb
[1]: mcp
->mb
[1])));
699 DEBUG11(printk("%s(%ld): done.\n", __func__
, ha
->host_no
));
707 * Issue IOCB using mailbox command
710 * ha = adapter state pointer.
711 * buffer = buffer pointer.
712 * phys_addr = physical address of buffer.
713 * size = size of buffer.
714 * TARGET_QUEUE_LOCK must be released.
715 * ADAPTER_STATE_LOCK must be released.
718 * qla2x00 local function return status code.
724 qla2x00_issue_iocb(scsi_qla_host_t
*ha
, void* buffer
, dma_addr_t phys_addr
,
729 mbx_cmd_t
*mcp
= &mc
;
731 mcp
->mb
[0] = MBC_IOCB_COMMAND_A64
;
733 mcp
->mb
[2] = MSW(phys_addr
);
734 mcp
->mb
[3] = LSW(phys_addr
);
735 mcp
->mb
[6] = MSW(MSD(phys_addr
));
736 mcp
->mb
[7] = LSW(MSD(phys_addr
));
737 mcp
->out_mb
= MBX_7
|MBX_6
|MBX_3
|MBX_2
|MBX_1
|MBX_0
;
738 mcp
->in_mb
= MBX_2
|MBX_0
;
741 rval
= qla2x00_mailbox_command(ha
, mcp
);
743 if (rval
!= QLA_SUCCESS
) {
745 DEBUG(printk("qla2x00_issue_iocb(%ld): failed rval 0x%x\n",
747 DEBUG2(printk("qla2x00_issue_iocb(%ld): failed rval 0x%x\n",
750 sts_entry_t
*sts_entry
= (sts_entry_t
*) buffer
;
752 /* Mask reserved bits. */
753 sts_entry
->entry_status
&=
754 IS_QLA24XX(ha
) || IS_QLA54XX(ha
) ? RF_MASK_24XX
:RF_MASK
;
761 * qla2x00_abort_command
762 * Abort command aborts a specified IOCB.
765 * ha = adapter block pointer.
766 * sp = SB structure pointer.
769 * qla2x00 local function return status code.
775 qla2x00_abort_command(scsi_qla_host_t
*ha
, srb_t
*sp
)
777 unsigned long flags
= 0;
782 mbx_cmd_t
*mcp
= &mc
;
784 DEBUG11(printk("qla2x00_abort_command(%ld): entered.\n", ha
->host_no
));
788 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
789 for (handle
= 1; handle
< MAX_OUTSTANDING_COMMANDS
; handle
++) {
790 if (ha
->outstanding_cmds
[handle
] == sp
)
793 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
795 if (handle
== MAX_OUTSTANDING_COMMANDS
) {
796 /* command not found */
797 return QLA_FUNCTION_FAILED
;
800 mcp
->mb
[0] = MBC_ABORT_COMMAND
;
801 if (HAS_EXTENDED_IDS(ha
))
802 mcp
->mb
[1] = fcport
->loop_id
;
804 mcp
->mb
[1] = fcport
->loop_id
<< 8;
805 mcp
->mb
[2] = (uint16_t)handle
;
806 mcp
->mb
[3] = (uint16_t)(handle
>> 16);
807 mcp
->mb
[6] = (uint16_t)sp
->cmd
->device
->lun
;
808 mcp
->out_mb
= MBX_6
|MBX_3
|MBX_2
|MBX_1
|MBX_0
;
812 rval
= qla2x00_mailbox_command(ha
, mcp
);
814 if (rval
!= QLA_SUCCESS
) {
815 DEBUG2_3_11(printk("qla2x00_abort_command(%ld): failed=%x.\n",
818 sp
->flags
|= SRB_ABORT_PENDING
;
819 DEBUG11(printk("qla2x00_abort_command(%ld): done.\n",
828 * qla2x00_abort_target
829 * Issue abort target mailbox command.
832 * ha = adapter block pointer.
835 * qla2x00 local function return status code.
841 qla2x00_abort_target(fc_port_t
*fcport
)
845 mbx_cmd_t
*mcp
= &mc
;
851 DEBUG11(printk("%s(%ld): entered.\n", __func__
, fcport
->ha
->host_no
));
854 mcp
->mb
[0] = MBC_ABORT_TARGET
;
855 mcp
->out_mb
= MBX_2
|MBX_1
|MBX_0
;
856 if (HAS_EXTENDED_IDS(ha
)) {
857 mcp
->mb
[1] = fcport
->loop_id
;
859 mcp
->out_mb
|= MBX_10
;
861 mcp
->mb
[1] = fcport
->loop_id
<< 8;
863 mcp
->mb
[2] = ha
->loop_reset_delay
;
868 rval
= qla2x00_mailbox_command(ha
, mcp
);
870 /* Issue marker command. */
871 ha
->marker_needed
= 1;
873 if (rval
!= QLA_SUCCESS
) {
874 DEBUG2_3_11(printk("qla2x00_abort_target(%ld): failed=%x.\n",
878 DEBUG11(printk("qla2x00_abort_target(%ld): done.\n",
887 * qla2x00_get_adapter_id
888 * Get adapter ID and topology.
891 * ha = adapter block pointer.
892 * id = pointer for loop ID.
893 * al_pa = pointer for AL_PA.
894 * area = pointer for area.
895 * domain = pointer for domain.
896 * top = pointer for topology.
897 * TARGET_QUEUE_LOCK must be released.
898 * ADAPTER_STATE_LOCK must be released.
901 * qla2x00 local function return status code.
907 qla2x00_get_adapter_id(scsi_qla_host_t
*ha
, uint16_t *id
, uint8_t *al_pa
,
908 uint8_t *area
, uint8_t *domain
, uint16_t *top
)
912 mbx_cmd_t
*mcp
= &mc
;
914 DEBUG11(printk("qla2x00_get_adapter_id(%ld): entered.\n",
917 mcp
->mb
[0] = MBC_GET_ADAPTER_LOOP_ID
;
919 mcp
->in_mb
= MBX_7
|MBX_6
|MBX_3
|MBX_2
|MBX_1
|MBX_0
;
922 rval
= qla2x00_mailbox_command(ha
, mcp
);
923 if (mcp
->mb
[0] == MBS_COMMAND_ERROR
)
924 rval
= QLA_COMMAND_ERROR
;
928 *al_pa
= LSB(mcp
->mb
[2]);
929 *area
= MSB(mcp
->mb
[2]);
930 *domain
= LSB(mcp
->mb
[3]);
933 if (rval
!= QLA_SUCCESS
) {
935 DEBUG2_3_11(printk("qla2x00_get_adapter_id(%ld): failed=%x.\n",
939 DEBUG11(printk("qla2x00_get_adapter_id(%ld): done.\n",
947 * qla2x00_get_retry_cnt
948 * Get current firmware login retry count and delay.
951 * ha = adapter block pointer.
952 * retry_cnt = pointer to login retry count.
953 * tov = pointer to login timeout value.
956 * qla2x00 local function return status code.
962 qla2x00_get_retry_cnt(scsi_qla_host_t
*ha
, uint8_t *retry_cnt
, uint8_t *tov
,
968 mbx_cmd_t
*mcp
= &mc
;
970 DEBUG11(printk("qla2x00_get_retry_cnt(%ld): entered.\n",
973 mcp
->mb
[0] = MBC_GET_RETRY_COUNT
;
975 mcp
->in_mb
= MBX_3
|MBX_2
|MBX_1
|MBX_0
;
978 rval
= qla2x00_mailbox_command(ha
, mcp
);
980 if (rval
!= QLA_SUCCESS
) {
982 DEBUG2_3_11(printk("qla2x00_get_retry_cnt(%ld): failed = %x.\n",
983 ha
->host_no
, mcp
->mb
[0]));
985 /* Convert returned data and check our values. */
986 *r_a_tov
= mcp
->mb
[3] / 2;
987 ratov
= (mcp
->mb
[3]/2) / 10; /* mb[3] value is in 100ms */
988 if (mcp
->mb
[1] * ratov
> (*retry_cnt
) * (*tov
)) {
989 /* Update to the larger values */
990 *retry_cnt
= (uint8_t)mcp
->mb
[1];
994 DEBUG11(printk("qla2x00_get_retry_cnt(%ld): done. mb3=%d "
995 "ratov=%d.\n", ha
->host_no
, mcp
->mb
[3], ratov
));
1002 * qla2x00_init_firmware
1003 * Initialize adapter firmware.
1006 * ha = adapter block pointer.
1007 * dptr = Initialization control block pointer.
1008 * size = size of initialization control block.
1009 * TARGET_QUEUE_LOCK must be released.
1010 * ADAPTER_STATE_LOCK must be released.
1013 * qla2x00 local function return status code.
1019 qla2x00_init_firmware(scsi_qla_host_t
*ha
, uint16_t size
)
1023 mbx_cmd_t
*mcp
= &mc
;
1025 DEBUG11(printk("qla2x00_init_firmware(%ld): entered.\n",
1028 mcp
->mb
[0] = MBC_INITIALIZE_FIRMWARE
;
1029 mcp
->mb
[2] = MSW(ha
->init_cb_dma
);
1030 mcp
->mb
[3] = LSW(ha
->init_cb_dma
);
1033 mcp
->mb
[6] = MSW(MSD(ha
->init_cb_dma
));
1034 mcp
->mb
[7] = LSW(MSD(ha
->init_cb_dma
));
1035 mcp
->out_mb
= MBX_7
|MBX_6
|MBX_3
|MBX_2
|MBX_0
;
1036 mcp
->in_mb
= MBX_5
|MBX_4
|MBX_0
;
1037 mcp
->buf_size
= size
;
1038 mcp
->flags
= MBX_DMA_OUT
;
1040 rval
= qla2x00_mailbox_command(ha
, mcp
);
1042 if (rval
!= QLA_SUCCESS
) {
1044 DEBUG2_3_11(printk("qla2x00_init_firmware(%ld): failed=%x "
1046 ha
->host_no
, rval
, mcp
->mb
[0]));
1049 DEBUG11(printk("qla2x00_init_firmware(%ld): done.\n",
1057 * qla2x00_get_port_database
1058 * Issue normal/enhanced get port database mailbox command
1059 * and copy device name as necessary.
1062 * ha = adapter state pointer.
1063 * dev = structure pointer.
1064 * opt = enhanced cmd option byte.
1067 * qla2x00 local function return status code.
1073 qla2x00_get_port_database(scsi_qla_host_t
*ha
, fc_port_t
*fcport
, uint8_t opt
)
1077 mbx_cmd_t
*mcp
= &mc
;
1078 port_database_t
*pd
;
1079 struct port_database_24xx
*pd24
;
1082 DEBUG11(printk("%s(%ld): entered.\n", __func__
, ha
->host_no
));
1085 pd
= dma_pool_alloc(ha
->s_dma_pool
, GFP_KERNEL
, &pd_dma
);
1087 DEBUG2_3(printk("%s(%ld): failed to allocate Port Database "
1088 "structure.\n", __func__
, ha
->host_no
));
1089 return QLA_MEMORY_ALLOC_FAILED
;
1091 memset(pd
, 0, max(PORT_DATABASE_SIZE
, PORT_DATABASE_24XX_SIZE
));
1093 mcp
->mb
[0] = MBC_GET_PORT_DATABASE
;
1094 if (opt
!= 0 && !IS_QLA24XX(ha
) && !IS_QLA54XX(ha
))
1095 mcp
->mb
[0] = MBC_ENHANCED_GET_PORT_DATABASE
;
1096 mcp
->mb
[2] = MSW(pd_dma
);
1097 mcp
->mb
[3] = LSW(pd_dma
);
1098 mcp
->mb
[6] = MSW(MSD(pd_dma
));
1099 mcp
->mb
[7] = LSW(MSD(pd_dma
));
1100 mcp
->out_mb
= MBX_7
|MBX_6
|MBX_3
|MBX_2
|MBX_0
;
1102 if (IS_QLA24XX(ha
) || IS_QLA54XX(ha
)) {
1103 mcp
->mb
[1] = fcport
->loop_id
;
1105 mcp
->out_mb
|= MBX_10
|MBX_1
;
1106 mcp
->in_mb
|= MBX_1
;
1107 } else if (HAS_EXTENDED_IDS(ha
)) {
1108 mcp
->mb
[1] = fcport
->loop_id
;
1110 mcp
->out_mb
|= MBX_10
|MBX_1
;
1112 mcp
->mb
[1] = fcport
->loop_id
<< 8 | opt
;
1113 mcp
->out_mb
|= MBX_1
;
1115 mcp
->buf_size
= (IS_QLA24XX(ha
) || IS_QLA54XX(ha
) ?
1116 PORT_DATABASE_24XX_SIZE
: PORT_DATABASE_SIZE
);
1117 mcp
->flags
= MBX_DMA_IN
;
1118 mcp
->tov
= (ha
->login_timeout
* 2) + (ha
->login_timeout
/ 2);
1119 rval
= qla2x00_mailbox_command(ha
, mcp
);
1120 if (rval
!= QLA_SUCCESS
)
1123 if (IS_QLA24XX(ha
) || IS_QLA54XX(ha
)) {
1124 pd24
= (struct port_database_24xx
*) pd
;
1126 /* Check for logged in state. */
1127 if (pd24
->current_login_state
!= PDS_PRLI_COMPLETE
&&
1128 pd24
->last_login_state
!= PDS_PRLI_COMPLETE
) {
1129 DEBUG2(printk("%s(%ld): Unable to verify "
1130 "login-state (%x/%x) for loop_id %x\n",
1131 __func__
, ha
->host_no
,
1132 pd24
->current_login_state
,
1133 pd24
->last_login_state
, fcport
->loop_id
));
1134 rval
= QLA_FUNCTION_FAILED
;
1138 /* Names are little-endian. */
1139 memcpy(fcport
->node_name
, pd24
->node_name
, WWN_SIZE
);
1140 memcpy(fcport
->port_name
, pd24
->port_name
, WWN_SIZE
);
1142 /* Get port_id of device. */
1143 fcport
->d_id
.b
.domain
= pd24
->port_id
[0];
1144 fcport
->d_id
.b
.area
= pd24
->port_id
[1];
1145 fcport
->d_id
.b
.al_pa
= pd24
->port_id
[2];
1146 fcport
->d_id
.b
.rsvd_1
= 0;
1148 /* If not target must be initiator or unknown type. */
1149 if ((pd24
->prli_svc_param_word_3
[0] & BIT_4
) == 0)
1150 fcport
->port_type
= FCT_INITIATOR
;
1152 fcport
->port_type
= FCT_TARGET
;
1154 /* Check for logged in state. */
1155 if (pd
->master_state
!= PD_STATE_PORT_LOGGED_IN
&&
1156 pd
->slave_state
!= PD_STATE_PORT_LOGGED_IN
) {
1157 rval
= QLA_FUNCTION_FAILED
;
1161 /* Names are little-endian. */
1162 memcpy(fcport
->node_name
, pd
->node_name
, WWN_SIZE
);
1163 memcpy(fcport
->port_name
, pd
->port_name
, WWN_SIZE
);
1165 /* Get port_id of device. */
1166 fcport
->d_id
.b
.domain
= pd
->port_id
[0];
1167 fcport
->d_id
.b
.area
= pd
->port_id
[3];
1168 fcport
->d_id
.b
.al_pa
= pd
->port_id
[2];
1169 fcport
->d_id
.b
.rsvd_1
= 0;
1171 /* Check for device require authentication. */
1172 pd
->common_features
& BIT_5
? (fcport
->flags
|= FCF_AUTH_REQ
) :
1173 (fcport
->flags
&= ~FCF_AUTH_REQ
);
1175 /* If not target must be initiator or unknown type. */
1176 if ((pd
->prli_svc_param_word_3
[0] & BIT_4
) == 0)
1177 fcport
->port_type
= FCT_INITIATOR
;
1179 fcport
->port_type
= FCT_TARGET
;
1181 /* Passback COS information. */
1182 fcport
->supported_classes
= (pd
->options
& BIT_4
) ?
1183 FC_COS_CLASS2
: FC_COS_CLASS3
;
1187 dma_pool_free(ha
->s_dma_pool
, pd
, pd_dma
);
1189 if (rval
!= QLA_SUCCESS
) {
1190 DEBUG2_3_11(printk("%s(%ld): failed=%x mb[0]=%x mb[1]=%x.\n",
1191 __func__
, ha
->host_no
, rval
, mcp
->mb
[0], mcp
->mb
[1]));
1193 DEBUG11(printk("%s(%ld): done.\n", __func__
, ha
->host_no
));
1200 * qla2x00_get_firmware_state
1201 * Get adapter firmware state.
1204 * ha = adapter block pointer.
1205 * dptr = pointer for firmware state.
1206 * TARGET_QUEUE_LOCK must be released.
1207 * ADAPTER_STATE_LOCK must be released.
1210 * qla2x00 local function return status code.
1216 qla2x00_get_firmware_state(scsi_qla_host_t
*ha
, uint16_t *dptr
)
1220 mbx_cmd_t
*mcp
= &mc
;
1222 DEBUG11(printk("qla2x00_get_firmware_state(%ld): entered.\n",
1225 mcp
->mb
[0] = MBC_GET_FIRMWARE_STATE
;
1226 mcp
->out_mb
= MBX_0
;
1227 mcp
->in_mb
= MBX_2
|MBX_1
|MBX_0
;
1230 rval
= qla2x00_mailbox_command(ha
, mcp
);
1232 /* Return firmware state. */
1235 if (rval
!= QLA_SUCCESS
) {
1237 DEBUG2_3_11(printk("qla2x00_get_firmware_state(%ld): "
1238 "failed=%x.\n", ha
->host_no
, rval
));
1241 DEBUG11(printk("qla2x00_get_firmware_state(%ld): done.\n",
1249 * qla2x00_get_port_name
1250 * Issue get port name mailbox command.
1251 * Returned name is in big endian format.
1254 * ha = adapter block pointer.
1255 * loop_id = loop ID of device.
1256 * name = pointer for name.
1257 * TARGET_QUEUE_LOCK must be released.
1258 * ADAPTER_STATE_LOCK must be released.
1261 * qla2x00 local function return status code.
1267 qla2x00_get_port_name(scsi_qla_host_t
*ha
, uint16_t loop_id
, uint8_t *name
,
1272 mbx_cmd_t
*mcp
= &mc
;
1274 DEBUG11(printk("qla2x00_get_port_name(%ld): entered.\n",
1277 mcp
->mb
[0] = MBC_GET_PORT_NAME
;
1278 mcp
->out_mb
= MBX_1
|MBX_0
;
1279 if (HAS_EXTENDED_IDS(ha
)) {
1280 mcp
->mb
[1] = loop_id
;
1282 mcp
->out_mb
|= MBX_10
;
1284 mcp
->mb
[1] = loop_id
<< 8 | opt
;
1287 mcp
->in_mb
= MBX_7
|MBX_6
|MBX_3
|MBX_2
|MBX_1
|MBX_0
;
1290 rval
= qla2x00_mailbox_command(ha
, mcp
);
1292 if (rval
!= QLA_SUCCESS
) {
1294 DEBUG2_3_11(printk("qla2x00_get_port_name(%ld): failed=%x.\n",
1295 ha
->host_no
, rval
));
1298 /* This function returns name in big endian. */
1299 name
[0] = LSB(mcp
->mb
[2]);
1300 name
[1] = MSB(mcp
->mb
[2]);
1301 name
[2] = LSB(mcp
->mb
[3]);
1302 name
[3] = MSB(mcp
->mb
[3]);
1303 name
[4] = LSB(mcp
->mb
[6]);
1304 name
[5] = MSB(mcp
->mb
[6]);
1305 name
[6] = LSB(mcp
->mb
[7]);
1306 name
[7] = MSB(mcp
->mb
[7]);
1309 DEBUG11(printk("qla2x00_get_port_name(%ld): done.\n",
1318 * Issue LIP reset mailbox command.
1321 * ha = adapter block pointer.
1322 * TARGET_QUEUE_LOCK must be released.
1323 * ADAPTER_STATE_LOCK must be released.
1326 * qla2x00 local function return status code.
1332 qla2x00_lip_reset(scsi_qla_host_t
*ha
)
1336 mbx_cmd_t
*mcp
= &mc
;
1338 DEBUG11(printk("%s(%ld): entered.\n", __func__
, ha
->host_no
));
1340 if (IS_QLA24XX(ha
) || IS_QLA54XX(ha
)) {
1341 mcp
->mb
[0] = MBC_LIP_FULL_LOGIN
;
1344 mcp
->mb
[3] = ha
->loop_reset_delay
;
1345 mcp
->out_mb
= MBX_3
|MBX_2
|MBX_1
|MBX_0
;
1347 mcp
->mb
[0] = MBC_LIP_RESET
;
1348 mcp
->out_mb
= MBX_3
|MBX_2
|MBX_1
|MBX_0
;
1349 if (HAS_EXTENDED_IDS(ha
)) {
1350 mcp
->mb
[1] = 0x00ff;
1352 mcp
->out_mb
|= MBX_10
;
1354 mcp
->mb
[1] = 0xff00;
1356 mcp
->mb
[2] = ha
->loop_reset_delay
;
1362 rval
= qla2x00_mailbox_command(ha
, mcp
);
1364 if (rval
!= QLA_SUCCESS
) {
1366 DEBUG2_3_11(printk("%s(%ld): failed=%x.\n",
1367 __func__
, ha
->host_no
, rval
));
1370 DEBUG11(printk("%s(%ld): done.\n", __func__
, ha
->host_no
));
1381 * ha = adapter block pointer.
1382 * sns = pointer for command.
1383 * cmd_size = command size.
1384 * buf_size = response/command size.
1385 * TARGET_QUEUE_LOCK must be released.
1386 * ADAPTER_STATE_LOCK must be released.
1389 * qla2x00 local function return status code.
1395 qla2x00_send_sns(scsi_qla_host_t
*ha
, dma_addr_t sns_phys_address
,
1396 uint16_t cmd_size
, size_t buf_size
)
1400 mbx_cmd_t
*mcp
= &mc
;
1402 DEBUG11(printk("qla2x00_send_sns(%ld): entered.\n",
1405 DEBUG11(printk("qla2x00_send_sns: retry cnt=%d ratov=%d total "
1406 "tov=%d.\n", ha
->retry_count
, ha
->login_timeout
, mcp
->tov
));
1408 mcp
->mb
[0] = MBC_SEND_SNS_COMMAND
;
1409 mcp
->mb
[1] = cmd_size
;
1410 mcp
->mb
[2] = MSW(sns_phys_address
);
1411 mcp
->mb
[3] = LSW(sns_phys_address
);
1412 mcp
->mb
[6] = MSW(MSD(sns_phys_address
));
1413 mcp
->mb
[7] = LSW(MSD(sns_phys_address
));
1414 mcp
->out_mb
= MBX_7
|MBX_6
|MBX_3
|MBX_2
|MBX_1
|MBX_0
;
1415 mcp
->in_mb
= MBX_0
|MBX_1
;
1416 mcp
->buf_size
= buf_size
;
1417 mcp
->flags
= MBX_DMA_OUT
|MBX_DMA_IN
;
1418 mcp
->tov
= (ha
->login_timeout
* 2) + (ha
->login_timeout
/ 2);
1419 rval
= qla2x00_mailbox_command(ha
, mcp
);
1421 if (rval
!= QLA_SUCCESS
) {
1423 DEBUG(printk("qla2x00_send_sns(%ld): failed=%x mb[0]=%x "
1424 "mb[1]=%x.\n", ha
->host_no
, rval
, mcp
->mb
[0], mcp
->mb
[1]));
1425 DEBUG2_3_11(printk("qla2x00_send_sns(%ld): failed=%x mb[0]=%x "
1426 "mb[1]=%x.\n", ha
->host_no
, rval
, mcp
->mb
[0], mcp
->mb
[1]));
1429 DEBUG11(printk("qla2x00_send_sns(%ld): done.\n", ha
->host_no
));
1436 qla24xx_login_fabric(scsi_qla_host_t
*ha
, uint16_t loop_id
, uint8_t domain
,
1437 uint8_t area
, uint8_t al_pa
, uint16_t *mb
, uint8_t opt
)
1441 struct logio_entry_24xx
*lg
;
1445 DEBUG11(printk("%s(%ld): entered.\n", __func__
, ha
->host_no
));
1447 lg
= dma_pool_alloc(ha
->s_dma_pool
, GFP_KERNEL
, &lg_dma
);
1449 DEBUG2_3(printk("%s(%ld): failed to allocate Login IOCB.\n",
1450 __func__
, ha
->host_no
));
1451 return QLA_MEMORY_ALLOC_FAILED
;
1453 memset(lg
, 0, sizeof(struct logio_entry_24xx
));
1455 lg
->entry_type
= LOGINOUT_PORT_IOCB_TYPE
;
1456 lg
->entry_count
= 1;
1457 lg
->nport_handle
= cpu_to_le16(loop_id
);
1458 lg
->control_flags
= __constant_cpu_to_le16(LCF_COMMAND_PLOGI
);
1460 lg
->control_flags
|= __constant_cpu_to_le16(LCF_COND_PLOGI
);
1462 lg
->control_flags
|= __constant_cpu_to_le16(LCF_SKIP_PRLI
);
1463 lg
->port_id
[0] = al_pa
;
1464 lg
->port_id
[1] = area
;
1465 lg
->port_id
[2] = domain
;
1466 rval
= qla2x00_issue_iocb(ha
, lg
, lg_dma
, 0);
1467 if (rval
!= QLA_SUCCESS
) {
1468 DEBUG2_3_11(printk("%s(%ld): failed to issue Login IOCB "
1469 "(%x).\n", __func__
, ha
->host_no
, rval
));
1470 } else if (lg
->entry_status
!= 0) {
1471 DEBUG2_3_11(printk("%s(%ld): failed to complete IOCB "
1472 "-- error status (%x).\n", __func__
, ha
->host_no
,
1474 rval
= QLA_FUNCTION_FAILED
;
1475 } else if (lg
->comp_status
!= __constant_cpu_to_le16(CS_COMPLETE
)) {
1476 iop
[0] = le32_to_cpu(lg
->io_parameter
[0]);
1477 iop
[1] = le32_to_cpu(lg
->io_parameter
[1]);
1479 DEBUG2_3_11(printk("%s(%ld): failed to complete IOCB "
1480 "-- completion status (%x) ioparam=%x/%x.\n", __func__
,
1481 ha
->host_no
, le16_to_cpu(lg
->comp_status
), iop
[0],
1485 case LSC_SCODE_PORTID_USED
:
1486 mb
[0] = MBS_PORT_ID_USED
;
1487 mb
[1] = LSW(iop
[1]);
1489 case LSC_SCODE_NPORT_USED
:
1490 mb
[0] = MBS_LOOP_ID_USED
;
1492 case LSC_SCODE_NOLINK
:
1493 case LSC_SCODE_NOIOCB
:
1494 case LSC_SCODE_NOXCB
:
1495 case LSC_SCODE_CMD_FAILED
:
1496 case LSC_SCODE_NOFABRIC
:
1497 case LSC_SCODE_FW_NOT_READY
:
1498 case LSC_SCODE_NOT_LOGGED_IN
:
1499 case LSC_SCODE_NOPCB
:
1500 case LSC_SCODE_ELS_REJECT
:
1501 case LSC_SCODE_CMD_PARAM_ERR
:
1502 case LSC_SCODE_NONPORT
:
1503 case LSC_SCODE_LOGGED_IN
:
1504 case LSC_SCODE_NOFLOGI_ACC
:
1506 mb
[0] = MBS_COMMAND_ERROR
;
1510 DEBUG11(printk("%s(%ld): done.\n", __func__
, ha
->host_no
));
1512 iop
[0] = le32_to_cpu(lg
->io_parameter
[0]);
1514 mb
[0] = MBS_COMMAND_COMPLETE
;
1516 if (iop
[0] & BIT_4
) {
1522 /* Passback COS information. */
1524 if (lg
->io_parameter
[7] || lg
->io_parameter
[8])
1525 mb
[10] |= BIT_0
; /* Class 2. */
1526 if (lg
->io_parameter
[9] || lg
->io_parameter
[10])
1527 mb
[10] |= BIT_1
; /* Class 3. */
1530 dma_pool_free(ha
->s_dma_pool
, lg
, lg_dma
);
1536 * qla2x00_login_fabric
1537 * Issue login fabric port mailbox command.
1540 * ha = adapter block pointer.
1541 * loop_id = device loop ID.
1542 * domain = device domain.
1543 * area = device area.
1544 * al_pa = device AL_PA.
1545 * status = pointer for return status.
1546 * opt = command options.
1547 * TARGET_QUEUE_LOCK must be released.
1548 * ADAPTER_STATE_LOCK must be released.
1551 * qla2x00 local function return status code.
1557 qla2x00_login_fabric(scsi_qla_host_t
*ha
, uint16_t loop_id
, uint8_t domain
,
1558 uint8_t area
, uint8_t al_pa
, uint16_t *mb
, uint8_t opt
)
1562 mbx_cmd_t
*mcp
= &mc
;
1564 DEBUG11(printk("qla2x00_login_fabric(%ld): entered.\n", ha
->host_no
));
1566 mcp
->mb
[0] = MBC_LOGIN_FABRIC_PORT
;
1567 mcp
->out_mb
= MBX_3
|MBX_2
|MBX_1
|MBX_0
;
1568 if (HAS_EXTENDED_IDS(ha
)) {
1569 mcp
->mb
[1] = loop_id
;
1571 mcp
->out_mb
|= MBX_10
;
1573 mcp
->mb
[1] = (loop_id
<< 8) | opt
;
1575 mcp
->mb
[2] = domain
;
1576 mcp
->mb
[3] = area
<< 8 | al_pa
;
1578 mcp
->in_mb
= MBX_7
|MBX_6
|MBX_2
|MBX_1
|MBX_0
;
1579 mcp
->tov
= (ha
->login_timeout
* 2) + (ha
->login_timeout
/ 2);
1581 rval
= qla2x00_mailbox_command(ha
, mcp
);
1583 /* Return mailbox statuses. */
1590 /* COS retrieved from Get-Port-Database mailbox command. */
1594 if (rval
!= QLA_SUCCESS
) {
1595 /* RLU tmp code: need to change main mailbox_command function to
1596 * return ok even when the mailbox completion value is not
1597 * SUCCESS. The caller needs to be responsible to interpret
1598 * the return values of this mailbox command if we're not
1599 * to change too much of the existing code.
1601 if (mcp
->mb
[0] == 0x4001 || mcp
->mb
[0] == 0x4002 ||
1602 mcp
->mb
[0] == 0x4003 || mcp
->mb
[0] == 0x4005 ||
1603 mcp
->mb
[0] == 0x4006)
1607 DEBUG2_3_11(printk("qla2x00_login_fabric(%ld): failed=%x "
1608 "mb[0]=%x mb[1]=%x mb[2]=%x.\n", ha
->host_no
, rval
,
1609 mcp
->mb
[0], mcp
->mb
[1], mcp
->mb
[2]));
1612 DEBUG11(printk("qla2x00_login_fabric(%ld): done.\n",
1620 * qla2x00_login_local_device
1621 * Issue login loop port mailbox command.
1624 * ha = adapter block pointer.
1625 * loop_id = device loop ID.
1626 * opt = command options.
1629 * Return status code.
1636 qla2x00_login_local_device(scsi_qla_host_t
*ha
, fc_port_t
*fcport
,
1637 uint16_t *mb_ret
, uint8_t opt
)
1641 mbx_cmd_t
*mcp
= &mc
;
1643 if (IS_QLA24XX(ha
) || IS_QLA54XX(ha
))
1644 return qla24xx_login_fabric(ha
, fcport
->loop_id
,
1645 fcport
->d_id
.b
.domain
, fcport
->d_id
.b
.area
,
1646 fcport
->d_id
.b
.al_pa
, mb_ret
, opt
);
1648 DEBUG3(printk("%s(%ld): entered.\n", __func__
, ha
->host_no
));
1650 mcp
->mb
[0] = MBC_LOGIN_LOOP_PORT
;
1651 if (HAS_EXTENDED_IDS(ha
))
1652 mcp
->mb
[1] = fcport
->loop_id
;
1654 mcp
->mb
[1] = fcport
->loop_id
<< 8;
1656 mcp
->out_mb
= MBX_2
|MBX_1
|MBX_0
;
1657 mcp
->in_mb
= MBX_7
|MBX_6
|MBX_1
|MBX_0
;
1658 mcp
->tov
= (ha
->login_timeout
* 2) + (ha
->login_timeout
/ 2);
1660 rval
= qla2x00_mailbox_command(ha
, mcp
);
1662 /* Return mailbox statuses. */
1663 if (mb_ret
!= NULL
) {
1664 mb_ret
[0] = mcp
->mb
[0];
1665 mb_ret
[1] = mcp
->mb
[1];
1666 mb_ret
[6] = mcp
->mb
[6];
1667 mb_ret
[7] = mcp
->mb
[7];
1670 if (rval
!= QLA_SUCCESS
) {
1671 /* AV tmp code: need to change main mailbox_command function to
1672 * return ok even when the mailbox completion value is not
1673 * SUCCESS. The caller needs to be responsible to interpret
1674 * the return values of this mailbox command if we're not
1675 * to change too much of the existing code.
1677 if (mcp
->mb
[0] == 0x4005 || mcp
->mb
[0] == 0x4006)
1680 DEBUG(printk("%s(%ld): failed=%x mb[0]=%x mb[1]=%x "
1681 "mb[6]=%x mb[7]=%x.\n", __func__
, ha
->host_no
, rval
,
1682 mcp
->mb
[0], mcp
->mb
[1], mcp
->mb
[6], mcp
->mb
[7]));
1683 DEBUG2_3(printk("%s(%ld): failed=%x mb[0]=%x mb[1]=%x "
1684 "mb[6]=%x mb[7]=%x.\n", __func__
, ha
->host_no
, rval
,
1685 mcp
->mb
[0], mcp
->mb
[1], mcp
->mb
[6], mcp
->mb
[7]));
1688 DEBUG3(printk("%s(%ld): done.\n", __func__
, ha
->host_no
));
1695 qla24xx_fabric_logout(scsi_qla_host_t
*ha
, uint16_t loop_id
, uint8_t domain
,
1696 uint8_t area
, uint8_t al_pa
)
1699 struct logio_entry_24xx
*lg
;
1702 DEBUG11(printk("%s(%ld): entered.\n", __func__
, ha
->host_no
));
1704 lg
= dma_pool_alloc(ha
->s_dma_pool
, GFP_KERNEL
, &lg_dma
);
1706 DEBUG2_3(printk("%s(%ld): failed to allocate Logout IOCB.\n",
1707 __func__
, ha
->host_no
));
1708 return QLA_MEMORY_ALLOC_FAILED
;
1710 memset(lg
, 0, sizeof(struct logio_entry_24xx
));
1712 lg
->entry_type
= LOGINOUT_PORT_IOCB_TYPE
;
1713 lg
->entry_count
= 1;
1714 lg
->nport_handle
= cpu_to_le16(loop_id
);
1716 __constant_cpu_to_le16(LCF_COMMAND_LOGO
|LCF_EXPL_LOGO
);
1717 lg
->port_id
[0] = al_pa
;
1718 lg
->port_id
[1] = area
;
1719 lg
->port_id
[2] = domain
;
1720 rval
= qla2x00_issue_iocb(ha
, lg
, lg_dma
, 0);
1721 if (rval
!= QLA_SUCCESS
) {
1722 DEBUG2_3_11(printk("%s(%ld): failed to issue Logout IOCB "
1723 "(%x).\n", __func__
, ha
->host_no
, rval
));
1724 } else if (lg
->entry_status
!= 0) {
1725 DEBUG2_3_11(printk("%s(%ld): failed to complete IOCB "
1726 "-- error status (%x).\n", __func__
, ha
->host_no
,
1728 rval
= QLA_FUNCTION_FAILED
;
1729 } else if (lg
->comp_status
!= __constant_cpu_to_le16(CS_COMPLETE
)) {
1730 DEBUG2_3_11(printk("%s(%ld): failed to complete IOCB "
1731 "-- completion status (%x) ioparam=%x/%x.\n", __func__
,
1732 ha
->host_no
, le16_to_cpu(lg
->comp_status
),
1733 le32_to_cpu(lg
->io_parameter
[0]),
1734 le32_to_cpu(lg
->io_parameter
[1])));
1737 DEBUG11(printk("%s(%ld): done.\n", __func__
, ha
->host_no
));
1740 dma_pool_free(ha
->s_dma_pool
, lg
, lg_dma
);
1746 * qla2x00_fabric_logout
1747 * Issue logout fabric port mailbox command.
1750 * ha = adapter block pointer.
1751 * loop_id = device loop ID.
1752 * TARGET_QUEUE_LOCK must be released.
1753 * ADAPTER_STATE_LOCK must be released.
1756 * qla2x00 local function return status code.
1762 qla2x00_fabric_logout(scsi_qla_host_t
*ha
, uint16_t loop_id
, uint8_t domain
,
1763 uint8_t area
, uint8_t al_pa
)
1767 mbx_cmd_t
*mcp
= &mc
;
1769 DEBUG11(printk("qla2x00_fabric_logout(%ld): entered.\n",
1772 mcp
->mb
[0] = MBC_LOGOUT_FABRIC_PORT
;
1773 mcp
->out_mb
= MBX_1
|MBX_0
;
1774 if (HAS_EXTENDED_IDS(ha
)) {
1775 mcp
->mb
[1] = loop_id
;
1777 mcp
->out_mb
|= MBX_10
;
1779 mcp
->mb
[1] = loop_id
<< 8;
1782 mcp
->in_mb
= MBX_1
|MBX_0
;
1785 rval
= qla2x00_mailbox_command(ha
, mcp
);
1787 if (rval
!= QLA_SUCCESS
) {
1789 DEBUG2_3_11(printk("qla2x00_fabric_logout(%ld): failed=%x "
1790 "mbx1=%x.\n", ha
->host_no
, rval
, mcp
->mb
[1]));
1793 DEBUG11(printk("qla2x00_fabric_logout(%ld): done.\n",
1801 * qla2x00_full_login_lip
1802 * Issue full login LIP mailbox command.
1805 * ha = adapter block pointer.
1806 * TARGET_QUEUE_LOCK must be released.
1807 * ADAPTER_STATE_LOCK must be released.
1810 * qla2x00 local function return status code.
1816 qla2x00_full_login_lip(scsi_qla_host_t
*ha
)
1820 mbx_cmd_t
*mcp
= &mc
;
1822 DEBUG11(printk("qla2x00_full_login_lip(%ld): entered.\n",
1825 mcp
->mb
[0] = MBC_LIP_FULL_LOGIN
;
1826 mcp
->mb
[1] = IS_QLA24XX(ha
) || IS_QLA54XX(ha
) ? BIT_3
: 0;
1829 mcp
->out_mb
= MBX_3
|MBX_2
|MBX_1
|MBX_0
;
1833 rval
= qla2x00_mailbox_command(ha
, mcp
);
1835 if (rval
!= QLA_SUCCESS
) {
1837 DEBUG2_3_11(printk("qla2x00_full_login_lip(%ld): failed=%x.\n",
1838 ha
->host_no
, rval
));
1841 DEBUG11(printk("qla2x00_full_login_lip(%ld): done.\n",
1849 * qla2x00_get_id_list
1852 * ha = adapter block pointer.
1855 * qla2x00 local function return status code.
1861 qla2x00_get_id_list(scsi_qla_host_t
*ha
, void *id_list
, dma_addr_t id_list_dma
,
1866 mbx_cmd_t
*mcp
= &mc
;
1868 DEBUG11(printk("qla2x00_get_id_list(%ld): entered.\n",
1871 if (id_list
== NULL
)
1872 return QLA_FUNCTION_FAILED
;
1874 mcp
->mb
[0] = MBC_GET_ID_LIST
;
1875 mcp
->out_mb
= MBX_0
;
1876 if (IS_QLA24XX(ha
) || IS_QLA54XX(ha
)) {
1877 mcp
->mb
[2] = MSW(id_list_dma
);
1878 mcp
->mb
[3] = LSW(id_list_dma
);
1879 mcp
->mb
[6] = MSW(MSD(id_list_dma
));
1880 mcp
->mb
[7] = LSW(MSD(id_list_dma
));
1882 mcp
->out_mb
|= MBX_8
|MBX_7
|MBX_6
|MBX_3
|MBX_2
;
1884 mcp
->mb
[1] = MSW(id_list_dma
);
1885 mcp
->mb
[2] = LSW(id_list_dma
);
1886 mcp
->mb
[3] = MSW(MSD(id_list_dma
));
1887 mcp
->mb
[6] = LSW(MSD(id_list_dma
));
1888 mcp
->out_mb
|= MBX_6
|MBX_3
|MBX_2
|MBX_1
;
1890 mcp
->in_mb
= MBX_1
|MBX_0
;
1893 rval
= qla2x00_mailbox_command(ha
, mcp
);
1895 if (rval
!= QLA_SUCCESS
) {
1897 DEBUG2_3_11(printk("qla2x00_get_id_list(%ld): failed=%x.\n",
1898 ha
->host_no
, rval
));
1900 *entries
= mcp
->mb
[1];
1901 DEBUG11(printk("qla2x00_get_id_list(%ld): done.\n",
1909 * qla2x00_get_resource_cnts
1910 * Get current firmware resource counts.
1913 * ha = adapter block pointer.
1916 * qla2x00 local function return status code.
1922 qla2x00_get_resource_cnts(scsi_qla_host_t
*ha
, uint16_t *cur_xchg_cnt
,
1923 uint16_t *orig_xchg_cnt
, uint16_t *cur_iocb_cnt
, uint16_t *orig_iocb_cnt
)
1927 mbx_cmd_t
*mcp
= &mc
;
1929 DEBUG11(printk("%s(%ld): entered.\n", __func__
, ha
->host_no
));
1931 mcp
->mb
[0] = MBC_GET_RESOURCE_COUNTS
;
1932 mcp
->out_mb
= MBX_0
;
1933 mcp
->in_mb
= MBX_10
|MBX_7
|MBX_6
|MBX_3
|MBX_2
|MBX_1
|MBX_0
;
1936 rval
= qla2x00_mailbox_command(ha
, mcp
);
1938 if (rval
!= QLA_SUCCESS
) {
1940 DEBUG2_3_11(printk("%s(%ld): failed = %x.\n", __func__
,
1941 ha
->host_no
, mcp
->mb
[0]));
1943 DEBUG11(printk("%s(%ld): done. mb1=%x mb2=%x mb3=%x mb6=%x "
1944 "mb7=%x mb10=%x.\n", __func__
, ha
->host_no
,
1945 mcp
->mb
[1], mcp
->mb
[2], mcp
->mb
[3], mcp
->mb
[6], mcp
->mb
[7],
1949 *cur_xchg_cnt
= mcp
->mb
[3];
1951 *orig_xchg_cnt
= mcp
->mb
[6];
1953 *cur_iocb_cnt
= mcp
->mb
[7];
1955 *orig_iocb_cnt
= mcp
->mb
[10];
1961 #if defined(QL_DEBUG_LEVEL_3)
1963 * qla2x00_get_fcal_position_map
1964 * Get FCAL (LILP) position map using mailbox command
1967 * ha = adapter state pointer.
1968 * pos_map = buffer pointer (can be NULL).
1971 * qla2x00 local function return status code.
1977 qla2x00_get_fcal_position_map(scsi_qla_host_t
*ha
, char *pos_map
)
1981 mbx_cmd_t
*mcp
= &mc
;
1983 dma_addr_t pmap_dma
;
1985 pmap
= dma_pool_alloc(ha
->s_dma_pool
, GFP_ATOMIC
, &pmap_dma
);
1987 DEBUG2_3_11(printk("%s(%ld): **** Mem Alloc Failed ****",
1988 __func__
, ha
->host_no
));
1989 return QLA_MEMORY_ALLOC_FAILED
;
1991 memset(pmap
, 0, FCAL_MAP_SIZE
);
1993 mcp
->mb
[0] = MBC_GET_FC_AL_POSITION_MAP
;
1994 mcp
->mb
[2] = MSW(pmap_dma
);
1995 mcp
->mb
[3] = LSW(pmap_dma
);
1996 mcp
->mb
[6] = MSW(MSD(pmap_dma
));
1997 mcp
->mb
[7] = LSW(MSD(pmap_dma
));
1998 mcp
->out_mb
= MBX_7
|MBX_6
|MBX_3
|MBX_2
|MBX_0
;
1999 mcp
->in_mb
= MBX_1
|MBX_0
;
2000 mcp
->buf_size
= FCAL_MAP_SIZE
;
2001 mcp
->flags
= MBX_DMA_IN
;
2002 mcp
->tov
= (ha
->login_timeout
* 2) + (ha
->login_timeout
/ 2);
2003 rval
= qla2x00_mailbox_command(ha
, mcp
);
2005 if (rval
== QLA_SUCCESS
) {
2006 DEBUG11(printk("%s(%ld): (mb0=%x/mb1=%x) FC/AL Position Map "
2007 "size (%x)\n", __func__
, ha
->host_no
, mcp
->mb
[0],
2008 mcp
->mb
[1], (unsigned)pmap
[0]));
2009 DEBUG11(qla2x00_dump_buffer(pmap
, pmap
[0] + 1));
2012 memcpy(pos_map
, pmap
, FCAL_MAP_SIZE
);
2014 dma_pool_free(ha
->s_dma_pool
, pmap
, pmap_dma
);
2016 if (rval
!= QLA_SUCCESS
) {
2017 DEBUG2_3_11(printk("%s(%ld): failed=%x.\n", __func__
,
2018 ha
->host_no
, rval
));
2020 DEBUG11(printk("%s(%ld): done.\n", __func__
, ha
->host_no
));
2028 * qla2x00_get_link_status
2031 * ha = adapter block pointer.
2032 * loop_id = device loop ID.
2033 * ret_buf = pointer to link status return buffer.
2037 * BIT_0 = mem alloc error.
2038 * BIT_1 = mailbox error.
2041 qla2x00_get_link_status(scsi_qla_host_t
*ha
, uint16_t loop_id
,
2042 link_stat_t
*ret_buf
, uint16_t *status
)
2046 mbx_cmd_t
*mcp
= &mc
;
2047 link_stat_t
*stat_buf
;
2048 dma_addr_t stat_buf_dma
;
2050 DEBUG11(printk("%s(%ld): entered.\n", __func__
, ha
->host_no
));
2052 stat_buf
= dma_pool_alloc(ha
->s_dma_pool
, GFP_ATOMIC
, &stat_buf_dma
);
2053 if (stat_buf
== NULL
) {
2054 DEBUG2_3_11(printk("%s(%ld): Failed to allocate memory.\n",
2055 __func__
, ha
->host_no
));
2058 memset(stat_buf
, 0, sizeof(link_stat_t
));
2060 mcp
->mb
[0] = MBC_GET_LINK_STATUS
;
2061 mcp
->mb
[2] = MSW(stat_buf_dma
);
2062 mcp
->mb
[3] = LSW(stat_buf_dma
);
2063 mcp
->mb
[6] = MSW(MSD(stat_buf_dma
));
2064 mcp
->mb
[7] = LSW(MSD(stat_buf_dma
));
2065 mcp
->out_mb
= MBX_7
|MBX_6
|MBX_3
|MBX_2
|MBX_0
;
2067 if (IS_QLA24XX(ha
) || IS_QLA54XX(ha
)) {
2068 mcp
->mb
[1] = loop_id
;
2071 mcp
->out_mb
|= MBX_10
|MBX_4
|MBX_1
;
2072 mcp
->in_mb
|= MBX_1
;
2073 } else if (HAS_EXTENDED_IDS(ha
)) {
2074 mcp
->mb
[1] = loop_id
;
2076 mcp
->out_mb
|= MBX_10
|MBX_1
;
2078 mcp
->mb
[1] = loop_id
<< 8;
2079 mcp
->out_mb
|= MBX_1
;
2082 mcp
->flags
= IOCTL_CMD
;
2083 rval
= qla2x00_mailbox_command(ha
, mcp
);
2085 if (rval
== QLA_SUCCESS
) {
2086 if (mcp
->mb
[0] != MBS_COMMAND_COMPLETE
) {
2087 DEBUG2_3_11(printk("%s(%ld): cmd failed. mbx0=%x.\n",
2088 __func__
, ha
->host_no
, mcp
->mb
[0]));
2089 status
[0] = mcp
->mb
[0];
2092 /* copy over data -- firmware data is LE. */
2093 ret_buf
->link_fail_cnt
=
2094 le32_to_cpu(stat_buf
->link_fail_cnt
);
2095 ret_buf
->loss_sync_cnt
=
2096 le32_to_cpu(stat_buf
->loss_sync_cnt
);
2097 ret_buf
->loss_sig_cnt
=
2098 le32_to_cpu(stat_buf
->loss_sig_cnt
);
2099 ret_buf
->prim_seq_err_cnt
=
2100 le32_to_cpu(stat_buf
->prim_seq_err_cnt
);
2101 ret_buf
->inval_xmit_word_cnt
=
2102 le32_to_cpu(stat_buf
->inval_xmit_word_cnt
);
2103 ret_buf
->inval_crc_cnt
=
2104 le32_to_cpu(stat_buf
->inval_crc_cnt
);
2106 DEBUG11(printk("%s(%ld): stat dump: fail_cnt=%d "
2107 "loss_sync=%d loss_sig=%d seq_err=%d "
2108 "inval_xmt_word=%d inval_crc=%d.\n", __func__
,
2109 ha
->host_no
, stat_buf
->link_fail_cnt
,
2110 stat_buf
->loss_sync_cnt
, stat_buf
->loss_sig_cnt
,
2111 stat_buf
->prim_seq_err_cnt
,
2112 stat_buf
->inval_xmit_word_cnt
,
2113 stat_buf
->inval_crc_cnt
));
2117 DEBUG2_3_11(printk("%s(%ld): failed=%x.\n", __func__
,
2118 ha
->host_no
, rval
));
2122 dma_pool_free(ha
->s_dma_pool
, stat_buf
, stat_buf_dma
);
2128 qla24xx_get_isp_stats(scsi_qla_host_t
*ha
, uint32_t *dwbuf
, uint32_t dwords
,
2133 mbx_cmd_t
*mcp
= &mc
;
2134 uint32_t *sbuf
, *siter
;
2135 dma_addr_t sbuf_dma
;
2137 DEBUG11(printk("%s(%ld): entered.\n", __func__
, ha
->host_no
));
2139 if (dwords
> (DMA_POOL_SIZE
/ 4)) {
2140 DEBUG2_3_11(printk("%s(%ld): Unabled to retrieve %d DWORDs "
2141 "(max %d).\n", __func__
, ha
->host_no
, dwords
,
2142 DMA_POOL_SIZE
/ 4));
2145 sbuf
= dma_pool_alloc(ha
->s_dma_pool
, GFP_ATOMIC
, &sbuf_dma
);
2147 DEBUG2_3_11(printk("%s(%ld): Failed to allocate memory.\n",
2148 __func__
, ha
->host_no
));
2151 memset(sbuf
, 0, DMA_POOL_SIZE
);
2153 mcp
->mb
[0] = MBC_GET_LINK_PRIV_STATS
;
2154 mcp
->mb
[2] = MSW(sbuf_dma
);
2155 mcp
->mb
[3] = LSW(sbuf_dma
);
2156 mcp
->mb
[6] = MSW(MSD(sbuf_dma
));
2157 mcp
->mb
[7] = LSW(MSD(sbuf_dma
));
2158 mcp
->mb
[8] = dwords
;
2160 mcp
->out_mb
= MBX_10
|MBX_8
|MBX_7
|MBX_6
|MBX_3
|MBX_2
|MBX_0
;
2161 mcp
->in_mb
= MBX_2
|MBX_1
|MBX_0
;
2163 mcp
->flags
= IOCTL_CMD
;
2164 rval
= qla2x00_mailbox_command(ha
, mcp
);
2166 if (rval
== QLA_SUCCESS
) {
2167 if (mcp
->mb
[0] != MBS_COMMAND_COMPLETE
) {
2168 DEBUG2_3_11(printk("%s(%ld): cmd failed. mbx0=%x.\n",
2169 __func__
, ha
->host_no
, mcp
->mb
[0]));
2170 status
[0] = mcp
->mb
[0];
2173 /* Copy over data -- firmware data is LE. */
2176 *dwbuf
++ = le32_to_cpu(*siter
++);
2180 DEBUG2_3_11(printk("%s(%ld): failed=%x.\n", __func__
,
2181 ha
->host_no
, rval
));
2185 dma_pool_free(ha
->s_dma_pool
, sbuf
, sbuf_dma
);
2191 qla24xx_abort_command(scsi_qla_host_t
*ha
, srb_t
*sp
)
2195 unsigned long flags
= 0;
2197 struct abort_entry_24xx
*abt
;
2201 DEBUG11(printk("%s(%ld): entered.\n", __func__
, ha
->host_no
));
2203 fcport
= sp
->fcport
;
2205 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
2206 for (handle
= 1; handle
< MAX_OUTSTANDING_COMMANDS
; handle
++) {
2207 if (ha
->outstanding_cmds
[handle
] == sp
)
2210 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
2211 if (handle
== MAX_OUTSTANDING_COMMANDS
) {
2212 /* Command not found. */
2213 return QLA_FUNCTION_FAILED
;
2216 abt
= dma_pool_alloc(ha
->s_dma_pool
, GFP_KERNEL
, &abt_dma
);
2218 DEBUG2_3(printk("%s(%ld): failed to allocate Abort IOCB.\n",
2219 __func__
, ha
->host_no
));
2220 return QLA_MEMORY_ALLOC_FAILED
;
2222 memset(abt
, 0, sizeof(struct abort_entry_24xx
));
2224 abt
->entry_type
= ABORT_IOCB_TYPE
;
2225 abt
->entry_count
= 1;
2226 abt
->nport_handle
= cpu_to_le16(fcport
->loop_id
);
2227 abt
->handle_to_abort
= handle
;
2228 abt
->port_id
[0] = fcport
->d_id
.b
.al_pa
;
2229 abt
->port_id
[1] = fcport
->d_id
.b
.area
;
2230 abt
->port_id
[2] = fcport
->d_id
.b
.domain
;
2231 rval
= qla2x00_issue_iocb(ha
, abt
, abt_dma
, 0);
2232 if (rval
!= QLA_SUCCESS
) {
2233 DEBUG2_3_11(printk("%s(%ld): failed to issue IOCB (%x).\n",
2234 __func__
, ha
->host_no
, rval
));
2235 } else if (abt
->entry_status
!= 0) {
2236 DEBUG2_3_11(printk("%s(%ld): failed to complete IOCB "
2237 "-- error status (%x).\n", __func__
, ha
->host_no
,
2238 abt
->entry_status
));
2239 rval
= QLA_FUNCTION_FAILED
;
2240 } else if (abt
->nport_handle
!= __constant_cpu_to_le16(0)) {
2241 DEBUG2_3_11(printk("%s(%ld): failed to complete IOCB "
2242 "-- completion status (%x).\n", __func__
, ha
->host_no
,
2243 le16_to_cpu(abt
->nport_handle
)));
2244 rval
= QLA_FUNCTION_FAILED
;
2246 DEBUG11(printk("%s(%ld): done.\n", __func__
, ha
->host_no
));
2247 sp
->flags
|= SRB_ABORT_PENDING
;
2250 dma_pool_free(ha
->s_dma_pool
, abt
, abt_dma
);
2255 struct tsk_mgmt_cmd
{
2257 struct tsk_mgmt_entry tsk
;
2258 struct sts_entry_24xx sts
;
2263 qla24xx_abort_target(fc_port_t
*fcport
)
2266 struct tsk_mgmt_cmd
*tsk
;
2268 scsi_qla_host_t
*ha
;
2273 DEBUG11(printk("%s(%ld): entered.\n", __func__
, fcport
->ha
->host_no
));
2276 tsk
= dma_pool_alloc(ha
->s_dma_pool
, GFP_KERNEL
, &tsk_dma
);
2278 DEBUG2_3(printk("%s(%ld): failed to allocate Task Management "
2279 "IOCB.\n", __func__
, ha
->host_no
));
2280 return QLA_MEMORY_ALLOC_FAILED
;
2282 memset(tsk
, 0, sizeof(struct tsk_mgmt_cmd
));
2284 tsk
->p
.tsk
.entry_type
= TSK_MGMT_IOCB_TYPE
;
2285 tsk
->p
.tsk
.entry_count
= 1;
2286 tsk
->p
.tsk
.nport_handle
= cpu_to_le16(fcport
->loop_id
);
2287 tsk
->p
.tsk
.timeout
= __constant_cpu_to_le16(25);
2288 tsk
->p
.tsk
.control_flags
= __constant_cpu_to_le32(TCF_TARGET_RESET
);
2289 tsk
->p
.tsk
.port_id
[0] = fcport
->d_id
.b
.al_pa
;
2290 tsk
->p
.tsk
.port_id
[1] = fcport
->d_id
.b
.area
;
2291 tsk
->p
.tsk
.port_id
[2] = fcport
->d_id
.b
.domain
;
2292 rval
= qla2x00_issue_iocb(ha
, tsk
, tsk_dma
, 0);
2293 if (rval
!= QLA_SUCCESS
) {
2294 DEBUG2_3_11(printk("%s(%ld): failed to issue Target Reset IOCB "
2295 "(%x).\n", __func__
, ha
->host_no
, rval
));
2297 } else if (tsk
->p
.sts
.entry_status
!= 0) {
2298 DEBUG2_3_11(printk("%s(%ld): failed to complete IOCB "
2299 "-- error status (%x).\n", __func__
, ha
->host_no
,
2300 tsk
->p
.sts
.entry_status
));
2301 rval
= QLA_FUNCTION_FAILED
;
2303 } else if (tsk
->p
.sts
.comp_status
!=
2304 __constant_cpu_to_le16(CS_COMPLETE
)) {
2305 DEBUG2_3_11(printk("%s(%ld): failed to complete IOCB "
2306 "-- completion status (%x).\n", __func__
,
2307 ha
->host_no
, le16_to_cpu(tsk
->p
.sts
.comp_status
)));
2308 rval
= QLA_FUNCTION_FAILED
;
2312 /* Issue marker IOCB. */
2313 rval
= qla2x00_marker(ha
, fcport
->loop_id
, 0, MK_SYNC_ID
);
2314 if (rval
!= QLA_SUCCESS
) {
2315 DEBUG2_3_11(printk("%s(%ld): failed to issue Marker IOCB "
2316 "(%x).\n", __func__
, ha
->host_no
, rval
));
2318 DEBUG11(printk("%s(%ld): done.\n", __func__
, ha
->host_no
));
2322 dma_pool_free(ha
->s_dma_pool
, tsk
, tsk_dma
);
2328 qla2x00_system_error(scsi_qla_host_t
*ha
)
2332 mbx_cmd_t
*mcp
= &mc
;
2334 if (!IS_QLA24XX(ha
) && !IS_QLA54XX(ha
))
2335 return QLA_FUNCTION_FAILED
;
2337 DEBUG11(printk("%s(%ld): entered.\n", __func__
, ha
->host_no
));
2339 mcp
->mb
[0] = MBC_GEN_SYSTEM_ERROR
;
2340 mcp
->out_mb
= MBX_0
;
2344 rval
= qla2x00_mailbox_command(ha
, mcp
);
2346 if (rval
!= QLA_SUCCESS
) {
2347 DEBUG2_3_11(printk("%s(%ld): failed=%x.\n", __func__
,
2348 ha
->host_no
, rval
));
2350 DEBUG11(printk("%s(%ld): done.\n", __func__
, ha
->host_no
));
2357 * qla2x00_get_serdes_params() -
2363 qla2x00_get_serdes_params(scsi_qla_host_t
*ha
, uint16_t *sw_em_1g
,
2364 uint16_t *sw_em_2g
, uint16_t *sw_em_4g
)
2368 mbx_cmd_t
*mcp
= &mc
;
2370 DEBUG11(printk("%s(%ld): entered.\n", __func__
, ha
->host_no
));
2372 mcp
->mb
[0] = MBC_SERDES_PARAMS
;
2374 mcp
->out_mb
= MBX_1
|MBX_0
;
2375 mcp
->in_mb
= MBX_4
|MBX_3
|MBX_2
|MBX_0
;
2378 rval
= qla2x00_mailbox_command(ha
, mcp
);
2380 if (rval
!= QLA_SUCCESS
) {
2382 DEBUG2_3_11(printk("%s(%ld): failed=%x (%x).\n", __func__
,
2383 ha
->host_no
, rval
, mcp
->mb
[0]));
2385 DEBUG11(printk("%s(%ld): done.\n", __func__
, ha
->host_no
));
2388 *sw_em_1g
= mcp
->mb
[2];
2390 *sw_em_2g
= mcp
->mb
[3];
2392 *sw_em_4g
= mcp
->mb
[4];
2399 * qla2x00_set_serdes_params() -
2405 qla2x00_set_serdes_params(scsi_qla_host_t
*ha
, uint16_t sw_em_1g
,
2406 uint16_t sw_em_2g
, uint16_t sw_em_4g
)
2410 mbx_cmd_t
*mcp
= &mc
;
2412 DEBUG11(printk("%s(%ld): entered.\n", __func__
, ha
->host_no
));
2414 mcp
->mb
[0] = MBC_SERDES_PARAMS
;
2416 mcp
->mb
[2] = sw_em_1g
| BIT_15
;
2417 mcp
->mb
[3] = sw_em_2g
| BIT_15
;
2418 mcp
->mb
[4] = sw_em_4g
| BIT_15
;
2419 mcp
->out_mb
= MBX_4
|MBX_3
|MBX_2
|MBX_1
|MBX_0
;
2423 rval
= qla2x00_mailbox_command(ha
, mcp
);
2425 if (rval
!= QLA_SUCCESS
) {
2427 DEBUG2_3_11(printk("%s(%ld): failed=%x (%x).\n", __func__
,
2428 ha
->host_no
, rval
, mcp
->mb
[0]));
2431 DEBUG11(printk("%s(%ld): done.\n", __func__
, ha
->host_no
));
2438 qla2x00_stop_firmware(scsi_qla_host_t
*ha
)
2442 mbx_cmd_t
*mcp
= &mc
;
2444 if (!IS_QLA24XX(ha
) && !IS_QLA54XX(ha
))
2445 return QLA_FUNCTION_FAILED
;
2447 DEBUG11(printk("%s(%ld): entered.\n", __func__
, ha
->host_no
));
2449 mcp
->mb
[0] = MBC_STOP_FIRMWARE
;
2450 mcp
->out_mb
= MBX_0
;
2454 rval
= qla2x00_mailbox_command(ha
, mcp
);
2456 if (rval
!= QLA_SUCCESS
) {
2457 DEBUG2_3_11(printk("%s(%ld): failed=%x.\n", __func__
,
2458 ha
->host_no
, rval
));
2460 DEBUG11(printk("%s(%ld): done.\n", __func__
, ha
->host_no
));
2467 qla2x00_trace_control(scsi_qla_host_t
*ha
, uint16_t ctrl
, dma_addr_t eft_dma
,
2472 mbx_cmd_t
*mcp
= &mc
;
2474 if (!IS_QLA24XX(ha
) && !IS_QLA54XX(ha
))
2475 return QLA_FUNCTION_FAILED
;
2477 DEBUG11(printk("%s(%ld): entered.\n", __func__
, ha
->host_no
));
2479 mcp
->mb
[0] = MBC_TRACE_CONTROL
;
2481 mcp
->out_mb
= MBX_1
|MBX_0
;
2482 mcp
->in_mb
= MBX_1
|MBX_0
;
2483 if (ctrl
== TC_ENABLE
) {
2484 mcp
->mb
[2] = LSW(eft_dma
);
2485 mcp
->mb
[3] = MSW(eft_dma
);
2486 mcp
->mb
[4] = LSW(MSD(eft_dma
));
2487 mcp
->mb
[5] = MSW(MSD(eft_dma
));
2488 mcp
->mb
[6] = buffers
;
2490 mcp
->out_mb
|= MBX_7
|MBX_6
|MBX_5
|MBX_4
|MBX_3
|MBX_2
;
2494 rval
= qla2x00_mailbox_command(ha
, mcp
);
2496 if (rval
!= QLA_SUCCESS
) {
2497 DEBUG2_3_11(printk("%s(%ld): failed=%x mb[0]=%x mb[1]=%x.\n",
2498 __func__
, ha
->host_no
, rval
, mcp
->mb
[0], mcp
->mb
[1]));
2500 DEBUG11(printk("%s(%ld): done.\n", __func__
, ha
->host_no
));
2507 qla2x00_read_sfp(scsi_qla_host_t
*ha
, dma_addr_t sfp_dma
, uint16_t addr
,
2508 uint16_t off
, uint16_t count
)
2512 mbx_cmd_t
*mcp
= &mc
;
2514 if (!IS_QLA24XX(ha
) && !IS_QLA54XX(ha
))
2515 return QLA_FUNCTION_FAILED
;
2517 DEBUG11(printk("%s(%ld): entered.\n", __func__
, ha
->host_no
));
2519 mcp
->mb
[0] = MBC_READ_SFP
;
2521 mcp
->mb
[2] = MSW(sfp_dma
);
2522 mcp
->mb
[3] = LSW(sfp_dma
);
2523 mcp
->mb
[6] = MSW(MSD(sfp_dma
));
2524 mcp
->mb
[7] = LSW(MSD(sfp_dma
));
2528 mcp
->out_mb
= MBX_10
|MBX_9
|MBX_8
|MBX_7
|MBX_6
|MBX_3
|MBX_2
|MBX_1
|MBX_0
;
2532 rval
= qla2x00_mailbox_command(ha
, mcp
);
2534 if (rval
!= QLA_SUCCESS
) {
2535 DEBUG2_3_11(printk("%s(%ld): failed=%x (%x).\n", __func__
,
2536 ha
->host_no
, rval
, mcp
->mb
[0]));
2538 DEBUG11(printk("%s(%ld): done.\n", __func__
, ha
->host_no
));
2545 qla2x00_get_idma_speed(scsi_qla_host_t
*ha
, uint16_t loop_id
,
2546 uint16_t *port_speed
, uint16_t *mb
)
2550 mbx_cmd_t
*mcp
= &mc
;
2552 if (!IS_QLA24XX(ha
))
2553 return QLA_FUNCTION_FAILED
;
2555 DEBUG11(printk("%s(%ld): entered.\n", __func__
, ha
->host_no
));
2557 mcp
->mb
[0] = MBC_PORT_PARAMS
;
2558 mcp
->mb
[1] = loop_id
;
2559 mcp
->mb
[2] = mcp
->mb
[3] = mcp
->mb
[4] = mcp
->mb
[5] = 0;
2560 mcp
->out_mb
= MBX_5
|MBX_4
|MBX_3
|MBX_2
|MBX_1
|MBX_0
;
2561 mcp
->in_mb
= MBX_5
|MBX_4
|MBX_3
|MBX_1
|MBX_0
;
2564 rval
= qla2x00_mailbox_command(ha
, mcp
);
2566 /* Return mailbox statuses. */
2575 if (rval
!= QLA_SUCCESS
) {
2576 DEBUG2_3_11(printk("%s(%ld): failed=%x.\n", __func__
,
2577 ha
->host_no
, rval
));
2579 DEBUG11(printk("%s(%ld): done.\n", __func__
, ha
->host_no
));
2581 *port_speed
= mcp
->mb
[3];
2588 qla2x00_set_idma_speed(scsi_qla_host_t
*ha
, uint16_t loop_id
,
2589 uint16_t port_speed
, uint16_t *mb
)
2593 mbx_cmd_t
*mcp
= &mc
;
2595 if (!IS_QLA24XX(ha
))
2596 return QLA_FUNCTION_FAILED
;
2598 DEBUG11(printk("%s(%ld): entered.\n", __func__
, ha
->host_no
));
2600 mcp
->mb
[0] = MBC_PORT_PARAMS
;
2601 mcp
->mb
[1] = loop_id
;
2603 mcp
->mb
[3] = port_speed
& (BIT_2
|BIT_1
|BIT_0
);
2604 mcp
->mb
[4] = mcp
->mb
[5] = 0;
2605 mcp
->out_mb
= MBX_5
|MBX_4
|MBX_3
|MBX_2
|MBX_1
|MBX_0
;
2606 mcp
->in_mb
= MBX_5
|MBX_4
|MBX_3
|MBX_1
|MBX_0
;
2609 rval
= qla2x00_mailbox_command(ha
, mcp
);
2611 /* Return mailbox statuses. */
2620 if (rval
!= QLA_SUCCESS
) {
2621 DEBUG2_3_11(printk("%s(%ld): failed=%x.\n", __func__
,
2622 ha
->host_no
, rval
));
2624 DEBUG11(printk("%s(%ld): done.\n", __func__
, ha
->host_no
));