blob: 34ba7aaec48c32dd7f97fffeb13d6916e56977cb [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 Smart92c13f22013-05-31 17:05:45 -04004 * Copyright (C) 2004-2013 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 *);
James Smart8a9d2e82012-05-09 21:16:12 -040070static int lpfc_sli4_post_els_sgl_list(struct lpfc_hba *, struct list_head *,
71 int);
James Smartba20c852012-08-03 12:36:52 -040072static void lpfc_sli4_hba_handle_eqe(struct lpfc_hba *, struct lpfc_eqe *,
73 uint32_t);
James Smarte8d3c3b2013-10-10 12:21:30 -040074static bool lpfc_sli4_mbox_completions_pending(struct lpfc_hba *phba);
75static bool lpfc_sli4_process_missed_mbox_completions(struct lpfc_hba *phba);
James Smart05580562011-05-24 11:40:48 -040076
James Smart4f774512009-05-22 14:52:35 -040077static IOCB_t *
78lpfc_get_iocb_from_iocbq(struct lpfc_iocbq *iocbq)
79{
80 return &iocbq->iocb;
81}
82
83/**
84 * lpfc_sli4_wq_put - Put a Work Queue Entry on an Work Queue
85 * @q: The Work Queue to operate on.
86 * @wqe: The work Queue Entry to put on the Work queue.
87 *
88 * This routine will copy the contents of @wqe to the next available entry on
89 * the @q. This function will then ring the Work Queue Doorbell to signal the
90 * HBA to start processing the Work Queue Entry. This function returns 0 if
91 * successful. If no entries are available on @q then this function will return
92 * -ENOMEM.
93 * The caller is expected to hold the hbalock when calling this routine.
94 **/
95static uint32_t
96lpfc_sli4_wq_put(struct lpfc_queue *q, union lpfc_wqe *wqe)
97{
James Smart2e90f4b2011-12-13 13:22:37 -050098 union lpfc_wqe *temp_wqe;
James Smart4f774512009-05-22 14:52:35 -040099 struct lpfc_register doorbell;
100 uint32_t host_index;
James Smart027140e2012-08-03 12:35:44 -0400101 uint32_t idx;
James Smart4f774512009-05-22 14:52:35 -0400102
James Smart2e90f4b2011-12-13 13:22:37 -0500103 /* sanity check on queue memory */
104 if (unlikely(!q))
105 return -ENOMEM;
106 temp_wqe = q->qe[q->host_index].wqe;
107
James Smart4f774512009-05-22 14:52:35 -0400108 /* If the host has not yet processed the next entry then we are done */
James Smart027140e2012-08-03 12:35:44 -0400109 idx = ((q->host_index + 1) % q->entry_count);
110 if (idx == q->hba_index) {
James Smartb84daac2012-08-03 12:35:13 -0400111 q->WQ_overflow++;
James Smart4f774512009-05-22 14:52:35 -0400112 return -ENOMEM;
James Smartb84daac2012-08-03 12:35:13 -0400113 }
114 q->WQ_posted++;
James Smart4f774512009-05-22 14:52:35 -0400115 /* set consumption flag every once in a while */
James Smartff78d8f2011-12-13 13:21:35 -0500116 if (!((q->host_index + 1) % q->entry_repost))
James Smartf0d9bcc2010-10-22 11:07:09 -0400117 bf_set(wqe_wqec, &wqe->generic.wqe_com, 1);
James Smartfedd3b72011-02-16 12:39:24 -0500118 if (q->phba->sli3_options & LPFC_SLI4_PHWQ_ENABLED)
119 bf_set(wqe_wqid, &wqe->generic.wqe_com, q->queue_id);
James Smart4f774512009-05-22 14:52:35 -0400120 lpfc_sli_pcimem_bcopy(wqe, temp_wqe, q->entry_size);
121
122 /* Update the host index before invoking device */
123 host_index = q->host_index;
James Smart027140e2012-08-03 12:35:44 -0400124
125 q->host_index = idx;
James Smart4f774512009-05-22 14:52:35 -0400126
127 /* Ring Doorbell */
128 doorbell.word0 = 0;
James Smart962bc512013-01-03 15:44:00 -0500129 if (q->db_format == LPFC_DB_LIST_FORMAT) {
130 bf_set(lpfc_wq_db_list_fm_num_posted, &doorbell, 1);
131 bf_set(lpfc_wq_db_list_fm_index, &doorbell, host_index);
132 bf_set(lpfc_wq_db_list_fm_id, &doorbell, q->queue_id);
133 } else if (q->db_format == LPFC_DB_RING_FORMAT) {
134 bf_set(lpfc_wq_db_ring_fm_num_posted, &doorbell, 1);
135 bf_set(lpfc_wq_db_ring_fm_id, &doorbell, q->queue_id);
136 } else {
137 return -EINVAL;
138 }
139 writel(doorbell.word0, q->db_regaddr);
James Smart4f774512009-05-22 14:52:35 -0400140
141 return 0;
142}
143
144/**
145 * lpfc_sli4_wq_release - Updates internal hba index for WQ
146 * @q: The Work Queue to operate on.
147 * @index: The index to advance the hba index to.
148 *
149 * This routine will update the HBA index of a queue to reflect consumption of
150 * Work Queue Entries by the HBA. When the HBA indicates that it has consumed
151 * an entry the host calls this function to update the queue's internal
152 * pointers. This routine returns the number of entries that were consumed by
153 * the HBA.
154 **/
155static uint32_t
156lpfc_sli4_wq_release(struct lpfc_queue *q, uint32_t index)
157{
158 uint32_t released = 0;
159
James Smart2e90f4b2011-12-13 13:22:37 -0500160 /* sanity check on queue memory */
161 if (unlikely(!q))
162 return 0;
163
James Smart4f774512009-05-22 14:52:35 -0400164 if (q->hba_index == index)
165 return 0;
166 do {
167 q->hba_index = ((q->hba_index + 1) % q->entry_count);
168 released++;
169 } while (q->hba_index != index);
170 return released;
171}
172
173/**
174 * lpfc_sli4_mq_put - Put a Mailbox Queue Entry on an Mailbox Queue
175 * @q: The Mailbox Queue to operate on.
176 * @wqe: The Mailbox Queue Entry to put on the Work queue.
177 *
178 * This routine will copy the contents of @mqe to the next available entry on
179 * the @q. This function will then ring the Work Queue Doorbell to signal the
180 * HBA to start processing the Work Queue Entry. This function returns 0 if
181 * successful. If no entries are available on @q then this function will return
182 * -ENOMEM.
183 * The caller is expected to hold the hbalock when calling this routine.
184 **/
185static uint32_t
186lpfc_sli4_mq_put(struct lpfc_queue *q, struct lpfc_mqe *mqe)
187{
James Smart2e90f4b2011-12-13 13:22:37 -0500188 struct lpfc_mqe *temp_mqe;
James Smart4f774512009-05-22 14:52:35 -0400189 struct lpfc_register doorbell;
190 uint32_t host_index;
191
James Smart2e90f4b2011-12-13 13:22:37 -0500192 /* sanity check on queue memory */
193 if (unlikely(!q))
194 return -ENOMEM;
195 temp_mqe = q->qe[q->host_index].mqe;
196
James Smart4f774512009-05-22 14:52:35 -0400197 /* If the host has not yet processed the next entry then we are done */
198 if (((q->host_index + 1) % q->entry_count) == q->hba_index)
199 return -ENOMEM;
200 lpfc_sli_pcimem_bcopy(mqe, temp_mqe, q->entry_size);
201 /* Save off the mailbox pointer for completion */
202 q->phba->mbox = (MAILBOX_t *)temp_mqe;
203
204 /* Update the host index before invoking device */
205 host_index = q->host_index;
206 q->host_index = ((q->host_index + 1) % q->entry_count);
207
208 /* Ring Doorbell */
209 doorbell.word0 = 0;
210 bf_set(lpfc_mq_doorbell_num_posted, &doorbell, 1);
211 bf_set(lpfc_mq_doorbell_id, &doorbell, q->queue_id);
212 writel(doorbell.word0, q->phba->sli4_hba.MQDBregaddr);
James Smart4f774512009-05-22 14:52:35 -0400213 return 0;
214}
215
216/**
217 * lpfc_sli4_mq_release - Updates internal hba index for MQ
218 * @q: The Mailbox Queue to operate on.
219 *
220 * This routine will update the HBA index of a queue to reflect consumption of
221 * a Mailbox Queue Entry by the HBA. When the HBA indicates that it has consumed
222 * an entry the host calls this function to update the queue's internal
223 * pointers. This routine returns the number of entries that were consumed by
224 * the HBA.
225 **/
226static uint32_t
227lpfc_sli4_mq_release(struct lpfc_queue *q)
228{
James Smart2e90f4b2011-12-13 13:22:37 -0500229 /* sanity check on queue memory */
230 if (unlikely(!q))
231 return 0;
232
James Smart4f774512009-05-22 14:52:35 -0400233 /* Clear the mailbox pointer for completion */
234 q->phba->mbox = NULL;
235 q->hba_index = ((q->hba_index + 1) % q->entry_count);
236 return 1;
237}
238
239/**
240 * lpfc_sli4_eq_get - Gets the next valid EQE from a EQ
241 * @q: The Event Queue to get the first valid EQE from
242 *
243 * This routine will get the first valid Event Queue Entry from @q, update
244 * the queue's internal hba index, and return the EQE. If no valid EQEs are in
245 * the Queue (no more work to do), or the Queue is full of EQEs that have been
246 * processed, but not popped back to the HBA then this routine will return NULL.
247 **/
248static struct lpfc_eqe *
249lpfc_sli4_eq_get(struct lpfc_queue *q)
250{
James Smart2e90f4b2011-12-13 13:22:37 -0500251 struct lpfc_eqe *eqe;
James Smart027140e2012-08-03 12:35:44 -0400252 uint32_t idx;
James Smart2e90f4b2011-12-13 13:22:37 -0500253
254 /* sanity check on queue memory */
255 if (unlikely(!q))
256 return NULL;
257 eqe = q->qe[q->hba_index].eqe;
James Smart4f774512009-05-22 14:52:35 -0400258
259 /* If the next EQE is not valid then we are done */
James Smartcb5172e2010-03-15 11:25:07 -0400260 if (!bf_get_le32(lpfc_eqe_valid, eqe))
James Smart4f774512009-05-22 14:52:35 -0400261 return NULL;
262 /* If the host has not yet processed the next entry then we are done */
James Smart027140e2012-08-03 12:35:44 -0400263 idx = ((q->hba_index + 1) % q->entry_count);
264 if (idx == q->host_index)
James Smart4f774512009-05-22 14:52:35 -0400265 return NULL;
266
James Smart027140e2012-08-03 12:35:44 -0400267 q->hba_index = idx;
James Smart27f344e2014-05-07 17:16:46 -0400268
269 /*
270 * insert barrier for instruction interlock : data from the hardware
271 * must have the valid bit checked before it can be copied and acted
272 * upon. Given what was seen in lpfc_sli4_cq_get() of speculative
273 * instructions allowing action on content before valid bit checked,
274 * add barrier here as well. May not be needed as "content" is a
275 * single 32-bit entity here (vs multi word structure for cq's).
276 */
277 mb();
James Smart4f774512009-05-22 14:52:35 -0400278 return eqe;
279}
280
281/**
James Smartba20c852012-08-03 12:36:52 -0400282 * lpfc_sli4_eq_clr_intr - Turn off interrupts from this EQ
283 * @q: The Event Queue to disable interrupts
284 *
285 **/
286static inline void
287lpfc_sli4_eq_clr_intr(struct lpfc_queue *q)
288{
289 struct lpfc_register doorbell;
290
291 doorbell.word0 = 0;
292 bf_set(lpfc_eqcq_doorbell_eqci, &doorbell, 1);
293 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_EVENT);
294 bf_set(lpfc_eqcq_doorbell_eqid_hi, &doorbell,
295 (q->queue_id >> LPFC_EQID_HI_FIELD_SHIFT));
296 bf_set(lpfc_eqcq_doorbell_eqid_lo, &doorbell, q->queue_id);
297 writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
298}
299
300/**
James Smart4f774512009-05-22 14:52:35 -0400301 * lpfc_sli4_eq_release - Indicates the host has finished processing an EQ
302 * @q: The Event Queue that the host has completed processing for.
303 * @arm: Indicates whether the host wants to arms this CQ.
304 *
305 * This routine will mark all Event Queue Entries on @q, from the last
306 * known completed entry to the last entry that was processed, as completed
307 * by clearing the valid bit for each completion queue entry. Then it will
308 * notify the HBA, by ringing the doorbell, that the EQEs have been processed.
309 * The internal host index in the @q will be updated by this routine to indicate
310 * that the host has finished processing the entries. The @arm parameter
311 * indicates that the queue should be rearmed when ringing the doorbell.
312 *
313 * This function will return the number of EQEs that were popped.
314 **/
315uint32_t
316lpfc_sli4_eq_release(struct lpfc_queue *q, bool arm)
317{
318 uint32_t released = 0;
319 struct lpfc_eqe *temp_eqe;
320 struct lpfc_register doorbell;
321
James Smart2e90f4b2011-12-13 13:22:37 -0500322 /* sanity check on queue memory */
323 if (unlikely(!q))
324 return 0;
325
James Smart4f774512009-05-22 14:52:35 -0400326 /* while there are valid entries */
327 while (q->hba_index != q->host_index) {
328 temp_eqe = q->qe[q->host_index].eqe;
James Smartcb5172e2010-03-15 11:25:07 -0400329 bf_set_le32(lpfc_eqe_valid, temp_eqe, 0);
James Smart4f774512009-05-22 14:52:35 -0400330 released++;
331 q->host_index = ((q->host_index + 1) % q->entry_count);
332 }
333 if (unlikely(released == 0 && !arm))
334 return 0;
335
336 /* ring doorbell for number popped */
337 doorbell.word0 = 0;
338 if (arm) {
339 bf_set(lpfc_eqcq_doorbell_arm, &doorbell, 1);
340 bf_set(lpfc_eqcq_doorbell_eqci, &doorbell, 1);
341 }
342 bf_set(lpfc_eqcq_doorbell_num_released, &doorbell, released);
343 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_EVENT);
James Smart6b5151f2012-01-18 16:24:06 -0500344 bf_set(lpfc_eqcq_doorbell_eqid_hi, &doorbell,
345 (q->queue_id >> LPFC_EQID_HI_FIELD_SHIFT));
346 bf_set(lpfc_eqcq_doorbell_eqid_lo, &doorbell, q->queue_id);
James Smart4f774512009-05-22 14:52:35 -0400347 writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
James Smarta747c9c2009-11-18 15:41:10 -0500348 /* PCI read to flush PCI pipeline on re-arming for INTx mode */
349 if ((q->phba->intr_type == INTx) && (arm == LPFC_QUEUE_REARM))
350 readl(q->phba->sli4_hba.EQCQDBregaddr);
James Smart4f774512009-05-22 14:52:35 -0400351 return released;
352}
353
354/**
355 * lpfc_sli4_cq_get - Gets the next valid CQE from a CQ
356 * @q: The Completion Queue to get the first valid CQE from
357 *
358 * This routine will get the first valid Completion Queue Entry from @q, update
359 * the queue's internal hba index, and return the CQE. If no valid CQEs are in
360 * the Queue (no more work to do), or the Queue is full of CQEs that have been
361 * processed, but not popped back to the HBA then this routine will return NULL.
362 **/
363static struct lpfc_cqe *
364lpfc_sli4_cq_get(struct lpfc_queue *q)
365{
366 struct lpfc_cqe *cqe;
James Smart027140e2012-08-03 12:35:44 -0400367 uint32_t idx;
James Smart4f774512009-05-22 14:52:35 -0400368
James Smart2e90f4b2011-12-13 13:22:37 -0500369 /* sanity check on queue memory */
370 if (unlikely(!q))
371 return NULL;
372
James Smart4f774512009-05-22 14:52:35 -0400373 /* If the next CQE is not valid then we are done */
James Smartcb5172e2010-03-15 11:25:07 -0400374 if (!bf_get_le32(lpfc_cqe_valid, q->qe[q->hba_index].cqe))
James Smart4f774512009-05-22 14:52:35 -0400375 return NULL;
376 /* If the host has not yet processed the next entry then we are done */
James Smart027140e2012-08-03 12:35:44 -0400377 idx = ((q->hba_index + 1) % q->entry_count);
378 if (idx == q->host_index)
James Smart4f774512009-05-22 14:52:35 -0400379 return NULL;
380
381 cqe = q->qe[q->hba_index].cqe;
James Smart027140e2012-08-03 12:35:44 -0400382 q->hba_index = idx;
James Smart27f344e2014-05-07 17:16:46 -0400383
384 /*
385 * insert barrier for instruction interlock : data from the hardware
386 * must have the valid bit checked before it can be copied and acted
387 * upon. Speculative instructions were allowing a bcopy at the start
388 * of lpfc_sli4_fp_handle_wcqe(), which is called immediately
389 * after our return, to copy data before the valid bit check above
390 * was done. As such, some of the copied data was stale. The barrier
391 * ensures the check is before any data is copied.
392 */
393 mb();
James Smart4f774512009-05-22 14:52:35 -0400394 return cqe;
395}
396
397/**
398 * lpfc_sli4_cq_release - Indicates the host has finished processing a CQ
399 * @q: The Completion Queue that the host has completed processing for.
400 * @arm: Indicates whether the host wants to arms this CQ.
401 *
402 * This routine will mark all Completion queue entries on @q, from the last
403 * known completed entry to the last entry that was processed, as completed
404 * by clearing the valid bit for each completion queue entry. Then it will
405 * notify the HBA, by ringing the doorbell, that the CQEs have been processed.
406 * The internal host index in the @q will be updated by this routine to indicate
407 * that the host has finished processing the entries. The @arm parameter
408 * indicates that the queue should be rearmed when ringing the doorbell.
409 *
410 * This function will return the number of CQEs that were released.
411 **/
412uint32_t
413lpfc_sli4_cq_release(struct lpfc_queue *q, bool arm)
414{
415 uint32_t released = 0;
416 struct lpfc_cqe *temp_qe;
417 struct lpfc_register doorbell;
418
James Smart2e90f4b2011-12-13 13:22:37 -0500419 /* sanity check on queue memory */
420 if (unlikely(!q))
421 return 0;
James Smart4f774512009-05-22 14:52:35 -0400422 /* while there are valid entries */
423 while (q->hba_index != q->host_index) {
424 temp_qe = q->qe[q->host_index].cqe;
James Smartcb5172e2010-03-15 11:25:07 -0400425 bf_set_le32(lpfc_cqe_valid, temp_qe, 0);
James Smart4f774512009-05-22 14:52:35 -0400426 released++;
427 q->host_index = ((q->host_index + 1) % q->entry_count);
428 }
429 if (unlikely(released == 0 && !arm))
430 return 0;
431
432 /* ring doorbell for number popped */
433 doorbell.word0 = 0;
434 if (arm)
435 bf_set(lpfc_eqcq_doorbell_arm, &doorbell, 1);
436 bf_set(lpfc_eqcq_doorbell_num_released, &doorbell, released);
437 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_COMPLETION);
James Smart6b5151f2012-01-18 16:24:06 -0500438 bf_set(lpfc_eqcq_doorbell_cqid_hi, &doorbell,
439 (q->queue_id >> LPFC_CQID_HI_FIELD_SHIFT));
440 bf_set(lpfc_eqcq_doorbell_cqid_lo, &doorbell, q->queue_id);
James Smart4f774512009-05-22 14:52:35 -0400441 writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
442 return released;
443}
444
445/**
446 * lpfc_sli4_rq_put - Put a Receive Buffer Queue Entry on a Receive Queue
447 * @q: The Header Receive Queue to operate on.
448 * @wqe: The Receive Queue Entry to put on the Receive queue.
449 *
450 * This routine will copy the contents of @wqe to the next available entry on
451 * the @q. This function will then ring the Receive Queue Doorbell to signal the
452 * HBA to start processing the Receive Queue Entry. This function returns the
453 * index that the rqe was copied to if successful. If no entries are available
454 * on @q then this function will return -ENOMEM.
455 * The caller is expected to hold the hbalock when calling this routine.
456 **/
457static int
458lpfc_sli4_rq_put(struct lpfc_queue *hq, struct lpfc_queue *dq,
459 struct lpfc_rqe *hrqe, struct lpfc_rqe *drqe)
460{
James Smart2e90f4b2011-12-13 13:22:37 -0500461 struct lpfc_rqe *temp_hrqe;
462 struct lpfc_rqe *temp_drqe;
James Smart4f774512009-05-22 14:52:35 -0400463 struct lpfc_register doorbell;
Wei Yongjun5a25bf32012-12-02 08:33:24 -0500464 int put_index;
James Smart4f774512009-05-22 14:52:35 -0400465
James Smart2e90f4b2011-12-13 13:22:37 -0500466 /* sanity check on queue memory */
467 if (unlikely(!hq) || unlikely(!dq))
468 return -ENOMEM;
Wei Yongjun5a25bf32012-12-02 08:33:24 -0500469 put_index = hq->host_index;
James Smart2e90f4b2011-12-13 13:22:37 -0500470 temp_hrqe = hq->qe[hq->host_index].rqe;
471 temp_drqe = dq->qe[dq->host_index].rqe;
472
James Smart4f774512009-05-22 14:52:35 -0400473 if (hq->type != LPFC_HRQ || dq->type != LPFC_DRQ)
474 return -EINVAL;
475 if (hq->host_index != dq->host_index)
476 return -EINVAL;
477 /* If the host has not yet processed the next entry then we are done */
478 if (((hq->host_index + 1) % hq->entry_count) == hq->hba_index)
479 return -EBUSY;
480 lpfc_sli_pcimem_bcopy(hrqe, temp_hrqe, hq->entry_size);
481 lpfc_sli_pcimem_bcopy(drqe, temp_drqe, dq->entry_size);
482
483 /* Update the host index to point to the next slot */
484 hq->host_index = ((hq->host_index + 1) % hq->entry_count);
485 dq->host_index = ((dq->host_index + 1) % dq->entry_count);
486
487 /* Ring The Header Receive Queue Doorbell */
James Smart73d91e52011-10-10 21:32:10 -0400488 if (!(hq->host_index % hq->entry_repost)) {
James Smart4f774512009-05-22 14:52:35 -0400489 doorbell.word0 = 0;
James Smart962bc512013-01-03 15:44:00 -0500490 if (hq->db_format == LPFC_DB_RING_FORMAT) {
491 bf_set(lpfc_rq_db_ring_fm_num_posted, &doorbell,
492 hq->entry_repost);
493 bf_set(lpfc_rq_db_ring_fm_id, &doorbell, hq->queue_id);
494 } else if (hq->db_format == LPFC_DB_LIST_FORMAT) {
495 bf_set(lpfc_rq_db_list_fm_num_posted, &doorbell,
496 hq->entry_repost);
497 bf_set(lpfc_rq_db_list_fm_index, &doorbell,
498 hq->host_index);
499 bf_set(lpfc_rq_db_list_fm_id, &doorbell, hq->queue_id);
500 } else {
501 return -EINVAL;
502 }
503 writel(doorbell.word0, hq->db_regaddr);
James Smart4f774512009-05-22 14:52:35 -0400504 }
505 return put_index;
506}
507
508/**
509 * lpfc_sli4_rq_release - Updates internal hba index for RQ
510 * @q: The Header Receive Queue to operate on.
511 *
512 * This routine will update the HBA index of a queue to reflect consumption of
513 * one Receive Queue Entry by the HBA. When the HBA indicates that it has
514 * consumed an entry the host calls this function to update the queue's
515 * internal pointers. This routine returns the number of entries that were
516 * consumed by the HBA.
517 **/
518static uint32_t
519lpfc_sli4_rq_release(struct lpfc_queue *hq, struct lpfc_queue *dq)
520{
James Smart2e90f4b2011-12-13 13:22:37 -0500521 /* sanity check on queue memory */
522 if (unlikely(!hq) || unlikely(!dq))
523 return 0;
524
James Smart4f774512009-05-22 14:52:35 -0400525 if ((hq->type != LPFC_HRQ) || (dq->type != LPFC_DRQ))
526 return 0;
527 hq->hba_index = ((hq->hba_index + 1) % hq->entry_count);
528 dq->hba_index = ((dq->hba_index + 1) % dq->entry_count);
529 return 1;
530}
531
James Smarte59058c2008-08-24 21:49:00 -0400532/**
James Smart3621a712009-04-06 18:47:14 -0400533 * lpfc_cmd_iocb - Get next command iocb entry in the ring
James Smarte59058c2008-08-24 21:49:00 -0400534 * @phba: Pointer to HBA context object.
535 * @pring: Pointer to driver SLI ring object.
536 *
537 * This function returns pointer to next command iocb entry
538 * in the command ring. The caller must hold hbalock to prevent
539 * other threads consume the next command iocb.
540 * SLI-2/SLI-3 provide different sized iocbs.
541 **/
James Smarted957682007-06-17 19:56:37 -0500542static inline IOCB_t *
543lpfc_cmd_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
544{
James Smart7e56aa22012-08-03 12:35:34 -0400545 return (IOCB_t *) (((char *) pring->sli.sli3.cmdringaddr) +
546 pring->sli.sli3.cmdidx * phba->iocb_cmd_size);
James Smarted957682007-06-17 19:56:37 -0500547}
548
James Smarte59058c2008-08-24 21:49:00 -0400549/**
James Smart3621a712009-04-06 18:47:14 -0400550 * lpfc_resp_iocb - Get next response iocb entry in the ring
James Smarte59058c2008-08-24 21:49:00 -0400551 * @phba: Pointer to HBA context object.
552 * @pring: Pointer to driver SLI ring object.
553 *
554 * This function returns pointer to next response iocb entry
555 * in the response ring. The caller must hold hbalock to make sure
556 * that no other thread consume the next response iocb.
557 * SLI-2/SLI-3 provide different sized iocbs.
558 **/
James Smarted957682007-06-17 19:56:37 -0500559static inline IOCB_t *
560lpfc_resp_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
561{
James Smart7e56aa22012-08-03 12:35:34 -0400562 return (IOCB_t *) (((char *) pring->sli.sli3.rspringaddr) +
563 pring->sli.sli3.rspidx * phba->iocb_rsp_size);
James Smarted957682007-06-17 19:56:37 -0500564}
565
James Smarte59058c2008-08-24 21:49:00 -0400566/**
James Smart3621a712009-04-06 18:47:14 -0400567 * __lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
James Smarte59058c2008-08-24 21:49:00 -0400568 * @phba: Pointer to HBA context object.
569 *
570 * This function is called with hbalock held. This function
571 * allocates a new driver iocb object from the iocb pool. If the
572 * allocation is successful, it returns pointer to the newly
573 * allocated iocb object else it returns NULL.
574 **/
James Smart4f2e66c2012-05-09 21:17:07 -0400575struct lpfc_iocbq *
James Smart2e0fef82007-06-17 19:56:36 -0500576__lpfc_sli_get_iocbq(struct lpfc_hba *phba)
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400577{
578 struct list_head *lpfc_iocb_list = &phba->lpfc_iocb_list;
579 struct lpfc_iocbq * iocbq = NULL;
580
581 list_remove_head(lpfc_iocb_list, iocbq, struct lpfc_iocbq, list);
James Smart2a9bf3d2010-06-07 15:24:45 -0400582 if (iocbq)
583 phba->iocb_cnt++;
584 if (phba->iocb_cnt > phba->iocb_max)
585 phba->iocb_max = phba->iocb_cnt;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400586 return iocbq;
587}
588
James Smarte59058c2008-08-24 21:49:00 -0400589/**
James Smartda0436e2009-05-22 14:51:39 -0400590 * __lpfc_clear_active_sglq - Remove the active sglq for this XRI.
591 * @phba: Pointer to HBA context object.
592 * @xritag: XRI value.
593 *
594 * This function clears the sglq pointer from the array of acive
595 * sglq's. The xritag that is passed in is used to index into the
596 * array. Before the xritag can be used it needs to be adjusted
597 * by subtracting the xribase.
598 *
599 * Returns sglq ponter = success, NULL = Failure.
600 **/
601static struct lpfc_sglq *
602__lpfc_clear_active_sglq(struct lpfc_hba *phba, uint16_t xritag)
603{
James Smartda0436e2009-05-22 14:51:39 -0400604 struct lpfc_sglq *sglq;
James Smart6d368e52011-05-24 11:44:12 -0400605
606 sglq = phba->sli4_hba.lpfc_sglq_active_list[xritag];
607 phba->sli4_hba.lpfc_sglq_active_list[xritag] = NULL;
James Smartda0436e2009-05-22 14:51:39 -0400608 return sglq;
609}
610
611/**
612 * __lpfc_get_active_sglq - Get the active sglq for this XRI.
613 * @phba: Pointer to HBA context object.
614 * @xritag: XRI value.
615 *
616 * This function returns the sglq pointer from the array of acive
617 * sglq's. The xritag that is passed in is used to index into the
618 * array. Before the xritag can be used it needs to be adjusted
619 * by subtracting the xribase.
620 *
621 * Returns sglq ponter = success, NULL = Failure.
622 **/
James Smart0f65ff62010-02-26 14:14:23 -0500623struct lpfc_sglq *
James Smartda0436e2009-05-22 14:51:39 -0400624__lpfc_get_active_sglq(struct lpfc_hba *phba, uint16_t xritag)
625{
James Smartda0436e2009-05-22 14:51:39 -0400626 struct lpfc_sglq *sglq;
James Smart6d368e52011-05-24 11:44:12 -0400627
628 sglq = phba->sli4_hba.lpfc_sglq_active_list[xritag];
James Smartda0436e2009-05-22 14:51:39 -0400629 return sglq;
630}
631
632/**
James Smart1151e3e2011-02-16 12:39:35 -0500633 * lpfc_clr_rrq_active - Clears RRQ active bit in xri_bitmap.
James Smart19ca7602010-11-20 23:11:55 -0500634 * @phba: Pointer to HBA context object.
635 * @xritag: xri used in this exchange.
636 * @rrq: The RRQ to be cleared.
637 *
James Smart19ca7602010-11-20 23:11:55 -0500638 **/
James Smart1151e3e2011-02-16 12:39:35 -0500639void
640lpfc_clr_rrq_active(struct lpfc_hba *phba,
641 uint16_t xritag,
642 struct lpfc_node_rrq *rrq)
James Smart19ca7602010-11-20 23:11:55 -0500643{
James Smart1151e3e2011-02-16 12:39:35 -0500644 struct lpfc_nodelist *ndlp = NULL;
James Smart19ca7602010-11-20 23:11:55 -0500645
James Smart1151e3e2011-02-16 12:39:35 -0500646 if ((rrq->vport) && NLP_CHK_NODE_ACT(rrq->ndlp))
647 ndlp = lpfc_findnode_did(rrq->vport, rrq->nlp_DID);
James Smart19ca7602010-11-20 23:11:55 -0500648
649 /* The target DID could have been swapped (cable swap)
650 * we should use the ndlp from the findnode if it is
651 * available.
652 */
James Smart1151e3e2011-02-16 12:39:35 -0500653 if ((!ndlp) && rrq->ndlp)
James Smart19ca7602010-11-20 23:11:55 -0500654 ndlp = rrq->ndlp;
655
James Smart1151e3e2011-02-16 12:39:35 -0500656 if (!ndlp)
657 goto out;
658
James Smartcff261f2013-12-17 20:29:47 -0500659 if (test_and_clear_bit(xritag, ndlp->active_rrqs_xri_bitmap)) {
James Smart19ca7602010-11-20 23:11:55 -0500660 rrq->send_rrq = 0;
661 rrq->xritag = 0;
662 rrq->rrq_stop_time = 0;
663 }
James Smart1151e3e2011-02-16 12:39:35 -0500664out:
James Smart19ca7602010-11-20 23:11:55 -0500665 mempool_free(rrq, phba->rrq_pool);
666}
667
668/**
669 * lpfc_handle_rrq_active - Checks if RRQ has waithed RATOV.
670 * @phba: Pointer to HBA context object.
671 *
672 * This function is called with hbalock held. This function
673 * Checks if stop_time (ratov from setting rrq active) has
674 * been reached, if it has and the send_rrq flag is set then
675 * it will call lpfc_send_rrq. If the send_rrq flag is not set
676 * then it will just call the routine to clear the rrq and
677 * free the rrq resource.
678 * The timer is set to the next rrq that is going to expire before
679 * leaving the routine.
680 *
681 **/
682void
683lpfc_handle_rrq_active(struct lpfc_hba *phba)
684{
685 struct lpfc_node_rrq *rrq;
686 struct lpfc_node_rrq *nextrrq;
687 unsigned long next_time;
688 unsigned long iflags;
James Smart1151e3e2011-02-16 12:39:35 -0500689 LIST_HEAD(send_rrq);
James Smart19ca7602010-11-20 23:11:55 -0500690
691 spin_lock_irqsave(&phba->hbalock, iflags);
692 phba->hba_flag &= ~HBA_RRQ_ACTIVE;
James Smart256ec0d2013-04-17 20:14:58 -0400693 next_time = jiffies + msecs_to_jiffies(1000 * (phba->fc_ratov + 1));
James Smart19ca7602010-11-20 23:11:55 -0500694 list_for_each_entry_safe(rrq, nextrrq,
James Smart1151e3e2011-02-16 12:39:35 -0500695 &phba->active_rrq_list, list) {
696 if (time_after(jiffies, rrq->rrq_stop_time))
697 list_move(&rrq->list, &send_rrq);
698 else if (time_before(rrq->rrq_stop_time, next_time))
James Smart19ca7602010-11-20 23:11:55 -0500699 next_time = rrq->rrq_stop_time;
700 }
701 spin_unlock_irqrestore(&phba->hbalock, iflags);
James Smart06918ac2014-02-20 09:57:57 -0500702 if ((!list_empty(&phba->active_rrq_list)) &&
703 (!(phba->pport->load_flag & FC_UNLOADING)))
James Smart19ca7602010-11-20 23:11:55 -0500704 mod_timer(&phba->rrq_tmr, next_time);
James Smart1151e3e2011-02-16 12:39:35 -0500705 list_for_each_entry_safe(rrq, nextrrq, &send_rrq, list) {
706 list_del(&rrq->list);
707 if (!rrq->send_rrq)
708 /* this call will free the rrq */
709 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
710 else if (lpfc_send_rrq(phba, rrq)) {
711 /* if we send the rrq then the completion handler
712 * will clear the bit in the xribitmap.
713 */
714 lpfc_clr_rrq_active(phba, rrq->xritag,
715 rrq);
716 }
717 }
James Smart19ca7602010-11-20 23:11:55 -0500718}
719
720/**
721 * lpfc_get_active_rrq - Get the active RRQ for this exchange.
722 * @vport: Pointer to vport context object.
723 * @xri: The xri used in the exchange.
724 * @did: The targets DID for this exchange.
725 *
726 * returns NULL = rrq not found in the phba->active_rrq_list.
727 * rrq = rrq for this xri and target.
728 **/
729struct lpfc_node_rrq *
730lpfc_get_active_rrq(struct lpfc_vport *vport, uint16_t xri, uint32_t did)
731{
732 struct lpfc_hba *phba = vport->phba;
733 struct lpfc_node_rrq *rrq;
734 struct lpfc_node_rrq *nextrrq;
735 unsigned long iflags;
736
737 if (phba->sli_rev != LPFC_SLI_REV4)
738 return NULL;
739 spin_lock_irqsave(&phba->hbalock, iflags);
740 list_for_each_entry_safe(rrq, nextrrq, &phba->active_rrq_list, list) {
741 if (rrq->vport == vport && rrq->xritag == xri &&
742 rrq->nlp_DID == did){
743 list_del(&rrq->list);
744 spin_unlock_irqrestore(&phba->hbalock, iflags);
745 return rrq;
746 }
747 }
748 spin_unlock_irqrestore(&phba->hbalock, iflags);
749 return NULL;
750}
751
752/**
753 * lpfc_cleanup_vports_rrqs - Remove and clear the active RRQ for this vport.
754 * @vport: Pointer to vport context object.
James Smart1151e3e2011-02-16 12:39:35 -0500755 * @ndlp: Pointer to the lpfc_node_list structure.
756 * If ndlp is NULL Remove all active RRQs for this vport from the
757 * phba->active_rrq_list and clear the rrq.
758 * If ndlp is not NULL then only remove rrqs for this vport & this ndlp.
James Smart19ca7602010-11-20 23:11:55 -0500759 **/
760void
James Smart1151e3e2011-02-16 12:39:35 -0500761lpfc_cleanup_vports_rrqs(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
James Smart19ca7602010-11-20 23:11:55 -0500762
763{
764 struct lpfc_hba *phba = vport->phba;
765 struct lpfc_node_rrq *rrq;
766 struct lpfc_node_rrq *nextrrq;
767 unsigned long iflags;
James Smart1151e3e2011-02-16 12:39:35 -0500768 LIST_HEAD(rrq_list);
James Smart19ca7602010-11-20 23:11:55 -0500769
770 if (phba->sli_rev != LPFC_SLI_REV4)
771 return;
James Smart1151e3e2011-02-16 12:39:35 -0500772 if (!ndlp) {
773 lpfc_sli4_vport_delete_els_xri_aborted(vport);
774 lpfc_sli4_vport_delete_fcp_xri_aborted(vport);
James Smart19ca7602010-11-20 23:11:55 -0500775 }
James Smart1151e3e2011-02-16 12:39:35 -0500776 spin_lock_irqsave(&phba->hbalock, iflags);
777 list_for_each_entry_safe(rrq, nextrrq, &phba->active_rrq_list, list)
778 if ((rrq->vport == vport) && (!ndlp || rrq->ndlp == ndlp))
779 list_move(&rrq->list, &rrq_list);
James Smart19ca7602010-11-20 23:11:55 -0500780 spin_unlock_irqrestore(&phba->hbalock, iflags);
James Smart1151e3e2011-02-16 12:39:35 -0500781
782 list_for_each_entry_safe(rrq, nextrrq, &rrq_list, list) {
783 list_del(&rrq->list);
784 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
785 }
James Smart19ca7602010-11-20 23:11:55 -0500786}
787
788/**
789 * lpfc_cleanup_wt_rrqs - Remove all rrq's from the active list.
790 * @phba: Pointer to HBA context object.
791 *
792 * Remove all rrqs from the phba->active_rrq_list and free them by
793 * calling __lpfc_clr_active_rrq
794 *
795 **/
796void
797lpfc_cleanup_wt_rrqs(struct lpfc_hba *phba)
798{
799 struct lpfc_node_rrq *rrq;
800 struct lpfc_node_rrq *nextrrq;
801 unsigned long next_time;
802 unsigned long iflags;
James Smart1151e3e2011-02-16 12:39:35 -0500803 LIST_HEAD(rrq_list);
James Smart19ca7602010-11-20 23:11:55 -0500804
805 if (phba->sli_rev != LPFC_SLI_REV4)
806 return;
807 spin_lock_irqsave(&phba->hbalock, iflags);
808 phba->hba_flag &= ~HBA_RRQ_ACTIVE;
James Smart256ec0d2013-04-17 20:14:58 -0400809 next_time = jiffies + msecs_to_jiffies(1000 * (phba->fc_ratov * 2));
James Smart1151e3e2011-02-16 12:39:35 -0500810 list_splice_init(&phba->active_rrq_list, &rrq_list);
James Smart19ca7602010-11-20 23:11:55 -0500811 spin_unlock_irqrestore(&phba->hbalock, iflags);
James Smart1151e3e2011-02-16 12:39:35 -0500812
813 list_for_each_entry_safe(rrq, nextrrq, &rrq_list, list) {
814 list_del(&rrq->list);
815 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
816 }
James Smart06918ac2014-02-20 09:57:57 -0500817 if ((!list_empty(&phba->active_rrq_list)) &&
818 (!(phba->pport->load_flag & FC_UNLOADING)))
819
James Smart19ca7602010-11-20 23:11:55 -0500820 mod_timer(&phba->rrq_tmr, next_time);
821}
822
823
824/**
James Smart1151e3e2011-02-16 12:39:35 -0500825 * lpfc_test_rrq_active - Test RRQ bit in xri_bitmap.
James Smart19ca7602010-11-20 23:11:55 -0500826 * @phba: Pointer to HBA context object.
827 * @ndlp: Targets nodelist pointer for this exchange.
828 * @xritag the xri in the bitmap to test.
829 *
830 * This function is called with hbalock held. This function
831 * returns 0 = rrq not active for this xri
832 * 1 = rrq is valid for this xri.
833 **/
James Smart1151e3e2011-02-16 12:39:35 -0500834int
835lpfc_test_rrq_active(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp,
James Smart19ca7602010-11-20 23:11:55 -0500836 uint16_t xritag)
837{
James Smart19ca7602010-11-20 23:11:55 -0500838 if (!ndlp)
839 return 0;
James Smartcff261f2013-12-17 20:29:47 -0500840 if (!ndlp->active_rrqs_xri_bitmap)
841 return 0;
842 if (test_bit(xritag, ndlp->active_rrqs_xri_bitmap))
James Smart19ca7602010-11-20 23:11:55 -0500843 return 1;
844 else
845 return 0;
846}
847
848/**
849 * lpfc_set_rrq_active - set RRQ active bit in xri_bitmap.
850 * @phba: Pointer to HBA context object.
851 * @ndlp: nodelist pointer for this target.
852 * @xritag: xri used in this exchange.
853 * @rxid: Remote Exchange ID.
854 * @send_rrq: Flag used to determine if we should send rrq els cmd.
855 *
856 * This function takes the hbalock.
857 * The active bit is always set in the active rrq xri_bitmap even
858 * if there is no slot avaiable for the other rrq information.
859 *
860 * returns 0 rrq actived for this xri
861 * < 0 No memory or invalid ndlp.
862 **/
863int
864lpfc_set_rrq_active(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp,
James Smartb42c07c2012-01-18 16:25:55 -0500865 uint16_t xritag, uint16_t rxid, uint16_t send_rrq)
James Smart19ca7602010-11-20 23:11:55 -0500866{
James Smart19ca7602010-11-20 23:11:55 -0500867 unsigned long iflags;
James Smartb42c07c2012-01-18 16:25:55 -0500868 struct lpfc_node_rrq *rrq;
869 int empty;
870
871 if (!ndlp)
872 return -EINVAL;
873
874 if (!phba->cfg_enable_rrq)
875 return -EINVAL;
James Smart19ca7602010-11-20 23:11:55 -0500876
877 spin_lock_irqsave(&phba->hbalock, iflags);
James Smartb42c07c2012-01-18 16:25:55 -0500878 if (phba->pport->load_flag & FC_UNLOADING) {
879 phba->hba_flag &= ~HBA_RRQ_ACTIVE;
880 goto out;
881 }
882
883 /*
884 * set the active bit even if there is no mem available.
885 */
886 if (NLP_CHK_FREE_REQ(ndlp))
887 goto out;
888
889 if (ndlp->vport && (ndlp->vport->load_flag & FC_UNLOADING))
890 goto out;
891
James Smartcff261f2013-12-17 20:29:47 -0500892 if (!ndlp->active_rrqs_xri_bitmap)
893 goto out;
894
895 if (test_and_set_bit(xritag, ndlp->active_rrqs_xri_bitmap))
James Smartb42c07c2012-01-18 16:25:55 -0500896 goto out;
897
James Smart19ca7602010-11-20 23:11:55 -0500898 spin_unlock_irqrestore(&phba->hbalock, iflags);
James Smartb42c07c2012-01-18 16:25:55 -0500899 rrq = mempool_alloc(phba->rrq_pool, GFP_KERNEL);
900 if (!rrq) {
901 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
902 "3155 Unable to allocate RRQ xri:0x%x rxid:0x%x"
903 " DID:0x%x Send:%d\n",
904 xritag, rxid, ndlp->nlp_DID, send_rrq);
905 return -EINVAL;
906 }
James Smarte5771b42013-03-01 16:37:14 -0500907 if (phba->cfg_enable_rrq == 1)
908 rrq->send_rrq = send_rrq;
909 else
910 rrq->send_rrq = 0;
James Smartb42c07c2012-01-18 16:25:55 -0500911 rrq->xritag = xritag;
James Smart256ec0d2013-04-17 20:14:58 -0400912 rrq->rrq_stop_time = jiffies +
913 msecs_to_jiffies(1000 * (phba->fc_ratov + 1));
James Smartb42c07c2012-01-18 16:25:55 -0500914 rrq->ndlp = ndlp;
915 rrq->nlp_DID = ndlp->nlp_DID;
916 rrq->vport = ndlp->vport;
917 rrq->rxid = rxid;
James Smartb42c07c2012-01-18 16:25:55 -0500918 spin_lock_irqsave(&phba->hbalock, iflags);
919 empty = list_empty(&phba->active_rrq_list);
920 list_add_tail(&rrq->list, &phba->active_rrq_list);
921 phba->hba_flag |= HBA_RRQ_ACTIVE;
922 if (empty)
923 lpfc_worker_wake_up(phba);
924 spin_unlock_irqrestore(&phba->hbalock, iflags);
925 return 0;
926out:
927 spin_unlock_irqrestore(&phba->hbalock, iflags);
928 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
929 "2921 Can't set rrq active xri:0x%x rxid:0x%x"
930 " DID:0x%x Send:%d\n",
931 xritag, rxid, ndlp->nlp_DID, send_rrq);
932 return -EINVAL;
James Smart19ca7602010-11-20 23:11:55 -0500933}
934
935/**
James Smartda0436e2009-05-22 14:51:39 -0400936 * __lpfc_sli_get_sglq - Allocates an iocb object from sgl pool
937 * @phba: Pointer to HBA context object.
James Smart19ca7602010-11-20 23:11:55 -0500938 * @piocb: Pointer to the iocbq.
James Smartda0436e2009-05-22 14:51:39 -0400939 *
940 * This function is called with hbalock held. This function
James Smart6d368e52011-05-24 11:44:12 -0400941 * gets a new driver sglq object from the sglq list. If the
James Smartda0436e2009-05-22 14:51:39 -0400942 * list is not empty then it is successful, it returns pointer to the newly
943 * allocated sglq object else it returns NULL.
944 **/
945static struct lpfc_sglq *
James Smart19ca7602010-11-20 23:11:55 -0500946__lpfc_sli_get_sglq(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq)
James Smartda0436e2009-05-22 14:51:39 -0400947{
948 struct list_head *lpfc_sgl_list = &phba->sli4_hba.lpfc_sgl_list;
949 struct lpfc_sglq *sglq = NULL;
James Smart19ca7602010-11-20 23:11:55 -0500950 struct lpfc_sglq *start_sglq = NULL;
James Smart19ca7602010-11-20 23:11:55 -0500951 struct lpfc_scsi_buf *lpfc_cmd;
952 struct lpfc_nodelist *ndlp;
953 int found = 0;
954
955 if (piocbq->iocb_flag & LPFC_IO_FCP) {
956 lpfc_cmd = (struct lpfc_scsi_buf *) piocbq->context1;
957 ndlp = lpfc_cmd->rdata->pnode;
James Smartbe858b62010-12-15 17:57:20 -0500958 } else if ((piocbq->iocb.ulpCommand == CMD_GEN_REQUEST64_CR) &&
959 !(piocbq->iocb_flag & LPFC_IO_LIBDFC))
James Smart19ca7602010-11-20 23:11:55 -0500960 ndlp = piocbq->context_un.ndlp;
James Smartd5ce53b2013-04-17 20:17:26 -0400961 else if (piocbq->iocb_flag & LPFC_IO_LIBDFC)
James Smart93d1379e2012-05-09 21:19:34 -0400962 ndlp = piocbq->context_un.ndlp;
James Smart19ca7602010-11-20 23:11:55 -0500963 else
964 ndlp = piocbq->context1;
965
James Smartda0436e2009-05-22 14:51:39 -0400966 list_remove_head(lpfc_sgl_list, sglq, struct lpfc_sglq, list);
James Smart19ca7602010-11-20 23:11:55 -0500967 start_sglq = sglq;
968 while (!found) {
969 if (!sglq)
970 return NULL;
James Smartee0f4fe2012-05-09 21:19:14 -0400971 if (lpfc_test_rrq_active(phba, ndlp, sglq->sli4_lxritag)) {
James Smart19ca7602010-11-20 23:11:55 -0500972 /* This xri has an rrq outstanding for this DID.
973 * put it back in the list and get another xri.
974 */
975 list_add_tail(&sglq->list, lpfc_sgl_list);
976 sglq = NULL;
977 list_remove_head(lpfc_sgl_list, sglq,
978 struct lpfc_sglq, list);
979 if (sglq == start_sglq) {
980 sglq = NULL;
981 break;
982 } else
983 continue;
984 }
985 sglq->ndlp = ndlp;
986 found = 1;
James Smart6d368e52011-05-24 11:44:12 -0400987 phba->sli4_hba.lpfc_sglq_active_list[sglq->sli4_lxritag] = sglq;
James Smart19ca7602010-11-20 23:11:55 -0500988 sglq->state = SGL_ALLOCATED;
989 }
James Smartda0436e2009-05-22 14:51:39 -0400990 return sglq;
991}
992
993/**
James Smart3621a712009-04-06 18:47:14 -0400994 * lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
James Smarte59058c2008-08-24 21:49:00 -0400995 * @phba: Pointer to HBA context object.
996 *
997 * This function is called with no lock held. This function
998 * allocates a new driver iocb object from the iocb pool. If the
999 * allocation is successful, it returns pointer to the newly
1000 * allocated iocb object else it returns NULL.
1001 **/
James Smart2e0fef82007-06-17 19:56:36 -05001002struct lpfc_iocbq *
1003lpfc_sli_get_iocbq(struct lpfc_hba *phba)
James Bottomley604a3e32005-10-29 10:28:33 -05001004{
James Smart2e0fef82007-06-17 19:56:36 -05001005 struct lpfc_iocbq * iocbq = NULL;
1006 unsigned long iflags;
1007
1008 spin_lock_irqsave(&phba->hbalock, iflags);
1009 iocbq = __lpfc_sli_get_iocbq(phba);
1010 spin_unlock_irqrestore(&phba->hbalock, iflags);
1011 return iocbq;
1012}
1013
James Smarte59058c2008-08-24 21:49:00 -04001014/**
James Smart4f774512009-05-22 14:52:35 -04001015 * __lpfc_sli_release_iocbq_s4 - Release iocb to the iocb pool
1016 * @phba: Pointer to HBA context object.
1017 * @iocbq: Pointer to driver iocb object.
1018 *
1019 * This function is called with hbalock held to release driver
1020 * iocb object to the iocb pool. The iotag in the iocb object
1021 * does not change for each use of the iocb object. This function
1022 * clears all other fields of the iocb object when it is freed.
1023 * The sqlq structure that holds the xritag and phys and virtual
1024 * mappings for the scatter gather list is retrieved from the
1025 * active array of sglq. The get of the sglq pointer also clears
1026 * the entry in the array. If the status of the IO indiactes that
1027 * this IO was aborted then the sglq entry it put on the
1028 * lpfc_abts_els_sgl_list until the CQ_ABORTED_XRI is received. If the
1029 * IO has good status or fails for any other reason then the sglq
1030 * entry is added to the free list (lpfc_sgl_list).
1031 **/
1032static void
1033__lpfc_sli_release_iocbq_s4(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1034{
1035 struct lpfc_sglq *sglq;
1036 size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
James Smart2a9bf3d2010-06-07 15:24:45 -04001037 unsigned long iflag = 0;
1038 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
James Smart4f774512009-05-22 14:52:35 -04001039
1040 if (iocbq->sli4_xritag == NO_XRI)
1041 sglq = NULL;
1042 else
James Smart6d368e52011-05-24 11:44:12 -04001043 sglq = __lpfc_clear_active_sglq(phba, iocbq->sli4_lxritag);
1044
James Smart0e9bb8d2013-03-01 16:35:12 -05001045
James Smart4f774512009-05-22 14:52:35 -04001046 if (sglq) {
James Smart0f65ff62010-02-26 14:14:23 -05001047 if ((iocbq->iocb_flag & LPFC_EXCHANGE_BUSY) &&
1048 (sglq->state != SGL_XRI_ABORTED)) {
James Smart4f774512009-05-22 14:52:35 -04001049 spin_lock_irqsave(&phba->sli4_hba.abts_sgl_list_lock,
1050 iflag);
1051 list_add(&sglq->list,
1052 &phba->sli4_hba.lpfc_abts_els_sgl_list);
1053 spin_unlock_irqrestore(
1054 &phba->sli4_hba.abts_sgl_list_lock, iflag);
James Smart0f65ff62010-02-26 14:14:23 -05001055 } else {
1056 sglq->state = SGL_FREED;
James Smart19ca7602010-11-20 23:11:55 -05001057 sglq->ndlp = NULL;
James Smartfedd3b72011-02-16 12:39:24 -05001058 list_add_tail(&sglq->list,
1059 &phba->sli4_hba.lpfc_sgl_list);
James Smart2a9bf3d2010-06-07 15:24:45 -04001060
1061 /* Check if TXQ queue needs to be serviced */
James Smart0e9bb8d2013-03-01 16:35:12 -05001062 if (!list_empty(&pring->txq))
James Smart2a9bf3d2010-06-07 15:24:45 -04001063 lpfc_worker_wake_up(phba);
James Smart0f65ff62010-02-26 14:14:23 -05001064 }
James Smart4f774512009-05-22 14:52:35 -04001065 }
1066
1067
1068 /*
1069 * Clean all volatile data fields, preserve iotag and node struct.
1070 */
1071 memset((char *)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
James Smart6d368e52011-05-24 11:44:12 -04001072 iocbq->sli4_lxritag = NO_XRI;
James Smart4f774512009-05-22 14:52:35 -04001073 iocbq->sli4_xritag = NO_XRI;
1074 list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
1075}
1076
James Smart2a9bf3d2010-06-07 15:24:45 -04001077
James Smart4f774512009-05-22 14:52:35 -04001078/**
James Smart3772a992009-05-22 14:50:54 -04001079 * __lpfc_sli_release_iocbq_s3 - Release iocb to the iocb pool
1080 * @phba: Pointer to HBA context object.
1081 * @iocbq: Pointer to driver iocb object.
1082 *
1083 * This function is called with hbalock held to release driver
1084 * iocb object to the iocb pool. The iotag in the iocb object
1085 * does not change for each use of the iocb object. This function
1086 * clears all other fields of the iocb object when it is freed.
1087 **/
1088static void
1089__lpfc_sli_release_iocbq_s3(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1090{
1091 size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
1092
James Smart0e9bb8d2013-03-01 16:35:12 -05001093
1094 /*
James Smart3772a992009-05-22 14:50:54 -04001095 * Clean all volatile data fields, preserve iotag and node struct.
1096 */
1097 memset((char*)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
1098 iocbq->sli4_xritag = NO_XRI;
1099 list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
1100}
1101
1102/**
James Smart3621a712009-04-06 18:47:14 -04001103 * __lpfc_sli_release_iocbq - Release iocb to the iocb pool
James Smarte59058c2008-08-24 21:49:00 -04001104 * @phba: Pointer to HBA context object.
1105 * @iocbq: Pointer to driver iocb object.
1106 *
1107 * This function is called with hbalock held to release driver
1108 * iocb object to the iocb pool. The iotag in the iocb object
1109 * does not change for each use of the iocb object. This function
1110 * clears all other fields of the iocb object when it is freed.
1111 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01001112static void
James Smart2e0fef82007-06-17 19:56:36 -05001113__lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1114{
James Smart3772a992009-05-22 14:50:54 -04001115 phba->__lpfc_sli_release_iocbq(phba, iocbq);
James Smart2a9bf3d2010-06-07 15:24:45 -04001116 phba->iocb_cnt--;
James Bottomley604a3e32005-10-29 10:28:33 -05001117}
1118
James Smarte59058c2008-08-24 21:49:00 -04001119/**
James Smart3621a712009-04-06 18:47:14 -04001120 * lpfc_sli_release_iocbq - Release iocb to the iocb pool
James Smarte59058c2008-08-24 21:49:00 -04001121 * @phba: Pointer to HBA context object.
1122 * @iocbq: Pointer to driver iocb object.
1123 *
1124 * This function is called with no lock held to release the iocb to
1125 * iocb pool.
1126 **/
James Smart2e0fef82007-06-17 19:56:36 -05001127void
1128lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1129{
1130 unsigned long iflags;
1131
1132 /*
1133 * Clean all volatile data fields, preserve iotag and node struct.
1134 */
1135 spin_lock_irqsave(&phba->hbalock, iflags);
1136 __lpfc_sli_release_iocbq(phba, iocbq);
1137 spin_unlock_irqrestore(&phba->hbalock, iflags);
1138}
1139
James Smarte59058c2008-08-24 21:49:00 -04001140/**
James Smarta257bf92009-04-06 18:48:10 -04001141 * lpfc_sli_cancel_iocbs - Cancel all iocbs from a list.
1142 * @phba: Pointer to HBA context object.
1143 * @iocblist: List of IOCBs.
1144 * @ulpstatus: ULP status in IOCB command field.
1145 * @ulpWord4: ULP word-4 in IOCB command field.
1146 *
1147 * This function is called with a list of IOCBs to cancel. It cancels the IOCB
1148 * on the list by invoking the complete callback function associated with the
1149 * IOCB with the provided @ulpstatus and @ulpword4 set to the IOCB commond
1150 * fields.
1151 **/
1152void
1153lpfc_sli_cancel_iocbs(struct lpfc_hba *phba, struct list_head *iocblist,
1154 uint32_t ulpstatus, uint32_t ulpWord4)
1155{
1156 struct lpfc_iocbq *piocb;
1157
1158 while (!list_empty(iocblist)) {
1159 list_remove_head(iocblist, piocb, struct lpfc_iocbq, list);
James Smarta257bf92009-04-06 18:48:10 -04001160 if (!piocb->iocb_cmpl)
1161 lpfc_sli_release_iocbq(phba, piocb);
1162 else {
1163 piocb->iocb.ulpStatus = ulpstatus;
1164 piocb->iocb.un.ulpWord[4] = ulpWord4;
1165 (piocb->iocb_cmpl) (phba, piocb, piocb);
1166 }
1167 }
1168 return;
1169}
1170
1171/**
James Smart3621a712009-04-06 18:47:14 -04001172 * lpfc_sli_iocb_cmd_type - Get the iocb type
1173 * @iocb_cmnd: iocb command code.
James Smarte59058c2008-08-24 21:49:00 -04001174 *
1175 * This function is called by ring event handler function to get the iocb type.
1176 * This function translates the iocb command to an iocb command type used to
1177 * decide the final disposition of each completed IOCB.
1178 * The function returns
1179 * LPFC_UNKNOWN_IOCB if it is an unsupported iocb
1180 * LPFC_SOL_IOCB if it is a solicited iocb completion
1181 * LPFC_ABORT_IOCB if it is an abort iocb
1182 * LPFC_UNSOL_IOCB if it is an unsolicited iocb
1183 *
1184 * The caller is not required to hold any lock.
1185 **/
dea31012005-04-17 16:05:31 -05001186static lpfc_iocb_type
1187lpfc_sli_iocb_cmd_type(uint8_t iocb_cmnd)
1188{
1189 lpfc_iocb_type type = LPFC_UNKNOWN_IOCB;
1190
1191 if (iocb_cmnd > CMD_MAX_IOCB_CMD)
1192 return 0;
1193
1194 switch (iocb_cmnd) {
1195 case CMD_XMIT_SEQUENCE_CR:
1196 case CMD_XMIT_SEQUENCE_CX:
1197 case CMD_XMIT_BCAST_CN:
1198 case CMD_XMIT_BCAST_CX:
1199 case CMD_ELS_REQUEST_CR:
1200 case CMD_ELS_REQUEST_CX:
1201 case CMD_CREATE_XRI_CR:
1202 case CMD_CREATE_XRI_CX:
1203 case CMD_GET_RPI_CN:
1204 case CMD_XMIT_ELS_RSP_CX:
1205 case CMD_GET_RPI_CR:
1206 case CMD_FCP_IWRITE_CR:
1207 case CMD_FCP_IWRITE_CX:
1208 case CMD_FCP_IREAD_CR:
1209 case CMD_FCP_IREAD_CX:
1210 case CMD_FCP_ICMND_CR:
1211 case CMD_FCP_ICMND_CX:
James Smartf5603512006-12-02 13:35:43 -05001212 case CMD_FCP_TSEND_CX:
1213 case CMD_FCP_TRSP_CX:
1214 case CMD_FCP_TRECEIVE_CX:
1215 case CMD_FCP_AUTO_TRSP_CX:
dea31012005-04-17 16:05:31 -05001216 case CMD_ADAPTER_MSG:
1217 case CMD_ADAPTER_DUMP:
1218 case CMD_XMIT_SEQUENCE64_CR:
1219 case CMD_XMIT_SEQUENCE64_CX:
1220 case CMD_XMIT_BCAST64_CN:
1221 case CMD_XMIT_BCAST64_CX:
1222 case CMD_ELS_REQUEST64_CR:
1223 case CMD_ELS_REQUEST64_CX:
1224 case CMD_FCP_IWRITE64_CR:
1225 case CMD_FCP_IWRITE64_CX:
1226 case CMD_FCP_IREAD64_CR:
1227 case CMD_FCP_IREAD64_CX:
1228 case CMD_FCP_ICMND64_CR:
1229 case CMD_FCP_ICMND64_CX:
James Smartf5603512006-12-02 13:35:43 -05001230 case CMD_FCP_TSEND64_CX:
1231 case CMD_FCP_TRSP64_CX:
1232 case CMD_FCP_TRECEIVE64_CX:
dea31012005-04-17 16:05:31 -05001233 case CMD_GEN_REQUEST64_CR:
1234 case CMD_GEN_REQUEST64_CX:
1235 case CMD_XMIT_ELS_RSP64_CX:
James Smartda0436e2009-05-22 14:51:39 -04001236 case DSSCMD_IWRITE64_CR:
1237 case DSSCMD_IWRITE64_CX:
1238 case DSSCMD_IREAD64_CR:
1239 case DSSCMD_IREAD64_CX:
dea31012005-04-17 16:05:31 -05001240 type = LPFC_SOL_IOCB;
1241 break;
1242 case CMD_ABORT_XRI_CN:
1243 case CMD_ABORT_XRI_CX:
1244 case CMD_CLOSE_XRI_CN:
1245 case CMD_CLOSE_XRI_CX:
1246 case CMD_XRI_ABORTED_CX:
1247 case CMD_ABORT_MXRI64_CN:
James Smart6669f9b2009-10-02 15:16:45 -04001248 case CMD_XMIT_BLS_RSP64_CX:
dea31012005-04-17 16:05:31 -05001249 type = LPFC_ABORT_IOCB;
1250 break;
1251 case CMD_RCV_SEQUENCE_CX:
1252 case CMD_RCV_ELS_REQ_CX:
1253 case CMD_RCV_SEQUENCE64_CX:
1254 case CMD_RCV_ELS_REQ64_CX:
James Smart57127f12007-10-27 13:37:05 -04001255 case CMD_ASYNC_STATUS:
James Smarted957682007-06-17 19:56:37 -05001256 case CMD_IOCB_RCV_SEQ64_CX:
1257 case CMD_IOCB_RCV_ELS64_CX:
1258 case CMD_IOCB_RCV_CONT64_CX:
James Smart3163f722008-02-08 18:50:25 -05001259 case CMD_IOCB_RET_XRI64_CX:
dea31012005-04-17 16:05:31 -05001260 type = LPFC_UNSOL_IOCB;
1261 break;
James Smart3163f722008-02-08 18:50:25 -05001262 case CMD_IOCB_XMIT_MSEQ64_CR:
1263 case CMD_IOCB_XMIT_MSEQ64_CX:
1264 case CMD_IOCB_RCV_SEQ_LIST64_CX:
1265 case CMD_IOCB_RCV_ELS_LIST64_CX:
1266 case CMD_IOCB_CLOSE_EXTENDED_CN:
1267 case CMD_IOCB_ABORT_EXTENDED_CN:
1268 case CMD_IOCB_RET_HBQE64_CN:
1269 case CMD_IOCB_FCP_IBIDIR64_CR:
1270 case CMD_IOCB_FCP_IBIDIR64_CX:
1271 case CMD_IOCB_FCP_ITASKMGT64_CX:
1272 case CMD_IOCB_LOGENTRY_CN:
1273 case CMD_IOCB_LOGENTRY_ASYNC_CN:
1274 printk("%s - Unhandled SLI-3 Command x%x\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07001275 __func__, iocb_cmnd);
James Smart3163f722008-02-08 18:50:25 -05001276 type = LPFC_UNKNOWN_IOCB;
1277 break;
dea31012005-04-17 16:05:31 -05001278 default:
1279 type = LPFC_UNKNOWN_IOCB;
1280 break;
1281 }
1282
1283 return type;
1284}
1285
James Smarte59058c2008-08-24 21:49:00 -04001286/**
James Smart3621a712009-04-06 18:47:14 -04001287 * lpfc_sli_ring_map - Issue config_ring mbox for all rings
James Smarte59058c2008-08-24 21:49:00 -04001288 * @phba: Pointer to HBA context object.
1289 *
1290 * This function is called from SLI initialization code
1291 * to configure every ring of the HBA's SLI interface. The
1292 * caller is not required to hold any lock. This function issues
1293 * a config_ring mailbox command for each ring.
1294 * This function returns zero if successful else returns a negative
1295 * error code.
1296 **/
dea31012005-04-17 16:05:31 -05001297static int
James Smarted957682007-06-17 19:56:37 -05001298lpfc_sli_ring_map(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05001299{
1300 struct lpfc_sli *psli = &phba->sli;
James Smarted957682007-06-17 19:56:37 -05001301 LPFC_MBOXQ_t *pmb;
1302 MAILBOX_t *pmbox;
1303 int i, rc, ret = 0;
dea31012005-04-17 16:05:31 -05001304
James Smarted957682007-06-17 19:56:37 -05001305 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
1306 if (!pmb)
1307 return -ENOMEM;
James Smart04c68492009-05-22 14:52:52 -04001308 pmbox = &pmb->u.mb;
James Smarted957682007-06-17 19:56:37 -05001309 phba->link_state = LPFC_INIT_MBX_CMDS;
dea31012005-04-17 16:05:31 -05001310 for (i = 0; i < psli->num_rings; i++) {
dea31012005-04-17 16:05:31 -05001311 lpfc_config_ring(phba, i, pmb);
1312 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
1313 if (rc != MBX_SUCCESS) {
James Smart92d7f7b2007-06-17 19:56:38 -05001314 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04001315 "0446 Adapter failed to init (%d), "
dea31012005-04-17 16:05:31 -05001316 "mbxCmd x%x CFG_RING, mbxStatus x%x, "
1317 "ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -04001318 rc, pmbox->mbxCommand,
1319 pmbox->mbxStatus, i);
James Smart2e0fef82007-06-17 19:56:36 -05001320 phba->link_state = LPFC_HBA_ERROR;
James Smarted957682007-06-17 19:56:37 -05001321 ret = -ENXIO;
1322 break;
dea31012005-04-17 16:05:31 -05001323 }
1324 }
James Smarted957682007-06-17 19:56:37 -05001325 mempool_free(pmb, phba->mbox_mem_pool);
1326 return ret;
dea31012005-04-17 16:05:31 -05001327}
1328
James Smarte59058c2008-08-24 21:49:00 -04001329/**
James Smart3621a712009-04-06 18:47:14 -04001330 * lpfc_sli_ringtxcmpl_put - Adds new iocb to the txcmplq
James Smarte59058c2008-08-24 21:49:00 -04001331 * @phba: Pointer to HBA context object.
1332 * @pring: Pointer to driver SLI ring object.
1333 * @piocb: Pointer to the driver iocb object.
1334 *
1335 * This function is called with hbalock held. The function adds the
1336 * new iocb to txcmplq of the given ring. This function always returns
1337 * 0. If this function is called for ELS ring, this function checks if
1338 * there is a vport associated with the ELS command. This function also
1339 * starts els_tmofunc timer if this is an ELS command.
1340 **/
dea31012005-04-17 16:05:31 -05001341static int
James Smart2e0fef82007-06-17 19:56:36 -05001342lpfc_sli_ringtxcmpl_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
1343 struct lpfc_iocbq *piocb)
dea31012005-04-17 16:05:31 -05001344{
dea31012005-04-17 16:05:31 -05001345 list_add_tail(&piocb->list, &pring->txcmplq);
James Smart4f2e66c2012-05-09 21:17:07 -04001346 piocb->iocb_flag |= LPFC_IO_ON_TXCMPLQ;
James Smart2a9bf3d2010-06-07 15:24:45 -04001347
James Smart92d7f7b2007-06-17 19:56:38 -05001348 if ((unlikely(pring->ringno == LPFC_ELS_RING)) &&
1349 (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
James Smart06918ac2014-02-20 09:57:57 -05001350 (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN) &&
1351 (!(piocb->vport->load_flag & FC_UNLOADING))) {
James Smart92d7f7b2007-06-17 19:56:38 -05001352 if (!piocb->vport)
1353 BUG();
1354 else
1355 mod_timer(&piocb->vport->els_tmofunc,
James Smart256ec0d2013-04-17 20:14:58 -04001356 jiffies +
1357 msecs_to_jiffies(1000 * (phba->fc_ratov << 1)));
James Smart92d7f7b2007-06-17 19:56:38 -05001358 }
1359
dea31012005-04-17 16:05:31 -05001360
James Smart2e0fef82007-06-17 19:56:36 -05001361 return 0;
dea31012005-04-17 16:05:31 -05001362}
1363
James Smarte59058c2008-08-24 21:49:00 -04001364/**
James Smart3621a712009-04-06 18:47:14 -04001365 * lpfc_sli_ringtx_get - Get first element of the txq
James Smarte59058c2008-08-24 21:49:00 -04001366 * @phba: Pointer to HBA context object.
1367 * @pring: Pointer to driver SLI ring object.
1368 *
1369 * This function is called with hbalock held to get next
1370 * iocb in txq of the given ring. If there is any iocb in
1371 * the txq, the function returns first iocb in the list after
1372 * removing the iocb from the list, else it returns NULL.
1373 **/
James Smart2a9bf3d2010-06-07 15:24:45 -04001374struct lpfc_iocbq *
James Smart2e0fef82007-06-17 19:56:36 -05001375lpfc_sli_ringtx_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea31012005-04-17 16:05:31 -05001376{
dea31012005-04-17 16:05:31 -05001377 struct lpfc_iocbq *cmd_iocb;
1378
James Smart858c9f62007-06-17 19:56:39 -05001379 list_remove_head((&pring->txq), cmd_iocb, struct lpfc_iocbq, list);
James Smart2e0fef82007-06-17 19:56:36 -05001380 return cmd_iocb;
dea31012005-04-17 16:05:31 -05001381}
1382
James Smarte59058c2008-08-24 21:49:00 -04001383/**
James Smart3621a712009-04-06 18:47:14 -04001384 * lpfc_sli_next_iocb_slot - Get next iocb slot in the ring
James Smarte59058c2008-08-24 21:49:00 -04001385 * @phba: Pointer to HBA context object.
1386 * @pring: Pointer to driver SLI ring object.
1387 *
1388 * This function is called with hbalock held and the caller must post the
1389 * iocb without releasing the lock. If the caller releases the lock,
1390 * iocb slot returned by the function is not guaranteed to be available.
1391 * The function returns pointer to the next available iocb slot if there
1392 * is available slot in the ring, else it returns NULL.
1393 * If the get index of the ring is ahead of the put index, the function
1394 * will post an error attention event to the worker thread to take the
1395 * HBA to offline state.
1396 **/
dea31012005-04-17 16:05:31 -05001397static IOCB_t *
1398lpfc_sli_next_iocb_slot (struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
1399{
James Smart34b02dc2008-08-24 21:49:55 -04001400 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
James Smart7e56aa22012-08-03 12:35:34 -04001401 uint32_t max_cmd_idx = pring->sli.sli3.numCiocb;
1402 if ((pring->sli.sli3.next_cmdidx == pring->sli.sli3.cmdidx) &&
1403 (++pring->sli.sli3.next_cmdidx >= max_cmd_idx))
1404 pring->sli.sli3.next_cmdidx = 0;
dea31012005-04-17 16:05:31 -05001405
James Smart7e56aa22012-08-03 12:35:34 -04001406 if (unlikely(pring->sli.sli3.local_getidx ==
1407 pring->sli.sli3.next_cmdidx)) {
dea31012005-04-17 16:05:31 -05001408
James Smart7e56aa22012-08-03 12:35:34 -04001409 pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
dea31012005-04-17 16:05:31 -05001410
James Smart7e56aa22012-08-03 12:35:34 -04001411 if (unlikely(pring->sli.sli3.local_getidx >= max_cmd_idx)) {
dea31012005-04-17 16:05:31 -05001412 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04001413 "0315 Ring %d issue: portCmdGet %d "
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02001414 "is bigger than cmd ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -04001415 pring->ringno,
James Smart7e56aa22012-08-03 12:35:34 -04001416 pring->sli.sli3.local_getidx,
1417 max_cmd_idx);
dea31012005-04-17 16:05:31 -05001418
James Smart2e0fef82007-06-17 19:56:36 -05001419 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05001420 /*
1421 * All error attention handlers are posted to
1422 * worker thread
1423 */
1424 phba->work_ha |= HA_ERATT;
1425 phba->work_hs = HS_FFER3;
James Smart92d7f7b2007-06-17 19:56:38 -05001426
James Smart5e9d9b82008-06-14 22:52:53 -04001427 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -05001428
1429 return NULL;
1430 }
1431
James Smart7e56aa22012-08-03 12:35:34 -04001432 if (pring->sli.sli3.local_getidx == pring->sli.sli3.next_cmdidx)
dea31012005-04-17 16:05:31 -05001433 return NULL;
1434 }
1435
James Smarted957682007-06-17 19:56:37 -05001436 return lpfc_cmd_iocb(phba, pring);
dea31012005-04-17 16:05:31 -05001437}
1438
James Smarte59058c2008-08-24 21:49:00 -04001439/**
James Smart3621a712009-04-06 18:47:14 -04001440 * lpfc_sli_next_iotag - Get an iotag for the iocb
James Smarte59058c2008-08-24 21:49:00 -04001441 * @phba: Pointer to HBA context object.
1442 * @iocbq: Pointer to driver iocb object.
1443 *
1444 * This function gets an iotag for the iocb. If there is no unused iotag and
1445 * the iocbq_lookup_len < 0xffff, this function allocates a bigger iotag_lookup
1446 * array and assigns a new iotag.
1447 * The function returns the allocated iotag if successful, else returns zero.
1448 * Zero is not a valid iotag.
1449 * The caller is not required to hold any lock.
1450 **/
James Bottomley604a3e32005-10-29 10:28:33 -05001451uint16_t
James Smart2e0fef82007-06-17 19:56:36 -05001452lpfc_sli_next_iotag(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
dea31012005-04-17 16:05:31 -05001453{
James Smart2e0fef82007-06-17 19:56:36 -05001454 struct lpfc_iocbq **new_arr;
1455 struct lpfc_iocbq **old_arr;
James Bottomley604a3e32005-10-29 10:28:33 -05001456 size_t new_len;
1457 struct lpfc_sli *psli = &phba->sli;
1458 uint16_t iotag;
dea31012005-04-17 16:05:31 -05001459
James Smart2e0fef82007-06-17 19:56:36 -05001460 spin_lock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001461 iotag = psli->last_iotag;
1462 if(++iotag < psli->iocbq_lookup_len) {
1463 psli->last_iotag = iotag;
1464 psli->iocbq_lookup[iotag] = iocbq;
James Smart2e0fef82007-06-17 19:56:36 -05001465 spin_unlock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001466 iocbq->iotag = iotag;
1467 return iotag;
James Smart2e0fef82007-06-17 19:56:36 -05001468 } else if (psli->iocbq_lookup_len < (0xffff
James Bottomley604a3e32005-10-29 10:28:33 -05001469 - LPFC_IOCBQ_LOOKUP_INCREMENT)) {
1470 new_len = psli->iocbq_lookup_len + LPFC_IOCBQ_LOOKUP_INCREMENT;
James Smart2e0fef82007-06-17 19:56:36 -05001471 spin_unlock_irq(&phba->hbalock);
1472 new_arr = kzalloc(new_len * sizeof (struct lpfc_iocbq *),
James Bottomley604a3e32005-10-29 10:28:33 -05001473 GFP_KERNEL);
1474 if (new_arr) {
James Smart2e0fef82007-06-17 19:56:36 -05001475 spin_lock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001476 old_arr = psli->iocbq_lookup;
1477 if (new_len <= psli->iocbq_lookup_len) {
1478 /* highly unprobable case */
1479 kfree(new_arr);
1480 iotag = psli->last_iotag;
1481 if(++iotag < psli->iocbq_lookup_len) {
1482 psli->last_iotag = iotag;
1483 psli->iocbq_lookup[iotag] = iocbq;
James Smart2e0fef82007-06-17 19:56:36 -05001484 spin_unlock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001485 iocbq->iotag = iotag;
1486 return iotag;
1487 }
James Smart2e0fef82007-06-17 19:56:36 -05001488 spin_unlock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001489 return 0;
1490 }
1491 if (psli->iocbq_lookup)
1492 memcpy(new_arr, old_arr,
1493 ((psli->last_iotag + 1) *
James Smart311464e2007-08-02 11:10:37 -04001494 sizeof (struct lpfc_iocbq *)));
James Bottomley604a3e32005-10-29 10:28:33 -05001495 psli->iocbq_lookup = new_arr;
1496 psli->iocbq_lookup_len = new_len;
1497 psli->last_iotag = iotag;
1498 psli->iocbq_lookup[iotag] = iocbq;
James Smart2e0fef82007-06-17 19:56:36 -05001499 spin_unlock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001500 iocbq->iotag = iotag;
1501 kfree(old_arr);
1502 return iotag;
1503 }
James Smart8f6d98d2006-08-01 07:34:00 -04001504 } else
James Smart2e0fef82007-06-17 19:56:36 -05001505 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001506
James Smartbc739052010-08-04 16:11:18 -04001507 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04001508 "0318 Failed to allocate IOTAG.last IOTAG is %d\n",
1509 psli->last_iotag);
dea31012005-04-17 16:05:31 -05001510
James Bottomley604a3e32005-10-29 10:28:33 -05001511 return 0;
dea31012005-04-17 16:05:31 -05001512}
1513
James Smarte59058c2008-08-24 21:49:00 -04001514/**
James Smart3621a712009-04-06 18:47:14 -04001515 * lpfc_sli_submit_iocb - Submit an iocb to the firmware
James Smarte59058c2008-08-24 21:49:00 -04001516 * @phba: Pointer to HBA context object.
1517 * @pring: Pointer to driver SLI ring object.
1518 * @iocb: Pointer to iocb slot in the ring.
1519 * @nextiocb: Pointer to driver iocb object which need to be
1520 * posted to firmware.
1521 *
1522 * This function is called with hbalock held to post a new iocb to
1523 * the firmware. This function copies the new iocb to ring iocb slot and
1524 * updates the ring pointers. It adds the new iocb to txcmplq if there is
1525 * a completion call back for this iocb else the function will free the
1526 * iocb object.
1527 **/
dea31012005-04-17 16:05:31 -05001528static void
1529lpfc_sli_submit_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
1530 IOCB_t *iocb, struct lpfc_iocbq *nextiocb)
1531{
1532 /*
James Bottomley604a3e32005-10-29 10:28:33 -05001533 * Set up an iotag
dea31012005-04-17 16:05:31 -05001534 */
James Bottomley604a3e32005-10-29 10:28:33 -05001535 nextiocb->iocb.ulpIoTag = (nextiocb->iocb_cmpl) ? nextiocb->iotag : 0;
dea31012005-04-17 16:05:31 -05001536
James Smarte2a0a9d2008-12-04 22:40:02 -05001537
James Smarta58cbd52007-08-02 11:09:43 -04001538 if (pring->ringno == LPFC_ELS_RING) {
1539 lpfc_debugfs_slow_ring_trc(phba,
1540 "IOCB cmd ring: wd4:x%08x wd6:x%08x wd7:x%08x",
1541 *(((uint32_t *) &nextiocb->iocb) + 4),
1542 *(((uint32_t *) &nextiocb->iocb) + 6),
1543 *(((uint32_t *) &nextiocb->iocb) + 7));
1544 }
1545
dea31012005-04-17 16:05:31 -05001546 /*
1547 * Issue iocb command to adapter
1548 */
James Smart92d7f7b2007-06-17 19:56:38 -05001549 lpfc_sli_pcimem_bcopy(&nextiocb->iocb, iocb, phba->iocb_cmd_size);
dea31012005-04-17 16:05:31 -05001550 wmb();
1551 pring->stats.iocb_cmd++;
1552
1553 /*
1554 * If there is no completion routine to call, we can release the
1555 * IOCB buffer back right now. For IOCBs, like QUE_RING_BUF,
1556 * that have no rsp ring completion, iocb_cmpl MUST be NULL.
1557 */
1558 if (nextiocb->iocb_cmpl)
1559 lpfc_sli_ringtxcmpl_put(phba, pring, nextiocb);
James Bottomley604a3e32005-10-29 10:28:33 -05001560 else
James Smart2e0fef82007-06-17 19:56:36 -05001561 __lpfc_sli_release_iocbq(phba, nextiocb);
dea31012005-04-17 16:05:31 -05001562
1563 /*
1564 * Let the HBA know what IOCB slot will be the next one the
1565 * driver will put a command into.
1566 */
James Smart7e56aa22012-08-03 12:35:34 -04001567 pring->sli.sli3.cmdidx = pring->sli.sli3.next_cmdidx;
1568 writel(pring->sli.sli3.cmdidx, &phba->host_gp[pring->ringno].cmdPutInx);
dea31012005-04-17 16:05:31 -05001569}
1570
James Smarte59058c2008-08-24 21:49:00 -04001571/**
James Smart3621a712009-04-06 18:47:14 -04001572 * lpfc_sli_update_full_ring - Update the chip attention register
James Smarte59058c2008-08-24 21:49:00 -04001573 * @phba: Pointer to HBA context object.
1574 * @pring: Pointer to driver SLI ring object.
1575 *
1576 * The caller is not required to hold any lock for calling this function.
1577 * This function updates the chip attention bits for the ring to inform firmware
1578 * that there are pending work to be done for this ring and requests an
1579 * interrupt when there is space available in the ring. This function is
1580 * called when the driver is unable to post more iocbs to the ring due
1581 * to unavailability of space in the ring.
1582 **/
dea31012005-04-17 16:05:31 -05001583static void
James Smart2e0fef82007-06-17 19:56:36 -05001584lpfc_sli_update_full_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea31012005-04-17 16:05:31 -05001585{
1586 int ringno = pring->ringno;
1587
1588 pring->flag |= LPFC_CALL_RING_AVAILABLE;
1589
1590 wmb();
1591
1592 /*
1593 * Set ring 'ringno' to SET R0CE_REQ in Chip Att register.
1594 * The HBA will tell us when an IOCB entry is available.
1595 */
1596 writel((CA_R0ATT|CA_R0CE_REQ) << (ringno*4), phba->CAregaddr);
1597 readl(phba->CAregaddr); /* flush */
1598
1599 pring->stats.iocb_cmd_full++;
1600}
1601
James Smarte59058c2008-08-24 21:49:00 -04001602/**
James Smart3621a712009-04-06 18:47:14 -04001603 * lpfc_sli_update_ring - Update chip attention register
James Smarte59058c2008-08-24 21:49:00 -04001604 * @phba: Pointer to HBA context object.
1605 * @pring: Pointer to driver SLI ring object.
1606 *
1607 * This function updates the chip attention register bit for the
1608 * given ring to inform HBA that there is more work to be done
1609 * in this ring. The caller is not required to hold any lock.
1610 **/
dea31012005-04-17 16:05:31 -05001611static void
James Smart2e0fef82007-06-17 19:56:36 -05001612lpfc_sli_update_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea31012005-04-17 16:05:31 -05001613{
1614 int ringno = pring->ringno;
1615
1616 /*
1617 * Tell the HBA that there is work to do in this ring.
1618 */
James Smart34b02dc2008-08-24 21:49:55 -04001619 if (!(phba->sli3_options & LPFC_SLI3_CRP_ENABLED)) {
1620 wmb();
1621 writel(CA_R0ATT << (ringno * 4), phba->CAregaddr);
1622 readl(phba->CAregaddr); /* flush */
1623 }
dea31012005-04-17 16:05:31 -05001624}
1625
James Smarte59058c2008-08-24 21:49:00 -04001626/**
James Smart3621a712009-04-06 18:47:14 -04001627 * lpfc_sli_resume_iocb - Process iocbs in the txq
James Smarte59058c2008-08-24 21:49:00 -04001628 * @phba: Pointer to HBA context object.
1629 * @pring: Pointer to driver SLI ring object.
1630 *
1631 * This function is called with hbalock held to post pending iocbs
1632 * in the txq to the firmware. This function is called when driver
1633 * detects space available in the ring.
1634 **/
dea31012005-04-17 16:05:31 -05001635static void
James Smart2e0fef82007-06-17 19:56:36 -05001636lpfc_sli_resume_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea31012005-04-17 16:05:31 -05001637{
1638 IOCB_t *iocb;
1639 struct lpfc_iocbq *nextiocb;
1640
1641 /*
1642 * Check to see if:
1643 * (a) there is anything on the txq to send
1644 * (b) link is up
1645 * (c) link attention events can be processed (fcp ring only)
1646 * (d) IOCB processing is not blocked by the outstanding mbox command.
1647 */
James Smart0e9bb8d2013-03-01 16:35:12 -05001648
1649 if (lpfc_is_link_up(phba) &&
1650 (!list_empty(&pring->txq)) &&
dea31012005-04-17 16:05:31 -05001651 (pring->ringno != phba->sli.fcp_ring ||
James Smart0b727fe2007-10-27 13:37:25 -04001652 phba->sli.sli_flag & LPFC_PROCESS_LA)) {
dea31012005-04-17 16:05:31 -05001653
1654 while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
1655 (nextiocb = lpfc_sli_ringtx_get(phba, pring)))
1656 lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
1657
1658 if (iocb)
1659 lpfc_sli_update_ring(phba, pring);
1660 else
1661 lpfc_sli_update_full_ring(phba, pring);
1662 }
1663
1664 return;
1665}
1666
James Smarte59058c2008-08-24 21:49:00 -04001667/**
James Smart3621a712009-04-06 18:47:14 -04001668 * lpfc_sli_next_hbq_slot - Get next hbq entry for the HBQ
James Smarte59058c2008-08-24 21:49:00 -04001669 * @phba: Pointer to HBA context object.
1670 * @hbqno: HBQ number.
1671 *
1672 * This function is called with hbalock held to get the next
1673 * available slot for the given HBQ. If there is free slot
1674 * available for the HBQ it will return pointer to the next available
1675 * HBQ entry else it will return NULL.
1676 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01001677static struct lpfc_hbq_entry *
James Smarted957682007-06-17 19:56:37 -05001678lpfc_sli_next_hbq_slot(struct lpfc_hba *phba, uint32_t hbqno)
1679{
1680 struct hbq_s *hbqp = &phba->hbqs[hbqno];
1681
1682 if (hbqp->next_hbqPutIdx == hbqp->hbqPutIdx &&
1683 ++hbqp->next_hbqPutIdx >= hbqp->entry_count)
1684 hbqp->next_hbqPutIdx = 0;
1685
1686 if (unlikely(hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)) {
James Smart92d7f7b2007-06-17 19:56:38 -05001687 uint32_t raw_index = phba->hbq_get[hbqno];
James Smarted957682007-06-17 19:56:37 -05001688 uint32_t getidx = le32_to_cpu(raw_index);
1689
1690 hbqp->local_hbqGetIdx = getidx;
1691
1692 if (unlikely(hbqp->local_hbqGetIdx >= hbqp->entry_count)) {
1693 lpfc_printf_log(phba, KERN_ERR,
James Smart92d7f7b2007-06-17 19:56:38 -05001694 LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04001695 "1802 HBQ %d: local_hbqGetIdx "
James Smarted957682007-06-17 19:56:37 -05001696 "%u is > than hbqp->entry_count %u\n",
James Smarte8b62012007-08-02 11:10:09 -04001697 hbqno, hbqp->local_hbqGetIdx,
James Smarted957682007-06-17 19:56:37 -05001698 hbqp->entry_count);
1699
1700 phba->link_state = LPFC_HBA_ERROR;
1701 return NULL;
1702 }
1703
1704 if (hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)
1705 return NULL;
1706 }
1707
James Smart51ef4c22007-08-02 11:10:31 -04001708 return (struct lpfc_hbq_entry *) phba->hbqs[hbqno].hbq_virt +
1709 hbqp->hbqPutIdx;
James Smarted957682007-06-17 19:56:37 -05001710}
1711
James Smarte59058c2008-08-24 21:49:00 -04001712/**
James Smart3621a712009-04-06 18:47:14 -04001713 * lpfc_sli_hbqbuf_free_all - Free all the hbq buffers
James Smarte59058c2008-08-24 21:49:00 -04001714 * @phba: Pointer to HBA context object.
1715 *
1716 * This function is called with no lock held to free all the
1717 * hbq buffers while uninitializing the SLI interface. It also
1718 * frees the HBQ buffers returned by the firmware but not yet
1719 * processed by the upper layers.
1720 **/
James Smarted957682007-06-17 19:56:37 -05001721void
1722lpfc_sli_hbqbuf_free_all(struct lpfc_hba *phba)
1723{
James Smart92d7f7b2007-06-17 19:56:38 -05001724 struct lpfc_dmabuf *dmabuf, *next_dmabuf;
1725 struct hbq_dmabuf *hbq_buf;
James Smart3163f722008-02-08 18:50:25 -05001726 unsigned long flags;
James Smart51ef4c22007-08-02 11:10:31 -04001727 int i, hbq_count;
James Smart3163f722008-02-08 18:50:25 -05001728 uint32_t hbqno;
James Smarted957682007-06-17 19:56:37 -05001729
James Smart51ef4c22007-08-02 11:10:31 -04001730 hbq_count = lpfc_sli_hbq_count();
James Smarted957682007-06-17 19:56:37 -05001731 /* Return all memory used by all HBQs */
James Smart3163f722008-02-08 18:50:25 -05001732 spin_lock_irqsave(&phba->hbalock, flags);
James Smart51ef4c22007-08-02 11:10:31 -04001733 for (i = 0; i < hbq_count; ++i) {
1734 list_for_each_entry_safe(dmabuf, next_dmabuf,
1735 &phba->hbqs[i].hbq_buffer_list, list) {
1736 hbq_buf = container_of(dmabuf, struct hbq_dmabuf, dbuf);
1737 list_del(&hbq_buf->dbuf.list);
1738 (phba->hbqs[i].hbq_free_buffer)(phba, hbq_buf);
1739 }
James Smarta8adb832007-10-27 13:37:53 -04001740 phba->hbqs[i].buffer_count = 0;
James Smarted957682007-06-17 19:56:37 -05001741 }
James Smart3163f722008-02-08 18:50:25 -05001742 /* Return all HBQ buffer that are in-fly */
James Smart3772a992009-05-22 14:50:54 -04001743 list_for_each_entry_safe(dmabuf, next_dmabuf, &phba->rb_pend_list,
1744 list) {
James Smart3163f722008-02-08 18:50:25 -05001745 hbq_buf = container_of(dmabuf, struct hbq_dmabuf, dbuf);
1746 list_del(&hbq_buf->dbuf.list);
1747 if (hbq_buf->tag == -1) {
1748 (phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer)
1749 (phba, hbq_buf);
1750 } else {
1751 hbqno = hbq_buf->tag >> 16;
1752 if (hbqno >= LPFC_MAX_HBQS)
1753 (phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer)
1754 (phba, hbq_buf);
1755 else
1756 (phba->hbqs[hbqno].hbq_free_buffer)(phba,
1757 hbq_buf);
1758 }
1759 }
1760
1761 /* Mark the HBQs not in use */
1762 phba->hbq_in_use = 0;
1763 spin_unlock_irqrestore(&phba->hbalock, flags);
James Smarted957682007-06-17 19:56:37 -05001764}
1765
James Smarte59058c2008-08-24 21:49:00 -04001766/**
James Smart3621a712009-04-06 18:47:14 -04001767 * lpfc_sli_hbq_to_firmware - Post the hbq buffer to firmware
James Smarte59058c2008-08-24 21:49:00 -04001768 * @phba: Pointer to HBA context object.
1769 * @hbqno: HBQ number.
1770 * @hbq_buf: Pointer to HBQ buffer.
1771 *
1772 * This function is called with the hbalock held to post a
1773 * hbq buffer to the firmware. If the function finds an empty
1774 * slot in the HBQ, it will post the buffer. The function will return
1775 * pointer to the hbq entry if it successfully post the buffer
1776 * else it will return NULL.
1777 **/
James Smart3772a992009-05-22 14:50:54 -04001778static int
James Smarted957682007-06-17 19:56:37 -05001779lpfc_sli_hbq_to_firmware(struct lpfc_hba *phba, uint32_t hbqno,
James Smart92d7f7b2007-06-17 19:56:38 -05001780 struct hbq_dmabuf *hbq_buf)
James Smarted957682007-06-17 19:56:37 -05001781{
James Smart3772a992009-05-22 14:50:54 -04001782 return phba->lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buf);
1783}
1784
1785/**
1786 * lpfc_sli_hbq_to_firmware_s3 - Post the hbq buffer to SLI3 firmware
1787 * @phba: Pointer to HBA context object.
1788 * @hbqno: HBQ number.
1789 * @hbq_buf: Pointer to HBQ buffer.
1790 *
1791 * This function is called with the hbalock held to post a hbq buffer to the
1792 * firmware. If the function finds an empty slot in the HBQ, it will post the
1793 * buffer and place it on the hbq_buffer_list. The function will return zero if
1794 * it successfully post the buffer else it will return an error.
1795 **/
1796static int
1797lpfc_sli_hbq_to_firmware_s3(struct lpfc_hba *phba, uint32_t hbqno,
1798 struct hbq_dmabuf *hbq_buf)
1799{
James Smarted957682007-06-17 19:56:37 -05001800 struct lpfc_hbq_entry *hbqe;
James Smart92d7f7b2007-06-17 19:56:38 -05001801 dma_addr_t physaddr = hbq_buf->dbuf.phys;
James Smarted957682007-06-17 19:56:37 -05001802
1803 /* Get next HBQ entry slot to use */
1804 hbqe = lpfc_sli_next_hbq_slot(phba, hbqno);
1805 if (hbqe) {
1806 struct hbq_s *hbqp = &phba->hbqs[hbqno];
1807
James Smart92d7f7b2007-06-17 19:56:38 -05001808 hbqe->bde.addrHigh = le32_to_cpu(putPaddrHigh(physaddr));
1809 hbqe->bde.addrLow = le32_to_cpu(putPaddrLow(physaddr));
James Smart51ef4c22007-08-02 11:10:31 -04001810 hbqe->bde.tus.f.bdeSize = hbq_buf->size;
James Smarted957682007-06-17 19:56:37 -05001811 hbqe->bde.tus.f.bdeFlags = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05001812 hbqe->bde.tus.w = le32_to_cpu(hbqe->bde.tus.w);
1813 hbqe->buffer_tag = le32_to_cpu(hbq_buf->tag);
1814 /* Sync SLIM */
James Smarted957682007-06-17 19:56:37 -05001815 hbqp->hbqPutIdx = hbqp->next_hbqPutIdx;
1816 writel(hbqp->hbqPutIdx, phba->hbq_put + hbqno);
James Smart92d7f7b2007-06-17 19:56:38 -05001817 /* flush */
James Smarted957682007-06-17 19:56:37 -05001818 readl(phba->hbq_put + hbqno);
James Smart51ef4c22007-08-02 11:10:31 -04001819 list_add_tail(&hbq_buf->dbuf.list, &hbqp->hbq_buffer_list);
James Smart3772a992009-05-22 14:50:54 -04001820 return 0;
1821 } else
1822 return -ENOMEM;
James Smarted957682007-06-17 19:56:37 -05001823}
1824
James Smart4f774512009-05-22 14:52:35 -04001825/**
1826 * lpfc_sli_hbq_to_firmware_s4 - Post the hbq buffer to SLI4 firmware
1827 * @phba: Pointer to HBA context object.
1828 * @hbqno: HBQ number.
1829 * @hbq_buf: Pointer to HBQ buffer.
1830 *
1831 * This function is called with the hbalock held to post an RQE to the SLI4
1832 * firmware. If able to post the RQE to the RQ it will queue the hbq entry to
1833 * the hbq_buffer_list and return zero, otherwise it will return an error.
1834 **/
1835static int
1836lpfc_sli_hbq_to_firmware_s4(struct lpfc_hba *phba, uint32_t hbqno,
1837 struct hbq_dmabuf *hbq_buf)
1838{
1839 int rc;
1840 struct lpfc_rqe hrqe;
1841 struct lpfc_rqe drqe;
1842
1843 hrqe.address_lo = putPaddrLow(hbq_buf->hbuf.phys);
1844 hrqe.address_hi = putPaddrHigh(hbq_buf->hbuf.phys);
1845 drqe.address_lo = putPaddrLow(hbq_buf->dbuf.phys);
1846 drqe.address_hi = putPaddrHigh(hbq_buf->dbuf.phys);
1847 rc = lpfc_sli4_rq_put(phba->sli4_hba.hdr_rq, phba->sli4_hba.dat_rq,
1848 &hrqe, &drqe);
1849 if (rc < 0)
1850 return rc;
1851 hbq_buf->tag = rc;
1852 list_add_tail(&hbq_buf->dbuf.list, &phba->hbqs[hbqno].hbq_buffer_list);
1853 return 0;
1854}
1855
James Smarte59058c2008-08-24 21:49:00 -04001856/* HBQ for ELS and CT traffic. */
James Smart92d7f7b2007-06-17 19:56:38 -05001857static struct lpfc_hbq_init lpfc_els_hbq = {
1858 .rn = 1,
James Smartdef9c7a2009-12-21 17:02:28 -05001859 .entry_count = 256,
James Smart92d7f7b2007-06-17 19:56:38 -05001860 .mask_count = 0,
1861 .profile = 0,
James Smart51ef4c22007-08-02 11:10:31 -04001862 .ring_mask = (1 << LPFC_ELS_RING),
James Smart92d7f7b2007-06-17 19:56:38 -05001863 .buffer_count = 0,
James Smarta257bf92009-04-06 18:48:10 -04001864 .init_count = 40,
1865 .add_count = 40,
James Smart92d7f7b2007-06-17 19:56:38 -05001866};
James Smarted957682007-06-17 19:56:37 -05001867
James Smarte59058c2008-08-24 21:49:00 -04001868/* HBQ for the extra ring if needed */
James Smart51ef4c22007-08-02 11:10:31 -04001869static struct lpfc_hbq_init lpfc_extra_hbq = {
1870 .rn = 1,
1871 .entry_count = 200,
1872 .mask_count = 0,
1873 .profile = 0,
1874 .ring_mask = (1 << LPFC_EXTRA_RING),
1875 .buffer_count = 0,
1876 .init_count = 0,
1877 .add_count = 5,
1878};
1879
James Smarte59058c2008-08-24 21:49:00 -04001880/* Array of HBQs */
James Smart78b2d852007-08-02 11:10:21 -04001881struct lpfc_hbq_init *lpfc_hbq_defs[] = {
James Smart92d7f7b2007-06-17 19:56:38 -05001882 &lpfc_els_hbq,
James Smart51ef4c22007-08-02 11:10:31 -04001883 &lpfc_extra_hbq,
James Smart92d7f7b2007-06-17 19:56:38 -05001884};
1885
James Smarte59058c2008-08-24 21:49:00 -04001886/**
James Smart3621a712009-04-06 18:47:14 -04001887 * lpfc_sli_hbqbuf_fill_hbqs - Post more hbq buffers to HBQ
James Smarte59058c2008-08-24 21:49:00 -04001888 * @phba: Pointer to HBA context object.
1889 * @hbqno: HBQ number.
1890 * @count: Number of HBQ buffers to be posted.
1891 *
James Smartd7c255b2008-08-24 21:50:00 -04001892 * This function is called with no lock held to post more hbq buffers to the
1893 * given HBQ. The function returns the number of HBQ buffers successfully
1894 * posted.
James Smarte59058c2008-08-24 21:49:00 -04001895 **/
James Smart311464e2007-08-02 11:10:37 -04001896static int
James Smart92d7f7b2007-06-17 19:56:38 -05001897lpfc_sli_hbqbuf_fill_hbqs(struct lpfc_hba *phba, uint32_t hbqno, uint32_t count)
1898{
James Smartd7c255b2008-08-24 21:50:00 -04001899 uint32_t i, posted = 0;
James Smart3163f722008-02-08 18:50:25 -05001900 unsigned long flags;
James Smart92d7f7b2007-06-17 19:56:38 -05001901 struct hbq_dmabuf *hbq_buffer;
James Smartd7c255b2008-08-24 21:50:00 -04001902 LIST_HEAD(hbq_buf_list);
Matthew Wilcoxeafe1df2008-02-21 05:44:33 -07001903 if (!phba->hbqs[hbqno].hbq_alloc_buffer)
James Smart51ef4c22007-08-02 11:10:31 -04001904 return 0;
James Smart51ef4c22007-08-02 11:10:31 -04001905
James Smartd7c255b2008-08-24 21:50:00 -04001906 if ((phba->hbqs[hbqno].buffer_count + count) >
1907 lpfc_hbq_defs[hbqno]->entry_count)
1908 count = lpfc_hbq_defs[hbqno]->entry_count -
1909 phba->hbqs[hbqno].buffer_count;
1910 if (!count)
1911 return 0;
1912 /* Allocate HBQ entries */
1913 for (i = 0; i < count; i++) {
1914 hbq_buffer = (phba->hbqs[hbqno].hbq_alloc_buffer)(phba);
1915 if (!hbq_buffer)
1916 break;
1917 list_add_tail(&hbq_buffer->dbuf.list, &hbq_buf_list);
1918 }
James Smart3163f722008-02-08 18:50:25 -05001919 /* Check whether HBQ is still in use */
1920 spin_lock_irqsave(&phba->hbalock, flags);
Matthew Wilcoxeafe1df2008-02-21 05:44:33 -07001921 if (!phba->hbq_in_use)
James Smartd7c255b2008-08-24 21:50:00 -04001922 goto err;
1923 while (!list_empty(&hbq_buf_list)) {
1924 list_remove_head(&hbq_buf_list, hbq_buffer, struct hbq_dmabuf,
1925 dbuf.list);
1926 hbq_buffer->tag = (phba->hbqs[hbqno].buffer_count |
1927 (hbqno << 16));
James Smart3772a992009-05-22 14:50:54 -04001928 if (!lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer)) {
James Smarta8adb832007-10-27 13:37:53 -04001929 phba->hbqs[hbqno].buffer_count++;
James Smartd7c255b2008-08-24 21:50:00 -04001930 posted++;
1931 } else
James Smart51ef4c22007-08-02 11:10:31 -04001932 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
James Smart92d7f7b2007-06-17 19:56:38 -05001933 }
James Smart3163f722008-02-08 18:50:25 -05001934 spin_unlock_irqrestore(&phba->hbalock, flags);
James Smartd7c255b2008-08-24 21:50:00 -04001935 return posted;
1936err:
1937 spin_unlock_irqrestore(&phba->hbalock, flags);
1938 while (!list_empty(&hbq_buf_list)) {
1939 list_remove_head(&hbq_buf_list, hbq_buffer, struct hbq_dmabuf,
1940 dbuf.list);
1941 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
1942 }
James Smart92d7f7b2007-06-17 19:56:38 -05001943 return 0;
James Smarted957682007-06-17 19:56:37 -05001944}
1945
James Smarte59058c2008-08-24 21:49:00 -04001946/**
James Smart3621a712009-04-06 18:47:14 -04001947 * lpfc_sli_hbqbuf_add_hbqs - Post more HBQ buffers to firmware
James Smarte59058c2008-08-24 21:49:00 -04001948 * @phba: Pointer to HBA context object.
1949 * @qno: HBQ number.
1950 *
1951 * This function posts more buffers to the HBQ. This function
James Smartd7c255b2008-08-24 21:50:00 -04001952 * is called with no lock held. The function returns the number of HBQ entries
1953 * successfully allocated.
James Smarte59058c2008-08-24 21:49:00 -04001954 **/
James Smarted957682007-06-17 19:56:37 -05001955int
James Smart92d7f7b2007-06-17 19:56:38 -05001956lpfc_sli_hbqbuf_add_hbqs(struct lpfc_hba *phba, uint32_t qno)
James Smarted957682007-06-17 19:56:37 -05001957{
James Smartdef9c7a2009-12-21 17:02:28 -05001958 if (phba->sli_rev == LPFC_SLI_REV4)
1959 return 0;
1960 else
1961 return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
1962 lpfc_hbq_defs[qno]->add_count);
James Smarted957682007-06-17 19:56:37 -05001963}
1964
James Smarte59058c2008-08-24 21:49:00 -04001965/**
James Smart3621a712009-04-06 18:47:14 -04001966 * lpfc_sli_hbqbuf_init_hbqs - Post initial buffers to the HBQ
James Smarte59058c2008-08-24 21:49:00 -04001967 * @phba: Pointer to HBA context object.
1968 * @qno: HBQ queue number.
1969 *
1970 * This function is called from SLI initialization code path with
1971 * no lock held to post initial HBQ buffers to firmware. The
James Smartd7c255b2008-08-24 21:50:00 -04001972 * function returns the number of HBQ entries successfully allocated.
James Smarte59058c2008-08-24 21:49:00 -04001973 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01001974static int
James Smart92d7f7b2007-06-17 19:56:38 -05001975lpfc_sli_hbqbuf_init_hbqs(struct lpfc_hba *phba, uint32_t qno)
James Smarted957682007-06-17 19:56:37 -05001976{
James Smartdef9c7a2009-12-21 17:02:28 -05001977 if (phba->sli_rev == LPFC_SLI_REV4)
1978 return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
James Smart73d91e52011-10-10 21:32:10 -04001979 lpfc_hbq_defs[qno]->entry_count);
James Smartdef9c7a2009-12-21 17:02:28 -05001980 else
1981 return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
1982 lpfc_hbq_defs[qno]->init_count);
James Smarted957682007-06-17 19:56:37 -05001983}
1984
James Smarte59058c2008-08-24 21:49:00 -04001985/**
James Smart3772a992009-05-22 14:50:54 -04001986 * lpfc_sli_hbqbuf_get - Remove the first hbq off of an hbq list
1987 * @phba: Pointer to HBA context object.
1988 * @hbqno: HBQ number.
1989 *
1990 * This function removes the first hbq buffer on an hbq list and returns a
1991 * pointer to that buffer. If it finds no buffers on the list it returns NULL.
1992 **/
1993static struct hbq_dmabuf *
1994lpfc_sli_hbqbuf_get(struct list_head *rb_list)
1995{
1996 struct lpfc_dmabuf *d_buf;
1997
1998 list_remove_head(rb_list, d_buf, struct lpfc_dmabuf, list);
1999 if (!d_buf)
2000 return NULL;
2001 return container_of(d_buf, struct hbq_dmabuf, dbuf);
2002}
2003
2004/**
James Smart3621a712009-04-06 18:47:14 -04002005 * lpfc_sli_hbqbuf_find - Find the hbq buffer associated with a tag
James Smarte59058c2008-08-24 21:49:00 -04002006 * @phba: Pointer to HBA context object.
2007 * @tag: Tag of the hbq buffer.
2008 *
2009 * This function is called with hbalock held. This function searches
2010 * for the hbq buffer associated with the given tag in the hbq buffer
2011 * list. If it finds the hbq buffer, it returns the hbq_buffer other wise
2012 * it returns NULL.
2013 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01002014static struct hbq_dmabuf *
James Smarted957682007-06-17 19:56:37 -05002015lpfc_sli_hbqbuf_find(struct lpfc_hba *phba, uint32_t tag)
2016{
James Smart92d7f7b2007-06-17 19:56:38 -05002017 struct lpfc_dmabuf *d_buf;
2018 struct hbq_dmabuf *hbq_buf;
James Smart51ef4c22007-08-02 11:10:31 -04002019 uint32_t hbqno;
James Smarted957682007-06-17 19:56:37 -05002020
James Smart51ef4c22007-08-02 11:10:31 -04002021 hbqno = tag >> 16;
Jesper Juhla0a74e452007-08-09 20:47:15 +02002022 if (hbqno >= LPFC_MAX_HBQS)
James Smart51ef4c22007-08-02 11:10:31 -04002023 return NULL;
2024
James Smart3772a992009-05-22 14:50:54 -04002025 spin_lock_irq(&phba->hbalock);
James Smart51ef4c22007-08-02 11:10:31 -04002026 list_for_each_entry(d_buf, &phba->hbqs[hbqno].hbq_buffer_list, list) {
James Smart92d7f7b2007-06-17 19:56:38 -05002027 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
James Smart51ef4c22007-08-02 11:10:31 -04002028 if (hbq_buf->tag == tag) {
James Smart3772a992009-05-22 14:50:54 -04002029 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -05002030 return hbq_buf;
James Smarted957682007-06-17 19:56:37 -05002031 }
2032 }
James Smart3772a992009-05-22 14:50:54 -04002033 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -05002034 lpfc_printf_log(phba, KERN_ERR, LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04002035 "1803 Bad hbq tag. Data: x%x x%x\n",
James Smarta8adb832007-10-27 13:37:53 -04002036 tag, phba->hbqs[tag >> 16].buffer_count);
James Smart92d7f7b2007-06-17 19:56:38 -05002037 return NULL;
James Smarted957682007-06-17 19:56:37 -05002038}
2039
James Smarte59058c2008-08-24 21:49:00 -04002040/**
James Smart3621a712009-04-06 18:47:14 -04002041 * lpfc_sli_free_hbq - Give back the hbq buffer to firmware
James Smarte59058c2008-08-24 21:49:00 -04002042 * @phba: Pointer to HBA context object.
2043 * @hbq_buffer: Pointer to HBQ buffer.
2044 *
2045 * This function is called with hbalock. This function gives back
2046 * the hbq buffer to firmware. If the HBQ does not have space to
2047 * post the buffer, it will free the buffer.
2048 **/
James Smarted957682007-06-17 19:56:37 -05002049void
James Smart51ef4c22007-08-02 11:10:31 -04002050lpfc_sli_free_hbq(struct lpfc_hba *phba, struct hbq_dmabuf *hbq_buffer)
James Smarted957682007-06-17 19:56:37 -05002051{
2052 uint32_t hbqno;
2053
James Smart51ef4c22007-08-02 11:10:31 -04002054 if (hbq_buffer) {
2055 hbqno = hbq_buffer->tag >> 16;
James Smart3772a992009-05-22 14:50:54 -04002056 if (lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer))
James Smart51ef4c22007-08-02 11:10:31 -04002057 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
James Smarted957682007-06-17 19:56:37 -05002058 }
2059}
2060
James Smarte59058c2008-08-24 21:49:00 -04002061/**
James Smart3621a712009-04-06 18:47:14 -04002062 * lpfc_sli_chk_mbx_command - Check if the mailbox is a legitimate mailbox
James Smarte59058c2008-08-24 21:49:00 -04002063 * @mbxCommand: mailbox command code.
2064 *
2065 * This function is called by the mailbox event handler function to verify
2066 * that the completed mailbox command is a legitimate mailbox command. If the
2067 * completed mailbox is not known to the function, it will return MBX_SHUTDOWN
2068 * and the mailbox event handler will take the HBA offline.
2069 **/
dea31012005-04-17 16:05:31 -05002070static int
2071lpfc_sli_chk_mbx_command(uint8_t mbxCommand)
2072{
2073 uint8_t ret;
2074
2075 switch (mbxCommand) {
2076 case MBX_LOAD_SM:
2077 case MBX_READ_NV:
2078 case MBX_WRITE_NV:
James Smarta8adb832007-10-27 13:37:53 -04002079 case MBX_WRITE_VPARMS:
dea31012005-04-17 16:05:31 -05002080 case MBX_RUN_BIU_DIAG:
2081 case MBX_INIT_LINK:
2082 case MBX_DOWN_LINK:
2083 case MBX_CONFIG_LINK:
2084 case MBX_CONFIG_RING:
2085 case MBX_RESET_RING:
2086 case MBX_READ_CONFIG:
2087 case MBX_READ_RCONFIG:
2088 case MBX_READ_SPARM:
2089 case MBX_READ_STATUS:
2090 case MBX_READ_RPI:
2091 case MBX_READ_XRI:
2092 case MBX_READ_REV:
2093 case MBX_READ_LNK_STAT:
2094 case MBX_REG_LOGIN:
2095 case MBX_UNREG_LOGIN:
dea31012005-04-17 16:05:31 -05002096 case MBX_CLEAR_LA:
2097 case MBX_DUMP_MEMORY:
2098 case MBX_DUMP_CONTEXT:
2099 case MBX_RUN_DIAGS:
2100 case MBX_RESTART:
2101 case MBX_UPDATE_CFG:
2102 case MBX_DOWN_LOAD:
2103 case MBX_DEL_LD_ENTRY:
2104 case MBX_RUN_PROGRAM:
2105 case MBX_SET_MASK:
James Smart09372822008-01-11 01:52:54 -05002106 case MBX_SET_VARIABLE:
dea31012005-04-17 16:05:31 -05002107 case MBX_UNREG_D_ID:
Jamie Wellnitz41415862006-02-28 19:25:27 -05002108 case MBX_KILL_BOARD:
dea31012005-04-17 16:05:31 -05002109 case MBX_CONFIG_FARP:
Jamie Wellnitz41415862006-02-28 19:25:27 -05002110 case MBX_BEACON:
dea31012005-04-17 16:05:31 -05002111 case MBX_LOAD_AREA:
2112 case MBX_RUN_BIU_DIAG64:
2113 case MBX_CONFIG_PORT:
2114 case MBX_READ_SPARM64:
2115 case MBX_READ_RPI64:
2116 case MBX_REG_LOGIN64:
James Smart76a95d72010-11-20 23:11:48 -05002117 case MBX_READ_TOPOLOGY:
James Smart09372822008-01-11 01:52:54 -05002118 case MBX_WRITE_WWN:
dea31012005-04-17 16:05:31 -05002119 case MBX_SET_DEBUG:
2120 case MBX_LOAD_EXP_ROM:
James Smart57127f12007-10-27 13:37:05 -04002121 case MBX_ASYNCEVT_ENABLE:
James Smart92d7f7b2007-06-17 19:56:38 -05002122 case MBX_REG_VPI:
2123 case MBX_UNREG_VPI:
James Smart858c9f62007-06-17 19:56:39 -05002124 case MBX_HEARTBEAT:
James Smart84774a42008-08-24 21:50:06 -04002125 case MBX_PORT_CAPABILITIES:
2126 case MBX_PORT_IOV_CONTROL:
James Smart04c68492009-05-22 14:52:52 -04002127 case MBX_SLI4_CONFIG:
2128 case MBX_SLI4_REQ_FTRS:
2129 case MBX_REG_FCFI:
2130 case MBX_UNREG_FCFI:
2131 case MBX_REG_VFI:
2132 case MBX_UNREG_VFI:
2133 case MBX_INIT_VPI:
2134 case MBX_INIT_VFI:
2135 case MBX_RESUME_RPI:
James Smartc7495932010-04-06 15:05:28 -04002136 case MBX_READ_EVENT_LOG_STATUS:
2137 case MBX_READ_EVENT_LOG:
James Smartdcf2a4e2010-09-29 11:18:53 -04002138 case MBX_SECURITY_MGMT:
2139 case MBX_AUTH_PORT:
James Smart940eb682012-08-03 12:37:08 -04002140 case MBX_ACCESS_VDATA:
dea31012005-04-17 16:05:31 -05002141 ret = mbxCommand;
2142 break;
2143 default:
2144 ret = MBX_SHUTDOWN;
2145 break;
2146 }
James Smart2e0fef82007-06-17 19:56:36 -05002147 return ret;
dea31012005-04-17 16:05:31 -05002148}
James Smarte59058c2008-08-24 21:49:00 -04002149
2150/**
James Smart3621a712009-04-06 18:47:14 -04002151 * lpfc_sli_wake_mbox_wait - lpfc_sli_issue_mbox_wait mbox completion handler
James Smarte59058c2008-08-24 21:49:00 -04002152 * @phba: Pointer to HBA context object.
2153 * @pmboxq: Pointer to mailbox command.
2154 *
2155 * This is completion handler function for mailbox commands issued from
2156 * lpfc_sli_issue_mbox_wait function. This function is called by the
2157 * mailbox event handler function with no lock held. This function
2158 * will wake up thread waiting on the wait queue pointed by context1
2159 * of the mailbox.
2160 **/
James Smart04c68492009-05-22 14:52:52 -04002161void
James Smart2e0fef82007-06-17 19:56:36 -05002162lpfc_sli_wake_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq)
dea31012005-04-17 16:05:31 -05002163{
2164 wait_queue_head_t *pdone_q;
James Smart858c9f62007-06-17 19:56:39 -05002165 unsigned long drvr_flag;
dea31012005-04-17 16:05:31 -05002166
2167 /*
2168 * If pdone_q is empty, the driver thread gave up waiting and
2169 * continued running.
2170 */
James Smart7054a602007-04-25 09:52:34 -04002171 pmboxq->mbox_flag |= LPFC_MBX_WAKE;
James Smart858c9f62007-06-17 19:56:39 -05002172 spin_lock_irqsave(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05002173 pdone_q = (wait_queue_head_t *) pmboxq->context1;
2174 if (pdone_q)
2175 wake_up_interruptible(pdone_q);
James Smart858c9f62007-06-17 19:56:39 -05002176 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05002177 return;
2178}
2179
James Smarte59058c2008-08-24 21:49:00 -04002180
2181/**
James Smart3621a712009-04-06 18:47:14 -04002182 * lpfc_sli_def_mbox_cmpl - Default mailbox completion handler
James Smarte59058c2008-08-24 21:49:00 -04002183 * @phba: Pointer to HBA context object.
2184 * @pmb: Pointer to mailbox object.
2185 *
2186 * This function is the default mailbox completion handler. It
2187 * frees the memory resources associated with the completed mailbox
2188 * command. If the completed command is a REG_LOGIN mailbox command,
2189 * this function will issue a UREG_LOGIN to re-claim the RPI.
2190 **/
dea31012005-04-17 16:05:31 -05002191void
James Smart2e0fef82007-06-17 19:56:36 -05002192lpfc_sli_def_mbox_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05002193{
James Smartd439d282010-09-29 11:18:45 -04002194 struct lpfc_vport *vport = pmb->vport;
dea31012005-04-17 16:05:31 -05002195 struct lpfc_dmabuf *mp;
James Smartd439d282010-09-29 11:18:45 -04002196 struct lpfc_nodelist *ndlp;
James Smart5af5eee2010-10-22 11:06:38 -04002197 struct Scsi_Host *shost;
James Smart04c68492009-05-22 14:52:52 -04002198 uint16_t rpi, vpi;
James Smart7054a602007-04-25 09:52:34 -04002199 int rc;
2200
dea31012005-04-17 16:05:31 -05002201 mp = (struct lpfc_dmabuf *) (pmb->context1);
James Smart7054a602007-04-25 09:52:34 -04002202
dea31012005-04-17 16:05:31 -05002203 if (mp) {
2204 lpfc_mbuf_free(phba, mp->virt, mp->phys);
2205 kfree(mp);
2206 }
James Smart7054a602007-04-25 09:52:34 -04002207
2208 /*
2209 * If a REG_LOGIN succeeded after node is destroyed or node
2210 * is in re-discovery driver need to cleanup the RPI.
2211 */
James Smart2e0fef82007-06-17 19:56:36 -05002212 if (!(phba->pport->load_flag & FC_UNLOADING) &&
James Smart04c68492009-05-22 14:52:52 -04002213 pmb->u.mb.mbxCommand == MBX_REG_LOGIN64 &&
2214 !pmb->u.mb.mbxStatus) {
2215 rpi = pmb->u.mb.un.varWords[0];
James Smart6d368e52011-05-24 11:44:12 -04002216 vpi = pmb->u.mb.un.varRegLogin.vpi;
James Smart04c68492009-05-22 14:52:52 -04002217 lpfc_unreg_login(phba, vpi, rpi, pmb);
James Smart92d7f7b2007-06-17 19:56:38 -05002218 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart7054a602007-04-25 09:52:34 -04002219 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
2220 if (rc != MBX_NOT_FINISHED)
2221 return;
2222 }
2223
James Smart695a8142010-01-26 23:08:03 -05002224 if ((pmb->u.mb.mbxCommand == MBX_REG_VPI) &&
2225 !(phba->pport->load_flag & FC_UNLOADING) &&
2226 !pmb->u.mb.mbxStatus) {
James Smart5af5eee2010-10-22 11:06:38 -04002227 shost = lpfc_shost_from_vport(vport);
2228 spin_lock_irq(shost->host_lock);
2229 vport->vpi_state |= LPFC_VPI_REGISTERED;
2230 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
2231 spin_unlock_irq(shost->host_lock);
James Smart695a8142010-01-26 23:08:03 -05002232 }
2233
James Smartd439d282010-09-29 11:18:45 -04002234 if (pmb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
2235 ndlp = (struct lpfc_nodelist *)pmb->context2;
2236 lpfc_nlp_put(ndlp);
2237 pmb->context2 = NULL;
2238 }
2239
James Smartdcf2a4e2010-09-29 11:18:53 -04002240 /* Check security permission status on INIT_LINK mailbox command */
2241 if ((pmb->u.mb.mbxCommand == MBX_INIT_LINK) &&
2242 (pmb->u.mb.mbxStatus == MBXERR_SEC_NO_PERMISSION))
2243 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
2244 "2860 SLI authentication is required "
2245 "for INIT_LINK but has not done yet\n");
2246
James Smart04c68492009-05-22 14:52:52 -04002247 if (bf_get(lpfc_mqe_command, &pmb->u.mqe) == MBX_SLI4_CONFIG)
2248 lpfc_sli4_mbox_cmd_free(phba, pmb);
2249 else
2250 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05002251}
2252
James Smarte59058c2008-08-24 21:49:00 -04002253/**
James Smart3621a712009-04-06 18:47:14 -04002254 * lpfc_sli_handle_mb_event - Handle mailbox completions from firmware
James Smarte59058c2008-08-24 21:49:00 -04002255 * @phba: Pointer to HBA context object.
2256 *
2257 * This function is called with no lock held. This function processes all
2258 * the completed mailbox commands and gives it to upper layers. The interrupt
2259 * service routine processes mailbox completion interrupt and adds completed
2260 * mailbox commands to the mboxq_cmpl queue and signals the worker thread.
2261 * Worker thread call lpfc_sli_handle_mb_event, which will return the
2262 * completed mailbox commands in mboxq_cmpl queue to the upper layers. This
2263 * function returns the mailbox commands to the upper layer by calling the
2264 * completion handler function of each mailbox.
2265 **/
dea31012005-04-17 16:05:31 -05002266int
James Smart2e0fef82007-06-17 19:56:36 -05002267lpfc_sli_handle_mb_event(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05002268{
James Smart92d7f7b2007-06-17 19:56:38 -05002269 MAILBOX_t *pmbox;
dea31012005-04-17 16:05:31 -05002270 LPFC_MBOXQ_t *pmb;
James Smart92d7f7b2007-06-17 19:56:38 -05002271 int rc;
2272 LIST_HEAD(cmplq);
dea31012005-04-17 16:05:31 -05002273
2274 phba->sli.slistat.mbox_event++;
2275
James Smart92d7f7b2007-06-17 19:56:38 -05002276 /* Get all completed mailboxe buffers into the cmplq */
2277 spin_lock_irq(&phba->hbalock);
2278 list_splice_init(&phba->sli.mboxq_cmpl, &cmplq);
2279 spin_unlock_irq(&phba->hbalock);
2280
dea31012005-04-17 16:05:31 -05002281 /* Get a Mailbox buffer to setup mailbox commands for callback */
James Smart92d7f7b2007-06-17 19:56:38 -05002282 do {
2283 list_remove_head(&cmplq, pmb, LPFC_MBOXQ_t, list);
2284 if (pmb == NULL)
2285 break;
2286
James Smart04c68492009-05-22 14:52:52 -04002287 pmbox = &pmb->u.mb;
dea31012005-04-17 16:05:31 -05002288
James Smart858c9f62007-06-17 19:56:39 -05002289 if (pmbox->mbxCommand != MBX_HEARTBEAT) {
2290 if (pmb->vport) {
2291 lpfc_debugfs_disc_trc(pmb->vport,
2292 LPFC_DISC_TRC_MBOX_VPORT,
2293 "MBOX cmpl vport: cmd:x%x mb:x%x x%x",
2294 (uint32_t)pmbox->mbxCommand,
2295 pmbox->un.varWords[0],
2296 pmbox->un.varWords[1]);
2297 }
2298 else {
2299 lpfc_debugfs_disc_trc(phba->pport,
2300 LPFC_DISC_TRC_MBOX,
2301 "MBOX cmpl: cmd:x%x mb:x%x x%x",
2302 (uint32_t)pmbox->mbxCommand,
2303 pmbox->un.varWords[0],
2304 pmbox->un.varWords[1]);
2305 }
2306 }
2307
dea31012005-04-17 16:05:31 -05002308 /*
2309 * It is a fatal error if unknown mbox command completion.
2310 */
2311 if (lpfc_sli_chk_mbx_command(pmbox->mbxCommand) ==
2312 MBX_SHUTDOWN) {
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002313 /* Unknown mailbox command compl */
James Smart92d7f7b2007-06-17 19:56:38 -05002314 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002315 "(%d):0323 Unknown Mailbox command "
James Smarta183a152011-10-10 21:32:43 -04002316 "x%x (x%x/x%x) Cmpl\n",
James Smart92d7f7b2007-06-17 19:56:38 -05002317 pmb->vport ? pmb->vport->vpi : 0,
James Smart04c68492009-05-22 14:52:52 -04002318 pmbox->mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04002319 lpfc_sli_config_mbox_subsys_get(phba,
2320 pmb),
2321 lpfc_sli_config_mbox_opcode_get(phba,
2322 pmb));
James Smart2e0fef82007-06-17 19:56:36 -05002323 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05002324 phba->work_hs = HS_FFER3;
2325 lpfc_handle_eratt(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05002326 continue;
dea31012005-04-17 16:05:31 -05002327 }
2328
dea31012005-04-17 16:05:31 -05002329 if (pmbox->mbxStatus) {
2330 phba->sli.slistat.mbox_stat_err++;
2331 if (pmbox->mbxStatus == MBXERR_NO_RESOURCES) {
2332 /* Mbox cmd cmpl error - RETRYing */
James Smart92d7f7b2007-06-17 19:56:38 -05002333 lpfc_printf_log(phba, KERN_INFO,
James Smarta183a152011-10-10 21:32:43 -04002334 LOG_MBOX | LOG_SLI,
2335 "(%d):0305 Mbox cmd cmpl "
2336 "error - RETRYing Data: x%x "
2337 "(x%x/x%x) x%x x%x x%x\n",
2338 pmb->vport ? pmb->vport->vpi : 0,
2339 pmbox->mbxCommand,
2340 lpfc_sli_config_mbox_subsys_get(phba,
2341 pmb),
2342 lpfc_sli_config_mbox_opcode_get(phba,
2343 pmb),
2344 pmbox->mbxStatus,
2345 pmbox->un.varWords[0],
2346 pmb->vport->port_state);
dea31012005-04-17 16:05:31 -05002347 pmbox->mbxStatus = 0;
2348 pmbox->mbxOwner = OWN_HOST;
dea31012005-04-17 16:05:31 -05002349 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
James Smart04c68492009-05-22 14:52:52 -04002350 if (rc != MBX_NOT_FINISHED)
James Smart92d7f7b2007-06-17 19:56:38 -05002351 continue;
dea31012005-04-17 16:05:31 -05002352 }
2353 }
2354
2355 /* Mailbox cmd <cmd> Cmpl <cmpl> */
James Smart92d7f7b2007-06-17 19:56:38 -05002356 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04002357 "(%d):0307 Mailbox cmd x%x (x%x/x%x) Cmpl x%p "
James Smarte74c03c2013-04-17 20:15:19 -04002358 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x "
2359 "x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05002360 pmb->vport ? pmb->vport->vpi : 0,
dea31012005-04-17 16:05:31 -05002361 pmbox->mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04002362 lpfc_sli_config_mbox_subsys_get(phba, pmb),
2363 lpfc_sli_config_mbox_opcode_get(phba, pmb),
dea31012005-04-17 16:05:31 -05002364 pmb->mbox_cmpl,
2365 *((uint32_t *) pmbox),
2366 pmbox->un.varWords[0],
2367 pmbox->un.varWords[1],
2368 pmbox->un.varWords[2],
2369 pmbox->un.varWords[3],
2370 pmbox->un.varWords[4],
2371 pmbox->un.varWords[5],
2372 pmbox->un.varWords[6],
James Smarte74c03c2013-04-17 20:15:19 -04002373 pmbox->un.varWords[7],
2374 pmbox->un.varWords[8],
2375 pmbox->un.varWords[9],
2376 pmbox->un.varWords[10]);
dea31012005-04-17 16:05:31 -05002377
James Smart92d7f7b2007-06-17 19:56:38 -05002378 if (pmb->mbox_cmpl)
dea31012005-04-17 16:05:31 -05002379 pmb->mbox_cmpl(phba,pmb);
James Smart92d7f7b2007-06-17 19:56:38 -05002380 } while (1);
James Smart2e0fef82007-06-17 19:56:36 -05002381 return 0;
dea31012005-04-17 16:05:31 -05002382}
James Smart92d7f7b2007-06-17 19:56:38 -05002383
James Smarte59058c2008-08-24 21:49:00 -04002384/**
James Smart3621a712009-04-06 18:47:14 -04002385 * lpfc_sli_get_buff - Get the buffer associated with the buffer tag
James Smarte59058c2008-08-24 21:49:00 -04002386 * @phba: Pointer to HBA context object.
2387 * @pring: Pointer to driver SLI ring object.
2388 * @tag: buffer tag.
2389 *
2390 * This function is called with no lock held. When QUE_BUFTAG_BIT bit
2391 * is set in the tag the buffer is posted for a particular exchange,
2392 * the function will return the buffer without replacing the buffer.
2393 * If the buffer is for unsolicited ELS or CT traffic, this function
2394 * returns the buffer and also posts another buffer to the firmware.
2395 **/
James Smart76bb24e2007-10-27 13:38:00 -04002396static struct lpfc_dmabuf *
2397lpfc_sli_get_buff(struct lpfc_hba *phba,
James Smart9f1e1b52008-12-04 22:39:40 -05002398 struct lpfc_sli_ring *pring,
2399 uint32_t tag)
James Smart76bb24e2007-10-27 13:38:00 -04002400{
James Smart9f1e1b52008-12-04 22:39:40 -05002401 struct hbq_dmabuf *hbq_entry;
2402
James Smart76bb24e2007-10-27 13:38:00 -04002403 if (tag & QUE_BUFTAG_BIT)
2404 return lpfc_sli_ring_taggedbuf_get(phba, pring, tag);
James Smart9f1e1b52008-12-04 22:39:40 -05002405 hbq_entry = lpfc_sli_hbqbuf_find(phba, tag);
2406 if (!hbq_entry)
2407 return NULL;
2408 return &hbq_entry->dbuf;
James Smart76bb24e2007-10-27 13:38:00 -04002409}
James Smart57127f12007-10-27 13:37:05 -04002410
James Smart3772a992009-05-22 14:50:54 -04002411/**
2412 * lpfc_complete_unsol_iocb - Complete an unsolicited sequence
2413 * @phba: Pointer to HBA context object.
2414 * @pring: Pointer to driver SLI ring object.
2415 * @saveq: Pointer to the iocbq struct representing the sequence starting frame.
2416 * @fch_r_ctl: the r_ctl for the first frame of the sequence.
2417 * @fch_type: the type for the first frame of the sequence.
2418 *
2419 * This function is called with no lock held. This function uses the r_ctl and
2420 * type of the received sequence to find the correct callback function to call
2421 * to process the sequence.
2422 **/
2423static int
2424lpfc_complete_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2425 struct lpfc_iocbq *saveq, uint32_t fch_r_ctl,
2426 uint32_t fch_type)
2427{
2428 int i;
2429
2430 /* unSolicited Responses */
2431 if (pring->prt[0].profile) {
2432 if (pring->prt[0].lpfc_sli_rcv_unsol_event)
2433 (pring->prt[0].lpfc_sli_rcv_unsol_event) (phba, pring,
2434 saveq);
2435 return 1;
2436 }
2437 /* We must search, based on rctl / type
2438 for the right routine */
2439 for (i = 0; i < pring->num_mask; i++) {
2440 if ((pring->prt[i].rctl == fch_r_ctl) &&
2441 (pring->prt[i].type == fch_type)) {
2442 if (pring->prt[i].lpfc_sli_rcv_unsol_event)
2443 (pring->prt[i].lpfc_sli_rcv_unsol_event)
2444 (phba, pring, saveq);
2445 return 1;
2446 }
2447 }
2448 return 0;
2449}
James Smarte59058c2008-08-24 21:49:00 -04002450
2451/**
James Smart3621a712009-04-06 18:47:14 -04002452 * lpfc_sli_process_unsol_iocb - Unsolicited iocb handler
James Smarte59058c2008-08-24 21:49:00 -04002453 * @phba: Pointer to HBA context object.
2454 * @pring: Pointer to driver SLI ring object.
2455 * @saveq: Pointer to the unsolicited iocb.
2456 *
2457 * This function is called with no lock held by the ring event handler
2458 * when there is an unsolicited iocb posted to the response ring by the
2459 * firmware. This function gets the buffer associated with the iocbs
2460 * and calls the event handler for the ring. This function handles both
2461 * qring buffers and hbq buffers.
2462 * When the function returns 1 the caller can free the iocb object otherwise
2463 * upper layer functions will free the iocb objects.
2464 **/
dea31012005-04-17 16:05:31 -05002465static int
2466lpfc_sli_process_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2467 struct lpfc_iocbq *saveq)
2468{
2469 IOCB_t * irsp;
2470 WORD5 * w5p;
2471 uint32_t Rctl, Type;
James Smart3772a992009-05-22 14:50:54 -04002472 uint32_t match;
James Smart76bb24e2007-10-27 13:38:00 -04002473 struct lpfc_iocbq *iocbq;
James Smart3163f722008-02-08 18:50:25 -05002474 struct lpfc_dmabuf *dmzbuf;
dea31012005-04-17 16:05:31 -05002475
2476 match = 0;
2477 irsp = &(saveq->iocb);
James Smart57127f12007-10-27 13:37:05 -04002478
2479 if (irsp->ulpCommand == CMD_ASYNC_STATUS) {
2480 if (pring->lpfc_sli_rcv_async_status)
2481 pring->lpfc_sli_rcv_async_status(phba, pring, saveq);
2482 else
2483 lpfc_printf_log(phba,
2484 KERN_WARNING,
2485 LOG_SLI,
2486 "0316 Ring %d handler: unexpected "
2487 "ASYNC_STATUS iocb received evt_code "
2488 "0x%x\n",
2489 pring->ringno,
2490 irsp->un.asyncstat.evt_code);
2491 return 1;
2492 }
2493
James Smart3163f722008-02-08 18:50:25 -05002494 if ((irsp->ulpCommand == CMD_IOCB_RET_XRI64_CX) &&
2495 (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED)) {
2496 if (irsp->ulpBdeCount > 0) {
2497 dmzbuf = lpfc_sli_get_buff(phba, pring,
2498 irsp->un.ulpWord[3]);
2499 lpfc_in_buf_free(phba, dmzbuf);
2500 }
2501
2502 if (irsp->ulpBdeCount > 1) {
2503 dmzbuf = lpfc_sli_get_buff(phba, pring,
2504 irsp->unsli3.sli3Words[3]);
2505 lpfc_in_buf_free(phba, dmzbuf);
2506 }
2507
2508 if (irsp->ulpBdeCount > 2) {
2509 dmzbuf = lpfc_sli_get_buff(phba, pring,
2510 irsp->unsli3.sli3Words[7]);
2511 lpfc_in_buf_free(phba, dmzbuf);
2512 }
2513
2514 return 1;
2515 }
2516
James Smart92d7f7b2007-06-17 19:56:38 -05002517 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
James Smart76bb24e2007-10-27 13:38:00 -04002518 if (irsp->ulpBdeCount != 0) {
2519 saveq->context2 = lpfc_sli_get_buff(phba, pring,
James Smart92d7f7b2007-06-17 19:56:38 -05002520 irsp->un.ulpWord[3]);
James Smart76bb24e2007-10-27 13:38:00 -04002521 if (!saveq->context2)
2522 lpfc_printf_log(phba,
2523 KERN_ERR,
2524 LOG_SLI,
2525 "0341 Ring %d Cannot find buffer for "
2526 "an unsolicited iocb. tag 0x%x\n",
2527 pring->ringno,
2528 irsp->un.ulpWord[3]);
James Smart76bb24e2007-10-27 13:38:00 -04002529 }
2530 if (irsp->ulpBdeCount == 2) {
2531 saveq->context3 = lpfc_sli_get_buff(phba, pring,
James Smart51ef4c22007-08-02 11:10:31 -04002532 irsp->unsli3.sli3Words[7]);
James Smart76bb24e2007-10-27 13:38:00 -04002533 if (!saveq->context3)
2534 lpfc_printf_log(phba,
2535 KERN_ERR,
2536 LOG_SLI,
2537 "0342 Ring %d Cannot find buffer for an"
2538 " unsolicited iocb. tag 0x%x\n",
2539 pring->ringno,
2540 irsp->unsli3.sli3Words[7]);
2541 }
2542 list_for_each_entry(iocbq, &saveq->list, list) {
James Smart76bb24e2007-10-27 13:38:00 -04002543 irsp = &(iocbq->iocb);
James Smart76bb24e2007-10-27 13:38:00 -04002544 if (irsp->ulpBdeCount != 0) {
2545 iocbq->context2 = lpfc_sli_get_buff(phba, pring,
2546 irsp->un.ulpWord[3]);
James Smart9c2face2008-01-11 01:53:18 -05002547 if (!iocbq->context2)
James Smart76bb24e2007-10-27 13:38:00 -04002548 lpfc_printf_log(phba,
2549 KERN_ERR,
2550 LOG_SLI,
2551 "0343 Ring %d Cannot find "
2552 "buffer for an unsolicited iocb"
2553 ". tag 0x%x\n", pring->ringno,
2554 irsp->un.ulpWord[3]);
2555 }
2556 if (irsp->ulpBdeCount == 2) {
2557 iocbq->context3 = lpfc_sli_get_buff(phba, pring,
2558 irsp->unsli3.sli3Words[7]);
James Smart9c2face2008-01-11 01:53:18 -05002559 if (!iocbq->context3)
James Smart76bb24e2007-10-27 13:38:00 -04002560 lpfc_printf_log(phba,
2561 KERN_ERR,
2562 LOG_SLI,
2563 "0344 Ring %d Cannot find "
2564 "buffer for an unsolicited "
2565 "iocb. tag 0x%x\n",
2566 pring->ringno,
2567 irsp->unsli3.sli3Words[7]);
2568 }
2569 }
James Smart92d7f7b2007-06-17 19:56:38 -05002570 }
James Smart9c2face2008-01-11 01:53:18 -05002571 if (irsp->ulpBdeCount != 0 &&
2572 (irsp->ulpCommand == CMD_IOCB_RCV_CONT64_CX ||
2573 irsp->ulpStatus == IOSTAT_INTERMED_RSP)) {
2574 int found = 0;
2575
2576 /* search continue save q for same XRI */
2577 list_for_each_entry(iocbq, &pring->iocb_continue_saveq, clist) {
James Smart7851fe22011-07-22 18:36:52 -04002578 if (iocbq->iocb.unsli3.rcvsli3.ox_id ==
2579 saveq->iocb.unsli3.rcvsli3.ox_id) {
James Smart9c2face2008-01-11 01:53:18 -05002580 list_add_tail(&saveq->list, &iocbq->list);
2581 found = 1;
2582 break;
2583 }
2584 }
2585 if (!found)
2586 list_add_tail(&saveq->clist,
2587 &pring->iocb_continue_saveq);
2588 if (saveq->iocb.ulpStatus != IOSTAT_INTERMED_RSP) {
2589 list_del_init(&iocbq->clist);
2590 saveq = iocbq;
2591 irsp = &(saveq->iocb);
2592 } else
2593 return 0;
2594 }
2595 if ((irsp->ulpCommand == CMD_RCV_ELS_REQ64_CX) ||
2596 (irsp->ulpCommand == CMD_RCV_ELS_REQ_CX) ||
2597 (irsp->ulpCommand == CMD_IOCB_RCV_ELS64_CX)) {
James Smart6a9c52c2009-10-02 15:16:51 -04002598 Rctl = FC_RCTL_ELS_REQ;
2599 Type = FC_TYPE_ELS;
James Smart9c2face2008-01-11 01:53:18 -05002600 } else {
2601 w5p = (WORD5 *)&(saveq->iocb.un.ulpWord[5]);
2602 Rctl = w5p->hcsw.Rctl;
2603 Type = w5p->hcsw.Type;
2604
2605 /* Firmware Workaround */
2606 if ((Rctl == 0) && (pring->ringno == LPFC_ELS_RING) &&
2607 (irsp->ulpCommand == CMD_RCV_SEQUENCE64_CX ||
2608 irsp->ulpCommand == CMD_IOCB_RCV_SEQ64_CX)) {
James Smart6a9c52c2009-10-02 15:16:51 -04002609 Rctl = FC_RCTL_ELS_REQ;
2610 Type = FC_TYPE_ELS;
James Smart9c2face2008-01-11 01:53:18 -05002611 w5p->hcsw.Rctl = Rctl;
2612 w5p->hcsw.Type = Type;
2613 }
2614 }
James Smart92d7f7b2007-06-17 19:56:38 -05002615
James Smart3772a992009-05-22 14:50:54 -04002616 if (!lpfc_complete_unsol_iocb(phba, pring, saveq, Rctl, Type))
James Smart92d7f7b2007-06-17 19:56:38 -05002617 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002618 "0313 Ring %d handler: unexpected Rctl x%x "
James Smart92d7f7b2007-06-17 19:56:38 -05002619 "Type x%x received\n",
James Smarte8b62012007-08-02 11:10:09 -04002620 pring->ringno, Rctl, Type);
James Smart3772a992009-05-22 14:50:54 -04002621
James Smart92d7f7b2007-06-17 19:56:38 -05002622 return 1;
dea31012005-04-17 16:05:31 -05002623}
2624
James Smarte59058c2008-08-24 21:49:00 -04002625/**
James Smart3621a712009-04-06 18:47:14 -04002626 * lpfc_sli_iocbq_lookup - Find command iocb for the given response iocb
James Smarte59058c2008-08-24 21:49:00 -04002627 * @phba: Pointer to HBA context object.
2628 * @pring: Pointer to driver SLI ring object.
2629 * @prspiocb: Pointer to response iocb object.
2630 *
2631 * This function looks up the iocb_lookup table to get the command iocb
2632 * corresponding to the given response iocb using the iotag of the
2633 * response iocb. This function is called with the hbalock held.
2634 * This function returns the command iocb object if it finds the command
2635 * iocb else returns NULL.
2636 **/
dea31012005-04-17 16:05:31 -05002637static struct lpfc_iocbq *
James Smart2e0fef82007-06-17 19:56:36 -05002638lpfc_sli_iocbq_lookup(struct lpfc_hba *phba,
2639 struct lpfc_sli_ring *pring,
2640 struct lpfc_iocbq *prspiocb)
dea31012005-04-17 16:05:31 -05002641{
dea31012005-04-17 16:05:31 -05002642 struct lpfc_iocbq *cmd_iocb = NULL;
2643 uint16_t iotag;
2644
James Bottomley604a3e32005-10-29 10:28:33 -05002645 iotag = prspiocb->iocb.ulpIoTag;
dea31012005-04-17 16:05:31 -05002646
James Bottomley604a3e32005-10-29 10:28:33 -05002647 if (iotag != 0 && iotag <= phba->sli.last_iotag) {
2648 cmd_iocb = phba->sli.iocbq_lookup[iotag];
James Smart92d7f7b2007-06-17 19:56:38 -05002649 list_del_init(&cmd_iocb->list);
James Smart4f2e66c2012-05-09 21:17:07 -04002650 if (cmd_iocb->iocb_flag & LPFC_IO_ON_TXCMPLQ) {
James Smart4f2e66c2012-05-09 21:17:07 -04002651 cmd_iocb->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
James Smart2a9bf3d2010-06-07 15:24:45 -04002652 }
James Bottomley604a3e32005-10-29 10:28:33 -05002653 return cmd_iocb;
dea31012005-04-17 16:05:31 -05002654 }
2655
dea31012005-04-17 16:05:31 -05002656 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002657 "0317 iotag x%x is out off "
James Bottomley604a3e32005-10-29 10:28:33 -05002658 "range: max iotag x%x wd0 x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04002659 iotag, phba->sli.last_iotag,
James Bottomley604a3e32005-10-29 10:28:33 -05002660 *(((uint32_t *) &prspiocb->iocb) + 7));
dea31012005-04-17 16:05:31 -05002661 return NULL;
2662}
2663
James Smarte59058c2008-08-24 21:49:00 -04002664/**
James Smart3772a992009-05-22 14:50:54 -04002665 * lpfc_sli_iocbq_lookup_by_tag - Find command iocb for the iotag
2666 * @phba: Pointer to HBA context object.
2667 * @pring: Pointer to driver SLI ring object.
2668 * @iotag: IOCB tag.
2669 *
2670 * This function looks up the iocb_lookup table to get the command iocb
2671 * corresponding to the given iotag. This function is called with the
2672 * hbalock held.
2673 * This function returns the command iocb object if it finds the command
2674 * iocb else returns NULL.
2675 **/
2676static struct lpfc_iocbq *
2677lpfc_sli_iocbq_lookup_by_tag(struct lpfc_hba *phba,
2678 struct lpfc_sli_ring *pring, uint16_t iotag)
2679{
2680 struct lpfc_iocbq *cmd_iocb;
2681
2682 if (iotag != 0 && iotag <= phba->sli.last_iotag) {
2683 cmd_iocb = phba->sli.iocbq_lookup[iotag];
James Smart4f2e66c2012-05-09 21:17:07 -04002684 if (cmd_iocb->iocb_flag & LPFC_IO_ON_TXCMPLQ) {
2685 /* remove from txcmpl queue list */
2686 list_del_init(&cmd_iocb->list);
2687 cmd_iocb->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
James Smart4f2e66c2012-05-09 21:17:07 -04002688 return cmd_iocb;
James Smart2a9bf3d2010-06-07 15:24:45 -04002689 }
James Smart3772a992009-05-22 14:50:54 -04002690 }
James Smart3772a992009-05-22 14:50:54 -04002691 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2692 "0372 iotag x%x is out off range: max iotag (x%x)\n",
2693 iotag, phba->sli.last_iotag);
2694 return NULL;
2695}
2696
2697/**
James Smart3621a712009-04-06 18:47:14 -04002698 * lpfc_sli_process_sol_iocb - process solicited iocb completion
James Smarte59058c2008-08-24 21:49:00 -04002699 * @phba: Pointer to HBA context object.
2700 * @pring: Pointer to driver SLI ring object.
2701 * @saveq: Pointer to the response iocb to be processed.
2702 *
2703 * This function is called by the ring event handler for non-fcp
2704 * rings when there is a new response iocb in the response ring.
2705 * The caller is not required to hold any locks. This function
2706 * gets the command iocb associated with the response iocb and
2707 * calls the completion handler for the command iocb. If there
2708 * is no completion handler, the function will free the resources
2709 * associated with command iocb. If the response iocb is for
2710 * an already aborted command iocb, the status of the completion
2711 * is changed to IOSTAT_LOCAL_REJECT/IOERR_SLI_ABORTED.
2712 * This function always returns 1.
2713 **/
dea31012005-04-17 16:05:31 -05002714static int
James Smart2e0fef82007-06-17 19:56:36 -05002715lpfc_sli_process_sol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
dea31012005-04-17 16:05:31 -05002716 struct lpfc_iocbq *saveq)
2717{
James Smart2e0fef82007-06-17 19:56:36 -05002718 struct lpfc_iocbq *cmdiocbp;
dea31012005-04-17 16:05:31 -05002719 int rc = 1;
2720 unsigned long iflag;
2721
2722 /* Based on the iotag field, get the cmd IOCB from the txcmplq */
James Smart2e0fef82007-06-17 19:56:36 -05002723 spin_lock_irqsave(&phba->hbalock, iflag);
James Bottomley604a3e32005-10-29 10:28:33 -05002724 cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring, saveq);
James Smart2e0fef82007-06-17 19:56:36 -05002725 spin_unlock_irqrestore(&phba->hbalock, iflag);
2726
dea31012005-04-17 16:05:31 -05002727 if (cmdiocbp) {
2728 if (cmdiocbp->iocb_cmpl) {
2729 /*
James Smartea2151b2008-09-07 11:52:10 -04002730 * If an ELS command failed send an event to mgmt
2731 * application.
2732 */
2733 if (saveq->iocb.ulpStatus &&
2734 (pring->ringno == LPFC_ELS_RING) &&
2735 (cmdiocbp->iocb.ulpCommand ==
2736 CMD_ELS_REQUEST64_CR))
2737 lpfc_send_els_failure_event(phba,
2738 cmdiocbp, saveq);
2739
2740 /*
dea31012005-04-17 16:05:31 -05002741 * Post all ELS completions to the worker thread.
2742 * All other are passed to the completion callback.
2743 */
2744 if (pring->ringno == LPFC_ELS_RING) {
James Smart341af102010-01-26 23:07:37 -05002745 if ((phba->sli_rev < LPFC_SLI_REV4) &&
2746 (cmdiocbp->iocb_flag &
2747 LPFC_DRIVER_ABORTED)) {
2748 spin_lock_irqsave(&phba->hbalock,
2749 iflag);
James Smart07951072007-04-25 09:51:38 -04002750 cmdiocbp->iocb_flag &=
2751 ~LPFC_DRIVER_ABORTED;
James Smart341af102010-01-26 23:07:37 -05002752 spin_unlock_irqrestore(&phba->hbalock,
2753 iflag);
James Smart07951072007-04-25 09:51:38 -04002754 saveq->iocb.ulpStatus =
2755 IOSTAT_LOCAL_REJECT;
2756 saveq->iocb.un.ulpWord[4] =
2757 IOERR_SLI_ABORTED;
James Smart0ff10d42008-01-11 01:52:36 -05002758
2759 /* Firmware could still be in progress
2760 * of DMAing payload, so don't free data
2761 * buffer till after a hbeat.
2762 */
James Smart341af102010-01-26 23:07:37 -05002763 spin_lock_irqsave(&phba->hbalock,
2764 iflag);
James Smart0ff10d42008-01-11 01:52:36 -05002765 saveq->iocb_flag |= LPFC_DELAY_MEM_FREE;
James Smart341af102010-01-26 23:07:37 -05002766 spin_unlock_irqrestore(&phba->hbalock,
2767 iflag);
2768 }
James Smart0f65ff62010-02-26 14:14:23 -05002769 if (phba->sli_rev == LPFC_SLI_REV4) {
2770 if (saveq->iocb_flag &
2771 LPFC_EXCHANGE_BUSY) {
2772 /* Set cmdiocb flag for the
2773 * exchange busy so sgl (xri)
2774 * will not be released until
2775 * the abort xri is received
2776 * from hba.
2777 */
2778 spin_lock_irqsave(
2779 &phba->hbalock, iflag);
2780 cmdiocbp->iocb_flag |=
2781 LPFC_EXCHANGE_BUSY;
2782 spin_unlock_irqrestore(
2783 &phba->hbalock, iflag);
2784 }
2785 if (cmdiocbp->iocb_flag &
2786 LPFC_DRIVER_ABORTED) {
2787 /*
2788 * Clear LPFC_DRIVER_ABORTED
2789 * bit in case it was driver
2790 * initiated abort.
2791 */
2792 spin_lock_irqsave(
2793 &phba->hbalock, iflag);
2794 cmdiocbp->iocb_flag &=
2795 ~LPFC_DRIVER_ABORTED;
2796 spin_unlock_irqrestore(
2797 &phba->hbalock, iflag);
2798 cmdiocbp->iocb.ulpStatus =
2799 IOSTAT_LOCAL_REJECT;
2800 cmdiocbp->iocb.un.ulpWord[4] =
2801 IOERR_ABORT_REQUESTED;
2802 /*
2803 * For SLI4, irsiocb contains
2804 * NO_XRI in sli_xritag, it
2805 * shall not affect releasing
2806 * sgl (xri) process.
2807 */
2808 saveq->iocb.ulpStatus =
2809 IOSTAT_LOCAL_REJECT;
2810 saveq->iocb.un.ulpWord[4] =
2811 IOERR_SLI_ABORTED;
2812 spin_lock_irqsave(
2813 &phba->hbalock, iflag);
2814 saveq->iocb_flag |=
2815 LPFC_DELAY_MEM_FREE;
2816 spin_unlock_irqrestore(
2817 &phba->hbalock, iflag);
2818 }
James Smart07951072007-04-25 09:51:38 -04002819 }
dea31012005-04-17 16:05:31 -05002820 }
James Smart2e0fef82007-06-17 19:56:36 -05002821 (cmdiocbp->iocb_cmpl) (phba, cmdiocbp, saveq);
James Bottomley604a3e32005-10-29 10:28:33 -05002822 } else
2823 lpfc_sli_release_iocbq(phba, cmdiocbp);
dea31012005-04-17 16:05:31 -05002824 } else {
2825 /*
2826 * Unknown initiating command based on the response iotag.
2827 * This could be the case on the ELS ring because of
2828 * lpfc_els_abort().
2829 */
2830 if (pring->ringno != LPFC_ELS_RING) {
2831 /*
2832 * Ring <ringno> handler: unexpected completion IoTag
2833 * <IoTag>
2834 */
James Smarta257bf92009-04-06 18:48:10 -04002835 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002836 "0322 Ring %d handler: "
2837 "unexpected completion IoTag x%x "
2838 "Data: x%x x%x x%x x%x\n",
2839 pring->ringno,
2840 saveq->iocb.ulpIoTag,
2841 saveq->iocb.ulpStatus,
2842 saveq->iocb.un.ulpWord[4],
2843 saveq->iocb.ulpCommand,
2844 saveq->iocb.ulpContext);
dea31012005-04-17 16:05:31 -05002845 }
2846 }
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04002847
dea31012005-04-17 16:05:31 -05002848 return rc;
2849}
2850
James Smarte59058c2008-08-24 21:49:00 -04002851/**
James Smart3621a712009-04-06 18:47:14 -04002852 * lpfc_sli_rsp_pointers_error - Response ring pointer error handler
James Smarte59058c2008-08-24 21:49:00 -04002853 * @phba: Pointer to HBA context object.
2854 * @pring: Pointer to driver SLI ring object.
2855 *
2856 * This function is called from the iocb ring event handlers when
2857 * put pointer is ahead of the get pointer for a ring. This function signal
2858 * an error attention condition to the worker thread and the worker
2859 * thread will transition the HBA to offline state.
2860 **/
James Smart2e0fef82007-06-17 19:56:36 -05002861static void
2862lpfc_sli_rsp_pointers_error(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002863{
James Smart34b02dc2008-08-24 21:49:55 -04002864 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002865 /*
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02002866 * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002867 * rsp ring <portRspMax>
2868 */
2869 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002870 "0312 Ring %d handler: portRspPut %d "
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02002871 "is bigger than rsp ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -04002872 pring->ringno, le32_to_cpu(pgp->rspPutInx),
James Smart7e56aa22012-08-03 12:35:34 -04002873 pring->sli.sli3.numRiocb);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002874
James Smart2e0fef82007-06-17 19:56:36 -05002875 phba->link_state = LPFC_HBA_ERROR;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002876
2877 /*
2878 * All error attention handlers are posted to
2879 * worker thread
2880 */
2881 phba->work_ha |= HA_ERATT;
2882 phba->work_hs = HS_FFER3;
James Smart92d7f7b2007-06-17 19:56:38 -05002883
James Smart5e9d9b82008-06-14 22:52:53 -04002884 lpfc_worker_wake_up(phba);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002885
2886 return;
2887}
2888
James Smarte59058c2008-08-24 21:49:00 -04002889/**
James Smart3621a712009-04-06 18:47:14 -04002890 * lpfc_poll_eratt - Error attention polling timer timeout handler
James Smart93996272008-08-24 21:50:30 -04002891 * @ptr: Pointer to address of HBA context object.
2892 *
2893 * This function is invoked by the Error Attention polling timer when the
2894 * timer times out. It will check the SLI Error Attention register for
2895 * possible attention events. If so, it will post an Error Attention event
2896 * and wake up worker thread to process it. Otherwise, it will set up the
2897 * Error Attention polling timer for the next poll.
2898 **/
2899void lpfc_poll_eratt(unsigned long ptr)
2900{
2901 struct lpfc_hba *phba;
James Smartaa6fbb72012-08-03 12:36:03 -04002902 uint32_t eratt = 0, rem;
2903 uint64_t sli_intr, cnt;
James Smart93996272008-08-24 21:50:30 -04002904
2905 phba = (struct lpfc_hba *)ptr;
2906
James Smartaa6fbb72012-08-03 12:36:03 -04002907 /* Here we will also keep track of interrupts per sec of the hba */
2908 sli_intr = phba->sli.slistat.sli_intr;
2909
2910 if (phba->sli.slistat.sli_prev_intr > sli_intr)
2911 cnt = (((uint64_t)(-1) - phba->sli.slistat.sli_prev_intr) +
2912 sli_intr);
2913 else
2914 cnt = (sli_intr - phba->sli.slistat.sli_prev_intr);
2915
2916 /* 64-bit integer division not supporte on 32-bit x86 - use do_div */
2917 rem = do_div(cnt, LPFC_ERATT_POLL_INTERVAL);
2918 phba->sli.slistat.sli_ips = cnt;
2919
2920 phba->sli.slistat.sli_prev_intr = sli_intr;
2921
James Smart93996272008-08-24 21:50:30 -04002922 /* Check chip HA register for error event */
2923 eratt = lpfc_sli_check_eratt(phba);
2924
2925 if (eratt)
2926 /* Tell the worker thread there is work to do */
2927 lpfc_worker_wake_up(phba);
2928 else
2929 /* Restart the timer for next eratt poll */
James Smart256ec0d2013-04-17 20:14:58 -04002930 mod_timer(&phba->eratt_poll,
2931 jiffies +
2932 msecs_to_jiffies(1000 * LPFC_ERATT_POLL_INTERVAL));
James Smart93996272008-08-24 21:50:30 -04002933 return;
2934}
2935
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002936
James Smarte59058c2008-08-24 21:49:00 -04002937/**
James Smart3621a712009-04-06 18:47:14 -04002938 * lpfc_sli_handle_fast_ring_event - Handle ring events on FCP ring
James Smarte59058c2008-08-24 21:49:00 -04002939 * @phba: Pointer to HBA context object.
2940 * @pring: Pointer to driver SLI ring object.
2941 * @mask: Host attention register mask for this ring.
2942 *
2943 * This function is called from the interrupt context when there is a ring
2944 * event for the fcp ring. The caller does not hold any lock.
2945 * The function processes each response iocb in the response ring until it
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002946 * finds an iocb with LE bit set and chains all the iocbs up to the iocb with
James Smarte59058c2008-08-24 21:49:00 -04002947 * LE bit set. The function will call the completion handler of the command iocb
2948 * if the response iocb indicates a completion for a command iocb or it is
2949 * an abort completion. The function will call lpfc_sli_process_unsol_iocb
2950 * function if this is an unsolicited iocb.
dea31012005-04-17 16:05:31 -05002951 * This routine presumes LPFC_FCP_RING handling and doesn't bother
James Smart45ed1192009-10-02 15:17:02 -04002952 * to check it explicitly.
2953 */
2954int
James Smart2e0fef82007-06-17 19:56:36 -05002955lpfc_sli_handle_fast_ring_event(struct lpfc_hba *phba,
2956 struct lpfc_sli_ring *pring, uint32_t mask)
dea31012005-04-17 16:05:31 -05002957{
James Smart34b02dc2008-08-24 21:49:55 -04002958 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
dea31012005-04-17 16:05:31 -05002959 IOCB_t *irsp = NULL;
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04002960 IOCB_t *entry = NULL;
dea31012005-04-17 16:05:31 -05002961 struct lpfc_iocbq *cmdiocbq = NULL;
2962 struct lpfc_iocbq rspiocbq;
dea31012005-04-17 16:05:31 -05002963 uint32_t status;
2964 uint32_t portRspPut, portRspMax;
2965 int rc = 1;
2966 lpfc_iocb_type type;
2967 unsigned long iflag;
2968 uint32_t rsp_cmpl = 0;
dea31012005-04-17 16:05:31 -05002969
James Smart2e0fef82007-06-17 19:56:36 -05002970 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05002971 pring->stats.iocb_event++;
2972
dea31012005-04-17 16:05:31 -05002973 /*
2974 * The next available response entry should never exceed the maximum
2975 * entries. If it does, treat it as an adapter hardware error.
2976 */
James Smart7e56aa22012-08-03 12:35:34 -04002977 portRspMax = pring->sli.sli3.numRiocb;
dea31012005-04-17 16:05:31 -05002978 portRspPut = le32_to_cpu(pgp->rspPutInx);
2979 if (unlikely(portRspPut >= portRspMax)) {
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002980 lpfc_sli_rsp_pointers_error(phba, pring);
James Smart2e0fef82007-06-17 19:56:36 -05002981 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05002982 return 1;
2983 }
James Smart45ed1192009-10-02 15:17:02 -04002984 if (phba->fcp_ring_in_use) {
2985 spin_unlock_irqrestore(&phba->hbalock, iflag);
2986 return 1;
2987 } else
2988 phba->fcp_ring_in_use = 1;
dea31012005-04-17 16:05:31 -05002989
2990 rmb();
James Smart7e56aa22012-08-03 12:35:34 -04002991 while (pring->sli.sli3.rspidx != portRspPut) {
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04002992 /*
2993 * Fetch an entry off the ring and copy it into a local data
2994 * structure. The copy involves a byte-swap since the
2995 * network byte order and pci byte orders are different.
2996 */
James Smarted957682007-06-17 19:56:37 -05002997 entry = lpfc_resp_iocb(phba, pring);
James Smart858c9f62007-06-17 19:56:39 -05002998 phba->last_completion_time = jiffies;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002999
James Smart7e56aa22012-08-03 12:35:34 -04003000 if (++pring->sli.sli3.rspidx >= portRspMax)
3001 pring->sli.sli3.rspidx = 0;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003002
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04003003 lpfc_sli_pcimem_bcopy((uint32_t *) entry,
3004 (uint32_t *) &rspiocbq.iocb,
James Smarted957682007-06-17 19:56:37 -05003005 phba->iocb_rsp_size);
James Smarta4bc3372006-12-02 13:34:16 -05003006 INIT_LIST_HEAD(&(rspiocbq.list));
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04003007 irsp = &rspiocbq.iocb;
3008
dea31012005-04-17 16:05:31 -05003009 type = lpfc_sli_iocb_cmd_type(irsp->ulpCommand & CMD_IOCB_MASK);
3010 pring->stats.iocb_rsp++;
3011 rsp_cmpl++;
3012
3013 if (unlikely(irsp->ulpStatus)) {
James Smart92d7f7b2007-06-17 19:56:38 -05003014 /*
3015 * If resource errors reported from HBA, reduce
3016 * queuedepths of the SCSI device.
3017 */
3018 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
James Smarte3d2b802012-08-14 14:25:43 -04003019 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
3020 IOERR_NO_RESOURCES)) {
James Smart92d7f7b2007-06-17 19:56:38 -05003021 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart3772a992009-05-22 14:50:54 -04003022 phba->lpfc_rampdown_queue_depth(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05003023 spin_lock_irqsave(&phba->hbalock, iflag);
3024 }
3025
dea31012005-04-17 16:05:31 -05003026 /* Rsp ring <ringno> error: IOCB */
3027 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003028 "0336 Rsp Ring %d error: IOCB Data: "
James Smart92d7f7b2007-06-17 19:56:38 -05003029 "x%x x%x x%x x%x x%x x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04003030 pring->ringno,
James Smart92d7f7b2007-06-17 19:56:38 -05003031 irsp->un.ulpWord[0],
3032 irsp->un.ulpWord[1],
3033 irsp->un.ulpWord[2],
3034 irsp->un.ulpWord[3],
3035 irsp->un.ulpWord[4],
3036 irsp->un.ulpWord[5],
James Smartd7c255b2008-08-24 21:50:00 -04003037 *(uint32_t *)&irsp->un1,
3038 *((uint32_t *)&irsp->un1 + 1));
dea31012005-04-17 16:05:31 -05003039 }
3040
3041 switch (type) {
3042 case LPFC_ABORT_IOCB:
3043 case LPFC_SOL_IOCB:
3044 /*
3045 * Idle exchange closed via ABTS from port. No iocb
3046 * resources need to be recovered.
3047 */
3048 if (unlikely(irsp->ulpCommand == CMD_XRI_ABORTED_CX)) {
James Smartdca94792006-08-01 07:34:08 -04003049 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003050 "0333 IOCB cmd 0x%x"
James Smartdca94792006-08-01 07:34:08 -04003051 " processed. Skipping"
James Smart92d7f7b2007-06-17 19:56:38 -05003052 " completion\n",
James Smartdca94792006-08-01 07:34:08 -04003053 irsp->ulpCommand);
dea31012005-04-17 16:05:31 -05003054 break;
3055 }
3056
James Bottomley604a3e32005-10-29 10:28:33 -05003057 cmdiocbq = lpfc_sli_iocbq_lookup(phba, pring,
3058 &rspiocbq);
James Smart0f65ff62010-02-26 14:14:23 -05003059 if (unlikely(!cmdiocbq))
3060 break;
3061 if (cmdiocbq->iocb_flag & LPFC_DRIVER_ABORTED)
3062 cmdiocbq->iocb_flag &= ~LPFC_DRIVER_ABORTED;
3063 if (cmdiocbq->iocb_cmpl) {
3064 spin_unlock_irqrestore(&phba->hbalock, iflag);
3065 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq,
3066 &rspiocbq);
3067 spin_lock_irqsave(&phba->hbalock, iflag);
3068 }
dea31012005-04-17 16:05:31 -05003069 break;
James Smarta4bc3372006-12-02 13:34:16 -05003070 case LPFC_UNSOL_IOCB:
James Smart2e0fef82007-06-17 19:56:36 -05003071 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smarta4bc3372006-12-02 13:34:16 -05003072 lpfc_sli_process_unsol_iocb(phba, pring, &rspiocbq);
James Smart2e0fef82007-06-17 19:56:36 -05003073 spin_lock_irqsave(&phba->hbalock, iflag);
James Smarta4bc3372006-12-02 13:34:16 -05003074 break;
dea31012005-04-17 16:05:31 -05003075 default:
3076 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
3077 char adaptermsg[LPFC_MAX_ADPTMSG];
3078 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
3079 memcpy(&adaptermsg[0], (uint8_t *) irsp,
3080 MAX_MSG_DATA);
Joe Perches898eb712007-10-18 03:06:30 -07003081 dev_warn(&((phba->pcidev)->dev),
3082 "lpfc%d: %s\n",
dea31012005-04-17 16:05:31 -05003083 phba->brd_no, adaptermsg);
3084 } else {
3085 /* Unknown IOCB command */
3086 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003087 "0334 Unknown IOCB command "
James Smart92d7f7b2007-06-17 19:56:38 -05003088 "Data: x%x, x%x x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04003089 type, irsp->ulpCommand,
James Smart92d7f7b2007-06-17 19:56:38 -05003090 irsp->ulpStatus,
3091 irsp->ulpIoTag,
3092 irsp->ulpContext);
dea31012005-04-17 16:05:31 -05003093 }
3094 break;
3095 }
3096
3097 /*
3098 * The response IOCB has been processed. Update the ring
3099 * pointer in SLIM. If the port response put pointer has not
3100 * been updated, sync the pgp->rspPutInx and fetch the new port
3101 * response put pointer.
3102 */
James Smart7e56aa22012-08-03 12:35:34 -04003103 writel(pring->sli.sli3.rspidx,
3104 &phba->host_gp[pring->ringno].rspGetInx);
dea31012005-04-17 16:05:31 -05003105
James Smart7e56aa22012-08-03 12:35:34 -04003106 if (pring->sli.sli3.rspidx == portRspPut)
dea31012005-04-17 16:05:31 -05003107 portRspPut = le32_to_cpu(pgp->rspPutInx);
3108 }
3109
3110 if ((rsp_cmpl > 0) && (mask & HA_R0RE_REQ)) {
3111 pring->stats.iocb_rsp_full++;
3112 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
3113 writel(status, phba->CAregaddr);
3114 readl(phba->CAregaddr);
3115 }
3116 if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
3117 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
3118 pring->stats.iocb_cmd_empty++;
3119
3120 /* Force update of the local copy of cmdGetInx */
James Smart7e56aa22012-08-03 12:35:34 -04003121 pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
dea31012005-04-17 16:05:31 -05003122 lpfc_sli_resume_iocb(phba, pring);
3123
3124 if ((pring->lpfc_sli_cmd_available))
3125 (pring->lpfc_sli_cmd_available) (phba, pring);
3126
3127 }
3128
James Smart45ed1192009-10-02 15:17:02 -04003129 phba->fcp_ring_in_use = 0;
James Smart2e0fef82007-06-17 19:56:36 -05003130 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003131 return rc;
3132}
3133
James Smarte59058c2008-08-24 21:49:00 -04003134/**
James Smart3772a992009-05-22 14:50:54 -04003135 * lpfc_sli_sp_handle_rspiocb - Handle slow-path response iocb
3136 * @phba: Pointer to HBA context object.
3137 * @pring: Pointer to driver SLI ring object.
3138 * @rspiocbp: Pointer to driver response IOCB object.
3139 *
3140 * This function is called from the worker thread when there is a slow-path
3141 * response IOCB to process. This function chains all the response iocbs until
3142 * seeing the iocb with the LE bit set. The function will call
3143 * lpfc_sli_process_sol_iocb function if the response iocb indicates a
3144 * completion of a command iocb. The function will call the
3145 * lpfc_sli_process_unsol_iocb function if this is an unsolicited iocb.
3146 * The function frees the resources or calls the completion handler if this
3147 * iocb is an abort completion. The function returns NULL when the response
3148 * iocb has the LE bit set and all the chained iocbs are processed, otherwise
3149 * this function shall chain the iocb on to the iocb_continueq and return the
3150 * response iocb passed in.
3151 **/
3152static struct lpfc_iocbq *
3153lpfc_sli_sp_handle_rspiocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
3154 struct lpfc_iocbq *rspiocbp)
3155{
3156 struct lpfc_iocbq *saveq;
3157 struct lpfc_iocbq *cmdiocbp;
3158 struct lpfc_iocbq *next_iocb;
3159 IOCB_t *irsp = NULL;
3160 uint32_t free_saveq;
3161 uint8_t iocb_cmd_type;
3162 lpfc_iocb_type type;
3163 unsigned long iflag;
3164 int rc;
3165
3166 spin_lock_irqsave(&phba->hbalock, iflag);
3167 /* First add the response iocb to the countinueq list */
3168 list_add_tail(&rspiocbp->list, &(pring->iocb_continueq));
3169 pring->iocb_continueq_cnt++;
3170
Justin P. Mattock70f23fd2011-05-10 10:16:21 +02003171 /* Now, determine whether the list is completed for processing */
James Smart3772a992009-05-22 14:50:54 -04003172 irsp = &rspiocbp->iocb;
3173 if (irsp->ulpLe) {
3174 /*
3175 * By default, the driver expects to free all resources
3176 * associated with this iocb completion.
3177 */
3178 free_saveq = 1;
3179 saveq = list_get_first(&pring->iocb_continueq,
3180 struct lpfc_iocbq, list);
3181 irsp = &(saveq->iocb);
3182 list_del_init(&pring->iocb_continueq);
3183 pring->iocb_continueq_cnt = 0;
3184
3185 pring->stats.iocb_rsp++;
3186
3187 /*
3188 * If resource errors reported from HBA, reduce
3189 * queuedepths of the SCSI device.
3190 */
3191 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
James Smarte3d2b802012-08-14 14:25:43 -04003192 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
3193 IOERR_NO_RESOURCES)) {
James Smart3772a992009-05-22 14:50:54 -04003194 spin_unlock_irqrestore(&phba->hbalock, iflag);
3195 phba->lpfc_rampdown_queue_depth(phba);
3196 spin_lock_irqsave(&phba->hbalock, iflag);
3197 }
3198
3199 if (irsp->ulpStatus) {
3200 /* Rsp ring <ringno> error: IOCB */
3201 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
3202 "0328 Rsp Ring %d error: "
3203 "IOCB Data: "
3204 "x%x x%x x%x x%x "
3205 "x%x x%x x%x x%x "
3206 "x%x x%x x%x x%x "
3207 "x%x x%x x%x x%x\n",
3208 pring->ringno,
3209 irsp->un.ulpWord[0],
3210 irsp->un.ulpWord[1],
3211 irsp->un.ulpWord[2],
3212 irsp->un.ulpWord[3],
3213 irsp->un.ulpWord[4],
3214 irsp->un.ulpWord[5],
3215 *(((uint32_t *) irsp) + 6),
3216 *(((uint32_t *) irsp) + 7),
3217 *(((uint32_t *) irsp) + 8),
3218 *(((uint32_t *) irsp) + 9),
3219 *(((uint32_t *) irsp) + 10),
3220 *(((uint32_t *) irsp) + 11),
3221 *(((uint32_t *) irsp) + 12),
3222 *(((uint32_t *) irsp) + 13),
3223 *(((uint32_t *) irsp) + 14),
3224 *(((uint32_t *) irsp) + 15));
3225 }
3226
3227 /*
3228 * Fetch the IOCB command type and call the correct completion
3229 * routine. Solicited and Unsolicited IOCBs on the ELS ring
3230 * get freed back to the lpfc_iocb_list by the discovery
3231 * kernel thread.
3232 */
3233 iocb_cmd_type = irsp->ulpCommand & CMD_IOCB_MASK;
3234 type = lpfc_sli_iocb_cmd_type(iocb_cmd_type);
3235 switch (type) {
3236 case LPFC_SOL_IOCB:
3237 spin_unlock_irqrestore(&phba->hbalock, iflag);
3238 rc = lpfc_sli_process_sol_iocb(phba, pring, saveq);
3239 spin_lock_irqsave(&phba->hbalock, iflag);
3240 break;
3241
3242 case LPFC_UNSOL_IOCB:
3243 spin_unlock_irqrestore(&phba->hbalock, iflag);
3244 rc = lpfc_sli_process_unsol_iocb(phba, pring, saveq);
3245 spin_lock_irqsave(&phba->hbalock, iflag);
3246 if (!rc)
3247 free_saveq = 0;
3248 break;
3249
3250 case LPFC_ABORT_IOCB:
3251 cmdiocbp = NULL;
3252 if (irsp->ulpCommand != CMD_XRI_ABORTED_CX)
3253 cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring,
3254 saveq);
3255 if (cmdiocbp) {
3256 /* Call the specified completion routine */
3257 if (cmdiocbp->iocb_cmpl) {
3258 spin_unlock_irqrestore(&phba->hbalock,
3259 iflag);
3260 (cmdiocbp->iocb_cmpl)(phba, cmdiocbp,
3261 saveq);
3262 spin_lock_irqsave(&phba->hbalock,
3263 iflag);
3264 } else
3265 __lpfc_sli_release_iocbq(phba,
3266 cmdiocbp);
3267 }
3268 break;
3269
3270 case LPFC_UNKNOWN_IOCB:
3271 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
3272 char adaptermsg[LPFC_MAX_ADPTMSG];
3273 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
3274 memcpy(&adaptermsg[0], (uint8_t *)irsp,
3275 MAX_MSG_DATA);
3276 dev_warn(&((phba->pcidev)->dev),
3277 "lpfc%d: %s\n",
3278 phba->brd_no, adaptermsg);
3279 } else {
3280 /* Unknown IOCB command */
3281 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3282 "0335 Unknown IOCB "
3283 "command Data: x%x "
3284 "x%x x%x x%x\n",
3285 irsp->ulpCommand,
3286 irsp->ulpStatus,
3287 irsp->ulpIoTag,
3288 irsp->ulpContext);
3289 }
3290 break;
3291 }
3292
3293 if (free_saveq) {
3294 list_for_each_entry_safe(rspiocbp, next_iocb,
3295 &saveq->list, list) {
James Smart61f35bf2013-05-31 17:03:48 -04003296 list_del_init(&rspiocbp->list);
James Smart3772a992009-05-22 14:50:54 -04003297 __lpfc_sli_release_iocbq(phba, rspiocbp);
3298 }
3299 __lpfc_sli_release_iocbq(phba, saveq);
3300 }
3301 rspiocbp = NULL;
3302 }
3303 spin_unlock_irqrestore(&phba->hbalock, iflag);
3304 return rspiocbp;
3305}
3306
3307/**
3308 * lpfc_sli_handle_slow_ring_event - Wrapper func for handling slow-path iocbs
James Smarte59058c2008-08-24 21:49:00 -04003309 * @phba: Pointer to HBA context object.
3310 * @pring: Pointer to driver SLI ring object.
3311 * @mask: Host attention register mask for this ring.
3312 *
James Smart3772a992009-05-22 14:50:54 -04003313 * This routine wraps the actual slow_ring event process routine from the
3314 * API jump table function pointer from the lpfc_hba struct.
James Smarte59058c2008-08-24 21:49:00 -04003315 **/
James Smart3772a992009-05-22 14:50:54 -04003316void
James Smart2e0fef82007-06-17 19:56:36 -05003317lpfc_sli_handle_slow_ring_event(struct lpfc_hba *phba,
3318 struct lpfc_sli_ring *pring, uint32_t mask)
dea31012005-04-17 16:05:31 -05003319{
James Smart3772a992009-05-22 14:50:54 -04003320 phba->lpfc_sli_handle_slow_ring_event(phba, pring, mask);
3321}
3322
3323/**
3324 * lpfc_sli_handle_slow_ring_event_s3 - Handle SLI3 ring event for non-FCP rings
3325 * @phba: Pointer to HBA context object.
3326 * @pring: Pointer to driver SLI ring object.
3327 * @mask: Host attention register mask for this ring.
3328 *
3329 * This function is called from the worker thread when there is a ring event
3330 * for non-fcp rings. The caller does not hold any lock. The function will
3331 * remove each response iocb in the response ring and calls the handle
3332 * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
3333 **/
3334static void
3335lpfc_sli_handle_slow_ring_event_s3(struct lpfc_hba *phba,
3336 struct lpfc_sli_ring *pring, uint32_t mask)
3337{
James Smart34b02dc2008-08-24 21:49:55 -04003338 struct lpfc_pgp *pgp;
dea31012005-04-17 16:05:31 -05003339 IOCB_t *entry;
3340 IOCB_t *irsp = NULL;
3341 struct lpfc_iocbq *rspiocbp = NULL;
dea31012005-04-17 16:05:31 -05003342 uint32_t portRspPut, portRspMax;
dea31012005-04-17 16:05:31 -05003343 unsigned long iflag;
James Smart3772a992009-05-22 14:50:54 -04003344 uint32_t status;
dea31012005-04-17 16:05:31 -05003345
James Smart34b02dc2008-08-24 21:49:55 -04003346 pgp = &phba->port_gp[pring->ringno];
James Smart2e0fef82007-06-17 19:56:36 -05003347 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003348 pring->stats.iocb_event++;
3349
dea31012005-04-17 16:05:31 -05003350 /*
3351 * The next available response entry should never exceed the maximum
3352 * entries. If it does, treat it as an adapter hardware error.
3353 */
James Smart7e56aa22012-08-03 12:35:34 -04003354 portRspMax = pring->sli.sli3.numRiocb;
dea31012005-04-17 16:05:31 -05003355 portRspPut = le32_to_cpu(pgp->rspPutInx);
3356 if (portRspPut >= portRspMax) {
3357 /*
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02003358 * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
dea31012005-04-17 16:05:31 -05003359 * rsp ring <portRspMax>
3360 */
James Smarted957682007-06-17 19:56:37 -05003361 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003362 "0303 Ring %d handler: portRspPut %d "
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02003363 "is bigger than rsp ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -04003364 pring->ringno, portRspPut, portRspMax);
dea31012005-04-17 16:05:31 -05003365
James Smart2e0fef82007-06-17 19:56:36 -05003366 phba->link_state = LPFC_HBA_ERROR;
3367 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003368
3369 phba->work_hs = HS_FFER3;
3370 lpfc_handle_eratt(phba);
3371
James Smart3772a992009-05-22 14:50:54 -04003372 return;
dea31012005-04-17 16:05:31 -05003373 }
3374
3375 rmb();
James Smart7e56aa22012-08-03 12:35:34 -04003376 while (pring->sli.sli3.rspidx != portRspPut) {
dea31012005-04-17 16:05:31 -05003377 /*
3378 * Build a completion list and call the appropriate handler.
3379 * The process is to get the next available response iocb, get
3380 * a free iocb from the list, copy the response data into the
3381 * free iocb, insert to the continuation list, and update the
3382 * next response index to slim. This process makes response
3383 * iocb's in the ring available to DMA as fast as possible but
3384 * pays a penalty for a copy operation. Since the iocb is
3385 * only 32 bytes, this penalty is considered small relative to
3386 * the PCI reads for register values and a slim write. When
3387 * the ulpLe field is set, the entire Command has been
3388 * received.
3389 */
James Smarted957682007-06-17 19:56:37 -05003390 entry = lpfc_resp_iocb(phba, pring);
3391
James Smart858c9f62007-06-17 19:56:39 -05003392 phba->last_completion_time = jiffies;
James Smart2e0fef82007-06-17 19:56:36 -05003393 rspiocbp = __lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -05003394 if (rspiocbp == NULL) {
3395 printk(KERN_ERR "%s: out of buffers! Failing "
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07003396 "completion.\n", __func__);
dea31012005-04-17 16:05:31 -05003397 break;
3398 }
3399
James Smarted957682007-06-17 19:56:37 -05003400 lpfc_sli_pcimem_bcopy(entry, &rspiocbp->iocb,
3401 phba->iocb_rsp_size);
dea31012005-04-17 16:05:31 -05003402 irsp = &rspiocbp->iocb;
3403
James Smart7e56aa22012-08-03 12:35:34 -04003404 if (++pring->sli.sli3.rspidx >= portRspMax)
3405 pring->sli.sli3.rspidx = 0;
dea31012005-04-17 16:05:31 -05003406
James Smarta58cbd52007-08-02 11:09:43 -04003407 if (pring->ringno == LPFC_ELS_RING) {
3408 lpfc_debugfs_slow_ring_trc(phba,
3409 "IOCB rsp ring: wd4:x%08x wd6:x%08x wd7:x%08x",
3410 *(((uint32_t *) irsp) + 4),
3411 *(((uint32_t *) irsp) + 6),
3412 *(((uint32_t *) irsp) + 7));
3413 }
3414
James Smart7e56aa22012-08-03 12:35:34 -04003415 writel(pring->sli.sli3.rspidx,
3416 &phba->host_gp[pring->ringno].rspGetInx);
dea31012005-04-17 16:05:31 -05003417
James Smart3772a992009-05-22 14:50:54 -04003418 spin_unlock_irqrestore(&phba->hbalock, iflag);
3419 /* Handle the response IOCB */
3420 rspiocbp = lpfc_sli_sp_handle_rspiocb(phba, pring, rspiocbp);
3421 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003422
3423 /*
3424 * If the port response put pointer has not been updated, sync
3425 * the pgp->rspPutInx in the MAILBOX_tand fetch the new port
3426 * response put pointer.
3427 */
James Smart7e56aa22012-08-03 12:35:34 -04003428 if (pring->sli.sli3.rspidx == portRspPut) {
dea31012005-04-17 16:05:31 -05003429 portRspPut = le32_to_cpu(pgp->rspPutInx);
3430 }
James Smart7e56aa22012-08-03 12:35:34 -04003431 } /* while (pring->sli.sli3.rspidx != portRspPut) */
dea31012005-04-17 16:05:31 -05003432
James Smart92d7f7b2007-06-17 19:56:38 -05003433 if ((rspiocbp != NULL) && (mask & HA_R0RE_REQ)) {
dea31012005-04-17 16:05:31 -05003434 /* At least one response entry has been freed */
3435 pring->stats.iocb_rsp_full++;
3436 /* SET RxRE_RSP in Chip Att register */
3437 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
3438 writel(status, phba->CAregaddr);
3439 readl(phba->CAregaddr); /* flush */
3440 }
3441 if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
3442 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
3443 pring->stats.iocb_cmd_empty++;
3444
3445 /* Force update of the local copy of cmdGetInx */
James Smart7e56aa22012-08-03 12:35:34 -04003446 pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
dea31012005-04-17 16:05:31 -05003447 lpfc_sli_resume_iocb(phba, pring);
3448
3449 if ((pring->lpfc_sli_cmd_available))
3450 (pring->lpfc_sli_cmd_available) (phba, pring);
3451
3452 }
3453
James Smart2e0fef82007-06-17 19:56:36 -05003454 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart3772a992009-05-22 14:50:54 -04003455 return;
dea31012005-04-17 16:05:31 -05003456}
3457
James Smarte59058c2008-08-24 21:49:00 -04003458/**
James Smart4f774512009-05-22 14:52:35 -04003459 * lpfc_sli_handle_slow_ring_event_s4 - Handle SLI4 slow-path els events
3460 * @phba: Pointer to HBA context object.
3461 * @pring: Pointer to driver SLI ring object.
3462 * @mask: Host attention register mask for this ring.
3463 *
3464 * This function is called from the worker thread when there is a pending
3465 * ELS response iocb on the driver internal slow-path response iocb worker
3466 * queue. The caller does not hold any lock. The function will remove each
3467 * response iocb from the response worker queue and calls the handle
3468 * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
3469 **/
3470static void
3471lpfc_sli_handle_slow_ring_event_s4(struct lpfc_hba *phba,
3472 struct lpfc_sli_ring *pring, uint32_t mask)
3473{
3474 struct lpfc_iocbq *irspiocbq;
James Smart4d9ab992009-10-02 15:16:39 -04003475 struct hbq_dmabuf *dmabuf;
3476 struct lpfc_cq_event *cq_event;
James Smart4f774512009-05-22 14:52:35 -04003477 unsigned long iflag;
3478
James Smart45ed1192009-10-02 15:17:02 -04003479 spin_lock_irqsave(&phba->hbalock, iflag);
3480 phba->hba_flag &= ~HBA_SP_QUEUE_EVT;
3481 spin_unlock_irqrestore(&phba->hbalock, iflag);
3482 while (!list_empty(&phba->sli4_hba.sp_queue_event)) {
James Smart4f774512009-05-22 14:52:35 -04003483 /* Get the response iocb from the head of work queue */
3484 spin_lock_irqsave(&phba->hbalock, iflag);
James Smart45ed1192009-10-02 15:17:02 -04003485 list_remove_head(&phba->sli4_hba.sp_queue_event,
James Smart4d9ab992009-10-02 15:16:39 -04003486 cq_event, struct lpfc_cq_event, list);
James Smart4f774512009-05-22 14:52:35 -04003487 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart4d9ab992009-10-02 15:16:39 -04003488
3489 switch (bf_get(lpfc_wcqe_c_code, &cq_event->cqe.wcqe_cmpl)) {
3490 case CQE_CODE_COMPL_WQE:
3491 irspiocbq = container_of(cq_event, struct lpfc_iocbq,
3492 cq_event);
James Smart45ed1192009-10-02 15:17:02 -04003493 /* Translate ELS WCQE to response IOCBQ */
3494 irspiocbq = lpfc_sli4_els_wcqe_to_rspiocbq(phba,
3495 irspiocbq);
3496 if (irspiocbq)
3497 lpfc_sli_sp_handle_rspiocb(phba, pring,
3498 irspiocbq);
James Smart4d9ab992009-10-02 15:16:39 -04003499 break;
3500 case CQE_CODE_RECEIVE:
James Smart7851fe22011-07-22 18:36:52 -04003501 case CQE_CODE_RECEIVE_V1:
James Smart4d9ab992009-10-02 15:16:39 -04003502 dmabuf = container_of(cq_event, struct hbq_dmabuf,
3503 cq_event);
3504 lpfc_sli4_handle_received_buffer(phba, dmabuf);
3505 break;
3506 default:
3507 break;
3508 }
James Smart4f774512009-05-22 14:52:35 -04003509 }
3510}
3511
3512/**
James Smart3621a712009-04-06 18:47:14 -04003513 * lpfc_sli_abort_iocb_ring - Abort all iocbs in the ring
James Smarte59058c2008-08-24 21:49:00 -04003514 * @phba: Pointer to HBA context object.
3515 * @pring: Pointer to driver SLI ring object.
3516 *
3517 * This function aborts all iocbs in the given ring and frees all the iocb
3518 * objects in txq. This function issues an abort iocb for all the iocb commands
3519 * in txcmplq. The iocbs in the txcmplq is not guaranteed to complete before
3520 * the return of this function. The caller is not required to hold any locks.
3521 **/
James Smart2e0fef82007-06-17 19:56:36 -05003522void
dea31012005-04-17 16:05:31 -05003523lpfc_sli_abort_iocb_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
3524{
James Smart2534ba72007-04-25 09:52:20 -04003525 LIST_HEAD(completions);
dea31012005-04-17 16:05:31 -05003526 struct lpfc_iocbq *iocb, *next_iocb;
dea31012005-04-17 16:05:31 -05003527
James Smart92d7f7b2007-06-17 19:56:38 -05003528 if (pring->ringno == LPFC_ELS_RING) {
3529 lpfc_fabric_abort_hba(phba);
3530 }
3531
dea31012005-04-17 16:05:31 -05003532 /* Error everything on txq and txcmplq
3533 * First do the txq.
3534 */
James Smartdb55fba2014-04-04 13:52:02 -04003535 if (phba->sli_rev >= LPFC_SLI_REV4) {
3536 spin_lock_irq(&pring->ring_lock);
3537 list_splice_init(&pring->txq, &completions);
3538 pring->txq_cnt = 0;
3539 spin_unlock_irq(&pring->ring_lock);
dea31012005-04-17 16:05:31 -05003540
James Smartdb55fba2014-04-04 13:52:02 -04003541 spin_lock_irq(&phba->hbalock);
3542 /* Next issue ABTS for everything on the txcmplq */
3543 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
3544 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
3545 spin_unlock_irq(&phba->hbalock);
3546 } else {
3547 spin_lock_irq(&phba->hbalock);
3548 list_splice_init(&pring->txq, &completions);
3549 pring->txq_cnt = 0;
James Smart2534ba72007-04-25 09:52:20 -04003550
James Smartdb55fba2014-04-04 13:52:02 -04003551 /* Next issue ABTS for everything on the txcmplq */
3552 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
3553 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
3554 spin_unlock_irq(&phba->hbalock);
3555 }
James Smart2534ba72007-04-25 09:52:20 -04003556
James Smarta257bf92009-04-06 18:48:10 -04003557 /* Cancel all the IOCBs from the completions list */
3558 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
3559 IOERR_SLI_ABORTED);
dea31012005-04-17 16:05:31 -05003560}
3561
James Smarte59058c2008-08-24 21:49:00 -04003562/**
James Smartdb55fba2014-04-04 13:52:02 -04003563 * lpfc_sli_abort_fcp_rings - Abort all iocbs in all FCP rings
3564 * @phba: Pointer to HBA context object.
3565 * @pring: Pointer to driver SLI ring object.
3566 *
3567 * This function aborts all iocbs in FCP rings and frees all the iocb
3568 * objects in txq. This function issues an abort iocb for all the iocb commands
3569 * in txcmplq. The iocbs in the txcmplq is not guaranteed to complete before
3570 * the return of this function. The caller is not required to hold any locks.
3571 **/
3572void
3573lpfc_sli_abort_fcp_rings(struct lpfc_hba *phba)
3574{
3575 struct lpfc_sli *psli = &phba->sli;
3576 struct lpfc_sli_ring *pring;
3577 uint32_t i;
3578
3579 /* Look on all the FCP Rings for the iotag */
3580 if (phba->sli_rev >= LPFC_SLI_REV4) {
3581 for (i = 0; i < phba->cfg_fcp_io_channel; i++) {
3582 pring = &psli->ring[i + MAX_SLI3_CONFIGURED_RINGS];
3583 lpfc_sli_abort_iocb_ring(phba, pring);
3584 }
3585 } else {
3586 pring = &psli->ring[psli->fcp_ring];
3587 lpfc_sli_abort_iocb_ring(phba, pring);
3588 }
3589}
3590
3591
3592/**
James Smart3621a712009-04-06 18:47:14 -04003593 * lpfc_sli_flush_fcp_rings - flush all iocbs in the fcp ring
James Smarta8e497d2008-08-24 21:50:11 -04003594 * @phba: Pointer to HBA context object.
3595 *
3596 * This function flushes all iocbs in the fcp ring and frees all the iocb
3597 * objects in txq and txcmplq. This function will not issue abort iocbs
3598 * for all the iocb commands in txcmplq, they will just be returned with
3599 * IOERR_SLI_DOWN. This function is invoked with EEH when device's PCI
3600 * slot has been permanently disabled.
3601 **/
3602void
3603lpfc_sli_flush_fcp_rings(struct lpfc_hba *phba)
3604{
3605 LIST_HEAD(txq);
3606 LIST_HEAD(txcmplq);
James Smarta8e497d2008-08-24 21:50:11 -04003607 struct lpfc_sli *psli = &phba->sli;
3608 struct lpfc_sli_ring *pring;
James Smartdb55fba2014-04-04 13:52:02 -04003609 uint32_t i;
James Smarta8e497d2008-08-24 21:50:11 -04003610
3611 spin_lock_irq(&phba->hbalock);
James Smart4f2e66c2012-05-09 21:17:07 -04003612 /* Indicate the I/O queues are flushed */
3613 phba->hba_flag |= HBA_FCP_IOQ_FLUSH;
James Smarta8e497d2008-08-24 21:50:11 -04003614 spin_unlock_irq(&phba->hbalock);
3615
James Smartdb55fba2014-04-04 13:52:02 -04003616 /* Look on all the FCP Rings for the iotag */
3617 if (phba->sli_rev >= LPFC_SLI_REV4) {
3618 for (i = 0; i < phba->cfg_fcp_io_channel; i++) {
3619 pring = &psli->ring[i + MAX_SLI3_CONFIGURED_RINGS];
James Smarta8e497d2008-08-24 21:50:11 -04003620
James Smartdb55fba2014-04-04 13:52:02 -04003621 spin_lock_irq(&pring->ring_lock);
3622 /* Retrieve everything on txq */
3623 list_splice_init(&pring->txq, &txq);
3624 /* Retrieve everything on the txcmplq */
3625 list_splice_init(&pring->txcmplq, &txcmplq);
3626 pring->txq_cnt = 0;
3627 pring->txcmplq_cnt = 0;
3628 spin_unlock_irq(&pring->ring_lock);
3629
3630 /* Flush the txq */
3631 lpfc_sli_cancel_iocbs(phba, &txq,
3632 IOSTAT_LOCAL_REJECT,
3633 IOERR_SLI_DOWN);
3634 /* Flush the txcmpq */
3635 lpfc_sli_cancel_iocbs(phba, &txcmplq,
3636 IOSTAT_LOCAL_REJECT,
3637 IOERR_SLI_DOWN);
3638 }
3639 } else {
3640 pring = &psli->ring[psli->fcp_ring];
3641
3642 spin_lock_irq(&phba->hbalock);
3643 /* Retrieve everything on txq */
3644 list_splice_init(&pring->txq, &txq);
3645 /* Retrieve everything on the txcmplq */
3646 list_splice_init(&pring->txcmplq, &txcmplq);
3647 pring->txq_cnt = 0;
3648 pring->txcmplq_cnt = 0;
3649 spin_unlock_irq(&phba->hbalock);
3650
3651 /* Flush the txq */
3652 lpfc_sli_cancel_iocbs(phba, &txq, IOSTAT_LOCAL_REJECT,
3653 IOERR_SLI_DOWN);
3654 /* Flush the txcmpq */
3655 lpfc_sli_cancel_iocbs(phba, &txcmplq, IOSTAT_LOCAL_REJECT,
3656 IOERR_SLI_DOWN);
3657 }
James Smarta8e497d2008-08-24 21:50:11 -04003658}
3659
3660/**
James Smart3772a992009-05-22 14:50:54 -04003661 * lpfc_sli_brdready_s3 - Check for sli3 host ready status
James Smarte59058c2008-08-24 21:49:00 -04003662 * @phba: Pointer to HBA context object.
3663 * @mask: Bit mask to be checked.
3664 *
3665 * This function reads the host status register and compares
3666 * with the provided bit mask to check if HBA completed
3667 * the restart. This function will wait in a loop for the
3668 * HBA to complete restart. If the HBA does not restart within
3669 * 15 iterations, the function will reset the HBA again. The
3670 * function returns 1 when HBA fail to restart otherwise returns
3671 * zero.
3672 **/
James Smart3772a992009-05-22 14:50:54 -04003673static int
3674lpfc_sli_brdready_s3(struct lpfc_hba *phba, uint32_t mask)
dea31012005-04-17 16:05:31 -05003675{
Jamie Wellnitz41415862006-02-28 19:25:27 -05003676 uint32_t status;
3677 int i = 0;
3678 int retval = 0;
dea31012005-04-17 16:05:31 -05003679
Jamie Wellnitz41415862006-02-28 19:25:27 -05003680 /* Read the HBA Host Status Register */
James Smart9940b972011-03-11 16:06:12 -05003681 if (lpfc_readl(phba->HSregaddr, &status))
3682 return 1;
dea31012005-04-17 16:05:31 -05003683
Jamie Wellnitz41415862006-02-28 19:25:27 -05003684 /*
3685 * Check status register every 100ms for 5 retries, then every
3686 * 500ms for 5, then every 2.5 sec for 5, then reset board and
3687 * every 2.5 sec for 4.
3688 * Break our of the loop if errors occurred during init.
3689 */
3690 while (((status & mask) != mask) &&
3691 !(status & HS_FFERM) &&
3692 i++ < 20) {
dea31012005-04-17 16:05:31 -05003693
Jamie Wellnitz41415862006-02-28 19:25:27 -05003694 if (i <= 5)
3695 msleep(10);
3696 else if (i <= 10)
3697 msleep(500);
3698 else
3699 msleep(2500);
dea31012005-04-17 16:05:31 -05003700
Jamie Wellnitz41415862006-02-28 19:25:27 -05003701 if (i == 15) {
James Smart2e0fef82007-06-17 19:56:36 -05003702 /* Do post */
James Smart92d7f7b2007-06-17 19:56:38 -05003703 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003704 lpfc_sli_brdrestart(phba);
3705 }
3706 /* Read the HBA Host Status Register */
James Smart9940b972011-03-11 16:06:12 -05003707 if (lpfc_readl(phba->HSregaddr, &status)) {
3708 retval = 1;
3709 break;
3710 }
dea31012005-04-17 16:05:31 -05003711 }
dea31012005-04-17 16:05:31 -05003712
Jamie Wellnitz41415862006-02-28 19:25:27 -05003713 /* Check to see if any errors occurred during init */
3714 if ((status & HS_FFERM) || (i >= 20)) {
James Smarte40a02c2010-02-26 14:13:54 -05003715 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3716 "2751 Adapter failed to restart, "
3717 "status reg x%x, FW Data: A8 x%x AC x%x\n",
3718 status,
3719 readl(phba->MBslimaddr + 0xa8),
3720 readl(phba->MBslimaddr + 0xac));
James Smart2e0fef82007-06-17 19:56:36 -05003721 phba->link_state = LPFC_HBA_ERROR;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003722 retval = 1;
3723 }
dea31012005-04-17 16:05:31 -05003724
Jamie Wellnitz41415862006-02-28 19:25:27 -05003725 return retval;
dea31012005-04-17 16:05:31 -05003726}
3727
James Smartda0436e2009-05-22 14:51:39 -04003728/**
3729 * lpfc_sli_brdready_s4 - Check for sli4 host ready status
3730 * @phba: Pointer to HBA context object.
3731 * @mask: Bit mask to be checked.
3732 *
3733 * This function checks the host status register to check if HBA is
3734 * ready. This function will wait in a loop for the HBA to be ready
3735 * If the HBA is not ready , the function will will reset the HBA PCI
3736 * function again. The function returns 1 when HBA fail to be ready
3737 * otherwise returns zero.
3738 **/
3739static int
3740lpfc_sli_brdready_s4(struct lpfc_hba *phba, uint32_t mask)
3741{
3742 uint32_t status;
3743 int retval = 0;
3744
3745 /* Read the HBA Host Status Register */
3746 status = lpfc_sli4_post_status_check(phba);
3747
3748 if (status) {
3749 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
3750 lpfc_sli_brdrestart(phba);
3751 status = lpfc_sli4_post_status_check(phba);
3752 }
3753
3754 /* Check to see if any errors occurred during init */
3755 if (status) {
3756 phba->link_state = LPFC_HBA_ERROR;
3757 retval = 1;
3758 } else
3759 phba->sli4_hba.intr_enable = 0;
3760
3761 return retval;
3762}
3763
3764/**
3765 * lpfc_sli_brdready - Wrapper func for checking the hba readyness
3766 * @phba: Pointer to HBA context object.
3767 * @mask: Bit mask to be checked.
3768 *
3769 * This routine wraps the actual SLI3 or SLI4 hba readyness check routine
3770 * from the API jump table function pointer from the lpfc_hba struct.
3771 **/
3772int
3773lpfc_sli_brdready(struct lpfc_hba *phba, uint32_t mask)
3774{
3775 return phba->lpfc_sli_brdready(phba, mask);
3776}
3777
James Smart92908312006-03-07 15:04:13 -05003778#define BARRIER_TEST_PATTERN (0xdeadbeef)
3779
James Smarte59058c2008-08-24 21:49:00 -04003780/**
James Smart3621a712009-04-06 18:47:14 -04003781 * lpfc_reset_barrier - Make HBA ready for HBA reset
James Smarte59058c2008-08-24 21:49:00 -04003782 * @phba: Pointer to HBA context object.
3783 *
James Smart1b511972011-12-13 13:23:09 -05003784 * This function is called before resetting an HBA. This function is called
3785 * with hbalock held and requests HBA to quiesce DMAs before a reset.
James Smarte59058c2008-08-24 21:49:00 -04003786 **/
James Smart2e0fef82007-06-17 19:56:36 -05003787void lpfc_reset_barrier(struct lpfc_hba *phba)
James Smart92908312006-03-07 15:04:13 -05003788{
James Smart65a29c12006-07-06 15:50:50 -04003789 uint32_t __iomem *resp_buf;
3790 uint32_t __iomem *mbox_buf;
James Smart92908312006-03-07 15:04:13 -05003791 volatile uint32_t mbox;
James Smart9940b972011-03-11 16:06:12 -05003792 uint32_t hc_copy, ha_copy, resp_data;
James Smart92908312006-03-07 15:04:13 -05003793 int i;
3794 uint8_t hdrtype;
3795
3796 pci_read_config_byte(phba->pcidev, PCI_HEADER_TYPE, &hdrtype);
3797 if (hdrtype != 0x80 ||
3798 (FC_JEDEC_ID(phba->vpd.rev.biuRev) != HELIOS_JEDEC_ID &&
3799 FC_JEDEC_ID(phba->vpd.rev.biuRev) != THOR_JEDEC_ID))
3800 return;
3801
3802 /*
3803 * Tell the other part of the chip to suspend temporarily all
3804 * its DMA activity.
3805 */
James Smart65a29c12006-07-06 15:50:50 -04003806 resp_buf = phba->MBslimaddr;
James Smart92908312006-03-07 15:04:13 -05003807
3808 /* Disable the error attention */
James Smart9940b972011-03-11 16:06:12 -05003809 if (lpfc_readl(phba->HCregaddr, &hc_copy))
3810 return;
James Smart92908312006-03-07 15:04:13 -05003811 writel((hc_copy & ~HC_ERINT_ENA), phba->HCregaddr);
3812 readl(phba->HCregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -05003813 phba->link_flag |= LS_IGNORE_ERATT;
James Smart92908312006-03-07 15:04:13 -05003814
James Smart9940b972011-03-11 16:06:12 -05003815 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3816 return;
3817 if (ha_copy & HA_ERATT) {
James Smart92908312006-03-07 15:04:13 -05003818 /* Clear Chip error bit */
3819 writel(HA_ERATT, phba->HAregaddr);
James Smart2e0fef82007-06-17 19:56:36 -05003820 phba->pport->stopped = 1;
James Smart92908312006-03-07 15:04:13 -05003821 }
3822
3823 mbox = 0;
3824 ((MAILBOX_t *)&mbox)->mbxCommand = MBX_KILL_BOARD;
3825 ((MAILBOX_t *)&mbox)->mbxOwner = OWN_CHIP;
3826
3827 writel(BARRIER_TEST_PATTERN, (resp_buf + 1));
James Smart65a29c12006-07-06 15:50:50 -04003828 mbox_buf = phba->MBslimaddr;
James Smart92908312006-03-07 15:04:13 -05003829 writel(mbox, mbox_buf);
3830
James Smart9940b972011-03-11 16:06:12 -05003831 for (i = 0; i < 50; i++) {
3832 if (lpfc_readl((resp_buf + 1), &resp_data))
3833 return;
3834 if (resp_data != ~(BARRIER_TEST_PATTERN))
3835 mdelay(1);
3836 else
3837 break;
3838 }
3839 resp_data = 0;
3840 if (lpfc_readl((resp_buf + 1), &resp_data))
3841 return;
3842 if (resp_data != ~(BARRIER_TEST_PATTERN)) {
James Smartf4b4c682009-05-22 14:53:12 -04003843 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE ||
James Smart2e0fef82007-06-17 19:56:36 -05003844 phba->pport->stopped)
James Smart92908312006-03-07 15:04:13 -05003845 goto restore_hc;
3846 else
3847 goto clear_errat;
3848 }
3849
3850 ((MAILBOX_t *)&mbox)->mbxOwner = OWN_HOST;
James Smart9940b972011-03-11 16:06:12 -05003851 resp_data = 0;
3852 for (i = 0; i < 500; i++) {
3853 if (lpfc_readl(resp_buf, &resp_data))
3854 return;
3855 if (resp_data != mbox)
3856 mdelay(1);
3857 else
3858 break;
3859 }
James Smart92908312006-03-07 15:04:13 -05003860
3861clear_errat:
3862
James Smart9940b972011-03-11 16:06:12 -05003863 while (++i < 500) {
3864 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3865 return;
3866 if (!(ha_copy & HA_ERATT))
3867 mdelay(1);
3868 else
3869 break;
3870 }
James Smart92908312006-03-07 15:04:13 -05003871
3872 if (readl(phba->HAregaddr) & HA_ERATT) {
3873 writel(HA_ERATT, phba->HAregaddr);
James Smart2e0fef82007-06-17 19:56:36 -05003874 phba->pport->stopped = 1;
James Smart92908312006-03-07 15:04:13 -05003875 }
3876
3877restore_hc:
James Smart2e0fef82007-06-17 19:56:36 -05003878 phba->link_flag &= ~LS_IGNORE_ERATT;
James Smart92908312006-03-07 15:04:13 -05003879 writel(hc_copy, phba->HCregaddr);
3880 readl(phba->HCregaddr); /* flush */
3881}
3882
James Smarte59058c2008-08-24 21:49:00 -04003883/**
James Smart3621a712009-04-06 18:47:14 -04003884 * lpfc_sli_brdkill - Issue a kill_board mailbox command
James Smarte59058c2008-08-24 21:49:00 -04003885 * @phba: Pointer to HBA context object.
3886 *
3887 * This function issues a kill_board mailbox command and waits for
3888 * the error attention interrupt. This function is called for stopping
3889 * the firmware processing. The caller is not required to hold any
3890 * locks. This function calls lpfc_hba_down_post function to free
3891 * any pending commands after the kill. The function will return 1 when it
3892 * fails to kill the board else will return 0.
3893 **/
Jamie Wellnitz41415862006-02-28 19:25:27 -05003894int
James Smart2e0fef82007-06-17 19:56:36 -05003895lpfc_sli_brdkill(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05003896{
Jamie Wellnitz41415862006-02-28 19:25:27 -05003897 struct lpfc_sli *psli;
3898 LPFC_MBOXQ_t *pmb;
3899 uint32_t status;
3900 uint32_t ha_copy;
3901 int retval;
3902 int i = 0;
3903
3904 psli = &phba->sli;
3905
3906 /* Kill HBA */
James Smarted957682007-06-17 19:56:37 -05003907 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003908 "0329 Kill HBA Data: x%x x%x\n",
3909 phba->pport->port_state, psli->sli_flag);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003910
James Smart98c9ea52007-10-27 13:37:33 -04003911 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3912 if (!pmb)
Jamie Wellnitz41415862006-02-28 19:25:27 -05003913 return 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003914
3915 /* Disable the error attention */
James Smart2e0fef82007-06-17 19:56:36 -05003916 spin_lock_irq(&phba->hbalock);
James Smart9940b972011-03-11 16:06:12 -05003917 if (lpfc_readl(phba->HCregaddr, &status)) {
3918 spin_unlock_irq(&phba->hbalock);
3919 mempool_free(pmb, phba->mbox_mem_pool);
3920 return 1;
3921 }
Jamie Wellnitz41415862006-02-28 19:25:27 -05003922 status &= ~HC_ERINT_ENA;
3923 writel(status, phba->HCregaddr);
3924 readl(phba->HCregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -05003925 phba->link_flag |= LS_IGNORE_ERATT;
3926 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003927
3928 lpfc_kill_board(phba, pmb);
3929 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
3930 retval = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
3931
3932 if (retval != MBX_SUCCESS) {
3933 if (retval != MBX_BUSY)
3934 mempool_free(pmb, phba->mbox_mem_pool);
James Smarte40a02c2010-02-26 14:13:54 -05003935 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3936 "2752 KILL_BOARD command failed retval %d\n",
3937 retval);
James Smart2e0fef82007-06-17 19:56:36 -05003938 spin_lock_irq(&phba->hbalock);
3939 phba->link_flag &= ~LS_IGNORE_ERATT;
3940 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003941 return 1;
3942 }
3943
James Smartf4b4c682009-05-22 14:53:12 -04003944 spin_lock_irq(&phba->hbalock);
3945 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
3946 spin_unlock_irq(&phba->hbalock);
James Smart92908312006-03-07 15:04:13 -05003947
Jamie Wellnitz41415862006-02-28 19:25:27 -05003948 mempool_free(pmb, phba->mbox_mem_pool);
3949
3950 /* There is no completion for a KILL_BOARD mbox cmd. Check for an error
3951 * attention every 100ms for 3 seconds. If we don't get ERATT after
3952 * 3 seconds we still set HBA_ERROR state because the status of the
3953 * board is now undefined.
3954 */
James Smart9940b972011-03-11 16:06:12 -05003955 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3956 return 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003957 while ((i++ < 30) && !(ha_copy & HA_ERATT)) {
3958 mdelay(100);
James Smart9940b972011-03-11 16:06:12 -05003959 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3960 return 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003961 }
3962
3963 del_timer_sync(&psli->mbox_tmo);
James Smart92908312006-03-07 15:04:13 -05003964 if (ha_copy & HA_ERATT) {
3965 writel(HA_ERATT, phba->HAregaddr);
James Smart2e0fef82007-06-17 19:56:36 -05003966 phba->pport->stopped = 1;
James Smart92908312006-03-07 15:04:13 -05003967 }
James Smart2e0fef82007-06-17 19:56:36 -05003968 spin_lock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003969 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart04c68492009-05-22 14:52:52 -04003970 psli->mbox_active = NULL;
James Smart2e0fef82007-06-17 19:56:36 -05003971 phba->link_flag &= ~LS_IGNORE_ERATT;
3972 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003973
Jamie Wellnitz41415862006-02-28 19:25:27 -05003974 lpfc_hba_down_post(phba);
James Smart2e0fef82007-06-17 19:56:36 -05003975 phba->link_state = LPFC_HBA_ERROR;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003976
James Smart2e0fef82007-06-17 19:56:36 -05003977 return ha_copy & HA_ERATT ? 0 : 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003978}
3979
James Smarte59058c2008-08-24 21:49:00 -04003980/**
James Smart3772a992009-05-22 14:50:54 -04003981 * lpfc_sli_brdreset - Reset a sli-2 or sli-3 HBA
James Smarte59058c2008-08-24 21:49:00 -04003982 * @phba: Pointer to HBA context object.
3983 *
3984 * This function resets the HBA by writing HC_INITFF to the control
3985 * register. After the HBA resets, this function resets all the iocb ring
3986 * indices. This function disables PCI layer parity checking during
3987 * the reset.
3988 * This function returns 0 always.
3989 * The caller is not required to hold any locks.
3990 **/
Jamie Wellnitz41415862006-02-28 19:25:27 -05003991int
James Smart2e0fef82007-06-17 19:56:36 -05003992lpfc_sli_brdreset(struct lpfc_hba *phba)
Jamie Wellnitz41415862006-02-28 19:25:27 -05003993{
3994 struct lpfc_sli *psli;
dea31012005-04-17 16:05:31 -05003995 struct lpfc_sli_ring *pring;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003996 uint16_t cfg_value;
dea31012005-04-17 16:05:31 -05003997 int i;
dea31012005-04-17 16:05:31 -05003998
Jamie Wellnitz41415862006-02-28 19:25:27 -05003999 psli = &phba->sli;
dea31012005-04-17 16:05:31 -05004000
Jamie Wellnitz41415862006-02-28 19:25:27 -05004001 /* Reset HBA */
4002 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04004003 "0325 Reset HBA Data: x%x x%x\n",
James Smart2e0fef82007-06-17 19:56:36 -05004004 phba->pport->port_state, psli->sli_flag);
dea31012005-04-17 16:05:31 -05004005
4006 /* perform board reset */
4007 phba->fc_eventTag = 0;
James Smart4d9ab992009-10-02 15:16:39 -04004008 phba->link_events = 0;
James Smart2e0fef82007-06-17 19:56:36 -05004009 phba->pport->fc_myDID = 0;
4010 phba->pport->fc_prevDID = 0;
dea31012005-04-17 16:05:31 -05004011
Jamie Wellnitz41415862006-02-28 19:25:27 -05004012 /* Turn off parity checking and serr during the physical reset */
4013 pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
4014 pci_write_config_word(phba->pcidev, PCI_COMMAND,
4015 (cfg_value &
4016 ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
4017
James Smart3772a992009-05-22 14:50:54 -04004018 psli->sli_flag &= ~(LPFC_SLI_ACTIVE | LPFC_PROCESS_LA);
4019
Jamie Wellnitz41415862006-02-28 19:25:27 -05004020 /* Now toggle INITFF bit in the Host Control Register */
4021 writel(HC_INITFF, phba->HCregaddr);
4022 mdelay(1);
4023 readl(phba->HCregaddr); /* flush */
4024 writel(0, phba->HCregaddr);
4025 readl(phba->HCregaddr); /* flush */
4026
4027 /* Restore PCI cmd register */
4028 pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
dea31012005-04-17 16:05:31 -05004029
4030 /* Initialize relevant SLI info */
Jamie Wellnitz41415862006-02-28 19:25:27 -05004031 for (i = 0; i < psli->num_rings; i++) {
4032 pring = &psli->ring[i];
dea31012005-04-17 16:05:31 -05004033 pring->flag = 0;
James Smart7e56aa22012-08-03 12:35:34 -04004034 pring->sli.sli3.rspidx = 0;
4035 pring->sli.sli3.next_cmdidx = 0;
4036 pring->sli.sli3.local_getidx = 0;
4037 pring->sli.sli3.cmdidx = 0;
dea31012005-04-17 16:05:31 -05004038 pring->missbufcnt = 0;
4039 }
dea31012005-04-17 16:05:31 -05004040
James Smart2e0fef82007-06-17 19:56:36 -05004041 phba->link_state = LPFC_WARM_START;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004042 return 0;
4043}
4044
James Smarte59058c2008-08-24 21:49:00 -04004045/**
James Smartda0436e2009-05-22 14:51:39 -04004046 * lpfc_sli4_brdreset - Reset a sli-4 HBA
4047 * @phba: Pointer to HBA context object.
4048 *
4049 * This function resets a SLI4 HBA. This function disables PCI layer parity
4050 * checking during resets the device. The caller is not required to hold
4051 * any locks.
4052 *
4053 * This function returns 0 always.
4054 **/
4055int
4056lpfc_sli4_brdreset(struct lpfc_hba *phba)
4057{
4058 struct lpfc_sli *psli = &phba->sli;
4059 uint16_t cfg_value;
James Smart02936352014-04-04 13:52:12 -04004060 int rc = 0;
James Smartda0436e2009-05-22 14:51:39 -04004061
4062 /* Reset HBA */
4063 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smart02936352014-04-04 13:52:12 -04004064 "0295 Reset HBA Data: x%x x%x x%x\n",
4065 phba->pport->port_state, psli->sli_flag,
4066 phba->hba_flag);
James Smartda0436e2009-05-22 14:51:39 -04004067
4068 /* perform board reset */
4069 phba->fc_eventTag = 0;
James Smart4d9ab992009-10-02 15:16:39 -04004070 phba->link_events = 0;
James Smartda0436e2009-05-22 14:51:39 -04004071 phba->pport->fc_myDID = 0;
4072 phba->pport->fc_prevDID = 0;
4073
James Smartda0436e2009-05-22 14:51:39 -04004074 spin_lock_irq(&phba->hbalock);
4075 psli->sli_flag &= ~(LPFC_PROCESS_LA);
4076 phba->fcf.fcf_flag = 0;
James Smartda0436e2009-05-22 14:51:39 -04004077 spin_unlock_irq(&phba->hbalock);
4078
James Smart02936352014-04-04 13:52:12 -04004079 /* SLI4 INTF 2: if FW dump is being taken skip INIT_PORT */
4080 if (phba->hba_flag & HBA_FW_DUMP_OP) {
4081 phba->hba_flag &= ~HBA_FW_DUMP_OP;
4082 return rc;
4083 }
4084
James Smartda0436e2009-05-22 14:51:39 -04004085 /* Now physically reset the device */
4086 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4087 "0389 Performing PCI function reset!\n");
James Smartbe858b62010-12-15 17:57:20 -05004088
4089 /* Turn off parity checking and serr during the physical reset */
4090 pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
4091 pci_write_config_word(phba->pcidev, PCI_COMMAND, (cfg_value &
4092 ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
4093
James Smart88318812012-09-29 11:29:29 -04004094 /* Perform FCoE PCI function reset before freeing queue memory */
James Smart27b01b82012-05-09 21:19:44 -04004095 rc = lpfc_pci_function_reset(phba);
James Smart88318812012-09-29 11:29:29 -04004096 lpfc_sli4_queue_destroy(phba);
James Smartda0436e2009-05-22 14:51:39 -04004097
James Smartbe858b62010-12-15 17:57:20 -05004098 /* Restore PCI cmd register */
4099 pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
4100
James Smart27b01b82012-05-09 21:19:44 -04004101 return rc;
James Smartda0436e2009-05-22 14:51:39 -04004102}
4103
4104/**
4105 * lpfc_sli_brdrestart_s3 - Restart a sli-3 hba
James Smarte59058c2008-08-24 21:49:00 -04004106 * @phba: Pointer to HBA context object.
4107 *
4108 * This function is called in the SLI initialization code path to
4109 * restart the HBA. The caller is not required to hold any lock.
4110 * This function writes MBX_RESTART mailbox command to the SLIM and
4111 * resets the HBA. At the end of the function, it calls lpfc_hba_down_post
4112 * function to free any pending commands. The function enables
4113 * POST only during the first initialization. The function returns zero.
4114 * The function does not guarantee completion of MBX_RESTART mailbox
4115 * command before the return of this function.
4116 **/
James Smartda0436e2009-05-22 14:51:39 -04004117static int
4118lpfc_sli_brdrestart_s3(struct lpfc_hba *phba)
Jamie Wellnitz41415862006-02-28 19:25:27 -05004119{
4120 MAILBOX_t *mb;
4121 struct lpfc_sli *psli;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004122 volatile uint32_t word0;
4123 void __iomem *to_slim;
James Smart0d878412009-10-02 15:16:56 -04004124 uint32_t hba_aer_enabled;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004125
James Smart2e0fef82007-06-17 19:56:36 -05004126 spin_lock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004127
James Smart0d878412009-10-02 15:16:56 -04004128 /* Take PCIe device Advanced Error Reporting (AER) state */
4129 hba_aer_enabled = phba->hba_flag & HBA_AER_ENABLED;
4130
Jamie Wellnitz41415862006-02-28 19:25:27 -05004131 psli = &phba->sli;
4132
4133 /* Restart HBA */
4134 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04004135 "0337 Restart HBA Data: x%x x%x\n",
James Smart2e0fef82007-06-17 19:56:36 -05004136 phba->pport->port_state, psli->sli_flag);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004137
4138 word0 = 0;
4139 mb = (MAILBOX_t *) &word0;
4140 mb->mbxCommand = MBX_RESTART;
4141 mb->mbxHc = 1;
4142
James Smart92908312006-03-07 15:04:13 -05004143 lpfc_reset_barrier(phba);
4144
Jamie Wellnitz41415862006-02-28 19:25:27 -05004145 to_slim = phba->MBslimaddr;
4146 writel(*(uint32_t *) mb, to_slim);
4147 readl(to_slim); /* flush */
4148
4149 /* Only skip post after fc_ffinit is completed */
James Smarteaf15d52008-12-04 22:39:29 -05004150 if (phba->pport->port_state)
Jamie Wellnitz41415862006-02-28 19:25:27 -05004151 word0 = 1; /* This is really setting up word1 */
James Smarteaf15d52008-12-04 22:39:29 -05004152 else
Jamie Wellnitz41415862006-02-28 19:25:27 -05004153 word0 = 0; /* This is really setting up word1 */
James Smart65a29c12006-07-06 15:50:50 -04004154 to_slim = phba->MBslimaddr + sizeof (uint32_t);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004155 writel(*(uint32_t *) mb, to_slim);
4156 readl(to_slim); /* flush */
4157
4158 lpfc_sli_brdreset(phba);
James Smart2e0fef82007-06-17 19:56:36 -05004159 phba->pport->stopped = 0;
4160 phba->link_state = LPFC_INIT_START;
James Smartda0436e2009-05-22 14:51:39 -04004161 phba->hba_flag = 0;
James Smart2e0fef82007-06-17 19:56:36 -05004162 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004163
James Smart64ba8812006-08-02 15:24:34 -04004164 memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
4165 psli->stats_start = get_seconds();
4166
James Smarteaf15d52008-12-04 22:39:29 -05004167 /* Give the INITFF and Post time to settle. */
4168 mdelay(100);
dea31012005-04-17 16:05:31 -05004169
James Smart0d878412009-10-02 15:16:56 -04004170 /* Reset HBA AER if it was enabled, note hba_flag was reset above */
4171 if (hba_aer_enabled)
4172 pci_disable_pcie_error_reporting(phba->pcidev);
4173
Jamie Wellnitz41415862006-02-28 19:25:27 -05004174 lpfc_hba_down_post(phba);
dea31012005-04-17 16:05:31 -05004175
4176 return 0;
4177}
4178
James Smarte59058c2008-08-24 21:49:00 -04004179/**
James Smartda0436e2009-05-22 14:51:39 -04004180 * lpfc_sli_brdrestart_s4 - Restart the sli-4 hba
4181 * @phba: Pointer to HBA context object.
4182 *
4183 * This function is called in the SLI initialization code path to restart
4184 * a SLI4 HBA. The caller is not required to hold any lock.
4185 * At the end of the function, it calls lpfc_hba_down_post function to
4186 * free any pending commands.
4187 **/
4188static int
4189lpfc_sli_brdrestart_s4(struct lpfc_hba *phba)
4190{
4191 struct lpfc_sli *psli = &phba->sli;
James Smart75baf692010-06-08 18:31:21 -04004192 uint32_t hba_aer_enabled;
James Smart27b01b82012-05-09 21:19:44 -04004193 int rc;
James Smartda0436e2009-05-22 14:51:39 -04004194
4195 /* Restart HBA */
4196 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4197 "0296 Restart HBA Data: x%x x%x\n",
4198 phba->pport->port_state, psli->sli_flag);
4199
James Smart75baf692010-06-08 18:31:21 -04004200 /* Take PCIe device Advanced Error Reporting (AER) state */
4201 hba_aer_enabled = phba->hba_flag & HBA_AER_ENABLED;
4202
James Smart27b01b82012-05-09 21:19:44 -04004203 rc = lpfc_sli4_brdreset(phba);
James Smartda0436e2009-05-22 14:51:39 -04004204
4205 spin_lock_irq(&phba->hbalock);
4206 phba->pport->stopped = 0;
4207 phba->link_state = LPFC_INIT_START;
4208 phba->hba_flag = 0;
4209 spin_unlock_irq(&phba->hbalock);
4210
4211 memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
4212 psli->stats_start = get_seconds();
4213
James Smart75baf692010-06-08 18:31:21 -04004214 /* Reset HBA AER if it was enabled, note hba_flag was reset above */
4215 if (hba_aer_enabled)
4216 pci_disable_pcie_error_reporting(phba->pcidev);
4217
James Smartda0436e2009-05-22 14:51:39 -04004218 lpfc_hba_down_post(phba);
4219
James Smart27b01b82012-05-09 21:19:44 -04004220 return rc;
James Smartda0436e2009-05-22 14:51:39 -04004221}
4222
4223/**
4224 * lpfc_sli_brdrestart - Wrapper func for restarting hba
4225 * @phba: Pointer to HBA context object.
4226 *
4227 * This routine wraps the actual SLI3 or SLI4 hba restart routine from the
4228 * API jump table function pointer from the lpfc_hba struct.
4229**/
4230int
4231lpfc_sli_brdrestart(struct lpfc_hba *phba)
4232{
4233 return phba->lpfc_sli_brdrestart(phba);
4234}
4235
4236/**
James Smart3621a712009-04-06 18:47:14 -04004237 * lpfc_sli_chipset_init - Wait for the restart of the HBA after a restart
James Smarte59058c2008-08-24 21:49:00 -04004238 * @phba: Pointer to HBA context object.
4239 *
4240 * This function is called after a HBA restart to wait for successful
4241 * restart of the HBA. Successful restart of the HBA is indicated by
4242 * HS_FFRDY and HS_MBRDY bits. If the HBA fails to restart even after 15
4243 * iteration, the function will restart the HBA again. The function returns
4244 * zero if HBA successfully restarted else returns negative error code.
4245 **/
dea31012005-04-17 16:05:31 -05004246static int
4247lpfc_sli_chipset_init(struct lpfc_hba *phba)
4248{
4249 uint32_t status, i = 0;
4250
4251 /* Read the HBA Host Status Register */
James Smart9940b972011-03-11 16:06:12 -05004252 if (lpfc_readl(phba->HSregaddr, &status))
4253 return -EIO;
dea31012005-04-17 16:05:31 -05004254
4255 /* Check status register to see what current state is */
4256 i = 0;
4257 while ((status & (HS_FFRDY | HS_MBRDY)) != (HS_FFRDY | HS_MBRDY)) {
4258
James Smartdcf2a4e2010-09-29 11:18:53 -04004259 /* Check every 10ms for 10 retries, then every 100ms for 90
4260 * retries, then every 1 sec for 50 retires for a total of
4261 * ~60 seconds before reset the board again and check every
4262 * 1 sec for 50 retries. The up to 60 seconds before the
4263 * board ready is required by the Falcon FIPS zeroization
4264 * complete, and any reset the board in between shall cause
4265 * restart of zeroization, further delay the board ready.
dea31012005-04-17 16:05:31 -05004266 */
James Smartdcf2a4e2010-09-29 11:18:53 -04004267 if (i++ >= 200) {
dea31012005-04-17 16:05:31 -05004268 /* Adapter failed to init, timeout, status reg
4269 <status> */
James Smarted957682007-06-17 19:56:37 -05004270 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004271 "0436 Adapter failed to init, "
James Smart09372822008-01-11 01:52:54 -05004272 "timeout, status reg x%x, "
4273 "FW Data: A8 x%x AC x%x\n", status,
4274 readl(phba->MBslimaddr + 0xa8),
4275 readl(phba->MBslimaddr + 0xac));
James Smart2e0fef82007-06-17 19:56:36 -05004276 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004277 return -ETIMEDOUT;
4278 }
4279
4280 /* Check to see if any errors occurred during init */
4281 if (status & HS_FFERM) {
4282 /* ERROR: During chipset initialization */
4283 /* Adapter failed to init, chipset, status reg
4284 <status> */
James Smarted957682007-06-17 19:56:37 -05004285 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004286 "0437 Adapter failed to init, "
James Smart09372822008-01-11 01:52:54 -05004287 "chipset, status reg x%x, "
4288 "FW Data: A8 x%x AC x%x\n", status,
4289 readl(phba->MBslimaddr + 0xa8),
4290 readl(phba->MBslimaddr + 0xac));
James Smart2e0fef82007-06-17 19:56:36 -05004291 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004292 return -EIO;
4293 }
4294
James Smartdcf2a4e2010-09-29 11:18:53 -04004295 if (i <= 10)
dea31012005-04-17 16:05:31 -05004296 msleep(10);
James Smartdcf2a4e2010-09-29 11:18:53 -04004297 else if (i <= 100)
4298 msleep(100);
4299 else
4300 msleep(1000);
dea31012005-04-17 16:05:31 -05004301
James Smartdcf2a4e2010-09-29 11:18:53 -04004302 if (i == 150) {
4303 /* Do post */
James Smart92d7f7b2007-06-17 19:56:38 -05004304 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004305 lpfc_sli_brdrestart(phba);
dea31012005-04-17 16:05:31 -05004306 }
4307 /* Read the HBA Host Status Register */
James Smart9940b972011-03-11 16:06:12 -05004308 if (lpfc_readl(phba->HSregaddr, &status))
4309 return -EIO;
dea31012005-04-17 16:05:31 -05004310 }
4311
4312 /* Check to see if any errors occurred during init */
4313 if (status & HS_FFERM) {
4314 /* ERROR: During chipset initialization */
4315 /* Adapter failed to init, chipset, status reg <status> */
James Smarted957682007-06-17 19:56:37 -05004316 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004317 "0438 Adapter failed to init, chipset, "
James Smart09372822008-01-11 01:52:54 -05004318 "status reg x%x, "
4319 "FW Data: A8 x%x AC x%x\n", status,
4320 readl(phba->MBslimaddr + 0xa8),
4321 readl(phba->MBslimaddr + 0xac));
James Smart2e0fef82007-06-17 19:56:36 -05004322 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004323 return -EIO;
4324 }
4325
4326 /* Clear all interrupt enable conditions */
4327 writel(0, phba->HCregaddr);
4328 readl(phba->HCregaddr); /* flush */
4329
4330 /* setup host attn register */
4331 writel(0xffffffff, phba->HAregaddr);
4332 readl(phba->HAregaddr); /* flush */
4333 return 0;
4334}
4335
James Smarte59058c2008-08-24 21:49:00 -04004336/**
James Smart3621a712009-04-06 18:47:14 -04004337 * lpfc_sli_hbq_count - Get the number of HBQs to be configured
James Smarte59058c2008-08-24 21:49:00 -04004338 *
4339 * This function calculates and returns the number of HBQs required to be
4340 * configured.
4341 **/
James Smart78b2d852007-08-02 11:10:21 -04004342int
James Smarted957682007-06-17 19:56:37 -05004343lpfc_sli_hbq_count(void)
4344{
James Smart92d7f7b2007-06-17 19:56:38 -05004345 return ARRAY_SIZE(lpfc_hbq_defs);
James Smarted957682007-06-17 19:56:37 -05004346}
4347
James Smarte59058c2008-08-24 21:49:00 -04004348/**
James Smart3621a712009-04-06 18:47:14 -04004349 * lpfc_sli_hbq_entry_count - Calculate total number of hbq entries
James Smarte59058c2008-08-24 21:49:00 -04004350 *
4351 * This function adds the number of hbq entries in every HBQ to get
4352 * the total number of hbq entries required for the HBA and returns
4353 * the total count.
4354 **/
James Smarted957682007-06-17 19:56:37 -05004355static int
4356lpfc_sli_hbq_entry_count(void)
4357{
4358 int hbq_count = lpfc_sli_hbq_count();
4359 int count = 0;
4360 int i;
4361
4362 for (i = 0; i < hbq_count; ++i)
James Smart92d7f7b2007-06-17 19:56:38 -05004363 count += lpfc_hbq_defs[i]->entry_count;
James Smarted957682007-06-17 19:56:37 -05004364 return count;
4365}
4366
James Smarte59058c2008-08-24 21:49:00 -04004367/**
James Smart3621a712009-04-06 18:47:14 -04004368 * lpfc_sli_hbq_size - Calculate memory required for all hbq entries
James Smarte59058c2008-08-24 21:49:00 -04004369 *
4370 * This function calculates amount of memory required for all hbq entries
4371 * to be configured and returns the total memory required.
4372 **/
dea31012005-04-17 16:05:31 -05004373int
James Smarted957682007-06-17 19:56:37 -05004374lpfc_sli_hbq_size(void)
4375{
4376 return lpfc_sli_hbq_entry_count() * sizeof(struct lpfc_hbq_entry);
4377}
4378
James Smarte59058c2008-08-24 21:49:00 -04004379/**
James Smart3621a712009-04-06 18:47:14 -04004380 * lpfc_sli_hbq_setup - configure and initialize HBQs
James Smarte59058c2008-08-24 21:49:00 -04004381 * @phba: Pointer to HBA context object.
4382 *
4383 * This function is called during the SLI initialization to configure
4384 * all the HBQs and post buffers to the HBQ. The caller is not
4385 * required to hold any locks. This function will return zero if successful
4386 * else it will return negative error code.
4387 **/
James Smarted957682007-06-17 19:56:37 -05004388static int
4389lpfc_sli_hbq_setup(struct lpfc_hba *phba)
4390{
4391 int hbq_count = lpfc_sli_hbq_count();
4392 LPFC_MBOXQ_t *pmb;
4393 MAILBOX_t *pmbox;
4394 uint32_t hbqno;
4395 uint32_t hbq_entry_index;
James Smarted957682007-06-17 19:56:37 -05004396
James Smart92d7f7b2007-06-17 19:56:38 -05004397 /* Get a Mailbox buffer to setup mailbox
4398 * commands for HBA initialization
4399 */
James Smarted957682007-06-17 19:56:37 -05004400 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4401
4402 if (!pmb)
4403 return -ENOMEM;
4404
James Smart04c68492009-05-22 14:52:52 -04004405 pmbox = &pmb->u.mb;
James Smarted957682007-06-17 19:56:37 -05004406
4407 /* Initialize the struct lpfc_sli_hbq structure for each hbq */
4408 phba->link_state = LPFC_INIT_MBX_CMDS;
James Smart3163f722008-02-08 18:50:25 -05004409 phba->hbq_in_use = 1;
James Smarted957682007-06-17 19:56:37 -05004410
4411 hbq_entry_index = 0;
4412 for (hbqno = 0; hbqno < hbq_count; ++hbqno) {
4413 phba->hbqs[hbqno].next_hbqPutIdx = 0;
4414 phba->hbqs[hbqno].hbqPutIdx = 0;
4415 phba->hbqs[hbqno].local_hbqGetIdx = 0;
4416 phba->hbqs[hbqno].entry_count =
James Smart92d7f7b2007-06-17 19:56:38 -05004417 lpfc_hbq_defs[hbqno]->entry_count;
James Smart51ef4c22007-08-02 11:10:31 -04004418 lpfc_config_hbq(phba, hbqno, lpfc_hbq_defs[hbqno],
4419 hbq_entry_index, pmb);
James Smarted957682007-06-17 19:56:37 -05004420 hbq_entry_index += phba->hbqs[hbqno].entry_count;
4421
4422 if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
4423 /* Adapter failed to init, mbxCmd <cmd> CFG_RING,
4424 mbxStatus <status>, ring <num> */
4425
4426 lpfc_printf_log(phba, KERN_ERR,
James Smart92d7f7b2007-06-17 19:56:38 -05004427 LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04004428 "1805 Adapter failed to init. "
James Smarted957682007-06-17 19:56:37 -05004429 "Data: x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04004430 pmbox->mbxCommand,
James Smarted957682007-06-17 19:56:37 -05004431 pmbox->mbxStatus, hbqno);
4432
4433 phba->link_state = LPFC_HBA_ERROR;
4434 mempool_free(pmb, phba->mbox_mem_pool);
James Smart6e7288d2010-06-07 15:23:35 -04004435 return -ENXIO;
James Smarted957682007-06-17 19:56:37 -05004436 }
4437 }
4438 phba->hbq_count = hbq_count;
4439
James Smarted957682007-06-17 19:56:37 -05004440 mempool_free(pmb, phba->mbox_mem_pool);
4441
James Smart92d7f7b2007-06-17 19:56:38 -05004442 /* Initially populate or replenish the HBQs */
James Smartd7c255b2008-08-24 21:50:00 -04004443 for (hbqno = 0; hbqno < hbq_count; ++hbqno)
4444 lpfc_sli_hbqbuf_init_hbqs(phba, hbqno);
James Smarted957682007-06-17 19:56:37 -05004445 return 0;
4446}
4447
James Smarte59058c2008-08-24 21:49:00 -04004448/**
James Smart4f774512009-05-22 14:52:35 -04004449 * lpfc_sli4_rb_setup - Initialize and post RBs to HBA
4450 * @phba: Pointer to HBA context object.
4451 *
4452 * This function is called during the SLI initialization to configure
4453 * all the HBQs and post buffers to the HBQ. The caller is not
4454 * required to hold any locks. This function will return zero if successful
4455 * else it will return negative error code.
4456 **/
4457static int
4458lpfc_sli4_rb_setup(struct lpfc_hba *phba)
4459{
4460 phba->hbq_in_use = 1;
4461 phba->hbqs[0].entry_count = lpfc_hbq_defs[0]->entry_count;
4462 phba->hbq_count = 1;
4463 /* Initially populate or replenish the HBQs */
4464 lpfc_sli_hbqbuf_init_hbqs(phba, 0);
4465 return 0;
4466}
4467
4468/**
James Smart3621a712009-04-06 18:47:14 -04004469 * lpfc_sli_config_port - Issue config port mailbox command
James Smarte59058c2008-08-24 21:49:00 -04004470 * @phba: Pointer to HBA context object.
4471 * @sli_mode: sli mode - 2/3
4472 *
4473 * This function is called by the sli intialization code path
4474 * to issue config_port mailbox command. This function restarts the
4475 * HBA firmware and issues a config_port mailbox command to configure
4476 * the SLI interface in the sli mode specified by sli_mode
4477 * variable. The caller is not required to hold any locks.
4478 * The function returns 0 if successful, else returns negative error
4479 * code.
4480 **/
James Smart93996272008-08-24 21:50:30 -04004481int
4482lpfc_sli_config_port(struct lpfc_hba *phba, int sli_mode)
dea31012005-04-17 16:05:31 -05004483{
4484 LPFC_MBOXQ_t *pmb;
4485 uint32_t resetcount = 0, rc = 0, done = 0;
4486
4487 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4488 if (!pmb) {
James Smart2e0fef82007-06-17 19:56:36 -05004489 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004490 return -ENOMEM;
4491 }
4492
James Smarted957682007-06-17 19:56:37 -05004493 phba->sli_rev = sli_mode;
dea31012005-04-17 16:05:31 -05004494 while (resetcount < 2 && !done) {
James Smart2e0fef82007-06-17 19:56:36 -05004495 spin_lock_irq(&phba->hbalock);
James Smart1c067a42006-08-01 07:33:52 -04004496 phba->sli.sli_flag |= LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05004497 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -05004498 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004499 lpfc_sli_brdrestart(phba);
dea31012005-04-17 16:05:31 -05004500 rc = lpfc_sli_chipset_init(phba);
4501 if (rc)
4502 break;
4503
James Smart2e0fef82007-06-17 19:56:36 -05004504 spin_lock_irq(&phba->hbalock);
James Smart1c067a42006-08-01 07:33:52 -04004505 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05004506 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004507 resetcount++;
4508
James Smarted957682007-06-17 19:56:37 -05004509 /* Call pre CONFIG_PORT mailbox command initialization. A
4510 * value of 0 means the call was successful. Any other
4511 * nonzero value is a failure, but if ERESTART is returned,
4512 * the driver may reset the HBA and try again.
4513 */
dea31012005-04-17 16:05:31 -05004514 rc = lpfc_config_port_prep(phba);
4515 if (rc == -ERESTART) {
James Smarted957682007-06-17 19:56:37 -05004516 phba->link_state = LPFC_LINK_UNKNOWN;
dea31012005-04-17 16:05:31 -05004517 continue;
James Smart34b02dc2008-08-24 21:49:55 -04004518 } else if (rc)
dea31012005-04-17 16:05:31 -05004519 break;
James Smart6d368e52011-05-24 11:44:12 -04004520
James Smart2e0fef82007-06-17 19:56:36 -05004521 phba->link_state = LPFC_INIT_MBX_CMDS;
dea31012005-04-17 16:05:31 -05004522 lpfc_config_port(phba, pmb);
4523 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
James Smart34b02dc2008-08-24 21:49:55 -04004524 phba->sli3_options &= ~(LPFC_SLI3_NPIV_ENABLED |
4525 LPFC_SLI3_HBQ_ENABLED |
4526 LPFC_SLI3_CRP_ENABLED |
James Smartbc739052010-08-04 16:11:18 -04004527 LPFC_SLI3_BG_ENABLED |
4528 LPFC_SLI3_DSS_ENABLED);
James Smarted957682007-06-17 19:56:37 -05004529 if (rc != MBX_SUCCESS) {
dea31012005-04-17 16:05:31 -05004530 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004531 "0442 Adapter failed to init, mbxCmd x%x "
James Smart92d7f7b2007-06-17 19:56:38 -05004532 "CONFIG_PORT, mbxStatus x%x Data: x%x\n",
James Smart04c68492009-05-22 14:52:52 -04004533 pmb->u.mb.mbxCommand, pmb->u.mb.mbxStatus, 0);
James Smart2e0fef82007-06-17 19:56:36 -05004534 spin_lock_irq(&phba->hbalock);
James Smart04c68492009-05-22 14:52:52 -04004535 phba->sli.sli_flag &= ~LPFC_SLI_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05004536 spin_unlock_irq(&phba->hbalock);
4537 rc = -ENXIO;
James Smart04c68492009-05-22 14:52:52 -04004538 } else {
4539 /* Allow asynchronous mailbox command to go through */
4540 spin_lock_irq(&phba->hbalock);
4541 phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
4542 spin_unlock_irq(&phba->hbalock);
James Smarted957682007-06-17 19:56:37 -05004543 done = 1;
James Smartcb69f7d2011-12-13 13:21:57 -05004544
4545 if ((pmb->u.mb.un.varCfgPort.casabt == 1) &&
4546 (pmb->u.mb.un.varCfgPort.gasabt == 0))
4547 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
4548 "3110 Port did not grant ASABT\n");
James Smart04c68492009-05-22 14:52:52 -04004549 }
dea31012005-04-17 16:05:31 -05004550 }
James Smarted957682007-06-17 19:56:37 -05004551 if (!done) {
4552 rc = -EINVAL;
4553 goto do_prep_failed;
4554 }
James Smart04c68492009-05-22 14:52:52 -04004555 if (pmb->u.mb.un.varCfgPort.sli_mode == 3) {
4556 if (!pmb->u.mb.un.varCfgPort.cMA) {
James Smart34b02dc2008-08-24 21:49:55 -04004557 rc = -ENXIO;
4558 goto do_prep_failed;
4559 }
James Smart04c68492009-05-22 14:52:52 -04004560 if (phba->max_vpi && pmb->u.mb.un.varCfgPort.gmv) {
James Smart34b02dc2008-08-24 21:49:55 -04004561 phba->sli3_options |= LPFC_SLI3_NPIV_ENABLED;
James Smart04c68492009-05-22 14:52:52 -04004562 phba->max_vpi = pmb->u.mb.un.varCfgPort.max_vpi;
4563 phba->max_vports = (phba->max_vpi > phba->max_vports) ?
4564 phba->max_vpi : phba->max_vports;
4565
James Smart34b02dc2008-08-24 21:49:55 -04004566 } else
4567 phba->max_vpi = 0;
James Smartbc739052010-08-04 16:11:18 -04004568 phba->fips_level = 0;
4569 phba->fips_spec_rev = 0;
4570 if (pmb->u.mb.un.varCfgPort.gdss) {
James Smart04c68492009-05-22 14:52:52 -04004571 phba->sli3_options |= LPFC_SLI3_DSS_ENABLED;
James Smartbc739052010-08-04 16:11:18 -04004572 phba->fips_level = pmb->u.mb.un.varCfgPort.fips_level;
4573 phba->fips_spec_rev = pmb->u.mb.un.varCfgPort.fips_rev;
4574 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4575 "2850 Security Crypto Active. FIPS x%d "
4576 "(Spec Rev: x%d)",
4577 phba->fips_level, phba->fips_spec_rev);
4578 }
4579 if (pmb->u.mb.un.varCfgPort.sec_err) {
4580 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4581 "2856 Config Port Security Crypto "
4582 "Error: x%x ",
4583 pmb->u.mb.un.varCfgPort.sec_err);
4584 }
James Smart04c68492009-05-22 14:52:52 -04004585 if (pmb->u.mb.un.varCfgPort.gerbm)
James Smart34b02dc2008-08-24 21:49:55 -04004586 phba->sli3_options |= LPFC_SLI3_HBQ_ENABLED;
James Smart04c68492009-05-22 14:52:52 -04004587 if (pmb->u.mb.un.varCfgPort.gcrp)
James Smart34b02dc2008-08-24 21:49:55 -04004588 phba->sli3_options |= LPFC_SLI3_CRP_ENABLED;
James Smart6e7288d2010-06-07 15:23:35 -04004589
4590 phba->hbq_get = phba->mbox->us.s3_pgp.hbq_get;
4591 phba->port_gp = phba->mbox->us.s3_pgp.port;
James Smarte2a0a9d2008-12-04 22:40:02 -05004592
4593 if (phba->cfg_enable_bg) {
James Smart04c68492009-05-22 14:52:52 -04004594 if (pmb->u.mb.un.varCfgPort.gbg)
James Smarte2a0a9d2008-12-04 22:40:02 -05004595 phba->sli3_options |= LPFC_SLI3_BG_ENABLED;
4596 else
4597 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4598 "0443 Adapter did not grant "
4599 "BlockGuard\n");
4600 }
James Smart34b02dc2008-08-24 21:49:55 -04004601 } else {
James Smart8f34f4c2008-12-04 22:39:23 -05004602 phba->hbq_get = NULL;
James Smart34b02dc2008-08-24 21:49:55 -04004603 phba->port_gp = phba->mbox->us.s2.port;
James Smartd7c255b2008-08-24 21:50:00 -04004604 phba->max_vpi = 0;
James Smarted957682007-06-17 19:56:37 -05004605 }
James Smart92d7f7b2007-06-17 19:56:38 -05004606do_prep_failed:
James Smarted957682007-06-17 19:56:37 -05004607 mempool_free(pmb, phba->mbox_mem_pool);
4608 return rc;
4609}
4610
James Smarte59058c2008-08-24 21:49:00 -04004611
4612/**
James Smart3621a712009-04-06 18:47:14 -04004613 * lpfc_sli_hba_setup - SLI intialization function
James Smarte59058c2008-08-24 21:49:00 -04004614 * @phba: Pointer to HBA context object.
4615 *
4616 * This function is the main SLI intialization function. This function
4617 * is called by the HBA intialization code, HBA reset code and HBA
4618 * error attention handler code. Caller is not required to hold any
4619 * locks. This function issues config_port mailbox command to configure
4620 * the SLI, setup iocb rings and HBQ rings. In the end the function
4621 * calls the config_port_post function to issue init_link mailbox
4622 * command and to start the discovery. The function will return zero
4623 * if successful, else it will return negative error code.
4624 **/
James Smarted957682007-06-17 19:56:37 -05004625int
4626lpfc_sli_hba_setup(struct lpfc_hba *phba)
4627{
4628 uint32_t rc;
James Smart6d368e52011-05-24 11:44:12 -04004629 int mode = 3, i;
4630 int longs;
James Smarted957682007-06-17 19:56:37 -05004631
4632 switch (lpfc_sli_mode) {
4633 case 2:
James Smart78b2d852007-08-02 11:10:21 -04004634 if (phba->cfg_enable_npiv) {
James Smart92d7f7b2007-06-17 19:56:38 -05004635 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04004636 "1824 NPIV enabled: Override lpfc_sli_mode "
James Smart92d7f7b2007-06-17 19:56:38 -05004637 "parameter (%d) to auto (0).\n",
James Smarte8b62012007-08-02 11:10:09 -04004638 lpfc_sli_mode);
James Smart92d7f7b2007-06-17 19:56:38 -05004639 break;
4640 }
James Smarted957682007-06-17 19:56:37 -05004641 mode = 2;
4642 break;
4643 case 0:
4644 case 3:
4645 break;
4646 default:
James Smart92d7f7b2007-06-17 19:56:38 -05004647 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04004648 "1819 Unrecognized lpfc_sli_mode "
4649 "parameter: %d.\n", lpfc_sli_mode);
James Smarted957682007-06-17 19:56:37 -05004650
4651 break;
4652 }
4653
James Smart93996272008-08-24 21:50:30 -04004654 rc = lpfc_sli_config_port(phba, mode);
4655
James Smarted957682007-06-17 19:56:37 -05004656 if (rc && lpfc_sli_mode == 3)
James Smart92d7f7b2007-06-17 19:56:38 -05004657 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04004658 "1820 Unable to select SLI-3. "
4659 "Not supported by adapter.\n");
James Smarted957682007-06-17 19:56:37 -05004660 if (rc && mode != 2)
James Smart93996272008-08-24 21:50:30 -04004661 rc = lpfc_sli_config_port(phba, 2);
James Smarted957682007-06-17 19:56:37 -05004662 if (rc)
dea31012005-04-17 16:05:31 -05004663 goto lpfc_sli_hba_setup_error;
4664
James Smart0d878412009-10-02 15:16:56 -04004665 /* Enable PCIe device Advanced Error Reporting (AER) if configured */
4666 if (phba->cfg_aer_support == 1 && !(phba->hba_flag & HBA_AER_ENABLED)) {
4667 rc = pci_enable_pcie_error_reporting(phba->pcidev);
4668 if (!rc) {
4669 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4670 "2709 This device supports "
4671 "Advanced Error Reporting (AER)\n");
4672 spin_lock_irq(&phba->hbalock);
4673 phba->hba_flag |= HBA_AER_ENABLED;
4674 spin_unlock_irq(&phba->hbalock);
4675 } else {
4676 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4677 "2708 This device does not support "
James Smartb069d7e2013-05-31 17:04:36 -04004678 "Advanced Error Reporting (AER): %d\n",
4679 rc);
James Smart0d878412009-10-02 15:16:56 -04004680 phba->cfg_aer_support = 0;
4681 }
4682 }
4683
James Smarted957682007-06-17 19:56:37 -05004684 if (phba->sli_rev == 3) {
4685 phba->iocb_cmd_size = SLI3_IOCB_CMD_SIZE;
4686 phba->iocb_rsp_size = SLI3_IOCB_RSP_SIZE;
James Smarted957682007-06-17 19:56:37 -05004687 } else {
4688 phba->iocb_cmd_size = SLI2_IOCB_CMD_SIZE;
4689 phba->iocb_rsp_size = SLI2_IOCB_RSP_SIZE;
James Smart92d7f7b2007-06-17 19:56:38 -05004690 phba->sli3_options = 0;
James Smarted957682007-06-17 19:56:37 -05004691 }
4692
4693 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004694 "0444 Firmware in SLI %x mode. Max_vpi %d\n",
4695 phba->sli_rev, phba->max_vpi);
James Smarted957682007-06-17 19:56:37 -05004696 rc = lpfc_sli_ring_map(phba);
dea31012005-04-17 16:05:31 -05004697
4698 if (rc)
4699 goto lpfc_sli_hba_setup_error;
4700
James Smart6d368e52011-05-24 11:44:12 -04004701 /* Initialize VPIs. */
4702 if (phba->sli_rev == LPFC_SLI_REV3) {
4703 /*
4704 * The VPI bitmask and physical ID array are allocated
4705 * and initialized once only - at driver load. A port
4706 * reset doesn't need to reinitialize this memory.
4707 */
4708 if ((phba->vpi_bmask == NULL) && (phba->vpi_ids == NULL)) {
4709 longs = (phba->max_vpi + BITS_PER_LONG) / BITS_PER_LONG;
4710 phba->vpi_bmask = kzalloc(longs * sizeof(unsigned long),
4711 GFP_KERNEL);
4712 if (!phba->vpi_bmask) {
4713 rc = -ENOMEM;
4714 goto lpfc_sli_hba_setup_error;
4715 }
4716
4717 phba->vpi_ids = kzalloc(
4718 (phba->max_vpi+1) * sizeof(uint16_t),
4719 GFP_KERNEL);
4720 if (!phba->vpi_ids) {
4721 kfree(phba->vpi_bmask);
4722 rc = -ENOMEM;
4723 goto lpfc_sli_hba_setup_error;
4724 }
4725 for (i = 0; i < phba->max_vpi; i++)
4726 phba->vpi_ids[i] = i;
4727 }
4728 }
4729
James Smart93996272008-08-24 21:50:30 -04004730 /* Init HBQs */
James Smarted957682007-06-17 19:56:37 -05004731 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
4732 rc = lpfc_sli_hbq_setup(phba);
4733 if (rc)
4734 goto lpfc_sli_hba_setup_error;
4735 }
James Smart04c68492009-05-22 14:52:52 -04004736 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004737 phba->sli.sli_flag |= LPFC_PROCESS_LA;
James Smart04c68492009-05-22 14:52:52 -04004738 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004739
4740 rc = lpfc_config_port_post(phba);
4741 if (rc)
4742 goto lpfc_sli_hba_setup_error;
4743
James Smarted957682007-06-17 19:56:37 -05004744 return rc;
4745
James Smart92d7f7b2007-06-17 19:56:38 -05004746lpfc_sli_hba_setup_error:
James Smart2e0fef82007-06-17 19:56:36 -05004747 phba->link_state = LPFC_HBA_ERROR;
James Smarte40a02c2010-02-26 14:13:54 -05004748 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004749 "0445 Firmware initialization failed\n");
dea31012005-04-17 16:05:31 -05004750 return rc;
4751}
4752
James Smartda0436e2009-05-22 14:51:39 -04004753/**
4754 * lpfc_sli4_read_fcoe_params - Read fcoe params from conf region
4755 * @phba: Pointer to HBA context object.
4756 * @mboxq: mailbox pointer.
4757 * This function issue a dump mailbox command to read config region
4758 * 23 and parse the records in the region and populate driver
4759 * data structure.
4760 **/
4761static int
James Smartff78d8f2011-12-13 13:21:35 -05004762lpfc_sli4_read_fcoe_params(struct lpfc_hba *phba)
James Smartda0436e2009-05-22 14:51:39 -04004763{
James Smartff78d8f2011-12-13 13:21:35 -05004764 LPFC_MBOXQ_t *mboxq;
James Smartda0436e2009-05-22 14:51:39 -04004765 struct lpfc_dmabuf *mp;
4766 struct lpfc_mqe *mqe;
4767 uint32_t data_length;
4768 int rc;
4769
4770 /* Program the default value of vlan_id and fc_map */
4771 phba->valid_vlan = 0;
4772 phba->fc_map[0] = LPFC_FCOE_FCF_MAP0;
4773 phba->fc_map[1] = LPFC_FCOE_FCF_MAP1;
4774 phba->fc_map[2] = LPFC_FCOE_FCF_MAP2;
4775
James Smartff78d8f2011-12-13 13:21:35 -05004776 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4777 if (!mboxq)
James Smartda0436e2009-05-22 14:51:39 -04004778 return -ENOMEM;
4779
James Smartff78d8f2011-12-13 13:21:35 -05004780 mqe = &mboxq->u.mqe;
4781 if (lpfc_sli4_dump_cfg_rg23(phba, mboxq)) {
4782 rc = -ENOMEM;
4783 goto out_free_mboxq;
4784 }
4785
James Smartda0436e2009-05-22 14:51:39 -04004786 mp = (struct lpfc_dmabuf *) mboxq->context1;
4787 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4788
4789 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
4790 "(%d):2571 Mailbox cmd x%x Status x%x "
4791 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x "
4792 "x%x x%x x%x x%x x%x x%x x%x x%x x%x "
4793 "CQ: x%x x%x x%x x%x\n",
4794 mboxq->vport ? mboxq->vport->vpi : 0,
4795 bf_get(lpfc_mqe_command, mqe),
4796 bf_get(lpfc_mqe_status, mqe),
4797 mqe->un.mb_words[0], mqe->un.mb_words[1],
4798 mqe->un.mb_words[2], mqe->un.mb_words[3],
4799 mqe->un.mb_words[4], mqe->un.mb_words[5],
4800 mqe->un.mb_words[6], mqe->un.mb_words[7],
4801 mqe->un.mb_words[8], mqe->un.mb_words[9],
4802 mqe->un.mb_words[10], mqe->un.mb_words[11],
4803 mqe->un.mb_words[12], mqe->un.mb_words[13],
4804 mqe->un.mb_words[14], mqe->un.mb_words[15],
4805 mqe->un.mb_words[16], mqe->un.mb_words[50],
4806 mboxq->mcqe.word0,
4807 mboxq->mcqe.mcqe_tag0, mboxq->mcqe.mcqe_tag1,
4808 mboxq->mcqe.trailer);
4809
4810 if (rc) {
4811 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4812 kfree(mp);
James Smartff78d8f2011-12-13 13:21:35 -05004813 rc = -EIO;
4814 goto out_free_mboxq;
James Smartda0436e2009-05-22 14:51:39 -04004815 }
4816 data_length = mqe->un.mb_words[5];
James Smarta0c87cb2009-07-19 10:01:10 -04004817 if (data_length > DMP_RGN23_SIZE) {
James Smartd11e31d2009-06-10 17:23:06 -04004818 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4819 kfree(mp);
James Smartff78d8f2011-12-13 13:21:35 -05004820 rc = -EIO;
4821 goto out_free_mboxq;
James Smartd11e31d2009-06-10 17:23:06 -04004822 }
James Smartda0436e2009-05-22 14:51:39 -04004823
4824 lpfc_parse_fcoe_conf(phba, mp->virt, data_length);
4825 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4826 kfree(mp);
James Smartff78d8f2011-12-13 13:21:35 -05004827 rc = 0;
4828
4829out_free_mboxq:
4830 mempool_free(mboxq, phba->mbox_mem_pool);
4831 return rc;
James Smartda0436e2009-05-22 14:51:39 -04004832}
4833
4834/**
4835 * lpfc_sli4_read_rev - Issue READ_REV and collect vpd data
4836 * @phba: pointer to lpfc hba data structure.
4837 * @mboxq: pointer to the LPFC_MBOXQ_t structure.
4838 * @vpd: pointer to the memory to hold resulting port vpd data.
4839 * @vpd_size: On input, the number of bytes allocated to @vpd.
4840 * On output, the number of data bytes in @vpd.
4841 *
4842 * This routine executes a READ_REV SLI4 mailbox command. In
4843 * addition, this routine gets the port vpd data.
4844 *
4845 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004846 * 0 - successful
James Smartd439d282010-09-29 11:18:45 -04004847 * -ENOMEM - could not allocated memory.
James Smartda0436e2009-05-22 14:51:39 -04004848 **/
4849static int
4850lpfc_sli4_read_rev(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
4851 uint8_t *vpd, uint32_t *vpd_size)
4852{
4853 int rc = 0;
4854 uint32_t dma_size;
4855 struct lpfc_dmabuf *dmabuf;
4856 struct lpfc_mqe *mqe;
4857
4858 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
4859 if (!dmabuf)
4860 return -ENOMEM;
4861
4862 /*
4863 * Get a DMA buffer for the vpd data resulting from the READ_REV
4864 * mailbox command.
4865 */
4866 dma_size = *vpd_size;
4867 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
4868 dma_size,
4869 &dmabuf->phys,
4870 GFP_KERNEL);
4871 if (!dmabuf->virt) {
4872 kfree(dmabuf);
4873 return -ENOMEM;
4874 }
4875 memset(dmabuf->virt, 0, dma_size);
4876
4877 /*
4878 * The SLI4 implementation of READ_REV conflicts at word1,
4879 * bits 31:16 and SLI4 adds vpd functionality not present
4880 * in SLI3. This code corrects the conflicts.
4881 */
4882 lpfc_read_rev(phba, mboxq);
4883 mqe = &mboxq->u.mqe;
4884 mqe->un.read_rev.vpd_paddr_high = putPaddrHigh(dmabuf->phys);
4885 mqe->un.read_rev.vpd_paddr_low = putPaddrLow(dmabuf->phys);
4886 mqe->un.read_rev.word1 &= 0x0000FFFF;
4887 bf_set(lpfc_mbx_rd_rev_vpd, &mqe->un.read_rev, 1);
4888 bf_set(lpfc_mbx_rd_rev_avail_len, &mqe->un.read_rev, dma_size);
4889
4890 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4891 if (rc) {
4892 dma_free_coherent(&phba->pcidev->dev, dma_size,
4893 dmabuf->virt, dmabuf->phys);
James Smartdef9c7a2009-12-21 17:02:28 -05004894 kfree(dmabuf);
James Smartda0436e2009-05-22 14:51:39 -04004895 return -EIO;
4896 }
4897
James Smartda0436e2009-05-22 14:51:39 -04004898 /*
4899 * The available vpd length cannot be bigger than the
4900 * DMA buffer passed to the port. Catch the less than
4901 * case and update the caller's size.
4902 */
4903 if (mqe->un.read_rev.avail_vpd_len < *vpd_size)
4904 *vpd_size = mqe->un.read_rev.avail_vpd_len;
4905
James Smartd7c47992010-06-08 18:31:54 -04004906 memcpy(vpd, dmabuf->virt, *vpd_size);
4907
James Smartda0436e2009-05-22 14:51:39 -04004908 dma_free_coherent(&phba->pcidev->dev, dma_size,
4909 dmabuf->virt, dmabuf->phys);
4910 kfree(dmabuf);
4911 return 0;
4912}
4913
4914/**
James Smartcd1c8302011-10-10 21:33:25 -04004915 * lpfc_sli4_retrieve_pport_name - Retrieve SLI4 device physical port name
4916 * @phba: pointer to lpfc hba data structure.
4917 *
4918 * This routine retrieves SLI4 device physical port name this PCI function
4919 * is attached to.
4920 *
4921 * Return codes
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004922 * 0 - successful
James Smartcd1c8302011-10-10 21:33:25 -04004923 * otherwise - failed to retrieve physical port name
4924 **/
4925static int
4926lpfc_sli4_retrieve_pport_name(struct lpfc_hba *phba)
4927{
4928 LPFC_MBOXQ_t *mboxq;
James Smartcd1c8302011-10-10 21:33:25 -04004929 struct lpfc_mbx_get_cntl_attributes *mbx_cntl_attr;
4930 struct lpfc_controller_attribute *cntl_attr;
4931 struct lpfc_mbx_get_port_name *get_port_name;
4932 void *virtaddr = NULL;
4933 uint32_t alloclen, reqlen;
4934 uint32_t shdr_status, shdr_add_status;
4935 union lpfc_sli4_cfg_shdr *shdr;
4936 char cport_name = 0;
4937 int rc;
4938
4939 /* We assume nothing at this point */
4940 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_INVAL;
4941 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_NON;
4942
4943 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4944 if (!mboxq)
4945 return -ENOMEM;
James Smartcd1c8302011-10-10 21:33:25 -04004946 /* obtain link type and link number via READ_CONFIG */
James Smartff78d8f2011-12-13 13:21:35 -05004947 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_INVAL;
4948 lpfc_sli4_read_config(phba);
4949 if (phba->sli4_hba.lnk_info.lnk_dv == LPFC_LNK_DAT_VAL)
4950 goto retrieve_ppname;
James Smartcd1c8302011-10-10 21:33:25 -04004951
4952 /* obtain link type and link number via COMMON_GET_CNTL_ATTRIBUTES */
4953 reqlen = sizeof(struct lpfc_mbx_get_cntl_attributes);
4954 alloclen = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
4955 LPFC_MBOX_OPCODE_GET_CNTL_ATTRIBUTES, reqlen,
4956 LPFC_SLI4_MBX_NEMBED);
4957 if (alloclen < reqlen) {
4958 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
4959 "3084 Allocated DMA memory size (%d) is "
4960 "less than the requested DMA memory size "
4961 "(%d)\n", alloclen, reqlen);
4962 rc = -ENOMEM;
4963 goto out_free_mboxq;
4964 }
4965 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4966 virtaddr = mboxq->sge_array->addr[0];
4967 mbx_cntl_attr = (struct lpfc_mbx_get_cntl_attributes *)virtaddr;
4968 shdr = &mbx_cntl_attr->cfg_shdr;
4969 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
4970 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
4971 if (shdr_status || shdr_add_status || rc) {
4972 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
4973 "3085 Mailbox x%x (x%x/x%x) failed, "
4974 "rc:x%x, status:x%x, add_status:x%x\n",
4975 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
4976 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
4977 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
4978 rc, shdr_status, shdr_add_status);
4979 rc = -ENXIO;
4980 goto out_free_mboxq;
4981 }
4982 cntl_attr = &mbx_cntl_attr->cntl_attr;
4983 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_VAL;
4984 phba->sli4_hba.lnk_info.lnk_tp =
4985 bf_get(lpfc_cntl_attr_lnk_type, cntl_attr);
4986 phba->sli4_hba.lnk_info.lnk_no =
4987 bf_get(lpfc_cntl_attr_lnk_numb, cntl_attr);
4988 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4989 "3086 lnk_type:%d, lnk_numb:%d\n",
4990 phba->sli4_hba.lnk_info.lnk_tp,
4991 phba->sli4_hba.lnk_info.lnk_no);
4992
4993retrieve_ppname:
4994 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
4995 LPFC_MBOX_OPCODE_GET_PORT_NAME,
4996 sizeof(struct lpfc_mbx_get_port_name) -
4997 sizeof(struct lpfc_sli4_cfg_mhdr),
4998 LPFC_SLI4_MBX_EMBED);
4999 get_port_name = &mboxq->u.mqe.un.get_port_name;
5000 shdr = (union lpfc_sli4_cfg_shdr *)&get_port_name->header.cfg_shdr;
5001 bf_set(lpfc_mbox_hdr_version, &shdr->request, LPFC_OPCODE_VERSION_1);
5002 bf_set(lpfc_mbx_get_port_name_lnk_type, &get_port_name->u.request,
5003 phba->sli4_hba.lnk_info.lnk_tp);
5004 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
5005 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
5006 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
5007 if (shdr_status || shdr_add_status || rc) {
5008 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
5009 "3087 Mailbox x%x (x%x/x%x) failed: "
5010 "rc:x%x, status:x%x, add_status:x%x\n",
5011 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
5012 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
5013 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
5014 rc, shdr_status, shdr_add_status);
5015 rc = -ENXIO;
5016 goto out_free_mboxq;
5017 }
5018 switch (phba->sli4_hba.lnk_info.lnk_no) {
5019 case LPFC_LINK_NUMBER_0:
5020 cport_name = bf_get(lpfc_mbx_get_port_name_name0,
5021 &get_port_name->u.response);
5022 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
5023 break;
5024 case LPFC_LINK_NUMBER_1:
5025 cport_name = bf_get(lpfc_mbx_get_port_name_name1,
5026 &get_port_name->u.response);
5027 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
5028 break;
5029 case LPFC_LINK_NUMBER_2:
5030 cport_name = bf_get(lpfc_mbx_get_port_name_name2,
5031 &get_port_name->u.response);
5032 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
5033 break;
5034 case LPFC_LINK_NUMBER_3:
5035 cport_name = bf_get(lpfc_mbx_get_port_name_name3,
5036 &get_port_name->u.response);
5037 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
5038 break;
5039 default:
5040 break;
5041 }
5042
5043 if (phba->sli4_hba.pport_name_sta == LPFC_SLI4_PPNAME_GET) {
5044 phba->Port[0] = cport_name;
5045 phba->Port[1] = '\0';
5046 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
5047 "3091 SLI get port name: %s\n", phba->Port);
5048 }
5049
5050out_free_mboxq:
5051 if (rc != MBX_TIMEOUT) {
5052 if (bf_get(lpfc_mqe_command, &mboxq->u.mqe) == MBX_SLI4_CONFIG)
5053 lpfc_sli4_mbox_cmd_free(phba, mboxq);
5054 else
5055 mempool_free(mboxq, phba->mbox_mem_pool);
5056 }
5057 return rc;
5058}
5059
5060/**
James Smartda0436e2009-05-22 14:51:39 -04005061 * lpfc_sli4_arm_cqeq_intr - Arm sli-4 device completion and event queues
5062 * @phba: pointer to lpfc hba data structure.
5063 *
5064 * This routine is called to explicitly arm the SLI4 device's completion and
5065 * event queues
5066 **/
5067static void
5068lpfc_sli4_arm_cqeq_intr(struct lpfc_hba *phba)
5069{
James Smart962bc512013-01-03 15:44:00 -05005070 int fcp_eqidx;
James Smartda0436e2009-05-22 14:51:39 -04005071
5072 lpfc_sli4_cq_release(phba->sli4_hba.mbx_cq, LPFC_QUEUE_REARM);
5073 lpfc_sli4_cq_release(phba->sli4_hba.els_cq, LPFC_QUEUE_REARM);
James Smart05580562011-05-24 11:40:48 -04005074 fcp_eqidx = 0;
James Smart2e90f4b2011-12-13 13:22:37 -05005075 if (phba->sli4_hba.fcp_cq) {
James Smart67d12732012-08-03 12:36:13 -04005076 do {
James Smart2e90f4b2011-12-13 13:22:37 -05005077 lpfc_sli4_cq_release(phba->sli4_hba.fcp_cq[fcp_eqidx],
5078 LPFC_QUEUE_REARM);
James Smart67d12732012-08-03 12:36:13 -04005079 } while (++fcp_eqidx < phba->cfg_fcp_io_channel);
James Smart2e90f4b2011-12-13 13:22:37 -05005080 }
James Smart1ba981f2014-02-20 09:56:45 -05005081
James Smartf38fa0b2014-04-04 13:52:21 -04005082 if (phba->cfg_fof)
James Smart1ba981f2014-02-20 09:56:45 -05005083 lpfc_sli4_cq_release(phba->sli4_hba.oas_cq, LPFC_QUEUE_REARM);
5084
James Smart67d12732012-08-03 12:36:13 -04005085 if (phba->sli4_hba.hba_eq) {
5086 for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_io_channel;
James Smart2e90f4b2011-12-13 13:22:37 -05005087 fcp_eqidx++)
James Smart67d12732012-08-03 12:36:13 -04005088 lpfc_sli4_eq_release(phba->sli4_hba.hba_eq[fcp_eqidx],
James Smart2e90f4b2011-12-13 13:22:37 -05005089 LPFC_QUEUE_REARM);
5090 }
James Smart1ba981f2014-02-20 09:56:45 -05005091
5092 if (phba->cfg_fof)
5093 lpfc_sli4_eq_release(phba->sli4_hba.fof_eq, LPFC_QUEUE_REARM);
James Smartda0436e2009-05-22 14:51:39 -04005094}
5095
5096/**
James Smart6d368e52011-05-24 11:44:12 -04005097 * lpfc_sli4_get_avail_extnt_rsrc - Get available resource extent count.
5098 * @phba: Pointer to HBA context object.
5099 * @type: The resource extent type.
James Smartb76f2dc2011-07-22 18:37:42 -04005100 * @extnt_count: buffer to hold port available extent count.
5101 * @extnt_size: buffer to hold element count per extent.
James Smart6d368e52011-05-24 11:44:12 -04005102 *
James Smartb76f2dc2011-07-22 18:37:42 -04005103 * This function calls the port and retrievs the number of available
5104 * extents and their size for a particular extent type.
5105 *
5106 * Returns: 0 if successful. Nonzero otherwise.
James Smart6d368e52011-05-24 11:44:12 -04005107 **/
James Smartb76f2dc2011-07-22 18:37:42 -04005108int
James Smart6d368e52011-05-24 11:44:12 -04005109lpfc_sli4_get_avail_extnt_rsrc(struct lpfc_hba *phba, uint16_t type,
5110 uint16_t *extnt_count, uint16_t *extnt_size)
5111{
5112 int rc = 0;
5113 uint32_t length;
5114 uint32_t mbox_tmo;
5115 struct lpfc_mbx_get_rsrc_extent_info *rsrc_info;
5116 LPFC_MBOXQ_t *mbox;
5117
5118 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5119 if (!mbox)
5120 return -ENOMEM;
5121
5122 /* Find out how many extents are available for this resource type */
5123 length = (sizeof(struct lpfc_mbx_get_rsrc_extent_info) -
5124 sizeof(struct lpfc_sli4_cfg_mhdr));
5125 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5126 LPFC_MBOX_OPCODE_GET_RSRC_EXTENT_INFO,
5127 length, LPFC_SLI4_MBX_EMBED);
5128
5129 /* Send an extents count of 0 - the GET doesn't use it. */
5130 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, 0, type,
5131 LPFC_SLI4_MBX_EMBED);
5132 if (unlikely(rc)) {
5133 rc = -EIO;
5134 goto err_exit;
5135 }
5136
5137 if (!phba->sli4_hba.intr_enable)
5138 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5139 else {
James Smarta183a152011-10-10 21:32:43 -04005140 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -04005141 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5142 }
5143 if (unlikely(rc)) {
5144 rc = -EIO;
5145 goto err_exit;
5146 }
5147
5148 rsrc_info = &mbox->u.mqe.un.rsrc_extent_info;
5149 if (bf_get(lpfc_mbox_hdr_status,
5150 &rsrc_info->header.cfg_shdr.response)) {
5151 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5152 "2930 Failed to get resource extents "
5153 "Status 0x%x Add'l Status 0x%x\n",
5154 bf_get(lpfc_mbox_hdr_status,
5155 &rsrc_info->header.cfg_shdr.response),
5156 bf_get(lpfc_mbox_hdr_add_status,
5157 &rsrc_info->header.cfg_shdr.response));
5158 rc = -EIO;
5159 goto err_exit;
5160 }
5161
5162 *extnt_count = bf_get(lpfc_mbx_get_rsrc_extent_info_cnt,
5163 &rsrc_info->u.rsp);
5164 *extnt_size = bf_get(lpfc_mbx_get_rsrc_extent_info_size,
5165 &rsrc_info->u.rsp);
James Smart8a9d2e82012-05-09 21:16:12 -04005166
5167 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
5168 "3162 Retrieved extents type-%d from port: count:%d, "
5169 "size:%d\n", type, *extnt_count, *extnt_size);
5170
5171err_exit:
James Smart6d368e52011-05-24 11:44:12 -04005172 mempool_free(mbox, phba->mbox_mem_pool);
5173 return rc;
5174}
5175
5176/**
5177 * lpfc_sli4_chk_avail_extnt_rsrc - Check for available SLI4 resource extents.
5178 * @phba: Pointer to HBA context object.
5179 * @type: The extent type to check.
5180 *
5181 * This function reads the current available extents from the port and checks
5182 * if the extent count or extent size has changed since the last access.
5183 * Callers use this routine post port reset to understand if there is a
5184 * extent reprovisioning requirement.
5185 *
5186 * Returns:
5187 * -Error: error indicates problem.
5188 * 1: Extent count or size has changed.
5189 * 0: No changes.
5190 **/
5191static int
5192lpfc_sli4_chk_avail_extnt_rsrc(struct lpfc_hba *phba, uint16_t type)
5193{
5194 uint16_t curr_ext_cnt, rsrc_ext_cnt;
5195 uint16_t size_diff, rsrc_ext_size;
5196 int rc = 0;
5197 struct lpfc_rsrc_blks *rsrc_entry;
5198 struct list_head *rsrc_blk_list = NULL;
5199
5200 size_diff = 0;
5201 curr_ext_cnt = 0;
5202 rc = lpfc_sli4_get_avail_extnt_rsrc(phba, type,
5203 &rsrc_ext_cnt,
5204 &rsrc_ext_size);
5205 if (unlikely(rc))
5206 return -EIO;
5207
5208 switch (type) {
5209 case LPFC_RSC_TYPE_FCOE_RPI:
5210 rsrc_blk_list = &phba->sli4_hba.lpfc_rpi_blk_list;
5211 break;
5212 case LPFC_RSC_TYPE_FCOE_VPI:
5213 rsrc_blk_list = &phba->lpfc_vpi_blk_list;
5214 break;
5215 case LPFC_RSC_TYPE_FCOE_XRI:
5216 rsrc_blk_list = &phba->sli4_hba.lpfc_xri_blk_list;
5217 break;
5218 case LPFC_RSC_TYPE_FCOE_VFI:
5219 rsrc_blk_list = &phba->sli4_hba.lpfc_vfi_blk_list;
5220 break;
5221 default:
5222 break;
5223 }
5224
5225 list_for_each_entry(rsrc_entry, rsrc_blk_list, list) {
5226 curr_ext_cnt++;
5227 if (rsrc_entry->rsrc_size != rsrc_ext_size)
5228 size_diff++;
5229 }
5230
5231 if (curr_ext_cnt != rsrc_ext_cnt || size_diff != 0)
5232 rc = 1;
5233
5234 return rc;
5235}
5236
5237/**
5238 * lpfc_sli4_cfg_post_extnts -
5239 * @phba: Pointer to HBA context object.
5240 * @extnt_cnt - number of available extents.
5241 * @type - the extent type (rpi, xri, vfi, vpi).
5242 * @emb - buffer to hold either MBX_EMBED or MBX_NEMBED operation.
5243 * @mbox - pointer to the caller's allocated mailbox structure.
5244 *
5245 * This function executes the extents allocation request. It also
5246 * takes care of the amount of memory needed to allocate or get the
5247 * allocated extents. It is the caller's responsibility to evaluate
5248 * the response.
5249 *
5250 * Returns:
5251 * -Error: Error value describes the condition found.
5252 * 0: if successful
5253 **/
5254static int
James Smart8a9d2e82012-05-09 21:16:12 -04005255lpfc_sli4_cfg_post_extnts(struct lpfc_hba *phba, uint16_t extnt_cnt,
James Smart6d368e52011-05-24 11:44:12 -04005256 uint16_t type, bool *emb, LPFC_MBOXQ_t *mbox)
5257{
5258 int rc = 0;
5259 uint32_t req_len;
5260 uint32_t emb_len;
5261 uint32_t alloc_len, mbox_tmo;
5262
5263 /* Calculate the total requested length of the dma memory */
James Smart8a9d2e82012-05-09 21:16:12 -04005264 req_len = extnt_cnt * sizeof(uint16_t);
James Smart6d368e52011-05-24 11:44:12 -04005265
5266 /*
5267 * Calculate the size of an embedded mailbox. The uint32_t
5268 * accounts for extents-specific word.
5269 */
5270 emb_len = sizeof(MAILBOX_t) - sizeof(struct mbox_header) -
5271 sizeof(uint32_t);
5272
5273 /*
5274 * Presume the allocation and response will fit into an embedded
5275 * mailbox. If not true, reconfigure to a non-embedded mailbox.
5276 */
5277 *emb = LPFC_SLI4_MBX_EMBED;
5278 if (req_len > emb_len) {
James Smart8a9d2e82012-05-09 21:16:12 -04005279 req_len = extnt_cnt * sizeof(uint16_t) +
James Smart6d368e52011-05-24 11:44:12 -04005280 sizeof(union lpfc_sli4_cfg_shdr) +
5281 sizeof(uint32_t);
5282 *emb = LPFC_SLI4_MBX_NEMBED;
5283 }
5284
5285 alloc_len = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5286 LPFC_MBOX_OPCODE_ALLOC_RSRC_EXTENT,
5287 req_len, *emb);
5288 if (alloc_len < req_len) {
5289 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smartb76f2dc2011-07-22 18:37:42 -04005290 "2982 Allocated DMA memory size (x%x) is "
James Smart6d368e52011-05-24 11:44:12 -04005291 "less than the requested DMA memory "
5292 "size (x%x)\n", alloc_len, req_len);
5293 return -ENOMEM;
5294 }
James Smart8a9d2e82012-05-09 21:16:12 -04005295 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, extnt_cnt, type, *emb);
James Smart6d368e52011-05-24 11:44:12 -04005296 if (unlikely(rc))
5297 return -EIO;
5298
5299 if (!phba->sli4_hba.intr_enable)
5300 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5301 else {
James Smarta183a152011-10-10 21:32:43 -04005302 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -04005303 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5304 }
5305
5306 if (unlikely(rc))
5307 rc = -EIO;
5308 return rc;
5309}
5310
5311/**
5312 * lpfc_sli4_alloc_extent - Allocate an SLI4 resource extent.
5313 * @phba: Pointer to HBA context object.
5314 * @type: The resource extent type to allocate.
5315 *
5316 * This function allocates the number of elements for the specified
5317 * resource type.
5318 **/
5319static int
5320lpfc_sli4_alloc_extent(struct lpfc_hba *phba, uint16_t type)
5321{
5322 bool emb = false;
5323 uint16_t rsrc_id_cnt, rsrc_cnt, rsrc_size;
5324 uint16_t rsrc_id, rsrc_start, j, k;
5325 uint16_t *ids;
5326 int i, rc;
5327 unsigned long longs;
5328 unsigned long *bmask;
5329 struct lpfc_rsrc_blks *rsrc_blks;
5330 LPFC_MBOXQ_t *mbox;
5331 uint32_t length;
5332 struct lpfc_id_range *id_array = NULL;
5333 void *virtaddr = NULL;
5334 struct lpfc_mbx_nembed_rsrc_extent *n_rsrc;
5335 struct lpfc_mbx_alloc_rsrc_extents *rsrc_ext;
5336 struct list_head *ext_blk_list;
5337
5338 rc = lpfc_sli4_get_avail_extnt_rsrc(phba, type,
5339 &rsrc_cnt,
5340 &rsrc_size);
5341 if (unlikely(rc))
5342 return -EIO;
5343
5344 if ((rsrc_cnt == 0) || (rsrc_size == 0)) {
5345 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5346 "3009 No available Resource Extents "
5347 "for resource type 0x%x: Count: 0x%x, "
5348 "Size 0x%x\n", type, rsrc_cnt,
5349 rsrc_size);
5350 return -ENOMEM;
5351 }
5352
James Smart8a9d2e82012-05-09 21:16:12 -04005353 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_INIT | LOG_SLI,
5354 "2903 Post resource extents type-0x%x: "
5355 "count:%d, size %d\n", type, rsrc_cnt, rsrc_size);
James Smart6d368e52011-05-24 11:44:12 -04005356
5357 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5358 if (!mbox)
5359 return -ENOMEM;
5360
James Smart8a9d2e82012-05-09 21:16:12 -04005361 rc = lpfc_sli4_cfg_post_extnts(phba, rsrc_cnt, type, &emb, mbox);
James Smart6d368e52011-05-24 11:44:12 -04005362 if (unlikely(rc)) {
5363 rc = -EIO;
5364 goto err_exit;
5365 }
5366
5367 /*
5368 * Figure out where the response is located. Then get local pointers
5369 * to the response data. The port does not guarantee to respond to
5370 * all extents counts request so update the local variable with the
5371 * allocated count from the port.
5372 */
5373 if (emb == LPFC_SLI4_MBX_EMBED) {
5374 rsrc_ext = &mbox->u.mqe.un.alloc_rsrc_extents;
5375 id_array = &rsrc_ext->u.rsp.id[0];
5376 rsrc_cnt = bf_get(lpfc_mbx_rsrc_cnt, &rsrc_ext->u.rsp);
5377 } else {
5378 virtaddr = mbox->sge_array->addr[0];
5379 n_rsrc = (struct lpfc_mbx_nembed_rsrc_extent *) virtaddr;
5380 rsrc_cnt = bf_get(lpfc_mbx_rsrc_cnt, n_rsrc);
5381 id_array = &n_rsrc->id;
5382 }
5383
5384 longs = ((rsrc_cnt * rsrc_size) + BITS_PER_LONG - 1) / BITS_PER_LONG;
5385 rsrc_id_cnt = rsrc_cnt * rsrc_size;
5386
5387 /*
5388 * Based on the resource size and count, correct the base and max
5389 * resource values.
5390 */
5391 length = sizeof(struct lpfc_rsrc_blks);
5392 switch (type) {
5393 case LPFC_RSC_TYPE_FCOE_RPI:
5394 phba->sli4_hba.rpi_bmask = kzalloc(longs *
5395 sizeof(unsigned long),
5396 GFP_KERNEL);
5397 if (unlikely(!phba->sli4_hba.rpi_bmask)) {
5398 rc = -ENOMEM;
5399 goto err_exit;
5400 }
5401 phba->sli4_hba.rpi_ids = kzalloc(rsrc_id_cnt *
5402 sizeof(uint16_t),
5403 GFP_KERNEL);
5404 if (unlikely(!phba->sli4_hba.rpi_ids)) {
5405 kfree(phba->sli4_hba.rpi_bmask);
5406 rc = -ENOMEM;
5407 goto err_exit;
5408 }
5409
5410 /*
5411 * The next_rpi was initialized with the maximum available
5412 * count but the port may allocate a smaller number. Catch
5413 * that case and update the next_rpi.
5414 */
5415 phba->sli4_hba.next_rpi = rsrc_id_cnt;
5416
5417 /* Initialize local ptrs for common extent processing later. */
5418 bmask = phba->sli4_hba.rpi_bmask;
5419 ids = phba->sli4_hba.rpi_ids;
5420 ext_blk_list = &phba->sli4_hba.lpfc_rpi_blk_list;
5421 break;
5422 case LPFC_RSC_TYPE_FCOE_VPI:
5423 phba->vpi_bmask = kzalloc(longs *
5424 sizeof(unsigned long),
5425 GFP_KERNEL);
5426 if (unlikely(!phba->vpi_bmask)) {
5427 rc = -ENOMEM;
5428 goto err_exit;
5429 }
5430 phba->vpi_ids = kzalloc(rsrc_id_cnt *
5431 sizeof(uint16_t),
5432 GFP_KERNEL);
5433 if (unlikely(!phba->vpi_ids)) {
5434 kfree(phba->vpi_bmask);
5435 rc = -ENOMEM;
5436 goto err_exit;
5437 }
5438
5439 /* Initialize local ptrs for common extent processing later. */
5440 bmask = phba->vpi_bmask;
5441 ids = phba->vpi_ids;
5442 ext_blk_list = &phba->lpfc_vpi_blk_list;
5443 break;
5444 case LPFC_RSC_TYPE_FCOE_XRI:
5445 phba->sli4_hba.xri_bmask = kzalloc(longs *
5446 sizeof(unsigned long),
5447 GFP_KERNEL);
5448 if (unlikely(!phba->sli4_hba.xri_bmask)) {
5449 rc = -ENOMEM;
5450 goto err_exit;
5451 }
James Smart8a9d2e82012-05-09 21:16:12 -04005452 phba->sli4_hba.max_cfg_param.xri_used = 0;
James Smart6d368e52011-05-24 11:44:12 -04005453 phba->sli4_hba.xri_ids = kzalloc(rsrc_id_cnt *
5454 sizeof(uint16_t),
5455 GFP_KERNEL);
5456 if (unlikely(!phba->sli4_hba.xri_ids)) {
5457 kfree(phba->sli4_hba.xri_bmask);
5458 rc = -ENOMEM;
5459 goto err_exit;
5460 }
5461
5462 /* Initialize local ptrs for common extent processing later. */
5463 bmask = phba->sli4_hba.xri_bmask;
5464 ids = phba->sli4_hba.xri_ids;
5465 ext_blk_list = &phba->sli4_hba.lpfc_xri_blk_list;
5466 break;
5467 case LPFC_RSC_TYPE_FCOE_VFI:
5468 phba->sli4_hba.vfi_bmask = kzalloc(longs *
5469 sizeof(unsigned long),
5470 GFP_KERNEL);
5471 if (unlikely(!phba->sli4_hba.vfi_bmask)) {
5472 rc = -ENOMEM;
5473 goto err_exit;
5474 }
5475 phba->sli4_hba.vfi_ids = kzalloc(rsrc_id_cnt *
5476 sizeof(uint16_t),
5477 GFP_KERNEL);
5478 if (unlikely(!phba->sli4_hba.vfi_ids)) {
5479 kfree(phba->sli4_hba.vfi_bmask);
5480 rc = -ENOMEM;
5481 goto err_exit;
5482 }
5483
5484 /* Initialize local ptrs for common extent processing later. */
5485 bmask = phba->sli4_hba.vfi_bmask;
5486 ids = phba->sli4_hba.vfi_ids;
5487 ext_blk_list = &phba->sli4_hba.lpfc_vfi_blk_list;
5488 break;
5489 default:
5490 /* Unsupported Opcode. Fail call. */
5491 id_array = NULL;
5492 bmask = NULL;
5493 ids = NULL;
5494 ext_blk_list = NULL;
5495 goto err_exit;
5496 }
5497
5498 /*
5499 * Complete initializing the extent configuration with the
5500 * allocated ids assigned to this function. The bitmask serves
5501 * as an index into the array and manages the available ids. The
5502 * array just stores the ids communicated to the port via the wqes.
5503 */
5504 for (i = 0, j = 0, k = 0; i < rsrc_cnt; i++) {
5505 if ((i % 2) == 0)
5506 rsrc_id = bf_get(lpfc_mbx_rsrc_id_word4_0,
5507 &id_array[k]);
5508 else
5509 rsrc_id = bf_get(lpfc_mbx_rsrc_id_word4_1,
5510 &id_array[k]);
5511
5512 rsrc_blks = kzalloc(length, GFP_KERNEL);
5513 if (unlikely(!rsrc_blks)) {
5514 rc = -ENOMEM;
5515 kfree(bmask);
5516 kfree(ids);
5517 goto err_exit;
5518 }
5519 rsrc_blks->rsrc_start = rsrc_id;
5520 rsrc_blks->rsrc_size = rsrc_size;
5521 list_add_tail(&rsrc_blks->list, ext_blk_list);
5522 rsrc_start = rsrc_id;
5523 if ((type == LPFC_RSC_TYPE_FCOE_XRI) && (j == 0))
5524 phba->sli4_hba.scsi_xri_start = rsrc_start +
5525 lpfc_sli4_get_els_iocb_cnt(phba);
5526
5527 while (rsrc_id < (rsrc_start + rsrc_size)) {
5528 ids[j] = rsrc_id;
5529 rsrc_id++;
5530 j++;
5531 }
5532 /* Entire word processed. Get next word.*/
5533 if ((i % 2) == 1)
5534 k++;
5535 }
5536 err_exit:
5537 lpfc_sli4_mbox_cmd_free(phba, mbox);
5538 return rc;
5539}
5540
5541/**
5542 * lpfc_sli4_dealloc_extent - Deallocate an SLI4 resource extent.
5543 * @phba: Pointer to HBA context object.
5544 * @type: the extent's type.
5545 *
5546 * This function deallocates all extents of a particular resource type.
5547 * SLI4 does not allow for deallocating a particular extent range. It
5548 * is the caller's responsibility to release all kernel memory resources.
5549 **/
5550static int
5551lpfc_sli4_dealloc_extent(struct lpfc_hba *phba, uint16_t type)
5552{
5553 int rc;
5554 uint32_t length, mbox_tmo = 0;
5555 LPFC_MBOXQ_t *mbox;
5556 struct lpfc_mbx_dealloc_rsrc_extents *dealloc_rsrc;
5557 struct lpfc_rsrc_blks *rsrc_blk, *rsrc_blk_next;
5558
5559 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5560 if (!mbox)
5561 return -ENOMEM;
5562
5563 /*
5564 * This function sends an embedded mailbox because it only sends the
5565 * the resource type. All extents of this type are released by the
5566 * port.
5567 */
5568 length = (sizeof(struct lpfc_mbx_dealloc_rsrc_extents) -
5569 sizeof(struct lpfc_sli4_cfg_mhdr));
5570 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5571 LPFC_MBOX_OPCODE_DEALLOC_RSRC_EXTENT,
5572 length, LPFC_SLI4_MBX_EMBED);
5573
5574 /* Send an extents count of 0 - the dealloc doesn't use it. */
5575 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, 0, type,
5576 LPFC_SLI4_MBX_EMBED);
5577 if (unlikely(rc)) {
5578 rc = -EIO;
5579 goto out_free_mbox;
5580 }
5581 if (!phba->sli4_hba.intr_enable)
5582 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5583 else {
James Smarta183a152011-10-10 21:32:43 -04005584 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -04005585 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5586 }
5587 if (unlikely(rc)) {
5588 rc = -EIO;
5589 goto out_free_mbox;
5590 }
5591
5592 dealloc_rsrc = &mbox->u.mqe.un.dealloc_rsrc_extents;
5593 if (bf_get(lpfc_mbox_hdr_status,
5594 &dealloc_rsrc->header.cfg_shdr.response)) {
5595 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5596 "2919 Failed to release resource extents "
5597 "for type %d - Status 0x%x Add'l Status 0x%x. "
5598 "Resource memory not released.\n",
5599 type,
5600 bf_get(lpfc_mbox_hdr_status,
5601 &dealloc_rsrc->header.cfg_shdr.response),
5602 bf_get(lpfc_mbox_hdr_add_status,
5603 &dealloc_rsrc->header.cfg_shdr.response));
5604 rc = -EIO;
5605 goto out_free_mbox;
5606 }
5607
5608 /* Release kernel memory resources for the specific type. */
5609 switch (type) {
5610 case LPFC_RSC_TYPE_FCOE_VPI:
5611 kfree(phba->vpi_bmask);
5612 kfree(phba->vpi_ids);
5613 bf_set(lpfc_vpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5614 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5615 &phba->lpfc_vpi_blk_list, list) {
5616 list_del_init(&rsrc_blk->list);
5617 kfree(rsrc_blk);
5618 }
James Smart16a3a202013-04-17 20:14:38 -04005619 phba->sli4_hba.max_cfg_param.vpi_used = 0;
James Smart6d368e52011-05-24 11:44:12 -04005620 break;
5621 case LPFC_RSC_TYPE_FCOE_XRI:
5622 kfree(phba->sli4_hba.xri_bmask);
5623 kfree(phba->sli4_hba.xri_ids);
James Smart6d368e52011-05-24 11:44:12 -04005624 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5625 &phba->sli4_hba.lpfc_xri_blk_list, list) {
5626 list_del_init(&rsrc_blk->list);
5627 kfree(rsrc_blk);
5628 }
5629 break;
5630 case LPFC_RSC_TYPE_FCOE_VFI:
5631 kfree(phba->sli4_hba.vfi_bmask);
5632 kfree(phba->sli4_hba.vfi_ids);
5633 bf_set(lpfc_vfi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5634 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5635 &phba->sli4_hba.lpfc_vfi_blk_list, list) {
5636 list_del_init(&rsrc_blk->list);
5637 kfree(rsrc_blk);
5638 }
5639 break;
5640 case LPFC_RSC_TYPE_FCOE_RPI:
5641 /* RPI bitmask and physical id array are cleaned up earlier. */
5642 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5643 &phba->sli4_hba.lpfc_rpi_blk_list, list) {
5644 list_del_init(&rsrc_blk->list);
5645 kfree(rsrc_blk);
5646 }
5647 break;
5648 default:
5649 break;
5650 }
5651
5652 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5653
5654 out_free_mbox:
5655 mempool_free(mbox, phba->mbox_mem_pool);
5656 return rc;
5657}
5658
5659/**
5660 * lpfc_sli4_alloc_resource_identifiers - Allocate all SLI4 resource extents.
5661 * @phba: Pointer to HBA context object.
5662 *
5663 * This function allocates all SLI4 resource identifiers.
5664 **/
5665int
5666lpfc_sli4_alloc_resource_identifiers(struct lpfc_hba *phba)
5667{
5668 int i, rc, error = 0;
5669 uint16_t count, base;
5670 unsigned long longs;
5671
James Smartff78d8f2011-12-13 13:21:35 -05005672 if (!phba->sli4_hba.rpi_hdrs_in_use)
5673 phba->sli4_hba.next_rpi = phba->sli4_hba.max_cfg_param.max_rpi;
James Smart6d368e52011-05-24 11:44:12 -04005674 if (phba->sli4_hba.extents_in_use) {
5675 /*
5676 * The port supports resource extents. The XRI, VPI, VFI, RPI
5677 * resource extent count must be read and allocated before
5678 * provisioning the resource id arrays.
5679 */
5680 if (bf_get(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags) ==
5681 LPFC_IDX_RSRC_RDY) {
5682 /*
5683 * Extent-based resources are set - the driver could
5684 * be in a port reset. Figure out if any corrective
5685 * actions need to be taken.
5686 */
5687 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5688 LPFC_RSC_TYPE_FCOE_VFI);
5689 if (rc != 0)
5690 error++;
5691 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5692 LPFC_RSC_TYPE_FCOE_VPI);
5693 if (rc != 0)
5694 error++;
5695 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5696 LPFC_RSC_TYPE_FCOE_XRI);
5697 if (rc != 0)
5698 error++;
5699 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5700 LPFC_RSC_TYPE_FCOE_RPI);
5701 if (rc != 0)
5702 error++;
5703
5704 /*
5705 * It's possible that the number of resources
5706 * provided to this port instance changed between
5707 * resets. Detect this condition and reallocate
5708 * resources. Otherwise, there is no action.
5709 */
5710 if (error) {
5711 lpfc_printf_log(phba, KERN_INFO,
5712 LOG_MBOX | LOG_INIT,
5713 "2931 Detected extent resource "
5714 "change. Reallocating all "
5715 "extents.\n");
5716 rc = lpfc_sli4_dealloc_extent(phba,
5717 LPFC_RSC_TYPE_FCOE_VFI);
5718 rc = lpfc_sli4_dealloc_extent(phba,
5719 LPFC_RSC_TYPE_FCOE_VPI);
5720 rc = lpfc_sli4_dealloc_extent(phba,
5721 LPFC_RSC_TYPE_FCOE_XRI);
5722 rc = lpfc_sli4_dealloc_extent(phba,
5723 LPFC_RSC_TYPE_FCOE_RPI);
5724 } else
5725 return 0;
5726 }
5727
5728 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_VFI);
5729 if (unlikely(rc))
5730 goto err_exit;
5731
5732 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_VPI);
5733 if (unlikely(rc))
5734 goto err_exit;
5735
5736 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_RPI);
5737 if (unlikely(rc))
5738 goto err_exit;
5739
5740 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_XRI);
5741 if (unlikely(rc))
5742 goto err_exit;
5743 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags,
5744 LPFC_IDX_RSRC_RDY);
5745 return rc;
5746 } else {
5747 /*
5748 * The port does not support resource extents. The XRI, VPI,
5749 * VFI, RPI resource ids were determined from READ_CONFIG.
5750 * Just allocate the bitmasks and provision the resource id
5751 * arrays. If a port reset is active, the resources don't
5752 * need any action - just exit.
5753 */
5754 if (bf_get(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags) ==
James Smartff78d8f2011-12-13 13:21:35 -05005755 LPFC_IDX_RSRC_RDY) {
5756 lpfc_sli4_dealloc_resource_identifiers(phba);
5757 lpfc_sli4_remove_rpis(phba);
5758 }
James Smart6d368e52011-05-24 11:44:12 -04005759 /* RPIs. */
5760 count = phba->sli4_hba.max_cfg_param.max_rpi;
James Smart0a630c22013-01-03 15:44:09 -05005761 if (count <= 0) {
5762 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5763 "3279 Invalid provisioning of "
5764 "rpi:%d\n", count);
5765 rc = -EINVAL;
5766 goto err_exit;
5767 }
James Smart6d368e52011-05-24 11:44:12 -04005768 base = phba->sli4_hba.max_cfg_param.rpi_base;
5769 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5770 phba->sli4_hba.rpi_bmask = kzalloc(longs *
5771 sizeof(unsigned long),
5772 GFP_KERNEL);
5773 if (unlikely(!phba->sli4_hba.rpi_bmask)) {
5774 rc = -ENOMEM;
5775 goto err_exit;
5776 }
5777 phba->sli4_hba.rpi_ids = kzalloc(count *
5778 sizeof(uint16_t),
5779 GFP_KERNEL);
5780 if (unlikely(!phba->sli4_hba.rpi_ids)) {
5781 rc = -ENOMEM;
5782 goto free_rpi_bmask;
5783 }
5784
5785 for (i = 0; i < count; i++)
5786 phba->sli4_hba.rpi_ids[i] = base + i;
5787
5788 /* VPIs. */
5789 count = phba->sli4_hba.max_cfg_param.max_vpi;
James Smart0a630c22013-01-03 15:44:09 -05005790 if (count <= 0) {
5791 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5792 "3280 Invalid provisioning of "
5793 "vpi:%d\n", count);
5794 rc = -EINVAL;
5795 goto free_rpi_ids;
5796 }
James Smart6d368e52011-05-24 11:44:12 -04005797 base = phba->sli4_hba.max_cfg_param.vpi_base;
5798 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5799 phba->vpi_bmask = kzalloc(longs *
5800 sizeof(unsigned long),
5801 GFP_KERNEL);
5802 if (unlikely(!phba->vpi_bmask)) {
5803 rc = -ENOMEM;
5804 goto free_rpi_ids;
5805 }
5806 phba->vpi_ids = kzalloc(count *
5807 sizeof(uint16_t),
5808 GFP_KERNEL);
5809 if (unlikely(!phba->vpi_ids)) {
5810 rc = -ENOMEM;
5811 goto free_vpi_bmask;
5812 }
5813
5814 for (i = 0; i < count; i++)
5815 phba->vpi_ids[i] = base + i;
5816
5817 /* XRIs. */
5818 count = phba->sli4_hba.max_cfg_param.max_xri;
James Smart0a630c22013-01-03 15:44:09 -05005819 if (count <= 0) {
5820 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5821 "3281 Invalid provisioning of "
5822 "xri:%d\n", count);
5823 rc = -EINVAL;
5824 goto free_vpi_ids;
5825 }
James Smart6d368e52011-05-24 11:44:12 -04005826 base = phba->sli4_hba.max_cfg_param.xri_base;
5827 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5828 phba->sli4_hba.xri_bmask = kzalloc(longs *
5829 sizeof(unsigned long),
5830 GFP_KERNEL);
5831 if (unlikely(!phba->sli4_hba.xri_bmask)) {
5832 rc = -ENOMEM;
5833 goto free_vpi_ids;
5834 }
James Smart41899be2012-03-01 22:34:19 -05005835 phba->sli4_hba.max_cfg_param.xri_used = 0;
James Smart6d368e52011-05-24 11:44:12 -04005836 phba->sli4_hba.xri_ids = kzalloc(count *
5837 sizeof(uint16_t),
5838 GFP_KERNEL);
5839 if (unlikely(!phba->sli4_hba.xri_ids)) {
5840 rc = -ENOMEM;
5841 goto free_xri_bmask;
5842 }
5843
5844 for (i = 0; i < count; i++)
5845 phba->sli4_hba.xri_ids[i] = base + i;
5846
5847 /* VFIs. */
5848 count = phba->sli4_hba.max_cfg_param.max_vfi;
James Smart0a630c22013-01-03 15:44:09 -05005849 if (count <= 0) {
5850 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5851 "3282 Invalid provisioning of "
5852 "vfi:%d\n", count);
5853 rc = -EINVAL;
5854 goto free_xri_ids;
5855 }
James Smart6d368e52011-05-24 11:44:12 -04005856 base = phba->sli4_hba.max_cfg_param.vfi_base;
5857 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5858 phba->sli4_hba.vfi_bmask = kzalloc(longs *
5859 sizeof(unsigned long),
5860 GFP_KERNEL);
5861 if (unlikely(!phba->sli4_hba.vfi_bmask)) {
5862 rc = -ENOMEM;
5863 goto free_xri_ids;
5864 }
5865 phba->sli4_hba.vfi_ids = kzalloc(count *
5866 sizeof(uint16_t),
5867 GFP_KERNEL);
5868 if (unlikely(!phba->sli4_hba.vfi_ids)) {
5869 rc = -ENOMEM;
5870 goto free_vfi_bmask;
5871 }
5872
5873 for (i = 0; i < count; i++)
5874 phba->sli4_hba.vfi_ids[i] = base + i;
5875
5876 /*
5877 * Mark all resources ready. An HBA reset doesn't need
5878 * to reset the initialization.
5879 */
5880 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags,
5881 LPFC_IDX_RSRC_RDY);
5882 return 0;
5883 }
5884
5885 free_vfi_bmask:
5886 kfree(phba->sli4_hba.vfi_bmask);
5887 free_xri_ids:
5888 kfree(phba->sli4_hba.xri_ids);
5889 free_xri_bmask:
5890 kfree(phba->sli4_hba.xri_bmask);
5891 free_vpi_ids:
5892 kfree(phba->vpi_ids);
5893 free_vpi_bmask:
5894 kfree(phba->vpi_bmask);
5895 free_rpi_ids:
5896 kfree(phba->sli4_hba.rpi_ids);
5897 free_rpi_bmask:
5898 kfree(phba->sli4_hba.rpi_bmask);
5899 err_exit:
5900 return rc;
5901}
5902
5903/**
5904 * lpfc_sli4_dealloc_resource_identifiers - Deallocate all SLI4 resource extents.
5905 * @phba: Pointer to HBA context object.
5906 *
5907 * This function allocates the number of elements for the specified
5908 * resource type.
5909 **/
5910int
5911lpfc_sli4_dealloc_resource_identifiers(struct lpfc_hba *phba)
5912{
5913 if (phba->sli4_hba.extents_in_use) {
5914 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_VPI);
5915 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_RPI);
5916 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_XRI);
5917 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_VFI);
5918 } else {
5919 kfree(phba->vpi_bmask);
James Smart16a3a202013-04-17 20:14:38 -04005920 phba->sli4_hba.max_cfg_param.vpi_used = 0;
James Smart6d368e52011-05-24 11:44:12 -04005921 kfree(phba->vpi_ids);
5922 bf_set(lpfc_vpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5923 kfree(phba->sli4_hba.xri_bmask);
5924 kfree(phba->sli4_hba.xri_ids);
James Smart6d368e52011-05-24 11:44:12 -04005925 kfree(phba->sli4_hba.vfi_bmask);
5926 kfree(phba->sli4_hba.vfi_ids);
5927 bf_set(lpfc_vfi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5928 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5929 }
5930
5931 return 0;
5932}
5933
5934/**
James Smartb76f2dc2011-07-22 18:37:42 -04005935 * lpfc_sli4_get_allocated_extnts - Get the port's allocated extents.
5936 * @phba: Pointer to HBA context object.
5937 * @type: The resource extent type.
5938 * @extnt_count: buffer to hold port extent count response
5939 * @extnt_size: buffer to hold port extent size response.
5940 *
5941 * This function calls the port to read the host allocated extents
5942 * for a particular type.
5943 **/
5944int
5945lpfc_sli4_get_allocated_extnts(struct lpfc_hba *phba, uint16_t type,
5946 uint16_t *extnt_cnt, uint16_t *extnt_size)
5947{
5948 bool emb;
5949 int rc = 0;
5950 uint16_t curr_blks = 0;
5951 uint32_t req_len, emb_len;
5952 uint32_t alloc_len, mbox_tmo;
5953 struct list_head *blk_list_head;
5954 struct lpfc_rsrc_blks *rsrc_blk;
5955 LPFC_MBOXQ_t *mbox;
5956 void *virtaddr = NULL;
5957 struct lpfc_mbx_nembed_rsrc_extent *n_rsrc;
5958 struct lpfc_mbx_alloc_rsrc_extents *rsrc_ext;
5959 union lpfc_sli4_cfg_shdr *shdr;
5960
5961 switch (type) {
5962 case LPFC_RSC_TYPE_FCOE_VPI:
5963 blk_list_head = &phba->lpfc_vpi_blk_list;
5964 break;
5965 case LPFC_RSC_TYPE_FCOE_XRI:
5966 blk_list_head = &phba->sli4_hba.lpfc_xri_blk_list;
5967 break;
5968 case LPFC_RSC_TYPE_FCOE_VFI:
5969 blk_list_head = &phba->sli4_hba.lpfc_vfi_blk_list;
5970 break;
5971 case LPFC_RSC_TYPE_FCOE_RPI:
5972 blk_list_head = &phba->sli4_hba.lpfc_rpi_blk_list;
5973 break;
5974 default:
5975 return -EIO;
5976 }
5977
5978 /* Count the number of extents currently allocatd for this type. */
5979 list_for_each_entry(rsrc_blk, blk_list_head, list) {
5980 if (curr_blks == 0) {
5981 /*
5982 * The GET_ALLOCATED mailbox does not return the size,
5983 * just the count. The size should be just the size
5984 * stored in the current allocated block and all sizes
5985 * for an extent type are the same so set the return
5986 * value now.
5987 */
5988 *extnt_size = rsrc_blk->rsrc_size;
5989 }
5990 curr_blks++;
5991 }
5992
5993 /* Calculate the total requested length of the dma memory. */
5994 req_len = curr_blks * sizeof(uint16_t);
5995
5996 /*
5997 * Calculate the size of an embedded mailbox. The uint32_t
5998 * accounts for extents-specific word.
5999 */
6000 emb_len = sizeof(MAILBOX_t) - sizeof(struct mbox_header) -
6001 sizeof(uint32_t);
6002
6003 /*
6004 * Presume the allocation and response will fit into an embedded
6005 * mailbox. If not true, reconfigure to a non-embedded mailbox.
6006 */
6007 emb = LPFC_SLI4_MBX_EMBED;
6008 req_len = emb_len;
6009 if (req_len > emb_len) {
6010 req_len = curr_blks * sizeof(uint16_t) +
6011 sizeof(union lpfc_sli4_cfg_shdr) +
6012 sizeof(uint32_t);
6013 emb = LPFC_SLI4_MBX_NEMBED;
6014 }
6015
6016 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6017 if (!mbox)
6018 return -ENOMEM;
6019 memset(mbox, 0, sizeof(LPFC_MBOXQ_t));
6020
6021 alloc_len = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
6022 LPFC_MBOX_OPCODE_GET_ALLOC_RSRC_EXTENT,
6023 req_len, emb);
6024 if (alloc_len < req_len) {
6025 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6026 "2983 Allocated DMA memory size (x%x) is "
6027 "less than the requested DMA memory "
6028 "size (x%x)\n", alloc_len, req_len);
6029 rc = -ENOMEM;
6030 goto err_exit;
6031 }
6032 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, curr_blks, type, emb);
6033 if (unlikely(rc)) {
6034 rc = -EIO;
6035 goto err_exit;
6036 }
6037
6038 if (!phba->sli4_hba.intr_enable)
6039 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
6040 else {
James Smarta183a152011-10-10 21:32:43 -04006041 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smartb76f2dc2011-07-22 18:37:42 -04006042 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
6043 }
6044
6045 if (unlikely(rc)) {
6046 rc = -EIO;
6047 goto err_exit;
6048 }
6049
6050 /*
6051 * Figure out where the response is located. Then get local pointers
6052 * to the response data. The port does not guarantee to respond to
6053 * all extents counts request so update the local variable with the
6054 * allocated count from the port.
6055 */
6056 if (emb == LPFC_SLI4_MBX_EMBED) {
6057 rsrc_ext = &mbox->u.mqe.un.alloc_rsrc_extents;
6058 shdr = &rsrc_ext->header.cfg_shdr;
6059 *extnt_cnt = bf_get(lpfc_mbx_rsrc_cnt, &rsrc_ext->u.rsp);
6060 } else {
6061 virtaddr = mbox->sge_array->addr[0];
6062 n_rsrc = (struct lpfc_mbx_nembed_rsrc_extent *) virtaddr;
6063 shdr = &n_rsrc->cfg_shdr;
6064 *extnt_cnt = bf_get(lpfc_mbx_rsrc_cnt, n_rsrc);
6065 }
6066
6067 if (bf_get(lpfc_mbox_hdr_status, &shdr->response)) {
6068 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
6069 "2984 Failed to read allocated resources "
6070 "for type %d - Status 0x%x Add'l Status 0x%x.\n",
6071 type,
6072 bf_get(lpfc_mbox_hdr_status, &shdr->response),
6073 bf_get(lpfc_mbox_hdr_add_status, &shdr->response));
6074 rc = -EIO;
6075 goto err_exit;
6076 }
6077 err_exit:
6078 lpfc_sli4_mbox_cmd_free(phba, mbox);
6079 return rc;
6080}
6081
6082/**
James Smart8a9d2e82012-05-09 21:16:12 -04006083 * lpfc_sli4_repost_els_sgl_list - Repsot the els buffers sgl pages as block
6084 * @phba: pointer to lpfc hba data structure.
6085 *
6086 * This routine walks the list of els buffers that have been allocated and
6087 * repost them to the port by using SGL block post. This is needed after a
6088 * pci_function_reset/warm_start or start. It attempts to construct blocks
6089 * of els buffer sgls which contains contiguous xris and uses the non-embedded
6090 * SGL block post mailbox commands to post them to the port. For single els
6091 * buffer sgl with non-contiguous xri, if any, it shall use embedded SGL post
6092 * mailbox command for posting.
6093 *
6094 * Returns: 0 = success, non-zero failure.
6095 **/
6096static int
6097lpfc_sli4_repost_els_sgl_list(struct lpfc_hba *phba)
6098{
6099 struct lpfc_sglq *sglq_entry = NULL;
6100 struct lpfc_sglq *sglq_entry_next = NULL;
6101 struct lpfc_sglq *sglq_entry_first = NULL;
James Smart711ea882013-04-17 20:18:29 -04006102 int status, total_cnt, post_cnt = 0, num_posted = 0, block_cnt = 0;
James Smart8a9d2e82012-05-09 21:16:12 -04006103 int last_xritag = NO_XRI;
6104 LIST_HEAD(prep_sgl_list);
6105 LIST_HEAD(blck_sgl_list);
6106 LIST_HEAD(allc_sgl_list);
6107 LIST_HEAD(post_sgl_list);
6108 LIST_HEAD(free_sgl_list);
6109
James Smart38c20672013-03-01 16:37:44 -05006110 spin_lock_irq(&phba->hbalock);
James Smart8a9d2e82012-05-09 21:16:12 -04006111 list_splice_init(&phba->sli4_hba.lpfc_sgl_list, &allc_sgl_list);
James Smart38c20672013-03-01 16:37:44 -05006112 spin_unlock_irq(&phba->hbalock);
James Smart8a9d2e82012-05-09 21:16:12 -04006113
James Smart711ea882013-04-17 20:18:29 -04006114 total_cnt = phba->sli4_hba.els_xri_cnt;
James Smart8a9d2e82012-05-09 21:16:12 -04006115 list_for_each_entry_safe(sglq_entry, sglq_entry_next,
6116 &allc_sgl_list, list) {
6117 list_del_init(&sglq_entry->list);
6118 block_cnt++;
6119 if ((last_xritag != NO_XRI) &&
6120 (sglq_entry->sli4_xritag != last_xritag + 1)) {
6121 /* a hole in xri block, form a sgl posting block */
6122 list_splice_init(&prep_sgl_list, &blck_sgl_list);
6123 post_cnt = block_cnt - 1;
6124 /* prepare list for next posting block */
6125 list_add_tail(&sglq_entry->list, &prep_sgl_list);
6126 block_cnt = 1;
6127 } else {
6128 /* prepare list for next posting block */
6129 list_add_tail(&sglq_entry->list, &prep_sgl_list);
6130 /* enough sgls for non-embed sgl mbox command */
6131 if (block_cnt == LPFC_NEMBED_MBOX_SGL_CNT) {
6132 list_splice_init(&prep_sgl_list,
6133 &blck_sgl_list);
6134 post_cnt = block_cnt;
6135 block_cnt = 0;
6136 }
6137 }
6138 num_posted++;
6139
6140 /* keep track of last sgl's xritag */
6141 last_xritag = sglq_entry->sli4_xritag;
6142
6143 /* end of repost sgl list condition for els buffers */
6144 if (num_posted == phba->sli4_hba.els_xri_cnt) {
6145 if (post_cnt == 0) {
6146 list_splice_init(&prep_sgl_list,
6147 &blck_sgl_list);
6148 post_cnt = block_cnt;
6149 } else if (block_cnt == 1) {
6150 status = lpfc_sli4_post_sgl(phba,
6151 sglq_entry->phys, 0,
6152 sglq_entry->sli4_xritag);
6153 if (!status) {
6154 /* successful, put sgl to posted list */
6155 list_add_tail(&sglq_entry->list,
6156 &post_sgl_list);
6157 } else {
6158 /* Failure, put sgl to free list */
6159 lpfc_printf_log(phba, KERN_WARNING,
6160 LOG_SLI,
6161 "3159 Failed to post els "
6162 "sgl, xritag:x%x\n",
6163 sglq_entry->sli4_xritag);
6164 list_add_tail(&sglq_entry->list,
6165 &free_sgl_list);
James Smart711ea882013-04-17 20:18:29 -04006166 total_cnt--;
James Smart8a9d2e82012-05-09 21:16:12 -04006167 }
6168 }
6169 }
6170
6171 /* continue until a nembed page worth of sgls */
6172 if (post_cnt == 0)
6173 continue;
6174
6175 /* post the els buffer list sgls as a block */
6176 status = lpfc_sli4_post_els_sgl_list(phba, &blck_sgl_list,
6177 post_cnt);
6178
6179 if (!status) {
6180 /* success, put sgl list to posted sgl list */
6181 list_splice_init(&blck_sgl_list, &post_sgl_list);
6182 } else {
6183 /* Failure, put sgl list to free sgl list */
6184 sglq_entry_first = list_first_entry(&blck_sgl_list,
6185 struct lpfc_sglq,
6186 list);
6187 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
6188 "3160 Failed to post els sgl-list, "
6189 "xritag:x%x-x%x\n",
6190 sglq_entry_first->sli4_xritag,
6191 (sglq_entry_first->sli4_xritag +
6192 post_cnt - 1));
6193 list_splice_init(&blck_sgl_list, &free_sgl_list);
James Smart711ea882013-04-17 20:18:29 -04006194 total_cnt -= post_cnt;
James Smart8a9d2e82012-05-09 21:16:12 -04006195 }
6196
6197 /* don't reset xirtag due to hole in xri block */
6198 if (block_cnt == 0)
6199 last_xritag = NO_XRI;
6200
6201 /* reset els sgl post count for next round of posting */
6202 post_cnt = 0;
6203 }
James Smart711ea882013-04-17 20:18:29 -04006204 /* update the number of XRIs posted for ELS */
6205 phba->sli4_hba.els_xri_cnt = total_cnt;
James Smart8a9d2e82012-05-09 21:16:12 -04006206
6207 /* free the els sgls failed to post */
6208 lpfc_free_sgl_list(phba, &free_sgl_list);
6209
6210 /* push els sgls posted to the availble list */
6211 if (!list_empty(&post_sgl_list)) {
James Smart38c20672013-03-01 16:37:44 -05006212 spin_lock_irq(&phba->hbalock);
James Smart8a9d2e82012-05-09 21:16:12 -04006213 list_splice_init(&post_sgl_list,
6214 &phba->sli4_hba.lpfc_sgl_list);
James Smart38c20672013-03-01 16:37:44 -05006215 spin_unlock_irq(&phba->hbalock);
James Smart8a9d2e82012-05-09 21:16:12 -04006216 } else {
6217 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
6218 "3161 Failure to post els sgl to port.\n");
6219 return -EIO;
6220 }
6221 return 0;
6222}
6223
6224/**
James Smartda0436e2009-05-22 14:51:39 -04006225 * lpfc_sli4_hba_setup - SLI4 device intialization PCI function
6226 * @phba: Pointer to HBA context object.
6227 *
6228 * This function is the main SLI4 device intialization PCI function. This
6229 * function is called by the HBA intialization code, HBA reset code and
6230 * HBA error attention handler code. Caller is not required to hold any
6231 * locks.
6232 **/
6233int
6234lpfc_sli4_hba_setup(struct lpfc_hba *phba)
6235{
6236 int rc;
6237 LPFC_MBOXQ_t *mboxq;
6238 struct lpfc_mqe *mqe;
6239 uint8_t *vpd;
6240 uint32_t vpd_size;
6241 uint32_t ftr_rsp = 0;
6242 struct Scsi_Host *shost = lpfc_shost_from_vport(phba->pport);
6243 struct lpfc_vport *vport = phba->pport;
6244 struct lpfc_dmabuf *mp;
6245
6246 /* Perform a PCI function reset to start from clean */
6247 rc = lpfc_pci_function_reset(phba);
6248 if (unlikely(rc))
6249 return -ENODEV;
6250
6251 /* Check the HBA Host Status Register for readyness */
6252 rc = lpfc_sli4_post_status_check(phba);
6253 if (unlikely(rc))
6254 return -ENODEV;
6255 else {
6256 spin_lock_irq(&phba->hbalock);
6257 phba->sli.sli_flag |= LPFC_SLI_ACTIVE;
6258 spin_unlock_irq(&phba->hbalock);
6259 }
6260
6261 /*
6262 * Allocate a single mailbox container for initializing the
6263 * port.
6264 */
6265 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6266 if (!mboxq)
6267 return -ENOMEM;
6268
James Smartda0436e2009-05-22 14:51:39 -04006269 /* Issue READ_REV to collect vpd and FW information. */
James Smart49198b32010-04-06 15:04:33 -04006270 vpd_size = SLI4_PAGE_SIZE;
James Smartda0436e2009-05-22 14:51:39 -04006271 vpd = kzalloc(vpd_size, GFP_KERNEL);
6272 if (!vpd) {
6273 rc = -ENOMEM;
6274 goto out_free_mbox;
6275 }
6276
6277 rc = lpfc_sli4_read_rev(phba, mboxq, vpd, &vpd_size);
James Smart76a95d72010-11-20 23:11:48 -05006278 if (unlikely(rc)) {
6279 kfree(vpd);
6280 goto out_free_mbox;
6281 }
James Smart572709e2013-07-15 18:32:43 -04006282
James Smartda0436e2009-05-22 14:51:39 -04006283 mqe = &mboxq->u.mqe;
James Smartf1126682009-06-10 17:22:44 -04006284 phba->sli_rev = bf_get(lpfc_mbx_rd_rev_sli_lvl, &mqe->un.read_rev);
6285 if (bf_get(lpfc_mbx_rd_rev_fcoe, &mqe->un.read_rev))
James Smart76a95d72010-11-20 23:11:48 -05006286 phba->hba_flag |= HBA_FCOE_MODE;
6287 else
6288 phba->hba_flag &= ~HBA_FCOE_MODE;
James Smart45ed1192009-10-02 15:17:02 -04006289
6290 if (bf_get(lpfc_mbx_rd_rev_cee_ver, &mqe->un.read_rev) ==
6291 LPFC_DCBX_CEE_MODE)
6292 phba->hba_flag |= HBA_FIP_SUPPORT;
6293 else
6294 phba->hba_flag &= ~HBA_FIP_SUPPORT;
6295
James Smart4f2e66c2012-05-09 21:17:07 -04006296 phba->hba_flag &= ~HBA_FCP_IOQ_FLUSH;
6297
James Smartc31098c2011-04-16 11:03:33 -04006298 if (phba->sli_rev != LPFC_SLI_REV4) {
James Smartda0436e2009-05-22 14:51:39 -04006299 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6300 "0376 READ_REV Error. SLI Level %d "
6301 "FCoE enabled %d\n",
James Smart76a95d72010-11-20 23:11:48 -05006302 phba->sli_rev, phba->hba_flag & HBA_FCOE_MODE);
James Smartda0436e2009-05-22 14:51:39 -04006303 rc = -EIO;
James Smart76a95d72010-11-20 23:11:48 -05006304 kfree(vpd);
6305 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006306 }
James Smartcd1c8302011-10-10 21:33:25 -04006307
6308 /*
James Smartff78d8f2011-12-13 13:21:35 -05006309 * Continue initialization with default values even if driver failed
6310 * to read FCoE param config regions, only read parameters if the
6311 * board is FCoE
6312 */
6313 if (phba->hba_flag & HBA_FCOE_MODE &&
6314 lpfc_sli4_read_fcoe_params(phba))
6315 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_INIT,
6316 "2570 Failed to read FCoE parameters\n");
6317
6318 /*
James Smartcd1c8302011-10-10 21:33:25 -04006319 * Retrieve sli4 device physical port name, failure of doing it
6320 * is considered as non-fatal.
6321 */
6322 rc = lpfc_sli4_retrieve_pport_name(phba);
6323 if (!rc)
6324 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
6325 "3080 Successful retrieving SLI4 device "
6326 "physical port name: %s.\n", phba->Port);
6327
James Smartda0436e2009-05-22 14:51:39 -04006328 /*
6329 * Evaluate the read rev and vpd data. Populate the driver
6330 * state with the results. If this routine fails, the failure
6331 * is not fatal as the driver will use generic values.
6332 */
6333 rc = lpfc_parse_vpd(phba, vpd, vpd_size);
6334 if (unlikely(!rc)) {
6335 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6336 "0377 Error %d parsing vpd. "
6337 "Using defaults.\n", rc);
6338 rc = 0;
6339 }
James Smart76a95d72010-11-20 23:11:48 -05006340 kfree(vpd);
James Smartda0436e2009-05-22 14:51:39 -04006341
James Smartf1126682009-06-10 17:22:44 -04006342 /* Save information as VPD data */
6343 phba->vpd.rev.biuRev = mqe->un.read_rev.first_hw_rev;
6344 phba->vpd.rev.smRev = mqe->un.read_rev.second_hw_rev;
6345 phba->vpd.rev.endecRev = mqe->un.read_rev.third_hw_rev;
6346 phba->vpd.rev.fcphHigh = bf_get(lpfc_mbx_rd_rev_fcph_high,
6347 &mqe->un.read_rev);
6348 phba->vpd.rev.fcphLow = bf_get(lpfc_mbx_rd_rev_fcph_low,
6349 &mqe->un.read_rev);
6350 phba->vpd.rev.feaLevelHigh = bf_get(lpfc_mbx_rd_rev_ftr_lvl_high,
6351 &mqe->un.read_rev);
6352 phba->vpd.rev.feaLevelLow = bf_get(lpfc_mbx_rd_rev_ftr_lvl_low,
6353 &mqe->un.read_rev);
6354 phba->vpd.rev.sli1FwRev = mqe->un.read_rev.fw_id_rev;
6355 memcpy(phba->vpd.rev.sli1FwName, mqe->un.read_rev.fw_name, 16);
6356 phba->vpd.rev.sli2FwRev = mqe->un.read_rev.ulp_fw_id_rev;
6357 memcpy(phba->vpd.rev.sli2FwName, mqe->un.read_rev.ulp_fw_name, 16);
6358 phba->vpd.rev.opFwRev = mqe->un.read_rev.fw_id_rev;
6359 memcpy(phba->vpd.rev.opFwName, mqe->un.read_rev.fw_name, 16);
6360 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
6361 "(%d):0380 READ_REV Status x%x "
6362 "fw_rev:%s fcphHi:%x fcphLo:%x flHi:%x flLo:%x\n",
6363 mboxq->vport ? mboxq->vport->vpi : 0,
6364 bf_get(lpfc_mqe_status, mqe),
6365 phba->vpd.rev.opFwName,
6366 phba->vpd.rev.fcphHigh, phba->vpd.rev.fcphLow,
6367 phba->vpd.rev.feaLevelHigh, phba->vpd.rev.feaLevelLow);
James Smartda0436e2009-05-22 14:51:39 -04006368
James Smart572709e2013-07-15 18:32:43 -04006369 /* Reset the DFT_LUN_Q_DEPTH to (max xri >> 3) */
6370 rc = (phba->sli4_hba.max_cfg_param.max_xri >> 3);
6371 if (phba->pport->cfg_lun_queue_depth > rc) {
6372 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
6373 "3362 LUN queue depth changed from %d to %d\n",
6374 phba->pport->cfg_lun_queue_depth, rc);
6375 phba->pport->cfg_lun_queue_depth = rc;
6376 }
6377
6378
James Smartda0436e2009-05-22 14:51:39 -04006379 /*
6380 * Discover the port's supported feature set and match it against the
6381 * hosts requests.
6382 */
6383 lpfc_request_features(phba, mboxq);
6384 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6385 if (unlikely(rc)) {
6386 rc = -EIO;
James Smart76a95d72010-11-20 23:11:48 -05006387 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006388 }
6389
6390 /*
6391 * The port must support FCP initiator mode as this is the
6392 * only mode running in the host.
6393 */
6394 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_fcpi, &mqe->un.req_ftrs))) {
6395 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
6396 "0378 No support for fcpi mode.\n");
6397 ftr_rsp++;
6398 }
James Smartfedd3b72011-02-16 12:39:24 -05006399 if (bf_get(lpfc_mbx_rq_ftr_rsp_perfh, &mqe->un.req_ftrs))
6400 phba->sli3_options |= LPFC_SLI4_PERFH_ENABLED;
6401 else
6402 phba->sli3_options &= ~LPFC_SLI4_PERFH_ENABLED;
James Smartda0436e2009-05-22 14:51:39 -04006403 /*
6404 * If the port cannot support the host's requested features
6405 * then turn off the global config parameters to disable the
6406 * feature in the driver. This is not a fatal error.
6407 */
James Smartbf086112011-08-21 21:48:13 -04006408 phba->sli3_options &= ~LPFC_SLI3_BG_ENABLED;
6409 if (phba->cfg_enable_bg) {
6410 if (bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs))
6411 phba->sli3_options |= LPFC_SLI3_BG_ENABLED;
6412 else
6413 ftr_rsp++;
6414 }
James Smartda0436e2009-05-22 14:51:39 -04006415
6416 if (phba->max_vpi && phba->cfg_enable_npiv &&
6417 !(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
6418 ftr_rsp++;
6419
6420 if (ftr_rsp) {
6421 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
6422 "0379 Feature Mismatch Data: x%08x %08x "
6423 "x%x x%x x%x\n", mqe->un.req_ftrs.word2,
6424 mqe->un.req_ftrs.word3, phba->cfg_enable_bg,
6425 phba->cfg_enable_npiv, phba->max_vpi);
6426 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs)))
6427 phba->cfg_enable_bg = 0;
6428 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
6429 phba->cfg_enable_npiv = 0;
6430 }
6431
6432 /* These SLI3 features are assumed in SLI4 */
6433 spin_lock_irq(&phba->hbalock);
6434 phba->sli3_options |= (LPFC_SLI3_NPIV_ENABLED | LPFC_SLI3_HBQ_ENABLED);
6435 spin_unlock_irq(&phba->hbalock);
6436
James Smart6d368e52011-05-24 11:44:12 -04006437 /*
6438 * Allocate all resources (xri,rpi,vpi,vfi) now. Subsequent
6439 * calls depends on these resources to complete port setup.
6440 */
6441 rc = lpfc_sli4_alloc_resource_identifiers(phba);
6442 if (rc) {
6443 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6444 "2920 Failed to alloc Resource IDs "
6445 "rc = x%x\n", rc);
6446 goto out_free_mbox;
6447 }
6448
James Smartda0436e2009-05-22 14:51:39 -04006449 /* Read the port's service parameters. */
James Smart9f1177a2010-02-26 14:12:57 -05006450 rc = lpfc_read_sparam(phba, mboxq, vport->vpi);
6451 if (rc) {
6452 phba->link_state = LPFC_HBA_ERROR;
6453 rc = -ENOMEM;
James Smart76a95d72010-11-20 23:11:48 -05006454 goto out_free_mbox;
James Smart9f1177a2010-02-26 14:12:57 -05006455 }
6456
James Smartda0436e2009-05-22 14:51:39 -04006457 mboxq->vport = vport;
6458 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6459 mp = (struct lpfc_dmabuf *) mboxq->context1;
6460 if (rc == MBX_SUCCESS) {
6461 memcpy(&vport->fc_sparam, mp->virt, sizeof(struct serv_parm));
6462 rc = 0;
6463 }
6464
6465 /*
6466 * This memory was allocated by the lpfc_read_sparam routine. Release
6467 * it to the mbuf pool.
6468 */
6469 lpfc_mbuf_free(phba, mp->virt, mp->phys);
6470 kfree(mp);
6471 mboxq->context1 = NULL;
6472 if (unlikely(rc)) {
6473 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6474 "0382 READ_SPARAM command failed "
6475 "status %d, mbxStatus x%x\n",
6476 rc, bf_get(lpfc_mqe_status, mqe));
6477 phba->link_state = LPFC_HBA_ERROR;
6478 rc = -EIO;
James Smart76a95d72010-11-20 23:11:48 -05006479 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006480 }
6481
James Smart05580562011-05-24 11:40:48 -04006482 lpfc_update_vport_wwn(vport);
James Smartda0436e2009-05-22 14:51:39 -04006483
6484 /* Update the fc_host data structures with new wwn. */
6485 fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn);
6486 fc_host_port_name(shost) = wwn_to_u64(vport->fc_portname.u.wwn);
6487
James Smart8a9d2e82012-05-09 21:16:12 -04006488 /* update host els and scsi xri-sgl sizes and mappings */
6489 rc = lpfc_sli4_xri_sgl_update(phba);
6490 if (unlikely(rc)) {
6491 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6492 "1400 Failed to update xri-sgl size and "
6493 "mapping: %d\n", rc);
6494 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006495 }
6496
James Smart8a9d2e82012-05-09 21:16:12 -04006497 /* register the els sgl pool to the port */
6498 rc = lpfc_sli4_repost_els_sgl_list(phba);
6499 if (unlikely(rc)) {
6500 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6501 "0582 Error %d during els sgl post "
6502 "operation\n", rc);
6503 rc = -ENODEV;
6504 goto out_free_mbox;
6505 }
6506
6507 /* register the allocated scsi sgl pool to the port */
James Smartda0436e2009-05-22 14:51:39 -04006508 rc = lpfc_sli4_repost_scsi_sgl_list(phba);
6509 if (unlikely(rc)) {
James Smart6d368e52011-05-24 11:44:12 -04006510 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smart6a9c52c2009-10-02 15:16:51 -04006511 "0383 Error %d during scsi sgl post "
6512 "operation\n", rc);
James Smartda0436e2009-05-22 14:51:39 -04006513 /* Some Scsi buffers were moved to the abort scsi list */
6514 /* A pci function reset will repost them */
6515 rc = -ENODEV;
James Smart76a95d72010-11-20 23:11:48 -05006516 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006517 }
6518
6519 /* Post the rpi header region to the device. */
6520 rc = lpfc_sli4_post_all_rpi_hdrs(phba);
6521 if (unlikely(rc)) {
6522 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6523 "0393 Error %d during rpi post operation\n",
6524 rc);
6525 rc = -ENODEV;
James Smart76a95d72010-11-20 23:11:48 -05006526 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006527 }
James Smart97f2ecf2012-03-01 22:35:23 -05006528 lpfc_sli4_node_prep(phba);
James Smartda0436e2009-05-22 14:51:39 -04006529
James Smart5350d872011-10-10 21:33:49 -04006530 /* Create all the SLI4 queues */
6531 rc = lpfc_sli4_queue_create(phba);
6532 if (rc) {
6533 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6534 "3089 Failed to allocate queues\n");
6535 rc = -ENODEV;
6536 goto out_stop_timers;
6537 }
James Smartda0436e2009-05-22 14:51:39 -04006538 /* Set up all the queues to the device */
6539 rc = lpfc_sli4_queue_setup(phba);
6540 if (unlikely(rc)) {
6541 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6542 "0381 Error %d during queue setup.\n ", rc);
James Smart5350d872011-10-10 21:33:49 -04006543 goto out_destroy_queue;
James Smartda0436e2009-05-22 14:51:39 -04006544 }
6545
6546 /* Arm the CQs and then EQs on device */
6547 lpfc_sli4_arm_cqeq_intr(phba);
6548
6549 /* Indicate device interrupt mode */
6550 phba->sli4_hba.intr_enable = 1;
6551
6552 /* Allow asynchronous mailbox command to go through */
6553 spin_lock_irq(&phba->hbalock);
6554 phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
6555 spin_unlock_irq(&phba->hbalock);
6556
6557 /* Post receive buffers to the device */
6558 lpfc_sli4_rb_setup(phba);
6559
James Smartfc2b9892010-02-26 14:15:29 -05006560 /* Reset HBA FCF states after HBA reset */
6561 phba->fcf.fcf_flag = 0;
6562 phba->fcf.current_rec.flag = 0;
6563
James Smartda0436e2009-05-22 14:51:39 -04006564 /* Start the ELS watchdog timer */
James Smart8fa38512009-07-19 10:01:03 -04006565 mod_timer(&vport->els_tmofunc,
James Smart256ec0d2013-04-17 20:14:58 -04006566 jiffies + msecs_to_jiffies(1000 * (phba->fc_ratov * 2)));
James Smartda0436e2009-05-22 14:51:39 -04006567
6568 /* Start heart beat timer */
6569 mod_timer(&phba->hb_tmofunc,
James Smart256ec0d2013-04-17 20:14:58 -04006570 jiffies + msecs_to_jiffies(1000 * LPFC_HB_MBOX_INTERVAL));
James Smartda0436e2009-05-22 14:51:39 -04006571 phba->hb_outstanding = 0;
6572 phba->last_completion_time = jiffies;
6573
6574 /* Start error attention (ERATT) polling timer */
James Smart256ec0d2013-04-17 20:14:58 -04006575 mod_timer(&phba->eratt_poll,
6576 jiffies + msecs_to_jiffies(1000 * LPFC_ERATT_POLL_INTERVAL));
James Smartda0436e2009-05-22 14:51:39 -04006577
James Smart75baf692010-06-08 18:31:21 -04006578 /* Enable PCIe device Advanced Error Reporting (AER) if configured */
6579 if (phba->cfg_aer_support == 1 && !(phba->hba_flag & HBA_AER_ENABLED)) {
6580 rc = pci_enable_pcie_error_reporting(phba->pcidev);
6581 if (!rc) {
6582 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6583 "2829 This device supports "
6584 "Advanced Error Reporting (AER)\n");
6585 spin_lock_irq(&phba->hbalock);
6586 phba->hba_flag |= HBA_AER_ENABLED;
6587 spin_unlock_irq(&phba->hbalock);
6588 } else {
6589 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6590 "2830 This device does not support "
6591 "Advanced Error Reporting (AER)\n");
6592 phba->cfg_aer_support = 0;
6593 }
James Smart0a96e972011-07-22 18:37:28 -04006594 rc = 0;
James Smart75baf692010-06-08 18:31:21 -04006595 }
6596
James Smart76a95d72010-11-20 23:11:48 -05006597 if (!(phba->hba_flag & HBA_FCOE_MODE)) {
6598 /*
6599 * The FC Port needs to register FCFI (index 0)
6600 */
6601 lpfc_reg_fcfi(phba, mboxq);
6602 mboxq->vport = phba->pport;
6603 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
James Smart9589b0622011-04-16 11:03:17 -04006604 if (rc != MBX_SUCCESS)
James Smart76a95d72010-11-20 23:11:48 -05006605 goto out_unset_queue;
James Smart9589b0622011-04-16 11:03:17 -04006606 rc = 0;
6607 phba->fcf.fcfi = bf_get(lpfc_reg_fcfi_fcfi,
6608 &mboxq->u.mqe.un.reg_fcfi);
James Smart026abb82011-12-13 13:20:45 -05006609
6610 /* Check if the port is configured to be disabled */
6611 lpfc_sli_read_link_ste(phba);
James Smart76a95d72010-11-20 23:11:48 -05006612 }
James Smart026abb82011-12-13 13:20:45 -05006613
James Smartda0436e2009-05-22 14:51:39 -04006614 /*
6615 * The port is ready, set the host's link state to LINK_DOWN
6616 * in preparation for link interrupts.
6617 */
James Smartda0436e2009-05-22 14:51:39 -04006618 spin_lock_irq(&phba->hbalock);
6619 phba->link_state = LPFC_LINK_DOWN;
6620 spin_unlock_irq(&phba->hbalock);
James Smart026abb82011-12-13 13:20:45 -05006621 if (!(phba->hba_flag & HBA_FCOE_MODE) &&
6622 (phba->hba_flag & LINK_DISABLED)) {
6623 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_SLI,
6624 "3103 Adapter Link is disabled.\n");
6625 lpfc_down_link(phba, mboxq);
6626 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6627 if (rc != MBX_SUCCESS) {
6628 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_SLI,
6629 "3104 Adapter failed to issue "
6630 "DOWN_LINK mbox cmd, rc:x%x\n", rc);
6631 goto out_unset_queue;
6632 }
6633 } else if (phba->cfg_suppress_link_up == LPFC_INITIALIZE_LINK) {
James Smart1b511972011-12-13 13:23:09 -05006634 /* don't perform init_link on SLI4 FC port loopback test */
6635 if (!(phba->link_flag & LS_LOOPBACK_MODE)) {
6636 rc = phba->lpfc_hba_init_link(phba, MBX_NOWAIT);
6637 if (rc)
6638 goto out_unset_queue;
6639 }
James Smart5350d872011-10-10 21:33:49 -04006640 }
6641 mempool_free(mboxq, phba->mbox_mem_pool);
6642 return rc;
James Smart76a95d72010-11-20 23:11:48 -05006643out_unset_queue:
James Smartda0436e2009-05-22 14:51:39 -04006644 /* Unset all the queues set up in this routine when error out */
James Smart5350d872011-10-10 21:33:49 -04006645 lpfc_sli4_queue_unset(phba);
6646out_destroy_queue:
6647 lpfc_sli4_queue_destroy(phba);
James Smartda0436e2009-05-22 14:51:39 -04006648out_stop_timers:
James Smart5350d872011-10-10 21:33:49 -04006649 lpfc_stop_hba_timers(phba);
James Smartda0436e2009-05-22 14:51:39 -04006650out_free_mbox:
6651 mempool_free(mboxq, phba->mbox_mem_pool);
6652 return rc;
6653}
James Smarte59058c2008-08-24 21:49:00 -04006654
6655/**
James Smart3621a712009-04-06 18:47:14 -04006656 * lpfc_mbox_timeout - Timeout call back function for mbox timer
James Smarte59058c2008-08-24 21:49:00 -04006657 * @ptr: context object - pointer to hba structure.
dea31012005-04-17 16:05:31 -05006658 *
James Smarte59058c2008-08-24 21:49:00 -04006659 * This is the callback function for mailbox timer. The mailbox
6660 * timer is armed when a new mailbox command is issued and the timer
6661 * is deleted when the mailbox complete. The function is called by
6662 * the kernel timer code when a mailbox does not complete within
6663 * expected time. This function wakes up the worker thread to
6664 * process the mailbox timeout and returns. All the processing is
6665 * done by the worker thread function lpfc_mbox_timeout_handler.
6666 **/
dea31012005-04-17 16:05:31 -05006667void
6668lpfc_mbox_timeout(unsigned long ptr)
6669{
James Smart92d7f7b2007-06-17 19:56:38 -05006670 struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
dea31012005-04-17 16:05:31 -05006671 unsigned long iflag;
James Smart2e0fef82007-06-17 19:56:36 -05006672 uint32_t tmo_posted;
dea31012005-04-17 16:05:31 -05006673
James Smart2e0fef82007-06-17 19:56:36 -05006674 spin_lock_irqsave(&phba->pport->work_port_lock, iflag);
James Smart92d7f7b2007-06-17 19:56:38 -05006675 tmo_posted = phba->pport->work_port_events & WORKER_MBOX_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05006676 if (!tmo_posted)
6677 phba->pport->work_port_events |= WORKER_MBOX_TMO;
6678 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflag);
6679
James Smart5e9d9b82008-06-14 22:52:53 -04006680 if (!tmo_posted)
6681 lpfc_worker_wake_up(phba);
6682 return;
dea31012005-04-17 16:05:31 -05006683}
6684
James Smarte8d3c3b2013-10-10 12:21:30 -04006685/**
6686 * lpfc_sli4_mbox_completions_pending - check to see if any mailbox completions
6687 * are pending
6688 * @phba: Pointer to HBA context object.
6689 *
6690 * This function checks if any mailbox completions are present on the mailbox
6691 * completion queue.
6692 **/
6693bool
6694lpfc_sli4_mbox_completions_pending(struct lpfc_hba *phba)
6695{
6696
6697 uint32_t idx;
6698 struct lpfc_queue *mcq;
6699 struct lpfc_mcqe *mcqe;
6700 bool pending_completions = false;
6701
6702 if (unlikely(!phba) || (phba->sli_rev != LPFC_SLI_REV4))
6703 return false;
6704
6705 /* Check for completions on mailbox completion queue */
6706
6707 mcq = phba->sli4_hba.mbx_cq;
6708 idx = mcq->hba_index;
6709 while (bf_get_le32(lpfc_cqe_valid, mcq->qe[idx].cqe)) {
6710 mcqe = (struct lpfc_mcqe *)mcq->qe[idx].cqe;
6711 if (bf_get_le32(lpfc_trailer_completed, mcqe) &&
6712 (!bf_get_le32(lpfc_trailer_async, mcqe))) {
6713 pending_completions = true;
6714 break;
6715 }
6716 idx = (idx + 1) % mcq->entry_count;
6717 if (mcq->hba_index == idx)
6718 break;
6719 }
6720 return pending_completions;
6721
6722}
6723
6724/**
6725 * lpfc_sli4_process_missed_mbox_completions - process mbox completions
6726 * that were missed.
6727 * @phba: Pointer to HBA context object.
6728 *
6729 * For sli4, it is possible to miss an interrupt. As such mbox completions
6730 * maybe missed causing erroneous mailbox timeouts to occur. This function
6731 * checks to see if mbox completions are on the mailbox completion queue
6732 * and will process all the completions associated with the eq for the
6733 * mailbox completion queue.
6734 **/
6735bool
6736lpfc_sli4_process_missed_mbox_completions(struct lpfc_hba *phba)
6737{
6738
6739 uint32_t eqidx;
6740 struct lpfc_queue *fpeq = NULL;
6741 struct lpfc_eqe *eqe;
6742 bool mbox_pending;
6743
6744 if (unlikely(!phba) || (phba->sli_rev != LPFC_SLI_REV4))
6745 return false;
6746
6747 /* Find the eq associated with the mcq */
6748
6749 if (phba->sli4_hba.hba_eq)
6750 for (eqidx = 0; eqidx < phba->cfg_fcp_io_channel; eqidx++)
6751 if (phba->sli4_hba.hba_eq[eqidx]->queue_id ==
6752 phba->sli4_hba.mbx_cq->assoc_qid) {
6753 fpeq = phba->sli4_hba.hba_eq[eqidx];
6754 break;
6755 }
6756 if (!fpeq)
6757 return false;
6758
6759 /* Turn off interrupts from this EQ */
6760
6761 lpfc_sli4_eq_clr_intr(fpeq);
6762
6763 /* Check to see if a mbox completion is pending */
6764
6765 mbox_pending = lpfc_sli4_mbox_completions_pending(phba);
6766
6767 /*
6768 * If a mbox completion is pending, process all the events on EQ
6769 * associated with the mbox completion queue (this could include
6770 * mailbox commands, async events, els commands, receive queue data
6771 * and fcp commands)
6772 */
6773
6774 if (mbox_pending)
6775 while ((eqe = lpfc_sli4_eq_get(fpeq))) {
6776 lpfc_sli4_hba_handle_eqe(phba, eqe, eqidx);
6777 fpeq->EQ_processed++;
6778 }
6779
6780 /* Always clear and re-arm the EQ */
6781
6782 lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_REARM);
6783
6784 return mbox_pending;
6785
6786}
James Smarte59058c2008-08-24 21:49:00 -04006787
6788/**
James Smart3621a712009-04-06 18:47:14 -04006789 * lpfc_mbox_timeout_handler - Worker thread function to handle mailbox timeout
James Smarte59058c2008-08-24 21:49:00 -04006790 * @phba: Pointer to HBA context object.
6791 *
6792 * This function is called from worker thread when a mailbox command times out.
6793 * The caller is not required to hold any locks. This function will reset the
6794 * HBA and recover all the pending commands.
6795 **/
dea31012005-04-17 16:05:31 -05006796void
6797lpfc_mbox_timeout_handler(struct lpfc_hba *phba)
6798{
James Smart2e0fef82007-06-17 19:56:36 -05006799 LPFC_MBOXQ_t *pmbox = phba->sli.mbox_active;
James Smart04c68492009-05-22 14:52:52 -04006800 MAILBOX_t *mb = &pmbox->u.mb;
James Smart1dcb58e2007-04-25 09:51:30 -04006801 struct lpfc_sli *psli = &phba->sli;
dea31012005-04-17 16:05:31 -05006802
James Smarte8d3c3b2013-10-10 12:21:30 -04006803 /* If the mailbox completed, process the completion and return */
6804 if (lpfc_sli4_process_missed_mbox_completions(phba))
6805 return;
6806
James Smarta257bf92009-04-06 18:48:10 -04006807 /* Check the pmbox pointer first. There is a race condition
6808 * between the mbox timeout handler getting executed in the
6809 * worklist and the mailbox actually completing. When this
6810 * race condition occurs, the mbox_active will be NULL.
6811 */
6812 spin_lock_irq(&phba->hbalock);
6813 if (pmbox == NULL) {
6814 lpfc_printf_log(phba, KERN_WARNING,
6815 LOG_MBOX | LOG_SLI,
6816 "0353 Active Mailbox cleared - mailbox timeout "
6817 "exiting\n");
6818 spin_unlock_irq(&phba->hbalock);
6819 return;
6820 }
6821
dea31012005-04-17 16:05:31 -05006822 /* Mbox cmd <mbxCommand> timeout */
James Smarted957682007-06-17 19:56:37 -05006823 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04006824 "0310 Mailbox command x%x timeout Data: x%x x%x x%p\n",
James Smart92d7f7b2007-06-17 19:56:38 -05006825 mb->mbxCommand,
6826 phba->pport->port_state,
6827 phba->sli.sli_flag,
6828 phba->sli.mbox_active);
James Smarta257bf92009-04-06 18:48:10 -04006829 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05006830
James Smart1dcb58e2007-04-25 09:51:30 -04006831 /* Setting state unknown so lpfc_sli_abort_iocb_ring
6832 * would get IOCB_ERROR from lpfc_sli_issue_iocb, allowing
Lucas De Marchi25985ed2011-03-30 22:57:33 -03006833 * it to fail all outstanding SCSI IO.
James Smart1dcb58e2007-04-25 09:51:30 -04006834 */
James Smart2e0fef82007-06-17 19:56:36 -05006835 spin_lock_irq(&phba->pport->work_port_lock);
6836 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
6837 spin_unlock_irq(&phba->pport->work_port_lock);
6838 spin_lock_irq(&phba->hbalock);
6839 phba->link_state = LPFC_LINK_UNKNOWN;
James Smartf4b4c682009-05-22 14:53:12 -04006840 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05006841 spin_unlock_irq(&phba->hbalock);
James Smart1dcb58e2007-04-25 09:51:30 -04006842
James Smartdb55fba2014-04-04 13:52:02 -04006843 lpfc_sli_abort_fcp_rings(phba);
James Smart1dcb58e2007-04-25 09:51:30 -04006844
6845 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smart76bb24e2007-10-27 13:38:00 -04006846 "0345 Resetting board due to mailbox timeout\n");
James Smart3772a992009-05-22 14:50:54 -04006847
6848 /* Reset the HBA device */
6849 lpfc_reset_hba(phba);
dea31012005-04-17 16:05:31 -05006850}
6851
James Smarte59058c2008-08-24 21:49:00 -04006852/**
James Smart3772a992009-05-22 14:50:54 -04006853 * lpfc_sli_issue_mbox_s3 - Issue an SLI3 mailbox command to firmware
James Smarte59058c2008-08-24 21:49:00 -04006854 * @phba: Pointer to HBA context object.
6855 * @pmbox: Pointer to mailbox object.
6856 * @flag: Flag indicating how the mailbox need to be processed.
6857 *
6858 * This function is called by discovery code and HBA management code
James Smart3772a992009-05-22 14:50:54 -04006859 * to submit a mailbox command to firmware with SLI-3 interface spec. This
6860 * function gets the hbalock to protect the data structures.
James Smarte59058c2008-08-24 21:49:00 -04006861 * The mailbox command can be submitted in polling mode, in which case
6862 * this function will wait in a polling loop for the completion of the
6863 * mailbox.
6864 * If the mailbox is submitted in no_wait mode (not polling) the
6865 * function will submit the command and returns immediately without waiting
6866 * for the mailbox completion. The no_wait is supported only when HBA
6867 * is in SLI2/SLI3 mode - interrupts are enabled.
6868 * The SLI interface allows only one mailbox pending at a time. If the
6869 * mailbox is issued in polling mode and there is already a mailbox
6870 * pending, then the function will return an error. If the mailbox is issued
6871 * in NO_WAIT mode and there is a mailbox pending already, the function
6872 * will return MBX_BUSY after queuing the mailbox into mailbox queue.
6873 * The sli layer owns the mailbox object until the completion of mailbox
6874 * command if this function return MBX_BUSY or MBX_SUCCESS. For all other
6875 * return codes the caller owns the mailbox command after the return of
6876 * the function.
6877 **/
James Smart3772a992009-05-22 14:50:54 -04006878static int
6879lpfc_sli_issue_mbox_s3(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox,
6880 uint32_t flag)
dea31012005-04-17 16:05:31 -05006881{
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006882 MAILBOX_t *mbx;
James Smart2e0fef82007-06-17 19:56:36 -05006883 struct lpfc_sli *psli = &phba->sli;
dea31012005-04-17 16:05:31 -05006884 uint32_t status, evtctr;
James Smart9940b972011-03-11 16:06:12 -05006885 uint32_t ha_copy, hc_copy;
dea31012005-04-17 16:05:31 -05006886 int i;
James Smart09372822008-01-11 01:52:54 -05006887 unsigned long timeout;
dea31012005-04-17 16:05:31 -05006888 unsigned long drvr_flag = 0;
James Smart34b02dc2008-08-24 21:49:55 -04006889 uint32_t word0, ldata;
dea31012005-04-17 16:05:31 -05006890 void __iomem *to_slim;
James Smart58da1ff2008-04-07 10:15:56 -04006891 int processing_queue = 0;
6892
6893 spin_lock_irqsave(&phba->hbalock, drvr_flag);
6894 if (!pmbox) {
James Smart8568a4d2009-07-19 10:01:16 -04006895 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart58da1ff2008-04-07 10:15:56 -04006896 /* processing mbox queue from intr_handler */
James Smart3772a992009-05-22 14:50:54 -04006897 if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
6898 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6899 return MBX_SUCCESS;
6900 }
James Smart58da1ff2008-04-07 10:15:56 -04006901 processing_queue = 1;
James Smart58da1ff2008-04-07 10:15:56 -04006902 pmbox = lpfc_mbox_get(phba);
6903 if (!pmbox) {
6904 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6905 return MBX_SUCCESS;
6906 }
6907 }
dea31012005-04-17 16:05:31 -05006908
James Smarted957682007-06-17 19:56:37 -05006909 if (pmbox->mbox_cmpl && pmbox->mbox_cmpl != lpfc_sli_def_mbox_cmpl &&
James Smart92d7f7b2007-06-17 19:56:38 -05006910 pmbox->mbox_cmpl != lpfc_sli_wake_mbox_wait) {
James Smarted957682007-06-17 19:56:37 -05006911 if(!pmbox->vport) {
James Smart58da1ff2008-04-07 10:15:56 -04006912 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
James Smarted957682007-06-17 19:56:37 -05006913 lpfc_printf_log(phba, KERN_ERR,
James Smart92d7f7b2007-06-17 19:56:38 -05006914 LOG_MBOX | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04006915 "1806 Mbox x%x failed. No vport\n",
James Smart3772a992009-05-22 14:50:54 -04006916 pmbox->u.mb.mbxCommand);
James Smarted957682007-06-17 19:56:37 -05006917 dump_stack();
James Smart58da1ff2008-04-07 10:15:56 -04006918 goto out_not_finished;
James Smarted957682007-06-17 19:56:37 -05006919 }
6920 }
6921
Linas Vepstas8d63f372007-02-14 14:28:36 -06006922 /* If the PCI channel is in offline state, do not post mbox. */
James Smart58da1ff2008-04-07 10:15:56 -04006923 if (unlikely(pci_channel_offline(phba->pcidev))) {
6924 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6925 goto out_not_finished;
6926 }
Linas Vepstas8d63f372007-02-14 14:28:36 -06006927
James Smarta257bf92009-04-06 18:48:10 -04006928 /* If HBA has a deferred error attention, fail the iocb. */
6929 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
6930 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6931 goto out_not_finished;
6932 }
6933
dea31012005-04-17 16:05:31 -05006934 psli = &phba->sli;
James Smart92d7f7b2007-06-17 19:56:38 -05006935
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006936 mbx = &pmbox->u.mb;
dea31012005-04-17 16:05:31 -05006937 status = MBX_SUCCESS;
6938
James Smart2e0fef82007-06-17 19:56:36 -05006939 if (phba->link_state == LPFC_HBA_ERROR) {
6940 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
Jamie Wellnitz41415862006-02-28 19:25:27 -05006941
6942 /* Mbox command <mbxCommand> cannot issue */
James Smart3772a992009-05-22 14:50:54 -04006943 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6944 "(%d):0311 Mailbox command x%x cannot "
6945 "issue Data: x%x x%x\n",
6946 pmbox->vport ? pmbox->vport->vpi : 0,
6947 pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
James Smart58da1ff2008-04-07 10:15:56 -04006948 goto out_not_finished;
Jamie Wellnitz41415862006-02-28 19:25:27 -05006949 }
6950
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006951 if (mbx->mbxCommand != MBX_KILL_BOARD && flag & MBX_NOWAIT) {
James Smart9940b972011-03-11 16:06:12 -05006952 if (lpfc_readl(phba->HCregaddr, &hc_copy) ||
6953 !(hc_copy & HC_MBINT_ENA)) {
6954 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6955 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smart3772a992009-05-22 14:50:54 -04006956 "(%d):2528 Mailbox command x%x cannot "
6957 "issue Data: x%x x%x\n",
6958 pmbox->vport ? pmbox->vport->vpi : 0,
6959 pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
James Smart9940b972011-03-11 16:06:12 -05006960 goto out_not_finished;
6961 }
James Smart92908312006-03-07 15:04:13 -05006962 }
6963
dea31012005-04-17 16:05:31 -05006964 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
6965 /* Polling for a mbox command when another one is already active
6966 * is not allowed in SLI. Also, the driver must have established
6967 * SLI2 mode to queue and process multiple mbox commands.
6968 */
6969
6970 if (flag & MBX_POLL) {
James Smart2e0fef82007-06-17 19:56:36 -05006971 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05006972
6973 /* Mbox command <mbxCommand> cannot issue */
James Smart3772a992009-05-22 14:50:54 -04006974 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6975 "(%d):2529 Mailbox command x%x "
6976 "cannot issue Data: x%x x%x\n",
6977 pmbox->vport ? pmbox->vport->vpi : 0,
6978 pmbox->u.mb.mbxCommand,
6979 psli->sli_flag, flag);
James Smart58da1ff2008-04-07 10:15:56 -04006980 goto out_not_finished;
dea31012005-04-17 16:05:31 -05006981 }
6982
James Smart3772a992009-05-22 14:50:54 -04006983 if (!(psli->sli_flag & LPFC_SLI_ACTIVE)) {
James Smart2e0fef82007-06-17 19:56:36 -05006984 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05006985 /* Mbox command <mbxCommand> cannot issue */
James Smart3772a992009-05-22 14:50:54 -04006986 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6987 "(%d):2530 Mailbox command x%x "
6988 "cannot issue Data: x%x x%x\n",
6989 pmbox->vport ? pmbox->vport->vpi : 0,
6990 pmbox->u.mb.mbxCommand,
6991 psli->sli_flag, flag);
James Smart58da1ff2008-04-07 10:15:56 -04006992 goto out_not_finished;
dea31012005-04-17 16:05:31 -05006993 }
6994
dea31012005-04-17 16:05:31 -05006995 /* Another mailbox command is still being processed, queue this
6996 * command to be processed later.
6997 */
6998 lpfc_mbox_put(phba, pmbox);
6999
7000 /* Mbox cmd issue - BUSY */
James Smarted957682007-06-17 19:56:37 -05007001 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04007002 "(%d):0308 Mbox cmd issue - BUSY Data: "
James Smart92d7f7b2007-06-17 19:56:38 -05007003 "x%x x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05007004 pmbox->vport ? pmbox->vport->vpi : 0xffffff,
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007005 mbx->mbxCommand, phba->pport->port_state,
James Smart92d7f7b2007-06-17 19:56:38 -05007006 psli->sli_flag, flag);
dea31012005-04-17 16:05:31 -05007007
7008 psli->slistat.mbox_busy++;
James Smart2e0fef82007-06-17 19:56:36 -05007009 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05007010
James Smart858c9f62007-06-17 19:56:39 -05007011 if (pmbox->vport) {
7012 lpfc_debugfs_disc_trc(pmbox->vport,
7013 LPFC_DISC_TRC_MBOX_VPORT,
7014 "MBOX Bsy vport: cmd:x%x mb:x%x x%x",
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007015 (uint32_t)mbx->mbxCommand,
7016 mbx->un.varWords[0], mbx->un.varWords[1]);
James Smart858c9f62007-06-17 19:56:39 -05007017 }
7018 else {
7019 lpfc_debugfs_disc_trc(phba->pport,
7020 LPFC_DISC_TRC_MBOX,
7021 "MBOX Bsy: cmd:x%x mb:x%x x%x",
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007022 (uint32_t)mbx->mbxCommand,
7023 mbx->un.varWords[0], mbx->un.varWords[1]);
James Smart858c9f62007-06-17 19:56:39 -05007024 }
7025
James Smart2e0fef82007-06-17 19:56:36 -05007026 return MBX_BUSY;
dea31012005-04-17 16:05:31 -05007027 }
7028
dea31012005-04-17 16:05:31 -05007029 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
7030
7031 /* If we are not polling, we MUST be in SLI2 mode */
7032 if (flag != MBX_POLL) {
James Smart3772a992009-05-22 14:50:54 -04007033 if (!(psli->sli_flag & LPFC_SLI_ACTIVE) &&
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007034 (mbx->mbxCommand != MBX_KILL_BOARD)) {
dea31012005-04-17 16:05:31 -05007035 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05007036 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05007037 /* Mbox command <mbxCommand> cannot issue */
James Smart3772a992009-05-22 14:50:54 -04007038 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7039 "(%d):2531 Mailbox command x%x "
7040 "cannot issue Data: x%x x%x\n",
7041 pmbox->vport ? pmbox->vport->vpi : 0,
7042 pmbox->u.mb.mbxCommand,
7043 psli->sli_flag, flag);
James Smart58da1ff2008-04-07 10:15:56 -04007044 goto out_not_finished;
dea31012005-04-17 16:05:31 -05007045 }
7046 /* timeout active mbox command */
James Smart256ec0d2013-04-17 20:14:58 -04007047 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, pmbox) *
7048 1000);
7049 mod_timer(&psli->mbox_tmo, jiffies + timeout);
dea31012005-04-17 16:05:31 -05007050 }
7051
7052 /* Mailbox cmd <cmd> issue */
James Smarted957682007-06-17 19:56:37 -05007053 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04007054 "(%d):0309 Mailbox cmd x%x issue Data: x%x x%x "
James Smart92d7f7b2007-06-17 19:56:38 -05007055 "x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04007056 pmbox->vport ? pmbox->vport->vpi : 0,
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007057 mbx->mbxCommand, phba->pport->port_state,
James Smart92d7f7b2007-06-17 19:56:38 -05007058 psli->sli_flag, flag);
dea31012005-04-17 16:05:31 -05007059
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007060 if (mbx->mbxCommand != MBX_HEARTBEAT) {
James Smart858c9f62007-06-17 19:56:39 -05007061 if (pmbox->vport) {
7062 lpfc_debugfs_disc_trc(pmbox->vport,
7063 LPFC_DISC_TRC_MBOX_VPORT,
7064 "MBOX Send vport: cmd:x%x mb:x%x x%x",
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007065 (uint32_t)mbx->mbxCommand,
7066 mbx->un.varWords[0], mbx->un.varWords[1]);
James Smart858c9f62007-06-17 19:56:39 -05007067 }
7068 else {
7069 lpfc_debugfs_disc_trc(phba->pport,
7070 LPFC_DISC_TRC_MBOX,
7071 "MBOX Send: cmd:x%x mb:x%x x%x",
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007072 (uint32_t)mbx->mbxCommand,
7073 mbx->un.varWords[0], mbx->un.varWords[1]);
James Smart858c9f62007-06-17 19:56:39 -05007074 }
7075 }
7076
dea31012005-04-17 16:05:31 -05007077 psli->slistat.mbox_cmd++;
7078 evtctr = psli->slistat.mbox_event;
7079
7080 /* next set own bit for the adapter and copy over command word */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007081 mbx->mbxOwner = OWN_CHIP;
dea31012005-04-17 16:05:31 -05007082
James Smart3772a992009-05-22 14:50:54 -04007083 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
James Smart7a470272010-03-15 11:25:20 -04007084 /* Populate mbox extension offset word. */
7085 if (pmbox->in_ext_byte_len || pmbox->out_ext_byte_len) {
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007086 *(((uint32_t *)mbx) + pmbox->mbox_offset_word)
James Smart7a470272010-03-15 11:25:20 -04007087 = (uint8_t *)phba->mbox_ext
7088 - (uint8_t *)phba->mbox;
7089 }
7090
7091 /* Copy the mailbox extension data */
7092 if (pmbox->in_ext_byte_len && pmbox->context2) {
7093 lpfc_sli_pcimem_bcopy(pmbox->context2,
7094 (uint8_t *)phba->mbox_ext,
7095 pmbox->in_ext_byte_len);
7096 }
7097 /* Copy command data to host SLIM area */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007098 lpfc_sli_pcimem_bcopy(mbx, phba->mbox, MAILBOX_CMD_SIZE);
dea31012005-04-17 16:05:31 -05007099 } else {
James Smart7a470272010-03-15 11:25:20 -04007100 /* Populate mbox extension offset word. */
7101 if (pmbox->in_ext_byte_len || pmbox->out_ext_byte_len)
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007102 *(((uint32_t *)mbx) + pmbox->mbox_offset_word)
James Smart7a470272010-03-15 11:25:20 -04007103 = MAILBOX_HBA_EXT_OFFSET;
7104
7105 /* Copy the mailbox extension data */
7106 if (pmbox->in_ext_byte_len && pmbox->context2) {
7107 lpfc_memcpy_to_slim(phba->MBslimaddr +
7108 MAILBOX_HBA_EXT_OFFSET,
7109 pmbox->context2, pmbox->in_ext_byte_len);
7110
7111 }
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007112 if (mbx->mbxCommand == MBX_CONFIG_PORT) {
dea31012005-04-17 16:05:31 -05007113 /* copy command data into host mbox for cmpl */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007114 lpfc_sli_pcimem_bcopy(mbx, phba->mbox, MAILBOX_CMD_SIZE);
dea31012005-04-17 16:05:31 -05007115 }
7116
7117 /* First copy mbox command data to HBA SLIM, skip past first
7118 word */
7119 to_slim = phba->MBslimaddr + sizeof (uint32_t);
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007120 lpfc_memcpy_to_slim(to_slim, &mbx->un.varWords[0],
dea31012005-04-17 16:05:31 -05007121 MAILBOX_CMD_SIZE - sizeof (uint32_t));
7122
7123 /* Next copy over first word, with mbxOwner set */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007124 ldata = *((uint32_t *)mbx);
dea31012005-04-17 16:05:31 -05007125 to_slim = phba->MBslimaddr;
7126 writel(ldata, to_slim);
7127 readl(to_slim); /* flush */
7128
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007129 if (mbx->mbxCommand == MBX_CONFIG_PORT) {
dea31012005-04-17 16:05:31 -05007130 /* switch over to host mailbox */
James Smart3772a992009-05-22 14:50:54 -04007131 psli->sli_flag |= LPFC_SLI_ACTIVE;
dea31012005-04-17 16:05:31 -05007132 }
7133 }
7134
7135 wmb();
dea31012005-04-17 16:05:31 -05007136
7137 switch (flag) {
7138 case MBX_NOWAIT:
James Smart09372822008-01-11 01:52:54 -05007139 /* Set up reference to mailbox command */
dea31012005-04-17 16:05:31 -05007140 psli->mbox_active = pmbox;
James Smart09372822008-01-11 01:52:54 -05007141 /* Interrupt board to do it */
7142 writel(CA_MBATT, phba->CAregaddr);
7143 readl(phba->CAregaddr); /* flush */
7144 /* Don't wait for it to finish, just return */
dea31012005-04-17 16:05:31 -05007145 break;
7146
7147 case MBX_POLL:
James Smart09372822008-01-11 01:52:54 -05007148 /* Set up null reference to mailbox command */
dea31012005-04-17 16:05:31 -05007149 psli->mbox_active = NULL;
James Smart09372822008-01-11 01:52:54 -05007150 /* Interrupt board to do it */
7151 writel(CA_MBATT, phba->CAregaddr);
7152 readl(phba->CAregaddr); /* flush */
7153
James Smart3772a992009-05-22 14:50:54 -04007154 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea31012005-04-17 16:05:31 -05007155 /* First read mbox status word */
James Smart34b02dc2008-08-24 21:49:55 -04007156 word0 = *((uint32_t *)phba->mbox);
dea31012005-04-17 16:05:31 -05007157 word0 = le32_to_cpu(word0);
7158 } else {
7159 /* First read mbox status word */
James Smart9940b972011-03-11 16:06:12 -05007160 if (lpfc_readl(phba->MBslimaddr, &word0)) {
7161 spin_unlock_irqrestore(&phba->hbalock,
7162 drvr_flag);
7163 goto out_not_finished;
7164 }
dea31012005-04-17 16:05:31 -05007165 }
7166
7167 /* Read the HBA Host Attention Register */
James Smart9940b972011-03-11 16:06:12 -05007168 if (lpfc_readl(phba->HAregaddr, &ha_copy)) {
7169 spin_unlock_irqrestore(&phba->hbalock,
7170 drvr_flag);
7171 goto out_not_finished;
7172 }
James Smarta183a152011-10-10 21:32:43 -04007173 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, pmbox) *
7174 1000) + jiffies;
James Smart09372822008-01-11 01:52:54 -05007175 i = 0;
dea31012005-04-17 16:05:31 -05007176 /* Wait for command to complete */
Jamie Wellnitz41415862006-02-28 19:25:27 -05007177 while (((word0 & OWN_CHIP) == OWN_CHIP) ||
7178 (!(ha_copy & HA_MBATT) &&
James Smart2e0fef82007-06-17 19:56:36 -05007179 (phba->link_state > LPFC_WARM_START))) {
James Smart09372822008-01-11 01:52:54 -05007180 if (time_after(jiffies, timeout)) {
dea31012005-04-17 16:05:31 -05007181 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05007182 spin_unlock_irqrestore(&phba->hbalock,
dea31012005-04-17 16:05:31 -05007183 drvr_flag);
James Smart58da1ff2008-04-07 10:15:56 -04007184 goto out_not_finished;
dea31012005-04-17 16:05:31 -05007185 }
7186
7187 /* Check if we took a mbox interrupt while we were
7188 polling */
7189 if (((word0 & OWN_CHIP) != OWN_CHIP)
7190 && (evtctr != psli->slistat.mbox_event))
7191 break;
7192
James Smart09372822008-01-11 01:52:54 -05007193 if (i++ > 10) {
7194 spin_unlock_irqrestore(&phba->hbalock,
7195 drvr_flag);
7196 msleep(1);
7197 spin_lock_irqsave(&phba->hbalock, drvr_flag);
7198 }
dea31012005-04-17 16:05:31 -05007199
James Smart3772a992009-05-22 14:50:54 -04007200 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea31012005-04-17 16:05:31 -05007201 /* First copy command data */
James Smart34b02dc2008-08-24 21:49:55 -04007202 word0 = *((uint32_t *)phba->mbox);
dea31012005-04-17 16:05:31 -05007203 word0 = le32_to_cpu(word0);
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007204 if (mbx->mbxCommand == MBX_CONFIG_PORT) {
dea31012005-04-17 16:05:31 -05007205 MAILBOX_t *slimmb;
James Smart34b02dc2008-08-24 21:49:55 -04007206 uint32_t slimword0;
dea31012005-04-17 16:05:31 -05007207 /* Check real SLIM for any errors */
7208 slimword0 = readl(phba->MBslimaddr);
7209 slimmb = (MAILBOX_t *) & slimword0;
7210 if (((slimword0 & OWN_CHIP) != OWN_CHIP)
7211 && slimmb->mbxStatus) {
7212 psli->sli_flag &=
James Smart3772a992009-05-22 14:50:54 -04007213 ~LPFC_SLI_ACTIVE;
dea31012005-04-17 16:05:31 -05007214 word0 = slimword0;
7215 }
7216 }
7217 } else {
7218 /* First copy command data */
7219 word0 = readl(phba->MBslimaddr);
7220 }
7221 /* Read the HBA Host Attention Register */
James Smart9940b972011-03-11 16:06:12 -05007222 if (lpfc_readl(phba->HAregaddr, &ha_copy)) {
7223 spin_unlock_irqrestore(&phba->hbalock,
7224 drvr_flag);
7225 goto out_not_finished;
7226 }
dea31012005-04-17 16:05:31 -05007227 }
7228
James Smart3772a992009-05-22 14:50:54 -04007229 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea31012005-04-17 16:05:31 -05007230 /* copy results back to user */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007231 lpfc_sli_pcimem_bcopy(phba->mbox, mbx, MAILBOX_CMD_SIZE);
James Smart7a470272010-03-15 11:25:20 -04007232 /* Copy the mailbox extension data */
7233 if (pmbox->out_ext_byte_len && pmbox->context2) {
7234 lpfc_sli_pcimem_bcopy(phba->mbox_ext,
7235 pmbox->context2,
7236 pmbox->out_ext_byte_len);
7237 }
dea31012005-04-17 16:05:31 -05007238 } else {
7239 /* First copy command data */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007240 lpfc_memcpy_from_slim(mbx, phba->MBslimaddr,
dea31012005-04-17 16:05:31 -05007241 MAILBOX_CMD_SIZE);
James Smart7a470272010-03-15 11:25:20 -04007242 /* Copy the mailbox extension data */
7243 if (pmbox->out_ext_byte_len && pmbox->context2) {
7244 lpfc_memcpy_from_slim(pmbox->context2,
7245 phba->MBslimaddr +
7246 MAILBOX_HBA_EXT_OFFSET,
7247 pmbox->out_ext_byte_len);
dea31012005-04-17 16:05:31 -05007248 }
7249 }
7250
7251 writel(HA_MBATT, phba->HAregaddr);
7252 readl(phba->HAregaddr); /* flush */
7253
7254 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007255 status = mbx->mbxStatus;
dea31012005-04-17 16:05:31 -05007256 }
7257
James Smart2e0fef82007-06-17 19:56:36 -05007258 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
7259 return status;
James Smart58da1ff2008-04-07 10:15:56 -04007260
7261out_not_finished:
7262 if (processing_queue) {
James Smartda0436e2009-05-22 14:51:39 -04007263 pmbox->u.mb.mbxStatus = MBX_NOT_FINISHED;
James Smart58da1ff2008-04-07 10:15:56 -04007264 lpfc_mbox_cmpl_put(phba, pmbox);
7265 }
7266 return MBX_NOT_FINISHED;
dea31012005-04-17 16:05:31 -05007267}
7268
James Smarte59058c2008-08-24 21:49:00 -04007269/**
James Smartf1126682009-06-10 17:22:44 -04007270 * lpfc_sli4_async_mbox_block - Block posting SLI4 asynchronous mailbox command
7271 * @phba: Pointer to HBA context object.
7272 *
7273 * The function blocks the posting of SLI4 asynchronous mailbox commands from
7274 * the driver internal pending mailbox queue. It will then try to wait out the
7275 * possible outstanding mailbox command before return.
7276 *
7277 * Returns:
7278 * 0 - the outstanding mailbox command completed; otherwise, the wait for
7279 * the outstanding mailbox command timed out.
7280 **/
7281static int
7282lpfc_sli4_async_mbox_block(struct lpfc_hba *phba)
7283{
7284 struct lpfc_sli *psli = &phba->sli;
James Smartf1126682009-06-10 17:22:44 -04007285 int rc = 0;
James Smarta183a152011-10-10 21:32:43 -04007286 unsigned long timeout = 0;
James Smartf1126682009-06-10 17:22:44 -04007287
7288 /* Mark the asynchronous mailbox command posting as blocked */
7289 spin_lock_irq(&phba->hbalock);
7290 psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
James Smartf1126682009-06-10 17:22:44 -04007291 /* Determine how long we might wait for the active mailbox
7292 * command to be gracefully completed by firmware.
7293 */
James Smarta183a152011-10-10 21:32:43 -04007294 if (phba->sli.mbox_active)
7295 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
7296 phba->sli.mbox_active) *
7297 1000) + jiffies;
7298 spin_unlock_irq(&phba->hbalock);
7299
James Smarte8d3c3b2013-10-10 12:21:30 -04007300 /* Make sure the mailbox is really active */
7301 if (timeout)
7302 lpfc_sli4_process_missed_mbox_completions(phba);
7303
James Smartf1126682009-06-10 17:22:44 -04007304 /* Wait for the outstnading mailbox command to complete */
7305 while (phba->sli.mbox_active) {
7306 /* Check active mailbox complete status every 2ms */
7307 msleep(2);
7308 if (time_after(jiffies, timeout)) {
7309 /* Timeout, marked the outstanding cmd not complete */
7310 rc = 1;
7311 break;
7312 }
7313 }
7314
7315 /* Can not cleanly block async mailbox command, fails it */
7316 if (rc) {
7317 spin_lock_irq(&phba->hbalock);
7318 psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
7319 spin_unlock_irq(&phba->hbalock);
7320 }
7321 return rc;
7322}
7323
7324/**
7325 * lpfc_sli4_async_mbox_unblock - Block posting SLI4 async mailbox command
7326 * @phba: Pointer to HBA context object.
7327 *
7328 * The function unblocks and resume posting of SLI4 asynchronous mailbox
7329 * commands from the driver internal pending mailbox queue. It makes sure
7330 * that there is no outstanding mailbox command before resuming posting
7331 * asynchronous mailbox commands. If, for any reason, there is outstanding
7332 * mailbox command, it will try to wait it out before resuming asynchronous
7333 * mailbox command posting.
7334 **/
7335static void
7336lpfc_sli4_async_mbox_unblock(struct lpfc_hba *phba)
7337{
7338 struct lpfc_sli *psli = &phba->sli;
7339
7340 spin_lock_irq(&phba->hbalock);
7341 if (!(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
7342 /* Asynchronous mailbox posting is not blocked, do nothing */
7343 spin_unlock_irq(&phba->hbalock);
7344 return;
7345 }
7346
7347 /* Outstanding synchronous mailbox command is guaranteed to be done,
7348 * successful or timeout, after timing-out the outstanding mailbox
7349 * command shall always be removed, so just unblock posting async
7350 * mailbox command and resume
7351 */
7352 psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
7353 spin_unlock_irq(&phba->hbalock);
7354
7355 /* wake up worker thread to post asynchronlous mailbox command */
7356 lpfc_worker_wake_up(phba);
7357}
7358
7359/**
James Smart2d843ed2012-09-29 11:29:06 -04007360 * lpfc_sli4_wait_bmbx_ready - Wait for bootstrap mailbox register ready
7361 * @phba: Pointer to HBA context object.
7362 * @mboxq: Pointer to mailbox object.
7363 *
7364 * The function waits for the bootstrap mailbox register ready bit from
7365 * port for twice the regular mailbox command timeout value.
7366 *
7367 * 0 - no timeout on waiting for bootstrap mailbox register ready.
7368 * MBXERR_ERROR - wait for bootstrap mailbox register timed out.
7369 **/
7370static int
7371lpfc_sli4_wait_bmbx_ready(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
7372{
7373 uint32_t db_ready;
7374 unsigned long timeout;
7375 struct lpfc_register bmbx_reg;
7376
7377 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, mboxq)
7378 * 1000) + jiffies;
7379
7380 do {
7381 bmbx_reg.word0 = readl(phba->sli4_hba.BMBXregaddr);
7382 db_ready = bf_get(lpfc_bmbx_rdy, &bmbx_reg);
7383 if (!db_ready)
7384 msleep(2);
7385
7386 if (time_after(jiffies, timeout))
7387 return MBXERR_ERROR;
7388 } while (!db_ready);
7389
7390 return 0;
7391}
7392
7393/**
James Smartda0436e2009-05-22 14:51:39 -04007394 * lpfc_sli4_post_sync_mbox - Post an SLI4 mailbox to the bootstrap mailbox
7395 * @phba: Pointer to HBA context object.
7396 * @mboxq: Pointer to mailbox object.
7397 *
7398 * The function posts a mailbox to the port. The mailbox is expected
7399 * to be comletely filled in and ready for the port to operate on it.
7400 * This routine executes a synchronous completion operation on the
7401 * mailbox by polling for its completion.
7402 *
7403 * The caller must not be holding any locks when calling this routine.
7404 *
7405 * Returns:
7406 * MBX_SUCCESS - mailbox posted successfully
7407 * Any of the MBX error values.
7408 **/
7409static int
7410lpfc_sli4_post_sync_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
7411{
7412 int rc = MBX_SUCCESS;
7413 unsigned long iflag;
James Smartda0436e2009-05-22 14:51:39 -04007414 uint32_t mcqe_status;
7415 uint32_t mbx_cmnd;
James Smartda0436e2009-05-22 14:51:39 -04007416 struct lpfc_sli *psli = &phba->sli;
7417 struct lpfc_mqe *mb = &mboxq->u.mqe;
7418 struct lpfc_bmbx_create *mbox_rgn;
7419 struct dma_address *dma_address;
James Smartda0436e2009-05-22 14:51:39 -04007420
7421 /*
7422 * Only one mailbox can be active to the bootstrap mailbox region
7423 * at a time and there is no queueing provided.
7424 */
7425 spin_lock_irqsave(&phba->hbalock, iflag);
7426 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
7427 spin_unlock_irqrestore(&phba->hbalock, iflag);
7428 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007429 "(%d):2532 Mailbox command x%x (x%x/x%x) "
James Smartda0436e2009-05-22 14:51:39 -04007430 "cannot issue Data: x%x x%x\n",
7431 mboxq->vport ? mboxq->vport->vpi : 0,
7432 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007433 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7434 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007435 psli->sli_flag, MBX_POLL);
7436 return MBXERR_ERROR;
7437 }
7438 /* The server grabs the token and owns it until release */
7439 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
7440 phba->sli.mbox_active = mboxq;
7441 spin_unlock_irqrestore(&phba->hbalock, iflag);
7442
James Smart2d843ed2012-09-29 11:29:06 -04007443 /* wait for bootstrap mbox register for readyness */
7444 rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
7445 if (rc)
7446 goto exit;
7447
James Smartda0436e2009-05-22 14:51:39 -04007448 /*
7449 * Initialize the bootstrap memory region to avoid stale data areas
7450 * in the mailbox post. Then copy the caller's mailbox contents to
7451 * the bmbx mailbox region.
7452 */
7453 mbx_cmnd = bf_get(lpfc_mqe_command, mb);
7454 memset(phba->sli4_hba.bmbx.avirt, 0, sizeof(struct lpfc_bmbx_create));
7455 lpfc_sli_pcimem_bcopy(mb, phba->sli4_hba.bmbx.avirt,
7456 sizeof(struct lpfc_mqe));
7457
7458 /* Post the high mailbox dma address to the port and wait for ready. */
7459 dma_address = &phba->sli4_hba.bmbx.dma_address;
7460 writel(dma_address->addr_hi, phba->sli4_hba.BMBXregaddr);
7461
James Smart2d843ed2012-09-29 11:29:06 -04007462 /* wait for bootstrap mbox register for hi-address write done */
7463 rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
7464 if (rc)
7465 goto exit;
James Smartda0436e2009-05-22 14:51:39 -04007466
7467 /* Post the low mailbox dma address to the port. */
7468 writel(dma_address->addr_lo, phba->sli4_hba.BMBXregaddr);
James Smartda0436e2009-05-22 14:51:39 -04007469
James Smart2d843ed2012-09-29 11:29:06 -04007470 /* wait for bootstrap mbox register for low address write done */
7471 rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
7472 if (rc)
7473 goto exit;
James Smartda0436e2009-05-22 14:51:39 -04007474
7475 /*
7476 * Read the CQ to ensure the mailbox has completed.
7477 * If so, update the mailbox status so that the upper layers
7478 * can complete the request normally.
7479 */
7480 lpfc_sli_pcimem_bcopy(phba->sli4_hba.bmbx.avirt, mb,
7481 sizeof(struct lpfc_mqe));
7482 mbox_rgn = (struct lpfc_bmbx_create *) phba->sli4_hba.bmbx.avirt;
7483 lpfc_sli_pcimem_bcopy(&mbox_rgn->mcqe, &mboxq->mcqe,
7484 sizeof(struct lpfc_mcqe));
7485 mcqe_status = bf_get(lpfc_mcqe_status, &mbox_rgn->mcqe);
James Smart05580562011-05-24 11:40:48 -04007486 /*
7487 * When the CQE status indicates a failure and the mailbox status
7488 * indicates success then copy the CQE status into the mailbox status
7489 * (and prefix it with x4000).
7490 */
James Smartda0436e2009-05-22 14:51:39 -04007491 if (mcqe_status != MB_CQE_STATUS_SUCCESS) {
James Smart05580562011-05-24 11:40:48 -04007492 if (bf_get(lpfc_mqe_status, mb) == MBX_SUCCESS)
7493 bf_set(lpfc_mqe_status, mb,
7494 (LPFC_MBX_ERROR_RANGE | mcqe_status));
James Smartda0436e2009-05-22 14:51:39 -04007495 rc = MBXERR_ERROR;
James Smartd7c47992010-06-08 18:31:54 -04007496 } else
7497 lpfc_sli4_swap_str(phba, mboxq);
James Smartda0436e2009-05-22 14:51:39 -04007498
7499 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007500 "(%d):0356 Mailbox cmd x%x (x%x/x%x) Status x%x "
James Smartda0436e2009-05-22 14:51:39 -04007501 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x"
7502 " x%x x%x CQ: x%x x%x x%x x%x\n",
James Smarta183a152011-10-10 21:32:43 -04007503 mboxq->vport ? mboxq->vport->vpi : 0, mbx_cmnd,
7504 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7505 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007506 bf_get(lpfc_mqe_status, mb),
7507 mb->un.mb_words[0], mb->un.mb_words[1],
7508 mb->un.mb_words[2], mb->un.mb_words[3],
7509 mb->un.mb_words[4], mb->un.mb_words[5],
7510 mb->un.mb_words[6], mb->un.mb_words[7],
7511 mb->un.mb_words[8], mb->un.mb_words[9],
7512 mb->un.mb_words[10], mb->un.mb_words[11],
7513 mb->un.mb_words[12], mboxq->mcqe.word0,
7514 mboxq->mcqe.mcqe_tag0, mboxq->mcqe.mcqe_tag1,
7515 mboxq->mcqe.trailer);
7516exit:
7517 /* We are holding the token, no needed for lock when release */
7518 spin_lock_irqsave(&phba->hbalock, iflag);
7519 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7520 phba->sli.mbox_active = NULL;
7521 spin_unlock_irqrestore(&phba->hbalock, iflag);
7522 return rc;
7523}
7524
7525/**
7526 * lpfc_sli_issue_mbox_s4 - Issue an SLI4 mailbox command to firmware
7527 * @phba: Pointer to HBA context object.
7528 * @pmbox: Pointer to mailbox object.
7529 * @flag: Flag indicating how the mailbox need to be processed.
7530 *
7531 * This function is called by discovery code and HBA management code to submit
7532 * a mailbox command to firmware with SLI-4 interface spec.
7533 *
7534 * Return codes the caller owns the mailbox command after the return of the
7535 * function.
7536 **/
7537static int
7538lpfc_sli_issue_mbox_s4(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
7539 uint32_t flag)
7540{
7541 struct lpfc_sli *psli = &phba->sli;
7542 unsigned long iflags;
7543 int rc;
7544
James Smartb76f2dc2011-07-22 18:37:42 -04007545 /* dump from issue mailbox command if setup */
7546 lpfc_idiag_mbxacc_dump_issue_mbox(phba, &mboxq->u.mb);
7547
James Smart8fa38512009-07-19 10:01:03 -04007548 rc = lpfc_mbox_dev_check(phba);
7549 if (unlikely(rc)) {
7550 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007551 "(%d):2544 Mailbox command x%x (x%x/x%x) "
James Smart8fa38512009-07-19 10:01:03 -04007552 "cannot issue Data: x%x x%x\n",
7553 mboxq->vport ? mboxq->vport->vpi : 0,
7554 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007555 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7556 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smart8fa38512009-07-19 10:01:03 -04007557 psli->sli_flag, flag);
7558 goto out_not_finished;
7559 }
7560
James Smartda0436e2009-05-22 14:51:39 -04007561 /* Detect polling mode and jump to a handler */
7562 if (!phba->sli4_hba.intr_enable) {
7563 if (flag == MBX_POLL)
7564 rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
7565 else
7566 rc = -EIO;
7567 if (rc != MBX_SUCCESS)
James Smart05580562011-05-24 11:40:48 -04007568 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
James Smartda0436e2009-05-22 14:51:39 -04007569 "(%d):2541 Mailbox command x%x "
James Smartcc459f12012-05-09 21:18:30 -04007570 "(x%x/x%x) failure: "
7571 "mqe_sta: x%x mcqe_sta: x%x/x%x "
7572 "Data: x%x x%x\n,",
James Smartda0436e2009-05-22 14:51:39 -04007573 mboxq->vport ? mboxq->vport->vpi : 0,
7574 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007575 lpfc_sli_config_mbox_subsys_get(phba,
7576 mboxq),
7577 lpfc_sli_config_mbox_opcode_get(phba,
7578 mboxq),
James Smartcc459f12012-05-09 21:18:30 -04007579 bf_get(lpfc_mqe_status, &mboxq->u.mqe),
7580 bf_get(lpfc_mcqe_status, &mboxq->mcqe),
7581 bf_get(lpfc_mcqe_ext_status,
7582 &mboxq->mcqe),
James Smartda0436e2009-05-22 14:51:39 -04007583 psli->sli_flag, flag);
7584 return rc;
7585 } else if (flag == MBX_POLL) {
James Smartf1126682009-06-10 17:22:44 -04007586 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
7587 "(%d):2542 Try to issue mailbox command "
James Smarta183a152011-10-10 21:32:43 -04007588 "x%x (x%x/x%x) synchronously ahead of async"
James Smartf1126682009-06-10 17:22:44 -04007589 "mailbox command queue: x%x x%x\n",
James Smartda0436e2009-05-22 14:51:39 -04007590 mboxq->vport ? mboxq->vport->vpi : 0,
7591 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007592 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7593 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007594 psli->sli_flag, flag);
James Smartf1126682009-06-10 17:22:44 -04007595 /* Try to block the asynchronous mailbox posting */
7596 rc = lpfc_sli4_async_mbox_block(phba);
7597 if (!rc) {
7598 /* Successfully blocked, now issue sync mbox cmd */
7599 rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
7600 if (rc != MBX_SUCCESS)
James Smartcc459f12012-05-09 21:18:30 -04007601 lpfc_printf_log(phba, KERN_WARNING,
James Smarta183a152011-10-10 21:32:43 -04007602 LOG_MBOX | LOG_SLI,
James Smartcc459f12012-05-09 21:18:30 -04007603 "(%d):2597 Sync Mailbox command "
7604 "x%x (x%x/x%x) failure: "
7605 "mqe_sta: x%x mcqe_sta: x%x/x%x "
7606 "Data: x%x x%x\n,",
7607 mboxq->vport ? mboxq->vport->vpi : 0,
James Smarta183a152011-10-10 21:32:43 -04007608 mboxq->u.mb.mbxCommand,
7609 lpfc_sli_config_mbox_subsys_get(phba,
7610 mboxq),
7611 lpfc_sli_config_mbox_opcode_get(phba,
7612 mboxq),
James Smartcc459f12012-05-09 21:18:30 -04007613 bf_get(lpfc_mqe_status, &mboxq->u.mqe),
7614 bf_get(lpfc_mcqe_status, &mboxq->mcqe),
7615 bf_get(lpfc_mcqe_ext_status,
7616 &mboxq->mcqe),
James Smarta183a152011-10-10 21:32:43 -04007617 psli->sli_flag, flag);
James Smartf1126682009-06-10 17:22:44 -04007618 /* Unblock the async mailbox posting afterward */
7619 lpfc_sli4_async_mbox_unblock(phba);
7620 }
7621 return rc;
James Smartda0436e2009-05-22 14:51:39 -04007622 }
7623
7624 /* Now, interrupt mode asynchrous mailbox command */
7625 rc = lpfc_mbox_cmd_check(phba, mboxq);
7626 if (rc) {
7627 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007628 "(%d):2543 Mailbox command x%x (x%x/x%x) "
James Smartda0436e2009-05-22 14:51:39 -04007629 "cannot issue Data: x%x x%x\n",
7630 mboxq->vport ? mboxq->vport->vpi : 0,
7631 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007632 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7633 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007634 psli->sli_flag, flag);
7635 goto out_not_finished;
7636 }
James Smartda0436e2009-05-22 14:51:39 -04007637
7638 /* Put the mailbox command to the driver internal FIFO */
7639 psli->slistat.mbox_busy++;
7640 spin_lock_irqsave(&phba->hbalock, iflags);
7641 lpfc_mbox_put(phba, mboxq);
7642 spin_unlock_irqrestore(&phba->hbalock, iflags);
7643 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
7644 "(%d):0354 Mbox cmd issue - Enqueue Data: "
James Smarta183a152011-10-10 21:32:43 -04007645 "x%x (x%x/x%x) x%x x%x x%x\n",
James Smartda0436e2009-05-22 14:51:39 -04007646 mboxq->vport ? mboxq->vport->vpi : 0xffffff,
7647 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
James Smarta183a152011-10-10 21:32:43 -04007648 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7649 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007650 phba->pport->port_state,
7651 psli->sli_flag, MBX_NOWAIT);
7652 /* Wake up worker thread to transport mailbox command from head */
7653 lpfc_worker_wake_up(phba);
7654
7655 return MBX_BUSY;
7656
7657out_not_finished:
7658 return MBX_NOT_FINISHED;
7659}
7660
7661/**
7662 * lpfc_sli4_post_async_mbox - Post an SLI4 mailbox command to device
7663 * @phba: Pointer to HBA context object.
7664 *
7665 * This function is called by worker thread to send a mailbox command to
7666 * SLI4 HBA firmware.
7667 *
7668 **/
7669int
7670lpfc_sli4_post_async_mbox(struct lpfc_hba *phba)
7671{
7672 struct lpfc_sli *psli = &phba->sli;
7673 LPFC_MBOXQ_t *mboxq;
7674 int rc = MBX_SUCCESS;
7675 unsigned long iflags;
7676 struct lpfc_mqe *mqe;
7677 uint32_t mbx_cmnd;
7678
7679 /* Check interrupt mode before post async mailbox command */
7680 if (unlikely(!phba->sli4_hba.intr_enable))
7681 return MBX_NOT_FINISHED;
7682
7683 /* Check for mailbox command service token */
7684 spin_lock_irqsave(&phba->hbalock, iflags);
7685 if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
7686 spin_unlock_irqrestore(&phba->hbalock, iflags);
7687 return MBX_NOT_FINISHED;
7688 }
7689 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
7690 spin_unlock_irqrestore(&phba->hbalock, iflags);
7691 return MBX_NOT_FINISHED;
7692 }
7693 if (unlikely(phba->sli.mbox_active)) {
7694 spin_unlock_irqrestore(&phba->hbalock, iflags);
7695 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7696 "0384 There is pending active mailbox cmd\n");
7697 return MBX_NOT_FINISHED;
7698 }
7699 /* Take the mailbox command service token */
7700 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
7701
7702 /* Get the next mailbox command from head of queue */
7703 mboxq = lpfc_mbox_get(phba);
7704
7705 /* If no more mailbox command waiting for post, we're done */
7706 if (!mboxq) {
7707 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7708 spin_unlock_irqrestore(&phba->hbalock, iflags);
7709 return MBX_SUCCESS;
7710 }
7711 phba->sli.mbox_active = mboxq;
7712 spin_unlock_irqrestore(&phba->hbalock, iflags);
7713
7714 /* Check device readiness for posting mailbox command */
7715 rc = lpfc_mbox_dev_check(phba);
7716 if (unlikely(rc))
7717 /* Driver clean routine will clean up pending mailbox */
7718 goto out_not_finished;
7719
7720 /* Prepare the mbox command to be posted */
7721 mqe = &mboxq->u.mqe;
7722 mbx_cmnd = bf_get(lpfc_mqe_command, mqe);
7723
7724 /* Start timer for the mbox_tmo and log some mailbox post messages */
7725 mod_timer(&psli->mbox_tmo, (jiffies +
James Smart256ec0d2013-04-17 20:14:58 -04007726 msecs_to_jiffies(1000 * lpfc_mbox_tmo_val(phba, mboxq))));
James Smartda0436e2009-05-22 14:51:39 -04007727
7728 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007729 "(%d):0355 Mailbox cmd x%x (x%x/x%x) issue Data: "
James Smartda0436e2009-05-22 14:51:39 -04007730 "x%x x%x\n",
7731 mboxq->vport ? mboxq->vport->vpi : 0, mbx_cmnd,
James Smarta183a152011-10-10 21:32:43 -04007732 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7733 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007734 phba->pport->port_state, psli->sli_flag);
7735
7736 if (mbx_cmnd != MBX_HEARTBEAT) {
7737 if (mboxq->vport) {
7738 lpfc_debugfs_disc_trc(mboxq->vport,
7739 LPFC_DISC_TRC_MBOX_VPORT,
7740 "MBOX Send vport: cmd:x%x mb:x%x x%x",
7741 mbx_cmnd, mqe->un.mb_words[0],
7742 mqe->un.mb_words[1]);
7743 } else {
7744 lpfc_debugfs_disc_trc(phba->pport,
7745 LPFC_DISC_TRC_MBOX,
7746 "MBOX Send: cmd:x%x mb:x%x x%x",
7747 mbx_cmnd, mqe->un.mb_words[0],
7748 mqe->un.mb_words[1]);
7749 }
7750 }
7751 psli->slistat.mbox_cmd++;
7752
7753 /* Post the mailbox command to the port */
7754 rc = lpfc_sli4_mq_put(phba->sli4_hba.mbx_wq, mqe);
7755 if (rc != MBX_SUCCESS) {
7756 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007757 "(%d):2533 Mailbox command x%x (x%x/x%x) "
James Smartda0436e2009-05-22 14:51:39 -04007758 "cannot issue Data: x%x x%x\n",
7759 mboxq->vport ? mboxq->vport->vpi : 0,
7760 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007761 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7762 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007763 psli->sli_flag, MBX_NOWAIT);
7764 goto out_not_finished;
7765 }
7766
7767 return rc;
7768
7769out_not_finished:
7770 spin_lock_irqsave(&phba->hbalock, iflags);
James Smartd7069f02012-03-01 22:36:29 -05007771 if (phba->sli.mbox_active) {
7772 mboxq->u.mb.mbxStatus = MBX_NOT_FINISHED;
7773 __lpfc_mbox_cmpl_put(phba, mboxq);
7774 /* Release the token */
7775 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7776 phba->sli.mbox_active = NULL;
7777 }
James Smartda0436e2009-05-22 14:51:39 -04007778 spin_unlock_irqrestore(&phba->hbalock, iflags);
7779
7780 return MBX_NOT_FINISHED;
7781}
7782
7783/**
7784 * lpfc_sli_issue_mbox - Wrapper func for issuing mailbox command
7785 * @phba: Pointer to HBA context object.
7786 * @pmbox: Pointer to mailbox object.
7787 * @flag: Flag indicating how the mailbox need to be processed.
7788 *
7789 * This routine wraps the actual SLI3 or SLI4 mailbox issuing routine from
7790 * the API jump table function pointer from the lpfc_hba struct.
7791 *
7792 * Return codes the caller owns the mailbox command after the return of the
7793 * function.
7794 **/
7795int
7796lpfc_sli_issue_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox, uint32_t flag)
7797{
7798 return phba->lpfc_sli_issue_mbox(phba, pmbox, flag);
7799}
7800
7801/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03007802 * lpfc_mbox_api_table_setup - Set up mbox api function jump table
James Smartda0436e2009-05-22 14:51:39 -04007803 * @phba: The hba struct for which this call is being executed.
7804 * @dev_grp: The HBA PCI-Device group number.
7805 *
7806 * This routine sets up the mbox interface API function jump table in @phba
7807 * struct.
7808 * Returns: 0 - success, -ENODEV - failure.
7809 **/
7810int
7811lpfc_mbox_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
7812{
7813
7814 switch (dev_grp) {
7815 case LPFC_PCI_DEV_LP:
7816 phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s3;
7817 phba->lpfc_sli_handle_slow_ring_event =
7818 lpfc_sli_handle_slow_ring_event_s3;
7819 phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s3;
7820 phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s3;
7821 phba->lpfc_sli_brdready = lpfc_sli_brdready_s3;
7822 break;
7823 case LPFC_PCI_DEV_OC:
7824 phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s4;
7825 phba->lpfc_sli_handle_slow_ring_event =
7826 lpfc_sli_handle_slow_ring_event_s4;
7827 phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s4;
7828 phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s4;
7829 phba->lpfc_sli_brdready = lpfc_sli_brdready_s4;
7830 break;
7831 default:
7832 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7833 "1420 Invalid HBA PCI-device group: 0x%x\n",
7834 dev_grp);
7835 return -ENODEV;
7836 break;
7837 }
7838 return 0;
7839}
7840
7841/**
James Smart3621a712009-04-06 18:47:14 -04007842 * __lpfc_sli_ringtx_put - Add an iocb to the txq
James Smarte59058c2008-08-24 21:49:00 -04007843 * @phba: Pointer to HBA context object.
7844 * @pring: Pointer to driver SLI ring object.
7845 * @piocb: Pointer to address of newly added command iocb.
7846 *
7847 * This function is called with hbalock held to add a command
7848 * iocb to the txq when SLI layer cannot submit the command iocb
7849 * to the ring.
7850 **/
James Smart2a9bf3d2010-06-07 15:24:45 -04007851void
James Smart92d7f7b2007-06-17 19:56:38 -05007852__lpfc_sli_ringtx_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart2e0fef82007-06-17 19:56:36 -05007853 struct lpfc_iocbq *piocb)
dea31012005-04-17 16:05:31 -05007854{
7855 /* Insert the caller's iocb in the txq tail for later processing. */
7856 list_add_tail(&piocb->list, &pring->txq);
dea31012005-04-17 16:05:31 -05007857}
7858
James Smarte59058c2008-08-24 21:49:00 -04007859/**
James Smart3621a712009-04-06 18:47:14 -04007860 * lpfc_sli_next_iocb - Get the next iocb in the txq
James Smarte59058c2008-08-24 21:49:00 -04007861 * @phba: Pointer to HBA context object.
7862 * @pring: Pointer to driver SLI ring object.
7863 * @piocb: Pointer to address of newly added command iocb.
7864 *
7865 * This function is called with hbalock held before a new
7866 * iocb is submitted to the firmware. This function checks
7867 * txq to flush the iocbs in txq to Firmware before
7868 * submitting new iocbs to the Firmware.
7869 * If there are iocbs in the txq which need to be submitted
7870 * to firmware, lpfc_sli_next_iocb returns the first element
7871 * of the txq after dequeuing it from txq.
7872 * If there is no iocb in the txq then the function will return
7873 * *piocb and *piocb is set to NULL. Caller needs to check
7874 * *piocb to find if there are more commands in the txq.
7875 **/
dea31012005-04-17 16:05:31 -05007876static struct lpfc_iocbq *
7877lpfc_sli_next_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart2e0fef82007-06-17 19:56:36 -05007878 struct lpfc_iocbq **piocb)
dea31012005-04-17 16:05:31 -05007879{
7880 struct lpfc_iocbq * nextiocb;
7881
7882 nextiocb = lpfc_sli_ringtx_get(phba, pring);
7883 if (!nextiocb) {
7884 nextiocb = *piocb;
7885 *piocb = NULL;
7886 }
7887
7888 return nextiocb;
7889}
7890
James Smarte59058c2008-08-24 21:49:00 -04007891/**
James Smart3772a992009-05-22 14:50:54 -04007892 * __lpfc_sli_issue_iocb_s3 - SLI3 device lockless ver of lpfc_sli_issue_iocb
James Smarte59058c2008-08-24 21:49:00 -04007893 * @phba: Pointer to HBA context object.
James Smart3772a992009-05-22 14:50:54 -04007894 * @ring_number: SLI ring number to issue iocb on.
James Smarte59058c2008-08-24 21:49:00 -04007895 * @piocb: Pointer to command iocb.
7896 * @flag: Flag indicating if this command can be put into txq.
7897 *
James Smart3772a992009-05-22 14:50:54 -04007898 * __lpfc_sli_issue_iocb_s3 is used by other functions in the driver to issue
7899 * an iocb command to an HBA with SLI-3 interface spec. If the PCI slot is
7900 * recovering from error state, if HBA is resetting or if LPFC_STOP_IOCB_EVENT
7901 * flag is turned on, the function returns IOCB_ERROR. When the link is down,
7902 * this function allows only iocbs for posting buffers. This function finds
7903 * next available slot in the command ring and posts the command to the
7904 * available slot and writes the port attention register to request HBA start
7905 * processing new iocb. If there is no slot available in the ring and
7906 * flag & SLI_IOCB_RET_IOCB is set, the new iocb is added to the txq, otherwise
7907 * the function returns IOCB_BUSY.
James Smarte59058c2008-08-24 21:49:00 -04007908 *
James Smart3772a992009-05-22 14:50:54 -04007909 * This function is called with hbalock held. The function will return success
7910 * after it successfully submit the iocb to firmware or after adding to the
7911 * txq.
James Smarte59058c2008-08-24 21:49:00 -04007912 **/
James Smart98c9ea52007-10-27 13:37:33 -04007913static int
James Smart3772a992009-05-22 14:50:54 -04007914__lpfc_sli_issue_iocb_s3(struct lpfc_hba *phba, uint32_t ring_number,
dea31012005-04-17 16:05:31 -05007915 struct lpfc_iocbq *piocb, uint32_t flag)
7916{
7917 struct lpfc_iocbq *nextiocb;
7918 IOCB_t *iocb;
James Smart3772a992009-05-22 14:50:54 -04007919 struct lpfc_sli_ring *pring = &phba->sli.ring[ring_number];
dea31012005-04-17 16:05:31 -05007920
James Smart92d7f7b2007-06-17 19:56:38 -05007921 if (piocb->iocb_cmpl && (!piocb->vport) &&
7922 (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
7923 (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) {
7924 lpfc_printf_log(phba, KERN_ERR,
7925 LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04007926 "1807 IOCB x%x failed. No vport\n",
James Smart92d7f7b2007-06-17 19:56:38 -05007927 piocb->iocb.ulpCommand);
7928 dump_stack();
7929 return IOCB_ERROR;
7930 }
7931
7932
Linas Vepstas8d63f372007-02-14 14:28:36 -06007933 /* If the PCI channel is in offline state, do not post iocbs. */
7934 if (unlikely(pci_channel_offline(phba->pcidev)))
7935 return IOCB_ERROR;
7936
James Smarta257bf92009-04-06 18:48:10 -04007937 /* If HBA has a deferred error attention, fail the iocb. */
7938 if (unlikely(phba->hba_flag & DEFER_ERATT))
7939 return IOCB_ERROR;
7940
dea31012005-04-17 16:05:31 -05007941 /*
7942 * We should never get an IOCB if we are in a < LINK_DOWN state
7943 */
James Smart2e0fef82007-06-17 19:56:36 -05007944 if (unlikely(phba->link_state < LPFC_LINK_DOWN))
dea31012005-04-17 16:05:31 -05007945 return IOCB_ERROR;
7946
7947 /*
7948 * Check to see if we are blocking IOCB processing because of a
James Smart0b727fe2007-10-27 13:37:25 -04007949 * outstanding event.
dea31012005-04-17 16:05:31 -05007950 */
James Smart0b727fe2007-10-27 13:37:25 -04007951 if (unlikely(pring->flag & LPFC_STOP_IOCB_EVENT))
dea31012005-04-17 16:05:31 -05007952 goto iocb_busy;
7953
James Smart2e0fef82007-06-17 19:56:36 -05007954 if (unlikely(phba->link_state == LPFC_LINK_DOWN)) {
dea31012005-04-17 16:05:31 -05007955 /*
James Smart2680eea2007-04-25 09:52:55 -04007956 * Only CREATE_XRI, CLOSE_XRI, and QUE_RING_BUF
dea31012005-04-17 16:05:31 -05007957 * can be issued if the link is not up.
7958 */
7959 switch (piocb->iocb.ulpCommand) {
James Smart84774a42008-08-24 21:50:06 -04007960 case CMD_GEN_REQUEST64_CR:
7961 case CMD_GEN_REQUEST64_CX:
7962 if (!(phba->sli.sli_flag & LPFC_MENLO_MAINT) ||
7963 (piocb->iocb.un.genreq64.w5.hcsw.Rctl !=
James Smart6a9c52c2009-10-02 15:16:51 -04007964 FC_RCTL_DD_UNSOL_CMD) ||
James Smart84774a42008-08-24 21:50:06 -04007965 (piocb->iocb.un.genreq64.w5.hcsw.Type !=
7966 MENLO_TRANSPORT_TYPE))
7967
7968 goto iocb_busy;
7969 break;
dea31012005-04-17 16:05:31 -05007970 case CMD_QUE_RING_BUF_CN:
7971 case CMD_QUE_RING_BUF64_CN:
dea31012005-04-17 16:05:31 -05007972 /*
7973 * For IOCBs, like QUE_RING_BUF, that have no rsp ring
7974 * completion, iocb_cmpl MUST be 0.
7975 */
7976 if (piocb->iocb_cmpl)
7977 piocb->iocb_cmpl = NULL;
7978 /*FALLTHROUGH*/
7979 case CMD_CREATE_XRI_CR:
James Smart2680eea2007-04-25 09:52:55 -04007980 case CMD_CLOSE_XRI_CN:
7981 case CMD_CLOSE_XRI_CX:
dea31012005-04-17 16:05:31 -05007982 break;
7983 default:
7984 goto iocb_busy;
7985 }
7986
7987 /*
7988 * For FCP commands, we must be in a state where we can process link
7989 * attention events.
7990 */
7991 } else if (unlikely(pring->ringno == phba->sli.fcp_ring &&
James Smart92d7f7b2007-06-17 19:56:38 -05007992 !(phba->sli.sli_flag & LPFC_PROCESS_LA))) {
dea31012005-04-17 16:05:31 -05007993 goto iocb_busy;
James Smart92d7f7b2007-06-17 19:56:38 -05007994 }
dea31012005-04-17 16:05:31 -05007995
dea31012005-04-17 16:05:31 -05007996 while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
7997 (nextiocb = lpfc_sli_next_iocb(phba, pring, &piocb)))
7998 lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
7999
8000 if (iocb)
8001 lpfc_sli_update_ring(phba, pring);
8002 else
8003 lpfc_sli_update_full_ring(phba, pring);
8004
8005 if (!piocb)
8006 return IOCB_SUCCESS;
8007
8008 goto out_busy;
8009
8010 iocb_busy:
8011 pring->stats.iocb_cmd_delay++;
8012
8013 out_busy:
8014
8015 if (!(flag & SLI_IOCB_RET_IOCB)) {
James Smart92d7f7b2007-06-17 19:56:38 -05008016 __lpfc_sli_ringtx_put(phba, pring, piocb);
dea31012005-04-17 16:05:31 -05008017 return IOCB_SUCCESS;
8018 }
8019
8020 return IOCB_BUSY;
8021}
8022
James Smart3772a992009-05-22 14:50:54 -04008023/**
James Smart4f774512009-05-22 14:52:35 -04008024 * lpfc_sli4_bpl2sgl - Convert the bpl/bde to a sgl.
8025 * @phba: Pointer to HBA context object.
8026 * @piocb: Pointer to command iocb.
8027 * @sglq: Pointer to the scatter gather queue object.
8028 *
8029 * This routine converts the bpl or bde that is in the IOCB
8030 * to a sgl list for the sli4 hardware. The physical address
8031 * of the bpl/bde is converted back to a virtual address.
8032 * If the IOCB contains a BPL then the list of BDE's is
8033 * converted to sli4_sge's. If the IOCB contains a single
8034 * BDE then it is converted to a single sli_sge.
8035 * The IOCB is still in cpu endianess so the contents of
8036 * the bpl can be used without byte swapping.
8037 *
8038 * Returns valid XRI = Success, NO_XRI = Failure.
8039**/
8040static uint16_t
8041lpfc_sli4_bpl2sgl(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq,
8042 struct lpfc_sglq *sglq)
8043{
8044 uint16_t xritag = NO_XRI;
8045 struct ulp_bde64 *bpl = NULL;
8046 struct ulp_bde64 bde;
8047 struct sli4_sge *sgl = NULL;
James Smart1b511972011-12-13 13:23:09 -05008048 struct lpfc_dmabuf *dmabuf;
James Smart4f774512009-05-22 14:52:35 -04008049 IOCB_t *icmd;
8050 int numBdes = 0;
8051 int i = 0;
James Smart63e801c2010-11-20 23:14:19 -05008052 uint32_t offset = 0; /* accumulated offset in the sg request list */
8053 int inbound = 0; /* number of sg reply entries inbound from firmware */
James Smart4f774512009-05-22 14:52:35 -04008054
8055 if (!piocbq || !sglq)
8056 return xritag;
8057
8058 sgl = (struct sli4_sge *)sglq->sgl;
8059 icmd = &piocbq->iocb;
James Smart6b5151f2012-01-18 16:24:06 -05008060 if (icmd->ulpCommand == CMD_XMIT_BLS_RSP64_CX)
8061 return sglq->sli4_xritag;
James Smart4f774512009-05-22 14:52:35 -04008062 if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
8063 numBdes = icmd->un.genreq64.bdl.bdeSize /
8064 sizeof(struct ulp_bde64);
8065 /* The addrHigh and addrLow fields within the IOCB
8066 * have not been byteswapped yet so there is no
8067 * need to swap them back.
8068 */
James Smart1b511972011-12-13 13:23:09 -05008069 if (piocbq->context3)
8070 dmabuf = (struct lpfc_dmabuf *)piocbq->context3;
8071 else
8072 return xritag;
James Smart4f774512009-05-22 14:52:35 -04008073
James Smart1b511972011-12-13 13:23:09 -05008074 bpl = (struct ulp_bde64 *)dmabuf->virt;
James Smart4f774512009-05-22 14:52:35 -04008075 if (!bpl)
8076 return xritag;
8077
8078 for (i = 0; i < numBdes; i++) {
8079 /* Should already be byte swapped. */
James Smart28baac72010-02-12 14:42:03 -05008080 sgl->addr_hi = bpl->addrHigh;
8081 sgl->addr_lo = bpl->addrLow;
8082
James Smart05580562011-05-24 11:40:48 -04008083 sgl->word2 = le32_to_cpu(sgl->word2);
James Smart4f774512009-05-22 14:52:35 -04008084 if ((i+1) == numBdes)
8085 bf_set(lpfc_sli4_sge_last, sgl, 1);
8086 else
8087 bf_set(lpfc_sli4_sge_last, sgl, 0);
James Smart28baac72010-02-12 14:42:03 -05008088 /* swap the size field back to the cpu so we
8089 * can assign it to the sgl.
8090 */
8091 bde.tus.w = le32_to_cpu(bpl->tus.w);
8092 sgl->sge_len = cpu_to_le32(bde.tus.f.bdeSize);
James Smart63e801c2010-11-20 23:14:19 -05008093 /* The offsets in the sgl need to be accumulated
8094 * separately for the request and reply lists.
8095 * The request is always first, the reply follows.
8096 */
8097 if (piocbq->iocb.ulpCommand == CMD_GEN_REQUEST64_CR) {
8098 /* add up the reply sg entries */
8099 if (bpl->tus.f.bdeFlags == BUFF_TYPE_BDE_64I)
8100 inbound++;
8101 /* first inbound? reset the offset */
8102 if (inbound == 1)
8103 offset = 0;
8104 bf_set(lpfc_sli4_sge_offset, sgl, offset);
James Smartf9bb2da2011-10-10 21:34:11 -04008105 bf_set(lpfc_sli4_sge_type, sgl,
8106 LPFC_SGE_TYPE_DATA);
James Smart63e801c2010-11-20 23:14:19 -05008107 offset += bde.tus.f.bdeSize;
8108 }
James Smart546fc852011-03-11 16:06:29 -05008109 sgl->word2 = cpu_to_le32(sgl->word2);
James Smart4f774512009-05-22 14:52:35 -04008110 bpl++;
8111 sgl++;
8112 }
8113 } else if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BDE_64) {
8114 /* The addrHigh and addrLow fields of the BDE have not
8115 * been byteswapped yet so they need to be swapped
8116 * before putting them in the sgl.
8117 */
8118 sgl->addr_hi =
8119 cpu_to_le32(icmd->un.genreq64.bdl.addrHigh);
8120 sgl->addr_lo =
8121 cpu_to_le32(icmd->un.genreq64.bdl.addrLow);
James Smart05580562011-05-24 11:40:48 -04008122 sgl->word2 = le32_to_cpu(sgl->word2);
James Smart4f774512009-05-22 14:52:35 -04008123 bf_set(lpfc_sli4_sge_last, sgl, 1);
8124 sgl->word2 = cpu_to_le32(sgl->word2);
James Smart28baac72010-02-12 14:42:03 -05008125 sgl->sge_len =
8126 cpu_to_le32(icmd->un.genreq64.bdl.bdeSize);
James Smart4f774512009-05-22 14:52:35 -04008127 }
8128 return sglq->sli4_xritag;
8129}
8130
8131/**
8132 * lpfc_sli4_scmd_to_wqidx_distr - scsi command to SLI4 WQ index distribution
8133 * @phba: Pointer to HBA context object.
James Smart4f774512009-05-22 14:52:35 -04008134 *
James Smarta93ff372010-10-22 11:06:08 -04008135 * This routine performs a roundrobin SCSI command to SLI4 FCP WQ index
James Smart8fa38512009-07-19 10:01:03 -04008136 * distribution. This is called by __lpfc_sli_issue_iocb_s4() with the hbalock
8137 * held.
James Smart4f774512009-05-22 14:52:35 -04008138 *
8139 * Return: index into SLI4 fast-path FCP queue index.
8140 **/
James Smart2a76a282012-08-03 12:35:54 -04008141static inline uint32_t
James Smart8fa38512009-07-19 10:01:03 -04008142lpfc_sli4_scmd_to_wqidx_distr(struct lpfc_hba *phba)
James Smart4f774512009-05-22 14:52:35 -04008143{
James Smart7bb03bb2013-04-17 20:19:16 -04008144 struct lpfc_vector_map_info *cpup;
8145 int chann, cpu;
James Smart4f774512009-05-22 14:52:35 -04008146
James Smart76f96b62013-12-17 20:29:01 -05008147 if (phba->cfg_fcp_io_sched == LPFC_FCP_SCHED_BY_CPU
8148 && phba->cfg_fcp_io_channel > 1) {
James Smart7bb03bb2013-04-17 20:19:16 -04008149 cpu = smp_processor_id();
8150 if (cpu < phba->sli4_hba.num_present_cpu) {
8151 cpup = phba->sli4_hba.cpu_map;
8152 cpup += cpu;
8153 return cpup->channel_id;
8154 }
8155 chann = cpu;
8156 }
8157 chann = atomic_add_return(1, &phba->fcp_qidx);
8158 chann = (chann % phba->cfg_fcp_io_channel);
8159 return chann;
James Smart4f774512009-05-22 14:52:35 -04008160}
8161
8162/**
8163 * lpfc_sli_iocb2wqe - Convert the IOCB to a work queue entry.
8164 * @phba: Pointer to HBA context object.
8165 * @piocb: Pointer to command iocb.
8166 * @wqe: Pointer to the work queue entry.
8167 *
8168 * This routine converts the iocb command to its Work Queue Entry
8169 * equivalent. The wqe pointer should not have any fields set when
8170 * this routine is called because it will memcpy over them.
8171 * This routine does not set the CQ_ID or the WQEC bits in the
8172 * wqe.
8173 *
8174 * Returns: 0 = Success, IOCB_ERROR = Failure.
8175 **/
8176static int
8177lpfc_sli4_iocb2wqe(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq,
8178 union lpfc_wqe *wqe)
8179{
James Smart5ffc2662009-11-18 15:39:44 -05008180 uint32_t xmit_len = 0, total_len = 0;
James Smart4f774512009-05-22 14:52:35 -04008181 uint8_t ct = 0;
8182 uint32_t fip;
8183 uint32_t abort_tag;
8184 uint8_t command_type = ELS_COMMAND_NON_FIP;
8185 uint8_t cmnd;
8186 uint16_t xritag;
James Smartdcf2a4e2010-09-29 11:18:53 -04008187 uint16_t abrt_iotag;
8188 struct lpfc_iocbq *abrtiocbq;
James Smart4f774512009-05-22 14:52:35 -04008189 struct ulp_bde64 *bpl = NULL;
James Smartf0d9bcc2010-10-22 11:07:09 -04008190 uint32_t els_id = LPFC_ELS_ID_DEFAULT;
James Smart5ffc2662009-11-18 15:39:44 -05008191 int numBdes, i;
8192 struct ulp_bde64 bde;
James Smartc31098c2011-04-16 11:03:33 -04008193 struct lpfc_nodelist *ndlp;
James Smartff78d8f2011-12-13 13:21:35 -05008194 uint32_t *pcmd;
James Smart1b511972011-12-13 13:23:09 -05008195 uint32_t if_type;
James Smart4f774512009-05-22 14:52:35 -04008196
James Smart45ed1192009-10-02 15:17:02 -04008197 fip = phba->hba_flag & HBA_FIP_SUPPORT;
James Smart4f774512009-05-22 14:52:35 -04008198 /* The fcp commands will set command type */
James Smart0c287582009-06-10 17:22:56 -04008199 if (iocbq->iocb_flag & LPFC_IO_FCP)
James Smart4f774512009-05-22 14:52:35 -04008200 command_type = FCP_COMMAND;
James Smartc8685952009-11-18 15:39:16 -05008201 else if (fip && (iocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK))
James Smart0c287582009-06-10 17:22:56 -04008202 command_type = ELS_COMMAND_FIP;
8203 else
8204 command_type = ELS_COMMAND_NON_FIP;
8205
James Smart4f774512009-05-22 14:52:35 -04008206 /* Some of the fields are in the right position already */
8207 memcpy(wqe, &iocbq->iocb, sizeof(union lpfc_wqe));
8208 abort_tag = (uint32_t) iocbq->iotag;
8209 xritag = iocbq->sli4_xritag;
James Smartf0d9bcc2010-10-22 11:07:09 -04008210 wqe->generic.wqe_com.word7 = 0; /* The ct field has moved so reset */
James Smart4f774512009-05-22 14:52:35 -04008211 /* words0-2 bpl convert bde */
8212 if (iocbq->iocb.un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
James Smart5ffc2662009-11-18 15:39:44 -05008213 numBdes = iocbq->iocb.un.genreq64.bdl.bdeSize /
8214 sizeof(struct ulp_bde64);
James Smart4f774512009-05-22 14:52:35 -04008215 bpl = (struct ulp_bde64 *)
8216 ((struct lpfc_dmabuf *)iocbq->context3)->virt;
8217 if (!bpl)
8218 return IOCB_ERROR;
8219
8220 /* Should already be byte swapped. */
8221 wqe->generic.bde.addrHigh = le32_to_cpu(bpl->addrHigh);
8222 wqe->generic.bde.addrLow = le32_to_cpu(bpl->addrLow);
8223 /* swap the size field back to the cpu so we
8224 * can assign it to the sgl.
8225 */
8226 wqe->generic.bde.tus.w = le32_to_cpu(bpl->tus.w);
James Smart5ffc2662009-11-18 15:39:44 -05008227 xmit_len = wqe->generic.bde.tus.f.bdeSize;
8228 total_len = 0;
8229 for (i = 0; i < numBdes; i++) {
8230 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
8231 total_len += bde.tus.f.bdeSize;
8232 }
James Smart4f774512009-05-22 14:52:35 -04008233 } else
James Smart5ffc2662009-11-18 15:39:44 -05008234 xmit_len = iocbq->iocb.un.fcpi64.bdl.bdeSize;
James Smart4f774512009-05-22 14:52:35 -04008235
8236 iocbq->iocb.ulpIoTag = iocbq->iotag;
8237 cmnd = iocbq->iocb.ulpCommand;
8238
8239 switch (iocbq->iocb.ulpCommand) {
8240 case CMD_ELS_REQUEST64_CR:
James Smart93d1379e2012-05-09 21:19:34 -04008241 if (iocbq->iocb_flag & LPFC_IO_LIBDFC)
8242 ndlp = iocbq->context_un.ndlp;
8243 else
8244 ndlp = (struct lpfc_nodelist *)iocbq->context1;
James Smart4f774512009-05-22 14:52:35 -04008245 if (!iocbq->iocb.ulpLe) {
8246 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8247 "2007 Only Limited Edition cmd Format"
8248 " supported 0x%x\n",
8249 iocbq->iocb.ulpCommand);
8250 return IOCB_ERROR;
8251 }
James Smartff78d8f2011-12-13 13:21:35 -05008252
James Smart5ffc2662009-11-18 15:39:44 -05008253 wqe->els_req.payload_len = xmit_len;
James Smart4f774512009-05-22 14:52:35 -04008254 /* Els_reguest64 has a TMO */
8255 bf_set(wqe_tmo, &wqe->els_req.wqe_com,
8256 iocbq->iocb.ulpTimeout);
8257 /* Need a VF for word 4 set the vf bit*/
8258 bf_set(els_req64_vf, &wqe->els_req, 0);
8259 /* And a VFID for word 12 */
8260 bf_set(els_req64_vfid, &wqe->els_req, 0);
James Smart4f774512009-05-22 14:52:35 -04008261 ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
James Smartf0d9bcc2010-10-22 11:07:09 -04008262 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
8263 iocbq->iocb.ulpContext);
8264 bf_set(wqe_ct, &wqe->els_req.wqe_com, ct);
8265 bf_set(wqe_pu, &wqe->els_req.wqe_com, 0);
James Smart4f774512009-05-22 14:52:35 -04008266 /* CCP CCPE PV PRI in word10 were set in the memcpy */
James Smartff78d8f2011-12-13 13:21:35 -05008267 if (command_type == ELS_COMMAND_FIP)
James Smartc8685952009-11-18 15:39:16 -05008268 els_id = ((iocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK)
8269 >> LPFC_FIP_ELS_ID_SHIFT);
James Smartff78d8f2011-12-13 13:21:35 -05008270 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
8271 iocbq->context2)->virt);
James Smart1b511972011-12-13 13:23:09 -05008272 if_type = bf_get(lpfc_sli_intf_if_type,
8273 &phba->sli4_hba.sli_intf);
8274 if (if_type == LPFC_SLI_INTF_IF_TYPE_2) {
James Smartff78d8f2011-12-13 13:21:35 -05008275 if (pcmd && (*pcmd == ELS_CMD_FLOGI ||
James Smartcb69f7d2011-12-13 13:21:57 -05008276 *pcmd == ELS_CMD_SCR ||
James Smart6b5151f2012-01-18 16:24:06 -05008277 *pcmd == ELS_CMD_FDISC ||
James Smartbdcd2b92012-03-01 22:33:52 -05008278 *pcmd == ELS_CMD_LOGO ||
James Smartff78d8f2011-12-13 13:21:35 -05008279 *pcmd == ELS_CMD_PLOGI)) {
8280 bf_set(els_req64_sp, &wqe->els_req, 1);
8281 bf_set(els_req64_sid, &wqe->els_req,
8282 iocbq->vport->fc_myDID);
James Smart939723a2012-05-09 21:19:03 -04008283 if ((*pcmd == ELS_CMD_FLOGI) &&
8284 !(phba->fc_topology ==
8285 LPFC_TOPOLOGY_LOOP))
8286 bf_set(els_req64_sid, &wqe->els_req, 0);
James Smartff78d8f2011-12-13 13:21:35 -05008287 bf_set(wqe_ct, &wqe->els_req.wqe_com, 1);
8288 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
James Smarta7dd9c02012-05-09 21:16:50 -04008289 phba->vpi_ids[iocbq->vport->vpi]);
James Smart3ef6d242012-01-18 16:23:48 -05008290 } else if (pcmd && iocbq->context1) {
James Smartff78d8f2011-12-13 13:21:35 -05008291 bf_set(wqe_ct, &wqe->els_req.wqe_com, 0);
8292 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
8293 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
8294 }
James Smartc8685952009-11-18 15:39:16 -05008295 }
James Smart6d368e52011-05-24 11:44:12 -04008296 bf_set(wqe_temp_rpi, &wqe->els_req.wqe_com,
8297 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
James Smartf0d9bcc2010-10-22 11:07:09 -04008298 bf_set(wqe_els_id, &wqe->els_req.wqe_com, els_id);
8299 bf_set(wqe_dbde, &wqe->els_req.wqe_com, 1);
8300 bf_set(wqe_iod, &wqe->els_req.wqe_com, LPFC_WQE_IOD_READ);
8301 bf_set(wqe_qosd, &wqe->els_req.wqe_com, 1);
8302 bf_set(wqe_lenloc, &wqe->els_req.wqe_com, LPFC_WQE_LENLOC_NONE);
8303 bf_set(wqe_ebde_cnt, &wqe->els_req.wqe_com, 0);
James Smartaf227412013-10-10 12:23:10 -04008304 wqe->els_req.max_response_payload_len = total_len - xmit_len;
James Smart7851fe22011-07-22 18:36:52 -04008305 break;
James Smart5ffc2662009-11-18 15:39:44 -05008306 case CMD_XMIT_SEQUENCE64_CX:
James Smartf0d9bcc2010-10-22 11:07:09 -04008307 bf_set(wqe_ctxt_tag, &wqe->xmit_sequence.wqe_com,
8308 iocbq->iocb.un.ulpWord[3]);
8309 bf_set(wqe_rcvoxid, &wqe->xmit_sequence.wqe_com,
James Smart7851fe22011-07-22 18:36:52 -04008310 iocbq->iocb.unsli3.rcvsli3.ox_id);
James Smart5ffc2662009-11-18 15:39:44 -05008311 /* The entire sequence is transmitted for this IOCB */
8312 xmit_len = total_len;
8313 cmnd = CMD_XMIT_SEQUENCE64_CR;
James Smart1b511972011-12-13 13:23:09 -05008314 if (phba->link_flag & LS_LOOPBACK_MODE)
8315 bf_set(wqe_xo, &wqe->xmit_sequence.wge_ctl, 1);
James Smart4f774512009-05-22 14:52:35 -04008316 case CMD_XMIT_SEQUENCE64_CR:
James Smartf0d9bcc2010-10-22 11:07:09 -04008317 /* word3 iocb=io_tag32 wqe=reserved */
8318 wqe->xmit_sequence.rsvd3 = 0;
James Smart4f774512009-05-22 14:52:35 -04008319 /* word4 relative_offset memcpy */
8320 /* word5 r_ctl/df_ctl memcpy */
James Smartf0d9bcc2010-10-22 11:07:09 -04008321 bf_set(wqe_pu, &wqe->xmit_sequence.wqe_com, 0);
8322 bf_set(wqe_dbde, &wqe->xmit_sequence.wqe_com, 1);
8323 bf_set(wqe_iod, &wqe->xmit_sequence.wqe_com,
8324 LPFC_WQE_IOD_WRITE);
8325 bf_set(wqe_lenloc, &wqe->xmit_sequence.wqe_com,
8326 LPFC_WQE_LENLOC_WORD12);
8327 bf_set(wqe_ebde_cnt, &wqe->xmit_sequence.wqe_com, 0);
James Smart5ffc2662009-11-18 15:39:44 -05008328 wqe->xmit_sequence.xmit_len = xmit_len;
8329 command_type = OTHER_COMMAND;
James Smart7851fe22011-07-22 18:36:52 -04008330 break;
James Smart4f774512009-05-22 14:52:35 -04008331 case CMD_XMIT_BCAST64_CN:
James Smartf0d9bcc2010-10-22 11:07:09 -04008332 /* word3 iocb=iotag32 wqe=seq_payload_len */
8333 wqe->xmit_bcast64.seq_payload_len = xmit_len;
James Smart4f774512009-05-22 14:52:35 -04008334 /* word4 iocb=rsvd wqe=rsvd */
8335 /* word5 iocb=rctl/type/df_ctl wqe=rctl/type/df_ctl memcpy */
8336 /* word6 iocb=ctxt_tag/io_tag wqe=ctxt_tag/xri */
James Smartf0d9bcc2010-10-22 11:07:09 -04008337 bf_set(wqe_ct, &wqe->xmit_bcast64.wqe_com,
James Smart4f774512009-05-22 14:52:35 -04008338 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
James Smartf0d9bcc2010-10-22 11:07:09 -04008339 bf_set(wqe_dbde, &wqe->xmit_bcast64.wqe_com, 1);
8340 bf_set(wqe_iod, &wqe->xmit_bcast64.wqe_com, LPFC_WQE_IOD_WRITE);
8341 bf_set(wqe_lenloc, &wqe->xmit_bcast64.wqe_com,
8342 LPFC_WQE_LENLOC_WORD3);
8343 bf_set(wqe_ebde_cnt, &wqe->xmit_bcast64.wqe_com, 0);
James Smart7851fe22011-07-22 18:36:52 -04008344 break;
James Smart4f774512009-05-22 14:52:35 -04008345 case CMD_FCP_IWRITE64_CR:
8346 command_type = FCP_COMMAND_DATA_OUT;
James Smartf0d9bcc2010-10-22 11:07:09 -04008347 /* word3 iocb=iotag wqe=payload_offset_len */
8348 /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
James Smart0ba4b212013-10-10 12:22:38 -04008349 bf_set(payload_offset_len, &wqe->fcp_iwrite,
8350 xmit_len + sizeof(struct fcp_rsp));
8351 bf_set(cmd_buff_len, &wqe->fcp_iwrite,
8352 0);
James Smartf0d9bcc2010-10-22 11:07:09 -04008353 /* word4 iocb=parameter wqe=total_xfer_length memcpy */
8354 /* word5 iocb=initial_xfer_len wqe=initial_xfer_len memcpy */
8355 bf_set(wqe_erp, &wqe->fcp_iwrite.wqe_com,
8356 iocbq->iocb.ulpFCP2Rcvy);
8357 bf_set(wqe_lnk, &wqe->fcp_iwrite.wqe_com, iocbq->iocb.ulpXS);
8358 /* Always open the exchange */
8359 bf_set(wqe_xc, &wqe->fcp_iwrite.wqe_com, 0);
James Smartf0d9bcc2010-10-22 11:07:09 -04008360 bf_set(wqe_iod, &wqe->fcp_iwrite.wqe_com, LPFC_WQE_IOD_WRITE);
8361 bf_set(wqe_lenloc, &wqe->fcp_iwrite.wqe_com,
8362 LPFC_WQE_LENLOC_WORD4);
8363 bf_set(wqe_ebde_cnt, &wqe->fcp_iwrite.wqe_com, 0);
8364 bf_set(wqe_pu, &wqe->fcp_iwrite.wqe_com, iocbq->iocb.ulpPU);
James Smartacd68592012-01-18 16:25:09 -05008365 bf_set(wqe_dbde, &wqe->fcp_iwrite.wqe_com, 1);
James Smart1ba981f2014-02-20 09:56:45 -05008366 if (iocbq->iocb_flag & LPFC_IO_OAS) {
8367 bf_set(wqe_oas, &wqe->fcp_iwrite.wqe_com, 1);
8368 if (phba->cfg_XLanePriority) {
8369 bf_set(wqe_ccpe, &wqe->fcp_iwrite.wqe_com, 1);
8370 bf_set(wqe_ccp, &wqe->fcp_iwrite.wqe_com,
8371 (phba->cfg_XLanePriority << 1));
8372 }
8373 }
James Smart7851fe22011-07-22 18:36:52 -04008374 break;
James Smartf0d9bcc2010-10-22 11:07:09 -04008375 case CMD_FCP_IREAD64_CR:
8376 /* word3 iocb=iotag wqe=payload_offset_len */
8377 /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
James Smart0ba4b212013-10-10 12:22:38 -04008378 bf_set(payload_offset_len, &wqe->fcp_iread,
8379 xmit_len + sizeof(struct fcp_rsp));
8380 bf_set(cmd_buff_len, &wqe->fcp_iread,
8381 0);
James Smartf0d9bcc2010-10-22 11:07:09 -04008382 /* word4 iocb=parameter wqe=total_xfer_length memcpy */
8383 /* word5 iocb=initial_xfer_len wqe=initial_xfer_len memcpy */
8384 bf_set(wqe_erp, &wqe->fcp_iread.wqe_com,
8385 iocbq->iocb.ulpFCP2Rcvy);
8386 bf_set(wqe_lnk, &wqe->fcp_iread.wqe_com, iocbq->iocb.ulpXS);
James Smart4f774512009-05-22 14:52:35 -04008387 /* Always open the exchange */
8388 bf_set(wqe_xc, &wqe->fcp_iread.wqe_com, 0);
James Smartf0d9bcc2010-10-22 11:07:09 -04008389 bf_set(wqe_iod, &wqe->fcp_iread.wqe_com, LPFC_WQE_IOD_READ);
8390 bf_set(wqe_lenloc, &wqe->fcp_iread.wqe_com,
8391 LPFC_WQE_LENLOC_WORD4);
8392 bf_set(wqe_ebde_cnt, &wqe->fcp_iread.wqe_com, 0);
8393 bf_set(wqe_pu, &wqe->fcp_iread.wqe_com, iocbq->iocb.ulpPU);
James Smartacd68592012-01-18 16:25:09 -05008394 bf_set(wqe_dbde, &wqe->fcp_iread.wqe_com, 1);
James Smart1ba981f2014-02-20 09:56:45 -05008395 if (iocbq->iocb_flag & LPFC_IO_OAS) {
8396 bf_set(wqe_oas, &wqe->fcp_iread.wqe_com, 1);
8397 if (phba->cfg_XLanePriority) {
8398 bf_set(wqe_ccpe, &wqe->fcp_iread.wqe_com, 1);
8399 bf_set(wqe_ccp, &wqe->fcp_iread.wqe_com,
8400 (phba->cfg_XLanePriority << 1));
8401 }
8402 }
James Smart7851fe22011-07-22 18:36:52 -04008403 break;
James Smartf1126682009-06-10 17:22:44 -04008404 case CMD_FCP_ICMND64_CR:
James Smart0ba4b212013-10-10 12:22:38 -04008405 /* word3 iocb=iotag wqe=payload_offset_len */
8406 /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
8407 bf_set(payload_offset_len, &wqe->fcp_icmd,
8408 xmit_len + sizeof(struct fcp_rsp));
8409 bf_set(cmd_buff_len, &wqe->fcp_icmd,
8410 0);
James Smartf0d9bcc2010-10-22 11:07:09 -04008411 /* word3 iocb=IO_TAG wqe=reserved */
James Smartf0d9bcc2010-10-22 11:07:09 -04008412 bf_set(wqe_pu, &wqe->fcp_icmd.wqe_com, 0);
James Smartf1126682009-06-10 17:22:44 -04008413 /* Always open the exchange */
James Smartf0d9bcc2010-10-22 11:07:09 -04008414 bf_set(wqe_xc, &wqe->fcp_icmd.wqe_com, 0);
8415 bf_set(wqe_dbde, &wqe->fcp_icmd.wqe_com, 1);
8416 bf_set(wqe_iod, &wqe->fcp_icmd.wqe_com, LPFC_WQE_IOD_WRITE);
8417 bf_set(wqe_qosd, &wqe->fcp_icmd.wqe_com, 1);
8418 bf_set(wqe_lenloc, &wqe->fcp_icmd.wqe_com,
8419 LPFC_WQE_LENLOC_NONE);
8420 bf_set(wqe_ebde_cnt, &wqe->fcp_icmd.wqe_com, 0);
James Smart2a94aea2012-09-29 11:30:31 -04008421 bf_set(wqe_erp, &wqe->fcp_icmd.wqe_com,
8422 iocbq->iocb.ulpFCP2Rcvy);
James Smart1ba981f2014-02-20 09:56:45 -05008423 if (iocbq->iocb_flag & LPFC_IO_OAS) {
8424 bf_set(wqe_oas, &wqe->fcp_icmd.wqe_com, 1);
8425 if (phba->cfg_XLanePriority) {
8426 bf_set(wqe_ccpe, &wqe->fcp_icmd.wqe_com, 1);
8427 bf_set(wqe_ccp, &wqe->fcp_icmd.wqe_com,
8428 (phba->cfg_XLanePriority << 1));
8429 }
8430 }
James Smart7851fe22011-07-22 18:36:52 -04008431 break;
James Smart4f774512009-05-22 14:52:35 -04008432 case CMD_GEN_REQUEST64_CR:
James Smart63e801c2010-11-20 23:14:19 -05008433 /* For this command calculate the xmit length of the
8434 * request bde.
8435 */
8436 xmit_len = 0;
8437 numBdes = iocbq->iocb.un.genreq64.bdl.bdeSize /
8438 sizeof(struct ulp_bde64);
8439 for (i = 0; i < numBdes; i++) {
James Smart63e801c2010-11-20 23:14:19 -05008440 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
James Smart546fc852011-03-11 16:06:29 -05008441 if (bde.tus.f.bdeFlags != BUFF_TYPE_BDE_64)
8442 break;
James Smart63e801c2010-11-20 23:14:19 -05008443 xmit_len += bde.tus.f.bdeSize;
8444 }
James Smartf0d9bcc2010-10-22 11:07:09 -04008445 /* word3 iocb=IO_TAG wqe=request_payload_len */
8446 wqe->gen_req.request_payload_len = xmit_len;
8447 /* word4 iocb=parameter wqe=relative_offset memcpy */
8448 /* word5 [rctl, type, df_ctl, la] copied in memcpy */
James Smart4f774512009-05-22 14:52:35 -04008449 /* word6 context tag copied in memcpy */
8450 if (iocbq->iocb.ulpCt_h || iocbq->iocb.ulpCt_l) {
8451 ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
8452 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8453 "2015 Invalid CT %x command 0x%x\n",
8454 ct, iocbq->iocb.ulpCommand);
8455 return IOCB_ERROR;
8456 }
James Smartf0d9bcc2010-10-22 11:07:09 -04008457 bf_set(wqe_ct, &wqe->gen_req.wqe_com, 0);
8458 bf_set(wqe_tmo, &wqe->gen_req.wqe_com, iocbq->iocb.ulpTimeout);
8459 bf_set(wqe_pu, &wqe->gen_req.wqe_com, iocbq->iocb.ulpPU);
8460 bf_set(wqe_dbde, &wqe->gen_req.wqe_com, 1);
8461 bf_set(wqe_iod, &wqe->gen_req.wqe_com, LPFC_WQE_IOD_READ);
8462 bf_set(wqe_qosd, &wqe->gen_req.wqe_com, 1);
8463 bf_set(wqe_lenloc, &wqe->gen_req.wqe_com, LPFC_WQE_LENLOC_NONE);
8464 bf_set(wqe_ebde_cnt, &wqe->gen_req.wqe_com, 0);
James Smartaf227412013-10-10 12:23:10 -04008465 wqe->gen_req.max_response_payload_len = total_len - xmit_len;
James Smart4f774512009-05-22 14:52:35 -04008466 command_type = OTHER_COMMAND;
James Smart7851fe22011-07-22 18:36:52 -04008467 break;
James Smart4f774512009-05-22 14:52:35 -04008468 case CMD_XMIT_ELS_RSP64_CX:
James Smartc31098c2011-04-16 11:03:33 -04008469 ndlp = (struct lpfc_nodelist *)iocbq->context1;
James Smart4f774512009-05-22 14:52:35 -04008470 /* words0-2 BDE memcpy */
James Smartf0d9bcc2010-10-22 11:07:09 -04008471 /* word3 iocb=iotag32 wqe=response_payload_len */
8472 wqe->xmit_els_rsp.response_payload_len = xmit_len;
James Smart939723a2012-05-09 21:19:03 -04008473 /* word4 */
8474 wqe->xmit_els_rsp.word4 = 0;
James Smart4f774512009-05-22 14:52:35 -04008475 /* word5 iocb=rsvd wge=did */
8476 bf_set(wqe_els_did, &wqe->xmit_els_rsp.wqe_dest,
James Smart939723a2012-05-09 21:19:03 -04008477 iocbq->iocb.un.xseq64.xmit_els_remoteID);
8478
8479 if_type = bf_get(lpfc_sli_intf_if_type,
8480 &phba->sli4_hba.sli_intf);
8481 if (if_type == LPFC_SLI_INTF_IF_TYPE_2) {
8482 if (iocbq->vport->fc_flag & FC_PT2PT) {
8483 bf_set(els_rsp64_sp, &wqe->xmit_els_rsp, 1);
8484 bf_set(els_rsp64_sid, &wqe->xmit_els_rsp,
8485 iocbq->vport->fc_myDID);
8486 if (iocbq->vport->fc_myDID == Fabric_DID) {
8487 bf_set(wqe_els_did,
8488 &wqe->xmit_els_rsp.wqe_dest, 0);
8489 }
8490 }
8491 }
James Smartf0d9bcc2010-10-22 11:07:09 -04008492 bf_set(wqe_ct, &wqe->xmit_els_rsp.wqe_com,
8493 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
8494 bf_set(wqe_pu, &wqe->xmit_els_rsp.wqe_com, iocbq->iocb.ulpPU);
8495 bf_set(wqe_rcvoxid, &wqe->xmit_els_rsp.wqe_com,
James Smart7851fe22011-07-22 18:36:52 -04008496 iocbq->iocb.unsli3.rcvsli3.ox_id);
James Smart4f774512009-05-22 14:52:35 -04008497 if (!iocbq->iocb.ulpCt_h && iocbq->iocb.ulpCt_l)
James Smartf0d9bcc2010-10-22 11:07:09 -04008498 bf_set(wqe_ctxt_tag, &wqe->xmit_els_rsp.wqe_com,
James Smart6d368e52011-05-24 11:44:12 -04008499 phba->vpi_ids[iocbq->vport->vpi]);
James Smartf0d9bcc2010-10-22 11:07:09 -04008500 bf_set(wqe_dbde, &wqe->xmit_els_rsp.wqe_com, 1);
8501 bf_set(wqe_iod, &wqe->xmit_els_rsp.wqe_com, LPFC_WQE_IOD_WRITE);
8502 bf_set(wqe_qosd, &wqe->xmit_els_rsp.wqe_com, 1);
8503 bf_set(wqe_lenloc, &wqe->xmit_els_rsp.wqe_com,
8504 LPFC_WQE_LENLOC_WORD3);
8505 bf_set(wqe_ebde_cnt, &wqe->xmit_els_rsp.wqe_com, 0);
James Smart6d368e52011-05-24 11:44:12 -04008506 bf_set(wqe_rsp_temp_rpi, &wqe->xmit_els_rsp,
8507 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
James Smartff78d8f2011-12-13 13:21:35 -05008508 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
8509 iocbq->context2)->virt);
8510 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart939723a2012-05-09 21:19:03 -04008511 bf_set(els_rsp64_sp, &wqe->xmit_els_rsp, 1);
8512 bf_set(els_rsp64_sid, &wqe->xmit_els_rsp,
James Smartff78d8f2011-12-13 13:21:35 -05008513 iocbq->vport->fc_myDID);
James Smart939723a2012-05-09 21:19:03 -04008514 bf_set(wqe_ct, &wqe->xmit_els_rsp.wqe_com, 1);
8515 bf_set(wqe_ctxt_tag, &wqe->xmit_els_rsp.wqe_com,
James Smartff78d8f2011-12-13 13:21:35 -05008516 phba->vpi_ids[phba->pport->vpi]);
8517 }
James Smart4f774512009-05-22 14:52:35 -04008518 command_type = OTHER_COMMAND;
James Smart7851fe22011-07-22 18:36:52 -04008519 break;
James Smart4f774512009-05-22 14:52:35 -04008520 case CMD_CLOSE_XRI_CN:
8521 case CMD_ABORT_XRI_CN:
8522 case CMD_ABORT_XRI_CX:
8523 /* words 0-2 memcpy should be 0 rserved */
8524 /* port will send abts */
James Smartdcf2a4e2010-09-29 11:18:53 -04008525 abrt_iotag = iocbq->iocb.un.acxri.abortContextTag;
8526 if (abrt_iotag != 0 && abrt_iotag <= phba->sli.last_iotag) {
8527 abrtiocbq = phba->sli.iocbq_lookup[abrt_iotag];
8528 fip = abrtiocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK;
8529 } else
8530 fip = 0;
8531
8532 if ((iocbq->iocb.ulpCommand == CMD_CLOSE_XRI_CN) || fip)
James Smart4f774512009-05-22 14:52:35 -04008533 /*
James Smartdcf2a4e2010-09-29 11:18:53 -04008534 * The link is down, or the command was ELS_FIP
8535 * so the fw does not need to send abts
James Smart4f774512009-05-22 14:52:35 -04008536 * on the wire.
8537 */
8538 bf_set(abort_cmd_ia, &wqe->abort_cmd, 1);
8539 else
8540 bf_set(abort_cmd_ia, &wqe->abort_cmd, 0);
8541 bf_set(abort_cmd_criteria, &wqe->abort_cmd, T_XRI_TAG);
James Smartf0d9bcc2010-10-22 11:07:09 -04008542 /* word5 iocb=CONTEXT_TAG|IO_TAG wqe=reserved */
8543 wqe->abort_cmd.rsrvd5 = 0;
8544 bf_set(wqe_ct, &wqe->abort_cmd.wqe_com,
James Smart4f774512009-05-22 14:52:35 -04008545 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
8546 abort_tag = iocbq->iocb.un.acxri.abortIoTag;
James Smart4f774512009-05-22 14:52:35 -04008547 /*
8548 * The abort handler will send us CMD_ABORT_XRI_CN or
8549 * CMD_CLOSE_XRI_CN and the fw only accepts CMD_ABORT_XRI_CX
8550 */
James Smartf0d9bcc2010-10-22 11:07:09 -04008551 bf_set(wqe_cmnd, &wqe->abort_cmd.wqe_com, CMD_ABORT_XRI_CX);
8552 bf_set(wqe_qosd, &wqe->abort_cmd.wqe_com, 1);
8553 bf_set(wqe_lenloc, &wqe->abort_cmd.wqe_com,
8554 LPFC_WQE_LENLOC_NONE);
James Smart4f774512009-05-22 14:52:35 -04008555 cmnd = CMD_ABORT_XRI_CX;
8556 command_type = OTHER_COMMAND;
8557 xritag = 0;
James Smart7851fe22011-07-22 18:36:52 -04008558 break;
James Smart6669f9b2009-10-02 15:16:45 -04008559 case CMD_XMIT_BLS_RSP64_CX:
James Smart6b5151f2012-01-18 16:24:06 -05008560 ndlp = (struct lpfc_nodelist *)iocbq->context1;
James Smart546fc852011-03-11 16:06:29 -05008561 /* As BLS ABTS RSP WQE is very different from other WQEs,
James Smart6669f9b2009-10-02 15:16:45 -04008562 * we re-construct this WQE here based on information in
8563 * iocbq from scratch.
8564 */
8565 memset(wqe, 0, sizeof(union lpfc_wqe));
James Smart5ffc2662009-11-18 15:39:44 -05008566 /* OX_ID is invariable to who sent ABTS to CT exchange */
James Smart6669f9b2009-10-02 15:16:45 -04008567 bf_set(xmit_bls_rsp64_oxid, &wqe->xmit_bls_rsp,
James Smart546fc852011-03-11 16:06:29 -05008568 bf_get(lpfc_abts_oxid, &iocbq->iocb.un.bls_rsp));
8569 if (bf_get(lpfc_abts_orig, &iocbq->iocb.un.bls_rsp) ==
James Smart5ffc2662009-11-18 15:39:44 -05008570 LPFC_ABTS_UNSOL_INT) {
8571 /* ABTS sent by initiator to CT exchange, the
8572 * RX_ID field will be filled with the newly
8573 * allocated responder XRI.
8574 */
8575 bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
8576 iocbq->sli4_xritag);
8577 } else {
8578 /* ABTS sent by responder to CT exchange, the
8579 * RX_ID field will be filled with the responder
8580 * RX_ID from ABTS.
8581 */
8582 bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
James Smart546fc852011-03-11 16:06:29 -05008583 bf_get(lpfc_abts_rxid, &iocbq->iocb.un.bls_rsp));
James Smart5ffc2662009-11-18 15:39:44 -05008584 }
James Smart6669f9b2009-10-02 15:16:45 -04008585 bf_set(xmit_bls_rsp64_seqcnthi, &wqe->xmit_bls_rsp, 0xffff);
8586 bf_set(wqe_xmit_bls_pt, &wqe->xmit_bls_rsp.wqe_dest, 0x1);
James Smart6b5151f2012-01-18 16:24:06 -05008587
8588 /* Use CT=VPI */
8589 bf_set(wqe_els_did, &wqe->xmit_bls_rsp.wqe_dest,
8590 ndlp->nlp_DID);
8591 bf_set(xmit_bls_rsp64_temprpi, &wqe->xmit_bls_rsp,
8592 iocbq->iocb.ulpContext);
8593 bf_set(wqe_ct, &wqe->xmit_bls_rsp.wqe_com, 1);
James Smart6669f9b2009-10-02 15:16:45 -04008594 bf_set(wqe_ctxt_tag, &wqe->xmit_bls_rsp.wqe_com,
James Smart6b5151f2012-01-18 16:24:06 -05008595 phba->vpi_ids[phba->pport->vpi]);
James Smartf0d9bcc2010-10-22 11:07:09 -04008596 bf_set(wqe_qosd, &wqe->xmit_bls_rsp.wqe_com, 1);
8597 bf_set(wqe_lenloc, &wqe->xmit_bls_rsp.wqe_com,
8598 LPFC_WQE_LENLOC_NONE);
James Smart6669f9b2009-10-02 15:16:45 -04008599 /* Overwrite the pre-set comnd type with OTHER_COMMAND */
8600 command_type = OTHER_COMMAND;
James Smart546fc852011-03-11 16:06:29 -05008601 if (iocbq->iocb.un.xseq64.w5.hcsw.Rctl == FC_RCTL_BA_RJT) {
8602 bf_set(xmit_bls_rsp64_rjt_vspec, &wqe->xmit_bls_rsp,
8603 bf_get(lpfc_vndr_code, &iocbq->iocb.un.bls_rsp));
8604 bf_set(xmit_bls_rsp64_rjt_expc, &wqe->xmit_bls_rsp,
8605 bf_get(lpfc_rsn_expln, &iocbq->iocb.un.bls_rsp));
8606 bf_set(xmit_bls_rsp64_rjt_rsnc, &wqe->xmit_bls_rsp,
8607 bf_get(lpfc_rsn_code, &iocbq->iocb.un.bls_rsp));
8608 }
8609
James Smart7851fe22011-07-22 18:36:52 -04008610 break;
James Smart4f774512009-05-22 14:52:35 -04008611 case CMD_XRI_ABORTED_CX:
8612 case CMD_CREATE_XRI_CR: /* Do we expect to use this? */
James Smart4f774512009-05-22 14:52:35 -04008613 case CMD_IOCB_FCP_IBIDIR64_CR: /* bidirectional xfer */
8614 case CMD_FCP_TSEND64_CX: /* Target mode send xfer-ready */
8615 case CMD_FCP_TRSP64_CX: /* Target mode rcv */
8616 case CMD_FCP_AUTO_TRSP_CX: /* Auto target rsp */
8617 default:
8618 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8619 "2014 Invalid command 0x%x\n",
8620 iocbq->iocb.ulpCommand);
8621 return IOCB_ERROR;
James Smart7851fe22011-07-22 18:36:52 -04008622 break;
James Smart4f774512009-05-22 14:52:35 -04008623 }
James Smart6d368e52011-05-24 11:44:12 -04008624
James Smart8012cc32012-10-31 14:44:49 -04008625 if (iocbq->iocb_flag & LPFC_IO_DIF_PASS)
8626 bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_PASSTHRU);
8627 else if (iocbq->iocb_flag & LPFC_IO_DIF_STRIP)
8628 bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_STRIP);
8629 else if (iocbq->iocb_flag & LPFC_IO_DIF_INSERT)
8630 bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_INSERT);
8631 iocbq->iocb_flag &= ~(LPFC_IO_DIF_PASS | LPFC_IO_DIF_STRIP |
8632 LPFC_IO_DIF_INSERT);
James Smartf0d9bcc2010-10-22 11:07:09 -04008633 bf_set(wqe_xri_tag, &wqe->generic.wqe_com, xritag);
8634 bf_set(wqe_reqtag, &wqe->generic.wqe_com, iocbq->iotag);
8635 wqe->generic.wqe_com.abort_tag = abort_tag;
8636 bf_set(wqe_cmd_type, &wqe->generic.wqe_com, command_type);
8637 bf_set(wqe_cmnd, &wqe->generic.wqe_com, cmnd);
8638 bf_set(wqe_class, &wqe->generic.wqe_com, iocbq->iocb.ulpClass);
8639 bf_set(wqe_cqid, &wqe->generic.wqe_com, LPFC_WQE_CQ_ID_DEFAULT);
James Smart4f774512009-05-22 14:52:35 -04008640 return 0;
8641}
8642
8643/**
8644 * __lpfc_sli_issue_iocb_s4 - SLI4 device lockless ver of lpfc_sli_issue_iocb
8645 * @phba: Pointer to HBA context object.
8646 * @ring_number: SLI ring number to issue iocb on.
8647 * @piocb: Pointer to command iocb.
8648 * @flag: Flag indicating if this command can be put into txq.
8649 *
8650 * __lpfc_sli_issue_iocb_s4 is used by other functions in the driver to issue
8651 * an iocb command to an HBA with SLI-4 interface spec.
8652 *
8653 * This function is called with hbalock held. The function will return success
8654 * after it successfully submit the iocb to firmware or after adding to the
8655 * txq.
8656 **/
8657static int
8658__lpfc_sli_issue_iocb_s4(struct lpfc_hba *phba, uint32_t ring_number,
8659 struct lpfc_iocbq *piocb, uint32_t flag)
8660{
8661 struct lpfc_sglq *sglq;
James Smart4f774512009-05-22 14:52:35 -04008662 union lpfc_wqe wqe;
James Smart1ba981f2014-02-20 09:56:45 -05008663 struct lpfc_queue *wq;
James Smart4f774512009-05-22 14:52:35 -04008664 struct lpfc_sli_ring *pring = &phba->sli.ring[ring_number];
James Smart4f774512009-05-22 14:52:35 -04008665
8666 if (piocb->sli4_xritag == NO_XRI) {
8667 if (piocb->iocb.ulpCommand == CMD_ABORT_XRI_CN ||
James Smart6b5151f2012-01-18 16:24:06 -05008668 piocb->iocb.ulpCommand == CMD_CLOSE_XRI_CN)
James Smart4f774512009-05-22 14:52:35 -04008669 sglq = NULL;
8670 else {
James Smart0e9bb8d2013-03-01 16:35:12 -05008671 if (!list_empty(&pring->txq)) {
James Smart2a9bf3d2010-06-07 15:24:45 -04008672 if (!(flag & SLI_IOCB_RET_IOCB)) {
8673 __lpfc_sli_ringtx_put(phba,
8674 pring, piocb);
8675 return IOCB_SUCCESS;
8676 } else {
8677 return IOCB_BUSY;
8678 }
8679 } else {
James Smart6d368e52011-05-24 11:44:12 -04008680 sglq = __lpfc_sli_get_sglq(phba, piocb);
James Smart2a9bf3d2010-06-07 15:24:45 -04008681 if (!sglq) {
8682 if (!(flag & SLI_IOCB_RET_IOCB)) {
8683 __lpfc_sli_ringtx_put(phba,
8684 pring,
8685 piocb);
8686 return IOCB_SUCCESS;
8687 } else
8688 return IOCB_BUSY;
8689 }
8690 }
James Smart4f774512009-05-22 14:52:35 -04008691 }
8692 } else if (piocb->iocb_flag & LPFC_IO_FCP) {
James Smart6d368e52011-05-24 11:44:12 -04008693 /* These IO's already have an XRI and a mapped sgl. */
8694 sglq = NULL;
James Smart4f774512009-05-22 14:52:35 -04008695 } else {
James Smart6d368e52011-05-24 11:44:12 -04008696 /*
8697 * This is a continuation of a commandi,(CX) so this
James Smart4f774512009-05-22 14:52:35 -04008698 * sglq is on the active list
8699 */
James Smartedccdc12013-01-03 15:43:45 -05008700 sglq = __lpfc_get_active_sglq(phba, piocb->sli4_lxritag);
James Smart4f774512009-05-22 14:52:35 -04008701 if (!sglq)
8702 return IOCB_ERROR;
8703 }
8704
8705 if (sglq) {
James Smart6d368e52011-05-24 11:44:12 -04008706 piocb->sli4_lxritag = sglq->sli4_lxritag;
James Smart2a9bf3d2010-06-07 15:24:45 -04008707 piocb->sli4_xritag = sglq->sli4_xritag;
James Smart2a9bf3d2010-06-07 15:24:45 -04008708 if (NO_XRI == lpfc_sli4_bpl2sgl(phba, piocb, sglq))
James Smart4f774512009-05-22 14:52:35 -04008709 return IOCB_ERROR;
8710 }
8711
8712 if (lpfc_sli4_iocb2wqe(phba, piocb, &wqe))
8713 return IOCB_ERROR;
8714
James Smart341af102010-01-26 23:07:37 -05008715 if ((piocb->iocb_flag & LPFC_IO_FCP) ||
James Smart1ba981f2014-02-20 09:56:45 -05008716 (piocb->iocb_flag & LPFC_USE_FCPWQIDX)) {
James Smartf38fa0b2014-04-04 13:52:21 -04008717 if (!phba->cfg_fof || (!(piocb->iocb_flag & LPFC_IO_OAS))) {
James Smart1ba981f2014-02-20 09:56:45 -05008718 wq = phba->sli4_hba.fcp_wq[piocb->fcp_wqidx];
8719 } else {
8720 wq = phba->sli4_hba.oas_wq;
8721 }
8722 if (lpfc_sli4_wq_put(wq, &wqe))
James Smart4f774512009-05-22 14:52:35 -04008723 return IOCB_ERROR;
8724 } else {
James Smartea714f32013-04-17 20:18:47 -04008725 if (unlikely(!phba->sli4_hba.els_wq))
8726 return IOCB_ERROR;
James Smart4f774512009-05-22 14:52:35 -04008727 if (lpfc_sli4_wq_put(phba->sli4_hba.els_wq, &wqe))
8728 return IOCB_ERROR;
8729 }
8730 lpfc_sli_ringtxcmpl_put(phba, pring, piocb);
8731
8732 return 0;
8733}
8734
8735/**
James Smart3772a992009-05-22 14:50:54 -04008736 * __lpfc_sli_issue_iocb - Wrapper func of lockless version for issuing iocb
8737 *
8738 * This routine wraps the actual lockless version for issusing IOCB function
8739 * pointer from the lpfc_hba struct.
8740 *
8741 * Return codes:
8742 * IOCB_ERROR - Error
8743 * IOCB_SUCCESS - Success
8744 * IOCB_BUSY - Busy
8745 **/
James Smart2a9bf3d2010-06-07 15:24:45 -04008746int
James Smart3772a992009-05-22 14:50:54 -04008747__lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
8748 struct lpfc_iocbq *piocb, uint32_t flag)
8749{
8750 return phba->__lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
8751}
8752
8753/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03008754 * lpfc_sli_api_table_setup - Set up sli api function jump table
James Smart3772a992009-05-22 14:50:54 -04008755 * @phba: The hba struct for which this call is being executed.
8756 * @dev_grp: The HBA PCI-Device group number.
8757 *
8758 * This routine sets up the SLI interface API function jump table in @phba
8759 * struct.
8760 * Returns: 0 - success, -ENODEV - failure.
8761 **/
8762int
8763lpfc_sli_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
8764{
8765
8766 switch (dev_grp) {
8767 case LPFC_PCI_DEV_LP:
8768 phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s3;
8769 phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s3;
8770 break;
James Smart4f774512009-05-22 14:52:35 -04008771 case LPFC_PCI_DEV_OC:
8772 phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s4;
8773 phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s4;
8774 break;
James Smart3772a992009-05-22 14:50:54 -04008775 default:
8776 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8777 "1419 Invalid HBA PCI-device group: 0x%x\n",
8778 dev_grp);
8779 return -ENODEV;
8780 break;
8781 }
8782 phba->lpfc_get_iocb_from_iocbq = lpfc_get_iocb_from_iocbq;
8783 return 0;
8784}
James Smart92d7f7b2007-06-17 19:56:38 -05008785
James Smarte59058c2008-08-24 21:49:00 -04008786/**
James Smart3621a712009-04-06 18:47:14 -04008787 * lpfc_sli_issue_iocb - Wrapper function for __lpfc_sli_issue_iocb
James Smarte59058c2008-08-24 21:49:00 -04008788 * @phba: Pointer to HBA context object.
8789 * @pring: Pointer to driver SLI ring object.
8790 * @piocb: Pointer to command iocb.
8791 * @flag: Flag indicating if this command can be put into txq.
8792 *
8793 * lpfc_sli_issue_iocb is a wrapper around __lpfc_sli_issue_iocb
8794 * function. This function gets the hbalock and calls
8795 * __lpfc_sli_issue_iocb function and will return the error returned
8796 * by __lpfc_sli_issue_iocb function. This wrapper is used by
8797 * functions which do not hold hbalock.
8798 **/
James Smart92d7f7b2007-06-17 19:56:38 -05008799int
James Smart3772a992009-05-22 14:50:54 -04008800lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
James Smart92d7f7b2007-06-17 19:56:38 -05008801 struct lpfc_iocbq *piocb, uint32_t flag)
8802{
James Smartba20c852012-08-03 12:36:52 -04008803 struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
James Smart2a76a282012-08-03 12:35:54 -04008804 struct lpfc_sli_ring *pring;
James Smartba20c852012-08-03 12:36:52 -04008805 struct lpfc_queue *fpeq;
8806 struct lpfc_eqe *eqe;
James Smart92d7f7b2007-06-17 19:56:38 -05008807 unsigned long iflags;
James Smart2a76a282012-08-03 12:35:54 -04008808 int rc, idx;
James Smart92d7f7b2007-06-17 19:56:38 -05008809
James Smart7e56aa22012-08-03 12:35:34 -04008810 if (phba->sli_rev == LPFC_SLI_REV4) {
James Smart2a76a282012-08-03 12:35:54 -04008811 if (piocb->iocb_flag & LPFC_IO_FCP) {
James Smartf38fa0b2014-04-04 13:52:21 -04008812 if (!phba->cfg_fof || (!(piocb->iocb_flag &
James Smart1ba981f2014-02-20 09:56:45 -05008813 LPFC_IO_OAS))) {
8814 if (unlikely(!phba->sli4_hba.fcp_wq))
8815 return IOCB_ERROR;
8816 idx = lpfc_sli4_scmd_to_wqidx_distr(phba);
8817 piocb->fcp_wqidx = idx;
8818 ring_number = MAX_SLI3_CONFIGURED_RINGS + idx;
8819 } else {
8820 if (unlikely(!phba->sli4_hba.oas_wq))
8821 return IOCB_ERROR;
8822 idx = 0;
8823 piocb->fcp_wqidx = 0;
8824 ring_number = LPFC_FCP_OAS_RING;
8825 }
James Smartba20c852012-08-03 12:36:52 -04008826 pring = &phba->sli.ring[ring_number];
8827 spin_lock_irqsave(&pring->ring_lock, iflags);
8828 rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb,
8829 flag);
8830 spin_unlock_irqrestore(&pring->ring_lock, iflags);
8831
8832 if (lpfc_fcp_look_ahead) {
8833 fcp_eq_hdl = &phba->sli4_hba.fcp_eq_hdl[idx];
8834
8835 if (atomic_dec_and_test(&fcp_eq_hdl->
8836 fcp_eq_in_use)) {
8837
8838 /* Get associated EQ with this index */
8839 fpeq = phba->sli4_hba.hba_eq[idx];
8840
8841 /* Turn off interrupts from this EQ */
8842 lpfc_sli4_eq_clr_intr(fpeq);
8843
8844 /*
8845 * Process all the events on FCP EQ
8846 */
8847 while ((eqe = lpfc_sli4_eq_get(fpeq))) {
8848 lpfc_sli4_hba_handle_eqe(phba,
8849 eqe, idx);
8850 fpeq->EQ_processed++;
8851 }
8852
8853 /* Always clear and re-arm the EQ */
8854 lpfc_sli4_eq_release(fpeq,
8855 LPFC_QUEUE_REARM);
8856 }
8857 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
8858 }
8859 } else {
8860 pring = &phba->sli.ring[ring_number];
8861 spin_lock_irqsave(&pring->ring_lock, iflags);
8862 rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb,
8863 flag);
8864 spin_unlock_irqrestore(&pring->ring_lock, iflags);
8865
James Smart2a76a282012-08-03 12:35:54 -04008866 }
James Smart7e56aa22012-08-03 12:35:34 -04008867 } else {
8868 /* For now, SLI2/3 will still use hbalock */
8869 spin_lock_irqsave(&phba->hbalock, iflags);
8870 rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
8871 spin_unlock_irqrestore(&phba->hbalock, iflags);
8872 }
James Smart92d7f7b2007-06-17 19:56:38 -05008873 return rc;
8874}
8875
James Smarte59058c2008-08-24 21:49:00 -04008876/**
James Smart3621a712009-04-06 18:47:14 -04008877 * lpfc_extra_ring_setup - Extra ring setup function
James Smarte59058c2008-08-24 21:49:00 -04008878 * @phba: Pointer to HBA context object.
8879 *
8880 * This function is called while driver attaches with the
8881 * HBA to setup the extra ring. The extra ring is used
8882 * only when driver needs to support target mode functionality
8883 * or IP over FC functionalities.
8884 *
8885 * This function is called with no lock held.
8886 **/
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008887static int
8888lpfc_extra_ring_setup( struct lpfc_hba *phba)
8889{
8890 struct lpfc_sli *psli;
8891 struct lpfc_sli_ring *pring;
8892
8893 psli = &phba->sli;
8894
8895 /* Adjust cmd/rsp ring iocb entries more evenly */
James Smarta4bc3372006-12-02 13:34:16 -05008896
8897 /* Take some away from the FCP ring */
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008898 pring = &psli->ring[psli->fcp_ring];
James Smart7e56aa22012-08-03 12:35:34 -04008899 pring->sli.sli3.numCiocb -= SLI2_IOCB_CMD_R1XTRA_ENTRIES;
8900 pring->sli.sli3.numRiocb -= SLI2_IOCB_RSP_R1XTRA_ENTRIES;
8901 pring->sli.sli3.numCiocb -= SLI2_IOCB_CMD_R3XTRA_ENTRIES;
8902 pring->sli.sli3.numRiocb -= SLI2_IOCB_RSP_R3XTRA_ENTRIES;
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008903
James Smarta4bc3372006-12-02 13:34:16 -05008904 /* and give them to the extra ring */
8905 pring = &psli->ring[psli->extra_ring];
8906
James Smart7e56aa22012-08-03 12:35:34 -04008907 pring->sli.sli3.numCiocb += SLI2_IOCB_CMD_R1XTRA_ENTRIES;
8908 pring->sli.sli3.numRiocb += SLI2_IOCB_RSP_R1XTRA_ENTRIES;
8909 pring->sli.sli3.numCiocb += SLI2_IOCB_CMD_R3XTRA_ENTRIES;
8910 pring->sli.sli3.numRiocb += SLI2_IOCB_RSP_R3XTRA_ENTRIES;
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008911
8912 /* Setup default profile for this ring */
8913 pring->iotag_max = 4096;
8914 pring->num_mask = 1;
8915 pring->prt[0].profile = 0; /* Mask 0 */
James Smarta4bc3372006-12-02 13:34:16 -05008916 pring->prt[0].rctl = phba->cfg_multi_ring_rctl;
8917 pring->prt[0].type = phba->cfg_multi_ring_type;
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008918 pring->prt[0].lpfc_sli_rcv_unsol_event = NULL;
8919 return 0;
8920}
8921
James Smartcb69f7d2011-12-13 13:21:57 -05008922/* lpfc_sli_abts_err_handler - handle a failed ABTS request from an SLI3 port.
8923 * @phba: Pointer to HBA context object.
8924 * @iocbq: Pointer to iocb object.
8925 *
8926 * The async_event handler calls this routine when it receives
8927 * an ASYNC_STATUS_CN event from the port. The port generates
8928 * this event when an Abort Sequence request to an rport fails
8929 * twice in succession. The abort could be originated by the
8930 * driver or by the port. The ABTS could have been for an ELS
8931 * or FCP IO. The port only generates this event when an ABTS
8932 * fails to complete after one retry.
8933 */
8934static void
8935lpfc_sli_abts_err_handler(struct lpfc_hba *phba,
8936 struct lpfc_iocbq *iocbq)
8937{
8938 struct lpfc_nodelist *ndlp = NULL;
8939 uint16_t rpi = 0, vpi = 0;
8940 struct lpfc_vport *vport = NULL;
8941
8942 /* The rpi in the ulpContext is vport-sensitive. */
8943 vpi = iocbq->iocb.un.asyncstat.sub_ctxt_tag;
8944 rpi = iocbq->iocb.ulpContext;
8945
8946 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
8947 "3092 Port generated ABTS async event "
8948 "on vpi %d rpi %d status 0x%x\n",
8949 vpi, rpi, iocbq->iocb.ulpStatus);
8950
8951 vport = lpfc_find_vport_by_vpid(phba, vpi);
8952 if (!vport)
8953 goto err_exit;
8954 ndlp = lpfc_findnode_rpi(vport, rpi);
8955 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
8956 goto err_exit;
8957
8958 if (iocbq->iocb.ulpStatus == IOSTAT_LOCAL_REJECT)
8959 lpfc_sli_abts_recover_port(vport, ndlp);
8960 return;
8961
8962 err_exit:
8963 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
8964 "3095 Event Context not found, no "
8965 "action on vpi %d rpi %d status 0x%x, reason 0x%x\n",
8966 iocbq->iocb.ulpContext, iocbq->iocb.ulpStatus,
8967 vpi, rpi);
8968}
8969
8970/* lpfc_sli4_abts_err_handler - handle a failed ABTS request from an SLI4 port.
8971 * @phba: pointer to HBA context object.
8972 * @ndlp: nodelist pointer for the impacted rport.
8973 * @axri: pointer to the wcqe containing the failed exchange.
8974 *
8975 * The driver calls this routine when it receives an ABORT_XRI_FCP CQE from the
8976 * port. The port generates this event when an abort exchange request to an
8977 * rport fails twice in succession with no reply. The abort could be originated
8978 * by the driver or by the port. The ABTS could have been for an ELS or FCP IO.
8979 */
8980void
8981lpfc_sli4_abts_err_handler(struct lpfc_hba *phba,
8982 struct lpfc_nodelist *ndlp,
8983 struct sli4_wcqe_xri_aborted *axri)
8984{
8985 struct lpfc_vport *vport;
James Smart5c1db2a2012-03-01 22:34:36 -05008986 uint32_t ext_status = 0;
James Smartcb69f7d2011-12-13 13:21:57 -05008987
James Smart6b5151f2012-01-18 16:24:06 -05008988 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
James Smartcb69f7d2011-12-13 13:21:57 -05008989 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
8990 "3115 Node Context not found, driver "
8991 "ignoring abts err event\n");
James Smart6b5151f2012-01-18 16:24:06 -05008992 return;
8993 }
8994
James Smartcb69f7d2011-12-13 13:21:57 -05008995 vport = ndlp->vport;
8996 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
8997 "3116 Port generated FCP XRI ABORT event on "
James Smart5c1db2a2012-03-01 22:34:36 -05008998 "vpi %d rpi %d xri x%x status 0x%x parameter x%x\n",
James Smart8e668af2013-05-31 17:04:28 -04008999 ndlp->vport->vpi, phba->sli4_hba.rpi_ids[ndlp->nlp_rpi],
James Smartcb69f7d2011-12-13 13:21:57 -05009000 bf_get(lpfc_wcqe_xa_xri, axri),
James Smart5c1db2a2012-03-01 22:34:36 -05009001 bf_get(lpfc_wcqe_xa_status, axri),
9002 axri->parameter);
James Smartcb69f7d2011-12-13 13:21:57 -05009003
James Smart5c1db2a2012-03-01 22:34:36 -05009004 /*
9005 * Catch the ABTS protocol failure case. Older OCe FW releases returned
9006 * LOCAL_REJECT and 0 for a failed ABTS exchange and later OCe and
9007 * LPe FW releases returned LOCAL_REJECT and SEQUENCE_TIMEOUT.
9008 */
James Smarte3d2b802012-08-14 14:25:43 -04009009 ext_status = axri->parameter & IOERR_PARAM_MASK;
James Smart5c1db2a2012-03-01 22:34:36 -05009010 if ((bf_get(lpfc_wcqe_xa_status, axri) == IOSTAT_LOCAL_REJECT) &&
9011 ((ext_status == IOERR_SEQUENCE_TIMEOUT) || (ext_status == 0)))
James Smartcb69f7d2011-12-13 13:21:57 -05009012 lpfc_sli_abts_recover_port(vport, ndlp);
9013}
9014
James Smarte59058c2008-08-24 21:49:00 -04009015/**
James Smart3621a712009-04-06 18:47:14 -04009016 * lpfc_sli_async_event_handler - ASYNC iocb handler function
James Smarte59058c2008-08-24 21:49:00 -04009017 * @phba: Pointer to HBA context object.
9018 * @pring: Pointer to driver SLI ring object.
9019 * @iocbq: Pointer to iocb object.
9020 *
9021 * This function is called by the slow ring event handler
9022 * function when there is an ASYNC event iocb in the ring.
9023 * This function is called with no lock held.
9024 * Currently this function handles only temperature related
9025 * ASYNC events. The function decodes the temperature sensor
9026 * event message and posts events for the management applications.
9027 **/
James Smart98c9ea52007-10-27 13:37:33 -04009028static void
James Smart57127f12007-10-27 13:37:05 -04009029lpfc_sli_async_event_handler(struct lpfc_hba * phba,
9030 struct lpfc_sli_ring * pring, struct lpfc_iocbq * iocbq)
9031{
9032 IOCB_t *icmd;
9033 uint16_t evt_code;
James Smart57127f12007-10-27 13:37:05 -04009034 struct temp_event temp_event_data;
9035 struct Scsi_Host *shost;
James Smarta257bf92009-04-06 18:48:10 -04009036 uint32_t *iocb_w;
James Smart57127f12007-10-27 13:37:05 -04009037
9038 icmd = &iocbq->iocb;
9039 evt_code = icmd->un.asyncstat.evt_code;
James Smart57127f12007-10-27 13:37:05 -04009040
James Smartcb69f7d2011-12-13 13:21:57 -05009041 switch (evt_code) {
9042 case ASYNC_TEMP_WARN:
9043 case ASYNC_TEMP_SAFE:
9044 temp_event_data.data = (uint32_t) icmd->ulpContext;
9045 temp_event_data.event_type = FC_REG_TEMPERATURE_EVENT;
9046 if (evt_code == ASYNC_TEMP_WARN) {
9047 temp_event_data.event_code = LPFC_THRESHOLD_TEMP;
9048 lpfc_printf_log(phba, KERN_ERR, LOG_TEMP,
9049 "0347 Adapter is very hot, please take "
9050 "corrective action. temperature : %d Celsius\n",
9051 (uint32_t) icmd->ulpContext);
9052 } else {
9053 temp_event_data.event_code = LPFC_NORMAL_TEMP;
9054 lpfc_printf_log(phba, KERN_ERR, LOG_TEMP,
9055 "0340 Adapter temperature is OK now. "
9056 "temperature : %d Celsius\n",
9057 (uint32_t) icmd->ulpContext);
9058 }
9059
9060 /* Send temperature change event to applications */
9061 shost = lpfc_shost_from_vport(phba->pport);
9062 fc_host_post_vendor_event(shost, fc_get_event_number(),
9063 sizeof(temp_event_data), (char *) &temp_event_data,
9064 LPFC_NL_VENDOR_ID);
9065 break;
9066 case ASYNC_STATUS_CN:
9067 lpfc_sli_abts_err_handler(phba, iocbq);
9068 break;
9069 default:
James Smarta257bf92009-04-06 18:48:10 -04009070 iocb_w = (uint32_t *) icmd;
James Smartcb69f7d2011-12-13 13:21:57 -05009071 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart76bb24e2007-10-27 13:38:00 -04009072 "0346 Ring %d handler: unexpected ASYNC_STATUS"
James Smarte4e74272009-07-19 10:01:38 -04009073 " evt_code 0x%x\n"
James Smarta257bf92009-04-06 18:48:10 -04009074 "W0 0x%08x W1 0x%08x W2 0x%08x W3 0x%08x\n"
9075 "W4 0x%08x W5 0x%08x W6 0x%08x W7 0x%08x\n"
9076 "W8 0x%08x W9 0x%08x W10 0x%08x W11 0x%08x\n"
9077 "W12 0x%08x W13 0x%08x W14 0x%08x W15 0x%08x\n",
James Smartcb69f7d2011-12-13 13:21:57 -05009078 pring->ringno, icmd->un.asyncstat.evt_code,
James Smarta257bf92009-04-06 18:48:10 -04009079 iocb_w[0], iocb_w[1], iocb_w[2], iocb_w[3],
9080 iocb_w[4], iocb_w[5], iocb_w[6], iocb_w[7],
9081 iocb_w[8], iocb_w[9], iocb_w[10], iocb_w[11],
9082 iocb_w[12], iocb_w[13], iocb_w[14], iocb_w[15]);
9083
James Smartcb69f7d2011-12-13 13:21:57 -05009084 break;
James Smart57127f12007-10-27 13:37:05 -04009085 }
James Smart57127f12007-10-27 13:37:05 -04009086}
9087
9088
James Smarte59058c2008-08-24 21:49:00 -04009089/**
James Smart3621a712009-04-06 18:47:14 -04009090 * lpfc_sli_setup - SLI ring setup function
James Smarte59058c2008-08-24 21:49:00 -04009091 * @phba: Pointer to HBA context object.
9092 *
9093 * lpfc_sli_setup sets up rings of the SLI interface with
9094 * number of iocbs per ring and iotags. This function is
9095 * called while driver attach to the HBA and before the
9096 * interrupts are enabled. So there is no need for locking.
9097 *
9098 * This function always returns 0.
9099 **/
dea31012005-04-17 16:05:31 -05009100int
9101lpfc_sli_setup(struct lpfc_hba *phba)
9102{
James Smarted957682007-06-17 19:56:37 -05009103 int i, totiocbsize = 0;
dea31012005-04-17 16:05:31 -05009104 struct lpfc_sli *psli = &phba->sli;
9105 struct lpfc_sli_ring *pring;
9106
James Smart2a76a282012-08-03 12:35:54 -04009107 psli->num_rings = MAX_SLI3_CONFIGURED_RINGS;
9108 if (phba->sli_rev == LPFC_SLI_REV4)
James Smart67d12732012-08-03 12:36:13 -04009109 psli->num_rings += phba->cfg_fcp_io_channel;
dea31012005-04-17 16:05:31 -05009110 psli->sli_flag = 0;
9111 psli->fcp_ring = LPFC_FCP_RING;
9112 psli->next_ring = LPFC_FCP_NEXT_RING;
James Smarta4bc3372006-12-02 13:34:16 -05009113 psli->extra_ring = LPFC_EXTRA_RING;
dea31012005-04-17 16:05:31 -05009114
James Bottomley604a3e32005-10-29 10:28:33 -05009115 psli->iocbq_lookup = NULL;
9116 psli->iocbq_lookup_len = 0;
9117 psli->last_iotag = 0;
9118
dea31012005-04-17 16:05:31 -05009119 for (i = 0; i < psli->num_rings; i++) {
9120 pring = &psli->ring[i];
9121 switch (i) {
9122 case LPFC_FCP_RING: /* ring 0 - FCP */
9123 /* numCiocb and numRiocb are used in config_port */
James Smart7e56aa22012-08-03 12:35:34 -04009124 pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R0_ENTRIES;
9125 pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R0_ENTRIES;
9126 pring->sli.sli3.numCiocb +=
9127 SLI2_IOCB_CMD_R1XTRA_ENTRIES;
9128 pring->sli.sli3.numRiocb +=
9129 SLI2_IOCB_RSP_R1XTRA_ENTRIES;
9130 pring->sli.sli3.numCiocb +=
9131 SLI2_IOCB_CMD_R3XTRA_ENTRIES;
9132 pring->sli.sli3.numRiocb +=
9133 SLI2_IOCB_RSP_R3XTRA_ENTRIES;
9134 pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05009135 SLI3_IOCB_CMD_SIZE :
9136 SLI2_IOCB_CMD_SIZE;
James Smart7e56aa22012-08-03 12:35:34 -04009137 pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05009138 SLI3_IOCB_RSP_SIZE :
9139 SLI2_IOCB_RSP_SIZE;
dea31012005-04-17 16:05:31 -05009140 pring->iotag_ctr = 0;
9141 pring->iotag_max =
James Smart92d7f7b2007-06-17 19:56:38 -05009142 (phba->cfg_hba_queue_depth * 2);
dea31012005-04-17 16:05:31 -05009143 pring->fast_iotag = pring->iotag_max;
9144 pring->num_mask = 0;
9145 break;
James Smarta4bc3372006-12-02 13:34:16 -05009146 case LPFC_EXTRA_RING: /* ring 1 - EXTRA */
dea31012005-04-17 16:05:31 -05009147 /* numCiocb and numRiocb are used in config_port */
James Smart7e56aa22012-08-03 12:35:34 -04009148 pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R1_ENTRIES;
9149 pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R1_ENTRIES;
9150 pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05009151 SLI3_IOCB_CMD_SIZE :
9152 SLI2_IOCB_CMD_SIZE;
James Smart7e56aa22012-08-03 12:35:34 -04009153 pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05009154 SLI3_IOCB_RSP_SIZE :
9155 SLI2_IOCB_RSP_SIZE;
James Smart2e0fef82007-06-17 19:56:36 -05009156 pring->iotag_max = phba->cfg_hba_queue_depth;
dea31012005-04-17 16:05:31 -05009157 pring->num_mask = 0;
9158 break;
9159 case LPFC_ELS_RING: /* ring 2 - ELS / CT */
9160 /* numCiocb and numRiocb are used in config_port */
James Smart7e56aa22012-08-03 12:35:34 -04009161 pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R2_ENTRIES;
9162 pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R2_ENTRIES;
9163 pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05009164 SLI3_IOCB_CMD_SIZE :
9165 SLI2_IOCB_CMD_SIZE;
James Smart7e56aa22012-08-03 12:35:34 -04009166 pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05009167 SLI3_IOCB_RSP_SIZE :
9168 SLI2_IOCB_RSP_SIZE;
dea31012005-04-17 16:05:31 -05009169 pring->fast_iotag = 0;
9170 pring->iotag_ctr = 0;
9171 pring->iotag_max = 4096;
James Smart57127f12007-10-27 13:37:05 -04009172 pring->lpfc_sli_rcv_async_status =
9173 lpfc_sli_async_event_handler;
James Smart6669f9b2009-10-02 15:16:45 -04009174 pring->num_mask = LPFC_MAX_RING_MASK;
dea31012005-04-17 16:05:31 -05009175 pring->prt[0].profile = 0; /* Mask 0 */
James Smart6a9c52c2009-10-02 15:16:51 -04009176 pring->prt[0].rctl = FC_RCTL_ELS_REQ;
9177 pring->prt[0].type = FC_TYPE_ELS;
dea31012005-04-17 16:05:31 -05009178 pring->prt[0].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -05009179 lpfc_els_unsol_event;
dea31012005-04-17 16:05:31 -05009180 pring->prt[1].profile = 0; /* Mask 1 */
James Smart6a9c52c2009-10-02 15:16:51 -04009181 pring->prt[1].rctl = FC_RCTL_ELS_REP;
9182 pring->prt[1].type = FC_TYPE_ELS;
dea31012005-04-17 16:05:31 -05009183 pring->prt[1].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -05009184 lpfc_els_unsol_event;
dea31012005-04-17 16:05:31 -05009185 pring->prt[2].profile = 0; /* Mask 2 */
9186 /* NameServer Inquiry */
James Smart6a9c52c2009-10-02 15:16:51 -04009187 pring->prt[2].rctl = FC_RCTL_DD_UNSOL_CTL;
dea31012005-04-17 16:05:31 -05009188 /* NameServer */
James Smart6a9c52c2009-10-02 15:16:51 -04009189 pring->prt[2].type = FC_TYPE_CT;
dea31012005-04-17 16:05:31 -05009190 pring->prt[2].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -05009191 lpfc_ct_unsol_event;
dea31012005-04-17 16:05:31 -05009192 pring->prt[3].profile = 0; /* Mask 3 */
9193 /* NameServer response */
James Smart6a9c52c2009-10-02 15:16:51 -04009194 pring->prt[3].rctl = FC_RCTL_DD_SOL_CTL;
dea31012005-04-17 16:05:31 -05009195 /* NameServer */
James Smart6a9c52c2009-10-02 15:16:51 -04009196 pring->prt[3].type = FC_TYPE_CT;
dea31012005-04-17 16:05:31 -05009197 pring->prt[3].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -05009198 lpfc_ct_unsol_event;
dea31012005-04-17 16:05:31 -05009199 break;
9200 }
James Smart7e56aa22012-08-03 12:35:34 -04009201 totiocbsize += (pring->sli.sli3.numCiocb *
9202 pring->sli.sli3.sizeCiocb) +
9203 (pring->sli.sli3.numRiocb * pring->sli.sli3.sizeRiocb);
dea31012005-04-17 16:05:31 -05009204 }
James Smarted957682007-06-17 19:56:37 -05009205 if (totiocbsize > MAX_SLIM_IOCB_SIZE) {
dea31012005-04-17 16:05:31 -05009206 /* Too many cmd / rsp ring entries in SLI2 SLIM */
James Smarte8b62012007-08-02 11:10:09 -04009207 printk(KERN_ERR "%d:0462 Too many cmd / rsp ring entries in "
9208 "SLI2 SLIM Data: x%x x%lx\n",
9209 phba->brd_no, totiocbsize,
9210 (unsigned long) MAX_SLIM_IOCB_SIZE);
dea31012005-04-17 16:05:31 -05009211 }
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05009212 if (phba->cfg_multi_ring_support == 2)
9213 lpfc_extra_ring_setup(phba);
dea31012005-04-17 16:05:31 -05009214
9215 return 0;
9216}
9217
James Smarte59058c2008-08-24 21:49:00 -04009218/**
James Smart3621a712009-04-06 18:47:14 -04009219 * lpfc_sli_queue_setup - Queue initialization function
James Smarte59058c2008-08-24 21:49:00 -04009220 * @phba: Pointer to HBA context object.
9221 *
9222 * lpfc_sli_queue_setup sets up mailbox queues and iocb queues for each
9223 * ring. This function also initializes ring indices of each ring.
9224 * This function is called during the initialization of the SLI
9225 * interface of an HBA.
9226 * This function is called with no lock held and always returns
9227 * 1.
9228 **/
dea31012005-04-17 16:05:31 -05009229int
James Smart2e0fef82007-06-17 19:56:36 -05009230lpfc_sli_queue_setup(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05009231{
9232 struct lpfc_sli *psli;
9233 struct lpfc_sli_ring *pring;
James Bottomley604a3e32005-10-29 10:28:33 -05009234 int i;
dea31012005-04-17 16:05:31 -05009235
9236 psli = &phba->sli;
James Smart2e0fef82007-06-17 19:56:36 -05009237 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009238 INIT_LIST_HEAD(&psli->mboxq);
James Smart92d7f7b2007-06-17 19:56:38 -05009239 INIT_LIST_HEAD(&psli->mboxq_cmpl);
dea31012005-04-17 16:05:31 -05009240 /* Initialize list headers for txq and txcmplq as double linked lists */
9241 for (i = 0; i < psli->num_rings; i++) {
9242 pring = &psli->ring[i];
9243 pring->ringno = i;
James Smart7e56aa22012-08-03 12:35:34 -04009244 pring->sli.sli3.next_cmdidx = 0;
9245 pring->sli.sli3.local_getidx = 0;
9246 pring->sli.sli3.cmdidx = 0;
dea31012005-04-17 16:05:31 -05009247 INIT_LIST_HEAD(&pring->txq);
9248 INIT_LIST_HEAD(&pring->txcmplq);
9249 INIT_LIST_HEAD(&pring->iocb_continueq);
James Smart9c2face2008-01-11 01:53:18 -05009250 INIT_LIST_HEAD(&pring->iocb_continue_saveq);
dea31012005-04-17 16:05:31 -05009251 INIT_LIST_HEAD(&pring->postbufq);
James Smart7e56aa22012-08-03 12:35:34 -04009252 spin_lock_init(&pring->ring_lock);
dea31012005-04-17 16:05:31 -05009253 }
James Smart2e0fef82007-06-17 19:56:36 -05009254 spin_unlock_irq(&phba->hbalock);
9255 return 1;
dea31012005-04-17 16:05:31 -05009256}
9257
James Smarte59058c2008-08-24 21:49:00 -04009258/**
James Smart04c68492009-05-22 14:52:52 -04009259 * lpfc_sli_mbox_sys_flush - Flush mailbox command sub-system
9260 * @phba: Pointer to HBA context object.
9261 *
9262 * This routine flushes the mailbox command subsystem. It will unconditionally
9263 * flush all the mailbox commands in the three possible stages in the mailbox
9264 * command sub-system: pending mailbox command queue; the outstanding mailbox
9265 * command; and completed mailbox command queue. It is caller's responsibility
9266 * to make sure that the driver is in the proper state to flush the mailbox
9267 * command sub-system. Namely, the posting of mailbox commands into the
9268 * pending mailbox command queue from the various clients must be stopped;
9269 * either the HBA is in a state that it will never works on the outstanding
9270 * mailbox command (such as in EEH or ERATT conditions) or the outstanding
9271 * mailbox command has been completed.
9272 **/
9273static void
9274lpfc_sli_mbox_sys_flush(struct lpfc_hba *phba)
9275{
9276 LIST_HEAD(completions);
9277 struct lpfc_sli *psli = &phba->sli;
9278 LPFC_MBOXQ_t *pmb;
9279 unsigned long iflag;
9280
9281 /* Flush all the mailbox commands in the mbox system */
9282 spin_lock_irqsave(&phba->hbalock, iflag);
9283 /* The pending mailbox command queue */
9284 list_splice_init(&phba->sli.mboxq, &completions);
9285 /* The outstanding active mailbox command */
9286 if (psli->mbox_active) {
9287 list_add_tail(&psli->mbox_active->list, &completions);
9288 psli->mbox_active = NULL;
9289 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
9290 }
9291 /* The completed mailbox command queue */
9292 list_splice_init(&phba->sli.mboxq_cmpl, &completions);
9293 spin_unlock_irqrestore(&phba->hbalock, iflag);
9294
9295 /* Return all flushed mailbox commands with MBX_NOT_FINISHED status */
9296 while (!list_empty(&completions)) {
9297 list_remove_head(&completions, pmb, LPFC_MBOXQ_t, list);
9298 pmb->u.mb.mbxStatus = MBX_NOT_FINISHED;
9299 if (pmb->mbox_cmpl)
9300 pmb->mbox_cmpl(phba, pmb);
9301 }
9302}
9303
9304/**
James Smart3621a712009-04-06 18:47:14 -04009305 * lpfc_sli_host_down - Vport cleanup function
James Smarte59058c2008-08-24 21:49:00 -04009306 * @vport: Pointer to virtual port object.
9307 *
9308 * lpfc_sli_host_down is called to clean up the resources
9309 * associated with a vport before destroying virtual
9310 * port data structures.
9311 * This function does following operations:
9312 * - Free discovery resources associated with this virtual
9313 * port.
9314 * - Free iocbs associated with this virtual port in
9315 * the txq.
9316 * - Send abort for all iocb commands associated with this
9317 * vport in txcmplq.
9318 *
9319 * This function is called with no lock held and always returns 1.
9320 **/
dea31012005-04-17 16:05:31 -05009321int
James Smart92d7f7b2007-06-17 19:56:38 -05009322lpfc_sli_host_down(struct lpfc_vport *vport)
9323{
James Smart858c9f62007-06-17 19:56:39 -05009324 LIST_HEAD(completions);
James Smart92d7f7b2007-06-17 19:56:38 -05009325 struct lpfc_hba *phba = vport->phba;
9326 struct lpfc_sli *psli = &phba->sli;
9327 struct lpfc_sli_ring *pring;
9328 struct lpfc_iocbq *iocb, *next_iocb;
James Smart92d7f7b2007-06-17 19:56:38 -05009329 int i;
9330 unsigned long flags = 0;
9331 uint16_t prev_pring_flag;
9332
9333 lpfc_cleanup_discovery_resources(vport);
9334
9335 spin_lock_irqsave(&phba->hbalock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -05009336 for (i = 0; i < psli->num_rings; i++) {
9337 pring = &psli->ring[i];
9338 prev_pring_flag = pring->flag;
James Smart5e9d9b82008-06-14 22:52:53 -04009339 /* Only slow rings */
9340 if (pring->ringno == LPFC_ELS_RING) {
James Smart858c9f62007-06-17 19:56:39 -05009341 pring->flag |= LPFC_DEFERRED_RING_EVENT;
James Smart5e9d9b82008-06-14 22:52:53 -04009342 /* Set the lpfc data pending flag */
9343 set_bit(LPFC_DATA_READY, &phba->data_flags);
9344 }
James Smart92d7f7b2007-06-17 19:56:38 -05009345 /*
9346 * Error everything on the txq since these iocbs have not been
9347 * given to the FW yet.
9348 */
James Smart92d7f7b2007-06-17 19:56:38 -05009349 list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
9350 if (iocb->vport != vport)
9351 continue;
James Smart858c9f62007-06-17 19:56:39 -05009352 list_move_tail(&iocb->list, &completions);
James Smart92d7f7b2007-06-17 19:56:38 -05009353 }
9354
9355 /* Next issue ABTS for everything on the txcmplq */
9356 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq,
9357 list) {
9358 if (iocb->vport != vport)
9359 continue;
9360 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
9361 }
9362
9363 pring->flag = prev_pring_flag;
9364 }
9365
9366 spin_unlock_irqrestore(&phba->hbalock, flags);
9367
James Smarta257bf92009-04-06 18:48:10 -04009368 /* Cancel all the IOCBs from the completions list */
9369 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
9370 IOERR_SLI_DOWN);
James Smart92d7f7b2007-06-17 19:56:38 -05009371 return 1;
9372}
9373
James Smarte59058c2008-08-24 21:49:00 -04009374/**
James Smart3621a712009-04-06 18:47:14 -04009375 * lpfc_sli_hba_down - Resource cleanup function for the HBA
James Smarte59058c2008-08-24 21:49:00 -04009376 * @phba: Pointer to HBA context object.
9377 *
9378 * This function cleans up all iocb, buffers, mailbox commands
9379 * while shutting down the HBA. This function is called with no
9380 * lock held and always returns 1.
9381 * This function does the following to cleanup driver resources:
9382 * - Free discovery resources for each virtual port
9383 * - Cleanup any pending fabric iocbs
9384 * - Iterate through the iocb txq and free each entry
9385 * in the list.
9386 * - Free up any buffer posted to the HBA
9387 * - Free mailbox commands in the mailbox queue.
9388 **/
James Smart92d7f7b2007-06-17 19:56:38 -05009389int
James Smart2e0fef82007-06-17 19:56:36 -05009390lpfc_sli_hba_down(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05009391{
James Smart2534ba72007-04-25 09:52:20 -04009392 LIST_HEAD(completions);
James Smart2e0fef82007-06-17 19:56:36 -05009393 struct lpfc_sli *psli = &phba->sli;
dea31012005-04-17 16:05:31 -05009394 struct lpfc_sli_ring *pring;
James Smart0ff10d42008-01-11 01:52:36 -05009395 struct lpfc_dmabuf *buf_ptr;
dea31012005-04-17 16:05:31 -05009396 unsigned long flags = 0;
James Smart04c68492009-05-22 14:52:52 -04009397 int i;
9398
9399 /* Shutdown the mailbox command sub-system */
James Smart618a5232012-06-12 13:54:36 -04009400 lpfc_sli_mbox_sys_shutdown(phba, LPFC_MBX_WAIT);
dea31012005-04-17 16:05:31 -05009401
dea31012005-04-17 16:05:31 -05009402 lpfc_hba_down_prep(phba);
9403
James Smart92d7f7b2007-06-17 19:56:38 -05009404 lpfc_fabric_abort_hba(phba);
9405
James Smart2e0fef82007-06-17 19:56:36 -05009406 spin_lock_irqsave(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05009407 for (i = 0; i < psli->num_rings; i++) {
9408 pring = &psli->ring[i];
James Smart5e9d9b82008-06-14 22:52:53 -04009409 /* Only slow rings */
9410 if (pring->ringno == LPFC_ELS_RING) {
James Smart858c9f62007-06-17 19:56:39 -05009411 pring->flag |= LPFC_DEFERRED_RING_EVENT;
James Smart5e9d9b82008-06-14 22:52:53 -04009412 /* Set the lpfc data pending flag */
9413 set_bit(LPFC_DATA_READY, &phba->data_flags);
9414 }
dea31012005-04-17 16:05:31 -05009415
9416 /*
9417 * Error everything on the txq since these iocbs have not been
9418 * given to the FW yet.
9419 */
James Smart2534ba72007-04-25 09:52:20 -04009420 list_splice_init(&pring->txq, &completions);
dea31012005-04-17 16:05:31 -05009421 }
James Smart2e0fef82007-06-17 19:56:36 -05009422 spin_unlock_irqrestore(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05009423
James Smarta257bf92009-04-06 18:48:10 -04009424 /* Cancel all the IOCBs from the completions list */
9425 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
9426 IOERR_SLI_DOWN);
James Smart2534ba72007-04-25 09:52:20 -04009427
James Smart0ff10d42008-01-11 01:52:36 -05009428 spin_lock_irqsave(&phba->hbalock, flags);
9429 list_splice_init(&phba->elsbuf, &completions);
9430 phba->elsbuf_cnt = 0;
9431 phba->elsbuf_prev_cnt = 0;
9432 spin_unlock_irqrestore(&phba->hbalock, flags);
9433
9434 while (!list_empty(&completions)) {
9435 list_remove_head(&completions, buf_ptr,
9436 struct lpfc_dmabuf, list);
9437 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
9438 kfree(buf_ptr);
9439 }
9440
dea31012005-04-17 16:05:31 -05009441 /* Return any active mbox cmds */
9442 del_timer_sync(&psli->mbox_tmo);
James Smart92d7f7b2007-06-17 19:56:38 -05009443
James Smartda0436e2009-05-22 14:51:39 -04009444 spin_lock_irqsave(&phba->pport->work_port_lock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -05009445 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
James Smartda0436e2009-05-22 14:51:39 -04009446 spin_unlock_irqrestore(&phba->pport->work_port_lock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -05009447
James Smartda0436e2009-05-22 14:51:39 -04009448 return 1;
9449}
James Smart92d7f7b2007-06-17 19:56:38 -05009450
James Smartda0436e2009-05-22 14:51:39 -04009451/**
James Smart3621a712009-04-06 18:47:14 -04009452 * lpfc_sli_pcimem_bcopy - SLI memory copy function
James Smarte59058c2008-08-24 21:49:00 -04009453 * @srcp: Source memory pointer.
9454 * @destp: Destination memory pointer.
9455 * @cnt: Number of words required to be copied.
9456 *
9457 * This function is used for copying data between driver memory
9458 * and the SLI memory. This function also changes the endianness
9459 * of each word if native endianness is different from SLI
9460 * endianness. This function can be called with or without
9461 * lock.
9462 **/
dea31012005-04-17 16:05:31 -05009463void
9464lpfc_sli_pcimem_bcopy(void *srcp, void *destp, uint32_t cnt)
9465{
9466 uint32_t *src = srcp;
9467 uint32_t *dest = destp;
9468 uint32_t ldata;
9469 int i;
9470
9471 for (i = 0; i < (int)cnt; i += sizeof (uint32_t)) {
9472 ldata = *src;
9473 ldata = le32_to_cpu(ldata);
9474 *dest = ldata;
9475 src++;
9476 dest++;
9477 }
9478}
9479
James Smarte59058c2008-08-24 21:49:00 -04009480
9481/**
James Smarta0c87cb2009-07-19 10:01:10 -04009482 * lpfc_sli_bemem_bcopy - SLI memory copy function
9483 * @srcp: Source memory pointer.
9484 * @destp: Destination memory pointer.
9485 * @cnt: Number of words required to be copied.
9486 *
9487 * This function is used for copying data between a data structure
9488 * with big endian representation to local endianness.
9489 * This function can be called with or without lock.
9490 **/
9491void
9492lpfc_sli_bemem_bcopy(void *srcp, void *destp, uint32_t cnt)
9493{
9494 uint32_t *src = srcp;
9495 uint32_t *dest = destp;
9496 uint32_t ldata;
9497 int i;
9498
9499 for (i = 0; i < (int)cnt; i += sizeof(uint32_t)) {
9500 ldata = *src;
9501 ldata = be32_to_cpu(ldata);
9502 *dest = ldata;
9503 src++;
9504 dest++;
9505 }
9506}
9507
9508/**
James Smart3621a712009-04-06 18:47:14 -04009509 * lpfc_sli_ringpostbuf_put - Function to add a buffer to postbufq
James Smarte59058c2008-08-24 21:49:00 -04009510 * @phba: Pointer to HBA context object.
9511 * @pring: Pointer to driver SLI ring object.
9512 * @mp: Pointer to driver buffer object.
9513 *
9514 * This function is called with no lock held.
9515 * It always return zero after adding the buffer to the postbufq
9516 * buffer list.
9517 **/
dea31012005-04-17 16:05:31 -05009518int
James Smart2e0fef82007-06-17 19:56:36 -05009519lpfc_sli_ringpostbuf_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9520 struct lpfc_dmabuf *mp)
dea31012005-04-17 16:05:31 -05009521{
9522 /* Stick struct lpfc_dmabuf at end of postbufq so driver can look it up
9523 later */
James Smart2e0fef82007-06-17 19:56:36 -05009524 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009525 list_add_tail(&mp->list, &pring->postbufq);
dea31012005-04-17 16:05:31 -05009526 pring->postbufq_cnt++;
James Smart2e0fef82007-06-17 19:56:36 -05009527 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009528 return 0;
9529}
9530
James Smarte59058c2008-08-24 21:49:00 -04009531/**
James Smart3621a712009-04-06 18:47:14 -04009532 * lpfc_sli_get_buffer_tag - allocates a tag for a CMD_QUE_XRI64_CX buffer
James Smarte59058c2008-08-24 21:49:00 -04009533 * @phba: Pointer to HBA context object.
9534 *
9535 * When HBQ is enabled, buffers are searched based on tags. This function
9536 * allocates a tag for buffer posted using CMD_QUE_XRI64_CX iocb. The
9537 * tag is bit wise or-ed with QUE_BUFTAG_BIT to make sure that the tag
9538 * does not conflict with tags of buffer posted for unsolicited events.
9539 * The function returns the allocated tag. The function is called with
9540 * no locks held.
9541 **/
James Smart76bb24e2007-10-27 13:38:00 -04009542uint32_t
9543lpfc_sli_get_buffer_tag(struct lpfc_hba *phba)
9544{
9545 spin_lock_irq(&phba->hbalock);
9546 phba->buffer_tag_count++;
9547 /*
9548 * Always set the QUE_BUFTAG_BIT to distiguish between
9549 * a tag assigned by HBQ.
9550 */
9551 phba->buffer_tag_count |= QUE_BUFTAG_BIT;
9552 spin_unlock_irq(&phba->hbalock);
9553 return phba->buffer_tag_count;
9554}
9555
James Smarte59058c2008-08-24 21:49:00 -04009556/**
James Smart3621a712009-04-06 18:47:14 -04009557 * lpfc_sli_ring_taggedbuf_get - find HBQ buffer associated with given tag
James Smarte59058c2008-08-24 21:49:00 -04009558 * @phba: Pointer to HBA context object.
9559 * @pring: Pointer to driver SLI ring object.
9560 * @tag: Buffer tag.
9561 *
9562 * Buffers posted using CMD_QUE_XRI64_CX iocb are in pring->postbufq
9563 * list. After HBA DMA data to these buffers, CMD_IOCB_RET_XRI64_CX
9564 * iocb is posted to the response ring with the tag of the buffer.
9565 * This function searches the pring->postbufq list using the tag
9566 * to find buffer associated with CMD_IOCB_RET_XRI64_CX
9567 * iocb. If the buffer is found then lpfc_dmabuf object of the
9568 * buffer is returned to the caller else NULL is returned.
9569 * This function is called with no lock held.
9570 **/
James Smart76bb24e2007-10-27 13:38:00 -04009571struct lpfc_dmabuf *
9572lpfc_sli_ring_taggedbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9573 uint32_t tag)
9574{
9575 struct lpfc_dmabuf *mp, *next_mp;
9576 struct list_head *slp = &pring->postbufq;
9577
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009578 /* Search postbufq, from the beginning, looking for a match on tag */
James Smart76bb24e2007-10-27 13:38:00 -04009579 spin_lock_irq(&phba->hbalock);
9580 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
9581 if (mp->buffer_tag == tag) {
9582 list_del_init(&mp->list);
9583 pring->postbufq_cnt--;
9584 spin_unlock_irq(&phba->hbalock);
9585 return mp;
9586 }
9587 }
9588
9589 spin_unlock_irq(&phba->hbalock);
9590 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smartd7c255b2008-08-24 21:50:00 -04009591 "0402 Cannot find virtual addr for buffer tag on "
James Smart76bb24e2007-10-27 13:38:00 -04009592 "ring %d Data x%lx x%p x%p x%x\n",
9593 pring->ringno, (unsigned long) tag,
9594 slp->next, slp->prev, pring->postbufq_cnt);
9595
9596 return NULL;
9597}
dea31012005-04-17 16:05:31 -05009598
James Smarte59058c2008-08-24 21:49:00 -04009599/**
James Smart3621a712009-04-06 18:47:14 -04009600 * lpfc_sli_ringpostbuf_get - search buffers for unsolicited CT and ELS events
James Smarte59058c2008-08-24 21:49:00 -04009601 * @phba: Pointer to HBA context object.
9602 * @pring: Pointer to driver SLI ring object.
9603 * @phys: DMA address of the buffer.
9604 *
9605 * This function searches the buffer list using the dma_address
9606 * of unsolicited event to find the driver's lpfc_dmabuf object
9607 * corresponding to the dma_address. The function returns the
9608 * lpfc_dmabuf object if a buffer is found else it returns NULL.
9609 * This function is called by the ct and els unsolicited event
9610 * handlers to get the buffer associated with the unsolicited
9611 * event.
9612 *
9613 * This function is called with no lock held.
9614 **/
dea31012005-04-17 16:05:31 -05009615struct lpfc_dmabuf *
9616lpfc_sli_ringpostbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9617 dma_addr_t phys)
9618{
9619 struct lpfc_dmabuf *mp, *next_mp;
9620 struct list_head *slp = &pring->postbufq;
9621
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009622 /* Search postbufq, from the beginning, looking for a match on phys */
James Smart2e0fef82007-06-17 19:56:36 -05009623 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009624 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
9625 if (mp->phys == phys) {
9626 list_del_init(&mp->list);
9627 pring->postbufq_cnt--;
James Smart2e0fef82007-06-17 19:56:36 -05009628 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009629 return mp;
9630 }
9631 }
9632
James Smart2e0fef82007-06-17 19:56:36 -05009633 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009634 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04009635 "0410 Cannot find virtual addr for mapped buf on "
dea31012005-04-17 16:05:31 -05009636 "ring %d Data x%llx x%p x%p x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04009637 pring->ringno, (unsigned long long)phys,
dea31012005-04-17 16:05:31 -05009638 slp->next, slp->prev, pring->postbufq_cnt);
9639 return NULL;
9640}
9641
James Smarte59058c2008-08-24 21:49:00 -04009642/**
James Smart3621a712009-04-06 18:47:14 -04009643 * lpfc_sli_abort_els_cmpl - Completion handler for the els abort iocbs
James Smarte59058c2008-08-24 21:49:00 -04009644 * @phba: Pointer to HBA context object.
9645 * @cmdiocb: Pointer to driver command iocb object.
9646 * @rspiocb: Pointer to driver response iocb object.
9647 *
9648 * This function is the completion handler for the abort iocbs for
9649 * ELS commands. This function is called from the ELS ring event
9650 * handler with no lock held. This function frees memory resources
9651 * associated with the abort iocb.
9652 **/
dea31012005-04-17 16:05:31 -05009653static void
James Smart2e0fef82007-06-17 19:56:36 -05009654lpfc_sli_abort_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
9655 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05009656{
James Smart2e0fef82007-06-17 19:56:36 -05009657 IOCB_t *irsp = &rspiocb->iocb;
James Smart2680eea2007-04-25 09:52:55 -04009658 uint16_t abort_iotag, abort_context;
James Smartff78d8f2011-12-13 13:21:35 -05009659 struct lpfc_iocbq *abort_iocb = NULL;
James Smart2680eea2007-04-25 09:52:55 -04009660
9661 if (irsp->ulpStatus) {
James Smartff78d8f2011-12-13 13:21:35 -05009662
9663 /*
9664 * Assume that the port already completed and returned, or
9665 * will return the iocb. Just Log the message.
9666 */
James Smart2680eea2007-04-25 09:52:55 -04009667 abort_context = cmdiocb->iocb.un.acxri.abortContextTag;
9668 abort_iotag = cmdiocb->iocb.un.acxri.abortIoTag;
9669
James Smart2e0fef82007-06-17 19:56:36 -05009670 spin_lock_irq(&phba->hbalock);
James Smart45ed1192009-10-02 15:17:02 -04009671 if (phba->sli_rev < LPFC_SLI_REV4) {
9672 if (abort_iotag != 0 &&
9673 abort_iotag <= phba->sli.last_iotag)
9674 abort_iocb =
9675 phba->sli.iocbq_lookup[abort_iotag];
9676 } else
9677 /* For sli4 the abort_tag is the XRI,
9678 * so the abort routine puts the iotag of the iocb
9679 * being aborted in the context field of the abort
9680 * IOCB.
9681 */
9682 abort_iocb = phba->sli.iocbq_lookup[abort_context];
James Smart2680eea2007-04-25 09:52:55 -04009683
James Smart2a9bf3d2010-06-07 15:24:45 -04009684 lpfc_printf_log(phba, KERN_WARNING, LOG_ELS | LOG_SLI,
9685 "0327 Cannot abort els iocb %p "
9686 "with tag %x context %x, abort status %x, "
9687 "abort code %x\n",
9688 abort_iocb, abort_iotag, abort_context,
9689 irsp->ulpStatus, irsp->un.ulpWord[4]);
James Smart2680eea2007-04-25 09:52:55 -04009690
James Smartff78d8f2011-12-13 13:21:35 -05009691 spin_unlock_irq(&phba->hbalock);
James Smart2680eea2007-04-25 09:52:55 -04009692 }
James Bottomley604a3e32005-10-29 10:28:33 -05009693 lpfc_sli_release_iocbq(phba, cmdiocb);
dea31012005-04-17 16:05:31 -05009694 return;
9695}
9696
James Smarte59058c2008-08-24 21:49:00 -04009697/**
James Smart3621a712009-04-06 18:47:14 -04009698 * lpfc_ignore_els_cmpl - Completion handler for aborted ELS command
James Smarte59058c2008-08-24 21:49:00 -04009699 * @phba: Pointer to HBA context object.
9700 * @cmdiocb: Pointer to driver command iocb object.
9701 * @rspiocb: Pointer to driver response iocb object.
9702 *
9703 * The function is called from SLI ring event handler with no
9704 * lock held. This function is the completion handler for ELS commands
9705 * which are aborted. The function frees memory resources used for
9706 * the aborted ELS commands.
9707 **/
James Smart92d7f7b2007-06-17 19:56:38 -05009708static void
9709lpfc_ignore_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
9710 struct lpfc_iocbq *rspiocb)
9711{
9712 IOCB_t *irsp = &rspiocb->iocb;
9713
9714 /* ELS cmd tag <ulpIoTag> completes */
9715 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
James Smartd7c255b2008-08-24 21:50:00 -04009716 "0139 Ignoring ELS cmd tag x%x completion Data: "
James Smart92d7f7b2007-06-17 19:56:38 -05009717 "x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04009718 irsp->ulpIoTag, irsp->ulpStatus,
James Smart92d7f7b2007-06-17 19:56:38 -05009719 irsp->un.ulpWord[4], irsp->ulpTimeout);
James Smart858c9f62007-06-17 19:56:39 -05009720 if (cmdiocb->iocb.ulpCommand == CMD_GEN_REQUEST64_CR)
9721 lpfc_ct_free_iocb(phba, cmdiocb);
9722 else
9723 lpfc_els_free_iocb(phba, cmdiocb);
James Smart92d7f7b2007-06-17 19:56:38 -05009724 return;
9725}
9726
James Smarte59058c2008-08-24 21:49:00 -04009727/**
James Smart5af5eee2010-10-22 11:06:38 -04009728 * lpfc_sli_abort_iotag_issue - Issue abort for a command iocb
James Smarte59058c2008-08-24 21:49:00 -04009729 * @phba: Pointer to HBA context object.
9730 * @pring: Pointer to driver SLI ring object.
9731 * @cmdiocb: Pointer to driver command iocb object.
9732 *
James Smart5af5eee2010-10-22 11:06:38 -04009733 * This function issues an abort iocb for the provided command iocb down to
9734 * the port. Other than the case the outstanding command iocb is an abort
9735 * request, this function issues abort out unconditionally. This function is
9736 * called with hbalock held. The function returns 0 when it fails due to
9737 * memory allocation failure or when the command iocb is an abort request.
James Smarte59058c2008-08-24 21:49:00 -04009738 **/
James Smart5af5eee2010-10-22 11:06:38 -04009739static int
9740lpfc_sli_abort_iotag_issue(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart2e0fef82007-06-17 19:56:36 -05009741 struct lpfc_iocbq *cmdiocb)
dea31012005-04-17 16:05:31 -05009742{
James Smart2e0fef82007-06-17 19:56:36 -05009743 struct lpfc_vport *vport = cmdiocb->vport;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009744 struct lpfc_iocbq *abtsiocbp;
dea31012005-04-17 16:05:31 -05009745 IOCB_t *icmd = NULL;
9746 IOCB_t *iabt = NULL;
James Smart5af5eee2010-10-22 11:06:38 -04009747 int retval;
James Smart7e56aa22012-08-03 12:35:34 -04009748 unsigned long iflags;
James Smart07951072007-04-25 09:51:38 -04009749
James Smart92d7f7b2007-06-17 19:56:38 -05009750 /*
9751 * There are certain command types we don't want to abort. And we
9752 * don't want to abort commands that are already in the process of
9753 * being aborted.
James Smart07951072007-04-25 09:51:38 -04009754 */
9755 icmd = &cmdiocb->iocb;
James Smart2e0fef82007-06-17 19:56:36 -05009756 if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
James Smart92d7f7b2007-06-17 19:56:38 -05009757 icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
9758 (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
James Smart07951072007-04-25 09:51:38 -04009759 return 0;
9760
dea31012005-04-17 16:05:31 -05009761 /* issue ABTS for this IOCB based on iotag */
James Smart92d7f7b2007-06-17 19:56:38 -05009762 abtsiocbp = __lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -05009763 if (abtsiocbp == NULL)
9764 return 0;
dea31012005-04-17 16:05:31 -05009765
James Smart07951072007-04-25 09:51:38 -04009766 /* This signals the response to set the correct status
James Smart341af102010-01-26 23:07:37 -05009767 * before calling the completion handler
James Smart07951072007-04-25 09:51:38 -04009768 */
9769 cmdiocb->iocb_flag |= LPFC_DRIVER_ABORTED;
9770
dea31012005-04-17 16:05:31 -05009771 iabt = &abtsiocbp->iocb;
James Smart07951072007-04-25 09:51:38 -04009772 iabt->un.acxri.abortType = ABORT_TYPE_ABTS;
9773 iabt->un.acxri.abortContextTag = icmd->ulpContext;
James Smart45ed1192009-10-02 15:17:02 -04009774 if (phba->sli_rev == LPFC_SLI_REV4) {
James Smartda0436e2009-05-22 14:51:39 -04009775 iabt->un.acxri.abortIoTag = cmdiocb->sli4_xritag;
James Smart45ed1192009-10-02 15:17:02 -04009776 iabt->un.acxri.abortContextTag = cmdiocb->iotag;
9777 }
James Smartda0436e2009-05-22 14:51:39 -04009778 else
9779 iabt->un.acxri.abortIoTag = icmd->ulpIoTag;
dea31012005-04-17 16:05:31 -05009780 iabt->ulpLe = 1;
James Smart07951072007-04-25 09:51:38 -04009781 iabt->ulpClass = icmd->ulpClass;
dea31012005-04-17 16:05:31 -05009782
James Smart5ffc2662009-11-18 15:39:44 -05009783 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
9784 abtsiocbp->fcp_wqidx = cmdiocb->fcp_wqidx;
James Smart341af102010-01-26 23:07:37 -05009785 if (cmdiocb->iocb_flag & LPFC_IO_FCP)
9786 abtsiocbp->iocb_flag |= LPFC_USE_FCPWQIDX;
James Smart5ffc2662009-11-18 15:39:44 -05009787
James Smart2e0fef82007-06-17 19:56:36 -05009788 if (phba->link_state >= LPFC_LINK_UP)
James Smart07951072007-04-25 09:51:38 -04009789 iabt->ulpCommand = CMD_ABORT_XRI_CN;
9790 else
9791 iabt->ulpCommand = CMD_CLOSE_XRI_CN;
9792
9793 abtsiocbp->iocb_cmpl = lpfc_sli_abort_els_cmpl;
James Smart5b8bd0c2007-04-25 09:52:49 -04009794
James Smarte8b62012007-08-02 11:10:09 -04009795 lpfc_printf_vlog(vport, KERN_INFO, LOG_SLI,
9796 "0339 Abort xri x%x, original iotag x%x, "
9797 "abort cmd iotag x%x\n",
James Smart2a9bf3d2010-06-07 15:24:45 -04009798 iabt->un.acxri.abortIoTag,
James Smarte8b62012007-08-02 11:10:09 -04009799 iabt->un.acxri.abortContextTag,
James Smart2a9bf3d2010-06-07 15:24:45 -04009800 abtsiocbp->iotag);
James Smart7e56aa22012-08-03 12:35:34 -04009801
9802 if (phba->sli_rev == LPFC_SLI_REV4) {
9803 /* Note: both hbalock and ring_lock need to be set here */
9804 spin_lock_irqsave(&pring->ring_lock, iflags);
9805 retval = __lpfc_sli_issue_iocb(phba, pring->ringno,
9806 abtsiocbp, 0);
9807 spin_unlock_irqrestore(&pring->ring_lock, iflags);
9808 } else {
9809 retval = __lpfc_sli_issue_iocb(phba, pring->ringno,
9810 abtsiocbp, 0);
9811 }
James Smart07951072007-04-25 09:51:38 -04009812
James Smartd7c255b2008-08-24 21:50:00 -04009813 if (retval)
9814 __lpfc_sli_release_iocbq(phba, abtsiocbp);
James Smart5af5eee2010-10-22 11:06:38 -04009815
9816 /*
9817 * Caller to this routine should check for IOCB_ERROR
9818 * and handle it properly. This routine no longer removes
9819 * iocb off txcmplq and call compl in case of IOCB_ERROR.
9820 */
9821 return retval;
9822}
9823
9824/**
9825 * lpfc_sli_issue_abort_iotag - Abort function for a command iocb
9826 * @phba: Pointer to HBA context object.
9827 * @pring: Pointer to driver SLI ring object.
9828 * @cmdiocb: Pointer to driver command iocb object.
9829 *
9830 * This function issues an abort iocb for the provided command iocb. In case
9831 * of unloading, the abort iocb will not be issued to commands on the ELS
9832 * ring. Instead, the callback function shall be changed to those commands
9833 * so that nothing happens when them finishes. This function is called with
9834 * hbalock held. The function returns 0 when the command iocb is an abort
9835 * request.
9836 **/
9837int
9838lpfc_sli_issue_abort_iotag(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9839 struct lpfc_iocbq *cmdiocb)
9840{
9841 struct lpfc_vport *vport = cmdiocb->vport;
9842 int retval = IOCB_ERROR;
9843 IOCB_t *icmd = NULL;
9844
9845 /*
9846 * There are certain command types we don't want to abort. And we
9847 * don't want to abort commands that are already in the process of
9848 * being aborted.
9849 */
9850 icmd = &cmdiocb->iocb;
9851 if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
9852 icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
9853 (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
9854 return 0;
9855
9856 /*
9857 * If we're unloading, don't abort iocb on the ELS ring, but change
9858 * the callback so that nothing happens when it finishes.
9859 */
9860 if ((vport->load_flag & FC_UNLOADING) &&
9861 (pring->ringno == LPFC_ELS_RING)) {
9862 if (cmdiocb->iocb_flag & LPFC_IO_FABRIC)
9863 cmdiocb->fabric_iocb_cmpl = lpfc_ignore_els_cmpl;
9864 else
9865 cmdiocb->iocb_cmpl = lpfc_ignore_els_cmpl;
9866 goto abort_iotag_exit;
9867 }
9868
9869 /* Now, we try to issue the abort to the cmdiocb out */
9870 retval = lpfc_sli_abort_iotag_issue(phba, pring, cmdiocb);
9871
James Smart07951072007-04-25 09:51:38 -04009872abort_iotag_exit:
James Smart2e0fef82007-06-17 19:56:36 -05009873 /*
9874 * Caller to this routine should check for IOCB_ERROR
9875 * and handle it properly. This routine no longer removes
9876 * iocb off txcmplq and call compl in case of IOCB_ERROR.
James Smart07951072007-04-25 09:51:38 -04009877 */
James Smart2e0fef82007-06-17 19:56:36 -05009878 return retval;
dea31012005-04-17 16:05:31 -05009879}
9880
James Smarte59058c2008-08-24 21:49:00 -04009881/**
James Smart5af5eee2010-10-22 11:06:38 -04009882 * lpfc_sli_hba_iocb_abort - Abort all iocbs to an hba.
9883 * @phba: pointer to lpfc HBA data structure.
9884 *
9885 * This routine will abort all pending and outstanding iocbs to an HBA.
9886 **/
9887void
9888lpfc_sli_hba_iocb_abort(struct lpfc_hba *phba)
9889{
9890 struct lpfc_sli *psli = &phba->sli;
9891 struct lpfc_sli_ring *pring;
9892 int i;
9893
9894 for (i = 0; i < psli->num_rings; i++) {
9895 pring = &psli->ring[i];
James Smartdb55fba2014-04-04 13:52:02 -04009896 lpfc_sli_abort_iocb_ring(phba, pring);
James Smart5af5eee2010-10-22 11:06:38 -04009897 }
9898}
9899
9900/**
James Smart3621a712009-04-06 18:47:14 -04009901 * lpfc_sli_validate_fcp_iocb - find commands associated with a vport or LUN
James Smarte59058c2008-08-24 21:49:00 -04009902 * @iocbq: Pointer to driver iocb object.
9903 * @vport: Pointer to driver virtual port object.
9904 * @tgt_id: SCSI ID of the target.
9905 * @lun_id: LUN ID of the scsi device.
9906 * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST
9907 *
James Smart3621a712009-04-06 18:47:14 -04009908 * This function acts as an iocb filter for functions which abort or count
James Smarte59058c2008-08-24 21:49:00 -04009909 * all FCP iocbs pending on a lun/SCSI target/SCSI host. It will return
9910 * 0 if the filtering criteria is met for the given iocb and will return
9911 * 1 if the filtering criteria is not met.
9912 * If ctx_cmd == LPFC_CTX_LUN, the function returns 0 only if the
9913 * given iocb is for the SCSI device specified by vport, tgt_id and
9914 * lun_id parameter.
9915 * If ctx_cmd == LPFC_CTX_TGT, the function returns 0 only if the
9916 * given iocb is for the SCSI target specified by vport and tgt_id
9917 * parameters.
9918 * If ctx_cmd == LPFC_CTX_HOST, the function returns 0 only if the
9919 * given iocb is for the SCSI host associated with the given vport.
9920 * This function is called with no locks held.
9921 **/
dea31012005-04-17 16:05:31 -05009922static int
James Smart51ef4c22007-08-02 11:10:31 -04009923lpfc_sli_validate_fcp_iocb(struct lpfc_iocbq *iocbq, struct lpfc_vport *vport,
9924 uint16_t tgt_id, uint64_t lun_id,
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009925 lpfc_ctx_cmd ctx_cmd)
dea31012005-04-17 16:05:31 -05009926{
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009927 struct lpfc_scsi_buf *lpfc_cmd;
dea31012005-04-17 16:05:31 -05009928 int rc = 1;
9929
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009930 if (!(iocbq->iocb_flag & LPFC_IO_FCP))
9931 return rc;
9932
James Smart51ef4c22007-08-02 11:10:31 -04009933 if (iocbq->vport != vport)
9934 return rc;
9935
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009936 lpfc_cmd = container_of(iocbq, struct lpfc_scsi_buf, cur_iocbq);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009937
James Smart495a7142008-06-14 22:52:59 -04009938 if (lpfc_cmd->pCmd == NULL)
dea31012005-04-17 16:05:31 -05009939 return rc;
9940
9941 switch (ctx_cmd) {
9942 case LPFC_CTX_LUN:
James Smart495a7142008-06-14 22:52:59 -04009943 if ((lpfc_cmd->rdata->pnode) &&
9944 (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id) &&
9945 (scsilun_to_int(&lpfc_cmd->fcp_cmnd->fcp_lun) == lun_id))
dea31012005-04-17 16:05:31 -05009946 rc = 0;
9947 break;
9948 case LPFC_CTX_TGT:
James Smart495a7142008-06-14 22:52:59 -04009949 if ((lpfc_cmd->rdata->pnode) &&
9950 (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id))
dea31012005-04-17 16:05:31 -05009951 rc = 0;
9952 break;
dea31012005-04-17 16:05:31 -05009953 case LPFC_CTX_HOST:
9954 rc = 0;
9955 break;
9956 default:
9957 printk(KERN_ERR "%s: Unknown context cmd type, value %d\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07009958 __func__, ctx_cmd);
dea31012005-04-17 16:05:31 -05009959 break;
9960 }
9961
9962 return rc;
9963}
9964
James Smarte59058c2008-08-24 21:49:00 -04009965/**
James Smart3621a712009-04-06 18:47:14 -04009966 * lpfc_sli_sum_iocb - Function to count the number of FCP iocbs pending
James Smarte59058c2008-08-24 21:49:00 -04009967 * @vport: Pointer to virtual port.
9968 * @tgt_id: SCSI ID of the target.
9969 * @lun_id: LUN ID of the scsi device.
9970 * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
9971 *
9972 * This function returns number of FCP commands pending for the vport.
9973 * When ctx_cmd == LPFC_CTX_LUN, the function returns number of FCP
9974 * commands pending on the vport associated with SCSI device specified
9975 * by tgt_id and lun_id parameters.
9976 * When ctx_cmd == LPFC_CTX_TGT, the function returns number of FCP
9977 * commands pending on the vport associated with SCSI target specified
9978 * by tgt_id parameter.
9979 * When ctx_cmd == LPFC_CTX_HOST, the function returns number of FCP
9980 * commands pending on the vport.
9981 * This function returns the number of iocbs which satisfy the filter.
9982 * This function is called without any lock held.
9983 **/
dea31012005-04-17 16:05:31 -05009984int
James Smart51ef4c22007-08-02 11:10:31 -04009985lpfc_sli_sum_iocb(struct lpfc_vport *vport, uint16_t tgt_id, uint64_t lun_id,
9986 lpfc_ctx_cmd ctx_cmd)
dea31012005-04-17 16:05:31 -05009987{
James Smart51ef4c22007-08-02 11:10:31 -04009988 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009989 struct lpfc_iocbq *iocbq;
9990 int sum, i;
dea31012005-04-17 16:05:31 -05009991
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009992 for (i = 1, sum = 0; i <= phba->sli.last_iotag; i++) {
9993 iocbq = phba->sli.iocbq_lookup[i];
dea31012005-04-17 16:05:31 -05009994
James Smart51ef4c22007-08-02 11:10:31 -04009995 if (lpfc_sli_validate_fcp_iocb (iocbq, vport, tgt_id, lun_id,
9996 ctx_cmd) == 0)
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009997 sum++;
dea31012005-04-17 16:05:31 -05009998 }
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009999
dea31012005-04-17 16:05:31 -050010000 return sum;
10001}
10002
James Smarte59058c2008-08-24 21:49:00 -040010003/**
James Smart3621a712009-04-06 18:47:14 -040010004 * lpfc_sli_abort_fcp_cmpl - Completion handler function for aborted FCP IOCBs
James Smarte59058c2008-08-24 21:49:00 -040010005 * @phba: Pointer to HBA context object
10006 * @cmdiocb: Pointer to command iocb object.
10007 * @rspiocb: Pointer to response iocb object.
10008 *
10009 * This function is called when an aborted FCP iocb completes. This
10010 * function is called by the ring event handler with no lock held.
10011 * This function frees the iocb.
10012 **/
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -040010013void
James Smart2e0fef82007-06-17 19:56:36 -050010014lpfc_sli_abort_fcp_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
10015 struct lpfc_iocbq *rspiocb)
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -040010016{
James Smartcb69f7d2011-12-13 13:21:57 -050010017 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smart8e668af2013-05-31 17:04:28 -040010018 "3096 ABORT_XRI_CN completing on rpi x%x "
James Smartcb69f7d2011-12-13 13:21:57 -050010019 "original iotag x%x, abort cmd iotag x%x "
10020 "status 0x%x, reason 0x%x\n",
10021 cmdiocb->iocb.un.acxri.abortContextTag,
10022 cmdiocb->iocb.un.acxri.abortIoTag,
10023 cmdiocb->iotag, rspiocb->iocb.ulpStatus,
10024 rspiocb->iocb.un.ulpWord[4]);
James Bottomley604a3e32005-10-29 10:28:33 -050010025 lpfc_sli_release_iocbq(phba, cmdiocb);
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -040010026 return;
10027}
10028
James Smarte59058c2008-08-24 21:49:00 -040010029/**
James Smart3621a712009-04-06 18:47:14 -040010030 * lpfc_sli_abort_iocb - issue abort for all commands on a host/target/LUN
James Smarte59058c2008-08-24 21:49:00 -040010031 * @vport: Pointer to virtual port.
10032 * @pring: Pointer to driver SLI ring object.
10033 * @tgt_id: SCSI ID of the target.
10034 * @lun_id: LUN ID of the scsi device.
10035 * @abort_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
10036 *
10037 * This function sends an abort command for every SCSI command
10038 * associated with the given virtual port pending on the ring
10039 * filtered by lpfc_sli_validate_fcp_iocb function.
10040 * When abort_cmd == LPFC_CTX_LUN, the function sends abort only to the
10041 * FCP iocbs associated with lun specified by tgt_id and lun_id
10042 * parameters
10043 * When abort_cmd == LPFC_CTX_TGT, the function sends abort only to the
10044 * FCP iocbs associated with SCSI target specified by tgt_id parameter.
10045 * When abort_cmd == LPFC_CTX_HOST, the function sends abort to all
10046 * FCP iocbs associated with virtual port.
10047 * This function returns number of iocbs it failed to abort.
10048 * This function is called with no locks held.
10049 **/
dea31012005-04-17 16:05:31 -050010050int
James Smart51ef4c22007-08-02 11:10:31 -040010051lpfc_sli_abort_iocb(struct lpfc_vport *vport, struct lpfc_sli_ring *pring,
10052 uint16_t tgt_id, uint64_t lun_id, lpfc_ctx_cmd abort_cmd)
dea31012005-04-17 16:05:31 -050010053{
James Smart51ef4c22007-08-02 11:10:31 -040010054 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040010055 struct lpfc_iocbq *iocbq;
10056 struct lpfc_iocbq *abtsiocb;
dea31012005-04-17 16:05:31 -050010057 IOCB_t *cmd = NULL;
dea31012005-04-17 16:05:31 -050010058 int errcnt = 0, ret_val = 0;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040010059 int i;
dea31012005-04-17 16:05:31 -050010060
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040010061 for (i = 1; i <= phba->sli.last_iotag; i++) {
10062 iocbq = phba->sli.iocbq_lookup[i];
dea31012005-04-17 16:05:31 -050010063
James Smart51ef4c22007-08-02 11:10:31 -040010064 if (lpfc_sli_validate_fcp_iocb(iocbq, vport, tgt_id, lun_id,
James Smart2e0fef82007-06-17 19:56:36 -050010065 abort_cmd) != 0)
dea31012005-04-17 16:05:31 -050010066 continue;
10067
James Smartafbd8d82013-09-06 12:22:13 -040010068 /*
10069 * If the iocbq is already being aborted, don't take a second
10070 * action, but do count it.
10071 */
10072 if (iocbq->iocb_flag & LPFC_DRIVER_ABORTED)
10073 continue;
10074
dea31012005-04-17 16:05:31 -050010075 /* issue ABTS for this IOCB based on iotag */
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040010076 abtsiocb = lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -050010077 if (abtsiocb == NULL) {
10078 errcnt++;
10079 continue;
10080 }
dea31012005-04-17 16:05:31 -050010081
James Smartafbd8d82013-09-06 12:22:13 -040010082 /* indicate the IO is being aborted by the driver. */
10083 iocbq->iocb_flag |= LPFC_DRIVER_ABORTED;
10084
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040010085 cmd = &iocbq->iocb;
dea31012005-04-17 16:05:31 -050010086 abtsiocb->iocb.un.acxri.abortType = ABORT_TYPE_ABTS;
10087 abtsiocb->iocb.un.acxri.abortContextTag = cmd->ulpContext;
James Smartda0436e2009-05-22 14:51:39 -040010088 if (phba->sli_rev == LPFC_SLI_REV4)
10089 abtsiocb->iocb.un.acxri.abortIoTag = iocbq->sli4_xritag;
10090 else
10091 abtsiocb->iocb.un.acxri.abortIoTag = cmd->ulpIoTag;
dea31012005-04-17 16:05:31 -050010092 abtsiocb->iocb.ulpLe = 1;
10093 abtsiocb->iocb.ulpClass = cmd->ulpClass;
James Smartafbd8d82013-09-06 12:22:13 -040010094 abtsiocb->vport = vport;
dea31012005-04-17 16:05:31 -050010095
James Smart5ffc2662009-11-18 15:39:44 -050010096 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
10097 abtsiocb->fcp_wqidx = iocbq->fcp_wqidx;
James Smart341af102010-01-26 23:07:37 -050010098 if (iocbq->iocb_flag & LPFC_IO_FCP)
10099 abtsiocb->iocb_flag |= LPFC_USE_FCPWQIDX;
James Smart5ffc2662009-11-18 15:39:44 -050010100
James Smart2e0fef82007-06-17 19:56:36 -050010101 if (lpfc_is_link_up(phba))
dea31012005-04-17 16:05:31 -050010102 abtsiocb->iocb.ulpCommand = CMD_ABORT_XRI_CN;
10103 else
10104 abtsiocb->iocb.ulpCommand = CMD_CLOSE_XRI_CN;
10105
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -040010106 /* Setup callback routine and issue the command. */
10107 abtsiocb->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
James Smartda0436e2009-05-22 14:51:39 -040010108 ret_val = lpfc_sli_issue_iocb(phba, pring->ringno,
10109 abtsiocb, 0);
dea31012005-04-17 16:05:31 -050010110 if (ret_val == IOCB_ERROR) {
James Bottomley604a3e32005-10-29 10:28:33 -050010111 lpfc_sli_release_iocbq(phba, abtsiocb);
dea31012005-04-17 16:05:31 -050010112 errcnt++;
10113 continue;
10114 }
10115 }
10116
10117 return errcnt;
10118}
10119
James Smarte59058c2008-08-24 21:49:00 -040010120/**
James Smart98912dd2014-04-04 13:52:31 -040010121 * lpfc_sli_abort_taskmgmt - issue abort for all commands on a host/target/LUN
10122 * @vport: Pointer to virtual port.
10123 * @pring: Pointer to driver SLI ring object.
10124 * @tgt_id: SCSI ID of the target.
10125 * @lun_id: LUN ID of the scsi device.
10126 * @taskmgmt_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
10127 *
10128 * This function sends an abort command for every SCSI command
10129 * associated with the given virtual port pending on the ring
10130 * filtered by lpfc_sli_validate_fcp_iocb function.
10131 * When taskmgmt_cmd == LPFC_CTX_LUN, the function sends abort only to the
10132 * FCP iocbs associated with lun specified by tgt_id and lun_id
10133 * parameters
10134 * When taskmgmt_cmd == LPFC_CTX_TGT, the function sends abort only to the
10135 * FCP iocbs associated with SCSI target specified by tgt_id parameter.
10136 * When taskmgmt_cmd == LPFC_CTX_HOST, the function sends abort to all
10137 * FCP iocbs associated with virtual port.
10138 * This function returns number of iocbs it aborted .
10139 * This function is called with no locks held right after a taskmgmt
10140 * command is sent.
10141 **/
10142int
10143lpfc_sli_abort_taskmgmt(struct lpfc_vport *vport, struct lpfc_sli_ring *pring,
10144 uint16_t tgt_id, uint64_t lun_id, lpfc_ctx_cmd cmd)
10145{
10146 struct lpfc_hba *phba = vport->phba;
10147 struct lpfc_iocbq *abtsiocbq;
10148 struct lpfc_iocbq *iocbq;
10149 IOCB_t *icmd;
10150 int sum, i, ret_val;
10151 unsigned long iflags;
10152 struct lpfc_sli_ring *pring_s4;
10153 uint32_t ring_number;
10154
10155 spin_lock_irq(&phba->hbalock);
10156
10157 /* all I/Os are in process of being flushed */
10158 if (phba->hba_flag & HBA_FCP_IOQ_FLUSH) {
10159 spin_unlock_irq(&phba->hbalock);
10160 return 0;
10161 }
10162 sum = 0;
10163
10164 for (i = 1; i <= phba->sli.last_iotag; i++) {
10165 iocbq = phba->sli.iocbq_lookup[i];
10166
10167 if (lpfc_sli_validate_fcp_iocb(iocbq, vport, tgt_id, lun_id,
10168 cmd) != 0)
10169 continue;
10170
10171 /*
10172 * If the iocbq is already being aborted, don't take a second
10173 * action, but do count it.
10174 */
10175 if (iocbq->iocb_flag & LPFC_DRIVER_ABORTED)
10176 continue;
10177
10178 /* issue ABTS for this IOCB based on iotag */
10179 abtsiocbq = __lpfc_sli_get_iocbq(phba);
10180 if (abtsiocbq == NULL)
10181 continue;
10182
10183 icmd = &iocbq->iocb;
10184 abtsiocbq->iocb.un.acxri.abortType = ABORT_TYPE_ABTS;
10185 abtsiocbq->iocb.un.acxri.abortContextTag = icmd->ulpContext;
10186 if (phba->sli_rev == LPFC_SLI_REV4)
10187 abtsiocbq->iocb.un.acxri.abortIoTag =
10188 iocbq->sli4_xritag;
10189 else
10190 abtsiocbq->iocb.un.acxri.abortIoTag = icmd->ulpIoTag;
10191 abtsiocbq->iocb.ulpLe = 1;
10192 abtsiocbq->iocb.ulpClass = icmd->ulpClass;
10193 abtsiocbq->vport = vport;
10194
10195 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
10196 abtsiocbq->fcp_wqidx = iocbq->fcp_wqidx;
10197 if (iocbq->iocb_flag & LPFC_IO_FCP)
10198 abtsiocbq->iocb_flag |= LPFC_USE_FCPWQIDX;
10199
10200 if (lpfc_is_link_up(phba))
10201 abtsiocbq->iocb.ulpCommand = CMD_ABORT_XRI_CN;
10202 else
10203 abtsiocbq->iocb.ulpCommand = CMD_CLOSE_XRI_CN;
10204
10205 /* Setup callback routine and issue the command. */
10206 abtsiocbq->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
10207
10208 /*
10209 * Indicate the IO is being aborted by the driver and set
10210 * the caller's flag into the aborted IO.
10211 */
10212 iocbq->iocb_flag |= LPFC_DRIVER_ABORTED;
10213
10214 if (phba->sli_rev == LPFC_SLI_REV4) {
10215 ring_number = MAX_SLI3_CONFIGURED_RINGS +
10216 iocbq->fcp_wqidx;
10217 pring_s4 = &phba->sli.ring[ring_number];
10218 /* Note: both hbalock and ring_lock must be set here */
10219 spin_lock_irqsave(&pring_s4->ring_lock, iflags);
10220 ret_val = __lpfc_sli_issue_iocb(phba, pring_s4->ringno,
10221 abtsiocbq, 0);
10222 spin_unlock_irqrestore(&pring_s4->ring_lock, iflags);
10223 } else {
10224 ret_val = __lpfc_sli_issue_iocb(phba, pring->ringno,
10225 abtsiocbq, 0);
10226 }
10227
10228
10229 if (ret_val == IOCB_ERROR)
10230 __lpfc_sli_release_iocbq(phba, abtsiocbq);
10231 else
10232 sum++;
10233 }
10234 spin_unlock_irq(&phba->hbalock);
10235 return sum;
10236}
10237
10238/**
James Smart3621a712009-04-06 18:47:14 -040010239 * lpfc_sli_wake_iocb_wait - lpfc_sli_issue_iocb_wait's completion handler
James Smarte59058c2008-08-24 21:49:00 -040010240 * @phba: Pointer to HBA context object.
10241 * @cmdiocbq: Pointer to command iocb.
10242 * @rspiocbq: Pointer to response iocb.
10243 *
10244 * This function is the completion handler for iocbs issued using
10245 * lpfc_sli_issue_iocb_wait function. This function is called by the
10246 * ring event handler function without any lock held. This function
10247 * can be called from both worker thread context and interrupt
10248 * context. This function also can be called from other thread which
10249 * cleans up the SLI layer objects.
10250 * This function copy the contents of the response iocb to the
10251 * response iocb memory object provided by the caller of
10252 * lpfc_sli_issue_iocb_wait and then wakes up the thread which
10253 * sleeps for the iocb completion.
10254 **/
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010255static void
10256lpfc_sli_wake_iocb_wait(struct lpfc_hba *phba,
10257 struct lpfc_iocbq *cmdiocbq,
10258 struct lpfc_iocbq *rspiocbq)
dea31012005-04-17 16:05:31 -050010259{
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010260 wait_queue_head_t *pdone_q;
10261 unsigned long iflags;
James Smart0f65ff62010-02-26 14:14:23 -050010262 struct lpfc_scsi_buf *lpfc_cmd;
dea31012005-04-17 16:05:31 -050010263
James Smart2e0fef82007-06-17 19:56:36 -050010264 spin_lock_irqsave(&phba->hbalock, iflags);
James Smart5a0916b2013-07-15 18:31:42 -040010265 if (cmdiocbq->iocb_flag & LPFC_IO_WAKE_TMO) {
10266
10267 /*
10268 * A time out has occurred for the iocb. If a time out
10269 * completion handler has been supplied, call it. Otherwise,
10270 * just free the iocbq.
10271 */
10272
10273 spin_unlock_irqrestore(&phba->hbalock, iflags);
10274 cmdiocbq->iocb_cmpl = cmdiocbq->wait_iocb_cmpl;
10275 cmdiocbq->wait_iocb_cmpl = NULL;
10276 if (cmdiocbq->iocb_cmpl)
10277 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq, NULL);
10278 else
10279 lpfc_sli_release_iocbq(phba, cmdiocbq);
10280 return;
10281 }
10282
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010283 cmdiocbq->iocb_flag |= LPFC_IO_WAKE;
10284 if (cmdiocbq->context2 && rspiocbq)
10285 memcpy(&((struct lpfc_iocbq *)cmdiocbq->context2)->iocb,
10286 &rspiocbq->iocb, sizeof(IOCB_t));
10287
James Smart0f65ff62010-02-26 14:14:23 -050010288 /* Set the exchange busy flag for task management commands */
10289 if ((cmdiocbq->iocb_flag & LPFC_IO_FCP) &&
10290 !(cmdiocbq->iocb_flag & LPFC_IO_LIBDFC)) {
10291 lpfc_cmd = container_of(cmdiocbq, struct lpfc_scsi_buf,
10292 cur_iocbq);
10293 lpfc_cmd->exch_busy = rspiocbq->iocb_flag & LPFC_EXCHANGE_BUSY;
10294 }
10295
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010296 pdone_q = cmdiocbq->context_un.wait_queue;
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010297 if (pdone_q)
10298 wake_up(pdone_q);
James Smart858c9f62007-06-17 19:56:39 -050010299 spin_unlock_irqrestore(&phba->hbalock, iflags);
dea31012005-04-17 16:05:31 -050010300 return;
10301}
10302
James Smarte59058c2008-08-24 21:49:00 -040010303/**
James Smartd11e31d2009-06-10 17:23:06 -040010304 * lpfc_chk_iocb_flg - Test IOCB flag with lock held.
10305 * @phba: Pointer to HBA context object..
10306 * @piocbq: Pointer to command iocb.
10307 * @flag: Flag to test.
10308 *
10309 * This routine grabs the hbalock and then test the iocb_flag to
10310 * see if the passed in flag is set.
10311 * Returns:
10312 * 1 if flag is set.
10313 * 0 if flag is not set.
10314 **/
10315static int
10316lpfc_chk_iocb_flg(struct lpfc_hba *phba,
10317 struct lpfc_iocbq *piocbq, uint32_t flag)
10318{
10319 unsigned long iflags;
10320 int ret;
10321
10322 spin_lock_irqsave(&phba->hbalock, iflags);
10323 ret = piocbq->iocb_flag & flag;
10324 spin_unlock_irqrestore(&phba->hbalock, iflags);
10325 return ret;
10326
10327}
10328
10329/**
James Smart3621a712009-04-06 18:47:14 -040010330 * lpfc_sli_issue_iocb_wait - Synchronous function to issue iocb commands
James Smarte59058c2008-08-24 21:49:00 -040010331 * @phba: Pointer to HBA context object..
10332 * @pring: Pointer to sli ring.
10333 * @piocb: Pointer to command iocb.
10334 * @prspiocbq: Pointer to response iocb.
10335 * @timeout: Timeout in number of seconds.
10336 *
10337 * This function issues the iocb to firmware and waits for the
James Smart5a0916b2013-07-15 18:31:42 -040010338 * iocb to complete. The iocb_cmpl field of the shall be used
10339 * to handle iocbs which time out. If the field is NULL, the
10340 * function shall free the iocbq structure. If more clean up is
10341 * needed, the caller is expected to provide a completion function
10342 * that will provide the needed clean up. If the iocb command is
10343 * not completed within timeout seconds, the function will either
10344 * free the iocbq structure (if iocb_cmpl == NULL) or execute the
10345 * completion function set in the iocb_cmpl field and then return
10346 * a status of IOCB_TIMEDOUT. The caller should not free the iocb
10347 * resources if this function returns IOCB_TIMEDOUT.
James Smarte59058c2008-08-24 21:49:00 -040010348 * The function waits for the iocb completion using an
10349 * non-interruptible wait.
10350 * This function will sleep while waiting for iocb completion.
10351 * So, this function should not be called from any context which
10352 * does not allow sleeping. Due to the same reason, this function
10353 * cannot be called with interrupt disabled.
10354 * This function assumes that the iocb completions occur while
10355 * this function sleep. So, this function cannot be called from
10356 * the thread which process iocb completion for this ring.
10357 * This function clears the iocb_flag of the iocb object before
10358 * issuing the iocb and the iocb completion handler sets this
10359 * flag and wakes this thread when the iocb completes.
10360 * The contents of the response iocb will be copied to prspiocbq
10361 * by the completion handler when the command completes.
10362 * This function returns IOCB_SUCCESS when success.
10363 * This function is called with no lock held.
10364 **/
dea31012005-04-17 16:05:31 -050010365int
James Smart2e0fef82007-06-17 19:56:36 -050010366lpfc_sli_issue_iocb_wait(struct lpfc_hba *phba,
James Smartda0436e2009-05-22 14:51:39 -040010367 uint32_t ring_number,
James Smart2e0fef82007-06-17 19:56:36 -050010368 struct lpfc_iocbq *piocb,
10369 struct lpfc_iocbq *prspiocbq,
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010370 uint32_t timeout)
dea31012005-04-17 16:05:31 -050010371{
Peter Zijlstra7259f0d2006-10-29 22:46:36 -080010372 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010373 long timeleft, timeout_req = 0;
10374 int retval = IOCB_SUCCESS;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050010375 uint32_t creg_val;
James Smart0e9bb8d2013-03-01 16:35:12 -050010376 struct lpfc_iocbq *iocb;
10377 int txq_cnt = 0;
10378 int txcmplq_cnt = 0;
James Smart2a9bf3d2010-06-07 15:24:45 -040010379 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
James Smart5a0916b2013-07-15 18:31:42 -040010380 unsigned long iflags;
10381 bool iocb_completed = true;
10382
dea31012005-04-17 16:05:31 -050010383 /*
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010384 * If the caller has provided a response iocbq buffer, then context2
10385 * is NULL or its an error.
dea31012005-04-17 16:05:31 -050010386 */
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010387 if (prspiocbq) {
10388 if (piocb->context2)
10389 return IOCB_ERROR;
10390 piocb->context2 = prspiocbq;
dea31012005-04-17 16:05:31 -050010391 }
10392
James Smart5a0916b2013-07-15 18:31:42 -040010393 piocb->wait_iocb_cmpl = piocb->iocb_cmpl;
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010394 piocb->iocb_cmpl = lpfc_sli_wake_iocb_wait;
10395 piocb->context_un.wait_queue = &done_q;
James Smart5a0916b2013-07-15 18:31:42 -040010396 piocb->iocb_flag &= ~(LPFC_IO_WAKE | LPFC_IO_WAKE_TMO);
dea31012005-04-17 16:05:31 -050010397
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050010398 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
James Smart9940b972011-03-11 16:06:12 -050010399 if (lpfc_readl(phba->HCregaddr, &creg_val))
10400 return IOCB_ERROR;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050010401 creg_val |= (HC_R0INT_ENA << LPFC_FCP_RING);
10402 writel(creg_val, phba->HCregaddr);
10403 readl(phba->HCregaddr); /* flush */
10404 }
10405
James Smart2a9bf3d2010-06-07 15:24:45 -040010406 retval = lpfc_sli_issue_iocb(phba, ring_number, piocb,
10407 SLI_IOCB_RET_IOCB);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010408 if (retval == IOCB_SUCCESS) {
James Smart256ec0d2013-04-17 20:14:58 -040010409 timeout_req = msecs_to_jiffies(timeout * 1000);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010410 timeleft = wait_event_timeout(done_q,
James Smartd11e31d2009-06-10 17:23:06 -040010411 lpfc_chk_iocb_flg(phba, piocb, LPFC_IO_WAKE),
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010412 timeout_req);
James Smart5a0916b2013-07-15 18:31:42 -040010413 spin_lock_irqsave(&phba->hbalock, iflags);
10414 if (!(piocb->iocb_flag & LPFC_IO_WAKE)) {
dea31012005-04-17 16:05:31 -050010415
James Smart5a0916b2013-07-15 18:31:42 -040010416 /*
10417 * IOCB timed out. Inform the wake iocb wait
10418 * completion function and set local status
10419 */
10420
10421 iocb_completed = false;
10422 piocb->iocb_flag |= LPFC_IO_WAKE_TMO;
10423 }
10424 spin_unlock_irqrestore(&phba->hbalock, iflags);
10425 if (iocb_completed) {
James Smart7054a602007-04-25 09:52:34 -040010426 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -040010427 "0331 IOCB wake signaled\n");
James Smart53151bb2013-10-10 12:24:07 -040010428 /* Note: we are not indicating if the IOCB has a success
10429 * status or not - that's for the caller to check.
10430 * IOCB_SUCCESS means just that the command was sent and
10431 * completed. Not that it completed successfully.
10432 * */
James Smart7054a602007-04-25 09:52:34 -040010433 } else if (timeleft == 0) {
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010434 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -040010435 "0338 IOCB wait timeout error - no "
10436 "wake response Data x%x\n", timeout);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010437 retval = IOCB_TIMEDOUT;
James Smart7054a602007-04-25 09:52:34 -040010438 } else {
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010439 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -040010440 "0330 IOCB wake NOT set, "
10441 "Data x%x x%lx\n",
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010442 timeout, (timeleft / jiffies));
10443 retval = IOCB_TIMEDOUT;
dea31012005-04-17 16:05:31 -050010444 }
James Smart2a9bf3d2010-06-07 15:24:45 -040010445 } else if (retval == IOCB_BUSY) {
James Smart0e9bb8d2013-03-01 16:35:12 -050010446 if (phba->cfg_log_verbose & LOG_SLI) {
10447 list_for_each_entry(iocb, &pring->txq, list) {
10448 txq_cnt++;
10449 }
10450 list_for_each_entry(iocb, &pring->txcmplq, list) {
10451 txcmplq_cnt++;
10452 }
10453 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
10454 "2818 Max IOCBs %d txq cnt %d txcmplq cnt %d\n",
10455 phba->iocb_cnt, txq_cnt, txcmplq_cnt);
10456 }
James Smart2a9bf3d2010-06-07 15:24:45 -040010457 return retval;
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010458 } else {
10459 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smartd7c255b2008-08-24 21:50:00 -040010460 "0332 IOCB wait issue failed, Data x%x\n",
James Smarte8b62012007-08-02 11:10:09 -040010461 retval);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010462 retval = IOCB_ERROR;
dea31012005-04-17 16:05:31 -050010463 }
10464
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050010465 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
James Smart9940b972011-03-11 16:06:12 -050010466 if (lpfc_readl(phba->HCregaddr, &creg_val))
10467 return IOCB_ERROR;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050010468 creg_val &= ~(HC_R0INT_ENA << LPFC_FCP_RING);
10469 writel(creg_val, phba->HCregaddr);
10470 readl(phba->HCregaddr); /* flush */
10471 }
10472
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010473 if (prspiocbq)
10474 piocb->context2 = NULL;
10475
10476 piocb->context_un.wait_queue = NULL;
10477 piocb->iocb_cmpl = NULL;
dea31012005-04-17 16:05:31 -050010478 return retval;
10479}
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010480
James Smarte59058c2008-08-24 21:49:00 -040010481/**
James Smart3621a712009-04-06 18:47:14 -040010482 * lpfc_sli_issue_mbox_wait - Synchronous function to issue mailbox
James Smarte59058c2008-08-24 21:49:00 -040010483 * @phba: Pointer to HBA context object.
10484 * @pmboxq: Pointer to driver mailbox object.
10485 * @timeout: Timeout in number of seconds.
10486 *
10487 * This function issues the mailbox to firmware and waits for the
10488 * mailbox command to complete. If the mailbox command is not
10489 * completed within timeout seconds, it returns MBX_TIMEOUT.
10490 * The function waits for the mailbox completion using an
10491 * interruptible wait. If the thread is woken up due to a
10492 * signal, MBX_TIMEOUT error is returned to the caller. Caller
10493 * should not free the mailbox resources, if this function returns
10494 * MBX_TIMEOUT.
10495 * This function will sleep while waiting for mailbox completion.
10496 * So, this function should not be called from any context which
10497 * does not allow sleeping. Due to the same reason, this function
10498 * cannot be called with interrupt disabled.
10499 * This function assumes that the mailbox completion occurs while
10500 * this function sleep. So, this function cannot be called from
10501 * the worker thread which processes mailbox completion.
10502 * This function is called in the context of HBA management
10503 * applications.
10504 * This function returns MBX_SUCCESS when successful.
10505 * This function is called with no lock held.
10506 **/
dea31012005-04-17 16:05:31 -050010507int
James Smart2e0fef82007-06-17 19:56:36 -050010508lpfc_sli_issue_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq,
dea31012005-04-17 16:05:31 -050010509 uint32_t timeout)
10510{
Peter Zijlstra7259f0d2006-10-29 22:46:36 -080010511 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
James Smartb230b8a2013-05-31 17:05:27 -040010512 MAILBOX_t *mb = NULL;
dea31012005-04-17 16:05:31 -050010513 int retval;
James Smart858c9f62007-06-17 19:56:39 -050010514 unsigned long flag;
dea31012005-04-17 16:05:31 -050010515
James Smartb230b8a2013-05-31 17:05:27 -040010516 /* The caller might set context1 for extended buffer */
James Smart98c9ea52007-10-27 13:37:33 -040010517 if (pmboxq->context1)
James Smartb230b8a2013-05-31 17:05:27 -040010518 mb = (MAILBOX_t *)pmboxq->context1;
dea31012005-04-17 16:05:31 -050010519
James Smart495a7142008-06-14 22:52:59 -040010520 pmboxq->mbox_flag &= ~LPFC_MBX_WAKE;
dea31012005-04-17 16:05:31 -050010521 /* setup wake call as IOCB callback */
10522 pmboxq->mbox_cmpl = lpfc_sli_wake_mbox_wait;
10523 /* setup context field to pass wait_queue pointer to wake function */
10524 pmboxq->context1 = &done_q;
10525
dea31012005-04-17 16:05:31 -050010526 /* now issue the command */
10527 retval = lpfc_sli_issue_mbox(phba, pmboxq, MBX_NOWAIT);
dea31012005-04-17 16:05:31 -050010528 if (retval == MBX_BUSY || retval == MBX_SUCCESS) {
James Smart7054a602007-04-25 09:52:34 -040010529 wait_event_interruptible_timeout(done_q,
10530 pmboxq->mbox_flag & LPFC_MBX_WAKE,
James Smart256ec0d2013-04-17 20:14:58 -040010531 msecs_to_jiffies(timeout * 1000));
James Smart7054a602007-04-25 09:52:34 -040010532
James Smart858c9f62007-06-17 19:56:39 -050010533 spin_lock_irqsave(&phba->hbalock, flag);
James Smartb230b8a2013-05-31 17:05:27 -040010534 /* restore the possible extended buffer for free resource */
10535 pmboxq->context1 = (uint8_t *)mb;
James Smart7054a602007-04-25 09:52:34 -040010536 /*
10537 * if LPFC_MBX_WAKE flag is set the mailbox is completed
10538 * else do not free the resources.
10539 */
James Smartd7c47992010-06-08 18:31:54 -040010540 if (pmboxq->mbox_flag & LPFC_MBX_WAKE) {
dea31012005-04-17 16:05:31 -050010541 retval = MBX_SUCCESS;
James Smartd7c47992010-06-08 18:31:54 -040010542 } else {
James Smart7054a602007-04-25 09:52:34 -040010543 retval = MBX_TIMEOUT;
James Smart858c9f62007-06-17 19:56:39 -050010544 pmboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
10545 }
10546 spin_unlock_irqrestore(&phba->hbalock, flag);
James Smartb230b8a2013-05-31 17:05:27 -040010547 } else {
10548 /* restore the possible extended buffer for free resource */
10549 pmboxq->context1 = (uint8_t *)mb;
dea31012005-04-17 16:05:31 -050010550 }
10551
dea31012005-04-17 16:05:31 -050010552 return retval;
10553}
10554
James Smarte59058c2008-08-24 21:49:00 -040010555/**
James Smart3772a992009-05-22 14:50:54 -040010556 * lpfc_sli_mbox_sys_shutdown - shutdown mailbox command sub-system
James Smarte59058c2008-08-24 21:49:00 -040010557 * @phba: Pointer to HBA context.
10558 *
James Smart3772a992009-05-22 14:50:54 -040010559 * This function is called to shutdown the driver's mailbox sub-system.
10560 * It first marks the mailbox sub-system is in a block state to prevent
10561 * the asynchronous mailbox command from issued off the pending mailbox
10562 * command queue. If the mailbox command sub-system shutdown is due to
10563 * HBA error conditions such as EEH or ERATT, this routine shall invoke
10564 * the mailbox sub-system flush routine to forcefully bring down the
10565 * mailbox sub-system. Otherwise, if it is due to normal condition (such
10566 * as with offline or HBA function reset), this routine will wait for the
10567 * outstanding mailbox command to complete before invoking the mailbox
10568 * sub-system flush routine to gracefully bring down mailbox sub-system.
James Smarte59058c2008-08-24 21:49:00 -040010569 **/
James Smart3772a992009-05-22 14:50:54 -040010570void
James Smart618a5232012-06-12 13:54:36 -040010571lpfc_sli_mbox_sys_shutdown(struct lpfc_hba *phba, int mbx_action)
James Smartb4c02652006-07-06 15:50:43 -040010572{
James Smart3772a992009-05-22 14:50:54 -040010573 struct lpfc_sli *psli = &phba->sli;
James Smart3772a992009-05-22 14:50:54 -040010574 unsigned long timeout;
10575
James Smart618a5232012-06-12 13:54:36 -040010576 if (mbx_action == LPFC_MBX_NO_WAIT) {
10577 /* delay 100ms for port state */
10578 msleep(100);
10579 lpfc_sli_mbox_sys_flush(phba);
10580 return;
10581 }
James Smarta183a152011-10-10 21:32:43 -040010582 timeout = msecs_to_jiffies(LPFC_MBOX_TMO * 1000) + jiffies;
James Smartd7069f02012-03-01 22:36:29 -050010583
James Smart3772a992009-05-22 14:50:54 -040010584 spin_lock_irq(&phba->hbalock);
10585 psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
James Smart3772a992009-05-22 14:50:54 -040010586
10587 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
James Smart3772a992009-05-22 14:50:54 -040010588 /* Determine how long we might wait for the active mailbox
10589 * command to be gracefully completed by firmware.
10590 */
James Smarta183a152011-10-10 21:32:43 -040010591 if (phba->sli.mbox_active)
10592 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
10593 phba->sli.mbox_active) *
10594 1000) + jiffies;
10595 spin_unlock_irq(&phba->hbalock);
10596
James Smart3772a992009-05-22 14:50:54 -040010597 while (phba->sli.mbox_active) {
10598 /* Check active mailbox complete status every 2ms */
10599 msleep(2);
10600 if (time_after(jiffies, timeout))
10601 /* Timeout, let the mailbox flush routine to
10602 * forcefully release active mailbox command
10603 */
10604 break;
10605 }
James Smartd7069f02012-03-01 22:36:29 -050010606 } else
10607 spin_unlock_irq(&phba->hbalock);
10608
James Smart3772a992009-05-22 14:50:54 -040010609 lpfc_sli_mbox_sys_flush(phba);
10610}
10611
10612/**
10613 * lpfc_sli_eratt_read - read sli-3 error attention events
10614 * @phba: Pointer to HBA context.
10615 *
10616 * This function is called to read the SLI3 device error attention registers
10617 * for possible error attention events. The caller must hold the hostlock
10618 * with spin_lock_irq().
10619 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030010620 * This function returns 1 when there is Error Attention in the Host Attention
James Smart3772a992009-05-22 14:50:54 -040010621 * Register and returns 0 otherwise.
10622 **/
10623static int
10624lpfc_sli_eratt_read(struct lpfc_hba *phba)
10625{
James Smarted957682007-06-17 19:56:37 -050010626 uint32_t ha_copy;
James Smartb4c02652006-07-06 15:50:43 -040010627
James Smart3772a992009-05-22 14:50:54 -040010628 /* Read chip Host Attention (HA) register */
James Smart9940b972011-03-11 16:06:12 -050010629 if (lpfc_readl(phba->HAregaddr, &ha_copy))
10630 goto unplug_err;
10631
James Smart3772a992009-05-22 14:50:54 -040010632 if (ha_copy & HA_ERATT) {
10633 /* Read host status register to retrieve error event */
James Smart9940b972011-03-11 16:06:12 -050010634 if (lpfc_sli_read_hs(phba))
10635 goto unplug_err;
James Smartb4c02652006-07-06 15:50:43 -040010636
James Smart3772a992009-05-22 14:50:54 -040010637 /* Check if there is a deferred error condition is active */
10638 if ((HS_FFER1 & phba->work_hs) &&
10639 ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
James Smartdcf2a4e2010-09-29 11:18:53 -040010640 HS_FFER6 | HS_FFER7 | HS_FFER8) & phba->work_hs)) {
James Smart3772a992009-05-22 14:50:54 -040010641 phba->hba_flag |= DEFER_ERATT;
James Smart3772a992009-05-22 14:50:54 -040010642 /* Clear all interrupt enable conditions */
10643 writel(0, phba->HCregaddr);
10644 readl(phba->HCregaddr);
10645 }
10646
10647 /* Set the driver HA work bitmap */
James Smart3772a992009-05-22 14:50:54 -040010648 phba->work_ha |= HA_ERATT;
10649 /* Indicate polling handles this ERATT */
10650 phba->hba_flag |= HBA_ERATT_HANDLED;
James Smart3772a992009-05-22 14:50:54 -040010651 return 1;
James Smartb4c02652006-07-06 15:50:43 -040010652 }
James Smart3772a992009-05-22 14:50:54 -040010653 return 0;
James Smart9940b972011-03-11 16:06:12 -050010654
10655unplug_err:
10656 /* Set the driver HS work bitmap */
10657 phba->work_hs |= UNPLUG_ERR;
10658 /* Set the driver HA work bitmap */
10659 phba->work_ha |= HA_ERATT;
10660 /* Indicate polling handles this ERATT */
10661 phba->hba_flag |= HBA_ERATT_HANDLED;
10662 return 1;
James Smartb4c02652006-07-06 15:50:43 -040010663}
10664
James Smarte59058c2008-08-24 21:49:00 -040010665/**
James Smartda0436e2009-05-22 14:51:39 -040010666 * lpfc_sli4_eratt_read - read sli-4 error attention events
10667 * @phba: Pointer to HBA context.
10668 *
10669 * This function is called to read the SLI4 device error attention registers
10670 * for possible error attention events. The caller must hold the hostlock
10671 * with spin_lock_irq().
10672 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030010673 * This function returns 1 when there is Error Attention in the Host Attention
James Smartda0436e2009-05-22 14:51:39 -040010674 * Register and returns 0 otherwise.
10675 **/
10676static int
10677lpfc_sli4_eratt_read(struct lpfc_hba *phba)
10678{
10679 uint32_t uerr_sta_hi, uerr_sta_lo;
James Smart2fcee4b2010-12-15 17:57:46 -050010680 uint32_t if_type, portsmphr;
10681 struct lpfc_register portstat_reg;
James Smartda0436e2009-05-22 14:51:39 -040010682
James Smart2fcee4b2010-12-15 17:57:46 -050010683 /*
10684 * For now, use the SLI4 device internal unrecoverable error
James Smartda0436e2009-05-22 14:51:39 -040010685 * registers for error attention. This can be changed later.
10686 */
James Smart2fcee4b2010-12-15 17:57:46 -050010687 if_type = bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf);
10688 switch (if_type) {
10689 case LPFC_SLI_INTF_IF_TYPE_0:
James Smart9940b972011-03-11 16:06:12 -050010690 if (lpfc_readl(phba->sli4_hba.u.if_type0.UERRLOregaddr,
10691 &uerr_sta_lo) ||
10692 lpfc_readl(phba->sli4_hba.u.if_type0.UERRHIregaddr,
10693 &uerr_sta_hi)) {
10694 phba->work_hs |= UNPLUG_ERR;
10695 phba->work_ha |= HA_ERATT;
10696 phba->hba_flag |= HBA_ERATT_HANDLED;
10697 return 1;
10698 }
James Smart2fcee4b2010-12-15 17:57:46 -050010699 if ((~phba->sli4_hba.ue_mask_lo & uerr_sta_lo) ||
10700 (~phba->sli4_hba.ue_mask_hi & uerr_sta_hi)) {
10701 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10702 "1423 HBA Unrecoverable error: "
10703 "uerr_lo_reg=0x%x, uerr_hi_reg=0x%x, "
10704 "ue_mask_lo_reg=0x%x, "
10705 "ue_mask_hi_reg=0x%x\n",
10706 uerr_sta_lo, uerr_sta_hi,
10707 phba->sli4_hba.ue_mask_lo,
10708 phba->sli4_hba.ue_mask_hi);
10709 phba->work_status[0] = uerr_sta_lo;
10710 phba->work_status[1] = uerr_sta_hi;
10711 phba->work_ha |= HA_ERATT;
10712 phba->hba_flag |= HBA_ERATT_HANDLED;
10713 return 1;
10714 }
10715 break;
10716 case LPFC_SLI_INTF_IF_TYPE_2:
James Smart9940b972011-03-11 16:06:12 -050010717 if (lpfc_readl(phba->sli4_hba.u.if_type2.STATUSregaddr,
10718 &portstat_reg.word0) ||
10719 lpfc_readl(phba->sli4_hba.PSMPHRregaddr,
10720 &portsmphr)){
10721 phba->work_hs |= UNPLUG_ERR;
10722 phba->work_ha |= HA_ERATT;
10723 phba->hba_flag |= HBA_ERATT_HANDLED;
10724 return 1;
10725 }
James Smart2fcee4b2010-12-15 17:57:46 -050010726 if (bf_get(lpfc_sliport_status_err, &portstat_reg)) {
10727 phba->work_status[0] =
10728 readl(phba->sli4_hba.u.if_type2.ERR1regaddr);
10729 phba->work_status[1] =
10730 readl(phba->sli4_hba.u.if_type2.ERR2regaddr);
10731 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart2e90f4b2011-12-13 13:22:37 -050010732 "2885 Port Status Event: "
James Smart2fcee4b2010-12-15 17:57:46 -050010733 "port status reg 0x%x, "
10734 "port smphr reg 0x%x, "
10735 "error 1=0x%x, error 2=0x%x\n",
10736 portstat_reg.word0,
10737 portsmphr,
10738 phba->work_status[0],
10739 phba->work_status[1]);
10740 phba->work_ha |= HA_ERATT;
10741 phba->hba_flag |= HBA_ERATT_HANDLED;
10742 return 1;
10743 }
10744 break;
10745 case LPFC_SLI_INTF_IF_TYPE_1:
10746 default:
James Smarta747c9c2009-11-18 15:41:10 -050010747 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart2fcee4b2010-12-15 17:57:46 -050010748 "2886 HBA Error Attention on unsupported "
10749 "if type %d.", if_type);
James Smarta747c9c2009-11-18 15:41:10 -050010750 return 1;
James Smartda0436e2009-05-22 14:51:39 -040010751 }
James Smart2fcee4b2010-12-15 17:57:46 -050010752
James Smartda0436e2009-05-22 14:51:39 -040010753 return 0;
10754}
10755
10756/**
James Smart3621a712009-04-06 18:47:14 -040010757 * lpfc_sli_check_eratt - check error attention events
James Smart93996272008-08-24 21:50:30 -040010758 * @phba: Pointer to HBA context.
10759 *
James Smart3772a992009-05-22 14:50:54 -040010760 * This function is called from timer soft interrupt context to check HBA's
James Smart93996272008-08-24 21:50:30 -040010761 * error attention register bit for error attention events.
10762 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030010763 * This function returns 1 when there is Error Attention in the Host Attention
James Smart93996272008-08-24 21:50:30 -040010764 * Register and returns 0 otherwise.
10765 **/
10766int
10767lpfc_sli_check_eratt(struct lpfc_hba *phba)
10768{
10769 uint32_t ha_copy;
10770
10771 /* If somebody is waiting to handle an eratt, don't process it
10772 * here. The brdkill function will do this.
10773 */
10774 if (phba->link_flag & LS_IGNORE_ERATT)
10775 return 0;
10776
10777 /* Check if interrupt handler handles this ERATT */
10778 spin_lock_irq(&phba->hbalock);
10779 if (phba->hba_flag & HBA_ERATT_HANDLED) {
10780 /* Interrupt handler has handled ERATT */
10781 spin_unlock_irq(&phba->hbalock);
10782 return 0;
10783 }
10784
James Smarta257bf92009-04-06 18:48:10 -040010785 /*
10786 * If there is deferred error attention, do not check for error
10787 * attention
10788 */
10789 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
10790 spin_unlock_irq(&phba->hbalock);
10791 return 0;
10792 }
10793
James Smart3772a992009-05-22 14:50:54 -040010794 /* If PCI channel is offline, don't process it */
10795 if (unlikely(pci_channel_offline(phba->pcidev))) {
James Smart93996272008-08-24 21:50:30 -040010796 spin_unlock_irq(&phba->hbalock);
James Smart3772a992009-05-22 14:50:54 -040010797 return 0;
10798 }
10799
10800 switch (phba->sli_rev) {
10801 case LPFC_SLI_REV2:
10802 case LPFC_SLI_REV3:
10803 /* Read chip Host Attention (HA) register */
10804 ha_copy = lpfc_sli_eratt_read(phba);
10805 break;
James Smartda0436e2009-05-22 14:51:39 -040010806 case LPFC_SLI_REV4:
James Smart2fcee4b2010-12-15 17:57:46 -050010807 /* Read device Uncoverable Error (UERR) registers */
James Smartda0436e2009-05-22 14:51:39 -040010808 ha_copy = lpfc_sli4_eratt_read(phba);
10809 break;
James Smart3772a992009-05-22 14:50:54 -040010810 default:
10811 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10812 "0299 Invalid SLI revision (%d)\n",
10813 phba->sli_rev);
10814 ha_copy = 0;
10815 break;
James Smart93996272008-08-24 21:50:30 -040010816 }
10817 spin_unlock_irq(&phba->hbalock);
James Smart3772a992009-05-22 14:50:54 -040010818
10819 return ha_copy;
10820}
10821
10822/**
10823 * lpfc_intr_state_check - Check device state for interrupt handling
10824 * @phba: Pointer to HBA context.
10825 *
10826 * This inline routine checks whether a device or its PCI slot is in a state
10827 * that the interrupt should be handled.
10828 *
10829 * This function returns 0 if the device or the PCI slot is in a state that
10830 * interrupt should be handled, otherwise -EIO.
10831 */
10832static inline int
10833lpfc_intr_state_check(struct lpfc_hba *phba)
10834{
10835 /* If the pci channel is offline, ignore all the interrupts */
10836 if (unlikely(pci_channel_offline(phba->pcidev)))
10837 return -EIO;
10838
10839 /* Update device level interrupt statistics */
10840 phba->sli.slistat.sli_intr++;
10841
10842 /* Ignore all interrupts during initialization. */
10843 if (unlikely(phba->link_state < LPFC_LINK_DOWN))
10844 return -EIO;
10845
James Smart93996272008-08-24 21:50:30 -040010846 return 0;
10847}
10848
10849/**
James Smart3772a992009-05-22 14:50:54 -040010850 * lpfc_sli_sp_intr_handler - Slow-path interrupt handler to SLI-3 device
James Smarte59058c2008-08-24 21:49:00 -040010851 * @irq: Interrupt number.
10852 * @dev_id: The device context pointer.
10853 *
James Smart93996272008-08-24 21:50:30 -040010854 * This function is directly called from the PCI layer as an interrupt
James Smart3772a992009-05-22 14:50:54 -040010855 * service routine when device with SLI-3 interface spec is enabled with
10856 * MSI-X multi-message interrupt mode and there are slow-path events in
10857 * the HBA. However, when the device is enabled with either MSI or Pin-IRQ
10858 * interrupt mode, this function is called as part of the device-level
10859 * interrupt handler. When the PCI slot is in error recovery or the HBA
10860 * is undergoing initialization, the interrupt handler will not process
10861 * the interrupt. The link attention and ELS ring attention events are
10862 * handled by the worker thread. The interrupt handler signals the worker
10863 * thread and returns for these events. This function is called without
10864 * any lock held. It gets the hbalock to access and update SLI data
James Smart93996272008-08-24 21:50:30 -040010865 * structures.
10866 *
10867 * This function returns IRQ_HANDLED when interrupt is handled else it
10868 * returns IRQ_NONE.
James Smarte59058c2008-08-24 21:49:00 -040010869 **/
dea31012005-04-17 16:05:31 -050010870irqreturn_t
James Smart3772a992009-05-22 14:50:54 -040010871lpfc_sli_sp_intr_handler(int irq, void *dev_id)
dea31012005-04-17 16:05:31 -050010872{
James Smart2e0fef82007-06-17 19:56:36 -050010873 struct lpfc_hba *phba;
James Smarta747c9c2009-11-18 15:41:10 -050010874 uint32_t ha_copy, hc_copy;
dea31012005-04-17 16:05:31 -050010875 uint32_t work_ha_copy;
10876 unsigned long status;
James Smart5b75da22008-12-04 22:39:35 -050010877 unsigned long iflag;
dea31012005-04-17 16:05:31 -050010878 uint32_t control;
10879
James Smart92d7f7b2007-06-17 19:56:38 -050010880 MAILBOX_t *mbox, *pmbox;
James Smart858c9f62007-06-17 19:56:39 -050010881 struct lpfc_vport *vport;
10882 struct lpfc_nodelist *ndlp;
10883 struct lpfc_dmabuf *mp;
James Smart92d7f7b2007-06-17 19:56:38 -050010884 LPFC_MBOXQ_t *pmb;
10885 int rc;
10886
dea31012005-04-17 16:05:31 -050010887 /*
10888 * Get the driver's phba structure from the dev_id and
10889 * assume the HBA is not interrupting.
10890 */
James Smart93996272008-08-24 21:50:30 -040010891 phba = (struct lpfc_hba *)dev_id;
dea31012005-04-17 16:05:31 -050010892
10893 if (unlikely(!phba))
10894 return IRQ_NONE;
10895
dea31012005-04-17 16:05:31 -050010896 /*
James Smart93996272008-08-24 21:50:30 -040010897 * Stuff needs to be attented to when this function is invoked as an
10898 * individual interrupt handler in MSI-X multi-message interrupt mode
dea31012005-04-17 16:05:31 -050010899 */
James Smart93996272008-08-24 21:50:30 -040010900 if (phba->intr_type == MSIX) {
James Smart3772a992009-05-22 14:50:54 -040010901 /* Check device state for handling interrupt */
10902 if (lpfc_intr_state_check(phba))
James Smart93996272008-08-24 21:50:30 -040010903 return IRQ_NONE;
10904 /* Need to read HA REG for slow-path events */
James Smart5b75da22008-12-04 22:39:35 -050010905 spin_lock_irqsave(&phba->hbalock, iflag);
James Smart9940b972011-03-11 16:06:12 -050010906 if (lpfc_readl(phba->HAregaddr, &ha_copy))
10907 goto unplug_error;
James Smart93996272008-08-24 21:50:30 -040010908 /* If somebody is waiting to handle an eratt don't process it
10909 * here. The brdkill function will do this.
10910 */
10911 if (phba->link_flag & LS_IGNORE_ERATT)
10912 ha_copy &= ~HA_ERATT;
10913 /* Check the need for handling ERATT in interrupt handler */
10914 if (ha_copy & HA_ERATT) {
10915 if (phba->hba_flag & HBA_ERATT_HANDLED)
10916 /* ERATT polling has handled ERATT */
10917 ha_copy &= ~HA_ERATT;
10918 else
10919 /* Indicate interrupt handler handles ERATT */
10920 phba->hba_flag |= HBA_ERATT_HANDLED;
10921 }
James Smarta257bf92009-04-06 18:48:10 -040010922
10923 /*
10924 * If there is deferred error attention, do not check for any
10925 * interrupt.
10926 */
10927 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
James Smart3772a992009-05-22 14:50:54 -040010928 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smarta257bf92009-04-06 18:48:10 -040010929 return IRQ_NONE;
10930 }
10931
James Smart93996272008-08-24 21:50:30 -040010932 /* Clear up only attention source related to slow-path */
James Smart9940b972011-03-11 16:06:12 -050010933 if (lpfc_readl(phba->HCregaddr, &hc_copy))
10934 goto unplug_error;
10935
James Smarta747c9c2009-11-18 15:41:10 -050010936 writel(hc_copy & ~(HC_MBINT_ENA | HC_R2INT_ENA |
10937 HC_LAINT_ENA | HC_ERINT_ENA),
10938 phba->HCregaddr);
James Smart93996272008-08-24 21:50:30 -040010939 writel((ha_copy & (HA_MBATT | HA_R2_CLR_MSK)),
10940 phba->HAregaddr);
James Smarta747c9c2009-11-18 15:41:10 -050010941 writel(hc_copy, phba->HCregaddr);
James Smart93996272008-08-24 21:50:30 -040010942 readl(phba->HAregaddr); /* flush */
James Smart5b75da22008-12-04 22:39:35 -050010943 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart93996272008-08-24 21:50:30 -040010944 } else
10945 ha_copy = phba->ha_copy;
dea31012005-04-17 16:05:31 -050010946
dea31012005-04-17 16:05:31 -050010947 work_ha_copy = ha_copy & phba->work_ha_mask;
10948
James Smart93996272008-08-24 21:50:30 -040010949 if (work_ha_copy) {
dea31012005-04-17 16:05:31 -050010950 if (work_ha_copy & HA_LATT) {
10951 if (phba->sli.sli_flag & LPFC_PROCESS_LA) {
10952 /*
10953 * Turn off Link Attention interrupts
10954 * until CLEAR_LA done
10955 */
James Smart5b75da22008-12-04 22:39:35 -050010956 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -050010957 phba->sli.sli_flag &= ~LPFC_PROCESS_LA;
James Smart9940b972011-03-11 16:06:12 -050010958 if (lpfc_readl(phba->HCregaddr, &control))
10959 goto unplug_error;
dea31012005-04-17 16:05:31 -050010960 control &= ~HC_LAINT_ENA;
10961 writel(control, phba->HCregaddr);
10962 readl(phba->HCregaddr); /* flush */
James Smart5b75da22008-12-04 22:39:35 -050010963 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -050010964 }
10965 else
10966 work_ha_copy &= ~HA_LATT;
10967 }
10968
James Smart93996272008-08-24 21:50:30 -040010969 if (work_ha_copy & ~(HA_ERATT | HA_MBATT | HA_LATT)) {
James Smart858c9f62007-06-17 19:56:39 -050010970 /*
10971 * Turn off Slow Rings interrupts, LPFC_ELS_RING is
10972 * the only slow ring.
10973 */
10974 status = (work_ha_copy &
10975 (HA_RXMASK << (4*LPFC_ELS_RING)));
10976 status >>= (4*LPFC_ELS_RING);
10977 if (status & HA_RXMASK) {
James Smart5b75da22008-12-04 22:39:35 -050010978 spin_lock_irqsave(&phba->hbalock, iflag);
James Smart9940b972011-03-11 16:06:12 -050010979 if (lpfc_readl(phba->HCregaddr, &control))
10980 goto unplug_error;
James Smarta58cbd52007-08-02 11:09:43 -040010981
10982 lpfc_debugfs_slow_ring_trc(phba,
10983 "ISR slow ring: ctl:x%x stat:x%x isrcnt:x%x",
10984 control, status,
10985 (uint32_t)phba->sli.slistat.sli_intr);
10986
James Smart858c9f62007-06-17 19:56:39 -050010987 if (control & (HC_R0INT_ENA << LPFC_ELS_RING)) {
James Smarta58cbd52007-08-02 11:09:43 -040010988 lpfc_debugfs_slow_ring_trc(phba,
10989 "ISR Disable ring:"
10990 "pwork:x%x hawork:x%x wait:x%x",
10991 phba->work_ha, work_ha_copy,
10992 (uint32_t)((unsigned long)
James Smart5e9d9b82008-06-14 22:52:53 -040010993 &phba->work_waitq));
James Smarta58cbd52007-08-02 11:09:43 -040010994
James Smart858c9f62007-06-17 19:56:39 -050010995 control &=
10996 ~(HC_R0INT_ENA << LPFC_ELS_RING);
dea31012005-04-17 16:05:31 -050010997 writel(control, phba->HCregaddr);
10998 readl(phba->HCregaddr); /* flush */
dea31012005-04-17 16:05:31 -050010999 }
James Smarta58cbd52007-08-02 11:09:43 -040011000 else {
11001 lpfc_debugfs_slow_ring_trc(phba,
11002 "ISR slow ring: pwork:"
11003 "x%x hawork:x%x wait:x%x",
11004 phba->work_ha, work_ha_copy,
11005 (uint32_t)((unsigned long)
James Smart5e9d9b82008-06-14 22:52:53 -040011006 &phba->work_waitq));
James Smarta58cbd52007-08-02 11:09:43 -040011007 }
James Smart5b75da22008-12-04 22:39:35 -050011008 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -050011009 }
11010 }
James Smart5b75da22008-12-04 22:39:35 -050011011 spin_lock_irqsave(&phba->hbalock, iflag);
James Smarta257bf92009-04-06 18:48:10 -040011012 if (work_ha_copy & HA_ERATT) {
James Smart9940b972011-03-11 16:06:12 -050011013 if (lpfc_sli_read_hs(phba))
11014 goto unplug_error;
James Smarta257bf92009-04-06 18:48:10 -040011015 /*
11016 * Check if there is a deferred error condition
11017 * is active
11018 */
11019 if ((HS_FFER1 & phba->work_hs) &&
11020 ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
James Smartdcf2a4e2010-09-29 11:18:53 -040011021 HS_FFER6 | HS_FFER7 | HS_FFER8) &
11022 phba->work_hs)) {
James Smarta257bf92009-04-06 18:48:10 -040011023 phba->hba_flag |= DEFER_ERATT;
11024 /* Clear all interrupt enable conditions */
11025 writel(0, phba->HCregaddr);
11026 readl(phba->HCregaddr);
11027 }
11028 }
11029
James Smart93996272008-08-24 21:50:30 -040011030 if ((work_ha_copy & HA_MBATT) && (phba->sli.mbox_active)) {
James Smart92d7f7b2007-06-17 19:56:38 -050011031 pmb = phba->sli.mbox_active;
James Smart04c68492009-05-22 14:52:52 -040011032 pmbox = &pmb->u.mb;
James Smart34b02dc2008-08-24 21:49:55 -040011033 mbox = phba->mbox;
James Smart858c9f62007-06-17 19:56:39 -050011034 vport = pmb->vport;
James Smart92d7f7b2007-06-17 19:56:38 -050011035
11036 /* First check out the status word */
11037 lpfc_sli_pcimem_bcopy(mbox, pmbox, sizeof(uint32_t));
11038 if (pmbox->mbxOwner != OWN_HOST) {
James Smart5b75da22008-12-04 22:39:35 -050011039 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart92d7f7b2007-06-17 19:56:38 -050011040 /*
11041 * Stray Mailbox Interrupt, mbxCommand <cmd>
11042 * mbxStatus <status>
11043 */
James Smart09372822008-01-11 01:52:54 -050011044 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
James Smart92d7f7b2007-06-17 19:56:38 -050011045 LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -040011046 "(%d):0304 Stray Mailbox "
James Smart92d7f7b2007-06-17 19:56:38 -050011047 "Interrupt mbxCommand x%x "
11048 "mbxStatus x%x\n",
James Smarte8b62012007-08-02 11:10:09 -040011049 (vport ? vport->vpi : 0),
James Smart92d7f7b2007-06-17 19:56:38 -050011050 pmbox->mbxCommand,
11051 pmbox->mbxStatus);
James Smart09372822008-01-11 01:52:54 -050011052 /* clear mailbox attention bit */
11053 work_ha_copy &= ~HA_MBATT;
11054 } else {
James Smart97eab632008-04-07 10:16:05 -040011055 phba->sli.mbox_active = NULL;
James Smart5b75da22008-12-04 22:39:35 -050011056 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart09372822008-01-11 01:52:54 -050011057 phba->last_completion_time = jiffies;
11058 del_timer(&phba->sli.mbox_tmo);
James Smart09372822008-01-11 01:52:54 -050011059 if (pmb->mbox_cmpl) {
11060 lpfc_sli_pcimem_bcopy(mbox, pmbox,
11061 MAILBOX_CMD_SIZE);
James Smart7a470272010-03-15 11:25:20 -040011062 if (pmb->out_ext_byte_len &&
11063 pmb->context2)
11064 lpfc_sli_pcimem_bcopy(
11065 phba->mbox_ext,
11066 pmb->context2,
11067 pmb->out_ext_byte_len);
James Smart858c9f62007-06-17 19:56:39 -050011068 }
James Smart09372822008-01-11 01:52:54 -050011069 if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
11070 pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
11071
11072 lpfc_debugfs_disc_trc(vport,
11073 LPFC_DISC_TRC_MBOX_VPORT,
11074 "MBOX dflt rpi: : "
11075 "status:x%x rpi:x%x",
11076 (uint32_t)pmbox->mbxStatus,
11077 pmbox->un.varWords[0], 0);
11078
11079 if (!pmbox->mbxStatus) {
11080 mp = (struct lpfc_dmabuf *)
11081 (pmb->context1);
11082 ndlp = (struct lpfc_nodelist *)
11083 pmb->context2;
11084
11085 /* Reg_LOGIN of dflt RPI was
11086 * successful. new lets get
11087 * rid of the RPI using the
11088 * same mbox buffer.
11089 */
11090 lpfc_unreg_login(phba,
11091 vport->vpi,
11092 pmbox->un.varWords[0],
11093 pmb);
11094 pmb->mbox_cmpl =
11095 lpfc_mbx_cmpl_dflt_rpi;
11096 pmb->context1 = mp;
11097 pmb->context2 = ndlp;
11098 pmb->vport = vport;
James Smart58da1ff2008-04-07 10:15:56 -040011099 rc = lpfc_sli_issue_mbox(phba,
11100 pmb,
11101 MBX_NOWAIT);
11102 if (rc != MBX_BUSY)
11103 lpfc_printf_log(phba,
11104 KERN_ERR,
11105 LOG_MBOX | LOG_SLI,
James Smartd7c255b2008-08-24 21:50:00 -040011106 "0350 rc should have"
James Smart6a9c52c2009-10-02 15:16:51 -040011107 "been MBX_BUSY\n");
James Smart3772a992009-05-22 14:50:54 -040011108 if (rc != MBX_NOT_FINISHED)
11109 goto send_current_mbox;
James Smart09372822008-01-11 01:52:54 -050011110 }
11111 }
James Smart5b75da22008-12-04 22:39:35 -050011112 spin_lock_irqsave(
11113 &phba->pport->work_port_lock,
11114 iflag);
James Smart09372822008-01-11 01:52:54 -050011115 phba->pport->work_port_events &=
11116 ~WORKER_MBOX_TMO;
James Smart5b75da22008-12-04 22:39:35 -050011117 spin_unlock_irqrestore(
11118 &phba->pport->work_port_lock,
11119 iflag);
James Smart09372822008-01-11 01:52:54 -050011120 lpfc_mbox_cmpl_put(phba, pmb);
James Smart858c9f62007-06-17 19:56:39 -050011121 }
James Smart97eab632008-04-07 10:16:05 -040011122 } else
James Smart5b75da22008-12-04 22:39:35 -050011123 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart93996272008-08-24 21:50:30 -040011124
James Smart92d7f7b2007-06-17 19:56:38 -050011125 if ((work_ha_copy & HA_MBATT) &&
11126 (phba->sli.mbox_active == NULL)) {
James Smart858c9f62007-06-17 19:56:39 -050011127send_current_mbox:
James Smart92d7f7b2007-06-17 19:56:38 -050011128 /* Process next mailbox command if there is one */
James Smart58da1ff2008-04-07 10:15:56 -040011129 do {
11130 rc = lpfc_sli_issue_mbox(phba, NULL,
11131 MBX_NOWAIT);
11132 } while (rc == MBX_NOT_FINISHED);
11133 if (rc != MBX_SUCCESS)
11134 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
11135 LOG_SLI, "0349 rc should be "
James Smart6a9c52c2009-10-02 15:16:51 -040011136 "MBX_SUCCESS\n");
James Smart92d7f7b2007-06-17 19:56:38 -050011137 }
11138
James Smart5b75da22008-12-04 22:39:35 -050011139 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -050011140 phba->work_ha |= work_ha_copy;
James Smart5b75da22008-12-04 22:39:35 -050011141 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart5e9d9b82008-06-14 22:52:53 -040011142 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -050011143 }
James Smart93996272008-08-24 21:50:30 -040011144 return IRQ_HANDLED;
James Smart9940b972011-03-11 16:06:12 -050011145unplug_error:
11146 spin_unlock_irqrestore(&phba->hbalock, iflag);
11147 return IRQ_HANDLED;
dea31012005-04-17 16:05:31 -050011148
James Smart3772a992009-05-22 14:50:54 -040011149} /* lpfc_sli_sp_intr_handler */
James Smart93996272008-08-24 21:50:30 -040011150
11151/**
James Smart3772a992009-05-22 14:50:54 -040011152 * lpfc_sli_fp_intr_handler - Fast-path interrupt handler to SLI-3 device.
James Smart93996272008-08-24 21:50:30 -040011153 * @irq: Interrupt number.
11154 * @dev_id: The device context pointer.
11155 *
11156 * This function is directly called from the PCI layer as an interrupt
James Smart3772a992009-05-22 14:50:54 -040011157 * service routine when device with SLI-3 interface spec is enabled with
11158 * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
11159 * ring event in the HBA. However, when the device is enabled with either
11160 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
11161 * device-level interrupt handler. When the PCI slot is in error recovery
11162 * or the HBA is undergoing initialization, the interrupt handler will not
11163 * process the interrupt. The SCSI FCP fast-path ring event are handled in
11164 * the intrrupt context. This function is called without any lock held.
11165 * It gets the hbalock to access and update SLI data structures.
James Smart93996272008-08-24 21:50:30 -040011166 *
11167 * This function returns IRQ_HANDLED when interrupt is handled else it
11168 * returns IRQ_NONE.
11169 **/
11170irqreturn_t
James Smart3772a992009-05-22 14:50:54 -040011171lpfc_sli_fp_intr_handler(int irq, void *dev_id)
James Smart93996272008-08-24 21:50:30 -040011172{
11173 struct lpfc_hba *phba;
11174 uint32_t ha_copy;
11175 unsigned long status;
James Smart5b75da22008-12-04 22:39:35 -050011176 unsigned long iflag;
James Smart93996272008-08-24 21:50:30 -040011177
11178 /* Get the driver's phba structure from the dev_id and
11179 * assume the HBA is not interrupting.
11180 */
11181 phba = (struct lpfc_hba *) dev_id;
11182
11183 if (unlikely(!phba))
11184 return IRQ_NONE;
dea31012005-04-17 16:05:31 -050011185
11186 /*
James Smart93996272008-08-24 21:50:30 -040011187 * Stuff needs to be attented to when this function is invoked as an
11188 * individual interrupt handler in MSI-X multi-message interrupt mode
dea31012005-04-17 16:05:31 -050011189 */
James Smart93996272008-08-24 21:50:30 -040011190 if (phba->intr_type == MSIX) {
James Smart3772a992009-05-22 14:50:54 -040011191 /* Check device state for handling interrupt */
11192 if (lpfc_intr_state_check(phba))
James Smart93996272008-08-24 21:50:30 -040011193 return IRQ_NONE;
11194 /* Need to read HA REG for FCP ring and other ring events */
James Smart9940b972011-03-11 16:06:12 -050011195 if (lpfc_readl(phba->HAregaddr, &ha_copy))
11196 return IRQ_HANDLED;
James Smart93996272008-08-24 21:50:30 -040011197 /* Clear up only attention source related to fast-path */
James Smart5b75da22008-12-04 22:39:35 -050011198 spin_lock_irqsave(&phba->hbalock, iflag);
James Smarta257bf92009-04-06 18:48:10 -040011199 /*
11200 * If there is deferred error attention, do not check for
11201 * any interrupt.
11202 */
11203 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
James Smart3772a992009-05-22 14:50:54 -040011204 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smarta257bf92009-04-06 18:48:10 -040011205 return IRQ_NONE;
11206 }
James Smart93996272008-08-24 21:50:30 -040011207 writel((ha_copy & (HA_R0_CLR_MSK | HA_R1_CLR_MSK)),
11208 phba->HAregaddr);
11209 readl(phba->HAregaddr); /* flush */
James Smart5b75da22008-12-04 22:39:35 -050011210 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart93996272008-08-24 21:50:30 -040011211 } else
11212 ha_copy = phba->ha_copy;
11213
11214 /*
11215 * Process all events on FCP ring. Take the optimized path for FCP IO.
11216 */
11217 ha_copy &= ~(phba->work_ha_mask);
11218
11219 status = (ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
dea31012005-04-17 16:05:31 -050011220 status >>= (4*LPFC_FCP_RING);
James Smart858c9f62007-06-17 19:56:39 -050011221 if (status & HA_RXMASK)
dea31012005-04-17 16:05:31 -050011222 lpfc_sli_handle_fast_ring_event(phba,
11223 &phba->sli.ring[LPFC_FCP_RING],
11224 status);
James Smarta4bc3372006-12-02 13:34:16 -050011225
11226 if (phba->cfg_multi_ring_support == 2) {
11227 /*
James Smart93996272008-08-24 21:50:30 -040011228 * Process all events on extra ring. Take the optimized path
11229 * for extra ring IO.
James Smarta4bc3372006-12-02 13:34:16 -050011230 */
James Smart93996272008-08-24 21:50:30 -040011231 status = (ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
James Smarta4bc3372006-12-02 13:34:16 -050011232 status >>= (4*LPFC_EXTRA_RING);
James Smart858c9f62007-06-17 19:56:39 -050011233 if (status & HA_RXMASK) {
James Smarta4bc3372006-12-02 13:34:16 -050011234 lpfc_sli_handle_fast_ring_event(phba,
11235 &phba->sli.ring[LPFC_EXTRA_RING],
11236 status);
11237 }
11238 }
dea31012005-04-17 16:05:31 -050011239 return IRQ_HANDLED;
James Smart3772a992009-05-22 14:50:54 -040011240} /* lpfc_sli_fp_intr_handler */
dea31012005-04-17 16:05:31 -050011241
James Smart93996272008-08-24 21:50:30 -040011242/**
James Smart3772a992009-05-22 14:50:54 -040011243 * lpfc_sli_intr_handler - Device-level interrupt handler to SLI-3 device
James Smart93996272008-08-24 21:50:30 -040011244 * @irq: Interrupt number.
11245 * @dev_id: The device context pointer.
11246 *
James Smart3772a992009-05-22 14:50:54 -040011247 * This function is the HBA device-level interrupt handler to device with
11248 * SLI-3 interface spec, called from the PCI layer when either MSI or
11249 * Pin-IRQ interrupt mode is enabled and there is an event in the HBA which
11250 * requires driver attention. This function invokes the slow-path interrupt
11251 * attention handling function and fast-path interrupt attention handling
11252 * function in turn to process the relevant HBA attention events. This
11253 * function is called without any lock held. It gets the hbalock to access
11254 * and update SLI data structures.
James Smart93996272008-08-24 21:50:30 -040011255 *
11256 * This function returns IRQ_HANDLED when interrupt is handled, else it
11257 * returns IRQ_NONE.
11258 **/
11259irqreturn_t
James Smart3772a992009-05-22 14:50:54 -040011260lpfc_sli_intr_handler(int irq, void *dev_id)
James Smart93996272008-08-24 21:50:30 -040011261{
11262 struct lpfc_hba *phba;
11263 irqreturn_t sp_irq_rc, fp_irq_rc;
11264 unsigned long status1, status2;
James Smarta747c9c2009-11-18 15:41:10 -050011265 uint32_t hc_copy;
James Smart93996272008-08-24 21:50:30 -040011266
11267 /*
11268 * Get the driver's phba structure from the dev_id and
11269 * assume the HBA is not interrupting.
11270 */
11271 phba = (struct lpfc_hba *) dev_id;
11272
11273 if (unlikely(!phba))
11274 return IRQ_NONE;
11275
James Smart3772a992009-05-22 14:50:54 -040011276 /* Check device state for handling interrupt */
11277 if (lpfc_intr_state_check(phba))
James Smart93996272008-08-24 21:50:30 -040011278 return IRQ_NONE;
11279
11280 spin_lock(&phba->hbalock);
James Smart9940b972011-03-11 16:06:12 -050011281 if (lpfc_readl(phba->HAregaddr, &phba->ha_copy)) {
11282 spin_unlock(&phba->hbalock);
11283 return IRQ_HANDLED;
11284 }
11285
James Smart93996272008-08-24 21:50:30 -040011286 if (unlikely(!phba->ha_copy)) {
11287 spin_unlock(&phba->hbalock);
11288 return IRQ_NONE;
11289 } else if (phba->ha_copy & HA_ERATT) {
11290 if (phba->hba_flag & HBA_ERATT_HANDLED)
11291 /* ERATT polling has handled ERATT */
11292 phba->ha_copy &= ~HA_ERATT;
11293 else
11294 /* Indicate interrupt handler handles ERATT */
11295 phba->hba_flag |= HBA_ERATT_HANDLED;
11296 }
11297
James Smarta257bf92009-04-06 18:48:10 -040011298 /*
11299 * If there is deferred error attention, do not check for any interrupt.
11300 */
11301 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
Dan Carpenterec21b3b2010-08-08 00:15:17 +020011302 spin_unlock(&phba->hbalock);
James Smarta257bf92009-04-06 18:48:10 -040011303 return IRQ_NONE;
11304 }
11305
James Smart93996272008-08-24 21:50:30 -040011306 /* Clear attention sources except link and error attentions */
James Smart9940b972011-03-11 16:06:12 -050011307 if (lpfc_readl(phba->HCregaddr, &hc_copy)) {
11308 spin_unlock(&phba->hbalock);
11309 return IRQ_HANDLED;
11310 }
James Smarta747c9c2009-11-18 15:41:10 -050011311 writel(hc_copy & ~(HC_MBINT_ENA | HC_R0INT_ENA | HC_R1INT_ENA
11312 | HC_R2INT_ENA | HC_LAINT_ENA | HC_ERINT_ENA),
11313 phba->HCregaddr);
James Smart93996272008-08-24 21:50:30 -040011314 writel((phba->ha_copy & ~(HA_LATT | HA_ERATT)), phba->HAregaddr);
James Smarta747c9c2009-11-18 15:41:10 -050011315 writel(hc_copy, phba->HCregaddr);
James Smart93996272008-08-24 21:50:30 -040011316 readl(phba->HAregaddr); /* flush */
11317 spin_unlock(&phba->hbalock);
11318
11319 /*
11320 * Invokes slow-path host attention interrupt handling as appropriate.
11321 */
11322
11323 /* status of events with mailbox and link attention */
11324 status1 = phba->ha_copy & (HA_MBATT | HA_LATT | HA_ERATT);
11325
11326 /* status of events with ELS ring */
11327 status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_ELS_RING)));
11328 status2 >>= (4*LPFC_ELS_RING);
11329
11330 if (status1 || (status2 & HA_RXMASK))
James Smart3772a992009-05-22 14:50:54 -040011331 sp_irq_rc = lpfc_sli_sp_intr_handler(irq, dev_id);
James Smart93996272008-08-24 21:50:30 -040011332 else
11333 sp_irq_rc = IRQ_NONE;
11334
11335 /*
11336 * Invoke fast-path host attention interrupt handling as appropriate.
11337 */
11338
11339 /* status of events with FCP ring */
11340 status1 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
11341 status1 >>= (4*LPFC_FCP_RING);
11342
11343 /* status of events with extra ring */
11344 if (phba->cfg_multi_ring_support == 2) {
11345 status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
11346 status2 >>= (4*LPFC_EXTRA_RING);
11347 } else
11348 status2 = 0;
11349
11350 if ((status1 & HA_RXMASK) || (status2 & HA_RXMASK))
James Smart3772a992009-05-22 14:50:54 -040011351 fp_irq_rc = lpfc_sli_fp_intr_handler(irq, dev_id);
James Smart93996272008-08-24 21:50:30 -040011352 else
11353 fp_irq_rc = IRQ_NONE;
11354
11355 /* Return device-level interrupt handling status */
11356 return (sp_irq_rc == IRQ_HANDLED) ? sp_irq_rc : fp_irq_rc;
James Smart3772a992009-05-22 14:50:54 -040011357} /* lpfc_sli_intr_handler */
James Smart4f774512009-05-22 14:52:35 -040011358
11359/**
11360 * lpfc_sli4_fcp_xri_abort_event_proc - Process fcp xri abort event
11361 * @phba: pointer to lpfc hba data structure.
11362 *
11363 * This routine is invoked by the worker thread to process all the pending
11364 * SLI4 FCP abort XRI events.
11365 **/
11366void lpfc_sli4_fcp_xri_abort_event_proc(struct lpfc_hba *phba)
11367{
11368 struct lpfc_cq_event *cq_event;
11369
11370 /* First, declare the fcp xri abort event has been handled */
11371 spin_lock_irq(&phba->hbalock);
11372 phba->hba_flag &= ~FCP_XRI_ABORT_EVENT;
11373 spin_unlock_irq(&phba->hbalock);
11374 /* Now, handle all the fcp xri abort events */
11375 while (!list_empty(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue)) {
11376 /* Get the first event from the head of the event queue */
11377 spin_lock_irq(&phba->hbalock);
11378 list_remove_head(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue,
11379 cq_event, struct lpfc_cq_event, list);
11380 spin_unlock_irq(&phba->hbalock);
11381 /* Notify aborted XRI for FCP work queue */
11382 lpfc_sli4_fcp_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
11383 /* Free the event processed back to the free pool */
11384 lpfc_sli4_cq_event_release(phba, cq_event);
11385 }
11386}
11387
11388/**
11389 * lpfc_sli4_els_xri_abort_event_proc - Process els xri abort event
11390 * @phba: pointer to lpfc hba data structure.
11391 *
11392 * This routine is invoked by the worker thread to process all the pending
11393 * SLI4 els abort xri events.
11394 **/
11395void lpfc_sli4_els_xri_abort_event_proc(struct lpfc_hba *phba)
11396{
11397 struct lpfc_cq_event *cq_event;
11398
11399 /* First, declare the els xri abort event has been handled */
11400 spin_lock_irq(&phba->hbalock);
11401 phba->hba_flag &= ~ELS_XRI_ABORT_EVENT;
11402 spin_unlock_irq(&phba->hbalock);
11403 /* Now, handle all the els xri abort events */
11404 while (!list_empty(&phba->sli4_hba.sp_els_xri_aborted_work_queue)) {
11405 /* Get the first event from the head of the event queue */
11406 spin_lock_irq(&phba->hbalock);
11407 list_remove_head(&phba->sli4_hba.sp_els_xri_aborted_work_queue,
11408 cq_event, struct lpfc_cq_event, list);
11409 spin_unlock_irq(&phba->hbalock);
11410 /* Notify aborted XRI for ELS work queue */
11411 lpfc_sli4_els_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
11412 /* Free the event processed back to the free pool */
11413 lpfc_sli4_cq_event_release(phba, cq_event);
11414 }
11415}
11416
James Smart341af102010-01-26 23:07:37 -050011417/**
11418 * lpfc_sli4_iocb_param_transfer - Transfer pIocbOut and cmpl status to pIocbIn
11419 * @phba: pointer to lpfc hba data structure
11420 * @pIocbIn: pointer to the rspiocbq
11421 * @pIocbOut: pointer to the cmdiocbq
11422 * @wcqe: pointer to the complete wcqe
11423 *
11424 * This routine transfers the fields of a command iocbq to a response iocbq
11425 * by copying all the IOCB fields from command iocbq and transferring the
11426 * completion status information from the complete wcqe.
11427 **/
James Smart4f774512009-05-22 14:52:35 -040011428static void
James Smart341af102010-01-26 23:07:37 -050011429lpfc_sli4_iocb_param_transfer(struct lpfc_hba *phba,
11430 struct lpfc_iocbq *pIocbIn,
James Smart4f774512009-05-22 14:52:35 -040011431 struct lpfc_iocbq *pIocbOut,
11432 struct lpfc_wcqe_complete *wcqe)
11433{
James Smartaf227412013-10-10 12:23:10 -040011434 int numBdes, i;
James Smart341af102010-01-26 23:07:37 -050011435 unsigned long iflags;
James Smartaf227412013-10-10 12:23:10 -040011436 uint32_t status, max_response;
11437 struct lpfc_dmabuf *dmabuf;
11438 struct ulp_bde64 *bpl, bde;
James Smart4f774512009-05-22 14:52:35 -040011439 size_t offset = offsetof(struct lpfc_iocbq, iocb);
11440
11441 memcpy((char *)pIocbIn + offset, (char *)pIocbOut + offset,
11442 sizeof(struct lpfc_iocbq) - offset);
James Smart4f774512009-05-22 14:52:35 -040011443 /* Map WCQE parameters into irspiocb parameters */
James Smartacd68592012-01-18 16:25:09 -050011444 status = bf_get(lpfc_wcqe_c_status, wcqe);
11445 pIocbIn->iocb.ulpStatus = (status & LPFC_IOCB_STATUS_MASK);
James Smart4f774512009-05-22 14:52:35 -040011446 if (pIocbOut->iocb_flag & LPFC_IO_FCP)
11447 if (pIocbIn->iocb.ulpStatus == IOSTAT_FCP_RSP_ERROR)
11448 pIocbIn->iocb.un.fcpi.fcpi_parm =
11449 pIocbOut->iocb.un.fcpi.fcpi_parm -
11450 wcqe->total_data_placed;
11451 else
11452 pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
James Smart695a8142010-01-26 23:08:03 -050011453 else {
James Smart4f774512009-05-22 14:52:35 -040011454 pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
James Smartaf227412013-10-10 12:23:10 -040011455 switch (pIocbOut->iocb.ulpCommand) {
11456 case CMD_ELS_REQUEST64_CR:
11457 dmabuf = (struct lpfc_dmabuf *)pIocbOut->context3;
11458 bpl = (struct ulp_bde64 *)dmabuf->virt;
11459 bde.tus.w = le32_to_cpu(bpl[1].tus.w);
11460 max_response = bde.tus.f.bdeSize;
11461 break;
11462 case CMD_GEN_REQUEST64_CR:
11463 max_response = 0;
11464 if (!pIocbOut->context3)
11465 break;
11466 numBdes = pIocbOut->iocb.un.genreq64.bdl.bdeSize/
11467 sizeof(struct ulp_bde64);
11468 dmabuf = (struct lpfc_dmabuf *)pIocbOut->context3;
11469 bpl = (struct ulp_bde64 *)dmabuf->virt;
11470 for (i = 0; i < numBdes; i++) {
11471 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
11472 if (bde.tus.f.bdeFlags != BUFF_TYPE_BDE_64)
11473 max_response += bde.tus.f.bdeSize;
11474 }
11475 break;
11476 default:
11477 max_response = wcqe->total_data_placed;
11478 break;
11479 }
11480 if (max_response < wcqe->total_data_placed)
11481 pIocbIn->iocb.un.genreq64.bdl.bdeSize = max_response;
11482 else
11483 pIocbIn->iocb.un.genreq64.bdl.bdeSize =
11484 wcqe->total_data_placed;
James Smart695a8142010-01-26 23:08:03 -050011485 }
James Smart341af102010-01-26 23:07:37 -050011486
James Smartacd68592012-01-18 16:25:09 -050011487 /* Convert BG errors for completion status */
11488 if (status == CQE_STATUS_DI_ERROR) {
11489 pIocbIn->iocb.ulpStatus = IOSTAT_LOCAL_REJECT;
11490
11491 if (bf_get(lpfc_wcqe_c_bg_edir, wcqe))
11492 pIocbIn->iocb.un.ulpWord[4] = IOERR_RX_DMA_FAILED;
11493 else
11494 pIocbIn->iocb.un.ulpWord[4] = IOERR_TX_DMA_FAILED;
11495
11496 pIocbIn->iocb.unsli3.sli3_bg.bgstat = 0;
11497 if (bf_get(lpfc_wcqe_c_bg_ge, wcqe)) /* Guard Check failed */
11498 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11499 BGS_GUARD_ERR_MASK;
11500 if (bf_get(lpfc_wcqe_c_bg_ae, wcqe)) /* App Tag Check failed */
11501 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11502 BGS_APPTAG_ERR_MASK;
11503 if (bf_get(lpfc_wcqe_c_bg_re, wcqe)) /* Ref Tag Check failed */
11504 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11505 BGS_REFTAG_ERR_MASK;
11506
11507 /* Check to see if there was any good data before the error */
11508 if (bf_get(lpfc_wcqe_c_bg_tdpv, wcqe)) {
11509 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11510 BGS_HI_WATER_MARK_PRESENT_MASK;
11511 pIocbIn->iocb.unsli3.sli3_bg.bghm =
11512 wcqe->total_data_placed;
11513 }
11514
11515 /*
11516 * Set ALL the error bits to indicate we don't know what
11517 * type of error it is.
11518 */
11519 if (!pIocbIn->iocb.unsli3.sli3_bg.bgstat)
11520 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11521 (BGS_REFTAG_ERR_MASK | BGS_APPTAG_ERR_MASK |
11522 BGS_GUARD_ERR_MASK);
11523 }
11524
James Smart341af102010-01-26 23:07:37 -050011525 /* Pick up HBA exchange busy condition */
11526 if (bf_get(lpfc_wcqe_c_xb, wcqe)) {
11527 spin_lock_irqsave(&phba->hbalock, iflags);
11528 pIocbIn->iocb_flag |= LPFC_EXCHANGE_BUSY;
11529 spin_unlock_irqrestore(&phba->hbalock, iflags);
11530 }
James Smart4f774512009-05-22 14:52:35 -040011531}
11532
11533/**
James Smart45ed1192009-10-02 15:17:02 -040011534 * lpfc_sli4_els_wcqe_to_rspiocbq - Get response iocbq from els wcqe
11535 * @phba: Pointer to HBA context object.
11536 * @wcqe: Pointer to work-queue completion queue entry.
11537 *
11538 * This routine handles an ELS work-queue completion event and construct
11539 * a pseudo response ELS IODBQ from the SLI4 ELS WCQE for the common
11540 * discovery engine to handle.
11541 *
11542 * Return: Pointer to the receive IOCBQ, NULL otherwise.
11543 **/
11544static struct lpfc_iocbq *
11545lpfc_sli4_els_wcqe_to_rspiocbq(struct lpfc_hba *phba,
11546 struct lpfc_iocbq *irspiocbq)
11547{
11548 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
11549 struct lpfc_iocbq *cmdiocbq;
11550 struct lpfc_wcqe_complete *wcqe;
11551 unsigned long iflags;
11552
11553 wcqe = &irspiocbq->cq_event.cqe.wcqe_cmpl;
James Smart7e56aa22012-08-03 12:35:34 -040011554 spin_lock_irqsave(&pring->ring_lock, iflags);
James Smart45ed1192009-10-02 15:17:02 -040011555 pring->stats.iocb_event++;
11556 /* Look up the ELS command IOCB and create pseudo response IOCB */
11557 cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
11558 bf_get(lpfc_wcqe_c_request_tag, wcqe));
James Smart7e56aa22012-08-03 12:35:34 -040011559 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smart45ed1192009-10-02 15:17:02 -040011560
11561 if (unlikely(!cmdiocbq)) {
11562 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11563 "0386 ELS complete with no corresponding "
11564 "cmdiocb: iotag (%d)\n",
11565 bf_get(lpfc_wcqe_c_request_tag, wcqe));
11566 lpfc_sli_release_iocbq(phba, irspiocbq);
11567 return NULL;
11568 }
11569
11570 /* Fake the irspiocbq and copy necessary response information */
James Smart341af102010-01-26 23:07:37 -050011571 lpfc_sli4_iocb_param_transfer(phba, irspiocbq, cmdiocbq, wcqe);
James Smart45ed1192009-10-02 15:17:02 -040011572
11573 return irspiocbq;
11574}
11575
11576/**
James Smart04c68492009-05-22 14:52:52 -040011577 * lpfc_sli4_sp_handle_async_event - Handle an asynchroous event
11578 * @phba: Pointer to HBA context object.
11579 * @cqe: Pointer to mailbox completion queue entry.
11580 *
11581 * This routine process a mailbox completion queue entry with asynchrous
11582 * event.
11583 *
11584 * Return: true if work posted to worker thread, otherwise false.
11585 **/
11586static bool
11587lpfc_sli4_sp_handle_async_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
11588{
11589 struct lpfc_cq_event *cq_event;
11590 unsigned long iflags;
11591
11592 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
11593 "0392 Async Event: word0:x%x, word1:x%x, "
11594 "word2:x%x, word3:x%x\n", mcqe->word0,
11595 mcqe->mcqe_tag0, mcqe->mcqe_tag1, mcqe->trailer);
11596
11597 /* Allocate a new internal CQ_EVENT entry */
11598 cq_event = lpfc_sli4_cq_event_alloc(phba);
11599 if (!cq_event) {
11600 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11601 "0394 Failed to allocate CQ_EVENT entry\n");
11602 return false;
11603 }
11604
11605 /* Move the CQE into an asynchronous event entry */
11606 memcpy(&cq_event->cqe, mcqe, sizeof(struct lpfc_mcqe));
11607 spin_lock_irqsave(&phba->hbalock, iflags);
11608 list_add_tail(&cq_event->list, &phba->sli4_hba.sp_asynce_work_queue);
11609 /* Set the async event flag */
11610 phba->hba_flag |= ASYNC_EVENT;
11611 spin_unlock_irqrestore(&phba->hbalock, iflags);
11612
11613 return true;
11614}
11615
11616/**
11617 * lpfc_sli4_sp_handle_mbox_event - Handle a mailbox completion event
11618 * @phba: Pointer to HBA context object.
11619 * @cqe: Pointer to mailbox completion queue entry.
11620 *
11621 * This routine process a mailbox completion queue entry with mailbox
11622 * completion event.
11623 *
11624 * Return: true if work posted to worker thread, otherwise false.
11625 **/
11626static bool
11627lpfc_sli4_sp_handle_mbox_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
11628{
11629 uint32_t mcqe_status;
11630 MAILBOX_t *mbox, *pmbox;
11631 struct lpfc_mqe *mqe;
11632 struct lpfc_vport *vport;
11633 struct lpfc_nodelist *ndlp;
11634 struct lpfc_dmabuf *mp;
11635 unsigned long iflags;
11636 LPFC_MBOXQ_t *pmb;
11637 bool workposted = false;
11638 int rc;
11639
11640 /* If not a mailbox complete MCQE, out by checking mailbox consume */
11641 if (!bf_get(lpfc_trailer_completed, mcqe))
11642 goto out_no_mqe_complete;
11643
11644 /* Get the reference to the active mbox command */
11645 spin_lock_irqsave(&phba->hbalock, iflags);
11646 pmb = phba->sli.mbox_active;
11647 if (unlikely(!pmb)) {
11648 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
11649 "1832 No pending MBOX command to handle\n");
11650 spin_unlock_irqrestore(&phba->hbalock, iflags);
11651 goto out_no_mqe_complete;
11652 }
11653 spin_unlock_irqrestore(&phba->hbalock, iflags);
11654 mqe = &pmb->u.mqe;
11655 pmbox = (MAILBOX_t *)&pmb->u.mqe;
11656 mbox = phba->mbox;
11657 vport = pmb->vport;
11658
11659 /* Reset heartbeat timer */
11660 phba->last_completion_time = jiffies;
11661 del_timer(&phba->sli.mbox_tmo);
11662
11663 /* Move mbox data to caller's mailbox region, do endian swapping */
11664 if (pmb->mbox_cmpl && mbox)
11665 lpfc_sli_pcimem_bcopy(mbox, mqe, sizeof(struct lpfc_mqe));
James Smart04c68492009-05-22 14:52:52 -040011666
James Smart73d91e52011-10-10 21:32:10 -040011667 /*
11668 * For mcqe errors, conditionally move a modified error code to
11669 * the mbox so that the error will not be missed.
11670 */
11671 mcqe_status = bf_get(lpfc_mcqe_status, mcqe);
11672 if (mcqe_status != MB_CQE_STATUS_SUCCESS) {
11673 if (bf_get(lpfc_mqe_status, mqe) == MBX_SUCCESS)
11674 bf_set(lpfc_mqe_status, mqe,
11675 (LPFC_MBX_ERROR_RANGE | mcqe_status));
11676 }
James Smart04c68492009-05-22 14:52:52 -040011677 if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
11678 pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
11679 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_MBOX_VPORT,
11680 "MBOX dflt rpi: status:x%x rpi:x%x",
11681 mcqe_status,
11682 pmbox->un.varWords[0], 0);
11683 if (mcqe_status == MB_CQE_STATUS_SUCCESS) {
11684 mp = (struct lpfc_dmabuf *)(pmb->context1);
11685 ndlp = (struct lpfc_nodelist *)pmb->context2;
11686 /* Reg_LOGIN of dflt RPI was successful. Now lets get
11687 * RID of the PPI using the same mbox buffer.
11688 */
11689 lpfc_unreg_login(phba, vport->vpi,
11690 pmbox->un.varWords[0], pmb);
11691 pmb->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
11692 pmb->context1 = mp;
11693 pmb->context2 = ndlp;
11694 pmb->vport = vport;
11695 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
11696 if (rc != MBX_BUSY)
11697 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
11698 LOG_SLI, "0385 rc should "
11699 "have been MBX_BUSY\n");
11700 if (rc != MBX_NOT_FINISHED)
11701 goto send_current_mbox;
11702 }
11703 }
11704 spin_lock_irqsave(&phba->pport->work_port_lock, iflags);
11705 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
11706 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflags);
11707
11708 /* There is mailbox completion work to do */
11709 spin_lock_irqsave(&phba->hbalock, iflags);
11710 __lpfc_mbox_cmpl_put(phba, pmb);
11711 phba->work_ha |= HA_MBATT;
11712 spin_unlock_irqrestore(&phba->hbalock, iflags);
11713 workposted = true;
11714
11715send_current_mbox:
11716 spin_lock_irqsave(&phba->hbalock, iflags);
11717 /* Release the mailbox command posting token */
11718 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
11719 /* Setting active mailbox pointer need to be in sync to flag clear */
11720 phba->sli.mbox_active = NULL;
11721 spin_unlock_irqrestore(&phba->hbalock, iflags);
11722 /* Wake up worker thread to post the next pending mailbox command */
11723 lpfc_worker_wake_up(phba);
11724out_no_mqe_complete:
11725 if (bf_get(lpfc_trailer_consumed, mcqe))
11726 lpfc_sli4_mq_release(phba->sli4_hba.mbx_wq);
11727 return workposted;
11728}
11729
11730/**
11731 * lpfc_sli4_sp_handle_mcqe - Process a mailbox completion queue entry
11732 * @phba: Pointer to HBA context object.
11733 * @cqe: Pointer to mailbox completion queue entry.
11734 *
11735 * This routine process a mailbox completion queue entry, it invokes the
11736 * proper mailbox complete handling or asynchrous event handling routine
11737 * according to the MCQE's async bit.
11738 *
11739 * Return: true if work posted to worker thread, otherwise false.
11740 **/
11741static bool
11742lpfc_sli4_sp_handle_mcqe(struct lpfc_hba *phba, struct lpfc_cqe *cqe)
11743{
11744 struct lpfc_mcqe mcqe;
11745 bool workposted;
11746
11747 /* Copy the mailbox MCQE and convert endian order as needed */
11748 lpfc_sli_pcimem_bcopy(cqe, &mcqe, sizeof(struct lpfc_mcqe));
11749
11750 /* Invoke the proper event handling routine */
11751 if (!bf_get(lpfc_trailer_async, &mcqe))
11752 workposted = lpfc_sli4_sp_handle_mbox_event(phba, &mcqe);
11753 else
11754 workposted = lpfc_sli4_sp_handle_async_event(phba, &mcqe);
11755 return workposted;
11756}
11757
11758/**
James Smart4f774512009-05-22 14:52:35 -040011759 * lpfc_sli4_sp_handle_els_wcqe - Handle els work-queue completion event
11760 * @phba: Pointer to HBA context object.
James Smart2a76a282012-08-03 12:35:54 -040011761 * @cq: Pointer to associated CQ
James Smart4f774512009-05-22 14:52:35 -040011762 * @wcqe: Pointer to work-queue completion queue entry.
11763 *
11764 * This routine handles an ELS work-queue completion event.
11765 *
11766 * Return: true if work posted to worker thread, otherwise false.
11767 **/
11768static bool
James Smart2a76a282012-08-03 12:35:54 -040011769lpfc_sli4_sp_handle_els_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
James Smart4f774512009-05-22 14:52:35 -040011770 struct lpfc_wcqe_complete *wcqe)
11771{
James Smart4f774512009-05-22 14:52:35 -040011772 struct lpfc_iocbq *irspiocbq;
11773 unsigned long iflags;
James Smart2a76a282012-08-03 12:35:54 -040011774 struct lpfc_sli_ring *pring = cq->pring;
James Smart0e9bb8d2013-03-01 16:35:12 -050011775 int txq_cnt = 0;
11776 int txcmplq_cnt = 0;
11777 int fcp_txcmplq_cnt = 0;
James Smart4f774512009-05-22 14:52:35 -040011778
James Smart45ed1192009-10-02 15:17:02 -040011779 /* Get an irspiocbq for later ELS response processing use */
James Smart4f774512009-05-22 14:52:35 -040011780 irspiocbq = lpfc_sli_get_iocbq(phba);
11781 if (!irspiocbq) {
James Smart0e9bb8d2013-03-01 16:35:12 -050011782 if (!list_empty(&pring->txq))
11783 txq_cnt++;
11784 if (!list_empty(&pring->txcmplq))
11785 txcmplq_cnt++;
11786 if (!list_empty(&phba->sli.ring[LPFC_FCP_RING].txcmplq))
11787 fcp_txcmplq_cnt++;
James Smart4f774512009-05-22 14:52:35 -040011788 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart2a9bf3d2010-06-07 15:24:45 -040011789 "0387 NO IOCBQ data: txq_cnt=%d iocb_cnt=%d "
11790 "fcp_txcmplq_cnt=%d, els_txcmplq_cnt=%d\n",
James Smart0e9bb8d2013-03-01 16:35:12 -050011791 txq_cnt, phba->iocb_cnt,
11792 fcp_txcmplq_cnt,
11793 txcmplq_cnt);
James Smart45ed1192009-10-02 15:17:02 -040011794 return false;
James Smart4f774512009-05-22 14:52:35 -040011795 }
James Smart4f774512009-05-22 14:52:35 -040011796
James Smart45ed1192009-10-02 15:17:02 -040011797 /* Save off the slow-path queue event for work thread to process */
11798 memcpy(&irspiocbq->cq_event.cqe.wcqe_cmpl, wcqe, sizeof(*wcqe));
James Smart4f774512009-05-22 14:52:35 -040011799 spin_lock_irqsave(&phba->hbalock, iflags);
James Smart4d9ab992009-10-02 15:16:39 -040011800 list_add_tail(&irspiocbq->cq_event.list,
James Smart45ed1192009-10-02 15:17:02 -040011801 &phba->sli4_hba.sp_queue_event);
11802 phba->hba_flag |= HBA_SP_QUEUE_EVT;
James Smart4f774512009-05-22 14:52:35 -040011803 spin_unlock_irqrestore(&phba->hbalock, iflags);
James Smart4f774512009-05-22 14:52:35 -040011804
James Smart45ed1192009-10-02 15:17:02 -040011805 return true;
James Smart4f774512009-05-22 14:52:35 -040011806}
11807
11808/**
11809 * lpfc_sli4_sp_handle_rel_wcqe - Handle slow-path WQ entry consumed event
11810 * @phba: Pointer to HBA context object.
11811 * @wcqe: Pointer to work-queue completion queue entry.
11812 *
11813 * This routine handles slow-path WQ entry comsumed event by invoking the
11814 * proper WQ release routine to the slow-path WQ.
11815 **/
11816static void
11817lpfc_sli4_sp_handle_rel_wcqe(struct lpfc_hba *phba,
11818 struct lpfc_wcqe_release *wcqe)
11819{
James Smart2e90f4b2011-12-13 13:22:37 -050011820 /* sanity check on queue memory */
11821 if (unlikely(!phba->sli4_hba.els_wq))
11822 return;
James Smart4f774512009-05-22 14:52:35 -040011823 /* Check for the slow-path ELS work queue */
11824 if (bf_get(lpfc_wcqe_r_wq_id, wcqe) == phba->sli4_hba.els_wq->queue_id)
11825 lpfc_sli4_wq_release(phba->sli4_hba.els_wq,
11826 bf_get(lpfc_wcqe_r_wqe_index, wcqe));
11827 else
11828 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11829 "2579 Slow-path wqe consume event carries "
11830 "miss-matched qid: wcqe-qid=x%x, sp-qid=x%x\n",
11831 bf_get(lpfc_wcqe_r_wqe_index, wcqe),
11832 phba->sli4_hba.els_wq->queue_id);
11833}
11834
11835/**
11836 * lpfc_sli4_sp_handle_abort_xri_wcqe - Handle a xri abort event
11837 * @phba: Pointer to HBA context object.
11838 * @cq: Pointer to a WQ completion queue.
11839 * @wcqe: Pointer to work-queue completion queue entry.
11840 *
11841 * This routine handles an XRI abort event.
11842 *
11843 * Return: true if work posted to worker thread, otherwise false.
11844 **/
11845static bool
11846lpfc_sli4_sp_handle_abort_xri_wcqe(struct lpfc_hba *phba,
11847 struct lpfc_queue *cq,
11848 struct sli4_wcqe_xri_aborted *wcqe)
11849{
11850 bool workposted = false;
11851 struct lpfc_cq_event *cq_event;
11852 unsigned long iflags;
11853
11854 /* Allocate a new internal CQ_EVENT entry */
11855 cq_event = lpfc_sli4_cq_event_alloc(phba);
11856 if (!cq_event) {
11857 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11858 "0602 Failed to allocate CQ_EVENT entry\n");
11859 return false;
11860 }
11861
11862 /* Move the CQE into the proper xri abort event list */
11863 memcpy(&cq_event->cqe, wcqe, sizeof(struct sli4_wcqe_xri_aborted));
11864 switch (cq->subtype) {
11865 case LPFC_FCP:
11866 spin_lock_irqsave(&phba->hbalock, iflags);
11867 list_add_tail(&cq_event->list,
11868 &phba->sli4_hba.sp_fcp_xri_aborted_work_queue);
11869 /* Set the fcp xri abort event flag */
11870 phba->hba_flag |= FCP_XRI_ABORT_EVENT;
11871 spin_unlock_irqrestore(&phba->hbalock, iflags);
11872 workposted = true;
11873 break;
11874 case LPFC_ELS:
11875 spin_lock_irqsave(&phba->hbalock, iflags);
11876 list_add_tail(&cq_event->list,
11877 &phba->sli4_hba.sp_els_xri_aborted_work_queue);
11878 /* Set the els xri abort event flag */
11879 phba->hba_flag |= ELS_XRI_ABORT_EVENT;
11880 spin_unlock_irqrestore(&phba->hbalock, iflags);
11881 workposted = true;
11882 break;
11883 default:
11884 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11885 "0603 Invalid work queue CQE subtype (x%x)\n",
11886 cq->subtype);
11887 workposted = false;
11888 break;
11889 }
11890 return workposted;
11891}
11892
11893/**
James Smart4d9ab992009-10-02 15:16:39 -040011894 * lpfc_sli4_sp_handle_rcqe - Process a receive-queue completion queue entry
James Smart4f774512009-05-22 14:52:35 -040011895 * @phba: Pointer to HBA context object.
James Smart4d9ab992009-10-02 15:16:39 -040011896 * @rcqe: Pointer to receive-queue completion queue entry.
James Smart4f774512009-05-22 14:52:35 -040011897 *
James Smart4d9ab992009-10-02 15:16:39 -040011898 * This routine process a receive-queue completion queue entry.
James Smart4f774512009-05-22 14:52:35 -040011899 *
11900 * Return: true if work posted to worker thread, otherwise false.
11901 **/
11902static bool
James Smart4d9ab992009-10-02 15:16:39 -040011903lpfc_sli4_sp_handle_rcqe(struct lpfc_hba *phba, struct lpfc_rcqe *rcqe)
11904{
11905 bool workposted = false;
11906 struct lpfc_queue *hrq = phba->sli4_hba.hdr_rq;
11907 struct lpfc_queue *drq = phba->sli4_hba.dat_rq;
11908 struct hbq_dmabuf *dma_buf;
James Smart7851fe22011-07-22 18:36:52 -040011909 uint32_t status, rq_id;
James Smart4d9ab992009-10-02 15:16:39 -040011910 unsigned long iflags;
11911
James Smart2e90f4b2011-12-13 13:22:37 -050011912 /* sanity check on queue memory */
11913 if (unlikely(!hrq) || unlikely(!drq))
11914 return workposted;
11915
James Smart7851fe22011-07-22 18:36:52 -040011916 if (bf_get(lpfc_cqe_code, rcqe) == CQE_CODE_RECEIVE_V1)
11917 rq_id = bf_get(lpfc_rcqe_rq_id_v1, rcqe);
11918 else
11919 rq_id = bf_get(lpfc_rcqe_rq_id, rcqe);
11920 if (rq_id != hrq->queue_id)
James Smart4d9ab992009-10-02 15:16:39 -040011921 goto out;
11922
11923 status = bf_get(lpfc_rcqe_status, rcqe);
11924 switch (status) {
11925 case FC_STATUS_RQ_BUF_LEN_EXCEEDED:
11926 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11927 "2537 Receive Frame Truncated!!\n");
James Smartb84daac2012-08-03 12:35:13 -040011928 hrq->RQ_buf_trunc++;
James Smart4d9ab992009-10-02 15:16:39 -040011929 case FC_STATUS_RQ_SUCCESS:
James Smart5ffc2662009-11-18 15:39:44 -050011930 lpfc_sli4_rq_release(hrq, drq);
James Smart4d9ab992009-10-02 15:16:39 -040011931 spin_lock_irqsave(&phba->hbalock, iflags);
11932 dma_buf = lpfc_sli_hbqbuf_get(&phba->hbqs[0].hbq_buffer_list);
11933 if (!dma_buf) {
James Smartb84daac2012-08-03 12:35:13 -040011934 hrq->RQ_no_buf_found++;
James Smart4d9ab992009-10-02 15:16:39 -040011935 spin_unlock_irqrestore(&phba->hbalock, iflags);
11936 goto out;
11937 }
James Smartb84daac2012-08-03 12:35:13 -040011938 hrq->RQ_rcv_buf++;
James Smart4d9ab992009-10-02 15:16:39 -040011939 memcpy(&dma_buf->cq_event.cqe.rcqe_cmpl, rcqe, sizeof(*rcqe));
11940 /* save off the frame for the word thread to process */
11941 list_add_tail(&dma_buf->cq_event.list,
James Smart45ed1192009-10-02 15:17:02 -040011942 &phba->sli4_hba.sp_queue_event);
James Smart4d9ab992009-10-02 15:16:39 -040011943 /* Frame received */
James Smart45ed1192009-10-02 15:17:02 -040011944 phba->hba_flag |= HBA_SP_QUEUE_EVT;
James Smart4d9ab992009-10-02 15:16:39 -040011945 spin_unlock_irqrestore(&phba->hbalock, iflags);
11946 workposted = true;
11947 break;
11948 case FC_STATUS_INSUFF_BUF_NEED_BUF:
11949 case FC_STATUS_INSUFF_BUF_FRM_DISC:
James Smartb84daac2012-08-03 12:35:13 -040011950 hrq->RQ_no_posted_buf++;
James Smart4d9ab992009-10-02 15:16:39 -040011951 /* Post more buffers if possible */
11952 spin_lock_irqsave(&phba->hbalock, iflags);
11953 phba->hba_flag |= HBA_POST_RECEIVE_BUFFER;
11954 spin_unlock_irqrestore(&phba->hbalock, iflags);
11955 workposted = true;
11956 break;
11957 }
11958out:
11959 return workposted;
James Smart4d9ab992009-10-02 15:16:39 -040011960}
11961
11962/**
11963 * lpfc_sli4_sp_handle_cqe - Process a slow path completion queue entry
11964 * @phba: Pointer to HBA context object.
11965 * @cq: Pointer to the completion queue.
11966 * @wcqe: Pointer to a completion queue entry.
11967 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030011968 * This routine process a slow-path work-queue or receive queue completion queue
James Smart4d9ab992009-10-02 15:16:39 -040011969 * entry.
11970 *
11971 * Return: true if work posted to worker thread, otherwise false.
11972 **/
11973static bool
11974lpfc_sli4_sp_handle_cqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
James Smart4f774512009-05-22 14:52:35 -040011975 struct lpfc_cqe *cqe)
11976{
James Smart45ed1192009-10-02 15:17:02 -040011977 struct lpfc_cqe cqevt;
James Smart4f774512009-05-22 14:52:35 -040011978 bool workposted = false;
11979
11980 /* Copy the work queue CQE and convert endian order if needed */
James Smart45ed1192009-10-02 15:17:02 -040011981 lpfc_sli_pcimem_bcopy(cqe, &cqevt, sizeof(struct lpfc_cqe));
James Smart4f774512009-05-22 14:52:35 -040011982
11983 /* Check and process for different type of WCQE and dispatch */
James Smart45ed1192009-10-02 15:17:02 -040011984 switch (bf_get(lpfc_cqe_code, &cqevt)) {
James Smart4f774512009-05-22 14:52:35 -040011985 case CQE_CODE_COMPL_WQE:
James Smart45ed1192009-10-02 15:17:02 -040011986 /* Process the WQ/RQ complete event */
James Smartbc739052010-08-04 16:11:18 -040011987 phba->last_completion_time = jiffies;
James Smart2a76a282012-08-03 12:35:54 -040011988 workposted = lpfc_sli4_sp_handle_els_wcqe(phba, cq,
James Smart45ed1192009-10-02 15:17:02 -040011989 (struct lpfc_wcqe_complete *)&cqevt);
James Smart4f774512009-05-22 14:52:35 -040011990 break;
11991 case CQE_CODE_RELEASE_WQE:
11992 /* Process the WQ release event */
11993 lpfc_sli4_sp_handle_rel_wcqe(phba,
James Smart45ed1192009-10-02 15:17:02 -040011994 (struct lpfc_wcqe_release *)&cqevt);
James Smart4f774512009-05-22 14:52:35 -040011995 break;
11996 case CQE_CODE_XRI_ABORTED:
11997 /* Process the WQ XRI abort event */
James Smartbc739052010-08-04 16:11:18 -040011998 phba->last_completion_time = jiffies;
James Smart4f774512009-05-22 14:52:35 -040011999 workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
James Smart45ed1192009-10-02 15:17:02 -040012000 (struct sli4_wcqe_xri_aborted *)&cqevt);
James Smart4f774512009-05-22 14:52:35 -040012001 break;
James Smart4d9ab992009-10-02 15:16:39 -040012002 case CQE_CODE_RECEIVE:
James Smart7851fe22011-07-22 18:36:52 -040012003 case CQE_CODE_RECEIVE_V1:
James Smart4d9ab992009-10-02 15:16:39 -040012004 /* Process the RQ event */
James Smartbc739052010-08-04 16:11:18 -040012005 phba->last_completion_time = jiffies;
James Smart4d9ab992009-10-02 15:16:39 -040012006 workposted = lpfc_sli4_sp_handle_rcqe(phba,
James Smart45ed1192009-10-02 15:17:02 -040012007 (struct lpfc_rcqe *)&cqevt);
James Smart4d9ab992009-10-02 15:16:39 -040012008 break;
James Smart4f774512009-05-22 14:52:35 -040012009 default:
12010 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12011 "0388 Not a valid WCQE code: x%x\n",
James Smart45ed1192009-10-02 15:17:02 -040012012 bf_get(lpfc_cqe_code, &cqevt));
James Smart4f774512009-05-22 14:52:35 -040012013 break;
12014 }
12015 return workposted;
12016}
12017
12018/**
James Smart4f774512009-05-22 14:52:35 -040012019 * lpfc_sli4_sp_handle_eqe - Process a slow-path event queue entry
12020 * @phba: Pointer to HBA context object.
12021 * @eqe: Pointer to fast-path event queue entry.
12022 *
12023 * This routine process a event queue entry from the slow-path event queue.
12024 * It will check the MajorCode and MinorCode to determine this is for a
12025 * completion event on a completion queue, if not, an error shall be logged
12026 * and just return. Otherwise, it will get to the corresponding completion
12027 * queue and process all the entries on that completion queue, rearm the
12028 * completion queue, and then return.
12029 *
12030 **/
12031static void
James Smart67d12732012-08-03 12:36:13 -040012032lpfc_sli4_sp_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe,
12033 struct lpfc_queue *speq)
James Smart4f774512009-05-22 14:52:35 -040012034{
James Smart67d12732012-08-03 12:36:13 -040012035 struct lpfc_queue *cq = NULL, *childq;
James Smart4f774512009-05-22 14:52:35 -040012036 struct lpfc_cqe *cqe;
12037 bool workposted = false;
12038 int ecount = 0;
12039 uint16_t cqid;
12040
James Smart4f774512009-05-22 14:52:35 -040012041 /* Get the reference to the corresponding CQ */
James Smartcb5172e2010-03-15 11:25:07 -040012042 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
James Smart4f774512009-05-22 14:52:35 -040012043
James Smart4f774512009-05-22 14:52:35 -040012044 list_for_each_entry(childq, &speq->child_list, list) {
12045 if (childq->queue_id == cqid) {
12046 cq = childq;
12047 break;
12048 }
12049 }
12050 if (unlikely(!cq)) {
James Smart75baf692010-06-08 18:31:21 -040012051 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
12052 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12053 "0365 Slow-path CQ identifier "
12054 "(%d) does not exist\n", cqid);
James Smart4f774512009-05-22 14:52:35 -040012055 return;
12056 }
12057
12058 /* Process all the entries to the CQ */
12059 switch (cq->type) {
12060 case LPFC_MCQ:
12061 while ((cqe = lpfc_sli4_cq_get(cq))) {
12062 workposted |= lpfc_sli4_sp_handle_mcqe(phba, cqe);
James Smart73d91e52011-10-10 21:32:10 -040012063 if (!(++ecount % cq->entry_repost))
James Smart4f774512009-05-22 14:52:35 -040012064 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
James Smartb84daac2012-08-03 12:35:13 -040012065 cq->CQ_mbox++;
James Smart4f774512009-05-22 14:52:35 -040012066 }
12067 break;
12068 case LPFC_WCQ:
12069 while ((cqe = lpfc_sli4_cq_get(cq))) {
James Smart05580562011-05-24 11:40:48 -040012070 if (cq->subtype == LPFC_FCP)
12071 workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq,
12072 cqe);
12073 else
12074 workposted |= lpfc_sli4_sp_handle_cqe(phba, cq,
12075 cqe);
James Smart73d91e52011-10-10 21:32:10 -040012076 if (!(++ecount % cq->entry_repost))
James Smart4f774512009-05-22 14:52:35 -040012077 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
12078 }
James Smartb84daac2012-08-03 12:35:13 -040012079
12080 /* Track the max number of CQEs processed in 1 EQ */
12081 if (ecount > cq->CQ_max_cqe)
12082 cq->CQ_max_cqe = ecount;
James Smart4f774512009-05-22 14:52:35 -040012083 break;
12084 default:
12085 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12086 "0370 Invalid completion queue type (%d)\n",
12087 cq->type);
12088 return;
12089 }
12090
12091 /* Catch the no cq entry condition, log an error */
12092 if (unlikely(ecount == 0))
12093 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12094 "0371 No entry from the CQ: identifier "
12095 "(x%x), type (%d)\n", cq->queue_id, cq->type);
12096
12097 /* In any case, flash and re-arm the RCQ */
12098 lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
12099
12100 /* wake up worker thread if there are works to be done */
12101 if (workposted)
12102 lpfc_worker_wake_up(phba);
12103}
12104
12105/**
12106 * lpfc_sli4_fp_handle_fcp_wcqe - Process fast-path work queue completion entry
James Smart2a76a282012-08-03 12:35:54 -040012107 * @phba: Pointer to HBA context object.
12108 * @cq: Pointer to associated CQ
12109 * @wcqe: Pointer to work-queue completion queue entry.
James Smart4f774512009-05-22 14:52:35 -040012110 *
12111 * This routine process a fast-path work queue completion entry from fast-path
12112 * event queue for FCP command response completion.
12113 **/
12114static void
James Smart2a76a282012-08-03 12:35:54 -040012115lpfc_sli4_fp_handle_fcp_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
James Smart4f774512009-05-22 14:52:35 -040012116 struct lpfc_wcqe_complete *wcqe)
12117{
James Smart2a76a282012-08-03 12:35:54 -040012118 struct lpfc_sli_ring *pring = cq->pring;
James Smart4f774512009-05-22 14:52:35 -040012119 struct lpfc_iocbq *cmdiocbq;
12120 struct lpfc_iocbq irspiocbq;
12121 unsigned long iflags;
12122
James Smart4f774512009-05-22 14:52:35 -040012123 /* Check for response status */
12124 if (unlikely(bf_get(lpfc_wcqe_c_status, wcqe))) {
12125 /* If resource errors reported from HBA, reduce queue
12126 * depth of the SCSI device.
12127 */
James Smarte3d2b802012-08-14 14:25:43 -040012128 if (((bf_get(lpfc_wcqe_c_status, wcqe) ==
12129 IOSTAT_LOCAL_REJECT)) &&
12130 ((wcqe->parameter & IOERR_PARAM_MASK) ==
12131 IOERR_NO_RESOURCES))
James Smart4f774512009-05-22 14:52:35 -040012132 phba->lpfc_rampdown_queue_depth(phba);
James Smarte3d2b802012-08-14 14:25:43 -040012133
James Smart4f774512009-05-22 14:52:35 -040012134 /* Log the error status */
12135 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12136 "0373 FCP complete error: status=x%x, "
12137 "hw_status=x%x, total_data_specified=%d, "
12138 "parameter=x%x, word3=x%x\n",
12139 bf_get(lpfc_wcqe_c_status, wcqe),
12140 bf_get(lpfc_wcqe_c_hw_status, wcqe),
12141 wcqe->total_data_placed, wcqe->parameter,
12142 wcqe->word3);
12143 }
12144
12145 /* Look up the FCP command IOCB and create pseudo response IOCB */
James Smart7e56aa22012-08-03 12:35:34 -040012146 spin_lock_irqsave(&pring->ring_lock, iflags);
12147 pring->stats.iocb_event++;
James Smart4f774512009-05-22 14:52:35 -040012148 cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
12149 bf_get(lpfc_wcqe_c_request_tag, wcqe));
James Smart7e56aa22012-08-03 12:35:34 -040012150 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smart4f774512009-05-22 14:52:35 -040012151 if (unlikely(!cmdiocbq)) {
12152 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12153 "0374 FCP complete with no corresponding "
12154 "cmdiocb: iotag (%d)\n",
12155 bf_get(lpfc_wcqe_c_request_tag, wcqe));
12156 return;
12157 }
12158 if (unlikely(!cmdiocbq->iocb_cmpl)) {
12159 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12160 "0375 FCP cmdiocb not callback function "
12161 "iotag: (%d)\n",
12162 bf_get(lpfc_wcqe_c_request_tag, wcqe));
12163 return;
12164 }
12165
12166 /* Fake the irspiocb and copy necessary response information */
James Smart341af102010-01-26 23:07:37 -050012167 lpfc_sli4_iocb_param_transfer(phba, &irspiocbq, cmdiocbq, wcqe);
James Smart4f774512009-05-22 14:52:35 -040012168
James Smart0f65ff62010-02-26 14:14:23 -050012169 if (cmdiocbq->iocb_flag & LPFC_DRIVER_ABORTED) {
12170 spin_lock_irqsave(&phba->hbalock, iflags);
12171 cmdiocbq->iocb_flag &= ~LPFC_DRIVER_ABORTED;
12172 spin_unlock_irqrestore(&phba->hbalock, iflags);
12173 }
12174
James Smart4f774512009-05-22 14:52:35 -040012175 /* Pass the cmd_iocb and the rsp state to the upper layer */
12176 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq, &irspiocbq);
12177}
12178
12179/**
12180 * lpfc_sli4_fp_handle_rel_wcqe - Handle fast-path WQ entry consumed event
12181 * @phba: Pointer to HBA context object.
12182 * @cq: Pointer to completion queue.
12183 * @wcqe: Pointer to work-queue completion queue entry.
12184 *
12185 * This routine handles an fast-path WQ entry comsumed event by invoking the
12186 * proper WQ release routine to the slow-path WQ.
12187 **/
12188static void
12189lpfc_sli4_fp_handle_rel_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
12190 struct lpfc_wcqe_release *wcqe)
12191{
12192 struct lpfc_queue *childwq;
12193 bool wqid_matched = false;
12194 uint16_t fcp_wqid;
12195
12196 /* Check for fast-path FCP work queue release */
12197 fcp_wqid = bf_get(lpfc_wcqe_r_wq_id, wcqe);
12198 list_for_each_entry(childwq, &cq->child_list, list) {
12199 if (childwq->queue_id == fcp_wqid) {
12200 lpfc_sli4_wq_release(childwq,
12201 bf_get(lpfc_wcqe_r_wqe_index, wcqe));
12202 wqid_matched = true;
12203 break;
12204 }
12205 }
12206 /* Report warning log message if no match found */
12207 if (wqid_matched != true)
12208 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12209 "2580 Fast-path wqe consume event carries "
12210 "miss-matched qid: wcqe-qid=x%x\n", fcp_wqid);
12211}
12212
12213/**
12214 * lpfc_sli4_fp_handle_wcqe - Process fast-path work queue completion entry
12215 * @cq: Pointer to the completion queue.
12216 * @eqe: Pointer to fast-path completion queue entry.
12217 *
12218 * This routine process a fast-path work queue completion entry from fast-path
12219 * event queue for FCP command response completion.
12220 **/
12221static int
12222lpfc_sli4_fp_handle_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
12223 struct lpfc_cqe *cqe)
12224{
12225 struct lpfc_wcqe_release wcqe;
12226 bool workposted = false;
12227
12228 /* Copy the work queue CQE and convert endian order if needed */
12229 lpfc_sli_pcimem_bcopy(cqe, &wcqe, sizeof(struct lpfc_cqe));
12230
12231 /* Check and process for different type of WCQE and dispatch */
12232 switch (bf_get(lpfc_wcqe_c_code, &wcqe)) {
12233 case CQE_CODE_COMPL_WQE:
James Smartb84daac2012-08-03 12:35:13 -040012234 cq->CQ_wq++;
James Smart4f774512009-05-22 14:52:35 -040012235 /* Process the WQ complete event */
James Smart98fc5dd2010-06-07 15:24:29 -040012236 phba->last_completion_time = jiffies;
James Smart2a76a282012-08-03 12:35:54 -040012237 lpfc_sli4_fp_handle_fcp_wcqe(phba, cq,
James Smart4f774512009-05-22 14:52:35 -040012238 (struct lpfc_wcqe_complete *)&wcqe);
12239 break;
12240 case CQE_CODE_RELEASE_WQE:
James Smartb84daac2012-08-03 12:35:13 -040012241 cq->CQ_release_wqe++;
James Smart4f774512009-05-22 14:52:35 -040012242 /* Process the WQ release event */
12243 lpfc_sli4_fp_handle_rel_wcqe(phba, cq,
12244 (struct lpfc_wcqe_release *)&wcqe);
12245 break;
12246 case CQE_CODE_XRI_ABORTED:
James Smartb84daac2012-08-03 12:35:13 -040012247 cq->CQ_xri_aborted++;
James Smart4f774512009-05-22 14:52:35 -040012248 /* Process the WQ XRI abort event */
James Smartbc739052010-08-04 16:11:18 -040012249 phba->last_completion_time = jiffies;
James Smart4f774512009-05-22 14:52:35 -040012250 workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
12251 (struct sli4_wcqe_xri_aborted *)&wcqe);
12252 break;
12253 default:
12254 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12255 "0144 Not a valid WCQE code: x%x\n",
12256 bf_get(lpfc_wcqe_c_code, &wcqe));
12257 break;
12258 }
12259 return workposted;
12260}
12261
12262/**
James Smart67d12732012-08-03 12:36:13 -040012263 * lpfc_sli4_hba_handle_eqe - Process a fast-path event queue entry
James Smart4f774512009-05-22 14:52:35 -040012264 * @phba: Pointer to HBA context object.
12265 * @eqe: Pointer to fast-path event queue entry.
12266 *
12267 * This routine process a event queue entry from the fast-path event queue.
12268 * It will check the MajorCode and MinorCode to determine this is for a
12269 * completion event on a completion queue, if not, an error shall be logged
12270 * and just return. Otherwise, it will get to the corresponding completion
12271 * queue and process all the entries on the completion queue, rearm the
12272 * completion queue, and then return.
12273 **/
12274static void
James Smart67d12732012-08-03 12:36:13 -040012275lpfc_sli4_hba_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe,
12276 uint32_t qidx)
James Smart4f774512009-05-22 14:52:35 -040012277{
12278 struct lpfc_queue *cq;
12279 struct lpfc_cqe *cqe;
12280 bool workposted = false;
12281 uint16_t cqid;
12282 int ecount = 0;
12283
James Smartcb5172e2010-03-15 11:25:07 -040012284 if (unlikely(bf_get_le32(lpfc_eqe_major_code, eqe) != 0)) {
James Smart4f774512009-05-22 14:52:35 -040012285 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart67d12732012-08-03 12:36:13 -040012286 "0366 Not a valid completion "
James Smart4f774512009-05-22 14:52:35 -040012287 "event: majorcode=x%x, minorcode=x%x\n",
James Smartcb5172e2010-03-15 11:25:07 -040012288 bf_get_le32(lpfc_eqe_major_code, eqe),
12289 bf_get_le32(lpfc_eqe_minor_code, eqe));
James Smart4f774512009-05-22 14:52:35 -040012290 return;
12291 }
12292
James Smart67d12732012-08-03 12:36:13 -040012293 /* Get the reference to the corresponding CQ */
12294 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
12295
12296 /* Check if this is a Slow path event */
12297 if (unlikely(cqid != phba->sli4_hba.fcp_cq_map[qidx])) {
12298 lpfc_sli4_sp_handle_eqe(phba, eqe,
12299 phba->sli4_hba.hba_eq[qidx]);
12300 return;
12301 }
12302
James Smart2e90f4b2011-12-13 13:22:37 -050012303 if (unlikely(!phba->sli4_hba.fcp_cq)) {
12304 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12305 "3146 Fast-path completion queues "
12306 "does not exist\n");
12307 return;
12308 }
James Smart67d12732012-08-03 12:36:13 -040012309 cq = phba->sli4_hba.fcp_cq[qidx];
James Smart4f774512009-05-22 14:52:35 -040012310 if (unlikely(!cq)) {
James Smart75baf692010-06-08 18:31:21 -040012311 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
12312 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12313 "0367 Fast-path completion queue "
James Smart67d12732012-08-03 12:36:13 -040012314 "(%d) does not exist\n", qidx);
James Smart4f774512009-05-22 14:52:35 -040012315 return;
12316 }
12317
James Smart4f774512009-05-22 14:52:35 -040012318 if (unlikely(cqid != cq->queue_id)) {
12319 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12320 "0368 Miss-matched fast-path completion "
12321 "queue identifier: eqcqid=%d, fcpcqid=%d\n",
12322 cqid, cq->queue_id);
12323 return;
12324 }
12325
12326 /* Process all the entries to the CQ */
12327 while ((cqe = lpfc_sli4_cq_get(cq))) {
12328 workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq, cqe);
James Smart73d91e52011-10-10 21:32:10 -040012329 if (!(++ecount % cq->entry_repost))
James Smart4f774512009-05-22 14:52:35 -040012330 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
12331 }
12332
James Smartb84daac2012-08-03 12:35:13 -040012333 /* Track the max number of CQEs processed in 1 EQ */
12334 if (ecount > cq->CQ_max_cqe)
12335 cq->CQ_max_cqe = ecount;
12336
James Smart4f774512009-05-22 14:52:35 -040012337 /* Catch the no cq entry condition */
12338 if (unlikely(ecount == 0))
12339 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12340 "0369 No entry from fast-path completion "
12341 "queue fcpcqid=%d\n", cq->queue_id);
12342
12343 /* In any case, flash and re-arm the CQ */
12344 lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
12345
12346 /* wake up worker thread if there are works to be done */
12347 if (workposted)
12348 lpfc_worker_wake_up(phba);
12349}
12350
12351static void
12352lpfc_sli4_eq_flush(struct lpfc_hba *phba, struct lpfc_queue *eq)
12353{
12354 struct lpfc_eqe *eqe;
12355
12356 /* walk all the EQ entries and drop on the floor */
12357 while ((eqe = lpfc_sli4_eq_get(eq)))
12358 ;
12359
12360 /* Clear and re-arm the EQ */
12361 lpfc_sli4_eq_release(eq, LPFC_QUEUE_REARM);
12362}
12363
James Smart1ba981f2014-02-20 09:56:45 -050012364
12365/**
12366 * lpfc_sli4_fof_handle_eqe - Process a Flash Optimized Fabric event queue
12367 * entry
12368 * @phba: Pointer to HBA context object.
12369 * @eqe: Pointer to fast-path event queue entry.
12370 *
12371 * This routine process a event queue entry from the Flash Optimized Fabric
12372 * event queue. It will check the MajorCode and MinorCode to determine this
12373 * is for a completion event on a completion queue, if not, an error shall be
12374 * logged and just return. Otherwise, it will get to the corresponding
12375 * completion queue and process all the entries on the completion queue, rearm
12376 * the completion queue, and then return.
12377 **/
12378static void
12379lpfc_sli4_fof_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe)
12380{
12381 struct lpfc_queue *cq;
12382 struct lpfc_cqe *cqe;
12383 bool workposted = false;
12384 uint16_t cqid;
12385 int ecount = 0;
12386
12387 if (unlikely(bf_get_le32(lpfc_eqe_major_code, eqe) != 0)) {
12388 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12389 "9147 Not a valid completion "
12390 "event: majorcode=x%x, minorcode=x%x\n",
12391 bf_get_le32(lpfc_eqe_major_code, eqe),
12392 bf_get_le32(lpfc_eqe_minor_code, eqe));
12393 return;
12394 }
12395
12396 /* Get the reference to the corresponding CQ */
12397 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
12398
12399 /* Next check for OAS */
12400 cq = phba->sli4_hba.oas_cq;
12401 if (unlikely(!cq)) {
12402 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
12403 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12404 "9148 OAS completion queue "
12405 "does not exist\n");
12406 return;
12407 }
12408
12409 if (unlikely(cqid != cq->queue_id)) {
12410 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12411 "9149 Miss-matched fast-path compl "
12412 "queue id: eqcqid=%d, fcpcqid=%d\n",
12413 cqid, cq->queue_id);
12414 return;
12415 }
12416
12417 /* Process all the entries to the OAS CQ */
12418 while ((cqe = lpfc_sli4_cq_get(cq))) {
12419 workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq, cqe);
12420 if (!(++ecount % cq->entry_repost))
12421 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
12422 }
12423
12424 /* Track the max number of CQEs processed in 1 EQ */
12425 if (ecount > cq->CQ_max_cqe)
12426 cq->CQ_max_cqe = ecount;
12427
12428 /* Catch the no cq entry condition */
12429 if (unlikely(ecount == 0))
12430 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12431 "9153 No entry from fast-path completion "
12432 "queue fcpcqid=%d\n", cq->queue_id);
12433
12434 /* In any case, flash and re-arm the CQ */
12435 lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
12436
12437 /* wake up worker thread if there are works to be done */
12438 if (workposted)
12439 lpfc_worker_wake_up(phba);
12440}
12441
12442/**
12443 * lpfc_sli4_fof_intr_handler - HBA interrupt handler to SLI-4 device
12444 * @irq: Interrupt number.
12445 * @dev_id: The device context pointer.
12446 *
12447 * This function is directly called from the PCI layer as an interrupt
12448 * service routine when device with SLI-4 interface spec is enabled with
12449 * MSI-X multi-message interrupt mode and there is a Flash Optimized Fabric
12450 * IOCB ring event in the HBA. However, when the device is enabled with either
12451 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
12452 * device-level interrupt handler. When the PCI slot is in error recovery
12453 * or the HBA is undergoing initialization, the interrupt handler will not
12454 * process the interrupt. The Flash Optimized Fabric ring event are handled in
12455 * the intrrupt context. This function is called without any lock held.
12456 * It gets the hbalock to access and update SLI data structures. Note that,
12457 * the EQ to CQ are one-to-one map such that the EQ index is
12458 * equal to that of CQ index.
12459 *
12460 * This function returns IRQ_HANDLED when interrupt is handled else it
12461 * returns IRQ_NONE.
12462 **/
12463irqreturn_t
12464lpfc_sli4_fof_intr_handler(int irq, void *dev_id)
12465{
12466 struct lpfc_hba *phba;
12467 struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
12468 struct lpfc_queue *eq;
12469 struct lpfc_eqe *eqe;
12470 unsigned long iflag;
12471 int ecount = 0;
12472 uint32_t eqidx;
12473
12474 /* Get the driver's phba structure from the dev_id */
12475 fcp_eq_hdl = (struct lpfc_fcp_eq_hdl *)dev_id;
12476 phba = fcp_eq_hdl->phba;
12477 eqidx = fcp_eq_hdl->idx;
12478
12479 if (unlikely(!phba))
12480 return IRQ_NONE;
12481
12482 /* Get to the EQ struct associated with this vector */
12483 eq = phba->sli4_hba.fof_eq;
12484 if (unlikely(!eq))
12485 return IRQ_NONE;
12486
12487 /* Check device state for handling interrupt */
12488 if (unlikely(lpfc_intr_state_check(phba))) {
12489 eq->EQ_badstate++;
12490 /* Check again for link_state with lock held */
12491 spin_lock_irqsave(&phba->hbalock, iflag);
12492 if (phba->link_state < LPFC_LINK_DOWN)
12493 /* Flush, clear interrupt, and rearm the EQ */
12494 lpfc_sli4_eq_flush(phba, eq);
12495 spin_unlock_irqrestore(&phba->hbalock, iflag);
12496 return IRQ_NONE;
12497 }
12498
12499 /*
12500 * Process all the event on FCP fast-path EQ
12501 */
12502 while ((eqe = lpfc_sli4_eq_get(eq))) {
12503 lpfc_sli4_fof_handle_eqe(phba, eqe);
12504 if (!(++ecount % eq->entry_repost))
12505 lpfc_sli4_eq_release(eq, LPFC_QUEUE_NOARM);
12506 eq->EQ_processed++;
12507 }
12508
12509 /* Track the max number of EQEs processed in 1 intr */
12510 if (ecount > eq->EQ_max_eqe)
12511 eq->EQ_max_eqe = ecount;
12512
12513
12514 if (unlikely(ecount == 0)) {
12515 eq->EQ_no_entry++;
12516
12517 if (phba->intr_type == MSIX)
12518 /* MSI-X treated interrupt served as no EQ share INT */
12519 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12520 "9145 MSI-X interrupt with no EQE\n");
12521 else {
12522 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12523 "9146 ISR interrupt with no EQE\n");
12524 /* Non MSI-X treated on interrupt as EQ share INT */
12525 return IRQ_NONE;
12526 }
12527 }
12528 /* Always clear and re-arm the fast-path EQ */
12529 lpfc_sli4_eq_release(eq, LPFC_QUEUE_REARM);
12530 return IRQ_HANDLED;
12531}
12532
James Smart4f774512009-05-22 14:52:35 -040012533/**
James Smart67d12732012-08-03 12:36:13 -040012534 * lpfc_sli4_hba_intr_handler - HBA interrupt handler to SLI-4 device
James Smart4f774512009-05-22 14:52:35 -040012535 * @irq: Interrupt number.
12536 * @dev_id: The device context pointer.
12537 *
12538 * This function is directly called from the PCI layer as an interrupt
12539 * service routine when device with SLI-4 interface spec is enabled with
12540 * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
12541 * ring event in the HBA. However, when the device is enabled with either
12542 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
12543 * device-level interrupt handler. When the PCI slot is in error recovery
12544 * or the HBA is undergoing initialization, the interrupt handler will not
12545 * process the interrupt. The SCSI FCP fast-path ring event are handled in
12546 * the intrrupt context. This function is called without any lock held.
12547 * It gets the hbalock to access and update SLI data structures. Note that,
12548 * the FCP EQ to FCP CQ are one-to-one map such that the FCP EQ index is
12549 * equal to that of FCP CQ index.
12550 *
James Smart67d12732012-08-03 12:36:13 -040012551 * The link attention and ELS ring attention events are handled
12552 * by the worker thread. The interrupt handler signals the worker thread
12553 * and returns for these events. This function is called without any lock
12554 * held. It gets the hbalock to access and update SLI data structures.
12555 *
James Smart4f774512009-05-22 14:52:35 -040012556 * This function returns IRQ_HANDLED when interrupt is handled else it
12557 * returns IRQ_NONE.
12558 **/
12559irqreturn_t
James Smart67d12732012-08-03 12:36:13 -040012560lpfc_sli4_hba_intr_handler(int irq, void *dev_id)
James Smart4f774512009-05-22 14:52:35 -040012561{
12562 struct lpfc_hba *phba;
12563 struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
12564 struct lpfc_queue *fpeq;
12565 struct lpfc_eqe *eqe;
12566 unsigned long iflag;
12567 int ecount = 0;
James Smart962bc512013-01-03 15:44:00 -050012568 int fcp_eqidx;
James Smart4f774512009-05-22 14:52:35 -040012569
12570 /* Get the driver's phba structure from the dev_id */
12571 fcp_eq_hdl = (struct lpfc_fcp_eq_hdl *)dev_id;
12572 phba = fcp_eq_hdl->phba;
12573 fcp_eqidx = fcp_eq_hdl->idx;
12574
12575 if (unlikely(!phba))
12576 return IRQ_NONE;
James Smart67d12732012-08-03 12:36:13 -040012577 if (unlikely(!phba->sli4_hba.hba_eq))
James Smart5350d872011-10-10 21:33:49 -040012578 return IRQ_NONE;
James Smart4f774512009-05-22 14:52:35 -040012579
12580 /* Get to the EQ struct associated with this vector */
James Smart67d12732012-08-03 12:36:13 -040012581 fpeq = phba->sli4_hba.hba_eq[fcp_eqidx];
James Smart2e90f4b2011-12-13 13:22:37 -050012582 if (unlikely(!fpeq))
12583 return IRQ_NONE;
James Smart4f774512009-05-22 14:52:35 -040012584
James Smartba20c852012-08-03 12:36:52 -040012585 if (lpfc_fcp_look_ahead) {
12586 if (atomic_dec_and_test(&fcp_eq_hdl->fcp_eq_in_use))
12587 lpfc_sli4_eq_clr_intr(fpeq);
12588 else {
12589 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
12590 return IRQ_NONE;
12591 }
12592 }
12593
James Smart4f774512009-05-22 14:52:35 -040012594 /* Check device state for handling interrupt */
12595 if (unlikely(lpfc_intr_state_check(phba))) {
James Smartb84daac2012-08-03 12:35:13 -040012596 fpeq->EQ_badstate++;
James Smart4f774512009-05-22 14:52:35 -040012597 /* Check again for link_state with lock held */
12598 spin_lock_irqsave(&phba->hbalock, iflag);
12599 if (phba->link_state < LPFC_LINK_DOWN)
12600 /* Flush, clear interrupt, and rearm the EQ */
12601 lpfc_sli4_eq_flush(phba, fpeq);
12602 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smartba20c852012-08-03 12:36:52 -040012603 if (lpfc_fcp_look_ahead)
12604 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
James Smart4f774512009-05-22 14:52:35 -040012605 return IRQ_NONE;
12606 }
12607
12608 /*
12609 * Process all the event on FCP fast-path EQ
12610 */
12611 while ((eqe = lpfc_sli4_eq_get(fpeq))) {
James Smart67d12732012-08-03 12:36:13 -040012612 lpfc_sli4_hba_handle_eqe(phba, eqe, fcp_eqidx);
James Smart73d91e52011-10-10 21:32:10 -040012613 if (!(++ecount % fpeq->entry_repost))
James Smart4f774512009-05-22 14:52:35 -040012614 lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_NOARM);
James Smartb84daac2012-08-03 12:35:13 -040012615 fpeq->EQ_processed++;
James Smart4f774512009-05-22 14:52:35 -040012616 }
12617
James Smartb84daac2012-08-03 12:35:13 -040012618 /* Track the max number of EQEs processed in 1 intr */
12619 if (ecount > fpeq->EQ_max_eqe)
12620 fpeq->EQ_max_eqe = ecount;
12621
James Smart4f774512009-05-22 14:52:35 -040012622 /* Always clear and re-arm the fast-path EQ */
12623 lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_REARM);
12624
12625 if (unlikely(ecount == 0)) {
James Smartb84daac2012-08-03 12:35:13 -040012626 fpeq->EQ_no_entry++;
James Smartba20c852012-08-03 12:36:52 -040012627
12628 if (lpfc_fcp_look_ahead) {
12629 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
12630 return IRQ_NONE;
12631 }
12632
James Smart4f774512009-05-22 14:52:35 -040012633 if (phba->intr_type == MSIX)
12634 /* MSI-X treated interrupt served as no EQ share INT */
12635 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12636 "0358 MSI-X interrupt with no EQE\n");
12637 else
12638 /* Non MSI-X treated on interrupt as EQ share INT */
12639 return IRQ_NONE;
12640 }
12641
James Smartba20c852012-08-03 12:36:52 -040012642 if (lpfc_fcp_look_ahead)
12643 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
James Smart4f774512009-05-22 14:52:35 -040012644 return IRQ_HANDLED;
12645} /* lpfc_sli4_fp_intr_handler */
12646
12647/**
12648 * lpfc_sli4_intr_handler - Device-level interrupt handler for SLI-4 device
12649 * @irq: Interrupt number.
12650 * @dev_id: The device context pointer.
12651 *
12652 * This function is the device-level interrupt handler to device with SLI-4
12653 * interface spec, called from the PCI layer when either MSI or Pin-IRQ
12654 * interrupt mode is enabled and there is an event in the HBA which requires
12655 * driver attention. This function invokes the slow-path interrupt attention
12656 * handling function and fast-path interrupt attention handling function in
12657 * turn to process the relevant HBA attention events. This function is called
12658 * without any lock held. It gets the hbalock to access and update SLI data
12659 * structures.
12660 *
12661 * This function returns IRQ_HANDLED when interrupt is handled, else it
12662 * returns IRQ_NONE.
12663 **/
12664irqreturn_t
12665lpfc_sli4_intr_handler(int irq, void *dev_id)
12666{
12667 struct lpfc_hba *phba;
James Smart67d12732012-08-03 12:36:13 -040012668 irqreturn_t hba_irq_rc;
12669 bool hba_handled = false;
James Smart962bc512013-01-03 15:44:00 -050012670 int fcp_eqidx;
James Smart4f774512009-05-22 14:52:35 -040012671
12672 /* Get the driver's phba structure from the dev_id */
12673 phba = (struct lpfc_hba *)dev_id;
12674
12675 if (unlikely(!phba))
12676 return IRQ_NONE;
12677
12678 /*
James Smart4f774512009-05-22 14:52:35 -040012679 * Invoke fast-path host attention interrupt handling as appropriate.
12680 */
James Smart67d12732012-08-03 12:36:13 -040012681 for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_io_channel; fcp_eqidx++) {
12682 hba_irq_rc = lpfc_sli4_hba_intr_handler(irq,
James Smart4f774512009-05-22 14:52:35 -040012683 &phba->sli4_hba.fcp_eq_hdl[fcp_eqidx]);
James Smart67d12732012-08-03 12:36:13 -040012684 if (hba_irq_rc == IRQ_HANDLED)
12685 hba_handled |= true;
James Smart4f774512009-05-22 14:52:35 -040012686 }
12687
James Smart1ba981f2014-02-20 09:56:45 -050012688 if (phba->cfg_fof) {
12689 hba_irq_rc = lpfc_sli4_fof_intr_handler(irq,
12690 &phba->sli4_hba.fcp_eq_hdl[0]);
12691 if (hba_irq_rc == IRQ_HANDLED)
12692 hba_handled |= true;
12693 }
12694
James Smart67d12732012-08-03 12:36:13 -040012695 return (hba_handled == true) ? IRQ_HANDLED : IRQ_NONE;
James Smart4f774512009-05-22 14:52:35 -040012696} /* lpfc_sli4_intr_handler */
12697
12698/**
12699 * lpfc_sli4_queue_free - free a queue structure and associated memory
12700 * @queue: The queue structure to free.
12701 *
Uwe Kleine-Königb5950762010-11-01 15:38:34 -040012702 * This function frees a queue structure and the DMAable memory used for
James Smart4f774512009-05-22 14:52:35 -040012703 * the host resident queue. This function must be called after destroying the
12704 * queue on the HBA.
12705 **/
12706void
12707lpfc_sli4_queue_free(struct lpfc_queue *queue)
12708{
12709 struct lpfc_dmabuf *dmabuf;
12710
12711 if (!queue)
12712 return;
12713
12714 while (!list_empty(&queue->page_list)) {
12715 list_remove_head(&queue->page_list, dmabuf, struct lpfc_dmabuf,
12716 list);
James Smart49198b32010-04-06 15:04:33 -040012717 dma_free_coherent(&queue->phba->pcidev->dev, SLI4_PAGE_SIZE,
James Smart4f774512009-05-22 14:52:35 -040012718 dmabuf->virt, dmabuf->phys);
12719 kfree(dmabuf);
12720 }
12721 kfree(queue);
12722 return;
12723}
12724
12725/**
12726 * lpfc_sli4_queue_alloc - Allocate and initialize a queue structure
12727 * @phba: The HBA that this queue is being created on.
12728 * @entry_size: The size of each queue entry for this queue.
12729 * @entry count: The number of entries that this queue will handle.
12730 *
12731 * This function allocates a queue structure and the DMAable memory used for
12732 * the host resident queue. This function must be called before creating the
12733 * queue on the HBA.
12734 **/
12735struct lpfc_queue *
12736lpfc_sli4_queue_alloc(struct lpfc_hba *phba, uint32_t entry_size,
12737 uint32_t entry_count)
12738{
12739 struct lpfc_queue *queue;
12740 struct lpfc_dmabuf *dmabuf;
12741 int x, total_qe_count;
12742 void *dma_pointer;
James Smartcb5172e2010-03-15 11:25:07 -040012743 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
James Smart4f774512009-05-22 14:52:35 -040012744
James Smartcb5172e2010-03-15 11:25:07 -040012745 if (!phba->sli4_hba.pc_sli4_params.supported)
12746 hw_page_size = SLI4_PAGE_SIZE;
12747
James Smart4f774512009-05-22 14:52:35 -040012748 queue = kzalloc(sizeof(struct lpfc_queue) +
12749 (sizeof(union sli4_qe) * entry_count), GFP_KERNEL);
12750 if (!queue)
12751 return NULL;
James Smartcb5172e2010-03-15 11:25:07 -040012752 queue->page_count = (ALIGN(entry_size * entry_count,
12753 hw_page_size))/hw_page_size;
James Smart4f774512009-05-22 14:52:35 -040012754 INIT_LIST_HEAD(&queue->list);
12755 INIT_LIST_HEAD(&queue->page_list);
12756 INIT_LIST_HEAD(&queue->child_list);
12757 for (x = 0, total_qe_count = 0; x < queue->page_count; x++) {
12758 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
12759 if (!dmabuf)
12760 goto out_fail;
12761 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
James Smartcb5172e2010-03-15 11:25:07 -040012762 hw_page_size, &dmabuf->phys,
James Smart4f774512009-05-22 14:52:35 -040012763 GFP_KERNEL);
12764 if (!dmabuf->virt) {
12765 kfree(dmabuf);
12766 goto out_fail;
12767 }
James Smartcb5172e2010-03-15 11:25:07 -040012768 memset(dmabuf->virt, 0, hw_page_size);
James Smart4f774512009-05-22 14:52:35 -040012769 dmabuf->buffer_tag = x;
12770 list_add_tail(&dmabuf->list, &queue->page_list);
12771 /* initialize queue's entry array */
12772 dma_pointer = dmabuf->virt;
12773 for (; total_qe_count < entry_count &&
James Smartcb5172e2010-03-15 11:25:07 -040012774 dma_pointer < (hw_page_size + dmabuf->virt);
James Smart4f774512009-05-22 14:52:35 -040012775 total_qe_count++, dma_pointer += entry_size) {
12776 queue->qe[total_qe_count].address = dma_pointer;
12777 }
12778 }
12779 queue->entry_size = entry_size;
12780 queue->entry_count = entry_count;
James Smart73d91e52011-10-10 21:32:10 -040012781
12782 /*
12783 * entry_repost is calculated based on the number of entries in the
12784 * queue. This works out except for RQs. If buffers are NOT initially
12785 * posted for every RQE, entry_repost should be adjusted accordingly.
12786 */
12787 queue->entry_repost = (entry_count >> 3);
12788 if (queue->entry_repost < LPFC_QUEUE_MIN_REPOST)
12789 queue->entry_repost = LPFC_QUEUE_MIN_REPOST;
James Smart4f774512009-05-22 14:52:35 -040012790 queue->phba = phba;
12791
12792 return queue;
12793out_fail:
12794 lpfc_sli4_queue_free(queue);
12795 return NULL;
12796}
12797
12798/**
James Smart962bc512013-01-03 15:44:00 -050012799 * lpfc_dual_chute_pci_bar_map - Map pci base address register to host memory
12800 * @phba: HBA structure that indicates port to create a queue on.
12801 * @pci_barset: PCI BAR set flag.
12802 *
12803 * This function shall perform iomap of the specified PCI BAR address to host
12804 * memory address if not already done so and return it. The returned host
12805 * memory address can be NULL.
12806 */
12807static void __iomem *
12808lpfc_dual_chute_pci_bar_map(struct lpfc_hba *phba, uint16_t pci_barset)
12809{
12810 struct pci_dev *pdev;
James Smart962bc512013-01-03 15:44:00 -050012811
12812 if (!phba->pcidev)
12813 return NULL;
12814 else
12815 pdev = phba->pcidev;
12816
12817 switch (pci_barset) {
12818 case WQ_PCI_BAR_0_AND_1:
James Smart962bc512013-01-03 15:44:00 -050012819 return phba->pci_bar0_memmap_p;
12820 case WQ_PCI_BAR_2_AND_3:
James Smart962bc512013-01-03 15:44:00 -050012821 return phba->pci_bar2_memmap_p;
12822 case WQ_PCI_BAR_4_AND_5:
James Smart962bc512013-01-03 15:44:00 -050012823 return phba->pci_bar4_memmap_p;
12824 default:
12825 break;
12826 }
12827 return NULL;
12828}
12829
12830/**
James Smart173edbb2012-06-12 13:54:50 -040012831 * lpfc_modify_fcp_eq_delay - Modify Delay Multiplier on FCP EQs
12832 * @phba: HBA structure that indicates port to create a queue on.
12833 * @startq: The starting FCP EQ to modify
12834 *
12835 * This function sends an MODIFY_EQ_DELAY mailbox command to the HBA.
12836 *
12837 * The @phba struct is used to send mailbox command to HBA. The @startq
12838 * is used to get the starting FCP EQ to change.
12839 * This function is asynchronous and will wait for the mailbox
12840 * command to finish before continuing.
12841 *
12842 * On success this function will return a zero. If unable to allocate enough
12843 * memory this function will return -ENOMEM. If the queue create mailbox command
12844 * fails this function will return -ENXIO.
12845 **/
12846uint32_t
12847lpfc_modify_fcp_eq_delay(struct lpfc_hba *phba, uint16_t startq)
12848{
12849 struct lpfc_mbx_modify_eq_delay *eq_delay;
12850 LPFC_MBOXQ_t *mbox;
12851 struct lpfc_queue *eq;
12852 int cnt, rc, length, status = 0;
12853 uint32_t shdr_status, shdr_add_status;
James Smartee020062012-09-29 11:28:52 -040012854 uint32_t result;
James Smart173edbb2012-06-12 13:54:50 -040012855 int fcp_eqidx;
12856 union lpfc_sli4_cfg_shdr *shdr;
12857 uint16_t dmult;
12858
James Smart67d12732012-08-03 12:36:13 -040012859 if (startq >= phba->cfg_fcp_io_channel)
James Smart173edbb2012-06-12 13:54:50 -040012860 return 0;
12861
12862 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
12863 if (!mbox)
12864 return -ENOMEM;
12865 length = (sizeof(struct lpfc_mbx_modify_eq_delay) -
12866 sizeof(struct lpfc_sli4_cfg_mhdr));
12867 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
12868 LPFC_MBOX_OPCODE_MODIFY_EQ_DELAY,
12869 length, LPFC_SLI4_MBX_EMBED);
12870 eq_delay = &mbox->u.mqe.un.eq_delay;
12871
12872 /* Calculate delay multiper from maximum interrupt per second */
James Smartee020062012-09-29 11:28:52 -040012873 result = phba->cfg_fcp_imax / phba->cfg_fcp_io_channel;
12874 if (result > LPFC_DMULT_CONST)
12875 dmult = 0;
12876 else
12877 dmult = LPFC_DMULT_CONST/result - 1;
James Smart173edbb2012-06-12 13:54:50 -040012878
12879 cnt = 0;
James Smart67d12732012-08-03 12:36:13 -040012880 for (fcp_eqidx = startq; fcp_eqidx < phba->cfg_fcp_io_channel;
James Smart173edbb2012-06-12 13:54:50 -040012881 fcp_eqidx++) {
James Smart67d12732012-08-03 12:36:13 -040012882 eq = phba->sli4_hba.hba_eq[fcp_eqidx];
James Smart173edbb2012-06-12 13:54:50 -040012883 if (!eq)
12884 continue;
12885 eq_delay->u.request.eq[cnt].eq_id = eq->queue_id;
12886 eq_delay->u.request.eq[cnt].phase = 0;
12887 eq_delay->u.request.eq[cnt].delay_multi = dmult;
12888 cnt++;
12889 if (cnt >= LPFC_MAX_EQ_DELAY)
12890 break;
12891 }
12892 eq_delay->u.request.num_eq = cnt;
12893
12894 mbox->vport = phba->pport;
12895 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
12896 mbox->context1 = NULL;
12897 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
12898 shdr = (union lpfc_sli4_cfg_shdr *) &eq_delay->header.cfg_shdr;
12899 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12900 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12901 if (shdr_status || shdr_add_status || rc) {
12902 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12903 "2512 MODIFY_EQ_DELAY mailbox failed with "
12904 "status x%x add_status x%x, mbx status x%x\n",
12905 shdr_status, shdr_add_status, rc);
12906 status = -ENXIO;
12907 }
12908 mempool_free(mbox, phba->mbox_mem_pool);
12909 return status;
12910}
12911
12912/**
James Smart4f774512009-05-22 14:52:35 -040012913 * lpfc_eq_create - Create an Event Queue on the HBA
12914 * @phba: HBA structure that indicates port to create a queue on.
12915 * @eq: The queue structure to use to create the event queue.
12916 * @imax: The maximum interrupt per second limit.
12917 *
12918 * This function creates an event queue, as detailed in @eq, on a port,
12919 * described by @phba by sending an EQ_CREATE mailbox command to the HBA.
12920 *
12921 * The @phba struct is used to send mailbox command to HBA. The @eq struct
12922 * is used to get the entry count and entry size that are necessary to
12923 * determine the number of pages to allocate and use for this queue. This
12924 * function will send the EQ_CREATE mailbox command to the HBA to setup the
12925 * event queue. This function is asynchronous and will wait for the mailbox
12926 * command to finish before continuing.
12927 *
12928 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040012929 * memory this function will return -ENOMEM. If the queue create mailbox command
12930 * fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040012931 **/
12932uint32_t
James Smartee020062012-09-29 11:28:52 -040012933lpfc_eq_create(struct lpfc_hba *phba, struct lpfc_queue *eq, uint32_t imax)
James Smart4f774512009-05-22 14:52:35 -040012934{
12935 struct lpfc_mbx_eq_create *eq_create;
12936 LPFC_MBOXQ_t *mbox;
12937 int rc, length, status = 0;
12938 struct lpfc_dmabuf *dmabuf;
12939 uint32_t shdr_status, shdr_add_status;
12940 union lpfc_sli4_cfg_shdr *shdr;
12941 uint16_t dmult;
James Smart49198b32010-04-06 15:04:33 -040012942 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
12943
James Smart2e90f4b2011-12-13 13:22:37 -050012944 /* sanity check on queue memory */
12945 if (!eq)
12946 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040012947 if (!phba->sli4_hba.pc_sli4_params.supported)
12948 hw_page_size = SLI4_PAGE_SIZE;
James Smart4f774512009-05-22 14:52:35 -040012949
12950 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
12951 if (!mbox)
12952 return -ENOMEM;
12953 length = (sizeof(struct lpfc_mbx_eq_create) -
12954 sizeof(struct lpfc_sli4_cfg_mhdr));
12955 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
12956 LPFC_MBOX_OPCODE_EQ_CREATE,
12957 length, LPFC_SLI4_MBX_EMBED);
12958 eq_create = &mbox->u.mqe.un.eq_create;
12959 bf_set(lpfc_mbx_eq_create_num_pages, &eq_create->u.request,
12960 eq->page_count);
12961 bf_set(lpfc_eq_context_size, &eq_create->u.request.context,
12962 LPFC_EQE_SIZE);
12963 bf_set(lpfc_eq_context_valid, &eq_create->u.request.context, 1);
12964 /* Calculate delay multiper from maximum interrupt per second */
James Smartee020062012-09-29 11:28:52 -040012965 if (imax > LPFC_DMULT_CONST)
12966 dmult = 0;
12967 else
12968 dmult = LPFC_DMULT_CONST/imax - 1;
James Smart4f774512009-05-22 14:52:35 -040012969 bf_set(lpfc_eq_context_delay_multi, &eq_create->u.request.context,
12970 dmult);
12971 switch (eq->entry_count) {
12972 default:
12973 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12974 "0360 Unsupported EQ count. (%d)\n",
12975 eq->entry_count);
12976 if (eq->entry_count < 256)
12977 return -EINVAL;
12978 /* otherwise default to smallest count (drop through) */
12979 case 256:
12980 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
12981 LPFC_EQ_CNT_256);
12982 break;
12983 case 512:
12984 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
12985 LPFC_EQ_CNT_512);
12986 break;
12987 case 1024:
12988 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
12989 LPFC_EQ_CNT_1024);
12990 break;
12991 case 2048:
12992 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
12993 LPFC_EQ_CNT_2048);
12994 break;
12995 case 4096:
12996 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
12997 LPFC_EQ_CNT_4096);
12998 break;
12999 }
13000 list_for_each_entry(dmabuf, &eq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040013001 memset(dmabuf->virt, 0, hw_page_size);
James Smart4f774512009-05-22 14:52:35 -040013002 eq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
13003 putPaddrLow(dmabuf->phys);
13004 eq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
13005 putPaddrHigh(dmabuf->phys);
13006 }
13007 mbox->vport = phba->pport;
13008 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
13009 mbox->context1 = NULL;
13010 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13011 shdr = (union lpfc_sli4_cfg_shdr *) &eq_create->header.cfg_shdr;
13012 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13013 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13014 if (shdr_status || shdr_add_status || rc) {
13015 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13016 "2500 EQ_CREATE mailbox failed with "
13017 "status x%x add_status x%x, mbx status x%x\n",
13018 shdr_status, shdr_add_status, rc);
13019 status = -ENXIO;
13020 }
13021 eq->type = LPFC_EQ;
13022 eq->subtype = LPFC_NONE;
13023 eq->queue_id = bf_get(lpfc_mbx_eq_create_q_id, &eq_create->u.response);
13024 if (eq->queue_id == 0xFFFF)
13025 status = -ENXIO;
13026 eq->host_index = 0;
13027 eq->hba_index = 0;
13028
James Smart8fa38512009-07-19 10:01:03 -040013029 mempool_free(mbox, phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040013030 return status;
13031}
13032
13033/**
13034 * lpfc_cq_create - Create a Completion Queue on the HBA
13035 * @phba: HBA structure that indicates port to create a queue on.
13036 * @cq: The queue structure to use to create the completion queue.
13037 * @eq: The event queue to bind this completion queue to.
13038 *
13039 * This function creates a completion queue, as detailed in @wq, on a port,
13040 * described by @phba by sending a CQ_CREATE mailbox command to the HBA.
13041 *
13042 * The @phba struct is used to send mailbox command to HBA. The @cq struct
13043 * is used to get the entry count and entry size that are necessary to
13044 * determine the number of pages to allocate and use for this queue. The @eq
13045 * is used to indicate which event queue to bind this completion queue to. This
13046 * function will send the CQ_CREATE mailbox command to the HBA to setup the
13047 * completion queue. This function is asynchronous and will wait for the mailbox
13048 * command to finish before continuing.
13049 *
13050 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040013051 * memory this function will return -ENOMEM. If the queue create mailbox command
13052 * fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040013053 **/
13054uint32_t
13055lpfc_cq_create(struct lpfc_hba *phba, struct lpfc_queue *cq,
13056 struct lpfc_queue *eq, uint32_t type, uint32_t subtype)
13057{
13058 struct lpfc_mbx_cq_create *cq_create;
13059 struct lpfc_dmabuf *dmabuf;
13060 LPFC_MBOXQ_t *mbox;
13061 int rc, length, status = 0;
13062 uint32_t shdr_status, shdr_add_status;
13063 union lpfc_sli4_cfg_shdr *shdr;
James Smart49198b32010-04-06 15:04:33 -040013064 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
13065
James Smart2e90f4b2011-12-13 13:22:37 -050013066 /* sanity check on queue memory */
13067 if (!cq || !eq)
13068 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040013069 if (!phba->sli4_hba.pc_sli4_params.supported)
13070 hw_page_size = SLI4_PAGE_SIZE;
13071
James Smart4f774512009-05-22 14:52:35 -040013072 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13073 if (!mbox)
13074 return -ENOMEM;
13075 length = (sizeof(struct lpfc_mbx_cq_create) -
13076 sizeof(struct lpfc_sli4_cfg_mhdr));
13077 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13078 LPFC_MBOX_OPCODE_CQ_CREATE,
13079 length, LPFC_SLI4_MBX_EMBED);
13080 cq_create = &mbox->u.mqe.un.cq_create;
James Smart5a6f1332011-03-11 16:05:35 -050013081 shdr = (union lpfc_sli4_cfg_shdr *) &cq_create->header.cfg_shdr;
James Smart4f774512009-05-22 14:52:35 -040013082 bf_set(lpfc_mbx_cq_create_num_pages, &cq_create->u.request,
13083 cq->page_count);
13084 bf_set(lpfc_cq_context_event, &cq_create->u.request.context, 1);
13085 bf_set(lpfc_cq_context_valid, &cq_create->u.request.context, 1);
James Smart5a6f1332011-03-11 16:05:35 -050013086 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13087 phba->sli4_hba.pc_sli4_params.cqv);
13088 if (phba->sli4_hba.pc_sli4_params.cqv == LPFC_Q_CREATE_VERSION_2) {
James Smartc31098c2011-04-16 11:03:33 -040013089 /* FW only supports 1. Should be PAGE_SIZE/SLI4_PAGE_SIZE */
13090 bf_set(lpfc_mbx_cq_create_page_size, &cq_create->u.request, 1);
James Smart5a6f1332011-03-11 16:05:35 -050013091 bf_set(lpfc_cq_eq_id_2, &cq_create->u.request.context,
13092 eq->queue_id);
13093 } else {
13094 bf_set(lpfc_cq_eq_id, &cq_create->u.request.context,
13095 eq->queue_id);
13096 }
James Smart4f774512009-05-22 14:52:35 -040013097 switch (cq->entry_count) {
13098 default:
13099 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13100 "0361 Unsupported CQ count. (%d)\n",
13101 cq->entry_count);
James Smart4f4c1862012-06-12 13:54:02 -040013102 if (cq->entry_count < 256) {
13103 status = -EINVAL;
13104 goto out;
13105 }
James Smart4f774512009-05-22 14:52:35 -040013106 /* otherwise default to smallest count (drop through) */
13107 case 256:
13108 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
13109 LPFC_CQ_CNT_256);
13110 break;
13111 case 512:
13112 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
13113 LPFC_CQ_CNT_512);
13114 break;
13115 case 1024:
13116 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
13117 LPFC_CQ_CNT_1024);
13118 break;
13119 }
13120 list_for_each_entry(dmabuf, &cq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040013121 memset(dmabuf->virt, 0, hw_page_size);
James Smart4f774512009-05-22 14:52:35 -040013122 cq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
13123 putPaddrLow(dmabuf->phys);
13124 cq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
13125 putPaddrHigh(dmabuf->phys);
13126 }
13127 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13128
13129 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart4f774512009-05-22 14:52:35 -040013130 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13131 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13132 if (shdr_status || shdr_add_status || rc) {
13133 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13134 "2501 CQ_CREATE mailbox failed with "
13135 "status x%x add_status x%x, mbx status x%x\n",
13136 shdr_status, shdr_add_status, rc);
13137 status = -ENXIO;
13138 goto out;
13139 }
13140 cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
13141 if (cq->queue_id == 0xFFFF) {
13142 status = -ENXIO;
13143 goto out;
13144 }
13145 /* link the cq onto the parent eq child list */
13146 list_add_tail(&cq->list, &eq->child_list);
13147 /* Set up completion queue's type and subtype */
13148 cq->type = type;
13149 cq->subtype = subtype;
13150 cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
James Smart2a622bf2011-02-16 12:40:06 -050013151 cq->assoc_qid = eq->queue_id;
James Smart4f774512009-05-22 14:52:35 -040013152 cq->host_index = 0;
13153 cq->hba_index = 0;
James Smart4f774512009-05-22 14:52:35 -040013154
James Smart8fa38512009-07-19 10:01:03 -040013155out:
13156 mempool_free(mbox, phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040013157 return status;
13158}
13159
13160/**
James Smartb19a0612010-04-06 14:48:51 -040013161 * lpfc_mq_create_fb_init - Send MCC_CREATE without async events registration
James Smart04c68492009-05-22 14:52:52 -040013162 * @phba: HBA structure that indicates port to create a queue on.
13163 * @mq: The queue structure to use to create the mailbox queue.
James Smartb19a0612010-04-06 14:48:51 -040013164 * @mbox: An allocated pointer to type LPFC_MBOXQ_t
13165 * @cq: The completion queue to associate with this cq.
James Smart04c68492009-05-22 14:52:52 -040013166 *
James Smartb19a0612010-04-06 14:48:51 -040013167 * This function provides failback (fb) functionality when the
13168 * mq_create_ext fails on older FW generations. It's purpose is identical
13169 * to mq_create_ext otherwise.
James Smart04c68492009-05-22 14:52:52 -040013170 *
James Smartb19a0612010-04-06 14:48:51 -040013171 * This routine cannot fail as all attributes were previously accessed and
13172 * initialized in mq_create_ext.
James Smart04c68492009-05-22 14:52:52 -040013173 **/
James Smartb19a0612010-04-06 14:48:51 -040013174static void
13175lpfc_mq_create_fb_init(struct lpfc_hba *phba, struct lpfc_queue *mq,
13176 LPFC_MBOXQ_t *mbox, struct lpfc_queue *cq)
James Smart04c68492009-05-22 14:52:52 -040013177{
13178 struct lpfc_mbx_mq_create *mq_create;
13179 struct lpfc_dmabuf *dmabuf;
James Smartb19a0612010-04-06 14:48:51 -040013180 int length;
James Smart04c68492009-05-22 14:52:52 -040013181
James Smart04c68492009-05-22 14:52:52 -040013182 length = (sizeof(struct lpfc_mbx_mq_create) -
13183 sizeof(struct lpfc_sli4_cfg_mhdr));
13184 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13185 LPFC_MBOX_OPCODE_MQ_CREATE,
13186 length, LPFC_SLI4_MBX_EMBED);
13187 mq_create = &mbox->u.mqe.un.mq_create;
13188 bf_set(lpfc_mbx_mq_create_num_pages, &mq_create->u.request,
James Smartb19a0612010-04-06 14:48:51 -040013189 mq->page_count);
James Smart04c68492009-05-22 14:52:52 -040013190 bf_set(lpfc_mq_context_cq_id, &mq_create->u.request.context,
James Smartb19a0612010-04-06 14:48:51 -040013191 cq->queue_id);
James Smart04c68492009-05-22 14:52:52 -040013192 bf_set(lpfc_mq_context_valid, &mq_create->u.request.context, 1);
13193 switch (mq->entry_count) {
James Smart04c68492009-05-22 14:52:52 -040013194 case 16:
James Smart5a6f1332011-03-11 16:05:35 -050013195 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
13196 LPFC_MQ_RING_SIZE_16);
James Smart04c68492009-05-22 14:52:52 -040013197 break;
13198 case 32:
James Smart5a6f1332011-03-11 16:05:35 -050013199 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
13200 LPFC_MQ_RING_SIZE_32);
James Smart04c68492009-05-22 14:52:52 -040013201 break;
13202 case 64:
James Smart5a6f1332011-03-11 16:05:35 -050013203 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
13204 LPFC_MQ_RING_SIZE_64);
James Smart04c68492009-05-22 14:52:52 -040013205 break;
13206 case 128:
James Smart5a6f1332011-03-11 16:05:35 -050013207 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
13208 LPFC_MQ_RING_SIZE_128);
James Smart04c68492009-05-22 14:52:52 -040013209 break;
13210 }
13211 list_for_each_entry(dmabuf, &mq->page_list, list) {
13212 mq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
James Smartb19a0612010-04-06 14:48:51 -040013213 putPaddrLow(dmabuf->phys);
James Smart04c68492009-05-22 14:52:52 -040013214 mq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
James Smartb19a0612010-04-06 14:48:51 -040013215 putPaddrHigh(dmabuf->phys);
13216 }
13217}
13218
13219/**
13220 * lpfc_mq_create - Create a mailbox Queue on the HBA
13221 * @phba: HBA structure that indicates port to create a queue on.
13222 * @mq: The queue structure to use to create the mailbox queue.
13223 * @cq: The completion queue to associate with this cq.
13224 * @subtype: The queue's subtype.
13225 *
13226 * This function creates a mailbox queue, as detailed in @mq, on a port,
13227 * described by @phba by sending a MQ_CREATE mailbox command to the HBA.
13228 *
13229 * The @phba struct is used to send mailbox command to HBA. The @cq struct
13230 * is used to get the entry count and entry size that are necessary to
13231 * determine the number of pages to allocate and use for this queue. This
13232 * function will send the MQ_CREATE mailbox command to the HBA to setup the
13233 * mailbox queue. This function is asynchronous and will wait for the mailbox
13234 * command to finish before continuing.
13235 *
13236 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040013237 * memory this function will return -ENOMEM. If the queue create mailbox command
13238 * fails this function will return -ENXIO.
James Smartb19a0612010-04-06 14:48:51 -040013239 **/
13240int32_t
13241lpfc_mq_create(struct lpfc_hba *phba, struct lpfc_queue *mq,
13242 struct lpfc_queue *cq, uint32_t subtype)
13243{
13244 struct lpfc_mbx_mq_create *mq_create;
13245 struct lpfc_mbx_mq_create_ext *mq_create_ext;
13246 struct lpfc_dmabuf *dmabuf;
13247 LPFC_MBOXQ_t *mbox;
13248 int rc, length, status = 0;
13249 uint32_t shdr_status, shdr_add_status;
13250 union lpfc_sli4_cfg_shdr *shdr;
James Smart49198b32010-04-06 15:04:33 -040013251 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
James Smartb19a0612010-04-06 14:48:51 -040013252
James Smart2e90f4b2011-12-13 13:22:37 -050013253 /* sanity check on queue memory */
13254 if (!mq || !cq)
13255 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040013256 if (!phba->sli4_hba.pc_sli4_params.supported)
13257 hw_page_size = SLI4_PAGE_SIZE;
James Smartb19a0612010-04-06 14:48:51 -040013258
13259 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13260 if (!mbox)
13261 return -ENOMEM;
13262 length = (sizeof(struct lpfc_mbx_mq_create_ext) -
13263 sizeof(struct lpfc_sli4_cfg_mhdr));
13264 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13265 LPFC_MBOX_OPCODE_MQ_CREATE_EXT,
13266 length, LPFC_SLI4_MBX_EMBED);
13267
13268 mq_create_ext = &mbox->u.mqe.un.mq_create_ext;
James Smart5a6f1332011-03-11 16:05:35 -050013269 shdr = (union lpfc_sli4_cfg_shdr *) &mq_create_ext->header.cfg_shdr;
James Smart70f3c072010-12-15 17:57:33 -050013270 bf_set(lpfc_mbx_mq_create_ext_num_pages,
13271 &mq_create_ext->u.request, mq->page_count);
13272 bf_set(lpfc_mbx_mq_create_ext_async_evt_link,
13273 &mq_create_ext->u.request, 1);
13274 bf_set(lpfc_mbx_mq_create_ext_async_evt_fip,
James Smartb19a0612010-04-06 14:48:51 -040013275 &mq_create_ext->u.request, 1);
13276 bf_set(lpfc_mbx_mq_create_ext_async_evt_group5,
13277 &mq_create_ext->u.request, 1);
James Smart70f3c072010-12-15 17:57:33 -050013278 bf_set(lpfc_mbx_mq_create_ext_async_evt_fc,
13279 &mq_create_ext->u.request, 1);
13280 bf_set(lpfc_mbx_mq_create_ext_async_evt_sli,
13281 &mq_create_ext->u.request, 1);
James Smartb19a0612010-04-06 14:48:51 -040013282 bf_set(lpfc_mq_context_valid, &mq_create_ext->u.request.context, 1);
James Smart5a6f1332011-03-11 16:05:35 -050013283 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13284 phba->sli4_hba.pc_sli4_params.mqv);
13285 if (phba->sli4_hba.pc_sli4_params.mqv == LPFC_Q_CREATE_VERSION_1)
13286 bf_set(lpfc_mbx_mq_create_ext_cq_id, &mq_create_ext->u.request,
13287 cq->queue_id);
13288 else
13289 bf_set(lpfc_mq_context_cq_id, &mq_create_ext->u.request.context,
13290 cq->queue_id);
James Smartb19a0612010-04-06 14:48:51 -040013291 switch (mq->entry_count) {
13292 default:
13293 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13294 "0362 Unsupported MQ count. (%d)\n",
13295 mq->entry_count);
James Smart4f4c1862012-06-12 13:54:02 -040013296 if (mq->entry_count < 16) {
13297 status = -EINVAL;
13298 goto out;
13299 }
James Smartb19a0612010-04-06 14:48:51 -040013300 /* otherwise default to smallest count (drop through) */
13301 case 16:
James Smart5a6f1332011-03-11 16:05:35 -050013302 bf_set(lpfc_mq_context_ring_size,
13303 &mq_create_ext->u.request.context,
13304 LPFC_MQ_RING_SIZE_16);
James Smartb19a0612010-04-06 14:48:51 -040013305 break;
13306 case 32:
James Smart5a6f1332011-03-11 16:05:35 -050013307 bf_set(lpfc_mq_context_ring_size,
13308 &mq_create_ext->u.request.context,
13309 LPFC_MQ_RING_SIZE_32);
James Smartb19a0612010-04-06 14:48:51 -040013310 break;
13311 case 64:
James Smart5a6f1332011-03-11 16:05:35 -050013312 bf_set(lpfc_mq_context_ring_size,
13313 &mq_create_ext->u.request.context,
13314 LPFC_MQ_RING_SIZE_64);
James Smartb19a0612010-04-06 14:48:51 -040013315 break;
13316 case 128:
James Smart5a6f1332011-03-11 16:05:35 -050013317 bf_set(lpfc_mq_context_ring_size,
13318 &mq_create_ext->u.request.context,
13319 LPFC_MQ_RING_SIZE_128);
James Smartb19a0612010-04-06 14:48:51 -040013320 break;
13321 }
13322 list_for_each_entry(dmabuf, &mq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040013323 memset(dmabuf->virt, 0, hw_page_size);
James Smartb19a0612010-04-06 14:48:51 -040013324 mq_create_ext->u.request.page[dmabuf->buffer_tag].addr_lo =
13325 putPaddrLow(dmabuf->phys);
13326 mq_create_ext->u.request.page[dmabuf->buffer_tag].addr_hi =
James Smart04c68492009-05-22 14:52:52 -040013327 putPaddrHigh(dmabuf->phys);
13328 }
13329 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
James Smartb19a0612010-04-06 14:48:51 -040013330 mq->queue_id = bf_get(lpfc_mbx_mq_create_q_id,
13331 &mq_create_ext->u.response);
13332 if (rc != MBX_SUCCESS) {
13333 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
13334 "2795 MQ_CREATE_EXT failed with "
13335 "status x%x. Failback to MQ_CREATE.\n",
13336 rc);
13337 lpfc_mq_create_fb_init(phba, mq, mbox, cq);
13338 mq_create = &mbox->u.mqe.un.mq_create;
13339 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13340 shdr = (union lpfc_sli4_cfg_shdr *) &mq_create->header.cfg_shdr;
13341 mq->queue_id = bf_get(lpfc_mbx_mq_create_q_id,
13342 &mq_create->u.response);
13343 }
13344
James Smart04c68492009-05-22 14:52:52 -040013345 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart04c68492009-05-22 14:52:52 -040013346 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13347 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13348 if (shdr_status || shdr_add_status || rc) {
13349 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13350 "2502 MQ_CREATE mailbox failed with "
13351 "status x%x add_status x%x, mbx status x%x\n",
13352 shdr_status, shdr_add_status, rc);
13353 status = -ENXIO;
13354 goto out;
13355 }
James Smart04c68492009-05-22 14:52:52 -040013356 if (mq->queue_id == 0xFFFF) {
13357 status = -ENXIO;
13358 goto out;
13359 }
13360 mq->type = LPFC_MQ;
James Smart2a622bf2011-02-16 12:40:06 -050013361 mq->assoc_qid = cq->queue_id;
James Smart04c68492009-05-22 14:52:52 -040013362 mq->subtype = subtype;
13363 mq->host_index = 0;
13364 mq->hba_index = 0;
13365
13366 /* link the mq onto the parent cq child list */
13367 list_add_tail(&mq->list, &cq->child_list);
13368out:
James Smart8fa38512009-07-19 10:01:03 -040013369 mempool_free(mbox, phba->mbox_mem_pool);
James Smart04c68492009-05-22 14:52:52 -040013370 return status;
13371}
13372
13373/**
James Smart4f774512009-05-22 14:52:35 -040013374 * lpfc_wq_create - Create a Work Queue on the HBA
13375 * @phba: HBA structure that indicates port to create a queue on.
13376 * @wq: The queue structure to use to create the work queue.
13377 * @cq: The completion queue to bind this work queue to.
13378 * @subtype: The subtype of the work queue indicating its functionality.
13379 *
13380 * This function creates a work queue, as detailed in @wq, on a port, described
13381 * by @phba by sending a WQ_CREATE mailbox command to the HBA.
13382 *
13383 * The @phba struct is used to send mailbox command to HBA. The @wq struct
13384 * is used to get the entry count and entry size that are necessary to
13385 * determine the number of pages to allocate and use for this queue. The @cq
13386 * is used to indicate which completion queue to bind this work queue to. This
13387 * function will send the WQ_CREATE mailbox command to the HBA to setup the
13388 * work queue. This function is asynchronous and will wait for the mailbox
13389 * command to finish before continuing.
13390 *
13391 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040013392 * memory this function will return -ENOMEM. If the queue create mailbox command
13393 * fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040013394 **/
13395uint32_t
13396lpfc_wq_create(struct lpfc_hba *phba, struct lpfc_queue *wq,
13397 struct lpfc_queue *cq, uint32_t subtype)
13398{
13399 struct lpfc_mbx_wq_create *wq_create;
13400 struct lpfc_dmabuf *dmabuf;
13401 LPFC_MBOXQ_t *mbox;
13402 int rc, length, status = 0;
13403 uint32_t shdr_status, shdr_add_status;
13404 union lpfc_sli4_cfg_shdr *shdr;
James Smart49198b32010-04-06 15:04:33 -040013405 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
James Smart5a6f1332011-03-11 16:05:35 -050013406 struct dma_address *page;
James Smart962bc512013-01-03 15:44:00 -050013407 void __iomem *bar_memmap_p;
13408 uint32_t db_offset;
13409 uint16_t pci_barset;
James Smart49198b32010-04-06 15:04:33 -040013410
James Smart2e90f4b2011-12-13 13:22:37 -050013411 /* sanity check on queue memory */
13412 if (!wq || !cq)
13413 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040013414 if (!phba->sli4_hba.pc_sli4_params.supported)
13415 hw_page_size = SLI4_PAGE_SIZE;
James Smart4f774512009-05-22 14:52:35 -040013416
13417 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13418 if (!mbox)
13419 return -ENOMEM;
13420 length = (sizeof(struct lpfc_mbx_wq_create) -
13421 sizeof(struct lpfc_sli4_cfg_mhdr));
13422 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13423 LPFC_MBOX_OPCODE_FCOE_WQ_CREATE,
13424 length, LPFC_SLI4_MBX_EMBED);
13425 wq_create = &mbox->u.mqe.un.wq_create;
James Smart5a6f1332011-03-11 16:05:35 -050013426 shdr = (union lpfc_sli4_cfg_shdr *) &wq_create->header.cfg_shdr;
James Smart4f774512009-05-22 14:52:35 -040013427 bf_set(lpfc_mbx_wq_create_num_pages, &wq_create->u.request,
13428 wq->page_count);
13429 bf_set(lpfc_mbx_wq_create_cq_id, &wq_create->u.request,
13430 cq->queue_id);
James Smart0c651872013-07-15 18:33:23 -040013431
13432 /* wqv is the earliest version supported, NOT the latest */
James Smart5a6f1332011-03-11 16:05:35 -050013433 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13434 phba->sli4_hba.pc_sli4_params.wqv);
James Smart962bc512013-01-03 15:44:00 -050013435
James Smart0c651872013-07-15 18:33:23 -040013436 switch (phba->sli4_hba.pc_sli4_params.wqv) {
13437 case LPFC_Q_CREATE_VERSION_0:
13438 switch (wq->entry_size) {
13439 default:
13440 case 64:
13441 /* Nothing to do, version 0 ONLY supports 64 byte */
13442 page = wq_create->u.request.page;
13443 break;
13444 case 128:
13445 if (!(phba->sli4_hba.pc_sli4_params.wqsize &
13446 LPFC_WQ_SZ128_SUPPORT)) {
13447 status = -ERANGE;
13448 goto out;
13449 }
13450 /* If we get here the HBA MUST also support V1 and
13451 * we MUST use it
13452 */
13453 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13454 LPFC_Q_CREATE_VERSION_1);
13455
13456 bf_set(lpfc_mbx_wq_create_wqe_count,
13457 &wq_create->u.request_1, wq->entry_count);
13458 bf_set(lpfc_mbx_wq_create_wqe_size,
13459 &wq_create->u.request_1,
13460 LPFC_WQ_WQE_SIZE_128);
13461 bf_set(lpfc_mbx_wq_create_page_size,
13462 &wq_create->u.request_1,
13463 (PAGE_SIZE/SLI4_PAGE_SIZE));
13464 page = wq_create->u.request_1.page;
13465 break;
13466 }
13467 break;
13468 case LPFC_Q_CREATE_VERSION_1:
James Smart5a6f1332011-03-11 16:05:35 -050013469 bf_set(lpfc_mbx_wq_create_wqe_count, &wq_create->u.request_1,
13470 wq->entry_count);
13471 switch (wq->entry_size) {
13472 default:
13473 case 64:
13474 bf_set(lpfc_mbx_wq_create_wqe_size,
13475 &wq_create->u.request_1,
13476 LPFC_WQ_WQE_SIZE_64);
13477 break;
13478 case 128:
James Smart0c651872013-07-15 18:33:23 -040013479 if (!(phba->sli4_hba.pc_sli4_params.wqsize &
13480 LPFC_WQ_SZ128_SUPPORT)) {
13481 status = -ERANGE;
13482 goto out;
13483 }
James Smart5a6f1332011-03-11 16:05:35 -050013484 bf_set(lpfc_mbx_wq_create_wqe_size,
13485 &wq_create->u.request_1,
13486 LPFC_WQ_WQE_SIZE_128);
13487 break;
13488 }
13489 bf_set(lpfc_mbx_wq_create_page_size, &wq_create->u.request_1,
13490 (PAGE_SIZE/SLI4_PAGE_SIZE));
13491 page = wq_create->u.request_1.page;
James Smart0c651872013-07-15 18:33:23 -040013492 break;
13493 default:
13494 status = -ERANGE;
13495 goto out;
James Smart5a6f1332011-03-11 16:05:35 -050013496 }
James Smart0c651872013-07-15 18:33:23 -040013497
James Smart4f774512009-05-22 14:52:35 -040013498 list_for_each_entry(dmabuf, &wq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040013499 memset(dmabuf->virt, 0, hw_page_size);
James Smart5a6f1332011-03-11 16:05:35 -050013500 page[dmabuf->buffer_tag].addr_lo = putPaddrLow(dmabuf->phys);
13501 page[dmabuf->buffer_tag].addr_hi = putPaddrHigh(dmabuf->phys);
James Smart4f774512009-05-22 14:52:35 -040013502 }
James Smart962bc512013-01-03 15:44:00 -050013503
13504 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
13505 bf_set(lpfc_mbx_wq_create_dua, &wq_create->u.request, 1);
13506
James Smart4f774512009-05-22 14:52:35 -040013507 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13508 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart4f774512009-05-22 14:52:35 -040013509 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13510 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13511 if (shdr_status || shdr_add_status || rc) {
13512 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13513 "2503 WQ_CREATE mailbox failed with "
13514 "status x%x add_status x%x, mbx status x%x\n",
13515 shdr_status, shdr_add_status, rc);
13516 status = -ENXIO;
13517 goto out;
13518 }
13519 wq->queue_id = bf_get(lpfc_mbx_wq_create_q_id, &wq_create->u.response);
13520 if (wq->queue_id == 0xFFFF) {
13521 status = -ENXIO;
13522 goto out;
13523 }
James Smart962bc512013-01-03 15:44:00 -050013524 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE) {
13525 wq->db_format = bf_get(lpfc_mbx_wq_create_db_format,
13526 &wq_create->u.response);
13527 if ((wq->db_format != LPFC_DB_LIST_FORMAT) &&
13528 (wq->db_format != LPFC_DB_RING_FORMAT)) {
13529 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13530 "3265 WQ[%d] doorbell format not "
13531 "supported: x%x\n", wq->queue_id,
13532 wq->db_format);
13533 status = -EINVAL;
13534 goto out;
13535 }
13536 pci_barset = bf_get(lpfc_mbx_wq_create_bar_set,
13537 &wq_create->u.response);
13538 bar_memmap_p = lpfc_dual_chute_pci_bar_map(phba, pci_barset);
13539 if (!bar_memmap_p) {
13540 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13541 "3263 WQ[%d] failed to memmap pci "
13542 "barset:x%x\n", wq->queue_id,
13543 pci_barset);
13544 status = -ENOMEM;
13545 goto out;
13546 }
13547 db_offset = wq_create->u.response.doorbell_offset;
13548 if ((db_offset != LPFC_ULP0_WQ_DOORBELL) &&
13549 (db_offset != LPFC_ULP1_WQ_DOORBELL)) {
13550 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13551 "3252 WQ[%d] doorbell offset not "
13552 "supported: x%x\n", wq->queue_id,
13553 db_offset);
13554 status = -EINVAL;
13555 goto out;
13556 }
13557 wq->db_regaddr = bar_memmap_p + db_offset;
13558 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarta22e7db2013-04-17 20:16:37 -040013559 "3264 WQ[%d]: barset:x%x, offset:x%x, "
13560 "format:x%x\n", wq->queue_id, pci_barset,
13561 db_offset, wq->db_format);
James Smart962bc512013-01-03 15:44:00 -050013562 } else {
13563 wq->db_format = LPFC_DB_LIST_FORMAT;
13564 wq->db_regaddr = phba->sli4_hba.WQDBregaddr;
13565 }
James Smart4f774512009-05-22 14:52:35 -040013566 wq->type = LPFC_WQ;
James Smart2a622bf2011-02-16 12:40:06 -050013567 wq->assoc_qid = cq->queue_id;
James Smart4f774512009-05-22 14:52:35 -040013568 wq->subtype = subtype;
13569 wq->host_index = 0;
13570 wq->hba_index = 0;
James Smartff78d8f2011-12-13 13:21:35 -050013571 wq->entry_repost = LPFC_RELEASE_NOTIFICATION_INTERVAL;
James Smart4f774512009-05-22 14:52:35 -040013572
13573 /* link the wq onto the parent cq child list */
13574 list_add_tail(&wq->list, &cq->child_list);
13575out:
James Smart8fa38512009-07-19 10:01:03 -040013576 mempool_free(mbox, phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040013577 return status;
13578}
13579
13580/**
James Smart73d91e52011-10-10 21:32:10 -040013581 * lpfc_rq_adjust_repost - Adjust entry_repost for an RQ
13582 * @phba: HBA structure that indicates port to create a queue on.
13583 * @rq: The queue structure to use for the receive queue.
13584 * @qno: The associated HBQ number
13585 *
13586 *
13587 * For SLI4 we need to adjust the RQ repost value based on
13588 * the number of buffers that are initially posted to the RQ.
13589 */
13590void
13591lpfc_rq_adjust_repost(struct lpfc_hba *phba, struct lpfc_queue *rq, int qno)
13592{
13593 uint32_t cnt;
13594
James Smart2e90f4b2011-12-13 13:22:37 -050013595 /* sanity check on queue memory */
13596 if (!rq)
13597 return;
James Smart73d91e52011-10-10 21:32:10 -040013598 cnt = lpfc_hbq_defs[qno]->entry_count;
13599
13600 /* Recalc repost for RQs based on buffers initially posted */
13601 cnt = (cnt >> 3);
13602 if (cnt < LPFC_QUEUE_MIN_REPOST)
13603 cnt = LPFC_QUEUE_MIN_REPOST;
13604
13605 rq->entry_repost = cnt;
13606}
13607
13608/**
James Smart4f774512009-05-22 14:52:35 -040013609 * lpfc_rq_create - Create a Receive Queue on the HBA
13610 * @phba: HBA structure that indicates port to create a queue on.
13611 * @hrq: The queue structure to use to create the header receive queue.
13612 * @drq: The queue structure to use to create the data receive queue.
13613 * @cq: The completion queue to bind this work queue to.
13614 *
13615 * This function creates a receive buffer queue pair , as detailed in @hrq and
13616 * @drq, on a port, described by @phba by sending a RQ_CREATE mailbox command
13617 * to the HBA.
13618 *
13619 * The @phba struct is used to send mailbox command to HBA. The @drq and @hrq
13620 * struct is used to get the entry count that is necessary to determine the
13621 * number of pages to use for this queue. The @cq is used to indicate which
13622 * completion queue to bind received buffers that are posted to these queues to.
13623 * This function will send the RQ_CREATE mailbox command to the HBA to setup the
13624 * receive queue pair. This function is asynchronous and will wait for the
13625 * mailbox command to finish before continuing.
13626 *
13627 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040013628 * memory this function will return -ENOMEM. If the queue create mailbox command
13629 * fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040013630 **/
13631uint32_t
13632lpfc_rq_create(struct lpfc_hba *phba, struct lpfc_queue *hrq,
13633 struct lpfc_queue *drq, struct lpfc_queue *cq, uint32_t subtype)
13634{
13635 struct lpfc_mbx_rq_create *rq_create;
13636 struct lpfc_dmabuf *dmabuf;
13637 LPFC_MBOXQ_t *mbox;
13638 int rc, length, status = 0;
13639 uint32_t shdr_status, shdr_add_status;
13640 union lpfc_sli4_cfg_shdr *shdr;
James Smart49198b32010-04-06 15:04:33 -040013641 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
James Smart962bc512013-01-03 15:44:00 -050013642 void __iomem *bar_memmap_p;
13643 uint32_t db_offset;
13644 uint16_t pci_barset;
James Smart49198b32010-04-06 15:04:33 -040013645
James Smart2e90f4b2011-12-13 13:22:37 -050013646 /* sanity check on queue memory */
13647 if (!hrq || !drq || !cq)
13648 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040013649 if (!phba->sli4_hba.pc_sli4_params.supported)
13650 hw_page_size = SLI4_PAGE_SIZE;
James Smart4f774512009-05-22 14:52:35 -040013651
13652 if (hrq->entry_count != drq->entry_count)
13653 return -EINVAL;
13654 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13655 if (!mbox)
13656 return -ENOMEM;
13657 length = (sizeof(struct lpfc_mbx_rq_create) -
13658 sizeof(struct lpfc_sli4_cfg_mhdr));
13659 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13660 LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
13661 length, LPFC_SLI4_MBX_EMBED);
13662 rq_create = &mbox->u.mqe.un.rq_create;
James Smart5a6f1332011-03-11 16:05:35 -050013663 shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
13664 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13665 phba->sli4_hba.pc_sli4_params.rqv);
13666 if (phba->sli4_hba.pc_sli4_params.rqv == LPFC_Q_CREATE_VERSION_1) {
13667 bf_set(lpfc_rq_context_rqe_count_1,
13668 &rq_create->u.request.context,
13669 hrq->entry_count);
13670 rq_create->u.request.context.buffer_size = LPFC_HDR_BUF_SIZE;
James Smartc31098c2011-04-16 11:03:33 -040013671 bf_set(lpfc_rq_context_rqe_size,
13672 &rq_create->u.request.context,
13673 LPFC_RQE_SIZE_8);
13674 bf_set(lpfc_rq_context_page_size,
13675 &rq_create->u.request.context,
13676 (PAGE_SIZE/SLI4_PAGE_SIZE));
James Smart5a6f1332011-03-11 16:05:35 -050013677 } else {
13678 switch (hrq->entry_count) {
13679 default:
13680 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13681 "2535 Unsupported RQ count. (%d)\n",
13682 hrq->entry_count);
James Smart4f4c1862012-06-12 13:54:02 -040013683 if (hrq->entry_count < 512) {
13684 status = -EINVAL;
13685 goto out;
13686 }
James Smart5a6f1332011-03-11 16:05:35 -050013687 /* otherwise default to smallest count (drop through) */
13688 case 512:
13689 bf_set(lpfc_rq_context_rqe_count,
13690 &rq_create->u.request.context,
13691 LPFC_RQ_RING_SIZE_512);
13692 break;
13693 case 1024:
13694 bf_set(lpfc_rq_context_rqe_count,
13695 &rq_create->u.request.context,
13696 LPFC_RQ_RING_SIZE_1024);
13697 break;
13698 case 2048:
13699 bf_set(lpfc_rq_context_rqe_count,
13700 &rq_create->u.request.context,
13701 LPFC_RQ_RING_SIZE_2048);
13702 break;
13703 case 4096:
13704 bf_set(lpfc_rq_context_rqe_count,
13705 &rq_create->u.request.context,
13706 LPFC_RQ_RING_SIZE_4096);
13707 break;
13708 }
13709 bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
13710 LPFC_HDR_BUF_SIZE);
James Smart4f774512009-05-22 14:52:35 -040013711 }
13712 bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
13713 cq->queue_id);
13714 bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
13715 hrq->page_count);
James Smart4f774512009-05-22 14:52:35 -040013716 list_for_each_entry(dmabuf, &hrq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040013717 memset(dmabuf->virt, 0, hw_page_size);
James Smart4f774512009-05-22 14:52:35 -040013718 rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
13719 putPaddrLow(dmabuf->phys);
13720 rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
13721 putPaddrHigh(dmabuf->phys);
13722 }
James Smart962bc512013-01-03 15:44:00 -050013723 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
13724 bf_set(lpfc_mbx_rq_create_dua, &rq_create->u.request, 1);
13725
James Smart4f774512009-05-22 14:52:35 -040013726 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13727 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart4f774512009-05-22 14:52:35 -040013728 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13729 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13730 if (shdr_status || shdr_add_status || rc) {
13731 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13732 "2504 RQ_CREATE mailbox failed with "
13733 "status x%x add_status x%x, mbx status x%x\n",
13734 shdr_status, shdr_add_status, rc);
13735 status = -ENXIO;
13736 goto out;
13737 }
13738 hrq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
13739 if (hrq->queue_id == 0xFFFF) {
13740 status = -ENXIO;
13741 goto out;
13742 }
James Smart962bc512013-01-03 15:44:00 -050013743
13744 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE) {
13745 hrq->db_format = bf_get(lpfc_mbx_rq_create_db_format,
13746 &rq_create->u.response);
13747 if ((hrq->db_format != LPFC_DB_LIST_FORMAT) &&
13748 (hrq->db_format != LPFC_DB_RING_FORMAT)) {
13749 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13750 "3262 RQ [%d] doorbell format not "
13751 "supported: x%x\n", hrq->queue_id,
13752 hrq->db_format);
13753 status = -EINVAL;
13754 goto out;
13755 }
13756
13757 pci_barset = bf_get(lpfc_mbx_rq_create_bar_set,
13758 &rq_create->u.response);
13759 bar_memmap_p = lpfc_dual_chute_pci_bar_map(phba, pci_barset);
13760 if (!bar_memmap_p) {
13761 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13762 "3269 RQ[%d] failed to memmap pci "
13763 "barset:x%x\n", hrq->queue_id,
13764 pci_barset);
13765 status = -ENOMEM;
13766 goto out;
13767 }
13768
13769 db_offset = rq_create->u.response.doorbell_offset;
13770 if ((db_offset != LPFC_ULP0_RQ_DOORBELL) &&
13771 (db_offset != LPFC_ULP1_RQ_DOORBELL)) {
13772 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13773 "3270 RQ[%d] doorbell offset not "
13774 "supported: x%x\n", hrq->queue_id,
13775 db_offset);
13776 status = -EINVAL;
13777 goto out;
13778 }
13779 hrq->db_regaddr = bar_memmap_p + db_offset;
13780 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarta22e7db2013-04-17 20:16:37 -040013781 "3266 RQ[qid:%d]: barset:x%x, offset:x%x, "
13782 "format:x%x\n", hrq->queue_id, pci_barset,
13783 db_offset, hrq->db_format);
James Smart962bc512013-01-03 15:44:00 -050013784 } else {
13785 hrq->db_format = LPFC_DB_RING_FORMAT;
13786 hrq->db_regaddr = phba->sli4_hba.RQDBregaddr;
13787 }
James Smart4f774512009-05-22 14:52:35 -040013788 hrq->type = LPFC_HRQ;
James Smart2a622bf2011-02-16 12:40:06 -050013789 hrq->assoc_qid = cq->queue_id;
James Smart4f774512009-05-22 14:52:35 -040013790 hrq->subtype = subtype;
13791 hrq->host_index = 0;
13792 hrq->hba_index = 0;
13793
13794 /* now create the data queue */
13795 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13796 LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
13797 length, LPFC_SLI4_MBX_EMBED);
James Smart5a6f1332011-03-11 16:05:35 -050013798 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13799 phba->sli4_hba.pc_sli4_params.rqv);
13800 if (phba->sli4_hba.pc_sli4_params.rqv == LPFC_Q_CREATE_VERSION_1) {
13801 bf_set(lpfc_rq_context_rqe_count_1,
James Smartc31098c2011-04-16 11:03:33 -040013802 &rq_create->u.request.context, hrq->entry_count);
James Smart5a6f1332011-03-11 16:05:35 -050013803 rq_create->u.request.context.buffer_size = LPFC_DATA_BUF_SIZE;
James Smartc31098c2011-04-16 11:03:33 -040013804 bf_set(lpfc_rq_context_rqe_size, &rq_create->u.request.context,
13805 LPFC_RQE_SIZE_8);
13806 bf_set(lpfc_rq_context_page_size, &rq_create->u.request.context,
13807 (PAGE_SIZE/SLI4_PAGE_SIZE));
James Smart5a6f1332011-03-11 16:05:35 -050013808 } else {
13809 switch (drq->entry_count) {
13810 default:
13811 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13812 "2536 Unsupported RQ count. (%d)\n",
13813 drq->entry_count);
James Smart4f4c1862012-06-12 13:54:02 -040013814 if (drq->entry_count < 512) {
13815 status = -EINVAL;
13816 goto out;
13817 }
James Smart5a6f1332011-03-11 16:05:35 -050013818 /* otherwise default to smallest count (drop through) */
13819 case 512:
13820 bf_set(lpfc_rq_context_rqe_count,
13821 &rq_create->u.request.context,
13822 LPFC_RQ_RING_SIZE_512);
13823 break;
13824 case 1024:
13825 bf_set(lpfc_rq_context_rqe_count,
13826 &rq_create->u.request.context,
13827 LPFC_RQ_RING_SIZE_1024);
13828 break;
13829 case 2048:
13830 bf_set(lpfc_rq_context_rqe_count,
13831 &rq_create->u.request.context,
13832 LPFC_RQ_RING_SIZE_2048);
13833 break;
13834 case 4096:
13835 bf_set(lpfc_rq_context_rqe_count,
13836 &rq_create->u.request.context,
13837 LPFC_RQ_RING_SIZE_4096);
13838 break;
13839 }
13840 bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
13841 LPFC_DATA_BUF_SIZE);
James Smart4f774512009-05-22 14:52:35 -040013842 }
13843 bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
13844 cq->queue_id);
13845 bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
13846 drq->page_count);
James Smart4f774512009-05-22 14:52:35 -040013847 list_for_each_entry(dmabuf, &drq->page_list, list) {
13848 rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
13849 putPaddrLow(dmabuf->phys);
13850 rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
13851 putPaddrHigh(dmabuf->phys);
13852 }
James Smart962bc512013-01-03 15:44:00 -050013853 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
13854 bf_set(lpfc_mbx_rq_create_dua, &rq_create->u.request, 1);
James Smart4f774512009-05-22 14:52:35 -040013855 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13856 /* The IOCTL status is embedded in the mailbox subheader. */
13857 shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
13858 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13859 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13860 if (shdr_status || shdr_add_status || rc) {
13861 status = -ENXIO;
13862 goto out;
13863 }
13864 drq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
13865 if (drq->queue_id == 0xFFFF) {
13866 status = -ENXIO;
13867 goto out;
13868 }
13869 drq->type = LPFC_DRQ;
James Smart2a622bf2011-02-16 12:40:06 -050013870 drq->assoc_qid = cq->queue_id;
James Smart4f774512009-05-22 14:52:35 -040013871 drq->subtype = subtype;
13872 drq->host_index = 0;
13873 drq->hba_index = 0;
13874
13875 /* link the header and data RQs onto the parent cq child list */
13876 list_add_tail(&hrq->list, &cq->child_list);
13877 list_add_tail(&drq->list, &cq->child_list);
13878
13879out:
James Smart8fa38512009-07-19 10:01:03 -040013880 mempool_free(mbox, phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040013881 return status;
13882}
13883
13884/**
13885 * lpfc_eq_destroy - Destroy an event Queue on the HBA
13886 * @eq: The queue structure associated with the queue to destroy.
13887 *
13888 * This function destroys a queue, as detailed in @eq by sending an mailbox
13889 * command, specific to the type of queue, to the HBA.
13890 *
13891 * The @eq struct is used to get the queue ID of the queue to destroy.
13892 *
13893 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040013894 * command fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040013895 **/
13896uint32_t
13897lpfc_eq_destroy(struct lpfc_hba *phba, struct lpfc_queue *eq)
13898{
13899 LPFC_MBOXQ_t *mbox;
13900 int rc, length, status = 0;
13901 uint32_t shdr_status, shdr_add_status;
13902 union lpfc_sli4_cfg_shdr *shdr;
13903
James Smart2e90f4b2011-12-13 13:22:37 -050013904 /* sanity check on queue memory */
James Smart4f774512009-05-22 14:52:35 -040013905 if (!eq)
13906 return -ENODEV;
13907 mbox = mempool_alloc(eq->phba->mbox_mem_pool, GFP_KERNEL);
13908 if (!mbox)
13909 return -ENOMEM;
13910 length = (sizeof(struct lpfc_mbx_eq_destroy) -
13911 sizeof(struct lpfc_sli4_cfg_mhdr));
13912 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13913 LPFC_MBOX_OPCODE_EQ_DESTROY,
13914 length, LPFC_SLI4_MBX_EMBED);
13915 bf_set(lpfc_mbx_eq_destroy_q_id, &mbox->u.mqe.un.eq_destroy.u.request,
13916 eq->queue_id);
13917 mbox->vport = eq->phba->pport;
13918 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
13919
13920 rc = lpfc_sli_issue_mbox(eq->phba, mbox, MBX_POLL);
13921 /* The IOCTL status is embedded in the mailbox subheader. */
13922 shdr = (union lpfc_sli4_cfg_shdr *)
13923 &mbox->u.mqe.un.eq_destroy.header.cfg_shdr;
13924 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13925 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13926 if (shdr_status || shdr_add_status || rc) {
13927 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13928 "2505 EQ_DESTROY mailbox failed with "
13929 "status x%x add_status x%x, mbx status x%x\n",
13930 shdr_status, shdr_add_status, rc);
13931 status = -ENXIO;
13932 }
13933
13934 /* Remove eq from any list */
13935 list_del_init(&eq->list);
James Smart8fa38512009-07-19 10:01:03 -040013936 mempool_free(mbox, eq->phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040013937 return status;
13938}
13939
13940/**
13941 * lpfc_cq_destroy - Destroy a Completion Queue on the HBA
13942 * @cq: The queue structure associated with the queue to destroy.
13943 *
13944 * This function destroys a queue, as detailed in @cq by sending an mailbox
13945 * command, specific to the type of queue, to the HBA.
13946 *
13947 * The @cq struct is used to get the queue ID of the queue to destroy.
13948 *
13949 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040013950 * command fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040013951 **/
13952uint32_t
13953lpfc_cq_destroy(struct lpfc_hba *phba, struct lpfc_queue *cq)
13954{
13955 LPFC_MBOXQ_t *mbox;
13956 int rc, length, status = 0;
13957 uint32_t shdr_status, shdr_add_status;
13958 union lpfc_sli4_cfg_shdr *shdr;
13959
James Smart2e90f4b2011-12-13 13:22:37 -050013960 /* sanity check on queue memory */
James Smart4f774512009-05-22 14:52:35 -040013961 if (!cq)
13962 return -ENODEV;
13963 mbox = mempool_alloc(cq->phba->mbox_mem_pool, GFP_KERNEL);
13964 if (!mbox)
13965 return -ENOMEM;
13966 length = (sizeof(struct lpfc_mbx_cq_destroy) -
13967 sizeof(struct lpfc_sli4_cfg_mhdr));
13968 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13969 LPFC_MBOX_OPCODE_CQ_DESTROY,
13970 length, LPFC_SLI4_MBX_EMBED);
13971 bf_set(lpfc_mbx_cq_destroy_q_id, &mbox->u.mqe.un.cq_destroy.u.request,
13972 cq->queue_id);
13973 mbox->vport = cq->phba->pport;
13974 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
13975 rc = lpfc_sli_issue_mbox(cq->phba, mbox, MBX_POLL);
13976 /* The IOCTL status is embedded in the mailbox subheader. */
13977 shdr = (union lpfc_sli4_cfg_shdr *)
13978 &mbox->u.mqe.un.wq_create.header.cfg_shdr;
13979 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13980 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13981 if (shdr_status || shdr_add_status || rc) {
13982 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13983 "2506 CQ_DESTROY mailbox failed with "
13984 "status x%x add_status x%x, mbx status x%x\n",
13985 shdr_status, shdr_add_status, rc);
13986 status = -ENXIO;
13987 }
13988 /* Remove cq from any list */
13989 list_del_init(&cq->list);
James Smart8fa38512009-07-19 10:01:03 -040013990 mempool_free(mbox, cq->phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040013991 return status;
13992}
13993
13994/**
James Smart04c68492009-05-22 14:52:52 -040013995 * lpfc_mq_destroy - Destroy a Mailbox Queue on the HBA
13996 * @qm: The queue structure associated with the queue to destroy.
13997 *
13998 * This function destroys a queue, as detailed in @mq by sending an mailbox
13999 * command, specific to the type of queue, to the HBA.
14000 *
14001 * The @mq struct is used to get the queue ID of the queue to destroy.
14002 *
14003 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040014004 * command fails this function will return -ENXIO.
James Smart04c68492009-05-22 14:52:52 -040014005 **/
14006uint32_t
14007lpfc_mq_destroy(struct lpfc_hba *phba, struct lpfc_queue *mq)
14008{
14009 LPFC_MBOXQ_t *mbox;
14010 int rc, length, status = 0;
14011 uint32_t shdr_status, shdr_add_status;
14012 union lpfc_sli4_cfg_shdr *shdr;
14013
James Smart2e90f4b2011-12-13 13:22:37 -050014014 /* sanity check on queue memory */
James Smart04c68492009-05-22 14:52:52 -040014015 if (!mq)
14016 return -ENODEV;
14017 mbox = mempool_alloc(mq->phba->mbox_mem_pool, GFP_KERNEL);
14018 if (!mbox)
14019 return -ENOMEM;
14020 length = (sizeof(struct lpfc_mbx_mq_destroy) -
14021 sizeof(struct lpfc_sli4_cfg_mhdr));
14022 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
14023 LPFC_MBOX_OPCODE_MQ_DESTROY,
14024 length, LPFC_SLI4_MBX_EMBED);
14025 bf_set(lpfc_mbx_mq_destroy_q_id, &mbox->u.mqe.un.mq_destroy.u.request,
14026 mq->queue_id);
14027 mbox->vport = mq->phba->pport;
14028 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
14029 rc = lpfc_sli_issue_mbox(mq->phba, mbox, MBX_POLL);
14030 /* The IOCTL status is embedded in the mailbox subheader. */
14031 shdr = (union lpfc_sli4_cfg_shdr *)
14032 &mbox->u.mqe.un.mq_destroy.header.cfg_shdr;
14033 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14034 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14035 if (shdr_status || shdr_add_status || rc) {
14036 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14037 "2507 MQ_DESTROY mailbox failed with "
14038 "status x%x add_status x%x, mbx status x%x\n",
14039 shdr_status, shdr_add_status, rc);
14040 status = -ENXIO;
14041 }
14042 /* Remove mq from any list */
14043 list_del_init(&mq->list);
James Smart8fa38512009-07-19 10:01:03 -040014044 mempool_free(mbox, mq->phba->mbox_mem_pool);
James Smart04c68492009-05-22 14:52:52 -040014045 return status;
14046}
14047
14048/**
James Smart4f774512009-05-22 14:52:35 -040014049 * lpfc_wq_destroy - Destroy a Work Queue on the HBA
14050 * @wq: The queue structure associated with the queue to destroy.
14051 *
14052 * This function destroys a queue, as detailed in @wq by sending an mailbox
14053 * command, specific to the type of queue, to the HBA.
14054 *
14055 * The @wq struct is used to get the queue ID of the queue to destroy.
14056 *
14057 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040014058 * command fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040014059 **/
14060uint32_t
14061lpfc_wq_destroy(struct lpfc_hba *phba, struct lpfc_queue *wq)
14062{
14063 LPFC_MBOXQ_t *mbox;
14064 int rc, length, status = 0;
14065 uint32_t shdr_status, shdr_add_status;
14066 union lpfc_sli4_cfg_shdr *shdr;
14067
James Smart2e90f4b2011-12-13 13:22:37 -050014068 /* sanity check on queue memory */
James Smart4f774512009-05-22 14:52:35 -040014069 if (!wq)
14070 return -ENODEV;
14071 mbox = mempool_alloc(wq->phba->mbox_mem_pool, GFP_KERNEL);
14072 if (!mbox)
14073 return -ENOMEM;
14074 length = (sizeof(struct lpfc_mbx_wq_destroy) -
14075 sizeof(struct lpfc_sli4_cfg_mhdr));
14076 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14077 LPFC_MBOX_OPCODE_FCOE_WQ_DESTROY,
14078 length, LPFC_SLI4_MBX_EMBED);
14079 bf_set(lpfc_mbx_wq_destroy_q_id, &mbox->u.mqe.un.wq_destroy.u.request,
14080 wq->queue_id);
14081 mbox->vport = wq->phba->pport;
14082 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
14083 rc = lpfc_sli_issue_mbox(wq->phba, mbox, MBX_POLL);
14084 shdr = (union lpfc_sli4_cfg_shdr *)
14085 &mbox->u.mqe.un.wq_destroy.header.cfg_shdr;
14086 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14087 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14088 if (shdr_status || shdr_add_status || rc) {
14089 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14090 "2508 WQ_DESTROY mailbox failed with "
14091 "status x%x add_status x%x, mbx status x%x\n",
14092 shdr_status, shdr_add_status, rc);
14093 status = -ENXIO;
14094 }
14095 /* Remove wq from any list */
14096 list_del_init(&wq->list);
James Smart8fa38512009-07-19 10:01:03 -040014097 mempool_free(mbox, wq->phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040014098 return status;
14099}
14100
14101/**
14102 * lpfc_rq_destroy - Destroy a Receive Queue on the HBA
14103 * @rq: The queue structure associated with the queue to destroy.
14104 *
14105 * This function destroys a queue, as detailed in @rq by sending an mailbox
14106 * command, specific to the type of queue, to the HBA.
14107 *
14108 * The @rq struct is used to get the queue ID of the queue to destroy.
14109 *
14110 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040014111 * command fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040014112 **/
14113uint32_t
14114lpfc_rq_destroy(struct lpfc_hba *phba, struct lpfc_queue *hrq,
14115 struct lpfc_queue *drq)
14116{
14117 LPFC_MBOXQ_t *mbox;
14118 int rc, length, status = 0;
14119 uint32_t shdr_status, shdr_add_status;
14120 union lpfc_sli4_cfg_shdr *shdr;
14121
James Smart2e90f4b2011-12-13 13:22:37 -050014122 /* sanity check on queue memory */
James Smart4f774512009-05-22 14:52:35 -040014123 if (!hrq || !drq)
14124 return -ENODEV;
14125 mbox = mempool_alloc(hrq->phba->mbox_mem_pool, GFP_KERNEL);
14126 if (!mbox)
14127 return -ENOMEM;
14128 length = (sizeof(struct lpfc_mbx_rq_destroy) -
James Smartfedd3b72011-02-16 12:39:24 -050014129 sizeof(struct lpfc_sli4_cfg_mhdr));
James Smart4f774512009-05-22 14:52:35 -040014130 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14131 LPFC_MBOX_OPCODE_FCOE_RQ_DESTROY,
14132 length, LPFC_SLI4_MBX_EMBED);
14133 bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
14134 hrq->queue_id);
14135 mbox->vport = hrq->phba->pport;
14136 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
14137 rc = lpfc_sli_issue_mbox(hrq->phba, mbox, MBX_POLL);
14138 /* The IOCTL status is embedded in the mailbox subheader. */
14139 shdr = (union lpfc_sli4_cfg_shdr *)
14140 &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
14141 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14142 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14143 if (shdr_status || shdr_add_status || rc) {
14144 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14145 "2509 RQ_DESTROY mailbox failed with "
14146 "status x%x add_status x%x, mbx status x%x\n",
14147 shdr_status, shdr_add_status, rc);
14148 if (rc != MBX_TIMEOUT)
14149 mempool_free(mbox, hrq->phba->mbox_mem_pool);
14150 return -ENXIO;
14151 }
14152 bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
14153 drq->queue_id);
14154 rc = lpfc_sli_issue_mbox(drq->phba, mbox, MBX_POLL);
14155 shdr = (union lpfc_sli4_cfg_shdr *)
14156 &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
14157 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14158 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14159 if (shdr_status || shdr_add_status || rc) {
14160 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14161 "2510 RQ_DESTROY mailbox failed with "
14162 "status x%x add_status x%x, mbx status x%x\n",
14163 shdr_status, shdr_add_status, rc);
14164 status = -ENXIO;
14165 }
14166 list_del_init(&hrq->list);
14167 list_del_init(&drq->list);
James Smart8fa38512009-07-19 10:01:03 -040014168 mempool_free(mbox, hrq->phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040014169 return status;
14170}
14171
14172/**
14173 * lpfc_sli4_post_sgl - Post scatter gather list for an XRI to HBA
14174 * @phba: The virtual port for which this call being executed.
14175 * @pdma_phys_addr0: Physical address of the 1st SGL page.
14176 * @pdma_phys_addr1: Physical address of the 2nd SGL page.
14177 * @xritag: the xritag that ties this io to the SGL pages.
14178 *
14179 * This routine will post the sgl pages for the IO that has the xritag
14180 * that is in the iocbq structure. The xritag is assigned during iocbq
14181 * creation and persists for as long as the driver is loaded.
14182 * if the caller has fewer than 256 scatter gather segments to map then
14183 * pdma_phys_addr1 should be 0.
14184 * If the caller needs to map more than 256 scatter gather segment then
14185 * pdma_phys_addr1 should be a valid physical address.
14186 * physical address for SGLs must be 64 byte aligned.
14187 * If you are going to map 2 SGL's then the first one must have 256 entries
14188 * the second sgl can have between 1 and 256 entries.
14189 *
14190 * Return codes:
14191 * 0 - Success
14192 * -ENXIO, -ENOMEM - Failure
14193 **/
14194int
14195lpfc_sli4_post_sgl(struct lpfc_hba *phba,
14196 dma_addr_t pdma_phys_addr0,
14197 dma_addr_t pdma_phys_addr1,
14198 uint16_t xritag)
14199{
14200 struct lpfc_mbx_post_sgl_pages *post_sgl_pages;
14201 LPFC_MBOXQ_t *mbox;
14202 int rc;
14203 uint32_t shdr_status, shdr_add_status;
James Smart6d368e52011-05-24 11:44:12 -040014204 uint32_t mbox_tmo;
James Smart4f774512009-05-22 14:52:35 -040014205 union lpfc_sli4_cfg_shdr *shdr;
14206
14207 if (xritag == NO_XRI) {
14208 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14209 "0364 Invalid param:\n");
14210 return -EINVAL;
14211 }
14212
14213 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
14214 if (!mbox)
14215 return -ENOMEM;
14216
14217 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14218 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES,
14219 sizeof(struct lpfc_mbx_post_sgl_pages) -
James Smartfedd3b72011-02-16 12:39:24 -050014220 sizeof(struct lpfc_sli4_cfg_mhdr), LPFC_SLI4_MBX_EMBED);
James Smart4f774512009-05-22 14:52:35 -040014221
14222 post_sgl_pages = (struct lpfc_mbx_post_sgl_pages *)
14223 &mbox->u.mqe.un.post_sgl_pages;
14224 bf_set(lpfc_post_sgl_pages_xri, post_sgl_pages, xritag);
14225 bf_set(lpfc_post_sgl_pages_xricnt, post_sgl_pages, 1);
14226
14227 post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_lo =
14228 cpu_to_le32(putPaddrLow(pdma_phys_addr0));
14229 post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_hi =
14230 cpu_to_le32(putPaddrHigh(pdma_phys_addr0));
14231
14232 post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_lo =
14233 cpu_to_le32(putPaddrLow(pdma_phys_addr1));
14234 post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_hi =
14235 cpu_to_le32(putPaddrHigh(pdma_phys_addr1));
14236 if (!phba->sli4_hba.intr_enable)
14237 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
James Smart6d368e52011-05-24 11:44:12 -040014238 else {
James Smarta183a152011-10-10 21:32:43 -040014239 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -040014240 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
14241 }
James Smart4f774512009-05-22 14:52:35 -040014242 /* The IOCTL status is embedded in the mailbox subheader. */
14243 shdr = (union lpfc_sli4_cfg_shdr *) &post_sgl_pages->header.cfg_shdr;
14244 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14245 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14246 if (rc != MBX_TIMEOUT)
14247 mempool_free(mbox, phba->mbox_mem_pool);
14248 if (shdr_status || shdr_add_status || rc) {
14249 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14250 "2511 POST_SGL mailbox failed with "
14251 "status x%x add_status x%x, mbx status x%x\n",
14252 shdr_status, shdr_add_status, rc);
14253 rc = -ENXIO;
14254 }
14255 return 0;
14256}
James Smart4f774512009-05-22 14:52:35 -040014257
14258/**
James Smart88a2cfb2011-07-22 18:36:33 -040014259 * lpfc_sli4_alloc_xri - Get an available rpi in the device's range
James Smart6d368e52011-05-24 11:44:12 -040014260 * @phba: pointer to lpfc hba data structure.
14261 *
14262 * This routine is invoked to post rpi header templates to the
James Smart88a2cfb2011-07-22 18:36:33 -040014263 * HBA consistent with the SLI-4 interface spec. This routine
14264 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
14265 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
James Smart6d368e52011-05-24 11:44:12 -040014266 *
James Smart88a2cfb2011-07-22 18:36:33 -040014267 * Returns
14268 * A nonzero rpi defined as rpi_base <= rpi < max_rpi if successful
14269 * LPFC_RPI_ALLOC_ERROR if no rpis are available.
14270 **/
James Smart6d368e52011-05-24 11:44:12 -040014271uint16_t
14272lpfc_sli4_alloc_xri(struct lpfc_hba *phba)
14273{
14274 unsigned long xri;
14275
14276 /*
14277 * Fetch the next logical xri. Because this index is logical,
14278 * the driver starts at 0 each time.
14279 */
14280 spin_lock_irq(&phba->hbalock);
14281 xri = find_next_zero_bit(phba->sli4_hba.xri_bmask,
14282 phba->sli4_hba.max_cfg_param.max_xri, 0);
14283 if (xri >= phba->sli4_hba.max_cfg_param.max_xri) {
14284 spin_unlock_irq(&phba->hbalock);
14285 return NO_XRI;
14286 } else {
14287 set_bit(xri, phba->sli4_hba.xri_bmask);
14288 phba->sli4_hba.max_cfg_param.xri_used++;
James Smart6d368e52011-05-24 11:44:12 -040014289 }
James Smart6d368e52011-05-24 11:44:12 -040014290 spin_unlock_irq(&phba->hbalock);
14291 return xri;
14292}
14293
14294/**
14295 * lpfc_sli4_free_xri - Release an xri for reuse.
14296 * @phba: pointer to lpfc hba data structure.
14297 *
14298 * This routine is invoked to release an xri to the pool of
14299 * available rpis maintained by the driver.
14300 **/
14301void
14302__lpfc_sli4_free_xri(struct lpfc_hba *phba, int xri)
14303{
14304 if (test_and_clear_bit(xri, phba->sli4_hba.xri_bmask)) {
James Smart6d368e52011-05-24 11:44:12 -040014305 phba->sli4_hba.max_cfg_param.xri_used--;
14306 }
14307}
14308
14309/**
14310 * lpfc_sli4_free_xri - Release an xri for reuse.
14311 * @phba: pointer to lpfc hba data structure.
14312 *
14313 * This routine is invoked to release an xri to the pool of
14314 * available rpis maintained by the driver.
14315 **/
14316void
14317lpfc_sli4_free_xri(struct lpfc_hba *phba, int xri)
14318{
14319 spin_lock_irq(&phba->hbalock);
14320 __lpfc_sli4_free_xri(phba, xri);
14321 spin_unlock_irq(&phba->hbalock);
14322}
14323
14324/**
James Smart4f774512009-05-22 14:52:35 -040014325 * lpfc_sli4_next_xritag - Get an xritag for the io
14326 * @phba: Pointer to HBA context object.
14327 *
14328 * This function gets an xritag for the iocb. If there is no unused xritag
14329 * it will return 0xffff.
14330 * The function returns the allocated xritag if successful, else returns zero.
14331 * Zero is not a valid xritag.
14332 * The caller is not required to hold any lock.
14333 **/
14334uint16_t
14335lpfc_sli4_next_xritag(struct lpfc_hba *phba)
14336{
James Smart6d368e52011-05-24 11:44:12 -040014337 uint16_t xri_index;
James Smart4f774512009-05-22 14:52:35 -040014338
James Smart6d368e52011-05-24 11:44:12 -040014339 xri_index = lpfc_sli4_alloc_xri(phba);
James Smart81378052012-05-09 21:17:37 -040014340 if (xri_index == NO_XRI)
14341 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
14342 "2004 Failed to allocate XRI.last XRITAG is %d"
14343 " Max XRI is %d, Used XRI is %d\n",
14344 xri_index,
14345 phba->sli4_hba.max_cfg_param.max_xri,
14346 phba->sli4_hba.max_cfg_param.xri_used);
14347 return xri_index;
James Smart4f774512009-05-22 14:52:35 -040014348}
14349
14350/**
James Smart6d368e52011-05-24 11:44:12 -040014351 * lpfc_sli4_post_els_sgl_list - post a block of ELS sgls to the port.
James Smart4f774512009-05-22 14:52:35 -040014352 * @phba: pointer to lpfc hba data structure.
James Smart8a9d2e82012-05-09 21:16:12 -040014353 * @post_sgl_list: pointer to els sgl entry list.
14354 * @count: number of els sgl entries on the list.
James Smart4f774512009-05-22 14:52:35 -040014355 *
14356 * This routine is invoked to post a block of driver's sgl pages to the
14357 * HBA using non-embedded mailbox command. No Lock is held. This routine
14358 * is only called when the driver is loading and after all IO has been
14359 * stopped.
14360 **/
James Smart8a9d2e82012-05-09 21:16:12 -040014361static int
14362lpfc_sli4_post_els_sgl_list(struct lpfc_hba *phba,
14363 struct list_head *post_sgl_list,
14364 int post_cnt)
James Smart4f774512009-05-22 14:52:35 -040014365{
James Smart8a9d2e82012-05-09 21:16:12 -040014366 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
James Smart4f774512009-05-22 14:52:35 -040014367 struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
14368 struct sgl_page_pairs *sgl_pg_pairs;
14369 void *viraddr;
14370 LPFC_MBOXQ_t *mbox;
14371 uint32_t reqlen, alloclen, pg_pairs;
14372 uint32_t mbox_tmo;
James Smart8a9d2e82012-05-09 21:16:12 -040014373 uint16_t xritag_start = 0;
14374 int rc = 0;
James Smart4f774512009-05-22 14:52:35 -040014375 uint32_t shdr_status, shdr_add_status;
14376 union lpfc_sli4_cfg_shdr *shdr;
14377
James Smart8a9d2e82012-05-09 21:16:12 -040014378 reqlen = phba->sli4_hba.els_xri_cnt * sizeof(struct sgl_page_pairs) +
James Smart4f774512009-05-22 14:52:35 -040014379 sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
James Smart49198b32010-04-06 15:04:33 -040014380 if (reqlen > SLI4_PAGE_SIZE) {
James Smart4f774512009-05-22 14:52:35 -040014381 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
14382 "2559 Block sgl registration required DMA "
14383 "size (%d) great than a page\n", reqlen);
14384 return -ENOMEM;
14385 }
14386 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart6d368e52011-05-24 11:44:12 -040014387 if (!mbox)
James Smart4f774512009-05-22 14:52:35 -040014388 return -ENOMEM;
James Smart4f774512009-05-22 14:52:35 -040014389
14390 /* Allocate DMA memory and set up the non-embedded mailbox command */
14391 alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14392 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
14393 LPFC_SLI4_MBX_NEMBED);
14394
14395 if (alloclen < reqlen) {
14396 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14397 "0285 Allocated DMA memory size (%d) is "
14398 "less than the requested DMA memory "
14399 "size (%d)\n", alloclen, reqlen);
14400 lpfc_sli4_mbox_cmd_free(phba, mbox);
14401 return -ENOMEM;
14402 }
James Smart4f774512009-05-22 14:52:35 -040014403 /* Set up the SGL pages in the non-embedded DMA pages */
James Smart6d368e52011-05-24 11:44:12 -040014404 viraddr = mbox->sge_array->addr[0];
James Smart4f774512009-05-22 14:52:35 -040014405 sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
14406 sgl_pg_pairs = &sgl->sgl_pg_pairs;
14407
James Smart8a9d2e82012-05-09 21:16:12 -040014408 pg_pairs = 0;
14409 list_for_each_entry_safe(sglq_entry, sglq_next, post_sgl_list, list) {
James Smart4f774512009-05-22 14:52:35 -040014410 /* Set up the sge entry */
14411 sgl_pg_pairs->sgl_pg0_addr_lo =
14412 cpu_to_le32(putPaddrLow(sglq_entry->phys));
14413 sgl_pg_pairs->sgl_pg0_addr_hi =
14414 cpu_to_le32(putPaddrHigh(sglq_entry->phys));
14415 sgl_pg_pairs->sgl_pg1_addr_lo =
14416 cpu_to_le32(putPaddrLow(0));
14417 sgl_pg_pairs->sgl_pg1_addr_hi =
14418 cpu_to_le32(putPaddrHigh(0));
James Smart6d368e52011-05-24 11:44:12 -040014419
James Smart4f774512009-05-22 14:52:35 -040014420 /* Keep the first xritag on the list */
14421 if (pg_pairs == 0)
14422 xritag_start = sglq_entry->sli4_xritag;
14423 sgl_pg_pairs++;
James Smart8a9d2e82012-05-09 21:16:12 -040014424 pg_pairs++;
James Smart4f774512009-05-22 14:52:35 -040014425 }
James Smart6d368e52011-05-24 11:44:12 -040014426
14427 /* Complete initialization and perform endian conversion. */
James Smart4f774512009-05-22 14:52:35 -040014428 bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
James Smart8a9d2e82012-05-09 21:16:12 -040014429 bf_set(lpfc_post_sgl_pages_xricnt, sgl, phba->sli4_hba.els_xri_cnt);
James Smart4f774512009-05-22 14:52:35 -040014430 sgl->word0 = cpu_to_le32(sgl->word0);
James Smart4f774512009-05-22 14:52:35 -040014431 if (!phba->sli4_hba.intr_enable)
14432 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
14433 else {
James Smarta183a152011-10-10 21:32:43 -040014434 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart4f774512009-05-22 14:52:35 -040014435 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
14436 }
14437 shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
14438 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14439 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14440 if (rc != MBX_TIMEOUT)
14441 lpfc_sli4_mbox_cmd_free(phba, mbox);
14442 if (shdr_status || shdr_add_status || rc) {
14443 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14444 "2513 POST_SGL_BLOCK mailbox command failed "
14445 "status x%x add_status x%x mbx status x%x\n",
14446 shdr_status, shdr_add_status, rc);
14447 rc = -ENXIO;
14448 }
14449 return rc;
14450}
14451
14452/**
14453 * lpfc_sli4_post_scsi_sgl_block - post a block of scsi sgl list to firmware
14454 * @phba: pointer to lpfc hba data structure.
14455 * @sblist: pointer to scsi buffer list.
14456 * @count: number of scsi buffers on the list.
14457 *
14458 * This routine is invoked to post a block of @count scsi sgl pages from a
14459 * SCSI buffer list @sblist to the HBA using non-embedded mailbox command.
14460 * No Lock is held.
14461 *
14462 **/
14463int
James Smart8a9d2e82012-05-09 21:16:12 -040014464lpfc_sli4_post_scsi_sgl_block(struct lpfc_hba *phba,
14465 struct list_head *sblist,
14466 int count)
James Smart4f774512009-05-22 14:52:35 -040014467{
14468 struct lpfc_scsi_buf *psb;
14469 struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
14470 struct sgl_page_pairs *sgl_pg_pairs;
14471 void *viraddr;
14472 LPFC_MBOXQ_t *mbox;
14473 uint32_t reqlen, alloclen, pg_pairs;
14474 uint32_t mbox_tmo;
14475 uint16_t xritag_start = 0;
14476 int rc = 0;
14477 uint32_t shdr_status, shdr_add_status;
14478 dma_addr_t pdma_phys_bpl1;
14479 union lpfc_sli4_cfg_shdr *shdr;
14480
14481 /* Calculate the requested length of the dma memory */
James Smart8a9d2e82012-05-09 21:16:12 -040014482 reqlen = count * sizeof(struct sgl_page_pairs) +
James Smart4f774512009-05-22 14:52:35 -040014483 sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
James Smart49198b32010-04-06 15:04:33 -040014484 if (reqlen > SLI4_PAGE_SIZE) {
James Smart4f774512009-05-22 14:52:35 -040014485 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
14486 "0217 Block sgl registration required DMA "
14487 "size (%d) great than a page\n", reqlen);
14488 return -ENOMEM;
14489 }
14490 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
14491 if (!mbox) {
14492 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14493 "0283 Failed to allocate mbox cmd memory\n");
14494 return -ENOMEM;
14495 }
14496
14497 /* Allocate DMA memory and set up the non-embedded mailbox command */
14498 alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14499 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
14500 LPFC_SLI4_MBX_NEMBED);
14501
14502 if (alloclen < reqlen) {
14503 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14504 "2561 Allocated DMA memory size (%d) is "
14505 "less than the requested DMA memory "
14506 "size (%d)\n", alloclen, reqlen);
14507 lpfc_sli4_mbox_cmd_free(phba, mbox);
14508 return -ENOMEM;
14509 }
James Smart6d368e52011-05-24 11:44:12 -040014510
James Smart4f774512009-05-22 14:52:35 -040014511 /* Get the first SGE entry from the non-embedded DMA memory */
James Smart4f774512009-05-22 14:52:35 -040014512 viraddr = mbox->sge_array->addr[0];
14513
14514 /* Set up the SGL pages in the non-embedded DMA pages */
14515 sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
14516 sgl_pg_pairs = &sgl->sgl_pg_pairs;
14517
14518 pg_pairs = 0;
14519 list_for_each_entry(psb, sblist, list) {
14520 /* Set up the sge entry */
14521 sgl_pg_pairs->sgl_pg0_addr_lo =
14522 cpu_to_le32(putPaddrLow(psb->dma_phys_bpl));
14523 sgl_pg_pairs->sgl_pg0_addr_hi =
14524 cpu_to_le32(putPaddrHigh(psb->dma_phys_bpl));
14525 if (phba->cfg_sg_dma_buf_size > SGL_PAGE_SIZE)
14526 pdma_phys_bpl1 = psb->dma_phys_bpl + SGL_PAGE_SIZE;
14527 else
14528 pdma_phys_bpl1 = 0;
14529 sgl_pg_pairs->sgl_pg1_addr_lo =
14530 cpu_to_le32(putPaddrLow(pdma_phys_bpl1));
14531 sgl_pg_pairs->sgl_pg1_addr_hi =
14532 cpu_to_le32(putPaddrHigh(pdma_phys_bpl1));
14533 /* Keep the first xritag on the list */
14534 if (pg_pairs == 0)
14535 xritag_start = psb->cur_iocbq.sli4_xritag;
14536 sgl_pg_pairs++;
14537 pg_pairs++;
14538 }
14539 bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
14540 bf_set(lpfc_post_sgl_pages_xricnt, sgl, pg_pairs);
14541 /* Perform endian conversion if necessary */
14542 sgl->word0 = cpu_to_le32(sgl->word0);
14543
14544 if (!phba->sli4_hba.intr_enable)
14545 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
14546 else {
James Smarta183a152011-10-10 21:32:43 -040014547 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart4f774512009-05-22 14:52:35 -040014548 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
14549 }
14550 shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
14551 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14552 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14553 if (rc != MBX_TIMEOUT)
14554 lpfc_sli4_mbox_cmd_free(phba, mbox);
14555 if (shdr_status || shdr_add_status || rc) {
14556 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14557 "2564 POST_SGL_BLOCK mailbox command failed "
14558 "status x%x add_status x%x mbx status x%x\n",
14559 shdr_status, shdr_add_status, rc);
14560 rc = -ENXIO;
14561 }
14562 return rc;
14563}
14564
14565/**
14566 * lpfc_fc_frame_check - Check that this frame is a valid frame to handle
14567 * @phba: pointer to lpfc_hba struct that the frame was received on
14568 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
14569 *
14570 * This function checks the fields in the @fc_hdr to see if the FC frame is a
14571 * valid type of frame that the LPFC driver will handle. This function will
14572 * return a zero if the frame is a valid frame or a non zero value when the
14573 * frame does not pass the check.
14574 **/
14575static int
14576lpfc_fc_frame_check(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr)
14577{
Tomas Henzl474ffb72010-12-22 16:52:40 +010014578 /* make rctl_names static to save stack space */
14579 static char *rctl_names[] = FC_RCTL_NAMES_INIT;
James Smart4f774512009-05-22 14:52:35 -040014580 char *type_names[] = FC_TYPE_NAMES_INIT;
14581 struct fc_vft_header *fc_vft_hdr;
James Smart546fc852011-03-11 16:06:29 -050014582 uint32_t *header = (uint32_t *) fc_hdr;
James Smart4f774512009-05-22 14:52:35 -040014583
14584 switch (fc_hdr->fh_r_ctl) {
14585 case FC_RCTL_DD_UNCAT: /* uncategorized information */
14586 case FC_RCTL_DD_SOL_DATA: /* solicited data */
14587 case FC_RCTL_DD_UNSOL_CTL: /* unsolicited control */
14588 case FC_RCTL_DD_SOL_CTL: /* solicited control or reply */
14589 case FC_RCTL_DD_UNSOL_DATA: /* unsolicited data */
14590 case FC_RCTL_DD_DATA_DESC: /* data descriptor */
14591 case FC_RCTL_DD_UNSOL_CMD: /* unsolicited command */
14592 case FC_RCTL_DD_CMD_STATUS: /* command status */
14593 case FC_RCTL_ELS_REQ: /* extended link services request */
14594 case FC_RCTL_ELS_REP: /* extended link services reply */
14595 case FC_RCTL_ELS4_REQ: /* FC-4 ELS request */
14596 case FC_RCTL_ELS4_REP: /* FC-4 ELS reply */
14597 case FC_RCTL_BA_NOP: /* basic link service NOP */
14598 case FC_RCTL_BA_ABTS: /* basic link service abort */
14599 case FC_RCTL_BA_RMC: /* remove connection */
14600 case FC_RCTL_BA_ACC: /* basic accept */
14601 case FC_RCTL_BA_RJT: /* basic reject */
14602 case FC_RCTL_BA_PRMT:
14603 case FC_RCTL_ACK_1: /* acknowledge_1 */
14604 case FC_RCTL_ACK_0: /* acknowledge_0 */
14605 case FC_RCTL_P_RJT: /* port reject */
14606 case FC_RCTL_F_RJT: /* fabric reject */
14607 case FC_RCTL_P_BSY: /* port busy */
14608 case FC_RCTL_F_BSY: /* fabric busy to data frame */
14609 case FC_RCTL_F_BSYL: /* fabric busy to link control frame */
14610 case FC_RCTL_LCR: /* link credit reset */
14611 case FC_RCTL_END: /* end */
14612 break;
14613 case FC_RCTL_VFTH: /* Virtual Fabric tagging Header */
14614 fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
14615 fc_hdr = &((struct fc_frame_header *)fc_vft_hdr)[1];
14616 return lpfc_fc_frame_check(phba, fc_hdr);
14617 default:
14618 goto drop;
14619 }
14620 switch (fc_hdr->fh_type) {
14621 case FC_TYPE_BLS:
14622 case FC_TYPE_ELS:
14623 case FC_TYPE_FCP:
14624 case FC_TYPE_CT:
14625 break;
14626 case FC_TYPE_IP:
14627 case FC_TYPE_ILS:
14628 default:
14629 goto drop;
14630 }
James Smart546fc852011-03-11 16:06:29 -050014631
James Smart4f774512009-05-22 14:52:35 -040014632 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
James Smart88f43a02013-04-17 20:19:44 -040014633 "2538 Received frame rctl:%s (x%x), type:%s (x%x), "
14634 "frame Data:%08x %08x %08x %08x %08x %08x %08x\n",
14635 rctl_names[fc_hdr->fh_r_ctl], fc_hdr->fh_r_ctl,
14636 type_names[fc_hdr->fh_type], fc_hdr->fh_type,
James Smart546fc852011-03-11 16:06:29 -050014637 be32_to_cpu(header[0]), be32_to_cpu(header[1]),
14638 be32_to_cpu(header[2]), be32_to_cpu(header[3]),
James Smart88f43a02013-04-17 20:19:44 -040014639 be32_to_cpu(header[4]), be32_to_cpu(header[5]),
14640 be32_to_cpu(header[6]));
James Smart4f774512009-05-22 14:52:35 -040014641 return 0;
14642drop:
14643 lpfc_printf_log(phba, KERN_WARNING, LOG_ELS,
14644 "2539 Dropped frame rctl:%s type:%s\n",
14645 rctl_names[fc_hdr->fh_r_ctl],
14646 type_names[fc_hdr->fh_type]);
14647 return 1;
14648}
14649
14650/**
14651 * lpfc_fc_hdr_get_vfi - Get the VFI from an FC frame
14652 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
14653 *
14654 * This function processes the FC header to retrieve the VFI from the VF
14655 * header, if one exists. This function will return the VFI if one exists
14656 * or 0 if no VSAN Header exists.
14657 **/
14658static uint32_t
14659lpfc_fc_hdr_get_vfi(struct fc_frame_header *fc_hdr)
14660{
14661 struct fc_vft_header *fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
14662
14663 if (fc_hdr->fh_r_ctl != FC_RCTL_VFTH)
14664 return 0;
14665 return bf_get(fc_vft_hdr_vf_id, fc_vft_hdr);
14666}
14667
14668/**
14669 * lpfc_fc_frame_to_vport - Finds the vport that a frame is destined to
14670 * @phba: Pointer to the HBA structure to search for the vport on
14671 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
14672 * @fcfi: The FC Fabric ID that the frame came from
14673 *
14674 * This function searches the @phba for a vport that matches the content of the
14675 * @fc_hdr passed in and the @fcfi. This function uses the @fc_hdr to fetch the
14676 * VFI, if the Virtual Fabric Tagging Header exists, and the DID. This function
14677 * returns the matching vport pointer or NULL if unable to match frame to a
14678 * vport.
14679 **/
14680static struct lpfc_vport *
14681lpfc_fc_frame_to_vport(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr,
14682 uint16_t fcfi)
14683{
14684 struct lpfc_vport **vports;
14685 struct lpfc_vport *vport = NULL;
14686 int i;
14687 uint32_t did = (fc_hdr->fh_d_id[0] << 16 |
14688 fc_hdr->fh_d_id[1] << 8 |
14689 fc_hdr->fh_d_id[2]);
James Smart939723a2012-05-09 21:19:03 -040014690
James Smartbf086112011-08-21 21:48:13 -040014691 if (did == Fabric_DID)
14692 return phba->pport;
James Smart939723a2012-05-09 21:19:03 -040014693 if ((phba->pport->fc_flag & FC_PT2PT) &&
14694 !(phba->link_state == LPFC_HBA_READY))
14695 return phba->pport;
14696
James Smart4f774512009-05-22 14:52:35 -040014697 vports = lpfc_create_vport_work_array(phba);
14698 if (vports != NULL)
14699 for (i = 0; i <= phba->max_vpi && vports[i] != NULL; i++) {
14700 if (phba->fcf.fcfi == fcfi &&
14701 vports[i]->vfi == lpfc_fc_hdr_get_vfi(fc_hdr) &&
14702 vports[i]->fc_myDID == did) {
14703 vport = vports[i];
14704 break;
14705 }
14706 }
14707 lpfc_destroy_vport_work_array(phba, vports);
14708 return vport;
14709}
14710
14711/**
James Smart45ed1192009-10-02 15:17:02 -040014712 * lpfc_update_rcv_time_stamp - Update vport's rcv seq time stamp
14713 * @vport: The vport to work on.
14714 *
14715 * This function updates the receive sequence time stamp for this vport. The
14716 * receive sequence time stamp indicates the time that the last frame of the
14717 * the sequence that has been idle for the longest amount of time was received.
14718 * the driver uses this time stamp to indicate if any received sequences have
14719 * timed out.
14720 **/
14721void
14722lpfc_update_rcv_time_stamp(struct lpfc_vport *vport)
14723{
14724 struct lpfc_dmabuf *h_buf;
14725 struct hbq_dmabuf *dmabuf = NULL;
14726
14727 /* get the oldest sequence on the rcv list */
14728 h_buf = list_get_first(&vport->rcv_buffer_list,
14729 struct lpfc_dmabuf, list);
14730 if (!h_buf)
14731 return;
14732 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14733 vport->rcv_buffer_time_stamp = dmabuf->time_stamp;
14734}
14735
14736/**
14737 * lpfc_cleanup_rcv_buffers - Cleans up all outstanding receive sequences.
14738 * @vport: The vport that the received sequences were sent to.
14739 *
14740 * This function cleans up all outstanding received sequences. This is called
14741 * by the driver when a link event or user action invalidates all the received
14742 * sequences.
14743 **/
14744void
14745lpfc_cleanup_rcv_buffers(struct lpfc_vport *vport)
14746{
14747 struct lpfc_dmabuf *h_buf, *hnext;
14748 struct lpfc_dmabuf *d_buf, *dnext;
14749 struct hbq_dmabuf *dmabuf = NULL;
14750
14751 /* start with the oldest sequence on the rcv list */
14752 list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
14753 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14754 list_del_init(&dmabuf->hbuf.list);
14755 list_for_each_entry_safe(d_buf, dnext,
14756 &dmabuf->dbuf.list, list) {
14757 list_del_init(&d_buf->list);
14758 lpfc_in_buf_free(vport->phba, d_buf);
14759 }
14760 lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
14761 }
14762}
14763
14764/**
14765 * lpfc_rcv_seq_check_edtov - Cleans up timed out receive sequences.
14766 * @vport: The vport that the received sequences were sent to.
14767 *
14768 * This function determines whether any received sequences have timed out by
14769 * first checking the vport's rcv_buffer_time_stamp. If this time_stamp
14770 * indicates that there is at least one timed out sequence this routine will
14771 * go through the received sequences one at a time from most inactive to most
14772 * active to determine which ones need to be cleaned up. Once it has determined
14773 * that a sequence needs to be cleaned up it will simply free up the resources
14774 * without sending an abort.
14775 **/
14776void
14777lpfc_rcv_seq_check_edtov(struct lpfc_vport *vport)
14778{
14779 struct lpfc_dmabuf *h_buf, *hnext;
14780 struct lpfc_dmabuf *d_buf, *dnext;
14781 struct hbq_dmabuf *dmabuf = NULL;
14782 unsigned long timeout;
14783 int abort_count = 0;
14784
14785 timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
14786 vport->rcv_buffer_time_stamp);
14787 if (list_empty(&vport->rcv_buffer_list) ||
14788 time_before(jiffies, timeout))
14789 return;
14790 /* start with the oldest sequence on the rcv list */
14791 list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
14792 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14793 timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
14794 dmabuf->time_stamp);
14795 if (time_before(jiffies, timeout))
14796 break;
14797 abort_count++;
14798 list_del_init(&dmabuf->hbuf.list);
14799 list_for_each_entry_safe(d_buf, dnext,
14800 &dmabuf->dbuf.list, list) {
14801 list_del_init(&d_buf->list);
14802 lpfc_in_buf_free(vport->phba, d_buf);
14803 }
14804 lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
14805 }
14806 if (abort_count)
14807 lpfc_update_rcv_time_stamp(vport);
14808}
14809
14810/**
James Smart4f774512009-05-22 14:52:35 -040014811 * lpfc_fc_frame_add - Adds a frame to the vport's list of received sequences
14812 * @dmabuf: pointer to a dmabuf that describes the hdr and data of the FC frame
14813 *
14814 * This function searches through the existing incomplete sequences that have
14815 * been sent to this @vport. If the frame matches one of the incomplete
14816 * sequences then the dbuf in the @dmabuf is added to the list of frames that
14817 * make up that sequence. If no sequence is found that matches this frame then
14818 * the function will add the hbuf in the @dmabuf to the @vport's rcv_buffer_list
14819 * This function returns a pointer to the first dmabuf in the sequence list that
14820 * the frame was linked to.
14821 **/
14822static struct hbq_dmabuf *
14823lpfc_fc_frame_add(struct lpfc_vport *vport, struct hbq_dmabuf *dmabuf)
14824{
14825 struct fc_frame_header *new_hdr;
14826 struct fc_frame_header *temp_hdr;
14827 struct lpfc_dmabuf *d_buf;
14828 struct lpfc_dmabuf *h_buf;
14829 struct hbq_dmabuf *seq_dmabuf = NULL;
14830 struct hbq_dmabuf *temp_dmabuf = NULL;
14831
James Smart4d9ab992009-10-02 15:16:39 -040014832 INIT_LIST_HEAD(&dmabuf->dbuf.list);
James Smart45ed1192009-10-02 15:17:02 -040014833 dmabuf->time_stamp = jiffies;
James Smart4f774512009-05-22 14:52:35 -040014834 new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
14835 /* Use the hdr_buf to find the sequence that this frame belongs to */
14836 list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
14837 temp_hdr = (struct fc_frame_header *)h_buf->virt;
14838 if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
14839 (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
14840 (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
14841 continue;
14842 /* found a pending sequence that matches this frame */
14843 seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14844 break;
14845 }
14846 if (!seq_dmabuf) {
14847 /*
14848 * This indicates first frame received for this sequence.
14849 * Queue the buffer on the vport's rcv_buffer_list.
14850 */
14851 list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
James Smart45ed1192009-10-02 15:17:02 -040014852 lpfc_update_rcv_time_stamp(vport);
James Smart4f774512009-05-22 14:52:35 -040014853 return dmabuf;
14854 }
14855 temp_hdr = seq_dmabuf->hbuf.virt;
James Smarteeead812009-12-21 17:01:23 -050014856 if (be16_to_cpu(new_hdr->fh_seq_cnt) <
14857 be16_to_cpu(temp_hdr->fh_seq_cnt)) {
James Smart4d9ab992009-10-02 15:16:39 -040014858 list_del_init(&seq_dmabuf->hbuf.list);
14859 list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
14860 list_add_tail(&dmabuf->dbuf.list, &seq_dmabuf->dbuf.list);
James Smart45ed1192009-10-02 15:17:02 -040014861 lpfc_update_rcv_time_stamp(vport);
James Smart4f774512009-05-22 14:52:35 -040014862 return dmabuf;
14863 }
James Smart45ed1192009-10-02 15:17:02 -040014864 /* move this sequence to the tail to indicate a young sequence */
14865 list_move_tail(&seq_dmabuf->hbuf.list, &vport->rcv_buffer_list);
14866 seq_dmabuf->time_stamp = jiffies;
14867 lpfc_update_rcv_time_stamp(vport);
James Smarteeead812009-12-21 17:01:23 -050014868 if (list_empty(&seq_dmabuf->dbuf.list)) {
14869 temp_hdr = dmabuf->hbuf.virt;
14870 list_add_tail(&dmabuf->dbuf.list, &seq_dmabuf->dbuf.list);
14871 return seq_dmabuf;
14872 }
James Smart4f774512009-05-22 14:52:35 -040014873 /* find the correct place in the sequence to insert this frame */
14874 list_for_each_entry_reverse(d_buf, &seq_dmabuf->dbuf.list, list) {
14875 temp_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
14876 temp_hdr = (struct fc_frame_header *)temp_dmabuf->hbuf.virt;
14877 /*
14878 * If the frame's sequence count is greater than the frame on
14879 * the list then insert the frame right after this frame
14880 */
James Smarteeead812009-12-21 17:01:23 -050014881 if (be16_to_cpu(new_hdr->fh_seq_cnt) >
14882 be16_to_cpu(temp_hdr->fh_seq_cnt)) {
James Smart4f774512009-05-22 14:52:35 -040014883 list_add(&dmabuf->dbuf.list, &temp_dmabuf->dbuf.list);
14884 return seq_dmabuf;
14885 }
14886 }
14887 return NULL;
14888}
14889
14890/**
James Smart6669f9b2009-10-02 15:16:45 -040014891 * lpfc_sli4_abort_partial_seq - Abort partially assembled unsol sequence
14892 * @vport: pointer to a vitural port
14893 * @dmabuf: pointer to a dmabuf that describes the FC sequence
14894 *
14895 * This function tries to abort from the partially assembed sequence, described
14896 * by the information from basic abbort @dmabuf. It checks to see whether such
14897 * partially assembled sequence held by the driver. If so, it shall free up all
14898 * the frames from the partially assembled sequence.
14899 *
14900 * Return
14901 * true -- if there is matching partially assembled sequence present and all
14902 * the frames freed with the sequence;
14903 * false -- if there is no matching partially assembled sequence present so
14904 * nothing got aborted in the lower layer driver
14905 **/
14906static bool
14907lpfc_sli4_abort_partial_seq(struct lpfc_vport *vport,
14908 struct hbq_dmabuf *dmabuf)
14909{
14910 struct fc_frame_header *new_hdr;
14911 struct fc_frame_header *temp_hdr;
14912 struct lpfc_dmabuf *d_buf, *n_buf, *h_buf;
14913 struct hbq_dmabuf *seq_dmabuf = NULL;
14914
14915 /* Use the hdr_buf to find the sequence that matches this frame */
14916 INIT_LIST_HEAD(&dmabuf->dbuf.list);
14917 INIT_LIST_HEAD(&dmabuf->hbuf.list);
14918 new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
14919 list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
14920 temp_hdr = (struct fc_frame_header *)h_buf->virt;
14921 if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
14922 (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
14923 (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
14924 continue;
14925 /* found a pending sequence that matches this frame */
14926 seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14927 break;
14928 }
14929
14930 /* Free up all the frames from the partially assembled sequence */
14931 if (seq_dmabuf) {
14932 list_for_each_entry_safe(d_buf, n_buf,
14933 &seq_dmabuf->dbuf.list, list) {
14934 list_del_init(&d_buf->list);
14935 lpfc_in_buf_free(vport->phba, d_buf);
14936 }
14937 return true;
14938 }
14939 return false;
14940}
14941
14942/**
James Smart6dd9e312013-01-03 15:43:37 -050014943 * lpfc_sli4_abort_ulp_seq - Abort assembled unsol sequence from ulp
14944 * @vport: pointer to a vitural port
14945 * @dmabuf: pointer to a dmabuf that describes the FC sequence
14946 *
14947 * This function tries to abort from the assembed sequence from upper level
14948 * protocol, described by the information from basic abbort @dmabuf. It
14949 * checks to see whether such pending context exists at upper level protocol.
14950 * If so, it shall clean up the pending context.
14951 *
14952 * Return
14953 * true -- if there is matching pending context of the sequence cleaned
14954 * at ulp;
14955 * false -- if there is no matching pending context of the sequence present
14956 * at ulp.
14957 **/
14958static bool
14959lpfc_sli4_abort_ulp_seq(struct lpfc_vport *vport, struct hbq_dmabuf *dmabuf)
14960{
14961 struct lpfc_hba *phba = vport->phba;
14962 int handled;
14963
14964 /* Accepting abort at ulp with SLI4 only */
14965 if (phba->sli_rev < LPFC_SLI_REV4)
14966 return false;
14967
14968 /* Register all caring upper level protocols to attend abort */
14969 handled = lpfc_ct_handle_unsol_abort(phba, dmabuf);
14970 if (handled)
14971 return true;
14972
14973 return false;
14974}
14975
14976/**
James Smart546fc852011-03-11 16:06:29 -050014977 * lpfc_sli4_seq_abort_rsp_cmpl - BLS ABORT RSP seq abort iocb complete handler
James Smart6669f9b2009-10-02 15:16:45 -040014978 * @phba: Pointer to HBA context object.
14979 * @cmd_iocbq: pointer to the command iocbq structure.
14980 * @rsp_iocbq: pointer to the response iocbq structure.
14981 *
James Smart546fc852011-03-11 16:06:29 -050014982 * This function handles the sequence abort response iocb command complete
James Smart6669f9b2009-10-02 15:16:45 -040014983 * event. It properly releases the memory allocated to the sequence abort
14984 * accept iocb.
14985 **/
14986static void
James Smart546fc852011-03-11 16:06:29 -050014987lpfc_sli4_seq_abort_rsp_cmpl(struct lpfc_hba *phba,
James Smart6669f9b2009-10-02 15:16:45 -040014988 struct lpfc_iocbq *cmd_iocbq,
14989 struct lpfc_iocbq *rsp_iocbq)
14990{
James Smart6dd9e312013-01-03 15:43:37 -050014991 struct lpfc_nodelist *ndlp;
14992
14993 if (cmd_iocbq) {
14994 ndlp = (struct lpfc_nodelist *)cmd_iocbq->context1;
14995 lpfc_nlp_put(ndlp);
14996 lpfc_nlp_not_used(ndlp);
James Smart6669f9b2009-10-02 15:16:45 -040014997 lpfc_sli_release_iocbq(phba, cmd_iocbq);
James Smart6dd9e312013-01-03 15:43:37 -050014998 }
James Smart6b5151f2012-01-18 16:24:06 -050014999
15000 /* Failure means BLS ABORT RSP did not get delivered to remote node*/
15001 if (rsp_iocbq && rsp_iocbq->iocb.ulpStatus)
15002 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15003 "3154 BLS ABORT RSP failed, data: x%x/x%x\n",
15004 rsp_iocbq->iocb.ulpStatus,
15005 rsp_iocbq->iocb.un.ulpWord[4]);
James Smart6669f9b2009-10-02 15:16:45 -040015006}
15007
15008/**
James Smart6d368e52011-05-24 11:44:12 -040015009 * lpfc_sli4_xri_inrange - check xri is in range of xris owned by driver.
15010 * @phba: Pointer to HBA context object.
15011 * @xri: xri id in transaction.
15012 *
15013 * This function validates the xri maps to the known range of XRIs allocated an
15014 * used by the driver.
15015 **/
James Smart7851fe22011-07-22 18:36:52 -040015016uint16_t
James Smart6d368e52011-05-24 11:44:12 -040015017lpfc_sli4_xri_inrange(struct lpfc_hba *phba,
15018 uint16_t xri)
15019{
15020 int i;
15021
15022 for (i = 0; i < phba->sli4_hba.max_cfg_param.max_xri; i++) {
15023 if (xri == phba->sli4_hba.xri_ids[i])
15024 return i;
15025 }
15026 return NO_XRI;
15027}
15028
James Smart6d368e52011-05-24 11:44:12 -040015029/**
James Smart546fc852011-03-11 16:06:29 -050015030 * lpfc_sli4_seq_abort_rsp - bls rsp to sequence abort
James Smart6669f9b2009-10-02 15:16:45 -040015031 * @phba: Pointer to HBA context object.
15032 * @fc_hdr: pointer to a FC frame header.
15033 *
James Smart546fc852011-03-11 16:06:29 -050015034 * This function sends a basic response to a previous unsol sequence abort
James Smart6669f9b2009-10-02 15:16:45 -040015035 * event after aborting the sequence handling.
15036 **/
15037static void
James Smart6dd9e312013-01-03 15:43:37 -050015038lpfc_sli4_seq_abort_rsp(struct lpfc_vport *vport,
15039 struct fc_frame_header *fc_hdr, bool aborted)
James Smart6669f9b2009-10-02 15:16:45 -040015040{
James Smart6dd9e312013-01-03 15:43:37 -050015041 struct lpfc_hba *phba = vport->phba;
James Smart6669f9b2009-10-02 15:16:45 -040015042 struct lpfc_iocbq *ctiocb = NULL;
15043 struct lpfc_nodelist *ndlp;
James Smartee0f4fe2012-05-09 21:19:14 -040015044 uint16_t oxid, rxid, xri, lxri;
James Smart5ffc2662009-11-18 15:39:44 -050015045 uint32_t sid, fctl;
James Smart6669f9b2009-10-02 15:16:45 -040015046 IOCB_t *icmd;
James Smart546fc852011-03-11 16:06:29 -050015047 int rc;
James Smart6669f9b2009-10-02 15:16:45 -040015048
15049 if (!lpfc_is_link_up(phba))
15050 return;
15051
15052 sid = sli4_sid_from_fc_hdr(fc_hdr);
15053 oxid = be16_to_cpu(fc_hdr->fh_ox_id);
James Smart5ffc2662009-11-18 15:39:44 -050015054 rxid = be16_to_cpu(fc_hdr->fh_rx_id);
James Smart6669f9b2009-10-02 15:16:45 -040015055
James Smart6dd9e312013-01-03 15:43:37 -050015056 ndlp = lpfc_findnode_did(vport, sid);
James Smart6669f9b2009-10-02 15:16:45 -040015057 if (!ndlp) {
James Smart6dd9e312013-01-03 15:43:37 -050015058 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
15059 if (!ndlp) {
15060 lpfc_printf_vlog(vport, KERN_WARNING, LOG_ELS,
15061 "1268 Failed to allocate ndlp for "
15062 "oxid:x%x SID:x%x\n", oxid, sid);
15063 return;
15064 }
15065 lpfc_nlp_init(vport, ndlp, sid);
15066 /* Put ndlp onto pport node list */
15067 lpfc_enqueue_node(vport, ndlp);
15068 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
15069 /* re-setup ndlp without removing from node list */
15070 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
15071 if (!ndlp) {
15072 lpfc_printf_vlog(vport, KERN_WARNING, LOG_ELS,
15073 "3275 Failed to active ndlp found "
15074 "for oxid:x%x SID:x%x\n", oxid, sid);
15075 return;
15076 }
James Smart6669f9b2009-10-02 15:16:45 -040015077 }
15078
James Smart546fc852011-03-11 16:06:29 -050015079 /* Allocate buffer for rsp iocb */
James Smart6669f9b2009-10-02 15:16:45 -040015080 ctiocb = lpfc_sli_get_iocbq(phba);
15081 if (!ctiocb)
15082 return;
15083
James Smart5ffc2662009-11-18 15:39:44 -050015084 /* Extract the F_CTL field from FC_HDR */
15085 fctl = sli4_fctl_from_fc_hdr(fc_hdr);
15086
James Smart6669f9b2009-10-02 15:16:45 -040015087 icmd = &ctiocb->iocb;
James Smart6669f9b2009-10-02 15:16:45 -040015088 icmd->un.xseq64.bdl.bdeSize = 0;
James Smart5ffc2662009-11-18 15:39:44 -050015089 icmd->un.xseq64.bdl.ulpIoTag32 = 0;
James Smart6669f9b2009-10-02 15:16:45 -040015090 icmd->un.xseq64.w5.hcsw.Dfctl = 0;
15091 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_ACC;
15092 icmd->un.xseq64.w5.hcsw.Type = FC_TYPE_BLS;
15093
15094 /* Fill in the rest of iocb fields */
15095 icmd->ulpCommand = CMD_XMIT_BLS_RSP64_CX;
15096 icmd->ulpBdeCount = 0;
15097 icmd->ulpLe = 1;
15098 icmd->ulpClass = CLASS3;
James Smart6d368e52011-05-24 11:44:12 -040015099 icmd->ulpContext = phba->sli4_hba.rpi_ids[ndlp->nlp_rpi];
James Smart6dd9e312013-01-03 15:43:37 -050015100 ctiocb->context1 = lpfc_nlp_get(ndlp);
James Smart6669f9b2009-10-02 15:16:45 -040015101
James Smart6669f9b2009-10-02 15:16:45 -040015102 ctiocb->iocb_cmpl = NULL;
15103 ctiocb->vport = phba->pport;
James Smart546fc852011-03-11 16:06:29 -050015104 ctiocb->iocb_cmpl = lpfc_sli4_seq_abort_rsp_cmpl;
James Smart6d368e52011-05-24 11:44:12 -040015105 ctiocb->sli4_lxritag = NO_XRI;
James Smart546fc852011-03-11 16:06:29 -050015106 ctiocb->sli4_xritag = NO_XRI;
15107
James Smartee0f4fe2012-05-09 21:19:14 -040015108 if (fctl & FC_FC_EX_CTX)
15109 /* Exchange responder sent the abort so we
15110 * own the oxid.
15111 */
15112 xri = oxid;
15113 else
15114 xri = rxid;
15115 lxri = lpfc_sli4_xri_inrange(phba, xri);
15116 if (lxri != NO_XRI)
15117 lpfc_set_rrq_active(phba, ndlp, lxri,
15118 (xri == oxid) ? rxid : oxid, 0);
James Smart6dd9e312013-01-03 15:43:37 -050015119 /* For BA_ABTS from exchange responder, if the logical xri with
15120 * the oxid maps to the FCP XRI range, the port no longer has
15121 * that exchange context, send a BLS_RJT. Override the IOCB for
15122 * a BA_RJT.
James Smart546fc852011-03-11 16:06:29 -050015123 */
James Smart6dd9e312013-01-03 15:43:37 -050015124 if ((fctl & FC_FC_EX_CTX) &&
15125 (lxri > lpfc_sli4_get_els_iocb_cnt(phba))) {
15126 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_RJT;
15127 bf_set(lpfc_vndr_code, &icmd->un.bls_rsp, 0);
15128 bf_set(lpfc_rsn_expln, &icmd->un.bls_rsp, FC_BA_RJT_INV_XID);
15129 bf_set(lpfc_rsn_code, &icmd->un.bls_rsp, FC_BA_RJT_UNABLE);
15130 }
15131
15132 /* If BA_ABTS failed to abort a partially assembled receive sequence,
15133 * the driver no longer has that exchange, send a BLS_RJT. Override
15134 * the IOCB for a BA_RJT.
15135 */
15136 if (aborted == false) {
James Smart546fc852011-03-11 16:06:29 -050015137 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_RJT;
15138 bf_set(lpfc_vndr_code, &icmd->un.bls_rsp, 0);
15139 bf_set(lpfc_rsn_expln, &icmd->un.bls_rsp, FC_BA_RJT_INV_XID);
15140 bf_set(lpfc_rsn_code, &icmd->un.bls_rsp, FC_BA_RJT_UNABLE);
15141 }
James Smart6669f9b2009-10-02 15:16:45 -040015142
James Smart5ffc2662009-11-18 15:39:44 -050015143 if (fctl & FC_FC_EX_CTX) {
15144 /* ABTS sent by responder to CT exchange, construction
15145 * of BA_ACC will use OX_ID from ABTS for the XRI_TAG
15146 * field and RX_ID from ABTS for RX_ID field.
15147 */
James Smart546fc852011-03-11 16:06:29 -050015148 bf_set(lpfc_abts_orig, &icmd->un.bls_rsp, LPFC_ABTS_UNSOL_RSP);
James Smart5ffc2662009-11-18 15:39:44 -050015149 } else {
15150 /* ABTS sent by initiator to CT exchange, construction
15151 * of BA_ACC will need to allocate a new XRI as for the
James Smartf09c3ac2012-03-01 22:33:29 -050015152 * XRI_TAG field.
James Smart5ffc2662009-11-18 15:39:44 -050015153 */
James Smart546fc852011-03-11 16:06:29 -050015154 bf_set(lpfc_abts_orig, &icmd->un.bls_rsp, LPFC_ABTS_UNSOL_INT);
James Smart5ffc2662009-11-18 15:39:44 -050015155 }
James Smartf09c3ac2012-03-01 22:33:29 -050015156 bf_set(lpfc_abts_rxid, &icmd->un.bls_rsp, rxid);
James Smart546fc852011-03-11 16:06:29 -050015157 bf_set(lpfc_abts_oxid, &icmd->un.bls_rsp, oxid);
James Smart5ffc2662009-11-18 15:39:44 -050015158
James Smart546fc852011-03-11 16:06:29 -050015159 /* Xmit CT abts response on exchange <xid> */
James Smart6dd9e312013-01-03 15:43:37 -050015160 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
15161 "1200 Send BLS cmd x%x on oxid x%x Data: x%x\n",
15162 icmd->un.xseq64.w5.hcsw.Rctl, oxid, phba->link_state);
James Smart546fc852011-03-11 16:06:29 -050015163
15164 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, ctiocb, 0);
15165 if (rc == IOCB_ERROR) {
James Smart6dd9e312013-01-03 15:43:37 -050015166 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
15167 "2925 Failed to issue CT ABTS RSP x%x on "
15168 "xri x%x, Data x%x\n",
15169 icmd->un.xseq64.w5.hcsw.Rctl, oxid,
15170 phba->link_state);
15171 lpfc_nlp_put(ndlp);
15172 ctiocb->context1 = NULL;
James Smart546fc852011-03-11 16:06:29 -050015173 lpfc_sli_release_iocbq(phba, ctiocb);
15174 }
James Smart6669f9b2009-10-02 15:16:45 -040015175}
15176
15177/**
15178 * lpfc_sli4_handle_unsol_abort - Handle sli-4 unsolicited abort event
15179 * @vport: Pointer to the vport on which this sequence was received
15180 * @dmabuf: pointer to a dmabuf that describes the FC sequence
15181 *
15182 * This function handles an SLI-4 unsolicited abort event. If the unsolicited
15183 * receive sequence is only partially assembed by the driver, it shall abort
15184 * the partially assembled frames for the sequence. Otherwise, if the
15185 * unsolicited receive sequence has been completely assembled and passed to
15186 * the Upper Layer Protocol (UPL), it then mark the per oxid status for the
15187 * unsolicited sequence has been aborted. After that, it will issue a basic
15188 * accept to accept the abort.
15189 **/
15190void
15191lpfc_sli4_handle_unsol_abort(struct lpfc_vport *vport,
15192 struct hbq_dmabuf *dmabuf)
15193{
15194 struct lpfc_hba *phba = vport->phba;
15195 struct fc_frame_header fc_hdr;
James Smart5ffc2662009-11-18 15:39:44 -050015196 uint32_t fctl;
James Smart6dd9e312013-01-03 15:43:37 -050015197 bool aborted;
James Smart6669f9b2009-10-02 15:16:45 -040015198
James Smart6669f9b2009-10-02 15:16:45 -040015199 /* Make a copy of fc_hdr before the dmabuf being released */
15200 memcpy(&fc_hdr, dmabuf->hbuf.virt, sizeof(struct fc_frame_header));
James Smart5ffc2662009-11-18 15:39:44 -050015201 fctl = sli4_fctl_from_fc_hdr(&fc_hdr);
James Smart6669f9b2009-10-02 15:16:45 -040015202
James Smart5ffc2662009-11-18 15:39:44 -050015203 if (fctl & FC_FC_EX_CTX) {
James Smart6dd9e312013-01-03 15:43:37 -050015204 /* ABTS by responder to exchange, no cleanup needed */
15205 aborted = true;
James Smart5ffc2662009-11-18 15:39:44 -050015206 } else {
James Smart6dd9e312013-01-03 15:43:37 -050015207 /* ABTS by initiator to exchange, need to do cleanup */
15208 aborted = lpfc_sli4_abort_partial_seq(vport, dmabuf);
15209 if (aborted == false)
15210 aborted = lpfc_sli4_abort_ulp_seq(vport, dmabuf);
James Smart5ffc2662009-11-18 15:39:44 -050015211 }
James Smart6dd9e312013-01-03 15:43:37 -050015212 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15213
15214 /* Respond with BA_ACC or BA_RJT accordingly */
15215 lpfc_sli4_seq_abort_rsp(vport, &fc_hdr, aborted);
James Smart6669f9b2009-10-02 15:16:45 -040015216}
15217
15218/**
James Smart4f774512009-05-22 14:52:35 -040015219 * lpfc_seq_complete - Indicates if a sequence is complete
15220 * @dmabuf: pointer to a dmabuf that describes the FC sequence
15221 *
15222 * This function checks the sequence, starting with the frame described by
15223 * @dmabuf, to see if all the frames associated with this sequence are present.
15224 * the frames associated with this sequence are linked to the @dmabuf using the
15225 * dbuf list. This function looks for two major things. 1) That the first frame
15226 * has a sequence count of zero. 2) There is a frame with last frame of sequence
15227 * set. 3) That there are no holes in the sequence count. The function will
15228 * return 1 when the sequence is complete, otherwise it will return 0.
15229 **/
15230static int
15231lpfc_seq_complete(struct hbq_dmabuf *dmabuf)
15232{
15233 struct fc_frame_header *hdr;
15234 struct lpfc_dmabuf *d_buf;
15235 struct hbq_dmabuf *seq_dmabuf;
15236 uint32_t fctl;
15237 int seq_count = 0;
15238
15239 hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
15240 /* make sure first fame of sequence has a sequence count of zero */
15241 if (hdr->fh_seq_cnt != seq_count)
15242 return 0;
15243 fctl = (hdr->fh_f_ctl[0] << 16 |
15244 hdr->fh_f_ctl[1] << 8 |
15245 hdr->fh_f_ctl[2]);
15246 /* If last frame of sequence we can return success. */
15247 if (fctl & FC_FC_END_SEQ)
15248 return 1;
15249 list_for_each_entry(d_buf, &dmabuf->dbuf.list, list) {
15250 seq_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
15251 hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
15252 /* If there is a hole in the sequence count then fail. */
James Smarteeead812009-12-21 17:01:23 -050015253 if (++seq_count != be16_to_cpu(hdr->fh_seq_cnt))
James Smart4f774512009-05-22 14:52:35 -040015254 return 0;
15255 fctl = (hdr->fh_f_ctl[0] << 16 |
15256 hdr->fh_f_ctl[1] << 8 |
15257 hdr->fh_f_ctl[2]);
15258 /* If last frame of sequence we can return success. */
15259 if (fctl & FC_FC_END_SEQ)
15260 return 1;
15261 }
15262 return 0;
15263}
15264
15265/**
15266 * lpfc_prep_seq - Prep sequence for ULP processing
15267 * @vport: Pointer to the vport on which this sequence was received
15268 * @dmabuf: pointer to a dmabuf that describes the FC sequence
15269 *
15270 * This function takes a sequence, described by a list of frames, and creates
15271 * a list of iocbq structures to describe the sequence. This iocbq list will be
15272 * used to issue to the generic unsolicited sequence handler. This routine
15273 * returns a pointer to the first iocbq in the list. If the function is unable
15274 * to allocate an iocbq then it throw out the received frames that were not
15275 * able to be described and return a pointer to the first iocbq. If unable to
15276 * allocate any iocbqs (including the first) this function will return NULL.
15277 **/
15278static struct lpfc_iocbq *
15279lpfc_prep_seq(struct lpfc_vport *vport, struct hbq_dmabuf *seq_dmabuf)
15280{
James Smart7851fe22011-07-22 18:36:52 -040015281 struct hbq_dmabuf *hbq_buf;
James Smart4f774512009-05-22 14:52:35 -040015282 struct lpfc_dmabuf *d_buf, *n_buf;
15283 struct lpfc_iocbq *first_iocbq, *iocbq;
15284 struct fc_frame_header *fc_hdr;
15285 uint32_t sid;
James Smart7851fe22011-07-22 18:36:52 -040015286 uint32_t len, tot_len;
James Smarteeead812009-12-21 17:01:23 -050015287 struct ulp_bde64 *pbde;
James Smart4f774512009-05-22 14:52:35 -040015288
15289 fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
15290 /* remove from receive buffer list */
15291 list_del_init(&seq_dmabuf->hbuf.list);
James Smart45ed1192009-10-02 15:17:02 -040015292 lpfc_update_rcv_time_stamp(vport);
James Smart4f774512009-05-22 14:52:35 -040015293 /* get the Remote Port's SID */
James Smart6669f9b2009-10-02 15:16:45 -040015294 sid = sli4_sid_from_fc_hdr(fc_hdr);
James Smart7851fe22011-07-22 18:36:52 -040015295 tot_len = 0;
James Smart4f774512009-05-22 14:52:35 -040015296 /* Get an iocbq struct to fill in. */
15297 first_iocbq = lpfc_sli_get_iocbq(vport->phba);
15298 if (first_iocbq) {
15299 /* Initialize the first IOCB. */
James Smart8fa38512009-07-19 10:01:03 -040015300 first_iocbq->iocb.unsli3.rcvsli3.acc_len = 0;
James Smart4f774512009-05-22 14:52:35 -040015301 first_iocbq->iocb.ulpStatus = IOSTAT_SUCCESS;
James Smart939723a2012-05-09 21:19:03 -040015302
15303 /* Check FC Header to see what TYPE of frame we are rcv'ing */
15304 if (sli4_type_from_fc_hdr(fc_hdr) == FC_TYPE_ELS) {
15305 first_iocbq->iocb.ulpCommand = CMD_IOCB_RCV_ELS64_CX;
15306 first_iocbq->iocb.un.rcvels.parmRo =
15307 sli4_did_from_fc_hdr(fc_hdr);
15308 first_iocbq->iocb.ulpPU = PARM_NPIV_DID;
15309 } else
15310 first_iocbq->iocb.ulpCommand = CMD_IOCB_RCV_SEQ64_CX;
James Smart7851fe22011-07-22 18:36:52 -040015311 first_iocbq->iocb.ulpContext = NO_XRI;
15312 first_iocbq->iocb.unsli3.rcvsli3.ox_id =
15313 be16_to_cpu(fc_hdr->fh_ox_id);
15314 /* iocbq is prepped for internal consumption. Physical vpi. */
15315 first_iocbq->iocb.unsli3.rcvsli3.vpi =
15316 vport->phba->vpi_ids[vport->vpi];
James Smart4f774512009-05-22 14:52:35 -040015317 /* put the first buffer into the first IOCBq */
James Smart48a5a662013-07-15 18:32:28 -040015318 tot_len = bf_get(lpfc_rcqe_length,
15319 &seq_dmabuf->cq_event.cqe.rcqe_cmpl);
15320
James Smart4f774512009-05-22 14:52:35 -040015321 first_iocbq->context2 = &seq_dmabuf->dbuf;
15322 first_iocbq->context3 = NULL;
15323 first_iocbq->iocb.ulpBdeCount = 1;
James Smart48a5a662013-07-15 18:32:28 -040015324 if (tot_len > LPFC_DATA_BUF_SIZE)
15325 first_iocbq->iocb.un.cont64[0].tus.f.bdeSize =
James Smart4f774512009-05-22 14:52:35 -040015326 LPFC_DATA_BUF_SIZE;
James Smart48a5a662013-07-15 18:32:28 -040015327 else
15328 first_iocbq->iocb.un.cont64[0].tus.f.bdeSize = tot_len;
15329
James Smart4f774512009-05-22 14:52:35 -040015330 first_iocbq->iocb.un.rcvels.remoteID = sid;
James Smart48a5a662013-07-15 18:32:28 -040015331
James Smart7851fe22011-07-22 18:36:52 -040015332 first_iocbq->iocb.unsli3.rcvsli3.acc_len = tot_len;
James Smart4f774512009-05-22 14:52:35 -040015333 }
15334 iocbq = first_iocbq;
15335 /*
15336 * Each IOCBq can have two Buffers assigned, so go through the list
15337 * of buffers for this sequence and save two buffers in each IOCBq
15338 */
15339 list_for_each_entry_safe(d_buf, n_buf, &seq_dmabuf->dbuf.list, list) {
15340 if (!iocbq) {
15341 lpfc_in_buf_free(vport->phba, d_buf);
15342 continue;
15343 }
15344 if (!iocbq->context3) {
15345 iocbq->context3 = d_buf;
15346 iocbq->iocb.ulpBdeCount++;
James Smart7851fe22011-07-22 18:36:52 -040015347 /* We need to get the size out of the right CQE */
15348 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
15349 len = bf_get(lpfc_rcqe_length,
15350 &hbq_buf->cq_event.cqe.rcqe_cmpl);
James Smart48a5a662013-07-15 18:32:28 -040015351 pbde = (struct ulp_bde64 *)
15352 &iocbq->iocb.unsli3.sli3Words[4];
15353 if (len > LPFC_DATA_BUF_SIZE)
15354 pbde->tus.f.bdeSize = LPFC_DATA_BUF_SIZE;
15355 else
15356 pbde->tus.f.bdeSize = len;
15357
James Smart7851fe22011-07-22 18:36:52 -040015358 iocbq->iocb.unsli3.rcvsli3.acc_len += len;
15359 tot_len += len;
James Smart4f774512009-05-22 14:52:35 -040015360 } else {
15361 iocbq = lpfc_sli_get_iocbq(vport->phba);
15362 if (!iocbq) {
15363 if (first_iocbq) {
15364 first_iocbq->iocb.ulpStatus =
15365 IOSTAT_FCP_RSP_ERROR;
15366 first_iocbq->iocb.un.ulpWord[4] =
15367 IOERR_NO_RESOURCES;
15368 }
15369 lpfc_in_buf_free(vport->phba, d_buf);
15370 continue;
15371 }
James Smart7851fe22011-07-22 18:36:52 -040015372 /* We need to get the size out of the right CQE */
15373 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
15374 len = bf_get(lpfc_rcqe_length,
15375 &hbq_buf->cq_event.cqe.rcqe_cmpl);
James Smart48a5a662013-07-15 18:32:28 -040015376 iocbq->context2 = d_buf;
15377 iocbq->context3 = NULL;
15378 iocbq->iocb.ulpBdeCount = 1;
15379 if (len > LPFC_DATA_BUF_SIZE)
15380 iocbq->iocb.un.cont64[0].tus.f.bdeSize =
15381 LPFC_DATA_BUF_SIZE;
15382 else
15383 iocbq->iocb.un.cont64[0].tus.f.bdeSize = len;
15384
James Smart7851fe22011-07-22 18:36:52 -040015385 tot_len += len;
15386 iocbq->iocb.unsli3.rcvsli3.acc_len = tot_len;
15387
James Smart4f774512009-05-22 14:52:35 -040015388 iocbq->iocb.un.rcvels.remoteID = sid;
15389 list_add_tail(&iocbq->list, &first_iocbq->list);
15390 }
15391 }
15392 return first_iocbq;
15393}
15394
James Smart6669f9b2009-10-02 15:16:45 -040015395static void
15396lpfc_sli4_send_seq_to_ulp(struct lpfc_vport *vport,
15397 struct hbq_dmabuf *seq_dmabuf)
15398{
15399 struct fc_frame_header *fc_hdr;
15400 struct lpfc_iocbq *iocbq, *curr_iocb, *next_iocb;
15401 struct lpfc_hba *phba = vport->phba;
15402
15403 fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
15404 iocbq = lpfc_prep_seq(vport, seq_dmabuf);
15405 if (!iocbq) {
15406 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15407 "2707 Ring %d handler: Failed to allocate "
15408 "iocb Rctl x%x Type x%x received\n",
15409 LPFC_ELS_RING,
15410 fc_hdr->fh_r_ctl, fc_hdr->fh_type);
15411 return;
15412 }
15413 if (!lpfc_complete_unsol_iocb(phba,
15414 &phba->sli.ring[LPFC_ELS_RING],
15415 iocbq, fc_hdr->fh_r_ctl,
15416 fc_hdr->fh_type))
James Smart6d368e52011-05-24 11:44:12 -040015417 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart6669f9b2009-10-02 15:16:45 -040015418 "2540 Ring %d handler: unexpected Rctl "
15419 "x%x Type x%x received\n",
15420 LPFC_ELS_RING,
15421 fc_hdr->fh_r_ctl, fc_hdr->fh_type);
15422
15423 /* Free iocb created in lpfc_prep_seq */
15424 list_for_each_entry_safe(curr_iocb, next_iocb,
15425 &iocbq->list, list) {
15426 list_del_init(&curr_iocb->list);
15427 lpfc_sli_release_iocbq(phba, curr_iocb);
15428 }
15429 lpfc_sli_release_iocbq(phba, iocbq);
15430}
15431
James Smart4f774512009-05-22 14:52:35 -040015432/**
15433 * lpfc_sli4_handle_received_buffer - Handle received buffers from firmware
15434 * @phba: Pointer to HBA context object.
15435 *
15436 * This function is called with no lock held. This function processes all
15437 * the received buffers and gives it to upper layers when a received buffer
15438 * indicates that it is the final frame in the sequence. The interrupt
15439 * service routine processes received buffers at interrupt contexts and adds
15440 * received dma buffers to the rb_pend_list queue and signals the worker thread.
15441 * Worker thread calls lpfc_sli4_handle_received_buffer, which will call the
15442 * appropriate receive function when the final frame in a sequence is received.
15443 **/
James Smart4d9ab992009-10-02 15:16:39 -040015444void
15445lpfc_sli4_handle_received_buffer(struct lpfc_hba *phba,
15446 struct hbq_dmabuf *dmabuf)
James Smart4f774512009-05-22 14:52:35 -040015447{
James Smart4d9ab992009-10-02 15:16:39 -040015448 struct hbq_dmabuf *seq_dmabuf;
James Smart4f774512009-05-22 14:52:35 -040015449 struct fc_frame_header *fc_hdr;
15450 struct lpfc_vport *vport;
15451 uint32_t fcfi;
James Smart939723a2012-05-09 21:19:03 -040015452 uint32_t did;
James Smart4f774512009-05-22 14:52:35 -040015453
James Smart4f774512009-05-22 14:52:35 -040015454 /* Process each received buffer */
James Smart4d9ab992009-10-02 15:16:39 -040015455 fc_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
15456 /* check to see if this a valid type of frame */
15457 if (lpfc_fc_frame_check(phba, fc_hdr)) {
15458 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15459 return;
15460 }
James Smart7851fe22011-07-22 18:36:52 -040015461 if ((bf_get(lpfc_cqe_code,
15462 &dmabuf->cq_event.cqe.rcqe_cmpl) == CQE_CODE_RECEIVE_V1))
15463 fcfi = bf_get(lpfc_rcqe_fcf_id_v1,
15464 &dmabuf->cq_event.cqe.rcqe_cmpl);
15465 else
15466 fcfi = bf_get(lpfc_rcqe_fcf_id,
15467 &dmabuf->cq_event.cqe.rcqe_cmpl);
James Smart939723a2012-05-09 21:19:03 -040015468
James Smart4d9ab992009-10-02 15:16:39 -040015469 vport = lpfc_fc_frame_to_vport(phba, fc_hdr, fcfi);
James Smart939723a2012-05-09 21:19:03 -040015470 if (!vport) {
James Smart4d9ab992009-10-02 15:16:39 -040015471 /* throw out the frame */
15472 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15473 return;
15474 }
James Smart939723a2012-05-09 21:19:03 -040015475
15476 /* d_id this frame is directed to */
15477 did = sli4_did_from_fc_hdr(fc_hdr);
15478
15479 /* vport is registered unless we rcv a FLOGI directed to Fabric_DID */
15480 if (!(vport->vpi_state & LPFC_VPI_REGISTERED) &&
15481 (did != Fabric_DID)) {
15482 /*
15483 * Throw out the frame if we are not pt2pt.
15484 * The pt2pt protocol allows for discovery frames
15485 * to be received without a registered VPI.
15486 */
15487 if (!(vport->fc_flag & FC_PT2PT) ||
15488 (phba->link_state == LPFC_HBA_READY)) {
15489 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15490 return;
15491 }
15492 }
15493
James Smart6669f9b2009-10-02 15:16:45 -040015494 /* Handle the basic abort sequence (BA_ABTS) event */
15495 if (fc_hdr->fh_r_ctl == FC_RCTL_BA_ABTS) {
15496 lpfc_sli4_handle_unsol_abort(vport, dmabuf);
15497 return;
15498 }
15499
James Smart4d9ab992009-10-02 15:16:39 -040015500 /* Link this frame */
15501 seq_dmabuf = lpfc_fc_frame_add(vport, dmabuf);
15502 if (!seq_dmabuf) {
15503 /* unable to add frame to vport - throw it out */
15504 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15505 return;
15506 }
15507 /* If not last frame in sequence continue processing frames. */
James Smartdef9c7a2009-12-21 17:02:28 -050015508 if (!lpfc_seq_complete(seq_dmabuf))
James Smart4d9ab992009-10-02 15:16:39 -040015509 return;
James Smartdef9c7a2009-12-21 17:02:28 -050015510
James Smart6669f9b2009-10-02 15:16:45 -040015511 /* Send the complete sequence to the upper layer protocol */
15512 lpfc_sli4_send_seq_to_ulp(vport, seq_dmabuf);
James Smart4f774512009-05-22 14:52:35 -040015513}
James Smart6fb120a2009-05-22 14:52:59 -040015514
15515/**
15516 * lpfc_sli4_post_all_rpi_hdrs - Post the rpi header memory region to the port
15517 * @phba: pointer to lpfc hba data structure.
15518 *
15519 * This routine is invoked to post rpi header templates to the
15520 * HBA consistent with the SLI-4 interface spec. This routine
James Smart49198b32010-04-06 15:04:33 -040015521 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
15522 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
James Smart6fb120a2009-05-22 14:52:59 -040015523 *
15524 * This routine does not require any locks. It's usage is expected
15525 * to be driver load or reset recovery when the driver is
15526 * sequential.
15527 *
15528 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020015529 * 0 - successful
James Smartd439d282010-09-29 11:18:45 -040015530 * -EIO - The mailbox failed to complete successfully.
James Smart6fb120a2009-05-22 14:52:59 -040015531 * When this error occurs, the driver is not guaranteed
15532 * to have any rpi regions posted to the device and
15533 * must either attempt to repost the regions or take a
15534 * fatal error.
15535 **/
15536int
15537lpfc_sli4_post_all_rpi_hdrs(struct lpfc_hba *phba)
15538{
15539 struct lpfc_rpi_hdr *rpi_page;
15540 uint32_t rc = 0;
James Smart6d368e52011-05-24 11:44:12 -040015541 uint16_t lrpi = 0;
James Smart6fb120a2009-05-22 14:52:59 -040015542
James Smart6d368e52011-05-24 11:44:12 -040015543 /* SLI4 ports that support extents do not require RPI headers. */
15544 if (!phba->sli4_hba.rpi_hdrs_in_use)
15545 goto exit;
15546 if (phba->sli4_hba.extents_in_use)
15547 return -EIO;
15548
James Smart6fb120a2009-05-22 14:52:59 -040015549 list_for_each_entry(rpi_page, &phba->sli4_hba.lpfc_rpi_hdr_list, list) {
James Smart6d368e52011-05-24 11:44:12 -040015550 /*
15551 * Assign the rpi headers a physical rpi only if the driver
15552 * has not initialized those resources. A port reset only
15553 * needs the headers posted.
15554 */
15555 if (bf_get(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags) !=
15556 LPFC_RPI_RSRC_RDY)
15557 rpi_page->start_rpi = phba->sli4_hba.rpi_ids[lrpi];
15558
James Smart6fb120a2009-05-22 14:52:59 -040015559 rc = lpfc_sli4_post_rpi_hdr(phba, rpi_page);
15560 if (rc != MBX_SUCCESS) {
15561 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15562 "2008 Error %d posting all rpi "
15563 "headers\n", rc);
15564 rc = -EIO;
15565 break;
15566 }
15567 }
15568
James Smart6d368e52011-05-24 11:44:12 -040015569 exit:
15570 bf_set(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags,
15571 LPFC_RPI_RSRC_RDY);
James Smart6fb120a2009-05-22 14:52:59 -040015572 return rc;
15573}
15574
15575/**
15576 * lpfc_sli4_post_rpi_hdr - Post an rpi header memory region to the port
15577 * @phba: pointer to lpfc hba data structure.
15578 * @rpi_page: pointer to the rpi memory region.
15579 *
15580 * This routine is invoked to post a single rpi header to the
15581 * HBA consistent with the SLI-4 interface spec. This memory region
15582 * maps up to 64 rpi context regions.
15583 *
15584 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020015585 * 0 - successful
James Smartd439d282010-09-29 11:18:45 -040015586 * -ENOMEM - No available memory
15587 * -EIO - The mailbox failed to complete successfully.
James Smart6fb120a2009-05-22 14:52:59 -040015588 **/
15589int
15590lpfc_sli4_post_rpi_hdr(struct lpfc_hba *phba, struct lpfc_rpi_hdr *rpi_page)
15591{
15592 LPFC_MBOXQ_t *mboxq;
15593 struct lpfc_mbx_post_hdr_tmpl *hdr_tmpl;
15594 uint32_t rc = 0;
James Smart6fb120a2009-05-22 14:52:59 -040015595 uint32_t shdr_status, shdr_add_status;
15596 union lpfc_sli4_cfg_shdr *shdr;
15597
James Smart6d368e52011-05-24 11:44:12 -040015598 /* SLI4 ports that support extents do not require RPI headers. */
15599 if (!phba->sli4_hba.rpi_hdrs_in_use)
15600 return rc;
15601 if (phba->sli4_hba.extents_in_use)
15602 return -EIO;
15603
James Smart6fb120a2009-05-22 14:52:59 -040015604 /* The port is notified of the header region via a mailbox command. */
15605 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15606 if (!mboxq) {
15607 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15608 "2001 Unable to allocate memory for issuing "
15609 "SLI_CONFIG_SPECIAL mailbox command\n");
15610 return -ENOMEM;
15611 }
15612
15613 /* Post all rpi memory regions to the port. */
15614 hdr_tmpl = &mboxq->u.mqe.un.hdr_tmpl;
James Smart6fb120a2009-05-22 14:52:59 -040015615 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
15616 LPFC_MBOX_OPCODE_FCOE_POST_HDR_TEMPLATE,
15617 sizeof(struct lpfc_mbx_post_hdr_tmpl) -
James Smartfedd3b72011-02-16 12:39:24 -050015618 sizeof(struct lpfc_sli4_cfg_mhdr),
15619 LPFC_SLI4_MBX_EMBED);
James Smart6d368e52011-05-24 11:44:12 -040015620
15621
15622 /* Post the physical rpi to the port for this rpi header. */
James Smart6fb120a2009-05-22 14:52:59 -040015623 bf_set(lpfc_mbx_post_hdr_tmpl_rpi_offset, hdr_tmpl,
15624 rpi_page->start_rpi);
James Smart6d368e52011-05-24 11:44:12 -040015625 bf_set(lpfc_mbx_post_hdr_tmpl_page_cnt,
15626 hdr_tmpl, rpi_page->page_count);
15627
James Smart6fb120a2009-05-22 14:52:59 -040015628 hdr_tmpl->rpi_paddr_lo = putPaddrLow(rpi_page->dmabuf->phys);
15629 hdr_tmpl->rpi_paddr_hi = putPaddrHigh(rpi_page->dmabuf->phys);
James Smartf1126682009-06-10 17:22:44 -040015630 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
James Smart6fb120a2009-05-22 14:52:59 -040015631 shdr = (union lpfc_sli4_cfg_shdr *) &hdr_tmpl->header.cfg_shdr;
15632 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
15633 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
15634 if (rc != MBX_TIMEOUT)
15635 mempool_free(mboxq, phba->mbox_mem_pool);
15636 if (shdr_status || shdr_add_status || rc) {
15637 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15638 "2514 POST_RPI_HDR mailbox failed with "
15639 "status x%x add_status x%x, mbx status x%x\n",
15640 shdr_status, shdr_add_status, rc);
15641 rc = -ENXIO;
15642 }
15643 return rc;
15644}
15645
15646/**
15647 * lpfc_sli4_alloc_rpi - Get an available rpi in the device's range
15648 * @phba: pointer to lpfc hba data structure.
15649 *
15650 * This routine is invoked to post rpi header templates to the
15651 * HBA consistent with the SLI-4 interface spec. This routine
James Smart49198b32010-04-06 15:04:33 -040015652 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
15653 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
James Smart6fb120a2009-05-22 14:52:59 -040015654 *
15655 * Returns
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020015656 * A nonzero rpi defined as rpi_base <= rpi < max_rpi if successful
James Smart6fb120a2009-05-22 14:52:59 -040015657 * LPFC_RPI_ALLOC_ERROR if no rpis are available.
15658 **/
15659int
15660lpfc_sli4_alloc_rpi(struct lpfc_hba *phba)
15661{
James Smart6d368e52011-05-24 11:44:12 -040015662 unsigned long rpi;
15663 uint16_t max_rpi, rpi_limit;
15664 uint16_t rpi_remaining, lrpi = 0;
James Smart6fb120a2009-05-22 14:52:59 -040015665 struct lpfc_rpi_hdr *rpi_hdr;
James Smart4902b382013-10-10 12:20:35 -040015666 unsigned long iflag;
James Smart6fb120a2009-05-22 14:52:59 -040015667
15668 max_rpi = phba->sli4_hba.max_cfg_param.max_rpi;
James Smart6fb120a2009-05-22 14:52:59 -040015669 rpi_limit = phba->sli4_hba.next_rpi;
15670
15671 /*
James Smart6d368e52011-05-24 11:44:12 -040015672 * Fetch the next logical rpi. Because this index is logical,
15673 * the driver starts at 0 each time.
James Smart6fb120a2009-05-22 14:52:59 -040015674 */
James Smart4902b382013-10-10 12:20:35 -040015675 spin_lock_irqsave(&phba->hbalock, iflag);
James Smart6d368e52011-05-24 11:44:12 -040015676 rpi = find_next_zero_bit(phba->sli4_hba.rpi_bmask, rpi_limit, 0);
15677 if (rpi >= rpi_limit)
James Smart6fb120a2009-05-22 14:52:59 -040015678 rpi = LPFC_RPI_ALLOC_ERROR;
15679 else {
15680 set_bit(rpi, phba->sli4_hba.rpi_bmask);
15681 phba->sli4_hba.max_cfg_param.rpi_used++;
15682 phba->sli4_hba.rpi_count++;
15683 }
15684
15685 /*
15686 * Don't try to allocate more rpi header regions if the device limit
James Smart6d368e52011-05-24 11:44:12 -040015687 * has been exhausted.
James Smart6fb120a2009-05-22 14:52:59 -040015688 */
15689 if ((rpi == LPFC_RPI_ALLOC_ERROR) &&
15690 (phba->sli4_hba.rpi_count >= max_rpi)) {
James Smart4902b382013-10-10 12:20:35 -040015691 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart6fb120a2009-05-22 14:52:59 -040015692 return rpi;
15693 }
15694
15695 /*
James Smart6d368e52011-05-24 11:44:12 -040015696 * RPI header postings are not required for SLI4 ports capable of
15697 * extents.
15698 */
15699 if (!phba->sli4_hba.rpi_hdrs_in_use) {
James Smart4902b382013-10-10 12:20:35 -040015700 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart6d368e52011-05-24 11:44:12 -040015701 return rpi;
15702 }
15703
15704 /*
James Smart6fb120a2009-05-22 14:52:59 -040015705 * If the driver is running low on rpi resources, allocate another
15706 * page now. Note that the next_rpi value is used because
15707 * it represents how many are actually in use whereas max_rpi notes
15708 * how many are supported max by the device.
15709 */
James Smart6d368e52011-05-24 11:44:12 -040015710 rpi_remaining = phba->sli4_hba.next_rpi - phba->sli4_hba.rpi_count;
James Smart4902b382013-10-10 12:20:35 -040015711 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart6fb120a2009-05-22 14:52:59 -040015712 if (rpi_remaining < LPFC_RPI_LOW_WATER_MARK) {
15713 rpi_hdr = lpfc_sli4_create_rpi_hdr(phba);
15714 if (!rpi_hdr) {
15715 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15716 "2002 Error Could not grow rpi "
15717 "count\n");
15718 } else {
James Smart6d368e52011-05-24 11:44:12 -040015719 lrpi = rpi_hdr->start_rpi;
15720 rpi_hdr->start_rpi = phba->sli4_hba.rpi_ids[lrpi];
James Smart6fb120a2009-05-22 14:52:59 -040015721 lpfc_sli4_post_rpi_hdr(phba, rpi_hdr);
15722 }
15723 }
15724
15725 return rpi;
15726}
15727
15728/**
15729 * lpfc_sli4_free_rpi - Release an rpi for reuse.
15730 * @phba: pointer to lpfc hba data structure.
15731 *
15732 * This routine is invoked to release an rpi to the pool of
15733 * available rpis maintained by the driver.
15734 **/
15735void
James Smartd7c47992010-06-08 18:31:54 -040015736__lpfc_sli4_free_rpi(struct lpfc_hba *phba, int rpi)
15737{
15738 if (test_and_clear_bit(rpi, phba->sli4_hba.rpi_bmask)) {
15739 phba->sli4_hba.rpi_count--;
15740 phba->sli4_hba.max_cfg_param.rpi_used--;
15741 }
15742}
15743
15744/**
15745 * lpfc_sli4_free_rpi - Release an rpi for reuse.
15746 * @phba: pointer to lpfc hba data structure.
15747 *
15748 * This routine is invoked to release an rpi to the pool of
15749 * available rpis maintained by the driver.
15750 **/
15751void
James Smart6fb120a2009-05-22 14:52:59 -040015752lpfc_sli4_free_rpi(struct lpfc_hba *phba, int rpi)
15753{
15754 spin_lock_irq(&phba->hbalock);
James Smartd7c47992010-06-08 18:31:54 -040015755 __lpfc_sli4_free_rpi(phba, rpi);
James Smart6fb120a2009-05-22 14:52:59 -040015756 spin_unlock_irq(&phba->hbalock);
15757}
15758
15759/**
15760 * lpfc_sli4_remove_rpis - Remove the rpi bitmask region
15761 * @phba: pointer to lpfc hba data structure.
15762 *
15763 * This routine is invoked to remove the memory region that
15764 * provided rpi via a bitmask.
15765 **/
15766void
15767lpfc_sli4_remove_rpis(struct lpfc_hba *phba)
15768{
15769 kfree(phba->sli4_hba.rpi_bmask);
James Smart6d368e52011-05-24 11:44:12 -040015770 kfree(phba->sli4_hba.rpi_ids);
15771 bf_set(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
James Smart6fb120a2009-05-22 14:52:59 -040015772}
15773
15774/**
15775 * lpfc_sli4_resume_rpi - Remove the rpi bitmask region
15776 * @phba: pointer to lpfc hba data structure.
15777 *
15778 * This routine is invoked to remove the memory region that
15779 * provided rpi via a bitmask.
15780 **/
15781int
James Smart6b5151f2012-01-18 16:24:06 -050015782lpfc_sli4_resume_rpi(struct lpfc_nodelist *ndlp,
15783 void (*cmpl)(struct lpfc_hba *, LPFC_MBOXQ_t *), void *arg)
James Smart6fb120a2009-05-22 14:52:59 -040015784{
15785 LPFC_MBOXQ_t *mboxq;
15786 struct lpfc_hba *phba = ndlp->phba;
15787 int rc;
15788
15789 /* The port is notified of the header region via a mailbox command. */
15790 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15791 if (!mboxq)
15792 return -ENOMEM;
15793
15794 /* Post all rpi memory regions to the port. */
15795 lpfc_resume_rpi(mboxq, ndlp);
James Smart6b5151f2012-01-18 16:24:06 -050015796 if (cmpl) {
15797 mboxq->mbox_cmpl = cmpl;
15798 mboxq->context1 = arg;
15799 mboxq->context2 = ndlp;
James Smart72859902012-01-18 16:25:38 -050015800 } else
15801 mboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart6b5151f2012-01-18 16:24:06 -050015802 mboxq->vport = ndlp->vport;
James Smart6fb120a2009-05-22 14:52:59 -040015803 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
15804 if (rc == MBX_NOT_FINISHED) {
15805 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15806 "2010 Resume RPI Mailbox failed "
15807 "status %d, mbxStatus x%x\n", rc,
15808 bf_get(lpfc_mqe_status, &mboxq->u.mqe));
15809 mempool_free(mboxq, phba->mbox_mem_pool);
15810 return -EIO;
15811 }
15812 return 0;
15813}
15814
15815/**
15816 * lpfc_sli4_init_vpi - Initialize a vpi with the port
James Smart76a95d72010-11-20 23:11:48 -050015817 * @vport: Pointer to the vport for which the vpi is being initialized
James Smart6fb120a2009-05-22 14:52:59 -040015818 *
James Smart76a95d72010-11-20 23:11:48 -050015819 * This routine is invoked to activate a vpi with the port.
James Smart6fb120a2009-05-22 14:52:59 -040015820 *
15821 * Returns:
15822 * 0 success
15823 * -Evalue otherwise
15824 **/
15825int
James Smart76a95d72010-11-20 23:11:48 -050015826lpfc_sli4_init_vpi(struct lpfc_vport *vport)
James Smart6fb120a2009-05-22 14:52:59 -040015827{
15828 LPFC_MBOXQ_t *mboxq;
15829 int rc = 0;
James Smart6a9c52c2009-10-02 15:16:51 -040015830 int retval = MBX_SUCCESS;
James Smart6fb120a2009-05-22 14:52:59 -040015831 uint32_t mbox_tmo;
James Smart76a95d72010-11-20 23:11:48 -050015832 struct lpfc_hba *phba = vport->phba;
James Smart6fb120a2009-05-22 14:52:59 -040015833 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15834 if (!mboxq)
15835 return -ENOMEM;
James Smart76a95d72010-11-20 23:11:48 -050015836 lpfc_init_vpi(phba, mboxq, vport->vpi);
James Smarta183a152011-10-10 21:32:43 -040015837 mbox_tmo = lpfc_mbox_tmo_val(phba, mboxq);
James Smart6fb120a2009-05-22 14:52:59 -040015838 rc = lpfc_sli_issue_mbox_wait(phba, mboxq, mbox_tmo);
James Smart6fb120a2009-05-22 14:52:59 -040015839 if (rc != MBX_SUCCESS) {
James Smart76a95d72010-11-20 23:11:48 -050015840 lpfc_printf_vlog(vport, KERN_ERR, LOG_SLI,
James Smart6fb120a2009-05-22 14:52:59 -040015841 "2022 INIT VPI Mailbox failed "
15842 "status %d, mbxStatus x%x\n", rc,
15843 bf_get(lpfc_mqe_status, &mboxq->u.mqe));
James Smart6a9c52c2009-10-02 15:16:51 -040015844 retval = -EIO;
James Smart6fb120a2009-05-22 14:52:59 -040015845 }
James Smart6a9c52c2009-10-02 15:16:51 -040015846 if (rc != MBX_TIMEOUT)
James Smart76a95d72010-11-20 23:11:48 -050015847 mempool_free(mboxq, vport->phba->mbox_mem_pool);
James Smart6a9c52c2009-10-02 15:16:51 -040015848
15849 return retval;
James Smart6fb120a2009-05-22 14:52:59 -040015850}
15851
15852/**
15853 * lpfc_mbx_cmpl_add_fcf_record - add fcf mbox completion handler.
15854 * @phba: pointer to lpfc hba data structure.
15855 * @mboxq: Pointer to mailbox object.
15856 *
15857 * This routine is invoked to manually add a single FCF record. The caller
15858 * must pass a completely initialized FCF_Record. This routine takes
15859 * care of the nonembedded mailbox operations.
15860 **/
15861static void
15862lpfc_mbx_cmpl_add_fcf_record(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
15863{
15864 void *virt_addr;
15865 union lpfc_sli4_cfg_shdr *shdr;
15866 uint32_t shdr_status, shdr_add_status;
15867
15868 virt_addr = mboxq->sge_array->addr[0];
15869 /* The IOCTL status is embedded in the mailbox subheader. */
15870 shdr = (union lpfc_sli4_cfg_shdr *) virt_addr;
15871 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
15872 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
15873
15874 if ((shdr_status || shdr_add_status) &&
15875 (shdr_status != STATUS_FCF_IN_USE))
15876 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15877 "2558 ADD_FCF_RECORD mailbox failed with "
15878 "status x%x add_status x%x\n",
15879 shdr_status, shdr_add_status);
15880
15881 lpfc_sli4_mbox_cmd_free(phba, mboxq);
15882}
15883
15884/**
15885 * lpfc_sli4_add_fcf_record - Manually add an FCF Record.
15886 * @phba: pointer to lpfc hba data structure.
15887 * @fcf_record: pointer to the initialized fcf record to add.
15888 *
15889 * This routine is invoked to manually add a single FCF record. The caller
15890 * must pass a completely initialized FCF_Record. This routine takes
15891 * care of the nonembedded mailbox operations.
15892 **/
15893int
15894lpfc_sli4_add_fcf_record(struct lpfc_hba *phba, struct fcf_record *fcf_record)
15895{
15896 int rc = 0;
15897 LPFC_MBOXQ_t *mboxq;
15898 uint8_t *bytep;
15899 void *virt_addr;
15900 dma_addr_t phys_addr;
15901 struct lpfc_mbx_sge sge;
15902 uint32_t alloc_len, req_len;
15903 uint32_t fcfindex;
15904
15905 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15906 if (!mboxq) {
15907 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15908 "2009 Failed to allocate mbox for ADD_FCF cmd\n");
15909 return -ENOMEM;
15910 }
15911
15912 req_len = sizeof(struct fcf_record) + sizeof(union lpfc_sli4_cfg_shdr) +
15913 sizeof(uint32_t);
15914
15915 /* Allocate DMA memory and set up the non-embedded mailbox command */
15916 alloc_len = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
15917 LPFC_MBOX_OPCODE_FCOE_ADD_FCF,
15918 req_len, LPFC_SLI4_MBX_NEMBED);
15919 if (alloc_len < req_len) {
15920 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15921 "2523 Allocated DMA memory size (x%x) is "
15922 "less than the requested DMA memory "
15923 "size (x%x)\n", alloc_len, req_len);
15924 lpfc_sli4_mbox_cmd_free(phba, mboxq);
15925 return -ENOMEM;
15926 }
15927
15928 /*
15929 * Get the first SGE entry from the non-embedded DMA memory. This
15930 * routine only uses a single SGE.
15931 */
15932 lpfc_sli4_mbx_sge_get(mboxq, 0, &sge);
15933 phys_addr = getPaddr(sge.pa_hi, sge.pa_lo);
James Smart6fb120a2009-05-22 14:52:59 -040015934 virt_addr = mboxq->sge_array->addr[0];
15935 /*
15936 * Configure the FCF record for FCFI 0. This is the driver's
15937 * hardcoded default and gets used in nonFIP mode.
15938 */
15939 fcfindex = bf_get(lpfc_fcf_record_fcf_index, fcf_record);
15940 bytep = virt_addr + sizeof(union lpfc_sli4_cfg_shdr);
15941 lpfc_sli_pcimem_bcopy(&fcfindex, bytep, sizeof(uint32_t));
15942
15943 /*
15944 * Copy the fcf_index and the FCF Record Data. The data starts after
15945 * the FCoE header plus word10. The data copy needs to be endian
15946 * correct.
15947 */
15948 bytep += sizeof(uint32_t);
15949 lpfc_sli_pcimem_bcopy(fcf_record, bytep, sizeof(struct fcf_record));
15950 mboxq->vport = phba->pport;
15951 mboxq->mbox_cmpl = lpfc_mbx_cmpl_add_fcf_record;
15952 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
15953 if (rc == MBX_NOT_FINISHED) {
15954 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15955 "2515 ADD_FCF_RECORD mailbox failed with "
15956 "status 0x%x\n", rc);
15957 lpfc_sli4_mbox_cmd_free(phba, mboxq);
15958 rc = -EIO;
15959 } else
15960 rc = 0;
15961
15962 return rc;
15963}
15964
15965/**
15966 * lpfc_sli4_build_dflt_fcf_record - Build the driver's default FCF Record.
15967 * @phba: pointer to lpfc hba data structure.
15968 * @fcf_record: pointer to the fcf record to write the default data.
15969 * @fcf_index: FCF table entry index.
15970 *
15971 * This routine is invoked to build the driver's default FCF record. The
15972 * values used are hardcoded. This routine handles memory initialization.
15973 *
15974 **/
15975void
15976lpfc_sli4_build_dflt_fcf_record(struct lpfc_hba *phba,
15977 struct fcf_record *fcf_record,
15978 uint16_t fcf_index)
15979{
15980 memset(fcf_record, 0, sizeof(struct fcf_record));
15981 fcf_record->max_rcv_size = LPFC_FCOE_MAX_RCV_SIZE;
15982 fcf_record->fka_adv_period = LPFC_FCOE_FKA_ADV_PER;
15983 fcf_record->fip_priority = LPFC_FCOE_FIP_PRIORITY;
15984 bf_set(lpfc_fcf_record_mac_0, fcf_record, phba->fc_map[0]);
15985 bf_set(lpfc_fcf_record_mac_1, fcf_record, phba->fc_map[1]);
15986 bf_set(lpfc_fcf_record_mac_2, fcf_record, phba->fc_map[2]);
15987 bf_set(lpfc_fcf_record_mac_3, fcf_record, LPFC_FCOE_FCF_MAC3);
15988 bf_set(lpfc_fcf_record_mac_4, fcf_record, LPFC_FCOE_FCF_MAC4);
15989 bf_set(lpfc_fcf_record_mac_5, fcf_record, LPFC_FCOE_FCF_MAC5);
15990 bf_set(lpfc_fcf_record_fc_map_0, fcf_record, phba->fc_map[0]);
15991 bf_set(lpfc_fcf_record_fc_map_1, fcf_record, phba->fc_map[1]);
15992 bf_set(lpfc_fcf_record_fc_map_2, fcf_record, phba->fc_map[2]);
15993 bf_set(lpfc_fcf_record_fcf_valid, fcf_record, 1);
James Smart0c287582009-06-10 17:22:56 -040015994 bf_set(lpfc_fcf_record_fcf_avail, fcf_record, 1);
James Smart6fb120a2009-05-22 14:52:59 -040015995 bf_set(lpfc_fcf_record_fcf_index, fcf_record, fcf_index);
15996 bf_set(lpfc_fcf_record_mac_addr_prov, fcf_record,
15997 LPFC_FCF_FPMA | LPFC_FCF_SPMA);
15998 /* Set the VLAN bit map */
15999 if (phba->valid_vlan) {
16000 fcf_record->vlan_bitmap[phba->vlan_id / 8]
16001 = 1 << (phba->vlan_id % 8);
16002 }
16003}
16004
16005/**
James Smart0c9ab6f2010-02-26 14:15:57 -050016006 * lpfc_sli4_fcf_scan_read_fcf_rec - Read hba fcf record for fcf scan.
James Smart6fb120a2009-05-22 14:52:59 -040016007 * @phba: pointer to lpfc hba data structure.
16008 * @fcf_index: FCF table entry offset.
16009 *
James Smart0c9ab6f2010-02-26 14:15:57 -050016010 * This routine is invoked to scan the entire FCF table by reading FCF
16011 * record and processing it one at a time starting from the @fcf_index
16012 * for initial FCF discovery or fast FCF failover rediscovery.
16013 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030016014 * Return 0 if the mailbox command is submitted successfully, none 0
James Smart0c9ab6f2010-02-26 14:15:57 -050016015 * otherwise.
James Smart6fb120a2009-05-22 14:52:59 -040016016 **/
16017int
James Smart0c9ab6f2010-02-26 14:15:57 -050016018lpfc_sli4_fcf_scan_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
James Smart6fb120a2009-05-22 14:52:59 -040016019{
16020 int rc = 0, error;
16021 LPFC_MBOXQ_t *mboxq;
James Smart6fb120a2009-05-22 14:52:59 -040016022
James Smart32b97932009-07-19 10:01:21 -040016023 phba->fcoe_eventtag_at_fcf_scan = phba->fcoe_eventtag;
James Smart80c17842012-03-01 22:35:45 -050016024 phba->fcoe_cvl_eventtag_attn = phba->fcoe_cvl_eventtag;
James Smart6fb120a2009-05-22 14:52:59 -040016025 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16026 if (!mboxq) {
16027 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16028 "2000 Failed to allocate mbox for "
16029 "READ_FCF cmd\n");
James Smart4d9ab992009-10-02 15:16:39 -040016030 error = -ENOMEM;
James Smart0c9ab6f2010-02-26 14:15:57 -050016031 goto fail_fcf_scan;
James Smart6fb120a2009-05-22 14:52:59 -040016032 }
James Smartecfd03c2010-02-12 14:41:27 -050016033 /* Construct the read FCF record mailbox command */
James Smart0c9ab6f2010-02-26 14:15:57 -050016034 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
James Smartecfd03c2010-02-12 14:41:27 -050016035 if (rc) {
16036 error = -EINVAL;
James Smart0c9ab6f2010-02-26 14:15:57 -050016037 goto fail_fcf_scan;
James Smart6fb120a2009-05-22 14:52:59 -040016038 }
James Smartecfd03c2010-02-12 14:41:27 -050016039 /* Issue the mailbox command asynchronously */
James Smart6fb120a2009-05-22 14:52:59 -040016040 mboxq->vport = phba->pport;
James Smart0c9ab6f2010-02-26 14:15:57 -050016041 mboxq->mbox_cmpl = lpfc_mbx_cmpl_fcf_scan_read_fcf_rec;
James Smarta93ff372010-10-22 11:06:08 -040016042
16043 spin_lock_irq(&phba->hbalock);
16044 phba->hba_flag |= FCF_TS_INPROG;
16045 spin_unlock_irq(&phba->hbalock);
16046
James Smart6fb120a2009-05-22 14:52:59 -040016047 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
James Smartecfd03c2010-02-12 14:41:27 -050016048 if (rc == MBX_NOT_FINISHED)
James Smart6fb120a2009-05-22 14:52:59 -040016049 error = -EIO;
James Smartecfd03c2010-02-12 14:41:27 -050016050 else {
James Smart38b92ef2010-08-04 16:11:39 -040016051 /* Reset eligible FCF count for new scan */
16052 if (fcf_index == LPFC_FCOE_FCF_GET_FIRST)
James Smart999d8132010-03-15 11:24:56 -040016053 phba->fcf.eligible_fcf_cnt = 0;
James Smart6fb120a2009-05-22 14:52:59 -040016054 error = 0;
James Smart32b97932009-07-19 10:01:21 -040016055 }
James Smart0c9ab6f2010-02-26 14:15:57 -050016056fail_fcf_scan:
James Smart4d9ab992009-10-02 15:16:39 -040016057 if (error) {
16058 if (mboxq)
16059 lpfc_sli4_mbox_cmd_free(phba, mboxq);
James Smarta93ff372010-10-22 11:06:08 -040016060 /* FCF scan failed, clear FCF_TS_INPROG flag */
James Smart4d9ab992009-10-02 15:16:39 -040016061 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -040016062 phba->hba_flag &= ~FCF_TS_INPROG;
James Smart4d9ab992009-10-02 15:16:39 -040016063 spin_unlock_irq(&phba->hbalock);
16064 }
James Smart6fb120a2009-05-22 14:52:59 -040016065 return error;
16066}
James Smarta0c87cb2009-07-19 10:01:10 -040016067
16068/**
James Smarta93ff372010-10-22 11:06:08 -040016069 * lpfc_sli4_fcf_rr_read_fcf_rec - Read hba fcf record for roundrobin fcf.
James Smart0c9ab6f2010-02-26 14:15:57 -050016070 * @phba: pointer to lpfc hba data structure.
16071 * @fcf_index: FCF table entry offset.
16072 *
16073 * This routine is invoked to read an FCF record indicated by @fcf_index
James Smarta93ff372010-10-22 11:06:08 -040016074 * and to use it for FLOGI roundrobin FCF failover.
James Smart0c9ab6f2010-02-26 14:15:57 -050016075 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030016076 * Return 0 if the mailbox command is submitted successfully, none 0
James Smart0c9ab6f2010-02-26 14:15:57 -050016077 * otherwise.
16078 **/
16079int
16080lpfc_sli4_fcf_rr_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
16081{
16082 int rc = 0, error;
16083 LPFC_MBOXQ_t *mboxq;
16084
16085 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16086 if (!mboxq) {
16087 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_INIT,
16088 "2763 Failed to allocate mbox for "
16089 "READ_FCF cmd\n");
16090 error = -ENOMEM;
16091 goto fail_fcf_read;
16092 }
16093 /* Construct the read FCF record mailbox command */
16094 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
16095 if (rc) {
16096 error = -EINVAL;
16097 goto fail_fcf_read;
16098 }
16099 /* Issue the mailbox command asynchronously */
16100 mboxq->vport = phba->pport;
16101 mboxq->mbox_cmpl = lpfc_mbx_cmpl_fcf_rr_read_fcf_rec;
16102 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
16103 if (rc == MBX_NOT_FINISHED)
16104 error = -EIO;
16105 else
16106 error = 0;
16107
16108fail_fcf_read:
16109 if (error && mboxq)
16110 lpfc_sli4_mbox_cmd_free(phba, mboxq);
16111 return error;
16112}
16113
16114/**
16115 * lpfc_sli4_read_fcf_rec - Read hba fcf record for update eligible fcf bmask.
16116 * @phba: pointer to lpfc hba data structure.
16117 * @fcf_index: FCF table entry offset.
16118 *
16119 * This routine is invoked to read an FCF record indicated by @fcf_index to
James Smarta93ff372010-10-22 11:06:08 -040016120 * determine whether it's eligible for FLOGI roundrobin failover list.
James Smart0c9ab6f2010-02-26 14:15:57 -050016121 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030016122 * Return 0 if the mailbox command is submitted successfully, none 0
James Smart0c9ab6f2010-02-26 14:15:57 -050016123 * otherwise.
16124 **/
16125int
16126lpfc_sli4_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
16127{
16128 int rc = 0, error;
16129 LPFC_MBOXQ_t *mboxq;
16130
16131 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16132 if (!mboxq) {
16133 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_INIT,
16134 "2758 Failed to allocate mbox for "
16135 "READ_FCF cmd\n");
16136 error = -ENOMEM;
16137 goto fail_fcf_read;
16138 }
16139 /* Construct the read FCF record mailbox command */
16140 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
16141 if (rc) {
16142 error = -EINVAL;
16143 goto fail_fcf_read;
16144 }
16145 /* Issue the mailbox command asynchronously */
16146 mboxq->vport = phba->pport;
16147 mboxq->mbox_cmpl = lpfc_mbx_cmpl_read_fcf_rec;
16148 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
16149 if (rc == MBX_NOT_FINISHED)
16150 error = -EIO;
16151 else
16152 error = 0;
16153
16154fail_fcf_read:
16155 if (error && mboxq)
16156 lpfc_sli4_mbox_cmd_free(phba, mboxq);
16157 return error;
16158}
16159
16160/**
James Smart7d791df2011-07-22 18:37:52 -040016161 * lpfc_check_next_fcf_pri
16162 * phba pointer to the lpfc_hba struct for this port.
16163 * This routine is called from the lpfc_sli4_fcf_rr_next_index_get
16164 * routine when the rr_bmask is empty. The FCF indecies are put into the
16165 * rr_bmask based on their priority level. Starting from the highest priority
16166 * to the lowest. The most likely FCF candidate will be in the highest
16167 * priority group. When this routine is called it searches the fcf_pri list for
16168 * next lowest priority group and repopulates the rr_bmask with only those
16169 * fcf_indexes.
16170 * returns:
16171 * 1=success 0=failure
16172 **/
16173int
16174lpfc_check_next_fcf_pri_level(struct lpfc_hba *phba)
16175{
16176 uint16_t next_fcf_pri;
16177 uint16_t last_index;
16178 struct lpfc_fcf_pri *fcf_pri;
16179 int rc;
16180 int ret = 0;
16181
16182 last_index = find_first_bit(phba->fcf.fcf_rr_bmask,
16183 LPFC_SLI4_FCF_TBL_INDX_MAX);
16184 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
16185 "3060 Last IDX %d\n", last_index);
James Smart25626692013-03-01 16:36:54 -050016186
16187 /* Verify the priority list has 2 or more entries */
16188 spin_lock_irq(&phba->hbalock);
16189 if (list_empty(&phba->fcf.fcf_pri_list) ||
16190 list_is_singular(&phba->fcf.fcf_pri_list)) {
16191 spin_unlock_irq(&phba->hbalock);
James Smart7d791df2011-07-22 18:37:52 -040016192 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
16193 "3061 Last IDX %d\n", last_index);
16194 return 0; /* Empty rr list */
16195 }
James Smart25626692013-03-01 16:36:54 -050016196 spin_unlock_irq(&phba->hbalock);
16197
James Smart7d791df2011-07-22 18:37:52 -040016198 next_fcf_pri = 0;
16199 /*
16200 * Clear the rr_bmask and set all of the bits that are at this
16201 * priority.
16202 */
16203 memset(phba->fcf.fcf_rr_bmask, 0,
16204 sizeof(*phba->fcf.fcf_rr_bmask));
16205 spin_lock_irq(&phba->hbalock);
16206 list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
16207 if (fcf_pri->fcf_rec.flag & LPFC_FCF_FLOGI_FAILED)
16208 continue;
16209 /*
16210 * the 1st priority that has not FLOGI failed
16211 * will be the highest.
16212 */
16213 if (!next_fcf_pri)
16214 next_fcf_pri = fcf_pri->fcf_rec.priority;
16215 spin_unlock_irq(&phba->hbalock);
16216 if (fcf_pri->fcf_rec.priority == next_fcf_pri) {
16217 rc = lpfc_sli4_fcf_rr_index_set(phba,
16218 fcf_pri->fcf_rec.fcf_index);
16219 if (rc)
16220 return 0;
16221 }
16222 spin_lock_irq(&phba->hbalock);
16223 }
16224 /*
16225 * if next_fcf_pri was not set above and the list is not empty then
16226 * we have failed flogis on all of them. So reset flogi failed
Anatol Pomozov4907cb72012-09-01 10:31:09 -070016227 * and start at the beginning.
James Smart7d791df2011-07-22 18:37:52 -040016228 */
16229 if (!next_fcf_pri && !list_empty(&phba->fcf.fcf_pri_list)) {
16230 list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
16231 fcf_pri->fcf_rec.flag &= ~LPFC_FCF_FLOGI_FAILED;
16232 /*
16233 * the 1st priority that has not FLOGI failed
16234 * will be the highest.
16235 */
16236 if (!next_fcf_pri)
16237 next_fcf_pri = fcf_pri->fcf_rec.priority;
16238 spin_unlock_irq(&phba->hbalock);
16239 if (fcf_pri->fcf_rec.priority == next_fcf_pri) {
16240 rc = lpfc_sli4_fcf_rr_index_set(phba,
16241 fcf_pri->fcf_rec.fcf_index);
16242 if (rc)
16243 return 0;
16244 }
16245 spin_lock_irq(&phba->hbalock);
16246 }
16247 } else
16248 ret = 1;
16249 spin_unlock_irq(&phba->hbalock);
16250
16251 return ret;
16252}
16253/**
James Smart0c9ab6f2010-02-26 14:15:57 -050016254 * lpfc_sli4_fcf_rr_next_index_get - Get next eligible fcf record index
16255 * @phba: pointer to lpfc hba data structure.
16256 *
16257 * This routine is to get the next eligible FCF record index in a round
16258 * robin fashion. If the next eligible FCF record index equals to the
James Smarta93ff372010-10-22 11:06:08 -040016259 * initial roundrobin FCF record index, LPFC_FCOE_FCF_NEXT_NONE (0xFFFF)
James Smart0c9ab6f2010-02-26 14:15:57 -050016260 * shall be returned, otherwise, the next eligible FCF record's index
16261 * shall be returned.
16262 **/
16263uint16_t
16264lpfc_sli4_fcf_rr_next_index_get(struct lpfc_hba *phba)
16265{
16266 uint16_t next_fcf_index;
16267
James Smart421c6622013-01-03 15:44:16 -050016268initial_priority:
James Smart3804dc82010-07-14 15:31:37 -040016269 /* Search start from next bit of currently registered FCF index */
James Smart421c6622013-01-03 15:44:16 -050016270 next_fcf_index = phba->fcf.current_rec.fcf_indx;
16271
James Smart7d791df2011-07-22 18:37:52 -040016272next_priority:
James Smart421c6622013-01-03 15:44:16 -050016273 /* Determine the next fcf index to check */
16274 next_fcf_index = (next_fcf_index + 1) % LPFC_SLI4_FCF_TBL_INDX_MAX;
James Smart0c9ab6f2010-02-26 14:15:57 -050016275 next_fcf_index = find_next_bit(phba->fcf.fcf_rr_bmask,
16276 LPFC_SLI4_FCF_TBL_INDX_MAX,
James Smart3804dc82010-07-14 15:31:37 -040016277 next_fcf_index);
16278
James Smart0c9ab6f2010-02-26 14:15:57 -050016279 /* Wrap around condition on phba->fcf.fcf_rr_bmask */
James Smart7d791df2011-07-22 18:37:52 -040016280 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
16281 /*
16282 * If we have wrapped then we need to clear the bits that
16283 * have been tested so that we can detect when we should
16284 * change the priority level.
16285 */
James Smart0c9ab6f2010-02-26 14:15:57 -050016286 next_fcf_index = find_next_bit(phba->fcf.fcf_rr_bmask,
16287 LPFC_SLI4_FCF_TBL_INDX_MAX, 0);
James Smart7d791df2011-07-22 18:37:52 -040016288 }
16289
James Smart0c9ab6f2010-02-26 14:15:57 -050016290
James Smart3804dc82010-07-14 15:31:37 -040016291 /* Check roundrobin failover list empty condition */
James Smart7d791df2011-07-22 18:37:52 -040016292 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX ||
16293 next_fcf_index == phba->fcf.current_rec.fcf_indx) {
16294 /*
16295 * If next fcf index is not found check if there are lower
16296 * Priority level fcf's in the fcf_priority list.
16297 * Set up the rr_bmask with all of the avaiable fcf bits
16298 * at that level and continue the selection process.
16299 */
16300 if (lpfc_check_next_fcf_pri_level(phba))
James Smart421c6622013-01-03 15:44:16 -050016301 goto initial_priority;
James Smart3804dc82010-07-14 15:31:37 -040016302 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
16303 "2844 No roundrobin failover FCF available\n");
James Smart7d791df2011-07-22 18:37:52 -040016304 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX)
16305 return LPFC_FCOE_FCF_NEXT_NONE;
16306 else {
16307 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
16308 "3063 Only FCF available idx %d, flag %x\n",
16309 next_fcf_index,
16310 phba->fcf.fcf_pri[next_fcf_index].fcf_rec.flag);
16311 return next_fcf_index;
16312 }
James Smart3804dc82010-07-14 15:31:37 -040016313 }
16314
James Smart7d791df2011-07-22 18:37:52 -040016315 if (next_fcf_index < LPFC_SLI4_FCF_TBL_INDX_MAX &&
16316 phba->fcf.fcf_pri[next_fcf_index].fcf_rec.flag &
16317 LPFC_FCF_FLOGI_FAILED)
16318 goto next_priority;
16319
James Smart3804dc82010-07-14 15:31:37 -040016320 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040016321 "2845 Get next roundrobin failover FCF (x%x)\n",
16322 next_fcf_index);
16323
James Smart0c9ab6f2010-02-26 14:15:57 -050016324 return next_fcf_index;
16325}
16326
16327/**
16328 * lpfc_sli4_fcf_rr_index_set - Set bmask with eligible fcf record index
16329 * @phba: pointer to lpfc hba data structure.
16330 *
16331 * This routine sets the FCF record index in to the eligible bmask for
James Smarta93ff372010-10-22 11:06:08 -040016332 * roundrobin failover search. It checks to make sure that the index
James Smart0c9ab6f2010-02-26 14:15:57 -050016333 * does not go beyond the range of the driver allocated bmask dimension
16334 * before setting the bit.
16335 *
16336 * Returns 0 if the index bit successfully set, otherwise, it returns
16337 * -EINVAL.
16338 **/
16339int
16340lpfc_sli4_fcf_rr_index_set(struct lpfc_hba *phba, uint16_t fcf_index)
16341{
16342 if (fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
16343 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040016344 "2610 FCF (x%x) reached driver's book "
16345 "keeping dimension:x%x\n",
James Smart0c9ab6f2010-02-26 14:15:57 -050016346 fcf_index, LPFC_SLI4_FCF_TBL_INDX_MAX);
16347 return -EINVAL;
16348 }
16349 /* Set the eligible FCF record index bmask */
16350 set_bit(fcf_index, phba->fcf.fcf_rr_bmask);
16351
James Smart3804dc82010-07-14 15:31:37 -040016352 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040016353 "2790 Set FCF (x%x) to roundrobin FCF failover "
James Smart3804dc82010-07-14 15:31:37 -040016354 "bmask\n", fcf_index);
16355
James Smart0c9ab6f2010-02-26 14:15:57 -050016356 return 0;
16357}
16358
16359/**
James Smart3804dc82010-07-14 15:31:37 -040016360 * lpfc_sli4_fcf_rr_index_clear - Clear bmask from eligible fcf record index
James Smart0c9ab6f2010-02-26 14:15:57 -050016361 * @phba: pointer to lpfc hba data structure.
16362 *
16363 * This routine clears the FCF record index from the eligible bmask for
James Smarta93ff372010-10-22 11:06:08 -040016364 * roundrobin failover search. It checks to make sure that the index
James Smart0c9ab6f2010-02-26 14:15:57 -050016365 * does not go beyond the range of the driver allocated bmask dimension
16366 * before clearing the bit.
16367 **/
16368void
16369lpfc_sli4_fcf_rr_index_clear(struct lpfc_hba *phba, uint16_t fcf_index)
16370{
James Smart9a803a72013-09-06 12:17:56 -040016371 struct lpfc_fcf_pri *fcf_pri, *fcf_pri_next;
James Smart0c9ab6f2010-02-26 14:15:57 -050016372 if (fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
16373 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040016374 "2762 FCF (x%x) reached driver's book "
16375 "keeping dimension:x%x\n",
James Smart0c9ab6f2010-02-26 14:15:57 -050016376 fcf_index, LPFC_SLI4_FCF_TBL_INDX_MAX);
16377 return;
16378 }
16379 /* Clear the eligible FCF record index bmask */
James Smart7d791df2011-07-22 18:37:52 -040016380 spin_lock_irq(&phba->hbalock);
James Smart9a803a72013-09-06 12:17:56 -040016381 list_for_each_entry_safe(fcf_pri, fcf_pri_next, &phba->fcf.fcf_pri_list,
16382 list) {
James Smart7d791df2011-07-22 18:37:52 -040016383 if (fcf_pri->fcf_rec.fcf_index == fcf_index) {
16384 list_del_init(&fcf_pri->list);
16385 break;
16386 }
16387 }
16388 spin_unlock_irq(&phba->hbalock);
James Smart0c9ab6f2010-02-26 14:15:57 -050016389 clear_bit(fcf_index, phba->fcf.fcf_rr_bmask);
James Smart3804dc82010-07-14 15:31:37 -040016390
16391 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040016392 "2791 Clear FCF (x%x) from roundrobin failover "
James Smart3804dc82010-07-14 15:31:37 -040016393 "bmask\n", fcf_index);
James Smart0c9ab6f2010-02-26 14:15:57 -050016394}
16395
16396/**
James Smartecfd03c2010-02-12 14:41:27 -050016397 * lpfc_mbx_cmpl_redisc_fcf_table - completion routine for rediscover FCF table
16398 * @phba: pointer to lpfc hba data structure.
16399 *
16400 * This routine is the completion routine for the rediscover FCF table mailbox
16401 * command. If the mailbox command returned failure, it will try to stop the
16402 * FCF rediscover wait timer.
16403 **/
16404void
16405lpfc_mbx_cmpl_redisc_fcf_table(struct lpfc_hba *phba, LPFC_MBOXQ_t *mbox)
16406{
16407 struct lpfc_mbx_redisc_fcf_tbl *redisc_fcf;
16408 uint32_t shdr_status, shdr_add_status;
16409
16410 redisc_fcf = &mbox->u.mqe.un.redisc_fcf_tbl;
16411
16412 shdr_status = bf_get(lpfc_mbox_hdr_status,
16413 &redisc_fcf->header.cfg_shdr.response);
16414 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status,
16415 &redisc_fcf->header.cfg_shdr.response);
16416 if (shdr_status || shdr_add_status) {
James Smart0c9ab6f2010-02-26 14:15:57 -050016417 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smartecfd03c2010-02-12 14:41:27 -050016418 "2746 Requesting for FCF rediscovery failed "
16419 "status x%x add_status x%x\n",
16420 shdr_status, shdr_add_status);
James Smart0c9ab6f2010-02-26 14:15:57 -050016421 if (phba->fcf.fcf_flag & FCF_ACVL_DISC) {
James Smartfc2b9892010-02-26 14:15:29 -050016422 spin_lock_irq(&phba->hbalock);
James Smart0c9ab6f2010-02-26 14:15:57 -050016423 phba->fcf.fcf_flag &= ~FCF_ACVL_DISC;
James Smartfc2b9892010-02-26 14:15:29 -050016424 spin_unlock_irq(&phba->hbalock);
16425 /*
16426 * CVL event triggered FCF rediscover request failed,
16427 * last resort to re-try current registered FCF entry.
16428 */
16429 lpfc_retry_pport_discovery(phba);
16430 } else {
16431 spin_lock_irq(&phba->hbalock);
James Smart0c9ab6f2010-02-26 14:15:57 -050016432 phba->fcf.fcf_flag &= ~FCF_DEAD_DISC;
James Smartfc2b9892010-02-26 14:15:29 -050016433 spin_unlock_irq(&phba->hbalock);
16434 /*
16435 * DEAD FCF event triggered FCF rediscover request
16436 * failed, last resort to fail over as a link down
16437 * to FCF registration.
16438 */
16439 lpfc_sli4_fcf_dead_failthrough(phba);
16440 }
James Smart0c9ab6f2010-02-26 14:15:57 -050016441 } else {
16442 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040016443 "2775 Start FCF rediscover quiescent timer\n");
James Smartecfd03c2010-02-12 14:41:27 -050016444 /*
16445 * Start FCF rediscovery wait timer for pending FCF
16446 * before rescan FCF record table.
16447 */
16448 lpfc_fcf_redisc_wait_start_timer(phba);
James Smart0c9ab6f2010-02-26 14:15:57 -050016449 }
James Smartecfd03c2010-02-12 14:41:27 -050016450
16451 mempool_free(mbox, phba->mbox_mem_pool);
16452}
16453
16454/**
James Smart3804dc82010-07-14 15:31:37 -040016455 * lpfc_sli4_redisc_fcf_table - Request to rediscover entire FCF table by port.
James Smartecfd03c2010-02-12 14:41:27 -050016456 * @phba: pointer to lpfc hba data structure.
16457 *
16458 * This routine is invoked to request for rediscovery of the entire FCF table
16459 * by the port.
16460 **/
16461int
16462lpfc_sli4_redisc_fcf_table(struct lpfc_hba *phba)
16463{
16464 LPFC_MBOXQ_t *mbox;
16465 struct lpfc_mbx_redisc_fcf_tbl *redisc_fcf;
16466 int rc, length;
16467
James Smart0c9ab6f2010-02-26 14:15:57 -050016468 /* Cancel retry delay timers to all vports before FCF rediscover */
16469 lpfc_cancel_all_vport_retry_delay_timer(phba);
16470
James Smartecfd03c2010-02-12 14:41:27 -050016471 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16472 if (!mbox) {
16473 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
16474 "2745 Failed to allocate mbox for "
16475 "requesting FCF rediscover.\n");
16476 return -ENOMEM;
16477 }
16478
16479 length = (sizeof(struct lpfc_mbx_redisc_fcf_tbl) -
16480 sizeof(struct lpfc_sli4_cfg_mhdr));
16481 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
16482 LPFC_MBOX_OPCODE_FCOE_REDISCOVER_FCF,
16483 length, LPFC_SLI4_MBX_EMBED);
16484
16485 redisc_fcf = &mbox->u.mqe.un.redisc_fcf_tbl;
16486 /* Set count to 0 for invalidating the entire FCF database */
16487 bf_set(lpfc_mbx_redisc_fcf_count, redisc_fcf, 0);
16488
16489 /* Issue the mailbox command asynchronously */
16490 mbox->vport = phba->pport;
16491 mbox->mbox_cmpl = lpfc_mbx_cmpl_redisc_fcf_table;
16492 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
16493
16494 if (rc == MBX_NOT_FINISHED) {
16495 mempool_free(mbox, phba->mbox_mem_pool);
16496 return -EIO;
16497 }
16498 return 0;
16499}
16500
16501/**
James Smartfc2b9892010-02-26 14:15:29 -050016502 * lpfc_sli4_fcf_dead_failthrough - Failthrough routine to fcf dead event
16503 * @phba: pointer to lpfc hba data structure.
16504 *
16505 * This function is the failover routine as a last resort to the FCF DEAD
16506 * event when driver failed to perform fast FCF failover.
16507 **/
16508void
16509lpfc_sli4_fcf_dead_failthrough(struct lpfc_hba *phba)
16510{
16511 uint32_t link_state;
16512
16513 /*
16514 * Last resort as FCF DEAD event failover will treat this as
16515 * a link down, but save the link state because we don't want
16516 * it to be changed to Link Down unless it is already down.
16517 */
16518 link_state = phba->link_state;
16519 lpfc_linkdown(phba);
16520 phba->link_state = link_state;
16521
16522 /* Unregister FCF if no devices connected to it */
16523 lpfc_unregister_unused_fcf(phba);
16524}
16525
16526/**
James Smart026abb82011-12-13 13:20:45 -050016527 * lpfc_sli_get_config_region23 - Get sli3 port region 23 data.
James Smarta0c87cb2009-07-19 10:01:10 -040016528 * @phba: pointer to lpfc hba data structure.
James Smart026abb82011-12-13 13:20:45 -050016529 * @rgn23_data: pointer to configure region 23 data.
James Smarta0c87cb2009-07-19 10:01:10 -040016530 *
James Smart026abb82011-12-13 13:20:45 -050016531 * This function gets SLI3 port configure region 23 data through memory dump
16532 * mailbox command. When it successfully retrieves data, the size of the data
16533 * will be returned, otherwise, 0 will be returned.
James Smarta0c87cb2009-07-19 10:01:10 -040016534 **/
James Smart026abb82011-12-13 13:20:45 -050016535static uint32_t
16536lpfc_sli_get_config_region23(struct lpfc_hba *phba, char *rgn23_data)
James Smarta0c87cb2009-07-19 10:01:10 -040016537{
16538 LPFC_MBOXQ_t *pmb = NULL;
16539 MAILBOX_t *mb;
James Smart026abb82011-12-13 13:20:45 -050016540 uint32_t offset = 0;
James Smarta0c87cb2009-07-19 10:01:10 -040016541 int rc;
16542
James Smart026abb82011-12-13 13:20:45 -050016543 if (!rgn23_data)
16544 return 0;
16545
James Smarta0c87cb2009-07-19 10:01:10 -040016546 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16547 if (!pmb) {
16548 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart026abb82011-12-13 13:20:45 -050016549 "2600 failed to allocate mailbox memory\n");
16550 return 0;
James Smarta0c87cb2009-07-19 10:01:10 -040016551 }
16552 mb = &pmb->u.mb;
16553
James Smarta0c87cb2009-07-19 10:01:10 -040016554 do {
16555 lpfc_dump_mem(phba, pmb, offset, DMP_REGION_23);
16556 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
16557
16558 if (rc != MBX_SUCCESS) {
16559 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smart026abb82011-12-13 13:20:45 -050016560 "2601 failed to read config "
16561 "region 23, rc 0x%x Status 0x%x\n",
16562 rc, mb->mbxStatus);
James Smarta0c87cb2009-07-19 10:01:10 -040016563 mb->un.varDmp.word_cnt = 0;
16564 }
16565 /*
16566 * dump mem may return a zero when finished or we got a
16567 * mailbox error, either way we are done.
16568 */
16569 if (mb->un.varDmp.word_cnt == 0)
16570 break;
16571 if (mb->un.varDmp.word_cnt > DMP_RGN23_SIZE - offset)
16572 mb->un.varDmp.word_cnt = DMP_RGN23_SIZE - offset;
16573
16574 lpfc_sli_pcimem_bcopy(((uint8_t *)mb) + DMP_RSP_OFFSET,
James Smart026abb82011-12-13 13:20:45 -050016575 rgn23_data + offset,
16576 mb->un.varDmp.word_cnt);
James Smarta0c87cb2009-07-19 10:01:10 -040016577 offset += mb->un.varDmp.word_cnt;
16578 } while (mb->un.varDmp.word_cnt && offset < DMP_RGN23_SIZE);
16579
James Smart026abb82011-12-13 13:20:45 -050016580 mempool_free(pmb, phba->mbox_mem_pool);
16581 return offset;
16582}
16583
16584/**
16585 * lpfc_sli4_get_config_region23 - Get sli4 port region 23 data.
16586 * @phba: pointer to lpfc hba data structure.
16587 * @rgn23_data: pointer to configure region 23 data.
16588 *
16589 * This function gets SLI4 port configure region 23 data through memory dump
16590 * mailbox command. When it successfully retrieves data, the size of the data
16591 * will be returned, otherwise, 0 will be returned.
16592 **/
16593static uint32_t
16594lpfc_sli4_get_config_region23(struct lpfc_hba *phba, char *rgn23_data)
16595{
16596 LPFC_MBOXQ_t *mboxq = NULL;
16597 struct lpfc_dmabuf *mp = NULL;
16598 struct lpfc_mqe *mqe;
16599 uint32_t data_length = 0;
16600 int rc;
16601
16602 if (!rgn23_data)
16603 return 0;
16604
16605 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16606 if (!mboxq) {
16607 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16608 "3105 failed to allocate mailbox memory\n");
16609 return 0;
16610 }
16611
16612 if (lpfc_sli4_dump_cfg_rg23(phba, mboxq))
16613 goto out;
16614 mqe = &mboxq->u.mqe;
16615 mp = (struct lpfc_dmabuf *) mboxq->context1;
16616 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
16617 if (rc)
16618 goto out;
16619 data_length = mqe->un.mb_words[5];
16620 if (data_length == 0)
16621 goto out;
16622 if (data_length > DMP_RGN23_SIZE) {
16623 data_length = 0;
16624 goto out;
16625 }
16626 lpfc_sli_pcimem_bcopy((char *)mp->virt, rgn23_data, data_length);
16627out:
16628 mempool_free(mboxq, phba->mbox_mem_pool);
16629 if (mp) {
16630 lpfc_mbuf_free(phba, mp->virt, mp->phys);
16631 kfree(mp);
16632 }
16633 return data_length;
16634}
16635
16636/**
16637 * lpfc_sli_read_link_ste - Read region 23 to decide if link is disabled.
16638 * @phba: pointer to lpfc hba data structure.
16639 *
16640 * This function read region 23 and parse TLV for port status to
16641 * decide if the user disaled the port. If the TLV indicates the
16642 * port is disabled, the hba_flag is set accordingly.
16643 **/
16644void
16645lpfc_sli_read_link_ste(struct lpfc_hba *phba)
16646{
16647 uint8_t *rgn23_data = NULL;
16648 uint32_t if_type, data_size, sub_tlv_len, tlv_offset;
16649 uint32_t offset = 0;
16650
16651 /* Get adapter Region 23 data */
16652 rgn23_data = kzalloc(DMP_RGN23_SIZE, GFP_KERNEL);
16653 if (!rgn23_data)
16654 goto out;
16655
16656 if (phba->sli_rev < LPFC_SLI_REV4)
16657 data_size = lpfc_sli_get_config_region23(phba, rgn23_data);
16658 else {
16659 if_type = bf_get(lpfc_sli_intf_if_type,
16660 &phba->sli4_hba.sli_intf);
16661 if (if_type == LPFC_SLI_INTF_IF_TYPE_0)
16662 goto out;
16663 data_size = lpfc_sli4_get_config_region23(phba, rgn23_data);
16664 }
James Smarta0c87cb2009-07-19 10:01:10 -040016665
16666 if (!data_size)
16667 goto out;
16668
16669 /* Check the region signature first */
16670 if (memcmp(&rgn23_data[offset], LPFC_REGION23_SIGNATURE, 4)) {
16671 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16672 "2619 Config region 23 has bad signature\n");
16673 goto out;
16674 }
16675 offset += 4;
16676
16677 /* Check the data structure version */
16678 if (rgn23_data[offset] != LPFC_REGION23_VERSION) {
16679 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16680 "2620 Config region 23 has bad version\n");
16681 goto out;
16682 }
16683 offset += 4;
16684
16685 /* Parse TLV entries in the region */
16686 while (offset < data_size) {
16687 if (rgn23_data[offset] == LPFC_REGION23_LAST_REC)
16688 break;
16689 /*
16690 * If the TLV is not driver specific TLV or driver id is
16691 * not linux driver id, skip the record.
16692 */
16693 if ((rgn23_data[offset] != DRIVER_SPECIFIC_TYPE) ||
16694 (rgn23_data[offset + 2] != LINUX_DRIVER_ID) ||
16695 (rgn23_data[offset + 3] != 0)) {
16696 offset += rgn23_data[offset + 1] * 4 + 4;
16697 continue;
16698 }
16699
16700 /* Driver found a driver specific TLV in the config region */
16701 sub_tlv_len = rgn23_data[offset + 1] * 4;
16702 offset += 4;
16703 tlv_offset = 0;
16704
16705 /*
16706 * Search for configured port state sub-TLV.
16707 */
16708 while ((offset < data_size) &&
16709 (tlv_offset < sub_tlv_len)) {
16710 if (rgn23_data[offset] == LPFC_REGION23_LAST_REC) {
16711 offset += 4;
16712 tlv_offset += 4;
16713 break;
16714 }
16715 if (rgn23_data[offset] != PORT_STE_TYPE) {
16716 offset += rgn23_data[offset + 1] * 4 + 4;
16717 tlv_offset += rgn23_data[offset + 1] * 4 + 4;
16718 continue;
16719 }
16720
16721 /* This HBA contains PORT_STE configured */
16722 if (!rgn23_data[offset + 2])
16723 phba->hba_flag |= LINK_DISABLED;
16724
16725 goto out;
16726 }
16727 }
James Smart026abb82011-12-13 13:20:45 -050016728
James Smarta0c87cb2009-07-19 10:01:10 -040016729out:
James Smarta0c87cb2009-07-19 10:01:10 -040016730 kfree(rgn23_data);
16731 return;
16732}
James Smart695a8142010-01-26 23:08:03 -050016733
16734/**
James Smart52d52442011-05-24 11:42:45 -040016735 * lpfc_wr_object - write an object to the firmware
16736 * @phba: HBA structure that indicates port to create a queue on.
16737 * @dmabuf_list: list of dmabufs to write to the port.
16738 * @size: the total byte value of the objects to write to the port.
16739 * @offset: the current offset to be used to start the transfer.
16740 *
16741 * This routine will create a wr_object mailbox command to send to the port.
16742 * the mailbox command will be constructed using the dma buffers described in
16743 * @dmabuf_list to create a list of BDEs. This routine will fill in as many
16744 * BDEs that the imbedded mailbox can support. The @offset variable will be
16745 * used to indicate the starting offset of the transfer and will also return
16746 * the offset after the write object mailbox has completed. @size is used to
16747 * determine the end of the object and whether the eof bit should be set.
16748 *
16749 * Return 0 is successful and offset will contain the the new offset to use
16750 * for the next write.
16751 * Return negative value for error cases.
16752 **/
16753int
16754lpfc_wr_object(struct lpfc_hba *phba, struct list_head *dmabuf_list,
16755 uint32_t size, uint32_t *offset)
16756{
16757 struct lpfc_mbx_wr_object *wr_object;
16758 LPFC_MBOXQ_t *mbox;
16759 int rc = 0, i = 0;
16760 uint32_t shdr_status, shdr_add_status;
16761 uint32_t mbox_tmo;
16762 union lpfc_sli4_cfg_shdr *shdr;
16763 struct lpfc_dmabuf *dmabuf;
16764 uint32_t written = 0;
16765
16766 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16767 if (!mbox)
16768 return -ENOMEM;
16769
16770 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
16771 LPFC_MBOX_OPCODE_WRITE_OBJECT,
16772 sizeof(struct lpfc_mbx_wr_object) -
16773 sizeof(struct lpfc_sli4_cfg_mhdr), LPFC_SLI4_MBX_EMBED);
16774
16775 wr_object = (struct lpfc_mbx_wr_object *)&mbox->u.mqe.un.wr_object;
16776 wr_object->u.request.write_offset = *offset;
16777 sprintf((uint8_t *)wr_object->u.request.object_name, "/");
16778 wr_object->u.request.object_name[0] =
16779 cpu_to_le32(wr_object->u.request.object_name[0]);
16780 bf_set(lpfc_wr_object_eof, &wr_object->u.request, 0);
16781 list_for_each_entry(dmabuf, dmabuf_list, list) {
16782 if (i >= LPFC_MBX_WR_CONFIG_MAX_BDE || written >= size)
16783 break;
16784 wr_object->u.request.bde[i].addrLow = putPaddrLow(dmabuf->phys);
16785 wr_object->u.request.bde[i].addrHigh =
16786 putPaddrHigh(dmabuf->phys);
16787 if (written + SLI4_PAGE_SIZE >= size) {
16788 wr_object->u.request.bde[i].tus.f.bdeSize =
16789 (size - written);
16790 written += (size - written);
16791 bf_set(lpfc_wr_object_eof, &wr_object->u.request, 1);
16792 } else {
16793 wr_object->u.request.bde[i].tus.f.bdeSize =
16794 SLI4_PAGE_SIZE;
16795 written += SLI4_PAGE_SIZE;
16796 }
16797 i++;
16798 }
16799 wr_object->u.request.bde_count = i;
16800 bf_set(lpfc_wr_object_write_length, &wr_object->u.request, written);
16801 if (!phba->sli4_hba.intr_enable)
16802 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
16803 else {
James Smarta183a152011-10-10 21:32:43 -040016804 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart52d52442011-05-24 11:42:45 -040016805 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
16806 }
16807 /* The IOCTL status is embedded in the mailbox subheader. */
16808 shdr = (union lpfc_sli4_cfg_shdr *) &wr_object->header.cfg_shdr;
16809 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
16810 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
16811 if (rc != MBX_TIMEOUT)
16812 mempool_free(mbox, phba->mbox_mem_pool);
16813 if (shdr_status || shdr_add_status || rc) {
16814 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16815 "3025 Write Object mailbox failed with "
16816 "status x%x add_status x%x, mbx status x%x\n",
16817 shdr_status, shdr_add_status, rc);
16818 rc = -ENXIO;
16819 } else
16820 *offset += wr_object->u.response.actual_write_length;
16821 return rc;
16822}
16823
16824/**
James Smart695a8142010-01-26 23:08:03 -050016825 * lpfc_cleanup_pending_mbox - Free up vport discovery mailbox commands.
16826 * @vport: pointer to vport data structure.
16827 *
16828 * This function iterate through the mailboxq and clean up all REG_LOGIN
16829 * and REG_VPI mailbox commands associated with the vport. This function
16830 * is called when driver want to restart discovery of the vport due to
16831 * a Clear Virtual Link event.
16832 **/
16833void
16834lpfc_cleanup_pending_mbox(struct lpfc_vport *vport)
16835{
16836 struct lpfc_hba *phba = vport->phba;
16837 LPFC_MBOXQ_t *mb, *nextmb;
16838 struct lpfc_dmabuf *mp;
James Smart78730cf2010-04-06 15:06:30 -040016839 struct lpfc_nodelist *ndlp;
James Smartd439d282010-09-29 11:18:45 -040016840 struct lpfc_nodelist *act_mbx_ndlp = NULL;
James Smart589a52d2010-07-14 15:30:54 -040016841 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smartd439d282010-09-29 11:18:45 -040016842 LIST_HEAD(mbox_cmd_list);
James Smart63e801c2010-11-20 23:14:19 -050016843 uint8_t restart_loop;
James Smart695a8142010-01-26 23:08:03 -050016844
James Smartd439d282010-09-29 11:18:45 -040016845 /* Clean up internally queued mailbox commands with the vport */
James Smart695a8142010-01-26 23:08:03 -050016846 spin_lock_irq(&phba->hbalock);
16847 list_for_each_entry_safe(mb, nextmb, &phba->sli.mboxq, list) {
16848 if (mb->vport != vport)
16849 continue;
16850
16851 if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) &&
16852 (mb->u.mb.mbxCommand != MBX_REG_VPI))
16853 continue;
16854
James Smartd439d282010-09-29 11:18:45 -040016855 list_del(&mb->list);
16856 list_add_tail(&mb->list, &mbox_cmd_list);
16857 }
16858 /* Clean up active mailbox command with the vport */
16859 mb = phba->sli.mbox_active;
16860 if (mb && (mb->vport == vport)) {
16861 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) ||
16862 (mb->u.mb.mbxCommand == MBX_REG_VPI))
16863 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
16864 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
16865 act_mbx_ndlp = (struct lpfc_nodelist *)mb->context2;
16866 /* Put reference count for delayed processing */
16867 act_mbx_ndlp = lpfc_nlp_get(act_mbx_ndlp);
16868 /* Unregister the RPI when mailbox complete */
16869 mb->mbox_flag |= LPFC_MBX_IMED_UNREG;
16870 }
16871 }
James Smart63e801c2010-11-20 23:14:19 -050016872 /* Cleanup any mailbox completions which are not yet processed */
16873 do {
16874 restart_loop = 0;
16875 list_for_each_entry(mb, &phba->sli.mboxq_cmpl, list) {
16876 /*
16877 * If this mailox is already processed or it is
16878 * for another vport ignore it.
16879 */
16880 if ((mb->vport != vport) ||
16881 (mb->mbox_flag & LPFC_MBX_IMED_UNREG))
16882 continue;
16883
16884 if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) &&
16885 (mb->u.mb.mbxCommand != MBX_REG_VPI))
16886 continue;
16887
16888 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
16889 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
16890 ndlp = (struct lpfc_nodelist *)mb->context2;
16891 /* Unregister the RPI when mailbox complete */
16892 mb->mbox_flag |= LPFC_MBX_IMED_UNREG;
16893 restart_loop = 1;
16894 spin_unlock_irq(&phba->hbalock);
16895 spin_lock(shost->host_lock);
16896 ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
16897 spin_unlock(shost->host_lock);
16898 spin_lock_irq(&phba->hbalock);
16899 break;
16900 }
16901 }
16902 } while (restart_loop);
16903
James Smartd439d282010-09-29 11:18:45 -040016904 spin_unlock_irq(&phba->hbalock);
16905
16906 /* Release the cleaned-up mailbox commands */
16907 while (!list_empty(&mbox_cmd_list)) {
16908 list_remove_head(&mbox_cmd_list, mb, LPFC_MBOXQ_t, list);
James Smart695a8142010-01-26 23:08:03 -050016909 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
16910 mp = (struct lpfc_dmabuf *) (mb->context1);
16911 if (mp) {
16912 __lpfc_mbuf_free(phba, mp->virt, mp->phys);
16913 kfree(mp);
16914 }
James Smart78730cf2010-04-06 15:06:30 -040016915 ndlp = (struct lpfc_nodelist *) mb->context2;
James Smartd439d282010-09-29 11:18:45 -040016916 mb->context2 = NULL;
James Smart78730cf2010-04-06 15:06:30 -040016917 if (ndlp) {
Dan Carpenterec21b3b2010-08-08 00:15:17 +020016918 spin_lock(shost->host_lock);
James Smart589a52d2010-07-14 15:30:54 -040016919 ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
Dan Carpenterec21b3b2010-08-08 00:15:17 +020016920 spin_unlock(shost->host_lock);
James Smart78730cf2010-04-06 15:06:30 -040016921 lpfc_nlp_put(ndlp);
James Smart78730cf2010-04-06 15:06:30 -040016922 }
James Smart695a8142010-01-26 23:08:03 -050016923 }
James Smart695a8142010-01-26 23:08:03 -050016924 mempool_free(mb, phba->mbox_mem_pool);
16925 }
James Smartd439d282010-09-29 11:18:45 -040016926
16927 /* Release the ndlp with the cleaned-up active mailbox command */
16928 if (act_mbx_ndlp) {
16929 spin_lock(shost->host_lock);
16930 act_mbx_ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
16931 spin_unlock(shost->host_lock);
16932 lpfc_nlp_put(act_mbx_ndlp);
James Smart695a8142010-01-26 23:08:03 -050016933 }
James Smart695a8142010-01-26 23:08:03 -050016934}
16935
James Smart2a9bf3d2010-06-07 15:24:45 -040016936/**
16937 * lpfc_drain_txq - Drain the txq
16938 * @phba: Pointer to HBA context object.
16939 *
16940 * This function attempt to submit IOCBs on the txq
16941 * to the adapter. For SLI4 adapters, the txq contains
16942 * ELS IOCBs that have been deferred because the there
16943 * are no SGLs. This congestion can occur with large
16944 * vport counts during node discovery.
16945 **/
16946
16947uint32_t
16948lpfc_drain_txq(struct lpfc_hba *phba)
16949{
16950 LIST_HEAD(completions);
16951 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
Daeseok Youn2e706372014-02-21 09:03:32 +090016952 struct lpfc_iocbq *piocbq = NULL;
James Smart2a9bf3d2010-06-07 15:24:45 -040016953 unsigned long iflags = 0;
16954 char *fail_msg = NULL;
16955 struct lpfc_sglq *sglq;
16956 union lpfc_wqe wqe;
James Smart0e9bb8d2013-03-01 16:35:12 -050016957 int txq_cnt = 0;
James Smart2a9bf3d2010-06-07 15:24:45 -040016958
James Smart398d81c2013-05-31 17:04:19 -040016959 spin_lock_irqsave(&pring->ring_lock, iflags);
James Smart0e9bb8d2013-03-01 16:35:12 -050016960 list_for_each_entry(piocbq, &pring->txq, list) {
16961 txq_cnt++;
16962 }
16963
16964 if (txq_cnt > pring->txq_max)
16965 pring->txq_max = txq_cnt;
James Smart2a9bf3d2010-06-07 15:24:45 -040016966
James Smart398d81c2013-05-31 17:04:19 -040016967 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smart2a9bf3d2010-06-07 15:24:45 -040016968
James Smart0e9bb8d2013-03-01 16:35:12 -050016969 while (!list_empty(&pring->txq)) {
James Smart398d81c2013-05-31 17:04:19 -040016970 spin_lock_irqsave(&pring->ring_lock, iflags);
James Smart2a9bf3d2010-06-07 15:24:45 -040016971
James Smart19ca7602010-11-20 23:11:55 -050016972 piocbq = lpfc_sli_ringtx_get(phba, pring);
James Smarta6298522012-06-12 13:54:11 -040016973 if (!piocbq) {
James Smart398d81c2013-05-31 17:04:19 -040016974 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smarta6298522012-06-12 13:54:11 -040016975 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
16976 "2823 txq empty and txq_cnt is %d\n ",
James Smart0e9bb8d2013-03-01 16:35:12 -050016977 txq_cnt);
James Smarta6298522012-06-12 13:54:11 -040016978 break;
16979 }
James Smart19ca7602010-11-20 23:11:55 -050016980 sglq = __lpfc_sli_get_sglq(phba, piocbq);
James Smart2a9bf3d2010-06-07 15:24:45 -040016981 if (!sglq) {
James Smart19ca7602010-11-20 23:11:55 -050016982 __lpfc_sli_ringtx_put(phba, pring, piocbq);
James Smart398d81c2013-05-31 17:04:19 -040016983 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smart2a9bf3d2010-06-07 15:24:45 -040016984 break;
James Smart2a9bf3d2010-06-07 15:24:45 -040016985 }
James Smart0e9bb8d2013-03-01 16:35:12 -050016986 txq_cnt--;
James Smart2a9bf3d2010-06-07 15:24:45 -040016987
16988 /* The xri and iocb resources secured,
16989 * attempt to issue request
16990 */
James Smart6d368e52011-05-24 11:44:12 -040016991 piocbq->sli4_lxritag = sglq->sli4_lxritag;
James Smart2a9bf3d2010-06-07 15:24:45 -040016992 piocbq->sli4_xritag = sglq->sli4_xritag;
16993 if (NO_XRI == lpfc_sli4_bpl2sgl(phba, piocbq, sglq))
16994 fail_msg = "to convert bpl to sgl";
16995 else if (lpfc_sli4_iocb2wqe(phba, piocbq, &wqe))
16996 fail_msg = "to convert iocb to wqe";
16997 else if (lpfc_sli4_wq_put(phba->sli4_hba.els_wq, &wqe))
16998 fail_msg = " - Wq is full";
16999 else
17000 lpfc_sli_ringtxcmpl_put(phba, pring, piocbq);
17001
17002 if (fail_msg) {
17003 /* Failed means we can't issue and need to cancel */
17004 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
17005 "2822 IOCB failed %s iotag 0x%x "
17006 "xri 0x%x\n",
17007 fail_msg,
17008 piocbq->iotag, piocbq->sli4_xritag);
17009 list_add_tail(&piocbq->list, &completions);
17010 }
James Smart398d81c2013-05-31 17:04:19 -040017011 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smart2a9bf3d2010-06-07 15:24:45 -040017012 }
17013
James Smart2a9bf3d2010-06-07 15:24:45 -040017014 /* Cancel all the IOCBs that cannot be issued */
17015 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
17016 IOERR_SLI_ABORTED);
17017
James Smart0e9bb8d2013-03-01 16:35:12 -050017018 return txq_cnt;
James Smart2a9bf3d2010-06-07 15:24:45 -040017019}