blob: c3743d6f445b3146d63156bd7625b3cc6a339ff7 [file] [log] [blame]
dea31012005-04-17 16:05:31 -05001/*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04003 * Fibre Channel Host Bus Adapters. *
James Smart9413aff2007-04-25 09:53:35 -04004 * Copyright (C) 2004-2007 Emulex. All rights reserved. *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04005 * EMULEX and SLI are trademarks of Emulex. *
dea31012005-04-17 16:05:31 -05006 * www.emulex.com *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04007 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
dea31012005-04-17 16:05:31 -05008 * *
9 * This program is free software; you can redistribute it and/or *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -040010 * 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. *
dea31012005-04-17 16:05:31 -050020 *******************************************************************/
21
dea31012005-04-17 16:05:31 -050022#include <linux/blkdev.h>
23#include <linux/pci.h>
24#include <linux/interrupt.h>
25#include <linux/delay.h>
26
James.Smart@Emulex.Com91886522005-08-10 15:03:09 -040027#include <scsi/scsi.h>
dea31012005-04-17 16:05:31 -050028#include <scsi/scsi_cmnd.h>
29#include <scsi/scsi_device.h>
30#include <scsi/scsi_host.h>
James.Smart@Emulex.Comf888ba32005-08-10 15:03:01 -040031#include <scsi/scsi_transport_fc.h>
dea31012005-04-17 16:05:31 -050032
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"
James Smart858c9f62007-06-17 19:56:39 -050041#include "lpfc_debugfs.h"
dea31012005-04-17 16:05:31 -050042
43/*
44 * Define macro to log: Mailbox command x%x cannot issue Data
45 * This allows multiple uses of lpfc_msgBlk0311
46 * w/o perturbing log msg utility.
47 */
James Smart92d7f7b2007-06-17 19:56:38 -050048#define LOG_MBOX_CANNOT_ISSUE_DATA(phba, pmbox, psli, flag) \
dea31012005-04-17 16:05:31 -050049 lpfc_printf_log(phba, \
50 KERN_INFO, \
51 LOG_MBOX | LOG_SLI, \
James Smarte8b62012007-08-02 11:10:09 -040052 "(%d):0311 Mailbox command x%x cannot " \
James Smart92d7f7b2007-06-17 19:56:38 -050053 "issue Data: x%x x%x x%x\n", \
James Smart92d7f7b2007-06-17 19:56:38 -050054 pmbox->vport ? pmbox->vport->vpi : 0, \
55 pmbox->mb.mbxCommand, \
James Smart2e0fef82007-06-17 19:56:36 -050056 phba->pport->port_state, \
dea31012005-04-17 16:05:31 -050057 psli->sli_flag, \
James Smart2e0fef82007-06-17 19:56:36 -050058 flag)
dea31012005-04-17 16:05:31 -050059
60
61/* There are only four IOCB completion types. */
62typedef enum _lpfc_iocb_type {
63 LPFC_UNKNOWN_IOCB,
64 LPFC_UNSOL_IOCB,
65 LPFC_SOL_IOCB,
66 LPFC_ABORT_IOCB
67} lpfc_iocb_type;
68
James Smart92d7f7b2007-06-17 19:56:38 -050069 /* SLI-2/SLI-3 provide different sized iocbs. Given a pointer
70 * to the start of the ring, and the slot number of the
71 * desired iocb entry, calc a pointer to that entry.
72 */
James Smarted957682007-06-17 19:56:37 -050073static inline IOCB_t *
74lpfc_cmd_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
75{
76 return (IOCB_t *) (((char *) pring->cmdringaddr) +
77 pring->cmdidx * phba->iocb_cmd_size);
78}
79
80static inline IOCB_t *
81lpfc_resp_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
82{
83 return (IOCB_t *) (((char *) pring->rspringaddr) +
84 pring->rspidx * phba->iocb_rsp_size);
85}
86
James Smart2e0fef82007-06-17 19:56:36 -050087static struct lpfc_iocbq *
88__lpfc_sli_get_iocbq(struct lpfc_hba *phba)
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040089{
90 struct list_head *lpfc_iocb_list = &phba->lpfc_iocb_list;
91 struct lpfc_iocbq * iocbq = NULL;
92
93 list_remove_head(lpfc_iocb_list, iocbq, struct lpfc_iocbq, list);
94 return iocbq;
95}
96
James Smart2e0fef82007-06-17 19:56:36 -050097struct lpfc_iocbq *
98lpfc_sli_get_iocbq(struct lpfc_hba *phba)
James Bottomley604a3e32005-10-29 10:28:33 -050099{
James Smart2e0fef82007-06-17 19:56:36 -0500100 struct lpfc_iocbq * iocbq = NULL;
101 unsigned long iflags;
102
103 spin_lock_irqsave(&phba->hbalock, iflags);
104 iocbq = __lpfc_sli_get_iocbq(phba);
105 spin_unlock_irqrestore(&phba->hbalock, iflags);
106 return iocbq;
107}
108
109void
110__lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
111{
112 size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
James Bottomley604a3e32005-10-29 10:28:33 -0500113
114 /*
115 * Clean all volatile data fields, preserve iotag and node struct.
116 */
117 memset((char*)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
118 list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
119}
120
James Smart2e0fef82007-06-17 19:56:36 -0500121void
122lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
123{
124 unsigned long iflags;
125
126 /*
127 * Clean all volatile data fields, preserve iotag and node struct.
128 */
129 spin_lock_irqsave(&phba->hbalock, iflags);
130 __lpfc_sli_release_iocbq(phba, iocbq);
131 spin_unlock_irqrestore(&phba->hbalock, iflags);
132}
133
dea31012005-04-17 16:05:31 -0500134/*
135 * Translate the iocb command to an iocb command type used to decide the final
136 * disposition of each completed IOCB.
137 */
138static lpfc_iocb_type
139lpfc_sli_iocb_cmd_type(uint8_t iocb_cmnd)
140{
141 lpfc_iocb_type type = LPFC_UNKNOWN_IOCB;
142
143 if (iocb_cmnd > CMD_MAX_IOCB_CMD)
144 return 0;
145
146 switch (iocb_cmnd) {
147 case CMD_XMIT_SEQUENCE_CR:
148 case CMD_XMIT_SEQUENCE_CX:
149 case CMD_XMIT_BCAST_CN:
150 case CMD_XMIT_BCAST_CX:
151 case CMD_ELS_REQUEST_CR:
152 case CMD_ELS_REQUEST_CX:
153 case CMD_CREATE_XRI_CR:
154 case CMD_CREATE_XRI_CX:
155 case CMD_GET_RPI_CN:
156 case CMD_XMIT_ELS_RSP_CX:
157 case CMD_GET_RPI_CR:
158 case CMD_FCP_IWRITE_CR:
159 case CMD_FCP_IWRITE_CX:
160 case CMD_FCP_IREAD_CR:
161 case CMD_FCP_IREAD_CX:
162 case CMD_FCP_ICMND_CR:
163 case CMD_FCP_ICMND_CX:
James Smartf5603512006-12-02 13:35:43 -0500164 case CMD_FCP_TSEND_CX:
165 case CMD_FCP_TRSP_CX:
166 case CMD_FCP_TRECEIVE_CX:
167 case CMD_FCP_AUTO_TRSP_CX:
dea31012005-04-17 16:05:31 -0500168 case CMD_ADAPTER_MSG:
169 case CMD_ADAPTER_DUMP:
170 case CMD_XMIT_SEQUENCE64_CR:
171 case CMD_XMIT_SEQUENCE64_CX:
172 case CMD_XMIT_BCAST64_CN:
173 case CMD_XMIT_BCAST64_CX:
174 case CMD_ELS_REQUEST64_CR:
175 case CMD_ELS_REQUEST64_CX:
176 case CMD_FCP_IWRITE64_CR:
177 case CMD_FCP_IWRITE64_CX:
178 case CMD_FCP_IREAD64_CR:
179 case CMD_FCP_IREAD64_CX:
180 case CMD_FCP_ICMND64_CR:
181 case CMD_FCP_ICMND64_CX:
James Smartf5603512006-12-02 13:35:43 -0500182 case CMD_FCP_TSEND64_CX:
183 case CMD_FCP_TRSP64_CX:
184 case CMD_FCP_TRECEIVE64_CX:
dea31012005-04-17 16:05:31 -0500185 case CMD_GEN_REQUEST64_CR:
186 case CMD_GEN_REQUEST64_CX:
187 case CMD_XMIT_ELS_RSP64_CX:
188 type = LPFC_SOL_IOCB;
189 break;
190 case CMD_ABORT_XRI_CN:
191 case CMD_ABORT_XRI_CX:
192 case CMD_CLOSE_XRI_CN:
193 case CMD_CLOSE_XRI_CX:
194 case CMD_XRI_ABORTED_CX:
195 case CMD_ABORT_MXRI64_CN:
196 type = LPFC_ABORT_IOCB;
197 break;
198 case CMD_RCV_SEQUENCE_CX:
199 case CMD_RCV_ELS_REQ_CX:
200 case CMD_RCV_SEQUENCE64_CX:
201 case CMD_RCV_ELS_REQ64_CX:
James Smart57127f12007-10-27 13:37:05 -0400202 case CMD_ASYNC_STATUS:
James Smarted957682007-06-17 19:56:37 -0500203 case CMD_IOCB_RCV_SEQ64_CX:
204 case CMD_IOCB_RCV_ELS64_CX:
205 case CMD_IOCB_RCV_CONT64_CX:
dea31012005-04-17 16:05:31 -0500206 type = LPFC_UNSOL_IOCB;
207 break;
208 default:
209 type = LPFC_UNKNOWN_IOCB;
210 break;
211 }
212
213 return type;
214}
215
216static int
James Smarted957682007-06-17 19:56:37 -0500217lpfc_sli_ring_map(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -0500218{
219 struct lpfc_sli *psli = &phba->sli;
James Smarted957682007-06-17 19:56:37 -0500220 LPFC_MBOXQ_t *pmb;
221 MAILBOX_t *pmbox;
222 int i, rc, ret = 0;
dea31012005-04-17 16:05:31 -0500223
James Smarted957682007-06-17 19:56:37 -0500224 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
225 if (!pmb)
226 return -ENOMEM;
227 pmbox = &pmb->mb;
228 phba->link_state = LPFC_INIT_MBX_CMDS;
dea31012005-04-17 16:05:31 -0500229 for (i = 0; i < psli->num_rings; i++) {
dea31012005-04-17 16:05:31 -0500230 lpfc_config_ring(phba, i, pmb);
231 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
232 if (rc != MBX_SUCCESS) {
James Smart92d7f7b2007-06-17 19:56:38 -0500233 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -0400234 "0446 Adapter failed to init (%d), "
dea31012005-04-17 16:05:31 -0500235 "mbxCmd x%x CFG_RING, mbxStatus x%x, "
236 "ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -0400237 rc, pmbox->mbxCommand,
238 pmbox->mbxStatus, i);
James Smart2e0fef82007-06-17 19:56:36 -0500239 phba->link_state = LPFC_HBA_ERROR;
James Smarted957682007-06-17 19:56:37 -0500240 ret = -ENXIO;
241 break;
dea31012005-04-17 16:05:31 -0500242 }
243 }
James Smarted957682007-06-17 19:56:37 -0500244 mempool_free(pmb, phba->mbox_mem_pool);
245 return ret;
dea31012005-04-17 16:05:31 -0500246}
247
248static int
James Smart2e0fef82007-06-17 19:56:36 -0500249lpfc_sli_ringtxcmpl_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
250 struct lpfc_iocbq *piocb)
dea31012005-04-17 16:05:31 -0500251{
dea31012005-04-17 16:05:31 -0500252 list_add_tail(&piocb->list, &pring->txcmplq);
253 pring->txcmplq_cnt++;
James Smart92d7f7b2007-06-17 19:56:38 -0500254 if ((unlikely(pring->ringno == LPFC_ELS_RING)) &&
255 (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
256 (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) {
257 if (!piocb->vport)
258 BUG();
259 else
260 mod_timer(&piocb->vport->els_tmofunc,
261 jiffies + HZ * (phba->fc_ratov << 1));
262 }
263
dea31012005-04-17 16:05:31 -0500264
James Smart2e0fef82007-06-17 19:56:36 -0500265 return 0;
dea31012005-04-17 16:05:31 -0500266}
267
268static struct lpfc_iocbq *
James Smart2e0fef82007-06-17 19:56:36 -0500269lpfc_sli_ringtx_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea31012005-04-17 16:05:31 -0500270{
dea31012005-04-17 16:05:31 -0500271 struct lpfc_iocbq *cmd_iocb;
272
James Smart858c9f62007-06-17 19:56:39 -0500273 list_remove_head((&pring->txq), cmd_iocb, struct lpfc_iocbq, list);
274 if (cmd_iocb != NULL)
dea31012005-04-17 16:05:31 -0500275 pring->txq_cnt--;
James Smart2e0fef82007-06-17 19:56:36 -0500276 return cmd_iocb;
dea31012005-04-17 16:05:31 -0500277}
278
279static IOCB_t *
280lpfc_sli_next_iocb_slot (struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
281{
James Smarted957682007-06-17 19:56:37 -0500282 struct lpfc_pgp *pgp = (phba->sli_rev == 3) ?
283 &phba->slim2p->mbx.us.s3_pgp.port[pring->ringno] :
284 &phba->slim2p->mbx.us.s2.port[pring->ringno];
dea31012005-04-17 16:05:31 -0500285 uint32_t max_cmd_idx = pring->numCiocb;
dea31012005-04-17 16:05:31 -0500286
287 if ((pring->next_cmdidx == pring->cmdidx) &&
288 (++pring->next_cmdidx >= max_cmd_idx))
289 pring->next_cmdidx = 0;
290
291 if (unlikely(pring->local_getidx == pring->next_cmdidx)) {
292
293 pring->local_getidx = le32_to_cpu(pgp->cmdGetInx);
294
295 if (unlikely(pring->local_getidx >= max_cmd_idx)) {
296 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -0400297 "0315 Ring %d issue: portCmdGet %d "
dea31012005-04-17 16:05:31 -0500298 "is bigger then cmd ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -0400299 pring->ringno,
dea31012005-04-17 16:05:31 -0500300 pring->local_getidx, max_cmd_idx);
301
James Smart2e0fef82007-06-17 19:56:36 -0500302 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -0500303 /*
304 * All error attention handlers are posted to
305 * worker thread
306 */
307 phba->work_ha |= HA_ERATT;
308 phba->work_hs = HS_FFER3;
James Smart92d7f7b2007-06-17 19:56:38 -0500309
310 /* hbalock should already be held */
dea31012005-04-17 16:05:31 -0500311 if (phba->work_wait)
James Smart92d7f7b2007-06-17 19:56:38 -0500312 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -0500313
314 return NULL;
315 }
316
317 if (pring->local_getidx == pring->next_cmdidx)
318 return NULL;
319 }
320
James Smarted957682007-06-17 19:56:37 -0500321 return lpfc_cmd_iocb(phba, pring);
dea31012005-04-17 16:05:31 -0500322}
323
James Bottomley604a3e32005-10-29 10:28:33 -0500324uint16_t
James Smart2e0fef82007-06-17 19:56:36 -0500325lpfc_sli_next_iotag(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
dea31012005-04-17 16:05:31 -0500326{
James Smart2e0fef82007-06-17 19:56:36 -0500327 struct lpfc_iocbq **new_arr;
328 struct lpfc_iocbq **old_arr;
James Bottomley604a3e32005-10-29 10:28:33 -0500329 size_t new_len;
330 struct lpfc_sli *psli = &phba->sli;
331 uint16_t iotag;
dea31012005-04-17 16:05:31 -0500332
James Smart2e0fef82007-06-17 19:56:36 -0500333 spin_lock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -0500334 iotag = psli->last_iotag;
335 if(++iotag < psli->iocbq_lookup_len) {
336 psli->last_iotag = iotag;
337 psli->iocbq_lookup[iotag] = iocbq;
James Smart2e0fef82007-06-17 19:56:36 -0500338 spin_unlock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -0500339 iocbq->iotag = iotag;
340 return iotag;
James Smart2e0fef82007-06-17 19:56:36 -0500341 } else if (psli->iocbq_lookup_len < (0xffff
James Bottomley604a3e32005-10-29 10:28:33 -0500342 - LPFC_IOCBQ_LOOKUP_INCREMENT)) {
343 new_len = psli->iocbq_lookup_len + LPFC_IOCBQ_LOOKUP_INCREMENT;
James Smart2e0fef82007-06-17 19:56:36 -0500344 spin_unlock_irq(&phba->hbalock);
345 new_arr = kzalloc(new_len * sizeof (struct lpfc_iocbq *),
James Bottomley604a3e32005-10-29 10:28:33 -0500346 GFP_KERNEL);
347 if (new_arr) {
James Smart2e0fef82007-06-17 19:56:36 -0500348 spin_lock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -0500349 old_arr = psli->iocbq_lookup;
350 if (new_len <= psli->iocbq_lookup_len) {
351 /* highly unprobable case */
352 kfree(new_arr);
353 iotag = psli->last_iotag;
354 if(++iotag < psli->iocbq_lookup_len) {
355 psli->last_iotag = iotag;
356 psli->iocbq_lookup[iotag] = iocbq;
James Smart2e0fef82007-06-17 19:56:36 -0500357 spin_unlock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -0500358 iocbq->iotag = iotag;
359 return iotag;
360 }
James Smart2e0fef82007-06-17 19:56:36 -0500361 spin_unlock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -0500362 return 0;
363 }
364 if (psli->iocbq_lookup)
365 memcpy(new_arr, old_arr,
366 ((psli->last_iotag + 1) *
James Smart311464e2007-08-02 11:10:37 -0400367 sizeof (struct lpfc_iocbq *)));
James Bottomley604a3e32005-10-29 10:28:33 -0500368 psli->iocbq_lookup = new_arr;
369 psli->iocbq_lookup_len = new_len;
370 psli->last_iotag = iotag;
371 psli->iocbq_lookup[iotag] = iocbq;
James Smart2e0fef82007-06-17 19:56:36 -0500372 spin_unlock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -0500373 iocbq->iotag = iotag;
374 kfree(old_arr);
375 return iotag;
376 }
James Smart8f6d98d2006-08-01 07:34:00 -0400377 } else
James Smart2e0fef82007-06-17 19:56:36 -0500378 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500379
James Bottomley604a3e32005-10-29 10:28:33 -0500380 lpfc_printf_log(phba, KERN_ERR,LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -0400381 "0318 Failed to allocate IOTAG.last IOTAG is %d\n",
382 psli->last_iotag);
dea31012005-04-17 16:05:31 -0500383
James Bottomley604a3e32005-10-29 10:28:33 -0500384 return 0;
dea31012005-04-17 16:05:31 -0500385}
386
387static void
388lpfc_sli_submit_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
389 IOCB_t *iocb, struct lpfc_iocbq *nextiocb)
390{
391 /*
James Bottomley604a3e32005-10-29 10:28:33 -0500392 * Set up an iotag
dea31012005-04-17 16:05:31 -0500393 */
James Bottomley604a3e32005-10-29 10:28:33 -0500394 nextiocb->iocb.ulpIoTag = (nextiocb->iocb_cmpl) ? nextiocb->iotag : 0;
dea31012005-04-17 16:05:31 -0500395
James Smarta58cbd52007-08-02 11:09:43 -0400396 if (pring->ringno == LPFC_ELS_RING) {
397 lpfc_debugfs_slow_ring_trc(phba,
398 "IOCB cmd ring: wd4:x%08x wd6:x%08x wd7:x%08x",
399 *(((uint32_t *) &nextiocb->iocb) + 4),
400 *(((uint32_t *) &nextiocb->iocb) + 6),
401 *(((uint32_t *) &nextiocb->iocb) + 7));
402 }
403
dea31012005-04-17 16:05:31 -0500404 /*
405 * Issue iocb command to adapter
406 */
James Smart92d7f7b2007-06-17 19:56:38 -0500407 lpfc_sli_pcimem_bcopy(&nextiocb->iocb, iocb, phba->iocb_cmd_size);
dea31012005-04-17 16:05:31 -0500408 wmb();
409 pring->stats.iocb_cmd++;
410
411 /*
412 * If there is no completion routine to call, we can release the
413 * IOCB buffer back right now. For IOCBs, like QUE_RING_BUF,
414 * that have no rsp ring completion, iocb_cmpl MUST be NULL.
415 */
416 if (nextiocb->iocb_cmpl)
417 lpfc_sli_ringtxcmpl_put(phba, pring, nextiocb);
James Bottomley604a3e32005-10-29 10:28:33 -0500418 else
James Smart2e0fef82007-06-17 19:56:36 -0500419 __lpfc_sli_release_iocbq(phba, nextiocb);
dea31012005-04-17 16:05:31 -0500420
421 /*
422 * Let the HBA know what IOCB slot will be the next one the
423 * driver will put a command into.
424 */
425 pring->cmdidx = pring->next_cmdidx;
James Smarted957682007-06-17 19:56:37 -0500426 writel(pring->cmdidx, &phba->host_gp[pring->ringno].cmdPutInx);
dea31012005-04-17 16:05:31 -0500427}
428
429static void
James Smart2e0fef82007-06-17 19:56:36 -0500430lpfc_sli_update_full_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea31012005-04-17 16:05:31 -0500431{
432 int ringno = pring->ringno;
433
434 pring->flag |= LPFC_CALL_RING_AVAILABLE;
435
436 wmb();
437
438 /*
439 * Set ring 'ringno' to SET R0CE_REQ in Chip Att register.
440 * The HBA will tell us when an IOCB entry is available.
441 */
442 writel((CA_R0ATT|CA_R0CE_REQ) << (ringno*4), phba->CAregaddr);
443 readl(phba->CAregaddr); /* flush */
444
445 pring->stats.iocb_cmd_full++;
446}
447
448static void
James Smart2e0fef82007-06-17 19:56:36 -0500449lpfc_sli_update_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea31012005-04-17 16:05:31 -0500450{
451 int ringno = pring->ringno;
452
453 /*
454 * Tell the HBA that there is work to do in this ring.
455 */
456 wmb();
457 writel(CA_R0ATT << (ringno * 4), phba->CAregaddr);
458 readl(phba->CAregaddr); /* flush */
459}
460
461static void
James Smart2e0fef82007-06-17 19:56:36 -0500462lpfc_sli_resume_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea31012005-04-17 16:05:31 -0500463{
464 IOCB_t *iocb;
465 struct lpfc_iocbq *nextiocb;
466
467 /*
468 * Check to see if:
469 * (a) there is anything on the txq to send
470 * (b) link is up
471 * (c) link attention events can be processed (fcp ring only)
472 * (d) IOCB processing is not blocked by the outstanding mbox command.
473 */
474 if (pring->txq_cnt &&
James Smart2e0fef82007-06-17 19:56:36 -0500475 lpfc_is_link_up(phba) &&
dea31012005-04-17 16:05:31 -0500476 (pring->ringno != phba->sli.fcp_ring ||
James Smart0b727fe2007-10-27 13:37:25 -0400477 phba->sli.sli_flag & LPFC_PROCESS_LA)) {
dea31012005-04-17 16:05:31 -0500478
479 while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
480 (nextiocb = lpfc_sli_ringtx_get(phba, pring)))
481 lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
482
483 if (iocb)
484 lpfc_sli_update_ring(phba, pring);
485 else
486 lpfc_sli_update_full_ring(phba, pring);
487 }
488
489 return;
490}
491
James Smarted957682007-06-17 19:56:37 -0500492struct lpfc_hbq_entry *
493lpfc_sli_next_hbq_slot(struct lpfc_hba *phba, uint32_t hbqno)
494{
495 struct hbq_s *hbqp = &phba->hbqs[hbqno];
496
497 if (hbqp->next_hbqPutIdx == hbqp->hbqPutIdx &&
498 ++hbqp->next_hbqPutIdx >= hbqp->entry_count)
499 hbqp->next_hbqPutIdx = 0;
500
501 if (unlikely(hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)) {
James Smart92d7f7b2007-06-17 19:56:38 -0500502 uint32_t raw_index = phba->hbq_get[hbqno];
James Smarted957682007-06-17 19:56:37 -0500503 uint32_t getidx = le32_to_cpu(raw_index);
504
505 hbqp->local_hbqGetIdx = getidx;
506
507 if (unlikely(hbqp->local_hbqGetIdx >= hbqp->entry_count)) {
508 lpfc_printf_log(phba, KERN_ERR,
James Smart92d7f7b2007-06-17 19:56:38 -0500509 LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -0400510 "1802 HBQ %d: local_hbqGetIdx "
James Smarted957682007-06-17 19:56:37 -0500511 "%u is > than hbqp->entry_count %u\n",
James Smarte8b62012007-08-02 11:10:09 -0400512 hbqno, hbqp->local_hbqGetIdx,
James Smarted957682007-06-17 19:56:37 -0500513 hbqp->entry_count);
514
515 phba->link_state = LPFC_HBA_ERROR;
516 return NULL;
517 }
518
519 if (hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)
520 return NULL;
521 }
522
James Smart51ef4c22007-08-02 11:10:31 -0400523 return (struct lpfc_hbq_entry *) phba->hbqs[hbqno].hbq_virt +
524 hbqp->hbqPutIdx;
James Smarted957682007-06-17 19:56:37 -0500525}
526
527void
528lpfc_sli_hbqbuf_free_all(struct lpfc_hba *phba)
529{
James Smart92d7f7b2007-06-17 19:56:38 -0500530 struct lpfc_dmabuf *dmabuf, *next_dmabuf;
531 struct hbq_dmabuf *hbq_buf;
James Smart51ef4c22007-08-02 11:10:31 -0400532 int i, hbq_count;
James Smarted957682007-06-17 19:56:37 -0500533
James Smart51ef4c22007-08-02 11:10:31 -0400534 hbq_count = lpfc_sli_hbq_count();
James Smarted957682007-06-17 19:56:37 -0500535 /* Return all memory used by all HBQs */
James Smart51ef4c22007-08-02 11:10:31 -0400536 for (i = 0; i < hbq_count; ++i) {
537 list_for_each_entry_safe(dmabuf, next_dmabuf,
538 &phba->hbqs[i].hbq_buffer_list, list) {
539 hbq_buf = container_of(dmabuf, struct hbq_dmabuf, dbuf);
540 list_del(&hbq_buf->dbuf.list);
541 (phba->hbqs[i].hbq_free_buffer)(phba, hbq_buf);
542 }
James Smarta8adb832007-10-27 13:37:53 -0400543 phba->hbqs[i].buffer_count = 0;
James Smarted957682007-06-17 19:56:37 -0500544 }
James Smarted957682007-06-17 19:56:37 -0500545}
546
James Smart51ef4c22007-08-02 11:10:31 -0400547static struct lpfc_hbq_entry *
James Smarted957682007-06-17 19:56:37 -0500548lpfc_sli_hbq_to_firmware(struct lpfc_hba *phba, uint32_t hbqno,
James Smart92d7f7b2007-06-17 19:56:38 -0500549 struct hbq_dmabuf *hbq_buf)
James Smarted957682007-06-17 19:56:37 -0500550{
551 struct lpfc_hbq_entry *hbqe;
James Smart92d7f7b2007-06-17 19:56:38 -0500552 dma_addr_t physaddr = hbq_buf->dbuf.phys;
James Smarted957682007-06-17 19:56:37 -0500553
554 /* Get next HBQ entry slot to use */
555 hbqe = lpfc_sli_next_hbq_slot(phba, hbqno);
556 if (hbqe) {
557 struct hbq_s *hbqp = &phba->hbqs[hbqno];
558
James Smart92d7f7b2007-06-17 19:56:38 -0500559 hbqe->bde.addrHigh = le32_to_cpu(putPaddrHigh(physaddr));
560 hbqe->bde.addrLow = le32_to_cpu(putPaddrLow(physaddr));
James Smart51ef4c22007-08-02 11:10:31 -0400561 hbqe->bde.tus.f.bdeSize = hbq_buf->size;
James Smarted957682007-06-17 19:56:37 -0500562 hbqe->bde.tus.f.bdeFlags = 0;
James Smart92d7f7b2007-06-17 19:56:38 -0500563 hbqe->bde.tus.w = le32_to_cpu(hbqe->bde.tus.w);
564 hbqe->buffer_tag = le32_to_cpu(hbq_buf->tag);
565 /* Sync SLIM */
James Smarted957682007-06-17 19:56:37 -0500566 hbqp->hbqPutIdx = hbqp->next_hbqPutIdx;
567 writel(hbqp->hbqPutIdx, phba->hbq_put + hbqno);
James Smart92d7f7b2007-06-17 19:56:38 -0500568 /* flush */
James Smarted957682007-06-17 19:56:37 -0500569 readl(phba->hbq_put + hbqno);
James Smart51ef4c22007-08-02 11:10:31 -0400570 list_add_tail(&hbq_buf->dbuf.list, &hbqp->hbq_buffer_list);
James Smarted957682007-06-17 19:56:37 -0500571 }
James Smart51ef4c22007-08-02 11:10:31 -0400572 return hbqe;
James Smarted957682007-06-17 19:56:37 -0500573}
574
James Smart92d7f7b2007-06-17 19:56:38 -0500575static struct lpfc_hbq_init lpfc_els_hbq = {
576 .rn = 1,
577 .entry_count = 200,
578 .mask_count = 0,
579 .profile = 0,
James Smart51ef4c22007-08-02 11:10:31 -0400580 .ring_mask = (1 << LPFC_ELS_RING),
James Smart92d7f7b2007-06-17 19:56:38 -0500581 .buffer_count = 0,
582 .init_count = 20,
583 .add_count = 5,
584};
James Smarted957682007-06-17 19:56:37 -0500585
James Smart51ef4c22007-08-02 11:10:31 -0400586static struct lpfc_hbq_init lpfc_extra_hbq = {
587 .rn = 1,
588 .entry_count = 200,
589 .mask_count = 0,
590 .profile = 0,
591 .ring_mask = (1 << LPFC_EXTRA_RING),
592 .buffer_count = 0,
593 .init_count = 0,
594 .add_count = 5,
595};
596
James Smart78b2d852007-08-02 11:10:21 -0400597struct lpfc_hbq_init *lpfc_hbq_defs[] = {
James Smart92d7f7b2007-06-17 19:56:38 -0500598 &lpfc_els_hbq,
James Smart51ef4c22007-08-02 11:10:31 -0400599 &lpfc_extra_hbq,
James Smart92d7f7b2007-06-17 19:56:38 -0500600};
601
James Smart311464e2007-08-02 11:10:37 -0400602static int
James Smart92d7f7b2007-06-17 19:56:38 -0500603lpfc_sli_hbqbuf_fill_hbqs(struct lpfc_hba *phba, uint32_t hbqno, uint32_t count)
604{
605 uint32_t i, start, end;
606 struct hbq_dmabuf *hbq_buffer;
607
James Smart51ef4c22007-08-02 11:10:31 -0400608 if (!phba->hbqs[hbqno].hbq_alloc_buffer) {
609 return 0;
610 }
611
James Smarta8adb832007-10-27 13:37:53 -0400612 start = phba->hbqs[hbqno].buffer_count;
613 end = count + start;
James Smart92d7f7b2007-06-17 19:56:38 -0500614 if (end > lpfc_hbq_defs[hbqno]->entry_count) {
615 end = lpfc_hbq_defs[hbqno]->entry_count;
James Smarted957682007-06-17 19:56:37 -0500616 }
James Smart92d7f7b2007-06-17 19:56:38 -0500617
618 /* Populate HBQ entries */
619 for (i = start; i < end; i++) {
James Smart51ef4c22007-08-02 11:10:31 -0400620 hbq_buffer = (phba->hbqs[hbqno].hbq_alloc_buffer)(phba);
James Smart92d7f7b2007-06-17 19:56:38 -0500621 if (!hbq_buffer)
622 return 1;
James Smart92d7f7b2007-06-17 19:56:38 -0500623 hbq_buffer->tag = (i | (hbqno << 16));
James Smart51ef4c22007-08-02 11:10:31 -0400624 if (lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer))
James Smarta8adb832007-10-27 13:37:53 -0400625 phba->hbqs[hbqno].buffer_count++;
James Smart51ef4c22007-08-02 11:10:31 -0400626 else
627 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
James Smart92d7f7b2007-06-17 19:56:38 -0500628 }
629 return 0;
James Smarted957682007-06-17 19:56:37 -0500630}
631
632int
James Smart92d7f7b2007-06-17 19:56:38 -0500633lpfc_sli_hbqbuf_add_hbqs(struct lpfc_hba *phba, uint32_t qno)
James Smarted957682007-06-17 19:56:37 -0500634{
James Smart92d7f7b2007-06-17 19:56:38 -0500635 return(lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
636 lpfc_hbq_defs[qno]->add_count));
James Smarted957682007-06-17 19:56:37 -0500637}
638
James Smart92d7f7b2007-06-17 19:56:38 -0500639int
640lpfc_sli_hbqbuf_init_hbqs(struct lpfc_hba *phba, uint32_t qno)
James Smarted957682007-06-17 19:56:37 -0500641{
James Smart92d7f7b2007-06-17 19:56:38 -0500642 return(lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
643 lpfc_hbq_defs[qno]->init_count));
James Smarted957682007-06-17 19:56:37 -0500644}
645
646struct hbq_dmabuf *
647lpfc_sli_hbqbuf_find(struct lpfc_hba *phba, uint32_t tag)
648{
James Smart92d7f7b2007-06-17 19:56:38 -0500649 struct lpfc_dmabuf *d_buf;
650 struct hbq_dmabuf *hbq_buf;
James Smart51ef4c22007-08-02 11:10:31 -0400651 uint32_t hbqno;
James Smarted957682007-06-17 19:56:37 -0500652
James Smart51ef4c22007-08-02 11:10:31 -0400653 hbqno = tag >> 16;
Jesper Juhla0a74e452007-08-09 20:47:15 +0200654 if (hbqno >= LPFC_MAX_HBQS)
James Smart51ef4c22007-08-02 11:10:31 -0400655 return NULL;
656
657 list_for_each_entry(d_buf, &phba->hbqs[hbqno].hbq_buffer_list, list) {
James Smart92d7f7b2007-06-17 19:56:38 -0500658 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
James Smart51ef4c22007-08-02 11:10:31 -0400659 if (hbq_buf->tag == tag) {
James Smart92d7f7b2007-06-17 19:56:38 -0500660 return hbq_buf;
James Smarted957682007-06-17 19:56:37 -0500661 }
662 }
James Smart92d7f7b2007-06-17 19:56:38 -0500663 lpfc_printf_log(phba, KERN_ERR, LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -0400664 "1803 Bad hbq tag. Data: x%x x%x\n",
James Smarta8adb832007-10-27 13:37:53 -0400665 tag, phba->hbqs[tag >> 16].buffer_count);
James Smart92d7f7b2007-06-17 19:56:38 -0500666 return NULL;
James Smarted957682007-06-17 19:56:37 -0500667}
668
669void
James Smart51ef4c22007-08-02 11:10:31 -0400670lpfc_sli_free_hbq(struct lpfc_hba *phba, struct hbq_dmabuf *hbq_buffer)
James Smarted957682007-06-17 19:56:37 -0500671{
672 uint32_t hbqno;
673
James Smart51ef4c22007-08-02 11:10:31 -0400674 if (hbq_buffer) {
675 hbqno = hbq_buffer->tag >> 16;
676 if (!lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer)) {
677 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
678 }
James Smarted957682007-06-17 19:56:37 -0500679 }
680}
681
dea31012005-04-17 16:05:31 -0500682static int
683lpfc_sli_chk_mbx_command(uint8_t mbxCommand)
684{
685 uint8_t ret;
686
687 switch (mbxCommand) {
688 case MBX_LOAD_SM:
689 case MBX_READ_NV:
690 case MBX_WRITE_NV:
James Smarta8adb832007-10-27 13:37:53 -0400691 case MBX_WRITE_VPARMS:
dea31012005-04-17 16:05:31 -0500692 case MBX_RUN_BIU_DIAG:
693 case MBX_INIT_LINK:
694 case MBX_DOWN_LINK:
695 case MBX_CONFIG_LINK:
696 case MBX_CONFIG_RING:
697 case MBX_RESET_RING:
698 case MBX_READ_CONFIG:
699 case MBX_READ_RCONFIG:
700 case MBX_READ_SPARM:
701 case MBX_READ_STATUS:
702 case MBX_READ_RPI:
703 case MBX_READ_XRI:
704 case MBX_READ_REV:
705 case MBX_READ_LNK_STAT:
706 case MBX_REG_LOGIN:
707 case MBX_UNREG_LOGIN:
708 case MBX_READ_LA:
709 case MBX_CLEAR_LA:
710 case MBX_DUMP_MEMORY:
711 case MBX_DUMP_CONTEXT:
712 case MBX_RUN_DIAGS:
713 case MBX_RESTART:
714 case MBX_UPDATE_CFG:
715 case MBX_DOWN_LOAD:
716 case MBX_DEL_LD_ENTRY:
717 case MBX_RUN_PROGRAM:
718 case MBX_SET_MASK:
719 case MBX_SET_SLIM:
720 case MBX_UNREG_D_ID:
Jamie Wellnitz41415862006-02-28 19:25:27 -0500721 case MBX_KILL_BOARD:
dea31012005-04-17 16:05:31 -0500722 case MBX_CONFIG_FARP:
Jamie Wellnitz41415862006-02-28 19:25:27 -0500723 case MBX_BEACON:
dea31012005-04-17 16:05:31 -0500724 case MBX_LOAD_AREA:
725 case MBX_RUN_BIU_DIAG64:
726 case MBX_CONFIG_PORT:
727 case MBX_READ_SPARM64:
728 case MBX_READ_RPI64:
729 case MBX_REG_LOGIN64:
730 case MBX_READ_LA64:
731 case MBX_FLASH_WR_ULA:
732 case MBX_SET_DEBUG:
733 case MBX_LOAD_EXP_ROM:
James Smart57127f12007-10-27 13:37:05 -0400734 case MBX_ASYNCEVT_ENABLE:
James Smart92d7f7b2007-06-17 19:56:38 -0500735 case MBX_REG_VPI:
736 case MBX_UNREG_VPI:
James Smart858c9f62007-06-17 19:56:39 -0500737 case MBX_HEARTBEAT:
dea31012005-04-17 16:05:31 -0500738 ret = mbxCommand;
739 break;
740 default:
741 ret = MBX_SHUTDOWN;
742 break;
743 }
James Smart2e0fef82007-06-17 19:56:36 -0500744 return ret;
dea31012005-04-17 16:05:31 -0500745}
746static void
James Smart2e0fef82007-06-17 19:56:36 -0500747lpfc_sli_wake_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq)
dea31012005-04-17 16:05:31 -0500748{
749 wait_queue_head_t *pdone_q;
James Smart858c9f62007-06-17 19:56:39 -0500750 unsigned long drvr_flag;
dea31012005-04-17 16:05:31 -0500751
752 /*
753 * If pdone_q is empty, the driver thread gave up waiting and
754 * continued running.
755 */
James Smart7054a602007-04-25 09:52:34 -0400756 pmboxq->mbox_flag |= LPFC_MBX_WAKE;
James Smart858c9f62007-06-17 19:56:39 -0500757 spin_lock_irqsave(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -0500758 pdone_q = (wait_queue_head_t *) pmboxq->context1;
759 if (pdone_q)
760 wake_up_interruptible(pdone_q);
James Smart858c9f62007-06-17 19:56:39 -0500761 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -0500762 return;
763}
764
765void
James Smart2e0fef82007-06-17 19:56:36 -0500766lpfc_sli_def_mbox_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -0500767{
768 struct lpfc_dmabuf *mp;
James Smart7054a602007-04-25 09:52:34 -0400769 uint16_t rpi;
770 int rc;
771
dea31012005-04-17 16:05:31 -0500772 mp = (struct lpfc_dmabuf *) (pmb->context1);
James Smart7054a602007-04-25 09:52:34 -0400773
dea31012005-04-17 16:05:31 -0500774 if (mp) {
775 lpfc_mbuf_free(phba, mp->virt, mp->phys);
776 kfree(mp);
777 }
James Smart7054a602007-04-25 09:52:34 -0400778
779 /*
780 * If a REG_LOGIN succeeded after node is destroyed or node
781 * is in re-discovery driver need to cleanup the RPI.
782 */
James Smart2e0fef82007-06-17 19:56:36 -0500783 if (!(phba->pport->load_flag & FC_UNLOADING) &&
784 pmb->mb.mbxCommand == MBX_REG_LOGIN64 &&
785 !pmb->mb.mbxStatus) {
James Smart7054a602007-04-25 09:52:34 -0400786
787 rpi = pmb->mb.un.varWords[0];
James Smart92d7f7b2007-06-17 19:56:38 -0500788 lpfc_unreg_login(phba, pmb->mb.un.varRegLogin.vpi, rpi, pmb);
789 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart7054a602007-04-25 09:52:34 -0400790 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
791 if (rc != MBX_NOT_FINISHED)
792 return;
793 }
794
James Smart2e0fef82007-06-17 19:56:36 -0500795 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500796 return;
797}
798
799int
James Smart2e0fef82007-06-17 19:56:36 -0500800lpfc_sli_handle_mb_event(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -0500801{
James Smart92d7f7b2007-06-17 19:56:38 -0500802 MAILBOX_t *pmbox;
dea31012005-04-17 16:05:31 -0500803 LPFC_MBOXQ_t *pmb;
James Smart92d7f7b2007-06-17 19:56:38 -0500804 int rc;
805 LIST_HEAD(cmplq);
dea31012005-04-17 16:05:31 -0500806
807 phba->sli.slistat.mbox_event++;
808
James Smart92d7f7b2007-06-17 19:56:38 -0500809 /* Get all completed mailboxe buffers into the cmplq */
810 spin_lock_irq(&phba->hbalock);
811 list_splice_init(&phba->sli.mboxq_cmpl, &cmplq);
812 spin_unlock_irq(&phba->hbalock);
813
dea31012005-04-17 16:05:31 -0500814 /* Get a Mailbox buffer to setup mailbox commands for callback */
James Smart92d7f7b2007-06-17 19:56:38 -0500815 do {
816 list_remove_head(&cmplq, pmb, LPFC_MBOXQ_t, list);
817 if (pmb == NULL)
818 break;
819
dea31012005-04-17 16:05:31 -0500820 pmbox = &pmb->mb;
dea31012005-04-17 16:05:31 -0500821
James Smart858c9f62007-06-17 19:56:39 -0500822 if (pmbox->mbxCommand != MBX_HEARTBEAT) {
823 if (pmb->vport) {
824 lpfc_debugfs_disc_trc(pmb->vport,
825 LPFC_DISC_TRC_MBOX_VPORT,
826 "MBOX cmpl vport: cmd:x%x mb:x%x x%x",
827 (uint32_t)pmbox->mbxCommand,
828 pmbox->un.varWords[0],
829 pmbox->un.varWords[1]);
830 }
831 else {
832 lpfc_debugfs_disc_trc(phba->pport,
833 LPFC_DISC_TRC_MBOX,
834 "MBOX cmpl: cmd:x%x mb:x%x x%x",
835 (uint32_t)pmbox->mbxCommand,
836 pmbox->un.varWords[0],
837 pmbox->un.varWords[1]);
838 }
839 }
840
dea31012005-04-17 16:05:31 -0500841 /*
842 * It is a fatal error if unknown mbox command completion.
843 */
844 if (lpfc_sli_chk_mbx_command(pmbox->mbxCommand) ==
845 MBX_SHUTDOWN) {
dea31012005-04-17 16:05:31 -0500846 /* Unknow mailbox command compl */
James Smart92d7f7b2007-06-17 19:56:38 -0500847 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -0400848 "(%d):0323 Unknown Mailbox command "
James Smart92d7f7b2007-06-17 19:56:38 -0500849 "%x Cmpl\n",
James Smart92d7f7b2007-06-17 19:56:38 -0500850 pmb->vport ? pmb->vport->vpi : 0,
851 pmbox->mbxCommand);
James Smart2e0fef82007-06-17 19:56:36 -0500852 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -0500853 phba->work_hs = HS_FFER3;
854 lpfc_handle_eratt(phba);
James Smart92d7f7b2007-06-17 19:56:38 -0500855 continue;
dea31012005-04-17 16:05:31 -0500856 }
857
dea31012005-04-17 16:05:31 -0500858 if (pmbox->mbxStatus) {
859 phba->sli.slistat.mbox_stat_err++;
860 if (pmbox->mbxStatus == MBXERR_NO_RESOURCES) {
861 /* Mbox cmd cmpl error - RETRYing */
James Smart92d7f7b2007-06-17 19:56:38 -0500862 lpfc_printf_log(phba, KERN_INFO,
863 LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -0400864 "(%d):0305 Mbox cmd cmpl "
James Smart92d7f7b2007-06-17 19:56:38 -0500865 "error - RETRYing Data: x%x "
866 "x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -0500867 pmb->vport ? pmb->vport->vpi :0,
868 pmbox->mbxCommand,
869 pmbox->mbxStatus,
870 pmbox->un.varWords[0],
871 pmb->vport->port_state);
dea31012005-04-17 16:05:31 -0500872 pmbox->mbxStatus = 0;
873 pmbox->mbxOwner = OWN_HOST;
James Smart2e0fef82007-06-17 19:56:36 -0500874 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500875 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -0500876 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500877 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
878 if (rc == MBX_SUCCESS)
James Smart92d7f7b2007-06-17 19:56:38 -0500879 continue;
dea31012005-04-17 16:05:31 -0500880 }
881 }
882
883 /* Mailbox cmd <cmd> Cmpl <cmpl> */
James Smart92d7f7b2007-06-17 19:56:38 -0500884 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -0400885 "(%d):0307 Mailbox cmd x%x Cmpl x%p "
dea31012005-04-17 16:05:31 -0500886 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -0500887 pmb->vport ? pmb->vport->vpi : 0,
dea31012005-04-17 16:05:31 -0500888 pmbox->mbxCommand,
889 pmb->mbox_cmpl,
890 *((uint32_t *) pmbox),
891 pmbox->un.varWords[0],
892 pmbox->un.varWords[1],
893 pmbox->un.varWords[2],
894 pmbox->un.varWords[3],
895 pmbox->un.varWords[4],
896 pmbox->un.varWords[5],
897 pmbox->un.varWords[6],
898 pmbox->un.varWords[7]);
899
James Smart92d7f7b2007-06-17 19:56:38 -0500900 if (pmb->mbox_cmpl)
dea31012005-04-17 16:05:31 -0500901 pmb->mbox_cmpl(phba,pmb);
James Smart92d7f7b2007-06-17 19:56:38 -0500902 } while (1);
James Smart2e0fef82007-06-17 19:56:36 -0500903 return 0;
dea31012005-04-17 16:05:31 -0500904}
James Smart92d7f7b2007-06-17 19:56:38 -0500905
906static struct lpfc_dmabuf *
907lpfc_sli_replace_hbqbuff(struct lpfc_hba *phba, uint32_t tag)
908{
909 struct hbq_dmabuf *hbq_entry, *new_hbq_entry;
James Smart51ef4c22007-08-02 11:10:31 -0400910 uint32_t hbqno;
911 void *virt; /* virtual address ptr */
912 dma_addr_t phys; /* mapped address */
James Smart92d7f7b2007-06-17 19:56:38 -0500913
914 hbq_entry = lpfc_sli_hbqbuf_find(phba, tag);
915 if (hbq_entry == NULL)
916 return NULL;
917 list_del(&hbq_entry->dbuf.list);
James Smart51ef4c22007-08-02 11:10:31 -0400918
919 hbqno = tag >> 16;
920 new_hbq_entry = (phba->hbqs[hbqno].hbq_alloc_buffer)(phba);
James Smart92d7f7b2007-06-17 19:56:38 -0500921 if (new_hbq_entry == NULL)
922 return &hbq_entry->dbuf;
James Smart92d7f7b2007-06-17 19:56:38 -0500923 new_hbq_entry->tag = -1;
James Smart51ef4c22007-08-02 11:10:31 -0400924 phys = new_hbq_entry->dbuf.phys;
925 virt = new_hbq_entry->dbuf.virt;
926 new_hbq_entry->dbuf.phys = hbq_entry->dbuf.phys;
927 new_hbq_entry->dbuf.virt = hbq_entry->dbuf.virt;
928 hbq_entry->dbuf.phys = phys;
929 hbq_entry->dbuf.virt = virt;
James Smart92d7f7b2007-06-17 19:56:38 -0500930 lpfc_sli_free_hbq(phba, hbq_entry);
931 return &new_hbq_entry->dbuf;
932}
933
James Smart57127f12007-10-27 13:37:05 -0400934
dea31012005-04-17 16:05:31 -0500935static int
936lpfc_sli_process_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
937 struct lpfc_iocbq *saveq)
938{
939 IOCB_t * irsp;
940 WORD5 * w5p;
941 uint32_t Rctl, Type;
942 uint32_t match, i;
943
944 match = 0;
945 irsp = &(saveq->iocb);
James Smart57127f12007-10-27 13:37:05 -0400946
947 if (irsp->ulpCommand == CMD_ASYNC_STATUS) {
948 if (pring->lpfc_sli_rcv_async_status)
949 pring->lpfc_sli_rcv_async_status(phba, pring, saveq);
950 else
951 lpfc_printf_log(phba,
952 KERN_WARNING,
953 LOG_SLI,
954 "0316 Ring %d handler: unexpected "
955 "ASYNC_STATUS iocb received evt_code "
956 "0x%x\n",
957 pring->ringno,
958 irsp->un.asyncstat.evt_code);
959 return 1;
960 }
961
dea31012005-04-17 16:05:31 -0500962 if ((irsp->ulpCommand == CMD_RCV_ELS_REQ64_CX)
James Smarted957682007-06-17 19:56:37 -0500963 || (irsp->ulpCommand == CMD_RCV_ELS_REQ_CX)
964 || (irsp->ulpCommand == CMD_IOCB_RCV_ELS64_CX)
965 || (irsp->ulpCommand == CMD_IOCB_RCV_CONT64_CX)) {
dea31012005-04-17 16:05:31 -0500966 Rctl = FC_ELS_REQ;
967 Type = FC_ELS_DATA;
968 } else {
969 w5p =
970 (WORD5 *) & (saveq->iocb.un.
971 ulpWord[5]);
972 Rctl = w5p->hcsw.Rctl;
973 Type = w5p->hcsw.Type;
974
975 /* Firmware Workaround */
976 if ((Rctl == 0) && (pring->ringno == LPFC_ELS_RING) &&
James Smart92d7f7b2007-06-17 19:56:38 -0500977 (irsp->ulpCommand == CMD_RCV_SEQUENCE64_CX ||
978 irsp->ulpCommand == CMD_IOCB_RCV_SEQ64_CX)) {
dea31012005-04-17 16:05:31 -0500979 Rctl = FC_ELS_REQ;
980 Type = FC_ELS_DATA;
981 w5p->hcsw.Rctl = Rctl;
982 w5p->hcsw.Type = Type;
983 }
984 }
James Smart92d7f7b2007-06-17 19:56:38 -0500985
986 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
987 if (irsp->ulpBdeCount != 0)
988 saveq->context2 = lpfc_sli_replace_hbqbuff(phba,
989 irsp->un.ulpWord[3]);
990 if (irsp->ulpBdeCount == 2)
991 saveq->context3 = lpfc_sli_replace_hbqbuff(phba,
James Smart51ef4c22007-08-02 11:10:31 -0400992 irsp->unsli3.sli3Words[7]);
James Smart92d7f7b2007-06-17 19:56:38 -0500993 }
994
dea31012005-04-17 16:05:31 -0500995 /* unSolicited Responses */
996 if (pring->prt[0].profile) {
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -0500997 if (pring->prt[0].lpfc_sli_rcv_unsol_event)
998 (pring->prt[0].lpfc_sli_rcv_unsol_event) (phba, pring,
999 saveq);
dea31012005-04-17 16:05:31 -05001000 match = 1;
1001 } else {
1002 /* We must search, based on rctl / type
1003 for the right routine */
1004 for (i = 0; i < pring->num_mask;
1005 i++) {
1006 if ((pring->prt[i].rctl ==
1007 Rctl)
1008 && (pring->prt[i].
1009 type == Type)) {
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05001010 if (pring->prt[i].lpfc_sli_rcv_unsol_event)
1011 (pring->prt[i].lpfc_sli_rcv_unsol_event)
1012 (phba, pring, saveq);
dea31012005-04-17 16:05:31 -05001013 match = 1;
1014 break;
1015 }
1016 }
1017 }
1018 if (match == 0) {
1019 /* Unexpected Rctl / Type received */
1020 /* Ring <ringno> handler: unexpected
1021 Rctl <Rctl> Type <Type> received */
James Smart92d7f7b2007-06-17 19:56:38 -05001022 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04001023 "0313 Ring %d handler: unexpected Rctl x%x "
James Smart92d7f7b2007-06-17 19:56:38 -05001024 "Type x%x received\n",
James Smarte8b62012007-08-02 11:10:09 -04001025 pring->ringno, Rctl, Type);
dea31012005-04-17 16:05:31 -05001026 }
James Smart92d7f7b2007-06-17 19:56:38 -05001027 return 1;
dea31012005-04-17 16:05:31 -05001028}
1029
1030static struct lpfc_iocbq *
James Smart2e0fef82007-06-17 19:56:36 -05001031lpfc_sli_iocbq_lookup(struct lpfc_hba *phba,
1032 struct lpfc_sli_ring *pring,
1033 struct lpfc_iocbq *prspiocb)
dea31012005-04-17 16:05:31 -05001034{
dea31012005-04-17 16:05:31 -05001035 struct lpfc_iocbq *cmd_iocb = NULL;
1036 uint16_t iotag;
1037
James Bottomley604a3e32005-10-29 10:28:33 -05001038 iotag = prspiocb->iocb.ulpIoTag;
dea31012005-04-17 16:05:31 -05001039
James Bottomley604a3e32005-10-29 10:28:33 -05001040 if (iotag != 0 && iotag <= phba->sli.last_iotag) {
1041 cmd_iocb = phba->sli.iocbq_lookup[iotag];
James Smart92d7f7b2007-06-17 19:56:38 -05001042 list_del_init(&cmd_iocb->list);
James Bottomley604a3e32005-10-29 10:28:33 -05001043 pring->txcmplq_cnt--;
1044 return cmd_iocb;
dea31012005-04-17 16:05:31 -05001045 }
1046
dea31012005-04-17 16:05:31 -05001047 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04001048 "0317 iotag x%x is out off "
James Bottomley604a3e32005-10-29 10:28:33 -05001049 "range: max iotag x%x wd0 x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04001050 iotag, phba->sli.last_iotag,
James Bottomley604a3e32005-10-29 10:28:33 -05001051 *(((uint32_t *) &prspiocb->iocb) + 7));
dea31012005-04-17 16:05:31 -05001052 return NULL;
1053}
1054
1055static int
James Smart2e0fef82007-06-17 19:56:36 -05001056lpfc_sli_process_sol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
dea31012005-04-17 16:05:31 -05001057 struct lpfc_iocbq *saveq)
1058{
James Smart2e0fef82007-06-17 19:56:36 -05001059 struct lpfc_iocbq *cmdiocbp;
dea31012005-04-17 16:05:31 -05001060 int rc = 1;
1061 unsigned long iflag;
1062
1063 /* Based on the iotag field, get the cmd IOCB from the txcmplq */
James Smart2e0fef82007-06-17 19:56:36 -05001064 spin_lock_irqsave(&phba->hbalock, iflag);
James Bottomley604a3e32005-10-29 10:28:33 -05001065 cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring, saveq);
James Smart2e0fef82007-06-17 19:56:36 -05001066 spin_unlock_irqrestore(&phba->hbalock, iflag);
1067
dea31012005-04-17 16:05:31 -05001068 if (cmdiocbp) {
1069 if (cmdiocbp->iocb_cmpl) {
1070 /*
1071 * Post all ELS completions to the worker thread.
1072 * All other are passed to the completion callback.
1073 */
1074 if (pring->ringno == LPFC_ELS_RING) {
James Smart07951072007-04-25 09:51:38 -04001075 if (cmdiocbp->iocb_flag & LPFC_DRIVER_ABORTED) {
1076 cmdiocbp->iocb_flag &=
1077 ~LPFC_DRIVER_ABORTED;
1078 saveq->iocb.ulpStatus =
1079 IOSTAT_LOCAL_REJECT;
1080 saveq->iocb.un.ulpWord[4] =
1081 IOERR_SLI_ABORTED;
1082 }
dea31012005-04-17 16:05:31 -05001083 }
James Smart2e0fef82007-06-17 19:56:36 -05001084 (cmdiocbp->iocb_cmpl) (phba, cmdiocbp, saveq);
James Bottomley604a3e32005-10-29 10:28:33 -05001085 } else
1086 lpfc_sli_release_iocbq(phba, cmdiocbp);
dea31012005-04-17 16:05:31 -05001087 } else {
1088 /*
1089 * Unknown initiating command based on the response iotag.
1090 * This could be the case on the ELS ring because of
1091 * lpfc_els_abort().
1092 */
1093 if (pring->ringno != LPFC_ELS_RING) {
1094 /*
1095 * Ring <ringno> handler: unexpected completion IoTag
1096 * <IoTag>
1097 */
James Smarte8b62012007-08-02 11:10:09 -04001098 lpfc_printf_vlog(cmdiocbp->vport, KERN_WARNING, LOG_SLI,
1099 "0322 Ring %d handler: "
1100 "unexpected completion IoTag x%x "
1101 "Data: x%x x%x x%x x%x\n",
1102 pring->ringno,
1103 saveq->iocb.ulpIoTag,
1104 saveq->iocb.ulpStatus,
1105 saveq->iocb.un.ulpWord[4],
1106 saveq->iocb.ulpCommand,
1107 saveq->iocb.ulpContext);
dea31012005-04-17 16:05:31 -05001108 }
1109 }
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04001110
dea31012005-04-17 16:05:31 -05001111 return rc;
1112}
1113
James Smart2e0fef82007-06-17 19:56:36 -05001114static void
1115lpfc_sli_rsp_pointers_error(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001116{
James Smarted957682007-06-17 19:56:37 -05001117 struct lpfc_pgp *pgp = (phba->sli_rev == 3) ?
1118 &phba->slim2p->mbx.us.s3_pgp.port[pring->ringno] :
1119 &phba->slim2p->mbx.us.s2.port[pring->ringno];
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001120 /*
1121 * Ring <ringno> handler: portRspPut <portRspPut> is bigger then
1122 * rsp ring <portRspMax>
1123 */
1124 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04001125 "0312 Ring %d handler: portRspPut %d "
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001126 "is bigger then rsp ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -04001127 pring->ringno, le32_to_cpu(pgp->rspPutInx),
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001128 pring->numRiocb);
1129
James Smart2e0fef82007-06-17 19:56:36 -05001130 phba->link_state = LPFC_HBA_ERROR;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001131
1132 /*
1133 * All error attention handlers are posted to
1134 * worker thread
1135 */
1136 phba->work_ha |= HA_ERATT;
1137 phba->work_hs = HS_FFER3;
James Smart92d7f7b2007-06-17 19:56:38 -05001138
1139 /* hbalock should already be held */
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001140 if (phba->work_wait)
James Smart92d7f7b2007-06-17 19:56:38 -05001141 lpfc_worker_wake_up(phba);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001142
1143 return;
1144}
1145
James Smart2e0fef82007-06-17 19:56:36 -05001146void lpfc_sli_poll_fcp_ring(struct lpfc_hba *phba)
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001147{
James Smart2e0fef82007-06-17 19:56:36 -05001148 struct lpfc_sli *psli = &phba->sli;
1149 struct lpfc_sli_ring *pring = &psli->ring[LPFC_FCP_RING];
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001150 IOCB_t *irsp = NULL;
1151 IOCB_t *entry = NULL;
1152 struct lpfc_iocbq *cmdiocbq = NULL;
1153 struct lpfc_iocbq rspiocbq;
1154 struct lpfc_pgp *pgp;
1155 uint32_t status;
1156 uint32_t portRspPut, portRspMax;
1157 int type;
1158 uint32_t rsp_cmpl = 0;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001159 uint32_t ha_copy;
James Smart2e0fef82007-06-17 19:56:36 -05001160 unsigned long iflags;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001161
1162 pring->stats.iocb_event++;
1163
James Smarted957682007-06-17 19:56:37 -05001164 pgp = (phba->sli_rev == 3) ?
1165 &phba->slim2p->mbx.us.s3_pgp.port[pring->ringno] :
1166 &phba->slim2p->mbx.us.s2.port[pring->ringno];
1167
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001168
1169 /*
1170 * The next available response entry should never exceed the maximum
1171 * entries. If it does, treat it as an adapter hardware error.
1172 */
1173 portRspMax = pring->numRiocb;
1174 portRspPut = le32_to_cpu(pgp->rspPutInx);
1175 if (unlikely(portRspPut >= portRspMax)) {
1176 lpfc_sli_rsp_pointers_error(phba, pring);
1177 return;
1178 }
1179
1180 rmb();
1181 while (pring->rspidx != portRspPut) {
James Smarted957682007-06-17 19:56:37 -05001182 entry = lpfc_resp_iocb(phba, pring);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001183 if (++pring->rspidx >= portRspMax)
1184 pring->rspidx = 0;
1185
1186 lpfc_sli_pcimem_bcopy((uint32_t *) entry,
1187 (uint32_t *) &rspiocbq.iocb,
James Smart92d7f7b2007-06-17 19:56:38 -05001188 phba->iocb_rsp_size);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001189 irsp = &rspiocbq.iocb;
1190 type = lpfc_sli_iocb_cmd_type(irsp->ulpCommand & CMD_IOCB_MASK);
1191 pring->stats.iocb_rsp++;
1192 rsp_cmpl++;
1193
1194 if (unlikely(irsp->ulpStatus)) {
1195 /* Rsp ring <ringno> error: IOCB */
1196 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04001197 "0326 Rsp Ring %d error: IOCB Data: "
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001198 "x%x x%x x%x x%x x%x x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04001199 pring->ringno,
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001200 irsp->un.ulpWord[0],
1201 irsp->un.ulpWord[1],
1202 irsp->un.ulpWord[2],
1203 irsp->un.ulpWord[3],
1204 irsp->un.ulpWord[4],
1205 irsp->un.ulpWord[5],
1206 *(((uint32_t *) irsp) + 6),
1207 *(((uint32_t *) irsp) + 7));
1208 }
1209
1210 switch (type) {
1211 case LPFC_ABORT_IOCB:
1212 case LPFC_SOL_IOCB:
1213 /*
1214 * Idle exchange closed via ABTS from port. No iocb
1215 * resources need to be recovered.
1216 */
1217 if (unlikely(irsp->ulpCommand == CMD_XRI_ABORTED_CX)) {
James Smartdca94792006-08-01 07:34:08 -04001218 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04001219 "0314 IOCB cmd 0x%x "
1220 "processed. Skipping "
1221 "completion",
James Smartdca94792006-08-01 07:34:08 -04001222 irsp->ulpCommand);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001223 break;
1224 }
1225
James Smart2e0fef82007-06-17 19:56:36 -05001226 spin_lock_irqsave(&phba->hbalock, iflags);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001227 cmdiocbq = lpfc_sli_iocbq_lookup(phba, pring,
1228 &rspiocbq);
James Smart2e0fef82007-06-17 19:56:36 -05001229 spin_unlock_irqrestore(&phba->hbalock, iflags);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001230 if ((cmdiocbq) && (cmdiocbq->iocb_cmpl)) {
1231 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq,
1232 &rspiocbq);
1233 }
1234 break;
1235 default:
1236 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
1237 char adaptermsg[LPFC_MAX_ADPTMSG];
1238 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
1239 memcpy(&adaptermsg[0], (uint8_t *) irsp,
1240 MAX_MSG_DATA);
Joe Perches898eb712007-10-18 03:06:30 -07001241 dev_warn(&((phba->pcidev)->dev),
1242 "lpfc%d: %s\n",
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001243 phba->brd_no, adaptermsg);
1244 } else {
1245 /* Unknown IOCB command */
1246 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04001247 "0321 Unknown IOCB command "
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001248 "Data: x%x, x%x x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04001249 type, irsp->ulpCommand,
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001250 irsp->ulpStatus,
1251 irsp->ulpIoTag,
1252 irsp->ulpContext);
1253 }
1254 break;
1255 }
1256
1257 /*
1258 * The response IOCB has been processed. Update the ring
1259 * pointer in SLIM. If the port response put pointer has not
1260 * been updated, sync the pgp->rspPutInx and fetch the new port
1261 * response put pointer.
1262 */
James Smarted957682007-06-17 19:56:37 -05001263 writel(pring->rspidx, &phba->host_gp[pring->ringno].rspGetInx);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001264
1265 if (pring->rspidx == portRspPut)
1266 portRspPut = le32_to_cpu(pgp->rspPutInx);
1267 }
1268
1269 ha_copy = readl(phba->HAregaddr);
1270 ha_copy >>= (LPFC_FCP_RING * 4);
1271
1272 if ((rsp_cmpl > 0) && (ha_copy & HA_R0RE_REQ)) {
James Smart2e0fef82007-06-17 19:56:36 -05001273 spin_lock_irqsave(&phba->hbalock, iflags);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001274 pring->stats.iocb_rsp_full++;
1275 status = ((CA_R0ATT | CA_R0RE_RSP) << (LPFC_FCP_RING * 4));
1276 writel(status, phba->CAregaddr);
1277 readl(phba->CAregaddr);
James Smart2e0fef82007-06-17 19:56:36 -05001278 spin_unlock_irqrestore(&phba->hbalock, iflags);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001279 }
1280 if ((ha_copy & HA_R0CE_RSP) &&
1281 (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
James Smart2e0fef82007-06-17 19:56:36 -05001282 spin_lock_irqsave(&phba->hbalock, iflags);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001283 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
1284 pring->stats.iocb_cmd_empty++;
1285
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);
1289
1290 if ((pring->lpfc_sli_cmd_available))
1291 (pring->lpfc_sli_cmd_available) (phba, pring);
1292
James Smart2e0fef82007-06-17 19:56:36 -05001293 spin_unlock_irqrestore(&phba->hbalock, iflags);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001294 }
1295
1296 return;
1297}
1298
dea31012005-04-17 16:05:31 -05001299/*
1300 * This routine presumes LPFC_FCP_RING handling and doesn't bother
1301 * to check it explicitly.
1302 */
1303static int
James Smart2e0fef82007-06-17 19:56:36 -05001304lpfc_sli_handle_fast_ring_event(struct lpfc_hba *phba,
1305 struct lpfc_sli_ring *pring, uint32_t mask)
dea31012005-04-17 16:05:31 -05001306{
James Smarted957682007-06-17 19:56:37 -05001307 struct lpfc_pgp *pgp = (phba->sli_rev == 3) ?
1308 &phba->slim2p->mbx.us.s3_pgp.port[pring->ringno] :
1309 &phba->slim2p->mbx.us.s2.port[pring->ringno];
dea31012005-04-17 16:05:31 -05001310 IOCB_t *irsp = NULL;
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04001311 IOCB_t *entry = NULL;
dea31012005-04-17 16:05:31 -05001312 struct lpfc_iocbq *cmdiocbq = NULL;
1313 struct lpfc_iocbq rspiocbq;
dea31012005-04-17 16:05:31 -05001314 uint32_t status;
1315 uint32_t portRspPut, portRspMax;
1316 int rc = 1;
1317 lpfc_iocb_type type;
1318 unsigned long iflag;
1319 uint32_t rsp_cmpl = 0;
dea31012005-04-17 16:05:31 -05001320
James Smart2e0fef82007-06-17 19:56:36 -05001321 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05001322 pring->stats.iocb_event++;
1323
dea31012005-04-17 16:05:31 -05001324 /*
1325 * The next available response entry should never exceed the maximum
1326 * entries. If it does, treat it as an adapter hardware error.
1327 */
1328 portRspMax = pring->numRiocb;
1329 portRspPut = le32_to_cpu(pgp->rspPutInx);
1330 if (unlikely(portRspPut >= portRspMax)) {
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001331 lpfc_sli_rsp_pointers_error(phba, pring);
James Smart2e0fef82007-06-17 19:56:36 -05001332 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05001333 return 1;
1334 }
1335
1336 rmb();
1337 while (pring->rspidx != portRspPut) {
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04001338 /*
1339 * Fetch an entry off the ring and copy it into a local data
1340 * structure. The copy involves a byte-swap since the
1341 * network byte order and pci byte orders are different.
1342 */
James Smarted957682007-06-17 19:56:37 -05001343 entry = lpfc_resp_iocb(phba, pring);
James Smart858c9f62007-06-17 19:56:39 -05001344 phba->last_completion_time = jiffies;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001345
1346 if (++pring->rspidx >= portRspMax)
1347 pring->rspidx = 0;
1348
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04001349 lpfc_sli_pcimem_bcopy((uint32_t *) entry,
1350 (uint32_t *) &rspiocbq.iocb,
James Smarted957682007-06-17 19:56:37 -05001351 phba->iocb_rsp_size);
James Smarta4bc3372006-12-02 13:34:16 -05001352 INIT_LIST_HEAD(&(rspiocbq.list));
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04001353 irsp = &rspiocbq.iocb;
1354
dea31012005-04-17 16:05:31 -05001355 type = lpfc_sli_iocb_cmd_type(irsp->ulpCommand & CMD_IOCB_MASK);
1356 pring->stats.iocb_rsp++;
1357 rsp_cmpl++;
1358
1359 if (unlikely(irsp->ulpStatus)) {
James Smart92d7f7b2007-06-17 19:56:38 -05001360 /*
1361 * If resource errors reported from HBA, reduce
1362 * queuedepths of the SCSI device.
1363 */
1364 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
1365 (irsp->un.ulpWord[4] == IOERR_NO_RESOURCES)) {
1366 spin_unlock_irqrestore(&phba->hbalock, iflag);
1367 lpfc_adjust_queue_depth(phba);
1368 spin_lock_irqsave(&phba->hbalock, iflag);
1369 }
1370
dea31012005-04-17 16:05:31 -05001371 /* Rsp ring <ringno> error: IOCB */
1372 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04001373 "0336 Rsp Ring %d error: IOCB Data: "
James Smart92d7f7b2007-06-17 19:56:38 -05001374 "x%x x%x x%x x%x x%x x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04001375 pring->ringno,
James Smart92d7f7b2007-06-17 19:56:38 -05001376 irsp->un.ulpWord[0],
1377 irsp->un.ulpWord[1],
1378 irsp->un.ulpWord[2],
1379 irsp->un.ulpWord[3],
1380 irsp->un.ulpWord[4],
1381 irsp->un.ulpWord[5],
1382 *(((uint32_t *) irsp) + 6),
1383 *(((uint32_t *) irsp) + 7));
dea31012005-04-17 16:05:31 -05001384 }
1385
1386 switch (type) {
1387 case LPFC_ABORT_IOCB:
1388 case LPFC_SOL_IOCB:
1389 /*
1390 * Idle exchange closed via ABTS from port. No iocb
1391 * resources need to be recovered.
1392 */
1393 if (unlikely(irsp->ulpCommand == CMD_XRI_ABORTED_CX)) {
James Smartdca94792006-08-01 07:34:08 -04001394 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04001395 "0333 IOCB cmd 0x%x"
James Smartdca94792006-08-01 07:34:08 -04001396 " processed. Skipping"
James Smart92d7f7b2007-06-17 19:56:38 -05001397 " completion\n",
James Smartdca94792006-08-01 07:34:08 -04001398 irsp->ulpCommand);
dea31012005-04-17 16:05:31 -05001399 break;
1400 }
1401
James Bottomley604a3e32005-10-29 10:28:33 -05001402 cmdiocbq = lpfc_sli_iocbq_lookup(phba, pring,
1403 &rspiocbq);
dea31012005-04-17 16:05:31 -05001404 if ((cmdiocbq) && (cmdiocbq->iocb_cmpl)) {
Jamie Wellnitzb8086082006-02-28 22:33:12 -05001405 if (phba->cfg_poll & ENABLE_FCP_RING_POLLING) {
1406 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq,
1407 &rspiocbq);
1408 } else {
James Smart2e0fef82007-06-17 19:56:36 -05001409 spin_unlock_irqrestore(&phba->hbalock,
1410 iflag);
Jamie Wellnitzb8086082006-02-28 22:33:12 -05001411 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq,
1412 &rspiocbq);
James Smart2e0fef82007-06-17 19:56:36 -05001413 spin_lock_irqsave(&phba->hbalock,
Jamie Wellnitzb8086082006-02-28 22:33:12 -05001414 iflag);
1415 }
dea31012005-04-17 16:05:31 -05001416 }
1417 break;
James Smarta4bc3372006-12-02 13:34:16 -05001418 case LPFC_UNSOL_IOCB:
James Smart2e0fef82007-06-17 19:56:36 -05001419 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smarta4bc3372006-12-02 13:34:16 -05001420 lpfc_sli_process_unsol_iocb(phba, pring, &rspiocbq);
James Smart2e0fef82007-06-17 19:56:36 -05001421 spin_lock_irqsave(&phba->hbalock, iflag);
James Smarta4bc3372006-12-02 13:34:16 -05001422 break;
dea31012005-04-17 16:05:31 -05001423 default:
1424 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
1425 char adaptermsg[LPFC_MAX_ADPTMSG];
1426 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
1427 memcpy(&adaptermsg[0], (uint8_t *) irsp,
1428 MAX_MSG_DATA);
Joe Perches898eb712007-10-18 03:06:30 -07001429 dev_warn(&((phba->pcidev)->dev),
1430 "lpfc%d: %s\n",
dea31012005-04-17 16:05:31 -05001431 phba->brd_no, adaptermsg);
1432 } else {
1433 /* Unknown IOCB command */
1434 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04001435 "0334 Unknown IOCB command "
James Smart92d7f7b2007-06-17 19:56:38 -05001436 "Data: x%x, x%x x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04001437 type, irsp->ulpCommand,
James Smart92d7f7b2007-06-17 19:56:38 -05001438 irsp->ulpStatus,
1439 irsp->ulpIoTag,
1440 irsp->ulpContext);
dea31012005-04-17 16:05:31 -05001441 }
1442 break;
1443 }
1444
1445 /*
1446 * The response IOCB has been processed. Update the ring
1447 * pointer in SLIM. If the port response put pointer has not
1448 * been updated, sync the pgp->rspPutInx and fetch the new port
1449 * response put pointer.
1450 */
James Smarted957682007-06-17 19:56:37 -05001451 writel(pring->rspidx, &phba->host_gp[pring->ringno].rspGetInx);
dea31012005-04-17 16:05:31 -05001452
1453 if (pring->rspidx == portRspPut)
1454 portRspPut = le32_to_cpu(pgp->rspPutInx);
1455 }
1456
1457 if ((rsp_cmpl > 0) && (mask & HA_R0RE_REQ)) {
1458 pring->stats.iocb_rsp_full++;
1459 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
1460 writel(status, phba->CAregaddr);
1461 readl(phba->CAregaddr);
1462 }
1463 if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
1464 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
1465 pring->stats.iocb_cmd_empty++;
1466
1467 /* Force update of the local copy of cmdGetInx */
1468 pring->local_getidx = le32_to_cpu(pgp->cmdGetInx);
1469 lpfc_sli_resume_iocb(phba, pring);
1470
1471 if ((pring->lpfc_sli_cmd_available))
1472 (pring->lpfc_sli_cmd_available) (phba, pring);
1473
1474 }
1475
James Smart2e0fef82007-06-17 19:56:36 -05001476 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05001477 return rc;
1478}
1479
dea31012005-04-17 16:05:31 -05001480int
James Smart2e0fef82007-06-17 19:56:36 -05001481lpfc_sli_handle_slow_ring_event(struct lpfc_hba *phba,
1482 struct lpfc_sli_ring *pring, uint32_t mask)
dea31012005-04-17 16:05:31 -05001483{
James Smarted957682007-06-17 19:56:37 -05001484 struct lpfc_pgp *pgp = (phba->sli_rev == 3) ?
1485 &phba->slim2p->mbx.us.s3_pgp.port[pring->ringno] :
1486 &phba->slim2p->mbx.us.s2.port[pring->ringno];
dea31012005-04-17 16:05:31 -05001487 IOCB_t *entry;
1488 IOCB_t *irsp = NULL;
1489 struct lpfc_iocbq *rspiocbp = NULL;
1490 struct lpfc_iocbq *next_iocb;
1491 struct lpfc_iocbq *cmdiocbp;
1492 struct lpfc_iocbq *saveq;
dea31012005-04-17 16:05:31 -05001493 uint8_t iocb_cmd_type;
1494 lpfc_iocb_type type;
1495 uint32_t status, free_saveq;
1496 uint32_t portRspPut, portRspMax;
1497 int rc = 1;
1498 unsigned long iflag;
dea31012005-04-17 16:05:31 -05001499
James Smart2e0fef82007-06-17 19:56:36 -05001500 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05001501 pring->stats.iocb_event++;
1502
dea31012005-04-17 16:05:31 -05001503 /*
1504 * The next available response entry should never exceed the maximum
1505 * entries. If it does, treat it as an adapter hardware error.
1506 */
1507 portRspMax = pring->numRiocb;
1508 portRspPut = le32_to_cpu(pgp->rspPutInx);
1509 if (portRspPut >= portRspMax) {
1510 /*
1511 * Ring <ringno> handler: portRspPut <portRspPut> is bigger then
1512 * rsp ring <portRspMax>
1513 */
James Smarted957682007-06-17 19:56:37 -05001514 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04001515 "0303 Ring %d handler: portRspPut %d "
dea31012005-04-17 16:05:31 -05001516 "is bigger then rsp ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -04001517 pring->ringno, portRspPut, portRspMax);
dea31012005-04-17 16:05:31 -05001518
James Smart2e0fef82007-06-17 19:56:36 -05001519 phba->link_state = LPFC_HBA_ERROR;
1520 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05001521
1522 phba->work_hs = HS_FFER3;
1523 lpfc_handle_eratt(phba);
1524
1525 return 1;
1526 }
1527
1528 rmb();
dea31012005-04-17 16:05:31 -05001529 while (pring->rspidx != portRspPut) {
1530 /*
1531 * Build a completion list and call the appropriate handler.
1532 * The process is to get the next available response iocb, get
1533 * a free iocb from the list, copy the response data into the
1534 * free iocb, insert to the continuation list, and update the
1535 * next response index to slim. This process makes response
1536 * iocb's in the ring available to DMA as fast as possible but
1537 * pays a penalty for a copy operation. Since the iocb is
1538 * only 32 bytes, this penalty is considered small relative to
1539 * the PCI reads for register values and a slim write. When
1540 * the ulpLe field is set, the entire Command has been
1541 * received.
1542 */
James Smarted957682007-06-17 19:56:37 -05001543 entry = lpfc_resp_iocb(phba, pring);
1544
James Smart858c9f62007-06-17 19:56:39 -05001545 phba->last_completion_time = jiffies;
James Smart2e0fef82007-06-17 19:56:36 -05001546 rspiocbp = __lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -05001547 if (rspiocbp == NULL) {
1548 printk(KERN_ERR "%s: out of buffers! Failing "
1549 "completion.\n", __FUNCTION__);
1550 break;
1551 }
1552
James Smarted957682007-06-17 19:56:37 -05001553 lpfc_sli_pcimem_bcopy(entry, &rspiocbp->iocb,
1554 phba->iocb_rsp_size);
dea31012005-04-17 16:05:31 -05001555 irsp = &rspiocbp->iocb;
1556
1557 if (++pring->rspidx >= portRspMax)
1558 pring->rspidx = 0;
1559
James Smarta58cbd52007-08-02 11:09:43 -04001560 if (pring->ringno == LPFC_ELS_RING) {
1561 lpfc_debugfs_slow_ring_trc(phba,
1562 "IOCB rsp ring: wd4:x%08x wd6:x%08x wd7:x%08x",
1563 *(((uint32_t *) irsp) + 4),
1564 *(((uint32_t *) irsp) + 6),
1565 *(((uint32_t *) irsp) + 7));
1566 }
1567
James Smarted957682007-06-17 19:56:37 -05001568 writel(pring->rspidx, &phba->host_gp[pring->ringno].rspGetInx);
dea31012005-04-17 16:05:31 -05001569
1570 if (list_empty(&(pring->iocb_continueq))) {
1571 list_add(&rspiocbp->list, &(pring->iocb_continueq));
1572 } else {
1573 list_add_tail(&rspiocbp->list,
1574 &(pring->iocb_continueq));
1575 }
1576
1577 pring->iocb_continueq_cnt++;
1578 if (irsp->ulpLe) {
1579 /*
1580 * By default, the driver expects to free all resources
1581 * associated with this iocb completion.
1582 */
1583 free_saveq = 1;
1584 saveq = list_get_first(&pring->iocb_continueq,
1585 struct lpfc_iocbq, list);
1586 irsp = &(saveq->iocb);
1587 list_del_init(&pring->iocb_continueq);
1588 pring->iocb_continueq_cnt = 0;
1589
1590 pring->stats.iocb_rsp++;
1591
James Smart92d7f7b2007-06-17 19:56:38 -05001592 /*
1593 * If resource errors reported from HBA, reduce
1594 * queuedepths of the SCSI device.
1595 */
1596 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
1597 (irsp->un.ulpWord[4] == IOERR_NO_RESOURCES)) {
1598 spin_unlock_irqrestore(&phba->hbalock, iflag);
1599 lpfc_adjust_queue_depth(phba);
1600 spin_lock_irqsave(&phba->hbalock, iflag);
1601 }
1602
dea31012005-04-17 16:05:31 -05001603 if (irsp->ulpStatus) {
1604 /* Rsp ring <ringno> error: IOCB */
James Smarted957682007-06-17 19:56:37 -05001605 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04001606 "0328 Rsp Ring %d error: "
James Smarted957682007-06-17 19:56:37 -05001607 "IOCB Data: "
1608 "x%x x%x x%x x%x "
1609 "x%x x%x x%x x%x "
1610 "x%x x%x x%x x%x "
1611 "x%x x%x x%x x%x\n",
James Smarted957682007-06-17 19:56:37 -05001612 pring->ringno,
1613 irsp->un.ulpWord[0],
1614 irsp->un.ulpWord[1],
1615 irsp->un.ulpWord[2],
1616 irsp->un.ulpWord[3],
1617 irsp->un.ulpWord[4],
1618 irsp->un.ulpWord[5],
1619 *(((uint32_t *) irsp) + 6),
1620 *(((uint32_t *) irsp) + 7),
1621 *(((uint32_t *) irsp) + 8),
1622 *(((uint32_t *) irsp) + 9),
1623 *(((uint32_t *) irsp) + 10),
1624 *(((uint32_t *) irsp) + 11),
1625 *(((uint32_t *) irsp) + 12),
1626 *(((uint32_t *) irsp) + 13),
1627 *(((uint32_t *) irsp) + 14),
1628 *(((uint32_t *) irsp) + 15));
dea31012005-04-17 16:05:31 -05001629 }
1630
1631 /*
1632 * Fetch the IOCB command type and call the correct
1633 * completion routine. Solicited and Unsolicited
1634 * IOCBs on the ELS ring get freed back to the
1635 * lpfc_iocb_list by the discovery kernel thread.
1636 */
1637 iocb_cmd_type = irsp->ulpCommand & CMD_IOCB_MASK;
1638 type = lpfc_sli_iocb_cmd_type(iocb_cmd_type);
1639 if (type == LPFC_SOL_IOCB) {
James Smart2e0fef82007-06-17 19:56:36 -05001640 spin_unlock_irqrestore(&phba->hbalock,
dea31012005-04-17 16:05:31 -05001641 iflag);
1642 rc = lpfc_sli_process_sol_iocb(phba, pring,
James Smart2e0fef82007-06-17 19:56:36 -05001643 saveq);
1644 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05001645 } else if (type == LPFC_UNSOL_IOCB) {
James Smart2e0fef82007-06-17 19:56:36 -05001646 spin_unlock_irqrestore(&phba->hbalock,
dea31012005-04-17 16:05:31 -05001647 iflag);
1648 rc = lpfc_sli_process_unsol_iocb(phba, pring,
James Smart2e0fef82007-06-17 19:56:36 -05001649 saveq);
1650 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05001651 } else if (type == LPFC_ABORT_IOCB) {
1652 if ((irsp->ulpCommand != CMD_XRI_ABORTED_CX) &&
1653 ((cmdiocbp =
James Bottomley604a3e32005-10-29 10:28:33 -05001654 lpfc_sli_iocbq_lookup(phba, pring,
1655 saveq)))) {
dea31012005-04-17 16:05:31 -05001656 /* Call the specified completion
1657 routine */
1658 if (cmdiocbp->iocb_cmpl) {
1659 spin_unlock_irqrestore(
James Smart2e0fef82007-06-17 19:56:36 -05001660 &phba->hbalock,
dea31012005-04-17 16:05:31 -05001661 iflag);
1662 (cmdiocbp->iocb_cmpl) (phba,
1663 cmdiocbp, saveq);
1664 spin_lock_irqsave(
James Smart2e0fef82007-06-17 19:56:36 -05001665 &phba->hbalock,
dea31012005-04-17 16:05:31 -05001666 iflag);
James Bottomley604a3e32005-10-29 10:28:33 -05001667 } else
James Smart2e0fef82007-06-17 19:56:36 -05001668 __lpfc_sli_release_iocbq(phba,
James Bottomley604a3e32005-10-29 10:28:33 -05001669 cmdiocbp);
dea31012005-04-17 16:05:31 -05001670 }
1671 } else if (type == LPFC_UNKNOWN_IOCB) {
1672 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
1673
1674 char adaptermsg[LPFC_MAX_ADPTMSG];
1675
1676 memset(adaptermsg, 0,
1677 LPFC_MAX_ADPTMSG);
1678 memcpy(&adaptermsg[0], (uint8_t *) irsp,
1679 MAX_MSG_DATA);
1680 dev_warn(&((phba->pcidev)->dev),
Joe Perches898eb712007-10-18 03:06:30 -07001681 "lpfc%d: %s\n",
dea31012005-04-17 16:05:31 -05001682 phba->brd_no, adaptermsg);
1683 } else {
1684 /* Unknown IOCB command */
James Smart92d7f7b2007-06-17 19:56:38 -05001685 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04001686 "0335 Unknown IOCB "
James Smart92d7f7b2007-06-17 19:56:38 -05001687 "command Data: x%x "
1688 "x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05001689 irsp->ulpCommand,
1690 irsp->ulpStatus,
1691 irsp->ulpIoTag,
1692 irsp->ulpContext);
dea31012005-04-17 16:05:31 -05001693 }
1694 }
1695
1696 if (free_saveq) {
James Smart2e0fef82007-06-17 19:56:36 -05001697 list_for_each_entry_safe(rspiocbp, next_iocb,
1698 &saveq->list, list) {
1699 list_del(&rspiocbp->list);
1700 __lpfc_sli_release_iocbq(phba,
1701 rspiocbp);
dea31012005-04-17 16:05:31 -05001702 }
James Smart2e0fef82007-06-17 19:56:36 -05001703 __lpfc_sli_release_iocbq(phba, saveq);
dea31012005-04-17 16:05:31 -05001704 }
James Smart92d7f7b2007-06-17 19:56:38 -05001705 rspiocbp = NULL;
dea31012005-04-17 16:05:31 -05001706 }
1707
1708 /*
1709 * If the port response put pointer has not been updated, sync
1710 * the pgp->rspPutInx in the MAILBOX_tand fetch the new port
1711 * response put pointer.
1712 */
1713 if (pring->rspidx == portRspPut) {
1714 portRspPut = le32_to_cpu(pgp->rspPutInx);
1715 }
1716 } /* while (pring->rspidx != portRspPut) */
1717
James Smart92d7f7b2007-06-17 19:56:38 -05001718 if ((rspiocbp != NULL) && (mask & HA_R0RE_REQ)) {
dea31012005-04-17 16:05:31 -05001719 /* At least one response entry has been freed */
1720 pring->stats.iocb_rsp_full++;
1721 /* SET RxRE_RSP in Chip Att register */
1722 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
1723 writel(status, phba->CAregaddr);
1724 readl(phba->CAregaddr); /* flush */
1725 }
1726 if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
1727 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
1728 pring->stats.iocb_cmd_empty++;
1729
1730 /* Force update of the local copy of cmdGetInx */
1731 pring->local_getidx = le32_to_cpu(pgp->cmdGetInx);
1732 lpfc_sli_resume_iocb(phba, pring);
1733
1734 if ((pring->lpfc_sli_cmd_available))
1735 (pring->lpfc_sli_cmd_available) (phba, pring);
1736
1737 }
1738
James Smart2e0fef82007-06-17 19:56:36 -05001739 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05001740 return rc;
1741}
1742
James Smart2e0fef82007-06-17 19:56:36 -05001743void
dea31012005-04-17 16:05:31 -05001744lpfc_sli_abort_iocb_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
1745{
James Smart2534ba72007-04-25 09:52:20 -04001746 LIST_HEAD(completions);
dea31012005-04-17 16:05:31 -05001747 struct lpfc_iocbq *iocb, *next_iocb;
James Smart2534ba72007-04-25 09:52:20 -04001748 IOCB_t *cmd = NULL;
dea31012005-04-17 16:05:31 -05001749
James Smart92d7f7b2007-06-17 19:56:38 -05001750 if (pring->ringno == LPFC_ELS_RING) {
1751 lpfc_fabric_abort_hba(phba);
1752 }
1753
dea31012005-04-17 16:05:31 -05001754 /* Error everything on txq and txcmplq
1755 * First do the txq.
1756 */
James Smart2e0fef82007-06-17 19:56:36 -05001757 spin_lock_irq(&phba->hbalock);
James Smart2534ba72007-04-25 09:52:20 -04001758 list_splice_init(&pring->txq, &completions);
dea31012005-04-17 16:05:31 -05001759 pring->txq_cnt = 0;
dea31012005-04-17 16:05:31 -05001760
1761 /* Next issue ABTS for everything on the txcmplq */
James Smart2534ba72007-04-25 09:52:20 -04001762 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
1763 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
1764
James Smart2e0fef82007-06-17 19:56:36 -05001765 spin_unlock_irq(&phba->hbalock);
James Smart2534ba72007-04-25 09:52:20 -04001766
1767 while (!list_empty(&completions)) {
1768 iocb = list_get_first(&completions, struct lpfc_iocbq, list);
dea31012005-04-17 16:05:31 -05001769 cmd = &iocb->iocb;
James Smart92d7f7b2007-06-17 19:56:38 -05001770 list_del_init(&iocb->list);
dea31012005-04-17 16:05:31 -05001771
James Smart2e0fef82007-06-17 19:56:36 -05001772 if (!iocb->iocb_cmpl)
1773 lpfc_sli_release_iocbq(phba, iocb);
1774 else {
dea31012005-04-17 16:05:31 -05001775 cmd->ulpStatus = IOSTAT_LOCAL_REJECT;
1776 cmd->un.ulpWord[4] = IOERR_SLI_ABORTED;
dea31012005-04-17 16:05:31 -05001777 (iocb->iocb_cmpl) (phba, iocb, iocb);
James Smart2e0fef82007-06-17 19:56:36 -05001778 }
dea31012005-04-17 16:05:31 -05001779 }
dea31012005-04-17 16:05:31 -05001780}
1781
Jamie Wellnitz41415862006-02-28 19:25:27 -05001782int
James Smart2e0fef82007-06-17 19:56:36 -05001783lpfc_sli_brdready(struct lpfc_hba *phba, uint32_t mask)
dea31012005-04-17 16:05:31 -05001784{
Jamie Wellnitz41415862006-02-28 19:25:27 -05001785 uint32_t status;
1786 int i = 0;
1787 int retval = 0;
dea31012005-04-17 16:05:31 -05001788
Jamie Wellnitz41415862006-02-28 19:25:27 -05001789 /* Read the HBA Host Status Register */
1790 status = readl(phba->HSregaddr);
dea31012005-04-17 16:05:31 -05001791
Jamie Wellnitz41415862006-02-28 19:25:27 -05001792 /*
1793 * Check status register every 100ms for 5 retries, then every
1794 * 500ms for 5, then every 2.5 sec for 5, then reset board and
1795 * every 2.5 sec for 4.
1796 * Break our of the loop if errors occurred during init.
1797 */
1798 while (((status & mask) != mask) &&
1799 !(status & HS_FFERM) &&
1800 i++ < 20) {
dea31012005-04-17 16:05:31 -05001801
Jamie Wellnitz41415862006-02-28 19:25:27 -05001802 if (i <= 5)
1803 msleep(10);
1804 else if (i <= 10)
1805 msleep(500);
1806 else
1807 msleep(2500);
dea31012005-04-17 16:05:31 -05001808
Jamie Wellnitz41415862006-02-28 19:25:27 -05001809 if (i == 15) {
James Smart2e0fef82007-06-17 19:56:36 -05001810 /* Do post */
James Smart92d7f7b2007-06-17 19:56:38 -05001811 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
Jamie Wellnitz41415862006-02-28 19:25:27 -05001812 lpfc_sli_brdrestart(phba);
1813 }
1814 /* Read the HBA Host Status Register */
1815 status = readl(phba->HSregaddr);
dea31012005-04-17 16:05:31 -05001816 }
dea31012005-04-17 16:05:31 -05001817
Jamie Wellnitz41415862006-02-28 19:25:27 -05001818 /* Check to see if any errors occurred during init */
1819 if ((status & HS_FFERM) || (i >= 20)) {
James Smart2e0fef82007-06-17 19:56:36 -05001820 phba->link_state = LPFC_HBA_ERROR;
Jamie Wellnitz41415862006-02-28 19:25:27 -05001821 retval = 1;
1822 }
dea31012005-04-17 16:05:31 -05001823
Jamie Wellnitz41415862006-02-28 19:25:27 -05001824 return retval;
dea31012005-04-17 16:05:31 -05001825}
1826
James Smart92908312006-03-07 15:04:13 -05001827#define BARRIER_TEST_PATTERN (0xdeadbeef)
1828
James Smart2e0fef82007-06-17 19:56:36 -05001829void lpfc_reset_barrier(struct lpfc_hba *phba)
James Smart92908312006-03-07 15:04:13 -05001830{
James Smart65a29c12006-07-06 15:50:50 -04001831 uint32_t __iomem *resp_buf;
1832 uint32_t __iomem *mbox_buf;
James Smart92908312006-03-07 15:04:13 -05001833 volatile uint32_t mbox;
1834 uint32_t hc_copy;
1835 int i;
1836 uint8_t hdrtype;
1837
1838 pci_read_config_byte(phba->pcidev, PCI_HEADER_TYPE, &hdrtype);
1839 if (hdrtype != 0x80 ||
1840 (FC_JEDEC_ID(phba->vpd.rev.biuRev) != HELIOS_JEDEC_ID &&
1841 FC_JEDEC_ID(phba->vpd.rev.biuRev) != THOR_JEDEC_ID))
1842 return;
1843
1844 /*
1845 * Tell the other part of the chip to suspend temporarily all
1846 * its DMA activity.
1847 */
James Smart65a29c12006-07-06 15:50:50 -04001848 resp_buf = phba->MBslimaddr;
James Smart92908312006-03-07 15:04:13 -05001849
1850 /* Disable the error attention */
1851 hc_copy = readl(phba->HCregaddr);
1852 writel((hc_copy & ~HC_ERINT_ENA), phba->HCregaddr);
1853 readl(phba->HCregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -05001854 phba->link_flag |= LS_IGNORE_ERATT;
James Smart92908312006-03-07 15:04:13 -05001855
1856 if (readl(phba->HAregaddr) & HA_ERATT) {
1857 /* Clear Chip error bit */
1858 writel(HA_ERATT, phba->HAregaddr);
James Smart2e0fef82007-06-17 19:56:36 -05001859 phba->pport->stopped = 1;
James Smart92908312006-03-07 15:04:13 -05001860 }
1861
1862 mbox = 0;
1863 ((MAILBOX_t *)&mbox)->mbxCommand = MBX_KILL_BOARD;
1864 ((MAILBOX_t *)&mbox)->mbxOwner = OWN_CHIP;
1865
1866 writel(BARRIER_TEST_PATTERN, (resp_buf + 1));
James Smart65a29c12006-07-06 15:50:50 -04001867 mbox_buf = phba->MBslimaddr;
James Smart92908312006-03-07 15:04:13 -05001868 writel(mbox, mbox_buf);
1869
1870 for (i = 0;
1871 readl(resp_buf + 1) != ~(BARRIER_TEST_PATTERN) && i < 50; i++)
1872 mdelay(1);
1873
1874 if (readl(resp_buf + 1) != ~(BARRIER_TEST_PATTERN)) {
1875 if (phba->sli.sli_flag & LPFC_SLI2_ACTIVE ||
James Smart2e0fef82007-06-17 19:56:36 -05001876 phba->pport->stopped)
James Smart92908312006-03-07 15:04:13 -05001877 goto restore_hc;
1878 else
1879 goto clear_errat;
1880 }
1881
1882 ((MAILBOX_t *)&mbox)->mbxOwner = OWN_HOST;
1883 for (i = 0; readl(resp_buf) != mbox && i < 500; i++)
1884 mdelay(1);
1885
1886clear_errat:
1887
1888 while (!(readl(phba->HAregaddr) & HA_ERATT) && ++i < 500)
1889 mdelay(1);
1890
1891 if (readl(phba->HAregaddr) & HA_ERATT) {
1892 writel(HA_ERATT, phba->HAregaddr);
James Smart2e0fef82007-06-17 19:56:36 -05001893 phba->pport->stopped = 1;
James Smart92908312006-03-07 15:04:13 -05001894 }
1895
1896restore_hc:
James Smart2e0fef82007-06-17 19:56:36 -05001897 phba->link_flag &= ~LS_IGNORE_ERATT;
James Smart92908312006-03-07 15:04:13 -05001898 writel(hc_copy, phba->HCregaddr);
1899 readl(phba->HCregaddr); /* flush */
1900}
1901
Jamie Wellnitz41415862006-02-28 19:25:27 -05001902int
James Smart2e0fef82007-06-17 19:56:36 -05001903lpfc_sli_brdkill(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05001904{
Jamie Wellnitz41415862006-02-28 19:25:27 -05001905 struct lpfc_sli *psli;
1906 LPFC_MBOXQ_t *pmb;
1907 uint32_t status;
1908 uint32_t ha_copy;
1909 int retval;
1910 int i = 0;
1911
1912 psli = &phba->sli;
1913
1914 /* Kill HBA */
James Smarted957682007-06-17 19:56:37 -05001915 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04001916 "0329 Kill HBA Data: x%x x%x\n",
1917 phba->pport->port_state, psli->sli_flag);
Jamie Wellnitz41415862006-02-28 19:25:27 -05001918
James Smart98c9ea52007-10-27 13:37:33 -04001919 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
1920 if (!pmb)
Jamie Wellnitz41415862006-02-28 19:25:27 -05001921 return 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05001922
1923 /* Disable the error attention */
James Smart2e0fef82007-06-17 19:56:36 -05001924 spin_lock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05001925 status = readl(phba->HCregaddr);
1926 status &= ~HC_ERINT_ENA;
1927 writel(status, phba->HCregaddr);
1928 readl(phba->HCregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -05001929 phba->link_flag |= LS_IGNORE_ERATT;
1930 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05001931
1932 lpfc_kill_board(phba, pmb);
1933 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
1934 retval = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
1935
1936 if (retval != MBX_SUCCESS) {
1937 if (retval != MBX_BUSY)
1938 mempool_free(pmb, phba->mbox_mem_pool);
James Smart2e0fef82007-06-17 19:56:36 -05001939 spin_lock_irq(&phba->hbalock);
1940 phba->link_flag &= ~LS_IGNORE_ERATT;
1941 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05001942 return 1;
1943 }
1944
James Smart92908312006-03-07 15:04:13 -05001945 psli->sli_flag &= ~LPFC_SLI2_ACTIVE;
1946
Jamie Wellnitz41415862006-02-28 19:25:27 -05001947 mempool_free(pmb, phba->mbox_mem_pool);
1948
1949 /* There is no completion for a KILL_BOARD mbox cmd. Check for an error
1950 * attention every 100ms for 3 seconds. If we don't get ERATT after
1951 * 3 seconds we still set HBA_ERROR state because the status of the
1952 * board is now undefined.
1953 */
1954 ha_copy = readl(phba->HAregaddr);
1955
1956 while ((i++ < 30) && !(ha_copy & HA_ERATT)) {
1957 mdelay(100);
1958 ha_copy = readl(phba->HAregaddr);
1959 }
1960
1961 del_timer_sync(&psli->mbox_tmo);
James Smart92908312006-03-07 15:04:13 -05001962 if (ha_copy & HA_ERATT) {
1963 writel(HA_ERATT, phba->HAregaddr);
James Smart2e0fef82007-06-17 19:56:36 -05001964 phba->pport->stopped = 1;
James Smart92908312006-03-07 15:04:13 -05001965 }
James Smart2e0fef82007-06-17 19:56:36 -05001966 spin_lock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05001967 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05001968 phba->link_flag &= ~LS_IGNORE_ERATT;
1969 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05001970
1971 psli->mbox_active = NULL;
1972 lpfc_hba_down_post(phba);
James Smart2e0fef82007-06-17 19:56:36 -05001973 phba->link_state = LPFC_HBA_ERROR;
Jamie Wellnitz41415862006-02-28 19:25:27 -05001974
James Smart2e0fef82007-06-17 19:56:36 -05001975 return ha_copy & HA_ERATT ? 0 : 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05001976}
1977
1978int
James Smart2e0fef82007-06-17 19:56:36 -05001979lpfc_sli_brdreset(struct lpfc_hba *phba)
Jamie Wellnitz41415862006-02-28 19:25:27 -05001980{
1981 struct lpfc_sli *psli;
dea31012005-04-17 16:05:31 -05001982 struct lpfc_sli_ring *pring;
Jamie Wellnitz41415862006-02-28 19:25:27 -05001983 uint16_t cfg_value;
dea31012005-04-17 16:05:31 -05001984 int i;
dea31012005-04-17 16:05:31 -05001985
Jamie Wellnitz41415862006-02-28 19:25:27 -05001986 psli = &phba->sli;
dea31012005-04-17 16:05:31 -05001987
Jamie Wellnitz41415862006-02-28 19:25:27 -05001988 /* Reset HBA */
1989 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04001990 "0325 Reset HBA Data: x%x x%x\n",
James Smart2e0fef82007-06-17 19:56:36 -05001991 phba->pport->port_state, psli->sli_flag);
dea31012005-04-17 16:05:31 -05001992
1993 /* perform board reset */
1994 phba->fc_eventTag = 0;
James Smart2e0fef82007-06-17 19:56:36 -05001995 phba->pport->fc_myDID = 0;
1996 phba->pport->fc_prevDID = 0;
dea31012005-04-17 16:05:31 -05001997
Jamie Wellnitz41415862006-02-28 19:25:27 -05001998 /* Turn off parity checking and serr during the physical reset */
1999 pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
2000 pci_write_config_word(phba->pcidev, PCI_COMMAND,
2001 (cfg_value &
2002 ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
2003
James Smart1c067a42006-08-01 07:33:52 -04002004 psli->sli_flag &= ~(LPFC_SLI2_ACTIVE | LPFC_PROCESS_LA);
Jamie Wellnitz41415862006-02-28 19:25:27 -05002005 /* Now toggle INITFF bit in the Host Control Register */
2006 writel(HC_INITFF, phba->HCregaddr);
2007 mdelay(1);
2008 readl(phba->HCregaddr); /* flush */
2009 writel(0, phba->HCregaddr);
2010 readl(phba->HCregaddr); /* flush */
2011
2012 /* Restore PCI cmd register */
2013 pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
dea31012005-04-17 16:05:31 -05002014
2015 /* Initialize relevant SLI info */
Jamie Wellnitz41415862006-02-28 19:25:27 -05002016 for (i = 0; i < psli->num_rings; i++) {
2017 pring = &psli->ring[i];
dea31012005-04-17 16:05:31 -05002018 pring->flag = 0;
2019 pring->rspidx = 0;
2020 pring->next_cmdidx = 0;
2021 pring->local_getidx = 0;
2022 pring->cmdidx = 0;
2023 pring->missbufcnt = 0;
2024 }
dea31012005-04-17 16:05:31 -05002025
James Smart2e0fef82007-06-17 19:56:36 -05002026 phba->link_state = LPFC_WARM_START;
Jamie Wellnitz41415862006-02-28 19:25:27 -05002027 return 0;
2028}
2029
2030int
James Smart2e0fef82007-06-17 19:56:36 -05002031lpfc_sli_brdrestart(struct lpfc_hba *phba)
Jamie Wellnitz41415862006-02-28 19:25:27 -05002032{
2033 MAILBOX_t *mb;
2034 struct lpfc_sli *psli;
2035 uint16_t skip_post;
2036 volatile uint32_t word0;
2037 void __iomem *to_slim;
2038
James Smart2e0fef82007-06-17 19:56:36 -05002039 spin_lock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05002040
2041 psli = &phba->sli;
2042
2043 /* Restart HBA */
2044 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002045 "0337 Restart HBA Data: x%x x%x\n",
James Smart2e0fef82007-06-17 19:56:36 -05002046 phba->pport->port_state, psli->sli_flag);
Jamie Wellnitz41415862006-02-28 19:25:27 -05002047
2048 word0 = 0;
2049 mb = (MAILBOX_t *) &word0;
2050 mb->mbxCommand = MBX_RESTART;
2051 mb->mbxHc = 1;
2052
James Smart92908312006-03-07 15:04:13 -05002053 lpfc_reset_barrier(phba);
2054
Jamie Wellnitz41415862006-02-28 19:25:27 -05002055 to_slim = phba->MBslimaddr;
2056 writel(*(uint32_t *) mb, to_slim);
2057 readl(to_slim); /* flush */
2058
2059 /* Only skip post after fc_ffinit is completed */
James Smart2e0fef82007-06-17 19:56:36 -05002060 if (phba->pport->port_state) {
Jamie Wellnitz41415862006-02-28 19:25:27 -05002061 skip_post = 1;
2062 word0 = 1; /* This is really setting up word1 */
dea31012005-04-17 16:05:31 -05002063 } else {
Jamie Wellnitz41415862006-02-28 19:25:27 -05002064 skip_post = 0;
2065 word0 = 0; /* This is really setting up word1 */
2066 }
James Smart65a29c12006-07-06 15:50:50 -04002067 to_slim = phba->MBslimaddr + sizeof (uint32_t);
Jamie Wellnitz41415862006-02-28 19:25:27 -05002068 writel(*(uint32_t *) mb, to_slim);
2069 readl(to_slim); /* flush */
2070
2071 lpfc_sli_brdreset(phba);
James Smart2e0fef82007-06-17 19:56:36 -05002072 phba->pport->stopped = 0;
2073 phba->link_state = LPFC_INIT_START;
Jamie Wellnitz41415862006-02-28 19:25:27 -05002074
James Smart2e0fef82007-06-17 19:56:36 -05002075 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05002076
James Smart64ba8812006-08-02 15:24:34 -04002077 memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
2078 psli->stats_start = get_seconds();
2079
Jamie Wellnitz41415862006-02-28 19:25:27 -05002080 if (skip_post)
2081 mdelay(100);
2082 else
dea31012005-04-17 16:05:31 -05002083 mdelay(2000);
dea31012005-04-17 16:05:31 -05002084
Jamie Wellnitz41415862006-02-28 19:25:27 -05002085 lpfc_hba_down_post(phba);
dea31012005-04-17 16:05:31 -05002086
2087 return 0;
2088}
2089
2090static int
2091lpfc_sli_chipset_init(struct lpfc_hba *phba)
2092{
2093 uint32_t status, i = 0;
2094
2095 /* Read the HBA Host Status Register */
2096 status = readl(phba->HSregaddr);
2097
2098 /* Check status register to see what current state is */
2099 i = 0;
2100 while ((status & (HS_FFRDY | HS_MBRDY)) != (HS_FFRDY | HS_MBRDY)) {
2101
2102 /* Check every 100ms for 5 retries, then every 500ms for 5, then
2103 * every 2.5 sec for 5, then reset board and every 2.5 sec for
2104 * 4.
2105 */
2106 if (i++ >= 20) {
2107 /* Adapter failed to init, timeout, status reg
2108 <status> */
James Smarted957682007-06-17 19:56:37 -05002109 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04002110 "0436 Adapter failed to init, "
2111 "timeout, status reg x%x\n", status);
James Smart2e0fef82007-06-17 19:56:36 -05002112 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05002113 return -ETIMEDOUT;
2114 }
2115
2116 /* Check to see if any errors occurred during init */
2117 if (status & HS_FFERM) {
2118 /* ERROR: During chipset initialization */
2119 /* Adapter failed to init, chipset, status reg
2120 <status> */
James Smarted957682007-06-17 19:56:37 -05002121 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04002122 "0437 Adapter failed to init, "
2123 "chipset, status reg x%x\n", status);
James Smart2e0fef82007-06-17 19:56:36 -05002124 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05002125 return -EIO;
2126 }
2127
2128 if (i <= 5) {
2129 msleep(10);
2130 } else if (i <= 10) {
2131 msleep(500);
2132 } else {
2133 msleep(2500);
2134 }
2135
2136 if (i == 15) {
James Smart2e0fef82007-06-17 19:56:36 -05002137 /* Do post */
James Smart92d7f7b2007-06-17 19:56:38 -05002138 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
Jamie Wellnitz41415862006-02-28 19:25:27 -05002139 lpfc_sli_brdrestart(phba);
dea31012005-04-17 16:05:31 -05002140 }
2141 /* Read the HBA Host Status Register */
2142 status = readl(phba->HSregaddr);
2143 }
2144
2145 /* Check to see if any errors occurred during init */
2146 if (status & HS_FFERM) {
2147 /* ERROR: During chipset initialization */
2148 /* Adapter failed to init, chipset, status reg <status> */
James Smarted957682007-06-17 19:56:37 -05002149 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04002150 "0438 Adapter failed to init, chipset, "
2151 "status reg x%x\n", status);
James Smart2e0fef82007-06-17 19:56:36 -05002152 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05002153 return -EIO;
2154 }
2155
2156 /* Clear all interrupt enable conditions */
2157 writel(0, phba->HCregaddr);
2158 readl(phba->HCregaddr); /* flush */
2159
2160 /* setup host attn register */
2161 writel(0xffffffff, phba->HAregaddr);
2162 readl(phba->HAregaddr); /* flush */
2163 return 0;
2164}
2165
James Smart78b2d852007-08-02 11:10:21 -04002166int
James Smarted957682007-06-17 19:56:37 -05002167lpfc_sli_hbq_count(void)
2168{
James Smart92d7f7b2007-06-17 19:56:38 -05002169 return ARRAY_SIZE(lpfc_hbq_defs);
James Smarted957682007-06-17 19:56:37 -05002170}
2171
2172static int
2173lpfc_sli_hbq_entry_count(void)
2174{
2175 int hbq_count = lpfc_sli_hbq_count();
2176 int count = 0;
2177 int i;
2178
2179 for (i = 0; i < hbq_count; ++i)
James Smart92d7f7b2007-06-17 19:56:38 -05002180 count += lpfc_hbq_defs[i]->entry_count;
James Smarted957682007-06-17 19:56:37 -05002181 return count;
2182}
2183
dea31012005-04-17 16:05:31 -05002184int
James Smarted957682007-06-17 19:56:37 -05002185lpfc_sli_hbq_size(void)
2186{
2187 return lpfc_sli_hbq_entry_count() * sizeof(struct lpfc_hbq_entry);
2188}
2189
2190static int
2191lpfc_sli_hbq_setup(struct lpfc_hba *phba)
2192{
2193 int hbq_count = lpfc_sli_hbq_count();
2194 LPFC_MBOXQ_t *pmb;
2195 MAILBOX_t *pmbox;
2196 uint32_t hbqno;
2197 uint32_t hbq_entry_index;
James Smarted957682007-06-17 19:56:37 -05002198
James Smart92d7f7b2007-06-17 19:56:38 -05002199 /* Get a Mailbox buffer to setup mailbox
2200 * commands for HBA initialization
2201 */
James Smarted957682007-06-17 19:56:37 -05002202 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2203
2204 if (!pmb)
2205 return -ENOMEM;
2206
2207 pmbox = &pmb->mb;
2208
2209 /* Initialize the struct lpfc_sli_hbq structure for each hbq */
2210 phba->link_state = LPFC_INIT_MBX_CMDS;
2211
2212 hbq_entry_index = 0;
2213 for (hbqno = 0; hbqno < hbq_count; ++hbqno) {
2214 phba->hbqs[hbqno].next_hbqPutIdx = 0;
2215 phba->hbqs[hbqno].hbqPutIdx = 0;
2216 phba->hbqs[hbqno].local_hbqGetIdx = 0;
2217 phba->hbqs[hbqno].entry_count =
James Smart92d7f7b2007-06-17 19:56:38 -05002218 lpfc_hbq_defs[hbqno]->entry_count;
James Smart51ef4c22007-08-02 11:10:31 -04002219 lpfc_config_hbq(phba, hbqno, lpfc_hbq_defs[hbqno],
2220 hbq_entry_index, pmb);
James Smarted957682007-06-17 19:56:37 -05002221 hbq_entry_index += phba->hbqs[hbqno].entry_count;
2222
2223 if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
2224 /* Adapter failed to init, mbxCmd <cmd> CFG_RING,
2225 mbxStatus <status>, ring <num> */
2226
2227 lpfc_printf_log(phba, KERN_ERR,
James Smart92d7f7b2007-06-17 19:56:38 -05002228 LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04002229 "1805 Adapter failed to init. "
James Smarted957682007-06-17 19:56:37 -05002230 "Data: x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04002231 pmbox->mbxCommand,
James Smarted957682007-06-17 19:56:37 -05002232 pmbox->mbxStatus, hbqno);
2233
2234 phba->link_state = LPFC_HBA_ERROR;
2235 mempool_free(pmb, phba->mbox_mem_pool);
James Smarted957682007-06-17 19:56:37 -05002236 return ENXIO;
2237 }
2238 }
2239 phba->hbq_count = hbq_count;
2240
James Smarted957682007-06-17 19:56:37 -05002241 mempool_free(pmb, phba->mbox_mem_pool);
2242
James Smart92d7f7b2007-06-17 19:56:38 -05002243 /* Initially populate or replenish the HBQs */
2244 for (hbqno = 0; hbqno < hbq_count; ++hbqno) {
2245 if (lpfc_sli_hbqbuf_init_hbqs(phba, hbqno))
2246 return -ENOMEM;
2247 }
James Smarted957682007-06-17 19:56:37 -05002248 return 0;
2249}
2250
2251static int
2252lpfc_do_config_port(struct lpfc_hba *phba, int sli_mode)
dea31012005-04-17 16:05:31 -05002253{
2254 LPFC_MBOXQ_t *pmb;
2255 uint32_t resetcount = 0, rc = 0, done = 0;
2256
2257 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2258 if (!pmb) {
James Smart2e0fef82007-06-17 19:56:36 -05002259 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05002260 return -ENOMEM;
2261 }
2262
James Smarted957682007-06-17 19:56:37 -05002263 phba->sli_rev = sli_mode;
dea31012005-04-17 16:05:31 -05002264 while (resetcount < 2 && !done) {
James Smart2e0fef82007-06-17 19:56:36 -05002265 spin_lock_irq(&phba->hbalock);
James Smart1c067a42006-08-01 07:33:52 -04002266 phba->sli.sli_flag |= LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05002267 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -05002268 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
Jamie Wellnitz41415862006-02-28 19:25:27 -05002269 lpfc_sli_brdrestart(phba);
dea31012005-04-17 16:05:31 -05002270 msleep(2500);
2271 rc = lpfc_sli_chipset_init(phba);
2272 if (rc)
2273 break;
2274
James Smart2e0fef82007-06-17 19:56:36 -05002275 spin_lock_irq(&phba->hbalock);
James Smart1c067a42006-08-01 07:33:52 -04002276 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05002277 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05002278 resetcount++;
2279
James Smarted957682007-06-17 19:56:37 -05002280 /* Call pre CONFIG_PORT mailbox command initialization. A
2281 * value of 0 means the call was successful. Any other
2282 * nonzero value is a failure, but if ERESTART is returned,
2283 * the driver may reset the HBA and try again.
2284 */
dea31012005-04-17 16:05:31 -05002285 rc = lpfc_config_port_prep(phba);
2286 if (rc == -ERESTART) {
James Smarted957682007-06-17 19:56:37 -05002287 phba->link_state = LPFC_LINK_UNKNOWN;
dea31012005-04-17 16:05:31 -05002288 continue;
2289 } else if (rc) {
2290 break;
2291 }
2292
James Smart2e0fef82007-06-17 19:56:36 -05002293 phba->link_state = LPFC_INIT_MBX_CMDS;
dea31012005-04-17 16:05:31 -05002294 lpfc_config_port(phba, pmb);
2295 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
James Smarted957682007-06-17 19:56:37 -05002296 if (rc != MBX_SUCCESS) {
dea31012005-04-17 16:05:31 -05002297 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04002298 "0442 Adapter failed to init, mbxCmd x%x "
James Smart92d7f7b2007-06-17 19:56:38 -05002299 "CONFIG_PORT, mbxStatus x%x Data: x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04002300 pmb->mb.mbxCommand, pmb->mb.mbxStatus, 0);
James Smart2e0fef82007-06-17 19:56:36 -05002301 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05002302 phba->sli.sli_flag &= ~LPFC_SLI2_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05002303 spin_unlock_irq(&phba->hbalock);
2304 rc = -ENXIO;
James Smarted957682007-06-17 19:56:37 -05002305 } else {
2306 done = 1;
James Smart92d7f7b2007-06-17 19:56:38 -05002307 phba->max_vpi = (phba->max_vpi &&
2308 pmb->mb.un.varCfgPort.gmv) != 0
2309 ? pmb->mb.un.varCfgPort.max_vpi
2310 : 0;
dea31012005-04-17 16:05:31 -05002311 }
2312 }
James Smarted957682007-06-17 19:56:37 -05002313
2314 if (!done) {
2315 rc = -EINVAL;
2316 goto do_prep_failed;
2317 }
2318
2319 if ((pmb->mb.un.varCfgPort.sli_mode == 3) &&
James Smart92d7f7b2007-06-17 19:56:38 -05002320 (!pmb->mb.un.varCfgPort.cMA)) {
James Smarted957682007-06-17 19:56:37 -05002321 rc = -ENXIO;
2322 goto do_prep_failed;
2323 }
2324 return rc;
2325
James Smart92d7f7b2007-06-17 19:56:38 -05002326do_prep_failed:
James Smarted957682007-06-17 19:56:37 -05002327 mempool_free(pmb, phba->mbox_mem_pool);
2328 return rc;
2329}
2330
2331int
2332lpfc_sli_hba_setup(struct lpfc_hba *phba)
2333{
2334 uint32_t rc;
James Smart92d7f7b2007-06-17 19:56:38 -05002335 int mode = 3;
James Smarted957682007-06-17 19:56:37 -05002336
2337 switch (lpfc_sli_mode) {
2338 case 2:
James Smart78b2d852007-08-02 11:10:21 -04002339 if (phba->cfg_enable_npiv) {
James Smart92d7f7b2007-06-17 19:56:38 -05002340 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04002341 "1824 NPIV enabled: Override lpfc_sli_mode "
James Smart92d7f7b2007-06-17 19:56:38 -05002342 "parameter (%d) to auto (0).\n",
James Smarte8b62012007-08-02 11:10:09 -04002343 lpfc_sli_mode);
James Smart92d7f7b2007-06-17 19:56:38 -05002344 break;
2345 }
James Smarted957682007-06-17 19:56:37 -05002346 mode = 2;
2347 break;
2348 case 0:
2349 case 3:
2350 break;
2351 default:
James Smart92d7f7b2007-06-17 19:56:38 -05002352 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04002353 "1819 Unrecognized lpfc_sli_mode "
2354 "parameter: %d.\n", lpfc_sli_mode);
James Smarted957682007-06-17 19:56:37 -05002355
2356 break;
2357 }
2358
2359 rc = lpfc_do_config_port(phba, mode);
2360 if (rc && lpfc_sli_mode == 3)
James Smart92d7f7b2007-06-17 19:56:38 -05002361 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04002362 "1820 Unable to select SLI-3. "
2363 "Not supported by adapter.\n");
James Smarted957682007-06-17 19:56:37 -05002364 if (rc && mode != 2)
2365 rc = lpfc_do_config_port(phba, 2);
2366 if (rc)
dea31012005-04-17 16:05:31 -05002367 goto lpfc_sli_hba_setup_error;
2368
James Smarted957682007-06-17 19:56:37 -05002369 if (phba->sli_rev == 3) {
2370 phba->iocb_cmd_size = SLI3_IOCB_CMD_SIZE;
2371 phba->iocb_rsp_size = SLI3_IOCB_RSP_SIZE;
2372 phba->sli3_options |= LPFC_SLI3_ENABLED;
2373 phba->sli3_options |= LPFC_SLI3_HBQ_ENABLED;
2374
2375 } else {
2376 phba->iocb_cmd_size = SLI2_IOCB_CMD_SIZE;
2377 phba->iocb_rsp_size = SLI2_IOCB_RSP_SIZE;
James Smart92d7f7b2007-06-17 19:56:38 -05002378 phba->sli3_options = 0;
James Smarted957682007-06-17 19:56:37 -05002379 }
2380
2381 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04002382 "0444 Firmware in SLI %x mode. Max_vpi %d\n",
2383 phba->sli_rev, phba->max_vpi);
James Smarted957682007-06-17 19:56:37 -05002384 rc = lpfc_sli_ring_map(phba);
dea31012005-04-17 16:05:31 -05002385
2386 if (rc)
2387 goto lpfc_sli_hba_setup_error;
2388
James Smart92d7f7b2007-06-17 19:56:38 -05002389 /* Init HBQs */
James Smarted957682007-06-17 19:56:37 -05002390
2391 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
2392 rc = lpfc_sli_hbq_setup(phba);
2393 if (rc)
2394 goto lpfc_sli_hba_setup_error;
2395 }
2396
dea31012005-04-17 16:05:31 -05002397 phba->sli.sli_flag |= LPFC_PROCESS_LA;
2398
2399 rc = lpfc_config_port_post(phba);
2400 if (rc)
2401 goto lpfc_sli_hba_setup_error;
2402
James Smarted957682007-06-17 19:56:37 -05002403 return rc;
2404
James Smart92d7f7b2007-06-17 19:56:38 -05002405lpfc_sli_hba_setup_error:
James Smart2e0fef82007-06-17 19:56:36 -05002406 phba->link_state = LPFC_HBA_ERROR;
James Smarted957682007-06-17 19:56:37 -05002407 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04002408 "0445 Firmware initialization failed\n");
dea31012005-04-17 16:05:31 -05002409 return rc;
2410}
2411
dea31012005-04-17 16:05:31 -05002412/*! lpfc_mbox_timeout
2413 *
2414 * \pre
2415 * \post
2416 * \param hba Pointer to per struct lpfc_hba structure
2417 * \param l1 Pointer to the driver's mailbox queue.
2418 * \return
2419 * void
2420 *
2421 * \b Description:
2422 *
2423 * This routine handles mailbox timeout events at timer interrupt context.
2424 */
2425void
2426lpfc_mbox_timeout(unsigned long ptr)
2427{
James Smart92d7f7b2007-06-17 19:56:38 -05002428 struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
dea31012005-04-17 16:05:31 -05002429 unsigned long iflag;
James Smart2e0fef82007-06-17 19:56:36 -05002430 uint32_t tmo_posted;
dea31012005-04-17 16:05:31 -05002431
James Smart2e0fef82007-06-17 19:56:36 -05002432 spin_lock_irqsave(&phba->pport->work_port_lock, iflag);
James Smart92d7f7b2007-06-17 19:56:38 -05002433 tmo_posted = phba->pport->work_port_events & WORKER_MBOX_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05002434 if (!tmo_posted)
2435 phba->pport->work_port_events |= WORKER_MBOX_TMO;
2436 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflag);
2437
2438 if (!tmo_posted) {
James Smart92d7f7b2007-06-17 19:56:38 -05002439 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05002440 if (phba->work_wait)
James Smart92d7f7b2007-06-17 19:56:38 -05002441 lpfc_worker_wake_up(phba);
2442 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05002443 }
dea31012005-04-17 16:05:31 -05002444}
2445
2446void
2447lpfc_mbox_timeout_handler(struct lpfc_hba *phba)
2448{
James Smart2e0fef82007-06-17 19:56:36 -05002449 LPFC_MBOXQ_t *pmbox = phba->sli.mbox_active;
2450 MAILBOX_t *mb = &pmbox->mb;
James Smart1dcb58e2007-04-25 09:51:30 -04002451 struct lpfc_sli *psli = &phba->sli;
2452 struct lpfc_sli_ring *pring;
dea31012005-04-17 16:05:31 -05002453
James Smart2e0fef82007-06-17 19:56:36 -05002454 if (!(phba->pport->work_port_events & WORKER_MBOX_TMO)) {
dea31012005-04-17 16:05:31 -05002455 return;
2456 }
2457
dea31012005-04-17 16:05:31 -05002458 /* Mbox cmd <mbxCommand> timeout */
James Smarted957682007-06-17 19:56:37 -05002459 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002460 "0310 Mailbox command x%x timeout Data: x%x x%x x%p\n",
James Smart92d7f7b2007-06-17 19:56:38 -05002461 mb->mbxCommand,
2462 phba->pport->port_state,
2463 phba->sli.sli_flag,
2464 phba->sli.mbox_active);
dea31012005-04-17 16:05:31 -05002465
James Smart1dcb58e2007-04-25 09:51:30 -04002466 /* Setting state unknown so lpfc_sli_abort_iocb_ring
2467 * would get IOCB_ERROR from lpfc_sli_issue_iocb, allowing
2468 * it to fail all oustanding SCSI IO.
2469 */
James Smart2e0fef82007-06-17 19:56:36 -05002470 spin_lock_irq(&phba->pport->work_port_lock);
2471 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
2472 spin_unlock_irq(&phba->pport->work_port_lock);
2473 spin_lock_irq(&phba->hbalock);
2474 phba->link_state = LPFC_LINK_UNKNOWN;
2475 phba->pport->fc_flag |= FC_ESTABLISH_LINK;
James Smart1dcb58e2007-04-25 09:51:30 -04002476 psli->sli_flag &= ~LPFC_SLI2_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05002477 spin_unlock_irq(&phba->hbalock);
James Smart1dcb58e2007-04-25 09:51:30 -04002478
2479 pring = &psli->ring[psli->fcp_ring];
2480 lpfc_sli_abort_iocb_ring(phba, pring);
2481
2482 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002483 "0316 Resetting board due to mailbox timeout\n");
James Smart1dcb58e2007-04-25 09:51:30 -04002484 /*
2485 * lpfc_offline calls lpfc_sli_hba_down which will clean up
2486 * on oustanding mailbox commands.
2487 */
2488 lpfc_offline_prep(phba);
2489 lpfc_offline(phba);
2490 lpfc_sli_brdrestart(phba);
2491 if (lpfc_online(phba) == 0) /* Initialize the HBA */
2492 mod_timer(&phba->fc_estabtmo, jiffies + HZ * 60);
2493 lpfc_unblock_mgmt_io(phba);
dea31012005-04-17 16:05:31 -05002494 return;
2495}
2496
2497int
James Smart2e0fef82007-06-17 19:56:36 -05002498lpfc_sli_issue_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox, uint32_t flag)
dea31012005-04-17 16:05:31 -05002499{
dea31012005-04-17 16:05:31 -05002500 MAILBOX_t *mb;
James Smart2e0fef82007-06-17 19:56:36 -05002501 struct lpfc_sli *psli = &phba->sli;
dea31012005-04-17 16:05:31 -05002502 uint32_t status, evtctr;
2503 uint32_t ha_copy;
2504 int i;
2505 unsigned long drvr_flag = 0;
2506 volatile uint32_t word0, ldata;
2507 void __iomem *to_slim;
2508
James Smarted957682007-06-17 19:56:37 -05002509 if (pmbox->mbox_cmpl && pmbox->mbox_cmpl != lpfc_sli_def_mbox_cmpl &&
James Smart92d7f7b2007-06-17 19:56:38 -05002510 pmbox->mbox_cmpl != lpfc_sli_wake_mbox_wait) {
James Smarted957682007-06-17 19:56:37 -05002511 if(!pmbox->vport) {
2512 lpfc_printf_log(phba, KERN_ERR,
James Smart92d7f7b2007-06-17 19:56:38 -05002513 LOG_MBOX | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04002514 "1806 Mbox x%x failed. No vport\n",
James Smarted957682007-06-17 19:56:37 -05002515 pmbox->mb.mbxCommand);
2516 dump_stack();
2517 return MBXERR_ERROR;
2518 }
2519 }
2520
James Smart92d7f7b2007-06-17 19:56:38 -05002521
Linas Vepstas8d63f372007-02-14 14:28:36 -06002522 /* If the PCI channel is in offline state, do not post mbox. */
2523 if (unlikely(pci_channel_offline(phba->pcidev)))
2524 return MBX_NOT_FINISHED;
2525
James Smart2e0fef82007-06-17 19:56:36 -05002526 spin_lock_irqsave(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05002527 psli = &phba->sli;
James Smart92d7f7b2007-06-17 19:56:38 -05002528
2529
dea31012005-04-17 16:05:31 -05002530 mb = &pmbox->mb;
2531 status = MBX_SUCCESS;
2532
James Smart2e0fef82007-06-17 19:56:36 -05002533 if (phba->link_state == LPFC_HBA_ERROR) {
2534 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
Jamie Wellnitz41415862006-02-28 19:25:27 -05002535
2536 /* Mbox command <mbxCommand> cannot issue */
James Smart92d7f7b2007-06-17 19:56:38 -05002537 LOG_MBOX_CANNOT_ISSUE_DATA(phba, pmbox, psli, flag)
James Smart2e0fef82007-06-17 19:56:36 -05002538 return MBX_NOT_FINISHED;
Jamie Wellnitz41415862006-02-28 19:25:27 -05002539 }
2540
James Smart92908312006-03-07 15:04:13 -05002541 if (mb->mbxCommand != MBX_KILL_BOARD && flag & MBX_NOWAIT &&
2542 !(readl(phba->HCregaddr) & HC_MBINT_ENA)) {
James Smart2e0fef82007-06-17 19:56:36 -05002543 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
James Smart92d7f7b2007-06-17 19:56:38 -05002544 LOG_MBOX_CANNOT_ISSUE_DATA(phba, pmbox, psli, flag)
James Smart2e0fef82007-06-17 19:56:36 -05002545 return MBX_NOT_FINISHED;
James Smart92908312006-03-07 15:04:13 -05002546 }
2547
dea31012005-04-17 16:05:31 -05002548 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
2549 /* Polling for a mbox command when another one is already active
2550 * is not allowed in SLI. Also, the driver must have established
2551 * SLI2 mode to queue and process multiple mbox commands.
2552 */
2553
2554 if (flag & MBX_POLL) {
James Smart2e0fef82007-06-17 19:56:36 -05002555 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05002556
2557 /* Mbox command <mbxCommand> cannot issue */
James Smart92d7f7b2007-06-17 19:56:38 -05002558 LOG_MBOX_CANNOT_ISSUE_DATA(phba, pmbox, psli, flag);
James Smart2e0fef82007-06-17 19:56:36 -05002559 return MBX_NOT_FINISHED;
dea31012005-04-17 16:05:31 -05002560 }
2561
2562 if (!(psli->sli_flag & LPFC_SLI2_ACTIVE)) {
James Smart2e0fef82007-06-17 19:56:36 -05002563 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05002564 /* Mbox command <mbxCommand> cannot issue */
James Smart92d7f7b2007-06-17 19:56:38 -05002565 LOG_MBOX_CANNOT_ISSUE_DATA(phba, pmbox, psli, flag);
James Smart2e0fef82007-06-17 19:56:36 -05002566 return MBX_NOT_FINISHED;
dea31012005-04-17 16:05:31 -05002567 }
2568
dea31012005-04-17 16:05:31 -05002569 /* Another mailbox command is still being processed, queue this
2570 * command to be processed later.
2571 */
2572 lpfc_mbox_put(phba, pmbox);
2573
2574 /* Mbox cmd issue - BUSY */
James Smarted957682007-06-17 19:56:37 -05002575 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002576 "(%d):0308 Mbox cmd issue - BUSY Data: "
James Smart92d7f7b2007-06-17 19:56:38 -05002577 "x%x x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05002578 pmbox->vport ? pmbox->vport->vpi : 0xffffff,
2579 mb->mbxCommand, phba->pport->port_state,
2580 psli->sli_flag, flag);
dea31012005-04-17 16:05:31 -05002581
2582 psli->slistat.mbox_busy++;
James Smart2e0fef82007-06-17 19:56:36 -05002583 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05002584
James Smart858c9f62007-06-17 19:56:39 -05002585 if (pmbox->vport) {
2586 lpfc_debugfs_disc_trc(pmbox->vport,
2587 LPFC_DISC_TRC_MBOX_VPORT,
2588 "MBOX Bsy vport: cmd:x%x mb:x%x x%x",
2589 (uint32_t)mb->mbxCommand,
2590 mb->un.varWords[0], mb->un.varWords[1]);
2591 }
2592 else {
2593 lpfc_debugfs_disc_trc(phba->pport,
2594 LPFC_DISC_TRC_MBOX,
2595 "MBOX Bsy: cmd:x%x mb:x%x x%x",
2596 (uint32_t)mb->mbxCommand,
2597 mb->un.varWords[0], mb->un.varWords[1]);
2598 }
2599
James Smart2e0fef82007-06-17 19:56:36 -05002600 return MBX_BUSY;
dea31012005-04-17 16:05:31 -05002601 }
2602
dea31012005-04-17 16:05:31 -05002603 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
2604
2605 /* If we are not polling, we MUST be in SLI2 mode */
2606 if (flag != MBX_POLL) {
Jamie Wellnitz41415862006-02-28 19:25:27 -05002607 if (!(psli->sli_flag & LPFC_SLI2_ACTIVE) &&
2608 (mb->mbxCommand != MBX_KILL_BOARD)) {
dea31012005-04-17 16:05:31 -05002609 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05002610 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05002611 /* Mbox command <mbxCommand> cannot issue */
James Smart92d7f7b2007-06-17 19:56:38 -05002612 LOG_MBOX_CANNOT_ISSUE_DATA(phba, pmbox, psli, flag);
James Smart2e0fef82007-06-17 19:56:36 -05002613 return MBX_NOT_FINISHED;
dea31012005-04-17 16:05:31 -05002614 }
2615 /* timeout active mbox command */
James Smarta309a6b2006-08-01 07:33:43 -04002616 mod_timer(&psli->mbox_tmo, (jiffies +
2617 (HZ * lpfc_mbox_tmo_val(phba, mb->mbxCommand))));
dea31012005-04-17 16:05:31 -05002618 }
2619
2620 /* Mailbox cmd <cmd> issue */
James Smarted957682007-06-17 19:56:37 -05002621 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002622 "(%d):0309 Mailbox cmd x%x issue Data: x%x x%x "
James Smart92d7f7b2007-06-17 19:56:38 -05002623 "x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04002624 pmbox->vport ? pmbox->vport->vpi : 0,
James Smart92d7f7b2007-06-17 19:56:38 -05002625 mb->mbxCommand, phba->pport->port_state,
2626 psli->sli_flag, flag);
dea31012005-04-17 16:05:31 -05002627
James Smart858c9f62007-06-17 19:56:39 -05002628 if (mb->mbxCommand != MBX_HEARTBEAT) {
2629 if (pmbox->vport) {
2630 lpfc_debugfs_disc_trc(pmbox->vport,
2631 LPFC_DISC_TRC_MBOX_VPORT,
2632 "MBOX Send vport: cmd:x%x mb:x%x x%x",
2633 (uint32_t)mb->mbxCommand,
2634 mb->un.varWords[0], mb->un.varWords[1]);
2635 }
2636 else {
2637 lpfc_debugfs_disc_trc(phba->pport,
2638 LPFC_DISC_TRC_MBOX,
2639 "MBOX Send: cmd:x%x mb:x%x x%x",
2640 (uint32_t)mb->mbxCommand,
2641 mb->un.varWords[0], mb->un.varWords[1]);
2642 }
2643 }
2644
dea31012005-04-17 16:05:31 -05002645 psli->slistat.mbox_cmd++;
2646 evtctr = psli->slistat.mbox_event;
2647
2648 /* next set own bit for the adapter and copy over command word */
2649 mb->mbxOwner = OWN_CHIP;
2650
2651 if (psli->sli_flag & LPFC_SLI2_ACTIVE) {
dea31012005-04-17 16:05:31 -05002652 /* First copy command data to host SLIM area */
James.Smart@Emulex.Com4cc2da12005-06-25 10:34:00 -04002653 lpfc_sli_pcimem_bcopy(mb, &phba->slim2p->mbx, MAILBOX_CMD_SIZE);
dea31012005-04-17 16:05:31 -05002654 } else {
James Smart92908312006-03-07 15:04:13 -05002655 if (mb->mbxCommand == MBX_CONFIG_PORT) {
dea31012005-04-17 16:05:31 -05002656 /* copy command data into host mbox for cmpl */
James.Smart@Emulex.Com4cc2da12005-06-25 10:34:00 -04002657 lpfc_sli_pcimem_bcopy(mb, &phba->slim2p->mbx,
James Smart92d7f7b2007-06-17 19:56:38 -05002658 MAILBOX_CMD_SIZE);
dea31012005-04-17 16:05:31 -05002659 }
2660
2661 /* First copy mbox command data to HBA SLIM, skip past first
2662 word */
2663 to_slim = phba->MBslimaddr + sizeof (uint32_t);
2664 lpfc_memcpy_to_slim(to_slim, &mb->un.varWords[0],
2665 MAILBOX_CMD_SIZE - sizeof (uint32_t));
2666
2667 /* Next copy over first word, with mbxOwner set */
2668 ldata = *((volatile uint32_t *)mb);
2669 to_slim = phba->MBslimaddr;
2670 writel(ldata, to_slim);
2671 readl(to_slim); /* flush */
2672
2673 if (mb->mbxCommand == MBX_CONFIG_PORT) {
2674 /* switch over to host mailbox */
2675 psli->sli_flag |= LPFC_SLI2_ACTIVE;
2676 }
2677 }
2678
2679 wmb();
2680 /* interrupt board to doit right away */
2681 writel(CA_MBATT, phba->CAregaddr);
2682 readl(phba->CAregaddr); /* flush */
2683
2684 switch (flag) {
2685 case MBX_NOWAIT:
2686 /* Don't wait for it to finish, just return */
2687 psli->mbox_active = pmbox;
2688 break;
2689
2690 case MBX_POLL:
dea31012005-04-17 16:05:31 -05002691 psli->mbox_active = NULL;
2692 if (psli->sli_flag & LPFC_SLI2_ACTIVE) {
2693 /* First read mbox status word */
James.Smart@Emulex.Com4cc2da12005-06-25 10:34:00 -04002694 word0 = *((volatile uint32_t *)&phba->slim2p->mbx);
dea31012005-04-17 16:05:31 -05002695 word0 = le32_to_cpu(word0);
2696 } else {
2697 /* First read mbox status word */
2698 word0 = readl(phba->MBslimaddr);
2699 }
2700
2701 /* Read the HBA Host Attention Register */
2702 ha_copy = readl(phba->HAregaddr);
2703
James Smarta309a6b2006-08-01 07:33:43 -04002704 i = lpfc_mbox_tmo_val(phba, mb->mbxCommand);
2705 i *= 1000; /* Convert to ms */
2706
dea31012005-04-17 16:05:31 -05002707 /* Wait for command to complete */
Jamie Wellnitz41415862006-02-28 19:25:27 -05002708 while (((word0 & OWN_CHIP) == OWN_CHIP) ||
2709 (!(ha_copy & HA_MBATT) &&
James Smart2e0fef82007-06-17 19:56:36 -05002710 (phba->link_state > LPFC_WARM_START))) {
James Smarta309a6b2006-08-01 07:33:43 -04002711 if (i-- <= 0) {
dea31012005-04-17 16:05:31 -05002712 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05002713 spin_unlock_irqrestore(&phba->hbalock,
dea31012005-04-17 16:05:31 -05002714 drvr_flag);
James Smart2e0fef82007-06-17 19:56:36 -05002715 return MBX_NOT_FINISHED;
dea31012005-04-17 16:05:31 -05002716 }
2717
2718 /* Check if we took a mbox interrupt while we were
2719 polling */
2720 if (((word0 & OWN_CHIP) != OWN_CHIP)
2721 && (evtctr != psli->slistat.mbox_event))
2722 break;
2723
James Smart2e0fef82007-06-17 19:56:36 -05002724 spin_unlock_irqrestore(&phba->hbalock,
dea31012005-04-17 16:05:31 -05002725 drvr_flag);
2726
James Smart1dcb58e2007-04-25 09:51:30 -04002727 msleep(1);
dea31012005-04-17 16:05:31 -05002728
James Smart2e0fef82007-06-17 19:56:36 -05002729 spin_lock_irqsave(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05002730
2731 if (psli->sli_flag & LPFC_SLI2_ACTIVE) {
2732 /* First copy command data */
James.Smart@Emulex.Com4cc2da12005-06-25 10:34:00 -04002733 word0 = *((volatile uint32_t *)
2734 &phba->slim2p->mbx);
dea31012005-04-17 16:05:31 -05002735 word0 = le32_to_cpu(word0);
2736 if (mb->mbxCommand == MBX_CONFIG_PORT) {
2737 MAILBOX_t *slimmb;
2738 volatile uint32_t slimword0;
2739 /* Check real SLIM for any errors */
2740 slimword0 = readl(phba->MBslimaddr);
2741 slimmb = (MAILBOX_t *) & slimword0;
2742 if (((slimword0 & OWN_CHIP) != OWN_CHIP)
2743 && slimmb->mbxStatus) {
2744 psli->sli_flag &=
2745 ~LPFC_SLI2_ACTIVE;
2746 word0 = slimword0;
2747 }
2748 }
2749 } else {
2750 /* First copy command data */
2751 word0 = readl(phba->MBslimaddr);
2752 }
2753 /* Read the HBA Host Attention Register */
2754 ha_copy = readl(phba->HAregaddr);
2755 }
2756
2757 if (psli->sli_flag & LPFC_SLI2_ACTIVE) {
dea31012005-04-17 16:05:31 -05002758 /* copy results back to user */
James.Smart@Emulex.Com4cc2da12005-06-25 10:34:00 -04002759 lpfc_sli_pcimem_bcopy(&phba->slim2p->mbx, mb,
James Smart92d7f7b2007-06-17 19:56:38 -05002760 MAILBOX_CMD_SIZE);
dea31012005-04-17 16:05:31 -05002761 } else {
2762 /* First copy command data */
2763 lpfc_memcpy_from_slim(mb, phba->MBslimaddr,
2764 MAILBOX_CMD_SIZE);
2765 if ((mb->mbxCommand == MBX_DUMP_MEMORY) &&
2766 pmbox->context2) {
James Smart92d7f7b2007-06-17 19:56:38 -05002767 lpfc_memcpy_from_slim((void *)pmbox->context2,
dea31012005-04-17 16:05:31 -05002768 phba->MBslimaddr + DMP_RSP_OFFSET,
2769 mb->un.varDmp.word_cnt);
2770 }
2771 }
2772
2773 writel(HA_MBATT, phba->HAregaddr);
2774 readl(phba->HAregaddr); /* flush */
2775
2776 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
2777 status = mb->mbxStatus;
2778 }
2779
James Smart2e0fef82007-06-17 19:56:36 -05002780 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
2781 return status;
dea31012005-04-17 16:05:31 -05002782}
2783
James Smart92d7f7b2007-06-17 19:56:38 -05002784/*
2785 * Caller needs to hold lock.
2786 */
James Smart858c9f62007-06-17 19:56:39 -05002787static void
James Smart92d7f7b2007-06-17 19:56:38 -05002788__lpfc_sli_ringtx_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart2e0fef82007-06-17 19:56:36 -05002789 struct lpfc_iocbq *piocb)
dea31012005-04-17 16:05:31 -05002790{
2791 /* Insert the caller's iocb in the txq tail for later processing. */
2792 list_add_tail(&piocb->list, &pring->txq);
2793 pring->txq_cnt++;
dea31012005-04-17 16:05:31 -05002794}
2795
2796static struct lpfc_iocbq *
2797lpfc_sli_next_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart2e0fef82007-06-17 19:56:36 -05002798 struct lpfc_iocbq **piocb)
dea31012005-04-17 16:05:31 -05002799{
2800 struct lpfc_iocbq * nextiocb;
2801
2802 nextiocb = lpfc_sli_ringtx_get(phba, pring);
2803 if (!nextiocb) {
2804 nextiocb = *piocb;
2805 *piocb = NULL;
2806 }
2807
2808 return nextiocb;
2809}
2810
James Smart92d7f7b2007-06-17 19:56:38 -05002811/*
2812 * Lockless version of lpfc_sli_issue_iocb.
2813 */
James Smart98c9ea52007-10-27 13:37:33 -04002814static int
James Smart92d7f7b2007-06-17 19:56:38 -05002815__lpfc_sli_issue_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
dea31012005-04-17 16:05:31 -05002816 struct lpfc_iocbq *piocb, uint32_t flag)
2817{
2818 struct lpfc_iocbq *nextiocb;
2819 IOCB_t *iocb;
2820
James Smart92d7f7b2007-06-17 19:56:38 -05002821 if (piocb->iocb_cmpl && (!piocb->vport) &&
2822 (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
2823 (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) {
2824 lpfc_printf_log(phba, KERN_ERR,
2825 LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04002826 "1807 IOCB x%x failed. No vport\n",
James Smart92d7f7b2007-06-17 19:56:38 -05002827 piocb->iocb.ulpCommand);
2828 dump_stack();
2829 return IOCB_ERROR;
2830 }
2831
2832
Linas Vepstas8d63f372007-02-14 14:28:36 -06002833 /* If the PCI channel is in offline state, do not post iocbs. */
2834 if (unlikely(pci_channel_offline(phba->pcidev)))
2835 return IOCB_ERROR;
2836
dea31012005-04-17 16:05:31 -05002837 /*
2838 * We should never get an IOCB if we are in a < LINK_DOWN state
2839 */
James Smart2e0fef82007-06-17 19:56:36 -05002840 if (unlikely(phba->link_state < LPFC_LINK_DOWN))
dea31012005-04-17 16:05:31 -05002841 return IOCB_ERROR;
2842
2843 /*
2844 * Check to see if we are blocking IOCB processing because of a
James Smart0b727fe2007-10-27 13:37:25 -04002845 * outstanding event.
dea31012005-04-17 16:05:31 -05002846 */
James Smart0b727fe2007-10-27 13:37:25 -04002847 if (unlikely(pring->flag & LPFC_STOP_IOCB_EVENT))
dea31012005-04-17 16:05:31 -05002848 goto iocb_busy;
2849
James Smart2e0fef82007-06-17 19:56:36 -05002850 if (unlikely(phba->link_state == LPFC_LINK_DOWN)) {
dea31012005-04-17 16:05:31 -05002851 /*
James Smart2680eea2007-04-25 09:52:55 -04002852 * Only CREATE_XRI, CLOSE_XRI, and QUE_RING_BUF
dea31012005-04-17 16:05:31 -05002853 * can be issued if the link is not up.
2854 */
2855 switch (piocb->iocb.ulpCommand) {
2856 case CMD_QUE_RING_BUF_CN:
2857 case CMD_QUE_RING_BUF64_CN:
dea31012005-04-17 16:05:31 -05002858 /*
2859 * For IOCBs, like QUE_RING_BUF, that have no rsp ring
2860 * completion, iocb_cmpl MUST be 0.
2861 */
2862 if (piocb->iocb_cmpl)
2863 piocb->iocb_cmpl = NULL;
2864 /*FALLTHROUGH*/
2865 case CMD_CREATE_XRI_CR:
James Smart2680eea2007-04-25 09:52:55 -04002866 case CMD_CLOSE_XRI_CN:
2867 case CMD_CLOSE_XRI_CX:
dea31012005-04-17 16:05:31 -05002868 break;
2869 default:
2870 goto iocb_busy;
2871 }
2872
2873 /*
2874 * For FCP commands, we must be in a state where we can process link
2875 * attention events.
2876 */
2877 } else if (unlikely(pring->ringno == phba->sli.fcp_ring &&
James Smart92d7f7b2007-06-17 19:56:38 -05002878 !(phba->sli.sli_flag & LPFC_PROCESS_LA))) {
dea31012005-04-17 16:05:31 -05002879 goto iocb_busy;
James Smart92d7f7b2007-06-17 19:56:38 -05002880 }
dea31012005-04-17 16:05:31 -05002881
dea31012005-04-17 16:05:31 -05002882 while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
2883 (nextiocb = lpfc_sli_next_iocb(phba, pring, &piocb)))
2884 lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
2885
2886 if (iocb)
2887 lpfc_sli_update_ring(phba, pring);
2888 else
2889 lpfc_sli_update_full_ring(phba, pring);
2890
2891 if (!piocb)
2892 return IOCB_SUCCESS;
2893
2894 goto out_busy;
2895
2896 iocb_busy:
2897 pring->stats.iocb_cmd_delay++;
2898
2899 out_busy:
2900
2901 if (!(flag & SLI_IOCB_RET_IOCB)) {
James Smart92d7f7b2007-06-17 19:56:38 -05002902 __lpfc_sli_ringtx_put(phba, pring, piocb);
dea31012005-04-17 16:05:31 -05002903 return IOCB_SUCCESS;
2904 }
2905
2906 return IOCB_BUSY;
2907}
2908
James Smart92d7f7b2007-06-17 19:56:38 -05002909
2910int
2911lpfc_sli_issue_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2912 struct lpfc_iocbq *piocb, uint32_t flag)
2913{
2914 unsigned long iflags;
2915 int rc;
2916
2917 spin_lock_irqsave(&phba->hbalock, iflags);
2918 rc = __lpfc_sli_issue_iocb(phba, pring, piocb, flag);
2919 spin_unlock_irqrestore(&phba->hbalock, iflags);
2920
2921 return rc;
2922}
2923
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05002924static int
2925lpfc_extra_ring_setup( struct lpfc_hba *phba)
2926{
2927 struct lpfc_sli *psli;
2928 struct lpfc_sli_ring *pring;
2929
2930 psli = &phba->sli;
2931
2932 /* Adjust cmd/rsp ring iocb entries more evenly */
James Smarta4bc3372006-12-02 13:34:16 -05002933
2934 /* Take some away from the FCP ring */
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05002935 pring = &psli->ring[psli->fcp_ring];
2936 pring->numCiocb -= SLI2_IOCB_CMD_R1XTRA_ENTRIES;
2937 pring->numRiocb -= SLI2_IOCB_RSP_R1XTRA_ENTRIES;
2938 pring->numCiocb -= SLI2_IOCB_CMD_R3XTRA_ENTRIES;
2939 pring->numRiocb -= SLI2_IOCB_RSP_R3XTRA_ENTRIES;
2940
James Smarta4bc3372006-12-02 13:34:16 -05002941 /* and give them to the extra ring */
2942 pring = &psli->ring[psli->extra_ring];
2943
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05002944 pring->numCiocb += SLI2_IOCB_CMD_R1XTRA_ENTRIES;
2945 pring->numRiocb += SLI2_IOCB_RSP_R1XTRA_ENTRIES;
2946 pring->numCiocb += SLI2_IOCB_CMD_R3XTRA_ENTRIES;
2947 pring->numRiocb += SLI2_IOCB_RSP_R3XTRA_ENTRIES;
2948
2949 /* Setup default profile for this ring */
2950 pring->iotag_max = 4096;
2951 pring->num_mask = 1;
2952 pring->prt[0].profile = 0; /* Mask 0 */
James Smarta4bc3372006-12-02 13:34:16 -05002953 pring->prt[0].rctl = phba->cfg_multi_ring_rctl;
2954 pring->prt[0].type = phba->cfg_multi_ring_type;
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05002955 pring->prt[0].lpfc_sli_rcv_unsol_event = NULL;
2956 return 0;
2957}
2958
James Smart98c9ea52007-10-27 13:37:33 -04002959static void
James Smart57127f12007-10-27 13:37:05 -04002960lpfc_sli_async_event_handler(struct lpfc_hba * phba,
2961 struct lpfc_sli_ring * pring, struct lpfc_iocbq * iocbq)
2962{
2963 IOCB_t *icmd;
2964 uint16_t evt_code;
2965 uint16_t temp;
2966 struct temp_event temp_event_data;
2967 struct Scsi_Host *shost;
2968
2969 icmd = &iocbq->iocb;
2970 evt_code = icmd->un.asyncstat.evt_code;
2971 temp = icmd->ulpContext;
2972
2973 if ((evt_code != ASYNC_TEMP_WARN) &&
2974 (evt_code != ASYNC_TEMP_SAFE)) {
2975 lpfc_printf_log(phba,
2976 KERN_ERR,
2977 LOG_SLI,
2978 "0327 Ring %d handler: unexpected ASYNC_STATUS"
2979 " evt_code 0x%x\n",
2980 pring->ringno,
2981 icmd->un.asyncstat.evt_code);
2982 return;
2983 }
2984 temp_event_data.data = (uint32_t)temp;
2985 temp_event_data.event_type = FC_REG_TEMPERATURE_EVENT;
2986 if (evt_code == ASYNC_TEMP_WARN) {
2987 temp_event_data.event_code = LPFC_THRESHOLD_TEMP;
2988 lpfc_printf_log(phba,
2989 KERN_WARNING,
2990 LOG_TEMP,
2991 "0339 Adapter is very hot, please take "
2992 "corrective action. temperature : %d Celsius\n",
2993 temp);
2994 }
2995 if (evt_code == ASYNC_TEMP_SAFE) {
2996 temp_event_data.event_code = LPFC_NORMAL_TEMP;
2997 lpfc_printf_log(phba,
2998 KERN_INFO,
2999 LOG_TEMP,
3000 "0340 Adapter temperature is OK now. "
3001 "temperature : %d Celsius\n",
3002 temp);
3003 }
3004
3005 /* Send temperature change event to applications */
3006 shost = lpfc_shost_from_vport(phba->pport);
3007 fc_host_post_vendor_event(shost, fc_get_event_number(),
3008 sizeof(temp_event_data), (char *) &temp_event_data,
3009 SCSI_NL_VID_TYPE_PCI | PCI_VENDOR_ID_EMULEX);
3010
3011}
3012
3013
dea31012005-04-17 16:05:31 -05003014int
3015lpfc_sli_setup(struct lpfc_hba *phba)
3016{
James Smarted957682007-06-17 19:56:37 -05003017 int i, totiocbsize = 0;
dea31012005-04-17 16:05:31 -05003018 struct lpfc_sli *psli = &phba->sli;
3019 struct lpfc_sli_ring *pring;
3020
3021 psli->num_rings = MAX_CONFIGURED_RINGS;
3022 psli->sli_flag = 0;
3023 psli->fcp_ring = LPFC_FCP_RING;
3024 psli->next_ring = LPFC_FCP_NEXT_RING;
James Smarta4bc3372006-12-02 13:34:16 -05003025 psli->extra_ring = LPFC_EXTRA_RING;
dea31012005-04-17 16:05:31 -05003026
James Bottomley604a3e32005-10-29 10:28:33 -05003027 psli->iocbq_lookup = NULL;
3028 psli->iocbq_lookup_len = 0;
3029 psli->last_iotag = 0;
3030
dea31012005-04-17 16:05:31 -05003031 for (i = 0; i < psli->num_rings; i++) {
3032 pring = &psli->ring[i];
3033 switch (i) {
3034 case LPFC_FCP_RING: /* ring 0 - FCP */
3035 /* numCiocb and numRiocb are used in config_port */
3036 pring->numCiocb = SLI2_IOCB_CMD_R0_ENTRIES;
3037 pring->numRiocb = SLI2_IOCB_RSP_R0_ENTRIES;
3038 pring->numCiocb += SLI2_IOCB_CMD_R1XTRA_ENTRIES;
3039 pring->numRiocb += SLI2_IOCB_RSP_R1XTRA_ENTRIES;
3040 pring->numCiocb += SLI2_IOCB_CMD_R3XTRA_ENTRIES;
3041 pring->numRiocb += SLI2_IOCB_RSP_R3XTRA_ENTRIES;
James Smarted957682007-06-17 19:56:37 -05003042 pring->sizeCiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05003043 SLI3_IOCB_CMD_SIZE :
3044 SLI2_IOCB_CMD_SIZE;
James Smarted957682007-06-17 19:56:37 -05003045 pring->sizeRiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05003046 SLI3_IOCB_RSP_SIZE :
3047 SLI2_IOCB_RSP_SIZE;
dea31012005-04-17 16:05:31 -05003048 pring->iotag_ctr = 0;
3049 pring->iotag_max =
James Smart92d7f7b2007-06-17 19:56:38 -05003050 (phba->cfg_hba_queue_depth * 2);
dea31012005-04-17 16:05:31 -05003051 pring->fast_iotag = pring->iotag_max;
3052 pring->num_mask = 0;
3053 break;
James Smarta4bc3372006-12-02 13:34:16 -05003054 case LPFC_EXTRA_RING: /* ring 1 - EXTRA */
dea31012005-04-17 16:05:31 -05003055 /* numCiocb and numRiocb are used in config_port */
3056 pring->numCiocb = SLI2_IOCB_CMD_R1_ENTRIES;
3057 pring->numRiocb = SLI2_IOCB_RSP_R1_ENTRIES;
James Smarted957682007-06-17 19:56:37 -05003058 pring->sizeCiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05003059 SLI3_IOCB_CMD_SIZE :
3060 SLI2_IOCB_CMD_SIZE;
James Smarted957682007-06-17 19:56:37 -05003061 pring->sizeRiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05003062 SLI3_IOCB_RSP_SIZE :
3063 SLI2_IOCB_RSP_SIZE;
James Smart2e0fef82007-06-17 19:56:36 -05003064 pring->iotag_max = phba->cfg_hba_queue_depth;
dea31012005-04-17 16:05:31 -05003065 pring->num_mask = 0;
3066 break;
3067 case LPFC_ELS_RING: /* ring 2 - ELS / CT */
3068 /* numCiocb and numRiocb are used in config_port */
3069 pring->numCiocb = SLI2_IOCB_CMD_R2_ENTRIES;
3070 pring->numRiocb = SLI2_IOCB_RSP_R2_ENTRIES;
James Smarted957682007-06-17 19:56:37 -05003071 pring->sizeCiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05003072 SLI3_IOCB_CMD_SIZE :
3073 SLI2_IOCB_CMD_SIZE;
James Smarted957682007-06-17 19:56:37 -05003074 pring->sizeRiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05003075 SLI3_IOCB_RSP_SIZE :
3076 SLI2_IOCB_RSP_SIZE;
dea31012005-04-17 16:05:31 -05003077 pring->fast_iotag = 0;
3078 pring->iotag_ctr = 0;
3079 pring->iotag_max = 4096;
James Smart57127f12007-10-27 13:37:05 -04003080 pring->lpfc_sli_rcv_async_status =
3081 lpfc_sli_async_event_handler;
dea31012005-04-17 16:05:31 -05003082 pring->num_mask = 4;
3083 pring->prt[0].profile = 0; /* Mask 0 */
3084 pring->prt[0].rctl = FC_ELS_REQ;
3085 pring->prt[0].type = FC_ELS_DATA;
3086 pring->prt[0].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -05003087 lpfc_els_unsol_event;
dea31012005-04-17 16:05:31 -05003088 pring->prt[1].profile = 0; /* Mask 1 */
3089 pring->prt[1].rctl = FC_ELS_RSP;
3090 pring->prt[1].type = FC_ELS_DATA;
3091 pring->prt[1].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -05003092 lpfc_els_unsol_event;
dea31012005-04-17 16:05:31 -05003093 pring->prt[2].profile = 0; /* Mask 2 */
3094 /* NameServer Inquiry */
3095 pring->prt[2].rctl = FC_UNSOL_CTL;
3096 /* NameServer */
3097 pring->prt[2].type = FC_COMMON_TRANSPORT_ULP;
3098 pring->prt[2].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -05003099 lpfc_ct_unsol_event;
dea31012005-04-17 16:05:31 -05003100 pring->prt[3].profile = 0; /* Mask 3 */
3101 /* NameServer response */
3102 pring->prt[3].rctl = FC_SOL_CTL;
3103 /* NameServer */
3104 pring->prt[3].type = FC_COMMON_TRANSPORT_ULP;
3105 pring->prt[3].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -05003106 lpfc_ct_unsol_event;
dea31012005-04-17 16:05:31 -05003107 break;
3108 }
James Smarted957682007-06-17 19:56:37 -05003109 totiocbsize += (pring->numCiocb * pring->sizeCiocb) +
James Smart92d7f7b2007-06-17 19:56:38 -05003110 (pring->numRiocb * pring->sizeRiocb);
dea31012005-04-17 16:05:31 -05003111 }
James Smarted957682007-06-17 19:56:37 -05003112 if (totiocbsize > MAX_SLIM_IOCB_SIZE) {
dea31012005-04-17 16:05:31 -05003113 /* Too many cmd / rsp ring entries in SLI2 SLIM */
James Smarte8b62012007-08-02 11:10:09 -04003114 printk(KERN_ERR "%d:0462 Too many cmd / rsp ring entries in "
3115 "SLI2 SLIM Data: x%x x%lx\n",
3116 phba->brd_no, totiocbsize,
3117 (unsigned long) MAX_SLIM_IOCB_SIZE);
dea31012005-04-17 16:05:31 -05003118 }
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05003119 if (phba->cfg_multi_ring_support == 2)
3120 lpfc_extra_ring_setup(phba);
dea31012005-04-17 16:05:31 -05003121
3122 return 0;
3123}
3124
3125int
James Smart2e0fef82007-06-17 19:56:36 -05003126lpfc_sli_queue_setup(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05003127{
3128 struct lpfc_sli *psli;
3129 struct lpfc_sli_ring *pring;
James Bottomley604a3e32005-10-29 10:28:33 -05003130 int i;
dea31012005-04-17 16:05:31 -05003131
3132 psli = &phba->sli;
James Smart2e0fef82007-06-17 19:56:36 -05003133 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003134 INIT_LIST_HEAD(&psli->mboxq);
James Smart92d7f7b2007-06-17 19:56:38 -05003135 INIT_LIST_HEAD(&psli->mboxq_cmpl);
dea31012005-04-17 16:05:31 -05003136 /* Initialize list headers for txq and txcmplq as double linked lists */
3137 for (i = 0; i < psli->num_rings; i++) {
3138 pring = &psli->ring[i];
3139 pring->ringno = i;
3140 pring->next_cmdidx = 0;
3141 pring->local_getidx = 0;
3142 pring->cmdidx = 0;
3143 INIT_LIST_HEAD(&pring->txq);
3144 INIT_LIST_HEAD(&pring->txcmplq);
3145 INIT_LIST_HEAD(&pring->iocb_continueq);
3146 INIT_LIST_HEAD(&pring->postbufq);
dea31012005-04-17 16:05:31 -05003147 }
James Smart2e0fef82007-06-17 19:56:36 -05003148 spin_unlock_irq(&phba->hbalock);
3149 return 1;
dea31012005-04-17 16:05:31 -05003150}
3151
3152int
James Smart92d7f7b2007-06-17 19:56:38 -05003153lpfc_sli_host_down(struct lpfc_vport *vport)
3154{
James Smart858c9f62007-06-17 19:56:39 -05003155 LIST_HEAD(completions);
James Smart92d7f7b2007-06-17 19:56:38 -05003156 struct lpfc_hba *phba = vport->phba;
3157 struct lpfc_sli *psli = &phba->sli;
3158 struct lpfc_sli_ring *pring;
3159 struct lpfc_iocbq *iocb, *next_iocb;
James Smart92d7f7b2007-06-17 19:56:38 -05003160 int i;
3161 unsigned long flags = 0;
3162 uint16_t prev_pring_flag;
3163
3164 lpfc_cleanup_discovery_resources(vport);
3165
3166 spin_lock_irqsave(&phba->hbalock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -05003167 for (i = 0; i < psli->num_rings; i++) {
3168 pring = &psli->ring[i];
3169 prev_pring_flag = pring->flag;
James Smart858c9f62007-06-17 19:56:39 -05003170 if (pring->ringno == LPFC_ELS_RING) /* Only slow rings */
3171 pring->flag |= LPFC_DEFERRED_RING_EVENT;
James Smart92d7f7b2007-06-17 19:56:38 -05003172 /*
3173 * Error everything on the txq since these iocbs have not been
3174 * given to the FW yet.
3175 */
James Smart92d7f7b2007-06-17 19:56:38 -05003176 list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
3177 if (iocb->vport != vport)
3178 continue;
James Smart858c9f62007-06-17 19:56:39 -05003179 list_move_tail(&iocb->list, &completions);
James Smart92d7f7b2007-06-17 19:56:38 -05003180 pring->txq_cnt--;
James Smart92d7f7b2007-06-17 19:56:38 -05003181 }
3182
3183 /* Next issue ABTS for everything on the txcmplq */
3184 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq,
3185 list) {
3186 if (iocb->vport != vport)
3187 continue;
3188 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
3189 }
3190
3191 pring->flag = prev_pring_flag;
3192 }
3193
3194 spin_unlock_irqrestore(&phba->hbalock, flags);
3195
James Smart858c9f62007-06-17 19:56:39 -05003196 while (!list_empty(&completions)) {
3197 list_remove_head(&completions, iocb, struct lpfc_iocbq, list);
3198
3199 if (!iocb->iocb_cmpl)
3200 lpfc_sli_release_iocbq(phba, iocb);
3201 else {
3202 iocb->iocb.ulpStatus = IOSTAT_LOCAL_REJECT;
3203 iocb->iocb.un.ulpWord[4] = IOERR_SLI_DOWN;
3204 (iocb->iocb_cmpl) (phba, iocb, iocb);
3205 }
3206 }
James Smart92d7f7b2007-06-17 19:56:38 -05003207 return 1;
3208}
3209
3210int
James Smart2e0fef82007-06-17 19:56:36 -05003211lpfc_sli_hba_down(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05003212{
James Smart2534ba72007-04-25 09:52:20 -04003213 LIST_HEAD(completions);
James Smart2e0fef82007-06-17 19:56:36 -05003214 struct lpfc_sli *psli = &phba->sli;
dea31012005-04-17 16:05:31 -05003215 struct lpfc_sli_ring *pring;
3216 LPFC_MBOXQ_t *pmb;
James Smart2534ba72007-04-25 09:52:20 -04003217 struct lpfc_iocbq *iocb;
3218 IOCB_t *cmd = NULL;
dea31012005-04-17 16:05:31 -05003219 int i;
3220 unsigned long flags = 0;
3221
dea31012005-04-17 16:05:31 -05003222 lpfc_hba_down_prep(phba);
3223
James Smart92d7f7b2007-06-17 19:56:38 -05003224 lpfc_fabric_abort_hba(phba);
3225
James Smart2e0fef82007-06-17 19:56:36 -05003226 spin_lock_irqsave(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05003227 for (i = 0; i < psli->num_rings; i++) {
3228 pring = &psli->ring[i];
James Smart858c9f62007-06-17 19:56:39 -05003229 if (pring->ringno == LPFC_ELS_RING) /* Only slow rings */
3230 pring->flag |= LPFC_DEFERRED_RING_EVENT;
dea31012005-04-17 16:05:31 -05003231
3232 /*
3233 * Error everything on the txq since these iocbs have not been
3234 * given to the FW yet.
3235 */
James Smart2534ba72007-04-25 09:52:20 -04003236 list_splice_init(&pring->txq, &completions);
dea31012005-04-17 16:05:31 -05003237 pring->txq_cnt = 0;
3238
dea31012005-04-17 16:05:31 -05003239 }
James Smart2e0fef82007-06-17 19:56:36 -05003240 spin_unlock_irqrestore(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05003241
James Smart2534ba72007-04-25 09:52:20 -04003242 while (!list_empty(&completions)) {
James Smart92d7f7b2007-06-17 19:56:38 -05003243 list_remove_head(&completions, iocb, struct lpfc_iocbq, list);
James Smart2534ba72007-04-25 09:52:20 -04003244 cmd = &iocb->iocb;
James Smart2534ba72007-04-25 09:52:20 -04003245
James Smart2e0fef82007-06-17 19:56:36 -05003246 if (!iocb->iocb_cmpl)
3247 lpfc_sli_release_iocbq(phba, iocb);
3248 else {
James Smart2534ba72007-04-25 09:52:20 -04003249 cmd->ulpStatus = IOSTAT_LOCAL_REJECT;
3250 cmd->un.ulpWord[4] = IOERR_SLI_DOWN;
3251 (iocb->iocb_cmpl) (phba, iocb, iocb);
James Smart2e0fef82007-06-17 19:56:36 -05003252 }
James Smart2534ba72007-04-25 09:52:20 -04003253 }
3254
dea31012005-04-17 16:05:31 -05003255 /* Return any active mbox cmds */
3256 del_timer_sync(&psli->mbox_tmo);
James Smarted957682007-06-17 19:56:37 -05003257 spin_lock_irqsave(&phba->hbalock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -05003258
3259 spin_lock(&phba->pport->work_port_lock);
3260 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
3261 spin_unlock(&phba->pport->work_port_lock);
3262
3263 if (psli->mbox_active) {
3264 list_add_tail(&psli->mbox_active->list, &completions);
James Smart2e0fef82007-06-17 19:56:36 -05003265 psli->mbox_active = NULL;
James Smart2e0fef82007-06-17 19:56:36 -05003266 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
dea31012005-04-17 16:05:31 -05003267 }
dea31012005-04-17 16:05:31 -05003268
James Smart92d7f7b2007-06-17 19:56:38 -05003269 /* Return any pending or completed mbox cmds */
3270 list_splice_init(&phba->sli.mboxq, &completions);
3271 list_splice_init(&phba->sli.mboxq_cmpl, &completions);
3272 INIT_LIST_HEAD(&psli->mboxq);
3273 INIT_LIST_HEAD(&psli->mboxq_cmpl);
3274
3275 spin_unlock_irqrestore(&phba->hbalock, flags);
3276
3277 while (!list_empty(&completions)) {
3278 list_remove_head(&completions, pmb, LPFC_MBOXQ_t, list);
dea31012005-04-17 16:05:31 -05003279 pmb->mb.mbxStatus = MBX_NOT_FINISHED;
3280 if (pmb->mbox_cmpl) {
dea31012005-04-17 16:05:31 -05003281 pmb->mbox_cmpl(phba,pmb);
dea31012005-04-17 16:05:31 -05003282 }
3283 }
dea31012005-04-17 16:05:31 -05003284 return 1;
3285}
3286
3287void
3288lpfc_sli_pcimem_bcopy(void *srcp, void *destp, uint32_t cnt)
3289{
3290 uint32_t *src = srcp;
3291 uint32_t *dest = destp;
3292 uint32_t ldata;
3293 int i;
3294
3295 for (i = 0; i < (int)cnt; i += sizeof (uint32_t)) {
3296 ldata = *src;
3297 ldata = le32_to_cpu(ldata);
3298 *dest = ldata;
3299 src++;
3300 dest++;
3301 }
3302}
3303
3304int
James Smart2e0fef82007-06-17 19:56:36 -05003305lpfc_sli_ringpostbuf_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
3306 struct lpfc_dmabuf *mp)
dea31012005-04-17 16:05:31 -05003307{
3308 /* Stick struct lpfc_dmabuf at end of postbufq so driver can look it up
3309 later */
James Smart2e0fef82007-06-17 19:56:36 -05003310 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003311 list_add_tail(&mp->list, &pring->postbufq);
dea31012005-04-17 16:05:31 -05003312 pring->postbufq_cnt++;
James Smart2e0fef82007-06-17 19:56:36 -05003313 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003314 return 0;
3315}
3316
3317
3318struct lpfc_dmabuf *
3319lpfc_sli_ringpostbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
3320 dma_addr_t phys)
3321{
3322 struct lpfc_dmabuf *mp, *next_mp;
3323 struct list_head *slp = &pring->postbufq;
3324
3325 /* Search postbufq, from the begining, looking for a match on phys */
James Smart2e0fef82007-06-17 19:56:36 -05003326 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003327 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
3328 if (mp->phys == phys) {
3329 list_del_init(&mp->list);
3330 pring->postbufq_cnt--;
James Smart2e0fef82007-06-17 19:56:36 -05003331 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003332 return mp;
3333 }
3334 }
3335
James Smart2e0fef82007-06-17 19:56:36 -05003336 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003337 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04003338 "0410 Cannot find virtual addr for mapped buf on "
dea31012005-04-17 16:05:31 -05003339 "ring %d Data x%llx x%p x%p x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04003340 pring->ringno, (unsigned long long)phys,
dea31012005-04-17 16:05:31 -05003341 slp->next, slp->prev, pring->postbufq_cnt);
3342 return NULL;
3343}
3344
3345static void
James Smart2e0fef82007-06-17 19:56:36 -05003346lpfc_sli_abort_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
3347 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05003348{
James Smart2e0fef82007-06-17 19:56:36 -05003349 IOCB_t *irsp = &rspiocb->iocb;
James Smart2680eea2007-04-25 09:52:55 -04003350 uint16_t abort_iotag, abort_context;
James Smart92d7f7b2007-06-17 19:56:38 -05003351 struct lpfc_iocbq *abort_iocb;
James Smart2680eea2007-04-25 09:52:55 -04003352 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
3353
3354 abort_iocb = NULL;
James Smart2680eea2007-04-25 09:52:55 -04003355
3356 if (irsp->ulpStatus) {
3357 abort_context = cmdiocb->iocb.un.acxri.abortContextTag;
3358 abort_iotag = cmdiocb->iocb.un.acxri.abortIoTag;
3359
James Smart2e0fef82007-06-17 19:56:36 -05003360 spin_lock_irq(&phba->hbalock);
James Smart2680eea2007-04-25 09:52:55 -04003361 if (abort_iotag != 0 && abort_iotag <= phba->sli.last_iotag)
3362 abort_iocb = phba->sli.iocbq_lookup[abort_iotag];
3363
James Smart92d7f7b2007-06-17 19:56:38 -05003364 lpfc_printf_log(phba, KERN_INFO, LOG_ELS | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003365 "0327 Cannot abort els iocb %p "
James Smart92d7f7b2007-06-17 19:56:38 -05003366 "with tag %x context %x, abort status %x, "
3367 "abort code %x\n",
James Smarte8b62012007-08-02 11:10:09 -04003368 abort_iocb, abort_iotag, abort_context,
3369 irsp->ulpStatus, irsp->un.ulpWord[4]);
James Smart2680eea2007-04-25 09:52:55 -04003370
3371 /*
3372 * make sure we have the right iocbq before taking it
3373 * off the txcmplq and try to call completion routine.
3374 */
James Smart2e0fef82007-06-17 19:56:36 -05003375 if (!abort_iocb ||
3376 abort_iocb->iocb.ulpContext != abort_context ||
3377 (abort_iocb->iocb_flag & LPFC_DRIVER_ABORTED) == 0)
3378 spin_unlock_irq(&phba->hbalock);
3379 else {
James Smart92d7f7b2007-06-17 19:56:38 -05003380 list_del_init(&abort_iocb->list);
James Smart2680eea2007-04-25 09:52:55 -04003381 pring->txcmplq_cnt--;
James Smart2e0fef82007-06-17 19:56:36 -05003382 spin_unlock_irq(&phba->hbalock);
James Smart2680eea2007-04-25 09:52:55 -04003383
James Smart92d7f7b2007-06-17 19:56:38 -05003384 abort_iocb->iocb_flag &= ~LPFC_DRIVER_ABORTED;
3385 abort_iocb->iocb.ulpStatus = IOSTAT_LOCAL_REJECT;
3386 abort_iocb->iocb.un.ulpWord[4] = IOERR_SLI_ABORTED;
3387 (abort_iocb->iocb_cmpl)(phba, abort_iocb, abort_iocb);
James Smart2680eea2007-04-25 09:52:55 -04003388 }
3389 }
3390
James Bottomley604a3e32005-10-29 10:28:33 -05003391 lpfc_sli_release_iocbq(phba, cmdiocb);
dea31012005-04-17 16:05:31 -05003392 return;
3393}
3394
James Smart92d7f7b2007-06-17 19:56:38 -05003395static void
3396lpfc_ignore_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
3397 struct lpfc_iocbq *rspiocb)
3398{
3399 IOCB_t *irsp = &rspiocb->iocb;
3400
3401 /* ELS cmd tag <ulpIoTag> completes */
3402 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
James Smarte8b62012007-08-02 11:10:09 -04003403 "0133 Ignoring ELS cmd tag x%x completion Data: "
James Smart92d7f7b2007-06-17 19:56:38 -05003404 "x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04003405 irsp->ulpIoTag, irsp->ulpStatus,
James Smart92d7f7b2007-06-17 19:56:38 -05003406 irsp->un.ulpWord[4], irsp->ulpTimeout);
James Smart858c9f62007-06-17 19:56:39 -05003407 if (cmdiocb->iocb.ulpCommand == CMD_GEN_REQUEST64_CR)
3408 lpfc_ct_free_iocb(phba, cmdiocb);
3409 else
3410 lpfc_els_free_iocb(phba, cmdiocb);
James Smart92d7f7b2007-06-17 19:56:38 -05003411 return;
3412}
3413
dea31012005-04-17 16:05:31 -05003414int
James Smart2e0fef82007-06-17 19:56:36 -05003415lpfc_sli_issue_abort_iotag(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
3416 struct lpfc_iocbq *cmdiocb)
dea31012005-04-17 16:05:31 -05003417{
James Smart2e0fef82007-06-17 19:56:36 -05003418 struct lpfc_vport *vport = cmdiocb->vport;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003419 struct lpfc_iocbq *abtsiocbp;
dea31012005-04-17 16:05:31 -05003420 IOCB_t *icmd = NULL;
3421 IOCB_t *iabt = NULL;
James Smart07951072007-04-25 09:51:38 -04003422 int retval = IOCB_ERROR;
3423
James Smart92d7f7b2007-06-17 19:56:38 -05003424 /*
3425 * There are certain command types we don't want to abort. And we
3426 * don't want to abort commands that are already in the process of
3427 * being aborted.
James Smart07951072007-04-25 09:51:38 -04003428 */
3429 icmd = &cmdiocb->iocb;
James Smart2e0fef82007-06-17 19:56:36 -05003430 if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
James Smart92d7f7b2007-06-17 19:56:38 -05003431 icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
3432 (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
James Smart07951072007-04-25 09:51:38 -04003433 return 0;
3434
James Smart858c9f62007-06-17 19:56:39 -05003435 /* If we're unloading, don't abort iocb on the ELS ring, but change the
3436 * callback so that nothing happens when it finishes.
James Smart07951072007-04-25 09:51:38 -04003437 */
James Smart858c9f62007-06-17 19:56:39 -05003438 if ((vport->load_flag & FC_UNLOADING) &&
3439 (pring->ringno == LPFC_ELS_RING)) {
James Smart92d7f7b2007-06-17 19:56:38 -05003440 if (cmdiocb->iocb_flag & LPFC_IO_FABRIC)
3441 cmdiocb->fabric_iocb_cmpl = lpfc_ignore_els_cmpl;
3442 else
3443 cmdiocb->iocb_cmpl = lpfc_ignore_els_cmpl;
James Smart07951072007-04-25 09:51:38 -04003444 goto abort_iotag_exit;
James Smart92d7f7b2007-06-17 19:56:38 -05003445 }
dea31012005-04-17 16:05:31 -05003446
3447 /* issue ABTS for this IOCB based on iotag */
James Smart92d7f7b2007-06-17 19:56:38 -05003448 abtsiocbp = __lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -05003449 if (abtsiocbp == NULL)
3450 return 0;
dea31012005-04-17 16:05:31 -05003451
James Smart07951072007-04-25 09:51:38 -04003452 /* This signals the response to set the correct status
3453 * before calling the completion handler.
3454 */
3455 cmdiocb->iocb_flag |= LPFC_DRIVER_ABORTED;
3456
dea31012005-04-17 16:05:31 -05003457 iabt = &abtsiocbp->iocb;
James Smart07951072007-04-25 09:51:38 -04003458 iabt->un.acxri.abortType = ABORT_TYPE_ABTS;
3459 iabt->un.acxri.abortContextTag = icmd->ulpContext;
3460 iabt->un.acxri.abortIoTag = icmd->ulpIoTag;
dea31012005-04-17 16:05:31 -05003461 iabt->ulpLe = 1;
James Smart07951072007-04-25 09:51:38 -04003462 iabt->ulpClass = icmd->ulpClass;
dea31012005-04-17 16:05:31 -05003463
James Smart2e0fef82007-06-17 19:56:36 -05003464 if (phba->link_state >= LPFC_LINK_UP)
James Smart07951072007-04-25 09:51:38 -04003465 iabt->ulpCommand = CMD_ABORT_XRI_CN;
3466 else
3467 iabt->ulpCommand = CMD_CLOSE_XRI_CN;
3468
3469 abtsiocbp->iocb_cmpl = lpfc_sli_abort_els_cmpl;
James Smart5b8bd0c2007-04-25 09:52:49 -04003470
James Smarte8b62012007-08-02 11:10:09 -04003471 lpfc_printf_vlog(vport, KERN_INFO, LOG_SLI,
3472 "0339 Abort xri x%x, original iotag x%x, "
3473 "abort cmd iotag x%x\n",
3474 iabt->un.acxri.abortContextTag,
3475 iabt->un.acxri.abortIoTag, abtsiocbp->iotag);
James Smart92d7f7b2007-06-17 19:56:38 -05003476 retval = __lpfc_sli_issue_iocb(phba, pring, abtsiocbp, 0);
James Smart07951072007-04-25 09:51:38 -04003477
3478abort_iotag_exit:
James Smart2e0fef82007-06-17 19:56:36 -05003479 /*
3480 * Caller to this routine should check for IOCB_ERROR
3481 * and handle it properly. This routine no longer removes
3482 * iocb off txcmplq and call compl in case of IOCB_ERROR.
James Smart07951072007-04-25 09:51:38 -04003483 */
James Smart2e0fef82007-06-17 19:56:36 -05003484 return retval;
dea31012005-04-17 16:05:31 -05003485}
3486
3487static int
James Smart51ef4c22007-08-02 11:10:31 -04003488lpfc_sli_validate_fcp_iocb(struct lpfc_iocbq *iocbq, struct lpfc_vport *vport,
3489 uint16_t tgt_id, uint64_t lun_id,
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003490 lpfc_ctx_cmd ctx_cmd)
dea31012005-04-17 16:05:31 -05003491{
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003492 struct lpfc_scsi_buf *lpfc_cmd;
3493 struct scsi_cmnd *cmnd;
dea31012005-04-17 16:05:31 -05003494 int rc = 1;
3495
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003496 if (!(iocbq->iocb_flag & LPFC_IO_FCP))
3497 return rc;
3498
James Smart51ef4c22007-08-02 11:10:31 -04003499 if (iocbq->vport != vport)
3500 return rc;
3501
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003502 lpfc_cmd = container_of(iocbq, struct lpfc_scsi_buf, cur_iocbq);
3503 cmnd = lpfc_cmd->pCmd;
3504
3505 if (cmnd == NULL)
dea31012005-04-17 16:05:31 -05003506 return rc;
3507
3508 switch (ctx_cmd) {
3509 case LPFC_CTX_LUN:
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003510 if ((cmnd->device->id == tgt_id) &&
3511 (cmnd->device->lun == lun_id))
dea31012005-04-17 16:05:31 -05003512 rc = 0;
3513 break;
3514 case LPFC_CTX_TGT:
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003515 if (cmnd->device->id == tgt_id)
dea31012005-04-17 16:05:31 -05003516 rc = 0;
3517 break;
dea31012005-04-17 16:05:31 -05003518 case LPFC_CTX_HOST:
3519 rc = 0;
3520 break;
3521 default:
3522 printk(KERN_ERR "%s: Unknown context cmd type, value %d\n",
3523 __FUNCTION__, ctx_cmd);
3524 break;
3525 }
3526
3527 return rc;
3528}
3529
3530int
James Smart51ef4c22007-08-02 11:10:31 -04003531lpfc_sli_sum_iocb(struct lpfc_vport *vport, uint16_t tgt_id, uint64_t lun_id,
3532 lpfc_ctx_cmd ctx_cmd)
dea31012005-04-17 16:05:31 -05003533{
James Smart51ef4c22007-08-02 11:10:31 -04003534 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003535 struct lpfc_iocbq *iocbq;
3536 int sum, i;
dea31012005-04-17 16:05:31 -05003537
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003538 for (i = 1, sum = 0; i <= phba->sli.last_iotag; i++) {
3539 iocbq = phba->sli.iocbq_lookup[i];
dea31012005-04-17 16:05:31 -05003540
James Smart51ef4c22007-08-02 11:10:31 -04003541 if (lpfc_sli_validate_fcp_iocb (iocbq, vport, tgt_id, lun_id,
3542 ctx_cmd) == 0)
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003543 sum++;
dea31012005-04-17 16:05:31 -05003544 }
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003545
dea31012005-04-17 16:05:31 -05003546 return sum;
3547}
3548
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -04003549void
James Smart2e0fef82007-06-17 19:56:36 -05003550lpfc_sli_abort_fcp_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
3551 struct lpfc_iocbq *rspiocb)
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -04003552{
James Bottomley604a3e32005-10-29 10:28:33 -05003553 lpfc_sli_release_iocbq(phba, cmdiocb);
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -04003554 return;
3555}
3556
dea31012005-04-17 16:05:31 -05003557int
James Smart51ef4c22007-08-02 11:10:31 -04003558lpfc_sli_abort_iocb(struct lpfc_vport *vport, struct lpfc_sli_ring *pring,
3559 uint16_t tgt_id, uint64_t lun_id, lpfc_ctx_cmd abort_cmd)
dea31012005-04-17 16:05:31 -05003560{
James Smart51ef4c22007-08-02 11:10:31 -04003561 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003562 struct lpfc_iocbq *iocbq;
3563 struct lpfc_iocbq *abtsiocb;
dea31012005-04-17 16:05:31 -05003564 IOCB_t *cmd = NULL;
dea31012005-04-17 16:05:31 -05003565 int errcnt = 0, ret_val = 0;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003566 int i;
dea31012005-04-17 16:05:31 -05003567
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003568 for (i = 1; i <= phba->sli.last_iotag; i++) {
3569 iocbq = phba->sli.iocbq_lookup[i];
dea31012005-04-17 16:05:31 -05003570
James Smart51ef4c22007-08-02 11:10:31 -04003571 if (lpfc_sli_validate_fcp_iocb(iocbq, vport, tgt_id, lun_id,
James Smart2e0fef82007-06-17 19:56:36 -05003572 abort_cmd) != 0)
dea31012005-04-17 16:05:31 -05003573 continue;
3574
3575 /* issue ABTS for this IOCB based on iotag */
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003576 abtsiocb = lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -05003577 if (abtsiocb == NULL) {
3578 errcnt++;
3579 continue;
3580 }
dea31012005-04-17 16:05:31 -05003581
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003582 cmd = &iocbq->iocb;
dea31012005-04-17 16:05:31 -05003583 abtsiocb->iocb.un.acxri.abortType = ABORT_TYPE_ABTS;
3584 abtsiocb->iocb.un.acxri.abortContextTag = cmd->ulpContext;
3585 abtsiocb->iocb.un.acxri.abortIoTag = cmd->ulpIoTag;
3586 abtsiocb->iocb.ulpLe = 1;
3587 abtsiocb->iocb.ulpClass = cmd->ulpClass;
James Smart2e0fef82007-06-17 19:56:36 -05003588 abtsiocb->vport = phba->pport;
dea31012005-04-17 16:05:31 -05003589
James Smart2e0fef82007-06-17 19:56:36 -05003590 if (lpfc_is_link_up(phba))
dea31012005-04-17 16:05:31 -05003591 abtsiocb->iocb.ulpCommand = CMD_ABORT_XRI_CN;
3592 else
3593 abtsiocb->iocb.ulpCommand = CMD_CLOSE_XRI_CN;
3594
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -04003595 /* Setup callback routine and issue the command. */
3596 abtsiocb->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
dea31012005-04-17 16:05:31 -05003597 ret_val = lpfc_sli_issue_iocb(phba, pring, abtsiocb, 0);
3598 if (ret_val == IOCB_ERROR) {
James Bottomley604a3e32005-10-29 10:28:33 -05003599 lpfc_sli_release_iocbq(phba, abtsiocb);
dea31012005-04-17 16:05:31 -05003600 errcnt++;
3601 continue;
3602 }
3603 }
3604
3605 return errcnt;
3606}
3607
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04003608static void
3609lpfc_sli_wake_iocb_wait(struct lpfc_hba *phba,
3610 struct lpfc_iocbq *cmdiocbq,
3611 struct lpfc_iocbq *rspiocbq)
dea31012005-04-17 16:05:31 -05003612{
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04003613 wait_queue_head_t *pdone_q;
3614 unsigned long iflags;
dea31012005-04-17 16:05:31 -05003615
James Smart2e0fef82007-06-17 19:56:36 -05003616 spin_lock_irqsave(&phba->hbalock, iflags);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04003617 cmdiocbq->iocb_flag |= LPFC_IO_WAKE;
3618 if (cmdiocbq->context2 && rspiocbq)
3619 memcpy(&((struct lpfc_iocbq *)cmdiocbq->context2)->iocb,
3620 &rspiocbq->iocb, sizeof(IOCB_t));
3621
3622 pdone_q = cmdiocbq->context_un.wait_queue;
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04003623 if (pdone_q)
3624 wake_up(pdone_q);
James Smart858c9f62007-06-17 19:56:39 -05003625 spin_unlock_irqrestore(&phba->hbalock, iflags);
dea31012005-04-17 16:05:31 -05003626 return;
3627}
3628
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04003629/*
3630 * Issue the caller's iocb and wait for its completion, but no longer than the
3631 * caller's timeout. Note that iocb_flags is cleared before the
3632 * lpfc_sli_issue_call since the wake routine sets a unique value and by
3633 * definition this is a wait function.
3634 */
James Smart92d7f7b2007-06-17 19:56:38 -05003635
dea31012005-04-17 16:05:31 -05003636int
James Smart2e0fef82007-06-17 19:56:36 -05003637lpfc_sli_issue_iocb_wait(struct lpfc_hba *phba,
3638 struct lpfc_sli_ring *pring,
3639 struct lpfc_iocbq *piocb,
3640 struct lpfc_iocbq *prspiocbq,
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04003641 uint32_t timeout)
dea31012005-04-17 16:05:31 -05003642{
Peter Zijlstra7259f0d2006-10-29 22:46:36 -08003643 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04003644 long timeleft, timeout_req = 0;
3645 int retval = IOCB_SUCCESS;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003646 uint32_t creg_val;
dea31012005-04-17 16:05:31 -05003647
3648 /*
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04003649 * If the caller has provided a response iocbq buffer, then context2
3650 * is NULL or its an error.
dea31012005-04-17 16:05:31 -05003651 */
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04003652 if (prspiocbq) {
3653 if (piocb->context2)
3654 return IOCB_ERROR;
3655 piocb->context2 = prspiocbq;
dea31012005-04-17 16:05:31 -05003656 }
3657
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04003658 piocb->iocb_cmpl = lpfc_sli_wake_iocb_wait;
3659 piocb->context_un.wait_queue = &done_q;
3660 piocb->iocb_flag &= ~LPFC_IO_WAKE;
dea31012005-04-17 16:05:31 -05003661
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003662 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
3663 creg_val = readl(phba->HCregaddr);
3664 creg_val |= (HC_R0INT_ENA << LPFC_FCP_RING);
3665 writel(creg_val, phba->HCregaddr);
3666 readl(phba->HCregaddr); /* flush */
3667 }
3668
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04003669 retval = lpfc_sli_issue_iocb(phba, pring, piocb, 0);
3670 if (retval == IOCB_SUCCESS) {
3671 timeout_req = timeout * HZ;
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04003672 timeleft = wait_event_timeout(done_q,
3673 piocb->iocb_flag & LPFC_IO_WAKE,
3674 timeout_req);
dea31012005-04-17 16:05:31 -05003675
James Smart7054a602007-04-25 09:52:34 -04003676 if (piocb->iocb_flag & LPFC_IO_WAKE) {
3677 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003678 "0331 IOCB wake signaled\n");
James Smart7054a602007-04-25 09:52:34 -04003679 } else if (timeleft == 0) {
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04003680 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003681 "0338 IOCB wait timeout error - no "
3682 "wake response Data x%x\n", timeout);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04003683 retval = IOCB_TIMEDOUT;
James Smart7054a602007-04-25 09:52:34 -04003684 } else {
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04003685 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003686 "0330 IOCB wake NOT set, "
3687 "Data x%x x%lx\n",
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04003688 timeout, (timeleft / jiffies));
3689 retval = IOCB_TIMEDOUT;
dea31012005-04-17 16:05:31 -05003690 }
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04003691 } else {
3692 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003693 ":0332 IOCB wait issue failed, Data x%x\n",
3694 retval);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04003695 retval = IOCB_ERROR;
dea31012005-04-17 16:05:31 -05003696 }
3697
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003698 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
3699 creg_val = readl(phba->HCregaddr);
3700 creg_val &= ~(HC_R0INT_ENA << LPFC_FCP_RING);
3701 writel(creg_val, phba->HCregaddr);
3702 readl(phba->HCregaddr); /* flush */
3703 }
3704
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04003705 if (prspiocbq)
3706 piocb->context2 = NULL;
3707
3708 piocb->context_un.wait_queue = NULL;
3709 piocb->iocb_cmpl = NULL;
dea31012005-04-17 16:05:31 -05003710 return retval;
3711}
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04003712
dea31012005-04-17 16:05:31 -05003713int
James Smart2e0fef82007-06-17 19:56:36 -05003714lpfc_sli_issue_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq,
dea31012005-04-17 16:05:31 -05003715 uint32_t timeout)
3716{
Peter Zijlstra7259f0d2006-10-29 22:46:36 -08003717 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
dea31012005-04-17 16:05:31 -05003718 int retval;
James Smart858c9f62007-06-17 19:56:39 -05003719 unsigned long flag;
dea31012005-04-17 16:05:31 -05003720
3721 /* The caller must leave context1 empty. */
James Smart98c9ea52007-10-27 13:37:33 -04003722 if (pmboxq->context1)
James Smart2e0fef82007-06-17 19:56:36 -05003723 return MBX_NOT_FINISHED;
dea31012005-04-17 16:05:31 -05003724
3725 /* setup wake call as IOCB callback */
3726 pmboxq->mbox_cmpl = lpfc_sli_wake_mbox_wait;
3727 /* setup context field to pass wait_queue pointer to wake function */
3728 pmboxq->context1 = &done_q;
3729
dea31012005-04-17 16:05:31 -05003730 /* now issue the command */
3731 retval = lpfc_sli_issue_mbox(phba, pmboxq, MBX_NOWAIT);
3732
3733 if (retval == MBX_BUSY || retval == MBX_SUCCESS) {
James Smart7054a602007-04-25 09:52:34 -04003734 wait_event_interruptible_timeout(done_q,
3735 pmboxq->mbox_flag & LPFC_MBX_WAKE,
3736 timeout * HZ);
3737
James Smart858c9f62007-06-17 19:56:39 -05003738 spin_lock_irqsave(&phba->hbalock, flag);
dea31012005-04-17 16:05:31 -05003739 pmboxq->context1 = NULL;
James Smart7054a602007-04-25 09:52:34 -04003740 /*
3741 * if LPFC_MBX_WAKE flag is set the mailbox is completed
3742 * else do not free the resources.
3743 */
3744 if (pmboxq->mbox_flag & LPFC_MBX_WAKE)
dea31012005-04-17 16:05:31 -05003745 retval = MBX_SUCCESS;
James Smart858c9f62007-06-17 19:56:39 -05003746 else {
James Smart7054a602007-04-25 09:52:34 -04003747 retval = MBX_TIMEOUT;
James Smart858c9f62007-06-17 19:56:39 -05003748 pmboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
3749 }
3750 spin_unlock_irqrestore(&phba->hbalock, flag);
dea31012005-04-17 16:05:31 -05003751 }
3752
dea31012005-04-17 16:05:31 -05003753 return retval;
3754}
3755
James Smartb4c02652006-07-06 15:50:43 -04003756int
3757lpfc_sli_flush_mbox_queue(struct lpfc_hba * phba)
3758{
James Smart2e0fef82007-06-17 19:56:36 -05003759 struct lpfc_vport *vport = phba->pport;
James Smartb4c02652006-07-06 15:50:43 -04003760 int i = 0;
James Smarted957682007-06-17 19:56:37 -05003761 uint32_t ha_copy;
James Smartb4c02652006-07-06 15:50:43 -04003762
James Smart2e0fef82007-06-17 19:56:36 -05003763 while (phba->sli.sli_flag & LPFC_SLI_MBOX_ACTIVE && !vport->stopped) {
James Smartb4c02652006-07-06 15:50:43 -04003764 if (i++ > LPFC_MBOX_TMO * 1000)
3765 return 1;
3766
James Smarted957682007-06-17 19:56:37 -05003767 /*
3768 * Call lpfc_sli_handle_mb_event only if a mailbox cmd
3769 * did finish. This way we won't get the misleading
3770 * "Stray Mailbox Interrupt" message.
3771 */
3772 spin_lock_irq(&phba->hbalock);
3773 ha_copy = phba->work_ha;
3774 phba->work_ha &= ~HA_MBATT;
3775 spin_unlock_irq(&phba->hbalock);
3776
3777 if (ha_copy & HA_MBATT)
3778 if (lpfc_sli_handle_mb_event(phba) == 0)
3779 i = 0;
James Smartb4c02652006-07-06 15:50:43 -04003780
3781 msleep(1);
3782 }
3783
3784 return (phba->sli.sli_flag & LPFC_SLI_MBOX_ACTIVE) ? 1 : 0;
3785}
3786
dea31012005-04-17 16:05:31 -05003787irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +01003788lpfc_intr_handler(int irq, void *dev_id)
dea31012005-04-17 16:05:31 -05003789{
James Smart2e0fef82007-06-17 19:56:36 -05003790 struct lpfc_hba *phba;
dea31012005-04-17 16:05:31 -05003791 uint32_t ha_copy;
3792 uint32_t work_ha_copy;
3793 unsigned long status;
dea31012005-04-17 16:05:31 -05003794 uint32_t control;
3795
James Smart92d7f7b2007-06-17 19:56:38 -05003796 MAILBOX_t *mbox, *pmbox;
James Smart858c9f62007-06-17 19:56:39 -05003797 struct lpfc_vport *vport;
3798 struct lpfc_nodelist *ndlp;
3799 struct lpfc_dmabuf *mp;
James Smart92d7f7b2007-06-17 19:56:38 -05003800 LPFC_MBOXQ_t *pmb;
3801 int rc;
3802
dea31012005-04-17 16:05:31 -05003803 /*
3804 * Get the driver's phba structure from the dev_id and
3805 * assume the HBA is not interrupting.
3806 */
3807 phba = (struct lpfc_hba *) dev_id;
3808
3809 if (unlikely(!phba))
3810 return IRQ_NONE;
3811
Linas Vepstas8d63f372007-02-14 14:28:36 -06003812 /* If the pci channel is offline, ignore all the interrupts. */
3813 if (unlikely(pci_channel_offline(phba->pcidev)))
3814 return IRQ_NONE;
3815
dea31012005-04-17 16:05:31 -05003816 phba->sli.slistat.sli_intr++;
3817
3818 /*
3819 * Call the HBA to see if it is interrupting. If not, don't claim
3820 * the interrupt
3821 */
3822
3823 /* Ignore all interrupts during initialization. */
James Smart2e0fef82007-06-17 19:56:36 -05003824 if (unlikely(phba->link_state < LPFC_LINK_DOWN))
dea31012005-04-17 16:05:31 -05003825 return IRQ_NONE;
3826
3827 /*
3828 * Read host attention register to determine interrupt source
3829 * Clear Attention Sources, except Error Attention (to
3830 * preserve status) and Link Attention
3831 */
James Smart2e0fef82007-06-17 19:56:36 -05003832 spin_lock(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003833 ha_copy = readl(phba->HAregaddr);
James Smartebdbe652007-04-25 09:53:15 -04003834 /* If somebody is waiting to handle an eratt don't process it
3835 * here. The brdkill function will do this.
3836 */
James Smart2e0fef82007-06-17 19:56:36 -05003837 if (phba->link_flag & LS_IGNORE_ERATT)
James Smartebdbe652007-04-25 09:53:15 -04003838 ha_copy &= ~HA_ERATT;
dea31012005-04-17 16:05:31 -05003839 writel((ha_copy & ~(HA_LATT | HA_ERATT)), phba->HAregaddr);
3840 readl(phba->HAregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -05003841 spin_unlock(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003842
3843 if (unlikely(!ha_copy))
3844 return IRQ_NONE;
3845
3846 work_ha_copy = ha_copy & phba->work_ha_mask;
3847
3848 if (unlikely(work_ha_copy)) {
3849 if (work_ha_copy & HA_LATT) {
3850 if (phba->sli.sli_flag & LPFC_PROCESS_LA) {
3851 /*
3852 * Turn off Link Attention interrupts
3853 * until CLEAR_LA done
3854 */
James Smart2e0fef82007-06-17 19:56:36 -05003855 spin_lock(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003856 phba->sli.sli_flag &= ~LPFC_PROCESS_LA;
3857 control = readl(phba->HCregaddr);
3858 control &= ~HC_LAINT_ENA;
3859 writel(control, phba->HCregaddr);
3860 readl(phba->HCregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -05003861 spin_unlock(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003862 }
3863 else
3864 work_ha_copy &= ~HA_LATT;
3865 }
3866
3867 if (work_ha_copy & ~(HA_ERATT|HA_MBATT|HA_LATT)) {
James Smart858c9f62007-06-17 19:56:39 -05003868 /*
3869 * Turn off Slow Rings interrupts, LPFC_ELS_RING is
3870 * the only slow ring.
3871 */
3872 status = (work_ha_copy &
3873 (HA_RXMASK << (4*LPFC_ELS_RING)));
3874 status >>= (4*LPFC_ELS_RING);
3875 if (status & HA_RXMASK) {
3876 spin_lock(&phba->hbalock);
3877 control = readl(phba->HCregaddr);
James Smarta58cbd52007-08-02 11:09:43 -04003878
3879 lpfc_debugfs_slow_ring_trc(phba,
3880 "ISR slow ring: ctl:x%x stat:x%x isrcnt:x%x",
3881 control, status,
3882 (uint32_t)phba->sli.slistat.sli_intr);
3883
James Smart858c9f62007-06-17 19:56:39 -05003884 if (control & (HC_R0INT_ENA << LPFC_ELS_RING)) {
James Smarta58cbd52007-08-02 11:09:43 -04003885 lpfc_debugfs_slow_ring_trc(phba,
3886 "ISR Disable ring:"
3887 "pwork:x%x hawork:x%x wait:x%x",
3888 phba->work_ha, work_ha_copy,
3889 (uint32_t)((unsigned long)
3890 phba->work_wait));
3891
James Smart858c9f62007-06-17 19:56:39 -05003892 control &=
3893 ~(HC_R0INT_ENA << LPFC_ELS_RING);
dea31012005-04-17 16:05:31 -05003894 writel(control, phba->HCregaddr);
3895 readl(phba->HCregaddr); /* flush */
dea31012005-04-17 16:05:31 -05003896 }
James Smarta58cbd52007-08-02 11:09:43 -04003897 else {
3898 lpfc_debugfs_slow_ring_trc(phba,
3899 "ISR slow ring: pwork:"
3900 "x%x hawork:x%x wait:x%x",
3901 phba->work_ha, work_ha_copy,
3902 (uint32_t)((unsigned long)
3903 phba->work_wait));
3904 }
James Smart858c9f62007-06-17 19:56:39 -05003905 spin_unlock(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003906 }
3907 }
3908
3909 if (work_ha_copy & HA_ERATT) {
James Smart2e0fef82007-06-17 19:56:36 -05003910 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05003911 /*
3912 * There was a link/board error. Read the
3913 * status register to retrieve the error event
3914 * and process it.
3915 */
3916 phba->sli.slistat.err_attn_event++;
3917 /* Save status info */
3918 phba->work_hs = readl(phba->HSregaddr);
3919 phba->work_status[0] = readl(phba->MBslimaddr + 0xa8);
3920 phba->work_status[1] = readl(phba->MBslimaddr + 0xac);
3921
3922 /* Clear Chip error bit */
3923 writel(HA_ERATT, phba->HAregaddr);
3924 readl(phba->HAregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -05003925 phba->pport->stopped = 1;
dea31012005-04-17 16:05:31 -05003926 }
3927
James Smart92d7f7b2007-06-17 19:56:38 -05003928 if ((work_ha_copy & HA_MBATT) &&
3929 (phba->sli.mbox_active)) {
3930 pmb = phba->sli.mbox_active;
3931 pmbox = &pmb->mb;
3932 mbox = &phba->slim2p->mbx;
James Smart858c9f62007-06-17 19:56:39 -05003933 vport = pmb->vport;
James Smart92d7f7b2007-06-17 19:56:38 -05003934
3935 /* First check out the status word */
3936 lpfc_sli_pcimem_bcopy(mbox, pmbox, sizeof(uint32_t));
3937 if (pmbox->mbxOwner != OWN_HOST) {
3938 /*
3939 * Stray Mailbox Interrupt, mbxCommand <cmd>
3940 * mbxStatus <status>
3941 */
3942 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX |
3943 LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003944 "(%d):0304 Stray Mailbox "
James Smart92d7f7b2007-06-17 19:56:38 -05003945 "Interrupt mbxCommand x%x "
3946 "mbxStatus x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04003947 (vport ? vport->vpi : 0),
James Smart92d7f7b2007-06-17 19:56:38 -05003948 pmbox->mbxCommand,
3949 pmbox->mbxStatus);
3950 }
James Smart858c9f62007-06-17 19:56:39 -05003951 phba->last_completion_time = jiffies;
James Smart92d7f7b2007-06-17 19:56:38 -05003952 del_timer_sync(&phba->sli.mbox_tmo);
3953
James Smart92d7f7b2007-06-17 19:56:38 -05003954 phba->sli.mbox_active = NULL;
3955 if (pmb->mbox_cmpl) {
3956 lpfc_sli_pcimem_bcopy(mbox, pmbox,
3957 MAILBOX_CMD_SIZE);
3958 }
James Smart858c9f62007-06-17 19:56:39 -05003959 if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
3960 pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
3961
3962 lpfc_debugfs_disc_trc(vport,
3963 LPFC_DISC_TRC_MBOX_VPORT,
3964 "MBOX dflt rpi: : status:x%x rpi:x%x",
3965 (uint32_t)pmbox->mbxStatus,
3966 pmbox->un.varWords[0], 0);
3967
3968 if ( !pmbox->mbxStatus) {
3969 mp = (struct lpfc_dmabuf *)
3970 (pmb->context1);
3971 ndlp = (struct lpfc_nodelist *)
3972 pmb->context2;
3973
3974 /* Reg_LOGIN of dflt RPI was successful.
3975 * new lets get rid of the RPI using the
3976 * same mbox buffer.
3977 */
3978 lpfc_unreg_login(phba, vport->vpi,
3979 pmbox->un.varWords[0], pmb);
3980 pmb->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
3981 pmb->context1 = mp;
3982 pmb->context2 = ndlp;
3983 pmb->vport = vport;
3984 spin_lock(&phba->hbalock);
3985 phba->sli.sli_flag &=
3986 ~LPFC_SLI_MBOX_ACTIVE;
3987 spin_unlock(&phba->hbalock);
3988 goto send_current_mbox;
3989 }
3990 }
3991 spin_lock(&phba->pport->work_port_lock);
3992 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
3993 spin_unlock(&phba->pport->work_port_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05003994 lpfc_mbox_cmpl_put(phba, pmb);
3995 }
3996 if ((work_ha_copy & HA_MBATT) &&
3997 (phba->sli.mbox_active == NULL)) {
3998send_next_mbox:
3999 spin_lock(&phba->hbalock);
4000 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
4001 pmb = lpfc_mbox_get(phba);
4002 spin_unlock(&phba->hbalock);
James Smart858c9f62007-06-17 19:56:39 -05004003send_current_mbox:
James Smart92d7f7b2007-06-17 19:56:38 -05004004 /* Process next mailbox command if there is one */
4005 if (pmb != NULL) {
4006 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
4007 if (rc == MBX_NOT_FINISHED) {
4008 pmb->mb.mbxStatus = MBX_NOT_FINISHED;
4009 lpfc_mbox_cmpl_put(phba, pmb);
4010 goto send_next_mbox;
4011 }
James Smart92d7f7b2007-06-17 19:56:38 -05004012 }
4013
4014 }
4015
James Smart2e0fef82007-06-17 19:56:36 -05004016 spin_lock(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004017 phba->work_ha |= work_ha_copy;
4018 if (phba->work_wait)
James Smart92d7f7b2007-06-17 19:56:38 -05004019 lpfc_worker_wake_up(phba);
James Smart2e0fef82007-06-17 19:56:36 -05004020 spin_unlock(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004021 }
4022
4023 ha_copy &= ~(phba->work_ha_mask);
4024
4025 /*
4026 * Process all events on FCP ring. Take the optimized path for
4027 * FCP IO. Any other IO is slow path and is handled by
4028 * the worker thread.
4029 */
4030 status = (ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
4031 status >>= (4*LPFC_FCP_RING);
James Smart858c9f62007-06-17 19:56:39 -05004032 if (status & HA_RXMASK)
dea31012005-04-17 16:05:31 -05004033 lpfc_sli_handle_fast_ring_event(phba,
4034 &phba->sli.ring[LPFC_FCP_RING],
4035 status);
James Smarta4bc3372006-12-02 13:34:16 -05004036
4037 if (phba->cfg_multi_ring_support == 2) {
4038 /*
4039 * Process all events on extra ring. Take the optimized path
4040 * for extra ring IO. Any other IO is slow path and is handled
4041 * by the worker thread.
4042 */
4043 status = (ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
4044 status >>= (4*LPFC_EXTRA_RING);
James Smart858c9f62007-06-17 19:56:39 -05004045 if (status & HA_RXMASK) {
James Smarta4bc3372006-12-02 13:34:16 -05004046 lpfc_sli_handle_fast_ring_event(phba,
4047 &phba->sli.ring[LPFC_EXTRA_RING],
4048 status);
4049 }
4050 }
dea31012005-04-17 16:05:31 -05004051 return IRQ_HANDLED;
4052
4053} /* lpfc_intr_handler */