blob: 99afe15222734eed40e3afb735a0012eb32a63dd [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 Smartbdcd2b92012-03-01 22:33:52 -05004 * Copyright (C) 2004-2012 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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
dea31012005-04-17 16:05:31 -050027
James.Smart@Emulex.Com91886522005-08-10 15:03:09 -040028#include <scsi/scsi.h>
dea31012005-04-17 16:05:31 -050029#include <scsi/scsi_cmnd.h>
30#include <scsi/scsi_device.h>
31#include <scsi/scsi_host.h>
James.Smart@Emulex.Comf888ba32005-08-10 15:03:01 -040032#include <scsi/scsi_transport_fc.h>
James Smartda0436e2009-05-22 14:51:39 -040033#include <scsi/fc/fc_fs.h>
James Smart0d878412009-10-02 15:16:56 -040034#include <linux/aer.h>
dea31012005-04-17 16:05:31 -050035
James Smartda0436e2009-05-22 14:51:39 -040036#include "lpfc_hw4.h"
dea31012005-04-17 16:05:31 -050037#include "lpfc_hw.h"
38#include "lpfc_sli.h"
James Smartda0436e2009-05-22 14:51:39 -040039#include "lpfc_sli4.h"
James Smartea2151b2008-09-07 11:52:10 -040040#include "lpfc_nl.h"
dea31012005-04-17 16:05:31 -050041#include "lpfc_disc.h"
42#include "lpfc_scsi.h"
43#include "lpfc.h"
44#include "lpfc_crtn.h"
45#include "lpfc_logmsg.h"
46#include "lpfc_compat.h"
James Smart858c9f62007-06-17 19:56:39 -050047#include "lpfc_debugfs.h"
James Smart04c68492009-05-22 14:52:52 -040048#include "lpfc_vport.h"
dea31012005-04-17 16:05:31 -050049
50/* There are only four IOCB completion types. */
51typedef enum _lpfc_iocb_type {
52 LPFC_UNKNOWN_IOCB,
53 LPFC_UNSOL_IOCB,
54 LPFC_SOL_IOCB,
55 LPFC_ABORT_IOCB
56} lpfc_iocb_type;
57
James Smart4f774512009-05-22 14:52:35 -040058
59/* Provide function prototypes local to this module. */
60static int lpfc_sli_issue_mbox_s4(struct lpfc_hba *, LPFC_MBOXQ_t *,
61 uint32_t);
62static int lpfc_sli4_read_rev(struct lpfc_hba *, LPFC_MBOXQ_t *,
James Smart45ed1192009-10-02 15:17:02 -040063 uint8_t *, uint32_t *);
64static struct lpfc_iocbq *lpfc_sli4_els_wcqe_to_rspiocbq(struct lpfc_hba *,
65 struct lpfc_iocbq *);
James Smart6669f9b2009-10-02 15:16:45 -040066static void lpfc_sli4_send_seq_to_ulp(struct lpfc_vport *,
67 struct hbq_dmabuf *);
James Smart05580562011-05-24 11:40:48 -040068static int lpfc_sli4_fp_handle_wcqe(struct lpfc_hba *, struct lpfc_queue *,
69 struct lpfc_cqe *);
70
James Smart4f774512009-05-22 14:52:35 -040071static IOCB_t *
72lpfc_get_iocb_from_iocbq(struct lpfc_iocbq *iocbq)
73{
74 return &iocbq->iocb;
75}
76
77/**
78 * lpfc_sli4_wq_put - Put a Work Queue Entry on an Work Queue
79 * @q: The Work Queue to operate on.
80 * @wqe: The work Queue Entry to put on the Work queue.
81 *
82 * This routine will copy the contents of @wqe to the next available entry on
83 * the @q. This function will then ring the Work Queue Doorbell to signal the
84 * HBA to start processing the Work Queue Entry. This function returns 0 if
85 * successful. If no entries are available on @q then this function will return
86 * -ENOMEM.
87 * The caller is expected to hold the hbalock when calling this routine.
88 **/
89static uint32_t
90lpfc_sli4_wq_put(struct lpfc_queue *q, union lpfc_wqe *wqe)
91{
James Smart2e90f4b2011-12-13 13:22:37 -050092 union lpfc_wqe *temp_wqe;
James Smart4f774512009-05-22 14:52:35 -040093 struct lpfc_register doorbell;
94 uint32_t host_index;
95
James Smart2e90f4b2011-12-13 13:22:37 -050096 /* sanity check on queue memory */
97 if (unlikely(!q))
98 return -ENOMEM;
99 temp_wqe = q->qe[q->host_index].wqe;
100
James Smart4f774512009-05-22 14:52:35 -0400101 /* If the host has not yet processed the next entry then we are done */
102 if (((q->host_index + 1) % q->entry_count) == q->hba_index)
103 return -ENOMEM;
104 /* set consumption flag every once in a while */
James Smartff78d8f2011-12-13 13:21:35 -0500105 if (!((q->host_index + 1) % q->entry_repost))
James Smartf0d9bcc2010-10-22 11:07:09 -0400106 bf_set(wqe_wqec, &wqe->generic.wqe_com, 1);
James Smartfedd3b72011-02-16 12:39:24 -0500107 if (q->phba->sli3_options & LPFC_SLI4_PHWQ_ENABLED)
108 bf_set(wqe_wqid, &wqe->generic.wqe_com, q->queue_id);
James Smart4f774512009-05-22 14:52:35 -0400109 lpfc_sli_pcimem_bcopy(wqe, temp_wqe, q->entry_size);
110
111 /* Update the host index before invoking device */
112 host_index = q->host_index;
113 q->host_index = ((q->host_index + 1) % q->entry_count);
114
115 /* Ring Doorbell */
116 doorbell.word0 = 0;
117 bf_set(lpfc_wq_doorbell_num_posted, &doorbell, 1);
118 bf_set(lpfc_wq_doorbell_index, &doorbell, host_index);
119 bf_set(lpfc_wq_doorbell_id, &doorbell, q->queue_id);
120 writel(doorbell.word0, q->phba->sli4_hba.WQDBregaddr);
121 readl(q->phba->sli4_hba.WQDBregaddr); /* Flush */
122
123 return 0;
124}
125
126/**
127 * lpfc_sli4_wq_release - Updates internal hba index for WQ
128 * @q: The Work Queue to operate on.
129 * @index: The index to advance the hba index to.
130 *
131 * This routine will update the HBA index of a queue to reflect consumption of
132 * Work Queue Entries by the HBA. When the HBA indicates that it has consumed
133 * an entry the host calls this function to update the queue's internal
134 * pointers. This routine returns the number of entries that were consumed by
135 * the HBA.
136 **/
137static uint32_t
138lpfc_sli4_wq_release(struct lpfc_queue *q, uint32_t index)
139{
140 uint32_t released = 0;
141
James Smart2e90f4b2011-12-13 13:22:37 -0500142 /* sanity check on queue memory */
143 if (unlikely(!q))
144 return 0;
145
James Smart4f774512009-05-22 14:52:35 -0400146 if (q->hba_index == index)
147 return 0;
148 do {
149 q->hba_index = ((q->hba_index + 1) % q->entry_count);
150 released++;
151 } while (q->hba_index != index);
152 return released;
153}
154
155/**
156 * lpfc_sli4_mq_put - Put a Mailbox Queue Entry on an Mailbox Queue
157 * @q: The Mailbox Queue to operate on.
158 * @wqe: The Mailbox Queue Entry to put on the Work queue.
159 *
160 * This routine will copy the contents of @mqe to the next available entry on
161 * the @q. This function will then ring the Work Queue Doorbell to signal the
162 * HBA to start processing the Work Queue Entry. This function returns 0 if
163 * successful. If no entries are available on @q then this function will return
164 * -ENOMEM.
165 * The caller is expected to hold the hbalock when calling this routine.
166 **/
167static uint32_t
168lpfc_sli4_mq_put(struct lpfc_queue *q, struct lpfc_mqe *mqe)
169{
James Smart2e90f4b2011-12-13 13:22:37 -0500170 struct lpfc_mqe *temp_mqe;
James Smart4f774512009-05-22 14:52:35 -0400171 struct lpfc_register doorbell;
172 uint32_t host_index;
173
James Smart2e90f4b2011-12-13 13:22:37 -0500174 /* sanity check on queue memory */
175 if (unlikely(!q))
176 return -ENOMEM;
177 temp_mqe = q->qe[q->host_index].mqe;
178
James Smart4f774512009-05-22 14:52:35 -0400179 /* If the host has not yet processed the next entry then we are done */
180 if (((q->host_index + 1) % q->entry_count) == q->hba_index)
181 return -ENOMEM;
182 lpfc_sli_pcimem_bcopy(mqe, temp_mqe, q->entry_size);
183 /* Save off the mailbox pointer for completion */
184 q->phba->mbox = (MAILBOX_t *)temp_mqe;
185
186 /* Update the host index before invoking device */
187 host_index = q->host_index;
188 q->host_index = ((q->host_index + 1) % q->entry_count);
189
190 /* Ring Doorbell */
191 doorbell.word0 = 0;
192 bf_set(lpfc_mq_doorbell_num_posted, &doorbell, 1);
193 bf_set(lpfc_mq_doorbell_id, &doorbell, q->queue_id);
194 writel(doorbell.word0, q->phba->sli4_hba.MQDBregaddr);
195 readl(q->phba->sli4_hba.MQDBregaddr); /* Flush */
196 return 0;
197}
198
199/**
200 * lpfc_sli4_mq_release - Updates internal hba index for MQ
201 * @q: The Mailbox Queue to operate on.
202 *
203 * This routine will update the HBA index of a queue to reflect consumption of
204 * a Mailbox Queue Entry by the HBA. When the HBA indicates that it has consumed
205 * an entry the host calls this function to update the queue's internal
206 * pointers. This routine returns the number of entries that were consumed by
207 * the HBA.
208 **/
209static uint32_t
210lpfc_sli4_mq_release(struct lpfc_queue *q)
211{
James Smart2e90f4b2011-12-13 13:22:37 -0500212 /* sanity check on queue memory */
213 if (unlikely(!q))
214 return 0;
215
James Smart4f774512009-05-22 14:52:35 -0400216 /* Clear the mailbox pointer for completion */
217 q->phba->mbox = NULL;
218 q->hba_index = ((q->hba_index + 1) % q->entry_count);
219 return 1;
220}
221
222/**
223 * lpfc_sli4_eq_get - Gets the next valid EQE from a EQ
224 * @q: The Event Queue to get the first valid EQE from
225 *
226 * This routine will get the first valid Event Queue Entry from @q, update
227 * the queue's internal hba index, and return the EQE. If no valid EQEs are in
228 * the Queue (no more work to do), or the Queue is full of EQEs that have been
229 * processed, but not popped back to the HBA then this routine will return NULL.
230 **/
231static struct lpfc_eqe *
232lpfc_sli4_eq_get(struct lpfc_queue *q)
233{
James Smart2e90f4b2011-12-13 13:22:37 -0500234 struct lpfc_eqe *eqe;
235
236 /* sanity check on queue memory */
237 if (unlikely(!q))
238 return NULL;
239 eqe = q->qe[q->hba_index].eqe;
James Smart4f774512009-05-22 14:52:35 -0400240
241 /* If the next EQE is not valid then we are done */
James Smartcb5172e2010-03-15 11:25:07 -0400242 if (!bf_get_le32(lpfc_eqe_valid, eqe))
James Smart4f774512009-05-22 14:52:35 -0400243 return NULL;
244 /* If the host has not yet processed the next entry then we are done */
245 if (((q->hba_index + 1) % q->entry_count) == q->host_index)
246 return NULL;
247
248 q->hba_index = ((q->hba_index + 1) % q->entry_count);
249 return eqe;
250}
251
252/**
253 * lpfc_sli4_eq_release - Indicates the host has finished processing an EQ
254 * @q: The Event Queue that the host has completed processing for.
255 * @arm: Indicates whether the host wants to arms this CQ.
256 *
257 * This routine will mark all Event Queue Entries on @q, from the last
258 * known completed entry to the last entry that was processed, as completed
259 * by clearing the valid bit for each completion queue entry. Then it will
260 * notify the HBA, by ringing the doorbell, that the EQEs have been processed.
261 * The internal host index in the @q will be updated by this routine to indicate
262 * that the host has finished processing the entries. The @arm parameter
263 * indicates that the queue should be rearmed when ringing the doorbell.
264 *
265 * This function will return the number of EQEs that were popped.
266 **/
267uint32_t
268lpfc_sli4_eq_release(struct lpfc_queue *q, bool arm)
269{
270 uint32_t released = 0;
271 struct lpfc_eqe *temp_eqe;
272 struct lpfc_register doorbell;
273
James Smart2e90f4b2011-12-13 13:22:37 -0500274 /* sanity check on queue memory */
275 if (unlikely(!q))
276 return 0;
277
James Smart4f774512009-05-22 14:52:35 -0400278 /* while there are valid entries */
279 while (q->hba_index != q->host_index) {
280 temp_eqe = q->qe[q->host_index].eqe;
James Smartcb5172e2010-03-15 11:25:07 -0400281 bf_set_le32(lpfc_eqe_valid, temp_eqe, 0);
James Smart4f774512009-05-22 14:52:35 -0400282 released++;
283 q->host_index = ((q->host_index + 1) % q->entry_count);
284 }
285 if (unlikely(released == 0 && !arm))
286 return 0;
287
288 /* ring doorbell for number popped */
289 doorbell.word0 = 0;
290 if (arm) {
291 bf_set(lpfc_eqcq_doorbell_arm, &doorbell, 1);
292 bf_set(lpfc_eqcq_doorbell_eqci, &doorbell, 1);
293 }
294 bf_set(lpfc_eqcq_doorbell_num_released, &doorbell, released);
295 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_EVENT);
James Smart6b5151f2012-01-18 16:24:06 -0500296 bf_set(lpfc_eqcq_doorbell_eqid_hi, &doorbell,
297 (q->queue_id >> LPFC_EQID_HI_FIELD_SHIFT));
298 bf_set(lpfc_eqcq_doorbell_eqid_lo, &doorbell, q->queue_id);
James Smart4f774512009-05-22 14:52:35 -0400299 writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
James Smarta747c9c2009-11-18 15:41:10 -0500300 /* PCI read to flush PCI pipeline on re-arming for INTx mode */
301 if ((q->phba->intr_type == INTx) && (arm == LPFC_QUEUE_REARM))
302 readl(q->phba->sli4_hba.EQCQDBregaddr);
James Smart4f774512009-05-22 14:52:35 -0400303 return released;
304}
305
306/**
307 * lpfc_sli4_cq_get - Gets the next valid CQE from a CQ
308 * @q: The Completion Queue to get the first valid CQE from
309 *
310 * This routine will get the first valid Completion Queue Entry from @q, update
311 * the queue's internal hba index, and return the CQE. If no valid CQEs are in
312 * the Queue (no more work to do), or the Queue is full of CQEs that have been
313 * processed, but not popped back to the HBA then this routine will return NULL.
314 **/
315static struct lpfc_cqe *
316lpfc_sli4_cq_get(struct lpfc_queue *q)
317{
318 struct lpfc_cqe *cqe;
319
James Smart2e90f4b2011-12-13 13:22:37 -0500320 /* sanity check on queue memory */
321 if (unlikely(!q))
322 return NULL;
323
James Smart4f774512009-05-22 14:52:35 -0400324 /* If the next CQE is not valid then we are done */
James Smartcb5172e2010-03-15 11:25:07 -0400325 if (!bf_get_le32(lpfc_cqe_valid, q->qe[q->hba_index].cqe))
James Smart4f774512009-05-22 14:52:35 -0400326 return NULL;
327 /* If the host has not yet processed the next entry then we are done */
328 if (((q->hba_index + 1) % q->entry_count) == q->host_index)
329 return NULL;
330
331 cqe = q->qe[q->hba_index].cqe;
332 q->hba_index = ((q->hba_index + 1) % q->entry_count);
333 return cqe;
334}
335
336/**
337 * lpfc_sli4_cq_release - Indicates the host has finished processing a CQ
338 * @q: The Completion Queue that the host has completed processing for.
339 * @arm: Indicates whether the host wants to arms this CQ.
340 *
341 * This routine will mark all Completion queue entries on @q, from the last
342 * known completed entry to the last entry that was processed, as completed
343 * by clearing the valid bit for each completion queue entry. Then it will
344 * notify the HBA, by ringing the doorbell, that the CQEs have been processed.
345 * The internal host index in the @q will be updated by this routine to indicate
346 * that the host has finished processing the entries. The @arm parameter
347 * indicates that the queue should be rearmed when ringing the doorbell.
348 *
349 * This function will return the number of CQEs that were released.
350 **/
351uint32_t
352lpfc_sli4_cq_release(struct lpfc_queue *q, bool arm)
353{
354 uint32_t released = 0;
355 struct lpfc_cqe *temp_qe;
356 struct lpfc_register doorbell;
357
James Smart2e90f4b2011-12-13 13:22:37 -0500358 /* sanity check on queue memory */
359 if (unlikely(!q))
360 return 0;
James Smart4f774512009-05-22 14:52:35 -0400361 /* while there are valid entries */
362 while (q->hba_index != q->host_index) {
363 temp_qe = q->qe[q->host_index].cqe;
James Smartcb5172e2010-03-15 11:25:07 -0400364 bf_set_le32(lpfc_cqe_valid, temp_qe, 0);
James Smart4f774512009-05-22 14:52:35 -0400365 released++;
366 q->host_index = ((q->host_index + 1) % q->entry_count);
367 }
368 if (unlikely(released == 0 && !arm))
369 return 0;
370
371 /* ring doorbell for number popped */
372 doorbell.word0 = 0;
373 if (arm)
374 bf_set(lpfc_eqcq_doorbell_arm, &doorbell, 1);
375 bf_set(lpfc_eqcq_doorbell_num_released, &doorbell, released);
376 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_COMPLETION);
James Smart6b5151f2012-01-18 16:24:06 -0500377 bf_set(lpfc_eqcq_doorbell_cqid_hi, &doorbell,
378 (q->queue_id >> LPFC_CQID_HI_FIELD_SHIFT));
379 bf_set(lpfc_eqcq_doorbell_cqid_lo, &doorbell, q->queue_id);
James Smart4f774512009-05-22 14:52:35 -0400380 writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
381 return released;
382}
383
384/**
385 * lpfc_sli4_rq_put - Put a Receive Buffer Queue Entry on a Receive Queue
386 * @q: The Header Receive Queue to operate on.
387 * @wqe: The Receive Queue Entry to put on the Receive queue.
388 *
389 * This routine will copy the contents of @wqe to the next available entry on
390 * the @q. This function will then ring the Receive Queue Doorbell to signal the
391 * HBA to start processing the Receive Queue Entry. This function returns the
392 * index that the rqe was copied to if successful. If no entries are available
393 * on @q then this function will return -ENOMEM.
394 * The caller is expected to hold the hbalock when calling this routine.
395 **/
396static int
397lpfc_sli4_rq_put(struct lpfc_queue *hq, struct lpfc_queue *dq,
398 struct lpfc_rqe *hrqe, struct lpfc_rqe *drqe)
399{
James Smart2e90f4b2011-12-13 13:22:37 -0500400 struct lpfc_rqe *temp_hrqe;
401 struct lpfc_rqe *temp_drqe;
James Smart4f774512009-05-22 14:52:35 -0400402 struct lpfc_register doorbell;
403 int put_index = hq->host_index;
404
James Smart2e90f4b2011-12-13 13:22:37 -0500405 /* sanity check on queue memory */
406 if (unlikely(!hq) || unlikely(!dq))
407 return -ENOMEM;
408 temp_hrqe = hq->qe[hq->host_index].rqe;
409 temp_drqe = dq->qe[dq->host_index].rqe;
410
James Smart4f774512009-05-22 14:52:35 -0400411 if (hq->type != LPFC_HRQ || dq->type != LPFC_DRQ)
412 return -EINVAL;
413 if (hq->host_index != dq->host_index)
414 return -EINVAL;
415 /* If the host has not yet processed the next entry then we are done */
416 if (((hq->host_index + 1) % hq->entry_count) == hq->hba_index)
417 return -EBUSY;
418 lpfc_sli_pcimem_bcopy(hrqe, temp_hrqe, hq->entry_size);
419 lpfc_sli_pcimem_bcopy(drqe, temp_drqe, dq->entry_size);
420
421 /* Update the host index to point to the next slot */
422 hq->host_index = ((hq->host_index + 1) % hq->entry_count);
423 dq->host_index = ((dq->host_index + 1) % dq->entry_count);
424
425 /* Ring The Header Receive Queue Doorbell */
James Smart73d91e52011-10-10 21:32:10 -0400426 if (!(hq->host_index % hq->entry_repost)) {
James Smart4f774512009-05-22 14:52:35 -0400427 doorbell.word0 = 0;
428 bf_set(lpfc_rq_doorbell_num_posted, &doorbell,
James Smart73d91e52011-10-10 21:32:10 -0400429 hq->entry_repost);
James Smart4f774512009-05-22 14:52:35 -0400430 bf_set(lpfc_rq_doorbell_id, &doorbell, hq->queue_id);
431 writel(doorbell.word0, hq->phba->sli4_hba.RQDBregaddr);
432 }
433 return put_index;
434}
435
436/**
437 * lpfc_sli4_rq_release - Updates internal hba index for RQ
438 * @q: The Header Receive Queue to operate on.
439 *
440 * This routine will update the HBA index of a queue to reflect consumption of
441 * one Receive Queue Entry by the HBA. When the HBA indicates that it has
442 * consumed an entry the host calls this function to update the queue's
443 * internal pointers. This routine returns the number of entries that were
444 * consumed by the HBA.
445 **/
446static uint32_t
447lpfc_sli4_rq_release(struct lpfc_queue *hq, struct lpfc_queue *dq)
448{
James Smart2e90f4b2011-12-13 13:22:37 -0500449 /* sanity check on queue memory */
450 if (unlikely(!hq) || unlikely(!dq))
451 return 0;
452
James Smart4f774512009-05-22 14:52:35 -0400453 if ((hq->type != LPFC_HRQ) || (dq->type != LPFC_DRQ))
454 return 0;
455 hq->hba_index = ((hq->hba_index + 1) % hq->entry_count);
456 dq->hba_index = ((dq->hba_index + 1) % dq->entry_count);
457 return 1;
458}
459
James Smarte59058c2008-08-24 21:49:00 -0400460/**
James Smart3621a712009-04-06 18:47:14 -0400461 * lpfc_cmd_iocb - Get next command iocb entry in the ring
James Smarte59058c2008-08-24 21:49:00 -0400462 * @phba: Pointer to HBA context object.
463 * @pring: Pointer to driver SLI ring object.
464 *
465 * This function returns pointer to next command iocb entry
466 * in the command ring. The caller must hold hbalock to prevent
467 * other threads consume the next command iocb.
468 * SLI-2/SLI-3 provide different sized iocbs.
469 **/
James Smarted957682007-06-17 19:56:37 -0500470static inline IOCB_t *
471lpfc_cmd_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
472{
473 return (IOCB_t *) (((char *) pring->cmdringaddr) +
474 pring->cmdidx * phba->iocb_cmd_size);
475}
476
James Smarte59058c2008-08-24 21:49:00 -0400477/**
James Smart3621a712009-04-06 18:47:14 -0400478 * lpfc_resp_iocb - Get next response iocb entry in the ring
James Smarte59058c2008-08-24 21:49:00 -0400479 * @phba: Pointer to HBA context object.
480 * @pring: Pointer to driver SLI ring object.
481 *
482 * This function returns pointer to next response iocb entry
483 * in the response ring. The caller must hold hbalock to make sure
484 * that no other thread consume the next response iocb.
485 * SLI-2/SLI-3 provide different sized iocbs.
486 **/
James Smarted957682007-06-17 19:56:37 -0500487static inline IOCB_t *
488lpfc_resp_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
489{
490 return (IOCB_t *) (((char *) pring->rspringaddr) +
491 pring->rspidx * phba->iocb_rsp_size);
492}
493
James Smarte59058c2008-08-24 21:49:00 -0400494/**
James Smart3621a712009-04-06 18:47:14 -0400495 * __lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
James Smarte59058c2008-08-24 21:49:00 -0400496 * @phba: Pointer to HBA context object.
497 *
498 * This function is called with hbalock held. This function
499 * allocates a new driver iocb object from the iocb pool. If the
500 * allocation is successful, it returns pointer to the newly
501 * allocated iocb object else it returns NULL.
502 **/
James Smart2e0fef82007-06-17 19:56:36 -0500503static struct lpfc_iocbq *
504__lpfc_sli_get_iocbq(struct lpfc_hba *phba)
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400505{
506 struct list_head *lpfc_iocb_list = &phba->lpfc_iocb_list;
507 struct lpfc_iocbq * iocbq = NULL;
508
509 list_remove_head(lpfc_iocb_list, iocbq, struct lpfc_iocbq, list);
James Smart2a9bf3d2010-06-07 15:24:45 -0400510 if (iocbq)
511 phba->iocb_cnt++;
512 if (phba->iocb_cnt > phba->iocb_max)
513 phba->iocb_max = phba->iocb_cnt;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400514 return iocbq;
515}
516
James Smarte59058c2008-08-24 21:49:00 -0400517/**
James Smartda0436e2009-05-22 14:51:39 -0400518 * __lpfc_clear_active_sglq - Remove the active sglq for this XRI.
519 * @phba: Pointer to HBA context object.
520 * @xritag: XRI value.
521 *
522 * This function clears the sglq pointer from the array of acive
523 * sglq's. The xritag that is passed in is used to index into the
524 * array. Before the xritag can be used it needs to be adjusted
525 * by subtracting the xribase.
526 *
527 * Returns sglq ponter = success, NULL = Failure.
528 **/
529static struct lpfc_sglq *
530__lpfc_clear_active_sglq(struct lpfc_hba *phba, uint16_t xritag)
531{
James Smartda0436e2009-05-22 14:51:39 -0400532 struct lpfc_sglq *sglq;
James Smart6d368e52011-05-24 11:44:12 -0400533
534 sglq = phba->sli4_hba.lpfc_sglq_active_list[xritag];
535 phba->sli4_hba.lpfc_sglq_active_list[xritag] = NULL;
James Smartda0436e2009-05-22 14:51:39 -0400536 return sglq;
537}
538
539/**
540 * __lpfc_get_active_sglq - Get the active sglq for this XRI.
541 * @phba: Pointer to HBA context object.
542 * @xritag: XRI value.
543 *
544 * This function returns the sglq pointer from the array of acive
545 * sglq's. The xritag that is passed in is used to index into the
546 * array. Before the xritag can be used it needs to be adjusted
547 * by subtracting the xribase.
548 *
549 * Returns sglq ponter = success, NULL = Failure.
550 **/
James Smart0f65ff62010-02-26 14:14:23 -0500551struct lpfc_sglq *
James Smartda0436e2009-05-22 14:51:39 -0400552__lpfc_get_active_sglq(struct lpfc_hba *phba, uint16_t xritag)
553{
James Smartda0436e2009-05-22 14:51:39 -0400554 struct lpfc_sglq *sglq;
James Smart6d368e52011-05-24 11:44:12 -0400555
556 sglq = phba->sli4_hba.lpfc_sglq_active_list[xritag];
James Smartda0436e2009-05-22 14:51:39 -0400557 return sglq;
558}
559
560/**
James Smart1151e3e2011-02-16 12:39:35 -0500561 * lpfc_clr_rrq_active - Clears RRQ active bit in xri_bitmap.
James Smart19ca7602010-11-20 23:11:55 -0500562 * @phba: Pointer to HBA context object.
563 * @xritag: xri used in this exchange.
564 * @rrq: The RRQ to be cleared.
565 *
James Smart19ca7602010-11-20 23:11:55 -0500566 **/
James Smart1151e3e2011-02-16 12:39:35 -0500567void
568lpfc_clr_rrq_active(struct lpfc_hba *phba,
569 uint16_t xritag,
570 struct lpfc_node_rrq *rrq)
James Smart19ca7602010-11-20 23:11:55 -0500571{
James Smart1151e3e2011-02-16 12:39:35 -0500572 struct lpfc_nodelist *ndlp = NULL;
James Smart19ca7602010-11-20 23:11:55 -0500573
James Smart1151e3e2011-02-16 12:39:35 -0500574 if ((rrq->vport) && NLP_CHK_NODE_ACT(rrq->ndlp))
575 ndlp = lpfc_findnode_did(rrq->vport, rrq->nlp_DID);
James Smart19ca7602010-11-20 23:11:55 -0500576
577 /* The target DID could have been swapped (cable swap)
578 * we should use the ndlp from the findnode if it is
579 * available.
580 */
James Smart1151e3e2011-02-16 12:39:35 -0500581 if ((!ndlp) && rrq->ndlp)
James Smart19ca7602010-11-20 23:11:55 -0500582 ndlp = rrq->ndlp;
583
James Smart1151e3e2011-02-16 12:39:35 -0500584 if (!ndlp)
585 goto out;
586
James Smart6d368e52011-05-24 11:44:12 -0400587 if (test_and_clear_bit(xritag, ndlp->active_rrqs.xri_bitmap)) {
James Smart19ca7602010-11-20 23:11:55 -0500588 rrq->send_rrq = 0;
589 rrq->xritag = 0;
590 rrq->rrq_stop_time = 0;
591 }
James Smart1151e3e2011-02-16 12:39:35 -0500592out:
James Smart19ca7602010-11-20 23:11:55 -0500593 mempool_free(rrq, phba->rrq_pool);
594}
595
596/**
597 * lpfc_handle_rrq_active - Checks if RRQ has waithed RATOV.
598 * @phba: Pointer to HBA context object.
599 *
600 * This function is called with hbalock held. This function
601 * Checks if stop_time (ratov from setting rrq active) has
602 * been reached, if it has and the send_rrq flag is set then
603 * it will call lpfc_send_rrq. If the send_rrq flag is not set
604 * then it will just call the routine to clear the rrq and
605 * free the rrq resource.
606 * The timer is set to the next rrq that is going to expire before
607 * leaving the routine.
608 *
609 **/
610void
611lpfc_handle_rrq_active(struct lpfc_hba *phba)
612{
613 struct lpfc_node_rrq *rrq;
614 struct lpfc_node_rrq *nextrrq;
615 unsigned long next_time;
616 unsigned long iflags;
James Smart1151e3e2011-02-16 12:39:35 -0500617 LIST_HEAD(send_rrq);
James Smart19ca7602010-11-20 23:11:55 -0500618
619 spin_lock_irqsave(&phba->hbalock, iflags);
620 phba->hba_flag &= ~HBA_RRQ_ACTIVE;
621 next_time = jiffies + HZ * (phba->fc_ratov + 1);
622 list_for_each_entry_safe(rrq, nextrrq,
James Smart1151e3e2011-02-16 12:39:35 -0500623 &phba->active_rrq_list, list) {
624 if (time_after(jiffies, rrq->rrq_stop_time))
625 list_move(&rrq->list, &send_rrq);
626 else if (time_before(rrq->rrq_stop_time, next_time))
James Smart19ca7602010-11-20 23:11:55 -0500627 next_time = rrq->rrq_stop_time;
628 }
629 spin_unlock_irqrestore(&phba->hbalock, iflags);
630 if (!list_empty(&phba->active_rrq_list))
631 mod_timer(&phba->rrq_tmr, next_time);
James Smart1151e3e2011-02-16 12:39:35 -0500632 list_for_each_entry_safe(rrq, nextrrq, &send_rrq, list) {
633 list_del(&rrq->list);
634 if (!rrq->send_rrq)
635 /* this call will free the rrq */
636 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
637 else if (lpfc_send_rrq(phba, rrq)) {
638 /* if we send the rrq then the completion handler
639 * will clear the bit in the xribitmap.
640 */
641 lpfc_clr_rrq_active(phba, rrq->xritag,
642 rrq);
643 }
644 }
James Smart19ca7602010-11-20 23:11:55 -0500645}
646
647/**
648 * lpfc_get_active_rrq - Get the active RRQ for this exchange.
649 * @vport: Pointer to vport context object.
650 * @xri: The xri used in the exchange.
651 * @did: The targets DID for this exchange.
652 *
653 * returns NULL = rrq not found in the phba->active_rrq_list.
654 * rrq = rrq for this xri and target.
655 **/
656struct lpfc_node_rrq *
657lpfc_get_active_rrq(struct lpfc_vport *vport, uint16_t xri, uint32_t did)
658{
659 struct lpfc_hba *phba = vport->phba;
660 struct lpfc_node_rrq *rrq;
661 struct lpfc_node_rrq *nextrrq;
662 unsigned long iflags;
663
664 if (phba->sli_rev != LPFC_SLI_REV4)
665 return NULL;
666 spin_lock_irqsave(&phba->hbalock, iflags);
667 list_for_each_entry_safe(rrq, nextrrq, &phba->active_rrq_list, list) {
668 if (rrq->vport == vport && rrq->xritag == xri &&
669 rrq->nlp_DID == did){
670 list_del(&rrq->list);
671 spin_unlock_irqrestore(&phba->hbalock, iflags);
672 return rrq;
673 }
674 }
675 spin_unlock_irqrestore(&phba->hbalock, iflags);
676 return NULL;
677}
678
679/**
680 * lpfc_cleanup_vports_rrqs - Remove and clear the active RRQ for this vport.
681 * @vport: Pointer to vport context object.
James Smart1151e3e2011-02-16 12:39:35 -0500682 * @ndlp: Pointer to the lpfc_node_list structure.
683 * If ndlp is NULL Remove all active RRQs for this vport from the
684 * phba->active_rrq_list and clear the rrq.
685 * If ndlp is not NULL then only remove rrqs for this vport & this ndlp.
James Smart19ca7602010-11-20 23:11:55 -0500686 **/
687void
James Smart1151e3e2011-02-16 12:39:35 -0500688lpfc_cleanup_vports_rrqs(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
James Smart19ca7602010-11-20 23:11:55 -0500689
690{
691 struct lpfc_hba *phba = vport->phba;
692 struct lpfc_node_rrq *rrq;
693 struct lpfc_node_rrq *nextrrq;
694 unsigned long iflags;
James Smart1151e3e2011-02-16 12:39:35 -0500695 LIST_HEAD(rrq_list);
James Smart19ca7602010-11-20 23:11:55 -0500696
697 if (phba->sli_rev != LPFC_SLI_REV4)
698 return;
James Smart1151e3e2011-02-16 12:39:35 -0500699 if (!ndlp) {
700 lpfc_sli4_vport_delete_els_xri_aborted(vport);
701 lpfc_sli4_vport_delete_fcp_xri_aborted(vport);
James Smart19ca7602010-11-20 23:11:55 -0500702 }
James Smart1151e3e2011-02-16 12:39:35 -0500703 spin_lock_irqsave(&phba->hbalock, iflags);
704 list_for_each_entry_safe(rrq, nextrrq, &phba->active_rrq_list, list)
705 if ((rrq->vport == vport) && (!ndlp || rrq->ndlp == ndlp))
706 list_move(&rrq->list, &rrq_list);
James Smart19ca7602010-11-20 23:11:55 -0500707 spin_unlock_irqrestore(&phba->hbalock, iflags);
James Smart1151e3e2011-02-16 12:39:35 -0500708
709 list_for_each_entry_safe(rrq, nextrrq, &rrq_list, list) {
710 list_del(&rrq->list);
711 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
712 }
James Smart19ca7602010-11-20 23:11:55 -0500713}
714
715/**
716 * lpfc_cleanup_wt_rrqs - Remove all rrq's from the active list.
717 * @phba: Pointer to HBA context object.
718 *
719 * Remove all rrqs from the phba->active_rrq_list and free them by
720 * calling __lpfc_clr_active_rrq
721 *
722 **/
723void
724lpfc_cleanup_wt_rrqs(struct lpfc_hba *phba)
725{
726 struct lpfc_node_rrq *rrq;
727 struct lpfc_node_rrq *nextrrq;
728 unsigned long next_time;
729 unsigned long iflags;
James Smart1151e3e2011-02-16 12:39:35 -0500730 LIST_HEAD(rrq_list);
James Smart19ca7602010-11-20 23:11:55 -0500731
732 if (phba->sli_rev != LPFC_SLI_REV4)
733 return;
734 spin_lock_irqsave(&phba->hbalock, iflags);
735 phba->hba_flag &= ~HBA_RRQ_ACTIVE;
736 next_time = jiffies + HZ * (phba->fc_ratov * 2);
James Smart1151e3e2011-02-16 12:39:35 -0500737 list_splice_init(&phba->active_rrq_list, &rrq_list);
James Smart19ca7602010-11-20 23:11:55 -0500738 spin_unlock_irqrestore(&phba->hbalock, iflags);
James Smart1151e3e2011-02-16 12:39:35 -0500739
740 list_for_each_entry_safe(rrq, nextrrq, &rrq_list, list) {
741 list_del(&rrq->list);
742 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
743 }
James Smart19ca7602010-11-20 23:11:55 -0500744 if (!list_empty(&phba->active_rrq_list))
745 mod_timer(&phba->rrq_tmr, next_time);
746}
747
748
749/**
James Smart1151e3e2011-02-16 12:39:35 -0500750 * lpfc_test_rrq_active - Test RRQ bit in xri_bitmap.
James Smart19ca7602010-11-20 23:11:55 -0500751 * @phba: Pointer to HBA context object.
752 * @ndlp: Targets nodelist pointer for this exchange.
753 * @xritag the xri in the bitmap to test.
754 *
755 * This function is called with hbalock held. This function
756 * returns 0 = rrq not active for this xri
757 * 1 = rrq is valid for this xri.
758 **/
James Smart1151e3e2011-02-16 12:39:35 -0500759int
760lpfc_test_rrq_active(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp,
James Smart19ca7602010-11-20 23:11:55 -0500761 uint16_t xritag)
762{
James Smart19ca7602010-11-20 23:11:55 -0500763 if (!ndlp)
764 return 0;
James Smart6d368e52011-05-24 11:44:12 -0400765 if (test_bit(xritag, ndlp->active_rrqs.xri_bitmap))
James Smart19ca7602010-11-20 23:11:55 -0500766 return 1;
767 else
768 return 0;
769}
770
771/**
772 * lpfc_set_rrq_active - set RRQ active bit in xri_bitmap.
773 * @phba: Pointer to HBA context object.
774 * @ndlp: nodelist pointer for this target.
775 * @xritag: xri used in this exchange.
776 * @rxid: Remote Exchange ID.
777 * @send_rrq: Flag used to determine if we should send rrq els cmd.
778 *
779 * This function takes the hbalock.
780 * The active bit is always set in the active rrq xri_bitmap even
781 * if there is no slot avaiable for the other rrq information.
782 *
783 * returns 0 rrq actived for this xri
784 * < 0 No memory or invalid ndlp.
785 **/
786int
787lpfc_set_rrq_active(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp,
James Smartb42c07c2012-01-18 16:25:55 -0500788 uint16_t xritag, uint16_t rxid, uint16_t send_rrq)
James Smart19ca7602010-11-20 23:11:55 -0500789{
James Smart19ca7602010-11-20 23:11:55 -0500790 unsigned long iflags;
James Smartb42c07c2012-01-18 16:25:55 -0500791 struct lpfc_node_rrq *rrq;
792 int empty;
793
794 if (!ndlp)
795 return -EINVAL;
796
797 if (!phba->cfg_enable_rrq)
798 return -EINVAL;
James Smart19ca7602010-11-20 23:11:55 -0500799
800 spin_lock_irqsave(&phba->hbalock, iflags);
James Smartb42c07c2012-01-18 16:25:55 -0500801 if (phba->pport->load_flag & FC_UNLOADING) {
802 phba->hba_flag &= ~HBA_RRQ_ACTIVE;
803 goto out;
804 }
805
806 /*
807 * set the active bit even if there is no mem available.
808 */
809 if (NLP_CHK_FREE_REQ(ndlp))
810 goto out;
811
812 if (ndlp->vport && (ndlp->vport->load_flag & FC_UNLOADING))
813 goto out;
814
815 if (test_and_set_bit(xritag, ndlp->active_rrqs.xri_bitmap))
816 goto out;
817
James Smart19ca7602010-11-20 23:11:55 -0500818 spin_unlock_irqrestore(&phba->hbalock, iflags);
James Smartb42c07c2012-01-18 16:25:55 -0500819 rrq = mempool_alloc(phba->rrq_pool, GFP_KERNEL);
820 if (!rrq) {
821 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
822 "3155 Unable to allocate RRQ xri:0x%x rxid:0x%x"
823 " DID:0x%x Send:%d\n",
824 xritag, rxid, ndlp->nlp_DID, send_rrq);
825 return -EINVAL;
826 }
827 rrq->send_rrq = send_rrq;
828 rrq->xritag = xritag;
829 rrq->rrq_stop_time = jiffies + HZ * (phba->fc_ratov + 1);
830 rrq->ndlp = ndlp;
831 rrq->nlp_DID = ndlp->nlp_DID;
832 rrq->vport = ndlp->vport;
833 rrq->rxid = rxid;
834 rrq->send_rrq = send_rrq;
835 spin_lock_irqsave(&phba->hbalock, iflags);
836 empty = list_empty(&phba->active_rrq_list);
837 list_add_tail(&rrq->list, &phba->active_rrq_list);
838 phba->hba_flag |= HBA_RRQ_ACTIVE;
839 if (empty)
840 lpfc_worker_wake_up(phba);
841 spin_unlock_irqrestore(&phba->hbalock, iflags);
842 return 0;
843out:
844 spin_unlock_irqrestore(&phba->hbalock, iflags);
845 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
846 "2921 Can't set rrq active xri:0x%x rxid:0x%x"
847 " DID:0x%x Send:%d\n",
848 xritag, rxid, ndlp->nlp_DID, send_rrq);
849 return -EINVAL;
James Smart19ca7602010-11-20 23:11:55 -0500850}
851
852/**
James Smartda0436e2009-05-22 14:51:39 -0400853 * __lpfc_sli_get_sglq - Allocates an iocb object from sgl pool
854 * @phba: Pointer to HBA context object.
James Smart19ca7602010-11-20 23:11:55 -0500855 * @piocb: Pointer to the iocbq.
James Smartda0436e2009-05-22 14:51:39 -0400856 *
857 * This function is called with hbalock held. This function
James Smart6d368e52011-05-24 11:44:12 -0400858 * gets a new driver sglq object from the sglq list. If the
James Smartda0436e2009-05-22 14:51:39 -0400859 * list is not empty then it is successful, it returns pointer to the newly
860 * allocated sglq object else it returns NULL.
861 **/
862static struct lpfc_sglq *
James Smart19ca7602010-11-20 23:11:55 -0500863__lpfc_sli_get_sglq(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq)
James Smartda0436e2009-05-22 14:51:39 -0400864{
865 struct list_head *lpfc_sgl_list = &phba->sli4_hba.lpfc_sgl_list;
866 struct lpfc_sglq *sglq = NULL;
James Smart19ca7602010-11-20 23:11:55 -0500867 struct lpfc_sglq *start_sglq = NULL;
James Smart19ca7602010-11-20 23:11:55 -0500868 struct lpfc_scsi_buf *lpfc_cmd;
869 struct lpfc_nodelist *ndlp;
870 int found = 0;
871
872 if (piocbq->iocb_flag & LPFC_IO_FCP) {
873 lpfc_cmd = (struct lpfc_scsi_buf *) piocbq->context1;
874 ndlp = lpfc_cmd->rdata->pnode;
James Smartbe858b62010-12-15 17:57:20 -0500875 } else if ((piocbq->iocb.ulpCommand == CMD_GEN_REQUEST64_CR) &&
876 !(piocbq->iocb_flag & LPFC_IO_LIBDFC))
James Smart19ca7602010-11-20 23:11:55 -0500877 ndlp = piocbq->context_un.ndlp;
James Smart19ca7602010-11-20 23:11:55 -0500878 else
879 ndlp = piocbq->context1;
880
James Smartda0436e2009-05-22 14:51:39 -0400881 list_remove_head(lpfc_sgl_list, sglq, struct lpfc_sglq, list);
James Smart19ca7602010-11-20 23:11:55 -0500882 start_sglq = sglq;
883 while (!found) {
884 if (!sglq)
885 return NULL;
James Smart1151e3e2011-02-16 12:39:35 -0500886 if (lpfc_test_rrq_active(phba, ndlp, sglq->sli4_xritag)) {
James Smart19ca7602010-11-20 23:11:55 -0500887 /* This xri has an rrq outstanding for this DID.
888 * put it back in the list and get another xri.
889 */
890 list_add_tail(&sglq->list, lpfc_sgl_list);
891 sglq = NULL;
892 list_remove_head(lpfc_sgl_list, sglq,
893 struct lpfc_sglq, list);
894 if (sglq == start_sglq) {
895 sglq = NULL;
896 break;
897 } else
898 continue;
899 }
900 sglq->ndlp = ndlp;
901 found = 1;
James Smart6d368e52011-05-24 11:44:12 -0400902 phba->sli4_hba.lpfc_sglq_active_list[sglq->sli4_lxritag] = sglq;
James Smart19ca7602010-11-20 23:11:55 -0500903 sglq->state = SGL_ALLOCATED;
904 }
James Smartda0436e2009-05-22 14:51:39 -0400905 return sglq;
906}
907
908/**
James Smart3621a712009-04-06 18:47:14 -0400909 * lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
James Smarte59058c2008-08-24 21:49:00 -0400910 * @phba: Pointer to HBA context object.
911 *
912 * This function is called with no lock held. This function
913 * allocates a new driver iocb object from the iocb pool. If the
914 * allocation is successful, it returns pointer to the newly
915 * allocated iocb object else it returns NULL.
916 **/
James Smart2e0fef82007-06-17 19:56:36 -0500917struct lpfc_iocbq *
918lpfc_sli_get_iocbq(struct lpfc_hba *phba)
James Bottomley604a3e32005-10-29 10:28:33 -0500919{
James Smart2e0fef82007-06-17 19:56:36 -0500920 struct lpfc_iocbq * iocbq = NULL;
921 unsigned long iflags;
922
923 spin_lock_irqsave(&phba->hbalock, iflags);
924 iocbq = __lpfc_sli_get_iocbq(phba);
925 spin_unlock_irqrestore(&phba->hbalock, iflags);
926 return iocbq;
927}
928
James Smarte59058c2008-08-24 21:49:00 -0400929/**
James Smart4f774512009-05-22 14:52:35 -0400930 * __lpfc_sli_release_iocbq_s4 - Release iocb to the iocb pool
931 * @phba: Pointer to HBA context object.
932 * @iocbq: Pointer to driver iocb object.
933 *
934 * This function is called with hbalock held to release driver
935 * iocb object to the iocb pool. The iotag in the iocb object
936 * does not change for each use of the iocb object. This function
937 * clears all other fields of the iocb object when it is freed.
938 * The sqlq structure that holds the xritag and phys and virtual
939 * mappings for the scatter gather list is retrieved from the
940 * active array of sglq. The get of the sglq pointer also clears
941 * the entry in the array. If the status of the IO indiactes that
942 * this IO was aborted then the sglq entry it put on the
943 * lpfc_abts_els_sgl_list until the CQ_ABORTED_XRI is received. If the
944 * IO has good status or fails for any other reason then the sglq
945 * entry is added to the free list (lpfc_sgl_list).
946 **/
947static void
948__lpfc_sli_release_iocbq_s4(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
949{
950 struct lpfc_sglq *sglq;
951 size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
James Smart2a9bf3d2010-06-07 15:24:45 -0400952 unsigned long iflag = 0;
953 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
James Smart4f774512009-05-22 14:52:35 -0400954
955 if (iocbq->sli4_xritag == NO_XRI)
956 sglq = NULL;
957 else
James Smart6d368e52011-05-24 11:44:12 -0400958 sglq = __lpfc_clear_active_sglq(phba, iocbq->sli4_lxritag);
959
James Smart4f774512009-05-22 14:52:35 -0400960 if (sglq) {
James Smart0f65ff62010-02-26 14:14:23 -0500961 if ((iocbq->iocb_flag & LPFC_EXCHANGE_BUSY) &&
962 (sglq->state != SGL_XRI_ABORTED)) {
James Smart4f774512009-05-22 14:52:35 -0400963 spin_lock_irqsave(&phba->sli4_hba.abts_sgl_list_lock,
964 iflag);
965 list_add(&sglq->list,
966 &phba->sli4_hba.lpfc_abts_els_sgl_list);
967 spin_unlock_irqrestore(
968 &phba->sli4_hba.abts_sgl_list_lock, iflag);
James Smart0f65ff62010-02-26 14:14:23 -0500969 } else {
970 sglq->state = SGL_FREED;
James Smart19ca7602010-11-20 23:11:55 -0500971 sglq->ndlp = NULL;
James Smartfedd3b72011-02-16 12:39:24 -0500972 list_add_tail(&sglq->list,
973 &phba->sli4_hba.lpfc_sgl_list);
James Smart2a9bf3d2010-06-07 15:24:45 -0400974
975 /* Check if TXQ queue needs to be serviced */
James Smart589a52d2010-07-14 15:30:54 -0400976 if (pring->txq_cnt)
James Smart2a9bf3d2010-06-07 15:24:45 -0400977 lpfc_worker_wake_up(phba);
James Smart0f65ff62010-02-26 14:14:23 -0500978 }
James Smart4f774512009-05-22 14:52:35 -0400979 }
980
981
982 /*
983 * Clean all volatile data fields, preserve iotag and node struct.
984 */
985 memset((char *)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
James Smart6d368e52011-05-24 11:44:12 -0400986 iocbq->sli4_lxritag = NO_XRI;
James Smart4f774512009-05-22 14:52:35 -0400987 iocbq->sli4_xritag = NO_XRI;
988 list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
989}
990
James Smart2a9bf3d2010-06-07 15:24:45 -0400991
James Smart4f774512009-05-22 14:52:35 -0400992/**
James Smart3772a992009-05-22 14:50:54 -0400993 * __lpfc_sli_release_iocbq_s3 - Release iocb to the iocb pool
994 * @phba: Pointer to HBA context object.
995 * @iocbq: Pointer to driver iocb object.
996 *
997 * This function is called with hbalock held to release driver
998 * iocb object to the iocb pool. The iotag in the iocb object
999 * does not change for each use of the iocb object. This function
1000 * clears all other fields of the iocb object when it is freed.
1001 **/
1002static void
1003__lpfc_sli_release_iocbq_s3(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1004{
1005 size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
1006
1007 /*
1008 * Clean all volatile data fields, preserve iotag and node struct.
1009 */
1010 memset((char*)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
1011 iocbq->sli4_xritag = NO_XRI;
1012 list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
1013}
1014
1015/**
James Smart3621a712009-04-06 18:47:14 -04001016 * __lpfc_sli_release_iocbq - Release iocb to the iocb pool
James Smarte59058c2008-08-24 21:49:00 -04001017 * @phba: Pointer to HBA context object.
1018 * @iocbq: Pointer to driver iocb object.
1019 *
1020 * This function is called with hbalock held to release driver
1021 * iocb object to the iocb pool. The iotag in the iocb object
1022 * does not change for each use of the iocb object. This function
1023 * clears all other fields of the iocb object when it is freed.
1024 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01001025static void
James Smart2e0fef82007-06-17 19:56:36 -05001026__lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1027{
James Smart3772a992009-05-22 14:50:54 -04001028 phba->__lpfc_sli_release_iocbq(phba, iocbq);
James Smart2a9bf3d2010-06-07 15:24:45 -04001029 phba->iocb_cnt--;
James Bottomley604a3e32005-10-29 10:28:33 -05001030}
1031
James Smarte59058c2008-08-24 21:49:00 -04001032/**
James Smart3621a712009-04-06 18:47:14 -04001033 * lpfc_sli_release_iocbq - Release iocb to the iocb pool
James Smarte59058c2008-08-24 21:49:00 -04001034 * @phba: Pointer to HBA context object.
1035 * @iocbq: Pointer to driver iocb object.
1036 *
1037 * This function is called with no lock held to release the iocb to
1038 * iocb pool.
1039 **/
James Smart2e0fef82007-06-17 19:56:36 -05001040void
1041lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1042{
1043 unsigned long iflags;
1044
1045 /*
1046 * Clean all volatile data fields, preserve iotag and node struct.
1047 */
1048 spin_lock_irqsave(&phba->hbalock, iflags);
1049 __lpfc_sli_release_iocbq(phba, iocbq);
1050 spin_unlock_irqrestore(&phba->hbalock, iflags);
1051}
1052
James Smarte59058c2008-08-24 21:49:00 -04001053/**
James Smarta257bf92009-04-06 18:48:10 -04001054 * lpfc_sli_cancel_iocbs - Cancel all iocbs from a list.
1055 * @phba: Pointer to HBA context object.
1056 * @iocblist: List of IOCBs.
1057 * @ulpstatus: ULP status in IOCB command field.
1058 * @ulpWord4: ULP word-4 in IOCB command field.
1059 *
1060 * This function is called with a list of IOCBs to cancel. It cancels the IOCB
1061 * on the list by invoking the complete callback function associated with the
1062 * IOCB with the provided @ulpstatus and @ulpword4 set to the IOCB commond
1063 * fields.
1064 **/
1065void
1066lpfc_sli_cancel_iocbs(struct lpfc_hba *phba, struct list_head *iocblist,
1067 uint32_t ulpstatus, uint32_t ulpWord4)
1068{
1069 struct lpfc_iocbq *piocb;
1070
1071 while (!list_empty(iocblist)) {
1072 list_remove_head(iocblist, piocb, struct lpfc_iocbq, list);
1073
1074 if (!piocb->iocb_cmpl)
1075 lpfc_sli_release_iocbq(phba, piocb);
1076 else {
1077 piocb->iocb.ulpStatus = ulpstatus;
1078 piocb->iocb.un.ulpWord[4] = ulpWord4;
1079 (piocb->iocb_cmpl) (phba, piocb, piocb);
1080 }
1081 }
1082 return;
1083}
1084
1085/**
James Smart3621a712009-04-06 18:47:14 -04001086 * lpfc_sli_iocb_cmd_type - Get the iocb type
1087 * @iocb_cmnd: iocb command code.
James Smarte59058c2008-08-24 21:49:00 -04001088 *
1089 * This function is called by ring event handler function to get the iocb type.
1090 * This function translates the iocb command to an iocb command type used to
1091 * decide the final disposition of each completed IOCB.
1092 * The function returns
1093 * LPFC_UNKNOWN_IOCB if it is an unsupported iocb
1094 * LPFC_SOL_IOCB if it is a solicited iocb completion
1095 * LPFC_ABORT_IOCB if it is an abort iocb
1096 * LPFC_UNSOL_IOCB if it is an unsolicited iocb
1097 *
1098 * The caller is not required to hold any lock.
1099 **/
dea31012005-04-17 16:05:31 -05001100static lpfc_iocb_type
1101lpfc_sli_iocb_cmd_type(uint8_t iocb_cmnd)
1102{
1103 lpfc_iocb_type type = LPFC_UNKNOWN_IOCB;
1104
1105 if (iocb_cmnd > CMD_MAX_IOCB_CMD)
1106 return 0;
1107
1108 switch (iocb_cmnd) {
1109 case CMD_XMIT_SEQUENCE_CR:
1110 case CMD_XMIT_SEQUENCE_CX:
1111 case CMD_XMIT_BCAST_CN:
1112 case CMD_XMIT_BCAST_CX:
1113 case CMD_ELS_REQUEST_CR:
1114 case CMD_ELS_REQUEST_CX:
1115 case CMD_CREATE_XRI_CR:
1116 case CMD_CREATE_XRI_CX:
1117 case CMD_GET_RPI_CN:
1118 case CMD_XMIT_ELS_RSP_CX:
1119 case CMD_GET_RPI_CR:
1120 case CMD_FCP_IWRITE_CR:
1121 case CMD_FCP_IWRITE_CX:
1122 case CMD_FCP_IREAD_CR:
1123 case CMD_FCP_IREAD_CX:
1124 case CMD_FCP_ICMND_CR:
1125 case CMD_FCP_ICMND_CX:
James Smartf5603512006-12-02 13:35:43 -05001126 case CMD_FCP_TSEND_CX:
1127 case CMD_FCP_TRSP_CX:
1128 case CMD_FCP_TRECEIVE_CX:
1129 case CMD_FCP_AUTO_TRSP_CX:
dea31012005-04-17 16:05:31 -05001130 case CMD_ADAPTER_MSG:
1131 case CMD_ADAPTER_DUMP:
1132 case CMD_XMIT_SEQUENCE64_CR:
1133 case CMD_XMIT_SEQUENCE64_CX:
1134 case CMD_XMIT_BCAST64_CN:
1135 case CMD_XMIT_BCAST64_CX:
1136 case CMD_ELS_REQUEST64_CR:
1137 case CMD_ELS_REQUEST64_CX:
1138 case CMD_FCP_IWRITE64_CR:
1139 case CMD_FCP_IWRITE64_CX:
1140 case CMD_FCP_IREAD64_CR:
1141 case CMD_FCP_IREAD64_CX:
1142 case CMD_FCP_ICMND64_CR:
1143 case CMD_FCP_ICMND64_CX:
James Smartf5603512006-12-02 13:35:43 -05001144 case CMD_FCP_TSEND64_CX:
1145 case CMD_FCP_TRSP64_CX:
1146 case CMD_FCP_TRECEIVE64_CX:
dea31012005-04-17 16:05:31 -05001147 case CMD_GEN_REQUEST64_CR:
1148 case CMD_GEN_REQUEST64_CX:
1149 case CMD_XMIT_ELS_RSP64_CX:
James Smartda0436e2009-05-22 14:51:39 -04001150 case DSSCMD_IWRITE64_CR:
1151 case DSSCMD_IWRITE64_CX:
1152 case DSSCMD_IREAD64_CR:
1153 case DSSCMD_IREAD64_CX:
dea31012005-04-17 16:05:31 -05001154 type = LPFC_SOL_IOCB;
1155 break;
1156 case CMD_ABORT_XRI_CN:
1157 case CMD_ABORT_XRI_CX:
1158 case CMD_CLOSE_XRI_CN:
1159 case CMD_CLOSE_XRI_CX:
1160 case CMD_XRI_ABORTED_CX:
1161 case CMD_ABORT_MXRI64_CN:
James Smart6669f9b2009-10-02 15:16:45 -04001162 case CMD_XMIT_BLS_RSP64_CX:
dea31012005-04-17 16:05:31 -05001163 type = LPFC_ABORT_IOCB;
1164 break;
1165 case CMD_RCV_SEQUENCE_CX:
1166 case CMD_RCV_ELS_REQ_CX:
1167 case CMD_RCV_SEQUENCE64_CX:
1168 case CMD_RCV_ELS_REQ64_CX:
James Smart57127f12007-10-27 13:37:05 -04001169 case CMD_ASYNC_STATUS:
James Smarted957682007-06-17 19:56:37 -05001170 case CMD_IOCB_RCV_SEQ64_CX:
1171 case CMD_IOCB_RCV_ELS64_CX:
1172 case CMD_IOCB_RCV_CONT64_CX:
James Smart3163f722008-02-08 18:50:25 -05001173 case CMD_IOCB_RET_XRI64_CX:
dea31012005-04-17 16:05:31 -05001174 type = LPFC_UNSOL_IOCB;
1175 break;
James Smart3163f722008-02-08 18:50:25 -05001176 case CMD_IOCB_XMIT_MSEQ64_CR:
1177 case CMD_IOCB_XMIT_MSEQ64_CX:
1178 case CMD_IOCB_RCV_SEQ_LIST64_CX:
1179 case CMD_IOCB_RCV_ELS_LIST64_CX:
1180 case CMD_IOCB_CLOSE_EXTENDED_CN:
1181 case CMD_IOCB_ABORT_EXTENDED_CN:
1182 case CMD_IOCB_RET_HBQE64_CN:
1183 case CMD_IOCB_FCP_IBIDIR64_CR:
1184 case CMD_IOCB_FCP_IBIDIR64_CX:
1185 case CMD_IOCB_FCP_ITASKMGT64_CX:
1186 case CMD_IOCB_LOGENTRY_CN:
1187 case CMD_IOCB_LOGENTRY_ASYNC_CN:
1188 printk("%s - Unhandled SLI-3 Command x%x\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07001189 __func__, iocb_cmnd);
James Smart3163f722008-02-08 18:50:25 -05001190 type = LPFC_UNKNOWN_IOCB;
1191 break;
dea31012005-04-17 16:05:31 -05001192 default:
1193 type = LPFC_UNKNOWN_IOCB;
1194 break;
1195 }
1196
1197 return type;
1198}
1199
James Smarte59058c2008-08-24 21:49:00 -04001200/**
James Smart3621a712009-04-06 18:47:14 -04001201 * lpfc_sli_ring_map - Issue config_ring mbox for all rings
James Smarte59058c2008-08-24 21:49:00 -04001202 * @phba: Pointer to HBA context object.
1203 *
1204 * This function is called from SLI initialization code
1205 * to configure every ring of the HBA's SLI interface. The
1206 * caller is not required to hold any lock. This function issues
1207 * a config_ring mailbox command for each ring.
1208 * This function returns zero if successful else returns a negative
1209 * error code.
1210 **/
dea31012005-04-17 16:05:31 -05001211static int
James Smarted957682007-06-17 19:56:37 -05001212lpfc_sli_ring_map(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05001213{
1214 struct lpfc_sli *psli = &phba->sli;
James Smarted957682007-06-17 19:56:37 -05001215 LPFC_MBOXQ_t *pmb;
1216 MAILBOX_t *pmbox;
1217 int i, rc, ret = 0;
dea31012005-04-17 16:05:31 -05001218
James Smarted957682007-06-17 19:56:37 -05001219 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
1220 if (!pmb)
1221 return -ENOMEM;
James Smart04c68492009-05-22 14:52:52 -04001222 pmbox = &pmb->u.mb;
James Smarted957682007-06-17 19:56:37 -05001223 phba->link_state = LPFC_INIT_MBX_CMDS;
dea31012005-04-17 16:05:31 -05001224 for (i = 0; i < psli->num_rings; i++) {
dea31012005-04-17 16:05:31 -05001225 lpfc_config_ring(phba, i, pmb);
1226 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
1227 if (rc != MBX_SUCCESS) {
James Smart92d7f7b2007-06-17 19:56:38 -05001228 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04001229 "0446 Adapter failed to init (%d), "
dea31012005-04-17 16:05:31 -05001230 "mbxCmd x%x CFG_RING, mbxStatus x%x, "
1231 "ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -04001232 rc, pmbox->mbxCommand,
1233 pmbox->mbxStatus, i);
James Smart2e0fef82007-06-17 19:56:36 -05001234 phba->link_state = LPFC_HBA_ERROR;
James Smarted957682007-06-17 19:56:37 -05001235 ret = -ENXIO;
1236 break;
dea31012005-04-17 16:05:31 -05001237 }
1238 }
James Smarted957682007-06-17 19:56:37 -05001239 mempool_free(pmb, phba->mbox_mem_pool);
1240 return ret;
dea31012005-04-17 16:05:31 -05001241}
1242
James Smarte59058c2008-08-24 21:49:00 -04001243/**
James Smart3621a712009-04-06 18:47:14 -04001244 * lpfc_sli_ringtxcmpl_put - Adds new iocb to the txcmplq
James Smarte59058c2008-08-24 21:49:00 -04001245 * @phba: Pointer to HBA context object.
1246 * @pring: Pointer to driver SLI ring object.
1247 * @piocb: Pointer to the driver iocb object.
1248 *
1249 * This function is called with hbalock held. The function adds the
1250 * new iocb to txcmplq of the given ring. This function always returns
1251 * 0. If this function is called for ELS ring, this function checks if
1252 * there is a vport associated with the ELS command. This function also
1253 * starts els_tmofunc timer if this is an ELS command.
1254 **/
dea31012005-04-17 16:05:31 -05001255static int
James Smart2e0fef82007-06-17 19:56:36 -05001256lpfc_sli_ringtxcmpl_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
1257 struct lpfc_iocbq *piocb)
dea31012005-04-17 16:05:31 -05001258{
dea31012005-04-17 16:05:31 -05001259 list_add_tail(&piocb->list, &pring->txcmplq);
James Smart2a9bf3d2010-06-07 15:24:45 -04001260 piocb->iocb_flag |= LPFC_IO_ON_Q;
dea31012005-04-17 16:05:31 -05001261 pring->txcmplq_cnt++;
James Smart2a9bf3d2010-06-07 15:24:45 -04001262 if (pring->txcmplq_cnt > pring->txcmplq_max)
1263 pring->txcmplq_max = pring->txcmplq_cnt;
1264
James Smart92d7f7b2007-06-17 19:56:38 -05001265 if ((unlikely(pring->ringno == LPFC_ELS_RING)) &&
1266 (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
1267 (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) {
1268 if (!piocb->vport)
1269 BUG();
1270 else
1271 mod_timer(&piocb->vport->els_tmofunc,
1272 jiffies + HZ * (phba->fc_ratov << 1));
1273 }
1274
dea31012005-04-17 16:05:31 -05001275
James Smart2e0fef82007-06-17 19:56:36 -05001276 return 0;
dea31012005-04-17 16:05:31 -05001277}
1278
James Smarte59058c2008-08-24 21:49:00 -04001279/**
James Smart3621a712009-04-06 18:47:14 -04001280 * lpfc_sli_ringtx_get - Get first element of the txq
James Smarte59058c2008-08-24 21:49:00 -04001281 * @phba: Pointer to HBA context object.
1282 * @pring: Pointer to driver SLI ring object.
1283 *
1284 * This function is called with hbalock held to get next
1285 * iocb in txq of the given ring. If there is any iocb in
1286 * the txq, the function returns first iocb in the list after
1287 * removing the iocb from the list, else it returns NULL.
1288 **/
James Smart2a9bf3d2010-06-07 15:24:45 -04001289struct lpfc_iocbq *
James Smart2e0fef82007-06-17 19:56:36 -05001290lpfc_sli_ringtx_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea31012005-04-17 16:05:31 -05001291{
dea31012005-04-17 16:05:31 -05001292 struct lpfc_iocbq *cmd_iocb;
1293
James Smart858c9f62007-06-17 19:56:39 -05001294 list_remove_head((&pring->txq), cmd_iocb, struct lpfc_iocbq, list);
1295 if (cmd_iocb != NULL)
dea31012005-04-17 16:05:31 -05001296 pring->txq_cnt--;
James Smart2e0fef82007-06-17 19:56:36 -05001297 return cmd_iocb;
dea31012005-04-17 16:05:31 -05001298}
1299
James Smarte59058c2008-08-24 21:49:00 -04001300/**
James Smart3621a712009-04-06 18:47:14 -04001301 * lpfc_sli_next_iocb_slot - Get next iocb slot in the ring
James Smarte59058c2008-08-24 21:49:00 -04001302 * @phba: Pointer to HBA context object.
1303 * @pring: Pointer to driver SLI ring object.
1304 *
1305 * This function is called with hbalock held and the caller must post the
1306 * iocb without releasing the lock. If the caller releases the lock,
1307 * iocb slot returned by the function is not guaranteed to be available.
1308 * The function returns pointer to the next available iocb slot if there
1309 * is available slot in the ring, else it returns NULL.
1310 * If the get index of the ring is ahead of the put index, the function
1311 * will post an error attention event to the worker thread to take the
1312 * HBA to offline state.
1313 **/
dea31012005-04-17 16:05:31 -05001314static IOCB_t *
1315lpfc_sli_next_iocb_slot (struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
1316{
James Smart34b02dc2008-08-24 21:49:55 -04001317 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
dea31012005-04-17 16:05:31 -05001318 uint32_t max_cmd_idx = pring->numCiocb;
dea31012005-04-17 16:05:31 -05001319 if ((pring->next_cmdidx == pring->cmdidx) &&
1320 (++pring->next_cmdidx >= max_cmd_idx))
1321 pring->next_cmdidx = 0;
1322
1323 if (unlikely(pring->local_getidx == pring->next_cmdidx)) {
1324
1325 pring->local_getidx = le32_to_cpu(pgp->cmdGetInx);
1326
1327 if (unlikely(pring->local_getidx >= max_cmd_idx)) {
1328 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04001329 "0315 Ring %d issue: portCmdGet %d "
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02001330 "is bigger than cmd ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -04001331 pring->ringno,
dea31012005-04-17 16:05:31 -05001332 pring->local_getidx, max_cmd_idx);
1333
James Smart2e0fef82007-06-17 19:56:36 -05001334 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05001335 /*
1336 * All error attention handlers are posted to
1337 * worker thread
1338 */
1339 phba->work_ha |= HA_ERATT;
1340 phba->work_hs = HS_FFER3;
James Smart92d7f7b2007-06-17 19:56:38 -05001341
James Smart5e9d9b82008-06-14 22:52:53 -04001342 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -05001343
1344 return NULL;
1345 }
1346
1347 if (pring->local_getidx == pring->next_cmdidx)
1348 return NULL;
1349 }
1350
James Smarted957682007-06-17 19:56:37 -05001351 return lpfc_cmd_iocb(phba, pring);
dea31012005-04-17 16:05:31 -05001352}
1353
James Smarte59058c2008-08-24 21:49:00 -04001354/**
James Smart3621a712009-04-06 18:47:14 -04001355 * lpfc_sli_next_iotag - Get an iotag for the iocb
James Smarte59058c2008-08-24 21:49:00 -04001356 * @phba: Pointer to HBA context object.
1357 * @iocbq: Pointer to driver iocb object.
1358 *
1359 * This function gets an iotag for the iocb. If there is no unused iotag and
1360 * the iocbq_lookup_len < 0xffff, this function allocates a bigger iotag_lookup
1361 * array and assigns a new iotag.
1362 * The function returns the allocated iotag if successful, else returns zero.
1363 * Zero is not a valid iotag.
1364 * The caller is not required to hold any lock.
1365 **/
James Bottomley604a3e32005-10-29 10:28:33 -05001366uint16_t
James Smart2e0fef82007-06-17 19:56:36 -05001367lpfc_sli_next_iotag(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
dea31012005-04-17 16:05:31 -05001368{
James Smart2e0fef82007-06-17 19:56:36 -05001369 struct lpfc_iocbq **new_arr;
1370 struct lpfc_iocbq **old_arr;
James Bottomley604a3e32005-10-29 10:28:33 -05001371 size_t new_len;
1372 struct lpfc_sli *psli = &phba->sli;
1373 uint16_t iotag;
dea31012005-04-17 16:05:31 -05001374
James Smart2e0fef82007-06-17 19:56:36 -05001375 spin_lock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001376 iotag = psli->last_iotag;
1377 if(++iotag < psli->iocbq_lookup_len) {
1378 psli->last_iotag = iotag;
1379 psli->iocbq_lookup[iotag] = iocbq;
James Smart2e0fef82007-06-17 19:56:36 -05001380 spin_unlock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001381 iocbq->iotag = iotag;
1382 return iotag;
James Smart2e0fef82007-06-17 19:56:36 -05001383 } else if (psli->iocbq_lookup_len < (0xffff
James Bottomley604a3e32005-10-29 10:28:33 -05001384 - LPFC_IOCBQ_LOOKUP_INCREMENT)) {
1385 new_len = psli->iocbq_lookup_len + LPFC_IOCBQ_LOOKUP_INCREMENT;
James Smart2e0fef82007-06-17 19:56:36 -05001386 spin_unlock_irq(&phba->hbalock);
1387 new_arr = kzalloc(new_len * sizeof (struct lpfc_iocbq *),
James Bottomley604a3e32005-10-29 10:28:33 -05001388 GFP_KERNEL);
1389 if (new_arr) {
James Smart2e0fef82007-06-17 19:56:36 -05001390 spin_lock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001391 old_arr = psli->iocbq_lookup;
1392 if (new_len <= psli->iocbq_lookup_len) {
1393 /* highly unprobable case */
1394 kfree(new_arr);
1395 iotag = psli->last_iotag;
1396 if(++iotag < psli->iocbq_lookup_len) {
1397 psli->last_iotag = iotag;
1398 psli->iocbq_lookup[iotag] = iocbq;
James Smart2e0fef82007-06-17 19:56:36 -05001399 spin_unlock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001400 iocbq->iotag = iotag;
1401 return iotag;
1402 }
James Smart2e0fef82007-06-17 19:56:36 -05001403 spin_unlock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001404 return 0;
1405 }
1406 if (psli->iocbq_lookup)
1407 memcpy(new_arr, old_arr,
1408 ((psli->last_iotag + 1) *
James Smart311464e2007-08-02 11:10:37 -04001409 sizeof (struct lpfc_iocbq *)));
James Bottomley604a3e32005-10-29 10:28:33 -05001410 psli->iocbq_lookup = new_arr;
1411 psli->iocbq_lookup_len = new_len;
1412 psli->last_iotag = iotag;
1413 psli->iocbq_lookup[iotag] = iocbq;
James Smart2e0fef82007-06-17 19:56:36 -05001414 spin_unlock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001415 iocbq->iotag = iotag;
1416 kfree(old_arr);
1417 return iotag;
1418 }
James Smart8f6d98d2006-08-01 07:34:00 -04001419 } else
James Smart2e0fef82007-06-17 19:56:36 -05001420 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001421
James Smartbc739052010-08-04 16:11:18 -04001422 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04001423 "0318 Failed to allocate IOTAG.last IOTAG is %d\n",
1424 psli->last_iotag);
dea31012005-04-17 16:05:31 -05001425
James Bottomley604a3e32005-10-29 10:28:33 -05001426 return 0;
dea31012005-04-17 16:05:31 -05001427}
1428
James Smarte59058c2008-08-24 21:49:00 -04001429/**
James Smart3621a712009-04-06 18:47:14 -04001430 * lpfc_sli_submit_iocb - Submit an iocb to the firmware
James Smarte59058c2008-08-24 21:49:00 -04001431 * @phba: Pointer to HBA context object.
1432 * @pring: Pointer to driver SLI ring object.
1433 * @iocb: Pointer to iocb slot in the ring.
1434 * @nextiocb: Pointer to driver iocb object which need to be
1435 * posted to firmware.
1436 *
1437 * This function is called with hbalock held to post a new iocb to
1438 * the firmware. This function copies the new iocb to ring iocb slot and
1439 * updates the ring pointers. It adds the new iocb to txcmplq if there is
1440 * a completion call back for this iocb else the function will free the
1441 * iocb object.
1442 **/
dea31012005-04-17 16:05:31 -05001443static void
1444lpfc_sli_submit_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
1445 IOCB_t *iocb, struct lpfc_iocbq *nextiocb)
1446{
1447 /*
James Bottomley604a3e32005-10-29 10:28:33 -05001448 * Set up an iotag
dea31012005-04-17 16:05:31 -05001449 */
James Bottomley604a3e32005-10-29 10:28:33 -05001450 nextiocb->iocb.ulpIoTag = (nextiocb->iocb_cmpl) ? nextiocb->iotag : 0;
dea31012005-04-17 16:05:31 -05001451
James Smarte2a0a9d2008-12-04 22:40:02 -05001452
James Smarta58cbd52007-08-02 11:09:43 -04001453 if (pring->ringno == LPFC_ELS_RING) {
1454 lpfc_debugfs_slow_ring_trc(phba,
1455 "IOCB cmd ring: wd4:x%08x wd6:x%08x wd7:x%08x",
1456 *(((uint32_t *) &nextiocb->iocb) + 4),
1457 *(((uint32_t *) &nextiocb->iocb) + 6),
1458 *(((uint32_t *) &nextiocb->iocb) + 7));
1459 }
1460
dea31012005-04-17 16:05:31 -05001461 /*
1462 * Issue iocb command to adapter
1463 */
James Smart92d7f7b2007-06-17 19:56:38 -05001464 lpfc_sli_pcimem_bcopy(&nextiocb->iocb, iocb, phba->iocb_cmd_size);
dea31012005-04-17 16:05:31 -05001465 wmb();
1466 pring->stats.iocb_cmd++;
1467
1468 /*
1469 * If there is no completion routine to call, we can release the
1470 * IOCB buffer back right now. For IOCBs, like QUE_RING_BUF,
1471 * that have no rsp ring completion, iocb_cmpl MUST be NULL.
1472 */
1473 if (nextiocb->iocb_cmpl)
1474 lpfc_sli_ringtxcmpl_put(phba, pring, nextiocb);
James Bottomley604a3e32005-10-29 10:28:33 -05001475 else
James Smart2e0fef82007-06-17 19:56:36 -05001476 __lpfc_sli_release_iocbq(phba, nextiocb);
dea31012005-04-17 16:05:31 -05001477
1478 /*
1479 * Let the HBA know what IOCB slot will be the next one the
1480 * driver will put a command into.
1481 */
1482 pring->cmdidx = pring->next_cmdidx;
James Smarted957682007-06-17 19:56:37 -05001483 writel(pring->cmdidx, &phba->host_gp[pring->ringno].cmdPutInx);
dea31012005-04-17 16:05:31 -05001484}
1485
James Smarte59058c2008-08-24 21:49:00 -04001486/**
James Smart3621a712009-04-06 18:47:14 -04001487 * lpfc_sli_update_full_ring - Update the chip attention register
James Smarte59058c2008-08-24 21:49:00 -04001488 * @phba: Pointer to HBA context object.
1489 * @pring: Pointer to driver SLI ring object.
1490 *
1491 * The caller is not required to hold any lock for calling this function.
1492 * This function updates the chip attention bits for the ring to inform firmware
1493 * that there are pending work to be done for this ring and requests an
1494 * interrupt when there is space available in the ring. This function is
1495 * called when the driver is unable to post more iocbs to the ring due
1496 * to unavailability of space in the ring.
1497 **/
dea31012005-04-17 16:05:31 -05001498static void
James Smart2e0fef82007-06-17 19:56:36 -05001499lpfc_sli_update_full_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea31012005-04-17 16:05:31 -05001500{
1501 int ringno = pring->ringno;
1502
1503 pring->flag |= LPFC_CALL_RING_AVAILABLE;
1504
1505 wmb();
1506
1507 /*
1508 * Set ring 'ringno' to SET R0CE_REQ in Chip Att register.
1509 * The HBA will tell us when an IOCB entry is available.
1510 */
1511 writel((CA_R0ATT|CA_R0CE_REQ) << (ringno*4), phba->CAregaddr);
1512 readl(phba->CAregaddr); /* flush */
1513
1514 pring->stats.iocb_cmd_full++;
1515}
1516
James Smarte59058c2008-08-24 21:49:00 -04001517/**
James Smart3621a712009-04-06 18:47:14 -04001518 * lpfc_sli_update_ring - Update chip attention register
James Smarte59058c2008-08-24 21:49:00 -04001519 * @phba: Pointer to HBA context object.
1520 * @pring: Pointer to driver SLI ring object.
1521 *
1522 * This function updates the chip attention register bit for the
1523 * given ring to inform HBA that there is more work to be done
1524 * in this ring. The caller is not required to hold any lock.
1525 **/
dea31012005-04-17 16:05:31 -05001526static void
James Smart2e0fef82007-06-17 19:56:36 -05001527lpfc_sli_update_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea31012005-04-17 16:05:31 -05001528{
1529 int ringno = pring->ringno;
1530
1531 /*
1532 * Tell the HBA that there is work to do in this ring.
1533 */
James Smart34b02dc2008-08-24 21:49:55 -04001534 if (!(phba->sli3_options & LPFC_SLI3_CRP_ENABLED)) {
1535 wmb();
1536 writel(CA_R0ATT << (ringno * 4), phba->CAregaddr);
1537 readl(phba->CAregaddr); /* flush */
1538 }
dea31012005-04-17 16:05:31 -05001539}
1540
James Smarte59058c2008-08-24 21:49:00 -04001541/**
James Smart3621a712009-04-06 18:47:14 -04001542 * lpfc_sli_resume_iocb - Process iocbs in the txq
James Smarte59058c2008-08-24 21:49:00 -04001543 * @phba: Pointer to HBA context object.
1544 * @pring: Pointer to driver SLI ring object.
1545 *
1546 * This function is called with hbalock held to post pending iocbs
1547 * in the txq to the firmware. This function is called when driver
1548 * detects space available in the ring.
1549 **/
dea31012005-04-17 16:05:31 -05001550static void
James Smart2e0fef82007-06-17 19:56:36 -05001551lpfc_sli_resume_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea31012005-04-17 16:05:31 -05001552{
1553 IOCB_t *iocb;
1554 struct lpfc_iocbq *nextiocb;
1555
1556 /*
1557 * Check to see if:
1558 * (a) there is anything on the txq to send
1559 * (b) link is up
1560 * (c) link attention events can be processed (fcp ring only)
1561 * (d) IOCB processing is not blocked by the outstanding mbox command.
1562 */
1563 if (pring->txq_cnt &&
James Smart2e0fef82007-06-17 19:56:36 -05001564 lpfc_is_link_up(phba) &&
dea31012005-04-17 16:05:31 -05001565 (pring->ringno != phba->sli.fcp_ring ||
James Smart0b727fe2007-10-27 13:37:25 -04001566 phba->sli.sli_flag & LPFC_PROCESS_LA)) {
dea31012005-04-17 16:05:31 -05001567
1568 while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
1569 (nextiocb = lpfc_sli_ringtx_get(phba, pring)))
1570 lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
1571
1572 if (iocb)
1573 lpfc_sli_update_ring(phba, pring);
1574 else
1575 lpfc_sli_update_full_ring(phba, pring);
1576 }
1577
1578 return;
1579}
1580
James Smarte59058c2008-08-24 21:49:00 -04001581/**
James Smart3621a712009-04-06 18:47:14 -04001582 * lpfc_sli_next_hbq_slot - Get next hbq entry for the HBQ
James Smarte59058c2008-08-24 21:49:00 -04001583 * @phba: Pointer to HBA context object.
1584 * @hbqno: HBQ number.
1585 *
1586 * This function is called with hbalock held to get the next
1587 * available slot for the given HBQ. If there is free slot
1588 * available for the HBQ it will return pointer to the next available
1589 * HBQ entry else it will return NULL.
1590 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01001591static struct lpfc_hbq_entry *
James Smarted957682007-06-17 19:56:37 -05001592lpfc_sli_next_hbq_slot(struct lpfc_hba *phba, uint32_t hbqno)
1593{
1594 struct hbq_s *hbqp = &phba->hbqs[hbqno];
1595
1596 if (hbqp->next_hbqPutIdx == hbqp->hbqPutIdx &&
1597 ++hbqp->next_hbqPutIdx >= hbqp->entry_count)
1598 hbqp->next_hbqPutIdx = 0;
1599
1600 if (unlikely(hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)) {
James Smart92d7f7b2007-06-17 19:56:38 -05001601 uint32_t raw_index = phba->hbq_get[hbqno];
James Smarted957682007-06-17 19:56:37 -05001602 uint32_t getidx = le32_to_cpu(raw_index);
1603
1604 hbqp->local_hbqGetIdx = getidx;
1605
1606 if (unlikely(hbqp->local_hbqGetIdx >= hbqp->entry_count)) {
1607 lpfc_printf_log(phba, KERN_ERR,
James Smart92d7f7b2007-06-17 19:56:38 -05001608 LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04001609 "1802 HBQ %d: local_hbqGetIdx "
James Smarted957682007-06-17 19:56:37 -05001610 "%u is > than hbqp->entry_count %u\n",
James Smarte8b62012007-08-02 11:10:09 -04001611 hbqno, hbqp->local_hbqGetIdx,
James Smarted957682007-06-17 19:56:37 -05001612 hbqp->entry_count);
1613
1614 phba->link_state = LPFC_HBA_ERROR;
1615 return NULL;
1616 }
1617
1618 if (hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)
1619 return NULL;
1620 }
1621
James Smart51ef4c22007-08-02 11:10:31 -04001622 return (struct lpfc_hbq_entry *) phba->hbqs[hbqno].hbq_virt +
1623 hbqp->hbqPutIdx;
James Smarted957682007-06-17 19:56:37 -05001624}
1625
James Smarte59058c2008-08-24 21:49:00 -04001626/**
James Smart3621a712009-04-06 18:47:14 -04001627 * lpfc_sli_hbqbuf_free_all - Free all the hbq buffers
James Smarte59058c2008-08-24 21:49:00 -04001628 * @phba: Pointer to HBA context object.
1629 *
1630 * This function is called with no lock held to free all the
1631 * hbq buffers while uninitializing the SLI interface. It also
1632 * frees the HBQ buffers returned by the firmware but not yet
1633 * processed by the upper layers.
1634 **/
James Smarted957682007-06-17 19:56:37 -05001635void
1636lpfc_sli_hbqbuf_free_all(struct lpfc_hba *phba)
1637{
James Smart92d7f7b2007-06-17 19:56:38 -05001638 struct lpfc_dmabuf *dmabuf, *next_dmabuf;
1639 struct hbq_dmabuf *hbq_buf;
James Smart3163f722008-02-08 18:50:25 -05001640 unsigned long flags;
James Smart51ef4c22007-08-02 11:10:31 -04001641 int i, hbq_count;
James Smart3163f722008-02-08 18:50:25 -05001642 uint32_t hbqno;
James Smarted957682007-06-17 19:56:37 -05001643
James Smart51ef4c22007-08-02 11:10:31 -04001644 hbq_count = lpfc_sli_hbq_count();
James Smarted957682007-06-17 19:56:37 -05001645 /* Return all memory used by all HBQs */
James Smart3163f722008-02-08 18:50:25 -05001646 spin_lock_irqsave(&phba->hbalock, flags);
James Smart51ef4c22007-08-02 11:10:31 -04001647 for (i = 0; i < hbq_count; ++i) {
1648 list_for_each_entry_safe(dmabuf, next_dmabuf,
1649 &phba->hbqs[i].hbq_buffer_list, list) {
1650 hbq_buf = container_of(dmabuf, struct hbq_dmabuf, dbuf);
1651 list_del(&hbq_buf->dbuf.list);
1652 (phba->hbqs[i].hbq_free_buffer)(phba, hbq_buf);
1653 }
James Smarta8adb832007-10-27 13:37:53 -04001654 phba->hbqs[i].buffer_count = 0;
James Smarted957682007-06-17 19:56:37 -05001655 }
James Smart3163f722008-02-08 18:50:25 -05001656 /* Return all HBQ buffer that are in-fly */
James Smart3772a992009-05-22 14:50:54 -04001657 list_for_each_entry_safe(dmabuf, next_dmabuf, &phba->rb_pend_list,
1658 list) {
James Smart3163f722008-02-08 18:50:25 -05001659 hbq_buf = container_of(dmabuf, struct hbq_dmabuf, dbuf);
1660 list_del(&hbq_buf->dbuf.list);
1661 if (hbq_buf->tag == -1) {
1662 (phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer)
1663 (phba, hbq_buf);
1664 } else {
1665 hbqno = hbq_buf->tag >> 16;
1666 if (hbqno >= LPFC_MAX_HBQS)
1667 (phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer)
1668 (phba, hbq_buf);
1669 else
1670 (phba->hbqs[hbqno].hbq_free_buffer)(phba,
1671 hbq_buf);
1672 }
1673 }
1674
1675 /* Mark the HBQs not in use */
1676 phba->hbq_in_use = 0;
1677 spin_unlock_irqrestore(&phba->hbalock, flags);
James Smarted957682007-06-17 19:56:37 -05001678}
1679
James Smarte59058c2008-08-24 21:49:00 -04001680/**
James Smart3621a712009-04-06 18:47:14 -04001681 * lpfc_sli_hbq_to_firmware - Post the hbq buffer to firmware
James Smarte59058c2008-08-24 21:49:00 -04001682 * @phba: Pointer to HBA context object.
1683 * @hbqno: HBQ number.
1684 * @hbq_buf: Pointer to HBQ buffer.
1685 *
1686 * This function is called with the hbalock held to post a
1687 * hbq buffer to the firmware. If the function finds an empty
1688 * slot in the HBQ, it will post the buffer. The function will return
1689 * pointer to the hbq entry if it successfully post the buffer
1690 * else it will return NULL.
1691 **/
James Smart3772a992009-05-22 14:50:54 -04001692static int
James Smarted957682007-06-17 19:56:37 -05001693lpfc_sli_hbq_to_firmware(struct lpfc_hba *phba, uint32_t hbqno,
James Smart92d7f7b2007-06-17 19:56:38 -05001694 struct hbq_dmabuf *hbq_buf)
James Smarted957682007-06-17 19:56:37 -05001695{
James Smart3772a992009-05-22 14:50:54 -04001696 return phba->lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buf);
1697}
1698
1699/**
1700 * lpfc_sli_hbq_to_firmware_s3 - Post the hbq buffer to SLI3 firmware
1701 * @phba: Pointer to HBA context object.
1702 * @hbqno: HBQ number.
1703 * @hbq_buf: Pointer to HBQ buffer.
1704 *
1705 * This function is called with the hbalock held to post a hbq buffer to the
1706 * firmware. If the function finds an empty slot in the HBQ, it will post the
1707 * buffer and place it on the hbq_buffer_list. The function will return zero if
1708 * it successfully post the buffer else it will return an error.
1709 **/
1710static int
1711lpfc_sli_hbq_to_firmware_s3(struct lpfc_hba *phba, uint32_t hbqno,
1712 struct hbq_dmabuf *hbq_buf)
1713{
James Smarted957682007-06-17 19:56:37 -05001714 struct lpfc_hbq_entry *hbqe;
James Smart92d7f7b2007-06-17 19:56:38 -05001715 dma_addr_t physaddr = hbq_buf->dbuf.phys;
James Smarted957682007-06-17 19:56:37 -05001716
1717 /* Get next HBQ entry slot to use */
1718 hbqe = lpfc_sli_next_hbq_slot(phba, hbqno);
1719 if (hbqe) {
1720 struct hbq_s *hbqp = &phba->hbqs[hbqno];
1721
James Smart92d7f7b2007-06-17 19:56:38 -05001722 hbqe->bde.addrHigh = le32_to_cpu(putPaddrHigh(physaddr));
1723 hbqe->bde.addrLow = le32_to_cpu(putPaddrLow(physaddr));
James Smart51ef4c22007-08-02 11:10:31 -04001724 hbqe->bde.tus.f.bdeSize = hbq_buf->size;
James Smarted957682007-06-17 19:56:37 -05001725 hbqe->bde.tus.f.bdeFlags = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05001726 hbqe->bde.tus.w = le32_to_cpu(hbqe->bde.tus.w);
1727 hbqe->buffer_tag = le32_to_cpu(hbq_buf->tag);
1728 /* Sync SLIM */
James Smarted957682007-06-17 19:56:37 -05001729 hbqp->hbqPutIdx = hbqp->next_hbqPutIdx;
1730 writel(hbqp->hbqPutIdx, phba->hbq_put + hbqno);
James Smart92d7f7b2007-06-17 19:56:38 -05001731 /* flush */
James Smarted957682007-06-17 19:56:37 -05001732 readl(phba->hbq_put + hbqno);
James Smart51ef4c22007-08-02 11:10:31 -04001733 list_add_tail(&hbq_buf->dbuf.list, &hbqp->hbq_buffer_list);
James Smart3772a992009-05-22 14:50:54 -04001734 return 0;
1735 } else
1736 return -ENOMEM;
James Smarted957682007-06-17 19:56:37 -05001737}
1738
James Smart4f774512009-05-22 14:52:35 -04001739/**
1740 * lpfc_sli_hbq_to_firmware_s4 - Post the hbq buffer to SLI4 firmware
1741 * @phba: Pointer to HBA context object.
1742 * @hbqno: HBQ number.
1743 * @hbq_buf: Pointer to HBQ buffer.
1744 *
1745 * This function is called with the hbalock held to post an RQE to the SLI4
1746 * firmware. If able to post the RQE to the RQ it will queue the hbq entry to
1747 * the hbq_buffer_list and return zero, otherwise it will return an error.
1748 **/
1749static int
1750lpfc_sli_hbq_to_firmware_s4(struct lpfc_hba *phba, uint32_t hbqno,
1751 struct hbq_dmabuf *hbq_buf)
1752{
1753 int rc;
1754 struct lpfc_rqe hrqe;
1755 struct lpfc_rqe drqe;
1756
1757 hrqe.address_lo = putPaddrLow(hbq_buf->hbuf.phys);
1758 hrqe.address_hi = putPaddrHigh(hbq_buf->hbuf.phys);
1759 drqe.address_lo = putPaddrLow(hbq_buf->dbuf.phys);
1760 drqe.address_hi = putPaddrHigh(hbq_buf->dbuf.phys);
1761 rc = lpfc_sli4_rq_put(phba->sli4_hba.hdr_rq, phba->sli4_hba.dat_rq,
1762 &hrqe, &drqe);
1763 if (rc < 0)
1764 return rc;
1765 hbq_buf->tag = rc;
1766 list_add_tail(&hbq_buf->dbuf.list, &phba->hbqs[hbqno].hbq_buffer_list);
1767 return 0;
1768}
1769
James Smarte59058c2008-08-24 21:49:00 -04001770/* HBQ for ELS and CT traffic. */
James Smart92d7f7b2007-06-17 19:56:38 -05001771static struct lpfc_hbq_init lpfc_els_hbq = {
1772 .rn = 1,
James Smartdef9c7a2009-12-21 17:02:28 -05001773 .entry_count = 256,
James Smart92d7f7b2007-06-17 19:56:38 -05001774 .mask_count = 0,
1775 .profile = 0,
James Smart51ef4c22007-08-02 11:10:31 -04001776 .ring_mask = (1 << LPFC_ELS_RING),
James Smart92d7f7b2007-06-17 19:56:38 -05001777 .buffer_count = 0,
James Smarta257bf92009-04-06 18:48:10 -04001778 .init_count = 40,
1779 .add_count = 40,
James Smart92d7f7b2007-06-17 19:56:38 -05001780};
James Smarted957682007-06-17 19:56:37 -05001781
James Smarte59058c2008-08-24 21:49:00 -04001782/* HBQ for the extra ring if needed */
James Smart51ef4c22007-08-02 11:10:31 -04001783static struct lpfc_hbq_init lpfc_extra_hbq = {
1784 .rn = 1,
1785 .entry_count = 200,
1786 .mask_count = 0,
1787 .profile = 0,
1788 .ring_mask = (1 << LPFC_EXTRA_RING),
1789 .buffer_count = 0,
1790 .init_count = 0,
1791 .add_count = 5,
1792};
1793
James Smarte59058c2008-08-24 21:49:00 -04001794/* Array of HBQs */
James Smart78b2d852007-08-02 11:10:21 -04001795struct lpfc_hbq_init *lpfc_hbq_defs[] = {
James Smart92d7f7b2007-06-17 19:56:38 -05001796 &lpfc_els_hbq,
James Smart51ef4c22007-08-02 11:10:31 -04001797 &lpfc_extra_hbq,
James Smart92d7f7b2007-06-17 19:56:38 -05001798};
1799
James Smarte59058c2008-08-24 21:49:00 -04001800/**
James Smart3621a712009-04-06 18:47:14 -04001801 * lpfc_sli_hbqbuf_fill_hbqs - Post more hbq buffers to HBQ
James Smarte59058c2008-08-24 21:49:00 -04001802 * @phba: Pointer to HBA context object.
1803 * @hbqno: HBQ number.
1804 * @count: Number of HBQ buffers to be posted.
1805 *
James Smartd7c255b2008-08-24 21:50:00 -04001806 * This function is called with no lock held to post more hbq buffers to the
1807 * given HBQ. The function returns the number of HBQ buffers successfully
1808 * posted.
James Smarte59058c2008-08-24 21:49:00 -04001809 **/
James Smart311464e2007-08-02 11:10:37 -04001810static int
James Smart92d7f7b2007-06-17 19:56:38 -05001811lpfc_sli_hbqbuf_fill_hbqs(struct lpfc_hba *phba, uint32_t hbqno, uint32_t count)
1812{
James Smartd7c255b2008-08-24 21:50:00 -04001813 uint32_t i, posted = 0;
James Smart3163f722008-02-08 18:50:25 -05001814 unsigned long flags;
James Smart92d7f7b2007-06-17 19:56:38 -05001815 struct hbq_dmabuf *hbq_buffer;
James Smartd7c255b2008-08-24 21:50:00 -04001816 LIST_HEAD(hbq_buf_list);
Matthew Wilcoxeafe1df2008-02-21 05:44:33 -07001817 if (!phba->hbqs[hbqno].hbq_alloc_buffer)
James Smart51ef4c22007-08-02 11:10:31 -04001818 return 0;
James Smart51ef4c22007-08-02 11:10:31 -04001819
James Smartd7c255b2008-08-24 21:50:00 -04001820 if ((phba->hbqs[hbqno].buffer_count + count) >
1821 lpfc_hbq_defs[hbqno]->entry_count)
1822 count = lpfc_hbq_defs[hbqno]->entry_count -
1823 phba->hbqs[hbqno].buffer_count;
1824 if (!count)
1825 return 0;
1826 /* Allocate HBQ entries */
1827 for (i = 0; i < count; i++) {
1828 hbq_buffer = (phba->hbqs[hbqno].hbq_alloc_buffer)(phba);
1829 if (!hbq_buffer)
1830 break;
1831 list_add_tail(&hbq_buffer->dbuf.list, &hbq_buf_list);
1832 }
James Smart3163f722008-02-08 18:50:25 -05001833 /* Check whether HBQ is still in use */
1834 spin_lock_irqsave(&phba->hbalock, flags);
Matthew Wilcoxeafe1df2008-02-21 05:44:33 -07001835 if (!phba->hbq_in_use)
James Smartd7c255b2008-08-24 21:50:00 -04001836 goto err;
1837 while (!list_empty(&hbq_buf_list)) {
1838 list_remove_head(&hbq_buf_list, hbq_buffer, struct hbq_dmabuf,
1839 dbuf.list);
1840 hbq_buffer->tag = (phba->hbqs[hbqno].buffer_count |
1841 (hbqno << 16));
James Smart3772a992009-05-22 14:50:54 -04001842 if (!lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer)) {
James Smarta8adb832007-10-27 13:37:53 -04001843 phba->hbqs[hbqno].buffer_count++;
James Smartd7c255b2008-08-24 21:50:00 -04001844 posted++;
1845 } else
James Smart51ef4c22007-08-02 11:10:31 -04001846 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
James Smart92d7f7b2007-06-17 19:56:38 -05001847 }
James Smart3163f722008-02-08 18:50:25 -05001848 spin_unlock_irqrestore(&phba->hbalock, flags);
James Smartd7c255b2008-08-24 21:50:00 -04001849 return posted;
1850err:
1851 spin_unlock_irqrestore(&phba->hbalock, flags);
1852 while (!list_empty(&hbq_buf_list)) {
1853 list_remove_head(&hbq_buf_list, hbq_buffer, struct hbq_dmabuf,
1854 dbuf.list);
1855 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
1856 }
James Smart92d7f7b2007-06-17 19:56:38 -05001857 return 0;
James Smarted957682007-06-17 19:56:37 -05001858}
1859
James Smarte59058c2008-08-24 21:49:00 -04001860/**
James Smart3621a712009-04-06 18:47:14 -04001861 * lpfc_sli_hbqbuf_add_hbqs - Post more HBQ buffers to firmware
James Smarte59058c2008-08-24 21:49:00 -04001862 * @phba: Pointer to HBA context object.
1863 * @qno: HBQ number.
1864 *
1865 * This function posts more buffers to the HBQ. This function
James Smartd7c255b2008-08-24 21:50:00 -04001866 * is called with no lock held. The function returns the number of HBQ entries
1867 * successfully allocated.
James Smarte59058c2008-08-24 21:49:00 -04001868 **/
James Smarted957682007-06-17 19:56:37 -05001869int
James Smart92d7f7b2007-06-17 19:56:38 -05001870lpfc_sli_hbqbuf_add_hbqs(struct lpfc_hba *phba, uint32_t qno)
James Smarted957682007-06-17 19:56:37 -05001871{
James Smartdef9c7a2009-12-21 17:02:28 -05001872 if (phba->sli_rev == LPFC_SLI_REV4)
1873 return 0;
1874 else
1875 return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
1876 lpfc_hbq_defs[qno]->add_count);
James Smarted957682007-06-17 19:56:37 -05001877}
1878
James Smarte59058c2008-08-24 21:49:00 -04001879/**
James Smart3621a712009-04-06 18:47:14 -04001880 * lpfc_sli_hbqbuf_init_hbqs - Post initial buffers to the HBQ
James Smarte59058c2008-08-24 21:49:00 -04001881 * @phba: Pointer to HBA context object.
1882 * @qno: HBQ queue number.
1883 *
1884 * This function is called from SLI initialization code path with
1885 * no lock held to post initial HBQ buffers to firmware. The
James Smartd7c255b2008-08-24 21:50:00 -04001886 * function returns the number of HBQ entries successfully allocated.
James Smarte59058c2008-08-24 21:49:00 -04001887 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01001888static int
James Smart92d7f7b2007-06-17 19:56:38 -05001889lpfc_sli_hbqbuf_init_hbqs(struct lpfc_hba *phba, uint32_t qno)
James Smarted957682007-06-17 19:56:37 -05001890{
James Smartdef9c7a2009-12-21 17:02:28 -05001891 if (phba->sli_rev == LPFC_SLI_REV4)
1892 return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
James Smart73d91e52011-10-10 21:32:10 -04001893 lpfc_hbq_defs[qno]->entry_count);
James Smartdef9c7a2009-12-21 17:02:28 -05001894 else
1895 return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
1896 lpfc_hbq_defs[qno]->init_count);
James Smarted957682007-06-17 19:56:37 -05001897}
1898
James Smarte59058c2008-08-24 21:49:00 -04001899/**
James Smart3772a992009-05-22 14:50:54 -04001900 * lpfc_sli_hbqbuf_get - Remove the first hbq off of an hbq list
1901 * @phba: Pointer to HBA context object.
1902 * @hbqno: HBQ number.
1903 *
1904 * This function removes the first hbq buffer on an hbq list and returns a
1905 * pointer to that buffer. If it finds no buffers on the list it returns NULL.
1906 **/
1907static struct hbq_dmabuf *
1908lpfc_sli_hbqbuf_get(struct list_head *rb_list)
1909{
1910 struct lpfc_dmabuf *d_buf;
1911
1912 list_remove_head(rb_list, d_buf, struct lpfc_dmabuf, list);
1913 if (!d_buf)
1914 return NULL;
1915 return container_of(d_buf, struct hbq_dmabuf, dbuf);
1916}
1917
1918/**
James Smart3621a712009-04-06 18:47:14 -04001919 * lpfc_sli_hbqbuf_find - Find the hbq buffer associated with a tag
James Smarte59058c2008-08-24 21:49:00 -04001920 * @phba: Pointer to HBA context object.
1921 * @tag: Tag of the hbq buffer.
1922 *
1923 * This function is called with hbalock held. This function searches
1924 * for the hbq buffer associated with the given tag in the hbq buffer
1925 * list. If it finds the hbq buffer, it returns the hbq_buffer other wise
1926 * it returns NULL.
1927 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01001928static struct hbq_dmabuf *
James Smarted957682007-06-17 19:56:37 -05001929lpfc_sli_hbqbuf_find(struct lpfc_hba *phba, uint32_t tag)
1930{
James Smart92d7f7b2007-06-17 19:56:38 -05001931 struct lpfc_dmabuf *d_buf;
1932 struct hbq_dmabuf *hbq_buf;
James Smart51ef4c22007-08-02 11:10:31 -04001933 uint32_t hbqno;
James Smarted957682007-06-17 19:56:37 -05001934
James Smart51ef4c22007-08-02 11:10:31 -04001935 hbqno = tag >> 16;
Jesper Juhla0a74e452007-08-09 20:47:15 +02001936 if (hbqno >= LPFC_MAX_HBQS)
James Smart51ef4c22007-08-02 11:10:31 -04001937 return NULL;
1938
James Smart3772a992009-05-22 14:50:54 -04001939 spin_lock_irq(&phba->hbalock);
James Smart51ef4c22007-08-02 11:10:31 -04001940 list_for_each_entry(d_buf, &phba->hbqs[hbqno].hbq_buffer_list, list) {
James Smart92d7f7b2007-06-17 19:56:38 -05001941 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
James Smart51ef4c22007-08-02 11:10:31 -04001942 if (hbq_buf->tag == tag) {
James Smart3772a992009-05-22 14:50:54 -04001943 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -05001944 return hbq_buf;
James Smarted957682007-06-17 19:56:37 -05001945 }
1946 }
James Smart3772a992009-05-22 14:50:54 -04001947 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -05001948 lpfc_printf_log(phba, KERN_ERR, LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04001949 "1803 Bad hbq tag. Data: x%x x%x\n",
James Smarta8adb832007-10-27 13:37:53 -04001950 tag, phba->hbqs[tag >> 16].buffer_count);
James Smart92d7f7b2007-06-17 19:56:38 -05001951 return NULL;
James Smarted957682007-06-17 19:56:37 -05001952}
1953
James Smarte59058c2008-08-24 21:49:00 -04001954/**
James Smart3621a712009-04-06 18:47:14 -04001955 * lpfc_sli_free_hbq - Give back the hbq buffer to firmware
James Smarte59058c2008-08-24 21:49:00 -04001956 * @phba: Pointer to HBA context object.
1957 * @hbq_buffer: Pointer to HBQ buffer.
1958 *
1959 * This function is called with hbalock. This function gives back
1960 * the hbq buffer to firmware. If the HBQ does not have space to
1961 * post the buffer, it will free the buffer.
1962 **/
James Smarted957682007-06-17 19:56:37 -05001963void
James Smart51ef4c22007-08-02 11:10:31 -04001964lpfc_sli_free_hbq(struct lpfc_hba *phba, struct hbq_dmabuf *hbq_buffer)
James Smarted957682007-06-17 19:56:37 -05001965{
1966 uint32_t hbqno;
1967
James Smart51ef4c22007-08-02 11:10:31 -04001968 if (hbq_buffer) {
1969 hbqno = hbq_buffer->tag >> 16;
James Smart3772a992009-05-22 14:50:54 -04001970 if (lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer))
James Smart51ef4c22007-08-02 11:10:31 -04001971 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
James Smarted957682007-06-17 19:56:37 -05001972 }
1973}
1974
James Smarte59058c2008-08-24 21:49:00 -04001975/**
James Smart3621a712009-04-06 18:47:14 -04001976 * lpfc_sli_chk_mbx_command - Check if the mailbox is a legitimate mailbox
James Smarte59058c2008-08-24 21:49:00 -04001977 * @mbxCommand: mailbox command code.
1978 *
1979 * This function is called by the mailbox event handler function to verify
1980 * that the completed mailbox command is a legitimate mailbox command. If the
1981 * completed mailbox is not known to the function, it will return MBX_SHUTDOWN
1982 * and the mailbox event handler will take the HBA offline.
1983 **/
dea31012005-04-17 16:05:31 -05001984static int
1985lpfc_sli_chk_mbx_command(uint8_t mbxCommand)
1986{
1987 uint8_t ret;
1988
1989 switch (mbxCommand) {
1990 case MBX_LOAD_SM:
1991 case MBX_READ_NV:
1992 case MBX_WRITE_NV:
James Smarta8adb832007-10-27 13:37:53 -04001993 case MBX_WRITE_VPARMS:
dea31012005-04-17 16:05:31 -05001994 case MBX_RUN_BIU_DIAG:
1995 case MBX_INIT_LINK:
1996 case MBX_DOWN_LINK:
1997 case MBX_CONFIG_LINK:
1998 case MBX_CONFIG_RING:
1999 case MBX_RESET_RING:
2000 case MBX_READ_CONFIG:
2001 case MBX_READ_RCONFIG:
2002 case MBX_READ_SPARM:
2003 case MBX_READ_STATUS:
2004 case MBX_READ_RPI:
2005 case MBX_READ_XRI:
2006 case MBX_READ_REV:
2007 case MBX_READ_LNK_STAT:
2008 case MBX_REG_LOGIN:
2009 case MBX_UNREG_LOGIN:
dea31012005-04-17 16:05:31 -05002010 case MBX_CLEAR_LA:
2011 case MBX_DUMP_MEMORY:
2012 case MBX_DUMP_CONTEXT:
2013 case MBX_RUN_DIAGS:
2014 case MBX_RESTART:
2015 case MBX_UPDATE_CFG:
2016 case MBX_DOWN_LOAD:
2017 case MBX_DEL_LD_ENTRY:
2018 case MBX_RUN_PROGRAM:
2019 case MBX_SET_MASK:
James Smart09372822008-01-11 01:52:54 -05002020 case MBX_SET_VARIABLE:
dea31012005-04-17 16:05:31 -05002021 case MBX_UNREG_D_ID:
Jamie Wellnitz41415862006-02-28 19:25:27 -05002022 case MBX_KILL_BOARD:
dea31012005-04-17 16:05:31 -05002023 case MBX_CONFIG_FARP:
Jamie Wellnitz41415862006-02-28 19:25:27 -05002024 case MBX_BEACON:
dea31012005-04-17 16:05:31 -05002025 case MBX_LOAD_AREA:
2026 case MBX_RUN_BIU_DIAG64:
2027 case MBX_CONFIG_PORT:
2028 case MBX_READ_SPARM64:
2029 case MBX_READ_RPI64:
2030 case MBX_REG_LOGIN64:
James Smart76a95d72010-11-20 23:11:48 -05002031 case MBX_READ_TOPOLOGY:
James Smart09372822008-01-11 01:52:54 -05002032 case MBX_WRITE_WWN:
dea31012005-04-17 16:05:31 -05002033 case MBX_SET_DEBUG:
2034 case MBX_LOAD_EXP_ROM:
James Smart57127f12007-10-27 13:37:05 -04002035 case MBX_ASYNCEVT_ENABLE:
James Smart92d7f7b2007-06-17 19:56:38 -05002036 case MBX_REG_VPI:
2037 case MBX_UNREG_VPI:
James Smart858c9f62007-06-17 19:56:39 -05002038 case MBX_HEARTBEAT:
James Smart84774a42008-08-24 21:50:06 -04002039 case MBX_PORT_CAPABILITIES:
2040 case MBX_PORT_IOV_CONTROL:
James Smart04c68492009-05-22 14:52:52 -04002041 case MBX_SLI4_CONFIG:
2042 case MBX_SLI4_REQ_FTRS:
2043 case MBX_REG_FCFI:
2044 case MBX_UNREG_FCFI:
2045 case MBX_REG_VFI:
2046 case MBX_UNREG_VFI:
2047 case MBX_INIT_VPI:
2048 case MBX_INIT_VFI:
2049 case MBX_RESUME_RPI:
James Smartc7495932010-04-06 15:05:28 -04002050 case MBX_READ_EVENT_LOG_STATUS:
2051 case MBX_READ_EVENT_LOG:
James Smartdcf2a4e2010-09-29 11:18:53 -04002052 case MBX_SECURITY_MGMT:
2053 case MBX_AUTH_PORT:
dea31012005-04-17 16:05:31 -05002054 ret = mbxCommand;
2055 break;
2056 default:
2057 ret = MBX_SHUTDOWN;
2058 break;
2059 }
James Smart2e0fef82007-06-17 19:56:36 -05002060 return ret;
dea31012005-04-17 16:05:31 -05002061}
James Smarte59058c2008-08-24 21:49:00 -04002062
2063/**
James Smart3621a712009-04-06 18:47:14 -04002064 * lpfc_sli_wake_mbox_wait - lpfc_sli_issue_mbox_wait mbox completion handler
James Smarte59058c2008-08-24 21:49:00 -04002065 * @phba: Pointer to HBA context object.
2066 * @pmboxq: Pointer to mailbox command.
2067 *
2068 * This is completion handler function for mailbox commands issued from
2069 * lpfc_sli_issue_mbox_wait function. This function is called by the
2070 * mailbox event handler function with no lock held. This function
2071 * will wake up thread waiting on the wait queue pointed by context1
2072 * of the mailbox.
2073 **/
James Smart04c68492009-05-22 14:52:52 -04002074void
James Smart2e0fef82007-06-17 19:56:36 -05002075lpfc_sli_wake_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq)
dea31012005-04-17 16:05:31 -05002076{
2077 wait_queue_head_t *pdone_q;
James Smart858c9f62007-06-17 19:56:39 -05002078 unsigned long drvr_flag;
dea31012005-04-17 16:05:31 -05002079
2080 /*
2081 * If pdone_q is empty, the driver thread gave up waiting and
2082 * continued running.
2083 */
James Smart7054a602007-04-25 09:52:34 -04002084 pmboxq->mbox_flag |= LPFC_MBX_WAKE;
James Smart858c9f62007-06-17 19:56:39 -05002085 spin_lock_irqsave(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05002086 pdone_q = (wait_queue_head_t *) pmboxq->context1;
2087 if (pdone_q)
2088 wake_up_interruptible(pdone_q);
James Smart858c9f62007-06-17 19:56:39 -05002089 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05002090 return;
2091}
2092
James Smarte59058c2008-08-24 21:49:00 -04002093
2094/**
James Smart3621a712009-04-06 18:47:14 -04002095 * lpfc_sli_def_mbox_cmpl - Default mailbox completion handler
James Smarte59058c2008-08-24 21:49:00 -04002096 * @phba: Pointer to HBA context object.
2097 * @pmb: Pointer to mailbox object.
2098 *
2099 * This function is the default mailbox completion handler. It
2100 * frees the memory resources associated with the completed mailbox
2101 * command. If the completed command is a REG_LOGIN mailbox command,
2102 * this function will issue a UREG_LOGIN to re-claim the RPI.
2103 **/
dea31012005-04-17 16:05:31 -05002104void
James Smart2e0fef82007-06-17 19:56:36 -05002105lpfc_sli_def_mbox_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05002106{
James Smartd439d282010-09-29 11:18:45 -04002107 struct lpfc_vport *vport = pmb->vport;
dea31012005-04-17 16:05:31 -05002108 struct lpfc_dmabuf *mp;
James Smartd439d282010-09-29 11:18:45 -04002109 struct lpfc_nodelist *ndlp;
James Smart5af5eee2010-10-22 11:06:38 -04002110 struct Scsi_Host *shost;
James Smart04c68492009-05-22 14:52:52 -04002111 uint16_t rpi, vpi;
James Smart7054a602007-04-25 09:52:34 -04002112 int rc;
2113
dea31012005-04-17 16:05:31 -05002114 mp = (struct lpfc_dmabuf *) (pmb->context1);
James Smart7054a602007-04-25 09:52:34 -04002115
dea31012005-04-17 16:05:31 -05002116 if (mp) {
2117 lpfc_mbuf_free(phba, mp->virt, mp->phys);
2118 kfree(mp);
2119 }
James Smart7054a602007-04-25 09:52:34 -04002120
2121 /*
2122 * If a REG_LOGIN succeeded after node is destroyed or node
2123 * is in re-discovery driver need to cleanup the RPI.
2124 */
James Smart2e0fef82007-06-17 19:56:36 -05002125 if (!(phba->pport->load_flag & FC_UNLOADING) &&
James Smart04c68492009-05-22 14:52:52 -04002126 pmb->u.mb.mbxCommand == MBX_REG_LOGIN64 &&
2127 !pmb->u.mb.mbxStatus) {
2128 rpi = pmb->u.mb.un.varWords[0];
James Smart6d368e52011-05-24 11:44:12 -04002129 vpi = pmb->u.mb.un.varRegLogin.vpi;
James Smart04c68492009-05-22 14:52:52 -04002130 lpfc_unreg_login(phba, vpi, rpi, pmb);
James Smart92d7f7b2007-06-17 19:56:38 -05002131 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart7054a602007-04-25 09:52:34 -04002132 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
2133 if (rc != MBX_NOT_FINISHED)
2134 return;
2135 }
2136
James Smart695a8142010-01-26 23:08:03 -05002137 if ((pmb->u.mb.mbxCommand == MBX_REG_VPI) &&
2138 !(phba->pport->load_flag & FC_UNLOADING) &&
2139 !pmb->u.mb.mbxStatus) {
James Smart5af5eee2010-10-22 11:06:38 -04002140 shost = lpfc_shost_from_vport(vport);
2141 spin_lock_irq(shost->host_lock);
2142 vport->vpi_state |= LPFC_VPI_REGISTERED;
2143 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
2144 spin_unlock_irq(shost->host_lock);
James Smart695a8142010-01-26 23:08:03 -05002145 }
2146
James Smartd439d282010-09-29 11:18:45 -04002147 if (pmb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
2148 ndlp = (struct lpfc_nodelist *)pmb->context2;
2149 lpfc_nlp_put(ndlp);
2150 pmb->context2 = NULL;
2151 }
2152
James Smartdcf2a4e2010-09-29 11:18:53 -04002153 /* Check security permission status on INIT_LINK mailbox command */
2154 if ((pmb->u.mb.mbxCommand == MBX_INIT_LINK) &&
2155 (pmb->u.mb.mbxStatus == MBXERR_SEC_NO_PERMISSION))
2156 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
2157 "2860 SLI authentication is required "
2158 "for INIT_LINK but has not done yet\n");
2159
James Smart04c68492009-05-22 14:52:52 -04002160 if (bf_get(lpfc_mqe_command, &pmb->u.mqe) == MBX_SLI4_CONFIG)
2161 lpfc_sli4_mbox_cmd_free(phba, pmb);
2162 else
2163 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05002164}
2165
James Smarte59058c2008-08-24 21:49:00 -04002166/**
James Smart3621a712009-04-06 18:47:14 -04002167 * lpfc_sli_handle_mb_event - Handle mailbox completions from firmware
James Smarte59058c2008-08-24 21:49:00 -04002168 * @phba: Pointer to HBA context object.
2169 *
2170 * This function is called with no lock held. This function processes all
2171 * the completed mailbox commands and gives it to upper layers. The interrupt
2172 * service routine processes mailbox completion interrupt and adds completed
2173 * mailbox commands to the mboxq_cmpl queue and signals the worker thread.
2174 * Worker thread call lpfc_sli_handle_mb_event, which will return the
2175 * completed mailbox commands in mboxq_cmpl queue to the upper layers. This
2176 * function returns the mailbox commands to the upper layer by calling the
2177 * completion handler function of each mailbox.
2178 **/
dea31012005-04-17 16:05:31 -05002179int
James Smart2e0fef82007-06-17 19:56:36 -05002180lpfc_sli_handle_mb_event(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05002181{
James Smart92d7f7b2007-06-17 19:56:38 -05002182 MAILBOX_t *pmbox;
dea31012005-04-17 16:05:31 -05002183 LPFC_MBOXQ_t *pmb;
James Smart92d7f7b2007-06-17 19:56:38 -05002184 int rc;
2185 LIST_HEAD(cmplq);
dea31012005-04-17 16:05:31 -05002186
2187 phba->sli.slistat.mbox_event++;
2188
James Smart92d7f7b2007-06-17 19:56:38 -05002189 /* Get all completed mailboxe buffers into the cmplq */
2190 spin_lock_irq(&phba->hbalock);
2191 list_splice_init(&phba->sli.mboxq_cmpl, &cmplq);
2192 spin_unlock_irq(&phba->hbalock);
2193
dea31012005-04-17 16:05:31 -05002194 /* Get a Mailbox buffer to setup mailbox commands for callback */
James Smart92d7f7b2007-06-17 19:56:38 -05002195 do {
2196 list_remove_head(&cmplq, pmb, LPFC_MBOXQ_t, list);
2197 if (pmb == NULL)
2198 break;
2199
James Smart04c68492009-05-22 14:52:52 -04002200 pmbox = &pmb->u.mb;
dea31012005-04-17 16:05:31 -05002201
James Smart858c9f62007-06-17 19:56:39 -05002202 if (pmbox->mbxCommand != MBX_HEARTBEAT) {
2203 if (pmb->vport) {
2204 lpfc_debugfs_disc_trc(pmb->vport,
2205 LPFC_DISC_TRC_MBOX_VPORT,
2206 "MBOX cmpl vport: cmd:x%x mb:x%x x%x",
2207 (uint32_t)pmbox->mbxCommand,
2208 pmbox->un.varWords[0],
2209 pmbox->un.varWords[1]);
2210 }
2211 else {
2212 lpfc_debugfs_disc_trc(phba->pport,
2213 LPFC_DISC_TRC_MBOX,
2214 "MBOX cmpl: cmd:x%x mb:x%x x%x",
2215 (uint32_t)pmbox->mbxCommand,
2216 pmbox->un.varWords[0],
2217 pmbox->un.varWords[1]);
2218 }
2219 }
2220
dea31012005-04-17 16:05:31 -05002221 /*
2222 * It is a fatal error if unknown mbox command completion.
2223 */
2224 if (lpfc_sli_chk_mbx_command(pmbox->mbxCommand) ==
2225 MBX_SHUTDOWN) {
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002226 /* Unknown mailbox command compl */
James Smart92d7f7b2007-06-17 19:56:38 -05002227 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002228 "(%d):0323 Unknown Mailbox command "
James Smarta183a152011-10-10 21:32:43 -04002229 "x%x (x%x/x%x) Cmpl\n",
James Smart92d7f7b2007-06-17 19:56:38 -05002230 pmb->vport ? pmb->vport->vpi : 0,
James Smart04c68492009-05-22 14:52:52 -04002231 pmbox->mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04002232 lpfc_sli_config_mbox_subsys_get(phba,
2233 pmb),
2234 lpfc_sli_config_mbox_opcode_get(phba,
2235 pmb));
James Smart2e0fef82007-06-17 19:56:36 -05002236 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05002237 phba->work_hs = HS_FFER3;
2238 lpfc_handle_eratt(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05002239 continue;
dea31012005-04-17 16:05:31 -05002240 }
2241
dea31012005-04-17 16:05:31 -05002242 if (pmbox->mbxStatus) {
2243 phba->sli.slistat.mbox_stat_err++;
2244 if (pmbox->mbxStatus == MBXERR_NO_RESOURCES) {
2245 /* Mbox cmd cmpl error - RETRYing */
James Smart92d7f7b2007-06-17 19:56:38 -05002246 lpfc_printf_log(phba, KERN_INFO,
James Smarta183a152011-10-10 21:32:43 -04002247 LOG_MBOX | LOG_SLI,
2248 "(%d):0305 Mbox cmd cmpl "
2249 "error - RETRYing Data: x%x "
2250 "(x%x/x%x) x%x x%x x%x\n",
2251 pmb->vport ? pmb->vport->vpi : 0,
2252 pmbox->mbxCommand,
2253 lpfc_sli_config_mbox_subsys_get(phba,
2254 pmb),
2255 lpfc_sli_config_mbox_opcode_get(phba,
2256 pmb),
2257 pmbox->mbxStatus,
2258 pmbox->un.varWords[0],
2259 pmb->vport->port_state);
dea31012005-04-17 16:05:31 -05002260 pmbox->mbxStatus = 0;
2261 pmbox->mbxOwner = OWN_HOST;
dea31012005-04-17 16:05:31 -05002262 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
James Smart04c68492009-05-22 14:52:52 -04002263 if (rc != MBX_NOT_FINISHED)
James Smart92d7f7b2007-06-17 19:56:38 -05002264 continue;
dea31012005-04-17 16:05:31 -05002265 }
2266 }
2267
2268 /* Mailbox cmd <cmd> Cmpl <cmpl> */
James Smart92d7f7b2007-06-17 19:56:38 -05002269 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04002270 "(%d):0307 Mailbox cmd x%x (x%x/x%x) Cmpl x%p "
dea31012005-04-17 16:05:31 -05002271 "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 -05002272 pmb->vport ? pmb->vport->vpi : 0,
dea31012005-04-17 16:05:31 -05002273 pmbox->mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04002274 lpfc_sli_config_mbox_subsys_get(phba, pmb),
2275 lpfc_sli_config_mbox_opcode_get(phba, pmb),
dea31012005-04-17 16:05:31 -05002276 pmb->mbox_cmpl,
2277 *((uint32_t *) pmbox),
2278 pmbox->un.varWords[0],
2279 pmbox->un.varWords[1],
2280 pmbox->un.varWords[2],
2281 pmbox->un.varWords[3],
2282 pmbox->un.varWords[4],
2283 pmbox->un.varWords[5],
2284 pmbox->un.varWords[6],
2285 pmbox->un.varWords[7]);
2286
James Smart92d7f7b2007-06-17 19:56:38 -05002287 if (pmb->mbox_cmpl)
dea31012005-04-17 16:05:31 -05002288 pmb->mbox_cmpl(phba,pmb);
James Smart92d7f7b2007-06-17 19:56:38 -05002289 } while (1);
James Smart2e0fef82007-06-17 19:56:36 -05002290 return 0;
dea31012005-04-17 16:05:31 -05002291}
James Smart92d7f7b2007-06-17 19:56:38 -05002292
James Smarte59058c2008-08-24 21:49:00 -04002293/**
James Smart3621a712009-04-06 18:47:14 -04002294 * lpfc_sli_get_buff - Get the buffer associated with the buffer tag
James Smarte59058c2008-08-24 21:49:00 -04002295 * @phba: Pointer to HBA context object.
2296 * @pring: Pointer to driver SLI ring object.
2297 * @tag: buffer tag.
2298 *
2299 * This function is called with no lock held. When QUE_BUFTAG_BIT bit
2300 * is set in the tag the buffer is posted for a particular exchange,
2301 * the function will return the buffer without replacing the buffer.
2302 * If the buffer is for unsolicited ELS or CT traffic, this function
2303 * returns the buffer and also posts another buffer to the firmware.
2304 **/
James Smart76bb24e2007-10-27 13:38:00 -04002305static struct lpfc_dmabuf *
2306lpfc_sli_get_buff(struct lpfc_hba *phba,
James Smart9f1e1b52008-12-04 22:39:40 -05002307 struct lpfc_sli_ring *pring,
2308 uint32_t tag)
James Smart76bb24e2007-10-27 13:38:00 -04002309{
James Smart9f1e1b52008-12-04 22:39:40 -05002310 struct hbq_dmabuf *hbq_entry;
2311
James Smart76bb24e2007-10-27 13:38:00 -04002312 if (tag & QUE_BUFTAG_BIT)
2313 return lpfc_sli_ring_taggedbuf_get(phba, pring, tag);
James Smart9f1e1b52008-12-04 22:39:40 -05002314 hbq_entry = lpfc_sli_hbqbuf_find(phba, tag);
2315 if (!hbq_entry)
2316 return NULL;
2317 return &hbq_entry->dbuf;
James Smart76bb24e2007-10-27 13:38:00 -04002318}
James Smart57127f12007-10-27 13:37:05 -04002319
James Smart3772a992009-05-22 14:50:54 -04002320/**
2321 * lpfc_complete_unsol_iocb - Complete an unsolicited sequence
2322 * @phba: Pointer to HBA context object.
2323 * @pring: Pointer to driver SLI ring object.
2324 * @saveq: Pointer to the iocbq struct representing the sequence starting frame.
2325 * @fch_r_ctl: the r_ctl for the first frame of the sequence.
2326 * @fch_type: the type for the first frame of the sequence.
2327 *
2328 * This function is called with no lock held. This function uses the r_ctl and
2329 * type of the received sequence to find the correct callback function to call
2330 * to process the sequence.
2331 **/
2332static int
2333lpfc_complete_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2334 struct lpfc_iocbq *saveq, uint32_t fch_r_ctl,
2335 uint32_t fch_type)
2336{
2337 int i;
2338
2339 /* unSolicited Responses */
2340 if (pring->prt[0].profile) {
2341 if (pring->prt[0].lpfc_sli_rcv_unsol_event)
2342 (pring->prt[0].lpfc_sli_rcv_unsol_event) (phba, pring,
2343 saveq);
2344 return 1;
2345 }
2346 /* We must search, based on rctl / type
2347 for the right routine */
2348 for (i = 0; i < pring->num_mask; i++) {
2349 if ((pring->prt[i].rctl == fch_r_ctl) &&
2350 (pring->prt[i].type == fch_type)) {
2351 if (pring->prt[i].lpfc_sli_rcv_unsol_event)
2352 (pring->prt[i].lpfc_sli_rcv_unsol_event)
2353 (phba, pring, saveq);
2354 return 1;
2355 }
2356 }
2357 return 0;
2358}
James Smarte59058c2008-08-24 21:49:00 -04002359
2360/**
James Smart3621a712009-04-06 18:47:14 -04002361 * lpfc_sli_process_unsol_iocb - Unsolicited iocb handler
James Smarte59058c2008-08-24 21:49:00 -04002362 * @phba: Pointer to HBA context object.
2363 * @pring: Pointer to driver SLI ring object.
2364 * @saveq: Pointer to the unsolicited iocb.
2365 *
2366 * This function is called with no lock held by the ring event handler
2367 * when there is an unsolicited iocb posted to the response ring by the
2368 * firmware. This function gets the buffer associated with the iocbs
2369 * and calls the event handler for the ring. This function handles both
2370 * qring buffers and hbq buffers.
2371 * When the function returns 1 the caller can free the iocb object otherwise
2372 * upper layer functions will free the iocb objects.
2373 **/
dea31012005-04-17 16:05:31 -05002374static int
2375lpfc_sli_process_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2376 struct lpfc_iocbq *saveq)
2377{
2378 IOCB_t * irsp;
2379 WORD5 * w5p;
2380 uint32_t Rctl, Type;
James Smart3772a992009-05-22 14:50:54 -04002381 uint32_t match;
James Smart76bb24e2007-10-27 13:38:00 -04002382 struct lpfc_iocbq *iocbq;
James Smart3163f722008-02-08 18:50:25 -05002383 struct lpfc_dmabuf *dmzbuf;
dea31012005-04-17 16:05:31 -05002384
2385 match = 0;
2386 irsp = &(saveq->iocb);
James Smart57127f12007-10-27 13:37:05 -04002387
2388 if (irsp->ulpCommand == CMD_ASYNC_STATUS) {
2389 if (pring->lpfc_sli_rcv_async_status)
2390 pring->lpfc_sli_rcv_async_status(phba, pring, saveq);
2391 else
2392 lpfc_printf_log(phba,
2393 KERN_WARNING,
2394 LOG_SLI,
2395 "0316 Ring %d handler: unexpected "
2396 "ASYNC_STATUS iocb received evt_code "
2397 "0x%x\n",
2398 pring->ringno,
2399 irsp->un.asyncstat.evt_code);
2400 return 1;
2401 }
2402
James Smart3163f722008-02-08 18:50:25 -05002403 if ((irsp->ulpCommand == CMD_IOCB_RET_XRI64_CX) &&
2404 (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED)) {
2405 if (irsp->ulpBdeCount > 0) {
2406 dmzbuf = lpfc_sli_get_buff(phba, pring,
2407 irsp->un.ulpWord[3]);
2408 lpfc_in_buf_free(phba, dmzbuf);
2409 }
2410
2411 if (irsp->ulpBdeCount > 1) {
2412 dmzbuf = lpfc_sli_get_buff(phba, pring,
2413 irsp->unsli3.sli3Words[3]);
2414 lpfc_in_buf_free(phba, dmzbuf);
2415 }
2416
2417 if (irsp->ulpBdeCount > 2) {
2418 dmzbuf = lpfc_sli_get_buff(phba, pring,
2419 irsp->unsli3.sli3Words[7]);
2420 lpfc_in_buf_free(phba, dmzbuf);
2421 }
2422
2423 return 1;
2424 }
2425
James Smart92d7f7b2007-06-17 19:56:38 -05002426 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
James Smart76bb24e2007-10-27 13:38:00 -04002427 if (irsp->ulpBdeCount != 0) {
2428 saveq->context2 = lpfc_sli_get_buff(phba, pring,
James Smart92d7f7b2007-06-17 19:56:38 -05002429 irsp->un.ulpWord[3]);
James Smart76bb24e2007-10-27 13:38:00 -04002430 if (!saveq->context2)
2431 lpfc_printf_log(phba,
2432 KERN_ERR,
2433 LOG_SLI,
2434 "0341 Ring %d Cannot find buffer for "
2435 "an unsolicited iocb. tag 0x%x\n",
2436 pring->ringno,
2437 irsp->un.ulpWord[3]);
James Smart76bb24e2007-10-27 13:38:00 -04002438 }
2439 if (irsp->ulpBdeCount == 2) {
2440 saveq->context3 = lpfc_sli_get_buff(phba, pring,
James Smart51ef4c22007-08-02 11:10:31 -04002441 irsp->unsli3.sli3Words[7]);
James Smart76bb24e2007-10-27 13:38:00 -04002442 if (!saveq->context3)
2443 lpfc_printf_log(phba,
2444 KERN_ERR,
2445 LOG_SLI,
2446 "0342 Ring %d Cannot find buffer for an"
2447 " unsolicited iocb. tag 0x%x\n",
2448 pring->ringno,
2449 irsp->unsli3.sli3Words[7]);
2450 }
2451 list_for_each_entry(iocbq, &saveq->list, list) {
James Smart76bb24e2007-10-27 13:38:00 -04002452 irsp = &(iocbq->iocb);
James Smart76bb24e2007-10-27 13:38:00 -04002453 if (irsp->ulpBdeCount != 0) {
2454 iocbq->context2 = lpfc_sli_get_buff(phba, pring,
2455 irsp->un.ulpWord[3]);
James Smart9c2face2008-01-11 01:53:18 -05002456 if (!iocbq->context2)
James Smart76bb24e2007-10-27 13:38:00 -04002457 lpfc_printf_log(phba,
2458 KERN_ERR,
2459 LOG_SLI,
2460 "0343 Ring %d Cannot find "
2461 "buffer for an unsolicited iocb"
2462 ". tag 0x%x\n", pring->ringno,
2463 irsp->un.ulpWord[3]);
2464 }
2465 if (irsp->ulpBdeCount == 2) {
2466 iocbq->context3 = lpfc_sli_get_buff(phba, pring,
2467 irsp->unsli3.sli3Words[7]);
James Smart9c2face2008-01-11 01:53:18 -05002468 if (!iocbq->context3)
James Smart76bb24e2007-10-27 13:38:00 -04002469 lpfc_printf_log(phba,
2470 KERN_ERR,
2471 LOG_SLI,
2472 "0344 Ring %d Cannot find "
2473 "buffer for an unsolicited "
2474 "iocb. tag 0x%x\n",
2475 pring->ringno,
2476 irsp->unsli3.sli3Words[7]);
2477 }
2478 }
James Smart92d7f7b2007-06-17 19:56:38 -05002479 }
James Smart9c2face2008-01-11 01:53:18 -05002480 if (irsp->ulpBdeCount != 0 &&
2481 (irsp->ulpCommand == CMD_IOCB_RCV_CONT64_CX ||
2482 irsp->ulpStatus == IOSTAT_INTERMED_RSP)) {
2483 int found = 0;
2484
2485 /* search continue save q for same XRI */
2486 list_for_each_entry(iocbq, &pring->iocb_continue_saveq, clist) {
James Smart7851fe22011-07-22 18:36:52 -04002487 if (iocbq->iocb.unsli3.rcvsli3.ox_id ==
2488 saveq->iocb.unsli3.rcvsli3.ox_id) {
James Smart9c2face2008-01-11 01:53:18 -05002489 list_add_tail(&saveq->list, &iocbq->list);
2490 found = 1;
2491 break;
2492 }
2493 }
2494 if (!found)
2495 list_add_tail(&saveq->clist,
2496 &pring->iocb_continue_saveq);
2497 if (saveq->iocb.ulpStatus != IOSTAT_INTERMED_RSP) {
2498 list_del_init(&iocbq->clist);
2499 saveq = iocbq;
2500 irsp = &(saveq->iocb);
2501 } else
2502 return 0;
2503 }
2504 if ((irsp->ulpCommand == CMD_RCV_ELS_REQ64_CX) ||
2505 (irsp->ulpCommand == CMD_RCV_ELS_REQ_CX) ||
2506 (irsp->ulpCommand == CMD_IOCB_RCV_ELS64_CX)) {
James Smart6a9c52c2009-10-02 15:16:51 -04002507 Rctl = FC_RCTL_ELS_REQ;
2508 Type = FC_TYPE_ELS;
James Smart9c2face2008-01-11 01:53:18 -05002509 } else {
2510 w5p = (WORD5 *)&(saveq->iocb.un.ulpWord[5]);
2511 Rctl = w5p->hcsw.Rctl;
2512 Type = w5p->hcsw.Type;
2513
2514 /* Firmware Workaround */
2515 if ((Rctl == 0) && (pring->ringno == LPFC_ELS_RING) &&
2516 (irsp->ulpCommand == CMD_RCV_SEQUENCE64_CX ||
2517 irsp->ulpCommand == CMD_IOCB_RCV_SEQ64_CX)) {
James Smart6a9c52c2009-10-02 15:16:51 -04002518 Rctl = FC_RCTL_ELS_REQ;
2519 Type = FC_TYPE_ELS;
James Smart9c2face2008-01-11 01:53:18 -05002520 w5p->hcsw.Rctl = Rctl;
2521 w5p->hcsw.Type = Type;
2522 }
2523 }
James Smart92d7f7b2007-06-17 19:56:38 -05002524
James Smart3772a992009-05-22 14:50:54 -04002525 if (!lpfc_complete_unsol_iocb(phba, pring, saveq, Rctl, Type))
James Smart92d7f7b2007-06-17 19:56:38 -05002526 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002527 "0313 Ring %d handler: unexpected Rctl x%x "
James Smart92d7f7b2007-06-17 19:56:38 -05002528 "Type x%x received\n",
James Smarte8b62012007-08-02 11:10:09 -04002529 pring->ringno, Rctl, Type);
James Smart3772a992009-05-22 14:50:54 -04002530
James Smart92d7f7b2007-06-17 19:56:38 -05002531 return 1;
dea31012005-04-17 16:05:31 -05002532}
2533
James Smarte59058c2008-08-24 21:49:00 -04002534/**
James Smart3621a712009-04-06 18:47:14 -04002535 * lpfc_sli_iocbq_lookup - Find command iocb for the given response iocb
James Smarte59058c2008-08-24 21:49:00 -04002536 * @phba: Pointer to HBA context object.
2537 * @pring: Pointer to driver SLI ring object.
2538 * @prspiocb: Pointer to response iocb object.
2539 *
2540 * This function looks up the iocb_lookup table to get the command iocb
2541 * corresponding to the given response iocb using the iotag of the
2542 * response iocb. This function is called with the hbalock held.
2543 * This function returns the command iocb object if it finds the command
2544 * iocb else returns NULL.
2545 **/
dea31012005-04-17 16:05:31 -05002546static struct lpfc_iocbq *
James Smart2e0fef82007-06-17 19:56:36 -05002547lpfc_sli_iocbq_lookup(struct lpfc_hba *phba,
2548 struct lpfc_sli_ring *pring,
2549 struct lpfc_iocbq *prspiocb)
dea31012005-04-17 16:05:31 -05002550{
dea31012005-04-17 16:05:31 -05002551 struct lpfc_iocbq *cmd_iocb = NULL;
2552 uint16_t iotag;
2553
James Bottomley604a3e32005-10-29 10:28:33 -05002554 iotag = prspiocb->iocb.ulpIoTag;
dea31012005-04-17 16:05:31 -05002555
James Bottomley604a3e32005-10-29 10:28:33 -05002556 if (iotag != 0 && iotag <= phba->sli.last_iotag) {
2557 cmd_iocb = phba->sli.iocbq_lookup[iotag];
James Smart92d7f7b2007-06-17 19:56:38 -05002558 list_del_init(&cmd_iocb->list);
James Smart2a9bf3d2010-06-07 15:24:45 -04002559 if (cmd_iocb->iocb_flag & LPFC_IO_ON_Q) {
2560 pring->txcmplq_cnt--;
2561 cmd_iocb->iocb_flag &= ~LPFC_IO_ON_Q;
2562 }
James Bottomley604a3e32005-10-29 10:28:33 -05002563 return cmd_iocb;
dea31012005-04-17 16:05:31 -05002564 }
2565
dea31012005-04-17 16:05:31 -05002566 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002567 "0317 iotag x%x is out off "
James Bottomley604a3e32005-10-29 10:28:33 -05002568 "range: max iotag x%x wd0 x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04002569 iotag, phba->sli.last_iotag,
James Bottomley604a3e32005-10-29 10:28:33 -05002570 *(((uint32_t *) &prspiocb->iocb) + 7));
dea31012005-04-17 16:05:31 -05002571 return NULL;
2572}
2573
James Smarte59058c2008-08-24 21:49:00 -04002574/**
James Smart3772a992009-05-22 14:50:54 -04002575 * lpfc_sli_iocbq_lookup_by_tag - Find command iocb for the iotag
2576 * @phba: Pointer to HBA context object.
2577 * @pring: Pointer to driver SLI ring object.
2578 * @iotag: IOCB tag.
2579 *
2580 * This function looks up the iocb_lookup table to get the command iocb
2581 * corresponding to the given iotag. This function is called with the
2582 * hbalock held.
2583 * This function returns the command iocb object if it finds the command
2584 * iocb else returns NULL.
2585 **/
2586static struct lpfc_iocbq *
2587lpfc_sli_iocbq_lookup_by_tag(struct lpfc_hba *phba,
2588 struct lpfc_sli_ring *pring, uint16_t iotag)
2589{
2590 struct lpfc_iocbq *cmd_iocb;
2591
2592 if (iotag != 0 && iotag <= phba->sli.last_iotag) {
2593 cmd_iocb = phba->sli.iocbq_lookup[iotag];
2594 list_del_init(&cmd_iocb->list);
James Smart2a9bf3d2010-06-07 15:24:45 -04002595 if (cmd_iocb->iocb_flag & LPFC_IO_ON_Q) {
2596 cmd_iocb->iocb_flag &= ~LPFC_IO_ON_Q;
2597 pring->txcmplq_cnt--;
2598 }
James Smart3772a992009-05-22 14:50:54 -04002599 return cmd_iocb;
2600 }
2601
2602 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2603 "0372 iotag x%x is out off range: max iotag (x%x)\n",
2604 iotag, phba->sli.last_iotag);
2605 return NULL;
2606}
2607
2608/**
James Smart3621a712009-04-06 18:47:14 -04002609 * lpfc_sli_process_sol_iocb - process solicited iocb completion
James Smarte59058c2008-08-24 21:49:00 -04002610 * @phba: Pointer to HBA context object.
2611 * @pring: Pointer to driver SLI ring object.
2612 * @saveq: Pointer to the response iocb to be processed.
2613 *
2614 * This function is called by the ring event handler for non-fcp
2615 * rings when there is a new response iocb in the response ring.
2616 * The caller is not required to hold any locks. This function
2617 * gets the command iocb associated with the response iocb and
2618 * calls the completion handler for the command iocb. If there
2619 * is no completion handler, the function will free the resources
2620 * associated with command iocb. If the response iocb is for
2621 * an already aborted command iocb, the status of the completion
2622 * is changed to IOSTAT_LOCAL_REJECT/IOERR_SLI_ABORTED.
2623 * This function always returns 1.
2624 **/
dea31012005-04-17 16:05:31 -05002625static int
James Smart2e0fef82007-06-17 19:56:36 -05002626lpfc_sli_process_sol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
dea31012005-04-17 16:05:31 -05002627 struct lpfc_iocbq *saveq)
2628{
James Smart2e0fef82007-06-17 19:56:36 -05002629 struct lpfc_iocbq *cmdiocbp;
dea31012005-04-17 16:05:31 -05002630 int rc = 1;
2631 unsigned long iflag;
2632
2633 /* Based on the iotag field, get the cmd IOCB from the txcmplq */
James Smart2e0fef82007-06-17 19:56:36 -05002634 spin_lock_irqsave(&phba->hbalock, iflag);
James Bottomley604a3e32005-10-29 10:28:33 -05002635 cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring, saveq);
James Smart2e0fef82007-06-17 19:56:36 -05002636 spin_unlock_irqrestore(&phba->hbalock, iflag);
2637
dea31012005-04-17 16:05:31 -05002638 if (cmdiocbp) {
2639 if (cmdiocbp->iocb_cmpl) {
2640 /*
James Smartea2151b2008-09-07 11:52:10 -04002641 * If an ELS command failed send an event to mgmt
2642 * application.
2643 */
2644 if (saveq->iocb.ulpStatus &&
2645 (pring->ringno == LPFC_ELS_RING) &&
2646 (cmdiocbp->iocb.ulpCommand ==
2647 CMD_ELS_REQUEST64_CR))
2648 lpfc_send_els_failure_event(phba,
2649 cmdiocbp, saveq);
2650
2651 /*
dea31012005-04-17 16:05:31 -05002652 * Post all ELS completions to the worker thread.
2653 * All other are passed to the completion callback.
2654 */
2655 if (pring->ringno == LPFC_ELS_RING) {
James Smart341af102010-01-26 23:07:37 -05002656 if ((phba->sli_rev < LPFC_SLI_REV4) &&
2657 (cmdiocbp->iocb_flag &
2658 LPFC_DRIVER_ABORTED)) {
2659 spin_lock_irqsave(&phba->hbalock,
2660 iflag);
James Smart07951072007-04-25 09:51:38 -04002661 cmdiocbp->iocb_flag &=
2662 ~LPFC_DRIVER_ABORTED;
James Smart341af102010-01-26 23:07:37 -05002663 spin_unlock_irqrestore(&phba->hbalock,
2664 iflag);
James Smart07951072007-04-25 09:51:38 -04002665 saveq->iocb.ulpStatus =
2666 IOSTAT_LOCAL_REJECT;
2667 saveq->iocb.un.ulpWord[4] =
2668 IOERR_SLI_ABORTED;
James Smart0ff10d42008-01-11 01:52:36 -05002669
2670 /* Firmware could still be in progress
2671 * of DMAing payload, so don't free data
2672 * buffer till after a hbeat.
2673 */
James Smart341af102010-01-26 23:07:37 -05002674 spin_lock_irqsave(&phba->hbalock,
2675 iflag);
James Smart0ff10d42008-01-11 01:52:36 -05002676 saveq->iocb_flag |= LPFC_DELAY_MEM_FREE;
James Smart341af102010-01-26 23:07:37 -05002677 spin_unlock_irqrestore(&phba->hbalock,
2678 iflag);
2679 }
James Smart0f65ff62010-02-26 14:14:23 -05002680 if (phba->sli_rev == LPFC_SLI_REV4) {
2681 if (saveq->iocb_flag &
2682 LPFC_EXCHANGE_BUSY) {
2683 /* Set cmdiocb flag for the
2684 * exchange busy so sgl (xri)
2685 * will not be released until
2686 * the abort xri is received
2687 * from hba.
2688 */
2689 spin_lock_irqsave(
2690 &phba->hbalock, iflag);
2691 cmdiocbp->iocb_flag |=
2692 LPFC_EXCHANGE_BUSY;
2693 spin_unlock_irqrestore(
2694 &phba->hbalock, iflag);
2695 }
2696 if (cmdiocbp->iocb_flag &
2697 LPFC_DRIVER_ABORTED) {
2698 /*
2699 * Clear LPFC_DRIVER_ABORTED
2700 * bit in case it was driver
2701 * initiated abort.
2702 */
2703 spin_lock_irqsave(
2704 &phba->hbalock, iflag);
2705 cmdiocbp->iocb_flag &=
2706 ~LPFC_DRIVER_ABORTED;
2707 spin_unlock_irqrestore(
2708 &phba->hbalock, iflag);
2709 cmdiocbp->iocb.ulpStatus =
2710 IOSTAT_LOCAL_REJECT;
2711 cmdiocbp->iocb.un.ulpWord[4] =
2712 IOERR_ABORT_REQUESTED;
2713 /*
2714 * For SLI4, irsiocb contains
2715 * NO_XRI in sli_xritag, it
2716 * shall not affect releasing
2717 * sgl (xri) process.
2718 */
2719 saveq->iocb.ulpStatus =
2720 IOSTAT_LOCAL_REJECT;
2721 saveq->iocb.un.ulpWord[4] =
2722 IOERR_SLI_ABORTED;
2723 spin_lock_irqsave(
2724 &phba->hbalock, iflag);
2725 saveq->iocb_flag |=
2726 LPFC_DELAY_MEM_FREE;
2727 spin_unlock_irqrestore(
2728 &phba->hbalock, iflag);
2729 }
James Smart07951072007-04-25 09:51:38 -04002730 }
dea31012005-04-17 16:05:31 -05002731 }
James Smart2e0fef82007-06-17 19:56:36 -05002732 (cmdiocbp->iocb_cmpl) (phba, cmdiocbp, saveq);
James Bottomley604a3e32005-10-29 10:28:33 -05002733 } else
2734 lpfc_sli_release_iocbq(phba, cmdiocbp);
dea31012005-04-17 16:05:31 -05002735 } else {
2736 /*
2737 * Unknown initiating command based on the response iotag.
2738 * This could be the case on the ELS ring because of
2739 * lpfc_els_abort().
2740 */
2741 if (pring->ringno != LPFC_ELS_RING) {
2742 /*
2743 * Ring <ringno> handler: unexpected completion IoTag
2744 * <IoTag>
2745 */
James Smarta257bf92009-04-06 18:48:10 -04002746 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002747 "0322 Ring %d handler: "
2748 "unexpected completion IoTag x%x "
2749 "Data: x%x x%x x%x x%x\n",
2750 pring->ringno,
2751 saveq->iocb.ulpIoTag,
2752 saveq->iocb.ulpStatus,
2753 saveq->iocb.un.ulpWord[4],
2754 saveq->iocb.ulpCommand,
2755 saveq->iocb.ulpContext);
dea31012005-04-17 16:05:31 -05002756 }
2757 }
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04002758
dea31012005-04-17 16:05:31 -05002759 return rc;
2760}
2761
James Smarte59058c2008-08-24 21:49:00 -04002762/**
James Smart3621a712009-04-06 18:47:14 -04002763 * lpfc_sli_rsp_pointers_error - Response ring pointer error handler
James Smarte59058c2008-08-24 21:49:00 -04002764 * @phba: Pointer to HBA context object.
2765 * @pring: Pointer to driver SLI ring object.
2766 *
2767 * This function is called from the iocb ring event handlers when
2768 * put pointer is ahead of the get pointer for a ring. This function signal
2769 * an error attention condition to the worker thread and the worker
2770 * thread will transition the HBA to offline state.
2771 **/
James Smart2e0fef82007-06-17 19:56:36 -05002772static void
2773lpfc_sli_rsp_pointers_error(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002774{
James Smart34b02dc2008-08-24 21:49:55 -04002775 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002776 /*
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02002777 * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002778 * rsp ring <portRspMax>
2779 */
2780 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002781 "0312 Ring %d handler: portRspPut %d "
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02002782 "is bigger than rsp ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -04002783 pring->ringno, le32_to_cpu(pgp->rspPutInx),
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002784 pring->numRiocb);
2785
James Smart2e0fef82007-06-17 19:56:36 -05002786 phba->link_state = LPFC_HBA_ERROR;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002787
2788 /*
2789 * All error attention handlers are posted to
2790 * worker thread
2791 */
2792 phba->work_ha |= HA_ERATT;
2793 phba->work_hs = HS_FFER3;
James Smart92d7f7b2007-06-17 19:56:38 -05002794
James Smart5e9d9b82008-06-14 22:52:53 -04002795 lpfc_worker_wake_up(phba);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002796
2797 return;
2798}
2799
James Smarte59058c2008-08-24 21:49:00 -04002800/**
James Smart3621a712009-04-06 18:47:14 -04002801 * lpfc_poll_eratt - Error attention polling timer timeout handler
James Smart93996272008-08-24 21:50:30 -04002802 * @ptr: Pointer to address of HBA context object.
2803 *
2804 * This function is invoked by the Error Attention polling timer when the
2805 * timer times out. It will check the SLI Error Attention register for
2806 * possible attention events. If so, it will post an Error Attention event
2807 * and wake up worker thread to process it. Otherwise, it will set up the
2808 * Error Attention polling timer for the next poll.
2809 **/
2810void lpfc_poll_eratt(unsigned long ptr)
2811{
2812 struct lpfc_hba *phba;
2813 uint32_t eratt = 0;
2814
2815 phba = (struct lpfc_hba *)ptr;
2816
2817 /* Check chip HA register for error event */
2818 eratt = lpfc_sli_check_eratt(phba);
2819
2820 if (eratt)
2821 /* Tell the worker thread there is work to do */
2822 lpfc_worker_wake_up(phba);
2823 else
2824 /* Restart the timer for next eratt poll */
2825 mod_timer(&phba->eratt_poll, jiffies +
2826 HZ * LPFC_ERATT_POLL_INTERVAL);
2827 return;
2828}
2829
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002830
James Smarte59058c2008-08-24 21:49:00 -04002831/**
James Smart3621a712009-04-06 18:47:14 -04002832 * lpfc_sli_handle_fast_ring_event - Handle ring events on FCP ring
James Smarte59058c2008-08-24 21:49:00 -04002833 * @phba: Pointer to HBA context object.
2834 * @pring: Pointer to driver SLI ring object.
2835 * @mask: Host attention register mask for this ring.
2836 *
2837 * This function is called from the interrupt context when there is a ring
2838 * event for the fcp ring. The caller does not hold any lock.
2839 * The function processes each response iocb in the response ring until it
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002840 * finds an iocb with LE bit set and chains all the iocbs up to the iocb with
James Smarte59058c2008-08-24 21:49:00 -04002841 * LE bit set. The function will call the completion handler of the command iocb
2842 * if the response iocb indicates a completion for a command iocb or it is
2843 * an abort completion. The function will call lpfc_sli_process_unsol_iocb
2844 * function if this is an unsolicited iocb.
dea31012005-04-17 16:05:31 -05002845 * This routine presumes LPFC_FCP_RING handling and doesn't bother
James Smart45ed1192009-10-02 15:17:02 -04002846 * to check it explicitly.
2847 */
2848int
James Smart2e0fef82007-06-17 19:56:36 -05002849lpfc_sli_handle_fast_ring_event(struct lpfc_hba *phba,
2850 struct lpfc_sli_ring *pring, uint32_t mask)
dea31012005-04-17 16:05:31 -05002851{
James Smart34b02dc2008-08-24 21:49:55 -04002852 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
dea31012005-04-17 16:05:31 -05002853 IOCB_t *irsp = NULL;
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04002854 IOCB_t *entry = NULL;
dea31012005-04-17 16:05:31 -05002855 struct lpfc_iocbq *cmdiocbq = NULL;
2856 struct lpfc_iocbq rspiocbq;
dea31012005-04-17 16:05:31 -05002857 uint32_t status;
2858 uint32_t portRspPut, portRspMax;
2859 int rc = 1;
2860 lpfc_iocb_type type;
2861 unsigned long iflag;
2862 uint32_t rsp_cmpl = 0;
dea31012005-04-17 16:05:31 -05002863
James Smart2e0fef82007-06-17 19:56:36 -05002864 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05002865 pring->stats.iocb_event++;
2866
dea31012005-04-17 16:05:31 -05002867 /*
2868 * The next available response entry should never exceed the maximum
2869 * entries. If it does, treat it as an adapter hardware error.
2870 */
2871 portRspMax = pring->numRiocb;
2872 portRspPut = le32_to_cpu(pgp->rspPutInx);
2873 if (unlikely(portRspPut >= portRspMax)) {
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002874 lpfc_sli_rsp_pointers_error(phba, pring);
James Smart2e0fef82007-06-17 19:56:36 -05002875 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05002876 return 1;
2877 }
James Smart45ed1192009-10-02 15:17:02 -04002878 if (phba->fcp_ring_in_use) {
2879 spin_unlock_irqrestore(&phba->hbalock, iflag);
2880 return 1;
2881 } else
2882 phba->fcp_ring_in_use = 1;
dea31012005-04-17 16:05:31 -05002883
2884 rmb();
2885 while (pring->rspidx != portRspPut) {
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04002886 /*
2887 * Fetch an entry off the ring and copy it into a local data
2888 * structure. The copy involves a byte-swap since the
2889 * network byte order and pci byte orders are different.
2890 */
James Smarted957682007-06-17 19:56:37 -05002891 entry = lpfc_resp_iocb(phba, pring);
James Smart858c9f62007-06-17 19:56:39 -05002892 phba->last_completion_time = jiffies;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002893
2894 if (++pring->rspidx >= portRspMax)
2895 pring->rspidx = 0;
2896
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04002897 lpfc_sli_pcimem_bcopy((uint32_t *) entry,
2898 (uint32_t *) &rspiocbq.iocb,
James Smarted957682007-06-17 19:56:37 -05002899 phba->iocb_rsp_size);
James Smarta4bc3372006-12-02 13:34:16 -05002900 INIT_LIST_HEAD(&(rspiocbq.list));
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04002901 irsp = &rspiocbq.iocb;
2902
dea31012005-04-17 16:05:31 -05002903 type = lpfc_sli_iocb_cmd_type(irsp->ulpCommand & CMD_IOCB_MASK);
2904 pring->stats.iocb_rsp++;
2905 rsp_cmpl++;
2906
2907 if (unlikely(irsp->ulpStatus)) {
James Smart92d7f7b2007-06-17 19:56:38 -05002908 /*
2909 * If resource errors reported from HBA, reduce
2910 * queuedepths of the SCSI device.
2911 */
2912 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
2913 (irsp->un.ulpWord[4] == IOERR_NO_RESOURCES)) {
2914 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart3772a992009-05-22 14:50:54 -04002915 phba->lpfc_rampdown_queue_depth(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05002916 spin_lock_irqsave(&phba->hbalock, iflag);
2917 }
2918
dea31012005-04-17 16:05:31 -05002919 /* Rsp ring <ringno> error: IOCB */
2920 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002921 "0336 Rsp Ring %d error: IOCB Data: "
James Smart92d7f7b2007-06-17 19:56:38 -05002922 "x%x x%x x%x x%x x%x x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04002923 pring->ringno,
James Smart92d7f7b2007-06-17 19:56:38 -05002924 irsp->un.ulpWord[0],
2925 irsp->un.ulpWord[1],
2926 irsp->un.ulpWord[2],
2927 irsp->un.ulpWord[3],
2928 irsp->un.ulpWord[4],
2929 irsp->un.ulpWord[5],
James Smartd7c255b2008-08-24 21:50:00 -04002930 *(uint32_t *)&irsp->un1,
2931 *((uint32_t *)&irsp->un1 + 1));
dea31012005-04-17 16:05:31 -05002932 }
2933
2934 switch (type) {
2935 case LPFC_ABORT_IOCB:
2936 case LPFC_SOL_IOCB:
2937 /*
2938 * Idle exchange closed via ABTS from port. No iocb
2939 * resources need to be recovered.
2940 */
2941 if (unlikely(irsp->ulpCommand == CMD_XRI_ABORTED_CX)) {
James Smartdca94792006-08-01 07:34:08 -04002942 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002943 "0333 IOCB cmd 0x%x"
James Smartdca94792006-08-01 07:34:08 -04002944 " processed. Skipping"
James Smart92d7f7b2007-06-17 19:56:38 -05002945 " completion\n",
James Smartdca94792006-08-01 07:34:08 -04002946 irsp->ulpCommand);
dea31012005-04-17 16:05:31 -05002947 break;
2948 }
2949
James Bottomley604a3e32005-10-29 10:28:33 -05002950 cmdiocbq = lpfc_sli_iocbq_lookup(phba, pring,
2951 &rspiocbq);
James Smart0f65ff62010-02-26 14:14:23 -05002952 if (unlikely(!cmdiocbq))
2953 break;
2954 if (cmdiocbq->iocb_flag & LPFC_DRIVER_ABORTED)
2955 cmdiocbq->iocb_flag &= ~LPFC_DRIVER_ABORTED;
2956 if (cmdiocbq->iocb_cmpl) {
2957 spin_unlock_irqrestore(&phba->hbalock, iflag);
2958 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq,
2959 &rspiocbq);
2960 spin_lock_irqsave(&phba->hbalock, iflag);
2961 }
dea31012005-04-17 16:05:31 -05002962 break;
James Smarta4bc3372006-12-02 13:34:16 -05002963 case LPFC_UNSOL_IOCB:
James Smart2e0fef82007-06-17 19:56:36 -05002964 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smarta4bc3372006-12-02 13:34:16 -05002965 lpfc_sli_process_unsol_iocb(phba, pring, &rspiocbq);
James Smart2e0fef82007-06-17 19:56:36 -05002966 spin_lock_irqsave(&phba->hbalock, iflag);
James Smarta4bc3372006-12-02 13:34:16 -05002967 break;
dea31012005-04-17 16:05:31 -05002968 default:
2969 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
2970 char adaptermsg[LPFC_MAX_ADPTMSG];
2971 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
2972 memcpy(&adaptermsg[0], (uint8_t *) irsp,
2973 MAX_MSG_DATA);
Joe Perches898eb712007-10-18 03:06:30 -07002974 dev_warn(&((phba->pcidev)->dev),
2975 "lpfc%d: %s\n",
dea31012005-04-17 16:05:31 -05002976 phba->brd_no, adaptermsg);
2977 } else {
2978 /* Unknown IOCB command */
2979 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002980 "0334 Unknown IOCB command "
James Smart92d7f7b2007-06-17 19:56:38 -05002981 "Data: x%x, x%x x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04002982 type, irsp->ulpCommand,
James Smart92d7f7b2007-06-17 19:56:38 -05002983 irsp->ulpStatus,
2984 irsp->ulpIoTag,
2985 irsp->ulpContext);
dea31012005-04-17 16:05:31 -05002986 }
2987 break;
2988 }
2989
2990 /*
2991 * The response IOCB has been processed. Update the ring
2992 * pointer in SLIM. If the port response put pointer has not
2993 * been updated, sync the pgp->rspPutInx and fetch the new port
2994 * response put pointer.
2995 */
James Smarted957682007-06-17 19:56:37 -05002996 writel(pring->rspidx, &phba->host_gp[pring->ringno].rspGetInx);
dea31012005-04-17 16:05:31 -05002997
2998 if (pring->rspidx == portRspPut)
2999 portRspPut = le32_to_cpu(pgp->rspPutInx);
3000 }
3001
3002 if ((rsp_cmpl > 0) && (mask & HA_R0RE_REQ)) {
3003 pring->stats.iocb_rsp_full++;
3004 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
3005 writel(status, phba->CAregaddr);
3006 readl(phba->CAregaddr);
3007 }
3008 if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
3009 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
3010 pring->stats.iocb_cmd_empty++;
3011
3012 /* Force update of the local copy of cmdGetInx */
3013 pring->local_getidx = le32_to_cpu(pgp->cmdGetInx);
3014 lpfc_sli_resume_iocb(phba, pring);
3015
3016 if ((pring->lpfc_sli_cmd_available))
3017 (pring->lpfc_sli_cmd_available) (phba, pring);
3018
3019 }
3020
James Smart45ed1192009-10-02 15:17:02 -04003021 phba->fcp_ring_in_use = 0;
James Smart2e0fef82007-06-17 19:56:36 -05003022 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003023 return rc;
3024}
3025
James Smarte59058c2008-08-24 21:49:00 -04003026/**
James Smart3772a992009-05-22 14:50:54 -04003027 * lpfc_sli_sp_handle_rspiocb - Handle slow-path response iocb
3028 * @phba: Pointer to HBA context object.
3029 * @pring: Pointer to driver SLI ring object.
3030 * @rspiocbp: Pointer to driver response IOCB object.
3031 *
3032 * This function is called from the worker thread when there is a slow-path
3033 * response IOCB to process. This function chains all the response iocbs until
3034 * seeing the iocb with the LE bit set. The function will call
3035 * lpfc_sli_process_sol_iocb function if the response iocb indicates a
3036 * completion of a command iocb. The function will call the
3037 * lpfc_sli_process_unsol_iocb function if this is an unsolicited iocb.
3038 * The function frees the resources or calls the completion handler if this
3039 * iocb is an abort completion. The function returns NULL when the response
3040 * iocb has the LE bit set and all the chained iocbs are processed, otherwise
3041 * this function shall chain the iocb on to the iocb_continueq and return the
3042 * response iocb passed in.
3043 **/
3044static struct lpfc_iocbq *
3045lpfc_sli_sp_handle_rspiocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
3046 struct lpfc_iocbq *rspiocbp)
3047{
3048 struct lpfc_iocbq *saveq;
3049 struct lpfc_iocbq *cmdiocbp;
3050 struct lpfc_iocbq *next_iocb;
3051 IOCB_t *irsp = NULL;
3052 uint32_t free_saveq;
3053 uint8_t iocb_cmd_type;
3054 lpfc_iocb_type type;
3055 unsigned long iflag;
3056 int rc;
3057
3058 spin_lock_irqsave(&phba->hbalock, iflag);
3059 /* First add the response iocb to the countinueq list */
3060 list_add_tail(&rspiocbp->list, &(pring->iocb_continueq));
3061 pring->iocb_continueq_cnt++;
3062
Justin P. Mattock70f23fd2011-05-10 10:16:21 +02003063 /* Now, determine whether the list is completed for processing */
James Smart3772a992009-05-22 14:50:54 -04003064 irsp = &rspiocbp->iocb;
3065 if (irsp->ulpLe) {
3066 /*
3067 * By default, the driver expects to free all resources
3068 * associated with this iocb completion.
3069 */
3070 free_saveq = 1;
3071 saveq = list_get_first(&pring->iocb_continueq,
3072 struct lpfc_iocbq, list);
3073 irsp = &(saveq->iocb);
3074 list_del_init(&pring->iocb_continueq);
3075 pring->iocb_continueq_cnt = 0;
3076
3077 pring->stats.iocb_rsp++;
3078
3079 /*
3080 * If resource errors reported from HBA, reduce
3081 * queuedepths of the SCSI device.
3082 */
3083 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
3084 (irsp->un.ulpWord[4] == IOERR_NO_RESOURCES)) {
3085 spin_unlock_irqrestore(&phba->hbalock, iflag);
3086 phba->lpfc_rampdown_queue_depth(phba);
3087 spin_lock_irqsave(&phba->hbalock, iflag);
3088 }
3089
3090 if (irsp->ulpStatus) {
3091 /* Rsp ring <ringno> error: IOCB */
3092 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
3093 "0328 Rsp Ring %d error: "
3094 "IOCB Data: "
3095 "x%x x%x x%x x%x "
3096 "x%x x%x x%x x%x "
3097 "x%x x%x x%x x%x "
3098 "x%x x%x x%x x%x\n",
3099 pring->ringno,
3100 irsp->un.ulpWord[0],
3101 irsp->un.ulpWord[1],
3102 irsp->un.ulpWord[2],
3103 irsp->un.ulpWord[3],
3104 irsp->un.ulpWord[4],
3105 irsp->un.ulpWord[5],
3106 *(((uint32_t *) irsp) + 6),
3107 *(((uint32_t *) irsp) + 7),
3108 *(((uint32_t *) irsp) + 8),
3109 *(((uint32_t *) irsp) + 9),
3110 *(((uint32_t *) irsp) + 10),
3111 *(((uint32_t *) irsp) + 11),
3112 *(((uint32_t *) irsp) + 12),
3113 *(((uint32_t *) irsp) + 13),
3114 *(((uint32_t *) irsp) + 14),
3115 *(((uint32_t *) irsp) + 15));
3116 }
3117
3118 /*
3119 * Fetch the IOCB command type and call the correct completion
3120 * routine. Solicited and Unsolicited IOCBs on the ELS ring
3121 * get freed back to the lpfc_iocb_list by the discovery
3122 * kernel thread.
3123 */
3124 iocb_cmd_type = irsp->ulpCommand & CMD_IOCB_MASK;
3125 type = lpfc_sli_iocb_cmd_type(iocb_cmd_type);
3126 switch (type) {
3127 case LPFC_SOL_IOCB:
3128 spin_unlock_irqrestore(&phba->hbalock, iflag);
3129 rc = lpfc_sli_process_sol_iocb(phba, pring, saveq);
3130 spin_lock_irqsave(&phba->hbalock, iflag);
3131 break;
3132
3133 case LPFC_UNSOL_IOCB:
3134 spin_unlock_irqrestore(&phba->hbalock, iflag);
3135 rc = lpfc_sli_process_unsol_iocb(phba, pring, saveq);
3136 spin_lock_irqsave(&phba->hbalock, iflag);
3137 if (!rc)
3138 free_saveq = 0;
3139 break;
3140
3141 case LPFC_ABORT_IOCB:
3142 cmdiocbp = NULL;
3143 if (irsp->ulpCommand != CMD_XRI_ABORTED_CX)
3144 cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring,
3145 saveq);
3146 if (cmdiocbp) {
3147 /* Call the specified completion routine */
3148 if (cmdiocbp->iocb_cmpl) {
3149 spin_unlock_irqrestore(&phba->hbalock,
3150 iflag);
3151 (cmdiocbp->iocb_cmpl)(phba, cmdiocbp,
3152 saveq);
3153 spin_lock_irqsave(&phba->hbalock,
3154 iflag);
3155 } else
3156 __lpfc_sli_release_iocbq(phba,
3157 cmdiocbp);
3158 }
3159 break;
3160
3161 case LPFC_UNKNOWN_IOCB:
3162 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
3163 char adaptermsg[LPFC_MAX_ADPTMSG];
3164 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
3165 memcpy(&adaptermsg[0], (uint8_t *)irsp,
3166 MAX_MSG_DATA);
3167 dev_warn(&((phba->pcidev)->dev),
3168 "lpfc%d: %s\n",
3169 phba->brd_no, adaptermsg);
3170 } else {
3171 /* Unknown IOCB command */
3172 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3173 "0335 Unknown IOCB "
3174 "command Data: x%x "
3175 "x%x x%x x%x\n",
3176 irsp->ulpCommand,
3177 irsp->ulpStatus,
3178 irsp->ulpIoTag,
3179 irsp->ulpContext);
3180 }
3181 break;
3182 }
3183
3184 if (free_saveq) {
3185 list_for_each_entry_safe(rspiocbp, next_iocb,
3186 &saveq->list, list) {
3187 list_del(&rspiocbp->list);
3188 __lpfc_sli_release_iocbq(phba, rspiocbp);
3189 }
3190 __lpfc_sli_release_iocbq(phba, saveq);
3191 }
3192 rspiocbp = NULL;
3193 }
3194 spin_unlock_irqrestore(&phba->hbalock, iflag);
3195 return rspiocbp;
3196}
3197
3198/**
3199 * lpfc_sli_handle_slow_ring_event - Wrapper func for handling slow-path iocbs
James Smarte59058c2008-08-24 21:49:00 -04003200 * @phba: Pointer to HBA context object.
3201 * @pring: Pointer to driver SLI ring object.
3202 * @mask: Host attention register mask for this ring.
3203 *
James Smart3772a992009-05-22 14:50:54 -04003204 * This routine wraps the actual slow_ring event process routine from the
3205 * API jump table function pointer from the lpfc_hba struct.
James Smarte59058c2008-08-24 21:49:00 -04003206 **/
James Smart3772a992009-05-22 14:50:54 -04003207void
James Smart2e0fef82007-06-17 19:56:36 -05003208lpfc_sli_handle_slow_ring_event(struct lpfc_hba *phba,
3209 struct lpfc_sli_ring *pring, uint32_t mask)
dea31012005-04-17 16:05:31 -05003210{
James Smart3772a992009-05-22 14:50:54 -04003211 phba->lpfc_sli_handle_slow_ring_event(phba, pring, mask);
3212}
3213
3214/**
3215 * lpfc_sli_handle_slow_ring_event_s3 - Handle SLI3 ring event for non-FCP rings
3216 * @phba: Pointer to HBA context object.
3217 * @pring: Pointer to driver SLI ring object.
3218 * @mask: Host attention register mask for this ring.
3219 *
3220 * This function is called from the worker thread when there is a ring event
3221 * for non-fcp rings. The caller does not hold any lock. The function will
3222 * remove each response iocb in the response ring and calls the handle
3223 * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
3224 **/
3225static void
3226lpfc_sli_handle_slow_ring_event_s3(struct lpfc_hba *phba,
3227 struct lpfc_sli_ring *pring, uint32_t mask)
3228{
James Smart34b02dc2008-08-24 21:49:55 -04003229 struct lpfc_pgp *pgp;
dea31012005-04-17 16:05:31 -05003230 IOCB_t *entry;
3231 IOCB_t *irsp = NULL;
3232 struct lpfc_iocbq *rspiocbp = NULL;
dea31012005-04-17 16:05:31 -05003233 uint32_t portRspPut, portRspMax;
dea31012005-04-17 16:05:31 -05003234 unsigned long iflag;
James Smart3772a992009-05-22 14:50:54 -04003235 uint32_t status;
dea31012005-04-17 16:05:31 -05003236
James Smart34b02dc2008-08-24 21:49:55 -04003237 pgp = &phba->port_gp[pring->ringno];
James Smart2e0fef82007-06-17 19:56:36 -05003238 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003239 pring->stats.iocb_event++;
3240
dea31012005-04-17 16:05:31 -05003241 /*
3242 * The next available response entry should never exceed the maximum
3243 * entries. If it does, treat it as an adapter hardware error.
3244 */
3245 portRspMax = pring->numRiocb;
3246 portRspPut = le32_to_cpu(pgp->rspPutInx);
3247 if (portRspPut >= portRspMax) {
3248 /*
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02003249 * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
dea31012005-04-17 16:05:31 -05003250 * rsp ring <portRspMax>
3251 */
James Smarted957682007-06-17 19:56:37 -05003252 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003253 "0303 Ring %d handler: portRspPut %d "
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02003254 "is bigger than rsp ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -04003255 pring->ringno, portRspPut, portRspMax);
dea31012005-04-17 16:05:31 -05003256
James Smart2e0fef82007-06-17 19:56:36 -05003257 phba->link_state = LPFC_HBA_ERROR;
3258 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003259
3260 phba->work_hs = HS_FFER3;
3261 lpfc_handle_eratt(phba);
3262
James Smart3772a992009-05-22 14:50:54 -04003263 return;
dea31012005-04-17 16:05:31 -05003264 }
3265
3266 rmb();
dea31012005-04-17 16:05:31 -05003267 while (pring->rspidx != portRspPut) {
3268 /*
3269 * Build a completion list and call the appropriate handler.
3270 * The process is to get the next available response iocb, get
3271 * a free iocb from the list, copy the response data into the
3272 * free iocb, insert to the continuation list, and update the
3273 * next response index to slim. This process makes response
3274 * iocb's in the ring available to DMA as fast as possible but
3275 * pays a penalty for a copy operation. Since the iocb is
3276 * only 32 bytes, this penalty is considered small relative to
3277 * the PCI reads for register values and a slim write. When
3278 * the ulpLe field is set, the entire Command has been
3279 * received.
3280 */
James Smarted957682007-06-17 19:56:37 -05003281 entry = lpfc_resp_iocb(phba, pring);
3282
James Smart858c9f62007-06-17 19:56:39 -05003283 phba->last_completion_time = jiffies;
James Smart2e0fef82007-06-17 19:56:36 -05003284 rspiocbp = __lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -05003285 if (rspiocbp == NULL) {
3286 printk(KERN_ERR "%s: out of buffers! Failing "
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07003287 "completion.\n", __func__);
dea31012005-04-17 16:05:31 -05003288 break;
3289 }
3290
James Smarted957682007-06-17 19:56:37 -05003291 lpfc_sli_pcimem_bcopy(entry, &rspiocbp->iocb,
3292 phba->iocb_rsp_size);
dea31012005-04-17 16:05:31 -05003293 irsp = &rspiocbp->iocb;
3294
3295 if (++pring->rspidx >= portRspMax)
3296 pring->rspidx = 0;
3297
James Smarta58cbd52007-08-02 11:09:43 -04003298 if (pring->ringno == LPFC_ELS_RING) {
3299 lpfc_debugfs_slow_ring_trc(phba,
3300 "IOCB rsp ring: wd4:x%08x wd6:x%08x wd7:x%08x",
3301 *(((uint32_t *) irsp) + 4),
3302 *(((uint32_t *) irsp) + 6),
3303 *(((uint32_t *) irsp) + 7));
3304 }
3305
James Smarted957682007-06-17 19:56:37 -05003306 writel(pring->rspidx, &phba->host_gp[pring->ringno].rspGetInx);
dea31012005-04-17 16:05:31 -05003307
James Smart3772a992009-05-22 14:50:54 -04003308 spin_unlock_irqrestore(&phba->hbalock, iflag);
3309 /* Handle the response IOCB */
3310 rspiocbp = lpfc_sli_sp_handle_rspiocb(phba, pring, rspiocbp);
3311 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003312
3313 /*
3314 * If the port response put pointer has not been updated, sync
3315 * the pgp->rspPutInx in the MAILBOX_tand fetch the new port
3316 * response put pointer.
3317 */
3318 if (pring->rspidx == portRspPut) {
3319 portRspPut = le32_to_cpu(pgp->rspPutInx);
3320 }
3321 } /* while (pring->rspidx != portRspPut) */
3322
James Smart92d7f7b2007-06-17 19:56:38 -05003323 if ((rspiocbp != NULL) && (mask & HA_R0RE_REQ)) {
dea31012005-04-17 16:05:31 -05003324 /* At least one response entry has been freed */
3325 pring->stats.iocb_rsp_full++;
3326 /* SET RxRE_RSP in Chip Att register */
3327 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
3328 writel(status, phba->CAregaddr);
3329 readl(phba->CAregaddr); /* flush */
3330 }
3331 if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
3332 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
3333 pring->stats.iocb_cmd_empty++;
3334
3335 /* Force update of the local copy of cmdGetInx */
3336 pring->local_getidx = le32_to_cpu(pgp->cmdGetInx);
3337 lpfc_sli_resume_iocb(phba, pring);
3338
3339 if ((pring->lpfc_sli_cmd_available))
3340 (pring->lpfc_sli_cmd_available) (phba, pring);
3341
3342 }
3343
James Smart2e0fef82007-06-17 19:56:36 -05003344 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart3772a992009-05-22 14:50:54 -04003345 return;
dea31012005-04-17 16:05:31 -05003346}
3347
James Smarte59058c2008-08-24 21:49:00 -04003348/**
James Smart4f774512009-05-22 14:52:35 -04003349 * lpfc_sli_handle_slow_ring_event_s4 - Handle SLI4 slow-path els events
3350 * @phba: Pointer to HBA context object.
3351 * @pring: Pointer to driver SLI ring object.
3352 * @mask: Host attention register mask for this ring.
3353 *
3354 * This function is called from the worker thread when there is a pending
3355 * ELS response iocb on the driver internal slow-path response iocb worker
3356 * queue. The caller does not hold any lock. The function will remove each
3357 * response iocb from the response worker queue and calls the handle
3358 * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
3359 **/
3360static void
3361lpfc_sli_handle_slow_ring_event_s4(struct lpfc_hba *phba,
3362 struct lpfc_sli_ring *pring, uint32_t mask)
3363{
3364 struct lpfc_iocbq *irspiocbq;
James Smart4d9ab992009-10-02 15:16:39 -04003365 struct hbq_dmabuf *dmabuf;
3366 struct lpfc_cq_event *cq_event;
James Smart4f774512009-05-22 14:52:35 -04003367 unsigned long iflag;
3368
James Smart45ed1192009-10-02 15:17:02 -04003369 spin_lock_irqsave(&phba->hbalock, iflag);
3370 phba->hba_flag &= ~HBA_SP_QUEUE_EVT;
3371 spin_unlock_irqrestore(&phba->hbalock, iflag);
3372 while (!list_empty(&phba->sli4_hba.sp_queue_event)) {
James Smart4f774512009-05-22 14:52:35 -04003373 /* Get the response iocb from the head of work queue */
3374 spin_lock_irqsave(&phba->hbalock, iflag);
James Smart45ed1192009-10-02 15:17:02 -04003375 list_remove_head(&phba->sli4_hba.sp_queue_event,
James Smart4d9ab992009-10-02 15:16:39 -04003376 cq_event, struct lpfc_cq_event, list);
James Smart4f774512009-05-22 14:52:35 -04003377 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart4d9ab992009-10-02 15:16:39 -04003378
3379 switch (bf_get(lpfc_wcqe_c_code, &cq_event->cqe.wcqe_cmpl)) {
3380 case CQE_CODE_COMPL_WQE:
3381 irspiocbq = container_of(cq_event, struct lpfc_iocbq,
3382 cq_event);
James Smart45ed1192009-10-02 15:17:02 -04003383 /* Translate ELS WCQE to response IOCBQ */
3384 irspiocbq = lpfc_sli4_els_wcqe_to_rspiocbq(phba,
3385 irspiocbq);
3386 if (irspiocbq)
3387 lpfc_sli_sp_handle_rspiocb(phba, pring,
3388 irspiocbq);
James Smart4d9ab992009-10-02 15:16:39 -04003389 break;
3390 case CQE_CODE_RECEIVE:
James Smart7851fe22011-07-22 18:36:52 -04003391 case CQE_CODE_RECEIVE_V1:
James Smart4d9ab992009-10-02 15:16:39 -04003392 dmabuf = container_of(cq_event, struct hbq_dmabuf,
3393 cq_event);
3394 lpfc_sli4_handle_received_buffer(phba, dmabuf);
3395 break;
3396 default:
3397 break;
3398 }
James Smart4f774512009-05-22 14:52:35 -04003399 }
3400}
3401
3402/**
James Smart3621a712009-04-06 18:47:14 -04003403 * lpfc_sli_abort_iocb_ring - Abort all iocbs in the ring
James Smarte59058c2008-08-24 21:49:00 -04003404 * @phba: Pointer to HBA context object.
3405 * @pring: Pointer to driver SLI ring object.
3406 *
3407 * This function aborts all iocbs in the given ring and frees all the iocb
3408 * objects in txq. This function issues an abort iocb for all the iocb commands
3409 * in txcmplq. The iocbs in the txcmplq is not guaranteed to complete before
3410 * the return of this function. The caller is not required to hold any locks.
3411 **/
James Smart2e0fef82007-06-17 19:56:36 -05003412void
dea31012005-04-17 16:05:31 -05003413lpfc_sli_abort_iocb_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
3414{
James Smart2534ba72007-04-25 09:52:20 -04003415 LIST_HEAD(completions);
dea31012005-04-17 16:05:31 -05003416 struct lpfc_iocbq *iocb, *next_iocb;
dea31012005-04-17 16:05:31 -05003417
James Smart92d7f7b2007-06-17 19:56:38 -05003418 if (pring->ringno == LPFC_ELS_RING) {
3419 lpfc_fabric_abort_hba(phba);
3420 }
3421
dea31012005-04-17 16:05:31 -05003422 /* Error everything on txq and txcmplq
3423 * First do the txq.
3424 */
James Smart2e0fef82007-06-17 19:56:36 -05003425 spin_lock_irq(&phba->hbalock);
James Smart2534ba72007-04-25 09:52:20 -04003426 list_splice_init(&pring->txq, &completions);
dea31012005-04-17 16:05:31 -05003427 pring->txq_cnt = 0;
dea31012005-04-17 16:05:31 -05003428
3429 /* Next issue ABTS for everything on the txcmplq */
James Smart2534ba72007-04-25 09:52:20 -04003430 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
3431 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
3432
James Smart2e0fef82007-06-17 19:56:36 -05003433 spin_unlock_irq(&phba->hbalock);
James Smart2534ba72007-04-25 09:52:20 -04003434
James Smarta257bf92009-04-06 18:48:10 -04003435 /* Cancel all the IOCBs from the completions list */
3436 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
3437 IOERR_SLI_ABORTED);
dea31012005-04-17 16:05:31 -05003438}
3439
James Smarte59058c2008-08-24 21:49:00 -04003440/**
James Smart3621a712009-04-06 18:47:14 -04003441 * lpfc_sli_flush_fcp_rings - flush all iocbs in the fcp ring
James Smarta8e497d2008-08-24 21:50:11 -04003442 * @phba: Pointer to HBA context object.
3443 *
3444 * This function flushes all iocbs in the fcp ring and frees all the iocb
3445 * objects in txq and txcmplq. This function will not issue abort iocbs
3446 * for all the iocb commands in txcmplq, they will just be returned with
3447 * IOERR_SLI_DOWN. This function is invoked with EEH when device's PCI
3448 * slot has been permanently disabled.
3449 **/
3450void
3451lpfc_sli_flush_fcp_rings(struct lpfc_hba *phba)
3452{
3453 LIST_HEAD(txq);
3454 LIST_HEAD(txcmplq);
James Smarta8e497d2008-08-24 21:50:11 -04003455 struct lpfc_sli *psli = &phba->sli;
3456 struct lpfc_sli_ring *pring;
3457
3458 /* Currently, only one fcp ring */
3459 pring = &psli->ring[psli->fcp_ring];
3460
3461 spin_lock_irq(&phba->hbalock);
3462 /* Retrieve everything on txq */
3463 list_splice_init(&pring->txq, &txq);
3464 pring->txq_cnt = 0;
3465
3466 /* Retrieve everything on the txcmplq */
3467 list_splice_init(&pring->txcmplq, &txcmplq);
3468 pring->txcmplq_cnt = 0;
3469 spin_unlock_irq(&phba->hbalock);
3470
3471 /* Flush the txq */
James Smarta257bf92009-04-06 18:48:10 -04003472 lpfc_sli_cancel_iocbs(phba, &txq, IOSTAT_LOCAL_REJECT,
3473 IOERR_SLI_DOWN);
James Smarta8e497d2008-08-24 21:50:11 -04003474
3475 /* Flush the txcmpq */
James Smarta257bf92009-04-06 18:48:10 -04003476 lpfc_sli_cancel_iocbs(phba, &txcmplq, IOSTAT_LOCAL_REJECT,
3477 IOERR_SLI_DOWN);
James Smarta8e497d2008-08-24 21:50:11 -04003478}
3479
3480/**
James Smart3772a992009-05-22 14:50:54 -04003481 * lpfc_sli_brdready_s3 - Check for sli3 host ready status
James Smarte59058c2008-08-24 21:49:00 -04003482 * @phba: Pointer to HBA context object.
3483 * @mask: Bit mask to be checked.
3484 *
3485 * This function reads the host status register and compares
3486 * with the provided bit mask to check if HBA completed
3487 * the restart. This function will wait in a loop for the
3488 * HBA to complete restart. If the HBA does not restart within
3489 * 15 iterations, the function will reset the HBA again. The
3490 * function returns 1 when HBA fail to restart otherwise returns
3491 * zero.
3492 **/
James Smart3772a992009-05-22 14:50:54 -04003493static int
3494lpfc_sli_brdready_s3(struct lpfc_hba *phba, uint32_t mask)
dea31012005-04-17 16:05:31 -05003495{
Jamie Wellnitz41415862006-02-28 19:25:27 -05003496 uint32_t status;
3497 int i = 0;
3498 int retval = 0;
dea31012005-04-17 16:05:31 -05003499
Jamie Wellnitz41415862006-02-28 19:25:27 -05003500 /* Read the HBA Host Status Register */
James Smart9940b972011-03-11 16:06:12 -05003501 if (lpfc_readl(phba->HSregaddr, &status))
3502 return 1;
dea31012005-04-17 16:05:31 -05003503
Jamie Wellnitz41415862006-02-28 19:25:27 -05003504 /*
3505 * Check status register every 100ms for 5 retries, then every
3506 * 500ms for 5, then every 2.5 sec for 5, then reset board and
3507 * every 2.5 sec for 4.
3508 * Break our of the loop if errors occurred during init.
3509 */
3510 while (((status & mask) != mask) &&
3511 !(status & HS_FFERM) &&
3512 i++ < 20) {
dea31012005-04-17 16:05:31 -05003513
Jamie Wellnitz41415862006-02-28 19:25:27 -05003514 if (i <= 5)
3515 msleep(10);
3516 else if (i <= 10)
3517 msleep(500);
3518 else
3519 msleep(2500);
dea31012005-04-17 16:05:31 -05003520
Jamie Wellnitz41415862006-02-28 19:25:27 -05003521 if (i == 15) {
James Smart2e0fef82007-06-17 19:56:36 -05003522 /* Do post */
James Smart92d7f7b2007-06-17 19:56:38 -05003523 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003524 lpfc_sli_brdrestart(phba);
3525 }
3526 /* Read the HBA Host Status Register */
James Smart9940b972011-03-11 16:06:12 -05003527 if (lpfc_readl(phba->HSregaddr, &status)) {
3528 retval = 1;
3529 break;
3530 }
dea31012005-04-17 16:05:31 -05003531 }
dea31012005-04-17 16:05:31 -05003532
Jamie Wellnitz41415862006-02-28 19:25:27 -05003533 /* Check to see if any errors occurred during init */
3534 if ((status & HS_FFERM) || (i >= 20)) {
James Smarte40a02c2010-02-26 14:13:54 -05003535 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3536 "2751 Adapter failed to restart, "
3537 "status reg x%x, FW Data: A8 x%x AC x%x\n",
3538 status,
3539 readl(phba->MBslimaddr + 0xa8),
3540 readl(phba->MBslimaddr + 0xac));
James Smart2e0fef82007-06-17 19:56:36 -05003541 phba->link_state = LPFC_HBA_ERROR;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003542 retval = 1;
3543 }
dea31012005-04-17 16:05:31 -05003544
Jamie Wellnitz41415862006-02-28 19:25:27 -05003545 return retval;
dea31012005-04-17 16:05:31 -05003546}
3547
James Smartda0436e2009-05-22 14:51:39 -04003548/**
3549 * lpfc_sli_brdready_s4 - Check for sli4 host ready status
3550 * @phba: Pointer to HBA context object.
3551 * @mask: Bit mask to be checked.
3552 *
3553 * This function checks the host status register to check if HBA is
3554 * ready. This function will wait in a loop for the HBA to be ready
3555 * If the HBA is not ready , the function will will reset the HBA PCI
3556 * function again. The function returns 1 when HBA fail to be ready
3557 * otherwise returns zero.
3558 **/
3559static int
3560lpfc_sli_brdready_s4(struct lpfc_hba *phba, uint32_t mask)
3561{
3562 uint32_t status;
3563 int retval = 0;
3564
3565 /* Read the HBA Host Status Register */
3566 status = lpfc_sli4_post_status_check(phba);
3567
3568 if (status) {
3569 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
3570 lpfc_sli_brdrestart(phba);
3571 status = lpfc_sli4_post_status_check(phba);
3572 }
3573
3574 /* Check to see if any errors occurred during init */
3575 if (status) {
3576 phba->link_state = LPFC_HBA_ERROR;
3577 retval = 1;
3578 } else
3579 phba->sli4_hba.intr_enable = 0;
3580
3581 return retval;
3582}
3583
3584/**
3585 * lpfc_sli_brdready - Wrapper func for checking the hba readyness
3586 * @phba: Pointer to HBA context object.
3587 * @mask: Bit mask to be checked.
3588 *
3589 * This routine wraps the actual SLI3 or SLI4 hba readyness check routine
3590 * from the API jump table function pointer from the lpfc_hba struct.
3591 **/
3592int
3593lpfc_sli_brdready(struct lpfc_hba *phba, uint32_t mask)
3594{
3595 return phba->lpfc_sli_brdready(phba, mask);
3596}
3597
James Smart92908312006-03-07 15:04:13 -05003598#define BARRIER_TEST_PATTERN (0xdeadbeef)
3599
James Smarte59058c2008-08-24 21:49:00 -04003600/**
James Smart3621a712009-04-06 18:47:14 -04003601 * lpfc_reset_barrier - Make HBA ready for HBA reset
James Smarte59058c2008-08-24 21:49:00 -04003602 * @phba: Pointer to HBA context object.
3603 *
James Smart1b511972011-12-13 13:23:09 -05003604 * This function is called before resetting an HBA. This function is called
3605 * with hbalock held and requests HBA to quiesce DMAs before a reset.
James Smarte59058c2008-08-24 21:49:00 -04003606 **/
James Smart2e0fef82007-06-17 19:56:36 -05003607void lpfc_reset_barrier(struct lpfc_hba *phba)
James Smart92908312006-03-07 15:04:13 -05003608{
James Smart65a29c12006-07-06 15:50:50 -04003609 uint32_t __iomem *resp_buf;
3610 uint32_t __iomem *mbox_buf;
James Smart92908312006-03-07 15:04:13 -05003611 volatile uint32_t mbox;
James Smart9940b972011-03-11 16:06:12 -05003612 uint32_t hc_copy, ha_copy, resp_data;
James Smart92908312006-03-07 15:04:13 -05003613 int i;
3614 uint8_t hdrtype;
3615
3616 pci_read_config_byte(phba->pcidev, PCI_HEADER_TYPE, &hdrtype);
3617 if (hdrtype != 0x80 ||
3618 (FC_JEDEC_ID(phba->vpd.rev.biuRev) != HELIOS_JEDEC_ID &&
3619 FC_JEDEC_ID(phba->vpd.rev.biuRev) != THOR_JEDEC_ID))
3620 return;
3621
3622 /*
3623 * Tell the other part of the chip to suspend temporarily all
3624 * its DMA activity.
3625 */
James Smart65a29c12006-07-06 15:50:50 -04003626 resp_buf = phba->MBslimaddr;
James Smart92908312006-03-07 15:04:13 -05003627
3628 /* Disable the error attention */
James Smart9940b972011-03-11 16:06:12 -05003629 if (lpfc_readl(phba->HCregaddr, &hc_copy))
3630 return;
James Smart92908312006-03-07 15:04:13 -05003631 writel((hc_copy & ~HC_ERINT_ENA), phba->HCregaddr);
3632 readl(phba->HCregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -05003633 phba->link_flag |= LS_IGNORE_ERATT;
James Smart92908312006-03-07 15:04:13 -05003634
James Smart9940b972011-03-11 16:06:12 -05003635 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3636 return;
3637 if (ha_copy & HA_ERATT) {
James Smart92908312006-03-07 15:04:13 -05003638 /* Clear Chip error bit */
3639 writel(HA_ERATT, phba->HAregaddr);
James Smart2e0fef82007-06-17 19:56:36 -05003640 phba->pport->stopped = 1;
James Smart92908312006-03-07 15:04:13 -05003641 }
3642
3643 mbox = 0;
3644 ((MAILBOX_t *)&mbox)->mbxCommand = MBX_KILL_BOARD;
3645 ((MAILBOX_t *)&mbox)->mbxOwner = OWN_CHIP;
3646
3647 writel(BARRIER_TEST_PATTERN, (resp_buf + 1));
James Smart65a29c12006-07-06 15:50:50 -04003648 mbox_buf = phba->MBslimaddr;
James Smart92908312006-03-07 15:04:13 -05003649 writel(mbox, mbox_buf);
3650
James Smart9940b972011-03-11 16:06:12 -05003651 for (i = 0; i < 50; i++) {
3652 if (lpfc_readl((resp_buf + 1), &resp_data))
3653 return;
3654 if (resp_data != ~(BARRIER_TEST_PATTERN))
3655 mdelay(1);
3656 else
3657 break;
3658 }
3659 resp_data = 0;
3660 if (lpfc_readl((resp_buf + 1), &resp_data))
3661 return;
3662 if (resp_data != ~(BARRIER_TEST_PATTERN)) {
James Smartf4b4c682009-05-22 14:53:12 -04003663 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE ||
James Smart2e0fef82007-06-17 19:56:36 -05003664 phba->pport->stopped)
James Smart92908312006-03-07 15:04:13 -05003665 goto restore_hc;
3666 else
3667 goto clear_errat;
3668 }
3669
3670 ((MAILBOX_t *)&mbox)->mbxOwner = OWN_HOST;
James Smart9940b972011-03-11 16:06:12 -05003671 resp_data = 0;
3672 for (i = 0; i < 500; i++) {
3673 if (lpfc_readl(resp_buf, &resp_data))
3674 return;
3675 if (resp_data != mbox)
3676 mdelay(1);
3677 else
3678 break;
3679 }
James Smart92908312006-03-07 15:04:13 -05003680
3681clear_errat:
3682
James Smart9940b972011-03-11 16:06:12 -05003683 while (++i < 500) {
3684 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3685 return;
3686 if (!(ha_copy & HA_ERATT))
3687 mdelay(1);
3688 else
3689 break;
3690 }
James Smart92908312006-03-07 15:04:13 -05003691
3692 if (readl(phba->HAregaddr) & HA_ERATT) {
3693 writel(HA_ERATT, phba->HAregaddr);
James Smart2e0fef82007-06-17 19:56:36 -05003694 phba->pport->stopped = 1;
James Smart92908312006-03-07 15:04:13 -05003695 }
3696
3697restore_hc:
James Smart2e0fef82007-06-17 19:56:36 -05003698 phba->link_flag &= ~LS_IGNORE_ERATT;
James Smart92908312006-03-07 15:04:13 -05003699 writel(hc_copy, phba->HCregaddr);
3700 readl(phba->HCregaddr); /* flush */
3701}
3702
James Smarte59058c2008-08-24 21:49:00 -04003703/**
James Smart3621a712009-04-06 18:47:14 -04003704 * lpfc_sli_brdkill - Issue a kill_board mailbox command
James Smarte59058c2008-08-24 21:49:00 -04003705 * @phba: Pointer to HBA context object.
3706 *
3707 * This function issues a kill_board mailbox command and waits for
3708 * the error attention interrupt. This function is called for stopping
3709 * the firmware processing. The caller is not required to hold any
3710 * locks. This function calls lpfc_hba_down_post function to free
3711 * any pending commands after the kill. The function will return 1 when it
3712 * fails to kill the board else will return 0.
3713 **/
Jamie Wellnitz41415862006-02-28 19:25:27 -05003714int
James Smart2e0fef82007-06-17 19:56:36 -05003715lpfc_sli_brdkill(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05003716{
Jamie Wellnitz41415862006-02-28 19:25:27 -05003717 struct lpfc_sli *psli;
3718 LPFC_MBOXQ_t *pmb;
3719 uint32_t status;
3720 uint32_t ha_copy;
3721 int retval;
3722 int i = 0;
3723
3724 psli = &phba->sli;
3725
3726 /* Kill HBA */
James Smarted957682007-06-17 19:56:37 -05003727 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003728 "0329 Kill HBA Data: x%x x%x\n",
3729 phba->pport->port_state, psli->sli_flag);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003730
James Smart98c9ea52007-10-27 13:37:33 -04003731 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3732 if (!pmb)
Jamie Wellnitz41415862006-02-28 19:25:27 -05003733 return 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003734
3735 /* Disable the error attention */
James Smart2e0fef82007-06-17 19:56:36 -05003736 spin_lock_irq(&phba->hbalock);
James Smart9940b972011-03-11 16:06:12 -05003737 if (lpfc_readl(phba->HCregaddr, &status)) {
3738 spin_unlock_irq(&phba->hbalock);
3739 mempool_free(pmb, phba->mbox_mem_pool);
3740 return 1;
3741 }
Jamie Wellnitz41415862006-02-28 19:25:27 -05003742 status &= ~HC_ERINT_ENA;
3743 writel(status, phba->HCregaddr);
3744 readl(phba->HCregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -05003745 phba->link_flag |= LS_IGNORE_ERATT;
3746 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003747
3748 lpfc_kill_board(phba, pmb);
3749 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
3750 retval = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
3751
3752 if (retval != MBX_SUCCESS) {
3753 if (retval != MBX_BUSY)
3754 mempool_free(pmb, phba->mbox_mem_pool);
James Smarte40a02c2010-02-26 14:13:54 -05003755 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3756 "2752 KILL_BOARD command failed retval %d\n",
3757 retval);
James Smart2e0fef82007-06-17 19:56:36 -05003758 spin_lock_irq(&phba->hbalock);
3759 phba->link_flag &= ~LS_IGNORE_ERATT;
3760 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003761 return 1;
3762 }
3763
James Smartf4b4c682009-05-22 14:53:12 -04003764 spin_lock_irq(&phba->hbalock);
3765 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
3766 spin_unlock_irq(&phba->hbalock);
James Smart92908312006-03-07 15:04:13 -05003767
Jamie Wellnitz41415862006-02-28 19:25:27 -05003768 mempool_free(pmb, phba->mbox_mem_pool);
3769
3770 /* There is no completion for a KILL_BOARD mbox cmd. Check for an error
3771 * attention every 100ms for 3 seconds. If we don't get ERATT after
3772 * 3 seconds we still set HBA_ERROR state because the status of the
3773 * board is now undefined.
3774 */
James Smart9940b972011-03-11 16:06:12 -05003775 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3776 return 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003777 while ((i++ < 30) && !(ha_copy & HA_ERATT)) {
3778 mdelay(100);
James Smart9940b972011-03-11 16:06:12 -05003779 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3780 return 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003781 }
3782
3783 del_timer_sync(&psli->mbox_tmo);
James Smart92908312006-03-07 15:04:13 -05003784 if (ha_copy & HA_ERATT) {
3785 writel(HA_ERATT, phba->HAregaddr);
James Smart2e0fef82007-06-17 19:56:36 -05003786 phba->pport->stopped = 1;
James Smart92908312006-03-07 15:04:13 -05003787 }
James Smart2e0fef82007-06-17 19:56:36 -05003788 spin_lock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003789 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart04c68492009-05-22 14:52:52 -04003790 psli->mbox_active = NULL;
James Smart2e0fef82007-06-17 19:56:36 -05003791 phba->link_flag &= ~LS_IGNORE_ERATT;
3792 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003793
Jamie Wellnitz41415862006-02-28 19:25:27 -05003794 lpfc_hba_down_post(phba);
James Smart2e0fef82007-06-17 19:56:36 -05003795 phba->link_state = LPFC_HBA_ERROR;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003796
James Smart2e0fef82007-06-17 19:56:36 -05003797 return ha_copy & HA_ERATT ? 0 : 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003798}
3799
James Smarte59058c2008-08-24 21:49:00 -04003800/**
James Smart3772a992009-05-22 14:50:54 -04003801 * lpfc_sli_brdreset - Reset a sli-2 or sli-3 HBA
James Smarte59058c2008-08-24 21:49:00 -04003802 * @phba: Pointer to HBA context object.
3803 *
3804 * This function resets the HBA by writing HC_INITFF to the control
3805 * register. After the HBA resets, this function resets all the iocb ring
3806 * indices. This function disables PCI layer parity checking during
3807 * the reset.
3808 * This function returns 0 always.
3809 * The caller is not required to hold any locks.
3810 **/
Jamie Wellnitz41415862006-02-28 19:25:27 -05003811int
James Smart2e0fef82007-06-17 19:56:36 -05003812lpfc_sli_brdreset(struct lpfc_hba *phba)
Jamie Wellnitz41415862006-02-28 19:25:27 -05003813{
3814 struct lpfc_sli *psli;
dea31012005-04-17 16:05:31 -05003815 struct lpfc_sli_ring *pring;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003816 uint16_t cfg_value;
dea31012005-04-17 16:05:31 -05003817 int i;
dea31012005-04-17 16:05:31 -05003818
Jamie Wellnitz41415862006-02-28 19:25:27 -05003819 psli = &phba->sli;
dea31012005-04-17 16:05:31 -05003820
Jamie Wellnitz41415862006-02-28 19:25:27 -05003821 /* Reset HBA */
3822 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003823 "0325 Reset HBA Data: x%x x%x\n",
James Smart2e0fef82007-06-17 19:56:36 -05003824 phba->pport->port_state, psli->sli_flag);
dea31012005-04-17 16:05:31 -05003825
3826 /* perform board reset */
3827 phba->fc_eventTag = 0;
James Smart4d9ab992009-10-02 15:16:39 -04003828 phba->link_events = 0;
James Smart2e0fef82007-06-17 19:56:36 -05003829 phba->pport->fc_myDID = 0;
3830 phba->pport->fc_prevDID = 0;
dea31012005-04-17 16:05:31 -05003831
Jamie Wellnitz41415862006-02-28 19:25:27 -05003832 /* Turn off parity checking and serr during the physical reset */
3833 pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
3834 pci_write_config_word(phba->pcidev, PCI_COMMAND,
3835 (cfg_value &
3836 ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
3837
James Smart3772a992009-05-22 14:50:54 -04003838 psli->sli_flag &= ~(LPFC_SLI_ACTIVE | LPFC_PROCESS_LA);
3839
Jamie Wellnitz41415862006-02-28 19:25:27 -05003840 /* Now toggle INITFF bit in the Host Control Register */
3841 writel(HC_INITFF, phba->HCregaddr);
3842 mdelay(1);
3843 readl(phba->HCregaddr); /* flush */
3844 writel(0, phba->HCregaddr);
3845 readl(phba->HCregaddr); /* flush */
3846
3847 /* Restore PCI cmd register */
3848 pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
dea31012005-04-17 16:05:31 -05003849
3850 /* Initialize relevant SLI info */
Jamie Wellnitz41415862006-02-28 19:25:27 -05003851 for (i = 0; i < psli->num_rings; i++) {
3852 pring = &psli->ring[i];
dea31012005-04-17 16:05:31 -05003853 pring->flag = 0;
3854 pring->rspidx = 0;
3855 pring->next_cmdidx = 0;
3856 pring->local_getidx = 0;
3857 pring->cmdidx = 0;
3858 pring->missbufcnt = 0;
3859 }
dea31012005-04-17 16:05:31 -05003860
James Smart2e0fef82007-06-17 19:56:36 -05003861 phba->link_state = LPFC_WARM_START;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003862 return 0;
3863}
3864
James Smarte59058c2008-08-24 21:49:00 -04003865/**
James Smartda0436e2009-05-22 14:51:39 -04003866 * lpfc_sli4_brdreset - Reset a sli-4 HBA
3867 * @phba: Pointer to HBA context object.
3868 *
3869 * This function resets a SLI4 HBA. This function disables PCI layer parity
3870 * checking during resets the device. The caller is not required to hold
3871 * any locks.
3872 *
3873 * This function returns 0 always.
3874 **/
3875int
3876lpfc_sli4_brdreset(struct lpfc_hba *phba)
3877{
3878 struct lpfc_sli *psli = &phba->sli;
3879 uint16_t cfg_value;
James Smartda0436e2009-05-22 14:51:39 -04003880
3881 /* Reset HBA */
3882 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
3883 "0295 Reset HBA Data: x%x x%x\n",
3884 phba->pport->port_state, psli->sli_flag);
3885
3886 /* perform board reset */
3887 phba->fc_eventTag = 0;
James Smart4d9ab992009-10-02 15:16:39 -04003888 phba->link_events = 0;
James Smartda0436e2009-05-22 14:51:39 -04003889 phba->pport->fc_myDID = 0;
3890 phba->pport->fc_prevDID = 0;
3891
James Smartda0436e2009-05-22 14:51:39 -04003892 spin_lock_irq(&phba->hbalock);
3893 psli->sli_flag &= ~(LPFC_PROCESS_LA);
3894 phba->fcf.fcf_flag = 0;
James Smartda0436e2009-05-22 14:51:39 -04003895 spin_unlock_irq(&phba->hbalock);
3896
3897 /* Now physically reset the device */
3898 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3899 "0389 Performing PCI function reset!\n");
James Smartbe858b62010-12-15 17:57:20 -05003900
3901 /* Turn off parity checking and serr during the physical reset */
3902 pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
3903 pci_write_config_word(phba->pcidev, PCI_COMMAND, (cfg_value &
3904 ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
3905
James Smartda0436e2009-05-22 14:51:39 -04003906 /* Perform FCoE PCI function reset */
James Smart2e90f4b2011-12-13 13:22:37 -05003907 lpfc_sli4_queue_destroy(phba);
James Smartda0436e2009-05-22 14:51:39 -04003908 lpfc_pci_function_reset(phba);
3909
James Smartbe858b62010-12-15 17:57:20 -05003910 /* Restore PCI cmd register */
3911 pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
3912
James Smartda0436e2009-05-22 14:51:39 -04003913 return 0;
3914}
3915
3916/**
3917 * lpfc_sli_brdrestart_s3 - Restart a sli-3 hba
James Smarte59058c2008-08-24 21:49:00 -04003918 * @phba: Pointer to HBA context object.
3919 *
3920 * This function is called in the SLI initialization code path to
3921 * restart the HBA. The caller is not required to hold any lock.
3922 * This function writes MBX_RESTART mailbox command to the SLIM and
3923 * resets the HBA. At the end of the function, it calls lpfc_hba_down_post
3924 * function to free any pending commands. The function enables
3925 * POST only during the first initialization. The function returns zero.
3926 * The function does not guarantee completion of MBX_RESTART mailbox
3927 * command before the return of this function.
3928 **/
James Smartda0436e2009-05-22 14:51:39 -04003929static int
3930lpfc_sli_brdrestart_s3(struct lpfc_hba *phba)
Jamie Wellnitz41415862006-02-28 19:25:27 -05003931{
3932 MAILBOX_t *mb;
3933 struct lpfc_sli *psli;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003934 volatile uint32_t word0;
3935 void __iomem *to_slim;
James Smart0d878412009-10-02 15:16:56 -04003936 uint32_t hba_aer_enabled;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003937
James Smart2e0fef82007-06-17 19:56:36 -05003938 spin_lock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003939
James Smart0d878412009-10-02 15:16:56 -04003940 /* Take PCIe device Advanced Error Reporting (AER) state */
3941 hba_aer_enabled = phba->hba_flag & HBA_AER_ENABLED;
3942
Jamie Wellnitz41415862006-02-28 19:25:27 -05003943 psli = &phba->sli;
3944
3945 /* Restart HBA */
3946 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003947 "0337 Restart HBA Data: x%x x%x\n",
James Smart2e0fef82007-06-17 19:56:36 -05003948 phba->pport->port_state, psli->sli_flag);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003949
3950 word0 = 0;
3951 mb = (MAILBOX_t *) &word0;
3952 mb->mbxCommand = MBX_RESTART;
3953 mb->mbxHc = 1;
3954
James Smart92908312006-03-07 15:04:13 -05003955 lpfc_reset_barrier(phba);
3956
Jamie Wellnitz41415862006-02-28 19:25:27 -05003957 to_slim = phba->MBslimaddr;
3958 writel(*(uint32_t *) mb, to_slim);
3959 readl(to_slim); /* flush */
3960
3961 /* Only skip post after fc_ffinit is completed */
James Smarteaf15d52008-12-04 22:39:29 -05003962 if (phba->pport->port_state)
Jamie Wellnitz41415862006-02-28 19:25:27 -05003963 word0 = 1; /* This is really setting up word1 */
James Smarteaf15d52008-12-04 22:39:29 -05003964 else
Jamie Wellnitz41415862006-02-28 19:25:27 -05003965 word0 = 0; /* This is really setting up word1 */
James Smart65a29c12006-07-06 15:50:50 -04003966 to_slim = phba->MBslimaddr + sizeof (uint32_t);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003967 writel(*(uint32_t *) mb, to_slim);
3968 readl(to_slim); /* flush */
3969
3970 lpfc_sli_brdreset(phba);
James Smart2e0fef82007-06-17 19:56:36 -05003971 phba->pport->stopped = 0;
3972 phba->link_state = LPFC_INIT_START;
James Smartda0436e2009-05-22 14:51:39 -04003973 phba->hba_flag = 0;
James Smart2e0fef82007-06-17 19:56:36 -05003974 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003975
James Smart64ba8812006-08-02 15:24:34 -04003976 memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
3977 psli->stats_start = get_seconds();
3978
James Smarteaf15d52008-12-04 22:39:29 -05003979 /* Give the INITFF and Post time to settle. */
3980 mdelay(100);
dea31012005-04-17 16:05:31 -05003981
James Smart0d878412009-10-02 15:16:56 -04003982 /* Reset HBA AER if it was enabled, note hba_flag was reset above */
3983 if (hba_aer_enabled)
3984 pci_disable_pcie_error_reporting(phba->pcidev);
3985
Jamie Wellnitz41415862006-02-28 19:25:27 -05003986 lpfc_hba_down_post(phba);
dea31012005-04-17 16:05:31 -05003987
3988 return 0;
3989}
3990
James Smarte59058c2008-08-24 21:49:00 -04003991/**
James Smartda0436e2009-05-22 14:51:39 -04003992 * lpfc_sli_brdrestart_s4 - Restart the sli-4 hba
3993 * @phba: Pointer to HBA context object.
3994 *
3995 * This function is called in the SLI initialization code path to restart
3996 * a SLI4 HBA. The caller is not required to hold any lock.
3997 * At the end of the function, it calls lpfc_hba_down_post function to
3998 * free any pending commands.
3999 **/
4000static int
4001lpfc_sli_brdrestart_s4(struct lpfc_hba *phba)
4002{
4003 struct lpfc_sli *psli = &phba->sli;
James Smart75baf692010-06-08 18:31:21 -04004004 uint32_t hba_aer_enabled;
James Smartda0436e2009-05-22 14:51:39 -04004005
4006 /* Restart HBA */
4007 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4008 "0296 Restart HBA Data: x%x x%x\n",
4009 phba->pport->port_state, psli->sli_flag);
4010
James Smart75baf692010-06-08 18:31:21 -04004011 /* Take PCIe device Advanced Error Reporting (AER) state */
4012 hba_aer_enabled = phba->hba_flag & HBA_AER_ENABLED;
4013
James Smartda0436e2009-05-22 14:51:39 -04004014 lpfc_sli4_brdreset(phba);
4015
4016 spin_lock_irq(&phba->hbalock);
4017 phba->pport->stopped = 0;
4018 phba->link_state = LPFC_INIT_START;
4019 phba->hba_flag = 0;
4020 spin_unlock_irq(&phba->hbalock);
4021
4022 memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
4023 psli->stats_start = get_seconds();
4024
James Smart75baf692010-06-08 18:31:21 -04004025 /* Reset HBA AER if it was enabled, note hba_flag was reset above */
4026 if (hba_aer_enabled)
4027 pci_disable_pcie_error_reporting(phba->pcidev);
4028
James Smartda0436e2009-05-22 14:51:39 -04004029 lpfc_hba_down_post(phba);
4030
4031 return 0;
4032}
4033
4034/**
4035 * lpfc_sli_brdrestart - Wrapper func for restarting hba
4036 * @phba: Pointer to HBA context object.
4037 *
4038 * This routine wraps the actual SLI3 or SLI4 hba restart routine from the
4039 * API jump table function pointer from the lpfc_hba struct.
4040**/
4041int
4042lpfc_sli_brdrestart(struct lpfc_hba *phba)
4043{
4044 return phba->lpfc_sli_brdrestart(phba);
4045}
4046
4047/**
James Smart3621a712009-04-06 18:47:14 -04004048 * lpfc_sli_chipset_init - Wait for the restart of the HBA after a restart
James Smarte59058c2008-08-24 21:49:00 -04004049 * @phba: Pointer to HBA context object.
4050 *
4051 * This function is called after a HBA restart to wait for successful
4052 * restart of the HBA. Successful restart of the HBA is indicated by
4053 * HS_FFRDY and HS_MBRDY bits. If the HBA fails to restart even after 15
4054 * iteration, the function will restart the HBA again. The function returns
4055 * zero if HBA successfully restarted else returns negative error code.
4056 **/
dea31012005-04-17 16:05:31 -05004057static int
4058lpfc_sli_chipset_init(struct lpfc_hba *phba)
4059{
4060 uint32_t status, i = 0;
4061
4062 /* Read the HBA Host Status Register */
James Smart9940b972011-03-11 16:06:12 -05004063 if (lpfc_readl(phba->HSregaddr, &status))
4064 return -EIO;
dea31012005-04-17 16:05:31 -05004065
4066 /* Check status register to see what current state is */
4067 i = 0;
4068 while ((status & (HS_FFRDY | HS_MBRDY)) != (HS_FFRDY | HS_MBRDY)) {
4069
James Smartdcf2a4e2010-09-29 11:18:53 -04004070 /* Check every 10ms for 10 retries, then every 100ms for 90
4071 * retries, then every 1 sec for 50 retires for a total of
4072 * ~60 seconds before reset the board again and check every
4073 * 1 sec for 50 retries. The up to 60 seconds before the
4074 * board ready is required by the Falcon FIPS zeroization
4075 * complete, and any reset the board in between shall cause
4076 * restart of zeroization, further delay the board ready.
dea31012005-04-17 16:05:31 -05004077 */
James Smartdcf2a4e2010-09-29 11:18:53 -04004078 if (i++ >= 200) {
dea31012005-04-17 16:05:31 -05004079 /* Adapter failed to init, timeout, status reg
4080 <status> */
James Smarted957682007-06-17 19:56:37 -05004081 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004082 "0436 Adapter failed to init, "
James Smart09372822008-01-11 01:52:54 -05004083 "timeout, status reg x%x, "
4084 "FW Data: A8 x%x AC x%x\n", status,
4085 readl(phba->MBslimaddr + 0xa8),
4086 readl(phba->MBslimaddr + 0xac));
James Smart2e0fef82007-06-17 19:56:36 -05004087 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004088 return -ETIMEDOUT;
4089 }
4090
4091 /* Check to see if any errors occurred during init */
4092 if (status & HS_FFERM) {
4093 /* ERROR: During chipset initialization */
4094 /* Adapter failed to init, chipset, status reg
4095 <status> */
James Smarted957682007-06-17 19:56:37 -05004096 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004097 "0437 Adapter failed to init, "
James Smart09372822008-01-11 01:52:54 -05004098 "chipset, status reg x%x, "
4099 "FW Data: A8 x%x AC x%x\n", status,
4100 readl(phba->MBslimaddr + 0xa8),
4101 readl(phba->MBslimaddr + 0xac));
James Smart2e0fef82007-06-17 19:56:36 -05004102 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004103 return -EIO;
4104 }
4105
James Smartdcf2a4e2010-09-29 11:18:53 -04004106 if (i <= 10)
dea31012005-04-17 16:05:31 -05004107 msleep(10);
James Smartdcf2a4e2010-09-29 11:18:53 -04004108 else if (i <= 100)
4109 msleep(100);
4110 else
4111 msleep(1000);
dea31012005-04-17 16:05:31 -05004112
James Smartdcf2a4e2010-09-29 11:18:53 -04004113 if (i == 150) {
4114 /* Do post */
James Smart92d7f7b2007-06-17 19:56:38 -05004115 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004116 lpfc_sli_brdrestart(phba);
dea31012005-04-17 16:05:31 -05004117 }
4118 /* Read the HBA Host Status Register */
James Smart9940b972011-03-11 16:06:12 -05004119 if (lpfc_readl(phba->HSregaddr, &status))
4120 return -EIO;
dea31012005-04-17 16:05:31 -05004121 }
4122
4123 /* Check to see if any errors occurred during init */
4124 if (status & HS_FFERM) {
4125 /* ERROR: During chipset initialization */
4126 /* Adapter failed to init, chipset, status reg <status> */
James Smarted957682007-06-17 19:56:37 -05004127 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004128 "0438 Adapter failed to init, chipset, "
James Smart09372822008-01-11 01:52:54 -05004129 "status reg x%x, "
4130 "FW Data: A8 x%x AC x%x\n", status,
4131 readl(phba->MBslimaddr + 0xa8),
4132 readl(phba->MBslimaddr + 0xac));
James Smart2e0fef82007-06-17 19:56:36 -05004133 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004134 return -EIO;
4135 }
4136
4137 /* Clear all interrupt enable conditions */
4138 writel(0, phba->HCregaddr);
4139 readl(phba->HCregaddr); /* flush */
4140
4141 /* setup host attn register */
4142 writel(0xffffffff, phba->HAregaddr);
4143 readl(phba->HAregaddr); /* flush */
4144 return 0;
4145}
4146
James Smarte59058c2008-08-24 21:49:00 -04004147/**
James Smart3621a712009-04-06 18:47:14 -04004148 * lpfc_sli_hbq_count - Get the number of HBQs to be configured
James Smarte59058c2008-08-24 21:49:00 -04004149 *
4150 * This function calculates and returns the number of HBQs required to be
4151 * configured.
4152 **/
James Smart78b2d852007-08-02 11:10:21 -04004153int
James Smarted957682007-06-17 19:56:37 -05004154lpfc_sli_hbq_count(void)
4155{
James Smart92d7f7b2007-06-17 19:56:38 -05004156 return ARRAY_SIZE(lpfc_hbq_defs);
James Smarted957682007-06-17 19:56:37 -05004157}
4158
James Smarte59058c2008-08-24 21:49:00 -04004159/**
James Smart3621a712009-04-06 18:47:14 -04004160 * lpfc_sli_hbq_entry_count - Calculate total number of hbq entries
James Smarte59058c2008-08-24 21:49:00 -04004161 *
4162 * This function adds the number of hbq entries in every HBQ to get
4163 * the total number of hbq entries required for the HBA and returns
4164 * the total count.
4165 **/
James Smarted957682007-06-17 19:56:37 -05004166static int
4167lpfc_sli_hbq_entry_count(void)
4168{
4169 int hbq_count = lpfc_sli_hbq_count();
4170 int count = 0;
4171 int i;
4172
4173 for (i = 0; i < hbq_count; ++i)
James Smart92d7f7b2007-06-17 19:56:38 -05004174 count += lpfc_hbq_defs[i]->entry_count;
James Smarted957682007-06-17 19:56:37 -05004175 return count;
4176}
4177
James Smarte59058c2008-08-24 21:49:00 -04004178/**
James Smart3621a712009-04-06 18:47:14 -04004179 * lpfc_sli_hbq_size - Calculate memory required for all hbq entries
James Smarte59058c2008-08-24 21:49:00 -04004180 *
4181 * This function calculates amount of memory required for all hbq entries
4182 * to be configured and returns the total memory required.
4183 **/
dea31012005-04-17 16:05:31 -05004184int
James Smarted957682007-06-17 19:56:37 -05004185lpfc_sli_hbq_size(void)
4186{
4187 return lpfc_sli_hbq_entry_count() * sizeof(struct lpfc_hbq_entry);
4188}
4189
James Smarte59058c2008-08-24 21:49:00 -04004190/**
James Smart3621a712009-04-06 18:47:14 -04004191 * lpfc_sli_hbq_setup - configure and initialize HBQs
James Smarte59058c2008-08-24 21:49:00 -04004192 * @phba: Pointer to HBA context object.
4193 *
4194 * This function is called during the SLI initialization to configure
4195 * all the HBQs and post buffers to the HBQ. The caller is not
4196 * required to hold any locks. This function will return zero if successful
4197 * else it will return negative error code.
4198 **/
James Smarted957682007-06-17 19:56:37 -05004199static int
4200lpfc_sli_hbq_setup(struct lpfc_hba *phba)
4201{
4202 int hbq_count = lpfc_sli_hbq_count();
4203 LPFC_MBOXQ_t *pmb;
4204 MAILBOX_t *pmbox;
4205 uint32_t hbqno;
4206 uint32_t hbq_entry_index;
James Smarted957682007-06-17 19:56:37 -05004207
James Smart92d7f7b2007-06-17 19:56:38 -05004208 /* Get a Mailbox buffer to setup mailbox
4209 * commands for HBA initialization
4210 */
James Smarted957682007-06-17 19:56:37 -05004211 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4212
4213 if (!pmb)
4214 return -ENOMEM;
4215
James Smart04c68492009-05-22 14:52:52 -04004216 pmbox = &pmb->u.mb;
James Smarted957682007-06-17 19:56:37 -05004217
4218 /* Initialize the struct lpfc_sli_hbq structure for each hbq */
4219 phba->link_state = LPFC_INIT_MBX_CMDS;
James Smart3163f722008-02-08 18:50:25 -05004220 phba->hbq_in_use = 1;
James Smarted957682007-06-17 19:56:37 -05004221
4222 hbq_entry_index = 0;
4223 for (hbqno = 0; hbqno < hbq_count; ++hbqno) {
4224 phba->hbqs[hbqno].next_hbqPutIdx = 0;
4225 phba->hbqs[hbqno].hbqPutIdx = 0;
4226 phba->hbqs[hbqno].local_hbqGetIdx = 0;
4227 phba->hbqs[hbqno].entry_count =
James Smart92d7f7b2007-06-17 19:56:38 -05004228 lpfc_hbq_defs[hbqno]->entry_count;
James Smart51ef4c22007-08-02 11:10:31 -04004229 lpfc_config_hbq(phba, hbqno, lpfc_hbq_defs[hbqno],
4230 hbq_entry_index, pmb);
James Smarted957682007-06-17 19:56:37 -05004231 hbq_entry_index += phba->hbqs[hbqno].entry_count;
4232
4233 if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
4234 /* Adapter failed to init, mbxCmd <cmd> CFG_RING,
4235 mbxStatus <status>, ring <num> */
4236
4237 lpfc_printf_log(phba, KERN_ERR,
James Smart92d7f7b2007-06-17 19:56:38 -05004238 LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04004239 "1805 Adapter failed to init. "
James Smarted957682007-06-17 19:56:37 -05004240 "Data: x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04004241 pmbox->mbxCommand,
James Smarted957682007-06-17 19:56:37 -05004242 pmbox->mbxStatus, hbqno);
4243
4244 phba->link_state = LPFC_HBA_ERROR;
4245 mempool_free(pmb, phba->mbox_mem_pool);
James Smart6e7288d2010-06-07 15:23:35 -04004246 return -ENXIO;
James Smarted957682007-06-17 19:56:37 -05004247 }
4248 }
4249 phba->hbq_count = hbq_count;
4250
James Smarted957682007-06-17 19:56:37 -05004251 mempool_free(pmb, phba->mbox_mem_pool);
4252
James Smart92d7f7b2007-06-17 19:56:38 -05004253 /* Initially populate or replenish the HBQs */
James Smartd7c255b2008-08-24 21:50:00 -04004254 for (hbqno = 0; hbqno < hbq_count; ++hbqno)
4255 lpfc_sli_hbqbuf_init_hbqs(phba, hbqno);
James Smarted957682007-06-17 19:56:37 -05004256 return 0;
4257}
4258
James Smarte59058c2008-08-24 21:49:00 -04004259/**
James Smart4f774512009-05-22 14:52:35 -04004260 * lpfc_sli4_rb_setup - Initialize and post RBs to HBA
4261 * @phba: Pointer to HBA context object.
4262 *
4263 * This function is called during the SLI initialization to configure
4264 * all the HBQs and post buffers to the HBQ. The caller is not
4265 * required to hold any locks. This function will return zero if successful
4266 * else it will return negative error code.
4267 **/
4268static int
4269lpfc_sli4_rb_setup(struct lpfc_hba *phba)
4270{
4271 phba->hbq_in_use = 1;
4272 phba->hbqs[0].entry_count = lpfc_hbq_defs[0]->entry_count;
4273 phba->hbq_count = 1;
4274 /* Initially populate or replenish the HBQs */
4275 lpfc_sli_hbqbuf_init_hbqs(phba, 0);
4276 return 0;
4277}
4278
4279/**
James Smart3621a712009-04-06 18:47:14 -04004280 * lpfc_sli_config_port - Issue config port mailbox command
James Smarte59058c2008-08-24 21:49:00 -04004281 * @phba: Pointer to HBA context object.
4282 * @sli_mode: sli mode - 2/3
4283 *
4284 * This function is called by the sli intialization code path
4285 * to issue config_port mailbox command. This function restarts the
4286 * HBA firmware and issues a config_port mailbox command to configure
4287 * the SLI interface in the sli mode specified by sli_mode
4288 * variable. The caller is not required to hold any locks.
4289 * The function returns 0 if successful, else returns negative error
4290 * code.
4291 **/
James Smart93996272008-08-24 21:50:30 -04004292int
4293lpfc_sli_config_port(struct lpfc_hba *phba, int sli_mode)
dea31012005-04-17 16:05:31 -05004294{
4295 LPFC_MBOXQ_t *pmb;
4296 uint32_t resetcount = 0, rc = 0, done = 0;
4297
4298 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4299 if (!pmb) {
James Smart2e0fef82007-06-17 19:56:36 -05004300 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004301 return -ENOMEM;
4302 }
4303
James Smarted957682007-06-17 19:56:37 -05004304 phba->sli_rev = sli_mode;
dea31012005-04-17 16:05:31 -05004305 while (resetcount < 2 && !done) {
James Smart2e0fef82007-06-17 19:56:36 -05004306 spin_lock_irq(&phba->hbalock);
James Smart1c067a42006-08-01 07:33:52 -04004307 phba->sli.sli_flag |= LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05004308 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -05004309 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004310 lpfc_sli_brdrestart(phba);
dea31012005-04-17 16:05:31 -05004311 rc = lpfc_sli_chipset_init(phba);
4312 if (rc)
4313 break;
4314
James Smart2e0fef82007-06-17 19:56:36 -05004315 spin_lock_irq(&phba->hbalock);
James Smart1c067a42006-08-01 07:33:52 -04004316 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05004317 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004318 resetcount++;
4319
James Smarted957682007-06-17 19:56:37 -05004320 /* Call pre CONFIG_PORT mailbox command initialization. A
4321 * value of 0 means the call was successful. Any other
4322 * nonzero value is a failure, but if ERESTART is returned,
4323 * the driver may reset the HBA and try again.
4324 */
dea31012005-04-17 16:05:31 -05004325 rc = lpfc_config_port_prep(phba);
4326 if (rc == -ERESTART) {
James Smarted957682007-06-17 19:56:37 -05004327 phba->link_state = LPFC_LINK_UNKNOWN;
dea31012005-04-17 16:05:31 -05004328 continue;
James Smart34b02dc2008-08-24 21:49:55 -04004329 } else if (rc)
dea31012005-04-17 16:05:31 -05004330 break;
James Smart6d368e52011-05-24 11:44:12 -04004331
James Smart2e0fef82007-06-17 19:56:36 -05004332 phba->link_state = LPFC_INIT_MBX_CMDS;
dea31012005-04-17 16:05:31 -05004333 lpfc_config_port(phba, pmb);
4334 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
James Smart34b02dc2008-08-24 21:49:55 -04004335 phba->sli3_options &= ~(LPFC_SLI3_NPIV_ENABLED |
4336 LPFC_SLI3_HBQ_ENABLED |
4337 LPFC_SLI3_CRP_ENABLED |
James Smartbc739052010-08-04 16:11:18 -04004338 LPFC_SLI3_BG_ENABLED |
4339 LPFC_SLI3_DSS_ENABLED);
James Smarted957682007-06-17 19:56:37 -05004340 if (rc != MBX_SUCCESS) {
dea31012005-04-17 16:05:31 -05004341 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004342 "0442 Adapter failed to init, mbxCmd x%x "
James Smart92d7f7b2007-06-17 19:56:38 -05004343 "CONFIG_PORT, mbxStatus x%x Data: x%x\n",
James Smart04c68492009-05-22 14:52:52 -04004344 pmb->u.mb.mbxCommand, pmb->u.mb.mbxStatus, 0);
James Smart2e0fef82007-06-17 19:56:36 -05004345 spin_lock_irq(&phba->hbalock);
James Smart04c68492009-05-22 14:52:52 -04004346 phba->sli.sli_flag &= ~LPFC_SLI_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05004347 spin_unlock_irq(&phba->hbalock);
4348 rc = -ENXIO;
James Smart04c68492009-05-22 14:52:52 -04004349 } else {
4350 /* Allow asynchronous mailbox command to go through */
4351 spin_lock_irq(&phba->hbalock);
4352 phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
4353 spin_unlock_irq(&phba->hbalock);
James Smarted957682007-06-17 19:56:37 -05004354 done = 1;
James Smartcb69f7d2011-12-13 13:21:57 -05004355
4356 if ((pmb->u.mb.un.varCfgPort.casabt == 1) &&
4357 (pmb->u.mb.un.varCfgPort.gasabt == 0))
4358 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
4359 "3110 Port did not grant ASABT\n");
James Smart04c68492009-05-22 14:52:52 -04004360 }
dea31012005-04-17 16:05:31 -05004361 }
James Smarted957682007-06-17 19:56:37 -05004362 if (!done) {
4363 rc = -EINVAL;
4364 goto do_prep_failed;
4365 }
James Smart04c68492009-05-22 14:52:52 -04004366 if (pmb->u.mb.un.varCfgPort.sli_mode == 3) {
4367 if (!pmb->u.mb.un.varCfgPort.cMA) {
James Smart34b02dc2008-08-24 21:49:55 -04004368 rc = -ENXIO;
4369 goto do_prep_failed;
4370 }
James Smart04c68492009-05-22 14:52:52 -04004371 if (phba->max_vpi && pmb->u.mb.un.varCfgPort.gmv) {
James Smart34b02dc2008-08-24 21:49:55 -04004372 phba->sli3_options |= LPFC_SLI3_NPIV_ENABLED;
James Smart04c68492009-05-22 14:52:52 -04004373 phba->max_vpi = pmb->u.mb.un.varCfgPort.max_vpi;
4374 phba->max_vports = (phba->max_vpi > phba->max_vports) ?
4375 phba->max_vpi : phba->max_vports;
4376
James Smart34b02dc2008-08-24 21:49:55 -04004377 } else
4378 phba->max_vpi = 0;
James Smartbc739052010-08-04 16:11:18 -04004379 phba->fips_level = 0;
4380 phba->fips_spec_rev = 0;
4381 if (pmb->u.mb.un.varCfgPort.gdss) {
James Smart04c68492009-05-22 14:52:52 -04004382 phba->sli3_options |= LPFC_SLI3_DSS_ENABLED;
James Smartbc739052010-08-04 16:11:18 -04004383 phba->fips_level = pmb->u.mb.un.varCfgPort.fips_level;
4384 phba->fips_spec_rev = pmb->u.mb.un.varCfgPort.fips_rev;
4385 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4386 "2850 Security Crypto Active. FIPS x%d "
4387 "(Spec Rev: x%d)",
4388 phba->fips_level, phba->fips_spec_rev);
4389 }
4390 if (pmb->u.mb.un.varCfgPort.sec_err) {
4391 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4392 "2856 Config Port Security Crypto "
4393 "Error: x%x ",
4394 pmb->u.mb.un.varCfgPort.sec_err);
4395 }
James Smart04c68492009-05-22 14:52:52 -04004396 if (pmb->u.mb.un.varCfgPort.gerbm)
James Smart34b02dc2008-08-24 21:49:55 -04004397 phba->sli3_options |= LPFC_SLI3_HBQ_ENABLED;
James Smart04c68492009-05-22 14:52:52 -04004398 if (pmb->u.mb.un.varCfgPort.gcrp)
James Smart34b02dc2008-08-24 21:49:55 -04004399 phba->sli3_options |= LPFC_SLI3_CRP_ENABLED;
James Smart6e7288d2010-06-07 15:23:35 -04004400
4401 phba->hbq_get = phba->mbox->us.s3_pgp.hbq_get;
4402 phba->port_gp = phba->mbox->us.s3_pgp.port;
James Smarte2a0a9d2008-12-04 22:40:02 -05004403
4404 if (phba->cfg_enable_bg) {
James Smart04c68492009-05-22 14:52:52 -04004405 if (pmb->u.mb.un.varCfgPort.gbg)
James Smarte2a0a9d2008-12-04 22:40:02 -05004406 phba->sli3_options |= LPFC_SLI3_BG_ENABLED;
4407 else
4408 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4409 "0443 Adapter did not grant "
4410 "BlockGuard\n");
4411 }
James Smart34b02dc2008-08-24 21:49:55 -04004412 } else {
James Smart8f34f4c2008-12-04 22:39:23 -05004413 phba->hbq_get = NULL;
James Smart34b02dc2008-08-24 21:49:55 -04004414 phba->port_gp = phba->mbox->us.s2.port;
James Smartd7c255b2008-08-24 21:50:00 -04004415 phba->max_vpi = 0;
James Smarted957682007-06-17 19:56:37 -05004416 }
James Smart92d7f7b2007-06-17 19:56:38 -05004417do_prep_failed:
James Smarted957682007-06-17 19:56:37 -05004418 mempool_free(pmb, phba->mbox_mem_pool);
4419 return rc;
4420}
4421
James Smarte59058c2008-08-24 21:49:00 -04004422
4423/**
James Smart3621a712009-04-06 18:47:14 -04004424 * lpfc_sli_hba_setup - SLI intialization function
James Smarte59058c2008-08-24 21:49:00 -04004425 * @phba: Pointer to HBA context object.
4426 *
4427 * This function is the main SLI intialization function. This function
4428 * is called by the HBA intialization code, HBA reset code and HBA
4429 * error attention handler code. Caller is not required to hold any
4430 * locks. This function issues config_port mailbox command to configure
4431 * the SLI, setup iocb rings and HBQ rings. In the end the function
4432 * calls the config_port_post function to issue init_link mailbox
4433 * command and to start the discovery. The function will return zero
4434 * if successful, else it will return negative error code.
4435 **/
James Smarted957682007-06-17 19:56:37 -05004436int
4437lpfc_sli_hba_setup(struct lpfc_hba *phba)
4438{
4439 uint32_t rc;
James Smart6d368e52011-05-24 11:44:12 -04004440 int mode = 3, i;
4441 int longs;
James Smarted957682007-06-17 19:56:37 -05004442
4443 switch (lpfc_sli_mode) {
4444 case 2:
James Smart78b2d852007-08-02 11:10:21 -04004445 if (phba->cfg_enable_npiv) {
James Smart92d7f7b2007-06-17 19:56:38 -05004446 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04004447 "1824 NPIV enabled: Override lpfc_sli_mode "
James Smart92d7f7b2007-06-17 19:56:38 -05004448 "parameter (%d) to auto (0).\n",
James Smarte8b62012007-08-02 11:10:09 -04004449 lpfc_sli_mode);
James Smart92d7f7b2007-06-17 19:56:38 -05004450 break;
4451 }
James Smarted957682007-06-17 19:56:37 -05004452 mode = 2;
4453 break;
4454 case 0:
4455 case 3:
4456 break;
4457 default:
James Smart92d7f7b2007-06-17 19:56:38 -05004458 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04004459 "1819 Unrecognized lpfc_sli_mode "
4460 "parameter: %d.\n", lpfc_sli_mode);
James Smarted957682007-06-17 19:56:37 -05004461
4462 break;
4463 }
4464
James Smart93996272008-08-24 21:50:30 -04004465 rc = lpfc_sli_config_port(phba, mode);
4466
James Smarted957682007-06-17 19:56:37 -05004467 if (rc && lpfc_sli_mode == 3)
James Smart92d7f7b2007-06-17 19:56:38 -05004468 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04004469 "1820 Unable to select SLI-3. "
4470 "Not supported by adapter.\n");
James Smarted957682007-06-17 19:56:37 -05004471 if (rc && mode != 2)
James Smart93996272008-08-24 21:50:30 -04004472 rc = lpfc_sli_config_port(phba, 2);
James Smarted957682007-06-17 19:56:37 -05004473 if (rc)
dea31012005-04-17 16:05:31 -05004474 goto lpfc_sli_hba_setup_error;
4475
James Smart0d878412009-10-02 15:16:56 -04004476 /* Enable PCIe device Advanced Error Reporting (AER) if configured */
4477 if (phba->cfg_aer_support == 1 && !(phba->hba_flag & HBA_AER_ENABLED)) {
4478 rc = pci_enable_pcie_error_reporting(phba->pcidev);
4479 if (!rc) {
4480 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4481 "2709 This device supports "
4482 "Advanced Error Reporting (AER)\n");
4483 spin_lock_irq(&phba->hbalock);
4484 phba->hba_flag |= HBA_AER_ENABLED;
4485 spin_unlock_irq(&phba->hbalock);
4486 } else {
4487 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4488 "2708 This device does not support "
4489 "Advanced Error Reporting (AER)\n");
4490 phba->cfg_aer_support = 0;
4491 }
4492 }
4493
James Smarted957682007-06-17 19:56:37 -05004494 if (phba->sli_rev == 3) {
4495 phba->iocb_cmd_size = SLI3_IOCB_CMD_SIZE;
4496 phba->iocb_rsp_size = SLI3_IOCB_RSP_SIZE;
James Smarted957682007-06-17 19:56:37 -05004497 } else {
4498 phba->iocb_cmd_size = SLI2_IOCB_CMD_SIZE;
4499 phba->iocb_rsp_size = SLI2_IOCB_RSP_SIZE;
James Smart92d7f7b2007-06-17 19:56:38 -05004500 phba->sli3_options = 0;
James Smarted957682007-06-17 19:56:37 -05004501 }
4502
4503 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004504 "0444 Firmware in SLI %x mode. Max_vpi %d\n",
4505 phba->sli_rev, phba->max_vpi);
James Smarted957682007-06-17 19:56:37 -05004506 rc = lpfc_sli_ring_map(phba);
dea31012005-04-17 16:05:31 -05004507
4508 if (rc)
4509 goto lpfc_sli_hba_setup_error;
4510
James Smart6d368e52011-05-24 11:44:12 -04004511 /* Initialize VPIs. */
4512 if (phba->sli_rev == LPFC_SLI_REV3) {
4513 /*
4514 * The VPI bitmask and physical ID array are allocated
4515 * and initialized once only - at driver load. A port
4516 * reset doesn't need to reinitialize this memory.
4517 */
4518 if ((phba->vpi_bmask == NULL) && (phba->vpi_ids == NULL)) {
4519 longs = (phba->max_vpi + BITS_PER_LONG) / BITS_PER_LONG;
4520 phba->vpi_bmask = kzalloc(longs * sizeof(unsigned long),
4521 GFP_KERNEL);
4522 if (!phba->vpi_bmask) {
4523 rc = -ENOMEM;
4524 goto lpfc_sli_hba_setup_error;
4525 }
4526
4527 phba->vpi_ids = kzalloc(
4528 (phba->max_vpi+1) * sizeof(uint16_t),
4529 GFP_KERNEL);
4530 if (!phba->vpi_ids) {
4531 kfree(phba->vpi_bmask);
4532 rc = -ENOMEM;
4533 goto lpfc_sli_hba_setup_error;
4534 }
4535 for (i = 0; i < phba->max_vpi; i++)
4536 phba->vpi_ids[i] = i;
4537 }
4538 }
4539
James Smart93996272008-08-24 21:50:30 -04004540 /* Init HBQs */
James Smarted957682007-06-17 19:56:37 -05004541 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
4542 rc = lpfc_sli_hbq_setup(phba);
4543 if (rc)
4544 goto lpfc_sli_hba_setup_error;
4545 }
James Smart04c68492009-05-22 14:52:52 -04004546 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004547 phba->sli.sli_flag |= LPFC_PROCESS_LA;
James Smart04c68492009-05-22 14:52:52 -04004548 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004549
4550 rc = lpfc_config_port_post(phba);
4551 if (rc)
4552 goto lpfc_sli_hba_setup_error;
4553
James Smarted957682007-06-17 19:56:37 -05004554 return rc;
4555
James Smart92d7f7b2007-06-17 19:56:38 -05004556lpfc_sli_hba_setup_error:
James Smart2e0fef82007-06-17 19:56:36 -05004557 phba->link_state = LPFC_HBA_ERROR;
James Smarte40a02c2010-02-26 14:13:54 -05004558 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004559 "0445 Firmware initialization failed\n");
dea31012005-04-17 16:05:31 -05004560 return rc;
4561}
4562
James Smartda0436e2009-05-22 14:51:39 -04004563/**
4564 * lpfc_sli4_read_fcoe_params - Read fcoe params from conf region
4565 * @phba: Pointer to HBA context object.
4566 * @mboxq: mailbox pointer.
4567 * This function issue a dump mailbox command to read config region
4568 * 23 and parse the records in the region and populate driver
4569 * data structure.
4570 **/
4571static int
James Smartff78d8f2011-12-13 13:21:35 -05004572lpfc_sli4_read_fcoe_params(struct lpfc_hba *phba)
James Smartda0436e2009-05-22 14:51:39 -04004573{
James Smartff78d8f2011-12-13 13:21:35 -05004574 LPFC_MBOXQ_t *mboxq;
James Smartda0436e2009-05-22 14:51:39 -04004575 struct lpfc_dmabuf *mp;
4576 struct lpfc_mqe *mqe;
4577 uint32_t data_length;
4578 int rc;
4579
4580 /* Program the default value of vlan_id and fc_map */
4581 phba->valid_vlan = 0;
4582 phba->fc_map[0] = LPFC_FCOE_FCF_MAP0;
4583 phba->fc_map[1] = LPFC_FCOE_FCF_MAP1;
4584 phba->fc_map[2] = LPFC_FCOE_FCF_MAP2;
4585
James Smartff78d8f2011-12-13 13:21:35 -05004586 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4587 if (!mboxq)
James Smartda0436e2009-05-22 14:51:39 -04004588 return -ENOMEM;
4589
James Smartff78d8f2011-12-13 13:21:35 -05004590 mqe = &mboxq->u.mqe;
4591 if (lpfc_sli4_dump_cfg_rg23(phba, mboxq)) {
4592 rc = -ENOMEM;
4593 goto out_free_mboxq;
4594 }
4595
James Smartda0436e2009-05-22 14:51:39 -04004596 mp = (struct lpfc_dmabuf *) mboxq->context1;
4597 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4598
4599 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
4600 "(%d):2571 Mailbox cmd x%x Status x%x "
4601 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x "
4602 "x%x x%x x%x x%x x%x x%x x%x x%x x%x "
4603 "CQ: x%x x%x x%x x%x\n",
4604 mboxq->vport ? mboxq->vport->vpi : 0,
4605 bf_get(lpfc_mqe_command, mqe),
4606 bf_get(lpfc_mqe_status, mqe),
4607 mqe->un.mb_words[0], mqe->un.mb_words[1],
4608 mqe->un.mb_words[2], mqe->un.mb_words[3],
4609 mqe->un.mb_words[4], mqe->un.mb_words[5],
4610 mqe->un.mb_words[6], mqe->un.mb_words[7],
4611 mqe->un.mb_words[8], mqe->un.mb_words[9],
4612 mqe->un.mb_words[10], mqe->un.mb_words[11],
4613 mqe->un.mb_words[12], mqe->un.mb_words[13],
4614 mqe->un.mb_words[14], mqe->un.mb_words[15],
4615 mqe->un.mb_words[16], mqe->un.mb_words[50],
4616 mboxq->mcqe.word0,
4617 mboxq->mcqe.mcqe_tag0, mboxq->mcqe.mcqe_tag1,
4618 mboxq->mcqe.trailer);
4619
4620 if (rc) {
4621 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4622 kfree(mp);
James Smartff78d8f2011-12-13 13:21:35 -05004623 rc = -EIO;
4624 goto out_free_mboxq;
James Smartda0436e2009-05-22 14:51:39 -04004625 }
4626 data_length = mqe->un.mb_words[5];
James Smarta0c87cb2009-07-19 10:01:10 -04004627 if (data_length > DMP_RGN23_SIZE) {
James Smartd11e31d2009-06-10 17:23:06 -04004628 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4629 kfree(mp);
James Smartff78d8f2011-12-13 13:21:35 -05004630 rc = -EIO;
4631 goto out_free_mboxq;
James Smartd11e31d2009-06-10 17:23:06 -04004632 }
James Smartda0436e2009-05-22 14:51:39 -04004633
4634 lpfc_parse_fcoe_conf(phba, mp->virt, data_length);
4635 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4636 kfree(mp);
James Smartff78d8f2011-12-13 13:21:35 -05004637 rc = 0;
4638
4639out_free_mboxq:
4640 mempool_free(mboxq, phba->mbox_mem_pool);
4641 return rc;
James Smartda0436e2009-05-22 14:51:39 -04004642}
4643
4644/**
4645 * lpfc_sli4_read_rev - Issue READ_REV and collect vpd data
4646 * @phba: pointer to lpfc hba data structure.
4647 * @mboxq: pointer to the LPFC_MBOXQ_t structure.
4648 * @vpd: pointer to the memory to hold resulting port vpd data.
4649 * @vpd_size: On input, the number of bytes allocated to @vpd.
4650 * On output, the number of data bytes in @vpd.
4651 *
4652 * This routine executes a READ_REV SLI4 mailbox command. In
4653 * addition, this routine gets the port vpd data.
4654 *
4655 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004656 * 0 - successful
James Smartd439d282010-09-29 11:18:45 -04004657 * -ENOMEM - could not allocated memory.
James Smartda0436e2009-05-22 14:51:39 -04004658 **/
4659static int
4660lpfc_sli4_read_rev(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
4661 uint8_t *vpd, uint32_t *vpd_size)
4662{
4663 int rc = 0;
4664 uint32_t dma_size;
4665 struct lpfc_dmabuf *dmabuf;
4666 struct lpfc_mqe *mqe;
4667
4668 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
4669 if (!dmabuf)
4670 return -ENOMEM;
4671
4672 /*
4673 * Get a DMA buffer for the vpd data resulting from the READ_REV
4674 * mailbox command.
4675 */
4676 dma_size = *vpd_size;
4677 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
4678 dma_size,
4679 &dmabuf->phys,
4680 GFP_KERNEL);
4681 if (!dmabuf->virt) {
4682 kfree(dmabuf);
4683 return -ENOMEM;
4684 }
4685 memset(dmabuf->virt, 0, dma_size);
4686
4687 /*
4688 * The SLI4 implementation of READ_REV conflicts at word1,
4689 * bits 31:16 and SLI4 adds vpd functionality not present
4690 * in SLI3. This code corrects the conflicts.
4691 */
4692 lpfc_read_rev(phba, mboxq);
4693 mqe = &mboxq->u.mqe;
4694 mqe->un.read_rev.vpd_paddr_high = putPaddrHigh(dmabuf->phys);
4695 mqe->un.read_rev.vpd_paddr_low = putPaddrLow(dmabuf->phys);
4696 mqe->un.read_rev.word1 &= 0x0000FFFF;
4697 bf_set(lpfc_mbx_rd_rev_vpd, &mqe->un.read_rev, 1);
4698 bf_set(lpfc_mbx_rd_rev_avail_len, &mqe->un.read_rev, dma_size);
4699
4700 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4701 if (rc) {
4702 dma_free_coherent(&phba->pcidev->dev, dma_size,
4703 dmabuf->virt, dmabuf->phys);
James Smartdef9c7a2009-12-21 17:02:28 -05004704 kfree(dmabuf);
James Smartda0436e2009-05-22 14:51:39 -04004705 return -EIO;
4706 }
4707
James Smartda0436e2009-05-22 14:51:39 -04004708 /*
4709 * The available vpd length cannot be bigger than the
4710 * DMA buffer passed to the port. Catch the less than
4711 * case and update the caller's size.
4712 */
4713 if (mqe->un.read_rev.avail_vpd_len < *vpd_size)
4714 *vpd_size = mqe->un.read_rev.avail_vpd_len;
4715
James Smartd7c47992010-06-08 18:31:54 -04004716 memcpy(vpd, dmabuf->virt, *vpd_size);
4717
James Smartda0436e2009-05-22 14:51:39 -04004718 dma_free_coherent(&phba->pcidev->dev, dma_size,
4719 dmabuf->virt, dmabuf->phys);
4720 kfree(dmabuf);
4721 return 0;
4722}
4723
4724/**
James Smartcd1c8302011-10-10 21:33:25 -04004725 * lpfc_sli4_retrieve_pport_name - Retrieve SLI4 device physical port name
4726 * @phba: pointer to lpfc hba data structure.
4727 *
4728 * This routine retrieves SLI4 device physical port name this PCI function
4729 * is attached to.
4730 *
4731 * Return codes
4732 * 0 - sucessful
4733 * otherwise - failed to retrieve physical port name
4734 **/
4735static int
4736lpfc_sli4_retrieve_pport_name(struct lpfc_hba *phba)
4737{
4738 LPFC_MBOXQ_t *mboxq;
James Smartcd1c8302011-10-10 21:33:25 -04004739 struct lpfc_mbx_get_cntl_attributes *mbx_cntl_attr;
4740 struct lpfc_controller_attribute *cntl_attr;
4741 struct lpfc_mbx_get_port_name *get_port_name;
4742 void *virtaddr = NULL;
4743 uint32_t alloclen, reqlen;
4744 uint32_t shdr_status, shdr_add_status;
4745 union lpfc_sli4_cfg_shdr *shdr;
4746 char cport_name = 0;
4747 int rc;
4748
4749 /* We assume nothing at this point */
4750 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_INVAL;
4751 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_NON;
4752
4753 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4754 if (!mboxq)
4755 return -ENOMEM;
James Smartcd1c8302011-10-10 21:33:25 -04004756 /* obtain link type and link number via READ_CONFIG */
James Smartff78d8f2011-12-13 13:21:35 -05004757 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_INVAL;
4758 lpfc_sli4_read_config(phba);
4759 if (phba->sli4_hba.lnk_info.lnk_dv == LPFC_LNK_DAT_VAL)
4760 goto retrieve_ppname;
James Smartcd1c8302011-10-10 21:33:25 -04004761
4762 /* obtain link type and link number via COMMON_GET_CNTL_ATTRIBUTES */
4763 reqlen = sizeof(struct lpfc_mbx_get_cntl_attributes);
4764 alloclen = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
4765 LPFC_MBOX_OPCODE_GET_CNTL_ATTRIBUTES, reqlen,
4766 LPFC_SLI4_MBX_NEMBED);
4767 if (alloclen < reqlen) {
4768 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
4769 "3084 Allocated DMA memory size (%d) is "
4770 "less than the requested DMA memory size "
4771 "(%d)\n", alloclen, reqlen);
4772 rc = -ENOMEM;
4773 goto out_free_mboxq;
4774 }
4775 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4776 virtaddr = mboxq->sge_array->addr[0];
4777 mbx_cntl_attr = (struct lpfc_mbx_get_cntl_attributes *)virtaddr;
4778 shdr = &mbx_cntl_attr->cfg_shdr;
4779 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
4780 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
4781 if (shdr_status || shdr_add_status || rc) {
4782 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
4783 "3085 Mailbox x%x (x%x/x%x) failed, "
4784 "rc:x%x, status:x%x, add_status:x%x\n",
4785 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
4786 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
4787 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
4788 rc, shdr_status, shdr_add_status);
4789 rc = -ENXIO;
4790 goto out_free_mboxq;
4791 }
4792 cntl_attr = &mbx_cntl_attr->cntl_attr;
4793 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_VAL;
4794 phba->sli4_hba.lnk_info.lnk_tp =
4795 bf_get(lpfc_cntl_attr_lnk_type, cntl_attr);
4796 phba->sli4_hba.lnk_info.lnk_no =
4797 bf_get(lpfc_cntl_attr_lnk_numb, cntl_attr);
4798 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4799 "3086 lnk_type:%d, lnk_numb:%d\n",
4800 phba->sli4_hba.lnk_info.lnk_tp,
4801 phba->sli4_hba.lnk_info.lnk_no);
4802
4803retrieve_ppname:
4804 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
4805 LPFC_MBOX_OPCODE_GET_PORT_NAME,
4806 sizeof(struct lpfc_mbx_get_port_name) -
4807 sizeof(struct lpfc_sli4_cfg_mhdr),
4808 LPFC_SLI4_MBX_EMBED);
4809 get_port_name = &mboxq->u.mqe.un.get_port_name;
4810 shdr = (union lpfc_sli4_cfg_shdr *)&get_port_name->header.cfg_shdr;
4811 bf_set(lpfc_mbox_hdr_version, &shdr->request, LPFC_OPCODE_VERSION_1);
4812 bf_set(lpfc_mbx_get_port_name_lnk_type, &get_port_name->u.request,
4813 phba->sli4_hba.lnk_info.lnk_tp);
4814 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4815 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
4816 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
4817 if (shdr_status || shdr_add_status || rc) {
4818 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
4819 "3087 Mailbox x%x (x%x/x%x) failed: "
4820 "rc:x%x, status:x%x, add_status:x%x\n",
4821 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
4822 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
4823 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
4824 rc, shdr_status, shdr_add_status);
4825 rc = -ENXIO;
4826 goto out_free_mboxq;
4827 }
4828 switch (phba->sli4_hba.lnk_info.lnk_no) {
4829 case LPFC_LINK_NUMBER_0:
4830 cport_name = bf_get(lpfc_mbx_get_port_name_name0,
4831 &get_port_name->u.response);
4832 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
4833 break;
4834 case LPFC_LINK_NUMBER_1:
4835 cport_name = bf_get(lpfc_mbx_get_port_name_name1,
4836 &get_port_name->u.response);
4837 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
4838 break;
4839 case LPFC_LINK_NUMBER_2:
4840 cport_name = bf_get(lpfc_mbx_get_port_name_name2,
4841 &get_port_name->u.response);
4842 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
4843 break;
4844 case LPFC_LINK_NUMBER_3:
4845 cport_name = bf_get(lpfc_mbx_get_port_name_name3,
4846 &get_port_name->u.response);
4847 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
4848 break;
4849 default:
4850 break;
4851 }
4852
4853 if (phba->sli4_hba.pport_name_sta == LPFC_SLI4_PPNAME_GET) {
4854 phba->Port[0] = cport_name;
4855 phba->Port[1] = '\0';
4856 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4857 "3091 SLI get port name: %s\n", phba->Port);
4858 }
4859
4860out_free_mboxq:
4861 if (rc != MBX_TIMEOUT) {
4862 if (bf_get(lpfc_mqe_command, &mboxq->u.mqe) == MBX_SLI4_CONFIG)
4863 lpfc_sli4_mbox_cmd_free(phba, mboxq);
4864 else
4865 mempool_free(mboxq, phba->mbox_mem_pool);
4866 }
4867 return rc;
4868}
4869
4870/**
James Smartda0436e2009-05-22 14:51:39 -04004871 * lpfc_sli4_arm_cqeq_intr - Arm sli-4 device completion and event queues
4872 * @phba: pointer to lpfc hba data structure.
4873 *
4874 * This routine is called to explicitly arm the SLI4 device's completion and
4875 * event queues
4876 **/
4877static void
4878lpfc_sli4_arm_cqeq_intr(struct lpfc_hba *phba)
4879{
4880 uint8_t fcp_eqidx;
4881
4882 lpfc_sli4_cq_release(phba->sli4_hba.mbx_cq, LPFC_QUEUE_REARM);
4883 lpfc_sli4_cq_release(phba->sli4_hba.els_cq, LPFC_QUEUE_REARM);
James Smart05580562011-05-24 11:40:48 -04004884 fcp_eqidx = 0;
James Smart2e90f4b2011-12-13 13:22:37 -05004885 if (phba->sli4_hba.fcp_cq) {
4886 do
4887 lpfc_sli4_cq_release(phba->sli4_hba.fcp_cq[fcp_eqidx],
4888 LPFC_QUEUE_REARM);
4889 while (++fcp_eqidx < phba->cfg_fcp_eq_count);
4890 }
James Smartda0436e2009-05-22 14:51:39 -04004891 lpfc_sli4_eq_release(phba->sli4_hba.sp_eq, LPFC_QUEUE_REARM);
James Smart2e90f4b2011-12-13 13:22:37 -05004892 if (phba->sli4_hba.fp_eq) {
4893 for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_eq_count;
4894 fcp_eqidx++)
4895 lpfc_sli4_eq_release(phba->sli4_hba.fp_eq[fcp_eqidx],
4896 LPFC_QUEUE_REARM);
4897 }
James Smartda0436e2009-05-22 14:51:39 -04004898}
4899
4900/**
James Smart6d368e52011-05-24 11:44:12 -04004901 * lpfc_sli4_get_avail_extnt_rsrc - Get available resource extent count.
4902 * @phba: Pointer to HBA context object.
4903 * @type: The resource extent type.
James Smartb76f2dc2011-07-22 18:37:42 -04004904 * @extnt_count: buffer to hold port available extent count.
4905 * @extnt_size: buffer to hold element count per extent.
James Smart6d368e52011-05-24 11:44:12 -04004906 *
James Smartb76f2dc2011-07-22 18:37:42 -04004907 * This function calls the port and retrievs the number of available
4908 * extents and their size for a particular extent type.
4909 *
4910 * Returns: 0 if successful. Nonzero otherwise.
James Smart6d368e52011-05-24 11:44:12 -04004911 **/
James Smartb76f2dc2011-07-22 18:37:42 -04004912int
James Smart6d368e52011-05-24 11:44:12 -04004913lpfc_sli4_get_avail_extnt_rsrc(struct lpfc_hba *phba, uint16_t type,
4914 uint16_t *extnt_count, uint16_t *extnt_size)
4915{
4916 int rc = 0;
4917 uint32_t length;
4918 uint32_t mbox_tmo;
4919 struct lpfc_mbx_get_rsrc_extent_info *rsrc_info;
4920 LPFC_MBOXQ_t *mbox;
4921
4922 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4923 if (!mbox)
4924 return -ENOMEM;
4925
4926 /* Find out how many extents are available for this resource type */
4927 length = (sizeof(struct lpfc_mbx_get_rsrc_extent_info) -
4928 sizeof(struct lpfc_sli4_cfg_mhdr));
4929 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
4930 LPFC_MBOX_OPCODE_GET_RSRC_EXTENT_INFO,
4931 length, LPFC_SLI4_MBX_EMBED);
4932
4933 /* Send an extents count of 0 - the GET doesn't use it. */
4934 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, 0, type,
4935 LPFC_SLI4_MBX_EMBED);
4936 if (unlikely(rc)) {
4937 rc = -EIO;
4938 goto err_exit;
4939 }
4940
4941 if (!phba->sli4_hba.intr_enable)
4942 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
4943 else {
James Smarta183a152011-10-10 21:32:43 -04004944 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -04004945 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
4946 }
4947 if (unlikely(rc)) {
4948 rc = -EIO;
4949 goto err_exit;
4950 }
4951
4952 rsrc_info = &mbox->u.mqe.un.rsrc_extent_info;
4953 if (bf_get(lpfc_mbox_hdr_status,
4954 &rsrc_info->header.cfg_shdr.response)) {
4955 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
4956 "2930 Failed to get resource extents "
4957 "Status 0x%x Add'l Status 0x%x\n",
4958 bf_get(lpfc_mbox_hdr_status,
4959 &rsrc_info->header.cfg_shdr.response),
4960 bf_get(lpfc_mbox_hdr_add_status,
4961 &rsrc_info->header.cfg_shdr.response));
4962 rc = -EIO;
4963 goto err_exit;
4964 }
4965
4966 *extnt_count = bf_get(lpfc_mbx_get_rsrc_extent_info_cnt,
4967 &rsrc_info->u.rsp);
4968 *extnt_size = bf_get(lpfc_mbx_get_rsrc_extent_info_size,
4969 &rsrc_info->u.rsp);
4970 err_exit:
4971 mempool_free(mbox, phba->mbox_mem_pool);
4972 return rc;
4973}
4974
4975/**
4976 * lpfc_sli4_chk_avail_extnt_rsrc - Check for available SLI4 resource extents.
4977 * @phba: Pointer to HBA context object.
4978 * @type: The extent type to check.
4979 *
4980 * This function reads the current available extents from the port and checks
4981 * if the extent count or extent size has changed since the last access.
4982 * Callers use this routine post port reset to understand if there is a
4983 * extent reprovisioning requirement.
4984 *
4985 * Returns:
4986 * -Error: error indicates problem.
4987 * 1: Extent count or size has changed.
4988 * 0: No changes.
4989 **/
4990static int
4991lpfc_sli4_chk_avail_extnt_rsrc(struct lpfc_hba *phba, uint16_t type)
4992{
4993 uint16_t curr_ext_cnt, rsrc_ext_cnt;
4994 uint16_t size_diff, rsrc_ext_size;
4995 int rc = 0;
4996 struct lpfc_rsrc_blks *rsrc_entry;
4997 struct list_head *rsrc_blk_list = NULL;
4998
4999 size_diff = 0;
5000 curr_ext_cnt = 0;
5001 rc = lpfc_sli4_get_avail_extnt_rsrc(phba, type,
5002 &rsrc_ext_cnt,
5003 &rsrc_ext_size);
5004 if (unlikely(rc))
5005 return -EIO;
5006
5007 switch (type) {
5008 case LPFC_RSC_TYPE_FCOE_RPI:
5009 rsrc_blk_list = &phba->sli4_hba.lpfc_rpi_blk_list;
5010 break;
5011 case LPFC_RSC_TYPE_FCOE_VPI:
5012 rsrc_blk_list = &phba->lpfc_vpi_blk_list;
5013 break;
5014 case LPFC_RSC_TYPE_FCOE_XRI:
5015 rsrc_blk_list = &phba->sli4_hba.lpfc_xri_blk_list;
5016 break;
5017 case LPFC_RSC_TYPE_FCOE_VFI:
5018 rsrc_blk_list = &phba->sli4_hba.lpfc_vfi_blk_list;
5019 break;
5020 default:
5021 break;
5022 }
5023
5024 list_for_each_entry(rsrc_entry, rsrc_blk_list, list) {
5025 curr_ext_cnt++;
5026 if (rsrc_entry->rsrc_size != rsrc_ext_size)
5027 size_diff++;
5028 }
5029
5030 if (curr_ext_cnt != rsrc_ext_cnt || size_diff != 0)
5031 rc = 1;
5032
5033 return rc;
5034}
5035
5036/**
5037 * lpfc_sli4_cfg_post_extnts -
5038 * @phba: Pointer to HBA context object.
5039 * @extnt_cnt - number of available extents.
5040 * @type - the extent type (rpi, xri, vfi, vpi).
5041 * @emb - buffer to hold either MBX_EMBED or MBX_NEMBED operation.
5042 * @mbox - pointer to the caller's allocated mailbox structure.
5043 *
5044 * This function executes the extents allocation request. It also
5045 * takes care of the amount of memory needed to allocate or get the
5046 * allocated extents. It is the caller's responsibility to evaluate
5047 * the response.
5048 *
5049 * Returns:
5050 * -Error: Error value describes the condition found.
5051 * 0: if successful
5052 **/
5053static int
5054lpfc_sli4_cfg_post_extnts(struct lpfc_hba *phba, uint16_t *extnt_cnt,
5055 uint16_t type, bool *emb, LPFC_MBOXQ_t *mbox)
5056{
5057 int rc = 0;
5058 uint32_t req_len;
5059 uint32_t emb_len;
5060 uint32_t alloc_len, mbox_tmo;
5061
5062 /* Calculate the total requested length of the dma memory */
5063 req_len = *extnt_cnt * sizeof(uint16_t);
5064
5065 /*
5066 * Calculate the size of an embedded mailbox. The uint32_t
5067 * accounts for extents-specific word.
5068 */
5069 emb_len = sizeof(MAILBOX_t) - sizeof(struct mbox_header) -
5070 sizeof(uint32_t);
5071
5072 /*
5073 * Presume the allocation and response will fit into an embedded
5074 * mailbox. If not true, reconfigure to a non-embedded mailbox.
5075 */
5076 *emb = LPFC_SLI4_MBX_EMBED;
5077 if (req_len > emb_len) {
5078 req_len = *extnt_cnt * sizeof(uint16_t) +
5079 sizeof(union lpfc_sli4_cfg_shdr) +
5080 sizeof(uint32_t);
5081 *emb = LPFC_SLI4_MBX_NEMBED;
5082 }
5083
5084 alloc_len = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5085 LPFC_MBOX_OPCODE_ALLOC_RSRC_EXTENT,
5086 req_len, *emb);
5087 if (alloc_len < req_len) {
5088 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smartb76f2dc2011-07-22 18:37:42 -04005089 "2982 Allocated DMA memory size (x%x) is "
James Smart6d368e52011-05-24 11:44:12 -04005090 "less than the requested DMA memory "
5091 "size (x%x)\n", alloc_len, req_len);
5092 return -ENOMEM;
5093 }
5094 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, *extnt_cnt, type, *emb);
5095 if (unlikely(rc))
5096 return -EIO;
5097
5098 if (!phba->sli4_hba.intr_enable)
5099 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5100 else {
James Smarta183a152011-10-10 21:32:43 -04005101 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -04005102 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5103 }
5104
5105 if (unlikely(rc))
5106 rc = -EIO;
5107 return rc;
5108}
5109
5110/**
5111 * lpfc_sli4_alloc_extent - Allocate an SLI4 resource extent.
5112 * @phba: Pointer to HBA context object.
5113 * @type: The resource extent type to allocate.
5114 *
5115 * This function allocates the number of elements for the specified
5116 * resource type.
5117 **/
5118static int
5119lpfc_sli4_alloc_extent(struct lpfc_hba *phba, uint16_t type)
5120{
5121 bool emb = false;
5122 uint16_t rsrc_id_cnt, rsrc_cnt, rsrc_size;
5123 uint16_t rsrc_id, rsrc_start, j, k;
5124 uint16_t *ids;
5125 int i, rc;
5126 unsigned long longs;
5127 unsigned long *bmask;
5128 struct lpfc_rsrc_blks *rsrc_blks;
5129 LPFC_MBOXQ_t *mbox;
5130 uint32_t length;
5131 struct lpfc_id_range *id_array = NULL;
5132 void *virtaddr = NULL;
5133 struct lpfc_mbx_nembed_rsrc_extent *n_rsrc;
5134 struct lpfc_mbx_alloc_rsrc_extents *rsrc_ext;
5135 struct list_head *ext_blk_list;
5136
5137 rc = lpfc_sli4_get_avail_extnt_rsrc(phba, type,
5138 &rsrc_cnt,
5139 &rsrc_size);
5140 if (unlikely(rc))
5141 return -EIO;
5142
5143 if ((rsrc_cnt == 0) || (rsrc_size == 0)) {
5144 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5145 "3009 No available Resource Extents "
5146 "for resource type 0x%x: Count: 0x%x, "
5147 "Size 0x%x\n", type, rsrc_cnt,
5148 rsrc_size);
5149 return -ENOMEM;
5150 }
5151
5152 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_INIT,
5153 "2903 Available Resource Extents "
5154 "for resource type 0x%x: Count: 0x%x, "
5155 "Size 0x%x\n", type, rsrc_cnt,
5156 rsrc_size);
5157
5158 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5159 if (!mbox)
5160 return -ENOMEM;
5161
5162 rc = lpfc_sli4_cfg_post_extnts(phba, &rsrc_cnt, type, &emb, mbox);
5163 if (unlikely(rc)) {
5164 rc = -EIO;
5165 goto err_exit;
5166 }
5167
5168 /*
5169 * Figure out where the response is located. Then get local pointers
5170 * to the response data. The port does not guarantee to respond to
5171 * all extents counts request so update the local variable with the
5172 * allocated count from the port.
5173 */
5174 if (emb == LPFC_SLI4_MBX_EMBED) {
5175 rsrc_ext = &mbox->u.mqe.un.alloc_rsrc_extents;
5176 id_array = &rsrc_ext->u.rsp.id[0];
5177 rsrc_cnt = bf_get(lpfc_mbx_rsrc_cnt, &rsrc_ext->u.rsp);
5178 } else {
5179 virtaddr = mbox->sge_array->addr[0];
5180 n_rsrc = (struct lpfc_mbx_nembed_rsrc_extent *) virtaddr;
5181 rsrc_cnt = bf_get(lpfc_mbx_rsrc_cnt, n_rsrc);
5182 id_array = &n_rsrc->id;
5183 }
5184
5185 longs = ((rsrc_cnt * rsrc_size) + BITS_PER_LONG - 1) / BITS_PER_LONG;
5186 rsrc_id_cnt = rsrc_cnt * rsrc_size;
5187
5188 /*
5189 * Based on the resource size and count, correct the base and max
5190 * resource values.
5191 */
5192 length = sizeof(struct lpfc_rsrc_blks);
5193 switch (type) {
5194 case LPFC_RSC_TYPE_FCOE_RPI:
5195 phba->sli4_hba.rpi_bmask = kzalloc(longs *
5196 sizeof(unsigned long),
5197 GFP_KERNEL);
5198 if (unlikely(!phba->sli4_hba.rpi_bmask)) {
5199 rc = -ENOMEM;
5200 goto err_exit;
5201 }
5202 phba->sli4_hba.rpi_ids = kzalloc(rsrc_id_cnt *
5203 sizeof(uint16_t),
5204 GFP_KERNEL);
5205 if (unlikely(!phba->sli4_hba.rpi_ids)) {
5206 kfree(phba->sli4_hba.rpi_bmask);
5207 rc = -ENOMEM;
5208 goto err_exit;
5209 }
5210
5211 /*
5212 * The next_rpi was initialized with the maximum available
5213 * count but the port may allocate a smaller number. Catch
5214 * that case and update the next_rpi.
5215 */
5216 phba->sli4_hba.next_rpi = rsrc_id_cnt;
5217
5218 /* Initialize local ptrs for common extent processing later. */
5219 bmask = phba->sli4_hba.rpi_bmask;
5220 ids = phba->sli4_hba.rpi_ids;
5221 ext_blk_list = &phba->sli4_hba.lpfc_rpi_blk_list;
5222 break;
5223 case LPFC_RSC_TYPE_FCOE_VPI:
5224 phba->vpi_bmask = kzalloc(longs *
5225 sizeof(unsigned long),
5226 GFP_KERNEL);
5227 if (unlikely(!phba->vpi_bmask)) {
5228 rc = -ENOMEM;
5229 goto err_exit;
5230 }
5231 phba->vpi_ids = kzalloc(rsrc_id_cnt *
5232 sizeof(uint16_t),
5233 GFP_KERNEL);
5234 if (unlikely(!phba->vpi_ids)) {
5235 kfree(phba->vpi_bmask);
5236 rc = -ENOMEM;
5237 goto err_exit;
5238 }
5239
5240 /* Initialize local ptrs for common extent processing later. */
5241 bmask = phba->vpi_bmask;
5242 ids = phba->vpi_ids;
5243 ext_blk_list = &phba->lpfc_vpi_blk_list;
5244 break;
5245 case LPFC_RSC_TYPE_FCOE_XRI:
5246 phba->sli4_hba.xri_bmask = kzalloc(longs *
5247 sizeof(unsigned long),
5248 GFP_KERNEL);
5249 if (unlikely(!phba->sli4_hba.xri_bmask)) {
5250 rc = -ENOMEM;
5251 goto err_exit;
5252 }
5253 phba->sli4_hba.xri_ids = kzalloc(rsrc_id_cnt *
5254 sizeof(uint16_t),
5255 GFP_KERNEL);
5256 if (unlikely(!phba->sli4_hba.xri_ids)) {
5257 kfree(phba->sli4_hba.xri_bmask);
5258 rc = -ENOMEM;
5259 goto err_exit;
5260 }
5261
5262 /* Initialize local ptrs for common extent processing later. */
5263 bmask = phba->sli4_hba.xri_bmask;
5264 ids = phba->sli4_hba.xri_ids;
5265 ext_blk_list = &phba->sli4_hba.lpfc_xri_blk_list;
5266 break;
5267 case LPFC_RSC_TYPE_FCOE_VFI:
5268 phba->sli4_hba.vfi_bmask = kzalloc(longs *
5269 sizeof(unsigned long),
5270 GFP_KERNEL);
5271 if (unlikely(!phba->sli4_hba.vfi_bmask)) {
5272 rc = -ENOMEM;
5273 goto err_exit;
5274 }
5275 phba->sli4_hba.vfi_ids = kzalloc(rsrc_id_cnt *
5276 sizeof(uint16_t),
5277 GFP_KERNEL);
5278 if (unlikely(!phba->sli4_hba.vfi_ids)) {
5279 kfree(phba->sli4_hba.vfi_bmask);
5280 rc = -ENOMEM;
5281 goto err_exit;
5282 }
5283
5284 /* Initialize local ptrs for common extent processing later. */
5285 bmask = phba->sli4_hba.vfi_bmask;
5286 ids = phba->sli4_hba.vfi_ids;
5287 ext_blk_list = &phba->sli4_hba.lpfc_vfi_blk_list;
5288 break;
5289 default:
5290 /* Unsupported Opcode. Fail call. */
5291 id_array = NULL;
5292 bmask = NULL;
5293 ids = NULL;
5294 ext_blk_list = NULL;
5295 goto err_exit;
5296 }
5297
5298 /*
5299 * Complete initializing the extent configuration with the
5300 * allocated ids assigned to this function. The bitmask serves
5301 * as an index into the array and manages the available ids. The
5302 * array just stores the ids communicated to the port via the wqes.
5303 */
5304 for (i = 0, j = 0, k = 0; i < rsrc_cnt; i++) {
5305 if ((i % 2) == 0)
5306 rsrc_id = bf_get(lpfc_mbx_rsrc_id_word4_0,
5307 &id_array[k]);
5308 else
5309 rsrc_id = bf_get(lpfc_mbx_rsrc_id_word4_1,
5310 &id_array[k]);
5311
5312 rsrc_blks = kzalloc(length, GFP_KERNEL);
5313 if (unlikely(!rsrc_blks)) {
5314 rc = -ENOMEM;
5315 kfree(bmask);
5316 kfree(ids);
5317 goto err_exit;
5318 }
5319 rsrc_blks->rsrc_start = rsrc_id;
5320 rsrc_blks->rsrc_size = rsrc_size;
5321 list_add_tail(&rsrc_blks->list, ext_blk_list);
5322 rsrc_start = rsrc_id;
5323 if ((type == LPFC_RSC_TYPE_FCOE_XRI) && (j == 0))
5324 phba->sli4_hba.scsi_xri_start = rsrc_start +
5325 lpfc_sli4_get_els_iocb_cnt(phba);
5326
5327 while (rsrc_id < (rsrc_start + rsrc_size)) {
5328 ids[j] = rsrc_id;
5329 rsrc_id++;
5330 j++;
5331 }
5332 /* Entire word processed. Get next word.*/
5333 if ((i % 2) == 1)
5334 k++;
5335 }
5336 err_exit:
5337 lpfc_sli4_mbox_cmd_free(phba, mbox);
5338 return rc;
5339}
5340
5341/**
5342 * lpfc_sli4_dealloc_extent - Deallocate an SLI4 resource extent.
5343 * @phba: Pointer to HBA context object.
5344 * @type: the extent's type.
5345 *
5346 * This function deallocates all extents of a particular resource type.
5347 * SLI4 does not allow for deallocating a particular extent range. It
5348 * is the caller's responsibility to release all kernel memory resources.
5349 **/
5350static int
5351lpfc_sli4_dealloc_extent(struct lpfc_hba *phba, uint16_t type)
5352{
5353 int rc;
5354 uint32_t length, mbox_tmo = 0;
5355 LPFC_MBOXQ_t *mbox;
5356 struct lpfc_mbx_dealloc_rsrc_extents *dealloc_rsrc;
5357 struct lpfc_rsrc_blks *rsrc_blk, *rsrc_blk_next;
5358
5359 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5360 if (!mbox)
5361 return -ENOMEM;
5362
5363 /*
5364 * This function sends an embedded mailbox because it only sends the
5365 * the resource type. All extents of this type are released by the
5366 * port.
5367 */
5368 length = (sizeof(struct lpfc_mbx_dealloc_rsrc_extents) -
5369 sizeof(struct lpfc_sli4_cfg_mhdr));
5370 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5371 LPFC_MBOX_OPCODE_DEALLOC_RSRC_EXTENT,
5372 length, LPFC_SLI4_MBX_EMBED);
5373
5374 /* Send an extents count of 0 - the dealloc doesn't use it. */
5375 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, 0, type,
5376 LPFC_SLI4_MBX_EMBED);
5377 if (unlikely(rc)) {
5378 rc = -EIO;
5379 goto out_free_mbox;
5380 }
5381 if (!phba->sli4_hba.intr_enable)
5382 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5383 else {
James Smarta183a152011-10-10 21:32:43 -04005384 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -04005385 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5386 }
5387 if (unlikely(rc)) {
5388 rc = -EIO;
5389 goto out_free_mbox;
5390 }
5391
5392 dealloc_rsrc = &mbox->u.mqe.un.dealloc_rsrc_extents;
5393 if (bf_get(lpfc_mbox_hdr_status,
5394 &dealloc_rsrc->header.cfg_shdr.response)) {
5395 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5396 "2919 Failed to release resource extents "
5397 "for type %d - Status 0x%x Add'l Status 0x%x. "
5398 "Resource memory not released.\n",
5399 type,
5400 bf_get(lpfc_mbox_hdr_status,
5401 &dealloc_rsrc->header.cfg_shdr.response),
5402 bf_get(lpfc_mbox_hdr_add_status,
5403 &dealloc_rsrc->header.cfg_shdr.response));
5404 rc = -EIO;
5405 goto out_free_mbox;
5406 }
5407
5408 /* Release kernel memory resources for the specific type. */
5409 switch (type) {
5410 case LPFC_RSC_TYPE_FCOE_VPI:
5411 kfree(phba->vpi_bmask);
5412 kfree(phba->vpi_ids);
5413 bf_set(lpfc_vpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5414 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5415 &phba->lpfc_vpi_blk_list, list) {
5416 list_del_init(&rsrc_blk->list);
5417 kfree(rsrc_blk);
5418 }
5419 break;
5420 case LPFC_RSC_TYPE_FCOE_XRI:
5421 kfree(phba->sli4_hba.xri_bmask);
5422 kfree(phba->sli4_hba.xri_ids);
5423 bf_set(lpfc_xri_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5424 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5425 &phba->sli4_hba.lpfc_xri_blk_list, list) {
5426 list_del_init(&rsrc_blk->list);
5427 kfree(rsrc_blk);
5428 }
5429 break;
5430 case LPFC_RSC_TYPE_FCOE_VFI:
5431 kfree(phba->sli4_hba.vfi_bmask);
5432 kfree(phba->sli4_hba.vfi_ids);
5433 bf_set(lpfc_vfi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5434 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5435 &phba->sli4_hba.lpfc_vfi_blk_list, list) {
5436 list_del_init(&rsrc_blk->list);
5437 kfree(rsrc_blk);
5438 }
5439 break;
5440 case LPFC_RSC_TYPE_FCOE_RPI:
5441 /* RPI bitmask and physical id array are cleaned up earlier. */
5442 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5443 &phba->sli4_hba.lpfc_rpi_blk_list, list) {
5444 list_del_init(&rsrc_blk->list);
5445 kfree(rsrc_blk);
5446 }
5447 break;
5448 default:
5449 break;
5450 }
5451
5452 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5453
5454 out_free_mbox:
5455 mempool_free(mbox, phba->mbox_mem_pool);
5456 return rc;
5457}
5458
5459/**
5460 * lpfc_sli4_alloc_resource_identifiers - Allocate all SLI4 resource extents.
5461 * @phba: Pointer to HBA context object.
5462 *
5463 * This function allocates all SLI4 resource identifiers.
5464 **/
5465int
5466lpfc_sli4_alloc_resource_identifiers(struct lpfc_hba *phba)
5467{
5468 int i, rc, error = 0;
5469 uint16_t count, base;
5470 unsigned long longs;
5471
James Smartff78d8f2011-12-13 13:21:35 -05005472 if (!phba->sli4_hba.rpi_hdrs_in_use)
5473 phba->sli4_hba.next_rpi = phba->sli4_hba.max_cfg_param.max_rpi;
James Smart6d368e52011-05-24 11:44:12 -04005474 if (phba->sli4_hba.extents_in_use) {
5475 /*
5476 * The port supports resource extents. The XRI, VPI, VFI, RPI
5477 * resource extent count must be read and allocated before
5478 * provisioning the resource id arrays.
5479 */
5480 if (bf_get(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags) ==
5481 LPFC_IDX_RSRC_RDY) {
5482 /*
5483 * Extent-based resources are set - the driver could
5484 * be in a port reset. Figure out if any corrective
5485 * actions need to be taken.
5486 */
5487 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5488 LPFC_RSC_TYPE_FCOE_VFI);
5489 if (rc != 0)
5490 error++;
5491 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5492 LPFC_RSC_TYPE_FCOE_VPI);
5493 if (rc != 0)
5494 error++;
5495 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5496 LPFC_RSC_TYPE_FCOE_XRI);
5497 if (rc != 0)
5498 error++;
5499 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5500 LPFC_RSC_TYPE_FCOE_RPI);
5501 if (rc != 0)
5502 error++;
5503
5504 /*
5505 * It's possible that the number of resources
5506 * provided to this port instance changed between
5507 * resets. Detect this condition and reallocate
5508 * resources. Otherwise, there is no action.
5509 */
5510 if (error) {
5511 lpfc_printf_log(phba, KERN_INFO,
5512 LOG_MBOX | LOG_INIT,
5513 "2931 Detected extent resource "
5514 "change. Reallocating all "
5515 "extents.\n");
5516 rc = lpfc_sli4_dealloc_extent(phba,
5517 LPFC_RSC_TYPE_FCOE_VFI);
5518 rc = lpfc_sli4_dealloc_extent(phba,
5519 LPFC_RSC_TYPE_FCOE_VPI);
5520 rc = lpfc_sli4_dealloc_extent(phba,
5521 LPFC_RSC_TYPE_FCOE_XRI);
5522 rc = lpfc_sli4_dealloc_extent(phba,
5523 LPFC_RSC_TYPE_FCOE_RPI);
5524 } else
5525 return 0;
5526 }
5527
5528 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_VFI);
5529 if (unlikely(rc))
5530 goto err_exit;
5531
5532 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_VPI);
5533 if (unlikely(rc))
5534 goto err_exit;
5535
5536 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_RPI);
5537 if (unlikely(rc))
5538 goto err_exit;
5539
5540 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_XRI);
5541 if (unlikely(rc))
5542 goto err_exit;
5543 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags,
5544 LPFC_IDX_RSRC_RDY);
5545 return rc;
5546 } else {
5547 /*
5548 * The port does not support resource extents. The XRI, VPI,
5549 * VFI, RPI resource ids were determined from READ_CONFIG.
5550 * Just allocate the bitmasks and provision the resource id
5551 * arrays. If a port reset is active, the resources don't
5552 * need any action - just exit.
5553 */
5554 if (bf_get(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags) ==
James Smartff78d8f2011-12-13 13:21:35 -05005555 LPFC_IDX_RSRC_RDY) {
5556 lpfc_sli4_dealloc_resource_identifiers(phba);
5557 lpfc_sli4_remove_rpis(phba);
5558 }
James Smart6d368e52011-05-24 11:44:12 -04005559 /* RPIs. */
5560 count = phba->sli4_hba.max_cfg_param.max_rpi;
5561 base = phba->sli4_hba.max_cfg_param.rpi_base;
5562 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5563 phba->sli4_hba.rpi_bmask = kzalloc(longs *
5564 sizeof(unsigned long),
5565 GFP_KERNEL);
5566 if (unlikely(!phba->sli4_hba.rpi_bmask)) {
5567 rc = -ENOMEM;
5568 goto err_exit;
5569 }
5570 phba->sli4_hba.rpi_ids = kzalloc(count *
5571 sizeof(uint16_t),
5572 GFP_KERNEL);
5573 if (unlikely(!phba->sli4_hba.rpi_ids)) {
5574 rc = -ENOMEM;
5575 goto free_rpi_bmask;
5576 }
5577
5578 for (i = 0; i < count; i++)
5579 phba->sli4_hba.rpi_ids[i] = base + i;
5580
James Smart6b5151f2012-01-18 16:24:06 -05005581 lpfc_sli4_node_prep(phba);
5582
James Smart6d368e52011-05-24 11:44:12 -04005583 /* VPIs. */
5584 count = phba->sli4_hba.max_cfg_param.max_vpi;
5585 base = phba->sli4_hba.max_cfg_param.vpi_base;
5586 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5587 phba->vpi_bmask = kzalloc(longs *
5588 sizeof(unsigned long),
5589 GFP_KERNEL);
5590 if (unlikely(!phba->vpi_bmask)) {
5591 rc = -ENOMEM;
5592 goto free_rpi_ids;
5593 }
5594 phba->vpi_ids = kzalloc(count *
5595 sizeof(uint16_t),
5596 GFP_KERNEL);
5597 if (unlikely(!phba->vpi_ids)) {
5598 rc = -ENOMEM;
5599 goto free_vpi_bmask;
5600 }
5601
5602 for (i = 0; i < count; i++)
5603 phba->vpi_ids[i] = base + i;
5604
5605 /* XRIs. */
5606 count = phba->sli4_hba.max_cfg_param.max_xri;
5607 base = phba->sli4_hba.max_cfg_param.xri_base;
5608 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5609 phba->sli4_hba.xri_bmask = kzalloc(longs *
5610 sizeof(unsigned long),
5611 GFP_KERNEL);
5612 if (unlikely(!phba->sli4_hba.xri_bmask)) {
5613 rc = -ENOMEM;
5614 goto free_vpi_ids;
5615 }
James Smart41899be2012-03-01 22:34:19 -05005616 phba->sli4_hba.max_cfg_param.xri_used = 0;
5617 phba->sli4_hba.xri_count = 0;
James Smart6d368e52011-05-24 11:44:12 -04005618 phba->sli4_hba.xri_ids = kzalloc(count *
5619 sizeof(uint16_t),
5620 GFP_KERNEL);
5621 if (unlikely(!phba->sli4_hba.xri_ids)) {
5622 rc = -ENOMEM;
5623 goto free_xri_bmask;
5624 }
5625
5626 for (i = 0; i < count; i++)
5627 phba->sli4_hba.xri_ids[i] = base + i;
5628
5629 /* VFIs. */
5630 count = phba->sli4_hba.max_cfg_param.max_vfi;
5631 base = phba->sli4_hba.max_cfg_param.vfi_base;
5632 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5633 phba->sli4_hba.vfi_bmask = kzalloc(longs *
5634 sizeof(unsigned long),
5635 GFP_KERNEL);
5636 if (unlikely(!phba->sli4_hba.vfi_bmask)) {
5637 rc = -ENOMEM;
5638 goto free_xri_ids;
5639 }
5640 phba->sli4_hba.vfi_ids = kzalloc(count *
5641 sizeof(uint16_t),
5642 GFP_KERNEL);
5643 if (unlikely(!phba->sli4_hba.vfi_ids)) {
5644 rc = -ENOMEM;
5645 goto free_vfi_bmask;
5646 }
5647
5648 for (i = 0; i < count; i++)
5649 phba->sli4_hba.vfi_ids[i] = base + i;
5650
5651 /*
5652 * Mark all resources ready. An HBA reset doesn't need
5653 * to reset the initialization.
5654 */
5655 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags,
5656 LPFC_IDX_RSRC_RDY);
5657 return 0;
5658 }
5659
5660 free_vfi_bmask:
5661 kfree(phba->sli4_hba.vfi_bmask);
5662 free_xri_ids:
5663 kfree(phba->sli4_hba.xri_ids);
5664 free_xri_bmask:
5665 kfree(phba->sli4_hba.xri_bmask);
5666 free_vpi_ids:
5667 kfree(phba->vpi_ids);
5668 free_vpi_bmask:
5669 kfree(phba->vpi_bmask);
5670 free_rpi_ids:
5671 kfree(phba->sli4_hba.rpi_ids);
5672 free_rpi_bmask:
5673 kfree(phba->sli4_hba.rpi_bmask);
5674 err_exit:
5675 return rc;
5676}
5677
5678/**
5679 * lpfc_sli4_dealloc_resource_identifiers - Deallocate all SLI4 resource extents.
5680 * @phba: Pointer to HBA context object.
5681 *
5682 * This function allocates the number of elements for the specified
5683 * resource type.
5684 **/
5685int
5686lpfc_sli4_dealloc_resource_identifiers(struct lpfc_hba *phba)
5687{
5688 if (phba->sli4_hba.extents_in_use) {
5689 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_VPI);
5690 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_RPI);
5691 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_XRI);
5692 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_VFI);
5693 } else {
5694 kfree(phba->vpi_bmask);
5695 kfree(phba->vpi_ids);
5696 bf_set(lpfc_vpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5697 kfree(phba->sli4_hba.xri_bmask);
5698 kfree(phba->sli4_hba.xri_ids);
5699 bf_set(lpfc_xri_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5700 kfree(phba->sli4_hba.vfi_bmask);
5701 kfree(phba->sli4_hba.vfi_ids);
5702 bf_set(lpfc_vfi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5703 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5704 }
5705
5706 return 0;
5707}
5708
5709/**
James Smartb76f2dc2011-07-22 18:37:42 -04005710 * lpfc_sli4_get_allocated_extnts - Get the port's allocated extents.
5711 * @phba: Pointer to HBA context object.
5712 * @type: The resource extent type.
5713 * @extnt_count: buffer to hold port extent count response
5714 * @extnt_size: buffer to hold port extent size response.
5715 *
5716 * This function calls the port to read the host allocated extents
5717 * for a particular type.
5718 **/
5719int
5720lpfc_sli4_get_allocated_extnts(struct lpfc_hba *phba, uint16_t type,
5721 uint16_t *extnt_cnt, uint16_t *extnt_size)
5722{
5723 bool emb;
5724 int rc = 0;
5725 uint16_t curr_blks = 0;
5726 uint32_t req_len, emb_len;
5727 uint32_t alloc_len, mbox_tmo;
5728 struct list_head *blk_list_head;
5729 struct lpfc_rsrc_blks *rsrc_blk;
5730 LPFC_MBOXQ_t *mbox;
5731 void *virtaddr = NULL;
5732 struct lpfc_mbx_nembed_rsrc_extent *n_rsrc;
5733 struct lpfc_mbx_alloc_rsrc_extents *rsrc_ext;
5734 union lpfc_sli4_cfg_shdr *shdr;
5735
5736 switch (type) {
5737 case LPFC_RSC_TYPE_FCOE_VPI:
5738 blk_list_head = &phba->lpfc_vpi_blk_list;
5739 break;
5740 case LPFC_RSC_TYPE_FCOE_XRI:
5741 blk_list_head = &phba->sli4_hba.lpfc_xri_blk_list;
5742 break;
5743 case LPFC_RSC_TYPE_FCOE_VFI:
5744 blk_list_head = &phba->sli4_hba.lpfc_vfi_blk_list;
5745 break;
5746 case LPFC_RSC_TYPE_FCOE_RPI:
5747 blk_list_head = &phba->sli4_hba.lpfc_rpi_blk_list;
5748 break;
5749 default:
5750 return -EIO;
5751 }
5752
5753 /* Count the number of extents currently allocatd for this type. */
5754 list_for_each_entry(rsrc_blk, blk_list_head, list) {
5755 if (curr_blks == 0) {
5756 /*
5757 * The GET_ALLOCATED mailbox does not return the size,
5758 * just the count. The size should be just the size
5759 * stored in the current allocated block and all sizes
5760 * for an extent type are the same so set the return
5761 * value now.
5762 */
5763 *extnt_size = rsrc_blk->rsrc_size;
5764 }
5765 curr_blks++;
5766 }
5767
5768 /* Calculate the total requested length of the dma memory. */
5769 req_len = curr_blks * sizeof(uint16_t);
5770
5771 /*
5772 * Calculate the size of an embedded mailbox. The uint32_t
5773 * accounts for extents-specific word.
5774 */
5775 emb_len = sizeof(MAILBOX_t) - sizeof(struct mbox_header) -
5776 sizeof(uint32_t);
5777
5778 /*
5779 * Presume the allocation and response will fit into an embedded
5780 * mailbox. If not true, reconfigure to a non-embedded mailbox.
5781 */
5782 emb = LPFC_SLI4_MBX_EMBED;
5783 req_len = emb_len;
5784 if (req_len > emb_len) {
5785 req_len = curr_blks * sizeof(uint16_t) +
5786 sizeof(union lpfc_sli4_cfg_shdr) +
5787 sizeof(uint32_t);
5788 emb = LPFC_SLI4_MBX_NEMBED;
5789 }
5790
5791 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5792 if (!mbox)
5793 return -ENOMEM;
5794 memset(mbox, 0, sizeof(LPFC_MBOXQ_t));
5795
5796 alloc_len = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5797 LPFC_MBOX_OPCODE_GET_ALLOC_RSRC_EXTENT,
5798 req_len, emb);
5799 if (alloc_len < req_len) {
5800 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5801 "2983 Allocated DMA memory size (x%x) is "
5802 "less than the requested DMA memory "
5803 "size (x%x)\n", alloc_len, req_len);
5804 rc = -ENOMEM;
5805 goto err_exit;
5806 }
5807 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, curr_blks, type, emb);
5808 if (unlikely(rc)) {
5809 rc = -EIO;
5810 goto err_exit;
5811 }
5812
5813 if (!phba->sli4_hba.intr_enable)
5814 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5815 else {
James Smarta183a152011-10-10 21:32:43 -04005816 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smartb76f2dc2011-07-22 18:37:42 -04005817 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5818 }
5819
5820 if (unlikely(rc)) {
5821 rc = -EIO;
5822 goto err_exit;
5823 }
5824
5825 /*
5826 * Figure out where the response is located. Then get local pointers
5827 * to the response data. The port does not guarantee to respond to
5828 * all extents counts request so update the local variable with the
5829 * allocated count from the port.
5830 */
5831 if (emb == LPFC_SLI4_MBX_EMBED) {
5832 rsrc_ext = &mbox->u.mqe.un.alloc_rsrc_extents;
5833 shdr = &rsrc_ext->header.cfg_shdr;
5834 *extnt_cnt = bf_get(lpfc_mbx_rsrc_cnt, &rsrc_ext->u.rsp);
5835 } else {
5836 virtaddr = mbox->sge_array->addr[0];
5837 n_rsrc = (struct lpfc_mbx_nembed_rsrc_extent *) virtaddr;
5838 shdr = &n_rsrc->cfg_shdr;
5839 *extnt_cnt = bf_get(lpfc_mbx_rsrc_cnt, n_rsrc);
5840 }
5841
5842 if (bf_get(lpfc_mbox_hdr_status, &shdr->response)) {
5843 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5844 "2984 Failed to read allocated resources "
5845 "for type %d - Status 0x%x Add'l Status 0x%x.\n",
5846 type,
5847 bf_get(lpfc_mbox_hdr_status, &shdr->response),
5848 bf_get(lpfc_mbox_hdr_add_status, &shdr->response));
5849 rc = -EIO;
5850 goto err_exit;
5851 }
5852 err_exit:
5853 lpfc_sli4_mbox_cmd_free(phba, mbox);
5854 return rc;
5855}
5856
5857/**
James Smartda0436e2009-05-22 14:51:39 -04005858 * lpfc_sli4_hba_setup - SLI4 device intialization PCI function
5859 * @phba: Pointer to HBA context object.
5860 *
5861 * This function is the main SLI4 device intialization PCI function. This
5862 * function is called by the HBA intialization code, HBA reset code and
5863 * HBA error attention handler code. Caller is not required to hold any
5864 * locks.
5865 **/
5866int
5867lpfc_sli4_hba_setup(struct lpfc_hba *phba)
5868{
5869 int rc;
5870 LPFC_MBOXQ_t *mboxq;
5871 struct lpfc_mqe *mqe;
5872 uint8_t *vpd;
5873 uint32_t vpd_size;
5874 uint32_t ftr_rsp = 0;
5875 struct Scsi_Host *shost = lpfc_shost_from_vport(phba->pport);
5876 struct lpfc_vport *vport = phba->pport;
5877 struct lpfc_dmabuf *mp;
5878
5879 /* Perform a PCI function reset to start from clean */
5880 rc = lpfc_pci_function_reset(phba);
5881 if (unlikely(rc))
5882 return -ENODEV;
5883
5884 /* Check the HBA Host Status Register for readyness */
5885 rc = lpfc_sli4_post_status_check(phba);
5886 if (unlikely(rc))
5887 return -ENODEV;
5888 else {
5889 spin_lock_irq(&phba->hbalock);
5890 phba->sli.sli_flag |= LPFC_SLI_ACTIVE;
5891 spin_unlock_irq(&phba->hbalock);
5892 }
5893
5894 /*
5895 * Allocate a single mailbox container for initializing the
5896 * port.
5897 */
5898 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5899 if (!mboxq)
5900 return -ENOMEM;
5901
James Smartda0436e2009-05-22 14:51:39 -04005902 /* Issue READ_REV to collect vpd and FW information. */
James Smart49198b32010-04-06 15:04:33 -04005903 vpd_size = SLI4_PAGE_SIZE;
James Smartda0436e2009-05-22 14:51:39 -04005904 vpd = kzalloc(vpd_size, GFP_KERNEL);
5905 if (!vpd) {
5906 rc = -ENOMEM;
5907 goto out_free_mbox;
5908 }
5909
5910 rc = lpfc_sli4_read_rev(phba, mboxq, vpd, &vpd_size);
James Smart76a95d72010-11-20 23:11:48 -05005911 if (unlikely(rc)) {
5912 kfree(vpd);
5913 goto out_free_mbox;
5914 }
James Smartda0436e2009-05-22 14:51:39 -04005915 mqe = &mboxq->u.mqe;
James Smartf1126682009-06-10 17:22:44 -04005916 phba->sli_rev = bf_get(lpfc_mbx_rd_rev_sli_lvl, &mqe->un.read_rev);
5917 if (bf_get(lpfc_mbx_rd_rev_fcoe, &mqe->un.read_rev))
James Smart76a95d72010-11-20 23:11:48 -05005918 phba->hba_flag |= HBA_FCOE_MODE;
5919 else
5920 phba->hba_flag &= ~HBA_FCOE_MODE;
James Smart45ed1192009-10-02 15:17:02 -04005921
5922 if (bf_get(lpfc_mbx_rd_rev_cee_ver, &mqe->un.read_rev) ==
5923 LPFC_DCBX_CEE_MODE)
5924 phba->hba_flag |= HBA_FIP_SUPPORT;
5925 else
5926 phba->hba_flag &= ~HBA_FIP_SUPPORT;
5927
James Smartc31098c2011-04-16 11:03:33 -04005928 if (phba->sli_rev != LPFC_SLI_REV4) {
James Smartda0436e2009-05-22 14:51:39 -04005929 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
5930 "0376 READ_REV Error. SLI Level %d "
5931 "FCoE enabled %d\n",
James Smart76a95d72010-11-20 23:11:48 -05005932 phba->sli_rev, phba->hba_flag & HBA_FCOE_MODE);
James Smartda0436e2009-05-22 14:51:39 -04005933 rc = -EIO;
James Smart76a95d72010-11-20 23:11:48 -05005934 kfree(vpd);
5935 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04005936 }
James Smartcd1c8302011-10-10 21:33:25 -04005937
5938 /*
James Smartff78d8f2011-12-13 13:21:35 -05005939 * Continue initialization with default values even if driver failed
5940 * to read FCoE param config regions, only read parameters if the
5941 * board is FCoE
5942 */
5943 if (phba->hba_flag & HBA_FCOE_MODE &&
5944 lpfc_sli4_read_fcoe_params(phba))
5945 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_INIT,
5946 "2570 Failed to read FCoE parameters\n");
5947
5948 /*
James Smartcd1c8302011-10-10 21:33:25 -04005949 * Retrieve sli4 device physical port name, failure of doing it
5950 * is considered as non-fatal.
5951 */
5952 rc = lpfc_sli4_retrieve_pport_name(phba);
5953 if (!rc)
5954 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
5955 "3080 Successful retrieving SLI4 device "
5956 "physical port name: %s.\n", phba->Port);
5957
James Smartda0436e2009-05-22 14:51:39 -04005958 /*
5959 * Evaluate the read rev and vpd data. Populate the driver
5960 * state with the results. If this routine fails, the failure
5961 * is not fatal as the driver will use generic values.
5962 */
5963 rc = lpfc_parse_vpd(phba, vpd, vpd_size);
5964 if (unlikely(!rc)) {
5965 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
5966 "0377 Error %d parsing vpd. "
5967 "Using defaults.\n", rc);
5968 rc = 0;
5969 }
James Smart76a95d72010-11-20 23:11:48 -05005970 kfree(vpd);
James Smartda0436e2009-05-22 14:51:39 -04005971
James Smartf1126682009-06-10 17:22:44 -04005972 /* Save information as VPD data */
5973 phba->vpd.rev.biuRev = mqe->un.read_rev.first_hw_rev;
5974 phba->vpd.rev.smRev = mqe->un.read_rev.second_hw_rev;
5975 phba->vpd.rev.endecRev = mqe->un.read_rev.third_hw_rev;
5976 phba->vpd.rev.fcphHigh = bf_get(lpfc_mbx_rd_rev_fcph_high,
5977 &mqe->un.read_rev);
5978 phba->vpd.rev.fcphLow = bf_get(lpfc_mbx_rd_rev_fcph_low,
5979 &mqe->un.read_rev);
5980 phba->vpd.rev.feaLevelHigh = bf_get(lpfc_mbx_rd_rev_ftr_lvl_high,
5981 &mqe->un.read_rev);
5982 phba->vpd.rev.feaLevelLow = bf_get(lpfc_mbx_rd_rev_ftr_lvl_low,
5983 &mqe->un.read_rev);
5984 phba->vpd.rev.sli1FwRev = mqe->un.read_rev.fw_id_rev;
5985 memcpy(phba->vpd.rev.sli1FwName, mqe->un.read_rev.fw_name, 16);
5986 phba->vpd.rev.sli2FwRev = mqe->un.read_rev.ulp_fw_id_rev;
5987 memcpy(phba->vpd.rev.sli2FwName, mqe->un.read_rev.ulp_fw_name, 16);
5988 phba->vpd.rev.opFwRev = mqe->un.read_rev.fw_id_rev;
5989 memcpy(phba->vpd.rev.opFwName, mqe->un.read_rev.fw_name, 16);
5990 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
5991 "(%d):0380 READ_REV Status x%x "
5992 "fw_rev:%s fcphHi:%x fcphLo:%x flHi:%x flLo:%x\n",
5993 mboxq->vport ? mboxq->vport->vpi : 0,
5994 bf_get(lpfc_mqe_status, mqe),
5995 phba->vpd.rev.opFwName,
5996 phba->vpd.rev.fcphHigh, phba->vpd.rev.fcphLow,
5997 phba->vpd.rev.feaLevelHigh, phba->vpd.rev.feaLevelLow);
James Smartda0436e2009-05-22 14:51:39 -04005998
5999 /*
6000 * Discover the port's supported feature set and match it against the
6001 * hosts requests.
6002 */
6003 lpfc_request_features(phba, mboxq);
6004 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6005 if (unlikely(rc)) {
6006 rc = -EIO;
James Smart76a95d72010-11-20 23:11:48 -05006007 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006008 }
6009
6010 /*
6011 * The port must support FCP initiator mode as this is the
6012 * only mode running in the host.
6013 */
6014 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_fcpi, &mqe->un.req_ftrs))) {
6015 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
6016 "0378 No support for fcpi mode.\n");
6017 ftr_rsp++;
6018 }
James Smartfedd3b72011-02-16 12:39:24 -05006019 if (bf_get(lpfc_mbx_rq_ftr_rsp_perfh, &mqe->un.req_ftrs))
6020 phba->sli3_options |= LPFC_SLI4_PERFH_ENABLED;
6021 else
6022 phba->sli3_options &= ~LPFC_SLI4_PERFH_ENABLED;
James Smartda0436e2009-05-22 14:51:39 -04006023 /*
6024 * If the port cannot support the host's requested features
6025 * then turn off the global config parameters to disable the
6026 * feature in the driver. This is not a fatal error.
6027 */
James Smartbf086112011-08-21 21:48:13 -04006028 phba->sli3_options &= ~LPFC_SLI3_BG_ENABLED;
6029 if (phba->cfg_enable_bg) {
6030 if (bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs))
6031 phba->sli3_options |= LPFC_SLI3_BG_ENABLED;
6032 else
6033 ftr_rsp++;
6034 }
James Smartda0436e2009-05-22 14:51:39 -04006035
6036 if (phba->max_vpi && phba->cfg_enable_npiv &&
6037 !(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
6038 ftr_rsp++;
6039
6040 if (ftr_rsp) {
6041 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
6042 "0379 Feature Mismatch Data: x%08x %08x "
6043 "x%x x%x x%x\n", mqe->un.req_ftrs.word2,
6044 mqe->un.req_ftrs.word3, phba->cfg_enable_bg,
6045 phba->cfg_enable_npiv, phba->max_vpi);
6046 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs)))
6047 phba->cfg_enable_bg = 0;
6048 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
6049 phba->cfg_enable_npiv = 0;
6050 }
6051
6052 /* These SLI3 features are assumed in SLI4 */
6053 spin_lock_irq(&phba->hbalock);
6054 phba->sli3_options |= (LPFC_SLI3_NPIV_ENABLED | LPFC_SLI3_HBQ_ENABLED);
6055 spin_unlock_irq(&phba->hbalock);
6056
James Smart6d368e52011-05-24 11:44:12 -04006057 /*
6058 * Allocate all resources (xri,rpi,vpi,vfi) now. Subsequent
6059 * calls depends on these resources to complete port setup.
6060 */
6061 rc = lpfc_sli4_alloc_resource_identifiers(phba);
6062 if (rc) {
6063 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6064 "2920 Failed to alloc Resource IDs "
6065 "rc = x%x\n", rc);
6066 goto out_free_mbox;
6067 }
James Smartff78d8f2011-12-13 13:21:35 -05006068 /* update physical xri mappings in the scsi buffers */
6069 lpfc_scsi_buf_update(phba);
James Smart6d368e52011-05-24 11:44:12 -04006070
James Smartda0436e2009-05-22 14:51:39 -04006071 /* Read the port's service parameters. */
James Smart9f1177a2010-02-26 14:12:57 -05006072 rc = lpfc_read_sparam(phba, mboxq, vport->vpi);
6073 if (rc) {
6074 phba->link_state = LPFC_HBA_ERROR;
6075 rc = -ENOMEM;
James Smart76a95d72010-11-20 23:11:48 -05006076 goto out_free_mbox;
James Smart9f1177a2010-02-26 14:12:57 -05006077 }
6078
James Smartda0436e2009-05-22 14:51:39 -04006079 mboxq->vport = vport;
6080 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6081 mp = (struct lpfc_dmabuf *) mboxq->context1;
6082 if (rc == MBX_SUCCESS) {
6083 memcpy(&vport->fc_sparam, mp->virt, sizeof(struct serv_parm));
6084 rc = 0;
6085 }
6086
6087 /*
6088 * This memory was allocated by the lpfc_read_sparam routine. Release
6089 * it to the mbuf pool.
6090 */
6091 lpfc_mbuf_free(phba, mp->virt, mp->phys);
6092 kfree(mp);
6093 mboxq->context1 = NULL;
6094 if (unlikely(rc)) {
6095 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6096 "0382 READ_SPARAM command failed "
6097 "status %d, mbxStatus x%x\n",
6098 rc, bf_get(lpfc_mqe_status, mqe));
6099 phba->link_state = LPFC_HBA_ERROR;
6100 rc = -EIO;
James Smart76a95d72010-11-20 23:11:48 -05006101 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006102 }
6103
James Smart05580562011-05-24 11:40:48 -04006104 lpfc_update_vport_wwn(vport);
James Smartda0436e2009-05-22 14:51:39 -04006105
6106 /* Update the fc_host data structures with new wwn. */
6107 fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn);
6108 fc_host_port_name(shost) = wwn_to_u64(vport->fc_portname.u.wwn);
6109
6110 /* Register SGL pool to the device using non-embedded mailbox command */
James Smart6d368e52011-05-24 11:44:12 -04006111 if (!phba->sli4_hba.extents_in_use) {
6112 rc = lpfc_sli4_post_els_sgl_list(phba);
6113 if (unlikely(rc)) {
6114 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6115 "0582 Error %d during els sgl post "
6116 "operation\n", rc);
6117 rc = -ENODEV;
6118 goto out_free_mbox;
6119 }
6120 } else {
6121 rc = lpfc_sli4_post_els_sgl_list_ext(phba);
6122 if (unlikely(rc)) {
6123 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6124 "2560 Error %d during els sgl post "
6125 "operation\n", rc);
6126 rc = -ENODEV;
6127 goto out_free_mbox;
6128 }
James Smartda0436e2009-05-22 14:51:39 -04006129 }
6130
6131 /* Register SCSI SGL pool to the device */
6132 rc = lpfc_sli4_repost_scsi_sgl_list(phba);
6133 if (unlikely(rc)) {
James Smart6d368e52011-05-24 11:44:12 -04006134 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smart6a9c52c2009-10-02 15:16:51 -04006135 "0383 Error %d during scsi sgl post "
6136 "operation\n", rc);
James Smartda0436e2009-05-22 14:51:39 -04006137 /* Some Scsi buffers were moved to the abort scsi list */
6138 /* A pci function reset will repost them */
6139 rc = -ENODEV;
James Smart76a95d72010-11-20 23:11:48 -05006140 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006141 }
6142
6143 /* Post the rpi header region to the device. */
6144 rc = lpfc_sli4_post_all_rpi_hdrs(phba);
6145 if (unlikely(rc)) {
6146 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6147 "0393 Error %d during rpi post operation\n",
6148 rc);
6149 rc = -ENODEV;
James Smart76a95d72010-11-20 23:11:48 -05006150 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006151 }
James Smartda0436e2009-05-22 14:51:39 -04006152
James Smart5350d872011-10-10 21:33:49 -04006153 /* Create all the SLI4 queues */
6154 rc = lpfc_sli4_queue_create(phba);
6155 if (rc) {
6156 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6157 "3089 Failed to allocate queues\n");
6158 rc = -ENODEV;
6159 goto out_stop_timers;
6160 }
James Smartda0436e2009-05-22 14:51:39 -04006161 /* Set up all the queues to the device */
6162 rc = lpfc_sli4_queue_setup(phba);
6163 if (unlikely(rc)) {
6164 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6165 "0381 Error %d during queue setup.\n ", rc);
James Smart5350d872011-10-10 21:33:49 -04006166 goto out_destroy_queue;
James Smartda0436e2009-05-22 14:51:39 -04006167 }
6168
6169 /* Arm the CQs and then EQs on device */
6170 lpfc_sli4_arm_cqeq_intr(phba);
6171
6172 /* Indicate device interrupt mode */
6173 phba->sli4_hba.intr_enable = 1;
6174
6175 /* Allow asynchronous mailbox command to go through */
6176 spin_lock_irq(&phba->hbalock);
6177 phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
6178 spin_unlock_irq(&phba->hbalock);
6179
6180 /* Post receive buffers to the device */
6181 lpfc_sli4_rb_setup(phba);
6182
James Smartfc2b9892010-02-26 14:15:29 -05006183 /* Reset HBA FCF states after HBA reset */
6184 phba->fcf.fcf_flag = 0;
6185 phba->fcf.current_rec.flag = 0;
6186
James Smartda0436e2009-05-22 14:51:39 -04006187 /* Start the ELS watchdog timer */
James Smart8fa38512009-07-19 10:01:03 -04006188 mod_timer(&vport->els_tmofunc,
6189 jiffies + HZ * (phba->fc_ratov * 2));
James Smartda0436e2009-05-22 14:51:39 -04006190
6191 /* Start heart beat timer */
6192 mod_timer(&phba->hb_tmofunc,
6193 jiffies + HZ * LPFC_HB_MBOX_INTERVAL);
6194 phba->hb_outstanding = 0;
6195 phba->last_completion_time = jiffies;
6196
6197 /* Start error attention (ERATT) polling timer */
6198 mod_timer(&phba->eratt_poll, jiffies + HZ * LPFC_ERATT_POLL_INTERVAL);
6199
James Smart75baf692010-06-08 18:31:21 -04006200 /* Enable PCIe device Advanced Error Reporting (AER) if configured */
6201 if (phba->cfg_aer_support == 1 && !(phba->hba_flag & HBA_AER_ENABLED)) {
6202 rc = pci_enable_pcie_error_reporting(phba->pcidev);
6203 if (!rc) {
6204 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6205 "2829 This device supports "
6206 "Advanced Error Reporting (AER)\n");
6207 spin_lock_irq(&phba->hbalock);
6208 phba->hba_flag |= HBA_AER_ENABLED;
6209 spin_unlock_irq(&phba->hbalock);
6210 } else {
6211 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6212 "2830 This device does not support "
6213 "Advanced Error Reporting (AER)\n");
6214 phba->cfg_aer_support = 0;
6215 }
James Smart0a96e972011-07-22 18:37:28 -04006216 rc = 0;
James Smart75baf692010-06-08 18:31:21 -04006217 }
6218
James Smart76a95d72010-11-20 23:11:48 -05006219 if (!(phba->hba_flag & HBA_FCOE_MODE)) {
6220 /*
6221 * The FC Port needs to register FCFI (index 0)
6222 */
6223 lpfc_reg_fcfi(phba, mboxq);
6224 mboxq->vport = phba->pport;
6225 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
James Smart9589b0622011-04-16 11:03:17 -04006226 if (rc != MBX_SUCCESS)
James Smart76a95d72010-11-20 23:11:48 -05006227 goto out_unset_queue;
James Smart9589b0622011-04-16 11:03:17 -04006228 rc = 0;
6229 phba->fcf.fcfi = bf_get(lpfc_reg_fcfi_fcfi,
6230 &mboxq->u.mqe.un.reg_fcfi);
James Smart026abb82011-12-13 13:20:45 -05006231
6232 /* Check if the port is configured to be disabled */
6233 lpfc_sli_read_link_ste(phba);
James Smart76a95d72010-11-20 23:11:48 -05006234 }
James Smart026abb82011-12-13 13:20:45 -05006235
James Smartda0436e2009-05-22 14:51:39 -04006236 /*
6237 * The port is ready, set the host's link state to LINK_DOWN
6238 * in preparation for link interrupts.
6239 */
James Smartda0436e2009-05-22 14:51:39 -04006240 spin_lock_irq(&phba->hbalock);
6241 phba->link_state = LPFC_LINK_DOWN;
6242 spin_unlock_irq(&phba->hbalock);
James Smart026abb82011-12-13 13:20:45 -05006243 if (!(phba->hba_flag & HBA_FCOE_MODE) &&
6244 (phba->hba_flag & LINK_DISABLED)) {
6245 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_SLI,
6246 "3103 Adapter Link is disabled.\n");
6247 lpfc_down_link(phba, mboxq);
6248 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6249 if (rc != MBX_SUCCESS) {
6250 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_SLI,
6251 "3104 Adapter failed to issue "
6252 "DOWN_LINK mbox cmd, rc:x%x\n", rc);
6253 goto out_unset_queue;
6254 }
6255 } else if (phba->cfg_suppress_link_up == LPFC_INITIALIZE_LINK) {
James Smart1b511972011-12-13 13:23:09 -05006256 /* don't perform init_link on SLI4 FC port loopback test */
6257 if (!(phba->link_flag & LS_LOOPBACK_MODE)) {
6258 rc = phba->lpfc_hba_init_link(phba, MBX_NOWAIT);
6259 if (rc)
6260 goto out_unset_queue;
6261 }
James Smart5350d872011-10-10 21:33:49 -04006262 }
6263 mempool_free(mboxq, phba->mbox_mem_pool);
6264 return rc;
James Smart76a95d72010-11-20 23:11:48 -05006265out_unset_queue:
James Smartda0436e2009-05-22 14:51:39 -04006266 /* Unset all the queues set up in this routine when error out */
James Smart5350d872011-10-10 21:33:49 -04006267 lpfc_sli4_queue_unset(phba);
6268out_destroy_queue:
6269 lpfc_sli4_queue_destroy(phba);
James Smartda0436e2009-05-22 14:51:39 -04006270out_stop_timers:
James Smart5350d872011-10-10 21:33:49 -04006271 lpfc_stop_hba_timers(phba);
James Smartda0436e2009-05-22 14:51:39 -04006272out_free_mbox:
6273 mempool_free(mboxq, phba->mbox_mem_pool);
6274 return rc;
6275}
James Smarte59058c2008-08-24 21:49:00 -04006276
6277/**
James Smart3621a712009-04-06 18:47:14 -04006278 * lpfc_mbox_timeout - Timeout call back function for mbox timer
James Smarte59058c2008-08-24 21:49:00 -04006279 * @ptr: context object - pointer to hba structure.
dea31012005-04-17 16:05:31 -05006280 *
James Smarte59058c2008-08-24 21:49:00 -04006281 * This is the callback function for mailbox timer. The mailbox
6282 * timer is armed when a new mailbox command is issued and the timer
6283 * is deleted when the mailbox complete. The function is called by
6284 * the kernel timer code when a mailbox does not complete within
6285 * expected time. This function wakes up the worker thread to
6286 * process the mailbox timeout and returns. All the processing is
6287 * done by the worker thread function lpfc_mbox_timeout_handler.
6288 **/
dea31012005-04-17 16:05:31 -05006289void
6290lpfc_mbox_timeout(unsigned long ptr)
6291{
James Smart92d7f7b2007-06-17 19:56:38 -05006292 struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
dea31012005-04-17 16:05:31 -05006293 unsigned long iflag;
James Smart2e0fef82007-06-17 19:56:36 -05006294 uint32_t tmo_posted;
dea31012005-04-17 16:05:31 -05006295
James Smart2e0fef82007-06-17 19:56:36 -05006296 spin_lock_irqsave(&phba->pport->work_port_lock, iflag);
James Smart92d7f7b2007-06-17 19:56:38 -05006297 tmo_posted = phba->pport->work_port_events & WORKER_MBOX_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05006298 if (!tmo_posted)
6299 phba->pport->work_port_events |= WORKER_MBOX_TMO;
6300 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflag);
6301
James Smart5e9d9b82008-06-14 22:52:53 -04006302 if (!tmo_posted)
6303 lpfc_worker_wake_up(phba);
6304 return;
dea31012005-04-17 16:05:31 -05006305}
6306
James Smarte59058c2008-08-24 21:49:00 -04006307
6308/**
James Smart3621a712009-04-06 18:47:14 -04006309 * lpfc_mbox_timeout_handler - Worker thread function to handle mailbox timeout
James Smarte59058c2008-08-24 21:49:00 -04006310 * @phba: Pointer to HBA context object.
6311 *
6312 * This function is called from worker thread when a mailbox command times out.
6313 * The caller is not required to hold any locks. This function will reset the
6314 * HBA and recover all the pending commands.
6315 **/
dea31012005-04-17 16:05:31 -05006316void
6317lpfc_mbox_timeout_handler(struct lpfc_hba *phba)
6318{
James Smart2e0fef82007-06-17 19:56:36 -05006319 LPFC_MBOXQ_t *pmbox = phba->sli.mbox_active;
James Smart04c68492009-05-22 14:52:52 -04006320 MAILBOX_t *mb = &pmbox->u.mb;
James Smart1dcb58e2007-04-25 09:51:30 -04006321 struct lpfc_sli *psli = &phba->sli;
6322 struct lpfc_sli_ring *pring;
dea31012005-04-17 16:05:31 -05006323
James Smarta257bf92009-04-06 18:48:10 -04006324 /* Check the pmbox pointer first. There is a race condition
6325 * between the mbox timeout handler getting executed in the
6326 * worklist and the mailbox actually completing. When this
6327 * race condition occurs, the mbox_active will be NULL.
6328 */
6329 spin_lock_irq(&phba->hbalock);
6330 if (pmbox == NULL) {
6331 lpfc_printf_log(phba, KERN_WARNING,
6332 LOG_MBOX | LOG_SLI,
6333 "0353 Active Mailbox cleared - mailbox timeout "
6334 "exiting\n");
6335 spin_unlock_irq(&phba->hbalock);
6336 return;
6337 }
6338
dea31012005-04-17 16:05:31 -05006339 /* Mbox cmd <mbxCommand> timeout */
James Smarted957682007-06-17 19:56:37 -05006340 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04006341 "0310 Mailbox command x%x timeout Data: x%x x%x x%p\n",
James Smart92d7f7b2007-06-17 19:56:38 -05006342 mb->mbxCommand,
6343 phba->pport->port_state,
6344 phba->sli.sli_flag,
6345 phba->sli.mbox_active);
James Smarta257bf92009-04-06 18:48:10 -04006346 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05006347
James Smart1dcb58e2007-04-25 09:51:30 -04006348 /* Setting state unknown so lpfc_sli_abort_iocb_ring
6349 * would get IOCB_ERROR from lpfc_sli_issue_iocb, allowing
Lucas De Marchi25985ed2011-03-30 22:57:33 -03006350 * it to fail all outstanding SCSI IO.
James Smart1dcb58e2007-04-25 09:51:30 -04006351 */
James Smart2e0fef82007-06-17 19:56:36 -05006352 spin_lock_irq(&phba->pport->work_port_lock);
6353 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
6354 spin_unlock_irq(&phba->pport->work_port_lock);
6355 spin_lock_irq(&phba->hbalock);
6356 phba->link_state = LPFC_LINK_UNKNOWN;
James Smartf4b4c682009-05-22 14:53:12 -04006357 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05006358 spin_unlock_irq(&phba->hbalock);
James Smart1dcb58e2007-04-25 09:51:30 -04006359
6360 pring = &psli->ring[psli->fcp_ring];
6361 lpfc_sli_abort_iocb_ring(phba, pring);
6362
6363 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smart76bb24e2007-10-27 13:38:00 -04006364 "0345 Resetting board due to mailbox timeout\n");
James Smart3772a992009-05-22 14:50:54 -04006365
6366 /* Reset the HBA device */
6367 lpfc_reset_hba(phba);
dea31012005-04-17 16:05:31 -05006368}
6369
James Smarte59058c2008-08-24 21:49:00 -04006370/**
James Smart3772a992009-05-22 14:50:54 -04006371 * lpfc_sli_issue_mbox_s3 - Issue an SLI3 mailbox command to firmware
James Smarte59058c2008-08-24 21:49:00 -04006372 * @phba: Pointer to HBA context object.
6373 * @pmbox: Pointer to mailbox object.
6374 * @flag: Flag indicating how the mailbox need to be processed.
6375 *
6376 * This function is called by discovery code and HBA management code
James Smart3772a992009-05-22 14:50:54 -04006377 * to submit a mailbox command to firmware with SLI-3 interface spec. This
6378 * function gets the hbalock to protect the data structures.
James Smarte59058c2008-08-24 21:49:00 -04006379 * The mailbox command can be submitted in polling mode, in which case
6380 * this function will wait in a polling loop for the completion of the
6381 * mailbox.
6382 * If the mailbox is submitted in no_wait mode (not polling) the
6383 * function will submit the command and returns immediately without waiting
6384 * for the mailbox completion. The no_wait is supported only when HBA
6385 * is in SLI2/SLI3 mode - interrupts are enabled.
6386 * The SLI interface allows only one mailbox pending at a time. If the
6387 * mailbox is issued in polling mode and there is already a mailbox
6388 * pending, then the function will return an error. If the mailbox is issued
6389 * in NO_WAIT mode and there is a mailbox pending already, the function
6390 * will return MBX_BUSY after queuing the mailbox into mailbox queue.
6391 * The sli layer owns the mailbox object until the completion of mailbox
6392 * command if this function return MBX_BUSY or MBX_SUCCESS. For all other
6393 * return codes the caller owns the mailbox command after the return of
6394 * the function.
6395 **/
James Smart3772a992009-05-22 14:50:54 -04006396static int
6397lpfc_sli_issue_mbox_s3(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox,
6398 uint32_t flag)
dea31012005-04-17 16:05:31 -05006399{
dea31012005-04-17 16:05:31 -05006400 MAILBOX_t *mb;
James Smart2e0fef82007-06-17 19:56:36 -05006401 struct lpfc_sli *psli = &phba->sli;
dea31012005-04-17 16:05:31 -05006402 uint32_t status, evtctr;
James Smart9940b972011-03-11 16:06:12 -05006403 uint32_t ha_copy, hc_copy;
dea31012005-04-17 16:05:31 -05006404 int i;
James Smart09372822008-01-11 01:52:54 -05006405 unsigned long timeout;
dea31012005-04-17 16:05:31 -05006406 unsigned long drvr_flag = 0;
James Smart34b02dc2008-08-24 21:49:55 -04006407 uint32_t word0, ldata;
dea31012005-04-17 16:05:31 -05006408 void __iomem *to_slim;
James Smart58da1ff2008-04-07 10:15:56 -04006409 int processing_queue = 0;
6410
6411 spin_lock_irqsave(&phba->hbalock, drvr_flag);
6412 if (!pmbox) {
James Smart8568a4d2009-07-19 10:01:16 -04006413 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart58da1ff2008-04-07 10:15:56 -04006414 /* processing mbox queue from intr_handler */
James Smart3772a992009-05-22 14:50:54 -04006415 if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
6416 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6417 return MBX_SUCCESS;
6418 }
James Smart58da1ff2008-04-07 10:15:56 -04006419 processing_queue = 1;
James Smart58da1ff2008-04-07 10:15:56 -04006420 pmbox = lpfc_mbox_get(phba);
6421 if (!pmbox) {
6422 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6423 return MBX_SUCCESS;
6424 }
6425 }
dea31012005-04-17 16:05:31 -05006426
James Smarted957682007-06-17 19:56:37 -05006427 if (pmbox->mbox_cmpl && pmbox->mbox_cmpl != lpfc_sli_def_mbox_cmpl &&
James Smart92d7f7b2007-06-17 19:56:38 -05006428 pmbox->mbox_cmpl != lpfc_sli_wake_mbox_wait) {
James Smarted957682007-06-17 19:56:37 -05006429 if(!pmbox->vport) {
James Smart58da1ff2008-04-07 10:15:56 -04006430 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
James Smarted957682007-06-17 19:56:37 -05006431 lpfc_printf_log(phba, KERN_ERR,
James Smart92d7f7b2007-06-17 19:56:38 -05006432 LOG_MBOX | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04006433 "1806 Mbox x%x failed. No vport\n",
James Smart3772a992009-05-22 14:50:54 -04006434 pmbox->u.mb.mbxCommand);
James Smarted957682007-06-17 19:56:37 -05006435 dump_stack();
James Smart58da1ff2008-04-07 10:15:56 -04006436 goto out_not_finished;
James Smarted957682007-06-17 19:56:37 -05006437 }
6438 }
6439
Linas Vepstas8d63f372007-02-14 14:28:36 -06006440 /* If the PCI channel is in offline state, do not post mbox. */
James Smart58da1ff2008-04-07 10:15:56 -04006441 if (unlikely(pci_channel_offline(phba->pcidev))) {
6442 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6443 goto out_not_finished;
6444 }
Linas Vepstas8d63f372007-02-14 14:28:36 -06006445
James Smarta257bf92009-04-06 18:48:10 -04006446 /* If HBA has a deferred error attention, fail the iocb. */
6447 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
6448 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6449 goto out_not_finished;
6450 }
6451
dea31012005-04-17 16:05:31 -05006452 psli = &phba->sli;
James Smart92d7f7b2007-06-17 19:56:38 -05006453
James Smart3772a992009-05-22 14:50:54 -04006454 mb = &pmbox->u.mb;
dea31012005-04-17 16:05:31 -05006455 status = MBX_SUCCESS;
6456
James Smart2e0fef82007-06-17 19:56:36 -05006457 if (phba->link_state == LPFC_HBA_ERROR) {
6458 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
Jamie Wellnitz41415862006-02-28 19:25:27 -05006459
6460 /* Mbox command <mbxCommand> cannot issue */
James Smart3772a992009-05-22 14:50:54 -04006461 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6462 "(%d):0311 Mailbox command x%x cannot "
6463 "issue Data: x%x x%x\n",
6464 pmbox->vport ? pmbox->vport->vpi : 0,
6465 pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
James Smart58da1ff2008-04-07 10:15:56 -04006466 goto out_not_finished;
Jamie Wellnitz41415862006-02-28 19:25:27 -05006467 }
6468
James Smart9940b972011-03-11 16:06:12 -05006469 if (mb->mbxCommand != MBX_KILL_BOARD && flag & MBX_NOWAIT) {
6470 if (lpfc_readl(phba->HCregaddr, &hc_copy) ||
6471 !(hc_copy & HC_MBINT_ENA)) {
6472 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6473 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smart3772a992009-05-22 14:50:54 -04006474 "(%d):2528 Mailbox command x%x cannot "
6475 "issue Data: x%x x%x\n",
6476 pmbox->vport ? pmbox->vport->vpi : 0,
6477 pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
James Smart9940b972011-03-11 16:06:12 -05006478 goto out_not_finished;
6479 }
James Smart92908312006-03-07 15:04:13 -05006480 }
6481
dea31012005-04-17 16:05:31 -05006482 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
6483 /* Polling for a mbox command when another one is already active
6484 * is not allowed in SLI. Also, the driver must have established
6485 * SLI2 mode to queue and process multiple mbox commands.
6486 */
6487
6488 if (flag & MBX_POLL) {
James Smart2e0fef82007-06-17 19:56:36 -05006489 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05006490
6491 /* Mbox command <mbxCommand> cannot issue */
James Smart3772a992009-05-22 14:50:54 -04006492 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6493 "(%d):2529 Mailbox command x%x "
6494 "cannot issue Data: x%x x%x\n",
6495 pmbox->vport ? pmbox->vport->vpi : 0,
6496 pmbox->u.mb.mbxCommand,
6497 psli->sli_flag, flag);
James Smart58da1ff2008-04-07 10:15:56 -04006498 goto out_not_finished;
dea31012005-04-17 16:05:31 -05006499 }
6500
James Smart3772a992009-05-22 14:50:54 -04006501 if (!(psli->sli_flag & LPFC_SLI_ACTIVE)) {
James Smart2e0fef82007-06-17 19:56:36 -05006502 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05006503 /* Mbox command <mbxCommand> cannot issue */
James Smart3772a992009-05-22 14:50:54 -04006504 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6505 "(%d):2530 Mailbox command x%x "
6506 "cannot issue Data: x%x x%x\n",
6507 pmbox->vport ? pmbox->vport->vpi : 0,
6508 pmbox->u.mb.mbxCommand,
6509 psli->sli_flag, flag);
James Smart58da1ff2008-04-07 10:15:56 -04006510 goto out_not_finished;
dea31012005-04-17 16:05:31 -05006511 }
6512
dea31012005-04-17 16:05:31 -05006513 /* Another mailbox command is still being processed, queue this
6514 * command to be processed later.
6515 */
6516 lpfc_mbox_put(phba, pmbox);
6517
6518 /* Mbox cmd issue - BUSY */
James Smarted957682007-06-17 19:56:37 -05006519 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04006520 "(%d):0308 Mbox cmd issue - BUSY Data: "
James Smart92d7f7b2007-06-17 19:56:38 -05006521 "x%x x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05006522 pmbox->vport ? pmbox->vport->vpi : 0xffffff,
6523 mb->mbxCommand, phba->pport->port_state,
6524 psli->sli_flag, flag);
dea31012005-04-17 16:05:31 -05006525
6526 psli->slistat.mbox_busy++;
James Smart2e0fef82007-06-17 19:56:36 -05006527 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05006528
James Smart858c9f62007-06-17 19:56:39 -05006529 if (pmbox->vport) {
6530 lpfc_debugfs_disc_trc(pmbox->vport,
6531 LPFC_DISC_TRC_MBOX_VPORT,
6532 "MBOX Bsy vport: cmd:x%x mb:x%x x%x",
6533 (uint32_t)mb->mbxCommand,
6534 mb->un.varWords[0], mb->un.varWords[1]);
6535 }
6536 else {
6537 lpfc_debugfs_disc_trc(phba->pport,
6538 LPFC_DISC_TRC_MBOX,
6539 "MBOX Bsy: cmd:x%x mb:x%x x%x",
6540 (uint32_t)mb->mbxCommand,
6541 mb->un.varWords[0], mb->un.varWords[1]);
6542 }
6543
James Smart2e0fef82007-06-17 19:56:36 -05006544 return MBX_BUSY;
dea31012005-04-17 16:05:31 -05006545 }
6546
dea31012005-04-17 16:05:31 -05006547 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
6548
6549 /* If we are not polling, we MUST be in SLI2 mode */
6550 if (flag != MBX_POLL) {
James Smart3772a992009-05-22 14:50:54 -04006551 if (!(psli->sli_flag & LPFC_SLI_ACTIVE) &&
Jamie Wellnitz41415862006-02-28 19:25:27 -05006552 (mb->mbxCommand != MBX_KILL_BOARD)) {
dea31012005-04-17 16:05:31 -05006553 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05006554 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05006555 /* Mbox command <mbxCommand> cannot issue */
James Smart3772a992009-05-22 14:50:54 -04006556 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6557 "(%d):2531 Mailbox command x%x "
6558 "cannot issue Data: x%x x%x\n",
6559 pmbox->vport ? pmbox->vport->vpi : 0,
6560 pmbox->u.mb.mbxCommand,
6561 psli->sli_flag, flag);
James Smart58da1ff2008-04-07 10:15:56 -04006562 goto out_not_finished;
dea31012005-04-17 16:05:31 -05006563 }
6564 /* timeout active mbox command */
James Smarta309a6b2006-08-01 07:33:43 -04006565 mod_timer(&psli->mbox_tmo, (jiffies +
James Smarta183a152011-10-10 21:32:43 -04006566 (HZ * lpfc_mbox_tmo_val(phba, pmbox))));
dea31012005-04-17 16:05:31 -05006567 }
6568
6569 /* Mailbox cmd <cmd> issue */
James Smarted957682007-06-17 19:56:37 -05006570 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04006571 "(%d):0309 Mailbox cmd x%x issue Data: x%x x%x "
James Smart92d7f7b2007-06-17 19:56:38 -05006572 "x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04006573 pmbox->vport ? pmbox->vport->vpi : 0,
James Smart92d7f7b2007-06-17 19:56:38 -05006574 mb->mbxCommand, phba->pport->port_state,
6575 psli->sli_flag, flag);
dea31012005-04-17 16:05:31 -05006576
James Smart858c9f62007-06-17 19:56:39 -05006577 if (mb->mbxCommand != MBX_HEARTBEAT) {
6578 if (pmbox->vport) {
6579 lpfc_debugfs_disc_trc(pmbox->vport,
6580 LPFC_DISC_TRC_MBOX_VPORT,
6581 "MBOX Send vport: cmd:x%x mb:x%x x%x",
6582 (uint32_t)mb->mbxCommand,
6583 mb->un.varWords[0], mb->un.varWords[1]);
6584 }
6585 else {
6586 lpfc_debugfs_disc_trc(phba->pport,
6587 LPFC_DISC_TRC_MBOX,
6588 "MBOX Send: cmd:x%x mb:x%x x%x",
6589 (uint32_t)mb->mbxCommand,
6590 mb->un.varWords[0], mb->un.varWords[1]);
6591 }
6592 }
6593
dea31012005-04-17 16:05:31 -05006594 psli->slistat.mbox_cmd++;
6595 evtctr = psli->slistat.mbox_event;
6596
6597 /* next set own bit for the adapter and copy over command word */
6598 mb->mbxOwner = OWN_CHIP;
6599
James Smart3772a992009-05-22 14:50:54 -04006600 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
James Smart7a470272010-03-15 11:25:20 -04006601 /* Populate mbox extension offset word. */
6602 if (pmbox->in_ext_byte_len || pmbox->out_ext_byte_len) {
6603 *(((uint32_t *)mb) + pmbox->mbox_offset_word)
6604 = (uint8_t *)phba->mbox_ext
6605 - (uint8_t *)phba->mbox;
6606 }
6607
6608 /* Copy the mailbox extension data */
6609 if (pmbox->in_ext_byte_len && pmbox->context2) {
6610 lpfc_sli_pcimem_bcopy(pmbox->context2,
6611 (uint8_t *)phba->mbox_ext,
6612 pmbox->in_ext_byte_len);
6613 }
6614 /* Copy command data to host SLIM area */
James Smart34b02dc2008-08-24 21:49:55 -04006615 lpfc_sli_pcimem_bcopy(mb, phba->mbox, MAILBOX_CMD_SIZE);
dea31012005-04-17 16:05:31 -05006616 } else {
James Smart7a470272010-03-15 11:25:20 -04006617 /* Populate mbox extension offset word. */
6618 if (pmbox->in_ext_byte_len || pmbox->out_ext_byte_len)
6619 *(((uint32_t *)mb) + pmbox->mbox_offset_word)
6620 = MAILBOX_HBA_EXT_OFFSET;
6621
6622 /* Copy the mailbox extension data */
6623 if (pmbox->in_ext_byte_len && pmbox->context2) {
6624 lpfc_memcpy_to_slim(phba->MBslimaddr +
6625 MAILBOX_HBA_EXT_OFFSET,
6626 pmbox->context2, pmbox->in_ext_byte_len);
6627
6628 }
James Smart92908312006-03-07 15:04:13 -05006629 if (mb->mbxCommand == MBX_CONFIG_PORT) {
dea31012005-04-17 16:05:31 -05006630 /* copy command data into host mbox for cmpl */
James Smart34b02dc2008-08-24 21:49:55 -04006631 lpfc_sli_pcimem_bcopy(mb, phba->mbox, MAILBOX_CMD_SIZE);
dea31012005-04-17 16:05:31 -05006632 }
6633
6634 /* First copy mbox command data to HBA SLIM, skip past first
6635 word */
6636 to_slim = phba->MBslimaddr + sizeof (uint32_t);
6637 lpfc_memcpy_to_slim(to_slim, &mb->un.varWords[0],
6638 MAILBOX_CMD_SIZE - sizeof (uint32_t));
6639
6640 /* Next copy over first word, with mbxOwner set */
James Smart34b02dc2008-08-24 21:49:55 -04006641 ldata = *((uint32_t *)mb);
dea31012005-04-17 16:05:31 -05006642 to_slim = phba->MBslimaddr;
6643 writel(ldata, to_slim);
6644 readl(to_slim); /* flush */
6645
6646 if (mb->mbxCommand == MBX_CONFIG_PORT) {
6647 /* switch over to host mailbox */
James Smart3772a992009-05-22 14:50:54 -04006648 psli->sli_flag |= LPFC_SLI_ACTIVE;
dea31012005-04-17 16:05:31 -05006649 }
6650 }
6651
6652 wmb();
dea31012005-04-17 16:05:31 -05006653
6654 switch (flag) {
6655 case MBX_NOWAIT:
James Smart09372822008-01-11 01:52:54 -05006656 /* Set up reference to mailbox command */
dea31012005-04-17 16:05:31 -05006657 psli->mbox_active = pmbox;
James Smart09372822008-01-11 01:52:54 -05006658 /* Interrupt board to do it */
6659 writel(CA_MBATT, phba->CAregaddr);
6660 readl(phba->CAregaddr); /* flush */
6661 /* Don't wait for it to finish, just return */
dea31012005-04-17 16:05:31 -05006662 break;
6663
6664 case MBX_POLL:
James Smart09372822008-01-11 01:52:54 -05006665 /* Set up null reference to mailbox command */
dea31012005-04-17 16:05:31 -05006666 psli->mbox_active = NULL;
James Smart09372822008-01-11 01:52:54 -05006667 /* Interrupt board to do it */
6668 writel(CA_MBATT, phba->CAregaddr);
6669 readl(phba->CAregaddr); /* flush */
6670
James Smart3772a992009-05-22 14:50:54 -04006671 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea31012005-04-17 16:05:31 -05006672 /* First read mbox status word */
James Smart34b02dc2008-08-24 21:49:55 -04006673 word0 = *((uint32_t *)phba->mbox);
dea31012005-04-17 16:05:31 -05006674 word0 = le32_to_cpu(word0);
6675 } else {
6676 /* First read mbox status word */
James Smart9940b972011-03-11 16:06:12 -05006677 if (lpfc_readl(phba->MBslimaddr, &word0)) {
6678 spin_unlock_irqrestore(&phba->hbalock,
6679 drvr_flag);
6680 goto out_not_finished;
6681 }
dea31012005-04-17 16:05:31 -05006682 }
6683
6684 /* Read the HBA Host Attention Register */
James Smart9940b972011-03-11 16:06:12 -05006685 if (lpfc_readl(phba->HAregaddr, &ha_copy)) {
6686 spin_unlock_irqrestore(&phba->hbalock,
6687 drvr_flag);
6688 goto out_not_finished;
6689 }
James Smarta183a152011-10-10 21:32:43 -04006690 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, pmbox) *
6691 1000) + jiffies;
James Smart09372822008-01-11 01:52:54 -05006692 i = 0;
dea31012005-04-17 16:05:31 -05006693 /* Wait for command to complete */
Jamie Wellnitz41415862006-02-28 19:25:27 -05006694 while (((word0 & OWN_CHIP) == OWN_CHIP) ||
6695 (!(ha_copy & HA_MBATT) &&
James Smart2e0fef82007-06-17 19:56:36 -05006696 (phba->link_state > LPFC_WARM_START))) {
James Smart09372822008-01-11 01:52:54 -05006697 if (time_after(jiffies, timeout)) {
dea31012005-04-17 16:05:31 -05006698 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05006699 spin_unlock_irqrestore(&phba->hbalock,
dea31012005-04-17 16:05:31 -05006700 drvr_flag);
James Smart58da1ff2008-04-07 10:15:56 -04006701 goto out_not_finished;
dea31012005-04-17 16:05:31 -05006702 }
6703
6704 /* Check if we took a mbox interrupt while we were
6705 polling */
6706 if (((word0 & OWN_CHIP) != OWN_CHIP)
6707 && (evtctr != psli->slistat.mbox_event))
6708 break;
6709
James Smart09372822008-01-11 01:52:54 -05006710 if (i++ > 10) {
6711 spin_unlock_irqrestore(&phba->hbalock,
6712 drvr_flag);
6713 msleep(1);
6714 spin_lock_irqsave(&phba->hbalock, drvr_flag);
6715 }
dea31012005-04-17 16:05:31 -05006716
James Smart3772a992009-05-22 14:50:54 -04006717 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea31012005-04-17 16:05:31 -05006718 /* First copy command data */
James Smart34b02dc2008-08-24 21:49:55 -04006719 word0 = *((uint32_t *)phba->mbox);
dea31012005-04-17 16:05:31 -05006720 word0 = le32_to_cpu(word0);
6721 if (mb->mbxCommand == MBX_CONFIG_PORT) {
6722 MAILBOX_t *slimmb;
James Smart34b02dc2008-08-24 21:49:55 -04006723 uint32_t slimword0;
dea31012005-04-17 16:05:31 -05006724 /* Check real SLIM for any errors */
6725 slimword0 = readl(phba->MBslimaddr);
6726 slimmb = (MAILBOX_t *) & slimword0;
6727 if (((slimword0 & OWN_CHIP) != OWN_CHIP)
6728 && slimmb->mbxStatus) {
6729 psli->sli_flag &=
James Smart3772a992009-05-22 14:50:54 -04006730 ~LPFC_SLI_ACTIVE;
dea31012005-04-17 16:05:31 -05006731 word0 = slimword0;
6732 }
6733 }
6734 } else {
6735 /* First copy command data */
6736 word0 = readl(phba->MBslimaddr);
6737 }
6738 /* Read the HBA Host Attention Register */
James Smart9940b972011-03-11 16:06:12 -05006739 if (lpfc_readl(phba->HAregaddr, &ha_copy)) {
6740 spin_unlock_irqrestore(&phba->hbalock,
6741 drvr_flag);
6742 goto out_not_finished;
6743 }
dea31012005-04-17 16:05:31 -05006744 }
6745
James Smart3772a992009-05-22 14:50:54 -04006746 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea31012005-04-17 16:05:31 -05006747 /* copy results back to user */
James Smart34b02dc2008-08-24 21:49:55 -04006748 lpfc_sli_pcimem_bcopy(phba->mbox, mb, MAILBOX_CMD_SIZE);
James Smart7a470272010-03-15 11:25:20 -04006749 /* Copy the mailbox extension data */
6750 if (pmbox->out_ext_byte_len && pmbox->context2) {
6751 lpfc_sli_pcimem_bcopy(phba->mbox_ext,
6752 pmbox->context2,
6753 pmbox->out_ext_byte_len);
6754 }
dea31012005-04-17 16:05:31 -05006755 } else {
6756 /* First copy command data */
6757 lpfc_memcpy_from_slim(mb, phba->MBslimaddr,
6758 MAILBOX_CMD_SIZE);
James Smart7a470272010-03-15 11:25:20 -04006759 /* Copy the mailbox extension data */
6760 if (pmbox->out_ext_byte_len && pmbox->context2) {
6761 lpfc_memcpy_from_slim(pmbox->context2,
6762 phba->MBslimaddr +
6763 MAILBOX_HBA_EXT_OFFSET,
6764 pmbox->out_ext_byte_len);
dea31012005-04-17 16:05:31 -05006765 }
6766 }
6767
6768 writel(HA_MBATT, phba->HAregaddr);
6769 readl(phba->HAregaddr); /* flush */
6770
6771 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
6772 status = mb->mbxStatus;
6773 }
6774
James Smart2e0fef82007-06-17 19:56:36 -05006775 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6776 return status;
James Smart58da1ff2008-04-07 10:15:56 -04006777
6778out_not_finished:
6779 if (processing_queue) {
James Smartda0436e2009-05-22 14:51:39 -04006780 pmbox->u.mb.mbxStatus = MBX_NOT_FINISHED;
James Smart58da1ff2008-04-07 10:15:56 -04006781 lpfc_mbox_cmpl_put(phba, pmbox);
6782 }
6783 return MBX_NOT_FINISHED;
dea31012005-04-17 16:05:31 -05006784}
6785
James Smarte59058c2008-08-24 21:49:00 -04006786/**
James Smartf1126682009-06-10 17:22:44 -04006787 * lpfc_sli4_async_mbox_block - Block posting SLI4 asynchronous mailbox command
6788 * @phba: Pointer to HBA context object.
6789 *
6790 * The function blocks the posting of SLI4 asynchronous mailbox commands from
6791 * the driver internal pending mailbox queue. It will then try to wait out the
6792 * possible outstanding mailbox command before return.
6793 *
6794 * Returns:
6795 * 0 - the outstanding mailbox command completed; otherwise, the wait for
6796 * the outstanding mailbox command timed out.
6797 **/
6798static int
6799lpfc_sli4_async_mbox_block(struct lpfc_hba *phba)
6800{
6801 struct lpfc_sli *psli = &phba->sli;
James Smartf1126682009-06-10 17:22:44 -04006802 int rc = 0;
James Smarta183a152011-10-10 21:32:43 -04006803 unsigned long timeout = 0;
James Smartf1126682009-06-10 17:22:44 -04006804
6805 /* Mark the asynchronous mailbox command posting as blocked */
6806 spin_lock_irq(&phba->hbalock);
6807 psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
James Smartf1126682009-06-10 17:22:44 -04006808 /* Determine how long we might wait for the active mailbox
6809 * command to be gracefully completed by firmware.
6810 */
James Smarta183a152011-10-10 21:32:43 -04006811 if (phba->sli.mbox_active)
6812 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
6813 phba->sli.mbox_active) *
6814 1000) + jiffies;
6815 spin_unlock_irq(&phba->hbalock);
6816
James Smartf1126682009-06-10 17:22:44 -04006817 /* Wait for the outstnading mailbox command to complete */
6818 while (phba->sli.mbox_active) {
6819 /* Check active mailbox complete status every 2ms */
6820 msleep(2);
6821 if (time_after(jiffies, timeout)) {
6822 /* Timeout, marked the outstanding cmd not complete */
6823 rc = 1;
6824 break;
6825 }
6826 }
6827
6828 /* Can not cleanly block async mailbox command, fails it */
6829 if (rc) {
6830 spin_lock_irq(&phba->hbalock);
6831 psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
6832 spin_unlock_irq(&phba->hbalock);
6833 }
6834 return rc;
6835}
6836
6837/**
6838 * lpfc_sli4_async_mbox_unblock - Block posting SLI4 async mailbox command
6839 * @phba: Pointer to HBA context object.
6840 *
6841 * The function unblocks and resume posting of SLI4 asynchronous mailbox
6842 * commands from the driver internal pending mailbox queue. It makes sure
6843 * that there is no outstanding mailbox command before resuming posting
6844 * asynchronous mailbox commands. If, for any reason, there is outstanding
6845 * mailbox command, it will try to wait it out before resuming asynchronous
6846 * mailbox command posting.
6847 **/
6848static void
6849lpfc_sli4_async_mbox_unblock(struct lpfc_hba *phba)
6850{
6851 struct lpfc_sli *psli = &phba->sli;
6852
6853 spin_lock_irq(&phba->hbalock);
6854 if (!(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
6855 /* Asynchronous mailbox posting is not blocked, do nothing */
6856 spin_unlock_irq(&phba->hbalock);
6857 return;
6858 }
6859
6860 /* Outstanding synchronous mailbox command is guaranteed to be done,
6861 * successful or timeout, after timing-out the outstanding mailbox
6862 * command shall always be removed, so just unblock posting async
6863 * mailbox command and resume
6864 */
6865 psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
6866 spin_unlock_irq(&phba->hbalock);
6867
6868 /* wake up worker thread to post asynchronlous mailbox command */
6869 lpfc_worker_wake_up(phba);
6870}
6871
6872/**
James Smartda0436e2009-05-22 14:51:39 -04006873 * lpfc_sli4_post_sync_mbox - Post an SLI4 mailbox to the bootstrap mailbox
6874 * @phba: Pointer to HBA context object.
6875 * @mboxq: Pointer to mailbox object.
6876 *
6877 * The function posts a mailbox to the port. The mailbox is expected
6878 * to be comletely filled in and ready for the port to operate on it.
6879 * This routine executes a synchronous completion operation on the
6880 * mailbox by polling for its completion.
6881 *
6882 * The caller must not be holding any locks when calling this routine.
6883 *
6884 * Returns:
6885 * MBX_SUCCESS - mailbox posted successfully
6886 * Any of the MBX error values.
6887 **/
6888static int
6889lpfc_sli4_post_sync_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
6890{
6891 int rc = MBX_SUCCESS;
6892 unsigned long iflag;
6893 uint32_t db_ready;
6894 uint32_t mcqe_status;
6895 uint32_t mbx_cmnd;
6896 unsigned long timeout;
6897 struct lpfc_sli *psli = &phba->sli;
6898 struct lpfc_mqe *mb = &mboxq->u.mqe;
6899 struct lpfc_bmbx_create *mbox_rgn;
6900 struct dma_address *dma_address;
6901 struct lpfc_register bmbx_reg;
6902
6903 /*
6904 * Only one mailbox can be active to the bootstrap mailbox region
6905 * at a time and there is no queueing provided.
6906 */
6907 spin_lock_irqsave(&phba->hbalock, iflag);
6908 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
6909 spin_unlock_irqrestore(&phba->hbalock, iflag);
6910 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04006911 "(%d):2532 Mailbox command x%x (x%x/x%x) "
James Smartda0436e2009-05-22 14:51:39 -04006912 "cannot issue Data: x%x x%x\n",
6913 mboxq->vport ? mboxq->vport->vpi : 0,
6914 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04006915 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
6916 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04006917 psli->sli_flag, MBX_POLL);
6918 return MBXERR_ERROR;
6919 }
6920 /* The server grabs the token and owns it until release */
6921 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
6922 phba->sli.mbox_active = mboxq;
6923 spin_unlock_irqrestore(&phba->hbalock, iflag);
6924
6925 /*
6926 * Initialize the bootstrap memory region to avoid stale data areas
6927 * in the mailbox post. Then copy the caller's mailbox contents to
6928 * the bmbx mailbox region.
6929 */
6930 mbx_cmnd = bf_get(lpfc_mqe_command, mb);
6931 memset(phba->sli4_hba.bmbx.avirt, 0, sizeof(struct lpfc_bmbx_create));
6932 lpfc_sli_pcimem_bcopy(mb, phba->sli4_hba.bmbx.avirt,
6933 sizeof(struct lpfc_mqe));
6934
6935 /* Post the high mailbox dma address to the port and wait for ready. */
6936 dma_address = &phba->sli4_hba.bmbx.dma_address;
6937 writel(dma_address->addr_hi, phba->sli4_hba.BMBXregaddr);
6938
James Smarta183a152011-10-10 21:32:43 -04006939 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, mboxq)
James Smartda0436e2009-05-22 14:51:39 -04006940 * 1000) + jiffies;
6941 do {
6942 bmbx_reg.word0 = readl(phba->sli4_hba.BMBXregaddr);
6943 db_ready = bf_get(lpfc_bmbx_rdy, &bmbx_reg);
6944 if (!db_ready)
6945 msleep(2);
6946
6947 if (time_after(jiffies, timeout)) {
6948 rc = MBXERR_ERROR;
6949 goto exit;
6950 }
6951 } while (!db_ready);
6952
6953 /* Post the low mailbox dma address to the port. */
6954 writel(dma_address->addr_lo, phba->sli4_hba.BMBXregaddr);
James Smarta183a152011-10-10 21:32:43 -04006955 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, mboxq)
James Smartda0436e2009-05-22 14:51:39 -04006956 * 1000) + jiffies;
6957 do {
6958 bmbx_reg.word0 = readl(phba->sli4_hba.BMBXregaddr);
6959 db_ready = bf_get(lpfc_bmbx_rdy, &bmbx_reg);
6960 if (!db_ready)
6961 msleep(2);
6962
6963 if (time_after(jiffies, timeout)) {
6964 rc = MBXERR_ERROR;
6965 goto exit;
6966 }
6967 } while (!db_ready);
6968
6969 /*
6970 * Read the CQ to ensure the mailbox has completed.
6971 * If so, update the mailbox status so that the upper layers
6972 * can complete the request normally.
6973 */
6974 lpfc_sli_pcimem_bcopy(phba->sli4_hba.bmbx.avirt, mb,
6975 sizeof(struct lpfc_mqe));
6976 mbox_rgn = (struct lpfc_bmbx_create *) phba->sli4_hba.bmbx.avirt;
6977 lpfc_sli_pcimem_bcopy(&mbox_rgn->mcqe, &mboxq->mcqe,
6978 sizeof(struct lpfc_mcqe));
6979 mcqe_status = bf_get(lpfc_mcqe_status, &mbox_rgn->mcqe);
James Smart05580562011-05-24 11:40:48 -04006980 /*
6981 * When the CQE status indicates a failure and the mailbox status
6982 * indicates success then copy the CQE status into the mailbox status
6983 * (and prefix it with x4000).
6984 */
James Smartda0436e2009-05-22 14:51:39 -04006985 if (mcqe_status != MB_CQE_STATUS_SUCCESS) {
James Smart05580562011-05-24 11:40:48 -04006986 if (bf_get(lpfc_mqe_status, mb) == MBX_SUCCESS)
6987 bf_set(lpfc_mqe_status, mb,
6988 (LPFC_MBX_ERROR_RANGE | mcqe_status));
James Smartda0436e2009-05-22 14:51:39 -04006989 rc = MBXERR_ERROR;
James Smartd7c47992010-06-08 18:31:54 -04006990 } else
6991 lpfc_sli4_swap_str(phba, mboxq);
James Smartda0436e2009-05-22 14:51:39 -04006992
6993 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04006994 "(%d):0356 Mailbox cmd x%x (x%x/x%x) Status x%x "
James Smartda0436e2009-05-22 14:51:39 -04006995 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x"
6996 " x%x x%x CQ: x%x x%x x%x x%x\n",
James Smarta183a152011-10-10 21:32:43 -04006997 mboxq->vport ? mboxq->vport->vpi : 0, mbx_cmnd,
6998 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
6999 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007000 bf_get(lpfc_mqe_status, mb),
7001 mb->un.mb_words[0], mb->un.mb_words[1],
7002 mb->un.mb_words[2], mb->un.mb_words[3],
7003 mb->un.mb_words[4], mb->un.mb_words[5],
7004 mb->un.mb_words[6], mb->un.mb_words[7],
7005 mb->un.mb_words[8], mb->un.mb_words[9],
7006 mb->un.mb_words[10], mb->un.mb_words[11],
7007 mb->un.mb_words[12], mboxq->mcqe.word0,
7008 mboxq->mcqe.mcqe_tag0, mboxq->mcqe.mcqe_tag1,
7009 mboxq->mcqe.trailer);
7010exit:
7011 /* We are holding the token, no needed for lock when release */
7012 spin_lock_irqsave(&phba->hbalock, iflag);
7013 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7014 phba->sli.mbox_active = NULL;
7015 spin_unlock_irqrestore(&phba->hbalock, iflag);
7016 return rc;
7017}
7018
7019/**
7020 * lpfc_sli_issue_mbox_s4 - Issue an SLI4 mailbox command to firmware
7021 * @phba: Pointer to HBA context object.
7022 * @pmbox: Pointer to mailbox object.
7023 * @flag: Flag indicating how the mailbox need to be processed.
7024 *
7025 * This function is called by discovery code and HBA management code to submit
7026 * a mailbox command to firmware with SLI-4 interface spec.
7027 *
7028 * Return codes the caller owns the mailbox command after the return of the
7029 * function.
7030 **/
7031static int
7032lpfc_sli_issue_mbox_s4(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
7033 uint32_t flag)
7034{
7035 struct lpfc_sli *psli = &phba->sli;
7036 unsigned long iflags;
7037 int rc;
7038
James Smartb76f2dc2011-07-22 18:37:42 -04007039 /* dump from issue mailbox command if setup */
7040 lpfc_idiag_mbxacc_dump_issue_mbox(phba, &mboxq->u.mb);
7041
James Smart8fa38512009-07-19 10:01:03 -04007042 rc = lpfc_mbox_dev_check(phba);
7043 if (unlikely(rc)) {
7044 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007045 "(%d):2544 Mailbox command x%x (x%x/x%x) "
James Smart8fa38512009-07-19 10:01:03 -04007046 "cannot issue Data: x%x x%x\n",
7047 mboxq->vport ? mboxq->vport->vpi : 0,
7048 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007049 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7050 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smart8fa38512009-07-19 10:01:03 -04007051 psli->sli_flag, flag);
7052 goto out_not_finished;
7053 }
7054
James Smartda0436e2009-05-22 14:51:39 -04007055 /* Detect polling mode and jump to a handler */
7056 if (!phba->sli4_hba.intr_enable) {
7057 if (flag == MBX_POLL)
7058 rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
7059 else
7060 rc = -EIO;
7061 if (rc != MBX_SUCCESS)
James Smart05580562011-05-24 11:40:48 -04007062 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
James Smartda0436e2009-05-22 14:51:39 -04007063 "(%d):2541 Mailbox command x%x "
James Smarta183a152011-10-10 21:32:43 -04007064 "(x%x/x%x) cannot issue Data: "
7065 "x%x x%x\n",
James Smartda0436e2009-05-22 14:51:39 -04007066 mboxq->vport ? mboxq->vport->vpi : 0,
7067 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007068 lpfc_sli_config_mbox_subsys_get(phba,
7069 mboxq),
7070 lpfc_sli_config_mbox_opcode_get(phba,
7071 mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007072 psli->sli_flag, flag);
7073 return rc;
7074 } else if (flag == MBX_POLL) {
James Smartf1126682009-06-10 17:22:44 -04007075 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
7076 "(%d):2542 Try to issue mailbox command "
James Smarta183a152011-10-10 21:32:43 -04007077 "x%x (x%x/x%x) synchronously ahead of async"
James Smartf1126682009-06-10 17:22:44 -04007078 "mailbox command queue: x%x x%x\n",
James Smartda0436e2009-05-22 14:51:39 -04007079 mboxq->vport ? mboxq->vport->vpi : 0,
7080 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007081 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7082 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007083 psli->sli_flag, flag);
James Smartf1126682009-06-10 17:22:44 -04007084 /* Try to block the asynchronous mailbox posting */
7085 rc = lpfc_sli4_async_mbox_block(phba);
7086 if (!rc) {
7087 /* Successfully blocked, now issue sync mbox cmd */
7088 rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
7089 if (rc != MBX_SUCCESS)
7090 lpfc_printf_log(phba, KERN_ERR,
James Smarta183a152011-10-10 21:32:43 -04007091 LOG_MBOX | LOG_SLI,
7092 "(%d):2597 Mailbox command "
7093 "x%x (x%x/x%x) cannot issue "
7094 "Data: x%x x%x\n",
7095 mboxq->vport ?
7096 mboxq->vport->vpi : 0,
7097 mboxq->u.mb.mbxCommand,
7098 lpfc_sli_config_mbox_subsys_get(phba,
7099 mboxq),
7100 lpfc_sli_config_mbox_opcode_get(phba,
7101 mboxq),
7102 psli->sli_flag, flag);
James Smartf1126682009-06-10 17:22:44 -04007103 /* Unblock the async mailbox posting afterward */
7104 lpfc_sli4_async_mbox_unblock(phba);
7105 }
7106 return rc;
James Smartda0436e2009-05-22 14:51:39 -04007107 }
7108
7109 /* Now, interrupt mode asynchrous mailbox command */
7110 rc = lpfc_mbox_cmd_check(phba, mboxq);
7111 if (rc) {
7112 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007113 "(%d):2543 Mailbox command x%x (x%x/x%x) "
James Smartda0436e2009-05-22 14:51:39 -04007114 "cannot issue Data: x%x x%x\n",
7115 mboxq->vport ? mboxq->vport->vpi : 0,
7116 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007117 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7118 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007119 psli->sli_flag, flag);
7120 goto out_not_finished;
7121 }
James Smartda0436e2009-05-22 14:51:39 -04007122
7123 /* Put the mailbox command to the driver internal FIFO */
7124 psli->slistat.mbox_busy++;
7125 spin_lock_irqsave(&phba->hbalock, iflags);
7126 lpfc_mbox_put(phba, mboxq);
7127 spin_unlock_irqrestore(&phba->hbalock, iflags);
7128 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
7129 "(%d):0354 Mbox cmd issue - Enqueue Data: "
James Smarta183a152011-10-10 21:32:43 -04007130 "x%x (x%x/x%x) x%x x%x x%x\n",
James Smartda0436e2009-05-22 14:51:39 -04007131 mboxq->vport ? mboxq->vport->vpi : 0xffffff,
7132 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
James Smarta183a152011-10-10 21:32:43 -04007133 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7134 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007135 phba->pport->port_state,
7136 psli->sli_flag, MBX_NOWAIT);
7137 /* Wake up worker thread to transport mailbox command from head */
7138 lpfc_worker_wake_up(phba);
7139
7140 return MBX_BUSY;
7141
7142out_not_finished:
7143 return MBX_NOT_FINISHED;
7144}
7145
7146/**
7147 * lpfc_sli4_post_async_mbox - Post an SLI4 mailbox command to device
7148 * @phba: Pointer to HBA context object.
7149 *
7150 * This function is called by worker thread to send a mailbox command to
7151 * SLI4 HBA firmware.
7152 *
7153 **/
7154int
7155lpfc_sli4_post_async_mbox(struct lpfc_hba *phba)
7156{
7157 struct lpfc_sli *psli = &phba->sli;
7158 LPFC_MBOXQ_t *mboxq;
7159 int rc = MBX_SUCCESS;
7160 unsigned long iflags;
7161 struct lpfc_mqe *mqe;
7162 uint32_t mbx_cmnd;
7163
7164 /* Check interrupt mode before post async mailbox command */
7165 if (unlikely(!phba->sli4_hba.intr_enable))
7166 return MBX_NOT_FINISHED;
7167
7168 /* Check for mailbox command service token */
7169 spin_lock_irqsave(&phba->hbalock, iflags);
7170 if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
7171 spin_unlock_irqrestore(&phba->hbalock, iflags);
7172 return MBX_NOT_FINISHED;
7173 }
7174 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
7175 spin_unlock_irqrestore(&phba->hbalock, iflags);
7176 return MBX_NOT_FINISHED;
7177 }
7178 if (unlikely(phba->sli.mbox_active)) {
7179 spin_unlock_irqrestore(&phba->hbalock, iflags);
7180 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7181 "0384 There is pending active mailbox cmd\n");
7182 return MBX_NOT_FINISHED;
7183 }
7184 /* Take the mailbox command service token */
7185 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
7186
7187 /* Get the next mailbox command from head of queue */
7188 mboxq = lpfc_mbox_get(phba);
7189
7190 /* If no more mailbox command waiting for post, we're done */
7191 if (!mboxq) {
7192 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7193 spin_unlock_irqrestore(&phba->hbalock, iflags);
7194 return MBX_SUCCESS;
7195 }
7196 phba->sli.mbox_active = mboxq;
7197 spin_unlock_irqrestore(&phba->hbalock, iflags);
7198
7199 /* Check device readiness for posting mailbox command */
7200 rc = lpfc_mbox_dev_check(phba);
7201 if (unlikely(rc))
7202 /* Driver clean routine will clean up pending mailbox */
7203 goto out_not_finished;
7204
7205 /* Prepare the mbox command to be posted */
7206 mqe = &mboxq->u.mqe;
7207 mbx_cmnd = bf_get(lpfc_mqe_command, mqe);
7208
7209 /* Start timer for the mbox_tmo and log some mailbox post messages */
7210 mod_timer(&psli->mbox_tmo, (jiffies +
James Smarta183a152011-10-10 21:32:43 -04007211 (HZ * lpfc_mbox_tmo_val(phba, mboxq))));
James Smartda0436e2009-05-22 14:51:39 -04007212
7213 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007214 "(%d):0355 Mailbox cmd x%x (x%x/x%x) issue Data: "
James Smartda0436e2009-05-22 14:51:39 -04007215 "x%x x%x\n",
7216 mboxq->vport ? mboxq->vport->vpi : 0, mbx_cmnd,
James Smarta183a152011-10-10 21:32:43 -04007217 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7218 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007219 phba->pport->port_state, psli->sli_flag);
7220
7221 if (mbx_cmnd != MBX_HEARTBEAT) {
7222 if (mboxq->vport) {
7223 lpfc_debugfs_disc_trc(mboxq->vport,
7224 LPFC_DISC_TRC_MBOX_VPORT,
7225 "MBOX Send vport: cmd:x%x mb:x%x x%x",
7226 mbx_cmnd, mqe->un.mb_words[0],
7227 mqe->un.mb_words[1]);
7228 } else {
7229 lpfc_debugfs_disc_trc(phba->pport,
7230 LPFC_DISC_TRC_MBOX,
7231 "MBOX Send: cmd:x%x mb:x%x x%x",
7232 mbx_cmnd, mqe->un.mb_words[0],
7233 mqe->un.mb_words[1]);
7234 }
7235 }
7236 psli->slistat.mbox_cmd++;
7237
7238 /* Post the mailbox command to the port */
7239 rc = lpfc_sli4_mq_put(phba->sli4_hba.mbx_wq, mqe);
7240 if (rc != MBX_SUCCESS) {
7241 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007242 "(%d):2533 Mailbox command x%x (x%x/x%x) "
James Smartda0436e2009-05-22 14:51:39 -04007243 "cannot issue Data: x%x x%x\n",
7244 mboxq->vport ? mboxq->vport->vpi : 0,
7245 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007246 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7247 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007248 psli->sli_flag, MBX_NOWAIT);
7249 goto out_not_finished;
7250 }
7251
7252 return rc;
7253
7254out_not_finished:
7255 spin_lock_irqsave(&phba->hbalock, iflags);
7256 mboxq->u.mb.mbxStatus = MBX_NOT_FINISHED;
7257 __lpfc_mbox_cmpl_put(phba, mboxq);
7258 /* Release the token */
7259 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7260 phba->sli.mbox_active = NULL;
7261 spin_unlock_irqrestore(&phba->hbalock, iflags);
7262
7263 return MBX_NOT_FINISHED;
7264}
7265
7266/**
7267 * lpfc_sli_issue_mbox - Wrapper func for issuing mailbox command
7268 * @phba: Pointer to HBA context object.
7269 * @pmbox: Pointer to mailbox object.
7270 * @flag: Flag indicating how the mailbox need to be processed.
7271 *
7272 * This routine wraps the actual SLI3 or SLI4 mailbox issuing routine from
7273 * the API jump table function pointer from the lpfc_hba struct.
7274 *
7275 * Return codes the caller owns the mailbox command after the return of the
7276 * function.
7277 **/
7278int
7279lpfc_sli_issue_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox, uint32_t flag)
7280{
7281 return phba->lpfc_sli_issue_mbox(phba, pmbox, flag);
7282}
7283
7284/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03007285 * lpfc_mbox_api_table_setup - Set up mbox api function jump table
James Smartda0436e2009-05-22 14:51:39 -04007286 * @phba: The hba struct for which this call is being executed.
7287 * @dev_grp: The HBA PCI-Device group number.
7288 *
7289 * This routine sets up the mbox interface API function jump table in @phba
7290 * struct.
7291 * Returns: 0 - success, -ENODEV - failure.
7292 **/
7293int
7294lpfc_mbox_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
7295{
7296
7297 switch (dev_grp) {
7298 case LPFC_PCI_DEV_LP:
7299 phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s3;
7300 phba->lpfc_sli_handle_slow_ring_event =
7301 lpfc_sli_handle_slow_ring_event_s3;
7302 phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s3;
7303 phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s3;
7304 phba->lpfc_sli_brdready = lpfc_sli_brdready_s3;
7305 break;
7306 case LPFC_PCI_DEV_OC:
7307 phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s4;
7308 phba->lpfc_sli_handle_slow_ring_event =
7309 lpfc_sli_handle_slow_ring_event_s4;
7310 phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s4;
7311 phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s4;
7312 phba->lpfc_sli_brdready = lpfc_sli_brdready_s4;
7313 break;
7314 default:
7315 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7316 "1420 Invalid HBA PCI-device group: 0x%x\n",
7317 dev_grp);
7318 return -ENODEV;
7319 break;
7320 }
7321 return 0;
7322}
7323
7324/**
James Smart3621a712009-04-06 18:47:14 -04007325 * __lpfc_sli_ringtx_put - Add an iocb to the txq
James Smarte59058c2008-08-24 21:49:00 -04007326 * @phba: Pointer to HBA context object.
7327 * @pring: Pointer to driver SLI ring object.
7328 * @piocb: Pointer to address of newly added command iocb.
7329 *
7330 * This function is called with hbalock held to add a command
7331 * iocb to the txq when SLI layer cannot submit the command iocb
7332 * to the ring.
7333 **/
James Smart2a9bf3d2010-06-07 15:24:45 -04007334void
James Smart92d7f7b2007-06-17 19:56:38 -05007335__lpfc_sli_ringtx_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart2e0fef82007-06-17 19:56:36 -05007336 struct lpfc_iocbq *piocb)
dea31012005-04-17 16:05:31 -05007337{
7338 /* Insert the caller's iocb in the txq tail for later processing. */
7339 list_add_tail(&piocb->list, &pring->txq);
7340 pring->txq_cnt++;
dea31012005-04-17 16:05:31 -05007341}
7342
James Smarte59058c2008-08-24 21:49:00 -04007343/**
James Smart3621a712009-04-06 18:47:14 -04007344 * lpfc_sli_next_iocb - Get the next iocb in the txq
James Smarte59058c2008-08-24 21:49:00 -04007345 * @phba: Pointer to HBA context object.
7346 * @pring: Pointer to driver SLI ring object.
7347 * @piocb: Pointer to address of newly added command iocb.
7348 *
7349 * This function is called with hbalock held before a new
7350 * iocb is submitted to the firmware. This function checks
7351 * txq to flush the iocbs in txq to Firmware before
7352 * submitting new iocbs to the Firmware.
7353 * If there are iocbs in the txq which need to be submitted
7354 * to firmware, lpfc_sli_next_iocb returns the first element
7355 * of the txq after dequeuing it from txq.
7356 * If there is no iocb in the txq then the function will return
7357 * *piocb and *piocb is set to NULL. Caller needs to check
7358 * *piocb to find if there are more commands in the txq.
7359 **/
dea31012005-04-17 16:05:31 -05007360static struct lpfc_iocbq *
7361lpfc_sli_next_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart2e0fef82007-06-17 19:56:36 -05007362 struct lpfc_iocbq **piocb)
dea31012005-04-17 16:05:31 -05007363{
7364 struct lpfc_iocbq * nextiocb;
7365
7366 nextiocb = lpfc_sli_ringtx_get(phba, pring);
7367 if (!nextiocb) {
7368 nextiocb = *piocb;
7369 *piocb = NULL;
7370 }
7371
7372 return nextiocb;
7373}
7374
James Smarte59058c2008-08-24 21:49:00 -04007375/**
James Smart3772a992009-05-22 14:50:54 -04007376 * __lpfc_sli_issue_iocb_s3 - SLI3 device lockless ver of lpfc_sli_issue_iocb
James Smarte59058c2008-08-24 21:49:00 -04007377 * @phba: Pointer to HBA context object.
James Smart3772a992009-05-22 14:50:54 -04007378 * @ring_number: SLI ring number to issue iocb on.
James Smarte59058c2008-08-24 21:49:00 -04007379 * @piocb: Pointer to command iocb.
7380 * @flag: Flag indicating if this command can be put into txq.
7381 *
James Smart3772a992009-05-22 14:50:54 -04007382 * __lpfc_sli_issue_iocb_s3 is used by other functions in the driver to issue
7383 * an iocb command to an HBA with SLI-3 interface spec. If the PCI slot is
7384 * recovering from error state, if HBA is resetting or if LPFC_STOP_IOCB_EVENT
7385 * flag is turned on, the function returns IOCB_ERROR. When the link is down,
7386 * this function allows only iocbs for posting buffers. This function finds
7387 * next available slot in the command ring and posts the command to the
7388 * available slot and writes the port attention register to request HBA start
7389 * processing new iocb. If there is no slot available in the ring and
7390 * flag & SLI_IOCB_RET_IOCB is set, the new iocb is added to the txq, otherwise
7391 * the function returns IOCB_BUSY.
James Smarte59058c2008-08-24 21:49:00 -04007392 *
James Smart3772a992009-05-22 14:50:54 -04007393 * This function is called with hbalock held. The function will return success
7394 * after it successfully submit the iocb to firmware or after adding to the
7395 * txq.
James Smarte59058c2008-08-24 21:49:00 -04007396 **/
James Smart98c9ea52007-10-27 13:37:33 -04007397static int
James Smart3772a992009-05-22 14:50:54 -04007398__lpfc_sli_issue_iocb_s3(struct lpfc_hba *phba, uint32_t ring_number,
dea31012005-04-17 16:05:31 -05007399 struct lpfc_iocbq *piocb, uint32_t flag)
7400{
7401 struct lpfc_iocbq *nextiocb;
7402 IOCB_t *iocb;
James Smart3772a992009-05-22 14:50:54 -04007403 struct lpfc_sli_ring *pring = &phba->sli.ring[ring_number];
dea31012005-04-17 16:05:31 -05007404
James Smart92d7f7b2007-06-17 19:56:38 -05007405 if (piocb->iocb_cmpl && (!piocb->vport) &&
7406 (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
7407 (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) {
7408 lpfc_printf_log(phba, KERN_ERR,
7409 LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04007410 "1807 IOCB x%x failed. No vport\n",
James Smart92d7f7b2007-06-17 19:56:38 -05007411 piocb->iocb.ulpCommand);
7412 dump_stack();
7413 return IOCB_ERROR;
7414 }
7415
7416
Linas Vepstas8d63f372007-02-14 14:28:36 -06007417 /* If the PCI channel is in offline state, do not post iocbs. */
7418 if (unlikely(pci_channel_offline(phba->pcidev)))
7419 return IOCB_ERROR;
7420
James Smarta257bf92009-04-06 18:48:10 -04007421 /* If HBA has a deferred error attention, fail the iocb. */
7422 if (unlikely(phba->hba_flag & DEFER_ERATT))
7423 return IOCB_ERROR;
7424
dea31012005-04-17 16:05:31 -05007425 /*
7426 * We should never get an IOCB if we are in a < LINK_DOWN state
7427 */
James Smart2e0fef82007-06-17 19:56:36 -05007428 if (unlikely(phba->link_state < LPFC_LINK_DOWN))
dea31012005-04-17 16:05:31 -05007429 return IOCB_ERROR;
7430
7431 /*
7432 * Check to see if we are blocking IOCB processing because of a
James Smart0b727fe2007-10-27 13:37:25 -04007433 * outstanding event.
dea31012005-04-17 16:05:31 -05007434 */
James Smart0b727fe2007-10-27 13:37:25 -04007435 if (unlikely(pring->flag & LPFC_STOP_IOCB_EVENT))
dea31012005-04-17 16:05:31 -05007436 goto iocb_busy;
7437
James Smart2e0fef82007-06-17 19:56:36 -05007438 if (unlikely(phba->link_state == LPFC_LINK_DOWN)) {
dea31012005-04-17 16:05:31 -05007439 /*
James Smart2680eea2007-04-25 09:52:55 -04007440 * Only CREATE_XRI, CLOSE_XRI, and QUE_RING_BUF
dea31012005-04-17 16:05:31 -05007441 * can be issued if the link is not up.
7442 */
7443 switch (piocb->iocb.ulpCommand) {
James Smart84774a42008-08-24 21:50:06 -04007444 case CMD_GEN_REQUEST64_CR:
7445 case CMD_GEN_REQUEST64_CX:
7446 if (!(phba->sli.sli_flag & LPFC_MENLO_MAINT) ||
7447 (piocb->iocb.un.genreq64.w5.hcsw.Rctl !=
James Smart6a9c52c2009-10-02 15:16:51 -04007448 FC_RCTL_DD_UNSOL_CMD) ||
James Smart84774a42008-08-24 21:50:06 -04007449 (piocb->iocb.un.genreq64.w5.hcsw.Type !=
7450 MENLO_TRANSPORT_TYPE))
7451
7452 goto iocb_busy;
7453 break;
dea31012005-04-17 16:05:31 -05007454 case CMD_QUE_RING_BUF_CN:
7455 case CMD_QUE_RING_BUF64_CN:
dea31012005-04-17 16:05:31 -05007456 /*
7457 * For IOCBs, like QUE_RING_BUF, that have no rsp ring
7458 * completion, iocb_cmpl MUST be 0.
7459 */
7460 if (piocb->iocb_cmpl)
7461 piocb->iocb_cmpl = NULL;
7462 /*FALLTHROUGH*/
7463 case CMD_CREATE_XRI_CR:
James Smart2680eea2007-04-25 09:52:55 -04007464 case CMD_CLOSE_XRI_CN:
7465 case CMD_CLOSE_XRI_CX:
dea31012005-04-17 16:05:31 -05007466 break;
7467 default:
7468 goto iocb_busy;
7469 }
7470
7471 /*
7472 * For FCP commands, we must be in a state where we can process link
7473 * attention events.
7474 */
7475 } else if (unlikely(pring->ringno == phba->sli.fcp_ring &&
James Smart92d7f7b2007-06-17 19:56:38 -05007476 !(phba->sli.sli_flag & LPFC_PROCESS_LA))) {
dea31012005-04-17 16:05:31 -05007477 goto iocb_busy;
James Smart92d7f7b2007-06-17 19:56:38 -05007478 }
dea31012005-04-17 16:05:31 -05007479
dea31012005-04-17 16:05:31 -05007480 while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
7481 (nextiocb = lpfc_sli_next_iocb(phba, pring, &piocb)))
7482 lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
7483
7484 if (iocb)
7485 lpfc_sli_update_ring(phba, pring);
7486 else
7487 lpfc_sli_update_full_ring(phba, pring);
7488
7489 if (!piocb)
7490 return IOCB_SUCCESS;
7491
7492 goto out_busy;
7493
7494 iocb_busy:
7495 pring->stats.iocb_cmd_delay++;
7496
7497 out_busy:
7498
7499 if (!(flag & SLI_IOCB_RET_IOCB)) {
James Smart92d7f7b2007-06-17 19:56:38 -05007500 __lpfc_sli_ringtx_put(phba, pring, piocb);
dea31012005-04-17 16:05:31 -05007501 return IOCB_SUCCESS;
7502 }
7503
7504 return IOCB_BUSY;
7505}
7506
James Smart3772a992009-05-22 14:50:54 -04007507/**
James Smart4f774512009-05-22 14:52:35 -04007508 * lpfc_sli4_bpl2sgl - Convert the bpl/bde to a sgl.
7509 * @phba: Pointer to HBA context object.
7510 * @piocb: Pointer to command iocb.
7511 * @sglq: Pointer to the scatter gather queue object.
7512 *
7513 * This routine converts the bpl or bde that is in the IOCB
7514 * to a sgl list for the sli4 hardware. The physical address
7515 * of the bpl/bde is converted back to a virtual address.
7516 * If the IOCB contains a BPL then the list of BDE's is
7517 * converted to sli4_sge's. If the IOCB contains a single
7518 * BDE then it is converted to a single sli_sge.
7519 * The IOCB is still in cpu endianess so the contents of
7520 * the bpl can be used without byte swapping.
7521 *
7522 * Returns valid XRI = Success, NO_XRI = Failure.
7523**/
7524static uint16_t
7525lpfc_sli4_bpl2sgl(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq,
7526 struct lpfc_sglq *sglq)
7527{
7528 uint16_t xritag = NO_XRI;
7529 struct ulp_bde64 *bpl = NULL;
7530 struct ulp_bde64 bde;
7531 struct sli4_sge *sgl = NULL;
James Smart1b511972011-12-13 13:23:09 -05007532 struct lpfc_dmabuf *dmabuf;
James Smart4f774512009-05-22 14:52:35 -04007533 IOCB_t *icmd;
7534 int numBdes = 0;
7535 int i = 0;
James Smart63e801c2010-11-20 23:14:19 -05007536 uint32_t offset = 0; /* accumulated offset in the sg request list */
7537 int inbound = 0; /* number of sg reply entries inbound from firmware */
James Smart4f774512009-05-22 14:52:35 -04007538
7539 if (!piocbq || !sglq)
7540 return xritag;
7541
7542 sgl = (struct sli4_sge *)sglq->sgl;
7543 icmd = &piocbq->iocb;
James Smart6b5151f2012-01-18 16:24:06 -05007544 if (icmd->ulpCommand == CMD_XMIT_BLS_RSP64_CX)
7545 return sglq->sli4_xritag;
James Smart4f774512009-05-22 14:52:35 -04007546 if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
7547 numBdes = icmd->un.genreq64.bdl.bdeSize /
7548 sizeof(struct ulp_bde64);
7549 /* The addrHigh and addrLow fields within the IOCB
7550 * have not been byteswapped yet so there is no
7551 * need to swap them back.
7552 */
James Smart1b511972011-12-13 13:23:09 -05007553 if (piocbq->context3)
7554 dmabuf = (struct lpfc_dmabuf *)piocbq->context3;
7555 else
7556 return xritag;
James Smart4f774512009-05-22 14:52:35 -04007557
James Smart1b511972011-12-13 13:23:09 -05007558 bpl = (struct ulp_bde64 *)dmabuf->virt;
James Smart4f774512009-05-22 14:52:35 -04007559 if (!bpl)
7560 return xritag;
7561
7562 for (i = 0; i < numBdes; i++) {
7563 /* Should already be byte swapped. */
James Smart28baac72010-02-12 14:42:03 -05007564 sgl->addr_hi = bpl->addrHigh;
7565 sgl->addr_lo = bpl->addrLow;
7566
James Smart05580562011-05-24 11:40:48 -04007567 sgl->word2 = le32_to_cpu(sgl->word2);
James Smart4f774512009-05-22 14:52:35 -04007568 if ((i+1) == numBdes)
7569 bf_set(lpfc_sli4_sge_last, sgl, 1);
7570 else
7571 bf_set(lpfc_sli4_sge_last, sgl, 0);
James Smart28baac72010-02-12 14:42:03 -05007572 /* swap the size field back to the cpu so we
7573 * can assign it to the sgl.
7574 */
7575 bde.tus.w = le32_to_cpu(bpl->tus.w);
7576 sgl->sge_len = cpu_to_le32(bde.tus.f.bdeSize);
James Smart63e801c2010-11-20 23:14:19 -05007577 /* The offsets in the sgl need to be accumulated
7578 * separately for the request and reply lists.
7579 * The request is always first, the reply follows.
7580 */
7581 if (piocbq->iocb.ulpCommand == CMD_GEN_REQUEST64_CR) {
7582 /* add up the reply sg entries */
7583 if (bpl->tus.f.bdeFlags == BUFF_TYPE_BDE_64I)
7584 inbound++;
7585 /* first inbound? reset the offset */
7586 if (inbound == 1)
7587 offset = 0;
7588 bf_set(lpfc_sli4_sge_offset, sgl, offset);
James Smartf9bb2da2011-10-10 21:34:11 -04007589 bf_set(lpfc_sli4_sge_type, sgl,
7590 LPFC_SGE_TYPE_DATA);
James Smart63e801c2010-11-20 23:14:19 -05007591 offset += bde.tus.f.bdeSize;
7592 }
James Smart546fc852011-03-11 16:06:29 -05007593 sgl->word2 = cpu_to_le32(sgl->word2);
James Smart4f774512009-05-22 14:52:35 -04007594 bpl++;
7595 sgl++;
7596 }
7597 } else if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BDE_64) {
7598 /* The addrHigh and addrLow fields of the BDE have not
7599 * been byteswapped yet so they need to be swapped
7600 * before putting them in the sgl.
7601 */
7602 sgl->addr_hi =
7603 cpu_to_le32(icmd->un.genreq64.bdl.addrHigh);
7604 sgl->addr_lo =
7605 cpu_to_le32(icmd->un.genreq64.bdl.addrLow);
James Smart05580562011-05-24 11:40:48 -04007606 sgl->word2 = le32_to_cpu(sgl->word2);
James Smart4f774512009-05-22 14:52:35 -04007607 bf_set(lpfc_sli4_sge_last, sgl, 1);
7608 sgl->word2 = cpu_to_le32(sgl->word2);
James Smart28baac72010-02-12 14:42:03 -05007609 sgl->sge_len =
7610 cpu_to_le32(icmd->un.genreq64.bdl.bdeSize);
James Smart4f774512009-05-22 14:52:35 -04007611 }
7612 return sglq->sli4_xritag;
7613}
7614
7615/**
7616 * lpfc_sli4_scmd_to_wqidx_distr - scsi command to SLI4 WQ index distribution
7617 * @phba: Pointer to HBA context object.
James Smart4f774512009-05-22 14:52:35 -04007618 *
James Smarta93ff372010-10-22 11:06:08 -04007619 * This routine performs a roundrobin SCSI command to SLI4 FCP WQ index
James Smart8fa38512009-07-19 10:01:03 -04007620 * distribution. This is called by __lpfc_sli_issue_iocb_s4() with the hbalock
7621 * held.
James Smart4f774512009-05-22 14:52:35 -04007622 *
7623 * Return: index into SLI4 fast-path FCP queue index.
7624 **/
7625static uint32_t
James Smart8fa38512009-07-19 10:01:03 -04007626lpfc_sli4_scmd_to_wqidx_distr(struct lpfc_hba *phba)
James Smart4f774512009-05-22 14:52:35 -04007627{
James Smart8fa38512009-07-19 10:01:03 -04007628 ++phba->fcp_qidx;
7629 if (phba->fcp_qidx >= phba->cfg_fcp_wq_count)
7630 phba->fcp_qidx = 0;
James Smart4f774512009-05-22 14:52:35 -04007631
James Smart8fa38512009-07-19 10:01:03 -04007632 return phba->fcp_qidx;
James Smart4f774512009-05-22 14:52:35 -04007633}
7634
7635/**
7636 * lpfc_sli_iocb2wqe - Convert the IOCB to a work queue entry.
7637 * @phba: Pointer to HBA context object.
7638 * @piocb: Pointer to command iocb.
7639 * @wqe: Pointer to the work queue entry.
7640 *
7641 * This routine converts the iocb command to its Work Queue Entry
7642 * equivalent. The wqe pointer should not have any fields set when
7643 * this routine is called because it will memcpy over them.
7644 * This routine does not set the CQ_ID or the WQEC bits in the
7645 * wqe.
7646 *
7647 * Returns: 0 = Success, IOCB_ERROR = Failure.
7648 **/
7649static int
7650lpfc_sli4_iocb2wqe(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq,
7651 union lpfc_wqe *wqe)
7652{
James Smart5ffc2662009-11-18 15:39:44 -05007653 uint32_t xmit_len = 0, total_len = 0;
James Smart4f774512009-05-22 14:52:35 -04007654 uint8_t ct = 0;
7655 uint32_t fip;
7656 uint32_t abort_tag;
7657 uint8_t command_type = ELS_COMMAND_NON_FIP;
7658 uint8_t cmnd;
7659 uint16_t xritag;
James Smartdcf2a4e2010-09-29 11:18:53 -04007660 uint16_t abrt_iotag;
7661 struct lpfc_iocbq *abrtiocbq;
James Smart4f774512009-05-22 14:52:35 -04007662 struct ulp_bde64 *bpl = NULL;
James Smartf0d9bcc2010-10-22 11:07:09 -04007663 uint32_t els_id = LPFC_ELS_ID_DEFAULT;
James Smart5ffc2662009-11-18 15:39:44 -05007664 int numBdes, i;
7665 struct ulp_bde64 bde;
James Smartc31098c2011-04-16 11:03:33 -04007666 struct lpfc_nodelist *ndlp;
James Smartff78d8f2011-12-13 13:21:35 -05007667 uint32_t *pcmd;
James Smart1b511972011-12-13 13:23:09 -05007668 uint32_t if_type;
James Smart4f774512009-05-22 14:52:35 -04007669
James Smart45ed1192009-10-02 15:17:02 -04007670 fip = phba->hba_flag & HBA_FIP_SUPPORT;
James Smart4f774512009-05-22 14:52:35 -04007671 /* The fcp commands will set command type */
James Smart0c287582009-06-10 17:22:56 -04007672 if (iocbq->iocb_flag & LPFC_IO_FCP)
James Smart4f774512009-05-22 14:52:35 -04007673 command_type = FCP_COMMAND;
James Smartc8685952009-11-18 15:39:16 -05007674 else if (fip && (iocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK))
James Smart0c287582009-06-10 17:22:56 -04007675 command_type = ELS_COMMAND_FIP;
7676 else
7677 command_type = ELS_COMMAND_NON_FIP;
7678
James Smart4f774512009-05-22 14:52:35 -04007679 /* Some of the fields are in the right position already */
7680 memcpy(wqe, &iocbq->iocb, sizeof(union lpfc_wqe));
7681 abort_tag = (uint32_t) iocbq->iotag;
7682 xritag = iocbq->sli4_xritag;
James Smartf0d9bcc2010-10-22 11:07:09 -04007683 wqe->generic.wqe_com.word7 = 0; /* The ct field has moved so reset */
James Smart4f774512009-05-22 14:52:35 -04007684 /* words0-2 bpl convert bde */
7685 if (iocbq->iocb.un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
James Smart5ffc2662009-11-18 15:39:44 -05007686 numBdes = iocbq->iocb.un.genreq64.bdl.bdeSize /
7687 sizeof(struct ulp_bde64);
James Smart4f774512009-05-22 14:52:35 -04007688 bpl = (struct ulp_bde64 *)
7689 ((struct lpfc_dmabuf *)iocbq->context3)->virt;
7690 if (!bpl)
7691 return IOCB_ERROR;
7692
7693 /* Should already be byte swapped. */
7694 wqe->generic.bde.addrHigh = le32_to_cpu(bpl->addrHigh);
7695 wqe->generic.bde.addrLow = le32_to_cpu(bpl->addrLow);
7696 /* swap the size field back to the cpu so we
7697 * can assign it to the sgl.
7698 */
7699 wqe->generic.bde.tus.w = le32_to_cpu(bpl->tus.w);
James Smart5ffc2662009-11-18 15:39:44 -05007700 xmit_len = wqe->generic.bde.tus.f.bdeSize;
7701 total_len = 0;
7702 for (i = 0; i < numBdes; i++) {
7703 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
7704 total_len += bde.tus.f.bdeSize;
7705 }
James Smart4f774512009-05-22 14:52:35 -04007706 } else
James Smart5ffc2662009-11-18 15:39:44 -05007707 xmit_len = iocbq->iocb.un.fcpi64.bdl.bdeSize;
James Smart4f774512009-05-22 14:52:35 -04007708
7709 iocbq->iocb.ulpIoTag = iocbq->iotag;
7710 cmnd = iocbq->iocb.ulpCommand;
7711
7712 switch (iocbq->iocb.ulpCommand) {
7713 case CMD_ELS_REQUEST64_CR:
James Smartc31098c2011-04-16 11:03:33 -04007714 ndlp = (struct lpfc_nodelist *)iocbq->context1;
James Smart4f774512009-05-22 14:52:35 -04007715 if (!iocbq->iocb.ulpLe) {
7716 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
7717 "2007 Only Limited Edition cmd Format"
7718 " supported 0x%x\n",
7719 iocbq->iocb.ulpCommand);
7720 return IOCB_ERROR;
7721 }
James Smartff78d8f2011-12-13 13:21:35 -05007722
James Smart5ffc2662009-11-18 15:39:44 -05007723 wqe->els_req.payload_len = xmit_len;
James Smart4f774512009-05-22 14:52:35 -04007724 /* Els_reguest64 has a TMO */
7725 bf_set(wqe_tmo, &wqe->els_req.wqe_com,
7726 iocbq->iocb.ulpTimeout);
7727 /* Need a VF for word 4 set the vf bit*/
7728 bf_set(els_req64_vf, &wqe->els_req, 0);
7729 /* And a VFID for word 12 */
7730 bf_set(els_req64_vfid, &wqe->els_req, 0);
James Smart4f774512009-05-22 14:52:35 -04007731 ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
James Smartf0d9bcc2010-10-22 11:07:09 -04007732 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
7733 iocbq->iocb.ulpContext);
7734 bf_set(wqe_ct, &wqe->els_req.wqe_com, ct);
7735 bf_set(wqe_pu, &wqe->els_req.wqe_com, 0);
James Smart4f774512009-05-22 14:52:35 -04007736 /* CCP CCPE PV PRI in word10 were set in the memcpy */
James Smartff78d8f2011-12-13 13:21:35 -05007737 if (command_type == ELS_COMMAND_FIP)
James Smartc8685952009-11-18 15:39:16 -05007738 els_id = ((iocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK)
7739 >> LPFC_FIP_ELS_ID_SHIFT);
James Smartff78d8f2011-12-13 13:21:35 -05007740 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
7741 iocbq->context2)->virt);
James Smart1b511972011-12-13 13:23:09 -05007742 if_type = bf_get(lpfc_sli_intf_if_type,
7743 &phba->sli4_hba.sli_intf);
7744 if (if_type == LPFC_SLI_INTF_IF_TYPE_2) {
James Smartff78d8f2011-12-13 13:21:35 -05007745 if (pcmd && (*pcmd == ELS_CMD_FLOGI ||
James Smartcb69f7d2011-12-13 13:21:57 -05007746 *pcmd == ELS_CMD_SCR ||
James Smart6b5151f2012-01-18 16:24:06 -05007747 *pcmd == ELS_CMD_FDISC ||
James Smartbdcd2b92012-03-01 22:33:52 -05007748 *pcmd == ELS_CMD_LOGO ||
James Smartff78d8f2011-12-13 13:21:35 -05007749 *pcmd == ELS_CMD_PLOGI)) {
7750 bf_set(els_req64_sp, &wqe->els_req, 1);
7751 bf_set(els_req64_sid, &wqe->els_req,
7752 iocbq->vport->fc_myDID);
7753 bf_set(wqe_ct, &wqe->els_req.wqe_com, 1);
7754 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
7755 phba->vpi_ids[phba->pport->vpi]);
James Smart3ef6d242012-01-18 16:23:48 -05007756 } else if (pcmd && iocbq->context1) {
James Smartff78d8f2011-12-13 13:21:35 -05007757 bf_set(wqe_ct, &wqe->els_req.wqe_com, 0);
7758 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
7759 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
7760 }
James Smartc8685952009-11-18 15:39:16 -05007761 }
James Smart6d368e52011-05-24 11:44:12 -04007762 bf_set(wqe_temp_rpi, &wqe->els_req.wqe_com,
7763 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
James Smartf0d9bcc2010-10-22 11:07:09 -04007764 bf_set(wqe_els_id, &wqe->els_req.wqe_com, els_id);
7765 bf_set(wqe_dbde, &wqe->els_req.wqe_com, 1);
7766 bf_set(wqe_iod, &wqe->els_req.wqe_com, LPFC_WQE_IOD_READ);
7767 bf_set(wqe_qosd, &wqe->els_req.wqe_com, 1);
7768 bf_set(wqe_lenloc, &wqe->els_req.wqe_com, LPFC_WQE_LENLOC_NONE);
7769 bf_set(wqe_ebde_cnt, &wqe->els_req.wqe_com, 0);
James Smart7851fe22011-07-22 18:36:52 -04007770 break;
James Smart5ffc2662009-11-18 15:39:44 -05007771 case CMD_XMIT_SEQUENCE64_CX:
James Smartf0d9bcc2010-10-22 11:07:09 -04007772 bf_set(wqe_ctxt_tag, &wqe->xmit_sequence.wqe_com,
7773 iocbq->iocb.un.ulpWord[3]);
7774 bf_set(wqe_rcvoxid, &wqe->xmit_sequence.wqe_com,
James Smart7851fe22011-07-22 18:36:52 -04007775 iocbq->iocb.unsli3.rcvsli3.ox_id);
James Smart5ffc2662009-11-18 15:39:44 -05007776 /* The entire sequence is transmitted for this IOCB */
7777 xmit_len = total_len;
7778 cmnd = CMD_XMIT_SEQUENCE64_CR;
James Smart1b511972011-12-13 13:23:09 -05007779 if (phba->link_flag & LS_LOOPBACK_MODE)
7780 bf_set(wqe_xo, &wqe->xmit_sequence.wge_ctl, 1);
James Smart4f774512009-05-22 14:52:35 -04007781 case CMD_XMIT_SEQUENCE64_CR:
James Smartf0d9bcc2010-10-22 11:07:09 -04007782 /* word3 iocb=io_tag32 wqe=reserved */
7783 wqe->xmit_sequence.rsvd3 = 0;
James Smart4f774512009-05-22 14:52:35 -04007784 /* word4 relative_offset memcpy */
7785 /* word5 r_ctl/df_ctl memcpy */
James Smartf0d9bcc2010-10-22 11:07:09 -04007786 bf_set(wqe_pu, &wqe->xmit_sequence.wqe_com, 0);
7787 bf_set(wqe_dbde, &wqe->xmit_sequence.wqe_com, 1);
7788 bf_set(wqe_iod, &wqe->xmit_sequence.wqe_com,
7789 LPFC_WQE_IOD_WRITE);
7790 bf_set(wqe_lenloc, &wqe->xmit_sequence.wqe_com,
7791 LPFC_WQE_LENLOC_WORD12);
7792 bf_set(wqe_ebde_cnt, &wqe->xmit_sequence.wqe_com, 0);
James Smart5ffc2662009-11-18 15:39:44 -05007793 wqe->xmit_sequence.xmit_len = xmit_len;
7794 command_type = OTHER_COMMAND;
James Smart7851fe22011-07-22 18:36:52 -04007795 break;
James Smart4f774512009-05-22 14:52:35 -04007796 case CMD_XMIT_BCAST64_CN:
James Smartf0d9bcc2010-10-22 11:07:09 -04007797 /* word3 iocb=iotag32 wqe=seq_payload_len */
7798 wqe->xmit_bcast64.seq_payload_len = xmit_len;
James Smart4f774512009-05-22 14:52:35 -04007799 /* word4 iocb=rsvd wqe=rsvd */
7800 /* word5 iocb=rctl/type/df_ctl wqe=rctl/type/df_ctl memcpy */
7801 /* word6 iocb=ctxt_tag/io_tag wqe=ctxt_tag/xri */
James Smartf0d9bcc2010-10-22 11:07:09 -04007802 bf_set(wqe_ct, &wqe->xmit_bcast64.wqe_com,
James Smart4f774512009-05-22 14:52:35 -04007803 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
James Smartf0d9bcc2010-10-22 11:07:09 -04007804 bf_set(wqe_dbde, &wqe->xmit_bcast64.wqe_com, 1);
7805 bf_set(wqe_iod, &wqe->xmit_bcast64.wqe_com, LPFC_WQE_IOD_WRITE);
7806 bf_set(wqe_lenloc, &wqe->xmit_bcast64.wqe_com,
7807 LPFC_WQE_LENLOC_WORD3);
7808 bf_set(wqe_ebde_cnt, &wqe->xmit_bcast64.wqe_com, 0);
James Smart7851fe22011-07-22 18:36:52 -04007809 break;
James Smart4f774512009-05-22 14:52:35 -04007810 case CMD_FCP_IWRITE64_CR:
7811 command_type = FCP_COMMAND_DATA_OUT;
James Smartf0d9bcc2010-10-22 11:07:09 -04007812 /* word3 iocb=iotag wqe=payload_offset_len */
7813 /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
7814 wqe->fcp_iwrite.payload_offset_len =
James Smart5ffc2662009-11-18 15:39:44 -05007815 xmit_len + sizeof(struct fcp_rsp);
James Smartf0d9bcc2010-10-22 11:07:09 -04007816 /* word4 iocb=parameter wqe=total_xfer_length memcpy */
7817 /* word5 iocb=initial_xfer_len wqe=initial_xfer_len memcpy */
7818 bf_set(wqe_erp, &wqe->fcp_iwrite.wqe_com,
7819 iocbq->iocb.ulpFCP2Rcvy);
7820 bf_set(wqe_lnk, &wqe->fcp_iwrite.wqe_com, iocbq->iocb.ulpXS);
7821 /* Always open the exchange */
7822 bf_set(wqe_xc, &wqe->fcp_iwrite.wqe_com, 0);
James Smartf0d9bcc2010-10-22 11:07:09 -04007823 bf_set(wqe_iod, &wqe->fcp_iwrite.wqe_com, LPFC_WQE_IOD_WRITE);
7824 bf_set(wqe_lenloc, &wqe->fcp_iwrite.wqe_com,
7825 LPFC_WQE_LENLOC_WORD4);
7826 bf_set(wqe_ebde_cnt, &wqe->fcp_iwrite.wqe_com, 0);
7827 bf_set(wqe_pu, &wqe->fcp_iwrite.wqe_com, iocbq->iocb.ulpPU);
James Smartacd68592012-01-18 16:25:09 -05007828 if (iocbq->iocb_flag & LPFC_IO_DIF) {
7829 iocbq->iocb_flag &= ~LPFC_IO_DIF;
7830 bf_set(wqe_dif, &wqe->generic.wqe_com, 1);
7831 }
7832 bf_set(wqe_dbde, &wqe->fcp_iwrite.wqe_com, 1);
James Smart7851fe22011-07-22 18:36:52 -04007833 break;
James Smartf0d9bcc2010-10-22 11:07:09 -04007834 case CMD_FCP_IREAD64_CR:
7835 /* word3 iocb=iotag wqe=payload_offset_len */
7836 /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
7837 wqe->fcp_iread.payload_offset_len =
7838 xmit_len + sizeof(struct fcp_rsp);
7839 /* word4 iocb=parameter wqe=total_xfer_length memcpy */
7840 /* word5 iocb=initial_xfer_len wqe=initial_xfer_len memcpy */
7841 bf_set(wqe_erp, &wqe->fcp_iread.wqe_com,
7842 iocbq->iocb.ulpFCP2Rcvy);
7843 bf_set(wqe_lnk, &wqe->fcp_iread.wqe_com, iocbq->iocb.ulpXS);
James Smart4f774512009-05-22 14:52:35 -04007844 /* Always open the exchange */
7845 bf_set(wqe_xc, &wqe->fcp_iread.wqe_com, 0);
James Smartf0d9bcc2010-10-22 11:07:09 -04007846 bf_set(wqe_iod, &wqe->fcp_iread.wqe_com, LPFC_WQE_IOD_READ);
7847 bf_set(wqe_lenloc, &wqe->fcp_iread.wqe_com,
7848 LPFC_WQE_LENLOC_WORD4);
7849 bf_set(wqe_ebde_cnt, &wqe->fcp_iread.wqe_com, 0);
7850 bf_set(wqe_pu, &wqe->fcp_iread.wqe_com, iocbq->iocb.ulpPU);
James Smartacd68592012-01-18 16:25:09 -05007851 if (iocbq->iocb_flag & LPFC_IO_DIF) {
7852 iocbq->iocb_flag &= ~LPFC_IO_DIF;
7853 bf_set(wqe_dif, &wqe->generic.wqe_com, 1);
7854 }
7855 bf_set(wqe_dbde, &wqe->fcp_iread.wqe_com, 1);
James Smart7851fe22011-07-22 18:36:52 -04007856 break;
James Smartf1126682009-06-10 17:22:44 -04007857 case CMD_FCP_ICMND64_CR:
James Smartf0d9bcc2010-10-22 11:07:09 -04007858 /* word3 iocb=IO_TAG wqe=reserved */
7859 wqe->fcp_icmd.rsrvd3 = 0;
7860 bf_set(wqe_pu, &wqe->fcp_icmd.wqe_com, 0);
James Smartf1126682009-06-10 17:22:44 -04007861 /* Always open the exchange */
James Smartf0d9bcc2010-10-22 11:07:09 -04007862 bf_set(wqe_xc, &wqe->fcp_icmd.wqe_com, 0);
7863 bf_set(wqe_dbde, &wqe->fcp_icmd.wqe_com, 1);
7864 bf_set(wqe_iod, &wqe->fcp_icmd.wqe_com, LPFC_WQE_IOD_WRITE);
7865 bf_set(wqe_qosd, &wqe->fcp_icmd.wqe_com, 1);
7866 bf_set(wqe_lenloc, &wqe->fcp_icmd.wqe_com,
7867 LPFC_WQE_LENLOC_NONE);
7868 bf_set(wqe_ebde_cnt, &wqe->fcp_icmd.wqe_com, 0);
James Smart7851fe22011-07-22 18:36:52 -04007869 break;
James Smart4f774512009-05-22 14:52:35 -04007870 case CMD_GEN_REQUEST64_CR:
James Smart63e801c2010-11-20 23:14:19 -05007871 /* For this command calculate the xmit length of the
7872 * request bde.
7873 */
7874 xmit_len = 0;
7875 numBdes = iocbq->iocb.un.genreq64.bdl.bdeSize /
7876 sizeof(struct ulp_bde64);
7877 for (i = 0; i < numBdes; i++) {
James Smart63e801c2010-11-20 23:14:19 -05007878 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
James Smart546fc852011-03-11 16:06:29 -05007879 if (bde.tus.f.bdeFlags != BUFF_TYPE_BDE_64)
7880 break;
James Smart63e801c2010-11-20 23:14:19 -05007881 xmit_len += bde.tus.f.bdeSize;
7882 }
James Smartf0d9bcc2010-10-22 11:07:09 -04007883 /* word3 iocb=IO_TAG wqe=request_payload_len */
7884 wqe->gen_req.request_payload_len = xmit_len;
7885 /* word4 iocb=parameter wqe=relative_offset memcpy */
7886 /* word5 [rctl, type, df_ctl, la] copied in memcpy */
James Smart4f774512009-05-22 14:52:35 -04007887 /* word6 context tag copied in memcpy */
7888 if (iocbq->iocb.ulpCt_h || iocbq->iocb.ulpCt_l) {
7889 ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
7890 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
7891 "2015 Invalid CT %x command 0x%x\n",
7892 ct, iocbq->iocb.ulpCommand);
7893 return IOCB_ERROR;
7894 }
James Smartf0d9bcc2010-10-22 11:07:09 -04007895 bf_set(wqe_ct, &wqe->gen_req.wqe_com, 0);
7896 bf_set(wqe_tmo, &wqe->gen_req.wqe_com, iocbq->iocb.ulpTimeout);
7897 bf_set(wqe_pu, &wqe->gen_req.wqe_com, iocbq->iocb.ulpPU);
7898 bf_set(wqe_dbde, &wqe->gen_req.wqe_com, 1);
7899 bf_set(wqe_iod, &wqe->gen_req.wqe_com, LPFC_WQE_IOD_READ);
7900 bf_set(wqe_qosd, &wqe->gen_req.wqe_com, 1);
7901 bf_set(wqe_lenloc, &wqe->gen_req.wqe_com, LPFC_WQE_LENLOC_NONE);
7902 bf_set(wqe_ebde_cnt, &wqe->gen_req.wqe_com, 0);
James Smart4f774512009-05-22 14:52:35 -04007903 command_type = OTHER_COMMAND;
James Smart7851fe22011-07-22 18:36:52 -04007904 break;
James Smart4f774512009-05-22 14:52:35 -04007905 case CMD_XMIT_ELS_RSP64_CX:
James Smartc31098c2011-04-16 11:03:33 -04007906 ndlp = (struct lpfc_nodelist *)iocbq->context1;
James Smart4f774512009-05-22 14:52:35 -04007907 /* words0-2 BDE memcpy */
James Smartf0d9bcc2010-10-22 11:07:09 -04007908 /* word3 iocb=iotag32 wqe=response_payload_len */
7909 wqe->xmit_els_rsp.response_payload_len = xmit_len;
James Smart4f774512009-05-22 14:52:35 -04007910 /* word4 iocb=did wge=rsvd. */
James Smartf0d9bcc2010-10-22 11:07:09 -04007911 wqe->xmit_els_rsp.rsvd4 = 0;
James Smart4f774512009-05-22 14:52:35 -04007912 /* word5 iocb=rsvd wge=did */
7913 bf_set(wqe_els_did, &wqe->xmit_els_rsp.wqe_dest,
7914 iocbq->iocb.un.elsreq64.remoteID);
James Smartf0d9bcc2010-10-22 11:07:09 -04007915 bf_set(wqe_ct, &wqe->xmit_els_rsp.wqe_com,
7916 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
7917 bf_set(wqe_pu, &wqe->xmit_els_rsp.wqe_com, iocbq->iocb.ulpPU);
7918 bf_set(wqe_rcvoxid, &wqe->xmit_els_rsp.wqe_com,
James Smart7851fe22011-07-22 18:36:52 -04007919 iocbq->iocb.unsli3.rcvsli3.ox_id);
James Smart4f774512009-05-22 14:52:35 -04007920 if (!iocbq->iocb.ulpCt_h && iocbq->iocb.ulpCt_l)
James Smartf0d9bcc2010-10-22 11:07:09 -04007921 bf_set(wqe_ctxt_tag, &wqe->xmit_els_rsp.wqe_com,
James Smart6d368e52011-05-24 11:44:12 -04007922 phba->vpi_ids[iocbq->vport->vpi]);
James Smartf0d9bcc2010-10-22 11:07:09 -04007923 bf_set(wqe_dbde, &wqe->xmit_els_rsp.wqe_com, 1);
7924 bf_set(wqe_iod, &wqe->xmit_els_rsp.wqe_com, LPFC_WQE_IOD_WRITE);
7925 bf_set(wqe_qosd, &wqe->xmit_els_rsp.wqe_com, 1);
7926 bf_set(wqe_lenloc, &wqe->xmit_els_rsp.wqe_com,
7927 LPFC_WQE_LENLOC_WORD3);
7928 bf_set(wqe_ebde_cnt, &wqe->xmit_els_rsp.wqe_com, 0);
James Smart6d368e52011-05-24 11:44:12 -04007929 bf_set(wqe_rsp_temp_rpi, &wqe->xmit_els_rsp,
7930 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
James Smartff78d8f2011-12-13 13:21:35 -05007931 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
7932 iocbq->context2)->virt);
7933 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
7934 bf_set(els_req64_sp, &wqe->els_req, 1);
7935 bf_set(els_req64_sid, &wqe->els_req,
7936 iocbq->vport->fc_myDID);
7937 bf_set(wqe_ct, &wqe->els_req.wqe_com, 1);
7938 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
7939 phba->vpi_ids[phba->pport->vpi]);
7940 }
James Smart4f774512009-05-22 14:52:35 -04007941 command_type = OTHER_COMMAND;
James Smart7851fe22011-07-22 18:36:52 -04007942 break;
James Smart4f774512009-05-22 14:52:35 -04007943 case CMD_CLOSE_XRI_CN:
7944 case CMD_ABORT_XRI_CN:
7945 case CMD_ABORT_XRI_CX:
7946 /* words 0-2 memcpy should be 0 rserved */
7947 /* port will send abts */
James Smartdcf2a4e2010-09-29 11:18:53 -04007948 abrt_iotag = iocbq->iocb.un.acxri.abortContextTag;
7949 if (abrt_iotag != 0 && abrt_iotag <= phba->sli.last_iotag) {
7950 abrtiocbq = phba->sli.iocbq_lookup[abrt_iotag];
7951 fip = abrtiocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK;
7952 } else
7953 fip = 0;
7954
7955 if ((iocbq->iocb.ulpCommand == CMD_CLOSE_XRI_CN) || fip)
James Smart4f774512009-05-22 14:52:35 -04007956 /*
James Smartdcf2a4e2010-09-29 11:18:53 -04007957 * The link is down, or the command was ELS_FIP
7958 * so the fw does not need to send abts
James Smart4f774512009-05-22 14:52:35 -04007959 * on the wire.
7960 */
7961 bf_set(abort_cmd_ia, &wqe->abort_cmd, 1);
7962 else
7963 bf_set(abort_cmd_ia, &wqe->abort_cmd, 0);
7964 bf_set(abort_cmd_criteria, &wqe->abort_cmd, T_XRI_TAG);
James Smartf0d9bcc2010-10-22 11:07:09 -04007965 /* word5 iocb=CONTEXT_TAG|IO_TAG wqe=reserved */
7966 wqe->abort_cmd.rsrvd5 = 0;
7967 bf_set(wqe_ct, &wqe->abort_cmd.wqe_com,
James Smart4f774512009-05-22 14:52:35 -04007968 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
7969 abort_tag = iocbq->iocb.un.acxri.abortIoTag;
James Smart4f774512009-05-22 14:52:35 -04007970 /*
7971 * The abort handler will send us CMD_ABORT_XRI_CN or
7972 * CMD_CLOSE_XRI_CN and the fw only accepts CMD_ABORT_XRI_CX
7973 */
James Smartf0d9bcc2010-10-22 11:07:09 -04007974 bf_set(wqe_cmnd, &wqe->abort_cmd.wqe_com, CMD_ABORT_XRI_CX);
7975 bf_set(wqe_qosd, &wqe->abort_cmd.wqe_com, 1);
7976 bf_set(wqe_lenloc, &wqe->abort_cmd.wqe_com,
7977 LPFC_WQE_LENLOC_NONE);
James Smart4f774512009-05-22 14:52:35 -04007978 cmnd = CMD_ABORT_XRI_CX;
7979 command_type = OTHER_COMMAND;
7980 xritag = 0;
James Smart7851fe22011-07-22 18:36:52 -04007981 break;
James Smart6669f9b2009-10-02 15:16:45 -04007982 case CMD_XMIT_BLS_RSP64_CX:
James Smart6b5151f2012-01-18 16:24:06 -05007983 ndlp = (struct lpfc_nodelist *)iocbq->context1;
James Smart546fc852011-03-11 16:06:29 -05007984 /* As BLS ABTS RSP WQE is very different from other WQEs,
James Smart6669f9b2009-10-02 15:16:45 -04007985 * we re-construct this WQE here based on information in
7986 * iocbq from scratch.
7987 */
7988 memset(wqe, 0, sizeof(union lpfc_wqe));
James Smart5ffc2662009-11-18 15:39:44 -05007989 /* OX_ID is invariable to who sent ABTS to CT exchange */
James Smart6669f9b2009-10-02 15:16:45 -04007990 bf_set(xmit_bls_rsp64_oxid, &wqe->xmit_bls_rsp,
James Smart546fc852011-03-11 16:06:29 -05007991 bf_get(lpfc_abts_oxid, &iocbq->iocb.un.bls_rsp));
7992 if (bf_get(lpfc_abts_orig, &iocbq->iocb.un.bls_rsp) ==
James Smart5ffc2662009-11-18 15:39:44 -05007993 LPFC_ABTS_UNSOL_INT) {
7994 /* ABTS sent by initiator to CT exchange, the
7995 * RX_ID field will be filled with the newly
7996 * allocated responder XRI.
7997 */
7998 bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
7999 iocbq->sli4_xritag);
8000 } else {
8001 /* ABTS sent by responder to CT exchange, the
8002 * RX_ID field will be filled with the responder
8003 * RX_ID from ABTS.
8004 */
8005 bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
James Smart546fc852011-03-11 16:06:29 -05008006 bf_get(lpfc_abts_rxid, &iocbq->iocb.un.bls_rsp));
James Smart5ffc2662009-11-18 15:39:44 -05008007 }
James Smart6669f9b2009-10-02 15:16:45 -04008008 bf_set(xmit_bls_rsp64_seqcnthi, &wqe->xmit_bls_rsp, 0xffff);
8009 bf_set(wqe_xmit_bls_pt, &wqe->xmit_bls_rsp.wqe_dest, 0x1);
James Smart6b5151f2012-01-18 16:24:06 -05008010
8011 /* Use CT=VPI */
8012 bf_set(wqe_els_did, &wqe->xmit_bls_rsp.wqe_dest,
8013 ndlp->nlp_DID);
8014 bf_set(xmit_bls_rsp64_temprpi, &wqe->xmit_bls_rsp,
8015 iocbq->iocb.ulpContext);
8016 bf_set(wqe_ct, &wqe->xmit_bls_rsp.wqe_com, 1);
James Smart6669f9b2009-10-02 15:16:45 -04008017 bf_set(wqe_ctxt_tag, &wqe->xmit_bls_rsp.wqe_com,
James Smart6b5151f2012-01-18 16:24:06 -05008018 phba->vpi_ids[phba->pport->vpi]);
James Smartf0d9bcc2010-10-22 11:07:09 -04008019 bf_set(wqe_qosd, &wqe->xmit_bls_rsp.wqe_com, 1);
8020 bf_set(wqe_lenloc, &wqe->xmit_bls_rsp.wqe_com,
8021 LPFC_WQE_LENLOC_NONE);
James Smart6669f9b2009-10-02 15:16:45 -04008022 /* Overwrite the pre-set comnd type with OTHER_COMMAND */
8023 command_type = OTHER_COMMAND;
James Smart546fc852011-03-11 16:06:29 -05008024 if (iocbq->iocb.un.xseq64.w5.hcsw.Rctl == FC_RCTL_BA_RJT) {
8025 bf_set(xmit_bls_rsp64_rjt_vspec, &wqe->xmit_bls_rsp,
8026 bf_get(lpfc_vndr_code, &iocbq->iocb.un.bls_rsp));
8027 bf_set(xmit_bls_rsp64_rjt_expc, &wqe->xmit_bls_rsp,
8028 bf_get(lpfc_rsn_expln, &iocbq->iocb.un.bls_rsp));
8029 bf_set(xmit_bls_rsp64_rjt_rsnc, &wqe->xmit_bls_rsp,
8030 bf_get(lpfc_rsn_code, &iocbq->iocb.un.bls_rsp));
8031 }
8032
James Smart7851fe22011-07-22 18:36:52 -04008033 break;
James Smart4f774512009-05-22 14:52:35 -04008034 case CMD_XRI_ABORTED_CX:
8035 case CMD_CREATE_XRI_CR: /* Do we expect to use this? */
James Smart4f774512009-05-22 14:52:35 -04008036 case CMD_IOCB_FCP_IBIDIR64_CR: /* bidirectional xfer */
8037 case CMD_FCP_TSEND64_CX: /* Target mode send xfer-ready */
8038 case CMD_FCP_TRSP64_CX: /* Target mode rcv */
8039 case CMD_FCP_AUTO_TRSP_CX: /* Auto target rsp */
8040 default:
8041 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8042 "2014 Invalid command 0x%x\n",
8043 iocbq->iocb.ulpCommand);
8044 return IOCB_ERROR;
James Smart7851fe22011-07-22 18:36:52 -04008045 break;
James Smart4f774512009-05-22 14:52:35 -04008046 }
James Smart6d368e52011-05-24 11:44:12 -04008047
James Smartf0d9bcc2010-10-22 11:07:09 -04008048 bf_set(wqe_xri_tag, &wqe->generic.wqe_com, xritag);
8049 bf_set(wqe_reqtag, &wqe->generic.wqe_com, iocbq->iotag);
8050 wqe->generic.wqe_com.abort_tag = abort_tag;
8051 bf_set(wqe_cmd_type, &wqe->generic.wqe_com, command_type);
8052 bf_set(wqe_cmnd, &wqe->generic.wqe_com, cmnd);
8053 bf_set(wqe_class, &wqe->generic.wqe_com, iocbq->iocb.ulpClass);
8054 bf_set(wqe_cqid, &wqe->generic.wqe_com, LPFC_WQE_CQ_ID_DEFAULT);
James Smart4f774512009-05-22 14:52:35 -04008055 return 0;
8056}
8057
8058/**
8059 * __lpfc_sli_issue_iocb_s4 - SLI4 device lockless ver of lpfc_sli_issue_iocb
8060 * @phba: Pointer to HBA context object.
8061 * @ring_number: SLI ring number to issue iocb on.
8062 * @piocb: Pointer to command iocb.
8063 * @flag: Flag indicating if this command can be put into txq.
8064 *
8065 * __lpfc_sli_issue_iocb_s4 is used by other functions in the driver to issue
8066 * an iocb command to an HBA with SLI-4 interface spec.
8067 *
8068 * This function is called with hbalock held. The function will return success
8069 * after it successfully submit the iocb to firmware or after adding to the
8070 * txq.
8071 **/
8072static int
8073__lpfc_sli_issue_iocb_s4(struct lpfc_hba *phba, uint32_t ring_number,
8074 struct lpfc_iocbq *piocb, uint32_t flag)
8075{
8076 struct lpfc_sglq *sglq;
James Smart4f774512009-05-22 14:52:35 -04008077 union lpfc_wqe wqe;
8078 struct lpfc_sli_ring *pring = &phba->sli.ring[ring_number];
James Smart4f774512009-05-22 14:52:35 -04008079
8080 if (piocb->sli4_xritag == NO_XRI) {
8081 if (piocb->iocb.ulpCommand == CMD_ABORT_XRI_CN ||
James Smart6b5151f2012-01-18 16:24:06 -05008082 piocb->iocb.ulpCommand == CMD_CLOSE_XRI_CN)
James Smart4f774512009-05-22 14:52:35 -04008083 sglq = NULL;
8084 else {
James Smart2a9bf3d2010-06-07 15:24:45 -04008085 if (pring->txq_cnt) {
8086 if (!(flag & SLI_IOCB_RET_IOCB)) {
8087 __lpfc_sli_ringtx_put(phba,
8088 pring, piocb);
8089 return IOCB_SUCCESS;
8090 } else {
8091 return IOCB_BUSY;
8092 }
8093 } else {
James Smart6d368e52011-05-24 11:44:12 -04008094 sglq = __lpfc_sli_get_sglq(phba, piocb);
James Smart2a9bf3d2010-06-07 15:24:45 -04008095 if (!sglq) {
8096 if (!(flag & SLI_IOCB_RET_IOCB)) {
8097 __lpfc_sli_ringtx_put(phba,
8098 pring,
8099 piocb);
8100 return IOCB_SUCCESS;
8101 } else
8102 return IOCB_BUSY;
8103 }
8104 }
James Smart4f774512009-05-22 14:52:35 -04008105 }
8106 } else if (piocb->iocb_flag & LPFC_IO_FCP) {
James Smart6d368e52011-05-24 11:44:12 -04008107 /* These IO's already have an XRI and a mapped sgl. */
8108 sglq = NULL;
James Smart4f774512009-05-22 14:52:35 -04008109 } else {
James Smart6d368e52011-05-24 11:44:12 -04008110 /*
8111 * This is a continuation of a commandi,(CX) so this
James Smart4f774512009-05-22 14:52:35 -04008112 * sglq is on the active list
8113 */
8114 sglq = __lpfc_get_active_sglq(phba, piocb->sli4_xritag);
8115 if (!sglq)
8116 return IOCB_ERROR;
8117 }
8118
8119 if (sglq) {
James Smart6d368e52011-05-24 11:44:12 -04008120 piocb->sli4_lxritag = sglq->sli4_lxritag;
James Smart2a9bf3d2010-06-07 15:24:45 -04008121 piocb->sli4_xritag = sglq->sli4_xritag;
James Smart2a9bf3d2010-06-07 15:24:45 -04008122 if (NO_XRI == lpfc_sli4_bpl2sgl(phba, piocb, sglq))
James Smart4f774512009-05-22 14:52:35 -04008123 return IOCB_ERROR;
8124 }
8125
8126 if (lpfc_sli4_iocb2wqe(phba, piocb, &wqe))
8127 return IOCB_ERROR;
8128
James Smart341af102010-01-26 23:07:37 -05008129 if ((piocb->iocb_flag & LPFC_IO_FCP) ||
8130 (piocb->iocb_flag & LPFC_USE_FCPWQIDX)) {
James Smart5ffc2662009-11-18 15:39:44 -05008131 /*
8132 * For FCP command IOCB, get a new WQ index to distribute
8133 * WQE across the WQsr. On the other hand, for abort IOCB,
8134 * it carries the same WQ index to the original command
8135 * IOCB.
8136 */
James Smart341af102010-01-26 23:07:37 -05008137 if (piocb->iocb_flag & LPFC_IO_FCP)
James Smart5ffc2662009-11-18 15:39:44 -05008138 piocb->fcp_wqidx = lpfc_sli4_scmd_to_wqidx_distr(phba);
James Smart2e90f4b2011-12-13 13:22:37 -05008139 if (unlikely(!phba->sli4_hba.fcp_wq))
8140 return IOCB_ERROR;
James Smart5ffc2662009-11-18 15:39:44 -05008141 if (lpfc_sli4_wq_put(phba->sli4_hba.fcp_wq[piocb->fcp_wqidx],
8142 &wqe))
James Smart4f774512009-05-22 14:52:35 -04008143 return IOCB_ERROR;
8144 } else {
8145 if (lpfc_sli4_wq_put(phba->sli4_hba.els_wq, &wqe))
8146 return IOCB_ERROR;
8147 }
8148 lpfc_sli_ringtxcmpl_put(phba, pring, piocb);
8149
8150 return 0;
8151}
8152
8153/**
James Smart3772a992009-05-22 14:50:54 -04008154 * __lpfc_sli_issue_iocb - Wrapper func of lockless version for issuing iocb
8155 *
8156 * This routine wraps the actual lockless version for issusing IOCB function
8157 * pointer from the lpfc_hba struct.
8158 *
8159 * Return codes:
8160 * IOCB_ERROR - Error
8161 * IOCB_SUCCESS - Success
8162 * IOCB_BUSY - Busy
8163 **/
James Smart2a9bf3d2010-06-07 15:24:45 -04008164int
James Smart3772a992009-05-22 14:50:54 -04008165__lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
8166 struct lpfc_iocbq *piocb, uint32_t flag)
8167{
8168 return phba->__lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
8169}
8170
8171/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03008172 * lpfc_sli_api_table_setup - Set up sli api function jump table
James Smart3772a992009-05-22 14:50:54 -04008173 * @phba: The hba struct for which this call is being executed.
8174 * @dev_grp: The HBA PCI-Device group number.
8175 *
8176 * This routine sets up the SLI interface API function jump table in @phba
8177 * struct.
8178 * Returns: 0 - success, -ENODEV - failure.
8179 **/
8180int
8181lpfc_sli_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
8182{
8183
8184 switch (dev_grp) {
8185 case LPFC_PCI_DEV_LP:
8186 phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s3;
8187 phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s3;
8188 break;
James Smart4f774512009-05-22 14:52:35 -04008189 case LPFC_PCI_DEV_OC:
8190 phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s4;
8191 phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s4;
8192 break;
James Smart3772a992009-05-22 14:50:54 -04008193 default:
8194 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8195 "1419 Invalid HBA PCI-device group: 0x%x\n",
8196 dev_grp);
8197 return -ENODEV;
8198 break;
8199 }
8200 phba->lpfc_get_iocb_from_iocbq = lpfc_get_iocb_from_iocbq;
8201 return 0;
8202}
James Smart92d7f7b2007-06-17 19:56:38 -05008203
James Smarte59058c2008-08-24 21:49:00 -04008204/**
James Smart3621a712009-04-06 18:47:14 -04008205 * lpfc_sli_issue_iocb - Wrapper function for __lpfc_sli_issue_iocb
James Smarte59058c2008-08-24 21:49:00 -04008206 * @phba: Pointer to HBA context object.
8207 * @pring: Pointer to driver SLI ring object.
8208 * @piocb: Pointer to command iocb.
8209 * @flag: Flag indicating if this command can be put into txq.
8210 *
8211 * lpfc_sli_issue_iocb is a wrapper around __lpfc_sli_issue_iocb
8212 * function. This function gets the hbalock and calls
8213 * __lpfc_sli_issue_iocb function and will return the error returned
8214 * by __lpfc_sli_issue_iocb function. This wrapper is used by
8215 * functions which do not hold hbalock.
8216 **/
James Smart92d7f7b2007-06-17 19:56:38 -05008217int
James Smart3772a992009-05-22 14:50:54 -04008218lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
James Smart92d7f7b2007-06-17 19:56:38 -05008219 struct lpfc_iocbq *piocb, uint32_t flag)
8220{
8221 unsigned long iflags;
8222 int rc;
8223
8224 spin_lock_irqsave(&phba->hbalock, iflags);
James Smart3772a992009-05-22 14:50:54 -04008225 rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
James Smart92d7f7b2007-06-17 19:56:38 -05008226 spin_unlock_irqrestore(&phba->hbalock, iflags);
8227
8228 return rc;
8229}
8230
James Smarte59058c2008-08-24 21:49:00 -04008231/**
James Smart3621a712009-04-06 18:47:14 -04008232 * lpfc_extra_ring_setup - Extra ring setup function
James Smarte59058c2008-08-24 21:49:00 -04008233 * @phba: Pointer to HBA context object.
8234 *
8235 * This function is called while driver attaches with the
8236 * HBA to setup the extra ring. The extra ring is used
8237 * only when driver needs to support target mode functionality
8238 * or IP over FC functionalities.
8239 *
8240 * This function is called with no lock held.
8241 **/
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008242static int
8243lpfc_extra_ring_setup( struct lpfc_hba *phba)
8244{
8245 struct lpfc_sli *psli;
8246 struct lpfc_sli_ring *pring;
8247
8248 psli = &phba->sli;
8249
8250 /* Adjust cmd/rsp ring iocb entries more evenly */
James Smarta4bc3372006-12-02 13:34:16 -05008251
8252 /* Take some away from the FCP ring */
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008253 pring = &psli->ring[psli->fcp_ring];
8254 pring->numCiocb -= SLI2_IOCB_CMD_R1XTRA_ENTRIES;
8255 pring->numRiocb -= SLI2_IOCB_RSP_R1XTRA_ENTRIES;
8256 pring->numCiocb -= SLI2_IOCB_CMD_R3XTRA_ENTRIES;
8257 pring->numRiocb -= SLI2_IOCB_RSP_R3XTRA_ENTRIES;
8258
James Smarta4bc3372006-12-02 13:34:16 -05008259 /* and give them to the extra ring */
8260 pring = &psli->ring[psli->extra_ring];
8261
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008262 pring->numCiocb += SLI2_IOCB_CMD_R1XTRA_ENTRIES;
8263 pring->numRiocb += SLI2_IOCB_RSP_R1XTRA_ENTRIES;
8264 pring->numCiocb += SLI2_IOCB_CMD_R3XTRA_ENTRIES;
8265 pring->numRiocb += SLI2_IOCB_RSP_R3XTRA_ENTRIES;
8266
8267 /* Setup default profile for this ring */
8268 pring->iotag_max = 4096;
8269 pring->num_mask = 1;
8270 pring->prt[0].profile = 0; /* Mask 0 */
James Smarta4bc3372006-12-02 13:34:16 -05008271 pring->prt[0].rctl = phba->cfg_multi_ring_rctl;
8272 pring->prt[0].type = phba->cfg_multi_ring_type;
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008273 pring->prt[0].lpfc_sli_rcv_unsol_event = NULL;
8274 return 0;
8275}
8276
James Smartcb69f7d2011-12-13 13:21:57 -05008277/* lpfc_sli_abts_recover_port - Recover a port that failed an ABTS.
8278 * @vport: pointer to virtual port object.
8279 * @ndlp: nodelist pointer for the impacted rport.
8280 *
8281 * The driver calls this routine in response to a XRI ABORT CQE
8282 * event from the port. In this event, the driver is required to
8283 * recover its login to the rport even though its login may be valid
8284 * from the driver's perspective. The failed ABTS notice from the
8285 * port indicates the rport is not responding.
8286 */
8287static void
8288lpfc_sli_abts_recover_port(struct lpfc_vport *vport,
8289 struct lpfc_nodelist *ndlp)
8290{
8291 struct Scsi_Host *shost;
8292 struct lpfc_hba *phba;
8293 unsigned long flags = 0;
8294
8295 shost = lpfc_shost_from_vport(vport);
8296 phba = vport->phba;
8297 if (ndlp->nlp_state != NLP_STE_MAPPED_NODE) {
8298 lpfc_printf_log(phba, KERN_INFO,
8299 LOG_SLI, "3093 No rport recovery needed. "
8300 "rport in state 0x%x\n",
8301 ndlp->nlp_state);
8302 return;
8303 }
8304 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8305 "3094 Start rport recovery on shost id 0x%x "
8306 "fc_id 0x%06x vpi 0x%x rpi 0x%x state 0x%x "
8307 "flags 0x%x\n",
8308 shost->host_no, ndlp->nlp_DID,
8309 vport->vpi, ndlp->nlp_rpi, ndlp->nlp_state,
8310 ndlp->nlp_flag);
8311 /*
8312 * The rport is not responding. Don't attempt ADISC recovery.
8313 * Remove the FCP-2 flag to force a PLOGI.
8314 */
8315 spin_lock_irqsave(shost->host_lock, flags);
8316 ndlp->nlp_fcp_info &= ~NLP_FCP_2_DEVICE;
8317 spin_unlock_irqrestore(shost->host_lock, flags);
8318 lpfc_disc_state_machine(vport, ndlp, NULL,
8319 NLP_EVT_DEVICE_RECOVERY);
8320 lpfc_cancel_retry_delay_tmo(vport, ndlp);
8321 spin_lock_irqsave(shost->host_lock, flags);
8322 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
8323 spin_unlock_irqrestore(shost->host_lock, flags);
8324 lpfc_disc_start(vport);
8325}
8326
8327/* lpfc_sli_abts_err_handler - handle a failed ABTS request from an SLI3 port.
8328 * @phba: Pointer to HBA context object.
8329 * @iocbq: Pointer to iocb object.
8330 *
8331 * The async_event handler calls this routine when it receives
8332 * an ASYNC_STATUS_CN event from the port. The port generates
8333 * this event when an Abort Sequence request to an rport fails
8334 * twice in succession. The abort could be originated by the
8335 * driver or by the port. The ABTS could have been for an ELS
8336 * or FCP IO. The port only generates this event when an ABTS
8337 * fails to complete after one retry.
8338 */
8339static void
8340lpfc_sli_abts_err_handler(struct lpfc_hba *phba,
8341 struct lpfc_iocbq *iocbq)
8342{
8343 struct lpfc_nodelist *ndlp = NULL;
8344 uint16_t rpi = 0, vpi = 0;
8345 struct lpfc_vport *vport = NULL;
8346
8347 /* The rpi in the ulpContext is vport-sensitive. */
8348 vpi = iocbq->iocb.un.asyncstat.sub_ctxt_tag;
8349 rpi = iocbq->iocb.ulpContext;
8350
8351 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
8352 "3092 Port generated ABTS async event "
8353 "on vpi %d rpi %d status 0x%x\n",
8354 vpi, rpi, iocbq->iocb.ulpStatus);
8355
8356 vport = lpfc_find_vport_by_vpid(phba, vpi);
8357 if (!vport)
8358 goto err_exit;
8359 ndlp = lpfc_findnode_rpi(vport, rpi);
8360 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
8361 goto err_exit;
8362
8363 if (iocbq->iocb.ulpStatus == IOSTAT_LOCAL_REJECT)
8364 lpfc_sli_abts_recover_port(vport, ndlp);
8365 return;
8366
8367 err_exit:
8368 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
8369 "3095 Event Context not found, no "
8370 "action on vpi %d rpi %d status 0x%x, reason 0x%x\n",
8371 iocbq->iocb.ulpContext, iocbq->iocb.ulpStatus,
8372 vpi, rpi);
8373}
8374
8375/* lpfc_sli4_abts_err_handler - handle a failed ABTS request from an SLI4 port.
8376 * @phba: pointer to HBA context object.
8377 * @ndlp: nodelist pointer for the impacted rport.
8378 * @axri: pointer to the wcqe containing the failed exchange.
8379 *
8380 * The driver calls this routine when it receives an ABORT_XRI_FCP CQE from the
8381 * port. The port generates this event when an abort exchange request to an
8382 * rport fails twice in succession with no reply. The abort could be originated
8383 * by the driver or by the port. The ABTS could have been for an ELS or FCP IO.
8384 */
8385void
8386lpfc_sli4_abts_err_handler(struct lpfc_hba *phba,
8387 struct lpfc_nodelist *ndlp,
8388 struct sli4_wcqe_xri_aborted *axri)
8389{
8390 struct lpfc_vport *vport;
8391
James Smart6b5151f2012-01-18 16:24:06 -05008392 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
James Smartcb69f7d2011-12-13 13:21:57 -05008393 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
8394 "3115 Node Context not found, driver "
8395 "ignoring abts err event\n");
James Smart6b5151f2012-01-18 16:24:06 -05008396 return;
8397 }
8398
James Smartcb69f7d2011-12-13 13:21:57 -05008399 vport = ndlp->vport;
8400 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
8401 "3116 Port generated FCP XRI ABORT event on "
8402 "vpi %d rpi %d xri x%x status 0x%x\n",
8403 ndlp->vport->vpi, ndlp->nlp_rpi,
8404 bf_get(lpfc_wcqe_xa_xri, axri),
8405 bf_get(lpfc_wcqe_xa_status, axri));
8406
8407 if (bf_get(lpfc_wcqe_xa_status, axri) == IOSTAT_LOCAL_REJECT)
8408 lpfc_sli_abts_recover_port(vport, ndlp);
8409}
8410
James Smarte59058c2008-08-24 21:49:00 -04008411/**
James Smart3621a712009-04-06 18:47:14 -04008412 * lpfc_sli_async_event_handler - ASYNC iocb handler function
James Smarte59058c2008-08-24 21:49:00 -04008413 * @phba: Pointer to HBA context object.
8414 * @pring: Pointer to driver SLI ring object.
8415 * @iocbq: Pointer to iocb object.
8416 *
8417 * This function is called by the slow ring event handler
8418 * function when there is an ASYNC event iocb in the ring.
8419 * This function is called with no lock held.
8420 * Currently this function handles only temperature related
8421 * ASYNC events. The function decodes the temperature sensor
8422 * event message and posts events for the management applications.
8423 **/
James Smart98c9ea52007-10-27 13:37:33 -04008424static void
James Smart57127f12007-10-27 13:37:05 -04008425lpfc_sli_async_event_handler(struct lpfc_hba * phba,
8426 struct lpfc_sli_ring * pring, struct lpfc_iocbq * iocbq)
8427{
8428 IOCB_t *icmd;
8429 uint16_t evt_code;
James Smart57127f12007-10-27 13:37:05 -04008430 struct temp_event temp_event_data;
8431 struct Scsi_Host *shost;
James Smarta257bf92009-04-06 18:48:10 -04008432 uint32_t *iocb_w;
James Smart57127f12007-10-27 13:37:05 -04008433
8434 icmd = &iocbq->iocb;
8435 evt_code = icmd->un.asyncstat.evt_code;
James Smart57127f12007-10-27 13:37:05 -04008436
James Smartcb69f7d2011-12-13 13:21:57 -05008437 switch (evt_code) {
8438 case ASYNC_TEMP_WARN:
8439 case ASYNC_TEMP_SAFE:
8440 temp_event_data.data = (uint32_t) icmd->ulpContext;
8441 temp_event_data.event_type = FC_REG_TEMPERATURE_EVENT;
8442 if (evt_code == ASYNC_TEMP_WARN) {
8443 temp_event_data.event_code = LPFC_THRESHOLD_TEMP;
8444 lpfc_printf_log(phba, KERN_ERR, LOG_TEMP,
8445 "0347 Adapter is very hot, please take "
8446 "corrective action. temperature : %d Celsius\n",
8447 (uint32_t) icmd->ulpContext);
8448 } else {
8449 temp_event_data.event_code = LPFC_NORMAL_TEMP;
8450 lpfc_printf_log(phba, KERN_ERR, LOG_TEMP,
8451 "0340 Adapter temperature is OK now. "
8452 "temperature : %d Celsius\n",
8453 (uint32_t) icmd->ulpContext);
8454 }
8455
8456 /* Send temperature change event to applications */
8457 shost = lpfc_shost_from_vport(phba->pport);
8458 fc_host_post_vendor_event(shost, fc_get_event_number(),
8459 sizeof(temp_event_data), (char *) &temp_event_data,
8460 LPFC_NL_VENDOR_ID);
8461 break;
8462 case ASYNC_STATUS_CN:
8463 lpfc_sli_abts_err_handler(phba, iocbq);
8464 break;
8465 default:
James Smarta257bf92009-04-06 18:48:10 -04008466 iocb_w = (uint32_t *) icmd;
James Smartcb69f7d2011-12-13 13:21:57 -05008467 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart76bb24e2007-10-27 13:38:00 -04008468 "0346 Ring %d handler: unexpected ASYNC_STATUS"
James Smarte4e74272009-07-19 10:01:38 -04008469 " evt_code 0x%x\n"
James Smarta257bf92009-04-06 18:48:10 -04008470 "W0 0x%08x W1 0x%08x W2 0x%08x W3 0x%08x\n"
8471 "W4 0x%08x W5 0x%08x W6 0x%08x W7 0x%08x\n"
8472 "W8 0x%08x W9 0x%08x W10 0x%08x W11 0x%08x\n"
8473 "W12 0x%08x W13 0x%08x W14 0x%08x W15 0x%08x\n",
James Smartcb69f7d2011-12-13 13:21:57 -05008474 pring->ringno, icmd->un.asyncstat.evt_code,
James Smarta257bf92009-04-06 18:48:10 -04008475 iocb_w[0], iocb_w[1], iocb_w[2], iocb_w[3],
8476 iocb_w[4], iocb_w[5], iocb_w[6], iocb_w[7],
8477 iocb_w[8], iocb_w[9], iocb_w[10], iocb_w[11],
8478 iocb_w[12], iocb_w[13], iocb_w[14], iocb_w[15]);
8479
James Smartcb69f7d2011-12-13 13:21:57 -05008480 break;
James Smart57127f12007-10-27 13:37:05 -04008481 }
James Smart57127f12007-10-27 13:37:05 -04008482}
8483
8484
James Smarte59058c2008-08-24 21:49:00 -04008485/**
James Smart3621a712009-04-06 18:47:14 -04008486 * lpfc_sli_setup - SLI ring setup function
James Smarte59058c2008-08-24 21:49:00 -04008487 * @phba: Pointer to HBA context object.
8488 *
8489 * lpfc_sli_setup sets up rings of the SLI interface with
8490 * number of iocbs per ring and iotags. This function is
8491 * called while driver attach to the HBA and before the
8492 * interrupts are enabled. So there is no need for locking.
8493 *
8494 * This function always returns 0.
8495 **/
dea31012005-04-17 16:05:31 -05008496int
8497lpfc_sli_setup(struct lpfc_hba *phba)
8498{
James Smarted957682007-06-17 19:56:37 -05008499 int i, totiocbsize = 0;
dea31012005-04-17 16:05:31 -05008500 struct lpfc_sli *psli = &phba->sli;
8501 struct lpfc_sli_ring *pring;
8502
8503 psli->num_rings = MAX_CONFIGURED_RINGS;
8504 psli->sli_flag = 0;
8505 psli->fcp_ring = LPFC_FCP_RING;
8506 psli->next_ring = LPFC_FCP_NEXT_RING;
James Smarta4bc3372006-12-02 13:34:16 -05008507 psli->extra_ring = LPFC_EXTRA_RING;
dea31012005-04-17 16:05:31 -05008508
James Bottomley604a3e32005-10-29 10:28:33 -05008509 psli->iocbq_lookup = NULL;
8510 psli->iocbq_lookup_len = 0;
8511 psli->last_iotag = 0;
8512
dea31012005-04-17 16:05:31 -05008513 for (i = 0; i < psli->num_rings; i++) {
8514 pring = &psli->ring[i];
8515 switch (i) {
8516 case LPFC_FCP_RING: /* ring 0 - FCP */
8517 /* numCiocb and numRiocb are used in config_port */
8518 pring->numCiocb = SLI2_IOCB_CMD_R0_ENTRIES;
8519 pring->numRiocb = SLI2_IOCB_RSP_R0_ENTRIES;
8520 pring->numCiocb += SLI2_IOCB_CMD_R1XTRA_ENTRIES;
8521 pring->numRiocb += SLI2_IOCB_RSP_R1XTRA_ENTRIES;
8522 pring->numCiocb += SLI2_IOCB_CMD_R3XTRA_ENTRIES;
8523 pring->numRiocb += SLI2_IOCB_RSP_R3XTRA_ENTRIES;
James Smarted957682007-06-17 19:56:37 -05008524 pring->sizeCiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05008525 SLI3_IOCB_CMD_SIZE :
8526 SLI2_IOCB_CMD_SIZE;
James Smarted957682007-06-17 19:56:37 -05008527 pring->sizeRiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05008528 SLI3_IOCB_RSP_SIZE :
8529 SLI2_IOCB_RSP_SIZE;
dea31012005-04-17 16:05:31 -05008530 pring->iotag_ctr = 0;
8531 pring->iotag_max =
James Smart92d7f7b2007-06-17 19:56:38 -05008532 (phba->cfg_hba_queue_depth * 2);
dea31012005-04-17 16:05:31 -05008533 pring->fast_iotag = pring->iotag_max;
8534 pring->num_mask = 0;
8535 break;
James Smarta4bc3372006-12-02 13:34:16 -05008536 case LPFC_EXTRA_RING: /* ring 1 - EXTRA */
dea31012005-04-17 16:05:31 -05008537 /* numCiocb and numRiocb are used in config_port */
8538 pring->numCiocb = SLI2_IOCB_CMD_R1_ENTRIES;
8539 pring->numRiocb = SLI2_IOCB_RSP_R1_ENTRIES;
James Smarted957682007-06-17 19:56:37 -05008540 pring->sizeCiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05008541 SLI3_IOCB_CMD_SIZE :
8542 SLI2_IOCB_CMD_SIZE;
James Smarted957682007-06-17 19:56:37 -05008543 pring->sizeRiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05008544 SLI3_IOCB_RSP_SIZE :
8545 SLI2_IOCB_RSP_SIZE;
James Smart2e0fef82007-06-17 19:56:36 -05008546 pring->iotag_max = phba->cfg_hba_queue_depth;
dea31012005-04-17 16:05:31 -05008547 pring->num_mask = 0;
8548 break;
8549 case LPFC_ELS_RING: /* ring 2 - ELS / CT */
8550 /* numCiocb and numRiocb are used in config_port */
8551 pring->numCiocb = SLI2_IOCB_CMD_R2_ENTRIES;
8552 pring->numRiocb = SLI2_IOCB_RSP_R2_ENTRIES;
James Smarted957682007-06-17 19:56:37 -05008553 pring->sizeCiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05008554 SLI3_IOCB_CMD_SIZE :
8555 SLI2_IOCB_CMD_SIZE;
James Smarted957682007-06-17 19:56:37 -05008556 pring->sizeRiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05008557 SLI3_IOCB_RSP_SIZE :
8558 SLI2_IOCB_RSP_SIZE;
dea31012005-04-17 16:05:31 -05008559 pring->fast_iotag = 0;
8560 pring->iotag_ctr = 0;
8561 pring->iotag_max = 4096;
James Smart57127f12007-10-27 13:37:05 -04008562 pring->lpfc_sli_rcv_async_status =
8563 lpfc_sli_async_event_handler;
James Smart6669f9b2009-10-02 15:16:45 -04008564 pring->num_mask = LPFC_MAX_RING_MASK;
dea31012005-04-17 16:05:31 -05008565 pring->prt[0].profile = 0; /* Mask 0 */
James Smart6a9c52c2009-10-02 15:16:51 -04008566 pring->prt[0].rctl = FC_RCTL_ELS_REQ;
8567 pring->prt[0].type = FC_TYPE_ELS;
dea31012005-04-17 16:05:31 -05008568 pring->prt[0].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -05008569 lpfc_els_unsol_event;
dea31012005-04-17 16:05:31 -05008570 pring->prt[1].profile = 0; /* Mask 1 */
James Smart6a9c52c2009-10-02 15:16:51 -04008571 pring->prt[1].rctl = FC_RCTL_ELS_REP;
8572 pring->prt[1].type = FC_TYPE_ELS;
dea31012005-04-17 16:05:31 -05008573 pring->prt[1].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -05008574 lpfc_els_unsol_event;
dea31012005-04-17 16:05:31 -05008575 pring->prt[2].profile = 0; /* Mask 2 */
8576 /* NameServer Inquiry */
James Smart6a9c52c2009-10-02 15:16:51 -04008577 pring->prt[2].rctl = FC_RCTL_DD_UNSOL_CTL;
dea31012005-04-17 16:05:31 -05008578 /* NameServer */
James Smart6a9c52c2009-10-02 15:16:51 -04008579 pring->prt[2].type = FC_TYPE_CT;
dea31012005-04-17 16:05:31 -05008580 pring->prt[2].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -05008581 lpfc_ct_unsol_event;
dea31012005-04-17 16:05:31 -05008582 pring->prt[3].profile = 0; /* Mask 3 */
8583 /* NameServer response */
James Smart6a9c52c2009-10-02 15:16:51 -04008584 pring->prt[3].rctl = FC_RCTL_DD_SOL_CTL;
dea31012005-04-17 16:05:31 -05008585 /* NameServer */
James Smart6a9c52c2009-10-02 15:16:51 -04008586 pring->prt[3].type = FC_TYPE_CT;
dea31012005-04-17 16:05:31 -05008587 pring->prt[3].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -05008588 lpfc_ct_unsol_event;
James Smart6669f9b2009-10-02 15:16:45 -04008589 /* abort unsolicited sequence */
8590 pring->prt[4].profile = 0; /* Mask 4 */
8591 pring->prt[4].rctl = FC_RCTL_BA_ABTS;
8592 pring->prt[4].type = FC_TYPE_BLS;
8593 pring->prt[4].lpfc_sli_rcv_unsol_event =
8594 lpfc_sli4_ct_abort_unsol_event;
dea31012005-04-17 16:05:31 -05008595 break;
8596 }
James Smarted957682007-06-17 19:56:37 -05008597 totiocbsize += (pring->numCiocb * pring->sizeCiocb) +
James Smart92d7f7b2007-06-17 19:56:38 -05008598 (pring->numRiocb * pring->sizeRiocb);
dea31012005-04-17 16:05:31 -05008599 }
James Smarted957682007-06-17 19:56:37 -05008600 if (totiocbsize > MAX_SLIM_IOCB_SIZE) {
dea31012005-04-17 16:05:31 -05008601 /* Too many cmd / rsp ring entries in SLI2 SLIM */
James Smarte8b62012007-08-02 11:10:09 -04008602 printk(KERN_ERR "%d:0462 Too many cmd / rsp ring entries in "
8603 "SLI2 SLIM Data: x%x x%lx\n",
8604 phba->brd_no, totiocbsize,
8605 (unsigned long) MAX_SLIM_IOCB_SIZE);
dea31012005-04-17 16:05:31 -05008606 }
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008607 if (phba->cfg_multi_ring_support == 2)
8608 lpfc_extra_ring_setup(phba);
dea31012005-04-17 16:05:31 -05008609
8610 return 0;
8611}
8612
James Smarte59058c2008-08-24 21:49:00 -04008613/**
James Smart3621a712009-04-06 18:47:14 -04008614 * lpfc_sli_queue_setup - Queue initialization function
James Smarte59058c2008-08-24 21:49:00 -04008615 * @phba: Pointer to HBA context object.
8616 *
8617 * lpfc_sli_queue_setup sets up mailbox queues and iocb queues for each
8618 * ring. This function also initializes ring indices of each ring.
8619 * This function is called during the initialization of the SLI
8620 * interface of an HBA.
8621 * This function is called with no lock held and always returns
8622 * 1.
8623 **/
dea31012005-04-17 16:05:31 -05008624int
James Smart2e0fef82007-06-17 19:56:36 -05008625lpfc_sli_queue_setup(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05008626{
8627 struct lpfc_sli *psli;
8628 struct lpfc_sli_ring *pring;
James Bottomley604a3e32005-10-29 10:28:33 -05008629 int i;
dea31012005-04-17 16:05:31 -05008630
8631 psli = &phba->sli;
James Smart2e0fef82007-06-17 19:56:36 -05008632 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05008633 INIT_LIST_HEAD(&psli->mboxq);
James Smart92d7f7b2007-06-17 19:56:38 -05008634 INIT_LIST_HEAD(&psli->mboxq_cmpl);
dea31012005-04-17 16:05:31 -05008635 /* Initialize list headers for txq and txcmplq as double linked lists */
8636 for (i = 0; i < psli->num_rings; i++) {
8637 pring = &psli->ring[i];
8638 pring->ringno = i;
8639 pring->next_cmdidx = 0;
8640 pring->local_getidx = 0;
8641 pring->cmdidx = 0;
8642 INIT_LIST_HEAD(&pring->txq);
8643 INIT_LIST_HEAD(&pring->txcmplq);
8644 INIT_LIST_HEAD(&pring->iocb_continueq);
James Smart9c2face2008-01-11 01:53:18 -05008645 INIT_LIST_HEAD(&pring->iocb_continue_saveq);
dea31012005-04-17 16:05:31 -05008646 INIT_LIST_HEAD(&pring->postbufq);
dea31012005-04-17 16:05:31 -05008647 }
James Smart2e0fef82007-06-17 19:56:36 -05008648 spin_unlock_irq(&phba->hbalock);
8649 return 1;
dea31012005-04-17 16:05:31 -05008650}
8651
James Smarte59058c2008-08-24 21:49:00 -04008652/**
James Smart04c68492009-05-22 14:52:52 -04008653 * lpfc_sli_mbox_sys_flush - Flush mailbox command sub-system
8654 * @phba: Pointer to HBA context object.
8655 *
8656 * This routine flushes the mailbox command subsystem. It will unconditionally
8657 * flush all the mailbox commands in the three possible stages in the mailbox
8658 * command sub-system: pending mailbox command queue; the outstanding mailbox
8659 * command; and completed mailbox command queue. It is caller's responsibility
8660 * to make sure that the driver is in the proper state to flush the mailbox
8661 * command sub-system. Namely, the posting of mailbox commands into the
8662 * pending mailbox command queue from the various clients must be stopped;
8663 * either the HBA is in a state that it will never works on the outstanding
8664 * mailbox command (such as in EEH or ERATT conditions) or the outstanding
8665 * mailbox command has been completed.
8666 **/
8667static void
8668lpfc_sli_mbox_sys_flush(struct lpfc_hba *phba)
8669{
8670 LIST_HEAD(completions);
8671 struct lpfc_sli *psli = &phba->sli;
8672 LPFC_MBOXQ_t *pmb;
8673 unsigned long iflag;
8674
8675 /* Flush all the mailbox commands in the mbox system */
8676 spin_lock_irqsave(&phba->hbalock, iflag);
8677 /* The pending mailbox command queue */
8678 list_splice_init(&phba->sli.mboxq, &completions);
8679 /* The outstanding active mailbox command */
8680 if (psli->mbox_active) {
8681 list_add_tail(&psli->mbox_active->list, &completions);
8682 psli->mbox_active = NULL;
8683 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
8684 }
8685 /* The completed mailbox command queue */
8686 list_splice_init(&phba->sli.mboxq_cmpl, &completions);
8687 spin_unlock_irqrestore(&phba->hbalock, iflag);
8688
8689 /* Return all flushed mailbox commands with MBX_NOT_FINISHED status */
8690 while (!list_empty(&completions)) {
8691 list_remove_head(&completions, pmb, LPFC_MBOXQ_t, list);
8692 pmb->u.mb.mbxStatus = MBX_NOT_FINISHED;
8693 if (pmb->mbox_cmpl)
8694 pmb->mbox_cmpl(phba, pmb);
8695 }
8696}
8697
8698/**
James Smart3621a712009-04-06 18:47:14 -04008699 * lpfc_sli_host_down - Vport cleanup function
James Smarte59058c2008-08-24 21:49:00 -04008700 * @vport: Pointer to virtual port object.
8701 *
8702 * lpfc_sli_host_down is called to clean up the resources
8703 * associated with a vport before destroying virtual
8704 * port data structures.
8705 * This function does following operations:
8706 * - Free discovery resources associated with this virtual
8707 * port.
8708 * - Free iocbs associated with this virtual port in
8709 * the txq.
8710 * - Send abort for all iocb commands associated with this
8711 * vport in txcmplq.
8712 *
8713 * This function is called with no lock held and always returns 1.
8714 **/
dea31012005-04-17 16:05:31 -05008715int
James Smart92d7f7b2007-06-17 19:56:38 -05008716lpfc_sli_host_down(struct lpfc_vport *vport)
8717{
James Smart858c9f62007-06-17 19:56:39 -05008718 LIST_HEAD(completions);
James Smart92d7f7b2007-06-17 19:56:38 -05008719 struct lpfc_hba *phba = vport->phba;
8720 struct lpfc_sli *psli = &phba->sli;
8721 struct lpfc_sli_ring *pring;
8722 struct lpfc_iocbq *iocb, *next_iocb;
James Smart92d7f7b2007-06-17 19:56:38 -05008723 int i;
8724 unsigned long flags = 0;
8725 uint16_t prev_pring_flag;
8726
8727 lpfc_cleanup_discovery_resources(vport);
8728
8729 spin_lock_irqsave(&phba->hbalock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -05008730 for (i = 0; i < psli->num_rings; i++) {
8731 pring = &psli->ring[i];
8732 prev_pring_flag = pring->flag;
James Smart5e9d9b82008-06-14 22:52:53 -04008733 /* Only slow rings */
8734 if (pring->ringno == LPFC_ELS_RING) {
James Smart858c9f62007-06-17 19:56:39 -05008735 pring->flag |= LPFC_DEFERRED_RING_EVENT;
James Smart5e9d9b82008-06-14 22:52:53 -04008736 /* Set the lpfc data pending flag */
8737 set_bit(LPFC_DATA_READY, &phba->data_flags);
8738 }
James Smart92d7f7b2007-06-17 19:56:38 -05008739 /*
8740 * Error everything on the txq since these iocbs have not been
8741 * given to the FW yet.
8742 */
James Smart92d7f7b2007-06-17 19:56:38 -05008743 list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
8744 if (iocb->vport != vport)
8745 continue;
James Smart858c9f62007-06-17 19:56:39 -05008746 list_move_tail(&iocb->list, &completions);
James Smart92d7f7b2007-06-17 19:56:38 -05008747 pring->txq_cnt--;
James Smart92d7f7b2007-06-17 19:56:38 -05008748 }
8749
8750 /* Next issue ABTS for everything on the txcmplq */
8751 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq,
8752 list) {
8753 if (iocb->vport != vport)
8754 continue;
8755 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
8756 }
8757
8758 pring->flag = prev_pring_flag;
8759 }
8760
8761 spin_unlock_irqrestore(&phba->hbalock, flags);
8762
James Smarta257bf92009-04-06 18:48:10 -04008763 /* Cancel all the IOCBs from the completions list */
8764 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
8765 IOERR_SLI_DOWN);
James Smart92d7f7b2007-06-17 19:56:38 -05008766 return 1;
8767}
8768
James Smarte59058c2008-08-24 21:49:00 -04008769/**
James Smart3621a712009-04-06 18:47:14 -04008770 * lpfc_sli_hba_down - Resource cleanup function for the HBA
James Smarte59058c2008-08-24 21:49:00 -04008771 * @phba: Pointer to HBA context object.
8772 *
8773 * This function cleans up all iocb, buffers, mailbox commands
8774 * while shutting down the HBA. This function is called with no
8775 * lock held and always returns 1.
8776 * This function does the following to cleanup driver resources:
8777 * - Free discovery resources for each virtual port
8778 * - Cleanup any pending fabric iocbs
8779 * - Iterate through the iocb txq and free each entry
8780 * in the list.
8781 * - Free up any buffer posted to the HBA
8782 * - Free mailbox commands in the mailbox queue.
8783 **/
James Smart92d7f7b2007-06-17 19:56:38 -05008784int
James Smart2e0fef82007-06-17 19:56:36 -05008785lpfc_sli_hba_down(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05008786{
James Smart2534ba72007-04-25 09:52:20 -04008787 LIST_HEAD(completions);
James Smart2e0fef82007-06-17 19:56:36 -05008788 struct lpfc_sli *psli = &phba->sli;
dea31012005-04-17 16:05:31 -05008789 struct lpfc_sli_ring *pring;
James Smart0ff10d42008-01-11 01:52:36 -05008790 struct lpfc_dmabuf *buf_ptr;
dea31012005-04-17 16:05:31 -05008791 unsigned long flags = 0;
James Smart04c68492009-05-22 14:52:52 -04008792 int i;
8793
8794 /* Shutdown the mailbox command sub-system */
8795 lpfc_sli_mbox_sys_shutdown(phba);
dea31012005-04-17 16:05:31 -05008796
dea31012005-04-17 16:05:31 -05008797 lpfc_hba_down_prep(phba);
8798
James Smart92d7f7b2007-06-17 19:56:38 -05008799 lpfc_fabric_abort_hba(phba);
8800
James Smart2e0fef82007-06-17 19:56:36 -05008801 spin_lock_irqsave(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05008802 for (i = 0; i < psli->num_rings; i++) {
8803 pring = &psli->ring[i];
James Smart5e9d9b82008-06-14 22:52:53 -04008804 /* Only slow rings */
8805 if (pring->ringno == LPFC_ELS_RING) {
James Smart858c9f62007-06-17 19:56:39 -05008806 pring->flag |= LPFC_DEFERRED_RING_EVENT;
James Smart5e9d9b82008-06-14 22:52:53 -04008807 /* Set the lpfc data pending flag */
8808 set_bit(LPFC_DATA_READY, &phba->data_flags);
8809 }
dea31012005-04-17 16:05:31 -05008810
8811 /*
8812 * Error everything on the txq since these iocbs have not been
8813 * given to the FW yet.
8814 */
James Smart2534ba72007-04-25 09:52:20 -04008815 list_splice_init(&pring->txq, &completions);
dea31012005-04-17 16:05:31 -05008816 pring->txq_cnt = 0;
8817
dea31012005-04-17 16:05:31 -05008818 }
James Smart2e0fef82007-06-17 19:56:36 -05008819 spin_unlock_irqrestore(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05008820
James Smarta257bf92009-04-06 18:48:10 -04008821 /* Cancel all the IOCBs from the completions list */
8822 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
8823 IOERR_SLI_DOWN);
James Smart2534ba72007-04-25 09:52:20 -04008824
James Smart0ff10d42008-01-11 01:52:36 -05008825 spin_lock_irqsave(&phba->hbalock, flags);
8826 list_splice_init(&phba->elsbuf, &completions);
8827 phba->elsbuf_cnt = 0;
8828 phba->elsbuf_prev_cnt = 0;
8829 spin_unlock_irqrestore(&phba->hbalock, flags);
8830
8831 while (!list_empty(&completions)) {
8832 list_remove_head(&completions, buf_ptr,
8833 struct lpfc_dmabuf, list);
8834 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
8835 kfree(buf_ptr);
8836 }
8837
dea31012005-04-17 16:05:31 -05008838 /* Return any active mbox cmds */
8839 del_timer_sync(&psli->mbox_tmo);
James Smart92d7f7b2007-06-17 19:56:38 -05008840
James Smartda0436e2009-05-22 14:51:39 -04008841 spin_lock_irqsave(&phba->pport->work_port_lock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -05008842 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
James Smartda0436e2009-05-22 14:51:39 -04008843 spin_unlock_irqrestore(&phba->pport->work_port_lock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -05008844
James Smartda0436e2009-05-22 14:51:39 -04008845 return 1;
8846}
James Smart92d7f7b2007-06-17 19:56:38 -05008847
James Smartda0436e2009-05-22 14:51:39 -04008848/**
James Smart3621a712009-04-06 18:47:14 -04008849 * lpfc_sli_pcimem_bcopy - SLI memory copy function
James Smarte59058c2008-08-24 21:49:00 -04008850 * @srcp: Source memory pointer.
8851 * @destp: Destination memory pointer.
8852 * @cnt: Number of words required to be copied.
8853 *
8854 * This function is used for copying data between driver memory
8855 * and the SLI memory. This function also changes the endianness
8856 * of each word if native endianness is different from SLI
8857 * endianness. This function can be called with or without
8858 * lock.
8859 **/
dea31012005-04-17 16:05:31 -05008860void
8861lpfc_sli_pcimem_bcopy(void *srcp, void *destp, uint32_t cnt)
8862{
8863 uint32_t *src = srcp;
8864 uint32_t *dest = destp;
8865 uint32_t ldata;
8866 int i;
8867
8868 for (i = 0; i < (int)cnt; i += sizeof (uint32_t)) {
8869 ldata = *src;
8870 ldata = le32_to_cpu(ldata);
8871 *dest = ldata;
8872 src++;
8873 dest++;
8874 }
8875}
8876
James Smarte59058c2008-08-24 21:49:00 -04008877
8878/**
James Smarta0c87cb2009-07-19 10:01:10 -04008879 * lpfc_sli_bemem_bcopy - SLI memory copy function
8880 * @srcp: Source memory pointer.
8881 * @destp: Destination memory pointer.
8882 * @cnt: Number of words required to be copied.
8883 *
8884 * This function is used for copying data between a data structure
8885 * with big endian representation to local endianness.
8886 * This function can be called with or without lock.
8887 **/
8888void
8889lpfc_sli_bemem_bcopy(void *srcp, void *destp, uint32_t cnt)
8890{
8891 uint32_t *src = srcp;
8892 uint32_t *dest = destp;
8893 uint32_t ldata;
8894 int i;
8895
8896 for (i = 0; i < (int)cnt; i += sizeof(uint32_t)) {
8897 ldata = *src;
8898 ldata = be32_to_cpu(ldata);
8899 *dest = ldata;
8900 src++;
8901 dest++;
8902 }
8903}
8904
8905/**
James Smart3621a712009-04-06 18:47:14 -04008906 * lpfc_sli_ringpostbuf_put - Function to add a buffer to postbufq
James Smarte59058c2008-08-24 21:49:00 -04008907 * @phba: Pointer to HBA context object.
8908 * @pring: Pointer to driver SLI ring object.
8909 * @mp: Pointer to driver buffer object.
8910 *
8911 * This function is called with no lock held.
8912 * It always return zero after adding the buffer to the postbufq
8913 * buffer list.
8914 **/
dea31012005-04-17 16:05:31 -05008915int
James Smart2e0fef82007-06-17 19:56:36 -05008916lpfc_sli_ringpostbuf_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
8917 struct lpfc_dmabuf *mp)
dea31012005-04-17 16:05:31 -05008918{
8919 /* Stick struct lpfc_dmabuf at end of postbufq so driver can look it up
8920 later */
James Smart2e0fef82007-06-17 19:56:36 -05008921 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05008922 list_add_tail(&mp->list, &pring->postbufq);
dea31012005-04-17 16:05:31 -05008923 pring->postbufq_cnt++;
James Smart2e0fef82007-06-17 19:56:36 -05008924 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05008925 return 0;
8926}
8927
James Smarte59058c2008-08-24 21:49:00 -04008928/**
James Smart3621a712009-04-06 18:47:14 -04008929 * lpfc_sli_get_buffer_tag - allocates a tag for a CMD_QUE_XRI64_CX buffer
James Smarte59058c2008-08-24 21:49:00 -04008930 * @phba: Pointer to HBA context object.
8931 *
8932 * When HBQ is enabled, buffers are searched based on tags. This function
8933 * allocates a tag for buffer posted using CMD_QUE_XRI64_CX iocb. The
8934 * tag is bit wise or-ed with QUE_BUFTAG_BIT to make sure that the tag
8935 * does not conflict with tags of buffer posted for unsolicited events.
8936 * The function returns the allocated tag. The function is called with
8937 * no locks held.
8938 **/
James Smart76bb24e2007-10-27 13:38:00 -04008939uint32_t
8940lpfc_sli_get_buffer_tag(struct lpfc_hba *phba)
8941{
8942 spin_lock_irq(&phba->hbalock);
8943 phba->buffer_tag_count++;
8944 /*
8945 * Always set the QUE_BUFTAG_BIT to distiguish between
8946 * a tag assigned by HBQ.
8947 */
8948 phba->buffer_tag_count |= QUE_BUFTAG_BIT;
8949 spin_unlock_irq(&phba->hbalock);
8950 return phba->buffer_tag_count;
8951}
8952
James Smarte59058c2008-08-24 21:49:00 -04008953/**
James Smart3621a712009-04-06 18:47:14 -04008954 * lpfc_sli_ring_taggedbuf_get - find HBQ buffer associated with given tag
James Smarte59058c2008-08-24 21:49:00 -04008955 * @phba: Pointer to HBA context object.
8956 * @pring: Pointer to driver SLI ring object.
8957 * @tag: Buffer tag.
8958 *
8959 * Buffers posted using CMD_QUE_XRI64_CX iocb are in pring->postbufq
8960 * list. After HBA DMA data to these buffers, CMD_IOCB_RET_XRI64_CX
8961 * iocb is posted to the response ring with the tag of the buffer.
8962 * This function searches the pring->postbufq list using the tag
8963 * to find buffer associated with CMD_IOCB_RET_XRI64_CX
8964 * iocb. If the buffer is found then lpfc_dmabuf object of the
8965 * buffer is returned to the caller else NULL is returned.
8966 * This function is called with no lock held.
8967 **/
James Smart76bb24e2007-10-27 13:38:00 -04008968struct lpfc_dmabuf *
8969lpfc_sli_ring_taggedbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
8970 uint32_t tag)
8971{
8972 struct lpfc_dmabuf *mp, *next_mp;
8973 struct list_head *slp = &pring->postbufq;
8974
Lucas De Marchi25985ed2011-03-30 22:57:33 -03008975 /* Search postbufq, from the beginning, looking for a match on tag */
James Smart76bb24e2007-10-27 13:38:00 -04008976 spin_lock_irq(&phba->hbalock);
8977 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
8978 if (mp->buffer_tag == tag) {
8979 list_del_init(&mp->list);
8980 pring->postbufq_cnt--;
8981 spin_unlock_irq(&phba->hbalock);
8982 return mp;
8983 }
8984 }
8985
8986 spin_unlock_irq(&phba->hbalock);
8987 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smartd7c255b2008-08-24 21:50:00 -04008988 "0402 Cannot find virtual addr for buffer tag on "
James Smart76bb24e2007-10-27 13:38:00 -04008989 "ring %d Data x%lx x%p x%p x%x\n",
8990 pring->ringno, (unsigned long) tag,
8991 slp->next, slp->prev, pring->postbufq_cnt);
8992
8993 return NULL;
8994}
dea31012005-04-17 16:05:31 -05008995
James Smarte59058c2008-08-24 21:49:00 -04008996/**
James Smart3621a712009-04-06 18:47:14 -04008997 * lpfc_sli_ringpostbuf_get - search buffers for unsolicited CT and ELS events
James Smarte59058c2008-08-24 21:49:00 -04008998 * @phba: Pointer to HBA context object.
8999 * @pring: Pointer to driver SLI ring object.
9000 * @phys: DMA address of the buffer.
9001 *
9002 * This function searches the buffer list using the dma_address
9003 * of unsolicited event to find the driver's lpfc_dmabuf object
9004 * corresponding to the dma_address. The function returns the
9005 * lpfc_dmabuf object if a buffer is found else it returns NULL.
9006 * This function is called by the ct and els unsolicited event
9007 * handlers to get the buffer associated with the unsolicited
9008 * event.
9009 *
9010 * This function is called with no lock held.
9011 **/
dea31012005-04-17 16:05:31 -05009012struct lpfc_dmabuf *
9013lpfc_sli_ringpostbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9014 dma_addr_t phys)
9015{
9016 struct lpfc_dmabuf *mp, *next_mp;
9017 struct list_head *slp = &pring->postbufq;
9018
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009019 /* Search postbufq, from the beginning, looking for a match on phys */
James Smart2e0fef82007-06-17 19:56:36 -05009020 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009021 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
9022 if (mp->phys == phys) {
9023 list_del_init(&mp->list);
9024 pring->postbufq_cnt--;
James Smart2e0fef82007-06-17 19:56:36 -05009025 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009026 return mp;
9027 }
9028 }
9029
James Smart2e0fef82007-06-17 19:56:36 -05009030 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009031 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04009032 "0410 Cannot find virtual addr for mapped buf on "
dea31012005-04-17 16:05:31 -05009033 "ring %d Data x%llx x%p x%p x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04009034 pring->ringno, (unsigned long long)phys,
dea31012005-04-17 16:05:31 -05009035 slp->next, slp->prev, pring->postbufq_cnt);
9036 return NULL;
9037}
9038
James Smarte59058c2008-08-24 21:49:00 -04009039/**
James Smart3621a712009-04-06 18:47:14 -04009040 * lpfc_sli_abort_els_cmpl - Completion handler for the els abort iocbs
James Smarte59058c2008-08-24 21:49:00 -04009041 * @phba: Pointer to HBA context object.
9042 * @cmdiocb: Pointer to driver command iocb object.
9043 * @rspiocb: Pointer to driver response iocb object.
9044 *
9045 * This function is the completion handler for the abort iocbs for
9046 * ELS commands. This function is called from the ELS ring event
9047 * handler with no lock held. This function frees memory resources
9048 * associated with the abort iocb.
9049 **/
dea31012005-04-17 16:05:31 -05009050static void
James Smart2e0fef82007-06-17 19:56:36 -05009051lpfc_sli_abort_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
9052 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05009053{
James Smart2e0fef82007-06-17 19:56:36 -05009054 IOCB_t *irsp = &rspiocb->iocb;
James Smart2680eea2007-04-25 09:52:55 -04009055 uint16_t abort_iotag, abort_context;
James Smartff78d8f2011-12-13 13:21:35 -05009056 struct lpfc_iocbq *abort_iocb = NULL;
James Smart2680eea2007-04-25 09:52:55 -04009057
9058 if (irsp->ulpStatus) {
James Smartff78d8f2011-12-13 13:21:35 -05009059
9060 /*
9061 * Assume that the port already completed and returned, or
9062 * will return the iocb. Just Log the message.
9063 */
James Smart2680eea2007-04-25 09:52:55 -04009064 abort_context = cmdiocb->iocb.un.acxri.abortContextTag;
9065 abort_iotag = cmdiocb->iocb.un.acxri.abortIoTag;
9066
James Smart2e0fef82007-06-17 19:56:36 -05009067 spin_lock_irq(&phba->hbalock);
James Smart45ed1192009-10-02 15:17:02 -04009068 if (phba->sli_rev < LPFC_SLI_REV4) {
9069 if (abort_iotag != 0 &&
9070 abort_iotag <= phba->sli.last_iotag)
9071 abort_iocb =
9072 phba->sli.iocbq_lookup[abort_iotag];
9073 } else
9074 /* For sli4 the abort_tag is the XRI,
9075 * so the abort routine puts the iotag of the iocb
9076 * being aborted in the context field of the abort
9077 * IOCB.
9078 */
9079 abort_iocb = phba->sli.iocbq_lookup[abort_context];
James Smart2680eea2007-04-25 09:52:55 -04009080
James Smart2a9bf3d2010-06-07 15:24:45 -04009081 lpfc_printf_log(phba, KERN_WARNING, LOG_ELS | LOG_SLI,
9082 "0327 Cannot abort els iocb %p "
9083 "with tag %x context %x, abort status %x, "
9084 "abort code %x\n",
9085 abort_iocb, abort_iotag, abort_context,
9086 irsp->ulpStatus, irsp->un.ulpWord[4]);
James Smart2680eea2007-04-25 09:52:55 -04009087
James Smartff78d8f2011-12-13 13:21:35 -05009088 spin_unlock_irq(&phba->hbalock);
James Smart2680eea2007-04-25 09:52:55 -04009089 }
James Bottomley604a3e32005-10-29 10:28:33 -05009090 lpfc_sli_release_iocbq(phba, cmdiocb);
dea31012005-04-17 16:05:31 -05009091 return;
9092}
9093
James Smarte59058c2008-08-24 21:49:00 -04009094/**
James Smart3621a712009-04-06 18:47:14 -04009095 * lpfc_ignore_els_cmpl - Completion handler for aborted ELS command
James Smarte59058c2008-08-24 21:49:00 -04009096 * @phba: Pointer to HBA context object.
9097 * @cmdiocb: Pointer to driver command iocb object.
9098 * @rspiocb: Pointer to driver response iocb object.
9099 *
9100 * The function is called from SLI ring event handler with no
9101 * lock held. This function is the completion handler for ELS commands
9102 * which are aborted. The function frees memory resources used for
9103 * the aborted ELS commands.
9104 **/
James Smart92d7f7b2007-06-17 19:56:38 -05009105static void
9106lpfc_ignore_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
9107 struct lpfc_iocbq *rspiocb)
9108{
9109 IOCB_t *irsp = &rspiocb->iocb;
9110
9111 /* ELS cmd tag <ulpIoTag> completes */
9112 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
James Smartd7c255b2008-08-24 21:50:00 -04009113 "0139 Ignoring ELS cmd tag x%x completion Data: "
James Smart92d7f7b2007-06-17 19:56:38 -05009114 "x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04009115 irsp->ulpIoTag, irsp->ulpStatus,
James Smart92d7f7b2007-06-17 19:56:38 -05009116 irsp->un.ulpWord[4], irsp->ulpTimeout);
James Smart858c9f62007-06-17 19:56:39 -05009117 if (cmdiocb->iocb.ulpCommand == CMD_GEN_REQUEST64_CR)
9118 lpfc_ct_free_iocb(phba, cmdiocb);
9119 else
9120 lpfc_els_free_iocb(phba, cmdiocb);
James Smart92d7f7b2007-06-17 19:56:38 -05009121 return;
9122}
9123
James Smarte59058c2008-08-24 21:49:00 -04009124/**
James Smart5af5eee2010-10-22 11:06:38 -04009125 * lpfc_sli_abort_iotag_issue - Issue abort for a command iocb
James Smarte59058c2008-08-24 21:49:00 -04009126 * @phba: Pointer to HBA context object.
9127 * @pring: Pointer to driver SLI ring object.
9128 * @cmdiocb: Pointer to driver command iocb object.
9129 *
James Smart5af5eee2010-10-22 11:06:38 -04009130 * This function issues an abort iocb for the provided command iocb down to
9131 * the port. Other than the case the outstanding command iocb is an abort
9132 * request, this function issues abort out unconditionally. This function is
9133 * called with hbalock held. The function returns 0 when it fails due to
9134 * memory allocation failure or when the command iocb is an abort request.
James Smarte59058c2008-08-24 21:49:00 -04009135 **/
James Smart5af5eee2010-10-22 11:06:38 -04009136static int
9137lpfc_sli_abort_iotag_issue(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart2e0fef82007-06-17 19:56:36 -05009138 struct lpfc_iocbq *cmdiocb)
dea31012005-04-17 16:05:31 -05009139{
James Smart2e0fef82007-06-17 19:56:36 -05009140 struct lpfc_vport *vport = cmdiocb->vport;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009141 struct lpfc_iocbq *abtsiocbp;
dea31012005-04-17 16:05:31 -05009142 IOCB_t *icmd = NULL;
9143 IOCB_t *iabt = NULL;
James Smart5af5eee2010-10-22 11:06:38 -04009144 int retval;
James Smart07951072007-04-25 09:51:38 -04009145
James Smart92d7f7b2007-06-17 19:56:38 -05009146 /*
9147 * There are certain command types we don't want to abort. And we
9148 * don't want to abort commands that are already in the process of
9149 * being aborted.
James Smart07951072007-04-25 09:51:38 -04009150 */
9151 icmd = &cmdiocb->iocb;
James Smart2e0fef82007-06-17 19:56:36 -05009152 if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
James Smart92d7f7b2007-06-17 19:56:38 -05009153 icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
9154 (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
James Smart07951072007-04-25 09:51:38 -04009155 return 0;
9156
dea31012005-04-17 16:05:31 -05009157 /* issue ABTS for this IOCB based on iotag */
James Smart92d7f7b2007-06-17 19:56:38 -05009158 abtsiocbp = __lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -05009159 if (abtsiocbp == NULL)
9160 return 0;
dea31012005-04-17 16:05:31 -05009161
James Smart07951072007-04-25 09:51:38 -04009162 /* This signals the response to set the correct status
James Smart341af102010-01-26 23:07:37 -05009163 * before calling the completion handler
James Smart07951072007-04-25 09:51:38 -04009164 */
9165 cmdiocb->iocb_flag |= LPFC_DRIVER_ABORTED;
9166
dea31012005-04-17 16:05:31 -05009167 iabt = &abtsiocbp->iocb;
James Smart07951072007-04-25 09:51:38 -04009168 iabt->un.acxri.abortType = ABORT_TYPE_ABTS;
9169 iabt->un.acxri.abortContextTag = icmd->ulpContext;
James Smart45ed1192009-10-02 15:17:02 -04009170 if (phba->sli_rev == LPFC_SLI_REV4) {
James Smartda0436e2009-05-22 14:51:39 -04009171 iabt->un.acxri.abortIoTag = cmdiocb->sli4_xritag;
James Smart45ed1192009-10-02 15:17:02 -04009172 iabt->un.acxri.abortContextTag = cmdiocb->iotag;
9173 }
James Smartda0436e2009-05-22 14:51:39 -04009174 else
9175 iabt->un.acxri.abortIoTag = icmd->ulpIoTag;
dea31012005-04-17 16:05:31 -05009176 iabt->ulpLe = 1;
James Smart07951072007-04-25 09:51:38 -04009177 iabt->ulpClass = icmd->ulpClass;
dea31012005-04-17 16:05:31 -05009178
James Smart5ffc2662009-11-18 15:39:44 -05009179 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
9180 abtsiocbp->fcp_wqidx = cmdiocb->fcp_wqidx;
James Smart341af102010-01-26 23:07:37 -05009181 if (cmdiocb->iocb_flag & LPFC_IO_FCP)
9182 abtsiocbp->iocb_flag |= LPFC_USE_FCPWQIDX;
James Smart5ffc2662009-11-18 15:39:44 -05009183
James Smart2e0fef82007-06-17 19:56:36 -05009184 if (phba->link_state >= LPFC_LINK_UP)
James Smart07951072007-04-25 09:51:38 -04009185 iabt->ulpCommand = CMD_ABORT_XRI_CN;
9186 else
9187 iabt->ulpCommand = CMD_CLOSE_XRI_CN;
9188
9189 abtsiocbp->iocb_cmpl = lpfc_sli_abort_els_cmpl;
James Smart5b8bd0c2007-04-25 09:52:49 -04009190
James Smarte8b62012007-08-02 11:10:09 -04009191 lpfc_printf_vlog(vport, KERN_INFO, LOG_SLI,
9192 "0339 Abort xri x%x, original iotag x%x, "
9193 "abort cmd iotag x%x\n",
James Smart2a9bf3d2010-06-07 15:24:45 -04009194 iabt->un.acxri.abortIoTag,
James Smarte8b62012007-08-02 11:10:09 -04009195 iabt->un.acxri.abortContextTag,
James Smart2a9bf3d2010-06-07 15:24:45 -04009196 abtsiocbp->iotag);
James Smartda0436e2009-05-22 14:51:39 -04009197 retval = __lpfc_sli_issue_iocb(phba, pring->ringno, abtsiocbp, 0);
James Smart07951072007-04-25 09:51:38 -04009198
James Smartd7c255b2008-08-24 21:50:00 -04009199 if (retval)
9200 __lpfc_sli_release_iocbq(phba, abtsiocbp);
James Smart5af5eee2010-10-22 11:06:38 -04009201
9202 /*
9203 * Caller to this routine should check for IOCB_ERROR
9204 * and handle it properly. This routine no longer removes
9205 * iocb off txcmplq and call compl in case of IOCB_ERROR.
9206 */
9207 return retval;
9208}
9209
9210/**
9211 * lpfc_sli_issue_abort_iotag - Abort function for a command iocb
9212 * @phba: Pointer to HBA context object.
9213 * @pring: Pointer to driver SLI ring object.
9214 * @cmdiocb: Pointer to driver command iocb object.
9215 *
9216 * This function issues an abort iocb for the provided command iocb. In case
9217 * of unloading, the abort iocb will not be issued to commands on the ELS
9218 * ring. Instead, the callback function shall be changed to those commands
9219 * so that nothing happens when them finishes. This function is called with
9220 * hbalock held. The function returns 0 when the command iocb is an abort
9221 * request.
9222 **/
9223int
9224lpfc_sli_issue_abort_iotag(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9225 struct lpfc_iocbq *cmdiocb)
9226{
9227 struct lpfc_vport *vport = cmdiocb->vport;
9228 int retval = IOCB_ERROR;
9229 IOCB_t *icmd = NULL;
9230
9231 /*
9232 * There are certain command types we don't want to abort. And we
9233 * don't want to abort commands that are already in the process of
9234 * being aborted.
9235 */
9236 icmd = &cmdiocb->iocb;
9237 if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
9238 icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
9239 (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
9240 return 0;
9241
9242 /*
9243 * If we're unloading, don't abort iocb on the ELS ring, but change
9244 * the callback so that nothing happens when it finishes.
9245 */
9246 if ((vport->load_flag & FC_UNLOADING) &&
9247 (pring->ringno == LPFC_ELS_RING)) {
9248 if (cmdiocb->iocb_flag & LPFC_IO_FABRIC)
9249 cmdiocb->fabric_iocb_cmpl = lpfc_ignore_els_cmpl;
9250 else
9251 cmdiocb->iocb_cmpl = lpfc_ignore_els_cmpl;
9252 goto abort_iotag_exit;
9253 }
9254
9255 /* Now, we try to issue the abort to the cmdiocb out */
9256 retval = lpfc_sli_abort_iotag_issue(phba, pring, cmdiocb);
9257
James Smart07951072007-04-25 09:51:38 -04009258abort_iotag_exit:
James Smart2e0fef82007-06-17 19:56:36 -05009259 /*
9260 * Caller to this routine should check for IOCB_ERROR
9261 * and handle it properly. This routine no longer removes
9262 * iocb off txcmplq and call compl in case of IOCB_ERROR.
James Smart07951072007-04-25 09:51:38 -04009263 */
James Smart2e0fef82007-06-17 19:56:36 -05009264 return retval;
dea31012005-04-17 16:05:31 -05009265}
9266
James Smarte59058c2008-08-24 21:49:00 -04009267/**
James Smart5af5eee2010-10-22 11:06:38 -04009268 * lpfc_sli_iocb_ring_abort - Unconditionally abort all iocbs on an iocb ring
9269 * @phba: Pointer to HBA context object.
9270 * @pring: Pointer to driver SLI ring object.
9271 *
9272 * This function aborts all iocbs in the given ring and frees all the iocb
9273 * objects in txq. This function issues abort iocbs unconditionally for all
9274 * the iocb commands in txcmplq. The iocbs in the txcmplq is not guaranteed
9275 * to complete before the return of this function. The caller is not required
9276 * to hold any locks.
9277 **/
9278static void
9279lpfc_sli_iocb_ring_abort(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
9280{
9281 LIST_HEAD(completions);
9282 struct lpfc_iocbq *iocb, *next_iocb;
9283
9284 if (pring->ringno == LPFC_ELS_RING)
9285 lpfc_fabric_abort_hba(phba);
9286
9287 spin_lock_irq(&phba->hbalock);
9288
9289 /* Take off all the iocbs on txq for cancelling */
9290 list_splice_init(&pring->txq, &completions);
9291 pring->txq_cnt = 0;
9292
9293 /* Next issue ABTS for everything on the txcmplq */
9294 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
9295 lpfc_sli_abort_iotag_issue(phba, pring, iocb);
9296
9297 spin_unlock_irq(&phba->hbalock);
9298
9299 /* Cancel all the IOCBs from the completions list */
9300 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
9301 IOERR_SLI_ABORTED);
9302}
9303
9304/**
9305 * lpfc_sli_hba_iocb_abort - Abort all iocbs to an hba.
9306 * @phba: pointer to lpfc HBA data structure.
9307 *
9308 * This routine will abort all pending and outstanding iocbs to an HBA.
9309 **/
9310void
9311lpfc_sli_hba_iocb_abort(struct lpfc_hba *phba)
9312{
9313 struct lpfc_sli *psli = &phba->sli;
9314 struct lpfc_sli_ring *pring;
9315 int i;
9316
9317 for (i = 0; i < psli->num_rings; i++) {
9318 pring = &psli->ring[i];
9319 lpfc_sli_iocb_ring_abort(phba, pring);
9320 }
9321}
9322
9323/**
James Smart3621a712009-04-06 18:47:14 -04009324 * lpfc_sli_validate_fcp_iocb - find commands associated with a vport or LUN
James Smarte59058c2008-08-24 21:49:00 -04009325 * @iocbq: Pointer to driver iocb object.
9326 * @vport: Pointer to driver virtual port object.
9327 * @tgt_id: SCSI ID of the target.
9328 * @lun_id: LUN ID of the scsi device.
9329 * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST
9330 *
James Smart3621a712009-04-06 18:47:14 -04009331 * This function acts as an iocb filter for functions which abort or count
James Smarte59058c2008-08-24 21:49:00 -04009332 * all FCP iocbs pending on a lun/SCSI target/SCSI host. It will return
9333 * 0 if the filtering criteria is met for the given iocb and will return
9334 * 1 if the filtering criteria is not met.
9335 * If ctx_cmd == LPFC_CTX_LUN, the function returns 0 only if the
9336 * given iocb is for the SCSI device specified by vport, tgt_id and
9337 * lun_id parameter.
9338 * If ctx_cmd == LPFC_CTX_TGT, the function returns 0 only if the
9339 * given iocb is for the SCSI target specified by vport and tgt_id
9340 * parameters.
9341 * If ctx_cmd == LPFC_CTX_HOST, the function returns 0 only if the
9342 * given iocb is for the SCSI host associated with the given vport.
9343 * This function is called with no locks held.
9344 **/
dea31012005-04-17 16:05:31 -05009345static int
James Smart51ef4c22007-08-02 11:10:31 -04009346lpfc_sli_validate_fcp_iocb(struct lpfc_iocbq *iocbq, struct lpfc_vport *vport,
9347 uint16_t tgt_id, uint64_t lun_id,
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009348 lpfc_ctx_cmd ctx_cmd)
dea31012005-04-17 16:05:31 -05009349{
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009350 struct lpfc_scsi_buf *lpfc_cmd;
dea31012005-04-17 16:05:31 -05009351 int rc = 1;
9352
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009353 if (!(iocbq->iocb_flag & LPFC_IO_FCP))
9354 return rc;
9355
James Smart51ef4c22007-08-02 11:10:31 -04009356 if (iocbq->vport != vport)
9357 return rc;
9358
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009359 lpfc_cmd = container_of(iocbq, struct lpfc_scsi_buf, cur_iocbq);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009360
James Smart495a7142008-06-14 22:52:59 -04009361 if (lpfc_cmd->pCmd == NULL)
dea31012005-04-17 16:05:31 -05009362 return rc;
9363
9364 switch (ctx_cmd) {
9365 case LPFC_CTX_LUN:
James Smart495a7142008-06-14 22:52:59 -04009366 if ((lpfc_cmd->rdata->pnode) &&
9367 (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id) &&
9368 (scsilun_to_int(&lpfc_cmd->fcp_cmnd->fcp_lun) == lun_id))
dea31012005-04-17 16:05:31 -05009369 rc = 0;
9370 break;
9371 case LPFC_CTX_TGT:
James Smart495a7142008-06-14 22:52:59 -04009372 if ((lpfc_cmd->rdata->pnode) &&
9373 (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id))
dea31012005-04-17 16:05:31 -05009374 rc = 0;
9375 break;
dea31012005-04-17 16:05:31 -05009376 case LPFC_CTX_HOST:
9377 rc = 0;
9378 break;
9379 default:
9380 printk(KERN_ERR "%s: Unknown context cmd type, value %d\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07009381 __func__, ctx_cmd);
dea31012005-04-17 16:05:31 -05009382 break;
9383 }
9384
9385 return rc;
9386}
9387
James Smarte59058c2008-08-24 21:49:00 -04009388/**
James Smart3621a712009-04-06 18:47:14 -04009389 * lpfc_sli_sum_iocb - Function to count the number of FCP iocbs pending
James Smarte59058c2008-08-24 21:49:00 -04009390 * @vport: Pointer to virtual port.
9391 * @tgt_id: SCSI ID of the target.
9392 * @lun_id: LUN ID of the scsi device.
9393 * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
9394 *
9395 * This function returns number of FCP commands pending for the vport.
9396 * When ctx_cmd == LPFC_CTX_LUN, the function returns number of FCP
9397 * commands pending on the vport associated with SCSI device specified
9398 * by tgt_id and lun_id parameters.
9399 * When ctx_cmd == LPFC_CTX_TGT, the function returns number of FCP
9400 * commands pending on the vport associated with SCSI target specified
9401 * by tgt_id parameter.
9402 * When ctx_cmd == LPFC_CTX_HOST, the function returns number of FCP
9403 * commands pending on the vport.
9404 * This function returns the number of iocbs which satisfy the filter.
9405 * This function is called without any lock held.
9406 **/
dea31012005-04-17 16:05:31 -05009407int
James Smart51ef4c22007-08-02 11:10:31 -04009408lpfc_sli_sum_iocb(struct lpfc_vport *vport, uint16_t tgt_id, uint64_t lun_id,
9409 lpfc_ctx_cmd ctx_cmd)
dea31012005-04-17 16:05:31 -05009410{
James Smart51ef4c22007-08-02 11:10:31 -04009411 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009412 struct lpfc_iocbq *iocbq;
9413 int sum, i;
dea31012005-04-17 16:05:31 -05009414
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009415 for (i = 1, sum = 0; i <= phba->sli.last_iotag; i++) {
9416 iocbq = phba->sli.iocbq_lookup[i];
dea31012005-04-17 16:05:31 -05009417
James Smart51ef4c22007-08-02 11:10:31 -04009418 if (lpfc_sli_validate_fcp_iocb (iocbq, vport, tgt_id, lun_id,
9419 ctx_cmd) == 0)
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009420 sum++;
dea31012005-04-17 16:05:31 -05009421 }
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009422
dea31012005-04-17 16:05:31 -05009423 return sum;
9424}
9425
James Smarte59058c2008-08-24 21:49:00 -04009426/**
James Smart3621a712009-04-06 18:47:14 -04009427 * lpfc_sli_abort_fcp_cmpl - Completion handler function for aborted FCP IOCBs
James Smarte59058c2008-08-24 21:49:00 -04009428 * @phba: Pointer to HBA context object
9429 * @cmdiocb: Pointer to command iocb object.
9430 * @rspiocb: Pointer to response iocb object.
9431 *
9432 * This function is called when an aborted FCP iocb completes. This
9433 * function is called by the ring event handler with no lock held.
9434 * This function frees the iocb.
9435 **/
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -04009436void
James Smart2e0fef82007-06-17 19:56:36 -05009437lpfc_sli_abort_fcp_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
9438 struct lpfc_iocbq *rspiocb)
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -04009439{
James Smartcb69f7d2011-12-13 13:21:57 -05009440 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
9441 "3096 ABORT_XRI_CN completing on xri x%x "
9442 "original iotag x%x, abort cmd iotag x%x "
9443 "status 0x%x, reason 0x%x\n",
9444 cmdiocb->iocb.un.acxri.abortContextTag,
9445 cmdiocb->iocb.un.acxri.abortIoTag,
9446 cmdiocb->iotag, rspiocb->iocb.ulpStatus,
9447 rspiocb->iocb.un.ulpWord[4]);
James Bottomley604a3e32005-10-29 10:28:33 -05009448 lpfc_sli_release_iocbq(phba, cmdiocb);
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -04009449 return;
9450}
9451
James Smarte59058c2008-08-24 21:49:00 -04009452/**
James Smart3621a712009-04-06 18:47:14 -04009453 * lpfc_sli_abort_iocb - issue abort for all commands on a host/target/LUN
James Smarte59058c2008-08-24 21:49:00 -04009454 * @vport: Pointer to virtual port.
9455 * @pring: Pointer to driver SLI ring object.
9456 * @tgt_id: SCSI ID of the target.
9457 * @lun_id: LUN ID of the scsi device.
9458 * @abort_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
9459 *
9460 * This function sends an abort command for every SCSI command
9461 * associated with the given virtual port pending on the ring
9462 * filtered by lpfc_sli_validate_fcp_iocb function.
9463 * When abort_cmd == LPFC_CTX_LUN, the function sends abort only to the
9464 * FCP iocbs associated with lun specified by tgt_id and lun_id
9465 * parameters
9466 * When abort_cmd == LPFC_CTX_TGT, the function sends abort only to the
9467 * FCP iocbs associated with SCSI target specified by tgt_id parameter.
9468 * When abort_cmd == LPFC_CTX_HOST, the function sends abort to all
9469 * FCP iocbs associated with virtual port.
9470 * This function returns number of iocbs it failed to abort.
9471 * This function is called with no locks held.
9472 **/
dea31012005-04-17 16:05:31 -05009473int
James Smart51ef4c22007-08-02 11:10:31 -04009474lpfc_sli_abort_iocb(struct lpfc_vport *vport, struct lpfc_sli_ring *pring,
9475 uint16_t tgt_id, uint64_t lun_id, lpfc_ctx_cmd abort_cmd)
dea31012005-04-17 16:05:31 -05009476{
James Smart51ef4c22007-08-02 11:10:31 -04009477 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009478 struct lpfc_iocbq *iocbq;
9479 struct lpfc_iocbq *abtsiocb;
dea31012005-04-17 16:05:31 -05009480 IOCB_t *cmd = NULL;
dea31012005-04-17 16:05:31 -05009481 int errcnt = 0, ret_val = 0;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009482 int i;
dea31012005-04-17 16:05:31 -05009483
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009484 for (i = 1; i <= phba->sli.last_iotag; i++) {
9485 iocbq = phba->sli.iocbq_lookup[i];
dea31012005-04-17 16:05:31 -05009486
James Smart51ef4c22007-08-02 11:10:31 -04009487 if (lpfc_sli_validate_fcp_iocb(iocbq, vport, tgt_id, lun_id,
James Smart2e0fef82007-06-17 19:56:36 -05009488 abort_cmd) != 0)
dea31012005-04-17 16:05:31 -05009489 continue;
9490
9491 /* issue ABTS for this IOCB based on iotag */
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009492 abtsiocb = lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -05009493 if (abtsiocb == NULL) {
9494 errcnt++;
9495 continue;
9496 }
dea31012005-04-17 16:05:31 -05009497
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009498 cmd = &iocbq->iocb;
dea31012005-04-17 16:05:31 -05009499 abtsiocb->iocb.un.acxri.abortType = ABORT_TYPE_ABTS;
9500 abtsiocb->iocb.un.acxri.abortContextTag = cmd->ulpContext;
James Smartda0436e2009-05-22 14:51:39 -04009501 if (phba->sli_rev == LPFC_SLI_REV4)
9502 abtsiocb->iocb.un.acxri.abortIoTag = iocbq->sli4_xritag;
9503 else
9504 abtsiocb->iocb.un.acxri.abortIoTag = cmd->ulpIoTag;
dea31012005-04-17 16:05:31 -05009505 abtsiocb->iocb.ulpLe = 1;
9506 abtsiocb->iocb.ulpClass = cmd->ulpClass;
James Smart2e0fef82007-06-17 19:56:36 -05009507 abtsiocb->vport = phba->pport;
dea31012005-04-17 16:05:31 -05009508
James Smart5ffc2662009-11-18 15:39:44 -05009509 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
9510 abtsiocb->fcp_wqidx = iocbq->fcp_wqidx;
James Smart341af102010-01-26 23:07:37 -05009511 if (iocbq->iocb_flag & LPFC_IO_FCP)
9512 abtsiocb->iocb_flag |= LPFC_USE_FCPWQIDX;
James Smart5ffc2662009-11-18 15:39:44 -05009513
James Smart2e0fef82007-06-17 19:56:36 -05009514 if (lpfc_is_link_up(phba))
dea31012005-04-17 16:05:31 -05009515 abtsiocb->iocb.ulpCommand = CMD_ABORT_XRI_CN;
9516 else
9517 abtsiocb->iocb.ulpCommand = CMD_CLOSE_XRI_CN;
9518
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -04009519 /* Setup callback routine and issue the command. */
9520 abtsiocb->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
James Smartda0436e2009-05-22 14:51:39 -04009521 ret_val = lpfc_sli_issue_iocb(phba, pring->ringno,
9522 abtsiocb, 0);
dea31012005-04-17 16:05:31 -05009523 if (ret_val == IOCB_ERROR) {
James Bottomley604a3e32005-10-29 10:28:33 -05009524 lpfc_sli_release_iocbq(phba, abtsiocb);
dea31012005-04-17 16:05:31 -05009525 errcnt++;
9526 continue;
9527 }
9528 }
9529
9530 return errcnt;
9531}
9532
James Smarte59058c2008-08-24 21:49:00 -04009533/**
James Smart3621a712009-04-06 18:47:14 -04009534 * lpfc_sli_wake_iocb_wait - lpfc_sli_issue_iocb_wait's completion handler
James Smarte59058c2008-08-24 21:49:00 -04009535 * @phba: Pointer to HBA context object.
9536 * @cmdiocbq: Pointer to command iocb.
9537 * @rspiocbq: Pointer to response iocb.
9538 *
9539 * This function is the completion handler for iocbs issued using
9540 * lpfc_sli_issue_iocb_wait function. This function is called by the
9541 * ring event handler function without any lock held. This function
9542 * can be called from both worker thread context and interrupt
9543 * context. This function also can be called from other thread which
9544 * cleans up the SLI layer objects.
9545 * This function copy the contents of the response iocb to the
9546 * response iocb memory object provided by the caller of
9547 * lpfc_sli_issue_iocb_wait and then wakes up the thread which
9548 * sleeps for the iocb completion.
9549 **/
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009550static void
9551lpfc_sli_wake_iocb_wait(struct lpfc_hba *phba,
9552 struct lpfc_iocbq *cmdiocbq,
9553 struct lpfc_iocbq *rspiocbq)
dea31012005-04-17 16:05:31 -05009554{
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009555 wait_queue_head_t *pdone_q;
9556 unsigned long iflags;
James Smart0f65ff62010-02-26 14:14:23 -05009557 struct lpfc_scsi_buf *lpfc_cmd;
dea31012005-04-17 16:05:31 -05009558
James Smart2e0fef82007-06-17 19:56:36 -05009559 spin_lock_irqsave(&phba->hbalock, iflags);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009560 cmdiocbq->iocb_flag |= LPFC_IO_WAKE;
9561 if (cmdiocbq->context2 && rspiocbq)
9562 memcpy(&((struct lpfc_iocbq *)cmdiocbq->context2)->iocb,
9563 &rspiocbq->iocb, sizeof(IOCB_t));
9564
James Smart0f65ff62010-02-26 14:14:23 -05009565 /* Set the exchange busy flag for task management commands */
9566 if ((cmdiocbq->iocb_flag & LPFC_IO_FCP) &&
9567 !(cmdiocbq->iocb_flag & LPFC_IO_LIBDFC)) {
9568 lpfc_cmd = container_of(cmdiocbq, struct lpfc_scsi_buf,
9569 cur_iocbq);
9570 lpfc_cmd->exch_busy = rspiocbq->iocb_flag & LPFC_EXCHANGE_BUSY;
9571 }
9572
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009573 pdone_q = cmdiocbq->context_un.wait_queue;
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009574 if (pdone_q)
9575 wake_up(pdone_q);
James Smart858c9f62007-06-17 19:56:39 -05009576 spin_unlock_irqrestore(&phba->hbalock, iflags);
dea31012005-04-17 16:05:31 -05009577 return;
9578}
9579
James Smarte59058c2008-08-24 21:49:00 -04009580/**
James Smartd11e31d2009-06-10 17:23:06 -04009581 * lpfc_chk_iocb_flg - Test IOCB flag with lock held.
9582 * @phba: Pointer to HBA context object..
9583 * @piocbq: Pointer to command iocb.
9584 * @flag: Flag to test.
9585 *
9586 * This routine grabs the hbalock and then test the iocb_flag to
9587 * see if the passed in flag is set.
9588 * Returns:
9589 * 1 if flag is set.
9590 * 0 if flag is not set.
9591 **/
9592static int
9593lpfc_chk_iocb_flg(struct lpfc_hba *phba,
9594 struct lpfc_iocbq *piocbq, uint32_t flag)
9595{
9596 unsigned long iflags;
9597 int ret;
9598
9599 spin_lock_irqsave(&phba->hbalock, iflags);
9600 ret = piocbq->iocb_flag & flag;
9601 spin_unlock_irqrestore(&phba->hbalock, iflags);
9602 return ret;
9603
9604}
9605
9606/**
James Smart3621a712009-04-06 18:47:14 -04009607 * lpfc_sli_issue_iocb_wait - Synchronous function to issue iocb commands
James Smarte59058c2008-08-24 21:49:00 -04009608 * @phba: Pointer to HBA context object..
9609 * @pring: Pointer to sli ring.
9610 * @piocb: Pointer to command iocb.
9611 * @prspiocbq: Pointer to response iocb.
9612 * @timeout: Timeout in number of seconds.
9613 *
9614 * This function issues the iocb to firmware and waits for the
9615 * iocb to complete. If the iocb command is not
9616 * completed within timeout seconds, it returns IOCB_TIMEDOUT.
9617 * Caller should not free the iocb resources if this function
9618 * returns IOCB_TIMEDOUT.
9619 * The function waits for the iocb completion using an
9620 * non-interruptible wait.
9621 * This function will sleep while waiting for iocb completion.
9622 * So, this function should not be called from any context which
9623 * does not allow sleeping. Due to the same reason, this function
9624 * cannot be called with interrupt disabled.
9625 * This function assumes that the iocb completions occur while
9626 * this function sleep. So, this function cannot be called from
9627 * the thread which process iocb completion for this ring.
9628 * This function clears the iocb_flag of the iocb object before
9629 * issuing the iocb and the iocb completion handler sets this
9630 * flag and wakes this thread when the iocb completes.
9631 * The contents of the response iocb will be copied to prspiocbq
9632 * by the completion handler when the command completes.
9633 * This function returns IOCB_SUCCESS when success.
9634 * This function is called with no lock held.
9635 **/
dea31012005-04-17 16:05:31 -05009636int
James Smart2e0fef82007-06-17 19:56:36 -05009637lpfc_sli_issue_iocb_wait(struct lpfc_hba *phba,
James Smartda0436e2009-05-22 14:51:39 -04009638 uint32_t ring_number,
James Smart2e0fef82007-06-17 19:56:36 -05009639 struct lpfc_iocbq *piocb,
9640 struct lpfc_iocbq *prspiocbq,
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009641 uint32_t timeout)
dea31012005-04-17 16:05:31 -05009642{
Peter Zijlstra7259f0d2006-10-29 22:46:36 -08009643 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009644 long timeleft, timeout_req = 0;
9645 int retval = IOCB_SUCCESS;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05009646 uint32_t creg_val;
James Smart2a9bf3d2010-06-07 15:24:45 -04009647 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
dea31012005-04-17 16:05:31 -05009648 /*
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009649 * If the caller has provided a response iocbq buffer, then context2
9650 * is NULL or its an error.
dea31012005-04-17 16:05:31 -05009651 */
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009652 if (prspiocbq) {
9653 if (piocb->context2)
9654 return IOCB_ERROR;
9655 piocb->context2 = prspiocbq;
dea31012005-04-17 16:05:31 -05009656 }
9657
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009658 piocb->iocb_cmpl = lpfc_sli_wake_iocb_wait;
9659 piocb->context_un.wait_queue = &done_q;
9660 piocb->iocb_flag &= ~LPFC_IO_WAKE;
dea31012005-04-17 16:05:31 -05009661
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05009662 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
James Smart9940b972011-03-11 16:06:12 -05009663 if (lpfc_readl(phba->HCregaddr, &creg_val))
9664 return IOCB_ERROR;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05009665 creg_val |= (HC_R0INT_ENA << LPFC_FCP_RING);
9666 writel(creg_val, phba->HCregaddr);
9667 readl(phba->HCregaddr); /* flush */
9668 }
9669
James Smart2a9bf3d2010-06-07 15:24:45 -04009670 retval = lpfc_sli_issue_iocb(phba, ring_number, piocb,
9671 SLI_IOCB_RET_IOCB);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009672 if (retval == IOCB_SUCCESS) {
9673 timeout_req = timeout * HZ;
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009674 timeleft = wait_event_timeout(done_q,
James Smartd11e31d2009-06-10 17:23:06 -04009675 lpfc_chk_iocb_flg(phba, piocb, LPFC_IO_WAKE),
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009676 timeout_req);
dea31012005-04-17 16:05:31 -05009677
James Smart7054a602007-04-25 09:52:34 -04009678 if (piocb->iocb_flag & LPFC_IO_WAKE) {
9679 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04009680 "0331 IOCB wake signaled\n");
James Smart7054a602007-04-25 09:52:34 -04009681 } else if (timeleft == 0) {
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009682 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04009683 "0338 IOCB wait timeout error - no "
9684 "wake response Data x%x\n", timeout);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009685 retval = IOCB_TIMEDOUT;
James Smart7054a602007-04-25 09:52:34 -04009686 } else {
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009687 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04009688 "0330 IOCB wake NOT set, "
9689 "Data x%x x%lx\n",
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009690 timeout, (timeleft / jiffies));
9691 retval = IOCB_TIMEDOUT;
dea31012005-04-17 16:05:31 -05009692 }
James Smart2a9bf3d2010-06-07 15:24:45 -04009693 } else if (retval == IOCB_BUSY) {
9694 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
9695 "2818 Max IOCBs %d txq cnt %d txcmplq cnt %d\n",
9696 phba->iocb_cnt, pring->txq_cnt, pring->txcmplq_cnt);
9697 return retval;
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009698 } else {
9699 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smartd7c255b2008-08-24 21:50:00 -04009700 "0332 IOCB wait issue failed, Data x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04009701 retval);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009702 retval = IOCB_ERROR;
dea31012005-04-17 16:05:31 -05009703 }
9704
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05009705 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
James Smart9940b972011-03-11 16:06:12 -05009706 if (lpfc_readl(phba->HCregaddr, &creg_val))
9707 return IOCB_ERROR;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05009708 creg_val &= ~(HC_R0INT_ENA << LPFC_FCP_RING);
9709 writel(creg_val, phba->HCregaddr);
9710 readl(phba->HCregaddr); /* flush */
9711 }
9712
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009713 if (prspiocbq)
9714 piocb->context2 = NULL;
9715
9716 piocb->context_un.wait_queue = NULL;
9717 piocb->iocb_cmpl = NULL;
dea31012005-04-17 16:05:31 -05009718 return retval;
9719}
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009720
James Smarte59058c2008-08-24 21:49:00 -04009721/**
James Smart3621a712009-04-06 18:47:14 -04009722 * lpfc_sli_issue_mbox_wait - Synchronous function to issue mailbox
James Smarte59058c2008-08-24 21:49:00 -04009723 * @phba: Pointer to HBA context object.
9724 * @pmboxq: Pointer to driver mailbox object.
9725 * @timeout: Timeout in number of seconds.
9726 *
9727 * This function issues the mailbox to firmware and waits for the
9728 * mailbox command to complete. If the mailbox command is not
9729 * completed within timeout seconds, it returns MBX_TIMEOUT.
9730 * The function waits for the mailbox completion using an
9731 * interruptible wait. If the thread is woken up due to a
9732 * signal, MBX_TIMEOUT error is returned to the caller. Caller
9733 * should not free the mailbox resources, if this function returns
9734 * MBX_TIMEOUT.
9735 * This function will sleep while waiting for mailbox completion.
9736 * So, this function should not be called from any context which
9737 * does not allow sleeping. Due to the same reason, this function
9738 * cannot be called with interrupt disabled.
9739 * This function assumes that the mailbox completion occurs while
9740 * this function sleep. So, this function cannot be called from
9741 * the worker thread which processes mailbox completion.
9742 * This function is called in the context of HBA management
9743 * applications.
9744 * This function returns MBX_SUCCESS when successful.
9745 * This function is called with no lock held.
9746 **/
dea31012005-04-17 16:05:31 -05009747int
James Smart2e0fef82007-06-17 19:56:36 -05009748lpfc_sli_issue_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq,
dea31012005-04-17 16:05:31 -05009749 uint32_t timeout)
9750{
Peter Zijlstra7259f0d2006-10-29 22:46:36 -08009751 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
dea31012005-04-17 16:05:31 -05009752 int retval;
James Smart858c9f62007-06-17 19:56:39 -05009753 unsigned long flag;
dea31012005-04-17 16:05:31 -05009754
9755 /* The caller must leave context1 empty. */
James Smart98c9ea52007-10-27 13:37:33 -04009756 if (pmboxq->context1)
James Smart2e0fef82007-06-17 19:56:36 -05009757 return MBX_NOT_FINISHED;
dea31012005-04-17 16:05:31 -05009758
James Smart495a7142008-06-14 22:52:59 -04009759 pmboxq->mbox_flag &= ~LPFC_MBX_WAKE;
dea31012005-04-17 16:05:31 -05009760 /* setup wake call as IOCB callback */
9761 pmboxq->mbox_cmpl = lpfc_sli_wake_mbox_wait;
9762 /* setup context field to pass wait_queue pointer to wake function */
9763 pmboxq->context1 = &done_q;
9764
dea31012005-04-17 16:05:31 -05009765 /* now issue the command */
9766 retval = lpfc_sli_issue_mbox(phba, pmboxq, MBX_NOWAIT);
dea31012005-04-17 16:05:31 -05009767 if (retval == MBX_BUSY || retval == MBX_SUCCESS) {
James Smart7054a602007-04-25 09:52:34 -04009768 wait_event_interruptible_timeout(done_q,
9769 pmboxq->mbox_flag & LPFC_MBX_WAKE,
9770 timeout * HZ);
9771
James Smart858c9f62007-06-17 19:56:39 -05009772 spin_lock_irqsave(&phba->hbalock, flag);
dea31012005-04-17 16:05:31 -05009773 pmboxq->context1 = NULL;
James Smart7054a602007-04-25 09:52:34 -04009774 /*
9775 * if LPFC_MBX_WAKE flag is set the mailbox is completed
9776 * else do not free the resources.
9777 */
James Smartd7c47992010-06-08 18:31:54 -04009778 if (pmboxq->mbox_flag & LPFC_MBX_WAKE) {
dea31012005-04-17 16:05:31 -05009779 retval = MBX_SUCCESS;
James Smartd7c47992010-06-08 18:31:54 -04009780 lpfc_sli4_swap_str(phba, pmboxq);
9781 } else {
James Smart7054a602007-04-25 09:52:34 -04009782 retval = MBX_TIMEOUT;
James Smart858c9f62007-06-17 19:56:39 -05009783 pmboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
9784 }
9785 spin_unlock_irqrestore(&phba->hbalock, flag);
dea31012005-04-17 16:05:31 -05009786 }
9787
dea31012005-04-17 16:05:31 -05009788 return retval;
9789}
9790
James Smarte59058c2008-08-24 21:49:00 -04009791/**
James Smart3772a992009-05-22 14:50:54 -04009792 * lpfc_sli_mbox_sys_shutdown - shutdown mailbox command sub-system
James Smarte59058c2008-08-24 21:49:00 -04009793 * @phba: Pointer to HBA context.
9794 *
James Smart3772a992009-05-22 14:50:54 -04009795 * This function is called to shutdown the driver's mailbox sub-system.
9796 * It first marks the mailbox sub-system is in a block state to prevent
9797 * the asynchronous mailbox command from issued off the pending mailbox
9798 * command queue. If the mailbox command sub-system shutdown is due to
9799 * HBA error conditions such as EEH or ERATT, this routine shall invoke
9800 * the mailbox sub-system flush routine to forcefully bring down the
9801 * mailbox sub-system. Otherwise, if it is due to normal condition (such
9802 * as with offline or HBA function reset), this routine will wait for the
9803 * outstanding mailbox command to complete before invoking the mailbox
9804 * sub-system flush routine to gracefully bring down mailbox sub-system.
James Smarte59058c2008-08-24 21:49:00 -04009805 **/
James Smart3772a992009-05-22 14:50:54 -04009806void
9807lpfc_sli_mbox_sys_shutdown(struct lpfc_hba *phba)
James Smartb4c02652006-07-06 15:50:43 -04009808{
James Smart3772a992009-05-22 14:50:54 -04009809 struct lpfc_sli *psli = &phba->sli;
James Smart3772a992009-05-22 14:50:54 -04009810 unsigned long timeout;
9811
James Smarta183a152011-10-10 21:32:43 -04009812 timeout = msecs_to_jiffies(LPFC_MBOX_TMO * 1000) + jiffies;
James Smart3772a992009-05-22 14:50:54 -04009813 spin_lock_irq(&phba->hbalock);
9814 psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
9815 spin_unlock_irq(&phba->hbalock);
9816
9817 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
9818 spin_lock_irq(&phba->hbalock);
James Smart3772a992009-05-22 14:50:54 -04009819 /* Determine how long we might wait for the active mailbox
9820 * command to be gracefully completed by firmware.
9821 */
James Smarta183a152011-10-10 21:32:43 -04009822 if (phba->sli.mbox_active)
9823 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
9824 phba->sli.mbox_active) *
9825 1000) + jiffies;
9826 spin_unlock_irq(&phba->hbalock);
9827
James Smart3772a992009-05-22 14:50:54 -04009828 while (phba->sli.mbox_active) {
9829 /* Check active mailbox complete status every 2ms */
9830 msleep(2);
9831 if (time_after(jiffies, timeout))
9832 /* Timeout, let the mailbox flush routine to
9833 * forcefully release active mailbox command
9834 */
9835 break;
9836 }
9837 }
9838 lpfc_sli_mbox_sys_flush(phba);
9839}
9840
9841/**
9842 * lpfc_sli_eratt_read - read sli-3 error attention events
9843 * @phba: Pointer to HBA context.
9844 *
9845 * This function is called to read the SLI3 device error attention registers
9846 * for possible error attention events. The caller must hold the hostlock
9847 * with spin_lock_irq().
9848 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009849 * This function returns 1 when there is Error Attention in the Host Attention
James Smart3772a992009-05-22 14:50:54 -04009850 * Register and returns 0 otherwise.
9851 **/
9852static int
9853lpfc_sli_eratt_read(struct lpfc_hba *phba)
9854{
James Smarted957682007-06-17 19:56:37 -05009855 uint32_t ha_copy;
James Smartb4c02652006-07-06 15:50:43 -04009856
James Smart3772a992009-05-22 14:50:54 -04009857 /* Read chip Host Attention (HA) register */
James Smart9940b972011-03-11 16:06:12 -05009858 if (lpfc_readl(phba->HAregaddr, &ha_copy))
9859 goto unplug_err;
9860
James Smart3772a992009-05-22 14:50:54 -04009861 if (ha_copy & HA_ERATT) {
9862 /* Read host status register to retrieve error event */
James Smart9940b972011-03-11 16:06:12 -05009863 if (lpfc_sli_read_hs(phba))
9864 goto unplug_err;
James Smartb4c02652006-07-06 15:50:43 -04009865
James Smart3772a992009-05-22 14:50:54 -04009866 /* Check if there is a deferred error condition is active */
9867 if ((HS_FFER1 & phba->work_hs) &&
9868 ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
James Smartdcf2a4e2010-09-29 11:18:53 -04009869 HS_FFER6 | HS_FFER7 | HS_FFER8) & phba->work_hs)) {
James Smart3772a992009-05-22 14:50:54 -04009870 phba->hba_flag |= DEFER_ERATT;
James Smart3772a992009-05-22 14:50:54 -04009871 /* Clear all interrupt enable conditions */
9872 writel(0, phba->HCregaddr);
9873 readl(phba->HCregaddr);
9874 }
9875
9876 /* Set the driver HA work bitmap */
James Smart3772a992009-05-22 14:50:54 -04009877 phba->work_ha |= HA_ERATT;
9878 /* Indicate polling handles this ERATT */
9879 phba->hba_flag |= HBA_ERATT_HANDLED;
James Smart3772a992009-05-22 14:50:54 -04009880 return 1;
James Smartb4c02652006-07-06 15:50:43 -04009881 }
James Smart3772a992009-05-22 14:50:54 -04009882 return 0;
James Smart9940b972011-03-11 16:06:12 -05009883
9884unplug_err:
9885 /* Set the driver HS work bitmap */
9886 phba->work_hs |= UNPLUG_ERR;
9887 /* Set the driver HA work bitmap */
9888 phba->work_ha |= HA_ERATT;
9889 /* Indicate polling handles this ERATT */
9890 phba->hba_flag |= HBA_ERATT_HANDLED;
9891 return 1;
James Smartb4c02652006-07-06 15:50:43 -04009892}
9893
James Smarte59058c2008-08-24 21:49:00 -04009894/**
James Smartda0436e2009-05-22 14:51:39 -04009895 * lpfc_sli4_eratt_read - read sli-4 error attention events
9896 * @phba: Pointer to HBA context.
9897 *
9898 * This function is called to read the SLI4 device error attention registers
9899 * for possible error attention events. The caller must hold the hostlock
9900 * with spin_lock_irq().
9901 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009902 * This function returns 1 when there is Error Attention in the Host Attention
James Smartda0436e2009-05-22 14:51:39 -04009903 * Register and returns 0 otherwise.
9904 **/
9905static int
9906lpfc_sli4_eratt_read(struct lpfc_hba *phba)
9907{
9908 uint32_t uerr_sta_hi, uerr_sta_lo;
James Smart2fcee4b2010-12-15 17:57:46 -05009909 uint32_t if_type, portsmphr;
9910 struct lpfc_register portstat_reg;
James Smartda0436e2009-05-22 14:51:39 -04009911
James Smart2fcee4b2010-12-15 17:57:46 -05009912 /*
9913 * For now, use the SLI4 device internal unrecoverable error
James Smartda0436e2009-05-22 14:51:39 -04009914 * registers for error attention. This can be changed later.
9915 */
James Smart2fcee4b2010-12-15 17:57:46 -05009916 if_type = bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf);
9917 switch (if_type) {
9918 case LPFC_SLI_INTF_IF_TYPE_0:
James Smart9940b972011-03-11 16:06:12 -05009919 if (lpfc_readl(phba->sli4_hba.u.if_type0.UERRLOregaddr,
9920 &uerr_sta_lo) ||
9921 lpfc_readl(phba->sli4_hba.u.if_type0.UERRHIregaddr,
9922 &uerr_sta_hi)) {
9923 phba->work_hs |= UNPLUG_ERR;
9924 phba->work_ha |= HA_ERATT;
9925 phba->hba_flag |= HBA_ERATT_HANDLED;
9926 return 1;
9927 }
James Smart2fcee4b2010-12-15 17:57:46 -05009928 if ((~phba->sli4_hba.ue_mask_lo & uerr_sta_lo) ||
9929 (~phba->sli4_hba.ue_mask_hi & uerr_sta_hi)) {
9930 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9931 "1423 HBA Unrecoverable error: "
9932 "uerr_lo_reg=0x%x, uerr_hi_reg=0x%x, "
9933 "ue_mask_lo_reg=0x%x, "
9934 "ue_mask_hi_reg=0x%x\n",
9935 uerr_sta_lo, uerr_sta_hi,
9936 phba->sli4_hba.ue_mask_lo,
9937 phba->sli4_hba.ue_mask_hi);
9938 phba->work_status[0] = uerr_sta_lo;
9939 phba->work_status[1] = uerr_sta_hi;
9940 phba->work_ha |= HA_ERATT;
9941 phba->hba_flag |= HBA_ERATT_HANDLED;
9942 return 1;
9943 }
9944 break;
9945 case LPFC_SLI_INTF_IF_TYPE_2:
James Smart9940b972011-03-11 16:06:12 -05009946 if (lpfc_readl(phba->sli4_hba.u.if_type2.STATUSregaddr,
9947 &portstat_reg.word0) ||
9948 lpfc_readl(phba->sli4_hba.PSMPHRregaddr,
9949 &portsmphr)){
9950 phba->work_hs |= UNPLUG_ERR;
9951 phba->work_ha |= HA_ERATT;
9952 phba->hba_flag |= HBA_ERATT_HANDLED;
9953 return 1;
9954 }
James Smart2fcee4b2010-12-15 17:57:46 -05009955 if (bf_get(lpfc_sliport_status_err, &portstat_reg)) {
9956 phba->work_status[0] =
9957 readl(phba->sli4_hba.u.if_type2.ERR1regaddr);
9958 phba->work_status[1] =
9959 readl(phba->sli4_hba.u.if_type2.ERR2regaddr);
9960 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart2e90f4b2011-12-13 13:22:37 -05009961 "2885 Port Status Event: "
James Smart2fcee4b2010-12-15 17:57:46 -05009962 "port status reg 0x%x, "
9963 "port smphr reg 0x%x, "
9964 "error 1=0x%x, error 2=0x%x\n",
9965 portstat_reg.word0,
9966 portsmphr,
9967 phba->work_status[0],
9968 phba->work_status[1]);
9969 phba->work_ha |= HA_ERATT;
9970 phba->hba_flag |= HBA_ERATT_HANDLED;
9971 return 1;
9972 }
9973 break;
9974 case LPFC_SLI_INTF_IF_TYPE_1:
9975 default:
James Smarta747c9c2009-11-18 15:41:10 -05009976 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart2fcee4b2010-12-15 17:57:46 -05009977 "2886 HBA Error Attention on unsupported "
9978 "if type %d.", if_type);
James Smarta747c9c2009-11-18 15:41:10 -05009979 return 1;
James Smartda0436e2009-05-22 14:51:39 -04009980 }
James Smart2fcee4b2010-12-15 17:57:46 -05009981
James Smartda0436e2009-05-22 14:51:39 -04009982 return 0;
9983}
9984
9985/**
James Smart3621a712009-04-06 18:47:14 -04009986 * lpfc_sli_check_eratt - check error attention events
James Smart93996272008-08-24 21:50:30 -04009987 * @phba: Pointer to HBA context.
9988 *
James Smart3772a992009-05-22 14:50:54 -04009989 * This function is called from timer soft interrupt context to check HBA's
James Smart93996272008-08-24 21:50:30 -04009990 * error attention register bit for error attention events.
9991 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009992 * This function returns 1 when there is Error Attention in the Host Attention
James Smart93996272008-08-24 21:50:30 -04009993 * Register and returns 0 otherwise.
9994 **/
9995int
9996lpfc_sli_check_eratt(struct lpfc_hba *phba)
9997{
9998 uint32_t ha_copy;
9999
10000 /* If somebody is waiting to handle an eratt, don't process it
10001 * here. The brdkill function will do this.
10002 */
10003 if (phba->link_flag & LS_IGNORE_ERATT)
10004 return 0;
10005
10006 /* Check if interrupt handler handles this ERATT */
10007 spin_lock_irq(&phba->hbalock);
10008 if (phba->hba_flag & HBA_ERATT_HANDLED) {
10009 /* Interrupt handler has handled ERATT */
10010 spin_unlock_irq(&phba->hbalock);
10011 return 0;
10012 }
10013
James Smarta257bf92009-04-06 18:48:10 -040010014 /*
10015 * If there is deferred error attention, do not check for error
10016 * attention
10017 */
10018 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
10019 spin_unlock_irq(&phba->hbalock);
10020 return 0;
10021 }
10022
James Smart3772a992009-05-22 14:50:54 -040010023 /* If PCI channel is offline, don't process it */
10024 if (unlikely(pci_channel_offline(phba->pcidev))) {
James Smart93996272008-08-24 21:50:30 -040010025 spin_unlock_irq(&phba->hbalock);
James Smart3772a992009-05-22 14:50:54 -040010026 return 0;
10027 }
10028
10029 switch (phba->sli_rev) {
10030 case LPFC_SLI_REV2:
10031 case LPFC_SLI_REV3:
10032 /* Read chip Host Attention (HA) register */
10033 ha_copy = lpfc_sli_eratt_read(phba);
10034 break;
James Smartda0436e2009-05-22 14:51:39 -040010035 case LPFC_SLI_REV4:
James Smart2fcee4b2010-12-15 17:57:46 -050010036 /* Read device Uncoverable Error (UERR) registers */
James Smartda0436e2009-05-22 14:51:39 -040010037 ha_copy = lpfc_sli4_eratt_read(phba);
10038 break;
James Smart3772a992009-05-22 14:50:54 -040010039 default:
10040 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10041 "0299 Invalid SLI revision (%d)\n",
10042 phba->sli_rev);
10043 ha_copy = 0;
10044 break;
James Smart93996272008-08-24 21:50:30 -040010045 }
10046 spin_unlock_irq(&phba->hbalock);
James Smart3772a992009-05-22 14:50:54 -040010047
10048 return ha_copy;
10049}
10050
10051/**
10052 * lpfc_intr_state_check - Check device state for interrupt handling
10053 * @phba: Pointer to HBA context.
10054 *
10055 * This inline routine checks whether a device or its PCI slot is in a state
10056 * that the interrupt should be handled.
10057 *
10058 * This function returns 0 if the device or the PCI slot is in a state that
10059 * interrupt should be handled, otherwise -EIO.
10060 */
10061static inline int
10062lpfc_intr_state_check(struct lpfc_hba *phba)
10063{
10064 /* If the pci channel is offline, ignore all the interrupts */
10065 if (unlikely(pci_channel_offline(phba->pcidev)))
10066 return -EIO;
10067
10068 /* Update device level interrupt statistics */
10069 phba->sli.slistat.sli_intr++;
10070
10071 /* Ignore all interrupts during initialization. */
10072 if (unlikely(phba->link_state < LPFC_LINK_DOWN))
10073 return -EIO;
10074
James Smart93996272008-08-24 21:50:30 -040010075 return 0;
10076}
10077
10078/**
James Smart3772a992009-05-22 14:50:54 -040010079 * lpfc_sli_sp_intr_handler - Slow-path interrupt handler to SLI-3 device
James Smarte59058c2008-08-24 21:49:00 -040010080 * @irq: Interrupt number.
10081 * @dev_id: The device context pointer.
10082 *
James Smart93996272008-08-24 21:50:30 -040010083 * This function is directly called from the PCI layer as an interrupt
James Smart3772a992009-05-22 14:50:54 -040010084 * service routine when device with SLI-3 interface spec is enabled with
10085 * MSI-X multi-message interrupt mode and there are slow-path events in
10086 * the HBA. However, when the device is enabled with either MSI or Pin-IRQ
10087 * interrupt mode, this function is called as part of the device-level
10088 * interrupt handler. When the PCI slot is in error recovery or the HBA
10089 * is undergoing initialization, the interrupt handler will not process
10090 * the interrupt. The link attention and ELS ring attention events are
10091 * handled by the worker thread. The interrupt handler signals the worker
10092 * thread and returns for these events. This function is called without
10093 * any lock held. It gets the hbalock to access and update SLI data
James Smart93996272008-08-24 21:50:30 -040010094 * structures.
10095 *
10096 * This function returns IRQ_HANDLED when interrupt is handled else it
10097 * returns IRQ_NONE.
James Smarte59058c2008-08-24 21:49:00 -040010098 **/
dea31012005-04-17 16:05:31 -050010099irqreturn_t
James Smart3772a992009-05-22 14:50:54 -040010100lpfc_sli_sp_intr_handler(int irq, void *dev_id)
dea31012005-04-17 16:05:31 -050010101{
James Smart2e0fef82007-06-17 19:56:36 -050010102 struct lpfc_hba *phba;
James Smarta747c9c2009-11-18 15:41:10 -050010103 uint32_t ha_copy, hc_copy;
dea31012005-04-17 16:05:31 -050010104 uint32_t work_ha_copy;
10105 unsigned long status;
James Smart5b75da22008-12-04 22:39:35 -050010106 unsigned long iflag;
dea31012005-04-17 16:05:31 -050010107 uint32_t control;
10108
James Smart92d7f7b2007-06-17 19:56:38 -050010109 MAILBOX_t *mbox, *pmbox;
James Smart858c9f62007-06-17 19:56:39 -050010110 struct lpfc_vport *vport;
10111 struct lpfc_nodelist *ndlp;
10112 struct lpfc_dmabuf *mp;
James Smart92d7f7b2007-06-17 19:56:38 -050010113 LPFC_MBOXQ_t *pmb;
10114 int rc;
10115
dea31012005-04-17 16:05:31 -050010116 /*
10117 * Get the driver's phba structure from the dev_id and
10118 * assume the HBA is not interrupting.
10119 */
James Smart93996272008-08-24 21:50:30 -040010120 phba = (struct lpfc_hba *)dev_id;
dea31012005-04-17 16:05:31 -050010121
10122 if (unlikely(!phba))
10123 return IRQ_NONE;
10124
dea31012005-04-17 16:05:31 -050010125 /*
James Smart93996272008-08-24 21:50:30 -040010126 * Stuff needs to be attented to when this function is invoked as an
10127 * individual interrupt handler in MSI-X multi-message interrupt mode
dea31012005-04-17 16:05:31 -050010128 */
James Smart93996272008-08-24 21:50:30 -040010129 if (phba->intr_type == MSIX) {
James Smart3772a992009-05-22 14:50:54 -040010130 /* Check device state for handling interrupt */
10131 if (lpfc_intr_state_check(phba))
James Smart93996272008-08-24 21:50:30 -040010132 return IRQ_NONE;
10133 /* Need to read HA REG for slow-path events */
James Smart5b75da22008-12-04 22:39:35 -050010134 spin_lock_irqsave(&phba->hbalock, iflag);
James Smart9940b972011-03-11 16:06:12 -050010135 if (lpfc_readl(phba->HAregaddr, &ha_copy))
10136 goto unplug_error;
James Smart93996272008-08-24 21:50:30 -040010137 /* If somebody is waiting to handle an eratt don't process it
10138 * here. The brdkill function will do this.
10139 */
10140 if (phba->link_flag & LS_IGNORE_ERATT)
10141 ha_copy &= ~HA_ERATT;
10142 /* Check the need for handling ERATT in interrupt handler */
10143 if (ha_copy & HA_ERATT) {
10144 if (phba->hba_flag & HBA_ERATT_HANDLED)
10145 /* ERATT polling has handled ERATT */
10146 ha_copy &= ~HA_ERATT;
10147 else
10148 /* Indicate interrupt handler handles ERATT */
10149 phba->hba_flag |= HBA_ERATT_HANDLED;
10150 }
James Smarta257bf92009-04-06 18:48:10 -040010151
10152 /*
10153 * If there is deferred error attention, do not check for any
10154 * interrupt.
10155 */
10156 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
James Smart3772a992009-05-22 14:50:54 -040010157 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smarta257bf92009-04-06 18:48:10 -040010158 return IRQ_NONE;
10159 }
10160
James Smart93996272008-08-24 21:50:30 -040010161 /* Clear up only attention source related to slow-path */
James Smart9940b972011-03-11 16:06:12 -050010162 if (lpfc_readl(phba->HCregaddr, &hc_copy))
10163 goto unplug_error;
10164
James Smarta747c9c2009-11-18 15:41:10 -050010165 writel(hc_copy & ~(HC_MBINT_ENA | HC_R2INT_ENA |
10166 HC_LAINT_ENA | HC_ERINT_ENA),
10167 phba->HCregaddr);
James Smart93996272008-08-24 21:50:30 -040010168 writel((ha_copy & (HA_MBATT | HA_R2_CLR_MSK)),
10169 phba->HAregaddr);
James Smarta747c9c2009-11-18 15:41:10 -050010170 writel(hc_copy, phba->HCregaddr);
James Smart93996272008-08-24 21:50:30 -040010171 readl(phba->HAregaddr); /* flush */
James Smart5b75da22008-12-04 22:39:35 -050010172 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart93996272008-08-24 21:50:30 -040010173 } else
10174 ha_copy = phba->ha_copy;
dea31012005-04-17 16:05:31 -050010175
dea31012005-04-17 16:05:31 -050010176 work_ha_copy = ha_copy & phba->work_ha_mask;
10177
James Smart93996272008-08-24 21:50:30 -040010178 if (work_ha_copy) {
dea31012005-04-17 16:05:31 -050010179 if (work_ha_copy & HA_LATT) {
10180 if (phba->sli.sli_flag & LPFC_PROCESS_LA) {
10181 /*
10182 * Turn off Link Attention interrupts
10183 * until CLEAR_LA done
10184 */
James Smart5b75da22008-12-04 22:39:35 -050010185 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -050010186 phba->sli.sli_flag &= ~LPFC_PROCESS_LA;
James Smart9940b972011-03-11 16:06:12 -050010187 if (lpfc_readl(phba->HCregaddr, &control))
10188 goto unplug_error;
dea31012005-04-17 16:05:31 -050010189 control &= ~HC_LAINT_ENA;
10190 writel(control, phba->HCregaddr);
10191 readl(phba->HCregaddr); /* flush */
James Smart5b75da22008-12-04 22:39:35 -050010192 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -050010193 }
10194 else
10195 work_ha_copy &= ~HA_LATT;
10196 }
10197
James Smart93996272008-08-24 21:50:30 -040010198 if (work_ha_copy & ~(HA_ERATT | HA_MBATT | HA_LATT)) {
James Smart858c9f62007-06-17 19:56:39 -050010199 /*
10200 * Turn off Slow Rings interrupts, LPFC_ELS_RING is
10201 * the only slow ring.
10202 */
10203 status = (work_ha_copy &
10204 (HA_RXMASK << (4*LPFC_ELS_RING)));
10205 status >>= (4*LPFC_ELS_RING);
10206 if (status & HA_RXMASK) {
James Smart5b75da22008-12-04 22:39:35 -050010207 spin_lock_irqsave(&phba->hbalock, iflag);
James Smart9940b972011-03-11 16:06:12 -050010208 if (lpfc_readl(phba->HCregaddr, &control))
10209 goto unplug_error;
James Smarta58cbd52007-08-02 11:09:43 -040010210
10211 lpfc_debugfs_slow_ring_trc(phba,
10212 "ISR slow ring: ctl:x%x stat:x%x isrcnt:x%x",
10213 control, status,
10214 (uint32_t)phba->sli.slistat.sli_intr);
10215
James Smart858c9f62007-06-17 19:56:39 -050010216 if (control & (HC_R0INT_ENA << LPFC_ELS_RING)) {
James Smarta58cbd52007-08-02 11:09:43 -040010217 lpfc_debugfs_slow_ring_trc(phba,
10218 "ISR Disable ring:"
10219 "pwork:x%x hawork:x%x wait:x%x",
10220 phba->work_ha, work_ha_copy,
10221 (uint32_t)((unsigned long)
James Smart5e9d9b82008-06-14 22:52:53 -040010222 &phba->work_waitq));
James Smarta58cbd52007-08-02 11:09:43 -040010223
James Smart858c9f62007-06-17 19:56:39 -050010224 control &=
10225 ~(HC_R0INT_ENA << LPFC_ELS_RING);
dea31012005-04-17 16:05:31 -050010226 writel(control, phba->HCregaddr);
10227 readl(phba->HCregaddr); /* flush */
dea31012005-04-17 16:05:31 -050010228 }
James Smarta58cbd52007-08-02 11:09:43 -040010229 else {
10230 lpfc_debugfs_slow_ring_trc(phba,
10231 "ISR slow ring: pwork:"
10232 "x%x hawork:x%x wait:x%x",
10233 phba->work_ha, work_ha_copy,
10234 (uint32_t)((unsigned long)
James Smart5e9d9b82008-06-14 22:52:53 -040010235 &phba->work_waitq));
James Smarta58cbd52007-08-02 11:09:43 -040010236 }
James Smart5b75da22008-12-04 22:39:35 -050010237 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -050010238 }
10239 }
James Smart5b75da22008-12-04 22:39:35 -050010240 spin_lock_irqsave(&phba->hbalock, iflag);
James Smarta257bf92009-04-06 18:48:10 -040010241 if (work_ha_copy & HA_ERATT) {
James Smart9940b972011-03-11 16:06:12 -050010242 if (lpfc_sli_read_hs(phba))
10243 goto unplug_error;
James Smarta257bf92009-04-06 18:48:10 -040010244 /*
10245 * Check if there is a deferred error condition
10246 * is active
10247 */
10248 if ((HS_FFER1 & phba->work_hs) &&
10249 ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
James Smartdcf2a4e2010-09-29 11:18:53 -040010250 HS_FFER6 | HS_FFER7 | HS_FFER8) &
10251 phba->work_hs)) {
James Smarta257bf92009-04-06 18:48:10 -040010252 phba->hba_flag |= DEFER_ERATT;
10253 /* Clear all interrupt enable conditions */
10254 writel(0, phba->HCregaddr);
10255 readl(phba->HCregaddr);
10256 }
10257 }
10258
James Smart93996272008-08-24 21:50:30 -040010259 if ((work_ha_copy & HA_MBATT) && (phba->sli.mbox_active)) {
James Smart92d7f7b2007-06-17 19:56:38 -050010260 pmb = phba->sli.mbox_active;
James Smart04c68492009-05-22 14:52:52 -040010261 pmbox = &pmb->u.mb;
James Smart34b02dc2008-08-24 21:49:55 -040010262 mbox = phba->mbox;
James Smart858c9f62007-06-17 19:56:39 -050010263 vport = pmb->vport;
James Smart92d7f7b2007-06-17 19:56:38 -050010264
10265 /* First check out the status word */
10266 lpfc_sli_pcimem_bcopy(mbox, pmbox, sizeof(uint32_t));
10267 if (pmbox->mbxOwner != OWN_HOST) {
James Smart5b75da22008-12-04 22:39:35 -050010268 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart92d7f7b2007-06-17 19:56:38 -050010269 /*
10270 * Stray Mailbox Interrupt, mbxCommand <cmd>
10271 * mbxStatus <status>
10272 */
James Smart09372822008-01-11 01:52:54 -050010273 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
James Smart92d7f7b2007-06-17 19:56:38 -050010274 LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -040010275 "(%d):0304 Stray Mailbox "
James Smart92d7f7b2007-06-17 19:56:38 -050010276 "Interrupt mbxCommand x%x "
10277 "mbxStatus x%x\n",
James Smarte8b62012007-08-02 11:10:09 -040010278 (vport ? vport->vpi : 0),
James Smart92d7f7b2007-06-17 19:56:38 -050010279 pmbox->mbxCommand,
10280 pmbox->mbxStatus);
James Smart09372822008-01-11 01:52:54 -050010281 /* clear mailbox attention bit */
10282 work_ha_copy &= ~HA_MBATT;
10283 } else {
James Smart97eab632008-04-07 10:16:05 -040010284 phba->sli.mbox_active = NULL;
James Smart5b75da22008-12-04 22:39:35 -050010285 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart09372822008-01-11 01:52:54 -050010286 phba->last_completion_time = jiffies;
10287 del_timer(&phba->sli.mbox_tmo);
James Smart09372822008-01-11 01:52:54 -050010288 if (pmb->mbox_cmpl) {
10289 lpfc_sli_pcimem_bcopy(mbox, pmbox,
10290 MAILBOX_CMD_SIZE);
James Smart7a470272010-03-15 11:25:20 -040010291 if (pmb->out_ext_byte_len &&
10292 pmb->context2)
10293 lpfc_sli_pcimem_bcopy(
10294 phba->mbox_ext,
10295 pmb->context2,
10296 pmb->out_ext_byte_len);
James Smart858c9f62007-06-17 19:56:39 -050010297 }
James Smart09372822008-01-11 01:52:54 -050010298 if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
10299 pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
10300
10301 lpfc_debugfs_disc_trc(vport,
10302 LPFC_DISC_TRC_MBOX_VPORT,
10303 "MBOX dflt rpi: : "
10304 "status:x%x rpi:x%x",
10305 (uint32_t)pmbox->mbxStatus,
10306 pmbox->un.varWords[0], 0);
10307
10308 if (!pmbox->mbxStatus) {
10309 mp = (struct lpfc_dmabuf *)
10310 (pmb->context1);
10311 ndlp = (struct lpfc_nodelist *)
10312 pmb->context2;
10313
10314 /* Reg_LOGIN of dflt RPI was
10315 * successful. new lets get
10316 * rid of the RPI using the
10317 * same mbox buffer.
10318 */
10319 lpfc_unreg_login(phba,
10320 vport->vpi,
10321 pmbox->un.varWords[0],
10322 pmb);
10323 pmb->mbox_cmpl =
10324 lpfc_mbx_cmpl_dflt_rpi;
10325 pmb->context1 = mp;
10326 pmb->context2 = ndlp;
10327 pmb->vport = vport;
James Smart58da1ff2008-04-07 10:15:56 -040010328 rc = lpfc_sli_issue_mbox(phba,
10329 pmb,
10330 MBX_NOWAIT);
10331 if (rc != MBX_BUSY)
10332 lpfc_printf_log(phba,
10333 KERN_ERR,
10334 LOG_MBOX | LOG_SLI,
James Smartd7c255b2008-08-24 21:50:00 -040010335 "0350 rc should have"
James Smart6a9c52c2009-10-02 15:16:51 -040010336 "been MBX_BUSY\n");
James Smart3772a992009-05-22 14:50:54 -040010337 if (rc != MBX_NOT_FINISHED)
10338 goto send_current_mbox;
James Smart09372822008-01-11 01:52:54 -050010339 }
10340 }
James Smart5b75da22008-12-04 22:39:35 -050010341 spin_lock_irqsave(
10342 &phba->pport->work_port_lock,
10343 iflag);
James Smart09372822008-01-11 01:52:54 -050010344 phba->pport->work_port_events &=
10345 ~WORKER_MBOX_TMO;
James Smart5b75da22008-12-04 22:39:35 -050010346 spin_unlock_irqrestore(
10347 &phba->pport->work_port_lock,
10348 iflag);
James Smart09372822008-01-11 01:52:54 -050010349 lpfc_mbox_cmpl_put(phba, pmb);
James Smart858c9f62007-06-17 19:56:39 -050010350 }
James Smart97eab632008-04-07 10:16:05 -040010351 } else
James Smart5b75da22008-12-04 22:39:35 -050010352 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart93996272008-08-24 21:50:30 -040010353
James Smart92d7f7b2007-06-17 19:56:38 -050010354 if ((work_ha_copy & HA_MBATT) &&
10355 (phba->sli.mbox_active == NULL)) {
James Smart858c9f62007-06-17 19:56:39 -050010356send_current_mbox:
James Smart92d7f7b2007-06-17 19:56:38 -050010357 /* Process next mailbox command if there is one */
James Smart58da1ff2008-04-07 10:15:56 -040010358 do {
10359 rc = lpfc_sli_issue_mbox(phba, NULL,
10360 MBX_NOWAIT);
10361 } while (rc == MBX_NOT_FINISHED);
10362 if (rc != MBX_SUCCESS)
10363 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
10364 LOG_SLI, "0349 rc should be "
James Smart6a9c52c2009-10-02 15:16:51 -040010365 "MBX_SUCCESS\n");
James Smart92d7f7b2007-06-17 19:56:38 -050010366 }
10367
James Smart5b75da22008-12-04 22:39:35 -050010368 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -050010369 phba->work_ha |= work_ha_copy;
James Smart5b75da22008-12-04 22:39:35 -050010370 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart5e9d9b82008-06-14 22:52:53 -040010371 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -050010372 }
James Smart93996272008-08-24 21:50:30 -040010373 return IRQ_HANDLED;
James Smart9940b972011-03-11 16:06:12 -050010374unplug_error:
10375 spin_unlock_irqrestore(&phba->hbalock, iflag);
10376 return IRQ_HANDLED;
dea31012005-04-17 16:05:31 -050010377
James Smart3772a992009-05-22 14:50:54 -040010378} /* lpfc_sli_sp_intr_handler */
James Smart93996272008-08-24 21:50:30 -040010379
10380/**
James Smart3772a992009-05-22 14:50:54 -040010381 * lpfc_sli_fp_intr_handler - Fast-path interrupt handler to SLI-3 device.
James Smart93996272008-08-24 21:50:30 -040010382 * @irq: Interrupt number.
10383 * @dev_id: The device context pointer.
10384 *
10385 * This function is directly called from the PCI layer as an interrupt
James Smart3772a992009-05-22 14:50:54 -040010386 * service routine when device with SLI-3 interface spec is enabled with
10387 * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
10388 * ring event in the HBA. However, when the device is enabled with either
10389 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
10390 * device-level interrupt handler. When the PCI slot is in error recovery
10391 * or the HBA is undergoing initialization, the interrupt handler will not
10392 * process the interrupt. The SCSI FCP fast-path ring event are handled in
10393 * the intrrupt context. This function is called without any lock held.
10394 * It gets the hbalock to access and update SLI data structures.
James Smart93996272008-08-24 21:50:30 -040010395 *
10396 * This function returns IRQ_HANDLED when interrupt is handled else it
10397 * returns IRQ_NONE.
10398 **/
10399irqreturn_t
James Smart3772a992009-05-22 14:50:54 -040010400lpfc_sli_fp_intr_handler(int irq, void *dev_id)
James Smart93996272008-08-24 21:50:30 -040010401{
10402 struct lpfc_hba *phba;
10403 uint32_t ha_copy;
10404 unsigned long status;
James Smart5b75da22008-12-04 22:39:35 -050010405 unsigned long iflag;
James Smart93996272008-08-24 21:50:30 -040010406
10407 /* Get the driver's phba structure from the dev_id and
10408 * assume the HBA is not interrupting.
10409 */
10410 phba = (struct lpfc_hba *) dev_id;
10411
10412 if (unlikely(!phba))
10413 return IRQ_NONE;
dea31012005-04-17 16:05:31 -050010414
10415 /*
James Smart93996272008-08-24 21:50:30 -040010416 * Stuff needs to be attented to when this function is invoked as an
10417 * individual interrupt handler in MSI-X multi-message interrupt mode
dea31012005-04-17 16:05:31 -050010418 */
James Smart93996272008-08-24 21:50:30 -040010419 if (phba->intr_type == MSIX) {
James Smart3772a992009-05-22 14:50:54 -040010420 /* Check device state for handling interrupt */
10421 if (lpfc_intr_state_check(phba))
James Smart93996272008-08-24 21:50:30 -040010422 return IRQ_NONE;
10423 /* Need to read HA REG for FCP ring and other ring events */
James Smart9940b972011-03-11 16:06:12 -050010424 if (lpfc_readl(phba->HAregaddr, &ha_copy))
10425 return IRQ_HANDLED;
James Smart93996272008-08-24 21:50:30 -040010426 /* Clear up only attention source related to fast-path */
James Smart5b75da22008-12-04 22:39:35 -050010427 spin_lock_irqsave(&phba->hbalock, iflag);
James Smarta257bf92009-04-06 18:48:10 -040010428 /*
10429 * If there is deferred error attention, do not check for
10430 * any interrupt.
10431 */
10432 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
James Smart3772a992009-05-22 14:50:54 -040010433 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smarta257bf92009-04-06 18:48:10 -040010434 return IRQ_NONE;
10435 }
James Smart93996272008-08-24 21:50:30 -040010436 writel((ha_copy & (HA_R0_CLR_MSK | HA_R1_CLR_MSK)),
10437 phba->HAregaddr);
10438 readl(phba->HAregaddr); /* flush */
James Smart5b75da22008-12-04 22:39:35 -050010439 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart93996272008-08-24 21:50:30 -040010440 } else
10441 ha_copy = phba->ha_copy;
10442
10443 /*
10444 * Process all events on FCP ring. Take the optimized path for FCP IO.
10445 */
10446 ha_copy &= ~(phba->work_ha_mask);
10447
10448 status = (ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
dea31012005-04-17 16:05:31 -050010449 status >>= (4*LPFC_FCP_RING);
James Smart858c9f62007-06-17 19:56:39 -050010450 if (status & HA_RXMASK)
dea31012005-04-17 16:05:31 -050010451 lpfc_sli_handle_fast_ring_event(phba,
10452 &phba->sli.ring[LPFC_FCP_RING],
10453 status);
James Smarta4bc3372006-12-02 13:34:16 -050010454
10455 if (phba->cfg_multi_ring_support == 2) {
10456 /*
James Smart93996272008-08-24 21:50:30 -040010457 * Process all events on extra ring. Take the optimized path
10458 * for extra ring IO.
James Smarta4bc3372006-12-02 13:34:16 -050010459 */
James Smart93996272008-08-24 21:50:30 -040010460 status = (ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
James Smarta4bc3372006-12-02 13:34:16 -050010461 status >>= (4*LPFC_EXTRA_RING);
James Smart858c9f62007-06-17 19:56:39 -050010462 if (status & HA_RXMASK) {
James Smarta4bc3372006-12-02 13:34:16 -050010463 lpfc_sli_handle_fast_ring_event(phba,
10464 &phba->sli.ring[LPFC_EXTRA_RING],
10465 status);
10466 }
10467 }
dea31012005-04-17 16:05:31 -050010468 return IRQ_HANDLED;
James Smart3772a992009-05-22 14:50:54 -040010469} /* lpfc_sli_fp_intr_handler */
dea31012005-04-17 16:05:31 -050010470
James Smart93996272008-08-24 21:50:30 -040010471/**
James Smart3772a992009-05-22 14:50:54 -040010472 * lpfc_sli_intr_handler - Device-level interrupt handler to SLI-3 device
James Smart93996272008-08-24 21:50:30 -040010473 * @irq: Interrupt number.
10474 * @dev_id: The device context pointer.
10475 *
James Smart3772a992009-05-22 14:50:54 -040010476 * This function is the HBA device-level interrupt handler to device with
10477 * SLI-3 interface spec, called from the PCI layer when either MSI or
10478 * Pin-IRQ interrupt mode is enabled and there is an event in the HBA which
10479 * requires driver attention. This function invokes the slow-path interrupt
10480 * attention handling function and fast-path interrupt attention handling
10481 * function in turn to process the relevant HBA attention events. This
10482 * function is called without any lock held. It gets the hbalock to access
10483 * and update SLI data structures.
James Smart93996272008-08-24 21:50:30 -040010484 *
10485 * This function returns IRQ_HANDLED when interrupt is handled, else it
10486 * returns IRQ_NONE.
10487 **/
10488irqreturn_t
James Smart3772a992009-05-22 14:50:54 -040010489lpfc_sli_intr_handler(int irq, void *dev_id)
James Smart93996272008-08-24 21:50:30 -040010490{
10491 struct lpfc_hba *phba;
10492 irqreturn_t sp_irq_rc, fp_irq_rc;
10493 unsigned long status1, status2;
James Smarta747c9c2009-11-18 15:41:10 -050010494 uint32_t hc_copy;
James Smart93996272008-08-24 21:50:30 -040010495
10496 /*
10497 * Get the driver's phba structure from the dev_id and
10498 * assume the HBA is not interrupting.
10499 */
10500 phba = (struct lpfc_hba *) dev_id;
10501
10502 if (unlikely(!phba))
10503 return IRQ_NONE;
10504
James Smart3772a992009-05-22 14:50:54 -040010505 /* Check device state for handling interrupt */
10506 if (lpfc_intr_state_check(phba))
James Smart93996272008-08-24 21:50:30 -040010507 return IRQ_NONE;
10508
10509 spin_lock(&phba->hbalock);
James Smart9940b972011-03-11 16:06:12 -050010510 if (lpfc_readl(phba->HAregaddr, &phba->ha_copy)) {
10511 spin_unlock(&phba->hbalock);
10512 return IRQ_HANDLED;
10513 }
10514
James Smart93996272008-08-24 21:50:30 -040010515 if (unlikely(!phba->ha_copy)) {
10516 spin_unlock(&phba->hbalock);
10517 return IRQ_NONE;
10518 } else if (phba->ha_copy & HA_ERATT) {
10519 if (phba->hba_flag & HBA_ERATT_HANDLED)
10520 /* ERATT polling has handled ERATT */
10521 phba->ha_copy &= ~HA_ERATT;
10522 else
10523 /* Indicate interrupt handler handles ERATT */
10524 phba->hba_flag |= HBA_ERATT_HANDLED;
10525 }
10526
James Smarta257bf92009-04-06 18:48:10 -040010527 /*
10528 * If there is deferred error attention, do not check for any interrupt.
10529 */
10530 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
Dan Carpenterec21b3b2010-08-08 00:15:17 +020010531 spin_unlock(&phba->hbalock);
James Smarta257bf92009-04-06 18:48:10 -040010532 return IRQ_NONE;
10533 }
10534
James Smart93996272008-08-24 21:50:30 -040010535 /* Clear attention sources except link and error attentions */
James Smart9940b972011-03-11 16:06:12 -050010536 if (lpfc_readl(phba->HCregaddr, &hc_copy)) {
10537 spin_unlock(&phba->hbalock);
10538 return IRQ_HANDLED;
10539 }
James Smarta747c9c2009-11-18 15:41:10 -050010540 writel(hc_copy & ~(HC_MBINT_ENA | HC_R0INT_ENA | HC_R1INT_ENA
10541 | HC_R2INT_ENA | HC_LAINT_ENA | HC_ERINT_ENA),
10542 phba->HCregaddr);
James Smart93996272008-08-24 21:50:30 -040010543 writel((phba->ha_copy & ~(HA_LATT | HA_ERATT)), phba->HAregaddr);
James Smarta747c9c2009-11-18 15:41:10 -050010544 writel(hc_copy, phba->HCregaddr);
James Smart93996272008-08-24 21:50:30 -040010545 readl(phba->HAregaddr); /* flush */
10546 spin_unlock(&phba->hbalock);
10547
10548 /*
10549 * Invokes slow-path host attention interrupt handling as appropriate.
10550 */
10551
10552 /* status of events with mailbox and link attention */
10553 status1 = phba->ha_copy & (HA_MBATT | HA_LATT | HA_ERATT);
10554
10555 /* status of events with ELS ring */
10556 status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_ELS_RING)));
10557 status2 >>= (4*LPFC_ELS_RING);
10558
10559 if (status1 || (status2 & HA_RXMASK))
James Smart3772a992009-05-22 14:50:54 -040010560 sp_irq_rc = lpfc_sli_sp_intr_handler(irq, dev_id);
James Smart93996272008-08-24 21:50:30 -040010561 else
10562 sp_irq_rc = IRQ_NONE;
10563
10564 /*
10565 * Invoke fast-path host attention interrupt handling as appropriate.
10566 */
10567
10568 /* status of events with FCP ring */
10569 status1 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
10570 status1 >>= (4*LPFC_FCP_RING);
10571
10572 /* status of events with extra ring */
10573 if (phba->cfg_multi_ring_support == 2) {
10574 status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
10575 status2 >>= (4*LPFC_EXTRA_RING);
10576 } else
10577 status2 = 0;
10578
10579 if ((status1 & HA_RXMASK) || (status2 & HA_RXMASK))
James Smart3772a992009-05-22 14:50:54 -040010580 fp_irq_rc = lpfc_sli_fp_intr_handler(irq, dev_id);
James Smart93996272008-08-24 21:50:30 -040010581 else
10582 fp_irq_rc = IRQ_NONE;
10583
10584 /* Return device-level interrupt handling status */
10585 return (sp_irq_rc == IRQ_HANDLED) ? sp_irq_rc : fp_irq_rc;
James Smart3772a992009-05-22 14:50:54 -040010586} /* lpfc_sli_intr_handler */
James Smart4f774512009-05-22 14:52:35 -040010587
10588/**
10589 * lpfc_sli4_fcp_xri_abort_event_proc - Process fcp xri abort event
10590 * @phba: pointer to lpfc hba data structure.
10591 *
10592 * This routine is invoked by the worker thread to process all the pending
10593 * SLI4 FCP abort XRI events.
10594 **/
10595void lpfc_sli4_fcp_xri_abort_event_proc(struct lpfc_hba *phba)
10596{
10597 struct lpfc_cq_event *cq_event;
10598
10599 /* First, declare the fcp xri abort event has been handled */
10600 spin_lock_irq(&phba->hbalock);
10601 phba->hba_flag &= ~FCP_XRI_ABORT_EVENT;
10602 spin_unlock_irq(&phba->hbalock);
10603 /* Now, handle all the fcp xri abort events */
10604 while (!list_empty(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue)) {
10605 /* Get the first event from the head of the event queue */
10606 spin_lock_irq(&phba->hbalock);
10607 list_remove_head(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue,
10608 cq_event, struct lpfc_cq_event, list);
10609 spin_unlock_irq(&phba->hbalock);
10610 /* Notify aborted XRI for FCP work queue */
10611 lpfc_sli4_fcp_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
10612 /* Free the event processed back to the free pool */
10613 lpfc_sli4_cq_event_release(phba, cq_event);
10614 }
10615}
10616
10617/**
10618 * lpfc_sli4_els_xri_abort_event_proc - Process els xri abort event
10619 * @phba: pointer to lpfc hba data structure.
10620 *
10621 * This routine is invoked by the worker thread to process all the pending
10622 * SLI4 els abort xri events.
10623 **/
10624void lpfc_sli4_els_xri_abort_event_proc(struct lpfc_hba *phba)
10625{
10626 struct lpfc_cq_event *cq_event;
10627
10628 /* First, declare the els xri abort event has been handled */
10629 spin_lock_irq(&phba->hbalock);
10630 phba->hba_flag &= ~ELS_XRI_ABORT_EVENT;
10631 spin_unlock_irq(&phba->hbalock);
10632 /* Now, handle all the els xri abort events */
10633 while (!list_empty(&phba->sli4_hba.sp_els_xri_aborted_work_queue)) {
10634 /* Get the first event from the head of the event queue */
10635 spin_lock_irq(&phba->hbalock);
10636 list_remove_head(&phba->sli4_hba.sp_els_xri_aborted_work_queue,
10637 cq_event, struct lpfc_cq_event, list);
10638 spin_unlock_irq(&phba->hbalock);
10639 /* Notify aborted XRI for ELS work queue */
10640 lpfc_sli4_els_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
10641 /* Free the event processed back to the free pool */
10642 lpfc_sli4_cq_event_release(phba, cq_event);
10643 }
10644}
10645
James Smart341af102010-01-26 23:07:37 -050010646/**
10647 * lpfc_sli4_iocb_param_transfer - Transfer pIocbOut and cmpl status to pIocbIn
10648 * @phba: pointer to lpfc hba data structure
10649 * @pIocbIn: pointer to the rspiocbq
10650 * @pIocbOut: pointer to the cmdiocbq
10651 * @wcqe: pointer to the complete wcqe
10652 *
10653 * This routine transfers the fields of a command iocbq to a response iocbq
10654 * by copying all the IOCB fields from command iocbq and transferring the
10655 * completion status information from the complete wcqe.
10656 **/
James Smart4f774512009-05-22 14:52:35 -040010657static void
James Smart341af102010-01-26 23:07:37 -050010658lpfc_sli4_iocb_param_transfer(struct lpfc_hba *phba,
10659 struct lpfc_iocbq *pIocbIn,
James Smart4f774512009-05-22 14:52:35 -040010660 struct lpfc_iocbq *pIocbOut,
10661 struct lpfc_wcqe_complete *wcqe)
10662{
James Smart341af102010-01-26 23:07:37 -050010663 unsigned long iflags;
James Smartacd68592012-01-18 16:25:09 -050010664 uint32_t status;
James Smart4f774512009-05-22 14:52:35 -040010665 size_t offset = offsetof(struct lpfc_iocbq, iocb);
10666
10667 memcpy((char *)pIocbIn + offset, (char *)pIocbOut + offset,
10668 sizeof(struct lpfc_iocbq) - offset);
James Smart4f774512009-05-22 14:52:35 -040010669 /* Map WCQE parameters into irspiocb parameters */
James Smartacd68592012-01-18 16:25:09 -050010670 status = bf_get(lpfc_wcqe_c_status, wcqe);
10671 pIocbIn->iocb.ulpStatus = (status & LPFC_IOCB_STATUS_MASK);
James Smart4f774512009-05-22 14:52:35 -040010672 if (pIocbOut->iocb_flag & LPFC_IO_FCP)
10673 if (pIocbIn->iocb.ulpStatus == IOSTAT_FCP_RSP_ERROR)
10674 pIocbIn->iocb.un.fcpi.fcpi_parm =
10675 pIocbOut->iocb.un.fcpi.fcpi_parm -
10676 wcqe->total_data_placed;
10677 else
10678 pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
James Smart695a8142010-01-26 23:08:03 -050010679 else {
James Smart4f774512009-05-22 14:52:35 -040010680 pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
James Smart695a8142010-01-26 23:08:03 -050010681 pIocbIn->iocb.un.genreq64.bdl.bdeSize = wcqe->total_data_placed;
10682 }
James Smart341af102010-01-26 23:07:37 -050010683
James Smartacd68592012-01-18 16:25:09 -050010684 /* Convert BG errors for completion status */
10685 if (status == CQE_STATUS_DI_ERROR) {
10686 pIocbIn->iocb.ulpStatus = IOSTAT_LOCAL_REJECT;
10687
10688 if (bf_get(lpfc_wcqe_c_bg_edir, wcqe))
10689 pIocbIn->iocb.un.ulpWord[4] = IOERR_RX_DMA_FAILED;
10690 else
10691 pIocbIn->iocb.un.ulpWord[4] = IOERR_TX_DMA_FAILED;
10692
10693 pIocbIn->iocb.unsli3.sli3_bg.bgstat = 0;
10694 if (bf_get(lpfc_wcqe_c_bg_ge, wcqe)) /* Guard Check failed */
10695 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
10696 BGS_GUARD_ERR_MASK;
10697 if (bf_get(lpfc_wcqe_c_bg_ae, wcqe)) /* App Tag Check failed */
10698 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
10699 BGS_APPTAG_ERR_MASK;
10700 if (bf_get(lpfc_wcqe_c_bg_re, wcqe)) /* Ref Tag Check failed */
10701 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
10702 BGS_REFTAG_ERR_MASK;
10703
10704 /* Check to see if there was any good data before the error */
10705 if (bf_get(lpfc_wcqe_c_bg_tdpv, wcqe)) {
10706 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
10707 BGS_HI_WATER_MARK_PRESENT_MASK;
10708 pIocbIn->iocb.unsli3.sli3_bg.bghm =
10709 wcqe->total_data_placed;
10710 }
10711
10712 /*
10713 * Set ALL the error bits to indicate we don't know what
10714 * type of error it is.
10715 */
10716 if (!pIocbIn->iocb.unsli3.sli3_bg.bgstat)
10717 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
10718 (BGS_REFTAG_ERR_MASK | BGS_APPTAG_ERR_MASK |
10719 BGS_GUARD_ERR_MASK);
10720 }
10721
James Smart341af102010-01-26 23:07:37 -050010722 /* Pick up HBA exchange busy condition */
10723 if (bf_get(lpfc_wcqe_c_xb, wcqe)) {
10724 spin_lock_irqsave(&phba->hbalock, iflags);
10725 pIocbIn->iocb_flag |= LPFC_EXCHANGE_BUSY;
10726 spin_unlock_irqrestore(&phba->hbalock, iflags);
10727 }
James Smart4f774512009-05-22 14:52:35 -040010728}
10729
10730/**
James Smart45ed1192009-10-02 15:17:02 -040010731 * lpfc_sli4_els_wcqe_to_rspiocbq - Get response iocbq from els wcqe
10732 * @phba: Pointer to HBA context object.
10733 * @wcqe: Pointer to work-queue completion queue entry.
10734 *
10735 * This routine handles an ELS work-queue completion event and construct
10736 * a pseudo response ELS IODBQ from the SLI4 ELS WCQE for the common
10737 * discovery engine to handle.
10738 *
10739 * Return: Pointer to the receive IOCBQ, NULL otherwise.
10740 **/
10741static struct lpfc_iocbq *
10742lpfc_sli4_els_wcqe_to_rspiocbq(struct lpfc_hba *phba,
10743 struct lpfc_iocbq *irspiocbq)
10744{
10745 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
10746 struct lpfc_iocbq *cmdiocbq;
10747 struct lpfc_wcqe_complete *wcqe;
10748 unsigned long iflags;
10749
10750 wcqe = &irspiocbq->cq_event.cqe.wcqe_cmpl;
10751 spin_lock_irqsave(&phba->hbalock, iflags);
10752 pring->stats.iocb_event++;
10753 /* Look up the ELS command IOCB and create pseudo response IOCB */
10754 cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
10755 bf_get(lpfc_wcqe_c_request_tag, wcqe));
10756 spin_unlock_irqrestore(&phba->hbalock, iflags);
10757
10758 if (unlikely(!cmdiocbq)) {
10759 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
10760 "0386 ELS complete with no corresponding "
10761 "cmdiocb: iotag (%d)\n",
10762 bf_get(lpfc_wcqe_c_request_tag, wcqe));
10763 lpfc_sli_release_iocbq(phba, irspiocbq);
10764 return NULL;
10765 }
10766
10767 /* Fake the irspiocbq and copy necessary response information */
James Smart341af102010-01-26 23:07:37 -050010768 lpfc_sli4_iocb_param_transfer(phba, irspiocbq, cmdiocbq, wcqe);
James Smart45ed1192009-10-02 15:17:02 -040010769
10770 return irspiocbq;
10771}
10772
10773/**
James Smart04c68492009-05-22 14:52:52 -040010774 * lpfc_sli4_sp_handle_async_event - Handle an asynchroous event
10775 * @phba: Pointer to HBA context object.
10776 * @cqe: Pointer to mailbox completion queue entry.
10777 *
10778 * This routine process a mailbox completion queue entry with asynchrous
10779 * event.
10780 *
10781 * Return: true if work posted to worker thread, otherwise false.
10782 **/
10783static bool
10784lpfc_sli4_sp_handle_async_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
10785{
10786 struct lpfc_cq_event *cq_event;
10787 unsigned long iflags;
10788
10789 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
10790 "0392 Async Event: word0:x%x, word1:x%x, "
10791 "word2:x%x, word3:x%x\n", mcqe->word0,
10792 mcqe->mcqe_tag0, mcqe->mcqe_tag1, mcqe->trailer);
10793
10794 /* Allocate a new internal CQ_EVENT entry */
10795 cq_event = lpfc_sli4_cq_event_alloc(phba);
10796 if (!cq_event) {
10797 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
10798 "0394 Failed to allocate CQ_EVENT entry\n");
10799 return false;
10800 }
10801
10802 /* Move the CQE into an asynchronous event entry */
10803 memcpy(&cq_event->cqe, mcqe, sizeof(struct lpfc_mcqe));
10804 spin_lock_irqsave(&phba->hbalock, iflags);
10805 list_add_tail(&cq_event->list, &phba->sli4_hba.sp_asynce_work_queue);
10806 /* Set the async event flag */
10807 phba->hba_flag |= ASYNC_EVENT;
10808 spin_unlock_irqrestore(&phba->hbalock, iflags);
10809
10810 return true;
10811}
10812
10813/**
10814 * lpfc_sli4_sp_handle_mbox_event - Handle a mailbox completion event
10815 * @phba: Pointer to HBA context object.
10816 * @cqe: Pointer to mailbox completion queue entry.
10817 *
10818 * This routine process a mailbox completion queue entry with mailbox
10819 * completion event.
10820 *
10821 * Return: true if work posted to worker thread, otherwise false.
10822 **/
10823static bool
10824lpfc_sli4_sp_handle_mbox_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
10825{
10826 uint32_t mcqe_status;
10827 MAILBOX_t *mbox, *pmbox;
10828 struct lpfc_mqe *mqe;
10829 struct lpfc_vport *vport;
10830 struct lpfc_nodelist *ndlp;
10831 struct lpfc_dmabuf *mp;
10832 unsigned long iflags;
10833 LPFC_MBOXQ_t *pmb;
10834 bool workposted = false;
10835 int rc;
10836
10837 /* If not a mailbox complete MCQE, out by checking mailbox consume */
10838 if (!bf_get(lpfc_trailer_completed, mcqe))
10839 goto out_no_mqe_complete;
10840
10841 /* Get the reference to the active mbox command */
10842 spin_lock_irqsave(&phba->hbalock, iflags);
10843 pmb = phba->sli.mbox_active;
10844 if (unlikely(!pmb)) {
10845 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
10846 "1832 No pending MBOX command to handle\n");
10847 spin_unlock_irqrestore(&phba->hbalock, iflags);
10848 goto out_no_mqe_complete;
10849 }
10850 spin_unlock_irqrestore(&phba->hbalock, iflags);
10851 mqe = &pmb->u.mqe;
10852 pmbox = (MAILBOX_t *)&pmb->u.mqe;
10853 mbox = phba->mbox;
10854 vport = pmb->vport;
10855
10856 /* Reset heartbeat timer */
10857 phba->last_completion_time = jiffies;
10858 del_timer(&phba->sli.mbox_tmo);
10859
10860 /* Move mbox data to caller's mailbox region, do endian swapping */
10861 if (pmb->mbox_cmpl && mbox)
10862 lpfc_sli_pcimem_bcopy(mbox, mqe, sizeof(struct lpfc_mqe));
James Smart04c68492009-05-22 14:52:52 -040010863
James Smart73d91e52011-10-10 21:32:10 -040010864 /*
10865 * For mcqe errors, conditionally move a modified error code to
10866 * the mbox so that the error will not be missed.
10867 */
10868 mcqe_status = bf_get(lpfc_mcqe_status, mcqe);
10869 if (mcqe_status != MB_CQE_STATUS_SUCCESS) {
10870 if (bf_get(lpfc_mqe_status, mqe) == MBX_SUCCESS)
10871 bf_set(lpfc_mqe_status, mqe,
10872 (LPFC_MBX_ERROR_RANGE | mcqe_status));
10873 }
James Smart04c68492009-05-22 14:52:52 -040010874 if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
10875 pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
10876 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_MBOX_VPORT,
10877 "MBOX dflt rpi: status:x%x rpi:x%x",
10878 mcqe_status,
10879 pmbox->un.varWords[0], 0);
10880 if (mcqe_status == MB_CQE_STATUS_SUCCESS) {
10881 mp = (struct lpfc_dmabuf *)(pmb->context1);
10882 ndlp = (struct lpfc_nodelist *)pmb->context2;
10883 /* Reg_LOGIN of dflt RPI was successful. Now lets get
10884 * RID of the PPI using the same mbox buffer.
10885 */
10886 lpfc_unreg_login(phba, vport->vpi,
10887 pmbox->un.varWords[0], pmb);
10888 pmb->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
10889 pmb->context1 = mp;
10890 pmb->context2 = ndlp;
10891 pmb->vport = vport;
10892 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
10893 if (rc != MBX_BUSY)
10894 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
10895 LOG_SLI, "0385 rc should "
10896 "have been MBX_BUSY\n");
10897 if (rc != MBX_NOT_FINISHED)
10898 goto send_current_mbox;
10899 }
10900 }
10901 spin_lock_irqsave(&phba->pport->work_port_lock, iflags);
10902 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
10903 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflags);
10904
10905 /* There is mailbox completion work to do */
10906 spin_lock_irqsave(&phba->hbalock, iflags);
10907 __lpfc_mbox_cmpl_put(phba, pmb);
10908 phba->work_ha |= HA_MBATT;
10909 spin_unlock_irqrestore(&phba->hbalock, iflags);
10910 workposted = true;
10911
10912send_current_mbox:
10913 spin_lock_irqsave(&phba->hbalock, iflags);
10914 /* Release the mailbox command posting token */
10915 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
10916 /* Setting active mailbox pointer need to be in sync to flag clear */
10917 phba->sli.mbox_active = NULL;
10918 spin_unlock_irqrestore(&phba->hbalock, iflags);
10919 /* Wake up worker thread to post the next pending mailbox command */
10920 lpfc_worker_wake_up(phba);
10921out_no_mqe_complete:
10922 if (bf_get(lpfc_trailer_consumed, mcqe))
10923 lpfc_sli4_mq_release(phba->sli4_hba.mbx_wq);
10924 return workposted;
10925}
10926
10927/**
10928 * lpfc_sli4_sp_handle_mcqe - Process a mailbox completion queue entry
10929 * @phba: Pointer to HBA context object.
10930 * @cqe: Pointer to mailbox completion queue entry.
10931 *
10932 * This routine process a mailbox completion queue entry, it invokes the
10933 * proper mailbox complete handling or asynchrous event handling routine
10934 * according to the MCQE's async bit.
10935 *
10936 * Return: true if work posted to worker thread, otherwise false.
10937 **/
10938static bool
10939lpfc_sli4_sp_handle_mcqe(struct lpfc_hba *phba, struct lpfc_cqe *cqe)
10940{
10941 struct lpfc_mcqe mcqe;
10942 bool workposted;
10943
10944 /* Copy the mailbox MCQE and convert endian order as needed */
10945 lpfc_sli_pcimem_bcopy(cqe, &mcqe, sizeof(struct lpfc_mcqe));
10946
10947 /* Invoke the proper event handling routine */
10948 if (!bf_get(lpfc_trailer_async, &mcqe))
10949 workposted = lpfc_sli4_sp_handle_mbox_event(phba, &mcqe);
10950 else
10951 workposted = lpfc_sli4_sp_handle_async_event(phba, &mcqe);
10952 return workposted;
10953}
10954
10955/**
James Smart4f774512009-05-22 14:52:35 -040010956 * lpfc_sli4_sp_handle_els_wcqe - Handle els work-queue completion event
10957 * @phba: Pointer to HBA context object.
10958 * @wcqe: Pointer to work-queue completion queue entry.
10959 *
10960 * This routine handles an ELS work-queue completion event.
10961 *
10962 * Return: true if work posted to worker thread, otherwise false.
10963 **/
10964static bool
10965lpfc_sli4_sp_handle_els_wcqe(struct lpfc_hba *phba,
10966 struct lpfc_wcqe_complete *wcqe)
10967{
James Smart4f774512009-05-22 14:52:35 -040010968 struct lpfc_iocbq *irspiocbq;
10969 unsigned long iflags;
James Smart2a9bf3d2010-06-07 15:24:45 -040010970 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_FCP_RING];
James Smart4f774512009-05-22 14:52:35 -040010971
James Smart45ed1192009-10-02 15:17:02 -040010972 /* Get an irspiocbq for later ELS response processing use */
James Smart4f774512009-05-22 14:52:35 -040010973 irspiocbq = lpfc_sli_get_iocbq(phba);
10974 if (!irspiocbq) {
10975 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart2a9bf3d2010-06-07 15:24:45 -040010976 "0387 NO IOCBQ data: txq_cnt=%d iocb_cnt=%d "
10977 "fcp_txcmplq_cnt=%d, els_txcmplq_cnt=%d\n",
10978 pring->txq_cnt, phba->iocb_cnt,
10979 phba->sli.ring[LPFC_FCP_RING].txcmplq_cnt,
10980 phba->sli.ring[LPFC_ELS_RING].txcmplq_cnt);
James Smart45ed1192009-10-02 15:17:02 -040010981 return false;
James Smart4f774512009-05-22 14:52:35 -040010982 }
James Smart4f774512009-05-22 14:52:35 -040010983
James Smart45ed1192009-10-02 15:17:02 -040010984 /* Save off the slow-path queue event for work thread to process */
10985 memcpy(&irspiocbq->cq_event.cqe.wcqe_cmpl, wcqe, sizeof(*wcqe));
James Smart4f774512009-05-22 14:52:35 -040010986 spin_lock_irqsave(&phba->hbalock, iflags);
James Smart4d9ab992009-10-02 15:16:39 -040010987 list_add_tail(&irspiocbq->cq_event.list,
James Smart45ed1192009-10-02 15:17:02 -040010988 &phba->sli4_hba.sp_queue_event);
10989 phba->hba_flag |= HBA_SP_QUEUE_EVT;
James Smart4f774512009-05-22 14:52:35 -040010990 spin_unlock_irqrestore(&phba->hbalock, iflags);
James Smart4f774512009-05-22 14:52:35 -040010991
James Smart45ed1192009-10-02 15:17:02 -040010992 return true;
James Smart4f774512009-05-22 14:52:35 -040010993}
10994
10995/**
10996 * lpfc_sli4_sp_handle_rel_wcqe - Handle slow-path WQ entry consumed event
10997 * @phba: Pointer to HBA context object.
10998 * @wcqe: Pointer to work-queue completion queue entry.
10999 *
11000 * This routine handles slow-path WQ entry comsumed event by invoking the
11001 * proper WQ release routine to the slow-path WQ.
11002 **/
11003static void
11004lpfc_sli4_sp_handle_rel_wcqe(struct lpfc_hba *phba,
11005 struct lpfc_wcqe_release *wcqe)
11006{
James Smart2e90f4b2011-12-13 13:22:37 -050011007 /* sanity check on queue memory */
11008 if (unlikely(!phba->sli4_hba.els_wq))
11009 return;
James Smart4f774512009-05-22 14:52:35 -040011010 /* Check for the slow-path ELS work queue */
11011 if (bf_get(lpfc_wcqe_r_wq_id, wcqe) == phba->sli4_hba.els_wq->queue_id)
11012 lpfc_sli4_wq_release(phba->sli4_hba.els_wq,
11013 bf_get(lpfc_wcqe_r_wqe_index, wcqe));
11014 else
11015 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11016 "2579 Slow-path wqe consume event carries "
11017 "miss-matched qid: wcqe-qid=x%x, sp-qid=x%x\n",
11018 bf_get(lpfc_wcqe_r_wqe_index, wcqe),
11019 phba->sli4_hba.els_wq->queue_id);
11020}
11021
11022/**
11023 * lpfc_sli4_sp_handle_abort_xri_wcqe - Handle a xri abort event
11024 * @phba: Pointer to HBA context object.
11025 * @cq: Pointer to a WQ completion queue.
11026 * @wcqe: Pointer to work-queue completion queue entry.
11027 *
11028 * This routine handles an XRI abort event.
11029 *
11030 * Return: true if work posted to worker thread, otherwise false.
11031 **/
11032static bool
11033lpfc_sli4_sp_handle_abort_xri_wcqe(struct lpfc_hba *phba,
11034 struct lpfc_queue *cq,
11035 struct sli4_wcqe_xri_aborted *wcqe)
11036{
11037 bool workposted = false;
11038 struct lpfc_cq_event *cq_event;
11039 unsigned long iflags;
11040
11041 /* Allocate a new internal CQ_EVENT entry */
11042 cq_event = lpfc_sli4_cq_event_alloc(phba);
11043 if (!cq_event) {
11044 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11045 "0602 Failed to allocate CQ_EVENT entry\n");
11046 return false;
11047 }
11048
11049 /* Move the CQE into the proper xri abort event list */
11050 memcpy(&cq_event->cqe, wcqe, sizeof(struct sli4_wcqe_xri_aborted));
11051 switch (cq->subtype) {
11052 case LPFC_FCP:
11053 spin_lock_irqsave(&phba->hbalock, iflags);
11054 list_add_tail(&cq_event->list,
11055 &phba->sli4_hba.sp_fcp_xri_aborted_work_queue);
11056 /* Set the fcp xri abort event flag */
11057 phba->hba_flag |= FCP_XRI_ABORT_EVENT;
11058 spin_unlock_irqrestore(&phba->hbalock, iflags);
11059 workposted = true;
11060 break;
11061 case LPFC_ELS:
11062 spin_lock_irqsave(&phba->hbalock, iflags);
11063 list_add_tail(&cq_event->list,
11064 &phba->sli4_hba.sp_els_xri_aborted_work_queue);
11065 /* Set the els xri abort event flag */
11066 phba->hba_flag |= ELS_XRI_ABORT_EVENT;
11067 spin_unlock_irqrestore(&phba->hbalock, iflags);
11068 workposted = true;
11069 break;
11070 default:
11071 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11072 "0603 Invalid work queue CQE subtype (x%x)\n",
11073 cq->subtype);
11074 workposted = false;
11075 break;
11076 }
11077 return workposted;
11078}
11079
11080/**
James Smart4d9ab992009-10-02 15:16:39 -040011081 * lpfc_sli4_sp_handle_rcqe - Process a receive-queue completion queue entry
James Smart4f774512009-05-22 14:52:35 -040011082 * @phba: Pointer to HBA context object.
James Smart4d9ab992009-10-02 15:16:39 -040011083 * @rcqe: Pointer to receive-queue completion queue entry.
James Smart4f774512009-05-22 14:52:35 -040011084 *
James Smart4d9ab992009-10-02 15:16:39 -040011085 * This routine process a receive-queue completion queue entry.
James Smart4f774512009-05-22 14:52:35 -040011086 *
11087 * Return: true if work posted to worker thread, otherwise false.
11088 **/
11089static bool
James Smart4d9ab992009-10-02 15:16:39 -040011090lpfc_sli4_sp_handle_rcqe(struct lpfc_hba *phba, struct lpfc_rcqe *rcqe)
11091{
11092 bool workposted = false;
11093 struct lpfc_queue *hrq = phba->sli4_hba.hdr_rq;
11094 struct lpfc_queue *drq = phba->sli4_hba.dat_rq;
11095 struct hbq_dmabuf *dma_buf;
James Smart7851fe22011-07-22 18:36:52 -040011096 uint32_t status, rq_id;
James Smart4d9ab992009-10-02 15:16:39 -040011097 unsigned long iflags;
11098
James Smart2e90f4b2011-12-13 13:22:37 -050011099 /* sanity check on queue memory */
11100 if (unlikely(!hrq) || unlikely(!drq))
11101 return workposted;
11102
James Smart7851fe22011-07-22 18:36:52 -040011103 if (bf_get(lpfc_cqe_code, rcqe) == CQE_CODE_RECEIVE_V1)
11104 rq_id = bf_get(lpfc_rcqe_rq_id_v1, rcqe);
11105 else
11106 rq_id = bf_get(lpfc_rcqe_rq_id, rcqe);
11107 if (rq_id != hrq->queue_id)
James Smart4d9ab992009-10-02 15:16:39 -040011108 goto out;
11109
11110 status = bf_get(lpfc_rcqe_status, rcqe);
11111 switch (status) {
11112 case FC_STATUS_RQ_BUF_LEN_EXCEEDED:
11113 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11114 "2537 Receive Frame Truncated!!\n");
11115 case FC_STATUS_RQ_SUCCESS:
James Smart5ffc2662009-11-18 15:39:44 -050011116 lpfc_sli4_rq_release(hrq, drq);
James Smart4d9ab992009-10-02 15:16:39 -040011117 spin_lock_irqsave(&phba->hbalock, iflags);
11118 dma_buf = lpfc_sli_hbqbuf_get(&phba->hbqs[0].hbq_buffer_list);
11119 if (!dma_buf) {
11120 spin_unlock_irqrestore(&phba->hbalock, iflags);
11121 goto out;
11122 }
11123 memcpy(&dma_buf->cq_event.cqe.rcqe_cmpl, rcqe, sizeof(*rcqe));
11124 /* save off the frame for the word thread to process */
11125 list_add_tail(&dma_buf->cq_event.list,
James Smart45ed1192009-10-02 15:17:02 -040011126 &phba->sli4_hba.sp_queue_event);
James Smart4d9ab992009-10-02 15:16:39 -040011127 /* Frame received */
James Smart45ed1192009-10-02 15:17:02 -040011128 phba->hba_flag |= HBA_SP_QUEUE_EVT;
James Smart4d9ab992009-10-02 15:16:39 -040011129 spin_unlock_irqrestore(&phba->hbalock, iflags);
11130 workposted = true;
11131 break;
11132 case FC_STATUS_INSUFF_BUF_NEED_BUF:
11133 case FC_STATUS_INSUFF_BUF_FRM_DISC:
11134 /* Post more buffers if possible */
11135 spin_lock_irqsave(&phba->hbalock, iflags);
11136 phba->hba_flag |= HBA_POST_RECEIVE_BUFFER;
11137 spin_unlock_irqrestore(&phba->hbalock, iflags);
11138 workposted = true;
11139 break;
11140 }
11141out:
11142 return workposted;
James Smart4d9ab992009-10-02 15:16:39 -040011143}
11144
11145/**
11146 * lpfc_sli4_sp_handle_cqe - Process a slow path completion queue entry
11147 * @phba: Pointer to HBA context object.
11148 * @cq: Pointer to the completion queue.
11149 * @wcqe: Pointer to a completion queue entry.
11150 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030011151 * This routine process a slow-path work-queue or receive queue completion queue
James Smart4d9ab992009-10-02 15:16:39 -040011152 * entry.
11153 *
11154 * Return: true if work posted to worker thread, otherwise false.
11155 **/
11156static bool
11157lpfc_sli4_sp_handle_cqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
James Smart4f774512009-05-22 14:52:35 -040011158 struct lpfc_cqe *cqe)
11159{
James Smart45ed1192009-10-02 15:17:02 -040011160 struct lpfc_cqe cqevt;
James Smart4f774512009-05-22 14:52:35 -040011161 bool workposted = false;
11162
11163 /* Copy the work queue CQE and convert endian order if needed */
James Smart45ed1192009-10-02 15:17:02 -040011164 lpfc_sli_pcimem_bcopy(cqe, &cqevt, sizeof(struct lpfc_cqe));
James Smart4f774512009-05-22 14:52:35 -040011165
11166 /* Check and process for different type of WCQE and dispatch */
James Smart45ed1192009-10-02 15:17:02 -040011167 switch (bf_get(lpfc_cqe_code, &cqevt)) {
James Smart4f774512009-05-22 14:52:35 -040011168 case CQE_CODE_COMPL_WQE:
James Smart45ed1192009-10-02 15:17:02 -040011169 /* Process the WQ/RQ complete event */
James Smartbc739052010-08-04 16:11:18 -040011170 phba->last_completion_time = jiffies;
James Smart4f774512009-05-22 14:52:35 -040011171 workposted = lpfc_sli4_sp_handle_els_wcqe(phba,
James Smart45ed1192009-10-02 15:17:02 -040011172 (struct lpfc_wcqe_complete *)&cqevt);
James Smart4f774512009-05-22 14:52:35 -040011173 break;
11174 case CQE_CODE_RELEASE_WQE:
11175 /* Process the WQ release event */
11176 lpfc_sli4_sp_handle_rel_wcqe(phba,
James Smart45ed1192009-10-02 15:17:02 -040011177 (struct lpfc_wcqe_release *)&cqevt);
James Smart4f774512009-05-22 14:52:35 -040011178 break;
11179 case CQE_CODE_XRI_ABORTED:
11180 /* Process the WQ XRI abort event */
James Smartbc739052010-08-04 16:11:18 -040011181 phba->last_completion_time = jiffies;
James Smart4f774512009-05-22 14:52:35 -040011182 workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
James Smart45ed1192009-10-02 15:17:02 -040011183 (struct sli4_wcqe_xri_aborted *)&cqevt);
James Smart4f774512009-05-22 14:52:35 -040011184 break;
James Smart4d9ab992009-10-02 15:16:39 -040011185 case CQE_CODE_RECEIVE:
James Smart7851fe22011-07-22 18:36:52 -040011186 case CQE_CODE_RECEIVE_V1:
James Smart4d9ab992009-10-02 15:16:39 -040011187 /* Process the RQ event */
James Smartbc739052010-08-04 16:11:18 -040011188 phba->last_completion_time = jiffies;
James Smart4d9ab992009-10-02 15:16:39 -040011189 workposted = lpfc_sli4_sp_handle_rcqe(phba,
James Smart45ed1192009-10-02 15:17:02 -040011190 (struct lpfc_rcqe *)&cqevt);
James Smart4d9ab992009-10-02 15:16:39 -040011191 break;
James Smart4f774512009-05-22 14:52:35 -040011192 default:
11193 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11194 "0388 Not a valid WCQE code: x%x\n",
James Smart45ed1192009-10-02 15:17:02 -040011195 bf_get(lpfc_cqe_code, &cqevt));
James Smart4f774512009-05-22 14:52:35 -040011196 break;
11197 }
11198 return workposted;
11199}
11200
11201/**
James Smart4f774512009-05-22 14:52:35 -040011202 * lpfc_sli4_sp_handle_eqe - Process a slow-path event queue entry
11203 * @phba: Pointer to HBA context object.
11204 * @eqe: Pointer to fast-path event queue entry.
11205 *
11206 * This routine process a event queue entry from the slow-path event queue.
11207 * It will check the MajorCode and MinorCode to determine this is for a
11208 * completion event on a completion queue, if not, an error shall be logged
11209 * and just return. Otherwise, it will get to the corresponding completion
11210 * queue and process all the entries on that completion queue, rearm the
11211 * completion queue, and then return.
11212 *
11213 **/
11214static void
11215lpfc_sli4_sp_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe)
11216{
11217 struct lpfc_queue *cq = NULL, *childq, *speq;
11218 struct lpfc_cqe *cqe;
11219 bool workposted = false;
11220 int ecount = 0;
11221 uint16_t cqid;
11222
James Smartcb5172e2010-03-15 11:25:07 -040011223 if (bf_get_le32(lpfc_eqe_major_code, eqe) != 0) {
James Smart4f774512009-05-22 14:52:35 -040011224 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11225 "0359 Not a valid slow-path completion "
11226 "event: majorcode=x%x, minorcode=x%x\n",
James Smartcb5172e2010-03-15 11:25:07 -040011227 bf_get_le32(lpfc_eqe_major_code, eqe),
11228 bf_get_le32(lpfc_eqe_minor_code, eqe));
James Smart4f774512009-05-22 14:52:35 -040011229 return;
11230 }
11231
11232 /* Get the reference to the corresponding CQ */
James Smartcb5172e2010-03-15 11:25:07 -040011233 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
James Smart4f774512009-05-22 14:52:35 -040011234
11235 /* Search for completion queue pointer matching this cqid */
11236 speq = phba->sli4_hba.sp_eq;
James Smart2e90f4b2011-12-13 13:22:37 -050011237 /* sanity check on queue memory */
11238 if (unlikely(!speq))
11239 return;
James Smart4f774512009-05-22 14:52:35 -040011240 list_for_each_entry(childq, &speq->child_list, list) {
11241 if (childq->queue_id == cqid) {
11242 cq = childq;
11243 break;
11244 }
11245 }
11246 if (unlikely(!cq)) {
James Smart75baf692010-06-08 18:31:21 -040011247 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
11248 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11249 "0365 Slow-path CQ identifier "
11250 "(%d) does not exist\n", cqid);
James Smart4f774512009-05-22 14:52:35 -040011251 return;
11252 }
11253
11254 /* Process all the entries to the CQ */
11255 switch (cq->type) {
11256 case LPFC_MCQ:
11257 while ((cqe = lpfc_sli4_cq_get(cq))) {
11258 workposted |= lpfc_sli4_sp_handle_mcqe(phba, cqe);
James Smart73d91e52011-10-10 21:32:10 -040011259 if (!(++ecount % cq->entry_repost))
James Smart4f774512009-05-22 14:52:35 -040011260 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
11261 }
11262 break;
11263 case LPFC_WCQ:
11264 while ((cqe = lpfc_sli4_cq_get(cq))) {
James Smart05580562011-05-24 11:40:48 -040011265 if (cq->subtype == LPFC_FCP)
11266 workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq,
11267 cqe);
11268 else
11269 workposted |= lpfc_sli4_sp_handle_cqe(phba, cq,
11270 cqe);
James Smart73d91e52011-10-10 21:32:10 -040011271 if (!(++ecount % cq->entry_repost))
James Smart4f774512009-05-22 14:52:35 -040011272 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
11273 }
11274 break;
11275 default:
11276 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11277 "0370 Invalid completion queue type (%d)\n",
11278 cq->type);
11279 return;
11280 }
11281
11282 /* Catch the no cq entry condition, log an error */
11283 if (unlikely(ecount == 0))
11284 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11285 "0371 No entry from the CQ: identifier "
11286 "(x%x), type (%d)\n", cq->queue_id, cq->type);
11287
11288 /* In any case, flash and re-arm the RCQ */
11289 lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
11290
11291 /* wake up worker thread if there are works to be done */
11292 if (workposted)
11293 lpfc_worker_wake_up(phba);
11294}
11295
11296/**
11297 * lpfc_sli4_fp_handle_fcp_wcqe - Process fast-path work queue completion entry
11298 * @eqe: Pointer to fast-path completion queue entry.
11299 *
11300 * This routine process a fast-path work queue completion entry from fast-path
11301 * event queue for FCP command response completion.
11302 **/
11303static void
11304lpfc_sli4_fp_handle_fcp_wcqe(struct lpfc_hba *phba,
11305 struct lpfc_wcqe_complete *wcqe)
11306{
11307 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_FCP_RING];
11308 struct lpfc_iocbq *cmdiocbq;
11309 struct lpfc_iocbq irspiocbq;
11310 unsigned long iflags;
11311
11312 spin_lock_irqsave(&phba->hbalock, iflags);
11313 pring->stats.iocb_event++;
11314 spin_unlock_irqrestore(&phba->hbalock, iflags);
11315
11316 /* Check for response status */
11317 if (unlikely(bf_get(lpfc_wcqe_c_status, wcqe))) {
11318 /* If resource errors reported from HBA, reduce queue
11319 * depth of the SCSI device.
11320 */
11321 if ((bf_get(lpfc_wcqe_c_status, wcqe) ==
11322 IOSTAT_LOCAL_REJECT) &&
11323 (wcqe->parameter == IOERR_NO_RESOURCES)) {
11324 phba->lpfc_rampdown_queue_depth(phba);
11325 }
11326 /* Log the error status */
11327 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11328 "0373 FCP complete error: status=x%x, "
11329 "hw_status=x%x, total_data_specified=%d, "
11330 "parameter=x%x, word3=x%x\n",
11331 bf_get(lpfc_wcqe_c_status, wcqe),
11332 bf_get(lpfc_wcqe_c_hw_status, wcqe),
11333 wcqe->total_data_placed, wcqe->parameter,
11334 wcqe->word3);
11335 }
11336
11337 /* Look up the FCP command IOCB and create pseudo response IOCB */
11338 spin_lock_irqsave(&phba->hbalock, iflags);
11339 cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
11340 bf_get(lpfc_wcqe_c_request_tag, wcqe));
11341 spin_unlock_irqrestore(&phba->hbalock, iflags);
11342 if (unlikely(!cmdiocbq)) {
11343 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11344 "0374 FCP complete with no corresponding "
11345 "cmdiocb: iotag (%d)\n",
11346 bf_get(lpfc_wcqe_c_request_tag, wcqe));
11347 return;
11348 }
11349 if (unlikely(!cmdiocbq->iocb_cmpl)) {
11350 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11351 "0375 FCP cmdiocb not callback function "
11352 "iotag: (%d)\n",
11353 bf_get(lpfc_wcqe_c_request_tag, wcqe));
11354 return;
11355 }
11356
11357 /* Fake the irspiocb and copy necessary response information */
James Smart341af102010-01-26 23:07:37 -050011358 lpfc_sli4_iocb_param_transfer(phba, &irspiocbq, cmdiocbq, wcqe);
James Smart4f774512009-05-22 14:52:35 -040011359
James Smart0f65ff62010-02-26 14:14:23 -050011360 if (cmdiocbq->iocb_flag & LPFC_DRIVER_ABORTED) {
11361 spin_lock_irqsave(&phba->hbalock, iflags);
11362 cmdiocbq->iocb_flag &= ~LPFC_DRIVER_ABORTED;
11363 spin_unlock_irqrestore(&phba->hbalock, iflags);
11364 }
11365
James Smart4f774512009-05-22 14:52:35 -040011366 /* Pass the cmd_iocb and the rsp state to the upper layer */
11367 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq, &irspiocbq);
11368}
11369
11370/**
11371 * lpfc_sli4_fp_handle_rel_wcqe - Handle fast-path WQ entry consumed event
11372 * @phba: Pointer to HBA context object.
11373 * @cq: Pointer to completion queue.
11374 * @wcqe: Pointer to work-queue completion queue entry.
11375 *
11376 * This routine handles an fast-path WQ entry comsumed event by invoking the
11377 * proper WQ release routine to the slow-path WQ.
11378 **/
11379static void
11380lpfc_sli4_fp_handle_rel_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
11381 struct lpfc_wcqe_release *wcqe)
11382{
11383 struct lpfc_queue *childwq;
11384 bool wqid_matched = false;
11385 uint16_t fcp_wqid;
11386
11387 /* Check for fast-path FCP work queue release */
11388 fcp_wqid = bf_get(lpfc_wcqe_r_wq_id, wcqe);
11389 list_for_each_entry(childwq, &cq->child_list, list) {
11390 if (childwq->queue_id == fcp_wqid) {
11391 lpfc_sli4_wq_release(childwq,
11392 bf_get(lpfc_wcqe_r_wqe_index, wcqe));
11393 wqid_matched = true;
11394 break;
11395 }
11396 }
11397 /* Report warning log message if no match found */
11398 if (wqid_matched != true)
11399 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11400 "2580 Fast-path wqe consume event carries "
11401 "miss-matched qid: wcqe-qid=x%x\n", fcp_wqid);
11402}
11403
11404/**
11405 * lpfc_sli4_fp_handle_wcqe - Process fast-path work queue completion entry
11406 * @cq: Pointer to the completion queue.
11407 * @eqe: Pointer to fast-path completion queue entry.
11408 *
11409 * This routine process a fast-path work queue completion entry from fast-path
11410 * event queue for FCP command response completion.
11411 **/
11412static int
11413lpfc_sli4_fp_handle_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
11414 struct lpfc_cqe *cqe)
11415{
11416 struct lpfc_wcqe_release wcqe;
11417 bool workposted = false;
11418
11419 /* Copy the work queue CQE and convert endian order if needed */
11420 lpfc_sli_pcimem_bcopy(cqe, &wcqe, sizeof(struct lpfc_cqe));
11421
11422 /* Check and process for different type of WCQE and dispatch */
11423 switch (bf_get(lpfc_wcqe_c_code, &wcqe)) {
11424 case CQE_CODE_COMPL_WQE:
11425 /* Process the WQ complete event */
James Smart98fc5dd2010-06-07 15:24:29 -040011426 phba->last_completion_time = jiffies;
James Smart4f774512009-05-22 14:52:35 -040011427 lpfc_sli4_fp_handle_fcp_wcqe(phba,
11428 (struct lpfc_wcqe_complete *)&wcqe);
11429 break;
11430 case CQE_CODE_RELEASE_WQE:
11431 /* Process the WQ release event */
11432 lpfc_sli4_fp_handle_rel_wcqe(phba, cq,
11433 (struct lpfc_wcqe_release *)&wcqe);
11434 break;
11435 case CQE_CODE_XRI_ABORTED:
11436 /* Process the WQ XRI abort event */
James Smartbc739052010-08-04 16:11:18 -040011437 phba->last_completion_time = jiffies;
James Smart4f774512009-05-22 14:52:35 -040011438 workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
11439 (struct sli4_wcqe_xri_aborted *)&wcqe);
11440 break;
11441 default:
11442 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11443 "0144 Not a valid WCQE code: x%x\n",
11444 bf_get(lpfc_wcqe_c_code, &wcqe));
11445 break;
11446 }
11447 return workposted;
11448}
11449
11450/**
11451 * lpfc_sli4_fp_handle_eqe - Process a fast-path event queue entry
11452 * @phba: Pointer to HBA context object.
11453 * @eqe: Pointer to fast-path event queue entry.
11454 *
11455 * This routine process a event queue entry from the fast-path event queue.
11456 * It will check the MajorCode and MinorCode to determine this is for a
11457 * completion event on a completion queue, if not, an error shall be logged
11458 * and just return. Otherwise, it will get to the corresponding completion
11459 * queue and process all the entries on the completion queue, rearm the
11460 * completion queue, and then return.
11461 **/
11462static void
11463lpfc_sli4_fp_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe,
11464 uint32_t fcp_cqidx)
11465{
11466 struct lpfc_queue *cq;
11467 struct lpfc_cqe *cqe;
11468 bool workposted = false;
11469 uint16_t cqid;
11470 int ecount = 0;
11471
James Smartcb5172e2010-03-15 11:25:07 -040011472 if (unlikely(bf_get_le32(lpfc_eqe_major_code, eqe) != 0)) {
James Smart4f774512009-05-22 14:52:35 -040011473 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11474 "0366 Not a valid fast-path completion "
11475 "event: majorcode=x%x, minorcode=x%x\n",
James Smartcb5172e2010-03-15 11:25:07 -040011476 bf_get_le32(lpfc_eqe_major_code, eqe),
11477 bf_get_le32(lpfc_eqe_minor_code, eqe));
James Smart4f774512009-05-22 14:52:35 -040011478 return;
11479 }
11480
James Smart2e90f4b2011-12-13 13:22:37 -050011481 if (unlikely(!phba->sli4_hba.fcp_cq)) {
11482 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11483 "3146 Fast-path completion queues "
11484 "does not exist\n");
11485 return;
11486 }
James Smart4f774512009-05-22 14:52:35 -040011487 cq = phba->sli4_hba.fcp_cq[fcp_cqidx];
11488 if (unlikely(!cq)) {
James Smart75baf692010-06-08 18:31:21 -040011489 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
11490 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11491 "0367 Fast-path completion queue "
James Smart2e90f4b2011-12-13 13:22:37 -050011492 "(%d) does not exist\n", fcp_cqidx);
James Smart4f774512009-05-22 14:52:35 -040011493 return;
11494 }
11495
11496 /* Get the reference to the corresponding CQ */
James Smartcb5172e2010-03-15 11:25:07 -040011497 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
James Smart4f774512009-05-22 14:52:35 -040011498 if (unlikely(cqid != cq->queue_id)) {
11499 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11500 "0368 Miss-matched fast-path completion "
11501 "queue identifier: eqcqid=%d, fcpcqid=%d\n",
11502 cqid, cq->queue_id);
11503 return;
11504 }
11505
11506 /* Process all the entries to the CQ */
11507 while ((cqe = lpfc_sli4_cq_get(cq))) {
11508 workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq, cqe);
James Smart73d91e52011-10-10 21:32:10 -040011509 if (!(++ecount % cq->entry_repost))
James Smart4f774512009-05-22 14:52:35 -040011510 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
11511 }
11512
11513 /* Catch the no cq entry condition */
11514 if (unlikely(ecount == 0))
11515 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11516 "0369 No entry from fast-path completion "
11517 "queue fcpcqid=%d\n", cq->queue_id);
11518
11519 /* In any case, flash and re-arm the CQ */
11520 lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
11521
11522 /* wake up worker thread if there are works to be done */
11523 if (workposted)
11524 lpfc_worker_wake_up(phba);
11525}
11526
11527static void
11528lpfc_sli4_eq_flush(struct lpfc_hba *phba, struct lpfc_queue *eq)
11529{
11530 struct lpfc_eqe *eqe;
11531
11532 /* walk all the EQ entries and drop on the floor */
11533 while ((eqe = lpfc_sli4_eq_get(eq)))
11534 ;
11535
11536 /* Clear and re-arm the EQ */
11537 lpfc_sli4_eq_release(eq, LPFC_QUEUE_REARM);
11538}
11539
11540/**
11541 * lpfc_sli4_sp_intr_handler - Slow-path interrupt handler to SLI-4 device
11542 * @irq: Interrupt number.
11543 * @dev_id: The device context pointer.
11544 *
11545 * This function is directly called from the PCI layer as an interrupt
11546 * service routine when device with SLI-4 interface spec is enabled with
11547 * MSI-X multi-message interrupt mode and there are slow-path events in
11548 * the HBA. However, when the device is enabled with either MSI or Pin-IRQ
11549 * interrupt mode, this function is called as part of the device-level
11550 * interrupt handler. When the PCI slot is in error recovery or the HBA is
11551 * undergoing initialization, the interrupt handler will not process the
11552 * interrupt. The link attention and ELS ring attention events are handled
11553 * by the worker thread. The interrupt handler signals the worker thread
11554 * and returns for these events. This function is called without any lock
11555 * held. It gets the hbalock to access and update SLI data structures.
11556 *
11557 * This function returns IRQ_HANDLED when interrupt is handled else it
11558 * returns IRQ_NONE.
11559 **/
11560irqreturn_t
11561lpfc_sli4_sp_intr_handler(int irq, void *dev_id)
11562{
11563 struct lpfc_hba *phba;
11564 struct lpfc_queue *speq;
11565 struct lpfc_eqe *eqe;
11566 unsigned long iflag;
11567 int ecount = 0;
11568
11569 /*
11570 * Get the driver's phba structure from the dev_id
11571 */
11572 phba = (struct lpfc_hba *)dev_id;
11573
11574 if (unlikely(!phba))
11575 return IRQ_NONE;
11576
11577 /* Get to the EQ struct associated with this vector */
11578 speq = phba->sli4_hba.sp_eq;
James Smart5350d872011-10-10 21:33:49 -040011579 if (unlikely(!speq))
11580 return IRQ_NONE;
James Smart4f774512009-05-22 14:52:35 -040011581
11582 /* Check device state for handling interrupt */
11583 if (unlikely(lpfc_intr_state_check(phba))) {
11584 /* Check again for link_state with lock held */
11585 spin_lock_irqsave(&phba->hbalock, iflag);
11586 if (phba->link_state < LPFC_LINK_DOWN)
11587 /* Flush, clear interrupt, and rearm the EQ */
11588 lpfc_sli4_eq_flush(phba, speq);
11589 spin_unlock_irqrestore(&phba->hbalock, iflag);
11590 return IRQ_NONE;
11591 }
11592
11593 /*
11594 * Process all the event on FCP slow-path EQ
11595 */
11596 while ((eqe = lpfc_sli4_eq_get(speq))) {
11597 lpfc_sli4_sp_handle_eqe(phba, eqe);
James Smart73d91e52011-10-10 21:32:10 -040011598 if (!(++ecount % speq->entry_repost))
James Smart4f774512009-05-22 14:52:35 -040011599 lpfc_sli4_eq_release(speq, LPFC_QUEUE_NOARM);
11600 }
11601
11602 /* Always clear and re-arm the slow-path EQ */
11603 lpfc_sli4_eq_release(speq, LPFC_QUEUE_REARM);
11604
11605 /* Catch the no cq entry condition */
11606 if (unlikely(ecount == 0)) {
11607 if (phba->intr_type == MSIX)
11608 /* MSI-X treated interrupt served as no EQ share INT */
11609 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11610 "0357 MSI-X interrupt with no EQE\n");
11611 else
11612 /* Non MSI-X treated on interrupt as EQ share INT */
11613 return IRQ_NONE;
11614 }
11615
11616 return IRQ_HANDLED;
11617} /* lpfc_sli4_sp_intr_handler */
11618
11619/**
11620 * lpfc_sli4_fp_intr_handler - Fast-path interrupt handler to SLI-4 device
11621 * @irq: Interrupt number.
11622 * @dev_id: The device context pointer.
11623 *
11624 * This function is directly called from the PCI layer as an interrupt
11625 * service routine when device with SLI-4 interface spec is enabled with
11626 * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
11627 * ring event in the HBA. However, when the device is enabled with either
11628 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
11629 * device-level interrupt handler. When the PCI slot is in error recovery
11630 * or the HBA is undergoing initialization, the interrupt handler will not
11631 * process the interrupt. The SCSI FCP fast-path ring event are handled in
11632 * the intrrupt context. This function is called without any lock held.
11633 * It gets the hbalock to access and update SLI data structures. Note that,
11634 * the FCP EQ to FCP CQ are one-to-one map such that the FCP EQ index is
11635 * equal to that of FCP CQ index.
11636 *
11637 * This function returns IRQ_HANDLED when interrupt is handled else it
11638 * returns IRQ_NONE.
11639 **/
11640irqreturn_t
11641lpfc_sli4_fp_intr_handler(int irq, void *dev_id)
11642{
11643 struct lpfc_hba *phba;
11644 struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
11645 struct lpfc_queue *fpeq;
11646 struct lpfc_eqe *eqe;
11647 unsigned long iflag;
11648 int ecount = 0;
11649 uint32_t fcp_eqidx;
11650
11651 /* Get the driver's phba structure from the dev_id */
11652 fcp_eq_hdl = (struct lpfc_fcp_eq_hdl *)dev_id;
11653 phba = fcp_eq_hdl->phba;
11654 fcp_eqidx = fcp_eq_hdl->idx;
11655
11656 if (unlikely(!phba))
11657 return IRQ_NONE;
James Smart5350d872011-10-10 21:33:49 -040011658 if (unlikely(!phba->sli4_hba.fp_eq))
11659 return IRQ_NONE;
James Smart4f774512009-05-22 14:52:35 -040011660
11661 /* Get to the EQ struct associated with this vector */
11662 fpeq = phba->sli4_hba.fp_eq[fcp_eqidx];
James Smart2e90f4b2011-12-13 13:22:37 -050011663 if (unlikely(!fpeq))
11664 return IRQ_NONE;
James Smart4f774512009-05-22 14:52:35 -040011665
11666 /* Check device state for handling interrupt */
11667 if (unlikely(lpfc_intr_state_check(phba))) {
11668 /* Check again for link_state with lock held */
11669 spin_lock_irqsave(&phba->hbalock, iflag);
11670 if (phba->link_state < LPFC_LINK_DOWN)
11671 /* Flush, clear interrupt, and rearm the EQ */
11672 lpfc_sli4_eq_flush(phba, fpeq);
11673 spin_unlock_irqrestore(&phba->hbalock, iflag);
11674 return IRQ_NONE;
11675 }
11676
11677 /*
11678 * Process all the event on FCP fast-path EQ
11679 */
11680 while ((eqe = lpfc_sli4_eq_get(fpeq))) {
11681 lpfc_sli4_fp_handle_eqe(phba, eqe, fcp_eqidx);
James Smart73d91e52011-10-10 21:32:10 -040011682 if (!(++ecount % fpeq->entry_repost))
James Smart4f774512009-05-22 14:52:35 -040011683 lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_NOARM);
11684 }
11685
11686 /* Always clear and re-arm the fast-path EQ */
11687 lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_REARM);
11688
11689 if (unlikely(ecount == 0)) {
11690 if (phba->intr_type == MSIX)
11691 /* MSI-X treated interrupt served as no EQ share INT */
11692 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11693 "0358 MSI-X interrupt with no EQE\n");
11694 else
11695 /* Non MSI-X treated on interrupt as EQ share INT */
11696 return IRQ_NONE;
11697 }
11698
11699 return IRQ_HANDLED;
11700} /* lpfc_sli4_fp_intr_handler */
11701
11702/**
11703 * lpfc_sli4_intr_handler - Device-level interrupt handler for SLI-4 device
11704 * @irq: Interrupt number.
11705 * @dev_id: The device context pointer.
11706 *
11707 * This function is the device-level interrupt handler to device with SLI-4
11708 * interface spec, called from the PCI layer when either MSI or Pin-IRQ
11709 * interrupt mode is enabled and there is an event in the HBA which requires
11710 * driver attention. This function invokes the slow-path interrupt attention
11711 * handling function and fast-path interrupt attention handling function in
11712 * turn to process the relevant HBA attention events. This function is called
11713 * without any lock held. It gets the hbalock to access and update SLI data
11714 * structures.
11715 *
11716 * This function returns IRQ_HANDLED when interrupt is handled, else it
11717 * returns IRQ_NONE.
11718 **/
11719irqreturn_t
11720lpfc_sli4_intr_handler(int irq, void *dev_id)
11721{
11722 struct lpfc_hba *phba;
11723 irqreturn_t sp_irq_rc, fp_irq_rc;
11724 bool fp_handled = false;
11725 uint32_t fcp_eqidx;
11726
11727 /* Get the driver's phba structure from the dev_id */
11728 phba = (struct lpfc_hba *)dev_id;
11729
11730 if (unlikely(!phba))
11731 return IRQ_NONE;
11732
11733 /*
11734 * Invokes slow-path host attention interrupt handling as appropriate.
11735 */
11736 sp_irq_rc = lpfc_sli4_sp_intr_handler(irq, dev_id);
11737
11738 /*
11739 * Invoke fast-path host attention interrupt handling as appropriate.
11740 */
11741 for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_eq_count; fcp_eqidx++) {
11742 fp_irq_rc = lpfc_sli4_fp_intr_handler(irq,
11743 &phba->sli4_hba.fcp_eq_hdl[fcp_eqidx]);
11744 if (fp_irq_rc == IRQ_HANDLED)
11745 fp_handled |= true;
11746 }
11747
11748 return (fp_handled == true) ? IRQ_HANDLED : sp_irq_rc;
11749} /* lpfc_sli4_intr_handler */
11750
11751/**
11752 * lpfc_sli4_queue_free - free a queue structure and associated memory
11753 * @queue: The queue structure to free.
11754 *
Uwe Kleine-Königb5950762010-11-01 15:38:34 -040011755 * This function frees a queue structure and the DMAable memory used for
James Smart4f774512009-05-22 14:52:35 -040011756 * the host resident queue. This function must be called after destroying the
11757 * queue on the HBA.
11758 **/
11759void
11760lpfc_sli4_queue_free(struct lpfc_queue *queue)
11761{
11762 struct lpfc_dmabuf *dmabuf;
11763
11764 if (!queue)
11765 return;
11766
11767 while (!list_empty(&queue->page_list)) {
11768 list_remove_head(&queue->page_list, dmabuf, struct lpfc_dmabuf,
11769 list);
James Smart49198b32010-04-06 15:04:33 -040011770 dma_free_coherent(&queue->phba->pcidev->dev, SLI4_PAGE_SIZE,
James Smart4f774512009-05-22 14:52:35 -040011771 dmabuf->virt, dmabuf->phys);
11772 kfree(dmabuf);
11773 }
11774 kfree(queue);
11775 return;
11776}
11777
11778/**
11779 * lpfc_sli4_queue_alloc - Allocate and initialize a queue structure
11780 * @phba: The HBA that this queue is being created on.
11781 * @entry_size: The size of each queue entry for this queue.
11782 * @entry count: The number of entries that this queue will handle.
11783 *
11784 * This function allocates a queue structure and the DMAable memory used for
11785 * the host resident queue. This function must be called before creating the
11786 * queue on the HBA.
11787 **/
11788struct lpfc_queue *
11789lpfc_sli4_queue_alloc(struct lpfc_hba *phba, uint32_t entry_size,
11790 uint32_t entry_count)
11791{
11792 struct lpfc_queue *queue;
11793 struct lpfc_dmabuf *dmabuf;
11794 int x, total_qe_count;
11795 void *dma_pointer;
James Smartcb5172e2010-03-15 11:25:07 -040011796 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
James Smart4f774512009-05-22 14:52:35 -040011797
James Smartcb5172e2010-03-15 11:25:07 -040011798 if (!phba->sli4_hba.pc_sli4_params.supported)
11799 hw_page_size = SLI4_PAGE_SIZE;
11800
James Smart4f774512009-05-22 14:52:35 -040011801 queue = kzalloc(sizeof(struct lpfc_queue) +
11802 (sizeof(union sli4_qe) * entry_count), GFP_KERNEL);
11803 if (!queue)
11804 return NULL;
James Smartcb5172e2010-03-15 11:25:07 -040011805 queue->page_count = (ALIGN(entry_size * entry_count,
11806 hw_page_size))/hw_page_size;
James Smart4f774512009-05-22 14:52:35 -040011807 INIT_LIST_HEAD(&queue->list);
11808 INIT_LIST_HEAD(&queue->page_list);
11809 INIT_LIST_HEAD(&queue->child_list);
11810 for (x = 0, total_qe_count = 0; x < queue->page_count; x++) {
11811 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
11812 if (!dmabuf)
11813 goto out_fail;
11814 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
James Smartcb5172e2010-03-15 11:25:07 -040011815 hw_page_size, &dmabuf->phys,
James Smart4f774512009-05-22 14:52:35 -040011816 GFP_KERNEL);
11817 if (!dmabuf->virt) {
11818 kfree(dmabuf);
11819 goto out_fail;
11820 }
James Smartcb5172e2010-03-15 11:25:07 -040011821 memset(dmabuf->virt, 0, hw_page_size);
James Smart4f774512009-05-22 14:52:35 -040011822 dmabuf->buffer_tag = x;
11823 list_add_tail(&dmabuf->list, &queue->page_list);
11824 /* initialize queue's entry array */
11825 dma_pointer = dmabuf->virt;
11826 for (; total_qe_count < entry_count &&
James Smartcb5172e2010-03-15 11:25:07 -040011827 dma_pointer < (hw_page_size + dmabuf->virt);
James Smart4f774512009-05-22 14:52:35 -040011828 total_qe_count++, dma_pointer += entry_size) {
11829 queue->qe[total_qe_count].address = dma_pointer;
11830 }
11831 }
11832 queue->entry_size = entry_size;
11833 queue->entry_count = entry_count;
James Smart73d91e52011-10-10 21:32:10 -040011834
11835 /*
11836 * entry_repost is calculated based on the number of entries in the
11837 * queue. This works out except for RQs. If buffers are NOT initially
11838 * posted for every RQE, entry_repost should be adjusted accordingly.
11839 */
11840 queue->entry_repost = (entry_count >> 3);
11841 if (queue->entry_repost < LPFC_QUEUE_MIN_REPOST)
11842 queue->entry_repost = LPFC_QUEUE_MIN_REPOST;
James Smart4f774512009-05-22 14:52:35 -040011843 queue->phba = phba;
11844
11845 return queue;
11846out_fail:
11847 lpfc_sli4_queue_free(queue);
11848 return NULL;
11849}
11850
11851/**
11852 * lpfc_eq_create - Create an Event Queue on the HBA
11853 * @phba: HBA structure that indicates port to create a queue on.
11854 * @eq: The queue structure to use to create the event queue.
11855 * @imax: The maximum interrupt per second limit.
11856 *
11857 * This function creates an event queue, as detailed in @eq, on a port,
11858 * described by @phba by sending an EQ_CREATE mailbox command to the HBA.
11859 *
11860 * The @phba struct is used to send mailbox command to HBA. The @eq struct
11861 * is used to get the entry count and entry size that are necessary to
11862 * determine the number of pages to allocate and use for this queue. This
11863 * function will send the EQ_CREATE mailbox command to the HBA to setup the
11864 * event queue. This function is asynchronous and will wait for the mailbox
11865 * command to finish before continuing.
11866 *
11867 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040011868 * memory this function will return -ENOMEM. If the queue create mailbox command
11869 * fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040011870 **/
11871uint32_t
11872lpfc_eq_create(struct lpfc_hba *phba, struct lpfc_queue *eq, uint16_t imax)
11873{
11874 struct lpfc_mbx_eq_create *eq_create;
11875 LPFC_MBOXQ_t *mbox;
11876 int rc, length, status = 0;
11877 struct lpfc_dmabuf *dmabuf;
11878 uint32_t shdr_status, shdr_add_status;
11879 union lpfc_sli4_cfg_shdr *shdr;
11880 uint16_t dmult;
James Smart49198b32010-04-06 15:04:33 -040011881 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
11882
James Smart2e90f4b2011-12-13 13:22:37 -050011883 /* sanity check on queue memory */
11884 if (!eq)
11885 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040011886 if (!phba->sli4_hba.pc_sli4_params.supported)
11887 hw_page_size = SLI4_PAGE_SIZE;
James Smart4f774512009-05-22 14:52:35 -040011888
11889 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
11890 if (!mbox)
11891 return -ENOMEM;
11892 length = (sizeof(struct lpfc_mbx_eq_create) -
11893 sizeof(struct lpfc_sli4_cfg_mhdr));
11894 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
11895 LPFC_MBOX_OPCODE_EQ_CREATE,
11896 length, LPFC_SLI4_MBX_EMBED);
11897 eq_create = &mbox->u.mqe.un.eq_create;
11898 bf_set(lpfc_mbx_eq_create_num_pages, &eq_create->u.request,
11899 eq->page_count);
11900 bf_set(lpfc_eq_context_size, &eq_create->u.request.context,
11901 LPFC_EQE_SIZE);
11902 bf_set(lpfc_eq_context_valid, &eq_create->u.request.context, 1);
11903 /* Calculate delay multiper from maximum interrupt per second */
11904 dmult = LPFC_DMULT_CONST/imax - 1;
11905 bf_set(lpfc_eq_context_delay_multi, &eq_create->u.request.context,
11906 dmult);
11907 switch (eq->entry_count) {
11908 default:
11909 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11910 "0360 Unsupported EQ count. (%d)\n",
11911 eq->entry_count);
11912 if (eq->entry_count < 256)
11913 return -EINVAL;
11914 /* otherwise default to smallest count (drop through) */
11915 case 256:
11916 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
11917 LPFC_EQ_CNT_256);
11918 break;
11919 case 512:
11920 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
11921 LPFC_EQ_CNT_512);
11922 break;
11923 case 1024:
11924 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
11925 LPFC_EQ_CNT_1024);
11926 break;
11927 case 2048:
11928 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
11929 LPFC_EQ_CNT_2048);
11930 break;
11931 case 4096:
11932 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
11933 LPFC_EQ_CNT_4096);
11934 break;
11935 }
11936 list_for_each_entry(dmabuf, &eq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040011937 memset(dmabuf->virt, 0, hw_page_size);
James Smart4f774512009-05-22 14:52:35 -040011938 eq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
11939 putPaddrLow(dmabuf->phys);
11940 eq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
11941 putPaddrHigh(dmabuf->phys);
11942 }
11943 mbox->vport = phba->pport;
11944 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
11945 mbox->context1 = NULL;
11946 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
11947 shdr = (union lpfc_sli4_cfg_shdr *) &eq_create->header.cfg_shdr;
11948 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
11949 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
11950 if (shdr_status || shdr_add_status || rc) {
11951 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
11952 "2500 EQ_CREATE mailbox failed with "
11953 "status x%x add_status x%x, mbx status x%x\n",
11954 shdr_status, shdr_add_status, rc);
11955 status = -ENXIO;
11956 }
11957 eq->type = LPFC_EQ;
11958 eq->subtype = LPFC_NONE;
11959 eq->queue_id = bf_get(lpfc_mbx_eq_create_q_id, &eq_create->u.response);
11960 if (eq->queue_id == 0xFFFF)
11961 status = -ENXIO;
11962 eq->host_index = 0;
11963 eq->hba_index = 0;
11964
James Smart8fa38512009-07-19 10:01:03 -040011965 mempool_free(mbox, phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040011966 return status;
11967}
11968
11969/**
11970 * lpfc_cq_create - Create a Completion Queue on the HBA
11971 * @phba: HBA structure that indicates port to create a queue on.
11972 * @cq: The queue structure to use to create the completion queue.
11973 * @eq: The event queue to bind this completion queue to.
11974 *
11975 * This function creates a completion queue, as detailed in @wq, on a port,
11976 * described by @phba by sending a CQ_CREATE mailbox command to the HBA.
11977 *
11978 * The @phba struct is used to send mailbox command to HBA. The @cq struct
11979 * is used to get the entry count and entry size that are necessary to
11980 * determine the number of pages to allocate and use for this queue. The @eq
11981 * is used to indicate which event queue to bind this completion queue to. This
11982 * function will send the CQ_CREATE mailbox command to the HBA to setup the
11983 * completion queue. This function is asynchronous and will wait for the mailbox
11984 * command to finish before continuing.
11985 *
11986 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040011987 * memory this function will return -ENOMEM. If the queue create mailbox command
11988 * fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040011989 **/
11990uint32_t
11991lpfc_cq_create(struct lpfc_hba *phba, struct lpfc_queue *cq,
11992 struct lpfc_queue *eq, uint32_t type, uint32_t subtype)
11993{
11994 struct lpfc_mbx_cq_create *cq_create;
11995 struct lpfc_dmabuf *dmabuf;
11996 LPFC_MBOXQ_t *mbox;
11997 int rc, length, status = 0;
11998 uint32_t shdr_status, shdr_add_status;
11999 union lpfc_sli4_cfg_shdr *shdr;
James Smart49198b32010-04-06 15:04:33 -040012000 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
12001
James Smart2e90f4b2011-12-13 13:22:37 -050012002 /* sanity check on queue memory */
12003 if (!cq || !eq)
12004 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040012005 if (!phba->sli4_hba.pc_sli4_params.supported)
12006 hw_page_size = SLI4_PAGE_SIZE;
12007
James Smart4f774512009-05-22 14:52:35 -040012008 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
12009 if (!mbox)
12010 return -ENOMEM;
12011 length = (sizeof(struct lpfc_mbx_cq_create) -
12012 sizeof(struct lpfc_sli4_cfg_mhdr));
12013 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
12014 LPFC_MBOX_OPCODE_CQ_CREATE,
12015 length, LPFC_SLI4_MBX_EMBED);
12016 cq_create = &mbox->u.mqe.un.cq_create;
James Smart5a6f1332011-03-11 16:05:35 -050012017 shdr = (union lpfc_sli4_cfg_shdr *) &cq_create->header.cfg_shdr;
James Smart4f774512009-05-22 14:52:35 -040012018 bf_set(lpfc_mbx_cq_create_num_pages, &cq_create->u.request,
12019 cq->page_count);
12020 bf_set(lpfc_cq_context_event, &cq_create->u.request.context, 1);
12021 bf_set(lpfc_cq_context_valid, &cq_create->u.request.context, 1);
James Smart5a6f1332011-03-11 16:05:35 -050012022 bf_set(lpfc_mbox_hdr_version, &shdr->request,
12023 phba->sli4_hba.pc_sli4_params.cqv);
12024 if (phba->sli4_hba.pc_sli4_params.cqv == LPFC_Q_CREATE_VERSION_2) {
James Smartc31098c2011-04-16 11:03:33 -040012025 /* FW only supports 1. Should be PAGE_SIZE/SLI4_PAGE_SIZE */
12026 bf_set(lpfc_mbx_cq_create_page_size, &cq_create->u.request, 1);
James Smart5a6f1332011-03-11 16:05:35 -050012027 bf_set(lpfc_cq_eq_id_2, &cq_create->u.request.context,
12028 eq->queue_id);
12029 } else {
12030 bf_set(lpfc_cq_eq_id, &cq_create->u.request.context,
12031 eq->queue_id);
12032 }
James Smart4f774512009-05-22 14:52:35 -040012033 switch (cq->entry_count) {
12034 default:
12035 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12036 "0361 Unsupported CQ count. (%d)\n",
12037 cq->entry_count);
12038 if (cq->entry_count < 256)
12039 return -EINVAL;
12040 /* otherwise default to smallest count (drop through) */
12041 case 256:
12042 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
12043 LPFC_CQ_CNT_256);
12044 break;
12045 case 512:
12046 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
12047 LPFC_CQ_CNT_512);
12048 break;
12049 case 1024:
12050 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
12051 LPFC_CQ_CNT_1024);
12052 break;
12053 }
12054 list_for_each_entry(dmabuf, &cq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040012055 memset(dmabuf->virt, 0, hw_page_size);
James Smart4f774512009-05-22 14:52:35 -040012056 cq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
12057 putPaddrLow(dmabuf->phys);
12058 cq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
12059 putPaddrHigh(dmabuf->phys);
12060 }
12061 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
12062
12063 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart4f774512009-05-22 14:52:35 -040012064 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12065 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12066 if (shdr_status || shdr_add_status || rc) {
12067 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12068 "2501 CQ_CREATE mailbox failed with "
12069 "status x%x add_status x%x, mbx status x%x\n",
12070 shdr_status, shdr_add_status, rc);
12071 status = -ENXIO;
12072 goto out;
12073 }
12074 cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
12075 if (cq->queue_id == 0xFFFF) {
12076 status = -ENXIO;
12077 goto out;
12078 }
12079 /* link the cq onto the parent eq child list */
12080 list_add_tail(&cq->list, &eq->child_list);
12081 /* Set up completion queue's type and subtype */
12082 cq->type = type;
12083 cq->subtype = subtype;
12084 cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
James Smart2a622bf2011-02-16 12:40:06 -050012085 cq->assoc_qid = eq->queue_id;
James Smart4f774512009-05-22 14:52:35 -040012086 cq->host_index = 0;
12087 cq->hba_index = 0;
James Smart4f774512009-05-22 14:52:35 -040012088
James Smart8fa38512009-07-19 10:01:03 -040012089out:
12090 mempool_free(mbox, phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040012091 return status;
12092}
12093
12094/**
James Smartb19a0612010-04-06 14:48:51 -040012095 * lpfc_mq_create_fb_init - Send MCC_CREATE without async events registration
James Smart04c68492009-05-22 14:52:52 -040012096 * @phba: HBA structure that indicates port to create a queue on.
12097 * @mq: The queue structure to use to create the mailbox queue.
James Smartb19a0612010-04-06 14:48:51 -040012098 * @mbox: An allocated pointer to type LPFC_MBOXQ_t
12099 * @cq: The completion queue to associate with this cq.
James Smart04c68492009-05-22 14:52:52 -040012100 *
James Smartb19a0612010-04-06 14:48:51 -040012101 * This function provides failback (fb) functionality when the
12102 * mq_create_ext fails on older FW generations. It's purpose is identical
12103 * to mq_create_ext otherwise.
James Smart04c68492009-05-22 14:52:52 -040012104 *
James Smartb19a0612010-04-06 14:48:51 -040012105 * This routine cannot fail as all attributes were previously accessed and
12106 * initialized in mq_create_ext.
James Smart04c68492009-05-22 14:52:52 -040012107 **/
James Smartb19a0612010-04-06 14:48:51 -040012108static void
12109lpfc_mq_create_fb_init(struct lpfc_hba *phba, struct lpfc_queue *mq,
12110 LPFC_MBOXQ_t *mbox, struct lpfc_queue *cq)
James Smart04c68492009-05-22 14:52:52 -040012111{
12112 struct lpfc_mbx_mq_create *mq_create;
12113 struct lpfc_dmabuf *dmabuf;
James Smartb19a0612010-04-06 14:48:51 -040012114 int length;
James Smart04c68492009-05-22 14:52:52 -040012115
James Smart04c68492009-05-22 14:52:52 -040012116 length = (sizeof(struct lpfc_mbx_mq_create) -
12117 sizeof(struct lpfc_sli4_cfg_mhdr));
12118 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
12119 LPFC_MBOX_OPCODE_MQ_CREATE,
12120 length, LPFC_SLI4_MBX_EMBED);
12121 mq_create = &mbox->u.mqe.un.mq_create;
12122 bf_set(lpfc_mbx_mq_create_num_pages, &mq_create->u.request,
James Smartb19a0612010-04-06 14:48:51 -040012123 mq->page_count);
James Smart04c68492009-05-22 14:52:52 -040012124 bf_set(lpfc_mq_context_cq_id, &mq_create->u.request.context,
James Smartb19a0612010-04-06 14:48:51 -040012125 cq->queue_id);
James Smart04c68492009-05-22 14:52:52 -040012126 bf_set(lpfc_mq_context_valid, &mq_create->u.request.context, 1);
12127 switch (mq->entry_count) {
James Smart04c68492009-05-22 14:52:52 -040012128 case 16:
James Smart5a6f1332011-03-11 16:05:35 -050012129 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
12130 LPFC_MQ_RING_SIZE_16);
James Smart04c68492009-05-22 14:52:52 -040012131 break;
12132 case 32:
James Smart5a6f1332011-03-11 16:05:35 -050012133 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
12134 LPFC_MQ_RING_SIZE_32);
James Smart04c68492009-05-22 14:52:52 -040012135 break;
12136 case 64:
James Smart5a6f1332011-03-11 16:05:35 -050012137 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
12138 LPFC_MQ_RING_SIZE_64);
James Smart04c68492009-05-22 14:52:52 -040012139 break;
12140 case 128:
James Smart5a6f1332011-03-11 16:05:35 -050012141 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
12142 LPFC_MQ_RING_SIZE_128);
James Smart04c68492009-05-22 14:52:52 -040012143 break;
12144 }
12145 list_for_each_entry(dmabuf, &mq->page_list, list) {
12146 mq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
James Smartb19a0612010-04-06 14:48:51 -040012147 putPaddrLow(dmabuf->phys);
James Smart04c68492009-05-22 14:52:52 -040012148 mq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
James Smartb19a0612010-04-06 14:48:51 -040012149 putPaddrHigh(dmabuf->phys);
12150 }
12151}
12152
12153/**
12154 * lpfc_mq_create - Create a mailbox Queue on the HBA
12155 * @phba: HBA structure that indicates port to create a queue on.
12156 * @mq: The queue structure to use to create the mailbox queue.
12157 * @cq: The completion queue to associate with this cq.
12158 * @subtype: The queue's subtype.
12159 *
12160 * This function creates a mailbox queue, as detailed in @mq, on a port,
12161 * described by @phba by sending a MQ_CREATE mailbox command to the HBA.
12162 *
12163 * The @phba struct is used to send mailbox command to HBA. The @cq struct
12164 * is used to get the entry count and entry size that are necessary to
12165 * determine the number of pages to allocate and use for this queue. This
12166 * function will send the MQ_CREATE mailbox command to the HBA to setup the
12167 * mailbox queue. This function is asynchronous and will wait for the mailbox
12168 * command to finish before continuing.
12169 *
12170 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040012171 * memory this function will return -ENOMEM. If the queue create mailbox command
12172 * fails this function will return -ENXIO.
James Smartb19a0612010-04-06 14:48:51 -040012173 **/
12174int32_t
12175lpfc_mq_create(struct lpfc_hba *phba, struct lpfc_queue *mq,
12176 struct lpfc_queue *cq, uint32_t subtype)
12177{
12178 struct lpfc_mbx_mq_create *mq_create;
12179 struct lpfc_mbx_mq_create_ext *mq_create_ext;
12180 struct lpfc_dmabuf *dmabuf;
12181 LPFC_MBOXQ_t *mbox;
12182 int rc, length, status = 0;
12183 uint32_t shdr_status, shdr_add_status;
12184 union lpfc_sli4_cfg_shdr *shdr;
James Smart49198b32010-04-06 15:04:33 -040012185 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
James Smartb19a0612010-04-06 14:48:51 -040012186
James Smart2e90f4b2011-12-13 13:22:37 -050012187 /* sanity check on queue memory */
12188 if (!mq || !cq)
12189 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040012190 if (!phba->sli4_hba.pc_sli4_params.supported)
12191 hw_page_size = SLI4_PAGE_SIZE;
James Smartb19a0612010-04-06 14:48:51 -040012192
12193 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
12194 if (!mbox)
12195 return -ENOMEM;
12196 length = (sizeof(struct lpfc_mbx_mq_create_ext) -
12197 sizeof(struct lpfc_sli4_cfg_mhdr));
12198 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
12199 LPFC_MBOX_OPCODE_MQ_CREATE_EXT,
12200 length, LPFC_SLI4_MBX_EMBED);
12201
12202 mq_create_ext = &mbox->u.mqe.un.mq_create_ext;
James Smart5a6f1332011-03-11 16:05:35 -050012203 shdr = (union lpfc_sli4_cfg_shdr *) &mq_create_ext->header.cfg_shdr;
James Smart70f3c072010-12-15 17:57:33 -050012204 bf_set(lpfc_mbx_mq_create_ext_num_pages,
12205 &mq_create_ext->u.request, mq->page_count);
12206 bf_set(lpfc_mbx_mq_create_ext_async_evt_link,
12207 &mq_create_ext->u.request, 1);
12208 bf_set(lpfc_mbx_mq_create_ext_async_evt_fip,
James Smartb19a0612010-04-06 14:48:51 -040012209 &mq_create_ext->u.request, 1);
12210 bf_set(lpfc_mbx_mq_create_ext_async_evt_group5,
12211 &mq_create_ext->u.request, 1);
James Smart70f3c072010-12-15 17:57:33 -050012212 bf_set(lpfc_mbx_mq_create_ext_async_evt_fc,
12213 &mq_create_ext->u.request, 1);
12214 bf_set(lpfc_mbx_mq_create_ext_async_evt_sli,
12215 &mq_create_ext->u.request, 1);
James Smartb19a0612010-04-06 14:48:51 -040012216 bf_set(lpfc_mq_context_valid, &mq_create_ext->u.request.context, 1);
James Smart5a6f1332011-03-11 16:05:35 -050012217 bf_set(lpfc_mbox_hdr_version, &shdr->request,
12218 phba->sli4_hba.pc_sli4_params.mqv);
12219 if (phba->sli4_hba.pc_sli4_params.mqv == LPFC_Q_CREATE_VERSION_1)
12220 bf_set(lpfc_mbx_mq_create_ext_cq_id, &mq_create_ext->u.request,
12221 cq->queue_id);
12222 else
12223 bf_set(lpfc_mq_context_cq_id, &mq_create_ext->u.request.context,
12224 cq->queue_id);
James Smartb19a0612010-04-06 14:48:51 -040012225 switch (mq->entry_count) {
12226 default:
12227 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12228 "0362 Unsupported MQ count. (%d)\n",
12229 mq->entry_count);
12230 if (mq->entry_count < 16)
12231 return -EINVAL;
12232 /* otherwise default to smallest count (drop through) */
12233 case 16:
James Smart5a6f1332011-03-11 16:05:35 -050012234 bf_set(lpfc_mq_context_ring_size,
12235 &mq_create_ext->u.request.context,
12236 LPFC_MQ_RING_SIZE_16);
James Smartb19a0612010-04-06 14:48:51 -040012237 break;
12238 case 32:
James Smart5a6f1332011-03-11 16:05:35 -050012239 bf_set(lpfc_mq_context_ring_size,
12240 &mq_create_ext->u.request.context,
12241 LPFC_MQ_RING_SIZE_32);
James Smartb19a0612010-04-06 14:48:51 -040012242 break;
12243 case 64:
James Smart5a6f1332011-03-11 16:05:35 -050012244 bf_set(lpfc_mq_context_ring_size,
12245 &mq_create_ext->u.request.context,
12246 LPFC_MQ_RING_SIZE_64);
James Smartb19a0612010-04-06 14:48:51 -040012247 break;
12248 case 128:
James Smart5a6f1332011-03-11 16:05:35 -050012249 bf_set(lpfc_mq_context_ring_size,
12250 &mq_create_ext->u.request.context,
12251 LPFC_MQ_RING_SIZE_128);
James Smartb19a0612010-04-06 14:48:51 -040012252 break;
12253 }
12254 list_for_each_entry(dmabuf, &mq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040012255 memset(dmabuf->virt, 0, hw_page_size);
James Smartb19a0612010-04-06 14:48:51 -040012256 mq_create_ext->u.request.page[dmabuf->buffer_tag].addr_lo =
12257 putPaddrLow(dmabuf->phys);
12258 mq_create_ext->u.request.page[dmabuf->buffer_tag].addr_hi =
James Smart04c68492009-05-22 14:52:52 -040012259 putPaddrHigh(dmabuf->phys);
12260 }
12261 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
James Smartb19a0612010-04-06 14:48:51 -040012262 mq->queue_id = bf_get(lpfc_mbx_mq_create_q_id,
12263 &mq_create_ext->u.response);
12264 if (rc != MBX_SUCCESS) {
12265 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
12266 "2795 MQ_CREATE_EXT failed with "
12267 "status x%x. Failback to MQ_CREATE.\n",
12268 rc);
12269 lpfc_mq_create_fb_init(phba, mq, mbox, cq);
12270 mq_create = &mbox->u.mqe.un.mq_create;
12271 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
12272 shdr = (union lpfc_sli4_cfg_shdr *) &mq_create->header.cfg_shdr;
12273 mq->queue_id = bf_get(lpfc_mbx_mq_create_q_id,
12274 &mq_create->u.response);
12275 }
12276
James Smart04c68492009-05-22 14:52:52 -040012277 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart04c68492009-05-22 14:52:52 -040012278 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12279 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12280 if (shdr_status || shdr_add_status || rc) {
12281 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12282 "2502 MQ_CREATE mailbox failed with "
12283 "status x%x add_status x%x, mbx status x%x\n",
12284 shdr_status, shdr_add_status, rc);
12285 status = -ENXIO;
12286 goto out;
12287 }
James Smart04c68492009-05-22 14:52:52 -040012288 if (mq->queue_id == 0xFFFF) {
12289 status = -ENXIO;
12290 goto out;
12291 }
12292 mq->type = LPFC_MQ;
James Smart2a622bf2011-02-16 12:40:06 -050012293 mq->assoc_qid = cq->queue_id;
James Smart04c68492009-05-22 14:52:52 -040012294 mq->subtype = subtype;
12295 mq->host_index = 0;
12296 mq->hba_index = 0;
12297
12298 /* link the mq onto the parent cq child list */
12299 list_add_tail(&mq->list, &cq->child_list);
12300out:
James Smart8fa38512009-07-19 10:01:03 -040012301 mempool_free(mbox, phba->mbox_mem_pool);
James Smart04c68492009-05-22 14:52:52 -040012302 return status;
12303}
12304
12305/**
James Smart4f774512009-05-22 14:52:35 -040012306 * lpfc_wq_create - Create a Work Queue on the HBA
12307 * @phba: HBA structure that indicates port to create a queue on.
12308 * @wq: The queue structure to use to create the work queue.
12309 * @cq: The completion queue to bind this work queue to.
12310 * @subtype: The subtype of the work queue indicating its functionality.
12311 *
12312 * This function creates a work queue, as detailed in @wq, on a port, described
12313 * by @phba by sending a WQ_CREATE mailbox command to the HBA.
12314 *
12315 * The @phba struct is used to send mailbox command to HBA. The @wq struct
12316 * is used to get the entry count and entry size that are necessary to
12317 * determine the number of pages to allocate and use for this queue. The @cq
12318 * is used to indicate which completion queue to bind this work queue to. This
12319 * function will send the WQ_CREATE mailbox command to the HBA to setup the
12320 * work queue. This function is asynchronous and will wait for the mailbox
12321 * command to finish before continuing.
12322 *
12323 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040012324 * memory this function will return -ENOMEM. If the queue create mailbox command
12325 * fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040012326 **/
12327uint32_t
12328lpfc_wq_create(struct lpfc_hba *phba, struct lpfc_queue *wq,
12329 struct lpfc_queue *cq, uint32_t subtype)
12330{
12331 struct lpfc_mbx_wq_create *wq_create;
12332 struct lpfc_dmabuf *dmabuf;
12333 LPFC_MBOXQ_t *mbox;
12334 int rc, length, status = 0;
12335 uint32_t shdr_status, shdr_add_status;
12336 union lpfc_sli4_cfg_shdr *shdr;
James Smart49198b32010-04-06 15:04:33 -040012337 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
James Smart5a6f1332011-03-11 16:05:35 -050012338 struct dma_address *page;
James Smart49198b32010-04-06 15:04:33 -040012339
James Smart2e90f4b2011-12-13 13:22:37 -050012340 /* sanity check on queue memory */
12341 if (!wq || !cq)
12342 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040012343 if (!phba->sli4_hba.pc_sli4_params.supported)
12344 hw_page_size = SLI4_PAGE_SIZE;
James Smart4f774512009-05-22 14:52:35 -040012345
12346 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
12347 if (!mbox)
12348 return -ENOMEM;
12349 length = (sizeof(struct lpfc_mbx_wq_create) -
12350 sizeof(struct lpfc_sli4_cfg_mhdr));
12351 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
12352 LPFC_MBOX_OPCODE_FCOE_WQ_CREATE,
12353 length, LPFC_SLI4_MBX_EMBED);
12354 wq_create = &mbox->u.mqe.un.wq_create;
James Smart5a6f1332011-03-11 16:05:35 -050012355 shdr = (union lpfc_sli4_cfg_shdr *) &wq_create->header.cfg_shdr;
James Smart4f774512009-05-22 14:52:35 -040012356 bf_set(lpfc_mbx_wq_create_num_pages, &wq_create->u.request,
12357 wq->page_count);
12358 bf_set(lpfc_mbx_wq_create_cq_id, &wq_create->u.request,
12359 cq->queue_id);
James Smart5a6f1332011-03-11 16:05:35 -050012360 bf_set(lpfc_mbox_hdr_version, &shdr->request,
12361 phba->sli4_hba.pc_sli4_params.wqv);
12362 if (phba->sli4_hba.pc_sli4_params.wqv == LPFC_Q_CREATE_VERSION_1) {
12363 bf_set(lpfc_mbx_wq_create_wqe_count, &wq_create->u.request_1,
12364 wq->entry_count);
12365 switch (wq->entry_size) {
12366 default:
12367 case 64:
12368 bf_set(lpfc_mbx_wq_create_wqe_size,
12369 &wq_create->u.request_1,
12370 LPFC_WQ_WQE_SIZE_64);
12371 break;
12372 case 128:
12373 bf_set(lpfc_mbx_wq_create_wqe_size,
12374 &wq_create->u.request_1,
12375 LPFC_WQ_WQE_SIZE_128);
12376 break;
12377 }
12378 bf_set(lpfc_mbx_wq_create_page_size, &wq_create->u.request_1,
12379 (PAGE_SIZE/SLI4_PAGE_SIZE));
12380 page = wq_create->u.request_1.page;
12381 } else {
12382 page = wq_create->u.request.page;
12383 }
James Smart4f774512009-05-22 14:52:35 -040012384 list_for_each_entry(dmabuf, &wq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040012385 memset(dmabuf->virt, 0, hw_page_size);
James Smart5a6f1332011-03-11 16:05:35 -050012386 page[dmabuf->buffer_tag].addr_lo = putPaddrLow(dmabuf->phys);
12387 page[dmabuf->buffer_tag].addr_hi = putPaddrHigh(dmabuf->phys);
James Smart4f774512009-05-22 14:52:35 -040012388 }
12389 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
12390 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart4f774512009-05-22 14:52:35 -040012391 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12392 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12393 if (shdr_status || shdr_add_status || rc) {
12394 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12395 "2503 WQ_CREATE mailbox failed with "
12396 "status x%x add_status x%x, mbx status x%x\n",
12397 shdr_status, shdr_add_status, rc);
12398 status = -ENXIO;
12399 goto out;
12400 }
12401 wq->queue_id = bf_get(lpfc_mbx_wq_create_q_id, &wq_create->u.response);
12402 if (wq->queue_id == 0xFFFF) {
12403 status = -ENXIO;
12404 goto out;
12405 }
12406 wq->type = LPFC_WQ;
James Smart2a622bf2011-02-16 12:40:06 -050012407 wq->assoc_qid = cq->queue_id;
James Smart4f774512009-05-22 14:52:35 -040012408 wq->subtype = subtype;
12409 wq->host_index = 0;
12410 wq->hba_index = 0;
James Smartff78d8f2011-12-13 13:21:35 -050012411 wq->entry_repost = LPFC_RELEASE_NOTIFICATION_INTERVAL;
James Smart4f774512009-05-22 14:52:35 -040012412
12413 /* link the wq onto the parent cq child list */
12414 list_add_tail(&wq->list, &cq->child_list);
12415out:
James Smart8fa38512009-07-19 10:01:03 -040012416 mempool_free(mbox, phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040012417 return status;
12418}
12419
12420/**
James Smart73d91e52011-10-10 21:32:10 -040012421 * lpfc_rq_adjust_repost - Adjust entry_repost for an RQ
12422 * @phba: HBA structure that indicates port to create a queue on.
12423 * @rq: The queue structure to use for the receive queue.
12424 * @qno: The associated HBQ number
12425 *
12426 *
12427 * For SLI4 we need to adjust the RQ repost value based on
12428 * the number of buffers that are initially posted to the RQ.
12429 */
12430void
12431lpfc_rq_adjust_repost(struct lpfc_hba *phba, struct lpfc_queue *rq, int qno)
12432{
12433 uint32_t cnt;
12434
James Smart2e90f4b2011-12-13 13:22:37 -050012435 /* sanity check on queue memory */
12436 if (!rq)
12437 return;
James Smart73d91e52011-10-10 21:32:10 -040012438 cnt = lpfc_hbq_defs[qno]->entry_count;
12439
12440 /* Recalc repost for RQs based on buffers initially posted */
12441 cnt = (cnt >> 3);
12442 if (cnt < LPFC_QUEUE_MIN_REPOST)
12443 cnt = LPFC_QUEUE_MIN_REPOST;
12444
12445 rq->entry_repost = cnt;
12446}
12447
12448/**
James Smart4f774512009-05-22 14:52:35 -040012449 * lpfc_rq_create - Create a Receive Queue on the HBA
12450 * @phba: HBA structure that indicates port to create a queue on.
12451 * @hrq: The queue structure to use to create the header receive queue.
12452 * @drq: The queue structure to use to create the data receive queue.
12453 * @cq: The completion queue to bind this work queue to.
12454 *
12455 * This function creates a receive buffer queue pair , as detailed in @hrq and
12456 * @drq, on a port, described by @phba by sending a RQ_CREATE mailbox command
12457 * to the HBA.
12458 *
12459 * The @phba struct is used to send mailbox command to HBA. The @drq and @hrq
12460 * struct is used to get the entry count that is necessary to determine the
12461 * number of pages to use for this queue. The @cq is used to indicate which
12462 * completion queue to bind received buffers that are posted to these queues to.
12463 * This function will send the RQ_CREATE mailbox command to the HBA to setup the
12464 * receive queue pair. This function is asynchronous and will wait for the
12465 * mailbox command to finish before continuing.
12466 *
12467 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040012468 * memory this function will return -ENOMEM. If the queue create mailbox command
12469 * fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040012470 **/
12471uint32_t
12472lpfc_rq_create(struct lpfc_hba *phba, struct lpfc_queue *hrq,
12473 struct lpfc_queue *drq, struct lpfc_queue *cq, uint32_t subtype)
12474{
12475 struct lpfc_mbx_rq_create *rq_create;
12476 struct lpfc_dmabuf *dmabuf;
12477 LPFC_MBOXQ_t *mbox;
12478 int rc, length, status = 0;
12479 uint32_t shdr_status, shdr_add_status;
12480 union lpfc_sli4_cfg_shdr *shdr;
James Smart49198b32010-04-06 15:04:33 -040012481 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
12482
James Smart2e90f4b2011-12-13 13:22:37 -050012483 /* sanity check on queue memory */
12484 if (!hrq || !drq || !cq)
12485 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040012486 if (!phba->sli4_hba.pc_sli4_params.supported)
12487 hw_page_size = SLI4_PAGE_SIZE;
James Smart4f774512009-05-22 14:52:35 -040012488
12489 if (hrq->entry_count != drq->entry_count)
12490 return -EINVAL;
12491 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
12492 if (!mbox)
12493 return -ENOMEM;
12494 length = (sizeof(struct lpfc_mbx_rq_create) -
12495 sizeof(struct lpfc_sli4_cfg_mhdr));
12496 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
12497 LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
12498 length, LPFC_SLI4_MBX_EMBED);
12499 rq_create = &mbox->u.mqe.un.rq_create;
James Smart5a6f1332011-03-11 16:05:35 -050012500 shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
12501 bf_set(lpfc_mbox_hdr_version, &shdr->request,
12502 phba->sli4_hba.pc_sli4_params.rqv);
12503 if (phba->sli4_hba.pc_sli4_params.rqv == LPFC_Q_CREATE_VERSION_1) {
12504 bf_set(lpfc_rq_context_rqe_count_1,
12505 &rq_create->u.request.context,
12506 hrq->entry_count);
12507 rq_create->u.request.context.buffer_size = LPFC_HDR_BUF_SIZE;
James Smartc31098c2011-04-16 11:03:33 -040012508 bf_set(lpfc_rq_context_rqe_size,
12509 &rq_create->u.request.context,
12510 LPFC_RQE_SIZE_8);
12511 bf_set(lpfc_rq_context_page_size,
12512 &rq_create->u.request.context,
12513 (PAGE_SIZE/SLI4_PAGE_SIZE));
James Smart5a6f1332011-03-11 16:05:35 -050012514 } else {
12515 switch (hrq->entry_count) {
12516 default:
12517 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12518 "2535 Unsupported RQ count. (%d)\n",
12519 hrq->entry_count);
12520 if (hrq->entry_count < 512)
12521 return -EINVAL;
12522 /* otherwise default to smallest count (drop through) */
12523 case 512:
12524 bf_set(lpfc_rq_context_rqe_count,
12525 &rq_create->u.request.context,
12526 LPFC_RQ_RING_SIZE_512);
12527 break;
12528 case 1024:
12529 bf_set(lpfc_rq_context_rqe_count,
12530 &rq_create->u.request.context,
12531 LPFC_RQ_RING_SIZE_1024);
12532 break;
12533 case 2048:
12534 bf_set(lpfc_rq_context_rqe_count,
12535 &rq_create->u.request.context,
12536 LPFC_RQ_RING_SIZE_2048);
12537 break;
12538 case 4096:
12539 bf_set(lpfc_rq_context_rqe_count,
12540 &rq_create->u.request.context,
12541 LPFC_RQ_RING_SIZE_4096);
12542 break;
12543 }
12544 bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
12545 LPFC_HDR_BUF_SIZE);
James Smart4f774512009-05-22 14:52:35 -040012546 }
12547 bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
12548 cq->queue_id);
12549 bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
12550 hrq->page_count);
James Smart4f774512009-05-22 14:52:35 -040012551 list_for_each_entry(dmabuf, &hrq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040012552 memset(dmabuf->virt, 0, hw_page_size);
James Smart4f774512009-05-22 14:52:35 -040012553 rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
12554 putPaddrLow(dmabuf->phys);
12555 rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
12556 putPaddrHigh(dmabuf->phys);
12557 }
12558 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
12559 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart4f774512009-05-22 14:52:35 -040012560 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12561 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12562 if (shdr_status || shdr_add_status || rc) {
12563 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12564 "2504 RQ_CREATE mailbox failed with "
12565 "status x%x add_status x%x, mbx status x%x\n",
12566 shdr_status, shdr_add_status, rc);
12567 status = -ENXIO;
12568 goto out;
12569 }
12570 hrq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
12571 if (hrq->queue_id == 0xFFFF) {
12572 status = -ENXIO;
12573 goto out;
12574 }
12575 hrq->type = LPFC_HRQ;
James Smart2a622bf2011-02-16 12:40:06 -050012576 hrq->assoc_qid = cq->queue_id;
James Smart4f774512009-05-22 14:52:35 -040012577 hrq->subtype = subtype;
12578 hrq->host_index = 0;
12579 hrq->hba_index = 0;
12580
12581 /* now create the data queue */
12582 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
12583 LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
12584 length, LPFC_SLI4_MBX_EMBED);
James Smart5a6f1332011-03-11 16:05:35 -050012585 bf_set(lpfc_mbox_hdr_version, &shdr->request,
12586 phba->sli4_hba.pc_sli4_params.rqv);
12587 if (phba->sli4_hba.pc_sli4_params.rqv == LPFC_Q_CREATE_VERSION_1) {
12588 bf_set(lpfc_rq_context_rqe_count_1,
James Smartc31098c2011-04-16 11:03:33 -040012589 &rq_create->u.request.context, hrq->entry_count);
James Smart5a6f1332011-03-11 16:05:35 -050012590 rq_create->u.request.context.buffer_size = LPFC_DATA_BUF_SIZE;
James Smartc31098c2011-04-16 11:03:33 -040012591 bf_set(lpfc_rq_context_rqe_size, &rq_create->u.request.context,
12592 LPFC_RQE_SIZE_8);
12593 bf_set(lpfc_rq_context_page_size, &rq_create->u.request.context,
12594 (PAGE_SIZE/SLI4_PAGE_SIZE));
James Smart5a6f1332011-03-11 16:05:35 -050012595 } else {
12596 switch (drq->entry_count) {
12597 default:
12598 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12599 "2536 Unsupported RQ count. (%d)\n",
12600 drq->entry_count);
12601 if (drq->entry_count < 512)
12602 return -EINVAL;
12603 /* otherwise default to smallest count (drop through) */
12604 case 512:
12605 bf_set(lpfc_rq_context_rqe_count,
12606 &rq_create->u.request.context,
12607 LPFC_RQ_RING_SIZE_512);
12608 break;
12609 case 1024:
12610 bf_set(lpfc_rq_context_rqe_count,
12611 &rq_create->u.request.context,
12612 LPFC_RQ_RING_SIZE_1024);
12613 break;
12614 case 2048:
12615 bf_set(lpfc_rq_context_rqe_count,
12616 &rq_create->u.request.context,
12617 LPFC_RQ_RING_SIZE_2048);
12618 break;
12619 case 4096:
12620 bf_set(lpfc_rq_context_rqe_count,
12621 &rq_create->u.request.context,
12622 LPFC_RQ_RING_SIZE_4096);
12623 break;
12624 }
12625 bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
12626 LPFC_DATA_BUF_SIZE);
James Smart4f774512009-05-22 14:52:35 -040012627 }
12628 bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
12629 cq->queue_id);
12630 bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
12631 drq->page_count);
James Smart4f774512009-05-22 14:52:35 -040012632 list_for_each_entry(dmabuf, &drq->page_list, list) {
12633 rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
12634 putPaddrLow(dmabuf->phys);
12635 rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
12636 putPaddrHigh(dmabuf->phys);
12637 }
12638 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
12639 /* The IOCTL status is embedded in the mailbox subheader. */
12640 shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
12641 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12642 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12643 if (shdr_status || shdr_add_status || rc) {
12644 status = -ENXIO;
12645 goto out;
12646 }
12647 drq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
12648 if (drq->queue_id == 0xFFFF) {
12649 status = -ENXIO;
12650 goto out;
12651 }
12652 drq->type = LPFC_DRQ;
James Smart2a622bf2011-02-16 12:40:06 -050012653 drq->assoc_qid = cq->queue_id;
James Smart4f774512009-05-22 14:52:35 -040012654 drq->subtype = subtype;
12655 drq->host_index = 0;
12656 drq->hba_index = 0;
12657
12658 /* link the header and data RQs onto the parent cq child list */
12659 list_add_tail(&hrq->list, &cq->child_list);
12660 list_add_tail(&drq->list, &cq->child_list);
12661
12662out:
James Smart8fa38512009-07-19 10:01:03 -040012663 mempool_free(mbox, phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040012664 return status;
12665}
12666
12667/**
12668 * lpfc_eq_destroy - Destroy an event Queue on the HBA
12669 * @eq: The queue structure associated with the queue to destroy.
12670 *
12671 * This function destroys a queue, as detailed in @eq by sending an mailbox
12672 * command, specific to the type of queue, to the HBA.
12673 *
12674 * The @eq struct is used to get the queue ID of the queue to destroy.
12675 *
12676 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040012677 * command fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040012678 **/
12679uint32_t
12680lpfc_eq_destroy(struct lpfc_hba *phba, struct lpfc_queue *eq)
12681{
12682 LPFC_MBOXQ_t *mbox;
12683 int rc, length, status = 0;
12684 uint32_t shdr_status, shdr_add_status;
12685 union lpfc_sli4_cfg_shdr *shdr;
12686
James Smart2e90f4b2011-12-13 13:22:37 -050012687 /* sanity check on queue memory */
James Smart4f774512009-05-22 14:52:35 -040012688 if (!eq)
12689 return -ENODEV;
12690 mbox = mempool_alloc(eq->phba->mbox_mem_pool, GFP_KERNEL);
12691 if (!mbox)
12692 return -ENOMEM;
12693 length = (sizeof(struct lpfc_mbx_eq_destroy) -
12694 sizeof(struct lpfc_sli4_cfg_mhdr));
12695 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
12696 LPFC_MBOX_OPCODE_EQ_DESTROY,
12697 length, LPFC_SLI4_MBX_EMBED);
12698 bf_set(lpfc_mbx_eq_destroy_q_id, &mbox->u.mqe.un.eq_destroy.u.request,
12699 eq->queue_id);
12700 mbox->vport = eq->phba->pport;
12701 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
12702
12703 rc = lpfc_sli_issue_mbox(eq->phba, mbox, MBX_POLL);
12704 /* The IOCTL status is embedded in the mailbox subheader. */
12705 shdr = (union lpfc_sli4_cfg_shdr *)
12706 &mbox->u.mqe.un.eq_destroy.header.cfg_shdr;
12707 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12708 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12709 if (shdr_status || shdr_add_status || rc) {
12710 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12711 "2505 EQ_DESTROY mailbox failed with "
12712 "status x%x add_status x%x, mbx status x%x\n",
12713 shdr_status, shdr_add_status, rc);
12714 status = -ENXIO;
12715 }
12716
12717 /* Remove eq from any list */
12718 list_del_init(&eq->list);
James Smart8fa38512009-07-19 10:01:03 -040012719 mempool_free(mbox, eq->phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040012720 return status;
12721}
12722
12723/**
12724 * lpfc_cq_destroy - Destroy a Completion Queue on the HBA
12725 * @cq: The queue structure associated with the queue to destroy.
12726 *
12727 * This function destroys a queue, as detailed in @cq by sending an mailbox
12728 * command, specific to the type of queue, to the HBA.
12729 *
12730 * The @cq struct is used to get the queue ID of the queue to destroy.
12731 *
12732 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040012733 * command fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040012734 **/
12735uint32_t
12736lpfc_cq_destroy(struct lpfc_hba *phba, struct lpfc_queue *cq)
12737{
12738 LPFC_MBOXQ_t *mbox;
12739 int rc, length, status = 0;
12740 uint32_t shdr_status, shdr_add_status;
12741 union lpfc_sli4_cfg_shdr *shdr;
12742
James Smart2e90f4b2011-12-13 13:22:37 -050012743 /* sanity check on queue memory */
James Smart4f774512009-05-22 14:52:35 -040012744 if (!cq)
12745 return -ENODEV;
12746 mbox = mempool_alloc(cq->phba->mbox_mem_pool, GFP_KERNEL);
12747 if (!mbox)
12748 return -ENOMEM;
12749 length = (sizeof(struct lpfc_mbx_cq_destroy) -
12750 sizeof(struct lpfc_sli4_cfg_mhdr));
12751 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
12752 LPFC_MBOX_OPCODE_CQ_DESTROY,
12753 length, LPFC_SLI4_MBX_EMBED);
12754 bf_set(lpfc_mbx_cq_destroy_q_id, &mbox->u.mqe.un.cq_destroy.u.request,
12755 cq->queue_id);
12756 mbox->vport = cq->phba->pport;
12757 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
12758 rc = lpfc_sli_issue_mbox(cq->phba, mbox, MBX_POLL);
12759 /* The IOCTL status is embedded in the mailbox subheader. */
12760 shdr = (union lpfc_sli4_cfg_shdr *)
12761 &mbox->u.mqe.un.wq_create.header.cfg_shdr;
12762 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12763 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12764 if (shdr_status || shdr_add_status || rc) {
12765 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12766 "2506 CQ_DESTROY mailbox failed with "
12767 "status x%x add_status x%x, mbx status x%x\n",
12768 shdr_status, shdr_add_status, rc);
12769 status = -ENXIO;
12770 }
12771 /* Remove cq from any list */
12772 list_del_init(&cq->list);
James Smart8fa38512009-07-19 10:01:03 -040012773 mempool_free(mbox, cq->phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040012774 return status;
12775}
12776
12777/**
James Smart04c68492009-05-22 14:52:52 -040012778 * lpfc_mq_destroy - Destroy a Mailbox Queue on the HBA
12779 * @qm: The queue structure associated with the queue to destroy.
12780 *
12781 * This function destroys a queue, as detailed in @mq by sending an mailbox
12782 * command, specific to the type of queue, to the HBA.
12783 *
12784 * The @mq struct is used to get the queue ID of the queue to destroy.
12785 *
12786 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040012787 * command fails this function will return -ENXIO.
James Smart04c68492009-05-22 14:52:52 -040012788 **/
12789uint32_t
12790lpfc_mq_destroy(struct lpfc_hba *phba, struct lpfc_queue *mq)
12791{
12792 LPFC_MBOXQ_t *mbox;
12793 int rc, length, status = 0;
12794 uint32_t shdr_status, shdr_add_status;
12795 union lpfc_sli4_cfg_shdr *shdr;
12796
James Smart2e90f4b2011-12-13 13:22:37 -050012797 /* sanity check on queue memory */
James Smart04c68492009-05-22 14:52:52 -040012798 if (!mq)
12799 return -ENODEV;
12800 mbox = mempool_alloc(mq->phba->mbox_mem_pool, GFP_KERNEL);
12801 if (!mbox)
12802 return -ENOMEM;
12803 length = (sizeof(struct lpfc_mbx_mq_destroy) -
12804 sizeof(struct lpfc_sli4_cfg_mhdr));
12805 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
12806 LPFC_MBOX_OPCODE_MQ_DESTROY,
12807 length, LPFC_SLI4_MBX_EMBED);
12808 bf_set(lpfc_mbx_mq_destroy_q_id, &mbox->u.mqe.un.mq_destroy.u.request,
12809 mq->queue_id);
12810 mbox->vport = mq->phba->pport;
12811 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
12812 rc = lpfc_sli_issue_mbox(mq->phba, mbox, MBX_POLL);
12813 /* The IOCTL status is embedded in the mailbox subheader. */
12814 shdr = (union lpfc_sli4_cfg_shdr *)
12815 &mbox->u.mqe.un.mq_destroy.header.cfg_shdr;
12816 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12817 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12818 if (shdr_status || shdr_add_status || rc) {
12819 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12820 "2507 MQ_DESTROY mailbox failed with "
12821 "status x%x add_status x%x, mbx status x%x\n",
12822 shdr_status, shdr_add_status, rc);
12823 status = -ENXIO;
12824 }
12825 /* Remove mq from any list */
12826 list_del_init(&mq->list);
James Smart8fa38512009-07-19 10:01:03 -040012827 mempool_free(mbox, mq->phba->mbox_mem_pool);
James Smart04c68492009-05-22 14:52:52 -040012828 return status;
12829}
12830
12831/**
James Smart4f774512009-05-22 14:52:35 -040012832 * lpfc_wq_destroy - Destroy a Work Queue on the HBA
12833 * @wq: The queue structure associated with the queue to destroy.
12834 *
12835 * This function destroys a queue, as detailed in @wq by sending an mailbox
12836 * command, specific to the type of queue, to the HBA.
12837 *
12838 * The @wq struct is used to get the queue ID of the queue to destroy.
12839 *
12840 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040012841 * command fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040012842 **/
12843uint32_t
12844lpfc_wq_destroy(struct lpfc_hba *phba, struct lpfc_queue *wq)
12845{
12846 LPFC_MBOXQ_t *mbox;
12847 int rc, length, status = 0;
12848 uint32_t shdr_status, shdr_add_status;
12849 union lpfc_sli4_cfg_shdr *shdr;
12850
James Smart2e90f4b2011-12-13 13:22:37 -050012851 /* sanity check on queue memory */
James Smart4f774512009-05-22 14:52:35 -040012852 if (!wq)
12853 return -ENODEV;
12854 mbox = mempool_alloc(wq->phba->mbox_mem_pool, GFP_KERNEL);
12855 if (!mbox)
12856 return -ENOMEM;
12857 length = (sizeof(struct lpfc_mbx_wq_destroy) -
12858 sizeof(struct lpfc_sli4_cfg_mhdr));
12859 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
12860 LPFC_MBOX_OPCODE_FCOE_WQ_DESTROY,
12861 length, LPFC_SLI4_MBX_EMBED);
12862 bf_set(lpfc_mbx_wq_destroy_q_id, &mbox->u.mqe.un.wq_destroy.u.request,
12863 wq->queue_id);
12864 mbox->vport = wq->phba->pport;
12865 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
12866 rc = lpfc_sli_issue_mbox(wq->phba, mbox, MBX_POLL);
12867 shdr = (union lpfc_sli4_cfg_shdr *)
12868 &mbox->u.mqe.un.wq_destroy.header.cfg_shdr;
12869 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12870 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12871 if (shdr_status || shdr_add_status || rc) {
12872 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12873 "2508 WQ_DESTROY mailbox failed with "
12874 "status x%x add_status x%x, mbx status x%x\n",
12875 shdr_status, shdr_add_status, rc);
12876 status = -ENXIO;
12877 }
12878 /* Remove wq from any list */
12879 list_del_init(&wq->list);
James Smart8fa38512009-07-19 10:01:03 -040012880 mempool_free(mbox, wq->phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040012881 return status;
12882}
12883
12884/**
12885 * lpfc_rq_destroy - Destroy a Receive Queue on the HBA
12886 * @rq: The queue structure associated with the queue to destroy.
12887 *
12888 * This function destroys a queue, as detailed in @rq by sending an mailbox
12889 * command, specific to the type of queue, to the HBA.
12890 *
12891 * The @rq struct is used to get the queue ID of the queue to destroy.
12892 *
12893 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040012894 * command fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040012895 **/
12896uint32_t
12897lpfc_rq_destroy(struct lpfc_hba *phba, struct lpfc_queue *hrq,
12898 struct lpfc_queue *drq)
12899{
12900 LPFC_MBOXQ_t *mbox;
12901 int rc, length, status = 0;
12902 uint32_t shdr_status, shdr_add_status;
12903 union lpfc_sli4_cfg_shdr *shdr;
12904
James Smart2e90f4b2011-12-13 13:22:37 -050012905 /* sanity check on queue memory */
James Smart4f774512009-05-22 14:52:35 -040012906 if (!hrq || !drq)
12907 return -ENODEV;
12908 mbox = mempool_alloc(hrq->phba->mbox_mem_pool, GFP_KERNEL);
12909 if (!mbox)
12910 return -ENOMEM;
12911 length = (sizeof(struct lpfc_mbx_rq_destroy) -
James Smartfedd3b72011-02-16 12:39:24 -050012912 sizeof(struct lpfc_sli4_cfg_mhdr));
James Smart4f774512009-05-22 14:52:35 -040012913 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
12914 LPFC_MBOX_OPCODE_FCOE_RQ_DESTROY,
12915 length, LPFC_SLI4_MBX_EMBED);
12916 bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
12917 hrq->queue_id);
12918 mbox->vport = hrq->phba->pport;
12919 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
12920 rc = lpfc_sli_issue_mbox(hrq->phba, mbox, MBX_POLL);
12921 /* The IOCTL status is embedded in the mailbox subheader. */
12922 shdr = (union lpfc_sli4_cfg_shdr *)
12923 &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
12924 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12925 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12926 if (shdr_status || shdr_add_status || rc) {
12927 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12928 "2509 RQ_DESTROY mailbox failed with "
12929 "status x%x add_status x%x, mbx status x%x\n",
12930 shdr_status, shdr_add_status, rc);
12931 if (rc != MBX_TIMEOUT)
12932 mempool_free(mbox, hrq->phba->mbox_mem_pool);
12933 return -ENXIO;
12934 }
12935 bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
12936 drq->queue_id);
12937 rc = lpfc_sli_issue_mbox(drq->phba, mbox, MBX_POLL);
12938 shdr = (union lpfc_sli4_cfg_shdr *)
12939 &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
12940 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12941 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12942 if (shdr_status || shdr_add_status || rc) {
12943 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12944 "2510 RQ_DESTROY mailbox failed with "
12945 "status x%x add_status x%x, mbx status x%x\n",
12946 shdr_status, shdr_add_status, rc);
12947 status = -ENXIO;
12948 }
12949 list_del_init(&hrq->list);
12950 list_del_init(&drq->list);
James Smart8fa38512009-07-19 10:01:03 -040012951 mempool_free(mbox, hrq->phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040012952 return status;
12953}
12954
12955/**
12956 * lpfc_sli4_post_sgl - Post scatter gather list for an XRI to HBA
12957 * @phba: The virtual port for which this call being executed.
12958 * @pdma_phys_addr0: Physical address of the 1st SGL page.
12959 * @pdma_phys_addr1: Physical address of the 2nd SGL page.
12960 * @xritag: the xritag that ties this io to the SGL pages.
12961 *
12962 * This routine will post the sgl pages for the IO that has the xritag
12963 * that is in the iocbq structure. The xritag is assigned during iocbq
12964 * creation and persists for as long as the driver is loaded.
12965 * if the caller has fewer than 256 scatter gather segments to map then
12966 * pdma_phys_addr1 should be 0.
12967 * If the caller needs to map more than 256 scatter gather segment then
12968 * pdma_phys_addr1 should be a valid physical address.
12969 * physical address for SGLs must be 64 byte aligned.
12970 * If you are going to map 2 SGL's then the first one must have 256 entries
12971 * the second sgl can have between 1 and 256 entries.
12972 *
12973 * Return codes:
12974 * 0 - Success
12975 * -ENXIO, -ENOMEM - Failure
12976 **/
12977int
12978lpfc_sli4_post_sgl(struct lpfc_hba *phba,
12979 dma_addr_t pdma_phys_addr0,
12980 dma_addr_t pdma_phys_addr1,
12981 uint16_t xritag)
12982{
12983 struct lpfc_mbx_post_sgl_pages *post_sgl_pages;
12984 LPFC_MBOXQ_t *mbox;
12985 int rc;
12986 uint32_t shdr_status, shdr_add_status;
James Smart6d368e52011-05-24 11:44:12 -040012987 uint32_t mbox_tmo;
James Smart4f774512009-05-22 14:52:35 -040012988 union lpfc_sli4_cfg_shdr *shdr;
12989
12990 if (xritag == NO_XRI) {
12991 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12992 "0364 Invalid param:\n");
12993 return -EINVAL;
12994 }
12995
12996 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
12997 if (!mbox)
12998 return -ENOMEM;
12999
13000 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13001 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES,
13002 sizeof(struct lpfc_mbx_post_sgl_pages) -
James Smartfedd3b72011-02-16 12:39:24 -050013003 sizeof(struct lpfc_sli4_cfg_mhdr), LPFC_SLI4_MBX_EMBED);
James Smart4f774512009-05-22 14:52:35 -040013004
13005 post_sgl_pages = (struct lpfc_mbx_post_sgl_pages *)
13006 &mbox->u.mqe.un.post_sgl_pages;
13007 bf_set(lpfc_post_sgl_pages_xri, post_sgl_pages, xritag);
13008 bf_set(lpfc_post_sgl_pages_xricnt, post_sgl_pages, 1);
13009
13010 post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_lo =
13011 cpu_to_le32(putPaddrLow(pdma_phys_addr0));
13012 post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_hi =
13013 cpu_to_le32(putPaddrHigh(pdma_phys_addr0));
13014
13015 post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_lo =
13016 cpu_to_le32(putPaddrLow(pdma_phys_addr1));
13017 post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_hi =
13018 cpu_to_le32(putPaddrHigh(pdma_phys_addr1));
13019 if (!phba->sli4_hba.intr_enable)
13020 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
James Smart6d368e52011-05-24 11:44:12 -040013021 else {
James Smarta183a152011-10-10 21:32:43 -040013022 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -040013023 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
13024 }
James Smart4f774512009-05-22 14:52:35 -040013025 /* The IOCTL status is embedded in the mailbox subheader. */
13026 shdr = (union lpfc_sli4_cfg_shdr *) &post_sgl_pages->header.cfg_shdr;
13027 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13028 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13029 if (rc != MBX_TIMEOUT)
13030 mempool_free(mbox, phba->mbox_mem_pool);
13031 if (shdr_status || shdr_add_status || rc) {
13032 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13033 "2511 POST_SGL mailbox failed with "
13034 "status x%x add_status x%x, mbx status x%x\n",
13035 shdr_status, shdr_add_status, rc);
13036 rc = -ENXIO;
13037 }
13038 return 0;
13039}
James Smart4f774512009-05-22 14:52:35 -040013040
13041/**
James Smart88a2cfb2011-07-22 18:36:33 -040013042 * lpfc_sli4_alloc_xri - Get an available rpi in the device's range
James Smart6d368e52011-05-24 11:44:12 -040013043 * @phba: pointer to lpfc hba data structure.
13044 *
13045 * This routine is invoked to post rpi header templates to the
James Smart88a2cfb2011-07-22 18:36:33 -040013046 * HBA consistent with the SLI-4 interface spec. This routine
13047 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
13048 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
James Smart6d368e52011-05-24 11:44:12 -040013049 *
James Smart88a2cfb2011-07-22 18:36:33 -040013050 * Returns
13051 * A nonzero rpi defined as rpi_base <= rpi < max_rpi if successful
13052 * LPFC_RPI_ALLOC_ERROR if no rpis are available.
13053 **/
James Smart6d368e52011-05-24 11:44:12 -040013054uint16_t
13055lpfc_sli4_alloc_xri(struct lpfc_hba *phba)
13056{
13057 unsigned long xri;
13058
13059 /*
13060 * Fetch the next logical xri. Because this index is logical,
13061 * the driver starts at 0 each time.
13062 */
13063 spin_lock_irq(&phba->hbalock);
13064 xri = find_next_zero_bit(phba->sli4_hba.xri_bmask,
13065 phba->sli4_hba.max_cfg_param.max_xri, 0);
13066 if (xri >= phba->sli4_hba.max_cfg_param.max_xri) {
13067 spin_unlock_irq(&phba->hbalock);
13068 return NO_XRI;
13069 } else {
13070 set_bit(xri, phba->sli4_hba.xri_bmask);
13071 phba->sli4_hba.max_cfg_param.xri_used++;
13072 phba->sli4_hba.xri_count++;
13073 }
13074
13075 spin_unlock_irq(&phba->hbalock);
13076 return xri;
13077}
13078
13079/**
13080 * lpfc_sli4_free_xri - Release an xri for reuse.
13081 * @phba: pointer to lpfc hba data structure.
13082 *
13083 * This routine is invoked to release an xri to the pool of
13084 * available rpis maintained by the driver.
13085 **/
13086void
13087__lpfc_sli4_free_xri(struct lpfc_hba *phba, int xri)
13088{
13089 if (test_and_clear_bit(xri, phba->sli4_hba.xri_bmask)) {
13090 phba->sli4_hba.xri_count--;
13091 phba->sli4_hba.max_cfg_param.xri_used--;
13092 }
13093}
13094
13095/**
13096 * lpfc_sli4_free_xri - Release an xri for reuse.
13097 * @phba: pointer to lpfc hba data structure.
13098 *
13099 * This routine is invoked to release an xri to the pool of
13100 * available rpis maintained by the driver.
13101 **/
13102void
13103lpfc_sli4_free_xri(struct lpfc_hba *phba, int xri)
13104{
13105 spin_lock_irq(&phba->hbalock);
13106 __lpfc_sli4_free_xri(phba, xri);
13107 spin_unlock_irq(&phba->hbalock);
13108}
13109
13110/**
James Smart4f774512009-05-22 14:52:35 -040013111 * lpfc_sli4_next_xritag - Get an xritag for the io
13112 * @phba: Pointer to HBA context object.
13113 *
13114 * This function gets an xritag for the iocb. If there is no unused xritag
13115 * it will return 0xffff.
13116 * The function returns the allocated xritag if successful, else returns zero.
13117 * Zero is not a valid xritag.
13118 * The caller is not required to hold any lock.
13119 **/
13120uint16_t
13121lpfc_sli4_next_xritag(struct lpfc_hba *phba)
13122{
James Smart6d368e52011-05-24 11:44:12 -040013123 uint16_t xri_index;
James Smart4f774512009-05-22 14:52:35 -040013124
James Smart6d368e52011-05-24 11:44:12 -040013125 xri_index = lpfc_sli4_alloc_xri(phba);
13126 if (xri_index != NO_XRI)
13127 return xri_index;
13128
13129 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart4f774512009-05-22 14:52:35 -040013130 "2004 Failed to allocate XRI.last XRITAG is %d"
13131 " Max XRI is %d, Used XRI is %d\n",
James Smart6d368e52011-05-24 11:44:12 -040013132 xri_index,
James Smart4f774512009-05-22 14:52:35 -040013133 phba->sli4_hba.max_cfg_param.max_xri,
13134 phba->sli4_hba.max_cfg_param.xri_used);
James Smart6d368e52011-05-24 11:44:12 -040013135 return NO_XRI;
James Smart4f774512009-05-22 14:52:35 -040013136}
13137
13138/**
James Smart6d368e52011-05-24 11:44:12 -040013139 * lpfc_sli4_post_els_sgl_list - post a block of ELS sgls to the port.
James Smart4f774512009-05-22 14:52:35 -040013140 * @phba: pointer to lpfc hba data structure.
13141 *
13142 * This routine is invoked to post a block of driver's sgl pages to the
13143 * HBA using non-embedded mailbox command. No Lock is held. This routine
13144 * is only called when the driver is loading and after all IO has been
13145 * stopped.
13146 **/
13147int
James Smart6d368e52011-05-24 11:44:12 -040013148lpfc_sli4_post_els_sgl_list(struct lpfc_hba *phba)
James Smart4f774512009-05-22 14:52:35 -040013149{
13150 struct lpfc_sglq *sglq_entry;
13151 struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
13152 struct sgl_page_pairs *sgl_pg_pairs;
13153 void *viraddr;
13154 LPFC_MBOXQ_t *mbox;
13155 uint32_t reqlen, alloclen, pg_pairs;
13156 uint32_t mbox_tmo;
James Smart6d368e52011-05-24 11:44:12 -040013157 uint16_t xritag_start = 0, lxri = 0;
James Smart4f774512009-05-22 14:52:35 -040013158 int els_xri_cnt, rc = 0;
13159 uint32_t shdr_status, shdr_add_status;
13160 union lpfc_sli4_cfg_shdr *shdr;
13161
13162 /* The number of sgls to be posted */
13163 els_xri_cnt = lpfc_sli4_get_els_iocb_cnt(phba);
13164
13165 reqlen = els_xri_cnt * sizeof(struct sgl_page_pairs) +
13166 sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
James Smart49198b32010-04-06 15:04:33 -040013167 if (reqlen > SLI4_PAGE_SIZE) {
James Smart4f774512009-05-22 14:52:35 -040013168 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
13169 "2559 Block sgl registration required DMA "
13170 "size (%d) great than a page\n", reqlen);
13171 return -ENOMEM;
13172 }
13173 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart6d368e52011-05-24 11:44:12 -040013174 if (!mbox)
James Smart4f774512009-05-22 14:52:35 -040013175 return -ENOMEM;
James Smart4f774512009-05-22 14:52:35 -040013176
13177 /* Allocate DMA memory and set up the non-embedded mailbox command */
13178 alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13179 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
13180 LPFC_SLI4_MBX_NEMBED);
13181
13182 if (alloclen < reqlen) {
13183 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13184 "0285 Allocated DMA memory size (%d) is "
13185 "less than the requested DMA memory "
13186 "size (%d)\n", alloclen, reqlen);
13187 lpfc_sli4_mbox_cmd_free(phba, mbox);
13188 return -ENOMEM;
13189 }
James Smart4f774512009-05-22 14:52:35 -040013190 /* Set up the SGL pages in the non-embedded DMA pages */
James Smart6d368e52011-05-24 11:44:12 -040013191 viraddr = mbox->sge_array->addr[0];
James Smart4f774512009-05-22 14:52:35 -040013192 sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
13193 sgl_pg_pairs = &sgl->sgl_pg_pairs;
13194
13195 for (pg_pairs = 0; pg_pairs < els_xri_cnt; pg_pairs++) {
13196 sglq_entry = phba->sli4_hba.lpfc_els_sgl_array[pg_pairs];
James Smart6d368e52011-05-24 11:44:12 -040013197
13198 /*
13199 * Assign the sglq a physical xri only if the driver has not
13200 * initialized those resources. A port reset only needs
13201 * the sglq's posted.
13202 */
13203 if (bf_get(lpfc_xri_rsrc_rdy, &phba->sli4_hba.sli4_flags) !=
13204 LPFC_XRI_RSRC_RDY) {
13205 lxri = lpfc_sli4_next_xritag(phba);
13206 if (lxri == NO_XRI) {
13207 lpfc_sli4_mbox_cmd_free(phba, mbox);
13208 return -ENOMEM;
13209 }
13210 sglq_entry->sli4_lxritag = lxri;
13211 sglq_entry->sli4_xritag = phba->sli4_hba.xri_ids[lxri];
13212 }
13213
James Smart4f774512009-05-22 14:52:35 -040013214 /* Set up the sge entry */
13215 sgl_pg_pairs->sgl_pg0_addr_lo =
13216 cpu_to_le32(putPaddrLow(sglq_entry->phys));
13217 sgl_pg_pairs->sgl_pg0_addr_hi =
13218 cpu_to_le32(putPaddrHigh(sglq_entry->phys));
13219 sgl_pg_pairs->sgl_pg1_addr_lo =
13220 cpu_to_le32(putPaddrLow(0));
13221 sgl_pg_pairs->sgl_pg1_addr_hi =
13222 cpu_to_le32(putPaddrHigh(0));
James Smart6d368e52011-05-24 11:44:12 -040013223
James Smart4f774512009-05-22 14:52:35 -040013224 /* Keep the first xritag on the list */
13225 if (pg_pairs == 0)
13226 xritag_start = sglq_entry->sli4_xritag;
13227 sgl_pg_pairs++;
13228 }
James Smart6d368e52011-05-24 11:44:12 -040013229
13230 /* Complete initialization and perform endian conversion. */
James Smart4f774512009-05-22 14:52:35 -040013231 bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
James Smart6a9c52c2009-10-02 15:16:51 -040013232 bf_set(lpfc_post_sgl_pages_xricnt, sgl, els_xri_cnt);
James Smart4f774512009-05-22 14:52:35 -040013233 sgl->word0 = cpu_to_le32(sgl->word0);
James Smart4f774512009-05-22 14:52:35 -040013234 if (!phba->sli4_hba.intr_enable)
13235 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13236 else {
James Smarta183a152011-10-10 21:32:43 -040013237 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart4f774512009-05-22 14:52:35 -040013238 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
13239 }
13240 shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
13241 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13242 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13243 if (rc != MBX_TIMEOUT)
13244 lpfc_sli4_mbox_cmd_free(phba, mbox);
13245 if (shdr_status || shdr_add_status || rc) {
13246 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13247 "2513 POST_SGL_BLOCK mailbox command failed "
13248 "status x%x add_status x%x mbx status x%x\n",
13249 shdr_status, shdr_add_status, rc);
13250 rc = -ENXIO;
13251 }
James Smart6d368e52011-05-24 11:44:12 -040013252
13253 if (rc == 0)
13254 bf_set(lpfc_xri_rsrc_rdy, &phba->sli4_hba.sli4_flags,
13255 LPFC_XRI_RSRC_RDY);
13256 return rc;
13257}
13258
13259/**
13260 * lpfc_sli4_post_els_sgl_list_ext - post a block of ELS sgls to the port.
13261 * @phba: pointer to lpfc hba data structure.
13262 *
13263 * This routine is invoked to post a block of driver's sgl pages to the
13264 * HBA using non-embedded mailbox command. No Lock is held. This routine
13265 * is only called when the driver is loading and after all IO has been
13266 * stopped.
13267 **/
13268int
13269lpfc_sli4_post_els_sgl_list_ext(struct lpfc_hba *phba)
13270{
13271 struct lpfc_sglq *sglq_entry;
13272 struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
13273 struct sgl_page_pairs *sgl_pg_pairs;
13274 void *viraddr;
13275 LPFC_MBOXQ_t *mbox;
13276 uint32_t reqlen, alloclen, index;
13277 uint32_t mbox_tmo;
13278 uint16_t rsrc_start, rsrc_size, els_xri_cnt;
13279 uint16_t xritag_start = 0, lxri = 0;
13280 struct lpfc_rsrc_blks *rsrc_blk;
13281 int cnt, ttl_cnt, rc = 0;
13282 int loop_cnt;
13283 uint32_t shdr_status, shdr_add_status;
13284 union lpfc_sli4_cfg_shdr *shdr;
13285
13286 /* The number of sgls to be posted */
13287 els_xri_cnt = lpfc_sli4_get_els_iocb_cnt(phba);
13288
13289 reqlen = els_xri_cnt * sizeof(struct sgl_page_pairs) +
13290 sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
13291 if (reqlen > SLI4_PAGE_SIZE) {
13292 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
13293 "2989 Block sgl registration required DMA "
13294 "size (%d) great than a page\n", reqlen);
13295 return -ENOMEM;
13296 }
13297
13298 cnt = 0;
13299 ttl_cnt = 0;
13300 list_for_each_entry(rsrc_blk, &phba->sli4_hba.lpfc_xri_blk_list,
13301 list) {
13302 rsrc_start = rsrc_blk->rsrc_start;
13303 rsrc_size = rsrc_blk->rsrc_size;
13304
13305 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
13306 "3014 Working ELS Extent start %d, cnt %d\n",
13307 rsrc_start, rsrc_size);
13308
13309 loop_cnt = min(els_xri_cnt, rsrc_size);
13310 if (ttl_cnt + loop_cnt >= els_xri_cnt) {
13311 loop_cnt = els_xri_cnt - ttl_cnt;
13312 ttl_cnt = els_xri_cnt;
13313 }
13314
13315 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13316 if (!mbox)
13317 return -ENOMEM;
13318 /*
13319 * Allocate DMA memory and set up the non-embedded mailbox
13320 * command.
13321 */
13322 alloclen = lpfc_sli4_config(phba, mbox,
13323 LPFC_MBOX_SUBSYSTEM_FCOE,
13324 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES,
13325 reqlen, LPFC_SLI4_MBX_NEMBED);
13326 if (alloclen < reqlen) {
13327 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13328 "2987 Allocated DMA memory size (%d) "
13329 "is less than the requested DMA memory "
13330 "size (%d)\n", alloclen, reqlen);
13331 lpfc_sli4_mbox_cmd_free(phba, mbox);
13332 return -ENOMEM;
13333 }
13334
13335 /* Set up the SGL pages in the non-embedded DMA pages */
13336 viraddr = mbox->sge_array->addr[0];
13337 sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
13338 sgl_pg_pairs = &sgl->sgl_pg_pairs;
13339
13340 /*
13341 * The starting resource may not begin at zero. Control
13342 * the loop variants via the block resource parameters,
13343 * but handle the sge pointers with a zero-based index
13344 * that doesn't get reset per loop pass.
13345 */
13346 for (index = rsrc_start;
13347 index < rsrc_start + loop_cnt;
13348 index++) {
13349 sglq_entry = phba->sli4_hba.lpfc_els_sgl_array[cnt];
13350
13351 /*
13352 * Assign the sglq a physical xri only if the driver
13353 * has not initialized those resources. A port reset
13354 * only needs the sglq's posted.
13355 */
13356 if (bf_get(lpfc_xri_rsrc_rdy,
13357 &phba->sli4_hba.sli4_flags) !=
13358 LPFC_XRI_RSRC_RDY) {
13359 lxri = lpfc_sli4_next_xritag(phba);
13360 if (lxri == NO_XRI) {
13361 lpfc_sli4_mbox_cmd_free(phba, mbox);
13362 rc = -ENOMEM;
13363 goto err_exit;
13364 }
13365 sglq_entry->sli4_lxritag = lxri;
13366 sglq_entry->sli4_xritag =
13367 phba->sli4_hba.xri_ids[lxri];
13368 }
13369
13370 /* Set up the sge entry */
13371 sgl_pg_pairs->sgl_pg0_addr_lo =
13372 cpu_to_le32(putPaddrLow(sglq_entry->phys));
13373 sgl_pg_pairs->sgl_pg0_addr_hi =
13374 cpu_to_le32(putPaddrHigh(sglq_entry->phys));
13375 sgl_pg_pairs->sgl_pg1_addr_lo =
13376 cpu_to_le32(putPaddrLow(0));
13377 sgl_pg_pairs->sgl_pg1_addr_hi =
13378 cpu_to_le32(putPaddrHigh(0));
13379
13380 /* Track the starting physical XRI for the mailbox. */
13381 if (index == rsrc_start)
13382 xritag_start = sglq_entry->sli4_xritag;
13383 sgl_pg_pairs++;
13384 cnt++;
13385 }
13386
13387 /* Complete initialization and perform endian conversion. */
13388 rsrc_blk->rsrc_used += loop_cnt;
13389 bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
13390 bf_set(lpfc_post_sgl_pages_xricnt, sgl, loop_cnt);
13391 sgl->word0 = cpu_to_le32(sgl->word0);
13392
13393 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
13394 "3015 Post ELS Extent SGL, start %d, "
13395 "cnt %d, used %d\n",
13396 xritag_start, loop_cnt, rsrc_blk->rsrc_used);
13397 if (!phba->sli4_hba.intr_enable)
13398 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13399 else {
James Smarta183a152011-10-10 21:32:43 -040013400 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -040013401 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
13402 }
13403 shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
13404 shdr_status = bf_get(lpfc_mbox_hdr_status,
13405 &shdr->response);
13406 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status,
13407 &shdr->response);
13408 if (rc != MBX_TIMEOUT)
13409 lpfc_sli4_mbox_cmd_free(phba, mbox);
13410 if (shdr_status || shdr_add_status || rc) {
13411 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13412 "2988 POST_SGL_BLOCK mailbox "
13413 "command failed status x%x "
13414 "add_status x%x mbx status x%x\n",
13415 shdr_status, shdr_add_status, rc);
13416 rc = -ENXIO;
13417 goto err_exit;
13418 }
13419 if (ttl_cnt >= els_xri_cnt)
13420 break;
13421 }
13422
13423 err_exit:
13424 if (rc == 0)
13425 bf_set(lpfc_xri_rsrc_rdy, &phba->sli4_hba.sli4_flags,
13426 LPFC_XRI_RSRC_RDY);
James Smart4f774512009-05-22 14:52:35 -040013427 return rc;
13428}
13429
13430/**
13431 * lpfc_sli4_post_scsi_sgl_block - post a block of scsi sgl list to firmware
13432 * @phba: pointer to lpfc hba data structure.
13433 * @sblist: pointer to scsi buffer list.
13434 * @count: number of scsi buffers on the list.
13435 *
13436 * This routine is invoked to post a block of @count scsi sgl pages from a
13437 * SCSI buffer list @sblist to the HBA using non-embedded mailbox command.
13438 * No Lock is held.
13439 *
13440 **/
13441int
13442lpfc_sli4_post_scsi_sgl_block(struct lpfc_hba *phba, struct list_head *sblist,
13443 int cnt)
13444{
13445 struct lpfc_scsi_buf *psb;
13446 struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
13447 struct sgl_page_pairs *sgl_pg_pairs;
13448 void *viraddr;
13449 LPFC_MBOXQ_t *mbox;
13450 uint32_t reqlen, alloclen, pg_pairs;
13451 uint32_t mbox_tmo;
13452 uint16_t xritag_start = 0;
13453 int rc = 0;
13454 uint32_t shdr_status, shdr_add_status;
13455 dma_addr_t pdma_phys_bpl1;
13456 union lpfc_sli4_cfg_shdr *shdr;
13457
13458 /* Calculate the requested length of the dma memory */
13459 reqlen = cnt * sizeof(struct sgl_page_pairs) +
13460 sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
James Smart49198b32010-04-06 15:04:33 -040013461 if (reqlen > SLI4_PAGE_SIZE) {
James Smart4f774512009-05-22 14:52:35 -040013462 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
13463 "0217 Block sgl registration required DMA "
13464 "size (%d) great than a page\n", reqlen);
13465 return -ENOMEM;
13466 }
13467 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13468 if (!mbox) {
13469 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13470 "0283 Failed to allocate mbox cmd memory\n");
13471 return -ENOMEM;
13472 }
13473
13474 /* Allocate DMA memory and set up the non-embedded mailbox command */
13475 alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13476 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
13477 LPFC_SLI4_MBX_NEMBED);
13478
13479 if (alloclen < reqlen) {
13480 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13481 "2561 Allocated DMA memory size (%d) is "
13482 "less than the requested DMA memory "
13483 "size (%d)\n", alloclen, reqlen);
13484 lpfc_sli4_mbox_cmd_free(phba, mbox);
13485 return -ENOMEM;
13486 }
James Smart6d368e52011-05-24 11:44:12 -040013487
James Smart4f774512009-05-22 14:52:35 -040013488 /* Get the first SGE entry from the non-embedded DMA memory */
James Smart4f774512009-05-22 14:52:35 -040013489 viraddr = mbox->sge_array->addr[0];
13490
13491 /* Set up the SGL pages in the non-embedded DMA pages */
13492 sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
13493 sgl_pg_pairs = &sgl->sgl_pg_pairs;
13494
13495 pg_pairs = 0;
13496 list_for_each_entry(psb, sblist, list) {
13497 /* Set up the sge entry */
13498 sgl_pg_pairs->sgl_pg0_addr_lo =
13499 cpu_to_le32(putPaddrLow(psb->dma_phys_bpl));
13500 sgl_pg_pairs->sgl_pg0_addr_hi =
13501 cpu_to_le32(putPaddrHigh(psb->dma_phys_bpl));
13502 if (phba->cfg_sg_dma_buf_size > SGL_PAGE_SIZE)
13503 pdma_phys_bpl1 = psb->dma_phys_bpl + SGL_PAGE_SIZE;
13504 else
13505 pdma_phys_bpl1 = 0;
13506 sgl_pg_pairs->sgl_pg1_addr_lo =
13507 cpu_to_le32(putPaddrLow(pdma_phys_bpl1));
13508 sgl_pg_pairs->sgl_pg1_addr_hi =
13509 cpu_to_le32(putPaddrHigh(pdma_phys_bpl1));
13510 /* Keep the first xritag on the list */
13511 if (pg_pairs == 0)
13512 xritag_start = psb->cur_iocbq.sli4_xritag;
13513 sgl_pg_pairs++;
13514 pg_pairs++;
13515 }
13516 bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
13517 bf_set(lpfc_post_sgl_pages_xricnt, sgl, pg_pairs);
13518 /* Perform endian conversion if necessary */
13519 sgl->word0 = cpu_to_le32(sgl->word0);
13520
13521 if (!phba->sli4_hba.intr_enable)
13522 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13523 else {
James Smarta183a152011-10-10 21:32:43 -040013524 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart4f774512009-05-22 14:52:35 -040013525 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
13526 }
13527 shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
13528 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13529 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13530 if (rc != MBX_TIMEOUT)
13531 lpfc_sli4_mbox_cmd_free(phba, mbox);
13532 if (shdr_status || shdr_add_status || rc) {
13533 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13534 "2564 POST_SGL_BLOCK mailbox command failed "
13535 "status x%x add_status x%x mbx status x%x\n",
13536 shdr_status, shdr_add_status, rc);
13537 rc = -ENXIO;
13538 }
13539 return rc;
13540}
13541
13542/**
James Smart6d368e52011-05-24 11:44:12 -040013543 * lpfc_sli4_post_scsi_sgl_blk_ext - post a block of scsi sgls to the port.
13544 * @phba: pointer to lpfc hba data structure.
13545 * @sblist: pointer to scsi buffer list.
13546 * @count: number of scsi buffers on the list.
13547 *
13548 * This routine is invoked to post a block of @count scsi sgl pages from a
13549 * SCSI buffer list @sblist to the HBA using non-embedded mailbox command.
13550 * No Lock is held.
13551 *
13552 **/
13553int
13554lpfc_sli4_post_scsi_sgl_blk_ext(struct lpfc_hba *phba, struct list_head *sblist,
13555 int cnt)
13556{
13557 struct lpfc_scsi_buf *psb = NULL;
13558 struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
13559 struct sgl_page_pairs *sgl_pg_pairs;
13560 void *viraddr;
13561 LPFC_MBOXQ_t *mbox;
13562 uint32_t reqlen, alloclen, pg_pairs;
13563 uint32_t mbox_tmo;
13564 uint16_t xri_start = 0, scsi_xri_start;
13565 uint16_t rsrc_range;
13566 int rc = 0, avail_cnt;
13567 uint32_t shdr_status, shdr_add_status;
13568 dma_addr_t pdma_phys_bpl1;
13569 union lpfc_sli4_cfg_shdr *shdr;
13570 struct lpfc_rsrc_blks *rsrc_blk;
13571 uint32_t xri_cnt = 0;
13572
13573 /* Calculate the total requested length of the dma memory */
13574 reqlen = cnt * sizeof(struct sgl_page_pairs) +
13575 sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
13576 if (reqlen > SLI4_PAGE_SIZE) {
13577 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
13578 "2932 Block sgl registration required DMA "
13579 "size (%d) great than a page\n", reqlen);
13580 return -ENOMEM;
13581 }
13582
13583 /*
13584 * The use of extents requires the driver to post the sgl headers
13585 * in multiple postings to meet the contiguous resource assignment.
13586 */
13587 psb = list_prepare_entry(psb, sblist, list);
13588 scsi_xri_start = phba->sli4_hba.scsi_xri_start;
13589 list_for_each_entry(rsrc_blk, &phba->sli4_hba.lpfc_xri_blk_list,
13590 list) {
13591 rsrc_range = rsrc_blk->rsrc_start + rsrc_blk->rsrc_size;
13592 if (rsrc_range < scsi_xri_start)
13593 continue;
13594 else if (rsrc_blk->rsrc_used >= rsrc_blk->rsrc_size)
13595 continue;
13596 else
13597 avail_cnt = rsrc_blk->rsrc_size - rsrc_blk->rsrc_used;
13598
13599 reqlen = (avail_cnt * sizeof(struct sgl_page_pairs)) +
13600 sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
13601 /*
13602 * Allocate DMA memory and set up the non-embedded mailbox
13603 * command. The mbox is used to post an SGL page per loop
13604 * but the DMA memory has a use-once semantic so the mailbox
13605 * is used and freed per loop pass.
13606 */
13607 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13608 if (!mbox) {
13609 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13610 "2933 Failed to allocate mbox cmd "
13611 "memory\n");
13612 return -ENOMEM;
13613 }
13614 alloclen = lpfc_sli4_config(phba, mbox,
13615 LPFC_MBOX_SUBSYSTEM_FCOE,
13616 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES,
13617 reqlen,
13618 LPFC_SLI4_MBX_NEMBED);
13619 if (alloclen < reqlen) {
13620 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13621 "2934 Allocated DMA memory size (%d) "
13622 "is less than the requested DMA memory "
13623 "size (%d)\n", alloclen, reqlen);
13624 lpfc_sli4_mbox_cmd_free(phba, mbox);
13625 return -ENOMEM;
13626 }
13627
13628 /* Get the first SGE entry from the non-embedded DMA memory */
13629 viraddr = mbox->sge_array->addr[0];
13630
13631 /* Set up the SGL pages in the non-embedded DMA pages */
13632 sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
13633 sgl_pg_pairs = &sgl->sgl_pg_pairs;
13634
13635 /* pg_pairs tracks posted SGEs per loop iteration. */
13636 pg_pairs = 0;
13637 list_for_each_entry_continue(psb, sblist, list) {
13638 /* Set up the sge entry */
13639 sgl_pg_pairs->sgl_pg0_addr_lo =
13640 cpu_to_le32(putPaddrLow(psb->dma_phys_bpl));
13641 sgl_pg_pairs->sgl_pg0_addr_hi =
13642 cpu_to_le32(putPaddrHigh(psb->dma_phys_bpl));
13643 if (phba->cfg_sg_dma_buf_size > SGL_PAGE_SIZE)
13644 pdma_phys_bpl1 = psb->dma_phys_bpl +
13645 SGL_PAGE_SIZE;
13646 else
13647 pdma_phys_bpl1 = 0;
13648 sgl_pg_pairs->sgl_pg1_addr_lo =
13649 cpu_to_le32(putPaddrLow(pdma_phys_bpl1));
13650 sgl_pg_pairs->sgl_pg1_addr_hi =
13651 cpu_to_le32(putPaddrHigh(pdma_phys_bpl1));
13652 /* Keep the first xri for this extent. */
13653 if (pg_pairs == 0)
13654 xri_start = psb->cur_iocbq.sli4_xritag;
13655 sgl_pg_pairs++;
13656 pg_pairs++;
13657 xri_cnt++;
13658
13659 /*
13660 * Track two exit conditions - the loop has constructed
13661 * all of the caller's SGE pairs or all available
13662 * resource IDs in this extent are consumed.
13663 */
13664 if ((xri_cnt == cnt) || (pg_pairs >= avail_cnt))
13665 break;
13666 }
13667 rsrc_blk->rsrc_used += pg_pairs;
13668 bf_set(lpfc_post_sgl_pages_xri, sgl, xri_start);
13669 bf_set(lpfc_post_sgl_pages_xricnt, sgl, pg_pairs);
13670
13671 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
13672 "3016 Post SCSI Extent SGL, start %d, cnt %d "
13673 "blk use %d\n",
13674 xri_start, pg_pairs, rsrc_blk->rsrc_used);
13675 /* Perform endian conversion if necessary */
13676 sgl->word0 = cpu_to_le32(sgl->word0);
13677 if (!phba->sli4_hba.intr_enable)
13678 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13679 else {
James Smarta183a152011-10-10 21:32:43 -040013680 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -040013681 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
13682 }
13683 shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
13684 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13685 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status,
13686 &shdr->response);
13687 if (rc != MBX_TIMEOUT)
13688 lpfc_sli4_mbox_cmd_free(phba, mbox);
13689 if (shdr_status || shdr_add_status || rc) {
13690 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13691 "2935 POST_SGL_BLOCK mailbox command "
13692 "failed status x%x add_status x%x "
13693 "mbx status x%x\n",
13694 shdr_status, shdr_add_status, rc);
13695 return -ENXIO;
13696 }
13697
13698 /* Post only what is requested. */
13699 if (xri_cnt >= cnt)
13700 break;
13701 }
13702 return rc;
13703}
13704
13705/**
James Smart4f774512009-05-22 14:52:35 -040013706 * lpfc_fc_frame_check - Check that this frame is a valid frame to handle
13707 * @phba: pointer to lpfc_hba struct that the frame was received on
13708 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
13709 *
13710 * This function checks the fields in the @fc_hdr to see if the FC frame is a
13711 * valid type of frame that the LPFC driver will handle. This function will
13712 * return a zero if the frame is a valid frame or a non zero value when the
13713 * frame does not pass the check.
13714 **/
13715static int
13716lpfc_fc_frame_check(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr)
13717{
Tomas Henzl474ffb72010-12-22 16:52:40 +010013718 /* make rctl_names static to save stack space */
13719 static char *rctl_names[] = FC_RCTL_NAMES_INIT;
James Smart4f774512009-05-22 14:52:35 -040013720 char *type_names[] = FC_TYPE_NAMES_INIT;
13721 struct fc_vft_header *fc_vft_hdr;
James Smart546fc852011-03-11 16:06:29 -050013722 uint32_t *header = (uint32_t *) fc_hdr;
James Smart4f774512009-05-22 14:52:35 -040013723
13724 switch (fc_hdr->fh_r_ctl) {
13725 case FC_RCTL_DD_UNCAT: /* uncategorized information */
13726 case FC_RCTL_DD_SOL_DATA: /* solicited data */
13727 case FC_RCTL_DD_UNSOL_CTL: /* unsolicited control */
13728 case FC_RCTL_DD_SOL_CTL: /* solicited control or reply */
13729 case FC_RCTL_DD_UNSOL_DATA: /* unsolicited data */
13730 case FC_RCTL_DD_DATA_DESC: /* data descriptor */
13731 case FC_RCTL_DD_UNSOL_CMD: /* unsolicited command */
13732 case FC_RCTL_DD_CMD_STATUS: /* command status */
13733 case FC_RCTL_ELS_REQ: /* extended link services request */
13734 case FC_RCTL_ELS_REP: /* extended link services reply */
13735 case FC_RCTL_ELS4_REQ: /* FC-4 ELS request */
13736 case FC_RCTL_ELS4_REP: /* FC-4 ELS reply */
13737 case FC_RCTL_BA_NOP: /* basic link service NOP */
13738 case FC_RCTL_BA_ABTS: /* basic link service abort */
13739 case FC_RCTL_BA_RMC: /* remove connection */
13740 case FC_RCTL_BA_ACC: /* basic accept */
13741 case FC_RCTL_BA_RJT: /* basic reject */
13742 case FC_RCTL_BA_PRMT:
13743 case FC_RCTL_ACK_1: /* acknowledge_1 */
13744 case FC_RCTL_ACK_0: /* acknowledge_0 */
13745 case FC_RCTL_P_RJT: /* port reject */
13746 case FC_RCTL_F_RJT: /* fabric reject */
13747 case FC_RCTL_P_BSY: /* port busy */
13748 case FC_RCTL_F_BSY: /* fabric busy to data frame */
13749 case FC_RCTL_F_BSYL: /* fabric busy to link control frame */
13750 case FC_RCTL_LCR: /* link credit reset */
13751 case FC_RCTL_END: /* end */
13752 break;
13753 case FC_RCTL_VFTH: /* Virtual Fabric tagging Header */
13754 fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
13755 fc_hdr = &((struct fc_frame_header *)fc_vft_hdr)[1];
13756 return lpfc_fc_frame_check(phba, fc_hdr);
13757 default:
13758 goto drop;
13759 }
13760 switch (fc_hdr->fh_type) {
13761 case FC_TYPE_BLS:
13762 case FC_TYPE_ELS:
13763 case FC_TYPE_FCP:
13764 case FC_TYPE_CT:
13765 break;
13766 case FC_TYPE_IP:
13767 case FC_TYPE_ILS:
13768 default:
13769 goto drop;
13770 }
James Smart546fc852011-03-11 16:06:29 -050013771
James Smart4f774512009-05-22 14:52:35 -040013772 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
James Smart546fc852011-03-11 16:06:29 -050013773 "2538 Received frame rctl:%s type:%s "
13774 "Frame Data:%08x %08x %08x %08x %08x %08x\n",
James Smart4f774512009-05-22 14:52:35 -040013775 rctl_names[fc_hdr->fh_r_ctl],
James Smart546fc852011-03-11 16:06:29 -050013776 type_names[fc_hdr->fh_type],
13777 be32_to_cpu(header[0]), be32_to_cpu(header[1]),
13778 be32_to_cpu(header[2]), be32_to_cpu(header[3]),
13779 be32_to_cpu(header[4]), be32_to_cpu(header[5]));
James Smart4f774512009-05-22 14:52:35 -040013780 return 0;
13781drop:
13782 lpfc_printf_log(phba, KERN_WARNING, LOG_ELS,
13783 "2539 Dropped frame rctl:%s type:%s\n",
13784 rctl_names[fc_hdr->fh_r_ctl],
13785 type_names[fc_hdr->fh_type]);
13786 return 1;
13787}
13788
13789/**
13790 * lpfc_fc_hdr_get_vfi - Get the VFI from an FC frame
13791 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
13792 *
13793 * This function processes the FC header to retrieve the VFI from the VF
13794 * header, if one exists. This function will return the VFI if one exists
13795 * or 0 if no VSAN Header exists.
13796 **/
13797static uint32_t
13798lpfc_fc_hdr_get_vfi(struct fc_frame_header *fc_hdr)
13799{
13800 struct fc_vft_header *fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
13801
13802 if (fc_hdr->fh_r_ctl != FC_RCTL_VFTH)
13803 return 0;
13804 return bf_get(fc_vft_hdr_vf_id, fc_vft_hdr);
13805}
13806
13807/**
13808 * lpfc_fc_frame_to_vport - Finds the vport that a frame is destined to
13809 * @phba: Pointer to the HBA structure to search for the vport on
13810 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
13811 * @fcfi: The FC Fabric ID that the frame came from
13812 *
13813 * This function searches the @phba for a vport that matches the content of the
13814 * @fc_hdr passed in and the @fcfi. This function uses the @fc_hdr to fetch the
13815 * VFI, if the Virtual Fabric Tagging Header exists, and the DID. This function
13816 * returns the matching vport pointer or NULL if unable to match frame to a
13817 * vport.
13818 **/
13819static struct lpfc_vport *
13820lpfc_fc_frame_to_vport(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr,
13821 uint16_t fcfi)
13822{
13823 struct lpfc_vport **vports;
13824 struct lpfc_vport *vport = NULL;
13825 int i;
13826 uint32_t did = (fc_hdr->fh_d_id[0] << 16 |
13827 fc_hdr->fh_d_id[1] << 8 |
13828 fc_hdr->fh_d_id[2]);
James Smartbf086112011-08-21 21:48:13 -040013829 if (did == Fabric_DID)
13830 return phba->pport;
James Smart4f774512009-05-22 14:52:35 -040013831 vports = lpfc_create_vport_work_array(phba);
13832 if (vports != NULL)
13833 for (i = 0; i <= phba->max_vpi && vports[i] != NULL; i++) {
13834 if (phba->fcf.fcfi == fcfi &&
13835 vports[i]->vfi == lpfc_fc_hdr_get_vfi(fc_hdr) &&
13836 vports[i]->fc_myDID == did) {
13837 vport = vports[i];
13838 break;
13839 }
13840 }
13841 lpfc_destroy_vport_work_array(phba, vports);
13842 return vport;
13843}
13844
13845/**
James Smart45ed1192009-10-02 15:17:02 -040013846 * lpfc_update_rcv_time_stamp - Update vport's rcv seq time stamp
13847 * @vport: The vport to work on.
13848 *
13849 * This function updates the receive sequence time stamp for this vport. The
13850 * receive sequence time stamp indicates the time that the last frame of the
13851 * the sequence that has been idle for the longest amount of time was received.
13852 * the driver uses this time stamp to indicate if any received sequences have
13853 * timed out.
13854 **/
13855void
13856lpfc_update_rcv_time_stamp(struct lpfc_vport *vport)
13857{
13858 struct lpfc_dmabuf *h_buf;
13859 struct hbq_dmabuf *dmabuf = NULL;
13860
13861 /* get the oldest sequence on the rcv list */
13862 h_buf = list_get_first(&vport->rcv_buffer_list,
13863 struct lpfc_dmabuf, list);
13864 if (!h_buf)
13865 return;
13866 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
13867 vport->rcv_buffer_time_stamp = dmabuf->time_stamp;
13868}
13869
13870/**
13871 * lpfc_cleanup_rcv_buffers - Cleans up all outstanding receive sequences.
13872 * @vport: The vport that the received sequences were sent to.
13873 *
13874 * This function cleans up all outstanding received sequences. This is called
13875 * by the driver when a link event or user action invalidates all the received
13876 * sequences.
13877 **/
13878void
13879lpfc_cleanup_rcv_buffers(struct lpfc_vport *vport)
13880{
13881 struct lpfc_dmabuf *h_buf, *hnext;
13882 struct lpfc_dmabuf *d_buf, *dnext;
13883 struct hbq_dmabuf *dmabuf = NULL;
13884
13885 /* start with the oldest sequence on the rcv list */
13886 list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
13887 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
13888 list_del_init(&dmabuf->hbuf.list);
13889 list_for_each_entry_safe(d_buf, dnext,
13890 &dmabuf->dbuf.list, list) {
13891 list_del_init(&d_buf->list);
13892 lpfc_in_buf_free(vport->phba, d_buf);
13893 }
13894 lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
13895 }
13896}
13897
13898/**
13899 * lpfc_rcv_seq_check_edtov - Cleans up timed out receive sequences.
13900 * @vport: The vport that the received sequences were sent to.
13901 *
13902 * This function determines whether any received sequences have timed out by
13903 * first checking the vport's rcv_buffer_time_stamp. If this time_stamp
13904 * indicates that there is at least one timed out sequence this routine will
13905 * go through the received sequences one at a time from most inactive to most
13906 * active to determine which ones need to be cleaned up. Once it has determined
13907 * that a sequence needs to be cleaned up it will simply free up the resources
13908 * without sending an abort.
13909 **/
13910void
13911lpfc_rcv_seq_check_edtov(struct lpfc_vport *vport)
13912{
13913 struct lpfc_dmabuf *h_buf, *hnext;
13914 struct lpfc_dmabuf *d_buf, *dnext;
13915 struct hbq_dmabuf *dmabuf = NULL;
13916 unsigned long timeout;
13917 int abort_count = 0;
13918
13919 timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
13920 vport->rcv_buffer_time_stamp);
13921 if (list_empty(&vport->rcv_buffer_list) ||
13922 time_before(jiffies, timeout))
13923 return;
13924 /* start with the oldest sequence on the rcv list */
13925 list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
13926 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
13927 timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
13928 dmabuf->time_stamp);
13929 if (time_before(jiffies, timeout))
13930 break;
13931 abort_count++;
13932 list_del_init(&dmabuf->hbuf.list);
13933 list_for_each_entry_safe(d_buf, dnext,
13934 &dmabuf->dbuf.list, list) {
13935 list_del_init(&d_buf->list);
13936 lpfc_in_buf_free(vport->phba, d_buf);
13937 }
13938 lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
13939 }
13940 if (abort_count)
13941 lpfc_update_rcv_time_stamp(vport);
13942}
13943
13944/**
James Smart4f774512009-05-22 14:52:35 -040013945 * lpfc_fc_frame_add - Adds a frame to the vport's list of received sequences
13946 * @dmabuf: pointer to a dmabuf that describes the hdr and data of the FC frame
13947 *
13948 * This function searches through the existing incomplete sequences that have
13949 * been sent to this @vport. If the frame matches one of the incomplete
13950 * sequences then the dbuf in the @dmabuf is added to the list of frames that
13951 * make up that sequence. If no sequence is found that matches this frame then
13952 * the function will add the hbuf in the @dmabuf to the @vport's rcv_buffer_list
13953 * This function returns a pointer to the first dmabuf in the sequence list that
13954 * the frame was linked to.
13955 **/
13956static struct hbq_dmabuf *
13957lpfc_fc_frame_add(struct lpfc_vport *vport, struct hbq_dmabuf *dmabuf)
13958{
13959 struct fc_frame_header *new_hdr;
13960 struct fc_frame_header *temp_hdr;
13961 struct lpfc_dmabuf *d_buf;
13962 struct lpfc_dmabuf *h_buf;
13963 struct hbq_dmabuf *seq_dmabuf = NULL;
13964 struct hbq_dmabuf *temp_dmabuf = NULL;
13965
James Smart4d9ab992009-10-02 15:16:39 -040013966 INIT_LIST_HEAD(&dmabuf->dbuf.list);
James Smart45ed1192009-10-02 15:17:02 -040013967 dmabuf->time_stamp = jiffies;
James Smart4f774512009-05-22 14:52:35 -040013968 new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
13969 /* Use the hdr_buf to find the sequence that this frame belongs to */
13970 list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
13971 temp_hdr = (struct fc_frame_header *)h_buf->virt;
13972 if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
13973 (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
13974 (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
13975 continue;
13976 /* found a pending sequence that matches this frame */
13977 seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
13978 break;
13979 }
13980 if (!seq_dmabuf) {
13981 /*
13982 * This indicates first frame received for this sequence.
13983 * Queue the buffer on the vport's rcv_buffer_list.
13984 */
13985 list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
James Smart45ed1192009-10-02 15:17:02 -040013986 lpfc_update_rcv_time_stamp(vport);
James Smart4f774512009-05-22 14:52:35 -040013987 return dmabuf;
13988 }
13989 temp_hdr = seq_dmabuf->hbuf.virt;
James Smarteeead812009-12-21 17:01:23 -050013990 if (be16_to_cpu(new_hdr->fh_seq_cnt) <
13991 be16_to_cpu(temp_hdr->fh_seq_cnt)) {
James Smart4d9ab992009-10-02 15:16:39 -040013992 list_del_init(&seq_dmabuf->hbuf.list);
13993 list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
13994 list_add_tail(&dmabuf->dbuf.list, &seq_dmabuf->dbuf.list);
James Smart45ed1192009-10-02 15:17:02 -040013995 lpfc_update_rcv_time_stamp(vport);
James Smart4f774512009-05-22 14:52:35 -040013996 return dmabuf;
13997 }
James Smart45ed1192009-10-02 15:17:02 -040013998 /* move this sequence to the tail to indicate a young sequence */
13999 list_move_tail(&seq_dmabuf->hbuf.list, &vport->rcv_buffer_list);
14000 seq_dmabuf->time_stamp = jiffies;
14001 lpfc_update_rcv_time_stamp(vport);
James Smarteeead812009-12-21 17:01:23 -050014002 if (list_empty(&seq_dmabuf->dbuf.list)) {
14003 temp_hdr = dmabuf->hbuf.virt;
14004 list_add_tail(&dmabuf->dbuf.list, &seq_dmabuf->dbuf.list);
14005 return seq_dmabuf;
14006 }
James Smart4f774512009-05-22 14:52:35 -040014007 /* find the correct place in the sequence to insert this frame */
14008 list_for_each_entry_reverse(d_buf, &seq_dmabuf->dbuf.list, list) {
14009 temp_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
14010 temp_hdr = (struct fc_frame_header *)temp_dmabuf->hbuf.virt;
14011 /*
14012 * If the frame's sequence count is greater than the frame on
14013 * the list then insert the frame right after this frame
14014 */
James Smarteeead812009-12-21 17:01:23 -050014015 if (be16_to_cpu(new_hdr->fh_seq_cnt) >
14016 be16_to_cpu(temp_hdr->fh_seq_cnt)) {
James Smart4f774512009-05-22 14:52:35 -040014017 list_add(&dmabuf->dbuf.list, &temp_dmabuf->dbuf.list);
14018 return seq_dmabuf;
14019 }
14020 }
14021 return NULL;
14022}
14023
14024/**
James Smart6669f9b2009-10-02 15:16:45 -040014025 * lpfc_sli4_abort_partial_seq - Abort partially assembled unsol sequence
14026 * @vport: pointer to a vitural port
14027 * @dmabuf: pointer to a dmabuf that describes the FC sequence
14028 *
14029 * This function tries to abort from the partially assembed sequence, described
14030 * by the information from basic abbort @dmabuf. It checks to see whether such
14031 * partially assembled sequence held by the driver. If so, it shall free up all
14032 * the frames from the partially assembled sequence.
14033 *
14034 * Return
14035 * true -- if there is matching partially assembled sequence present and all
14036 * the frames freed with the sequence;
14037 * false -- if there is no matching partially assembled sequence present so
14038 * nothing got aborted in the lower layer driver
14039 **/
14040static bool
14041lpfc_sli4_abort_partial_seq(struct lpfc_vport *vport,
14042 struct hbq_dmabuf *dmabuf)
14043{
14044 struct fc_frame_header *new_hdr;
14045 struct fc_frame_header *temp_hdr;
14046 struct lpfc_dmabuf *d_buf, *n_buf, *h_buf;
14047 struct hbq_dmabuf *seq_dmabuf = NULL;
14048
14049 /* Use the hdr_buf to find the sequence that matches this frame */
14050 INIT_LIST_HEAD(&dmabuf->dbuf.list);
14051 INIT_LIST_HEAD(&dmabuf->hbuf.list);
14052 new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
14053 list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
14054 temp_hdr = (struct fc_frame_header *)h_buf->virt;
14055 if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
14056 (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
14057 (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
14058 continue;
14059 /* found a pending sequence that matches this frame */
14060 seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14061 break;
14062 }
14063
14064 /* Free up all the frames from the partially assembled sequence */
14065 if (seq_dmabuf) {
14066 list_for_each_entry_safe(d_buf, n_buf,
14067 &seq_dmabuf->dbuf.list, list) {
14068 list_del_init(&d_buf->list);
14069 lpfc_in_buf_free(vport->phba, d_buf);
14070 }
14071 return true;
14072 }
14073 return false;
14074}
14075
14076/**
James Smart546fc852011-03-11 16:06:29 -050014077 * lpfc_sli4_seq_abort_rsp_cmpl - BLS ABORT RSP seq abort iocb complete handler
James Smart6669f9b2009-10-02 15:16:45 -040014078 * @phba: Pointer to HBA context object.
14079 * @cmd_iocbq: pointer to the command iocbq structure.
14080 * @rsp_iocbq: pointer to the response iocbq structure.
14081 *
James Smart546fc852011-03-11 16:06:29 -050014082 * This function handles the sequence abort response iocb command complete
James Smart6669f9b2009-10-02 15:16:45 -040014083 * event. It properly releases the memory allocated to the sequence abort
14084 * accept iocb.
14085 **/
14086static void
James Smart546fc852011-03-11 16:06:29 -050014087lpfc_sli4_seq_abort_rsp_cmpl(struct lpfc_hba *phba,
James Smart6669f9b2009-10-02 15:16:45 -040014088 struct lpfc_iocbq *cmd_iocbq,
14089 struct lpfc_iocbq *rsp_iocbq)
14090{
14091 if (cmd_iocbq)
14092 lpfc_sli_release_iocbq(phba, cmd_iocbq);
James Smart6b5151f2012-01-18 16:24:06 -050014093
14094 /* Failure means BLS ABORT RSP did not get delivered to remote node*/
14095 if (rsp_iocbq && rsp_iocbq->iocb.ulpStatus)
14096 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14097 "3154 BLS ABORT RSP failed, data: x%x/x%x\n",
14098 rsp_iocbq->iocb.ulpStatus,
14099 rsp_iocbq->iocb.un.ulpWord[4]);
James Smart6669f9b2009-10-02 15:16:45 -040014100}
14101
14102/**
James Smart6d368e52011-05-24 11:44:12 -040014103 * lpfc_sli4_xri_inrange - check xri is in range of xris owned by driver.
14104 * @phba: Pointer to HBA context object.
14105 * @xri: xri id in transaction.
14106 *
14107 * This function validates the xri maps to the known range of XRIs allocated an
14108 * used by the driver.
14109 **/
James Smart7851fe22011-07-22 18:36:52 -040014110uint16_t
James Smart6d368e52011-05-24 11:44:12 -040014111lpfc_sli4_xri_inrange(struct lpfc_hba *phba,
14112 uint16_t xri)
14113{
14114 int i;
14115
14116 for (i = 0; i < phba->sli4_hba.max_cfg_param.max_xri; i++) {
14117 if (xri == phba->sli4_hba.xri_ids[i])
14118 return i;
14119 }
14120 return NO_XRI;
14121}
14122
14123
14124/**
James Smart546fc852011-03-11 16:06:29 -050014125 * lpfc_sli4_seq_abort_rsp - bls rsp to sequence abort
James Smart6669f9b2009-10-02 15:16:45 -040014126 * @phba: Pointer to HBA context object.
14127 * @fc_hdr: pointer to a FC frame header.
14128 *
James Smart546fc852011-03-11 16:06:29 -050014129 * This function sends a basic response to a previous unsol sequence abort
James Smart6669f9b2009-10-02 15:16:45 -040014130 * event after aborting the sequence handling.
14131 **/
14132static void
James Smart546fc852011-03-11 16:06:29 -050014133lpfc_sli4_seq_abort_rsp(struct lpfc_hba *phba,
James Smart6669f9b2009-10-02 15:16:45 -040014134 struct fc_frame_header *fc_hdr)
14135{
14136 struct lpfc_iocbq *ctiocb = NULL;
14137 struct lpfc_nodelist *ndlp;
James Smart5ffc2662009-11-18 15:39:44 -050014138 uint16_t oxid, rxid;
14139 uint32_t sid, fctl;
James Smart6669f9b2009-10-02 15:16:45 -040014140 IOCB_t *icmd;
James Smart546fc852011-03-11 16:06:29 -050014141 int rc;
James Smart6669f9b2009-10-02 15:16:45 -040014142
14143 if (!lpfc_is_link_up(phba))
14144 return;
14145
14146 sid = sli4_sid_from_fc_hdr(fc_hdr);
14147 oxid = be16_to_cpu(fc_hdr->fh_ox_id);
James Smart5ffc2662009-11-18 15:39:44 -050014148 rxid = be16_to_cpu(fc_hdr->fh_rx_id);
James Smart6669f9b2009-10-02 15:16:45 -040014149
14150 ndlp = lpfc_findnode_did(phba->pport, sid);
14151 if (!ndlp) {
14152 lpfc_printf_log(phba, KERN_WARNING, LOG_ELS,
14153 "1268 Find ndlp returned NULL for oxid:x%x "
14154 "SID:x%x\n", oxid, sid);
14155 return;
14156 }
James Smart6d368e52011-05-24 11:44:12 -040014157 if (lpfc_sli4_xri_inrange(phba, rxid))
James Smart19ca7602010-11-20 23:11:55 -050014158 lpfc_set_rrq_active(phba, ndlp, rxid, oxid, 0);
James Smart6669f9b2009-10-02 15:16:45 -040014159
James Smart546fc852011-03-11 16:06:29 -050014160 /* Allocate buffer for rsp iocb */
James Smart6669f9b2009-10-02 15:16:45 -040014161 ctiocb = lpfc_sli_get_iocbq(phba);
14162 if (!ctiocb)
14163 return;
14164
James Smart5ffc2662009-11-18 15:39:44 -050014165 /* Extract the F_CTL field from FC_HDR */
14166 fctl = sli4_fctl_from_fc_hdr(fc_hdr);
14167
James Smart6669f9b2009-10-02 15:16:45 -040014168 icmd = &ctiocb->iocb;
James Smart6669f9b2009-10-02 15:16:45 -040014169 icmd->un.xseq64.bdl.bdeSize = 0;
James Smart5ffc2662009-11-18 15:39:44 -050014170 icmd->un.xseq64.bdl.ulpIoTag32 = 0;
James Smart6669f9b2009-10-02 15:16:45 -040014171 icmd->un.xseq64.w5.hcsw.Dfctl = 0;
14172 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_ACC;
14173 icmd->un.xseq64.w5.hcsw.Type = FC_TYPE_BLS;
14174
14175 /* Fill in the rest of iocb fields */
14176 icmd->ulpCommand = CMD_XMIT_BLS_RSP64_CX;
14177 icmd->ulpBdeCount = 0;
14178 icmd->ulpLe = 1;
14179 icmd->ulpClass = CLASS3;
James Smart6d368e52011-05-24 11:44:12 -040014180 icmd->ulpContext = phba->sli4_hba.rpi_ids[ndlp->nlp_rpi];
James Smartbe858b62010-12-15 17:57:20 -050014181 ctiocb->context1 = ndlp;
James Smart6669f9b2009-10-02 15:16:45 -040014182
James Smart6669f9b2009-10-02 15:16:45 -040014183 ctiocb->iocb_cmpl = NULL;
14184 ctiocb->vport = phba->pport;
James Smart546fc852011-03-11 16:06:29 -050014185 ctiocb->iocb_cmpl = lpfc_sli4_seq_abort_rsp_cmpl;
James Smart6d368e52011-05-24 11:44:12 -040014186 ctiocb->sli4_lxritag = NO_XRI;
James Smart546fc852011-03-11 16:06:29 -050014187 ctiocb->sli4_xritag = NO_XRI;
14188
14189 /* If the oxid maps to the FCP XRI range or if it is out of range,
14190 * send a BLS_RJT. The driver no longer has that exchange.
14191 * Override the IOCB for a BA_RJT.
14192 */
14193 if (oxid > (phba->sli4_hba.max_cfg_param.max_xri +
14194 phba->sli4_hba.max_cfg_param.xri_base) ||
14195 oxid > (lpfc_sli4_get_els_iocb_cnt(phba) +
14196 phba->sli4_hba.max_cfg_param.xri_base)) {
14197 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_RJT;
14198 bf_set(lpfc_vndr_code, &icmd->un.bls_rsp, 0);
14199 bf_set(lpfc_rsn_expln, &icmd->un.bls_rsp, FC_BA_RJT_INV_XID);
14200 bf_set(lpfc_rsn_code, &icmd->un.bls_rsp, FC_BA_RJT_UNABLE);
14201 }
James Smart6669f9b2009-10-02 15:16:45 -040014202
James Smart5ffc2662009-11-18 15:39:44 -050014203 if (fctl & FC_FC_EX_CTX) {
14204 /* ABTS sent by responder to CT exchange, construction
14205 * of BA_ACC will use OX_ID from ABTS for the XRI_TAG
14206 * field and RX_ID from ABTS for RX_ID field.
14207 */
James Smart546fc852011-03-11 16:06:29 -050014208 bf_set(lpfc_abts_orig, &icmd->un.bls_rsp, LPFC_ABTS_UNSOL_RSP);
James Smart5ffc2662009-11-18 15:39:44 -050014209 } else {
14210 /* ABTS sent by initiator to CT exchange, construction
14211 * of BA_ACC will need to allocate a new XRI as for the
James Smartf09c3ac2012-03-01 22:33:29 -050014212 * XRI_TAG field.
James Smart5ffc2662009-11-18 15:39:44 -050014213 */
James Smart546fc852011-03-11 16:06:29 -050014214 bf_set(lpfc_abts_orig, &icmd->un.bls_rsp, LPFC_ABTS_UNSOL_INT);
James Smart5ffc2662009-11-18 15:39:44 -050014215 }
James Smartf09c3ac2012-03-01 22:33:29 -050014216 bf_set(lpfc_abts_rxid, &icmd->un.bls_rsp, rxid);
James Smart546fc852011-03-11 16:06:29 -050014217 bf_set(lpfc_abts_oxid, &icmd->un.bls_rsp, oxid);
James Smart5ffc2662009-11-18 15:39:44 -050014218
James Smart546fc852011-03-11 16:06:29 -050014219 /* Xmit CT abts response on exchange <xid> */
James Smart6669f9b2009-10-02 15:16:45 -040014220 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
James Smart546fc852011-03-11 16:06:29 -050014221 "1200 Send BLS cmd x%x on oxid x%x Data: x%x\n",
14222 icmd->un.xseq64.w5.hcsw.Rctl, oxid, phba->link_state);
14223
14224 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, ctiocb, 0);
14225 if (rc == IOCB_ERROR) {
14226 lpfc_printf_log(phba, KERN_ERR, LOG_ELS,
14227 "2925 Failed to issue CT ABTS RSP x%x on "
14228 "xri x%x, Data x%x\n",
14229 icmd->un.xseq64.w5.hcsw.Rctl, oxid,
14230 phba->link_state);
14231 lpfc_sli_release_iocbq(phba, ctiocb);
14232 }
James Smart6669f9b2009-10-02 15:16:45 -040014233}
14234
14235/**
14236 * lpfc_sli4_handle_unsol_abort - Handle sli-4 unsolicited abort event
14237 * @vport: Pointer to the vport on which this sequence was received
14238 * @dmabuf: pointer to a dmabuf that describes the FC sequence
14239 *
14240 * This function handles an SLI-4 unsolicited abort event. If the unsolicited
14241 * receive sequence is only partially assembed by the driver, it shall abort
14242 * the partially assembled frames for the sequence. Otherwise, if the
14243 * unsolicited receive sequence has been completely assembled and passed to
14244 * the Upper Layer Protocol (UPL), it then mark the per oxid status for the
14245 * unsolicited sequence has been aborted. After that, it will issue a basic
14246 * accept to accept the abort.
14247 **/
14248void
14249lpfc_sli4_handle_unsol_abort(struct lpfc_vport *vport,
14250 struct hbq_dmabuf *dmabuf)
14251{
14252 struct lpfc_hba *phba = vport->phba;
14253 struct fc_frame_header fc_hdr;
James Smart5ffc2662009-11-18 15:39:44 -050014254 uint32_t fctl;
James Smart6669f9b2009-10-02 15:16:45 -040014255 bool abts_par;
14256
James Smart6669f9b2009-10-02 15:16:45 -040014257 /* Make a copy of fc_hdr before the dmabuf being released */
14258 memcpy(&fc_hdr, dmabuf->hbuf.virt, sizeof(struct fc_frame_header));
James Smart5ffc2662009-11-18 15:39:44 -050014259 fctl = sli4_fctl_from_fc_hdr(&fc_hdr);
James Smart6669f9b2009-10-02 15:16:45 -040014260
James Smart5ffc2662009-11-18 15:39:44 -050014261 if (fctl & FC_FC_EX_CTX) {
14262 /*
14263 * ABTS sent by responder to exchange, just free the buffer
14264 */
James Smart6669f9b2009-10-02 15:16:45 -040014265 lpfc_in_buf_free(phba, &dmabuf->dbuf);
James Smart5ffc2662009-11-18 15:39:44 -050014266 } else {
14267 /*
14268 * ABTS sent by initiator to exchange, need to do cleanup
14269 */
14270 /* Try to abort partially assembled seq */
14271 abts_par = lpfc_sli4_abort_partial_seq(vport, dmabuf);
14272
14273 /* Send abort to ULP if partially seq abort failed */
14274 if (abts_par == false)
14275 lpfc_sli4_send_seq_to_ulp(vport, dmabuf);
14276 else
14277 lpfc_in_buf_free(phba, &dmabuf->dbuf);
14278 }
James Smart6669f9b2009-10-02 15:16:45 -040014279 /* Send basic accept (BA_ACC) to the abort requester */
James Smart546fc852011-03-11 16:06:29 -050014280 lpfc_sli4_seq_abort_rsp(phba, &fc_hdr);
James Smart6669f9b2009-10-02 15:16:45 -040014281}
14282
14283/**
James Smart4f774512009-05-22 14:52:35 -040014284 * lpfc_seq_complete - Indicates if a sequence is complete
14285 * @dmabuf: pointer to a dmabuf that describes the FC sequence
14286 *
14287 * This function checks the sequence, starting with the frame described by
14288 * @dmabuf, to see if all the frames associated with this sequence are present.
14289 * the frames associated with this sequence are linked to the @dmabuf using the
14290 * dbuf list. This function looks for two major things. 1) That the first frame
14291 * has a sequence count of zero. 2) There is a frame with last frame of sequence
14292 * set. 3) That there are no holes in the sequence count. The function will
14293 * return 1 when the sequence is complete, otherwise it will return 0.
14294 **/
14295static int
14296lpfc_seq_complete(struct hbq_dmabuf *dmabuf)
14297{
14298 struct fc_frame_header *hdr;
14299 struct lpfc_dmabuf *d_buf;
14300 struct hbq_dmabuf *seq_dmabuf;
14301 uint32_t fctl;
14302 int seq_count = 0;
14303
14304 hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
14305 /* make sure first fame of sequence has a sequence count of zero */
14306 if (hdr->fh_seq_cnt != seq_count)
14307 return 0;
14308 fctl = (hdr->fh_f_ctl[0] << 16 |
14309 hdr->fh_f_ctl[1] << 8 |
14310 hdr->fh_f_ctl[2]);
14311 /* If last frame of sequence we can return success. */
14312 if (fctl & FC_FC_END_SEQ)
14313 return 1;
14314 list_for_each_entry(d_buf, &dmabuf->dbuf.list, list) {
14315 seq_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
14316 hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
14317 /* If there is a hole in the sequence count then fail. */
James Smarteeead812009-12-21 17:01:23 -050014318 if (++seq_count != be16_to_cpu(hdr->fh_seq_cnt))
James Smart4f774512009-05-22 14:52:35 -040014319 return 0;
14320 fctl = (hdr->fh_f_ctl[0] << 16 |
14321 hdr->fh_f_ctl[1] << 8 |
14322 hdr->fh_f_ctl[2]);
14323 /* If last frame of sequence we can return success. */
14324 if (fctl & FC_FC_END_SEQ)
14325 return 1;
14326 }
14327 return 0;
14328}
14329
14330/**
14331 * lpfc_prep_seq - Prep sequence for ULP processing
14332 * @vport: Pointer to the vport on which this sequence was received
14333 * @dmabuf: pointer to a dmabuf that describes the FC sequence
14334 *
14335 * This function takes a sequence, described by a list of frames, and creates
14336 * a list of iocbq structures to describe the sequence. This iocbq list will be
14337 * used to issue to the generic unsolicited sequence handler. This routine
14338 * returns a pointer to the first iocbq in the list. If the function is unable
14339 * to allocate an iocbq then it throw out the received frames that were not
14340 * able to be described and return a pointer to the first iocbq. If unable to
14341 * allocate any iocbqs (including the first) this function will return NULL.
14342 **/
14343static struct lpfc_iocbq *
14344lpfc_prep_seq(struct lpfc_vport *vport, struct hbq_dmabuf *seq_dmabuf)
14345{
James Smart7851fe22011-07-22 18:36:52 -040014346 struct hbq_dmabuf *hbq_buf;
James Smart4f774512009-05-22 14:52:35 -040014347 struct lpfc_dmabuf *d_buf, *n_buf;
14348 struct lpfc_iocbq *first_iocbq, *iocbq;
14349 struct fc_frame_header *fc_hdr;
14350 uint32_t sid;
James Smart7851fe22011-07-22 18:36:52 -040014351 uint32_t len, tot_len;
James Smarteeead812009-12-21 17:01:23 -050014352 struct ulp_bde64 *pbde;
James Smart4f774512009-05-22 14:52:35 -040014353
14354 fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
14355 /* remove from receive buffer list */
14356 list_del_init(&seq_dmabuf->hbuf.list);
James Smart45ed1192009-10-02 15:17:02 -040014357 lpfc_update_rcv_time_stamp(vport);
James Smart4f774512009-05-22 14:52:35 -040014358 /* get the Remote Port's SID */
James Smart6669f9b2009-10-02 15:16:45 -040014359 sid = sli4_sid_from_fc_hdr(fc_hdr);
James Smart7851fe22011-07-22 18:36:52 -040014360 tot_len = 0;
James Smart4f774512009-05-22 14:52:35 -040014361 /* Get an iocbq struct to fill in. */
14362 first_iocbq = lpfc_sli_get_iocbq(vport->phba);
14363 if (first_iocbq) {
14364 /* Initialize the first IOCB. */
James Smart8fa38512009-07-19 10:01:03 -040014365 first_iocbq->iocb.unsli3.rcvsli3.acc_len = 0;
James Smart4f774512009-05-22 14:52:35 -040014366 first_iocbq->iocb.ulpStatus = IOSTAT_SUCCESS;
14367 first_iocbq->iocb.ulpCommand = CMD_IOCB_RCV_SEQ64_CX;
James Smart7851fe22011-07-22 18:36:52 -040014368 first_iocbq->iocb.ulpContext = NO_XRI;
14369 first_iocbq->iocb.unsli3.rcvsli3.ox_id =
14370 be16_to_cpu(fc_hdr->fh_ox_id);
14371 /* iocbq is prepped for internal consumption. Physical vpi. */
14372 first_iocbq->iocb.unsli3.rcvsli3.vpi =
14373 vport->phba->vpi_ids[vport->vpi];
James Smart4f774512009-05-22 14:52:35 -040014374 /* put the first buffer into the first IOCBq */
14375 first_iocbq->context2 = &seq_dmabuf->dbuf;
14376 first_iocbq->context3 = NULL;
14377 first_iocbq->iocb.ulpBdeCount = 1;
14378 first_iocbq->iocb.un.cont64[0].tus.f.bdeSize =
14379 LPFC_DATA_BUF_SIZE;
14380 first_iocbq->iocb.un.rcvels.remoteID = sid;
James Smart7851fe22011-07-22 18:36:52 -040014381 tot_len = bf_get(lpfc_rcqe_length,
James Smart4d9ab992009-10-02 15:16:39 -040014382 &seq_dmabuf->cq_event.cqe.rcqe_cmpl);
James Smart7851fe22011-07-22 18:36:52 -040014383 first_iocbq->iocb.unsli3.rcvsli3.acc_len = tot_len;
James Smart4f774512009-05-22 14:52:35 -040014384 }
14385 iocbq = first_iocbq;
14386 /*
14387 * Each IOCBq can have two Buffers assigned, so go through the list
14388 * of buffers for this sequence and save two buffers in each IOCBq
14389 */
14390 list_for_each_entry_safe(d_buf, n_buf, &seq_dmabuf->dbuf.list, list) {
14391 if (!iocbq) {
14392 lpfc_in_buf_free(vport->phba, d_buf);
14393 continue;
14394 }
14395 if (!iocbq->context3) {
14396 iocbq->context3 = d_buf;
14397 iocbq->iocb.ulpBdeCount++;
James Smarteeead812009-12-21 17:01:23 -050014398 pbde = (struct ulp_bde64 *)
14399 &iocbq->iocb.unsli3.sli3Words[4];
14400 pbde->tus.f.bdeSize = LPFC_DATA_BUF_SIZE;
James Smart7851fe22011-07-22 18:36:52 -040014401
14402 /* We need to get the size out of the right CQE */
14403 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
14404 len = bf_get(lpfc_rcqe_length,
14405 &hbq_buf->cq_event.cqe.rcqe_cmpl);
14406 iocbq->iocb.unsli3.rcvsli3.acc_len += len;
14407 tot_len += len;
James Smart4f774512009-05-22 14:52:35 -040014408 } else {
14409 iocbq = lpfc_sli_get_iocbq(vport->phba);
14410 if (!iocbq) {
14411 if (first_iocbq) {
14412 first_iocbq->iocb.ulpStatus =
14413 IOSTAT_FCP_RSP_ERROR;
14414 first_iocbq->iocb.un.ulpWord[4] =
14415 IOERR_NO_RESOURCES;
14416 }
14417 lpfc_in_buf_free(vport->phba, d_buf);
14418 continue;
14419 }
14420 iocbq->context2 = d_buf;
14421 iocbq->context3 = NULL;
14422 iocbq->iocb.ulpBdeCount = 1;
14423 iocbq->iocb.un.cont64[0].tus.f.bdeSize =
14424 LPFC_DATA_BUF_SIZE;
James Smart7851fe22011-07-22 18:36:52 -040014425
14426 /* We need to get the size out of the right CQE */
14427 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
14428 len = bf_get(lpfc_rcqe_length,
14429 &hbq_buf->cq_event.cqe.rcqe_cmpl);
14430 tot_len += len;
14431 iocbq->iocb.unsli3.rcvsli3.acc_len = tot_len;
14432
James Smart4f774512009-05-22 14:52:35 -040014433 iocbq->iocb.un.rcvels.remoteID = sid;
14434 list_add_tail(&iocbq->list, &first_iocbq->list);
14435 }
14436 }
14437 return first_iocbq;
14438}
14439
James Smart6669f9b2009-10-02 15:16:45 -040014440static void
14441lpfc_sli4_send_seq_to_ulp(struct lpfc_vport *vport,
14442 struct hbq_dmabuf *seq_dmabuf)
14443{
14444 struct fc_frame_header *fc_hdr;
14445 struct lpfc_iocbq *iocbq, *curr_iocb, *next_iocb;
14446 struct lpfc_hba *phba = vport->phba;
14447
14448 fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
14449 iocbq = lpfc_prep_seq(vport, seq_dmabuf);
14450 if (!iocbq) {
14451 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14452 "2707 Ring %d handler: Failed to allocate "
14453 "iocb Rctl x%x Type x%x received\n",
14454 LPFC_ELS_RING,
14455 fc_hdr->fh_r_ctl, fc_hdr->fh_type);
14456 return;
14457 }
14458 if (!lpfc_complete_unsol_iocb(phba,
14459 &phba->sli.ring[LPFC_ELS_RING],
14460 iocbq, fc_hdr->fh_r_ctl,
14461 fc_hdr->fh_type))
James Smart6d368e52011-05-24 11:44:12 -040014462 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart6669f9b2009-10-02 15:16:45 -040014463 "2540 Ring %d handler: unexpected Rctl "
14464 "x%x Type x%x received\n",
14465 LPFC_ELS_RING,
14466 fc_hdr->fh_r_ctl, fc_hdr->fh_type);
14467
14468 /* Free iocb created in lpfc_prep_seq */
14469 list_for_each_entry_safe(curr_iocb, next_iocb,
14470 &iocbq->list, list) {
14471 list_del_init(&curr_iocb->list);
14472 lpfc_sli_release_iocbq(phba, curr_iocb);
14473 }
14474 lpfc_sli_release_iocbq(phba, iocbq);
14475}
14476
James Smart4f774512009-05-22 14:52:35 -040014477/**
14478 * lpfc_sli4_handle_received_buffer - Handle received buffers from firmware
14479 * @phba: Pointer to HBA context object.
14480 *
14481 * This function is called with no lock held. This function processes all
14482 * the received buffers and gives it to upper layers when a received buffer
14483 * indicates that it is the final frame in the sequence. The interrupt
14484 * service routine processes received buffers at interrupt contexts and adds
14485 * received dma buffers to the rb_pend_list queue and signals the worker thread.
14486 * Worker thread calls lpfc_sli4_handle_received_buffer, which will call the
14487 * appropriate receive function when the final frame in a sequence is received.
14488 **/
James Smart4d9ab992009-10-02 15:16:39 -040014489void
14490lpfc_sli4_handle_received_buffer(struct lpfc_hba *phba,
14491 struct hbq_dmabuf *dmabuf)
James Smart4f774512009-05-22 14:52:35 -040014492{
James Smart4d9ab992009-10-02 15:16:39 -040014493 struct hbq_dmabuf *seq_dmabuf;
James Smart4f774512009-05-22 14:52:35 -040014494 struct fc_frame_header *fc_hdr;
14495 struct lpfc_vport *vport;
14496 uint32_t fcfi;
James Smart4f774512009-05-22 14:52:35 -040014497
James Smart4f774512009-05-22 14:52:35 -040014498 /* Process each received buffer */
James Smart4d9ab992009-10-02 15:16:39 -040014499 fc_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
14500 /* check to see if this a valid type of frame */
14501 if (lpfc_fc_frame_check(phba, fc_hdr)) {
14502 lpfc_in_buf_free(phba, &dmabuf->dbuf);
14503 return;
14504 }
James Smart7851fe22011-07-22 18:36:52 -040014505 if ((bf_get(lpfc_cqe_code,
14506 &dmabuf->cq_event.cqe.rcqe_cmpl) == CQE_CODE_RECEIVE_V1))
14507 fcfi = bf_get(lpfc_rcqe_fcf_id_v1,
14508 &dmabuf->cq_event.cqe.rcqe_cmpl);
14509 else
14510 fcfi = bf_get(lpfc_rcqe_fcf_id,
14511 &dmabuf->cq_event.cqe.rcqe_cmpl);
James Smart4d9ab992009-10-02 15:16:39 -040014512 vport = lpfc_fc_frame_to_vport(phba, fc_hdr, fcfi);
James Smartc8685952009-11-18 15:39:16 -050014513 if (!vport || !(vport->vpi_state & LPFC_VPI_REGISTERED)) {
James Smart4d9ab992009-10-02 15:16:39 -040014514 /* throw out the frame */
14515 lpfc_in_buf_free(phba, &dmabuf->dbuf);
14516 return;
14517 }
James Smart6669f9b2009-10-02 15:16:45 -040014518 /* Handle the basic abort sequence (BA_ABTS) event */
14519 if (fc_hdr->fh_r_ctl == FC_RCTL_BA_ABTS) {
14520 lpfc_sli4_handle_unsol_abort(vport, dmabuf);
14521 return;
14522 }
14523
James Smart4d9ab992009-10-02 15:16:39 -040014524 /* Link this frame */
14525 seq_dmabuf = lpfc_fc_frame_add(vport, dmabuf);
14526 if (!seq_dmabuf) {
14527 /* unable to add frame to vport - throw it out */
14528 lpfc_in_buf_free(phba, &dmabuf->dbuf);
14529 return;
14530 }
14531 /* If not last frame in sequence continue processing frames. */
James Smartdef9c7a2009-12-21 17:02:28 -050014532 if (!lpfc_seq_complete(seq_dmabuf))
James Smart4d9ab992009-10-02 15:16:39 -040014533 return;
James Smartdef9c7a2009-12-21 17:02:28 -050014534
James Smart6669f9b2009-10-02 15:16:45 -040014535 /* Send the complete sequence to the upper layer protocol */
14536 lpfc_sli4_send_seq_to_ulp(vport, seq_dmabuf);
James Smart4f774512009-05-22 14:52:35 -040014537}
James Smart6fb120a2009-05-22 14:52:59 -040014538
14539/**
14540 * lpfc_sli4_post_all_rpi_hdrs - Post the rpi header memory region to the port
14541 * @phba: pointer to lpfc hba data structure.
14542 *
14543 * This routine is invoked to post rpi header templates to the
14544 * HBA consistent with the SLI-4 interface spec. This routine
James Smart49198b32010-04-06 15:04:33 -040014545 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
14546 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
James Smart6fb120a2009-05-22 14:52:59 -040014547 *
14548 * This routine does not require any locks. It's usage is expected
14549 * to be driver load or reset recovery when the driver is
14550 * sequential.
14551 *
14552 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020014553 * 0 - successful
James Smartd439d282010-09-29 11:18:45 -040014554 * -EIO - The mailbox failed to complete successfully.
James Smart6fb120a2009-05-22 14:52:59 -040014555 * When this error occurs, the driver is not guaranteed
14556 * to have any rpi regions posted to the device and
14557 * must either attempt to repost the regions or take a
14558 * fatal error.
14559 **/
14560int
14561lpfc_sli4_post_all_rpi_hdrs(struct lpfc_hba *phba)
14562{
14563 struct lpfc_rpi_hdr *rpi_page;
14564 uint32_t rc = 0;
James Smart6d368e52011-05-24 11:44:12 -040014565 uint16_t lrpi = 0;
James Smart6fb120a2009-05-22 14:52:59 -040014566
James Smart6d368e52011-05-24 11:44:12 -040014567 /* SLI4 ports that support extents do not require RPI headers. */
14568 if (!phba->sli4_hba.rpi_hdrs_in_use)
14569 goto exit;
14570 if (phba->sli4_hba.extents_in_use)
14571 return -EIO;
14572
James Smart6fb120a2009-05-22 14:52:59 -040014573 list_for_each_entry(rpi_page, &phba->sli4_hba.lpfc_rpi_hdr_list, list) {
James Smart6d368e52011-05-24 11:44:12 -040014574 /*
14575 * Assign the rpi headers a physical rpi only if the driver
14576 * has not initialized those resources. A port reset only
14577 * needs the headers posted.
14578 */
14579 if (bf_get(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags) !=
14580 LPFC_RPI_RSRC_RDY)
14581 rpi_page->start_rpi = phba->sli4_hba.rpi_ids[lrpi];
14582
James Smart6fb120a2009-05-22 14:52:59 -040014583 rc = lpfc_sli4_post_rpi_hdr(phba, rpi_page);
14584 if (rc != MBX_SUCCESS) {
14585 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14586 "2008 Error %d posting all rpi "
14587 "headers\n", rc);
14588 rc = -EIO;
14589 break;
14590 }
14591 }
14592
James Smart6d368e52011-05-24 11:44:12 -040014593 exit:
14594 bf_set(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags,
14595 LPFC_RPI_RSRC_RDY);
James Smart6fb120a2009-05-22 14:52:59 -040014596 return rc;
14597}
14598
14599/**
14600 * lpfc_sli4_post_rpi_hdr - Post an rpi header memory region to the port
14601 * @phba: pointer to lpfc hba data structure.
14602 * @rpi_page: pointer to the rpi memory region.
14603 *
14604 * This routine is invoked to post a single rpi header to the
14605 * HBA consistent with the SLI-4 interface spec. This memory region
14606 * maps up to 64 rpi context regions.
14607 *
14608 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020014609 * 0 - successful
James Smartd439d282010-09-29 11:18:45 -040014610 * -ENOMEM - No available memory
14611 * -EIO - The mailbox failed to complete successfully.
James Smart6fb120a2009-05-22 14:52:59 -040014612 **/
14613int
14614lpfc_sli4_post_rpi_hdr(struct lpfc_hba *phba, struct lpfc_rpi_hdr *rpi_page)
14615{
14616 LPFC_MBOXQ_t *mboxq;
14617 struct lpfc_mbx_post_hdr_tmpl *hdr_tmpl;
14618 uint32_t rc = 0;
James Smart6fb120a2009-05-22 14:52:59 -040014619 uint32_t shdr_status, shdr_add_status;
14620 union lpfc_sli4_cfg_shdr *shdr;
14621
James Smart6d368e52011-05-24 11:44:12 -040014622 /* SLI4 ports that support extents do not require RPI headers. */
14623 if (!phba->sli4_hba.rpi_hdrs_in_use)
14624 return rc;
14625 if (phba->sli4_hba.extents_in_use)
14626 return -EIO;
14627
James Smart6fb120a2009-05-22 14:52:59 -040014628 /* The port is notified of the header region via a mailbox command. */
14629 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
14630 if (!mboxq) {
14631 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14632 "2001 Unable to allocate memory for issuing "
14633 "SLI_CONFIG_SPECIAL mailbox command\n");
14634 return -ENOMEM;
14635 }
14636
14637 /* Post all rpi memory regions to the port. */
14638 hdr_tmpl = &mboxq->u.mqe.un.hdr_tmpl;
James Smart6fb120a2009-05-22 14:52:59 -040014639 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
14640 LPFC_MBOX_OPCODE_FCOE_POST_HDR_TEMPLATE,
14641 sizeof(struct lpfc_mbx_post_hdr_tmpl) -
James Smartfedd3b72011-02-16 12:39:24 -050014642 sizeof(struct lpfc_sli4_cfg_mhdr),
14643 LPFC_SLI4_MBX_EMBED);
James Smart6d368e52011-05-24 11:44:12 -040014644
14645
14646 /* Post the physical rpi to the port for this rpi header. */
James Smart6fb120a2009-05-22 14:52:59 -040014647 bf_set(lpfc_mbx_post_hdr_tmpl_rpi_offset, hdr_tmpl,
14648 rpi_page->start_rpi);
James Smart6d368e52011-05-24 11:44:12 -040014649 bf_set(lpfc_mbx_post_hdr_tmpl_page_cnt,
14650 hdr_tmpl, rpi_page->page_count);
14651
James Smart6fb120a2009-05-22 14:52:59 -040014652 hdr_tmpl->rpi_paddr_lo = putPaddrLow(rpi_page->dmabuf->phys);
14653 hdr_tmpl->rpi_paddr_hi = putPaddrHigh(rpi_page->dmabuf->phys);
James Smartf1126682009-06-10 17:22:44 -040014654 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
James Smart6fb120a2009-05-22 14:52:59 -040014655 shdr = (union lpfc_sli4_cfg_shdr *) &hdr_tmpl->header.cfg_shdr;
14656 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14657 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14658 if (rc != MBX_TIMEOUT)
14659 mempool_free(mboxq, phba->mbox_mem_pool);
14660 if (shdr_status || shdr_add_status || rc) {
14661 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14662 "2514 POST_RPI_HDR mailbox failed with "
14663 "status x%x add_status x%x, mbx status x%x\n",
14664 shdr_status, shdr_add_status, rc);
14665 rc = -ENXIO;
14666 }
14667 return rc;
14668}
14669
14670/**
14671 * lpfc_sli4_alloc_rpi - Get an available rpi in the device's range
14672 * @phba: pointer to lpfc hba data structure.
14673 *
14674 * This routine is invoked to post rpi header templates to the
14675 * HBA consistent with the SLI-4 interface spec. This routine
James Smart49198b32010-04-06 15:04:33 -040014676 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
14677 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
James Smart6fb120a2009-05-22 14:52:59 -040014678 *
14679 * Returns
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020014680 * A nonzero rpi defined as rpi_base <= rpi < max_rpi if successful
James Smart6fb120a2009-05-22 14:52:59 -040014681 * LPFC_RPI_ALLOC_ERROR if no rpis are available.
14682 **/
14683int
14684lpfc_sli4_alloc_rpi(struct lpfc_hba *phba)
14685{
James Smart6d368e52011-05-24 11:44:12 -040014686 unsigned long rpi;
14687 uint16_t max_rpi, rpi_limit;
14688 uint16_t rpi_remaining, lrpi = 0;
James Smart6fb120a2009-05-22 14:52:59 -040014689 struct lpfc_rpi_hdr *rpi_hdr;
14690
14691 max_rpi = phba->sli4_hba.max_cfg_param.max_rpi;
James Smart6fb120a2009-05-22 14:52:59 -040014692 rpi_limit = phba->sli4_hba.next_rpi;
14693
14694 /*
James Smart6d368e52011-05-24 11:44:12 -040014695 * Fetch the next logical rpi. Because this index is logical,
14696 * the driver starts at 0 each time.
James Smart6fb120a2009-05-22 14:52:59 -040014697 */
14698 spin_lock_irq(&phba->hbalock);
James Smart6d368e52011-05-24 11:44:12 -040014699 rpi = find_next_zero_bit(phba->sli4_hba.rpi_bmask, rpi_limit, 0);
14700 if (rpi >= rpi_limit)
James Smart6fb120a2009-05-22 14:52:59 -040014701 rpi = LPFC_RPI_ALLOC_ERROR;
14702 else {
14703 set_bit(rpi, phba->sli4_hba.rpi_bmask);
14704 phba->sli4_hba.max_cfg_param.rpi_used++;
14705 phba->sli4_hba.rpi_count++;
14706 }
14707
14708 /*
14709 * Don't try to allocate more rpi header regions if the device limit
James Smart6d368e52011-05-24 11:44:12 -040014710 * has been exhausted.
James Smart6fb120a2009-05-22 14:52:59 -040014711 */
14712 if ((rpi == LPFC_RPI_ALLOC_ERROR) &&
14713 (phba->sli4_hba.rpi_count >= max_rpi)) {
14714 spin_unlock_irq(&phba->hbalock);
14715 return rpi;
14716 }
14717
14718 /*
James Smart6d368e52011-05-24 11:44:12 -040014719 * RPI header postings are not required for SLI4 ports capable of
14720 * extents.
14721 */
14722 if (!phba->sli4_hba.rpi_hdrs_in_use) {
14723 spin_unlock_irq(&phba->hbalock);
14724 return rpi;
14725 }
14726
14727 /*
James Smart6fb120a2009-05-22 14:52:59 -040014728 * If the driver is running low on rpi resources, allocate another
14729 * page now. Note that the next_rpi value is used because
14730 * it represents how many are actually in use whereas max_rpi notes
14731 * how many are supported max by the device.
14732 */
James Smart6d368e52011-05-24 11:44:12 -040014733 rpi_remaining = phba->sli4_hba.next_rpi - phba->sli4_hba.rpi_count;
James Smart6fb120a2009-05-22 14:52:59 -040014734 spin_unlock_irq(&phba->hbalock);
14735 if (rpi_remaining < LPFC_RPI_LOW_WATER_MARK) {
14736 rpi_hdr = lpfc_sli4_create_rpi_hdr(phba);
14737 if (!rpi_hdr) {
14738 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14739 "2002 Error Could not grow rpi "
14740 "count\n");
14741 } else {
James Smart6d368e52011-05-24 11:44:12 -040014742 lrpi = rpi_hdr->start_rpi;
14743 rpi_hdr->start_rpi = phba->sli4_hba.rpi_ids[lrpi];
James Smart6fb120a2009-05-22 14:52:59 -040014744 lpfc_sli4_post_rpi_hdr(phba, rpi_hdr);
14745 }
14746 }
14747
14748 return rpi;
14749}
14750
14751/**
14752 * lpfc_sli4_free_rpi - Release an rpi for reuse.
14753 * @phba: pointer to lpfc hba data structure.
14754 *
14755 * This routine is invoked to release an rpi to the pool of
14756 * available rpis maintained by the driver.
14757 **/
14758void
James Smartd7c47992010-06-08 18:31:54 -040014759__lpfc_sli4_free_rpi(struct lpfc_hba *phba, int rpi)
14760{
14761 if (test_and_clear_bit(rpi, phba->sli4_hba.rpi_bmask)) {
14762 phba->sli4_hba.rpi_count--;
14763 phba->sli4_hba.max_cfg_param.rpi_used--;
14764 }
14765}
14766
14767/**
14768 * lpfc_sli4_free_rpi - Release an rpi for reuse.
14769 * @phba: pointer to lpfc hba data structure.
14770 *
14771 * This routine is invoked to release an rpi to the pool of
14772 * available rpis maintained by the driver.
14773 **/
14774void
James Smart6fb120a2009-05-22 14:52:59 -040014775lpfc_sli4_free_rpi(struct lpfc_hba *phba, int rpi)
14776{
14777 spin_lock_irq(&phba->hbalock);
James Smartd7c47992010-06-08 18:31:54 -040014778 __lpfc_sli4_free_rpi(phba, rpi);
James Smart6fb120a2009-05-22 14:52:59 -040014779 spin_unlock_irq(&phba->hbalock);
14780}
14781
14782/**
14783 * lpfc_sli4_remove_rpis - Remove the rpi bitmask region
14784 * @phba: pointer to lpfc hba data structure.
14785 *
14786 * This routine is invoked to remove the memory region that
14787 * provided rpi via a bitmask.
14788 **/
14789void
14790lpfc_sli4_remove_rpis(struct lpfc_hba *phba)
14791{
14792 kfree(phba->sli4_hba.rpi_bmask);
James Smart6d368e52011-05-24 11:44:12 -040014793 kfree(phba->sli4_hba.rpi_ids);
14794 bf_set(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
James Smart6fb120a2009-05-22 14:52:59 -040014795}
14796
14797/**
14798 * lpfc_sli4_resume_rpi - Remove the rpi bitmask region
14799 * @phba: pointer to lpfc hba data structure.
14800 *
14801 * This routine is invoked to remove the memory region that
14802 * provided rpi via a bitmask.
14803 **/
14804int
James Smart6b5151f2012-01-18 16:24:06 -050014805lpfc_sli4_resume_rpi(struct lpfc_nodelist *ndlp,
14806 void (*cmpl)(struct lpfc_hba *, LPFC_MBOXQ_t *), void *arg)
James Smart6fb120a2009-05-22 14:52:59 -040014807{
14808 LPFC_MBOXQ_t *mboxq;
14809 struct lpfc_hba *phba = ndlp->phba;
14810 int rc;
14811
14812 /* The port is notified of the header region via a mailbox command. */
14813 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
14814 if (!mboxq)
14815 return -ENOMEM;
14816
14817 /* Post all rpi memory regions to the port. */
14818 lpfc_resume_rpi(mboxq, ndlp);
James Smart6b5151f2012-01-18 16:24:06 -050014819 if (cmpl) {
14820 mboxq->mbox_cmpl = cmpl;
14821 mboxq->context1 = arg;
14822 mboxq->context2 = ndlp;
James Smart72859902012-01-18 16:25:38 -050014823 } else
14824 mboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart6b5151f2012-01-18 16:24:06 -050014825 mboxq->vport = ndlp->vport;
James Smart6fb120a2009-05-22 14:52:59 -040014826 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
14827 if (rc == MBX_NOT_FINISHED) {
14828 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14829 "2010 Resume RPI Mailbox failed "
14830 "status %d, mbxStatus x%x\n", rc,
14831 bf_get(lpfc_mqe_status, &mboxq->u.mqe));
14832 mempool_free(mboxq, phba->mbox_mem_pool);
14833 return -EIO;
14834 }
14835 return 0;
14836}
14837
14838/**
14839 * lpfc_sli4_init_vpi - Initialize a vpi with the port
James Smart76a95d72010-11-20 23:11:48 -050014840 * @vport: Pointer to the vport for which the vpi is being initialized
James Smart6fb120a2009-05-22 14:52:59 -040014841 *
James Smart76a95d72010-11-20 23:11:48 -050014842 * This routine is invoked to activate a vpi with the port.
James Smart6fb120a2009-05-22 14:52:59 -040014843 *
14844 * Returns:
14845 * 0 success
14846 * -Evalue otherwise
14847 **/
14848int
James Smart76a95d72010-11-20 23:11:48 -050014849lpfc_sli4_init_vpi(struct lpfc_vport *vport)
James Smart6fb120a2009-05-22 14:52:59 -040014850{
14851 LPFC_MBOXQ_t *mboxq;
14852 int rc = 0;
James Smart6a9c52c2009-10-02 15:16:51 -040014853 int retval = MBX_SUCCESS;
James Smart6fb120a2009-05-22 14:52:59 -040014854 uint32_t mbox_tmo;
James Smart76a95d72010-11-20 23:11:48 -050014855 struct lpfc_hba *phba = vport->phba;
James Smart6fb120a2009-05-22 14:52:59 -040014856 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
14857 if (!mboxq)
14858 return -ENOMEM;
James Smart76a95d72010-11-20 23:11:48 -050014859 lpfc_init_vpi(phba, mboxq, vport->vpi);
James Smarta183a152011-10-10 21:32:43 -040014860 mbox_tmo = lpfc_mbox_tmo_val(phba, mboxq);
James Smart6fb120a2009-05-22 14:52:59 -040014861 rc = lpfc_sli_issue_mbox_wait(phba, mboxq, mbox_tmo);
James Smart6fb120a2009-05-22 14:52:59 -040014862 if (rc != MBX_SUCCESS) {
James Smart76a95d72010-11-20 23:11:48 -050014863 lpfc_printf_vlog(vport, KERN_ERR, LOG_SLI,
James Smart6fb120a2009-05-22 14:52:59 -040014864 "2022 INIT VPI Mailbox failed "
14865 "status %d, mbxStatus x%x\n", rc,
14866 bf_get(lpfc_mqe_status, &mboxq->u.mqe));
James Smart6a9c52c2009-10-02 15:16:51 -040014867 retval = -EIO;
James Smart6fb120a2009-05-22 14:52:59 -040014868 }
James Smart6a9c52c2009-10-02 15:16:51 -040014869 if (rc != MBX_TIMEOUT)
James Smart76a95d72010-11-20 23:11:48 -050014870 mempool_free(mboxq, vport->phba->mbox_mem_pool);
James Smart6a9c52c2009-10-02 15:16:51 -040014871
14872 return retval;
James Smart6fb120a2009-05-22 14:52:59 -040014873}
14874
14875/**
14876 * lpfc_mbx_cmpl_add_fcf_record - add fcf mbox completion handler.
14877 * @phba: pointer to lpfc hba data structure.
14878 * @mboxq: Pointer to mailbox object.
14879 *
14880 * This routine is invoked to manually add a single FCF record. The caller
14881 * must pass a completely initialized FCF_Record. This routine takes
14882 * care of the nonembedded mailbox operations.
14883 **/
14884static void
14885lpfc_mbx_cmpl_add_fcf_record(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
14886{
14887 void *virt_addr;
14888 union lpfc_sli4_cfg_shdr *shdr;
14889 uint32_t shdr_status, shdr_add_status;
14890
14891 virt_addr = mboxq->sge_array->addr[0];
14892 /* The IOCTL status is embedded in the mailbox subheader. */
14893 shdr = (union lpfc_sli4_cfg_shdr *) virt_addr;
14894 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14895 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14896
14897 if ((shdr_status || shdr_add_status) &&
14898 (shdr_status != STATUS_FCF_IN_USE))
14899 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14900 "2558 ADD_FCF_RECORD mailbox failed with "
14901 "status x%x add_status x%x\n",
14902 shdr_status, shdr_add_status);
14903
14904 lpfc_sli4_mbox_cmd_free(phba, mboxq);
14905}
14906
14907/**
14908 * lpfc_sli4_add_fcf_record - Manually add an FCF Record.
14909 * @phba: pointer to lpfc hba data structure.
14910 * @fcf_record: pointer to the initialized fcf record to add.
14911 *
14912 * This routine is invoked to manually add a single FCF record. The caller
14913 * must pass a completely initialized FCF_Record. This routine takes
14914 * care of the nonembedded mailbox operations.
14915 **/
14916int
14917lpfc_sli4_add_fcf_record(struct lpfc_hba *phba, struct fcf_record *fcf_record)
14918{
14919 int rc = 0;
14920 LPFC_MBOXQ_t *mboxq;
14921 uint8_t *bytep;
14922 void *virt_addr;
14923 dma_addr_t phys_addr;
14924 struct lpfc_mbx_sge sge;
14925 uint32_t alloc_len, req_len;
14926 uint32_t fcfindex;
14927
14928 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
14929 if (!mboxq) {
14930 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14931 "2009 Failed to allocate mbox for ADD_FCF cmd\n");
14932 return -ENOMEM;
14933 }
14934
14935 req_len = sizeof(struct fcf_record) + sizeof(union lpfc_sli4_cfg_shdr) +
14936 sizeof(uint32_t);
14937
14938 /* Allocate DMA memory and set up the non-embedded mailbox command */
14939 alloc_len = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
14940 LPFC_MBOX_OPCODE_FCOE_ADD_FCF,
14941 req_len, LPFC_SLI4_MBX_NEMBED);
14942 if (alloc_len < req_len) {
14943 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14944 "2523 Allocated DMA memory size (x%x) is "
14945 "less than the requested DMA memory "
14946 "size (x%x)\n", alloc_len, req_len);
14947 lpfc_sli4_mbox_cmd_free(phba, mboxq);
14948 return -ENOMEM;
14949 }
14950
14951 /*
14952 * Get the first SGE entry from the non-embedded DMA memory. This
14953 * routine only uses a single SGE.
14954 */
14955 lpfc_sli4_mbx_sge_get(mboxq, 0, &sge);
14956 phys_addr = getPaddr(sge.pa_hi, sge.pa_lo);
James Smart6fb120a2009-05-22 14:52:59 -040014957 virt_addr = mboxq->sge_array->addr[0];
14958 /*
14959 * Configure the FCF record for FCFI 0. This is the driver's
14960 * hardcoded default and gets used in nonFIP mode.
14961 */
14962 fcfindex = bf_get(lpfc_fcf_record_fcf_index, fcf_record);
14963 bytep = virt_addr + sizeof(union lpfc_sli4_cfg_shdr);
14964 lpfc_sli_pcimem_bcopy(&fcfindex, bytep, sizeof(uint32_t));
14965
14966 /*
14967 * Copy the fcf_index and the FCF Record Data. The data starts after
14968 * the FCoE header plus word10. The data copy needs to be endian
14969 * correct.
14970 */
14971 bytep += sizeof(uint32_t);
14972 lpfc_sli_pcimem_bcopy(fcf_record, bytep, sizeof(struct fcf_record));
14973 mboxq->vport = phba->pport;
14974 mboxq->mbox_cmpl = lpfc_mbx_cmpl_add_fcf_record;
14975 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
14976 if (rc == MBX_NOT_FINISHED) {
14977 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14978 "2515 ADD_FCF_RECORD mailbox failed with "
14979 "status 0x%x\n", rc);
14980 lpfc_sli4_mbox_cmd_free(phba, mboxq);
14981 rc = -EIO;
14982 } else
14983 rc = 0;
14984
14985 return rc;
14986}
14987
14988/**
14989 * lpfc_sli4_build_dflt_fcf_record - Build the driver's default FCF Record.
14990 * @phba: pointer to lpfc hba data structure.
14991 * @fcf_record: pointer to the fcf record to write the default data.
14992 * @fcf_index: FCF table entry index.
14993 *
14994 * This routine is invoked to build the driver's default FCF record. The
14995 * values used are hardcoded. This routine handles memory initialization.
14996 *
14997 **/
14998void
14999lpfc_sli4_build_dflt_fcf_record(struct lpfc_hba *phba,
15000 struct fcf_record *fcf_record,
15001 uint16_t fcf_index)
15002{
15003 memset(fcf_record, 0, sizeof(struct fcf_record));
15004 fcf_record->max_rcv_size = LPFC_FCOE_MAX_RCV_SIZE;
15005 fcf_record->fka_adv_period = LPFC_FCOE_FKA_ADV_PER;
15006 fcf_record->fip_priority = LPFC_FCOE_FIP_PRIORITY;
15007 bf_set(lpfc_fcf_record_mac_0, fcf_record, phba->fc_map[0]);
15008 bf_set(lpfc_fcf_record_mac_1, fcf_record, phba->fc_map[1]);
15009 bf_set(lpfc_fcf_record_mac_2, fcf_record, phba->fc_map[2]);
15010 bf_set(lpfc_fcf_record_mac_3, fcf_record, LPFC_FCOE_FCF_MAC3);
15011 bf_set(lpfc_fcf_record_mac_4, fcf_record, LPFC_FCOE_FCF_MAC4);
15012 bf_set(lpfc_fcf_record_mac_5, fcf_record, LPFC_FCOE_FCF_MAC5);
15013 bf_set(lpfc_fcf_record_fc_map_0, fcf_record, phba->fc_map[0]);
15014 bf_set(lpfc_fcf_record_fc_map_1, fcf_record, phba->fc_map[1]);
15015 bf_set(lpfc_fcf_record_fc_map_2, fcf_record, phba->fc_map[2]);
15016 bf_set(lpfc_fcf_record_fcf_valid, fcf_record, 1);
James Smart0c287582009-06-10 17:22:56 -040015017 bf_set(lpfc_fcf_record_fcf_avail, fcf_record, 1);
James Smart6fb120a2009-05-22 14:52:59 -040015018 bf_set(lpfc_fcf_record_fcf_index, fcf_record, fcf_index);
15019 bf_set(lpfc_fcf_record_mac_addr_prov, fcf_record,
15020 LPFC_FCF_FPMA | LPFC_FCF_SPMA);
15021 /* Set the VLAN bit map */
15022 if (phba->valid_vlan) {
15023 fcf_record->vlan_bitmap[phba->vlan_id / 8]
15024 = 1 << (phba->vlan_id % 8);
15025 }
15026}
15027
15028/**
James Smart0c9ab6f2010-02-26 14:15:57 -050015029 * lpfc_sli4_fcf_scan_read_fcf_rec - Read hba fcf record for fcf scan.
James Smart6fb120a2009-05-22 14:52:59 -040015030 * @phba: pointer to lpfc hba data structure.
15031 * @fcf_index: FCF table entry offset.
15032 *
James Smart0c9ab6f2010-02-26 14:15:57 -050015033 * This routine is invoked to scan the entire FCF table by reading FCF
15034 * record and processing it one at a time starting from the @fcf_index
15035 * for initial FCF discovery or fast FCF failover rediscovery.
15036 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030015037 * Return 0 if the mailbox command is submitted successfully, none 0
James Smart0c9ab6f2010-02-26 14:15:57 -050015038 * otherwise.
James Smart6fb120a2009-05-22 14:52:59 -040015039 **/
15040int
James Smart0c9ab6f2010-02-26 14:15:57 -050015041lpfc_sli4_fcf_scan_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
James Smart6fb120a2009-05-22 14:52:59 -040015042{
15043 int rc = 0, error;
15044 LPFC_MBOXQ_t *mboxq;
James Smart6fb120a2009-05-22 14:52:59 -040015045
James Smart32b97932009-07-19 10:01:21 -040015046 phba->fcoe_eventtag_at_fcf_scan = phba->fcoe_eventtag;
James Smart6fb120a2009-05-22 14:52:59 -040015047 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15048 if (!mboxq) {
15049 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15050 "2000 Failed to allocate mbox for "
15051 "READ_FCF cmd\n");
James Smart4d9ab992009-10-02 15:16:39 -040015052 error = -ENOMEM;
James Smart0c9ab6f2010-02-26 14:15:57 -050015053 goto fail_fcf_scan;
James Smart6fb120a2009-05-22 14:52:59 -040015054 }
James Smartecfd03c2010-02-12 14:41:27 -050015055 /* Construct the read FCF record mailbox command */
James Smart0c9ab6f2010-02-26 14:15:57 -050015056 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
James Smartecfd03c2010-02-12 14:41:27 -050015057 if (rc) {
15058 error = -EINVAL;
James Smart0c9ab6f2010-02-26 14:15:57 -050015059 goto fail_fcf_scan;
James Smart6fb120a2009-05-22 14:52:59 -040015060 }
James Smartecfd03c2010-02-12 14:41:27 -050015061 /* Issue the mailbox command asynchronously */
James Smart6fb120a2009-05-22 14:52:59 -040015062 mboxq->vport = phba->pport;
James Smart0c9ab6f2010-02-26 14:15:57 -050015063 mboxq->mbox_cmpl = lpfc_mbx_cmpl_fcf_scan_read_fcf_rec;
James Smarta93ff372010-10-22 11:06:08 -040015064
15065 spin_lock_irq(&phba->hbalock);
15066 phba->hba_flag |= FCF_TS_INPROG;
15067 spin_unlock_irq(&phba->hbalock);
15068
James Smart6fb120a2009-05-22 14:52:59 -040015069 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
James Smartecfd03c2010-02-12 14:41:27 -050015070 if (rc == MBX_NOT_FINISHED)
James Smart6fb120a2009-05-22 14:52:59 -040015071 error = -EIO;
James Smartecfd03c2010-02-12 14:41:27 -050015072 else {
James Smart38b92ef2010-08-04 16:11:39 -040015073 /* Reset eligible FCF count for new scan */
15074 if (fcf_index == LPFC_FCOE_FCF_GET_FIRST)
James Smart999d8132010-03-15 11:24:56 -040015075 phba->fcf.eligible_fcf_cnt = 0;
James Smart6fb120a2009-05-22 14:52:59 -040015076 error = 0;
James Smart32b97932009-07-19 10:01:21 -040015077 }
James Smart0c9ab6f2010-02-26 14:15:57 -050015078fail_fcf_scan:
James Smart4d9ab992009-10-02 15:16:39 -040015079 if (error) {
15080 if (mboxq)
15081 lpfc_sli4_mbox_cmd_free(phba, mboxq);
James Smarta93ff372010-10-22 11:06:08 -040015082 /* FCF scan failed, clear FCF_TS_INPROG flag */
James Smart4d9ab992009-10-02 15:16:39 -040015083 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -040015084 phba->hba_flag &= ~FCF_TS_INPROG;
James Smart4d9ab992009-10-02 15:16:39 -040015085 spin_unlock_irq(&phba->hbalock);
15086 }
James Smart6fb120a2009-05-22 14:52:59 -040015087 return error;
15088}
James Smarta0c87cb2009-07-19 10:01:10 -040015089
15090/**
James Smarta93ff372010-10-22 11:06:08 -040015091 * lpfc_sli4_fcf_rr_read_fcf_rec - Read hba fcf record for roundrobin fcf.
James Smart0c9ab6f2010-02-26 14:15:57 -050015092 * @phba: pointer to lpfc hba data structure.
15093 * @fcf_index: FCF table entry offset.
15094 *
15095 * This routine is invoked to read an FCF record indicated by @fcf_index
James Smarta93ff372010-10-22 11:06:08 -040015096 * and to use it for FLOGI roundrobin FCF failover.
James Smart0c9ab6f2010-02-26 14:15:57 -050015097 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030015098 * Return 0 if the mailbox command is submitted successfully, none 0
James Smart0c9ab6f2010-02-26 14:15:57 -050015099 * otherwise.
15100 **/
15101int
15102lpfc_sli4_fcf_rr_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
15103{
15104 int rc = 0, error;
15105 LPFC_MBOXQ_t *mboxq;
15106
15107 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15108 if (!mboxq) {
15109 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_INIT,
15110 "2763 Failed to allocate mbox for "
15111 "READ_FCF cmd\n");
15112 error = -ENOMEM;
15113 goto fail_fcf_read;
15114 }
15115 /* Construct the read FCF record mailbox command */
15116 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
15117 if (rc) {
15118 error = -EINVAL;
15119 goto fail_fcf_read;
15120 }
15121 /* Issue the mailbox command asynchronously */
15122 mboxq->vport = phba->pport;
15123 mboxq->mbox_cmpl = lpfc_mbx_cmpl_fcf_rr_read_fcf_rec;
15124 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
15125 if (rc == MBX_NOT_FINISHED)
15126 error = -EIO;
15127 else
15128 error = 0;
15129
15130fail_fcf_read:
15131 if (error && mboxq)
15132 lpfc_sli4_mbox_cmd_free(phba, mboxq);
15133 return error;
15134}
15135
15136/**
15137 * lpfc_sli4_read_fcf_rec - Read hba fcf record for update eligible fcf bmask.
15138 * @phba: pointer to lpfc hba data structure.
15139 * @fcf_index: FCF table entry offset.
15140 *
15141 * This routine is invoked to read an FCF record indicated by @fcf_index to
James Smarta93ff372010-10-22 11:06:08 -040015142 * determine whether it's eligible for FLOGI roundrobin failover list.
James Smart0c9ab6f2010-02-26 14:15:57 -050015143 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030015144 * Return 0 if the mailbox command is submitted successfully, none 0
James Smart0c9ab6f2010-02-26 14:15:57 -050015145 * otherwise.
15146 **/
15147int
15148lpfc_sli4_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
15149{
15150 int rc = 0, error;
15151 LPFC_MBOXQ_t *mboxq;
15152
15153 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15154 if (!mboxq) {
15155 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_INIT,
15156 "2758 Failed to allocate mbox for "
15157 "READ_FCF cmd\n");
15158 error = -ENOMEM;
15159 goto fail_fcf_read;
15160 }
15161 /* Construct the read FCF record mailbox command */
15162 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
15163 if (rc) {
15164 error = -EINVAL;
15165 goto fail_fcf_read;
15166 }
15167 /* Issue the mailbox command asynchronously */
15168 mboxq->vport = phba->pport;
15169 mboxq->mbox_cmpl = lpfc_mbx_cmpl_read_fcf_rec;
15170 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
15171 if (rc == MBX_NOT_FINISHED)
15172 error = -EIO;
15173 else
15174 error = 0;
15175
15176fail_fcf_read:
15177 if (error && mboxq)
15178 lpfc_sli4_mbox_cmd_free(phba, mboxq);
15179 return error;
15180}
15181
15182/**
James Smart7d791df2011-07-22 18:37:52 -040015183 * lpfc_check_next_fcf_pri
15184 * phba pointer to the lpfc_hba struct for this port.
15185 * This routine is called from the lpfc_sli4_fcf_rr_next_index_get
15186 * routine when the rr_bmask is empty. The FCF indecies are put into the
15187 * rr_bmask based on their priority level. Starting from the highest priority
15188 * to the lowest. The most likely FCF candidate will be in the highest
15189 * priority group. When this routine is called it searches the fcf_pri list for
15190 * next lowest priority group and repopulates the rr_bmask with only those
15191 * fcf_indexes.
15192 * returns:
15193 * 1=success 0=failure
15194 **/
15195int
15196lpfc_check_next_fcf_pri_level(struct lpfc_hba *phba)
15197{
15198 uint16_t next_fcf_pri;
15199 uint16_t last_index;
15200 struct lpfc_fcf_pri *fcf_pri;
15201 int rc;
15202 int ret = 0;
15203
15204 last_index = find_first_bit(phba->fcf.fcf_rr_bmask,
15205 LPFC_SLI4_FCF_TBL_INDX_MAX);
15206 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
15207 "3060 Last IDX %d\n", last_index);
15208 if (list_empty(&phba->fcf.fcf_pri_list)) {
15209 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
15210 "3061 Last IDX %d\n", last_index);
15211 return 0; /* Empty rr list */
15212 }
15213 next_fcf_pri = 0;
15214 /*
15215 * Clear the rr_bmask and set all of the bits that are at this
15216 * priority.
15217 */
15218 memset(phba->fcf.fcf_rr_bmask, 0,
15219 sizeof(*phba->fcf.fcf_rr_bmask));
15220 spin_lock_irq(&phba->hbalock);
15221 list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
15222 if (fcf_pri->fcf_rec.flag & LPFC_FCF_FLOGI_FAILED)
15223 continue;
15224 /*
15225 * the 1st priority that has not FLOGI failed
15226 * will be the highest.
15227 */
15228 if (!next_fcf_pri)
15229 next_fcf_pri = fcf_pri->fcf_rec.priority;
15230 spin_unlock_irq(&phba->hbalock);
15231 if (fcf_pri->fcf_rec.priority == next_fcf_pri) {
15232 rc = lpfc_sli4_fcf_rr_index_set(phba,
15233 fcf_pri->fcf_rec.fcf_index);
15234 if (rc)
15235 return 0;
15236 }
15237 spin_lock_irq(&phba->hbalock);
15238 }
15239 /*
15240 * if next_fcf_pri was not set above and the list is not empty then
15241 * we have failed flogis on all of them. So reset flogi failed
15242 * and start at the begining.
15243 */
15244 if (!next_fcf_pri && !list_empty(&phba->fcf.fcf_pri_list)) {
15245 list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
15246 fcf_pri->fcf_rec.flag &= ~LPFC_FCF_FLOGI_FAILED;
15247 /*
15248 * the 1st priority that has not FLOGI failed
15249 * will be the highest.
15250 */
15251 if (!next_fcf_pri)
15252 next_fcf_pri = fcf_pri->fcf_rec.priority;
15253 spin_unlock_irq(&phba->hbalock);
15254 if (fcf_pri->fcf_rec.priority == next_fcf_pri) {
15255 rc = lpfc_sli4_fcf_rr_index_set(phba,
15256 fcf_pri->fcf_rec.fcf_index);
15257 if (rc)
15258 return 0;
15259 }
15260 spin_lock_irq(&phba->hbalock);
15261 }
15262 } else
15263 ret = 1;
15264 spin_unlock_irq(&phba->hbalock);
15265
15266 return ret;
15267}
15268/**
James Smart0c9ab6f2010-02-26 14:15:57 -050015269 * lpfc_sli4_fcf_rr_next_index_get - Get next eligible fcf record index
15270 * @phba: pointer to lpfc hba data structure.
15271 *
15272 * This routine is to get the next eligible FCF record index in a round
15273 * robin fashion. If the next eligible FCF record index equals to the
James Smarta93ff372010-10-22 11:06:08 -040015274 * initial roundrobin FCF record index, LPFC_FCOE_FCF_NEXT_NONE (0xFFFF)
James Smart0c9ab6f2010-02-26 14:15:57 -050015275 * shall be returned, otherwise, the next eligible FCF record's index
15276 * shall be returned.
15277 **/
15278uint16_t
15279lpfc_sli4_fcf_rr_next_index_get(struct lpfc_hba *phba)
15280{
15281 uint16_t next_fcf_index;
15282
James Smart3804dc82010-07-14 15:31:37 -040015283 /* Search start from next bit of currently registered FCF index */
James Smart7d791df2011-07-22 18:37:52 -040015284next_priority:
James Smart3804dc82010-07-14 15:31:37 -040015285 next_fcf_index = (phba->fcf.current_rec.fcf_indx + 1) %
15286 LPFC_SLI4_FCF_TBL_INDX_MAX;
James Smart0c9ab6f2010-02-26 14:15:57 -050015287 next_fcf_index = find_next_bit(phba->fcf.fcf_rr_bmask,
15288 LPFC_SLI4_FCF_TBL_INDX_MAX,
James Smart3804dc82010-07-14 15:31:37 -040015289 next_fcf_index);
15290
James Smart0c9ab6f2010-02-26 14:15:57 -050015291 /* Wrap around condition on phba->fcf.fcf_rr_bmask */
James Smart7d791df2011-07-22 18:37:52 -040015292 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
15293 /*
15294 * If we have wrapped then we need to clear the bits that
15295 * have been tested so that we can detect when we should
15296 * change the priority level.
15297 */
James Smart0c9ab6f2010-02-26 14:15:57 -050015298 next_fcf_index = find_next_bit(phba->fcf.fcf_rr_bmask,
15299 LPFC_SLI4_FCF_TBL_INDX_MAX, 0);
James Smart7d791df2011-07-22 18:37:52 -040015300 }
15301
James Smart0c9ab6f2010-02-26 14:15:57 -050015302
James Smart3804dc82010-07-14 15:31:37 -040015303 /* Check roundrobin failover list empty condition */
James Smart7d791df2011-07-22 18:37:52 -040015304 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX ||
15305 next_fcf_index == phba->fcf.current_rec.fcf_indx) {
15306 /*
15307 * If next fcf index is not found check if there are lower
15308 * Priority level fcf's in the fcf_priority list.
15309 * Set up the rr_bmask with all of the avaiable fcf bits
15310 * at that level and continue the selection process.
15311 */
15312 if (lpfc_check_next_fcf_pri_level(phba))
15313 goto next_priority;
James Smart3804dc82010-07-14 15:31:37 -040015314 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
15315 "2844 No roundrobin failover FCF available\n");
James Smart7d791df2011-07-22 18:37:52 -040015316 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX)
15317 return LPFC_FCOE_FCF_NEXT_NONE;
15318 else {
15319 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
15320 "3063 Only FCF available idx %d, flag %x\n",
15321 next_fcf_index,
15322 phba->fcf.fcf_pri[next_fcf_index].fcf_rec.flag);
15323 return next_fcf_index;
15324 }
James Smart3804dc82010-07-14 15:31:37 -040015325 }
15326
James Smart7d791df2011-07-22 18:37:52 -040015327 if (next_fcf_index < LPFC_SLI4_FCF_TBL_INDX_MAX &&
15328 phba->fcf.fcf_pri[next_fcf_index].fcf_rec.flag &
15329 LPFC_FCF_FLOGI_FAILED)
15330 goto next_priority;
15331
James Smart3804dc82010-07-14 15:31:37 -040015332 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040015333 "2845 Get next roundrobin failover FCF (x%x)\n",
15334 next_fcf_index);
15335
James Smart0c9ab6f2010-02-26 14:15:57 -050015336 return next_fcf_index;
15337}
15338
15339/**
15340 * lpfc_sli4_fcf_rr_index_set - Set bmask with eligible fcf record index
15341 * @phba: pointer to lpfc hba data structure.
15342 *
15343 * This routine sets the FCF record index in to the eligible bmask for
James Smarta93ff372010-10-22 11:06:08 -040015344 * roundrobin failover search. It checks to make sure that the index
James Smart0c9ab6f2010-02-26 14:15:57 -050015345 * does not go beyond the range of the driver allocated bmask dimension
15346 * before setting the bit.
15347 *
15348 * Returns 0 if the index bit successfully set, otherwise, it returns
15349 * -EINVAL.
15350 **/
15351int
15352lpfc_sli4_fcf_rr_index_set(struct lpfc_hba *phba, uint16_t fcf_index)
15353{
15354 if (fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
15355 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040015356 "2610 FCF (x%x) reached driver's book "
15357 "keeping dimension:x%x\n",
James Smart0c9ab6f2010-02-26 14:15:57 -050015358 fcf_index, LPFC_SLI4_FCF_TBL_INDX_MAX);
15359 return -EINVAL;
15360 }
15361 /* Set the eligible FCF record index bmask */
15362 set_bit(fcf_index, phba->fcf.fcf_rr_bmask);
15363
James Smart3804dc82010-07-14 15:31:37 -040015364 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040015365 "2790 Set FCF (x%x) to roundrobin FCF failover "
James Smart3804dc82010-07-14 15:31:37 -040015366 "bmask\n", fcf_index);
15367
James Smart0c9ab6f2010-02-26 14:15:57 -050015368 return 0;
15369}
15370
15371/**
James Smart3804dc82010-07-14 15:31:37 -040015372 * lpfc_sli4_fcf_rr_index_clear - Clear bmask from eligible fcf record index
James Smart0c9ab6f2010-02-26 14:15:57 -050015373 * @phba: pointer to lpfc hba data structure.
15374 *
15375 * This routine clears the FCF record index from the eligible bmask for
James Smarta93ff372010-10-22 11:06:08 -040015376 * roundrobin failover search. It checks to make sure that the index
James Smart0c9ab6f2010-02-26 14:15:57 -050015377 * does not go beyond the range of the driver allocated bmask dimension
15378 * before clearing the bit.
15379 **/
15380void
15381lpfc_sli4_fcf_rr_index_clear(struct lpfc_hba *phba, uint16_t fcf_index)
15382{
James Smart7d791df2011-07-22 18:37:52 -040015383 struct lpfc_fcf_pri *fcf_pri;
James Smart0c9ab6f2010-02-26 14:15:57 -050015384 if (fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
15385 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040015386 "2762 FCF (x%x) reached driver's book "
15387 "keeping dimension:x%x\n",
James Smart0c9ab6f2010-02-26 14:15:57 -050015388 fcf_index, LPFC_SLI4_FCF_TBL_INDX_MAX);
15389 return;
15390 }
15391 /* Clear the eligible FCF record index bmask */
James Smart7d791df2011-07-22 18:37:52 -040015392 spin_lock_irq(&phba->hbalock);
15393 list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
15394 if (fcf_pri->fcf_rec.fcf_index == fcf_index) {
15395 list_del_init(&fcf_pri->list);
15396 break;
15397 }
15398 }
15399 spin_unlock_irq(&phba->hbalock);
James Smart0c9ab6f2010-02-26 14:15:57 -050015400 clear_bit(fcf_index, phba->fcf.fcf_rr_bmask);
James Smart3804dc82010-07-14 15:31:37 -040015401
15402 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040015403 "2791 Clear FCF (x%x) from roundrobin failover "
James Smart3804dc82010-07-14 15:31:37 -040015404 "bmask\n", fcf_index);
James Smart0c9ab6f2010-02-26 14:15:57 -050015405}
15406
15407/**
James Smartecfd03c2010-02-12 14:41:27 -050015408 * lpfc_mbx_cmpl_redisc_fcf_table - completion routine for rediscover FCF table
15409 * @phba: pointer to lpfc hba data structure.
15410 *
15411 * This routine is the completion routine for the rediscover FCF table mailbox
15412 * command. If the mailbox command returned failure, it will try to stop the
15413 * FCF rediscover wait timer.
15414 **/
15415void
15416lpfc_mbx_cmpl_redisc_fcf_table(struct lpfc_hba *phba, LPFC_MBOXQ_t *mbox)
15417{
15418 struct lpfc_mbx_redisc_fcf_tbl *redisc_fcf;
15419 uint32_t shdr_status, shdr_add_status;
15420
15421 redisc_fcf = &mbox->u.mqe.un.redisc_fcf_tbl;
15422
15423 shdr_status = bf_get(lpfc_mbox_hdr_status,
15424 &redisc_fcf->header.cfg_shdr.response);
15425 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status,
15426 &redisc_fcf->header.cfg_shdr.response);
15427 if (shdr_status || shdr_add_status) {
James Smart0c9ab6f2010-02-26 14:15:57 -050015428 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smartecfd03c2010-02-12 14:41:27 -050015429 "2746 Requesting for FCF rediscovery failed "
15430 "status x%x add_status x%x\n",
15431 shdr_status, shdr_add_status);
James Smart0c9ab6f2010-02-26 14:15:57 -050015432 if (phba->fcf.fcf_flag & FCF_ACVL_DISC) {
James Smartfc2b9892010-02-26 14:15:29 -050015433 spin_lock_irq(&phba->hbalock);
James Smart0c9ab6f2010-02-26 14:15:57 -050015434 phba->fcf.fcf_flag &= ~FCF_ACVL_DISC;
James Smartfc2b9892010-02-26 14:15:29 -050015435 spin_unlock_irq(&phba->hbalock);
15436 /*
15437 * CVL event triggered FCF rediscover request failed,
15438 * last resort to re-try current registered FCF entry.
15439 */
15440 lpfc_retry_pport_discovery(phba);
15441 } else {
15442 spin_lock_irq(&phba->hbalock);
James Smart0c9ab6f2010-02-26 14:15:57 -050015443 phba->fcf.fcf_flag &= ~FCF_DEAD_DISC;
James Smartfc2b9892010-02-26 14:15:29 -050015444 spin_unlock_irq(&phba->hbalock);
15445 /*
15446 * DEAD FCF event triggered FCF rediscover request
15447 * failed, last resort to fail over as a link down
15448 * to FCF registration.
15449 */
15450 lpfc_sli4_fcf_dead_failthrough(phba);
15451 }
James Smart0c9ab6f2010-02-26 14:15:57 -050015452 } else {
15453 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040015454 "2775 Start FCF rediscover quiescent timer\n");
James Smartecfd03c2010-02-12 14:41:27 -050015455 /*
15456 * Start FCF rediscovery wait timer for pending FCF
15457 * before rescan FCF record table.
15458 */
15459 lpfc_fcf_redisc_wait_start_timer(phba);
James Smart0c9ab6f2010-02-26 14:15:57 -050015460 }
James Smartecfd03c2010-02-12 14:41:27 -050015461
15462 mempool_free(mbox, phba->mbox_mem_pool);
15463}
15464
15465/**
James Smart3804dc82010-07-14 15:31:37 -040015466 * lpfc_sli4_redisc_fcf_table - Request to rediscover entire FCF table by port.
James Smartecfd03c2010-02-12 14:41:27 -050015467 * @phba: pointer to lpfc hba data structure.
15468 *
15469 * This routine is invoked to request for rediscovery of the entire FCF table
15470 * by the port.
15471 **/
15472int
15473lpfc_sli4_redisc_fcf_table(struct lpfc_hba *phba)
15474{
15475 LPFC_MBOXQ_t *mbox;
15476 struct lpfc_mbx_redisc_fcf_tbl *redisc_fcf;
15477 int rc, length;
15478
James Smart0c9ab6f2010-02-26 14:15:57 -050015479 /* Cancel retry delay timers to all vports before FCF rediscover */
15480 lpfc_cancel_all_vport_retry_delay_timer(phba);
15481
James Smartecfd03c2010-02-12 14:41:27 -050015482 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15483 if (!mbox) {
15484 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15485 "2745 Failed to allocate mbox for "
15486 "requesting FCF rediscover.\n");
15487 return -ENOMEM;
15488 }
15489
15490 length = (sizeof(struct lpfc_mbx_redisc_fcf_tbl) -
15491 sizeof(struct lpfc_sli4_cfg_mhdr));
15492 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
15493 LPFC_MBOX_OPCODE_FCOE_REDISCOVER_FCF,
15494 length, LPFC_SLI4_MBX_EMBED);
15495
15496 redisc_fcf = &mbox->u.mqe.un.redisc_fcf_tbl;
15497 /* Set count to 0 for invalidating the entire FCF database */
15498 bf_set(lpfc_mbx_redisc_fcf_count, redisc_fcf, 0);
15499
15500 /* Issue the mailbox command asynchronously */
15501 mbox->vport = phba->pport;
15502 mbox->mbox_cmpl = lpfc_mbx_cmpl_redisc_fcf_table;
15503 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
15504
15505 if (rc == MBX_NOT_FINISHED) {
15506 mempool_free(mbox, phba->mbox_mem_pool);
15507 return -EIO;
15508 }
15509 return 0;
15510}
15511
15512/**
James Smartfc2b9892010-02-26 14:15:29 -050015513 * lpfc_sli4_fcf_dead_failthrough - Failthrough routine to fcf dead event
15514 * @phba: pointer to lpfc hba data structure.
15515 *
15516 * This function is the failover routine as a last resort to the FCF DEAD
15517 * event when driver failed to perform fast FCF failover.
15518 **/
15519void
15520lpfc_sli4_fcf_dead_failthrough(struct lpfc_hba *phba)
15521{
15522 uint32_t link_state;
15523
15524 /*
15525 * Last resort as FCF DEAD event failover will treat this as
15526 * a link down, but save the link state because we don't want
15527 * it to be changed to Link Down unless it is already down.
15528 */
15529 link_state = phba->link_state;
15530 lpfc_linkdown(phba);
15531 phba->link_state = link_state;
15532
15533 /* Unregister FCF if no devices connected to it */
15534 lpfc_unregister_unused_fcf(phba);
15535}
15536
15537/**
James Smart026abb82011-12-13 13:20:45 -050015538 * lpfc_sli_get_config_region23 - Get sli3 port region 23 data.
James Smarta0c87cb2009-07-19 10:01:10 -040015539 * @phba: pointer to lpfc hba data structure.
James Smart026abb82011-12-13 13:20:45 -050015540 * @rgn23_data: pointer to configure region 23 data.
James Smarta0c87cb2009-07-19 10:01:10 -040015541 *
James Smart026abb82011-12-13 13:20:45 -050015542 * This function gets SLI3 port configure region 23 data through memory dump
15543 * mailbox command. When it successfully retrieves data, the size of the data
15544 * will be returned, otherwise, 0 will be returned.
James Smarta0c87cb2009-07-19 10:01:10 -040015545 **/
James Smart026abb82011-12-13 13:20:45 -050015546static uint32_t
15547lpfc_sli_get_config_region23(struct lpfc_hba *phba, char *rgn23_data)
James Smarta0c87cb2009-07-19 10:01:10 -040015548{
15549 LPFC_MBOXQ_t *pmb = NULL;
15550 MAILBOX_t *mb;
James Smart026abb82011-12-13 13:20:45 -050015551 uint32_t offset = 0;
James Smarta0c87cb2009-07-19 10:01:10 -040015552 int rc;
15553
James Smart026abb82011-12-13 13:20:45 -050015554 if (!rgn23_data)
15555 return 0;
15556
James Smarta0c87cb2009-07-19 10:01:10 -040015557 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15558 if (!pmb) {
15559 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart026abb82011-12-13 13:20:45 -050015560 "2600 failed to allocate mailbox memory\n");
15561 return 0;
James Smarta0c87cb2009-07-19 10:01:10 -040015562 }
15563 mb = &pmb->u.mb;
15564
James Smarta0c87cb2009-07-19 10:01:10 -040015565 do {
15566 lpfc_dump_mem(phba, pmb, offset, DMP_REGION_23);
15567 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
15568
15569 if (rc != MBX_SUCCESS) {
15570 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smart026abb82011-12-13 13:20:45 -050015571 "2601 failed to read config "
15572 "region 23, rc 0x%x Status 0x%x\n",
15573 rc, mb->mbxStatus);
James Smarta0c87cb2009-07-19 10:01:10 -040015574 mb->un.varDmp.word_cnt = 0;
15575 }
15576 /*
15577 * dump mem may return a zero when finished or we got a
15578 * mailbox error, either way we are done.
15579 */
15580 if (mb->un.varDmp.word_cnt == 0)
15581 break;
15582 if (mb->un.varDmp.word_cnt > DMP_RGN23_SIZE - offset)
15583 mb->un.varDmp.word_cnt = DMP_RGN23_SIZE - offset;
15584
15585 lpfc_sli_pcimem_bcopy(((uint8_t *)mb) + DMP_RSP_OFFSET,
James Smart026abb82011-12-13 13:20:45 -050015586 rgn23_data + offset,
15587 mb->un.varDmp.word_cnt);
James Smarta0c87cb2009-07-19 10:01:10 -040015588 offset += mb->un.varDmp.word_cnt;
15589 } while (mb->un.varDmp.word_cnt && offset < DMP_RGN23_SIZE);
15590
James Smart026abb82011-12-13 13:20:45 -050015591 mempool_free(pmb, phba->mbox_mem_pool);
15592 return offset;
15593}
15594
15595/**
15596 * lpfc_sli4_get_config_region23 - Get sli4 port region 23 data.
15597 * @phba: pointer to lpfc hba data structure.
15598 * @rgn23_data: pointer to configure region 23 data.
15599 *
15600 * This function gets SLI4 port configure region 23 data through memory dump
15601 * mailbox command. When it successfully retrieves data, the size of the data
15602 * will be returned, otherwise, 0 will be returned.
15603 **/
15604static uint32_t
15605lpfc_sli4_get_config_region23(struct lpfc_hba *phba, char *rgn23_data)
15606{
15607 LPFC_MBOXQ_t *mboxq = NULL;
15608 struct lpfc_dmabuf *mp = NULL;
15609 struct lpfc_mqe *mqe;
15610 uint32_t data_length = 0;
15611 int rc;
15612
15613 if (!rgn23_data)
15614 return 0;
15615
15616 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15617 if (!mboxq) {
15618 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15619 "3105 failed to allocate mailbox memory\n");
15620 return 0;
15621 }
15622
15623 if (lpfc_sli4_dump_cfg_rg23(phba, mboxq))
15624 goto out;
15625 mqe = &mboxq->u.mqe;
15626 mp = (struct lpfc_dmabuf *) mboxq->context1;
15627 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
15628 if (rc)
15629 goto out;
15630 data_length = mqe->un.mb_words[5];
15631 if (data_length == 0)
15632 goto out;
15633 if (data_length > DMP_RGN23_SIZE) {
15634 data_length = 0;
15635 goto out;
15636 }
15637 lpfc_sli_pcimem_bcopy((char *)mp->virt, rgn23_data, data_length);
15638out:
15639 mempool_free(mboxq, phba->mbox_mem_pool);
15640 if (mp) {
15641 lpfc_mbuf_free(phba, mp->virt, mp->phys);
15642 kfree(mp);
15643 }
15644 return data_length;
15645}
15646
15647/**
15648 * lpfc_sli_read_link_ste - Read region 23 to decide if link is disabled.
15649 * @phba: pointer to lpfc hba data structure.
15650 *
15651 * This function read region 23 and parse TLV for port status to
15652 * decide if the user disaled the port. If the TLV indicates the
15653 * port is disabled, the hba_flag is set accordingly.
15654 **/
15655void
15656lpfc_sli_read_link_ste(struct lpfc_hba *phba)
15657{
15658 uint8_t *rgn23_data = NULL;
15659 uint32_t if_type, data_size, sub_tlv_len, tlv_offset;
15660 uint32_t offset = 0;
15661
15662 /* Get adapter Region 23 data */
15663 rgn23_data = kzalloc(DMP_RGN23_SIZE, GFP_KERNEL);
15664 if (!rgn23_data)
15665 goto out;
15666
15667 if (phba->sli_rev < LPFC_SLI_REV4)
15668 data_size = lpfc_sli_get_config_region23(phba, rgn23_data);
15669 else {
15670 if_type = bf_get(lpfc_sli_intf_if_type,
15671 &phba->sli4_hba.sli_intf);
15672 if (if_type == LPFC_SLI_INTF_IF_TYPE_0)
15673 goto out;
15674 data_size = lpfc_sli4_get_config_region23(phba, rgn23_data);
15675 }
James Smarta0c87cb2009-07-19 10:01:10 -040015676
15677 if (!data_size)
15678 goto out;
15679
15680 /* Check the region signature first */
15681 if (memcmp(&rgn23_data[offset], LPFC_REGION23_SIGNATURE, 4)) {
15682 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15683 "2619 Config region 23 has bad signature\n");
15684 goto out;
15685 }
15686 offset += 4;
15687
15688 /* Check the data structure version */
15689 if (rgn23_data[offset] != LPFC_REGION23_VERSION) {
15690 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15691 "2620 Config region 23 has bad version\n");
15692 goto out;
15693 }
15694 offset += 4;
15695
15696 /* Parse TLV entries in the region */
15697 while (offset < data_size) {
15698 if (rgn23_data[offset] == LPFC_REGION23_LAST_REC)
15699 break;
15700 /*
15701 * If the TLV is not driver specific TLV or driver id is
15702 * not linux driver id, skip the record.
15703 */
15704 if ((rgn23_data[offset] != DRIVER_SPECIFIC_TYPE) ||
15705 (rgn23_data[offset + 2] != LINUX_DRIVER_ID) ||
15706 (rgn23_data[offset + 3] != 0)) {
15707 offset += rgn23_data[offset + 1] * 4 + 4;
15708 continue;
15709 }
15710
15711 /* Driver found a driver specific TLV in the config region */
15712 sub_tlv_len = rgn23_data[offset + 1] * 4;
15713 offset += 4;
15714 tlv_offset = 0;
15715
15716 /*
15717 * Search for configured port state sub-TLV.
15718 */
15719 while ((offset < data_size) &&
15720 (tlv_offset < sub_tlv_len)) {
15721 if (rgn23_data[offset] == LPFC_REGION23_LAST_REC) {
15722 offset += 4;
15723 tlv_offset += 4;
15724 break;
15725 }
15726 if (rgn23_data[offset] != PORT_STE_TYPE) {
15727 offset += rgn23_data[offset + 1] * 4 + 4;
15728 tlv_offset += rgn23_data[offset + 1] * 4 + 4;
15729 continue;
15730 }
15731
15732 /* This HBA contains PORT_STE configured */
15733 if (!rgn23_data[offset + 2])
15734 phba->hba_flag |= LINK_DISABLED;
15735
15736 goto out;
15737 }
15738 }
James Smart026abb82011-12-13 13:20:45 -050015739
James Smarta0c87cb2009-07-19 10:01:10 -040015740out:
James Smarta0c87cb2009-07-19 10:01:10 -040015741 kfree(rgn23_data);
15742 return;
15743}
James Smart695a8142010-01-26 23:08:03 -050015744
15745/**
James Smart52d52442011-05-24 11:42:45 -040015746 * lpfc_wr_object - write an object to the firmware
15747 * @phba: HBA structure that indicates port to create a queue on.
15748 * @dmabuf_list: list of dmabufs to write to the port.
15749 * @size: the total byte value of the objects to write to the port.
15750 * @offset: the current offset to be used to start the transfer.
15751 *
15752 * This routine will create a wr_object mailbox command to send to the port.
15753 * the mailbox command will be constructed using the dma buffers described in
15754 * @dmabuf_list to create a list of BDEs. This routine will fill in as many
15755 * BDEs that the imbedded mailbox can support. The @offset variable will be
15756 * used to indicate the starting offset of the transfer and will also return
15757 * the offset after the write object mailbox has completed. @size is used to
15758 * determine the end of the object and whether the eof bit should be set.
15759 *
15760 * Return 0 is successful and offset will contain the the new offset to use
15761 * for the next write.
15762 * Return negative value for error cases.
15763 **/
15764int
15765lpfc_wr_object(struct lpfc_hba *phba, struct list_head *dmabuf_list,
15766 uint32_t size, uint32_t *offset)
15767{
15768 struct lpfc_mbx_wr_object *wr_object;
15769 LPFC_MBOXQ_t *mbox;
15770 int rc = 0, i = 0;
15771 uint32_t shdr_status, shdr_add_status;
15772 uint32_t mbox_tmo;
15773 union lpfc_sli4_cfg_shdr *shdr;
15774 struct lpfc_dmabuf *dmabuf;
15775 uint32_t written = 0;
15776
15777 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15778 if (!mbox)
15779 return -ENOMEM;
15780
15781 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
15782 LPFC_MBOX_OPCODE_WRITE_OBJECT,
15783 sizeof(struct lpfc_mbx_wr_object) -
15784 sizeof(struct lpfc_sli4_cfg_mhdr), LPFC_SLI4_MBX_EMBED);
15785
15786 wr_object = (struct lpfc_mbx_wr_object *)&mbox->u.mqe.un.wr_object;
15787 wr_object->u.request.write_offset = *offset;
15788 sprintf((uint8_t *)wr_object->u.request.object_name, "/");
15789 wr_object->u.request.object_name[0] =
15790 cpu_to_le32(wr_object->u.request.object_name[0]);
15791 bf_set(lpfc_wr_object_eof, &wr_object->u.request, 0);
15792 list_for_each_entry(dmabuf, dmabuf_list, list) {
15793 if (i >= LPFC_MBX_WR_CONFIG_MAX_BDE || written >= size)
15794 break;
15795 wr_object->u.request.bde[i].addrLow = putPaddrLow(dmabuf->phys);
15796 wr_object->u.request.bde[i].addrHigh =
15797 putPaddrHigh(dmabuf->phys);
15798 if (written + SLI4_PAGE_SIZE >= size) {
15799 wr_object->u.request.bde[i].tus.f.bdeSize =
15800 (size - written);
15801 written += (size - written);
15802 bf_set(lpfc_wr_object_eof, &wr_object->u.request, 1);
15803 } else {
15804 wr_object->u.request.bde[i].tus.f.bdeSize =
15805 SLI4_PAGE_SIZE;
15806 written += SLI4_PAGE_SIZE;
15807 }
15808 i++;
15809 }
15810 wr_object->u.request.bde_count = i;
15811 bf_set(lpfc_wr_object_write_length, &wr_object->u.request, written);
15812 if (!phba->sli4_hba.intr_enable)
15813 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
15814 else {
James Smarta183a152011-10-10 21:32:43 -040015815 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart52d52442011-05-24 11:42:45 -040015816 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
15817 }
15818 /* The IOCTL status is embedded in the mailbox subheader. */
15819 shdr = (union lpfc_sli4_cfg_shdr *) &wr_object->header.cfg_shdr;
15820 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
15821 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
15822 if (rc != MBX_TIMEOUT)
15823 mempool_free(mbox, phba->mbox_mem_pool);
15824 if (shdr_status || shdr_add_status || rc) {
15825 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15826 "3025 Write Object mailbox failed with "
15827 "status x%x add_status x%x, mbx status x%x\n",
15828 shdr_status, shdr_add_status, rc);
15829 rc = -ENXIO;
15830 } else
15831 *offset += wr_object->u.response.actual_write_length;
15832 return rc;
15833}
15834
15835/**
James Smart695a8142010-01-26 23:08:03 -050015836 * lpfc_cleanup_pending_mbox - Free up vport discovery mailbox commands.
15837 * @vport: pointer to vport data structure.
15838 *
15839 * This function iterate through the mailboxq and clean up all REG_LOGIN
15840 * and REG_VPI mailbox commands associated with the vport. This function
15841 * is called when driver want to restart discovery of the vport due to
15842 * a Clear Virtual Link event.
15843 **/
15844void
15845lpfc_cleanup_pending_mbox(struct lpfc_vport *vport)
15846{
15847 struct lpfc_hba *phba = vport->phba;
15848 LPFC_MBOXQ_t *mb, *nextmb;
15849 struct lpfc_dmabuf *mp;
James Smart78730cf2010-04-06 15:06:30 -040015850 struct lpfc_nodelist *ndlp;
James Smartd439d282010-09-29 11:18:45 -040015851 struct lpfc_nodelist *act_mbx_ndlp = NULL;
James Smart589a52d2010-07-14 15:30:54 -040015852 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smartd439d282010-09-29 11:18:45 -040015853 LIST_HEAD(mbox_cmd_list);
James Smart63e801c2010-11-20 23:14:19 -050015854 uint8_t restart_loop;
James Smart695a8142010-01-26 23:08:03 -050015855
James Smartd439d282010-09-29 11:18:45 -040015856 /* Clean up internally queued mailbox commands with the vport */
James Smart695a8142010-01-26 23:08:03 -050015857 spin_lock_irq(&phba->hbalock);
15858 list_for_each_entry_safe(mb, nextmb, &phba->sli.mboxq, list) {
15859 if (mb->vport != vport)
15860 continue;
15861
15862 if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) &&
15863 (mb->u.mb.mbxCommand != MBX_REG_VPI))
15864 continue;
15865
James Smartd439d282010-09-29 11:18:45 -040015866 list_del(&mb->list);
15867 list_add_tail(&mb->list, &mbox_cmd_list);
15868 }
15869 /* Clean up active mailbox command with the vport */
15870 mb = phba->sli.mbox_active;
15871 if (mb && (mb->vport == vport)) {
15872 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) ||
15873 (mb->u.mb.mbxCommand == MBX_REG_VPI))
15874 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
15875 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
15876 act_mbx_ndlp = (struct lpfc_nodelist *)mb->context2;
15877 /* Put reference count for delayed processing */
15878 act_mbx_ndlp = lpfc_nlp_get(act_mbx_ndlp);
15879 /* Unregister the RPI when mailbox complete */
15880 mb->mbox_flag |= LPFC_MBX_IMED_UNREG;
15881 }
15882 }
James Smart63e801c2010-11-20 23:14:19 -050015883 /* Cleanup any mailbox completions which are not yet processed */
15884 do {
15885 restart_loop = 0;
15886 list_for_each_entry(mb, &phba->sli.mboxq_cmpl, list) {
15887 /*
15888 * If this mailox is already processed or it is
15889 * for another vport ignore it.
15890 */
15891 if ((mb->vport != vport) ||
15892 (mb->mbox_flag & LPFC_MBX_IMED_UNREG))
15893 continue;
15894
15895 if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) &&
15896 (mb->u.mb.mbxCommand != MBX_REG_VPI))
15897 continue;
15898
15899 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
15900 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
15901 ndlp = (struct lpfc_nodelist *)mb->context2;
15902 /* Unregister the RPI when mailbox complete */
15903 mb->mbox_flag |= LPFC_MBX_IMED_UNREG;
15904 restart_loop = 1;
15905 spin_unlock_irq(&phba->hbalock);
15906 spin_lock(shost->host_lock);
15907 ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
15908 spin_unlock(shost->host_lock);
15909 spin_lock_irq(&phba->hbalock);
15910 break;
15911 }
15912 }
15913 } while (restart_loop);
15914
James Smartd439d282010-09-29 11:18:45 -040015915 spin_unlock_irq(&phba->hbalock);
15916
15917 /* Release the cleaned-up mailbox commands */
15918 while (!list_empty(&mbox_cmd_list)) {
15919 list_remove_head(&mbox_cmd_list, mb, LPFC_MBOXQ_t, list);
James Smart695a8142010-01-26 23:08:03 -050015920 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
15921 mp = (struct lpfc_dmabuf *) (mb->context1);
15922 if (mp) {
15923 __lpfc_mbuf_free(phba, mp->virt, mp->phys);
15924 kfree(mp);
15925 }
James Smart78730cf2010-04-06 15:06:30 -040015926 ndlp = (struct lpfc_nodelist *) mb->context2;
James Smartd439d282010-09-29 11:18:45 -040015927 mb->context2 = NULL;
James Smart78730cf2010-04-06 15:06:30 -040015928 if (ndlp) {
Dan Carpenterec21b3b2010-08-08 00:15:17 +020015929 spin_lock(shost->host_lock);
James Smart589a52d2010-07-14 15:30:54 -040015930 ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
Dan Carpenterec21b3b2010-08-08 00:15:17 +020015931 spin_unlock(shost->host_lock);
James Smart78730cf2010-04-06 15:06:30 -040015932 lpfc_nlp_put(ndlp);
James Smart78730cf2010-04-06 15:06:30 -040015933 }
James Smart695a8142010-01-26 23:08:03 -050015934 }
James Smart695a8142010-01-26 23:08:03 -050015935 mempool_free(mb, phba->mbox_mem_pool);
15936 }
James Smartd439d282010-09-29 11:18:45 -040015937
15938 /* Release the ndlp with the cleaned-up active mailbox command */
15939 if (act_mbx_ndlp) {
15940 spin_lock(shost->host_lock);
15941 act_mbx_ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
15942 spin_unlock(shost->host_lock);
15943 lpfc_nlp_put(act_mbx_ndlp);
James Smart695a8142010-01-26 23:08:03 -050015944 }
James Smart695a8142010-01-26 23:08:03 -050015945}
15946
James Smart2a9bf3d2010-06-07 15:24:45 -040015947/**
15948 * lpfc_drain_txq - Drain the txq
15949 * @phba: Pointer to HBA context object.
15950 *
15951 * This function attempt to submit IOCBs on the txq
15952 * to the adapter. For SLI4 adapters, the txq contains
15953 * ELS IOCBs that have been deferred because the there
15954 * are no SGLs. This congestion can occur with large
15955 * vport counts during node discovery.
15956 **/
15957
15958uint32_t
15959lpfc_drain_txq(struct lpfc_hba *phba)
15960{
15961 LIST_HEAD(completions);
15962 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
15963 struct lpfc_iocbq *piocbq = 0;
15964 unsigned long iflags = 0;
15965 char *fail_msg = NULL;
15966 struct lpfc_sglq *sglq;
15967 union lpfc_wqe wqe;
15968
15969 spin_lock_irqsave(&phba->hbalock, iflags);
15970 if (pring->txq_cnt > pring->txq_max)
15971 pring->txq_max = pring->txq_cnt;
15972
15973 spin_unlock_irqrestore(&phba->hbalock, iflags);
15974
15975 while (pring->txq_cnt) {
15976 spin_lock_irqsave(&phba->hbalock, iflags);
15977
James Smart19ca7602010-11-20 23:11:55 -050015978 piocbq = lpfc_sli_ringtx_get(phba, pring);
15979 sglq = __lpfc_sli_get_sglq(phba, piocbq);
James Smart2a9bf3d2010-06-07 15:24:45 -040015980 if (!sglq) {
James Smart19ca7602010-11-20 23:11:55 -050015981 __lpfc_sli_ringtx_put(phba, pring, piocbq);
James Smart2a9bf3d2010-06-07 15:24:45 -040015982 spin_unlock_irqrestore(&phba->hbalock, iflags);
15983 break;
15984 } else {
James Smart2a9bf3d2010-06-07 15:24:45 -040015985 if (!piocbq) {
15986 /* The txq_cnt out of sync. This should
15987 * never happen
15988 */
15989 sglq = __lpfc_clear_active_sglq(phba,
James Smart6d368e52011-05-24 11:44:12 -040015990 sglq->sli4_lxritag);
James Smart2a9bf3d2010-06-07 15:24:45 -040015991 spin_unlock_irqrestore(&phba->hbalock, iflags);
15992 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15993 "2823 txq empty and txq_cnt is %d\n ",
15994 pring->txq_cnt);
15995 break;
15996 }
15997 }
15998
15999 /* The xri and iocb resources secured,
16000 * attempt to issue request
16001 */
James Smart6d368e52011-05-24 11:44:12 -040016002 piocbq->sli4_lxritag = sglq->sli4_lxritag;
James Smart2a9bf3d2010-06-07 15:24:45 -040016003 piocbq->sli4_xritag = sglq->sli4_xritag;
16004 if (NO_XRI == lpfc_sli4_bpl2sgl(phba, piocbq, sglq))
16005 fail_msg = "to convert bpl to sgl";
16006 else if (lpfc_sli4_iocb2wqe(phba, piocbq, &wqe))
16007 fail_msg = "to convert iocb to wqe";
16008 else if (lpfc_sli4_wq_put(phba->sli4_hba.els_wq, &wqe))
16009 fail_msg = " - Wq is full";
16010 else
16011 lpfc_sli_ringtxcmpl_put(phba, pring, piocbq);
16012
16013 if (fail_msg) {
16014 /* Failed means we can't issue and need to cancel */
16015 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
16016 "2822 IOCB failed %s iotag 0x%x "
16017 "xri 0x%x\n",
16018 fail_msg,
16019 piocbq->iotag, piocbq->sli4_xritag);
16020 list_add_tail(&piocbq->list, &completions);
16021 }
16022 spin_unlock_irqrestore(&phba->hbalock, iflags);
16023 }
16024
James Smart2a9bf3d2010-06-07 15:24:45 -040016025 /* Cancel all the IOCBs that cannot be issued */
16026 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
16027 IOERR_SLI_ABORTED);
16028
16029 return pring->txq_cnt;
16030}