[Fix bug# 771] Too many (8) bytes recieved when using AES/hwcrypto
[linux-2.6/sactl.git] / drivers / scsi / lpfc / lpfc_sli.c
blob508710001ed61a9de13bdc37f3a34f4b0b885b54
1 /*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
3 * Fibre Channel Host Bus Adapters. *
4 * Copyright (C) 2004-2005 Emulex. All rights reserved. *
5 * EMULEX and SLI are trademarks of Emulex. *
6 * www.emulex.com *
7 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
8 * *
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>
33 #include "lpfc_hw.h"
34 #include "lpfc_sli.h"
35 #include "lpfc_disc.h"
36 #include "lpfc_scsi.h"
37 #include "lpfc.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, \
49 KERN_INFO, \
50 LOG_MBOX | LOG_SLI, \
51 "%d:0311 Mailbox command x%x cannot issue " \
52 "Data: x%x x%x x%x\n", \
53 phba->brd_no, \
54 mb->mbxCommand, \
55 phba->hba_state, \
56 psli->sli_flag, \
57 flag);
60 /* There are only four IOCB completion types. */
61 typedef enum _lpfc_iocb_type {
62 LPFC_UNKNOWN_IOCB,
63 LPFC_UNSOL_IOCB,
64 LPFC_SOL_IOCB,
65 LPFC_ABORT_IOCB
66 } lpfc_iocb_type;
68 struct lpfc_iocbq *
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);
75 return iocbq;
78 void
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.
94 static lpfc_iocb_type
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)
100 return 0;
102 switch (iocb_cmnd) {
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:
111 case CMD_GET_RPI_CN:
112 case CMD_XMIT_ELS_RSP_CX:
113 case CMD_GET_RPI_CR:
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;
138 break;
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;
146 break;
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;
152 break;
153 default:
154 type = LPFC_UNKNOWN_IOCB;
155 break;
158 return type;
161 static int
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;
166 int i, rc;
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,
174 KERN_ERR,
175 LOG_INIT,
176 "%d:0446 Adapter failed to init, "
177 "mbxCmd x%x CFG_RING, mbxStatus x%x, "
178 "ring %d\n",
179 phba->brd_no,
180 pmbox->mbxCommand,
181 pmbox->mbxStatus,
183 phba->hba_state = LPFC_HBA_ERROR;
184 return -ENXIO;
187 return 0;
190 static int
191 lpfc_sli_ringtxcmpl_put(struct lpfc_hba * phba,
192 struct lpfc_sli_ring * pring, struct lpfc_iocbq * piocb)
194 uint16_t iotag;
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;
207 else {
209 /* Cmd ring <ringno> put: iotag <iotag> greater then
210 configured max <fast_iotag> wd0 <icmd> */
211 lpfc_printf_log(phba,
212 KERN_ERR,
213 LOG_SLI,
214 "%d:0316 Cmd ring %d put: iotag x%x "
215 "greater then configured max x%x "
216 "wd0 x%x\n",
217 phba->brd_no,
218 pring->ringno, iotag,
219 pring->fast_iotag,
220 *(((uint32_t *)(&piocb->iocb)) + 7));
223 return (0);
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;
232 dlp = &pring->txq;
233 cmd_iocb = NULL;
234 list_remove_head((&pring->txq), cmd_iocb,
235 struct lpfc_iocbq,
236 list);
237 if (cmd_iocb) {
238 /* If the first ptr is not equal to the list header,
239 * deque the IOCBQ_t and return it.
241 pring->txq_cnt--;
243 return (cmd_iocb);
246 static IOCB_t *
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;
251 IOCB_t *iocb = NULL;
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
271 * worker thread
273 phba->work_ha |= HA_ERATT;
274 phba->work_hs = HS_FFER3;
275 if (phba->work_wait)
276 wake_up(phba->work_wait);
278 return NULL;
281 if (pring->local_getidx == pring->next_cmdidx)
282 return NULL;
285 iocb = IOCB_ENTRY(pring->cmdringaddr, pring->cmdidx);
287 return iocb;
290 uint16_t
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;
295 size_t new_len;
296 struct lpfc_sli *psli = &phba->sli;
297 uint16_t iotag;
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;
306 return 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 *),
313 GFP_KERNEL);
314 if (new_arr) {
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 */
321 kfree(new_arr);
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;
328 return iotag;
330 spin_unlock_irq(phba->host->host_lock);
331 return 0;
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;
343 kfree(old_arr);
344 return 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);
352 return 0;
355 static void
356 lpfc_sli_submit_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
357 IOCB_t *iocb, struct lpfc_iocbq *nextiocb)
360 * Set up an iotag
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));
368 wmb();
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);
378 else
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);
390 static void
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;
398 wmb();
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++;
410 static void
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.
419 wmb();
420 writel(CA_R0ATT << (ringno * 4), phba->CAregaddr);
421 readl(phba->CAregaddr); /* flush */
424 static void
425 lpfc_sli_resume_iocb(struct lpfc_hba * phba, struct lpfc_sli_ring * pring)
427 IOCB_t *iocb;
428 struct lpfc_iocbq *nextiocb;
431 * Check to see if:
432 * (a) there is anything on the txq to send
433 * (b) link is up
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);
447 if (iocb)
448 lpfc_sli_update_ring(phba, pring);
449 else
450 lpfc_sli_update_full_ring(phba, pring);
453 return;
456 /* lpfc_sli_turn_on_ring is only called by lpfc_sli_handle_mb_event below */
457 static void
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);
478 static int
479 lpfc_sli_chk_mbx_command(uint8_t mbxCommand)
481 uint8_t ret;
483 switch (mbxCommand) {
484 case MBX_LOAD_SM:
485 case MBX_READ_NV:
486 case MBX_WRITE_NV:
487 case MBX_RUN_BIU_DIAG:
488 case MBX_INIT_LINK:
489 case MBX_DOWN_LINK:
490 case MBX_CONFIG_LINK:
491 case MBX_CONFIG_RING:
492 case MBX_RESET_RING:
493 case MBX_READ_CONFIG:
494 case MBX_READ_RCONFIG:
495 case MBX_READ_SPARM:
496 case MBX_READ_STATUS:
497 case MBX_READ_RPI:
498 case MBX_READ_XRI:
499 case MBX_READ_REV:
500 case MBX_READ_LNK_STAT:
501 case MBX_REG_LOGIN:
502 case MBX_UNREG_LOGIN:
503 case MBX_READ_LA:
504 case MBX_CLEAR_LA:
505 case MBX_DUMP_MEMORY:
506 case MBX_DUMP_CONTEXT:
507 case MBX_RUN_DIAGS:
508 case MBX_RESTART:
509 case MBX_UPDATE_CFG:
510 case MBX_DOWN_LOAD:
511 case MBX_DEL_LD_ENTRY:
512 case MBX_RUN_PROGRAM:
513 case MBX_SET_MASK:
514 case MBX_SET_SLIM:
515 case MBX_UNREG_D_ID:
516 case MBX_CONFIG_FARP:
517 case MBX_LOAD_AREA:
518 case MBX_RUN_BIU_DIAG64:
519 case MBX_CONFIG_PORT:
520 case MBX_READ_SPARM64:
521 case MBX_READ_RPI64:
522 case MBX_REG_LOGIN64:
523 case MBX_READ_LA64:
524 case MBX_FLASH_WR_ULA:
525 case MBX_SET_DEBUG:
526 case MBX_LOAD_EXP_ROM:
527 ret = mbxCommand;
528 break;
529 default:
530 ret = MBX_SHUTDOWN;
531 break;
533 return (ret);
535 static void
536 lpfc_sli_wake_mbox_wait(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmboxq)
538 wait_queue_head_t *pdone_q;
541 * If pdone_q is empty, the driver thread gave up waiting and
542 * continued running.
544 pdone_q = (wait_queue_head_t *) pmboxq->context1;
545 if (pdone_q)
546 wake_up_interruptible(pdone_q);
547 return;
550 void
551 lpfc_sli_def_mbox_cmpl(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)
553 struct lpfc_dmabuf *mp;
554 mp = (struct lpfc_dmabuf *) (pmb->context1);
555 if (mp) {
556 lpfc_mbuf_free(phba, mp->virt, mp->phys);
557 kfree(mp);
559 mempool_free( pmb, phba->mbox_mem_pool);
560 return;
564 lpfc_sli_handle_mb_event(struct lpfc_hba * phba)
566 MAILBOX_t *mbox;
567 MAILBOX_t *pmbox;
568 LPFC_MBOXQ_t *pmb;
569 struct lpfc_sli *psli;
570 int i, rc;
571 uint32_t process_next;
573 psli = &phba->sli;
574 /* We should only get here if we are in SLI2 mode */
575 if (!(phba->sli.sli_flag & LPFC_SLI2_ACTIVE)) {
576 return (1);
579 phba->sli.slistat.mbox_event++;
581 /* Get a Mailbox buffer to setup mailbox commands for callback */
582 if ((pmb = phba->sli.mbox_active)) {
583 pmbox = &pmb->mb;
584 mbox = &phba->slim2p->mbx;
586 /* First check out the status word */
587 lpfc_sli_pcimem_bcopy(mbox, pmbox, sizeof (uint32_t));
589 /* Sanity check to ensure the host owns the mailbox */
590 if (pmbox->mbxOwner != OWN_HOST) {
591 /* Lets try for a while */
592 for (i = 0; i < 10240; i++) {
593 /* First copy command data */
594 lpfc_sli_pcimem_bcopy(mbox, pmbox,
595 sizeof (uint32_t));
596 if (pmbox->mbxOwner == OWN_HOST)
597 goto mbout;
599 /* Stray Mailbox Interrupt, mbxCommand <cmd> mbxStatus
600 <status> */
601 lpfc_printf_log(phba,
602 KERN_ERR,
603 LOG_MBOX | LOG_SLI,
604 "%d:0304 Stray Mailbox Interrupt "
605 "mbxCommand x%x mbxStatus x%x\n",
606 phba->brd_no,
607 pmbox->mbxCommand,
608 pmbox->mbxStatus);
610 spin_lock_irq(phba->host->host_lock);
611 phba->sli.sli_flag |= LPFC_SLI_MBOX_ACTIVE;
612 spin_unlock_irq(phba->host->host_lock);
613 return (1);
616 mbout:
617 del_timer_sync(&phba->sli.mbox_tmo);
618 phba->work_hba_events &= ~WORKER_MBOX_TMO;
621 * It is a fatal error if unknown mbox command completion.
623 if (lpfc_sli_chk_mbx_command(pmbox->mbxCommand) ==
624 MBX_SHUTDOWN) {
626 /* Unknow mailbox command compl */
627 lpfc_printf_log(phba,
628 KERN_ERR,
629 LOG_MBOX | LOG_SLI,
630 "%d:0323 Unknown Mailbox command %x Cmpl\n",
631 phba->brd_no,
632 pmbox->mbxCommand);
633 phba->hba_state = LPFC_HBA_ERROR;
634 phba->work_hs = HS_FFER3;
635 lpfc_handle_eratt(phba);
636 return (0);
639 phba->sli.mbox_active = NULL;
640 if (pmbox->mbxStatus) {
641 phba->sli.slistat.mbox_stat_err++;
642 if (pmbox->mbxStatus == MBXERR_NO_RESOURCES) {
643 /* Mbox cmd cmpl error - RETRYing */
644 lpfc_printf_log(phba,
645 KERN_INFO,
646 LOG_MBOX | LOG_SLI,
647 "%d:0305 Mbox cmd cmpl error - "
648 "RETRYing Data: x%x x%x x%x x%x\n",
649 phba->brd_no,
650 pmbox->mbxCommand,
651 pmbox->mbxStatus,
652 pmbox->un.varWords[0],
653 phba->hba_state);
654 pmbox->mbxStatus = 0;
655 pmbox->mbxOwner = OWN_HOST;
656 spin_lock_irq(phba->host->host_lock);
657 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
658 spin_unlock_irq(phba->host->host_lock);
659 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
660 if (rc == MBX_SUCCESS)
661 return (0);
665 /* Mailbox cmd <cmd> Cmpl <cmpl> */
666 lpfc_printf_log(phba,
667 KERN_INFO,
668 LOG_MBOX | LOG_SLI,
669 "%d:0307 Mailbox cmd x%x Cmpl x%p "
670 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x\n",
671 phba->brd_no,
672 pmbox->mbxCommand,
673 pmb->mbox_cmpl,
674 *((uint32_t *) pmbox),
675 pmbox->un.varWords[0],
676 pmbox->un.varWords[1],
677 pmbox->un.varWords[2],
678 pmbox->un.varWords[3],
679 pmbox->un.varWords[4],
680 pmbox->un.varWords[5],
681 pmbox->un.varWords[6],
682 pmbox->un.varWords[7]);
684 if (pmb->mbox_cmpl) {
685 lpfc_sli_pcimem_bcopy(mbox, pmbox, MAILBOX_CMD_SIZE);
686 pmb->mbox_cmpl(phba,pmb);
691 do {
692 process_next = 0; /* by default don't loop */
693 spin_lock_irq(phba->host->host_lock);
694 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
696 /* Process next mailbox command if there is one */
697 if ((pmb = lpfc_mbox_get(phba))) {
698 spin_unlock_irq(phba->host->host_lock);
699 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
700 if (rc == MBX_NOT_FINISHED) {
701 pmb->mb.mbxStatus = MBX_NOT_FINISHED;
702 pmb->mbox_cmpl(phba,pmb);
703 process_next = 1;
704 continue; /* loop back */
706 } else {
707 spin_unlock_irq(phba->host->host_lock);
708 /* Turn on IOCB processing */
709 for (i = 0; i < phba->sli.num_rings; i++) {
710 lpfc_sli_turn_on_ring(phba, i);
713 /* Free any lpfc_dmabuf's waiting for mbox cmd cmpls */
714 while (!list_empty(&phba->freebufList)) {
715 struct lpfc_dmabuf *mp;
717 mp = NULL;
718 list_remove_head((&phba->freebufList),
720 struct lpfc_dmabuf,
721 list);
722 if (mp) {
723 lpfc_mbuf_free(phba, mp->virt,
724 mp->phys);
725 kfree(mp);
730 } while (process_next);
732 return (0);
734 static int
735 lpfc_sli_process_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
736 struct lpfc_iocbq *saveq)
738 IOCB_t * irsp;
739 WORD5 * w5p;
740 uint32_t Rctl, Type;
741 uint32_t match, i;
743 match = 0;
744 irsp = &(saveq->iocb);
745 if ((irsp->ulpCommand == CMD_RCV_ELS_REQ64_CX)
746 || (irsp->ulpCommand == CMD_RCV_ELS_REQ_CX)) {
747 Rctl = FC_ELS_REQ;
748 Type = FC_ELS_DATA;
749 } else {
750 w5p =
751 (WORD5 *) & (saveq->iocb.un.
752 ulpWord[5]);
753 Rctl = w5p->hcsw.Rctl;
754 Type = w5p->hcsw.Type;
756 /* Firmware Workaround */
757 if ((Rctl == 0) && (pring->ringno == LPFC_ELS_RING) &&
758 (irsp->ulpCommand == CMD_RCV_SEQUENCE64_CX)) {
759 Rctl = FC_ELS_REQ;
760 Type = FC_ELS_DATA;
761 w5p->hcsw.Rctl = Rctl;
762 w5p->hcsw.Type = Type;
765 /* unSolicited Responses */
766 if (pring->prt[0].profile) {
767 (pring->prt[0].lpfc_sli_rcv_unsol_event) (phba, pring, saveq);
768 match = 1;
769 } else {
770 /* We must search, based on rctl / type
771 for the right routine */
772 for (i = 0; i < pring->num_mask;
773 i++) {
774 if ((pring->prt[i].rctl ==
775 Rctl)
776 && (pring->prt[i].
777 type == Type)) {
778 (pring->prt[i].lpfc_sli_rcv_unsol_event)
779 (phba, pring, saveq);
780 match = 1;
781 break;
785 if (match == 0) {
786 /* Unexpected Rctl / Type received */
787 /* Ring <ringno> handler: unexpected
788 Rctl <Rctl> Type <Type> received */
789 lpfc_printf_log(phba,
790 KERN_WARNING,
791 LOG_SLI,
792 "%d:0313 Ring %d handler: unexpected Rctl x%x "
793 "Type x%x received \n",
794 phba->brd_no,
795 pring->ringno,
796 Rctl,
797 Type);
799 return(1);
802 static struct lpfc_iocbq *
803 lpfc_sli_iocbq_lookup(struct lpfc_hba * phba,
804 struct lpfc_sli_ring * pring,
805 struct lpfc_iocbq * prspiocb)
807 struct lpfc_iocbq *cmd_iocb = NULL;
808 uint16_t iotag;
810 iotag = prspiocb->iocb.ulpIoTag;
812 if (iotag != 0 && iotag <= phba->sli.last_iotag) {
813 cmd_iocb = phba->sli.iocbq_lookup[iotag];
814 list_del(&cmd_iocb->list);
815 pring->txcmplq_cnt--;
816 return cmd_iocb;
819 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
820 "%d:0317 iotag x%x is out off "
821 "range: max iotag x%x wd0 x%x\n",
822 phba->brd_no, iotag,
823 phba->sli.last_iotag,
824 *(((uint32_t *) &prspiocb->iocb) + 7));
825 return NULL;
828 static int
829 lpfc_sli_process_sol_iocb(struct lpfc_hba * phba, struct lpfc_sli_ring * pring,
830 struct lpfc_iocbq *saveq)
832 struct lpfc_iocbq * cmdiocbp;
833 int rc = 1;
834 unsigned long iflag;
836 /* Based on the iotag field, get the cmd IOCB from the txcmplq */
837 spin_lock_irqsave(phba->host->host_lock, iflag);
838 cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring, saveq);
839 if (cmdiocbp) {
840 if (cmdiocbp->iocb_cmpl) {
842 * Post all ELS completions to the worker thread.
843 * All other are passed to the completion callback.
845 if (pring->ringno == LPFC_ELS_RING) {
846 spin_unlock_irqrestore(phba->host->host_lock,
847 iflag);
848 (cmdiocbp->iocb_cmpl) (phba, cmdiocbp, saveq);
849 spin_lock_irqsave(phba->host->host_lock, iflag);
851 else {
852 spin_unlock_irqrestore(phba->host->host_lock,
853 iflag);
854 (cmdiocbp->iocb_cmpl) (phba, cmdiocbp, saveq);
855 spin_lock_irqsave(phba->host->host_lock, iflag);
857 } else
858 lpfc_sli_release_iocbq(phba, cmdiocbp);
859 } else {
861 * Unknown initiating command based on the response iotag.
862 * This could be the case on the ELS ring because of
863 * lpfc_els_abort().
865 if (pring->ringno != LPFC_ELS_RING) {
867 * Ring <ringno> handler: unexpected completion IoTag
868 * <IoTag>
870 lpfc_printf_log(phba,
871 KERN_WARNING,
872 LOG_SLI,
873 "%d:0322 Ring %d handler: unexpected "
874 "completion IoTag x%x Data: x%x x%x x%x x%x\n",
875 phba->brd_no,
876 pring->ringno,
877 saveq->iocb.ulpIoTag,
878 saveq->iocb.ulpStatus,
879 saveq->iocb.un.ulpWord[4],
880 saveq->iocb.ulpCommand,
881 saveq->iocb.ulpContext);
885 spin_unlock_irqrestore(phba->host->host_lock, iflag);
886 return rc;
890 * This routine presumes LPFC_FCP_RING handling and doesn't bother
891 * to check it explicitly.
893 static int
894 lpfc_sli_handle_fast_ring_event(struct lpfc_hba * phba,
895 struct lpfc_sli_ring * pring, uint32_t mask)
897 struct lpfc_pgp *pgp = &phba->slim2p->mbx.us.s2.port[pring->ringno];
898 IOCB_t *irsp = NULL;
899 IOCB_t *entry = NULL;
900 struct lpfc_iocbq *cmdiocbq = NULL;
901 struct lpfc_iocbq rspiocbq;
902 uint32_t status;
903 uint32_t portRspPut, portRspMax;
904 int rc = 1;
905 lpfc_iocb_type type;
906 unsigned long iflag;
907 uint32_t rsp_cmpl = 0;
908 void __iomem *to_slim;
910 spin_lock_irqsave(phba->host->host_lock, iflag);
911 pring->stats.iocb_event++;
914 * The next available response entry should never exceed the maximum
915 * entries. If it does, treat it as an adapter hardware error.
917 portRspMax = pring->numRiocb;
918 portRspPut = le32_to_cpu(pgp->rspPutInx);
919 if (unlikely(portRspPut >= portRspMax)) {
921 * Ring <ringno> handler: portRspPut <portRspPut> is bigger then
922 * rsp ring <portRspMax>
924 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
925 "%d:0312 Ring %d handler: portRspPut %d "
926 "is bigger then rsp ring %d\n",
927 phba->brd_no, pring->ringno, portRspPut,
928 portRspMax);
930 phba->hba_state = LPFC_HBA_ERROR;
932 /* All error attention handlers are posted to worker thread */
933 phba->work_ha |= HA_ERATT;
934 phba->work_hs = HS_FFER3;
935 if (phba->work_wait)
936 wake_up(phba->work_wait);
938 spin_unlock_irqrestore(phba->host->host_lock, iflag);
939 return 1;
942 rmb();
943 while (pring->rspidx != portRspPut) {
945 * Fetch an entry off the ring and copy it into a local data
946 * structure. The copy involves a byte-swap since the
947 * network byte order and pci byte orders are different.
949 entry = IOCB_ENTRY(pring->rspringaddr, pring->rspidx);
950 lpfc_sli_pcimem_bcopy((uint32_t *) entry,
951 (uint32_t *) &rspiocbq.iocb,
952 sizeof (IOCB_t));
953 irsp = &rspiocbq.iocb;
955 type = lpfc_sli_iocb_cmd_type(irsp->ulpCommand & CMD_IOCB_MASK);
956 pring->stats.iocb_rsp++;
957 rsp_cmpl++;
959 if (unlikely(irsp->ulpStatus)) {
960 /* Rsp ring <ringno> error: IOCB */
961 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
962 "%d:0326 Rsp Ring %d error: IOCB Data: "
963 "x%x x%x x%x x%x x%x x%x x%x x%x\n",
964 phba->brd_no, pring->ringno,
965 irsp->un.ulpWord[0], irsp->un.ulpWord[1],
966 irsp->un.ulpWord[2], irsp->un.ulpWord[3],
967 irsp->un.ulpWord[4], irsp->un.ulpWord[5],
968 *(((uint32_t *) irsp) + 6),
969 *(((uint32_t *) irsp) + 7));
972 switch (type) {
973 case LPFC_ABORT_IOCB:
974 case LPFC_SOL_IOCB:
976 * Idle exchange closed via ABTS from port. No iocb
977 * resources need to be recovered.
979 if (unlikely(irsp->ulpCommand == CMD_XRI_ABORTED_CX)) {
980 printk(KERN_INFO "%s: IOCB cmd 0x%x processed. "
981 "Skipping completion\n", __FUNCTION__,
982 irsp->ulpCommand);
983 break;
986 cmdiocbq = lpfc_sli_iocbq_lookup(phba, pring,
987 &rspiocbq);
988 if ((cmdiocbq) && (cmdiocbq->iocb_cmpl)) {
989 spin_unlock_irqrestore(
990 phba->host->host_lock, iflag);
991 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq,
992 &rspiocbq);
993 spin_lock_irqsave(phba->host->host_lock,
994 iflag);
996 break;
997 default:
998 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
999 char adaptermsg[LPFC_MAX_ADPTMSG];
1000 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
1001 memcpy(&adaptermsg[0], (uint8_t *) irsp,
1002 MAX_MSG_DATA);
1003 dev_warn(&((phba->pcidev)->dev), "lpfc%d: %s",
1004 phba->brd_no, adaptermsg);
1005 } else {
1006 /* Unknown IOCB command */
1007 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
1008 "%d:0321 Unknown IOCB command "
1009 "Data: x%x, x%x x%x x%x x%x\n",
1010 phba->brd_no, type, irsp->ulpCommand,
1011 irsp->ulpStatus, irsp->ulpIoTag,
1012 irsp->ulpContext);
1014 break;
1018 * The response IOCB has been processed. Update the ring
1019 * pointer in SLIM. If the port response put pointer has not
1020 * been updated, sync the pgp->rspPutInx and fetch the new port
1021 * response put pointer.
1023 if (++pring->rspidx >= portRspMax)
1024 pring->rspidx = 0;
1026 to_slim = phba->MBslimaddr +
1027 (SLIMOFF + (pring->ringno * 2) + 1) * 4;
1028 writel(pring->rspidx, to_slim);
1030 if (pring->rspidx == portRspPut)
1031 portRspPut = le32_to_cpu(pgp->rspPutInx);
1034 if ((rsp_cmpl > 0) && (mask & HA_R0RE_REQ)) {
1035 pring->stats.iocb_rsp_full++;
1036 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
1037 writel(status, phba->CAregaddr);
1038 readl(phba->CAregaddr);
1040 if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
1041 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
1042 pring->stats.iocb_cmd_empty++;
1044 /* Force update of the local copy of cmdGetInx */
1045 pring->local_getidx = le32_to_cpu(pgp->cmdGetInx);
1046 lpfc_sli_resume_iocb(phba, pring);
1048 if ((pring->lpfc_sli_cmd_available))
1049 (pring->lpfc_sli_cmd_available) (phba, pring);
1053 spin_unlock_irqrestore(phba->host->host_lock, iflag);
1054 return rc;
1059 lpfc_sli_handle_slow_ring_event(struct lpfc_hba * phba,
1060 struct lpfc_sli_ring * pring, uint32_t mask)
1062 IOCB_t *entry;
1063 IOCB_t *irsp = NULL;
1064 struct lpfc_iocbq *rspiocbp = NULL;
1065 struct lpfc_iocbq *next_iocb;
1066 struct lpfc_iocbq *cmdiocbp;
1067 struct lpfc_iocbq *saveq;
1068 struct lpfc_pgp *pgp = &phba->slim2p->mbx.us.s2.port[pring->ringno];
1069 uint8_t iocb_cmd_type;
1070 lpfc_iocb_type type;
1071 uint32_t status, free_saveq;
1072 uint32_t portRspPut, portRspMax;
1073 int rc = 1;
1074 unsigned long iflag;
1075 void __iomem *to_slim;
1077 spin_lock_irqsave(phba->host->host_lock, iflag);
1078 pring->stats.iocb_event++;
1081 * The next available response entry should never exceed the maximum
1082 * entries. If it does, treat it as an adapter hardware error.
1084 portRspMax = pring->numRiocb;
1085 portRspPut = le32_to_cpu(pgp->rspPutInx);
1086 if (portRspPut >= portRspMax) {
1088 * Ring <ringno> handler: portRspPut <portRspPut> is bigger then
1089 * rsp ring <portRspMax>
1091 lpfc_printf_log(phba,
1092 KERN_ERR,
1093 LOG_SLI,
1094 "%d:0312 Ring %d handler: portRspPut %d "
1095 "is bigger then rsp ring %d\n",
1096 phba->brd_no,
1097 pring->ringno, portRspPut, portRspMax);
1099 phba->hba_state = LPFC_HBA_ERROR;
1100 spin_unlock_irqrestore(phba->host->host_lock, iflag);
1102 phba->work_hs = HS_FFER3;
1103 lpfc_handle_eratt(phba);
1105 return 1;
1108 rmb();
1109 while (pring->rspidx != portRspPut) {
1111 * Build a completion list and call the appropriate handler.
1112 * The process is to get the next available response iocb, get
1113 * a free iocb from the list, copy the response data into the
1114 * free iocb, insert to the continuation list, and update the
1115 * next response index to slim. This process makes response
1116 * iocb's in the ring available to DMA as fast as possible but
1117 * pays a penalty for a copy operation. Since the iocb is
1118 * only 32 bytes, this penalty is considered small relative to
1119 * the PCI reads for register values and a slim write. When
1120 * the ulpLe field is set, the entire Command has been
1121 * received.
1123 entry = IOCB_ENTRY(pring->rspringaddr, pring->rspidx);
1124 rspiocbp = lpfc_sli_get_iocbq(phba);
1125 if (rspiocbp == NULL) {
1126 printk(KERN_ERR "%s: out of buffers! Failing "
1127 "completion.\n", __FUNCTION__);
1128 break;
1131 lpfc_sli_pcimem_bcopy(entry, &rspiocbp->iocb, sizeof (IOCB_t));
1132 irsp = &rspiocbp->iocb;
1134 if (++pring->rspidx >= portRspMax)
1135 pring->rspidx = 0;
1137 to_slim = phba->MBslimaddr + (SLIMOFF + (pring->ringno * 2)
1138 + 1) * 4;
1139 writel(pring->rspidx, to_slim);
1141 if (list_empty(&(pring->iocb_continueq))) {
1142 list_add(&rspiocbp->list, &(pring->iocb_continueq));
1143 } else {
1144 list_add_tail(&rspiocbp->list,
1145 &(pring->iocb_continueq));
1148 pring->iocb_continueq_cnt++;
1149 if (irsp->ulpLe) {
1151 * By default, the driver expects to free all resources
1152 * associated with this iocb completion.
1154 free_saveq = 1;
1155 saveq = list_get_first(&pring->iocb_continueq,
1156 struct lpfc_iocbq, list);
1157 irsp = &(saveq->iocb);
1158 list_del_init(&pring->iocb_continueq);
1159 pring->iocb_continueq_cnt = 0;
1161 pring->stats.iocb_rsp++;
1163 if (irsp->ulpStatus) {
1164 /* Rsp ring <ringno> error: IOCB */
1165 lpfc_printf_log(phba,
1166 KERN_WARNING,
1167 LOG_SLI,
1168 "%d:0328 Rsp Ring %d error: IOCB Data: "
1169 "x%x x%x x%x x%x x%x x%x x%x x%x\n",
1170 phba->brd_no,
1171 pring->ringno,
1172 irsp->un.ulpWord[0],
1173 irsp->un.ulpWord[1],
1174 irsp->un.ulpWord[2],
1175 irsp->un.ulpWord[3],
1176 irsp->un.ulpWord[4],
1177 irsp->un.ulpWord[5],
1178 *(((uint32_t *) irsp) + 6),
1179 *(((uint32_t *) irsp) + 7));
1183 * Fetch the IOCB command type and call the correct
1184 * completion routine. Solicited and Unsolicited
1185 * IOCBs on the ELS ring get freed back to the
1186 * lpfc_iocb_list by the discovery kernel thread.
1188 iocb_cmd_type = irsp->ulpCommand & CMD_IOCB_MASK;
1189 type = lpfc_sli_iocb_cmd_type(iocb_cmd_type);
1190 if (type == LPFC_SOL_IOCB) {
1191 spin_unlock_irqrestore(phba->host->host_lock,
1192 iflag);
1193 rc = lpfc_sli_process_sol_iocb(phba, pring,
1194 saveq);
1195 spin_lock_irqsave(phba->host->host_lock, iflag);
1196 } else if (type == LPFC_UNSOL_IOCB) {
1197 spin_unlock_irqrestore(phba->host->host_lock,
1198 iflag);
1199 rc = lpfc_sli_process_unsol_iocb(phba, pring,
1200 saveq);
1201 spin_lock_irqsave(phba->host->host_lock, iflag);
1202 } else if (type == LPFC_ABORT_IOCB) {
1203 if ((irsp->ulpCommand != CMD_XRI_ABORTED_CX) &&
1204 ((cmdiocbp =
1205 lpfc_sli_iocbq_lookup(phba, pring,
1206 saveq)))) {
1207 /* Call the specified completion
1208 routine */
1209 if (cmdiocbp->iocb_cmpl) {
1210 spin_unlock_irqrestore(
1211 phba->host->host_lock,
1212 iflag);
1213 (cmdiocbp->iocb_cmpl) (phba,
1214 cmdiocbp, saveq);
1215 spin_lock_irqsave(
1216 phba->host->host_lock,
1217 iflag);
1218 } else
1219 lpfc_sli_release_iocbq(phba,
1220 cmdiocbp);
1222 } else if (type == LPFC_UNKNOWN_IOCB) {
1223 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
1225 char adaptermsg[LPFC_MAX_ADPTMSG];
1227 memset(adaptermsg, 0,
1228 LPFC_MAX_ADPTMSG);
1229 memcpy(&adaptermsg[0], (uint8_t *) irsp,
1230 MAX_MSG_DATA);
1231 dev_warn(&((phba->pcidev)->dev),
1232 "lpfc%d: %s",
1233 phba->brd_no, adaptermsg);
1234 } else {
1235 /* Unknown IOCB command */
1236 lpfc_printf_log(phba,
1237 KERN_ERR,
1238 LOG_SLI,
1239 "%d:0321 Unknown IOCB command "
1240 "Data: x%x x%x x%x x%x\n",
1241 phba->brd_no,
1242 irsp->ulpCommand,
1243 irsp->ulpStatus,
1244 irsp->ulpIoTag,
1245 irsp->ulpContext);
1249 if (free_saveq) {
1250 if (!list_empty(&saveq->list)) {
1251 list_for_each_entry_safe(rspiocbp,
1252 next_iocb,
1253 &saveq->list,
1254 list) {
1255 lpfc_sli_release_iocbq(phba,
1256 rspiocbp);
1260 lpfc_sli_release_iocbq(phba, saveq);
1265 * If the port response put pointer has not been updated, sync
1266 * the pgp->rspPutInx in the MAILBOX_tand fetch the new port
1267 * response put pointer.
1269 if (pring->rspidx == portRspPut) {
1270 portRspPut = le32_to_cpu(pgp->rspPutInx);
1272 } /* while (pring->rspidx != portRspPut) */
1274 if ((rspiocbp != 0) && (mask & HA_R0RE_REQ)) {
1275 /* At least one response entry has been freed */
1276 pring->stats.iocb_rsp_full++;
1277 /* SET RxRE_RSP in Chip Att register */
1278 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
1279 writel(status, phba->CAregaddr);
1280 readl(phba->CAregaddr); /* flush */
1282 if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
1283 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
1284 pring->stats.iocb_cmd_empty++;
1286 /* Force update of the local copy of cmdGetInx */
1287 pring->local_getidx = le32_to_cpu(pgp->cmdGetInx);
1288 lpfc_sli_resume_iocb(phba, pring);
1290 if ((pring->lpfc_sli_cmd_available))
1291 (pring->lpfc_sli_cmd_available) (phba, pring);
1295 spin_unlock_irqrestore(phba->host->host_lock, iflag);
1296 return rc;
1300 lpfc_sli_abort_iocb_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
1302 struct lpfc_iocbq *iocb, *next_iocb;
1303 IOCB_t *icmd = NULL, *cmd = NULL;
1304 int errcnt;
1306 errcnt = 0;
1308 /* Error everything on txq and txcmplq
1309 * First do the txq.
1311 spin_lock_irq(phba->host->host_lock);
1312 list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
1313 list_del_init(&iocb->list);
1314 if (iocb->iocb_cmpl) {
1315 icmd = &iocb->iocb;
1316 icmd->ulpStatus = IOSTAT_LOCAL_REJECT;
1317 icmd->un.ulpWord[4] = IOERR_SLI_ABORTED;
1318 spin_unlock_irq(phba->host->host_lock);
1319 (iocb->iocb_cmpl) (phba, iocb, iocb);
1320 spin_lock_irq(phba->host->host_lock);
1321 } else
1322 lpfc_sli_release_iocbq(phba, iocb);
1324 pring->txq_cnt = 0;
1325 INIT_LIST_HEAD(&(pring->txq));
1327 /* Next issue ABTS for everything on the txcmplq */
1328 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list) {
1329 cmd = &iocb->iocb;
1332 * Imediate abort of IOCB, deque and call compl
1335 list_del_init(&iocb->list);
1336 pring->txcmplq_cnt--;
1338 if (iocb->iocb_cmpl) {
1339 cmd->ulpStatus = IOSTAT_LOCAL_REJECT;
1340 cmd->un.ulpWord[4] = IOERR_SLI_ABORTED;
1341 spin_unlock_irq(phba->host->host_lock);
1342 (iocb->iocb_cmpl) (phba, iocb, iocb);
1343 spin_lock_irq(phba->host->host_lock);
1344 } else
1345 lpfc_sli_release_iocbq(phba, iocb);
1348 INIT_LIST_HEAD(&pring->txcmplq);
1349 pring->txcmplq_cnt = 0;
1350 spin_unlock_irq(phba->host->host_lock);
1352 return errcnt;
1355 /******************************************************************************
1356 * lpfc_sli_send_reset
1358 * Note: After returning from this function, the HBA cannot be accessed for
1359 * 1 ms. Since we do not wish to delay in interrupt context, it is the
1360 * responsibility of the caller to perform the mdelay(1) and flush via readl().
1361 ******************************************************************************/
1362 static int
1363 lpfc_sli_send_reset(struct lpfc_hba * phba, uint16_t skip_post)
1365 MAILBOX_t *swpmb;
1366 volatile uint32_t word0;
1367 void __iomem *to_slim;
1368 unsigned long flags = 0;
1370 spin_lock_irqsave(phba->host->host_lock, flags);
1372 /* A board reset must use REAL SLIM. */
1373 phba->sli.sli_flag &= ~LPFC_SLI2_ACTIVE;
1375 word0 = 0;
1376 swpmb = (MAILBOX_t *) & word0;
1377 swpmb->mbxCommand = MBX_RESTART;
1378 swpmb->mbxHc = 1;
1380 to_slim = phba->MBslimaddr;
1381 writel(*(uint32_t *) swpmb, to_slim);
1382 readl(to_slim); /* flush */
1384 /* Only skip post after fc_ffinit is completed */
1385 if (skip_post) {
1386 word0 = 1; /* This is really setting up word1 */
1387 } else {
1388 word0 = 0; /* This is really setting up word1 */
1390 to_slim = phba->MBslimaddr + sizeof (uint32_t);
1391 writel(*(uint32_t *) swpmb, to_slim);
1392 readl(to_slim); /* flush */
1394 /* Turn off parity checking and serr during the physical reset */
1395 pci_read_config_word(phba->pcidev, PCI_COMMAND, &phba->pci_cfg_value);
1396 pci_write_config_word(phba->pcidev, PCI_COMMAND,
1397 (phba->pci_cfg_value &
1398 ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
1400 writel(HC_INITFF, phba->HCregaddr);
1402 phba->hba_state = LPFC_INIT_START;
1403 spin_unlock_irqrestore(phba->host->host_lock, flags);
1405 return 0;
1408 static int
1409 lpfc_sli_brdreset(struct lpfc_hba * phba, uint16_t skip_post)
1411 struct lpfc_sli_ring *pring;
1412 int i;
1413 struct lpfc_dmabuf *mp, *next_mp;
1414 unsigned long flags = 0;
1416 lpfc_sli_send_reset(phba, skip_post);
1417 mdelay(1);
1419 spin_lock_irqsave(phba->host->host_lock, flags);
1420 /* Risk the write on flush case ie no delay after the readl */
1421 readl(phba->HCregaddr); /* flush */
1422 /* Now toggle INITFF bit set by lpfc_sli_send_reset */
1423 writel(0, phba->HCregaddr);
1424 readl(phba->HCregaddr); /* flush */
1426 /* Restore PCI cmd register */
1427 pci_write_config_word(phba->pcidev, PCI_COMMAND, phba->pci_cfg_value);
1429 /* perform board reset */
1430 phba->fc_eventTag = 0;
1431 phba->fc_myDID = 0;
1432 phba->fc_prevDID = Mask_DID;
1434 /* Reset HBA */
1435 lpfc_printf_log(phba,
1436 KERN_INFO,
1437 LOG_SLI,
1438 "%d:0325 Reset HBA Data: x%x x%x x%x\n",
1439 phba->brd_no,
1440 phba->hba_state,
1441 phba->sli.sli_flag,
1442 skip_post);
1444 /* Initialize relevant SLI info */
1445 for (i = 0; i < phba->sli.num_rings; i++) {
1446 pring = &phba->sli.ring[i];
1447 pring->flag = 0;
1448 pring->rspidx = 0;
1449 pring->next_cmdidx = 0;
1450 pring->local_getidx = 0;
1451 pring->cmdidx = 0;
1452 pring->missbufcnt = 0;
1454 spin_unlock_irqrestore(phba->host->host_lock, flags);
1456 if (skip_post) {
1457 mdelay(100);
1458 } else {
1459 mdelay(2000);
1462 spin_lock_irqsave(phba->host->host_lock, flags);
1463 /* Cleanup preposted buffers on the ELS ring */
1464 pring = &phba->sli.ring[LPFC_ELS_RING];
1465 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
1466 list_del(&mp->list);
1467 pring->postbufq_cnt--;
1468 lpfc_mbuf_free(phba, mp->virt, mp->phys);
1469 kfree(mp);
1471 spin_unlock_irqrestore(phba->host->host_lock, flags);
1473 for (i = 0; i < phba->sli.num_rings; i++)
1474 lpfc_sli_abort_iocb_ring(phba, &phba->sli.ring[i]);
1476 return 0;
1479 static int
1480 lpfc_sli_chipset_init(struct lpfc_hba *phba)
1482 uint32_t status, i = 0;
1484 /* Read the HBA Host Status Register */
1485 status = readl(phba->HSregaddr);
1487 /* Check status register to see what current state is */
1488 i = 0;
1489 while ((status & (HS_FFRDY | HS_MBRDY)) != (HS_FFRDY | HS_MBRDY)) {
1491 /* Check every 100ms for 5 retries, then every 500ms for 5, then
1492 * every 2.5 sec for 5, then reset board and every 2.5 sec for
1493 * 4.
1495 if (i++ >= 20) {
1496 /* Adapter failed to init, timeout, status reg
1497 <status> */
1498 lpfc_printf_log(phba,
1499 KERN_ERR,
1500 LOG_INIT,
1501 "%d:0436 Adapter failed to init, "
1502 "timeout, status reg x%x\n",
1503 phba->brd_no,
1504 status);
1505 phba->hba_state = LPFC_HBA_ERROR;
1506 return -ETIMEDOUT;
1509 /* Check to see if any errors occurred during init */
1510 if (status & HS_FFERM) {
1511 /* ERROR: During chipset initialization */
1512 /* Adapter failed to init, chipset, status reg
1513 <status> */
1514 lpfc_printf_log(phba,
1515 KERN_ERR,
1516 LOG_INIT,
1517 "%d:0437 Adapter failed to init, "
1518 "chipset, status reg x%x\n",
1519 phba->brd_no,
1520 status);
1521 phba->hba_state = LPFC_HBA_ERROR;
1522 return -EIO;
1525 if (i <= 5) {
1526 msleep(10);
1527 } else if (i <= 10) {
1528 msleep(500);
1529 } else {
1530 msleep(2500);
1533 if (i == 15) {
1534 lpfc_sli_brdreset(phba, 0);
1536 /* Read the HBA Host Status Register */
1537 status = readl(phba->HSregaddr);
1540 /* Check to see if any errors occurred during init */
1541 if (status & HS_FFERM) {
1542 /* ERROR: During chipset initialization */
1543 /* Adapter failed to init, chipset, status reg <status> */
1544 lpfc_printf_log(phba,
1545 KERN_ERR,
1546 LOG_INIT,
1547 "%d:0438 Adapter failed to init, chipset, "
1548 "status reg x%x\n",
1549 phba->brd_no,
1550 status);
1551 phba->hba_state = LPFC_HBA_ERROR;
1552 return -EIO;
1555 /* Clear all interrupt enable conditions */
1556 writel(0, phba->HCregaddr);
1557 readl(phba->HCregaddr); /* flush */
1559 /* setup host attn register */
1560 writel(0xffffffff, phba->HAregaddr);
1561 readl(phba->HAregaddr); /* flush */
1562 return 0;
1566 lpfc_sli_hba_setup(struct lpfc_hba * phba)
1568 LPFC_MBOXQ_t *pmb;
1569 uint32_t resetcount = 0, rc = 0, done = 0;
1571 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
1572 if (!pmb) {
1573 phba->hba_state = LPFC_HBA_ERROR;
1574 return -ENOMEM;
1577 while (resetcount < 2 && !done) {
1578 phba->hba_state = 0;
1579 lpfc_sli_brdreset(phba, 0);
1580 msleep(2500);
1581 rc = lpfc_sli_chipset_init(phba);
1582 if (rc)
1583 break;
1585 resetcount++;
1587 /* Call pre CONFIG_PORT mailbox command initialization. A value of 0
1588 * means the call was successful. Any other nonzero value is a failure,
1589 * but if ERESTART is returned, the driver may reset the HBA and try
1590 * again.
1592 rc = lpfc_config_port_prep(phba);
1593 if (rc == -ERESTART) {
1594 phba->hba_state = 0;
1595 continue;
1596 } else if (rc) {
1597 break;
1600 phba->hba_state = LPFC_INIT_MBX_CMDS;
1601 lpfc_config_port(phba, pmb);
1602 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
1603 if (rc == MBX_SUCCESS)
1604 done = 1;
1605 else {
1606 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1607 "%d:0442 Adapter failed to init, mbxCmd x%x "
1608 "CONFIG_PORT, mbxStatus x%x Data: x%x\n",
1609 phba->brd_no, pmb->mb.mbxCommand,
1610 pmb->mb.mbxStatus, 0);
1611 phba->sli.sli_flag &= ~LPFC_SLI2_ACTIVE;
1614 if (!done)
1615 goto lpfc_sli_hba_setup_error;
1617 rc = lpfc_sli_ring_map(phba, pmb);
1619 if (rc)
1620 goto lpfc_sli_hba_setup_error;
1622 phba->sli.sli_flag |= LPFC_PROCESS_LA;
1624 rc = lpfc_config_port_post(phba);
1625 if (rc)
1626 goto lpfc_sli_hba_setup_error;
1628 goto lpfc_sli_hba_setup_exit;
1629 lpfc_sli_hba_setup_error:
1630 phba->hba_state = LPFC_HBA_ERROR;
1631 lpfc_sli_hba_setup_exit:
1632 mempool_free(pmb, phba->mbox_mem_pool);
1633 return rc;
1636 static void
1637 lpfc_mbox_abort(struct lpfc_hba * phba)
1639 LPFC_MBOXQ_t *pmbox;
1640 MAILBOX_t *mb;
1642 if (phba->sli.mbox_active) {
1643 del_timer_sync(&phba->sli.mbox_tmo);
1644 phba->work_hba_events &= ~WORKER_MBOX_TMO;
1645 pmbox = phba->sli.mbox_active;
1646 mb = &pmbox->mb;
1647 phba->sli.mbox_active = NULL;
1648 if (pmbox->mbox_cmpl) {
1649 mb->mbxStatus = MBX_NOT_FINISHED;
1650 (pmbox->mbox_cmpl) (phba, pmbox);
1652 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
1655 /* Abort all the non active mailbox commands. */
1656 spin_lock_irq(phba->host->host_lock);
1657 pmbox = lpfc_mbox_get(phba);
1658 while (pmbox) {
1659 mb = &pmbox->mb;
1660 if (pmbox->mbox_cmpl) {
1661 mb->mbxStatus = MBX_NOT_FINISHED;
1662 spin_unlock_irq(phba->host->host_lock);
1663 (pmbox->mbox_cmpl) (phba, pmbox);
1664 spin_lock_irq(phba->host->host_lock);
1666 pmbox = lpfc_mbox_get(phba);
1668 spin_unlock_irq(phba->host->host_lock);
1669 return;
1672 /*! lpfc_mbox_timeout
1674 * \pre
1675 * \post
1676 * \param hba Pointer to per struct lpfc_hba structure
1677 * \param l1 Pointer to the driver's mailbox queue.
1678 * \return
1679 * void
1681 * \b Description:
1683 * This routine handles mailbox timeout events at timer interrupt context.
1685 void
1686 lpfc_mbox_timeout(unsigned long ptr)
1688 struct lpfc_hba *phba;
1689 unsigned long iflag;
1691 phba = (struct lpfc_hba *)ptr;
1692 spin_lock_irqsave(phba->host->host_lock, iflag);
1693 if (!(phba->work_hba_events & WORKER_MBOX_TMO)) {
1694 phba->work_hba_events |= WORKER_MBOX_TMO;
1695 if (phba->work_wait)
1696 wake_up(phba->work_wait);
1698 spin_unlock_irqrestore(phba->host->host_lock, iflag);
1701 void
1702 lpfc_mbox_timeout_handler(struct lpfc_hba *phba)
1704 LPFC_MBOXQ_t *pmbox;
1705 MAILBOX_t *mb;
1707 spin_lock_irq(phba->host->host_lock);
1708 if (!(phba->work_hba_events & WORKER_MBOX_TMO)) {
1709 spin_unlock_irq(phba->host->host_lock);
1710 return;
1713 phba->work_hba_events &= ~WORKER_MBOX_TMO;
1715 pmbox = phba->sli.mbox_active;
1716 mb = &pmbox->mb;
1718 /* Mbox cmd <mbxCommand> timeout */
1719 lpfc_printf_log(phba,
1720 KERN_ERR,
1721 LOG_MBOX | LOG_SLI,
1722 "%d:0310 Mailbox command x%x timeout Data: x%x x%x x%p\n",
1723 phba->brd_no,
1724 mb->mbxCommand,
1725 phba->hba_state,
1726 phba->sli.sli_flag,
1727 phba->sli.mbox_active);
1729 phba->sli.mbox_active = NULL;
1730 if (pmbox->mbox_cmpl) {
1731 mb->mbxStatus = MBX_NOT_FINISHED;
1732 spin_unlock_irq(phba->host->host_lock);
1733 (pmbox->mbox_cmpl) (phba, pmbox);
1734 spin_lock_irq(phba->host->host_lock);
1736 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
1738 spin_unlock_irq(phba->host->host_lock);
1739 lpfc_mbox_abort(phba);
1740 return;
1744 lpfc_sli_issue_mbox(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmbox, uint32_t flag)
1746 MAILBOX_t *mb;
1747 struct lpfc_sli *psli;
1748 uint32_t status, evtctr;
1749 uint32_t ha_copy;
1750 int i;
1751 unsigned long drvr_flag = 0;
1752 volatile uint32_t word0, ldata;
1753 void __iomem *to_slim;
1755 psli = &phba->sli;
1757 spin_lock_irqsave(phba->host->host_lock, drvr_flag);
1760 mb = &pmbox->mb;
1761 status = MBX_SUCCESS;
1763 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
1764 /* Polling for a mbox command when another one is already active
1765 * is not allowed in SLI. Also, the driver must have established
1766 * SLI2 mode to queue and process multiple mbox commands.
1769 if (flag & MBX_POLL) {
1770 spin_unlock_irqrestore(phba->host->host_lock,
1771 drvr_flag);
1773 /* Mbox command <mbxCommand> cannot issue */
1774 LOG_MBOX_CANNOT_ISSUE_DATA( phba, mb, psli, flag)
1775 return (MBX_NOT_FINISHED);
1778 if (!(psli->sli_flag & LPFC_SLI2_ACTIVE)) {
1779 spin_unlock_irqrestore(phba->host->host_lock,
1780 drvr_flag);
1781 /* Mbox command <mbxCommand> cannot issue */
1782 LOG_MBOX_CANNOT_ISSUE_DATA( phba, mb, psli, flag)
1783 return (MBX_NOT_FINISHED);
1786 /* Handle STOP IOCB processing flag. This is only meaningful
1787 * if we are not polling for mbox completion.
1789 if (flag & MBX_STOP_IOCB) {
1790 flag &= ~MBX_STOP_IOCB;
1791 /* Now flag each ring */
1792 for (i = 0; i < psli->num_rings; i++) {
1793 /* If the ring is active, flag it */
1794 if (psli->ring[i].cmdringaddr) {
1795 psli->ring[i].flag |=
1796 LPFC_STOP_IOCB_MBX;
1801 /* Another mailbox command is still being processed, queue this
1802 * command to be processed later.
1804 lpfc_mbox_put(phba, pmbox);
1806 /* Mbox cmd issue - BUSY */
1807 lpfc_printf_log(phba,
1808 KERN_INFO,
1809 LOG_MBOX | LOG_SLI,
1810 "%d:0308 Mbox cmd issue - BUSY Data: x%x x%x x%x x%x\n",
1811 phba->brd_no,
1812 mb->mbxCommand,
1813 phba->hba_state,
1814 psli->sli_flag,
1815 flag);
1817 psli->slistat.mbox_busy++;
1818 spin_unlock_irqrestore(phba->host->host_lock,
1819 drvr_flag);
1821 return (MBX_BUSY);
1824 /* Handle STOP IOCB processing flag. This is only meaningful
1825 * if we are not polling for mbox completion.
1827 if (flag & MBX_STOP_IOCB) {
1828 flag &= ~MBX_STOP_IOCB;
1829 if (flag == MBX_NOWAIT) {
1830 /* Now flag each ring */
1831 for (i = 0; i < psli->num_rings; i++) {
1832 /* If the ring is active, flag it */
1833 if (psli->ring[i].cmdringaddr) {
1834 psli->ring[i].flag |=
1835 LPFC_STOP_IOCB_MBX;
1841 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
1843 /* If we are not polling, we MUST be in SLI2 mode */
1844 if (flag != MBX_POLL) {
1845 if (!(psli->sli_flag & LPFC_SLI2_ACTIVE)) {
1846 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
1847 spin_unlock_irqrestore(phba->host->host_lock,
1848 drvr_flag);
1849 /* Mbox command <mbxCommand> cannot issue */
1850 LOG_MBOX_CANNOT_ISSUE_DATA( phba, mb, psli, flag);
1851 return (MBX_NOT_FINISHED);
1853 /* timeout active mbox command */
1854 mod_timer(&psli->mbox_tmo, jiffies + HZ * LPFC_MBOX_TMO);
1857 /* Mailbox cmd <cmd> issue */
1858 lpfc_printf_log(phba,
1859 KERN_INFO,
1860 LOG_MBOX | LOG_SLI,
1861 "%d:0309 Mailbox cmd x%x issue Data: x%x x%x x%x\n",
1862 phba->brd_no,
1863 mb->mbxCommand,
1864 phba->hba_state,
1865 psli->sli_flag,
1866 flag);
1868 psli->slistat.mbox_cmd++;
1869 evtctr = psli->slistat.mbox_event;
1871 /* next set own bit for the adapter and copy over command word */
1872 mb->mbxOwner = OWN_CHIP;
1874 if (psli->sli_flag & LPFC_SLI2_ACTIVE) {
1875 /* First copy command data to host SLIM area */
1876 lpfc_sli_pcimem_bcopy(mb, &phba->slim2p->mbx, MAILBOX_CMD_SIZE);
1877 } else {
1878 if (mb->mbxCommand == MBX_CONFIG_PORT) {
1879 /* copy command data into host mbox for cmpl */
1880 lpfc_sli_pcimem_bcopy(mb, &phba->slim2p->mbx,
1881 MAILBOX_CMD_SIZE);
1884 /* First copy mbox command data to HBA SLIM, skip past first
1885 word */
1886 to_slim = phba->MBslimaddr + sizeof (uint32_t);
1887 lpfc_memcpy_to_slim(to_slim, &mb->un.varWords[0],
1888 MAILBOX_CMD_SIZE - sizeof (uint32_t));
1890 /* Next copy over first word, with mbxOwner set */
1891 ldata = *((volatile uint32_t *)mb);
1892 to_slim = phba->MBslimaddr;
1893 writel(ldata, to_slim);
1894 readl(to_slim); /* flush */
1896 if (mb->mbxCommand == MBX_CONFIG_PORT) {
1897 /* switch over to host mailbox */
1898 psli->sli_flag |= LPFC_SLI2_ACTIVE;
1902 wmb();
1903 /* interrupt board to doit right away */
1904 writel(CA_MBATT, phba->CAregaddr);
1905 readl(phba->CAregaddr); /* flush */
1907 switch (flag) {
1908 case MBX_NOWAIT:
1909 /* Don't wait for it to finish, just return */
1910 psli->mbox_active = pmbox;
1911 break;
1913 case MBX_POLL:
1914 i = 0;
1915 psli->mbox_active = NULL;
1916 if (psli->sli_flag & LPFC_SLI2_ACTIVE) {
1917 /* First read mbox status word */
1918 word0 = *((volatile uint32_t *)&phba->slim2p->mbx);
1919 word0 = le32_to_cpu(word0);
1920 } else {
1921 /* First read mbox status word */
1922 word0 = readl(phba->MBslimaddr);
1925 /* Read the HBA Host Attention Register */
1926 ha_copy = readl(phba->HAregaddr);
1928 /* Wait for command to complete */
1929 while (((word0 & OWN_CHIP) == OWN_CHIP)
1930 || !(ha_copy & HA_MBATT)) {
1931 if (i++ >= 100) {
1932 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
1933 spin_unlock_irqrestore(phba->host->host_lock,
1934 drvr_flag);
1935 return (MBX_NOT_FINISHED);
1938 /* Check if we took a mbox interrupt while we were
1939 polling */
1940 if (((word0 & OWN_CHIP) != OWN_CHIP)
1941 && (evtctr != psli->slistat.mbox_event))
1942 break;
1944 spin_unlock_irqrestore(phba->host->host_lock,
1945 drvr_flag);
1947 /* Can be in interrupt context, do not sleep */
1948 /* (or might be called with interrupts disabled) */
1949 mdelay(i);
1951 spin_lock_irqsave(phba->host->host_lock, drvr_flag);
1953 if (psli->sli_flag & LPFC_SLI2_ACTIVE) {
1954 /* First copy command data */
1955 word0 = *((volatile uint32_t *)
1956 &phba->slim2p->mbx);
1957 word0 = le32_to_cpu(word0);
1958 if (mb->mbxCommand == MBX_CONFIG_PORT) {
1959 MAILBOX_t *slimmb;
1960 volatile uint32_t slimword0;
1961 /* Check real SLIM for any errors */
1962 slimword0 = readl(phba->MBslimaddr);
1963 slimmb = (MAILBOX_t *) & slimword0;
1964 if (((slimword0 & OWN_CHIP) != OWN_CHIP)
1965 && slimmb->mbxStatus) {
1966 psli->sli_flag &=
1967 ~LPFC_SLI2_ACTIVE;
1968 word0 = slimword0;
1971 } else {
1972 /* First copy command data */
1973 word0 = readl(phba->MBslimaddr);
1975 /* Read the HBA Host Attention Register */
1976 ha_copy = readl(phba->HAregaddr);
1979 if (psli->sli_flag & LPFC_SLI2_ACTIVE) {
1980 /* copy results back to user */
1981 lpfc_sli_pcimem_bcopy(&phba->slim2p->mbx, mb,
1982 MAILBOX_CMD_SIZE);
1983 } else {
1984 /* First copy command data */
1985 lpfc_memcpy_from_slim(mb, phba->MBslimaddr,
1986 MAILBOX_CMD_SIZE);
1987 if ((mb->mbxCommand == MBX_DUMP_MEMORY) &&
1988 pmbox->context2) {
1989 lpfc_memcpy_from_slim((void *)pmbox->context2,
1990 phba->MBslimaddr + DMP_RSP_OFFSET,
1991 mb->un.varDmp.word_cnt);
1995 writel(HA_MBATT, phba->HAregaddr);
1996 readl(phba->HAregaddr); /* flush */
1998 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
1999 status = mb->mbxStatus;
2002 spin_unlock_irqrestore(phba->host->host_lock, drvr_flag);
2003 return (status);
2006 static int
2007 lpfc_sli_ringtx_put(struct lpfc_hba * phba, struct lpfc_sli_ring * pring,
2008 struct lpfc_iocbq * piocb)
2010 /* Insert the caller's iocb in the txq tail for later processing. */
2011 list_add_tail(&piocb->list, &pring->txq);
2012 pring->txq_cnt++;
2013 return (0);
2016 static struct lpfc_iocbq *
2017 lpfc_sli_next_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2018 struct lpfc_iocbq ** piocb)
2020 struct lpfc_iocbq * nextiocb;
2022 nextiocb = lpfc_sli_ringtx_get(phba, pring);
2023 if (!nextiocb) {
2024 nextiocb = *piocb;
2025 *piocb = NULL;
2028 return nextiocb;
2032 lpfc_sli_issue_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2033 struct lpfc_iocbq *piocb, uint32_t flag)
2035 struct lpfc_iocbq *nextiocb;
2036 IOCB_t *iocb;
2039 * We should never get an IOCB if we are in a < LINK_DOWN state
2041 if (unlikely(phba->hba_state < LPFC_LINK_DOWN))
2042 return IOCB_ERROR;
2045 * Check to see if we are blocking IOCB processing because of a
2046 * outstanding mbox command.
2048 if (unlikely(pring->flag & LPFC_STOP_IOCB_MBX))
2049 goto iocb_busy;
2051 if (unlikely(phba->hba_state == LPFC_LINK_DOWN)) {
2053 * Only CREATE_XRI, CLOSE_XRI, ABORT_XRI, and QUE_RING_BUF
2054 * can be issued if the link is not up.
2056 switch (piocb->iocb.ulpCommand) {
2057 case CMD_QUE_RING_BUF_CN:
2058 case CMD_QUE_RING_BUF64_CN:
2060 * For IOCBs, like QUE_RING_BUF, that have no rsp ring
2061 * completion, iocb_cmpl MUST be 0.
2063 if (piocb->iocb_cmpl)
2064 piocb->iocb_cmpl = NULL;
2065 /*FALLTHROUGH*/
2066 case CMD_CREATE_XRI_CR:
2067 break;
2068 default:
2069 goto iocb_busy;
2073 * For FCP commands, we must be in a state where we can process link
2074 * attention events.
2076 } else if (unlikely(pring->ringno == phba->sli.fcp_ring &&
2077 !(phba->sli.sli_flag & LPFC_PROCESS_LA)))
2078 goto iocb_busy;
2081 * Check to see if this is a high priority command.
2082 * If so bypass tx queue processing.
2084 if (unlikely((flag & SLI_IOCB_HIGH_PRIORITY) &&
2085 (iocb = lpfc_sli_next_iocb_slot(phba, pring)))) {
2086 lpfc_sli_submit_iocb(phba, pring, iocb, piocb);
2087 piocb = NULL;
2090 while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
2091 (nextiocb = lpfc_sli_next_iocb(phba, pring, &piocb)))
2092 lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
2094 if (iocb)
2095 lpfc_sli_update_ring(phba, pring);
2096 else
2097 lpfc_sli_update_full_ring(phba, pring);
2099 if (!piocb)
2100 return IOCB_SUCCESS;
2102 goto out_busy;
2104 iocb_busy:
2105 pring->stats.iocb_cmd_delay++;
2107 out_busy:
2109 if (!(flag & SLI_IOCB_RET_IOCB)) {
2110 lpfc_sli_ringtx_put(phba, pring, piocb);
2111 return IOCB_SUCCESS;
2114 return IOCB_BUSY;
2118 lpfc_sli_setup(struct lpfc_hba *phba)
2120 int i, totiocb = 0;
2121 struct lpfc_sli *psli = &phba->sli;
2122 struct lpfc_sli_ring *pring;
2124 psli->num_rings = MAX_CONFIGURED_RINGS;
2125 psli->sli_flag = 0;
2126 psli->fcp_ring = LPFC_FCP_RING;
2127 psli->next_ring = LPFC_FCP_NEXT_RING;
2128 psli->ip_ring = LPFC_IP_RING;
2130 psli->iocbq_lookup = NULL;
2131 psli->iocbq_lookup_len = 0;
2132 psli->last_iotag = 0;
2134 for (i = 0; i < psli->num_rings; i++) {
2135 pring = &psli->ring[i];
2136 switch (i) {
2137 case LPFC_FCP_RING: /* ring 0 - FCP */
2138 /* numCiocb and numRiocb are used in config_port */
2139 pring->numCiocb = SLI2_IOCB_CMD_R0_ENTRIES;
2140 pring->numRiocb = SLI2_IOCB_RSP_R0_ENTRIES;
2141 pring->numCiocb += SLI2_IOCB_CMD_R1XTRA_ENTRIES;
2142 pring->numRiocb += SLI2_IOCB_RSP_R1XTRA_ENTRIES;
2143 pring->numCiocb += SLI2_IOCB_CMD_R3XTRA_ENTRIES;
2144 pring->numRiocb += SLI2_IOCB_RSP_R3XTRA_ENTRIES;
2145 pring->iotag_ctr = 0;
2146 pring->iotag_max =
2147 (phba->cfg_hba_queue_depth * 2);
2148 pring->fast_iotag = pring->iotag_max;
2149 pring->num_mask = 0;
2150 break;
2151 case LPFC_IP_RING: /* ring 1 - IP */
2152 /* numCiocb and numRiocb are used in config_port */
2153 pring->numCiocb = SLI2_IOCB_CMD_R1_ENTRIES;
2154 pring->numRiocb = SLI2_IOCB_RSP_R1_ENTRIES;
2155 pring->num_mask = 0;
2156 break;
2157 case LPFC_ELS_RING: /* ring 2 - ELS / CT */
2158 /* numCiocb and numRiocb are used in config_port */
2159 pring->numCiocb = SLI2_IOCB_CMD_R2_ENTRIES;
2160 pring->numRiocb = SLI2_IOCB_RSP_R2_ENTRIES;
2161 pring->fast_iotag = 0;
2162 pring->iotag_ctr = 0;
2163 pring->iotag_max = 4096;
2164 pring->num_mask = 4;
2165 pring->prt[0].profile = 0; /* Mask 0 */
2166 pring->prt[0].rctl = FC_ELS_REQ;
2167 pring->prt[0].type = FC_ELS_DATA;
2168 pring->prt[0].lpfc_sli_rcv_unsol_event =
2169 lpfc_els_unsol_event;
2170 pring->prt[1].profile = 0; /* Mask 1 */
2171 pring->prt[1].rctl = FC_ELS_RSP;
2172 pring->prt[1].type = FC_ELS_DATA;
2173 pring->prt[1].lpfc_sli_rcv_unsol_event =
2174 lpfc_els_unsol_event;
2175 pring->prt[2].profile = 0; /* Mask 2 */
2176 /* NameServer Inquiry */
2177 pring->prt[2].rctl = FC_UNSOL_CTL;
2178 /* NameServer */
2179 pring->prt[2].type = FC_COMMON_TRANSPORT_ULP;
2180 pring->prt[2].lpfc_sli_rcv_unsol_event =
2181 lpfc_ct_unsol_event;
2182 pring->prt[3].profile = 0; /* Mask 3 */
2183 /* NameServer response */
2184 pring->prt[3].rctl = FC_SOL_CTL;
2185 /* NameServer */
2186 pring->prt[3].type = FC_COMMON_TRANSPORT_ULP;
2187 pring->prt[3].lpfc_sli_rcv_unsol_event =
2188 lpfc_ct_unsol_event;
2189 break;
2191 totiocb += (pring->numCiocb + pring->numRiocb);
2193 if (totiocb > MAX_SLI2_IOCB) {
2194 /* Too many cmd / rsp ring entries in SLI2 SLIM */
2195 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2196 "%d:0462 Too many cmd / rsp ring entries in "
2197 "SLI2 SLIM Data: x%x x%x\n",
2198 phba->brd_no, totiocb, MAX_SLI2_IOCB);
2201 return 0;
2205 lpfc_sli_queue_setup(struct lpfc_hba * phba)
2207 struct lpfc_sli *psli;
2208 struct lpfc_sli_ring *pring;
2209 int i;
2211 psli = &phba->sli;
2212 spin_lock_irq(phba->host->host_lock);
2213 INIT_LIST_HEAD(&psli->mboxq);
2214 /* Initialize list headers for txq and txcmplq as double linked lists */
2215 for (i = 0; i < psli->num_rings; i++) {
2216 pring = &psli->ring[i];
2217 pring->ringno = i;
2218 pring->next_cmdidx = 0;
2219 pring->local_getidx = 0;
2220 pring->cmdidx = 0;
2221 INIT_LIST_HEAD(&pring->txq);
2222 INIT_LIST_HEAD(&pring->txcmplq);
2223 INIT_LIST_HEAD(&pring->iocb_continueq);
2224 INIT_LIST_HEAD(&pring->postbufq);
2226 spin_unlock_irq(phba->host->host_lock);
2227 return (1);
2231 lpfc_sli_hba_down(struct lpfc_hba * phba)
2233 struct lpfc_sli *psli;
2234 struct lpfc_sli_ring *pring;
2235 LPFC_MBOXQ_t *pmb;
2236 struct lpfc_iocbq *iocb, *next_iocb;
2237 IOCB_t *icmd = NULL;
2238 int i;
2239 unsigned long flags = 0;
2241 psli = &phba->sli;
2242 lpfc_hba_down_prep(phba);
2244 spin_lock_irqsave(phba->host->host_lock, flags);
2246 for (i = 0; i < psli->num_rings; i++) {
2247 pring = &psli->ring[i];
2248 pring->flag |= LPFC_DEFERRED_RING_EVENT;
2251 * Error everything on the txq since these iocbs have not been
2252 * given to the FW yet.
2254 pring->txq_cnt = 0;
2256 list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
2257 list_del_init(&iocb->list);
2258 if (iocb->iocb_cmpl) {
2259 icmd = &iocb->iocb;
2260 icmd->ulpStatus = IOSTAT_LOCAL_REJECT;
2261 icmd->un.ulpWord[4] = IOERR_SLI_DOWN;
2262 spin_unlock_irqrestore(phba->host->host_lock,
2263 flags);
2264 (iocb->iocb_cmpl) (phba, iocb, iocb);
2265 spin_lock_irqsave(phba->host->host_lock, flags);
2266 } else
2267 lpfc_sli_release_iocbq(phba, iocb);
2270 INIT_LIST_HEAD(&(pring->txq));
2272 if (pring->fast_lookup) {
2273 kfree(pring->fast_lookup);
2274 pring->fast_lookup = NULL;
2279 spin_unlock_irqrestore(phba->host->host_lock, flags);
2281 /* Return any active mbox cmds */
2282 del_timer_sync(&psli->mbox_tmo);
2283 spin_lock_irqsave(phba->host->host_lock, flags);
2284 phba->work_hba_events &= ~WORKER_MBOX_TMO;
2285 if (psli->mbox_active) {
2286 pmb = psli->mbox_active;
2287 pmb->mb.mbxStatus = MBX_NOT_FINISHED;
2288 if (pmb->mbox_cmpl) {
2289 spin_unlock_irqrestore(phba->host->host_lock, flags);
2290 pmb->mbox_cmpl(phba,pmb);
2291 spin_lock_irqsave(phba->host->host_lock, flags);
2294 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
2295 psli->mbox_active = NULL;
2297 /* Return any pending mbox cmds */
2298 while ((pmb = lpfc_mbox_get(phba)) != NULL) {
2299 pmb->mb.mbxStatus = MBX_NOT_FINISHED;
2300 if (pmb->mbox_cmpl) {
2301 spin_unlock_irqrestore(phba->host->host_lock, flags);
2302 pmb->mbox_cmpl(phba,pmb);
2303 spin_lock_irqsave(phba->host->host_lock, flags);
2307 INIT_LIST_HEAD(&psli->mboxq);
2309 spin_unlock_irqrestore(phba->host->host_lock, flags);
2312 * Provided the hba is not in an error state, reset it. It is not
2313 * capable of IO anymore.
2315 if (phba->hba_state != LPFC_HBA_ERROR) {
2316 phba->hba_state = LPFC_INIT_START;
2317 lpfc_sli_brdreset(phba, 1);
2320 return 1;
2323 void
2324 lpfc_sli_pcimem_bcopy(void *srcp, void *destp, uint32_t cnt)
2326 uint32_t *src = srcp;
2327 uint32_t *dest = destp;
2328 uint32_t ldata;
2329 int i;
2331 for (i = 0; i < (int)cnt; i += sizeof (uint32_t)) {
2332 ldata = *src;
2333 ldata = le32_to_cpu(ldata);
2334 *dest = ldata;
2335 src++;
2336 dest++;
2341 lpfc_sli_ringpostbuf_put(struct lpfc_hba * phba, struct lpfc_sli_ring * pring,
2342 struct lpfc_dmabuf * mp)
2344 /* Stick struct lpfc_dmabuf at end of postbufq so driver can look it up
2345 later */
2346 list_add_tail(&mp->list, &pring->postbufq);
2348 pring->postbufq_cnt++;
2349 return 0;
2353 struct lpfc_dmabuf *
2354 lpfc_sli_ringpostbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2355 dma_addr_t phys)
2357 struct lpfc_dmabuf *mp, *next_mp;
2358 struct list_head *slp = &pring->postbufq;
2360 /* Search postbufq, from the begining, looking for a match on phys */
2361 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
2362 if (mp->phys == phys) {
2363 list_del_init(&mp->list);
2364 pring->postbufq_cnt--;
2365 return mp;
2369 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2370 "%d:0410 Cannot find virtual addr for mapped buf on "
2371 "ring %d Data x%llx x%p x%p x%x\n",
2372 phba->brd_no, pring->ringno, (unsigned long long)phys,
2373 slp->next, slp->prev, pring->postbufq_cnt);
2374 return NULL;
2377 static void
2378 lpfc_sli_abort_elsreq_cmpl(struct lpfc_hba * phba, struct lpfc_iocbq * cmdiocb,
2379 struct lpfc_iocbq * rspiocb)
2381 struct lpfc_dmabuf *buf_ptr, *buf_ptr1;
2382 /* Free the resources associated with the ELS_REQUEST64 IOCB the driver
2383 * just aborted.
2384 * In this case, context2 = cmd, context2->next = rsp, context3 = bpl
2386 if (cmdiocb->context2) {
2387 buf_ptr1 = (struct lpfc_dmabuf *) cmdiocb->context2;
2389 /* Free the response IOCB before completing the abort
2390 command. */
2391 buf_ptr = NULL;
2392 list_remove_head((&buf_ptr1->list), buf_ptr,
2393 struct lpfc_dmabuf, list);
2394 if (buf_ptr) {
2395 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
2396 kfree(buf_ptr);
2398 lpfc_mbuf_free(phba, buf_ptr1->virt, buf_ptr1->phys);
2399 kfree(buf_ptr1);
2402 if (cmdiocb->context3) {
2403 buf_ptr = (struct lpfc_dmabuf *) cmdiocb->context3;
2404 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
2405 kfree(buf_ptr);
2408 lpfc_sli_release_iocbq(phba, cmdiocb);
2409 return;
2413 lpfc_sli_issue_abort_iotag32(struct lpfc_hba * phba,
2414 struct lpfc_sli_ring * pring,
2415 struct lpfc_iocbq * cmdiocb)
2417 struct lpfc_iocbq *abtsiocbp;
2418 IOCB_t *icmd = NULL;
2419 IOCB_t *iabt = NULL;
2421 /* issue ABTS for this IOCB based on iotag */
2422 abtsiocbp = lpfc_sli_get_iocbq(phba);
2423 if (abtsiocbp == NULL)
2424 return 0;
2426 iabt = &abtsiocbp->iocb;
2427 icmd = &cmdiocb->iocb;
2428 switch (icmd->ulpCommand) {
2429 case CMD_ELS_REQUEST64_CR:
2430 /* Even though we abort the ELS command, the firmware may access
2431 * the BPL or other resources before it processes our
2432 * ABORT_MXRI64. Thus we must delay reusing the cmdiocb
2433 * resources till the actual abort request completes.
2435 abtsiocbp->context1 = (void *)((unsigned long)icmd->ulpCommand);
2436 abtsiocbp->context2 = cmdiocb->context2;
2437 abtsiocbp->context3 = cmdiocb->context3;
2438 cmdiocb->context2 = NULL;
2439 cmdiocb->context3 = NULL;
2440 abtsiocbp->iocb_cmpl = lpfc_sli_abort_elsreq_cmpl;
2441 break;
2442 default:
2443 lpfc_sli_release_iocbq(phba, abtsiocbp);
2444 return 0;
2447 iabt->un.amxri.abortType = ABORT_TYPE_ABTS;
2448 iabt->un.amxri.iotag32 = icmd->un.elsreq64.bdl.ulpIoTag32;
2450 iabt->ulpLe = 1;
2451 iabt->ulpClass = CLASS3;
2452 iabt->ulpCommand = CMD_ABORT_MXRI64_CN;
2454 if (lpfc_sli_issue_iocb(phba, pring, abtsiocbp, 0) == IOCB_ERROR) {
2455 lpfc_sli_release_iocbq(phba, abtsiocbp);
2456 return 0;
2459 return 1;
2462 static int
2463 lpfc_sli_validate_fcp_iocb(struct lpfc_iocbq *iocbq, uint16_t tgt_id,
2464 uint64_t lun_id, uint32_t ctx,
2465 lpfc_ctx_cmd ctx_cmd)
2467 struct lpfc_scsi_buf *lpfc_cmd;
2468 struct scsi_cmnd *cmnd;
2469 int rc = 1;
2471 if (!(iocbq->iocb_flag & LPFC_IO_FCP))
2472 return rc;
2474 lpfc_cmd = container_of(iocbq, struct lpfc_scsi_buf, cur_iocbq);
2475 cmnd = lpfc_cmd->pCmd;
2477 if (cmnd == NULL)
2478 return rc;
2480 switch (ctx_cmd) {
2481 case LPFC_CTX_LUN:
2482 if ((cmnd->device->id == tgt_id) &&
2483 (cmnd->device->lun == lun_id))
2484 rc = 0;
2485 break;
2486 case LPFC_CTX_TGT:
2487 if (cmnd->device->id == tgt_id)
2488 rc = 0;
2489 break;
2490 case LPFC_CTX_CTX:
2491 if (iocbq->iocb.ulpContext == ctx)
2492 rc = 0;
2493 break;
2494 case LPFC_CTX_HOST:
2495 rc = 0;
2496 break;
2497 default:
2498 printk(KERN_ERR "%s: Unknown context cmd type, value %d\n",
2499 __FUNCTION__, ctx_cmd);
2500 break;
2503 return rc;
2507 lpfc_sli_sum_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2508 uint16_t tgt_id, uint64_t lun_id, lpfc_ctx_cmd ctx_cmd)
2510 struct lpfc_iocbq *iocbq;
2511 int sum, i;
2513 for (i = 1, sum = 0; i <= phba->sli.last_iotag; i++) {
2514 iocbq = phba->sli.iocbq_lookup[i];
2516 if (lpfc_sli_validate_fcp_iocb (iocbq, tgt_id, lun_id,
2517 0, ctx_cmd) == 0)
2518 sum++;
2521 return sum;
2524 void
2525 lpfc_sli_abort_fcp_cmpl(struct lpfc_hba * phba, struct lpfc_iocbq * cmdiocb,
2526 struct lpfc_iocbq * rspiocb)
2528 spin_lock_irq(phba->host->host_lock);
2529 lpfc_sli_release_iocbq(phba, cmdiocb);
2530 spin_unlock_irq(phba->host->host_lock);
2531 return;
2535 lpfc_sli_abort_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2536 uint16_t tgt_id, uint64_t lun_id, uint32_t ctx,
2537 lpfc_ctx_cmd abort_cmd)
2539 struct lpfc_iocbq *iocbq;
2540 struct lpfc_iocbq *abtsiocb;
2541 IOCB_t *cmd = NULL;
2542 int errcnt = 0, ret_val = 0;
2543 int i;
2545 for (i = 1; i <= phba->sli.last_iotag; i++) {
2546 iocbq = phba->sli.iocbq_lookup[i];
2548 if (lpfc_sli_validate_fcp_iocb (iocbq, tgt_id, lun_id,
2549 0, abort_cmd) != 0)
2550 continue;
2552 /* issue ABTS for this IOCB based on iotag */
2553 abtsiocb = lpfc_sli_get_iocbq(phba);
2554 if (abtsiocb == NULL) {
2555 errcnt++;
2556 continue;
2559 cmd = &iocbq->iocb;
2560 abtsiocb->iocb.un.acxri.abortType = ABORT_TYPE_ABTS;
2561 abtsiocb->iocb.un.acxri.abortContextTag = cmd->ulpContext;
2562 abtsiocb->iocb.un.acxri.abortIoTag = cmd->ulpIoTag;
2563 abtsiocb->iocb.ulpLe = 1;
2564 abtsiocb->iocb.ulpClass = cmd->ulpClass;
2566 if (phba->hba_state >= LPFC_LINK_UP)
2567 abtsiocb->iocb.ulpCommand = CMD_ABORT_XRI_CN;
2568 else
2569 abtsiocb->iocb.ulpCommand = CMD_CLOSE_XRI_CN;
2571 /* Setup callback routine and issue the command. */
2572 abtsiocb->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
2573 ret_val = lpfc_sli_issue_iocb(phba, pring, abtsiocb, 0);
2574 if (ret_val == IOCB_ERROR) {
2575 lpfc_sli_release_iocbq(phba, abtsiocb);
2576 errcnt++;
2577 continue;
2581 return errcnt;
2584 static void
2585 lpfc_sli_wake_iocb_wait(struct lpfc_hba *phba,
2586 struct lpfc_iocbq *cmdiocbq,
2587 struct lpfc_iocbq *rspiocbq)
2589 wait_queue_head_t *pdone_q;
2590 unsigned long iflags;
2592 spin_lock_irqsave(phba->host->host_lock, iflags);
2593 cmdiocbq->iocb_flag |= LPFC_IO_WAKE;
2594 if (cmdiocbq->context2 && rspiocbq)
2595 memcpy(&((struct lpfc_iocbq *)cmdiocbq->context2)->iocb,
2596 &rspiocbq->iocb, sizeof(IOCB_t));
2598 pdone_q = cmdiocbq->context_un.wait_queue;
2599 spin_unlock_irqrestore(phba->host->host_lock, iflags);
2600 if (pdone_q)
2601 wake_up(pdone_q);
2602 return;
2606 * Issue the caller's iocb and wait for its completion, but no longer than the
2607 * caller's timeout. Note that iocb_flags is cleared before the
2608 * lpfc_sli_issue_call since the wake routine sets a unique value and by
2609 * definition this is a wait function.
2612 lpfc_sli_issue_iocb_wait(struct lpfc_hba * phba,
2613 struct lpfc_sli_ring * pring,
2614 struct lpfc_iocbq * piocb,
2615 struct lpfc_iocbq * prspiocbq,
2616 uint32_t timeout)
2618 DECLARE_WAIT_QUEUE_HEAD(done_q);
2619 long timeleft, timeout_req = 0;
2620 int retval = IOCB_SUCCESS;
2623 * If the caller has provided a response iocbq buffer, then context2
2624 * is NULL or its an error.
2626 if (prspiocbq) {
2627 if (piocb->context2)
2628 return IOCB_ERROR;
2629 piocb->context2 = prspiocbq;
2632 piocb->iocb_cmpl = lpfc_sli_wake_iocb_wait;
2633 piocb->context_un.wait_queue = &done_q;
2634 piocb->iocb_flag &= ~LPFC_IO_WAKE;
2636 retval = lpfc_sli_issue_iocb(phba, pring, piocb, 0);
2637 if (retval == IOCB_SUCCESS) {
2638 timeout_req = timeout * HZ;
2639 spin_unlock_irq(phba->host->host_lock);
2640 timeleft = wait_event_timeout(done_q,
2641 piocb->iocb_flag & LPFC_IO_WAKE,
2642 timeout_req);
2643 spin_lock_irq(phba->host->host_lock);
2645 if (timeleft == 0) {
2646 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2647 "%d:0329 IOCB wait timeout error - no "
2648 "wake response Data x%x\n",
2649 phba->brd_no, timeout);
2650 retval = IOCB_TIMEDOUT;
2651 } else if (!(piocb->iocb_flag & LPFC_IO_WAKE)) {
2652 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2653 "%d:0330 IOCB wake NOT set, "
2654 "Data x%x x%lx\n", phba->brd_no,
2655 timeout, (timeleft / jiffies));
2656 retval = IOCB_TIMEDOUT;
2657 } else {
2658 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
2659 "%d:0331 IOCB wake signaled\n",
2660 phba->brd_no);
2662 } else {
2663 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
2664 "%d:0332 IOCB wait issue failed, Data x%x\n",
2665 phba->brd_no, retval);
2666 retval = IOCB_ERROR;
2669 if (prspiocbq)
2670 piocb->context2 = NULL;
2672 piocb->context_un.wait_queue = NULL;
2673 piocb->iocb_cmpl = NULL;
2674 return retval;
2678 lpfc_sli_issue_mbox_wait(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmboxq,
2679 uint32_t timeout)
2681 DECLARE_WAIT_QUEUE_HEAD(done_q);
2682 DECLARE_WAITQUEUE(wq_entry, current);
2683 uint32_t timeleft = 0;
2684 int retval;
2686 /* The caller must leave context1 empty. */
2687 if (pmboxq->context1 != 0) {
2688 return (MBX_NOT_FINISHED);
2691 /* setup wake call as IOCB callback */
2692 pmboxq->mbox_cmpl = lpfc_sli_wake_mbox_wait;
2693 /* setup context field to pass wait_queue pointer to wake function */
2694 pmboxq->context1 = &done_q;
2696 /* start to sleep before we wait, to avoid races */
2697 set_current_state(TASK_INTERRUPTIBLE);
2698 add_wait_queue(&done_q, &wq_entry);
2700 /* now issue the command */
2701 retval = lpfc_sli_issue_mbox(phba, pmboxq, MBX_NOWAIT);
2703 if (retval == MBX_BUSY || retval == MBX_SUCCESS) {
2704 timeleft = schedule_timeout(timeout * HZ);
2705 pmboxq->context1 = NULL;
2706 /* if schedule_timeout returns 0, we timed out and were not
2707 woken up */
2708 if (timeleft == 0) {
2709 retval = MBX_TIMEOUT;
2710 } else {
2711 retval = MBX_SUCCESS;
2716 set_current_state(TASK_RUNNING);
2717 remove_wait_queue(&done_q, &wq_entry);
2718 return retval;
2721 irqreturn_t
2722 lpfc_intr_handler(int irq, void *dev_id, struct pt_regs * regs)
2724 struct lpfc_hba *phba;
2725 uint32_t ha_copy;
2726 uint32_t work_ha_copy;
2727 unsigned long status;
2728 int i;
2729 uint32_t control;
2732 * Get the driver's phba structure from the dev_id and
2733 * assume the HBA is not interrupting.
2735 phba = (struct lpfc_hba *) dev_id;
2737 if (unlikely(!phba))
2738 return IRQ_NONE;
2740 phba->sli.slistat.sli_intr++;
2743 * Call the HBA to see if it is interrupting. If not, don't claim
2744 * the interrupt
2747 /* Ignore all interrupts during initialization. */
2748 if (unlikely(phba->hba_state < LPFC_LINK_DOWN))
2749 return IRQ_NONE;
2752 * Read host attention register to determine interrupt source
2753 * Clear Attention Sources, except Error Attention (to
2754 * preserve status) and Link Attention
2756 spin_lock(phba->host->host_lock);
2757 ha_copy = readl(phba->HAregaddr);
2758 writel((ha_copy & ~(HA_LATT | HA_ERATT)), phba->HAregaddr);
2759 readl(phba->HAregaddr); /* flush */
2760 spin_unlock(phba->host->host_lock);
2762 if (unlikely(!ha_copy))
2763 return IRQ_NONE;
2765 work_ha_copy = ha_copy & phba->work_ha_mask;
2767 if (unlikely(work_ha_copy)) {
2768 if (work_ha_copy & HA_LATT) {
2769 if (phba->sli.sli_flag & LPFC_PROCESS_LA) {
2771 * Turn off Link Attention interrupts
2772 * until CLEAR_LA done
2774 spin_lock(phba->host->host_lock);
2775 phba->sli.sli_flag &= ~LPFC_PROCESS_LA;
2776 control = readl(phba->HCregaddr);
2777 control &= ~HC_LAINT_ENA;
2778 writel(control, phba->HCregaddr);
2779 readl(phba->HCregaddr); /* flush */
2780 spin_unlock(phba->host->host_lock);
2782 else
2783 work_ha_copy &= ~HA_LATT;
2786 if (work_ha_copy & ~(HA_ERATT|HA_MBATT|HA_LATT)) {
2787 for (i = 0; i < phba->sli.num_rings; i++) {
2788 if (work_ha_copy & (HA_RXATT << (4*i))) {
2790 * Turn off Slow Rings interrupts
2792 spin_lock(phba->host->host_lock);
2793 control = readl(phba->HCregaddr);
2794 control &= ~(HC_R0INT_ENA << i);
2795 writel(control, phba->HCregaddr);
2796 readl(phba->HCregaddr); /* flush */
2797 spin_unlock(phba->host->host_lock);
2802 if (work_ha_copy & HA_ERATT) {
2803 phba->hba_state = LPFC_HBA_ERROR;
2805 * There was a link/board error. Read the
2806 * status register to retrieve the error event
2807 * and process it.
2809 phba->sli.slistat.err_attn_event++;
2810 /* Save status info */
2811 phba->work_hs = readl(phba->HSregaddr);
2812 phba->work_status[0] = readl(phba->MBslimaddr + 0xa8);
2813 phba->work_status[1] = readl(phba->MBslimaddr + 0xac);
2815 /* Clear Chip error bit */
2816 writel(HA_ERATT, phba->HAregaddr);
2817 readl(phba->HAregaddr); /* flush */
2820 * Reseting the HBA is the only reliable way
2821 * to shutdown interrupt when there is a
2822 * ERROR.
2824 lpfc_sli_send_reset(phba, phba->hba_state);
2827 spin_lock(phba->host->host_lock);
2828 phba->work_ha |= work_ha_copy;
2829 if (phba->work_wait)
2830 wake_up(phba->work_wait);
2831 spin_unlock(phba->host->host_lock);
2834 ha_copy &= ~(phba->work_ha_mask);
2837 * Process all events on FCP ring. Take the optimized path for
2838 * FCP IO. Any other IO is slow path and is handled by
2839 * the worker thread.
2841 status = (ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
2842 status >>= (4*LPFC_FCP_RING);
2843 if (status & HA_RXATT)
2844 lpfc_sli_handle_fast_ring_event(phba,
2845 &phba->sli.ring[LPFC_FCP_RING],
2846 status);
2847 return IRQ_HANDLED;
2849 } /* lpfc_intr_handler */