1 /*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
3 * Fibre Channel Host Bus Adapters. *
4 * Copyright (C) 2004-2006 Emulex. All rights reserved. *
5 * EMULEX and SLI are trademarks of Emulex. *
7 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
9 * This program is free software; you can redistribute it and/or *
10 * modify it under the terms of version 2 of the GNU General *
11 * Public License as published by the Free Software Foundation. *
12 * This program is distributed in the hope that it will be useful. *
13 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
14 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
15 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
16 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
17 * TO BE LEGALLY INVALID. See the GNU General Public License for *
18 * more details, a copy of which can be found in the file COPYING *
19 * included with this package. *
20 *******************************************************************/
22 #include <linux/blkdev.h>
23 #include <linux/pci.h>
24 #include <linux/interrupt.h>
25 #include <linux/delay.h>
27 #include <scsi/scsi.h>
28 #include <scsi/scsi_cmnd.h>
29 #include <scsi/scsi_device.h>
30 #include <scsi/scsi_host.h>
31 #include <scsi/scsi_transport_fc.h>
35 #include "lpfc_disc.h"
36 #include "lpfc_scsi.h"
38 #include "lpfc_crtn.h"
39 #include "lpfc_logmsg.h"
40 #include "lpfc_compat.h"
43 * Define macro to log: Mailbox command x%x cannot issue Data
44 * This allows multiple uses of lpfc_msgBlk0311
45 * w/o perturbing log msg utility.
47 #define LOG_MBOX_CANNOT_ISSUE_DATA( phba, mb, psli, flag) \
48 lpfc_printf_log(phba, \
51 "%d:0311 Mailbox command x%x cannot issue " \
52 "Data: x%x x%x x%x\n", \
60 /* There are only four IOCB completion types. */
61 typedef enum _lpfc_iocb_type
{
69 lpfc_sli_get_iocbq(struct lpfc_hba
* phba
)
71 struct list_head
*lpfc_iocb_list
= &phba
->lpfc_iocb_list
;
72 struct lpfc_iocbq
* iocbq
= NULL
;
74 list_remove_head(lpfc_iocb_list
, iocbq
, struct lpfc_iocbq
, list
);
79 lpfc_sli_release_iocbq(struct lpfc_hba
* phba
, struct lpfc_iocbq
* iocbq
)
81 size_t start_clean
= (size_t)(&((struct lpfc_iocbq
*)NULL
)->iocb
);
84 * Clean all volatile data fields, preserve iotag and node struct.
86 memset((char*)iocbq
+ start_clean
, 0, sizeof(*iocbq
) - start_clean
);
87 list_add_tail(&iocbq
->list
, &phba
->lpfc_iocb_list
);
91 * Translate the iocb command to an iocb command type used to decide the final
92 * disposition of each completed IOCB.
95 lpfc_sli_iocb_cmd_type(uint8_t iocb_cmnd
)
97 lpfc_iocb_type type
= LPFC_UNKNOWN_IOCB
;
99 if (iocb_cmnd
> CMD_MAX_IOCB_CMD
)
103 case CMD_XMIT_SEQUENCE_CR
:
104 case CMD_XMIT_SEQUENCE_CX
:
105 case CMD_XMIT_BCAST_CN
:
106 case CMD_XMIT_BCAST_CX
:
107 case CMD_ELS_REQUEST_CR
:
108 case CMD_ELS_REQUEST_CX
:
109 case CMD_CREATE_XRI_CR
:
110 case CMD_CREATE_XRI_CX
:
112 case CMD_XMIT_ELS_RSP_CX
:
114 case CMD_FCP_IWRITE_CR
:
115 case CMD_FCP_IWRITE_CX
:
116 case CMD_FCP_IREAD_CR
:
117 case CMD_FCP_IREAD_CX
:
118 case CMD_FCP_ICMND_CR
:
119 case CMD_FCP_ICMND_CX
:
120 case CMD_ADAPTER_MSG
:
121 case CMD_ADAPTER_DUMP
:
122 case CMD_XMIT_SEQUENCE64_CR
:
123 case CMD_XMIT_SEQUENCE64_CX
:
124 case CMD_XMIT_BCAST64_CN
:
125 case CMD_XMIT_BCAST64_CX
:
126 case CMD_ELS_REQUEST64_CR
:
127 case CMD_ELS_REQUEST64_CX
:
128 case CMD_FCP_IWRITE64_CR
:
129 case CMD_FCP_IWRITE64_CX
:
130 case CMD_FCP_IREAD64_CR
:
131 case CMD_FCP_IREAD64_CX
:
132 case CMD_FCP_ICMND64_CR
:
133 case CMD_FCP_ICMND64_CX
:
134 case CMD_GEN_REQUEST64_CR
:
135 case CMD_GEN_REQUEST64_CX
:
136 case CMD_XMIT_ELS_RSP64_CX
:
137 type
= LPFC_SOL_IOCB
;
139 case CMD_ABORT_XRI_CN
:
140 case CMD_ABORT_XRI_CX
:
141 case CMD_CLOSE_XRI_CN
:
142 case CMD_CLOSE_XRI_CX
:
143 case CMD_XRI_ABORTED_CX
:
144 case CMD_ABORT_MXRI64_CN
:
145 type
= LPFC_ABORT_IOCB
;
147 case CMD_RCV_SEQUENCE_CX
:
148 case CMD_RCV_ELS_REQ_CX
:
149 case CMD_RCV_SEQUENCE64_CX
:
150 case CMD_RCV_ELS_REQ64_CX
:
151 type
= LPFC_UNSOL_IOCB
;
154 type
= LPFC_UNKNOWN_IOCB
;
162 lpfc_sli_ring_map(struct lpfc_hba
* phba
, LPFC_MBOXQ_t
*pmb
)
164 struct lpfc_sli
*psli
= &phba
->sli
;
165 MAILBOX_t
*pmbox
= &pmb
->mb
;
168 for (i
= 0; i
< psli
->num_rings
; i
++) {
169 phba
->hba_state
= LPFC_INIT_MBX_CMDS
;
170 lpfc_config_ring(phba
, i
, pmb
);
171 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
);
172 if (rc
!= MBX_SUCCESS
) {
173 lpfc_printf_log(phba
,
176 "%d:0446 Adapter failed to init, "
177 "mbxCmd x%x CFG_RING, mbxStatus x%x, "
183 phba
->hba_state
= LPFC_HBA_ERROR
;
191 lpfc_sli_ringtxcmpl_put(struct lpfc_hba
* phba
,
192 struct lpfc_sli_ring
* pring
, struct lpfc_iocbq
* piocb
)
196 list_add_tail(&piocb
->list
, &pring
->txcmplq
);
197 pring
->txcmplq_cnt
++;
198 if (unlikely(pring
->ringno
== LPFC_ELS_RING
))
199 mod_timer(&phba
->els_tmofunc
,
200 jiffies
+ HZ
* (phba
->fc_ratov
<< 1));
202 if (pring
->fast_lookup
) {
203 /* Setup fast lookup based on iotag for completion */
204 iotag
= piocb
->iocb
.ulpIoTag
;
205 if (iotag
&& (iotag
< pring
->fast_iotag
))
206 *(pring
->fast_lookup
+ iotag
) = piocb
;
209 /* Cmd ring <ringno> put: iotag <iotag> greater then
210 configured max <fast_iotag> wd0 <icmd> */
211 lpfc_printf_log(phba
,
214 "%d:0316 Cmd ring %d put: iotag x%x "
215 "greater then configured max x%x "
218 pring
->ringno
, iotag
,
220 *(((uint32_t *)(&piocb
->iocb
)) + 7));
226 static struct lpfc_iocbq
*
227 lpfc_sli_ringtx_get(struct lpfc_hba
* phba
, struct lpfc_sli_ring
* pring
)
229 struct list_head
*dlp
;
230 struct lpfc_iocbq
*cmd_iocb
;
234 list_remove_head((&pring
->txq
), cmd_iocb
,
238 /* If the first ptr is not equal to the list header,
239 * deque the IOCBQ_t and return it.
247 lpfc_sli_next_iocb_slot (struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
)
249 struct lpfc_pgp
*pgp
= &phba
->slim2p
->mbx
.us
.s2
.port
[pring
->ringno
];
250 uint32_t max_cmd_idx
= pring
->numCiocb
;
253 if ((pring
->next_cmdidx
== pring
->cmdidx
) &&
254 (++pring
->next_cmdidx
>= max_cmd_idx
))
255 pring
->next_cmdidx
= 0;
257 if (unlikely(pring
->local_getidx
== pring
->next_cmdidx
)) {
259 pring
->local_getidx
= le32_to_cpu(pgp
->cmdGetInx
);
261 if (unlikely(pring
->local_getidx
>= max_cmd_idx
)) {
262 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
263 "%d:0315 Ring %d issue: portCmdGet %d "
264 "is bigger then cmd ring %d\n",
265 phba
->brd_no
, pring
->ringno
,
266 pring
->local_getidx
, max_cmd_idx
);
268 phba
->hba_state
= LPFC_HBA_ERROR
;
270 * All error attention handlers are posted to
273 phba
->work_ha
|= HA_ERATT
;
274 phba
->work_hs
= HS_FFER3
;
276 wake_up(phba
->work_wait
);
281 if (pring
->local_getidx
== pring
->next_cmdidx
)
285 iocb
= IOCB_ENTRY(pring
->cmdringaddr
, pring
->cmdidx
);
291 lpfc_sli_next_iotag(struct lpfc_hba
* phba
, struct lpfc_iocbq
* iocbq
)
293 struct lpfc_iocbq
** new_arr
;
294 struct lpfc_iocbq
** old_arr
;
296 struct lpfc_sli
*psli
= &phba
->sli
;
299 spin_lock_irq(phba
->host
->host_lock
);
300 iotag
= psli
->last_iotag
;
301 if(++iotag
< psli
->iocbq_lookup_len
) {
302 psli
->last_iotag
= iotag
;
303 psli
->iocbq_lookup
[iotag
] = iocbq
;
304 spin_unlock_irq(phba
->host
->host_lock
);
305 iocbq
->iotag
= iotag
;
308 else if (psli
->iocbq_lookup_len
< (0xffff
309 - LPFC_IOCBQ_LOOKUP_INCREMENT
)) {
310 new_len
= psli
->iocbq_lookup_len
+ LPFC_IOCBQ_LOOKUP_INCREMENT
;
311 spin_unlock_irq(phba
->host
->host_lock
);
312 new_arr
= kmalloc(new_len
* sizeof (struct lpfc_iocbq
*),
315 memset((char *)new_arr
, 0,
316 new_len
* sizeof (struct lpfc_iocbq
*));
317 spin_lock_irq(phba
->host
->host_lock
);
318 old_arr
= psli
->iocbq_lookup
;
319 if (new_len
<= psli
->iocbq_lookup_len
) {
320 /* highly unprobable case */
322 iotag
= psli
->last_iotag
;
323 if(++iotag
< psli
->iocbq_lookup_len
) {
324 psli
->last_iotag
= iotag
;
325 psli
->iocbq_lookup
[iotag
] = iocbq
;
326 spin_unlock_irq(phba
->host
->host_lock
);
327 iocbq
->iotag
= iotag
;
330 spin_unlock_irq(phba
->host
->host_lock
);
333 if (psli
->iocbq_lookup
)
334 memcpy(new_arr
, old_arr
,
335 ((psli
->last_iotag
+ 1) *
336 sizeof (struct lpfc_iocbq
*)));
337 psli
->iocbq_lookup
= new_arr
;
338 psli
->iocbq_lookup_len
= new_len
;
339 psli
->last_iotag
= iotag
;
340 psli
->iocbq_lookup
[iotag
] = iocbq
;
341 spin_unlock_irq(phba
->host
->host_lock
);
342 iocbq
->iotag
= iotag
;
348 lpfc_printf_log(phba
, KERN_ERR
,LOG_SLI
,
349 "%d:0318 Failed to allocate IOTAG.last IOTAG is %d\n",
350 phba
->brd_no
, psli
->last_iotag
);
356 lpfc_sli_submit_iocb(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
,
357 IOCB_t
*iocb
, struct lpfc_iocbq
*nextiocb
)
362 nextiocb
->iocb
.ulpIoTag
= (nextiocb
->iocb_cmpl
) ? nextiocb
->iotag
: 0;
365 * Issue iocb command to adapter
367 lpfc_sli_pcimem_bcopy(&nextiocb
->iocb
, iocb
, sizeof (IOCB_t
));
369 pring
->stats
.iocb_cmd
++;
372 * If there is no completion routine to call, we can release the
373 * IOCB buffer back right now. For IOCBs, like QUE_RING_BUF,
374 * that have no rsp ring completion, iocb_cmpl MUST be NULL.
376 if (nextiocb
->iocb_cmpl
)
377 lpfc_sli_ringtxcmpl_put(phba
, pring
, nextiocb
);
379 lpfc_sli_release_iocbq(phba
, nextiocb
);
382 * Let the HBA know what IOCB slot will be the next one the
383 * driver will put a command into.
385 pring
->cmdidx
= pring
->next_cmdidx
;
386 writel(pring
->cmdidx
, phba
->MBslimaddr
387 + (SLIMOFF
+ (pring
->ringno
* 2)) * 4);
391 lpfc_sli_update_full_ring(struct lpfc_hba
* phba
,
392 struct lpfc_sli_ring
*pring
)
394 int ringno
= pring
->ringno
;
396 pring
->flag
|= LPFC_CALL_RING_AVAILABLE
;
401 * Set ring 'ringno' to SET R0CE_REQ in Chip Att register.
402 * The HBA will tell us when an IOCB entry is available.
404 writel((CA_R0ATT
|CA_R0CE_REQ
) << (ringno
*4), phba
->CAregaddr
);
405 readl(phba
->CAregaddr
); /* flush */
407 pring
->stats
.iocb_cmd_full
++;
411 lpfc_sli_update_ring(struct lpfc_hba
* phba
,
412 struct lpfc_sli_ring
*pring
)
414 int ringno
= pring
->ringno
;
417 * Tell the HBA that there is work to do in this ring.
420 writel(CA_R0ATT
<< (ringno
* 4), phba
->CAregaddr
);
421 readl(phba
->CAregaddr
); /* flush */
425 lpfc_sli_resume_iocb(struct lpfc_hba
* phba
, struct lpfc_sli_ring
* pring
)
428 struct lpfc_iocbq
*nextiocb
;
432 * (a) there is anything on the txq to send
434 * (c) link attention events can be processed (fcp ring only)
435 * (d) IOCB processing is not blocked by the outstanding mbox command.
437 if (pring
->txq_cnt
&&
438 (phba
->hba_state
> LPFC_LINK_DOWN
) &&
439 (pring
->ringno
!= phba
->sli
.fcp_ring
||
440 phba
->sli
.sli_flag
& LPFC_PROCESS_LA
) &&
441 !(pring
->flag
& LPFC_STOP_IOCB_MBX
)) {
443 while ((iocb
= lpfc_sli_next_iocb_slot(phba
, pring
)) &&
444 (nextiocb
= lpfc_sli_ringtx_get(phba
, pring
)))
445 lpfc_sli_submit_iocb(phba
, pring
, iocb
, nextiocb
);
448 lpfc_sli_update_ring(phba
, pring
);
450 lpfc_sli_update_full_ring(phba
, pring
);
456 /* lpfc_sli_turn_on_ring is only called by lpfc_sli_handle_mb_event below */
458 lpfc_sli_turn_on_ring(struct lpfc_hba
* phba
, int ringno
)
460 struct lpfc_pgp
*pgp
= &phba
->slim2p
->mbx
.us
.s2
.port
[ringno
];
462 /* If the ring is active, flag it */
463 if (phba
->sli
.ring
[ringno
].cmdringaddr
) {
464 if (phba
->sli
.ring
[ringno
].flag
& LPFC_STOP_IOCB_MBX
) {
465 phba
->sli
.ring
[ringno
].flag
&= ~LPFC_STOP_IOCB_MBX
;
467 * Force update of the local copy of cmdGetInx
469 phba
->sli
.ring
[ringno
].local_getidx
470 = le32_to_cpu(pgp
->cmdGetInx
);
471 spin_lock_irq(phba
->host
->host_lock
);
472 lpfc_sli_resume_iocb(phba
, &phba
->sli
.ring
[ringno
]);
473 spin_unlock_irq(phba
->host
->host_lock
);
479 lpfc_sli_chk_mbx_command(uint8_t mbxCommand
)
483 switch (mbxCommand
) {
487 case MBX_RUN_BIU_DIAG
:
490 case MBX_CONFIG_LINK
:
491 case MBX_CONFIG_RING
:
493 case MBX_READ_CONFIG
:
494 case MBX_READ_RCONFIG
:
496 case MBX_READ_STATUS
:
500 case MBX_READ_LNK_STAT
:
502 case MBX_UNREG_LOGIN
:
505 case MBX_DUMP_MEMORY
:
506 case MBX_DUMP_CONTEXT
:
511 case MBX_DEL_LD_ENTRY
:
512 case MBX_RUN_PROGRAM
:
517 case MBX_CONFIG_FARP
:
520 case MBX_RUN_BIU_DIAG64
:
521 case MBX_CONFIG_PORT
:
522 case MBX_READ_SPARM64
:
524 case MBX_REG_LOGIN64
:
526 case MBX_FLASH_WR_ULA
:
528 case MBX_LOAD_EXP_ROM
:
538 lpfc_sli_wake_mbox_wait(struct lpfc_hba
* phba
, LPFC_MBOXQ_t
* pmboxq
)
540 wait_queue_head_t
*pdone_q
;
543 * If pdone_q is empty, the driver thread gave up waiting and
546 pdone_q
= (wait_queue_head_t
*) pmboxq
->context1
;
548 wake_up_interruptible(pdone_q
);
553 lpfc_sli_def_mbox_cmpl(struct lpfc_hba
* phba
, LPFC_MBOXQ_t
* pmb
)
555 struct lpfc_dmabuf
*mp
;
556 mp
= (struct lpfc_dmabuf
*) (pmb
->context1
);
558 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
561 mempool_free( pmb
, phba
->mbox_mem_pool
);
566 lpfc_sli_handle_mb_event(struct lpfc_hba
* phba
)
571 struct lpfc_sli
*psli
;
573 uint32_t process_next
;
576 /* We should only get here if we are in SLI2 mode */
577 if (!(phba
->sli
.sli_flag
& LPFC_SLI2_ACTIVE
)) {
581 phba
->sli
.slistat
.mbox_event
++;
583 /* Get a Mailbox buffer to setup mailbox commands for callback */
584 if ((pmb
= phba
->sli
.mbox_active
)) {
586 mbox
= &phba
->slim2p
->mbx
;
588 /* First check out the status word */
589 lpfc_sli_pcimem_bcopy(mbox
, pmbox
, sizeof (uint32_t));
591 /* Sanity check to ensure the host owns the mailbox */
592 if (pmbox
->mbxOwner
!= OWN_HOST
) {
593 /* Lets try for a while */
594 for (i
= 0; i
< 10240; i
++) {
595 /* First copy command data */
596 lpfc_sli_pcimem_bcopy(mbox
, pmbox
,
598 if (pmbox
->mbxOwner
== OWN_HOST
)
601 /* Stray Mailbox Interrupt, mbxCommand <cmd> mbxStatus
603 lpfc_printf_log(phba
,
606 "%d:0304 Stray Mailbox Interrupt "
607 "mbxCommand x%x mbxStatus x%x\n",
612 spin_lock_irq(phba
->host
->host_lock
);
613 phba
->sli
.sli_flag
|= LPFC_SLI_MBOX_ACTIVE
;
614 spin_unlock_irq(phba
->host
->host_lock
);
619 del_timer_sync(&phba
->sli
.mbox_tmo
);
620 phba
->work_hba_events
&= ~WORKER_MBOX_TMO
;
623 * It is a fatal error if unknown mbox command completion.
625 if (lpfc_sli_chk_mbx_command(pmbox
->mbxCommand
) ==
628 /* Unknow mailbox command compl */
629 lpfc_printf_log(phba
,
632 "%d:0323 Unknown Mailbox command %x Cmpl\n",
635 phba
->hba_state
= LPFC_HBA_ERROR
;
636 phba
->work_hs
= HS_FFER3
;
637 lpfc_handle_eratt(phba
);
641 phba
->sli
.mbox_active
= NULL
;
642 if (pmbox
->mbxStatus
) {
643 phba
->sli
.slistat
.mbox_stat_err
++;
644 if (pmbox
->mbxStatus
== MBXERR_NO_RESOURCES
) {
645 /* Mbox cmd cmpl error - RETRYing */
646 lpfc_printf_log(phba
,
649 "%d:0305 Mbox cmd cmpl error - "
650 "RETRYing Data: x%x x%x x%x x%x\n",
654 pmbox
->un
.varWords
[0],
656 pmbox
->mbxStatus
= 0;
657 pmbox
->mbxOwner
= OWN_HOST
;
658 spin_lock_irq(phba
->host
->host_lock
);
659 phba
->sli
.sli_flag
&= ~LPFC_SLI_MBOX_ACTIVE
;
660 spin_unlock_irq(phba
->host
->host_lock
);
661 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_NOWAIT
);
662 if (rc
== MBX_SUCCESS
)
667 /* Mailbox cmd <cmd> Cmpl <cmpl> */
668 lpfc_printf_log(phba
,
671 "%d:0307 Mailbox cmd x%x Cmpl x%p "
672 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x\n",
676 *((uint32_t *) pmbox
),
677 pmbox
->un
.varWords
[0],
678 pmbox
->un
.varWords
[1],
679 pmbox
->un
.varWords
[2],
680 pmbox
->un
.varWords
[3],
681 pmbox
->un
.varWords
[4],
682 pmbox
->un
.varWords
[5],
683 pmbox
->un
.varWords
[6],
684 pmbox
->un
.varWords
[7]);
686 if (pmb
->mbox_cmpl
) {
687 lpfc_sli_pcimem_bcopy(mbox
, pmbox
, MAILBOX_CMD_SIZE
);
688 pmb
->mbox_cmpl(phba
,pmb
);
694 process_next
= 0; /* by default don't loop */
695 spin_lock_irq(phba
->host
->host_lock
);
696 phba
->sli
.sli_flag
&= ~LPFC_SLI_MBOX_ACTIVE
;
698 /* Process next mailbox command if there is one */
699 if ((pmb
= lpfc_mbox_get(phba
))) {
700 spin_unlock_irq(phba
->host
->host_lock
);
701 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_NOWAIT
);
702 if (rc
== MBX_NOT_FINISHED
) {
703 pmb
->mb
.mbxStatus
= MBX_NOT_FINISHED
;
704 pmb
->mbox_cmpl(phba
,pmb
);
706 continue; /* loop back */
709 spin_unlock_irq(phba
->host
->host_lock
);
710 /* Turn on IOCB processing */
711 for (i
= 0; i
< phba
->sli
.num_rings
; i
++) {
712 lpfc_sli_turn_on_ring(phba
, i
);
715 /* Free any lpfc_dmabuf's waiting for mbox cmd cmpls */
716 while (!list_empty(&phba
->freebufList
)) {
717 struct lpfc_dmabuf
*mp
;
720 list_remove_head((&phba
->freebufList
),
725 lpfc_mbuf_free(phba
, mp
->virt
,
732 } while (process_next
);
737 lpfc_sli_process_unsol_iocb(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
,
738 struct lpfc_iocbq
*saveq
)
746 irsp
= &(saveq
->iocb
);
747 if ((irsp
->ulpCommand
== CMD_RCV_ELS_REQ64_CX
)
748 || (irsp
->ulpCommand
== CMD_RCV_ELS_REQ_CX
)) {
753 (WORD5
*) & (saveq
->iocb
.un
.
755 Rctl
= w5p
->hcsw
.Rctl
;
756 Type
= w5p
->hcsw
.Type
;
758 /* Firmware Workaround */
759 if ((Rctl
== 0) && (pring
->ringno
== LPFC_ELS_RING
) &&
760 (irsp
->ulpCommand
== CMD_RCV_SEQUENCE64_CX
)) {
763 w5p
->hcsw
.Rctl
= Rctl
;
764 w5p
->hcsw
.Type
= Type
;
767 /* unSolicited Responses */
768 if (pring
->prt
[0].profile
) {
769 if (pring
->prt
[0].lpfc_sli_rcv_unsol_event
)
770 (pring
->prt
[0].lpfc_sli_rcv_unsol_event
) (phba
, pring
,
774 /* We must search, based on rctl / type
775 for the right routine */
776 for (i
= 0; i
< pring
->num_mask
;
778 if ((pring
->prt
[i
].rctl
==
782 if (pring
->prt
[i
].lpfc_sli_rcv_unsol_event
)
783 (pring
->prt
[i
].lpfc_sli_rcv_unsol_event
)
784 (phba
, pring
, saveq
);
791 /* Unexpected Rctl / Type received */
792 /* Ring <ringno> handler: unexpected
793 Rctl <Rctl> Type <Type> received */
794 lpfc_printf_log(phba
,
797 "%d:0313 Ring %d handler: unexpected Rctl x%x "
798 "Type x%x received \n",
807 static struct lpfc_iocbq
*
808 lpfc_sli_iocbq_lookup(struct lpfc_hba
* phba
,
809 struct lpfc_sli_ring
* pring
,
810 struct lpfc_iocbq
* prspiocb
)
812 struct lpfc_iocbq
*cmd_iocb
= NULL
;
815 iotag
= prspiocb
->iocb
.ulpIoTag
;
817 if (iotag
!= 0 && iotag
<= phba
->sli
.last_iotag
) {
818 cmd_iocb
= phba
->sli
.iocbq_lookup
[iotag
];
819 list_del(&cmd_iocb
->list
);
820 pring
->txcmplq_cnt
--;
824 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
825 "%d:0317 iotag x%x is out off "
826 "range: max iotag x%x wd0 x%x\n",
828 phba
->sli
.last_iotag
,
829 *(((uint32_t *) &prspiocb
->iocb
) + 7));
834 lpfc_sli_process_sol_iocb(struct lpfc_hba
* phba
, struct lpfc_sli_ring
* pring
,
835 struct lpfc_iocbq
*saveq
)
837 struct lpfc_iocbq
* cmdiocbp
;
841 /* Based on the iotag field, get the cmd IOCB from the txcmplq */
842 spin_lock_irqsave(phba
->host
->host_lock
, iflag
);
843 cmdiocbp
= lpfc_sli_iocbq_lookup(phba
, pring
, saveq
);
845 if (cmdiocbp
->iocb_cmpl
) {
847 * Post all ELS completions to the worker thread.
848 * All other are passed to the completion callback.
850 if (pring
->ringno
== LPFC_ELS_RING
) {
851 spin_unlock_irqrestore(phba
->host
->host_lock
,
853 (cmdiocbp
->iocb_cmpl
) (phba
, cmdiocbp
, saveq
);
854 spin_lock_irqsave(phba
->host
->host_lock
, iflag
);
857 spin_unlock_irqrestore(phba
->host
->host_lock
,
859 (cmdiocbp
->iocb_cmpl
) (phba
, cmdiocbp
, saveq
);
860 spin_lock_irqsave(phba
->host
->host_lock
, iflag
);
863 lpfc_sli_release_iocbq(phba
, cmdiocbp
);
866 * Unknown initiating command based on the response iotag.
867 * This could be the case on the ELS ring because of
870 if (pring
->ringno
!= LPFC_ELS_RING
) {
872 * Ring <ringno> handler: unexpected completion IoTag
875 lpfc_printf_log(phba
,
878 "%d:0322 Ring %d handler: unexpected "
879 "completion IoTag x%x Data: x%x x%x x%x x%x\n",
882 saveq
->iocb
.ulpIoTag
,
883 saveq
->iocb
.ulpStatus
,
884 saveq
->iocb
.un
.ulpWord
[4],
885 saveq
->iocb
.ulpCommand
,
886 saveq
->iocb
.ulpContext
);
890 spin_unlock_irqrestore(phba
->host
->host_lock
, iflag
);
894 static void lpfc_sli_rsp_pointers_error(struct lpfc_hba
* phba
,
895 struct lpfc_sli_ring
* pring
)
897 struct lpfc_pgp
*pgp
= &phba
->slim2p
->mbx
.us
.s2
.port
[pring
->ringno
];
899 * Ring <ringno> handler: portRspPut <portRspPut> is bigger then
900 * rsp ring <portRspMax>
902 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
903 "%d:0312 Ring %d handler: portRspPut %d "
904 "is bigger then rsp ring %d\n",
905 phba
->brd_no
, pring
->ringno
,
906 le32_to_cpu(pgp
->rspPutInx
),
909 phba
->hba_state
= LPFC_HBA_ERROR
;
912 * All error attention handlers are posted to
915 phba
->work_ha
|= HA_ERATT
;
916 phba
->work_hs
= HS_FFER3
;
918 wake_up(phba
->work_wait
);
923 void lpfc_sli_poll_fcp_ring(struct lpfc_hba
* phba
)
925 struct lpfc_sli
* psli
= &phba
->sli
;
926 struct lpfc_sli_ring
* pring
= &psli
->ring
[LPFC_FCP_RING
];
928 IOCB_t
*entry
= NULL
;
929 struct lpfc_iocbq
*cmdiocbq
= NULL
;
930 struct lpfc_iocbq rspiocbq
;
931 struct lpfc_pgp
*pgp
;
933 uint32_t portRspPut
, portRspMax
;
935 uint32_t rsp_cmpl
= 0;
936 void __iomem
*to_slim
;
939 pring
->stats
.iocb_event
++;
941 /* The driver assumes SLI-2 mode */
942 pgp
= &phba
->slim2p
->mbx
.us
.s2
.port
[pring
->ringno
];
945 * The next available response entry should never exceed the maximum
946 * entries. If it does, treat it as an adapter hardware error.
948 portRspMax
= pring
->numRiocb
;
949 portRspPut
= le32_to_cpu(pgp
->rspPutInx
);
950 if (unlikely(portRspPut
>= portRspMax
)) {
951 lpfc_sli_rsp_pointers_error(phba
, pring
);
956 while (pring
->rspidx
!= portRspPut
) {
958 entry
= IOCB_ENTRY(pring
->rspringaddr
, pring
->rspidx
);
960 if (++pring
->rspidx
>= portRspMax
)
963 lpfc_sli_pcimem_bcopy((uint32_t *) entry
,
964 (uint32_t *) &rspiocbq
.iocb
,
966 irsp
= &rspiocbq
.iocb
;
967 type
= lpfc_sli_iocb_cmd_type(irsp
->ulpCommand
& CMD_IOCB_MASK
);
968 pring
->stats
.iocb_rsp
++;
971 if (unlikely(irsp
->ulpStatus
)) {
972 /* Rsp ring <ringno> error: IOCB */
973 lpfc_printf_log(phba
, KERN_WARNING
, LOG_SLI
,
974 "%d:0326 Rsp Ring %d error: IOCB Data: "
975 "x%x x%x x%x x%x x%x x%x x%x x%x\n",
976 phba
->brd_no
, pring
->ringno
,
983 *(((uint32_t *) irsp
) + 6),
984 *(((uint32_t *) irsp
) + 7));
988 case LPFC_ABORT_IOCB
:
991 * Idle exchange closed via ABTS from port. No iocb
992 * resources need to be recovered.
994 if (unlikely(irsp
->ulpCommand
== CMD_XRI_ABORTED_CX
)) {
995 printk(KERN_INFO
"%s: IOCB cmd 0x%x processed."
996 " Skipping completion\n", __FUNCTION__
,
1001 cmdiocbq
= lpfc_sli_iocbq_lookup(phba
, pring
,
1003 if ((cmdiocbq
) && (cmdiocbq
->iocb_cmpl
)) {
1004 (cmdiocbq
->iocb_cmpl
)(phba
, cmdiocbq
,
1009 if (irsp
->ulpCommand
== CMD_ADAPTER_MSG
) {
1010 char adaptermsg
[LPFC_MAX_ADPTMSG
];
1011 memset(adaptermsg
, 0, LPFC_MAX_ADPTMSG
);
1012 memcpy(&adaptermsg
[0], (uint8_t *) irsp
,
1014 dev_warn(&((phba
->pcidev
)->dev
), "lpfc%d: %s",
1015 phba
->brd_no
, adaptermsg
);
1017 /* Unknown IOCB command */
1018 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
1019 "%d:0321 Unknown IOCB command "
1020 "Data: x%x, x%x x%x x%x x%x\n",
1031 * The response IOCB has been processed. Update the ring
1032 * pointer in SLIM. If the port response put pointer has not
1033 * been updated, sync the pgp->rspPutInx and fetch the new port
1034 * response put pointer.
1036 to_slim
= phba
->MBslimaddr
+
1037 (SLIMOFF
+ (pring
->ringno
* 2) + 1) * 4;
1038 writeb(pring
->rspidx
, to_slim
);
1040 if (pring
->rspidx
== portRspPut
)
1041 portRspPut
= le32_to_cpu(pgp
->rspPutInx
);
1044 ha_copy
= readl(phba
->HAregaddr
);
1045 ha_copy
>>= (LPFC_FCP_RING
* 4);
1047 if ((rsp_cmpl
> 0) && (ha_copy
& HA_R0RE_REQ
)) {
1048 pring
->stats
.iocb_rsp_full
++;
1049 status
= ((CA_R0ATT
| CA_R0RE_RSP
) << (LPFC_FCP_RING
* 4));
1050 writel(status
, phba
->CAregaddr
);
1051 readl(phba
->CAregaddr
);
1053 if ((ha_copy
& HA_R0CE_RSP
) &&
1054 (pring
->flag
& LPFC_CALL_RING_AVAILABLE
)) {
1055 pring
->flag
&= ~LPFC_CALL_RING_AVAILABLE
;
1056 pring
->stats
.iocb_cmd_empty
++;
1058 /* Force update of the local copy of cmdGetInx */
1059 pring
->local_getidx
= le32_to_cpu(pgp
->cmdGetInx
);
1060 lpfc_sli_resume_iocb(phba
, pring
);
1062 if ((pring
->lpfc_sli_cmd_available
))
1063 (pring
->lpfc_sli_cmd_available
) (phba
, pring
);
1071 * This routine presumes LPFC_FCP_RING handling and doesn't bother
1072 * to check it explicitly.
1075 lpfc_sli_handle_fast_ring_event(struct lpfc_hba
* phba
,
1076 struct lpfc_sli_ring
* pring
, uint32_t mask
)
1078 struct lpfc_pgp
*pgp
= &phba
->slim2p
->mbx
.us
.s2
.port
[pring
->ringno
];
1079 IOCB_t
*irsp
= NULL
;
1080 IOCB_t
*entry
= NULL
;
1081 struct lpfc_iocbq
*cmdiocbq
= NULL
;
1082 struct lpfc_iocbq rspiocbq
;
1084 uint32_t portRspPut
, portRspMax
;
1086 lpfc_iocb_type type
;
1087 unsigned long iflag
;
1088 uint32_t rsp_cmpl
= 0;
1089 void __iomem
*to_slim
;
1091 spin_lock_irqsave(phba
->host
->host_lock
, iflag
);
1092 pring
->stats
.iocb_event
++;
1095 * The next available response entry should never exceed the maximum
1096 * entries. If it does, treat it as an adapter hardware error.
1098 portRspMax
= pring
->numRiocb
;
1099 portRspPut
= le32_to_cpu(pgp
->rspPutInx
);
1100 if (unlikely(portRspPut
>= portRspMax
)) {
1101 lpfc_sli_rsp_pointers_error(phba
, pring
);
1102 spin_unlock_irqrestore(phba
->host
->host_lock
, iflag
);
1107 while (pring
->rspidx
!= portRspPut
) {
1109 * Fetch an entry off the ring and copy it into a local data
1110 * structure. The copy involves a byte-swap since the
1111 * network byte order and pci byte orders are different.
1113 entry
= IOCB_ENTRY(pring
->rspringaddr
, pring
->rspidx
);
1115 if (++pring
->rspidx
>= portRspMax
)
1118 lpfc_sli_pcimem_bcopy((uint32_t *) entry
,
1119 (uint32_t *) &rspiocbq
.iocb
,
1121 irsp
= &rspiocbq
.iocb
;
1123 type
= lpfc_sli_iocb_cmd_type(irsp
->ulpCommand
& CMD_IOCB_MASK
);
1124 pring
->stats
.iocb_rsp
++;
1127 if (unlikely(irsp
->ulpStatus
)) {
1128 /* Rsp ring <ringno> error: IOCB */
1129 lpfc_printf_log(phba
, KERN_WARNING
, LOG_SLI
,
1130 "%d:0326 Rsp Ring %d error: IOCB Data: "
1131 "x%x x%x x%x x%x x%x x%x x%x x%x\n",
1132 phba
->brd_no
, pring
->ringno
,
1133 irsp
->un
.ulpWord
[0], irsp
->un
.ulpWord
[1],
1134 irsp
->un
.ulpWord
[2], irsp
->un
.ulpWord
[3],
1135 irsp
->un
.ulpWord
[4], irsp
->un
.ulpWord
[5],
1136 *(((uint32_t *) irsp
) + 6),
1137 *(((uint32_t *) irsp
) + 7));
1141 case LPFC_ABORT_IOCB
:
1144 * Idle exchange closed via ABTS from port. No iocb
1145 * resources need to be recovered.
1147 if (unlikely(irsp
->ulpCommand
== CMD_XRI_ABORTED_CX
)) {
1148 printk(KERN_INFO
"%s: IOCB cmd 0x%x processed. "
1149 "Skipping completion\n", __FUNCTION__
,
1154 cmdiocbq
= lpfc_sli_iocbq_lookup(phba
, pring
,
1156 if ((cmdiocbq
) && (cmdiocbq
->iocb_cmpl
)) {
1157 if (phba
->cfg_poll
& ENABLE_FCP_RING_POLLING
) {
1158 (cmdiocbq
->iocb_cmpl
)(phba
, cmdiocbq
,
1161 spin_unlock_irqrestore(
1162 phba
->host
->host_lock
, iflag
);
1163 (cmdiocbq
->iocb_cmpl
)(phba
, cmdiocbq
,
1165 spin_lock_irqsave(phba
->host
->host_lock
,
1171 if (irsp
->ulpCommand
== CMD_ADAPTER_MSG
) {
1172 char adaptermsg
[LPFC_MAX_ADPTMSG
];
1173 memset(adaptermsg
, 0, LPFC_MAX_ADPTMSG
);
1174 memcpy(&adaptermsg
[0], (uint8_t *) irsp
,
1176 dev_warn(&((phba
->pcidev
)->dev
), "lpfc%d: %s",
1177 phba
->brd_no
, adaptermsg
);
1179 /* Unknown IOCB command */
1180 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
1181 "%d:0321 Unknown IOCB command "
1182 "Data: x%x, x%x x%x x%x x%x\n",
1183 phba
->brd_no
, type
, irsp
->ulpCommand
,
1184 irsp
->ulpStatus
, irsp
->ulpIoTag
,
1191 * The response IOCB has been processed. Update the ring
1192 * pointer in SLIM. If the port response put pointer has not
1193 * been updated, sync the pgp->rspPutInx and fetch the new port
1194 * response put pointer.
1196 to_slim
= phba
->MBslimaddr
+
1197 (SLIMOFF
+ (pring
->ringno
* 2) + 1) * 4;
1198 writel(pring
->rspidx
, to_slim
);
1200 if (pring
->rspidx
== portRspPut
)
1201 portRspPut
= le32_to_cpu(pgp
->rspPutInx
);
1204 if ((rsp_cmpl
> 0) && (mask
& HA_R0RE_REQ
)) {
1205 pring
->stats
.iocb_rsp_full
++;
1206 status
= ((CA_R0ATT
| CA_R0RE_RSP
) << (pring
->ringno
* 4));
1207 writel(status
, phba
->CAregaddr
);
1208 readl(phba
->CAregaddr
);
1210 if ((mask
& HA_R0CE_RSP
) && (pring
->flag
& LPFC_CALL_RING_AVAILABLE
)) {
1211 pring
->flag
&= ~LPFC_CALL_RING_AVAILABLE
;
1212 pring
->stats
.iocb_cmd_empty
++;
1214 /* Force update of the local copy of cmdGetInx */
1215 pring
->local_getidx
= le32_to_cpu(pgp
->cmdGetInx
);
1216 lpfc_sli_resume_iocb(phba
, pring
);
1218 if ((pring
->lpfc_sli_cmd_available
))
1219 (pring
->lpfc_sli_cmd_available
) (phba
, pring
);
1223 spin_unlock_irqrestore(phba
->host
->host_lock
, iflag
);
1229 lpfc_sli_handle_slow_ring_event(struct lpfc_hba
* phba
,
1230 struct lpfc_sli_ring
* pring
, uint32_t mask
)
1233 IOCB_t
*irsp
= NULL
;
1234 struct lpfc_iocbq
*rspiocbp
= NULL
;
1235 struct lpfc_iocbq
*next_iocb
;
1236 struct lpfc_iocbq
*cmdiocbp
;
1237 struct lpfc_iocbq
*saveq
;
1238 struct lpfc_pgp
*pgp
= &phba
->slim2p
->mbx
.us
.s2
.port
[pring
->ringno
];
1239 uint8_t iocb_cmd_type
;
1240 lpfc_iocb_type type
;
1241 uint32_t status
, free_saveq
;
1242 uint32_t portRspPut
, portRspMax
;
1244 unsigned long iflag
;
1245 void __iomem
*to_slim
;
1247 spin_lock_irqsave(phba
->host
->host_lock
, iflag
);
1248 pring
->stats
.iocb_event
++;
1251 * The next available response entry should never exceed the maximum
1252 * entries. If it does, treat it as an adapter hardware error.
1254 portRspMax
= pring
->numRiocb
;
1255 portRspPut
= le32_to_cpu(pgp
->rspPutInx
);
1256 if (portRspPut
>= portRspMax
) {
1258 * Ring <ringno> handler: portRspPut <portRspPut> is bigger then
1259 * rsp ring <portRspMax>
1261 lpfc_printf_log(phba
,
1264 "%d:0312 Ring %d handler: portRspPut %d "
1265 "is bigger then rsp ring %d\n",
1267 pring
->ringno
, portRspPut
, portRspMax
);
1269 phba
->hba_state
= LPFC_HBA_ERROR
;
1270 spin_unlock_irqrestore(phba
->host
->host_lock
, iflag
);
1272 phba
->work_hs
= HS_FFER3
;
1273 lpfc_handle_eratt(phba
);
1279 while (pring
->rspidx
!= portRspPut
) {
1281 * Build a completion list and call the appropriate handler.
1282 * The process is to get the next available response iocb, get
1283 * a free iocb from the list, copy the response data into the
1284 * free iocb, insert to the continuation list, and update the
1285 * next response index to slim. This process makes response
1286 * iocb's in the ring available to DMA as fast as possible but
1287 * pays a penalty for a copy operation. Since the iocb is
1288 * only 32 bytes, this penalty is considered small relative to
1289 * the PCI reads for register values and a slim write. When
1290 * the ulpLe field is set, the entire Command has been
1293 entry
= IOCB_ENTRY(pring
->rspringaddr
, pring
->rspidx
);
1294 rspiocbp
= lpfc_sli_get_iocbq(phba
);
1295 if (rspiocbp
== NULL
) {
1296 printk(KERN_ERR
"%s: out of buffers! Failing "
1297 "completion.\n", __FUNCTION__
);
1301 lpfc_sli_pcimem_bcopy(entry
, &rspiocbp
->iocb
, sizeof (IOCB_t
));
1302 irsp
= &rspiocbp
->iocb
;
1304 if (++pring
->rspidx
>= portRspMax
)
1307 to_slim
= phba
->MBslimaddr
+ (SLIMOFF
+ (pring
->ringno
* 2)
1309 writel(pring
->rspidx
, to_slim
);
1311 if (list_empty(&(pring
->iocb_continueq
))) {
1312 list_add(&rspiocbp
->list
, &(pring
->iocb_continueq
));
1314 list_add_tail(&rspiocbp
->list
,
1315 &(pring
->iocb_continueq
));
1318 pring
->iocb_continueq_cnt
++;
1321 * By default, the driver expects to free all resources
1322 * associated with this iocb completion.
1325 saveq
= list_get_first(&pring
->iocb_continueq
,
1326 struct lpfc_iocbq
, list
);
1327 irsp
= &(saveq
->iocb
);
1328 list_del_init(&pring
->iocb_continueq
);
1329 pring
->iocb_continueq_cnt
= 0;
1331 pring
->stats
.iocb_rsp
++;
1333 if (irsp
->ulpStatus
) {
1334 /* Rsp ring <ringno> error: IOCB */
1335 lpfc_printf_log(phba
,
1338 "%d:0328 Rsp Ring %d error: IOCB Data: "
1339 "x%x x%x x%x x%x x%x x%x x%x x%x\n",
1342 irsp
->un
.ulpWord
[0],
1343 irsp
->un
.ulpWord
[1],
1344 irsp
->un
.ulpWord
[2],
1345 irsp
->un
.ulpWord
[3],
1346 irsp
->un
.ulpWord
[4],
1347 irsp
->un
.ulpWord
[5],
1348 *(((uint32_t *) irsp
) + 6),
1349 *(((uint32_t *) irsp
) + 7));
1353 * Fetch the IOCB command type and call the correct
1354 * completion routine. Solicited and Unsolicited
1355 * IOCBs on the ELS ring get freed back to the
1356 * lpfc_iocb_list by the discovery kernel thread.
1358 iocb_cmd_type
= irsp
->ulpCommand
& CMD_IOCB_MASK
;
1359 type
= lpfc_sli_iocb_cmd_type(iocb_cmd_type
);
1360 if (type
== LPFC_SOL_IOCB
) {
1361 spin_unlock_irqrestore(phba
->host
->host_lock
,
1363 rc
= lpfc_sli_process_sol_iocb(phba
, pring
,
1365 spin_lock_irqsave(phba
->host
->host_lock
, iflag
);
1366 } else if (type
== LPFC_UNSOL_IOCB
) {
1367 spin_unlock_irqrestore(phba
->host
->host_lock
,
1369 rc
= lpfc_sli_process_unsol_iocb(phba
, pring
,
1371 spin_lock_irqsave(phba
->host
->host_lock
, iflag
);
1372 } else if (type
== LPFC_ABORT_IOCB
) {
1373 if ((irsp
->ulpCommand
!= CMD_XRI_ABORTED_CX
) &&
1375 lpfc_sli_iocbq_lookup(phba
, pring
,
1377 /* Call the specified completion
1379 if (cmdiocbp
->iocb_cmpl
) {
1380 spin_unlock_irqrestore(
1381 phba
->host
->host_lock
,
1383 (cmdiocbp
->iocb_cmpl
) (phba
,
1386 phba
->host
->host_lock
,
1389 lpfc_sli_release_iocbq(phba
,
1392 } else if (type
== LPFC_UNKNOWN_IOCB
) {
1393 if (irsp
->ulpCommand
== CMD_ADAPTER_MSG
) {
1395 char adaptermsg
[LPFC_MAX_ADPTMSG
];
1397 memset(adaptermsg
, 0,
1399 memcpy(&adaptermsg
[0], (uint8_t *) irsp
,
1401 dev_warn(&((phba
->pcidev
)->dev
),
1403 phba
->brd_no
, adaptermsg
);
1405 /* Unknown IOCB command */
1406 lpfc_printf_log(phba
,
1409 "%d:0321 Unknown IOCB command "
1410 "Data: x%x x%x x%x x%x\n",
1420 if (!list_empty(&saveq
->list
)) {
1421 list_for_each_entry_safe(rspiocbp
,
1425 lpfc_sli_release_iocbq(phba
,
1430 lpfc_sli_release_iocbq(phba
, saveq
);
1435 * If the port response put pointer has not been updated, sync
1436 * the pgp->rspPutInx in the MAILBOX_tand fetch the new port
1437 * response put pointer.
1439 if (pring
->rspidx
== portRspPut
) {
1440 portRspPut
= le32_to_cpu(pgp
->rspPutInx
);
1442 } /* while (pring->rspidx != portRspPut) */
1444 if ((rspiocbp
!= 0) && (mask
& HA_R0RE_REQ
)) {
1445 /* At least one response entry has been freed */
1446 pring
->stats
.iocb_rsp_full
++;
1447 /* SET RxRE_RSP in Chip Att register */
1448 status
= ((CA_R0ATT
| CA_R0RE_RSP
) << (pring
->ringno
* 4));
1449 writel(status
, phba
->CAregaddr
);
1450 readl(phba
->CAregaddr
); /* flush */
1452 if ((mask
& HA_R0CE_RSP
) && (pring
->flag
& LPFC_CALL_RING_AVAILABLE
)) {
1453 pring
->flag
&= ~LPFC_CALL_RING_AVAILABLE
;
1454 pring
->stats
.iocb_cmd_empty
++;
1456 /* Force update of the local copy of cmdGetInx */
1457 pring
->local_getidx
= le32_to_cpu(pgp
->cmdGetInx
);
1458 lpfc_sli_resume_iocb(phba
, pring
);
1460 if ((pring
->lpfc_sli_cmd_available
))
1461 (pring
->lpfc_sli_cmd_available
) (phba
, pring
);
1465 spin_unlock_irqrestore(phba
->host
->host_lock
, iflag
);
1470 lpfc_sli_abort_iocb_ring(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
)
1472 struct lpfc_iocbq
*iocb
, *next_iocb
;
1473 IOCB_t
*icmd
= NULL
, *cmd
= NULL
;
1478 /* Error everything on txq and txcmplq
1481 spin_lock_irq(phba
->host
->host_lock
);
1482 list_for_each_entry_safe(iocb
, next_iocb
, &pring
->txq
, list
) {
1483 list_del_init(&iocb
->list
);
1484 if (iocb
->iocb_cmpl
) {
1486 icmd
->ulpStatus
= IOSTAT_LOCAL_REJECT
;
1487 icmd
->un
.ulpWord
[4] = IOERR_SLI_ABORTED
;
1488 spin_unlock_irq(phba
->host
->host_lock
);
1489 (iocb
->iocb_cmpl
) (phba
, iocb
, iocb
);
1490 spin_lock_irq(phba
->host
->host_lock
);
1492 lpfc_sli_release_iocbq(phba
, iocb
);
1495 INIT_LIST_HEAD(&(pring
->txq
));
1497 /* Next issue ABTS for everything on the txcmplq */
1498 list_for_each_entry_safe(iocb
, next_iocb
, &pring
->txcmplq
, list
) {
1502 * Imediate abort of IOCB, deque and call compl
1505 list_del_init(&iocb
->list
);
1506 pring
->txcmplq_cnt
--;
1508 if (iocb
->iocb_cmpl
) {
1509 cmd
->ulpStatus
= IOSTAT_LOCAL_REJECT
;
1510 cmd
->un
.ulpWord
[4] = IOERR_SLI_ABORTED
;
1511 spin_unlock_irq(phba
->host
->host_lock
);
1512 (iocb
->iocb_cmpl
) (phba
, iocb
, iocb
);
1513 spin_lock_irq(phba
->host
->host_lock
);
1515 lpfc_sli_release_iocbq(phba
, iocb
);
1518 INIT_LIST_HEAD(&pring
->txcmplq
);
1519 pring
->txcmplq_cnt
= 0;
1520 spin_unlock_irq(phba
->host
->host_lock
);
1526 lpfc_sli_brdready(struct lpfc_hba
* phba
, uint32_t mask
)
1532 /* Read the HBA Host Status Register */
1533 status
= readl(phba
->HSregaddr
);
1536 * Check status register every 100ms for 5 retries, then every
1537 * 500ms for 5, then every 2.5 sec for 5, then reset board and
1538 * every 2.5 sec for 4.
1539 * Break our of the loop if errors occurred during init.
1541 while (((status
& mask
) != mask
) &&
1542 !(status
& HS_FFERM
) &&
1553 phba
->hba_state
= LPFC_STATE_UNKNOWN
; /* Do post */
1554 lpfc_sli_brdrestart(phba
);
1556 /* Read the HBA Host Status Register */
1557 status
= readl(phba
->HSregaddr
);
1560 /* Check to see if any errors occurred during init */
1561 if ((status
& HS_FFERM
) || (i
>= 20)) {
1562 phba
->hba_state
= LPFC_HBA_ERROR
;
1569 #define BARRIER_TEST_PATTERN (0xdeadbeef)
1571 void lpfc_reset_barrier(struct lpfc_hba
* phba
)
1573 uint32_t * resp_buf
;
1574 uint32_t * mbox_buf
;
1575 volatile uint32_t mbox
;
1580 pci_read_config_byte(phba
->pcidev
, PCI_HEADER_TYPE
, &hdrtype
);
1581 if (hdrtype
!= 0x80 ||
1582 (FC_JEDEC_ID(phba
->vpd
.rev
.biuRev
) != HELIOS_JEDEC_ID
&&
1583 FC_JEDEC_ID(phba
->vpd
.rev
.biuRev
) != THOR_JEDEC_ID
))
1587 * Tell the other part of the chip to suspend temporarily all
1590 resp_buf
= (uint32_t *)phba
->MBslimaddr
;
1592 /* Disable the error attention */
1593 hc_copy
= readl(phba
->HCregaddr
);
1594 writel((hc_copy
& ~HC_ERINT_ENA
), phba
->HCregaddr
);
1595 readl(phba
->HCregaddr
); /* flush */
1597 if (readl(phba
->HAregaddr
) & HA_ERATT
) {
1598 /* Clear Chip error bit */
1599 writel(HA_ERATT
, phba
->HAregaddr
);
1604 ((MAILBOX_t
*)&mbox
)->mbxCommand
= MBX_KILL_BOARD
;
1605 ((MAILBOX_t
*)&mbox
)->mbxOwner
= OWN_CHIP
;
1607 writel(BARRIER_TEST_PATTERN
, (resp_buf
+ 1));
1608 mbox_buf
= (uint32_t *)phba
->MBslimaddr
;
1609 writel(mbox
, mbox_buf
);
1612 readl(resp_buf
+ 1) != ~(BARRIER_TEST_PATTERN
) && i
< 50; i
++)
1615 if (readl(resp_buf
+ 1) != ~(BARRIER_TEST_PATTERN
)) {
1616 if (phba
->sli
.sli_flag
& LPFC_SLI2_ACTIVE
||
1623 ((MAILBOX_t
*)&mbox
)->mbxOwner
= OWN_HOST
;
1624 for (i
= 0; readl(resp_buf
) != mbox
&& i
< 500; i
++)
1629 while (!(readl(phba
->HAregaddr
) & HA_ERATT
) && ++i
< 500)
1632 if (readl(phba
->HAregaddr
) & HA_ERATT
) {
1633 writel(HA_ERATT
, phba
->HAregaddr
);
1638 writel(hc_copy
, phba
->HCregaddr
);
1639 readl(phba
->HCregaddr
); /* flush */
1643 lpfc_sli_brdkill(struct lpfc_hba
* phba
)
1645 struct lpfc_sli
*psli
;
1655 lpfc_printf_log(phba
,
1658 "%d:0329 Kill HBA Data: x%x x%x\n",
1663 if ((pmb
= (LPFC_MBOXQ_t
*) mempool_alloc(phba
->mbox_mem_pool
,
1667 /* Disable the error attention */
1668 spin_lock_irq(phba
->host
->host_lock
);
1669 status
= readl(phba
->HCregaddr
);
1670 status
&= ~HC_ERINT_ENA
;
1671 writel(status
, phba
->HCregaddr
);
1672 readl(phba
->HCregaddr
); /* flush */
1673 spin_unlock_irq(phba
->host
->host_lock
);
1675 lpfc_kill_board(phba
, pmb
);
1676 pmb
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
1677 retval
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_NOWAIT
);
1679 if (retval
!= MBX_SUCCESS
) {
1680 if (retval
!= MBX_BUSY
)
1681 mempool_free(pmb
, phba
->mbox_mem_pool
);
1685 psli
->sli_flag
&= ~LPFC_SLI2_ACTIVE
;
1687 mempool_free(pmb
, phba
->mbox_mem_pool
);
1689 /* There is no completion for a KILL_BOARD mbox cmd. Check for an error
1690 * attention every 100ms for 3 seconds. If we don't get ERATT after
1691 * 3 seconds we still set HBA_ERROR state because the status of the
1692 * board is now undefined.
1694 ha_copy
= readl(phba
->HAregaddr
);
1696 while ((i
++ < 30) && !(ha_copy
& HA_ERATT
)) {
1698 ha_copy
= readl(phba
->HAregaddr
);
1701 del_timer_sync(&psli
->mbox_tmo
);
1702 if (ha_copy
& HA_ERATT
) {
1703 writel(HA_ERATT
, phba
->HAregaddr
);
1706 spin_lock_irq(phba
->host
->host_lock
);
1707 psli
->sli_flag
&= ~LPFC_SLI_MBOX_ACTIVE
;
1708 spin_unlock_irq(phba
->host
->host_lock
);
1710 psli
->mbox_active
= NULL
;
1711 lpfc_hba_down_post(phba
);
1712 phba
->hba_state
= LPFC_HBA_ERROR
;
1714 return (ha_copy
& HA_ERATT
? 0 : 1);
1718 lpfc_sli_brdreset(struct lpfc_hba
* phba
)
1720 struct lpfc_sli
*psli
;
1721 struct lpfc_sli_ring
*pring
;
1728 lpfc_printf_log(phba
, KERN_INFO
, LOG_SLI
,
1729 "%d:0325 Reset HBA Data: x%x x%x\n", phba
->brd_no
,
1730 phba
->hba_state
, psli
->sli_flag
);
1732 /* perform board reset */
1733 phba
->fc_eventTag
= 0;
1735 phba
->fc_prevDID
= 0;
1739 /* Turn off parity checking and serr during the physical reset */
1740 pci_read_config_word(phba
->pcidev
, PCI_COMMAND
, &cfg_value
);
1741 pci_write_config_word(phba
->pcidev
, PCI_COMMAND
,
1743 ~(PCI_COMMAND_PARITY
| PCI_COMMAND_SERR
)));
1745 psli
->sli_flag
&= ~LPFC_SLI2_ACTIVE
;
1746 /* Now toggle INITFF bit in the Host Control Register */
1747 writel(HC_INITFF
, phba
->HCregaddr
);
1749 readl(phba
->HCregaddr
); /* flush */
1750 writel(0, phba
->HCregaddr
);
1751 readl(phba
->HCregaddr
); /* flush */
1753 /* Restore PCI cmd register */
1754 pci_write_config_word(phba
->pcidev
, PCI_COMMAND
, cfg_value
);
1756 /* Initialize relevant SLI info */
1757 for (i
= 0; i
< psli
->num_rings
; i
++) {
1758 pring
= &psli
->ring
[i
];
1761 pring
->next_cmdidx
= 0;
1762 pring
->local_getidx
= 0;
1764 pring
->missbufcnt
= 0;
1767 phba
->hba_state
= LPFC_WARM_START
;
1772 lpfc_sli_brdrestart(struct lpfc_hba
* phba
)
1775 struct lpfc_sli
*psli
;
1777 volatile uint32_t word0
;
1778 void __iomem
*to_slim
;
1780 spin_lock_irq(phba
->host
->host_lock
);
1785 lpfc_printf_log(phba
, KERN_INFO
, LOG_SLI
,
1786 "%d:0328 Restart HBA Data: x%x x%x\n", phba
->brd_no
,
1787 phba
->hba_state
, psli
->sli_flag
);
1790 mb
= (MAILBOX_t
*) &word0
;
1791 mb
->mbxCommand
= MBX_RESTART
;
1794 lpfc_reset_barrier(phba
);
1796 to_slim
= phba
->MBslimaddr
;
1797 writel(*(uint32_t *) mb
, to_slim
);
1798 readl(to_slim
); /* flush */
1800 /* Only skip post after fc_ffinit is completed */
1801 if (phba
->hba_state
) {
1803 word0
= 1; /* This is really setting up word1 */
1806 word0
= 0; /* This is really setting up word1 */
1808 to_slim
= (uint8_t *) phba
->MBslimaddr
+ sizeof (uint32_t);
1809 writel(*(uint32_t *) mb
, to_slim
);
1810 readl(to_slim
); /* flush */
1812 lpfc_sli_brdreset(phba
);
1814 phba
->hba_state
= LPFC_INIT_START
;
1816 spin_unlock_irq(phba
->host
->host_lock
);
1823 lpfc_hba_down_post(phba
);
1829 lpfc_sli_chipset_init(struct lpfc_hba
*phba
)
1831 uint32_t status
, i
= 0;
1833 /* Read the HBA Host Status Register */
1834 status
= readl(phba
->HSregaddr
);
1836 /* Check status register to see what current state is */
1838 while ((status
& (HS_FFRDY
| HS_MBRDY
)) != (HS_FFRDY
| HS_MBRDY
)) {
1840 /* Check every 100ms for 5 retries, then every 500ms for 5, then
1841 * every 2.5 sec for 5, then reset board and every 2.5 sec for
1845 /* Adapter failed to init, timeout, status reg
1847 lpfc_printf_log(phba
,
1850 "%d:0436 Adapter failed to init, "
1851 "timeout, status reg x%x\n",
1854 phba
->hba_state
= LPFC_HBA_ERROR
;
1858 /* Check to see if any errors occurred during init */
1859 if (status
& HS_FFERM
) {
1860 /* ERROR: During chipset initialization */
1861 /* Adapter failed to init, chipset, status reg
1863 lpfc_printf_log(phba
,
1866 "%d:0437 Adapter failed to init, "
1867 "chipset, status reg x%x\n",
1870 phba
->hba_state
= LPFC_HBA_ERROR
;
1876 } else if (i
<= 10) {
1883 phba
->hba_state
= LPFC_STATE_UNKNOWN
; /* Do post */
1884 lpfc_sli_brdrestart(phba
);
1886 /* Read the HBA Host Status Register */
1887 status
= readl(phba
->HSregaddr
);
1890 /* Check to see if any errors occurred during init */
1891 if (status
& HS_FFERM
) {
1892 /* ERROR: During chipset initialization */
1893 /* Adapter failed to init, chipset, status reg <status> */
1894 lpfc_printf_log(phba
,
1897 "%d:0438 Adapter failed to init, chipset, "
1901 phba
->hba_state
= LPFC_HBA_ERROR
;
1905 /* Clear all interrupt enable conditions */
1906 writel(0, phba
->HCregaddr
);
1907 readl(phba
->HCregaddr
); /* flush */
1909 /* setup host attn register */
1910 writel(0xffffffff, phba
->HAregaddr
);
1911 readl(phba
->HAregaddr
); /* flush */
1916 lpfc_sli_hba_setup(struct lpfc_hba
* phba
)
1919 uint32_t resetcount
= 0, rc
= 0, done
= 0;
1921 pmb
= (LPFC_MBOXQ_t
*) mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
1923 phba
->hba_state
= LPFC_HBA_ERROR
;
1927 while (resetcount
< 2 && !done
) {
1928 phba
->hba_state
= LPFC_STATE_UNKNOWN
;
1929 lpfc_sli_brdrestart(phba
);
1931 rc
= lpfc_sli_chipset_init(phba
);
1937 /* Call pre CONFIG_PORT mailbox command initialization. A value of 0
1938 * means the call was successful. Any other nonzero value is a failure,
1939 * but if ERESTART is returned, the driver may reset the HBA and try
1942 rc
= lpfc_config_port_prep(phba
);
1943 if (rc
== -ERESTART
) {
1944 phba
->hba_state
= 0;
1950 phba
->hba_state
= LPFC_INIT_MBX_CMDS
;
1951 lpfc_config_port(phba
, pmb
);
1952 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
);
1953 if (rc
== MBX_SUCCESS
)
1956 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
1957 "%d:0442 Adapter failed to init, mbxCmd x%x "
1958 "CONFIG_PORT, mbxStatus x%x Data: x%x\n",
1959 phba
->brd_no
, pmb
->mb
.mbxCommand
,
1960 pmb
->mb
.mbxStatus
, 0);
1961 phba
->sli
.sli_flag
&= ~LPFC_SLI2_ACTIVE
;
1965 goto lpfc_sli_hba_setup_error
;
1967 rc
= lpfc_sli_ring_map(phba
, pmb
);
1970 goto lpfc_sli_hba_setup_error
;
1972 phba
->sli
.sli_flag
|= LPFC_PROCESS_LA
;
1974 rc
= lpfc_config_port_post(phba
);
1976 goto lpfc_sli_hba_setup_error
;
1978 goto lpfc_sli_hba_setup_exit
;
1979 lpfc_sli_hba_setup_error
:
1980 phba
->hba_state
= LPFC_HBA_ERROR
;
1981 lpfc_sli_hba_setup_exit
:
1982 mempool_free(pmb
, phba
->mbox_mem_pool
);
1987 lpfc_mbox_abort(struct lpfc_hba
* phba
)
1989 LPFC_MBOXQ_t
*pmbox
;
1992 if (phba
->sli
.mbox_active
) {
1993 del_timer_sync(&phba
->sli
.mbox_tmo
);
1994 phba
->work_hba_events
&= ~WORKER_MBOX_TMO
;
1995 pmbox
= phba
->sli
.mbox_active
;
1997 phba
->sli
.mbox_active
= NULL
;
1998 if (pmbox
->mbox_cmpl
) {
1999 mb
->mbxStatus
= MBX_NOT_FINISHED
;
2000 (pmbox
->mbox_cmpl
) (phba
, pmbox
);
2002 phba
->sli
.sli_flag
&= ~LPFC_SLI_MBOX_ACTIVE
;
2005 /* Abort all the non active mailbox commands. */
2006 spin_lock_irq(phba
->host
->host_lock
);
2007 pmbox
= lpfc_mbox_get(phba
);
2010 if (pmbox
->mbox_cmpl
) {
2011 mb
->mbxStatus
= MBX_NOT_FINISHED
;
2012 spin_unlock_irq(phba
->host
->host_lock
);
2013 (pmbox
->mbox_cmpl
) (phba
, pmbox
);
2014 spin_lock_irq(phba
->host
->host_lock
);
2016 pmbox
= lpfc_mbox_get(phba
);
2018 spin_unlock_irq(phba
->host
->host_lock
);
2022 /*! lpfc_mbox_timeout
2026 * \param hba Pointer to per struct lpfc_hba structure
2027 * \param l1 Pointer to the driver's mailbox queue.
2033 * This routine handles mailbox timeout events at timer interrupt context.
2036 lpfc_mbox_timeout(unsigned long ptr
)
2038 struct lpfc_hba
*phba
;
2039 unsigned long iflag
;
2041 phba
= (struct lpfc_hba
*)ptr
;
2042 spin_lock_irqsave(phba
->host
->host_lock
, iflag
);
2043 if (!(phba
->work_hba_events
& WORKER_MBOX_TMO
)) {
2044 phba
->work_hba_events
|= WORKER_MBOX_TMO
;
2045 if (phba
->work_wait
)
2046 wake_up(phba
->work_wait
);
2048 spin_unlock_irqrestore(phba
->host
->host_lock
, iflag
);
2052 lpfc_mbox_timeout_handler(struct lpfc_hba
*phba
)
2054 LPFC_MBOXQ_t
*pmbox
;
2057 spin_lock_irq(phba
->host
->host_lock
);
2058 if (!(phba
->work_hba_events
& WORKER_MBOX_TMO
)) {
2059 spin_unlock_irq(phba
->host
->host_lock
);
2063 phba
->work_hba_events
&= ~WORKER_MBOX_TMO
;
2065 pmbox
= phba
->sli
.mbox_active
;
2068 /* Mbox cmd <mbxCommand> timeout */
2069 lpfc_printf_log(phba
,
2072 "%d:0310 Mailbox command x%x timeout Data: x%x x%x x%p\n",
2077 phba
->sli
.mbox_active
);
2079 phba
->sli
.mbox_active
= NULL
;
2080 if (pmbox
->mbox_cmpl
) {
2081 mb
->mbxStatus
= MBX_NOT_FINISHED
;
2082 spin_unlock_irq(phba
->host
->host_lock
);
2083 (pmbox
->mbox_cmpl
) (phba
, pmbox
);
2084 spin_lock_irq(phba
->host
->host_lock
);
2086 phba
->sli
.sli_flag
&= ~LPFC_SLI_MBOX_ACTIVE
;
2088 spin_unlock_irq(phba
->host
->host_lock
);
2089 lpfc_mbox_abort(phba
);
2094 lpfc_sli_issue_mbox(struct lpfc_hba
* phba
, LPFC_MBOXQ_t
* pmbox
, uint32_t flag
)
2097 struct lpfc_sli
*psli
;
2098 uint32_t status
, evtctr
;
2101 unsigned long drvr_flag
= 0;
2102 volatile uint32_t word0
, ldata
;
2103 void __iomem
*to_slim
;
2107 spin_lock_irqsave(phba
->host
->host_lock
, drvr_flag
);
2111 status
= MBX_SUCCESS
;
2113 if (phba
->hba_state
== LPFC_HBA_ERROR
) {
2114 spin_unlock_irqrestore(phba
->host
->host_lock
, drvr_flag
);
2116 /* Mbox command <mbxCommand> cannot issue */
2117 LOG_MBOX_CANNOT_ISSUE_DATA( phba
, mb
, psli
, flag
)
2118 return (MBX_NOT_FINISHED
);
2121 if (mb
->mbxCommand
!= MBX_KILL_BOARD
&& flag
& MBX_NOWAIT
&&
2122 !(readl(phba
->HCregaddr
) & HC_MBINT_ENA
)) {
2123 spin_unlock_irqrestore(phba
->host
->host_lock
, drvr_flag
);
2124 LOG_MBOX_CANNOT_ISSUE_DATA( phba
, mb
, psli
, flag
)
2125 return (MBX_NOT_FINISHED
);
2128 if (psli
->sli_flag
& LPFC_SLI_MBOX_ACTIVE
) {
2129 /* Polling for a mbox command when another one is already active
2130 * is not allowed in SLI. Also, the driver must have established
2131 * SLI2 mode to queue and process multiple mbox commands.
2134 if (flag
& MBX_POLL
) {
2135 spin_unlock_irqrestore(phba
->host
->host_lock
,
2138 /* Mbox command <mbxCommand> cannot issue */
2139 LOG_MBOX_CANNOT_ISSUE_DATA( phba
, mb
, psli
, flag
)
2140 return (MBX_NOT_FINISHED
);
2143 if (!(psli
->sli_flag
& LPFC_SLI2_ACTIVE
)) {
2144 spin_unlock_irqrestore(phba
->host
->host_lock
,
2146 /* Mbox command <mbxCommand> cannot issue */
2147 LOG_MBOX_CANNOT_ISSUE_DATA( phba
, mb
, psli
, flag
)
2148 return (MBX_NOT_FINISHED
);
2151 /* Handle STOP IOCB processing flag. This is only meaningful
2152 * if we are not polling for mbox completion.
2154 if (flag
& MBX_STOP_IOCB
) {
2155 flag
&= ~MBX_STOP_IOCB
;
2156 /* Now flag each ring */
2157 for (i
= 0; i
< psli
->num_rings
; i
++) {
2158 /* If the ring is active, flag it */
2159 if (psli
->ring
[i
].cmdringaddr
) {
2160 psli
->ring
[i
].flag
|=
2166 /* Another mailbox command is still being processed, queue this
2167 * command to be processed later.
2169 lpfc_mbox_put(phba
, pmbox
);
2171 /* Mbox cmd issue - BUSY */
2172 lpfc_printf_log(phba
,
2175 "%d:0308 Mbox cmd issue - BUSY Data: x%x x%x x%x x%x\n",
2182 psli
->slistat
.mbox_busy
++;
2183 spin_unlock_irqrestore(phba
->host
->host_lock
,
2189 /* Handle STOP IOCB processing flag. This is only meaningful
2190 * if we are not polling for mbox completion.
2192 if (flag
& MBX_STOP_IOCB
) {
2193 flag
&= ~MBX_STOP_IOCB
;
2194 if (flag
== MBX_NOWAIT
) {
2195 /* Now flag each ring */
2196 for (i
= 0; i
< psli
->num_rings
; i
++) {
2197 /* If the ring is active, flag it */
2198 if (psli
->ring
[i
].cmdringaddr
) {
2199 psli
->ring
[i
].flag
|=
2206 psli
->sli_flag
|= LPFC_SLI_MBOX_ACTIVE
;
2208 /* If we are not polling, we MUST be in SLI2 mode */
2209 if (flag
!= MBX_POLL
) {
2210 if (!(psli
->sli_flag
& LPFC_SLI2_ACTIVE
) &&
2211 (mb
->mbxCommand
!= MBX_KILL_BOARD
)) {
2212 psli
->sli_flag
&= ~LPFC_SLI_MBOX_ACTIVE
;
2213 spin_unlock_irqrestore(phba
->host
->host_lock
,
2215 /* Mbox command <mbxCommand> cannot issue */
2216 LOG_MBOX_CANNOT_ISSUE_DATA( phba
, mb
, psli
, flag
);
2217 return (MBX_NOT_FINISHED
);
2219 /* timeout active mbox command */
2220 mod_timer(&psli
->mbox_tmo
, jiffies
+ HZ
* LPFC_MBOX_TMO
);
2223 /* Mailbox cmd <cmd> issue */
2224 lpfc_printf_log(phba
,
2227 "%d:0309 Mailbox cmd x%x issue Data: x%x x%x x%x\n",
2234 psli
->slistat
.mbox_cmd
++;
2235 evtctr
= psli
->slistat
.mbox_event
;
2237 /* next set own bit for the adapter and copy over command word */
2238 mb
->mbxOwner
= OWN_CHIP
;
2240 if (psli
->sli_flag
& LPFC_SLI2_ACTIVE
) {
2241 /* First copy command data to host SLIM area */
2242 lpfc_sli_pcimem_bcopy(mb
, &phba
->slim2p
->mbx
, MAILBOX_CMD_SIZE
);
2244 if (mb
->mbxCommand
== MBX_CONFIG_PORT
) {
2245 /* copy command data into host mbox for cmpl */
2246 lpfc_sli_pcimem_bcopy(mb
, &phba
->slim2p
->mbx
,
2250 /* First copy mbox command data to HBA SLIM, skip past first
2252 to_slim
= phba
->MBslimaddr
+ sizeof (uint32_t);
2253 lpfc_memcpy_to_slim(to_slim
, &mb
->un
.varWords
[0],
2254 MAILBOX_CMD_SIZE
- sizeof (uint32_t));
2256 /* Next copy over first word, with mbxOwner set */
2257 ldata
= *((volatile uint32_t *)mb
);
2258 to_slim
= phba
->MBslimaddr
;
2259 writel(ldata
, to_slim
);
2260 readl(to_slim
); /* flush */
2262 if (mb
->mbxCommand
== MBX_CONFIG_PORT
) {
2263 /* switch over to host mailbox */
2264 psli
->sli_flag
|= LPFC_SLI2_ACTIVE
;
2269 /* interrupt board to doit right away */
2270 writel(CA_MBATT
, phba
->CAregaddr
);
2271 readl(phba
->CAregaddr
); /* flush */
2275 /* Don't wait for it to finish, just return */
2276 psli
->mbox_active
= pmbox
;
2281 psli
->mbox_active
= NULL
;
2282 if (psli
->sli_flag
& LPFC_SLI2_ACTIVE
) {
2283 /* First read mbox status word */
2284 word0
= *((volatile uint32_t *)&phba
->slim2p
->mbx
);
2285 word0
= le32_to_cpu(word0
);
2287 /* First read mbox status word */
2288 word0
= readl(phba
->MBslimaddr
);
2291 /* Read the HBA Host Attention Register */
2292 ha_copy
= readl(phba
->HAregaddr
);
2294 /* Wait for command to complete */
2295 while (((word0
& OWN_CHIP
) == OWN_CHIP
) ||
2296 (!(ha_copy
& HA_MBATT
) &&
2297 (phba
->hba_state
> LPFC_WARM_START
))) {
2299 psli
->sli_flag
&= ~LPFC_SLI_MBOX_ACTIVE
;
2300 spin_unlock_irqrestore(phba
->host
->host_lock
,
2302 return (MBX_NOT_FINISHED
);
2305 /* Check if we took a mbox interrupt while we were
2307 if (((word0
& OWN_CHIP
) != OWN_CHIP
)
2308 && (evtctr
!= psli
->slistat
.mbox_event
))
2311 spin_unlock_irqrestore(phba
->host
->host_lock
,
2314 /* Can be in interrupt context, do not sleep */
2315 /* (or might be called with interrupts disabled) */
2318 spin_lock_irqsave(phba
->host
->host_lock
, drvr_flag
);
2320 if (psli
->sli_flag
& LPFC_SLI2_ACTIVE
) {
2321 /* First copy command data */
2322 word0
= *((volatile uint32_t *)
2323 &phba
->slim2p
->mbx
);
2324 word0
= le32_to_cpu(word0
);
2325 if (mb
->mbxCommand
== MBX_CONFIG_PORT
) {
2327 volatile uint32_t slimword0
;
2328 /* Check real SLIM for any errors */
2329 slimword0
= readl(phba
->MBslimaddr
);
2330 slimmb
= (MAILBOX_t
*) & slimword0
;
2331 if (((slimword0
& OWN_CHIP
) != OWN_CHIP
)
2332 && slimmb
->mbxStatus
) {
2339 /* First copy command data */
2340 word0
= readl(phba
->MBslimaddr
);
2342 /* Read the HBA Host Attention Register */
2343 ha_copy
= readl(phba
->HAregaddr
);
2346 if (psli
->sli_flag
& LPFC_SLI2_ACTIVE
) {
2347 /* copy results back to user */
2348 lpfc_sli_pcimem_bcopy(&phba
->slim2p
->mbx
, mb
,
2351 /* First copy command data */
2352 lpfc_memcpy_from_slim(mb
, phba
->MBslimaddr
,
2354 if ((mb
->mbxCommand
== MBX_DUMP_MEMORY
) &&
2356 lpfc_memcpy_from_slim((void *)pmbox
->context2
,
2357 phba
->MBslimaddr
+ DMP_RSP_OFFSET
,
2358 mb
->un
.varDmp
.word_cnt
);
2362 writel(HA_MBATT
, phba
->HAregaddr
);
2363 readl(phba
->HAregaddr
); /* flush */
2365 psli
->sli_flag
&= ~LPFC_SLI_MBOX_ACTIVE
;
2366 status
= mb
->mbxStatus
;
2369 spin_unlock_irqrestore(phba
->host
->host_lock
, drvr_flag
);
2374 lpfc_sli_ringtx_put(struct lpfc_hba
* phba
, struct lpfc_sli_ring
* pring
,
2375 struct lpfc_iocbq
* piocb
)
2377 /* Insert the caller's iocb in the txq tail for later processing. */
2378 list_add_tail(&piocb
->list
, &pring
->txq
);
2383 static struct lpfc_iocbq
*
2384 lpfc_sli_next_iocb(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
,
2385 struct lpfc_iocbq
** piocb
)
2387 struct lpfc_iocbq
* nextiocb
;
2389 nextiocb
= lpfc_sli_ringtx_get(phba
, pring
);
2399 lpfc_sli_issue_iocb(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
,
2400 struct lpfc_iocbq
*piocb
, uint32_t flag
)
2402 struct lpfc_iocbq
*nextiocb
;
2406 * We should never get an IOCB if we are in a < LINK_DOWN state
2408 if (unlikely(phba
->hba_state
< LPFC_LINK_DOWN
))
2412 * Check to see if we are blocking IOCB processing because of a
2413 * outstanding mbox command.
2415 if (unlikely(pring
->flag
& LPFC_STOP_IOCB_MBX
))
2418 if (unlikely(phba
->hba_state
== LPFC_LINK_DOWN
)) {
2420 * Only CREATE_XRI, CLOSE_XRI, ABORT_XRI, and QUE_RING_BUF
2421 * can be issued if the link is not up.
2423 switch (piocb
->iocb
.ulpCommand
) {
2424 case CMD_QUE_RING_BUF_CN
:
2425 case CMD_QUE_RING_BUF64_CN
:
2427 * For IOCBs, like QUE_RING_BUF, that have no rsp ring
2428 * completion, iocb_cmpl MUST be 0.
2430 if (piocb
->iocb_cmpl
)
2431 piocb
->iocb_cmpl
= NULL
;
2433 case CMD_CREATE_XRI_CR
:
2440 * For FCP commands, we must be in a state where we can process link
2443 } else if (unlikely(pring
->ringno
== phba
->sli
.fcp_ring
&&
2444 !(phba
->sli
.sli_flag
& LPFC_PROCESS_LA
)))
2447 while ((iocb
= lpfc_sli_next_iocb_slot(phba
, pring
)) &&
2448 (nextiocb
= lpfc_sli_next_iocb(phba
, pring
, &piocb
)))
2449 lpfc_sli_submit_iocb(phba
, pring
, iocb
, nextiocb
);
2452 lpfc_sli_update_ring(phba
, pring
);
2454 lpfc_sli_update_full_ring(phba
, pring
);
2457 return IOCB_SUCCESS
;
2462 pring
->stats
.iocb_cmd_delay
++;
2466 if (!(flag
& SLI_IOCB_RET_IOCB
)) {
2467 lpfc_sli_ringtx_put(phba
, pring
, piocb
);
2468 return IOCB_SUCCESS
;
2475 lpfc_extra_ring_setup( struct lpfc_hba
*phba
)
2477 struct lpfc_sli
*psli
;
2478 struct lpfc_sli_ring
*pring
;
2482 /* Adjust cmd/rsp ring iocb entries more evenly */
2483 pring
= &psli
->ring
[psli
->fcp_ring
];
2484 pring
->numCiocb
-= SLI2_IOCB_CMD_R1XTRA_ENTRIES
;
2485 pring
->numRiocb
-= SLI2_IOCB_RSP_R1XTRA_ENTRIES
;
2486 pring
->numCiocb
-= SLI2_IOCB_CMD_R3XTRA_ENTRIES
;
2487 pring
->numRiocb
-= SLI2_IOCB_RSP_R3XTRA_ENTRIES
;
2489 pring
= &psli
->ring
[1];
2490 pring
->numCiocb
+= SLI2_IOCB_CMD_R1XTRA_ENTRIES
;
2491 pring
->numRiocb
+= SLI2_IOCB_RSP_R1XTRA_ENTRIES
;
2492 pring
->numCiocb
+= SLI2_IOCB_CMD_R3XTRA_ENTRIES
;
2493 pring
->numRiocb
+= SLI2_IOCB_RSP_R3XTRA_ENTRIES
;
2495 /* Setup default profile for this ring */
2496 pring
->iotag_max
= 4096;
2497 pring
->num_mask
= 1;
2498 pring
->prt
[0].profile
= 0; /* Mask 0 */
2499 pring
->prt
[0].rctl
= FC_UNSOL_DATA
;
2500 pring
->prt
[0].type
= 5;
2501 pring
->prt
[0].lpfc_sli_rcv_unsol_event
= NULL
;
2506 lpfc_sli_setup(struct lpfc_hba
*phba
)
2509 struct lpfc_sli
*psli
= &phba
->sli
;
2510 struct lpfc_sli_ring
*pring
;
2512 psli
->num_rings
= MAX_CONFIGURED_RINGS
;
2514 psli
->fcp_ring
= LPFC_FCP_RING
;
2515 psli
->next_ring
= LPFC_FCP_NEXT_RING
;
2516 psli
->ip_ring
= LPFC_IP_RING
;
2518 psli
->iocbq_lookup
= NULL
;
2519 psli
->iocbq_lookup_len
= 0;
2520 psli
->last_iotag
= 0;
2522 for (i
= 0; i
< psli
->num_rings
; i
++) {
2523 pring
= &psli
->ring
[i
];
2525 case LPFC_FCP_RING
: /* ring 0 - FCP */
2526 /* numCiocb and numRiocb are used in config_port */
2527 pring
->numCiocb
= SLI2_IOCB_CMD_R0_ENTRIES
;
2528 pring
->numRiocb
= SLI2_IOCB_RSP_R0_ENTRIES
;
2529 pring
->numCiocb
+= SLI2_IOCB_CMD_R1XTRA_ENTRIES
;
2530 pring
->numRiocb
+= SLI2_IOCB_RSP_R1XTRA_ENTRIES
;
2531 pring
->numCiocb
+= SLI2_IOCB_CMD_R3XTRA_ENTRIES
;
2532 pring
->numRiocb
+= SLI2_IOCB_RSP_R3XTRA_ENTRIES
;
2533 pring
->iotag_ctr
= 0;
2535 (phba
->cfg_hba_queue_depth
* 2);
2536 pring
->fast_iotag
= pring
->iotag_max
;
2537 pring
->num_mask
= 0;
2539 case LPFC_IP_RING
: /* ring 1 - IP */
2540 /* numCiocb and numRiocb are used in config_port */
2541 pring
->numCiocb
= SLI2_IOCB_CMD_R1_ENTRIES
;
2542 pring
->numRiocb
= SLI2_IOCB_RSP_R1_ENTRIES
;
2543 pring
->num_mask
= 0;
2545 case LPFC_ELS_RING
: /* ring 2 - ELS / CT */
2546 /* numCiocb and numRiocb are used in config_port */
2547 pring
->numCiocb
= SLI2_IOCB_CMD_R2_ENTRIES
;
2548 pring
->numRiocb
= SLI2_IOCB_RSP_R2_ENTRIES
;
2549 pring
->fast_iotag
= 0;
2550 pring
->iotag_ctr
= 0;
2551 pring
->iotag_max
= 4096;
2552 pring
->num_mask
= 4;
2553 pring
->prt
[0].profile
= 0; /* Mask 0 */
2554 pring
->prt
[0].rctl
= FC_ELS_REQ
;
2555 pring
->prt
[0].type
= FC_ELS_DATA
;
2556 pring
->prt
[0].lpfc_sli_rcv_unsol_event
=
2557 lpfc_els_unsol_event
;
2558 pring
->prt
[1].profile
= 0; /* Mask 1 */
2559 pring
->prt
[1].rctl
= FC_ELS_RSP
;
2560 pring
->prt
[1].type
= FC_ELS_DATA
;
2561 pring
->prt
[1].lpfc_sli_rcv_unsol_event
=
2562 lpfc_els_unsol_event
;
2563 pring
->prt
[2].profile
= 0; /* Mask 2 */
2564 /* NameServer Inquiry */
2565 pring
->prt
[2].rctl
= FC_UNSOL_CTL
;
2567 pring
->prt
[2].type
= FC_COMMON_TRANSPORT_ULP
;
2568 pring
->prt
[2].lpfc_sli_rcv_unsol_event
=
2569 lpfc_ct_unsol_event
;
2570 pring
->prt
[3].profile
= 0; /* Mask 3 */
2571 /* NameServer response */
2572 pring
->prt
[3].rctl
= FC_SOL_CTL
;
2574 pring
->prt
[3].type
= FC_COMMON_TRANSPORT_ULP
;
2575 pring
->prt
[3].lpfc_sli_rcv_unsol_event
=
2576 lpfc_ct_unsol_event
;
2579 totiocb
+= (pring
->numCiocb
+ pring
->numRiocb
);
2581 if (totiocb
> MAX_SLI2_IOCB
) {
2582 /* Too many cmd / rsp ring entries in SLI2 SLIM */
2583 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
2584 "%d:0462 Too many cmd / rsp ring entries in "
2585 "SLI2 SLIM Data: x%x x%x\n",
2586 phba
->brd_no
, totiocb
, MAX_SLI2_IOCB
);
2588 if (phba
->cfg_multi_ring_support
== 2)
2589 lpfc_extra_ring_setup(phba
);
2595 lpfc_sli_queue_setup(struct lpfc_hba
* phba
)
2597 struct lpfc_sli
*psli
;
2598 struct lpfc_sli_ring
*pring
;
2602 spin_lock_irq(phba
->host
->host_lock
);
2603 INIT_LIST_HEAD(&psli
->mboxq
);
2604 /* Initialize list headers for txq and txcmplq as double linked lists */
2605 for (i
= 0; i
< psli
->num_rings
; i
++) {
2606 pring
= &psli
->ring
[i
];
2608 pring
->next_cmdidx
= 0;
2609 pring
->local_getidx
= 0;
2611 INIT_LIST_HEAD(&pring
->txq
);
2612 INIT_LIST_HEAD(&pring
->txcmplq
);
2613 INIT_LIST_HEAD(&pring
->iocb_continueq
);
2614 INIT_LIST_HEAD(&pring
->postbufq
);
2616 spin_unlock_irq(phba
->host
->host_lock
);
2621 lpfc_sli_hba_down(struct lpfc_hba
* phba
)
2623 struct lpfc_sli
*psli
;
2624 struct lpfc_sli_ring
*pring
;
2626 struct lpfc_iocbq
*iocb
, *next_iocb
;
2627 IOCB_t
*icmd
= NULL
;
2629 unsigned long flags
= 0;
2632 lpfc_hba_down_prep(phba
);
2634 spin_lock_irqsave(phba
->host
->host_lock
, flags
);
2636 for (i
= 0; i
< psli
->num_rings
; i
++) {
2637 pring
= &psli
->ring
[i
];
2638 pring
->flag
|= LPFC_DEFERRED_RING_EVENT
;
2641 * Error everything on the txq since these iocbs have not been
2642 * given to the FW yet.
2646 list_for_each_entry_safe(iocb
, next_iocb
, &pring
->txq
, list
) {
2647 list_del_init(&iocb
->list
);
2648 if (iocb
->iocb_cmpl
) {
2650 icmd
->ulpStatus
= IOSTAT_LOCAL_REJECT
;
2651 icmd
->un
.ulpWord
[4] = IOERR_SLI_DOWN
;
2652 spin_unlock_irqrestore(phba
->host
->host_lock
,
2654 (iocb
->iocb_cmpl
) (phba
, iocb
, iocb
);
2655 spin_lock_irqsave(phba
->host
->host_lock
, flags
);
2657 lpfc_sli_release_iocbq(phba
, iocb
);
2660 INIT_LIST_HEAD(&(pring
->txq
));
2662 kfree(pring
->fast_lookup
);
2663 pring
->fast_lookup
= NULL
;
2666 spin_unlock_irqrestore(phba
->host
->host_lock
, flags
);
2668 /* Return any active mbox cmds */
2669 del_timer_sync(&psli
->mbox_tmo
);
2670 spin_lock_irqsave(phba
->host
->host_lock
, flags
);
2671 phba
->work_hba_events
&= ~WORKER_MBOX_TMO
;
2672 if (psli
->mbox_active
) {
2673 pmb
= psli
->mbox_active
;
2674 pmb
->mb
.mbxStatus
= MBX_NOT_FINISHED
;
2675 if (pmb
->mbox_cmpl
) {
2676 spin_unlock_irqrestore(phba
->host
->host_lock
, flags
);
2677 pmb
->mbox_cmpl(phba
,pmb
);
2678 spin_lock_irqsave(phba
->host
->host_lock
, flags
);
2681 psli
->sli_flag
&= ~LPFC_SLI_MBOX_ACTIVE
;
2682 psli
->mbox_active
= NULL
;
2684 /* Return any pending mbox cmds */
2685 while ((pmb
= lpfc_mbox_get(phba
)) != NULL
) {
2686 pmb
->mb
.mbxStatus
= MBX_NOT_FINISHED
;
2687 if (pmb
->mbox_cmpl
) {
2688 spin_unlock_irqrestore(phba
->host
->host_lock
, flags
);
2689 pmb
->mbox_cmpl(phba
,pmb
);
2690 spin_lock_irqsave(phba
->host
->host_lock
, flags
);
2694 INIT_LIST_HEAD(&psli
->mboxq
);
2696 spin_unlock_irqrestore(phba
->host
->host_lock
, flags
);
2702 lpfc_sli_pcimem_bcopy(void *srcp
, void *destp
, uint32_t cnt
)
2704 uint32_t *src
= srcp
;
2705 uint32_t *dest
= destp
;
2709 for (i
= 0; i
< (int)cnt
; i
+= sizeof (uint32_t)) {
2711 ldata
= le32_to_cpu(ldata
);
2719 lpfc_sli_ringpostbuf_put(struct lpfc_hba
* phba
, struct lpfc_sli_ring
* pring
,
2720 struct lpfc_dmabuf
* mp
)
2722 /* Stick struct lpfc_dmabuf at end of postbufq so driver can look it up
2724 list_add_tail(&mp
->list
, &pring
->postbufq
);
2726 pring
->postbufq_cnt
++;
2731 struct lpfc_dmabuf
*
2732 lpfc_sli_ringpostbuf_get(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
,
2735 struct lpfc_dmabuf
*mp
, *next_mp
;
2736 struct list_head
*slp
= &pring
->postbufq
;
2738 /* Search postbufq, from the begining, looking for a match on phys */
2739 list_for_each_entry_safe(mp
, next_mp
, &pring
->postbufq
, list
) {
2740 if (mp
->phys
== phys
) {
2741 list_del_init(&mp
->list
);
2742 pring
->postbufq_cnt
--;
2747 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
2748 "%d:0410 Cannot find virtual addr for mapped buf on "
2749 "ring %d Data x%llx x%p x%p x%x\n",
2750 phba
->brd_no
, pring
->ringno
, (unsigned long long)phys
,
2751 slp
->next
, slp
->prev
, pring
->postbufq_cnt
);
2756 lpfc_sli_abort_elsreq_cmpl(struct lpfc_hba
* phba
, struct lpfc_iocbq
* cmdiocb
,
2757 struct lpfc_iocbq
* rspiocb
)
2759 struct lpfc_dmabuf
*buf_ptr
, *buf_ptr1
;
2760 /* Free the resources associated with the ELS_REQUEST64 IOCB the driver
2762 * In this case, context2 = cmd, context2->next = rsp, context3 = bpl
2764 if (cmdiocb
->context2
) {
2765 buf_ptr1
= (struct lpfc_dmabuf
*) cmdiocb
->context2
;
2767 /* Free the response IOCB before completing the abort
2770 list_remove_head((&buf_ptr1
->list
), buf_ptr
,
2771 struct lpfc_dmabuf
, list
);
2773 lpfc_mbuf_free(phba
, buf_ptr
->virt
, buf_ptr
->phys
);
2776 lpfc_mbuf_free(phba
, buf_ptr1
->virt
, buf_ptr1
->phys
);
2780 if (cmdiocb
->context3
) {
2781 buf_ptr
= (struct lpfc_dmabuf
*) cmdiocb
->context3
;
2782 lpfc_mbuf_free(phba
, buf_ptr
->virt
, buf_ptr
->phys
);
2786 lpfc_sli_release_iocbq(phba
, cmdiocb
);
2791 lpfc_sli_issue_abort_iotag32(struct lpfc_hba
* phba
,
2792 struct lpfc_sli_ring
* pring
,
2793 struct lpfc_iocbq
* cmdiocb
)
2795 struct lpfc_iocbq
*abtsiocbp
;
2796 IOCB_t
*icmd
= NULL
;
2797 IOCB_t
*iabt
= NULL
;
2799 /* issue ABTS for this IOCB based on iotag */
2800 abtsiocbp
= lpfc_sli_get_iocbq(phba
);
2801 if (abtsiocbp
== NULL
)
2804 iabt
= &abtsiocbp
->iocb
;
2805 icmd
= &cmdiocb
->iocb
;
2806 switch (icmd
->ulpCommand
) {
2807 case CMD_ELS_REQUEST64_CR
:
2808 /* Even though we abort the ELS command, the firmware may access
2809 * the BPL or other resources before it processes our
2810 * ABORT_MXRI64. Thus we must delay reusing the cmdiocb
2811 * resources till the actual abort request completes.
2813 abtsiocbp
->context1
= (void *)((unsigned long)icmd
->ulpCommand
);
2814 abtsiocbp
->context2
= cmdiocb
->context2
;
2815 abtsiocbp
->context3
= cmdiocb
->context3
;
2816 cmdiocb
->context2
= NULL
;
2817 cmdiocb
->context3
= NULL
;
2818 abtsiocbp
->iocb_cmpl
= lpfc_sli_abort_elsreq_cmpl
;
2821 lpfc_sli_release_iocbq(phba
, abtsiocbp
);
2825 iabt
->un
.amxri
.abortType
= ABORT_TYPE_ABTS
;
2826 iabt
->un
.amxri
.iotag32
= icmd
->un
.elsreq64
.bdl
.ulpIoTag32
;
2829 iabt
->ulpClass
= CLASS3
;
2830 iabt
->ulpCommand
= CMD_ABORT_MXRI64_CN
;
2832 if (lpfc_sli_issue_iocb(phba
, pring
, abtsiocbp
, 0) == IOCB_ERROR
) {
2833 lpfc_sli_release_iocbq(phba
, abtsiocbp
);
2841 lpfc_sli_validate_fcp_iocb(struct lpfc_iocbq
*iocbq
, uint16_t tgt_id
,
2842 uint64_t lun_id
, uint32_t ctx
,
2843 lpfc_ctx_cmd ctx_cmd
)
2845 struct lpfc_scsi_buf
*lpfc_cmd
;
2846 struct scsi_cmnd
*cmnd
;
2849 if (!(iocbq
->iocb_flag
& LPFC_IO_FCP
))
2852 lpfc_cmd
= container_of(iocbq
, struct lpfc_scsi_buf
, cur_iocbq
);
2853 cmnd
= lpfc_cmd
->pCmd
;
2860 if ((cmnd
->device
->id
== tgt_id
) &&
2861 (cmnd
->device
->lun
== lun_id
))
2865 if (cmnd
->device
->id
== tgt_id
)
2869 if (iocbq
->iocb
.ulpContext
== ctx
)
2876 printk(KERN_ERR
"%s: Unknown context cmd type, value %d\n",
2877 __FUNCTION__
, ctx_cmd
);
2885 lpfc_sli_sum_iocb(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
,
2886 uint16_t tgt_id
, uint64_t lun_id
, lpfc_ctx_cmd ctx_cmd
)
2888 struct lpfc_iocbq
*iocbq
;
2891 for (i
= 1, sum
= 0; i
<= phba
->sli
.last_iotag
; i
++) {
2892 iocbq
= phba
->sli
.iocbq_lookup
[i
];
2894 if (lpfc_sli_validate_fcp_iocb (iocbq
, tgt_id
, lun_id
,
2903 lpfc_sli_abort_fcp_cmpl(struct lpfc_hba
* phba
, struct lpfc_iocbq
* cmdiocb
,
2904 struct lpfc_iocbq
* rspiocb
)
2906 spin_lock_irq(phba
->host
->host_lock
);
2907 lpfc_sli_release_iocbq(phba
, cmdiocb
);
2908 spin_unlock_irq(phba
->host
->host_lock
);
2913 lpfc_sli_abort_iocb(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
,
2914 uint16_t tgt_id
, uint64_t lun_id
, uint32_t ctx
,
2915 lpfc_ctx_cmd abort_cmd
)
2917 struct lpfc_iocbq
*iocbq
;
2918 struct lpfc_iocbq
*abtsiocb
;
2920 int errcnt
= 0, ret_val
= 0;
2923 for (i
= 1; i
<= phba
->sli
.last_iotag
; i
++) {
2924 iocbq
= phba
->sli
.iocbq_lookup
[i
];
2926 if (lpfc_sli_validate_fcp_iocb (iocbq
, tgt_id
, lun_id
,
2930 /* issue ABTS for this IOCB based on iotag */
2931 abtsiocb
= lpfc_sli_get_iocbq(phba
);
2932 if (abtsiocb
== NULL
) {
2938 abtsiocb
->iocb
.un
.acxri
.abortType
= ABORT_TYPE_ABTS
;
2939 abtsiocb
->iocb
.un
.acxri
.abortContextTag
= cmd
->ulpContext
;
2940 abtsiocb
->iocb
.un
.acxri
.abortIoTag
= cmd
->ulpIoTag
;
2941 abtsiocb
->iocb
.ulpLe
= 1;
2942 abtsiocb
->iocb
.ulpClass
= cmd
->ulpClass
;
2944 if (phba
->hba_state
>= LPFC_LINK_UP
)
2945 abtsiocb
->iocb
.ulpCommand
= CMD_ABORT_XRI_CN
;
2947 abtsiocb
->iocb
.ulpCommand
= CMD_CLOSE_XRI_CN
;
2949 /* Setup callback routine and issue the command. */
2950 abtsiocb
->iocb_cmpl
= lpfc_sli_abort_fcp_cmpl
;
2951 ret_val
= lpfc_sli_issue_iocb(phba
, pring
, abtsiocb
, 0);
2952 if (ret_val
== IOCB_ERROR
) {
2953 lpfc_sli_release_iocbq(phba
, abtsiocb
);
2963 lpfc_sli_wake_iocb_wait(struct lpfc_hba
*phba
,
2964 struct lpfc_iocbq
*cmdiocbq
,
2965 struct lpfc_iocbq
*rspiocbq
)
2967 wait_queue_head_t
*pdone_q
;
2968 unsigned long iflags
;
2970 spin_lock_irqsave(phba
->host
->host_lock
, iflags
);
2971 cmdiocbq
->iocb_flag
|= LPFC_IO_WAKE
;
2972 if (cmdiocbq
->context2
&& rspiocbq
)
2973 memcpy(&((struct lpfc_iocbq
*)cmdiocbq
->context2
)->iocb
,
2974 &rspiocbq
->iocb
, sizeof(IOCB_t
));
2976 pdone_q
= cmdiocbq
->context_un
.wait_queue
;
2977 spin_unlock_irqrestore(phba
->host
->host_lock
, iflags
);
2984 * Issue the caller's iocb and wait for its completion, but no longer than the
2985 * caller's timeout. Note that iocb_flags is cleared before the
2986 * lpfc_sli_issue_call since the wake routine sets a unique value and by
2987 * definition this is a wait function.
2990 lpfc_sli_issue_iocb_wait(struct lpfc_hba
* phba
,
2991 struct lpfc_sli_ring
* pring
,
2992 struct lpfc_iocbq
* piocb
,
2993 struct lpfc_iocbq
* prspiocbq
,
2996 DECLARE_WAIT_QUEUE_HEAD(done_q
);
2997 long timeleft
, timeout_req
= 0;
2998 int retval
= IOCB_SUCCESS
;
3002 * If the caller has provided a response iocbq buffer, then context2
3003 * is NULL or its an error.
3006 if (piocb
->context2
)
3008 piocb
->context2
= prspiocbq
;
3011 piocb
->iocb_cmpl
= lpfc_sli_wake_iocb_wait
;
3012 piocb
->context_un
.wait_queue
= &done_q
;
3013 piocb
->iocb_flag
&= ~LPFC_IO_WAKE
;
3015 if (phba
->cfg_poll
& DISABLE_FCP_RING_INT
) {
3016 creg_val
= readl(phba
->HCregaddr
);
3017 creg_val
|= (HC_R0INT_ENA
<< LPFC_FCP_RING
);
3018 writel(creg_val
, phba
->HCregaddr
);
3019 readl(phba
->HCregaddr
); /* flush */
3022 retval
= lpfc_sli_issue_iocb(phba
, pring
, piocb
, 0);
3023 if (retval
== IOCB_SUCCESS
) {
3024 timeout_req
= timeout
* HZ
;
3025 spin_unlock_irq(phba
->host
->host_lock
);
3026 timeleft
= wait_event_timeout(done_q
,
3027 piocb
->iocb_flag
& LPFC_IO_WAKE
,
3029 spin_lock_irq(phba
->host
->host_lock
);
3031 if (timeleft
== 0) {
3032 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
3033 "%d:0329 IOCB wait timeout error - no "
3034 "wake response Data x%x\n",
3035 phba
->brd_no
, timeout
);
3036 retval
= IOCB_TIMEDOUT
;
3037 } else if (!(piocb
->iocb_flag
& LPFC_IO_WAKE
)) {
3038 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
3039 "%d:0330 IOCB wake NOT set, "
3040 "Data x%x x%lx\n", phba
->brd_no
,
3041 timeout
, (timeleft
/ jiffies
));
3042 retval
= IOCB_TIMEDOUT
;
3044 lpfc_printf_log(phba
, KERN_INFO
, LOG_SLI
,
3045 "%d:0331 IOCB wake signaled\n",
3049 lpfc_printf_log(phba
, KERN_INFO
, LOG_SLI
,
3050 "%d:0332 IOCB wait issue failed, Data x%x\n",
3051 phba
->brd_no
, retval
);
3052 retval
= IOCB_ERROR
;
3055 if (phba
->cfg_poll
& DISABLE_FCP_RING_INT
) {
3056 creg_val
= readl(phba
->HCregaddr
);
3057 creg_val
&= ~(HC_R0INT_ENA
<< LPFC_FCP_RING
);
3058 writel(creg_val
, phba
->HCregaddr
);
3059 readl(phba
->HCregaddr
); /* flush */
3063 piocb
->context2
= NULL
;
3065 piocb
->context_un
.wait_queue
= NULL
;
3066 piocb
->iocb_cmpl
= NULL
;
3071 lpfc_sli_issue_mbox_wait(struct lpfc_hba
* phba
, LPFC_MBOXQ_t
* pmboxq
,
3074 DECLARE_WAIT_QUEUE_HEAD(done_q
);
3075 DECLARE_WAITQUEUE(wq_entry
, current
);
3076 uint32_t timeleft
= 0;
3079 /* The caller must leave context1 empty. */
3080 if (pmboxq
->context1
!= 0) {
3081 return (MBX_NOT_FINISHED
);
3084 /* setup wake call as IOCB callback */
3085 pmboxq
->mbox_cmpl
= lpfc_sli_wake_mbox_wait
;
3086 /* setup context field to pass wait_queue pointer to wake function */
3087 pmboxq
->context1
= &done_q
;
3089 /* start to sleep before we wait, to avoid races */
3090 set_current_state(TASK_INTERRUPTIBLE
);
3091 add_wait_queue(&done_q
, &wq_entry
);
3093 /* now issue the command */
3094 retval
= lpfc_sli_issue_mbox(phba
, pmboxq
, MBX_NOWAIT
);
3096 if (retval
== MBX_BUSY
|| retval
== MBX_SUCCESS
) {
3097 timeleft
= schedule_timeout(timeout
* HZ
);
3098 pmboxq
->context1
= NULL
;
3099 /* if schedule_timeout returns 0, we timed out and were not
3101 if ((timeleft
== 0) || signal_pending(current
))
3102 retval
= MBX_TIMEOUT
;
3104 retval
= MBX_SUCCESS
;
3108 set_current_state(TASK_RUNNING
);
3109 remove_wait_queue(&done_q
, &wq_entry
);
3114 lpfc_intr_handler(int irq
, void *dev_id
, struct pt_regs
* regs
)
3116 struct lpfc_hba
*phba
;
3118 uint32_t work_ha_copy
;
3119 unsigned long status
;
3124 * Get the driver's phba structure from the dev_id and
3125 * assume the HBA is not interrupting.
3127 phba
= (struct lpfc_hba
*) dev_id
;
3129 if (unlikely(!phba
))
3132 phba
->sli
.slistat
.sli_intr
++;
3135 * Call the HBA to see if it is interrupting. If not, don't claim
3139 /* Ignore all interrupts during initialization. */
3140 if (unlikely(phba
->hba_state
< LPFC_LINK_DOWN
))
3144 * Read host attention register to determine interrupt source
3145 * Clear Attention Sources, except Error Attention (to
3146 * preserve status) and Link Attention
3148 spin_lock(phba
->host
->host_lock
);
3149 ha_copy
= readl(phba
->HAregaddr
);
3150 writel((ha_copy
& ~(HA_LATT
| HA_ERATT
)), phba
->HAregaddr
);
3151 readl(phba
->HAregaddr
); /* flush */
3152 spin_unlock(phba
->host
->host_lock
);
3154 if (unlikely(!ha_copy
))
3157 work_ha_copy
= ha_copy
& phba
->work_ha_mask
;
3159 if (unlikely(work_ha_copy
)) {
3160 if (work_ha_copy
& HA_LATT
) {
3161 if (phba
->sli
.sli_flag
& LPFC_PROCESS_LA
) {
3163 * Turn off Link Attention interrupts
3164 * until CLEAR_LA done
3166 spin_lock(phba
->host
->host_lock
);
3167 phba
->sli
.sli_flag
&= ~LPFC_PROCESS_LA
;
3168 control
= readl(phba
->HCregaddr
);
3169 control
&= ~HC_LAINT_ENA
;
3170 writel(control
, phba
->HCregaddr
);
3171 readl(phba
->HCregaddr
); /* flush */
3172 spin_unlock(phba
->host
->host_lock
);
3175 work_ha_copy
&= ~HA_LATT
;
3178 if (work_ha_copy
& ~(HA_ERATT
|HA_MBATT
|HA_LATT
)) {
3179 for (i
= 0; i
< phba
->sli
.num_rings
; i
++) {
3180 if (work_ha_copy
& (HA_RXATT
<< (4*i
))) {
3182 * Turn off Slow Rings interrupts
3184 spin_lock(phba
->host
->host_lock
);
3185 control
= readl(phba
->HCregaddr
);
3186 control
&= ~(HC_R0INT_ENA
<< i
);
3187 writel(control
, phba
->HCregaddr
);
3188 readl(phba
->HCregaddr
); /* flush */
3189 spin_unlock(phba
->host
->host_lock
);
3194 if (work_ha_copy
& HA_ERATT
) {
3195 phba
->hba_state
= LPFC_HBA_ERROR
;
3197 * There was a link/board error. Read the
3198 * status register to retrieve the error event
3201 phba
->sli
.slistat
.err_attn_event
++;
3202 /* Save status info */
3203 phba
->work_hs
= readl(phba
->HSregaddr
);
3204 phba
->work_status
[0] = readl(phba
->MBslimaddr
+ 0xa8);
3205 phba
->work_status
[1] = readl(phba
->MBslimaddr
+ 0xac);
3207 /* Clear Chip error bit */
3208 writel(HA_ERATT
, phba
->HAregaddr
);
3209 readl(phba
->HAregaddr
); /* flush */
3213 spin_lock(phba
->host
->host_lock
);
3214 phba
->work_ha
|= work_ha_copy
;
3215 if (phba
->work_wait
)
3216 wake_up(phba
->work_wait
);
3217 spin_unlock(phba
->host
->host_lock
);
3220 ha_copy
&= ~(phba
->work_ha_mask
);
3223 * Process all events on FCP ring. Take the optimized path for
3224 * FCP IO. Any other IO is slow path and is handled by
3225 * the worker thread.
3227 status
= (ha_copy
& (HA_RXMASK
<< (4*LPFC_FCP_RING
)));
3228 status
>>= (4*LPFC_FCP_RING
);
3229 if (status
& HA_RXATT
)
3230 lpfc_sli_handle_fast_ring_event(phba
,
3231 &phba
->sli
.ring
[LPFC_FCP_RING
],
3235 } /* lpfc_intr_handler */