blob: c76c2a1e41e49d79cd744dc71e6feb7219fc3581 [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 Smart16a59fb2014-04-04 13:52:41 -04004 * Copyright (C) 2004-2014 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;
James Smart4f774512009-05-22 14:52:35 -0400190
James Smart2e90f4b2011-12-13 13:22:37 -0500191 /* sanity check on queue memory */
192 if (unlikely(!q))
193 return -ENOMEM;
194 temp_mqe = q->qe[q->host_index].mqe;
195
James Smart4f774512009-05-22 14:52:35 -0400196 /* If the host has not yet processed the next entry then we are done */
197 if (((q->host_index + 1) % q->entry_count) == q->hba_index)
198 return -ENOMEM;
199 lpfc_sli_pcimem_bcopy(mqe, temp_mqe, q->entry_size);
200 /* Save off the mailbox pointer for completion */
201 q->phba->mbox = (MAILBOX_t *)temp_mqe;
202
203 /* Update the host index before invoking device */
James Smart4f774512009-05-22 14:52:35 -0400204 q->host_index = ((q->host_index + 1) % q->entry_count);
205
206 /* Ring Doorbell */
207 doorbell.word0 = 0;
208 bf_set(lpfc_mq_doorbell_num_posted, &doorbell, 1);
209 bf_set(lpfc_mq_doorbell_id, &doorbell, q->queue_id);
210 writel(doorbell.word0, q->phba->sli4_hba.MQDBregaddr);
James Smart4f774512009-05-22 14:52:35 -0400211 return 0;
212}
213
214/**
215 * lpfc_sli4_mq_release - Updates internal hba index for MQ
216 * @q: The Mailbox Queue to operate on.
217 *
218 * This routine will update the HBA index of a queue to reflect consumption of
219 * a Mailbox Queue Entry by the HBA. When the HBA indicates that it has consumed
220 * an entry the host calls this function to update the queue's internal
221 * pointers. This routine returns the number of entries that were consumed by
222 * the HBA.
223 **/
224static uint32_t
225lpfc_sli4_mq_release(struct lpfc_queue *q)
226{
James Smart2e90f4b2011-12-13 13:22:37 -0500227 /* sanity check on queue memory */
228 if (unlikely(!q))
229 return 0;
230
James Smart4f774512009-05-22 14:52:35 -0400231 /* Clear the mailbox pointer for completion */
232 q->phba->mbox = NULL;
233 q->hba_index = ((q->hba_index + 1) % q->entry_count);
234 return 1;
235}
236
237/**
238 * lpfc_sli4_eq_get - Gets the next valid EQE from a EQ
239 * @q: The Event Queue to get the first valid EQE from
240 *
241 * This routine will get the first valid Event Queue Entry from @q, update
242 * the queue's internal hba index, and return the EQE. If no valid EQEs are in
243 * the Queue (no more work to do), or the Queue is full of EQEs that have been
244 * processed, but not popped back to the HBA then this routine will return NULL.
245 **/
246static struct lpfc_eqe *
247lpfc_sli4_eq_get(struct lpfc_queue *q)
248{
James Smart2e90f4b2011-12-13 13:22:37 -0500249 struct lpfc_eqe *eqe;
James Smart027140e2012-08-03 12:35:44 -0400250 uint32_t idx;
James Smart2e90f4b2011-12-13 13:22:37 -0500251
252 /* sanity check on queue memory */
253 if (unlikely(!q))
254 return NULL;
255 eqe = q->qe[q->hba_index].eqe;
James Smart4f774512009-05-22 14:52:35 -0400256
257 /* If the next EQE is not valid then we are done */
James Smartcb5172e2010-03-15 11:25:07 -0400258 if (!bf_get_le32(lpfc_eqe_valid, eqe))
James Smart4f774512009-05-22 14:52:35 -0400259 return NULL;
260 /* If the host has not yet processed the next entry then we are done */
James Smart027140e2012-08-03 12:35:44 -0400261 idx = ((q->hba_index + 1) % q->entry_count);
262 if (idx == q->host_index)
James Smart4f774512009-05-22 14:52:35 -0400263 return NULL;
264
James Smart027140e2012-08-03 12:35:44 -0400265 q->hba_index = idx;
James Smart27f344e2014-05-07 17:16:46 -0400266
267 /*
268 * insert barrier for instruction interlock : data from the hardware
269 * must have the valid bit checked before it can be copied and acted
270 * upon. Given what was seen in lpfc_sli4_cq_get() of speculative
271 * instructions allowing action on content before valid bit checked,
272 * add barrier here as well. May not be needed as "content" is a
273 * single 32-bit entity here (vs multi word structure for cq's).
274 */
275 mb();
James Smart4f774512009-05-22 14:52:35 -0400276 return eqe;
277}
278
279/**
James Smartba20c852012-08-03 12:36:52 -0400280 * lpfc_sli4_eq_clr_intr - Turn off interrupts from this EQ
281 * @q: The Event Queue to disable interrupts
282 *
283 **/
284static inline void
285lpfc_sli4_eq_clr_intr(struct lpfc_queue *q)
286{
287 struct lpfc_register doorbell;
288
289 doorbell.word0 = 0;
290 bf_set(lpfc_eqcq_doorbell_eqci, &doorbell, 1);
291 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_EVENT);
292 bf_set(lpfc_eqcq_doorbell_eqid_hi, &doorbell,
293 (q->queue_id >> LPFC_EQID_HI_FIELD_SHIFT));
294 bf_set(lpfc_eqcq_doorbell_eqid_lo, &doorbell, q->queue_id);
295 writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
296}
297
298/**
James Smart4f774512009-05-22 14:52:35 -0400299 * lpfc_sli4_eq_release - Indicates the host has finished processing an EQ
300 * @q: The Event Queue that the host has completed processing for.
301 * @arm: Indicates whether the host wants to arms this CQ.
302 *
303 * This routine will mark all Event Queue Entries on @q, from the last
304 * known completed entry to the last entry that was processed, as completed
305 * by clearing the valid bit for each completion queue entry. Then it will
306 * notify the HBA, by ringing the doorbell, that the EQEs have been processed.
307 * The internal host index in the @q will be updated by this routine to indicate
308 * that the host has finished processing the entries. The @arm parameter
309 * indicates that the queue should be rearmed when ringing the doorbell.
310 *
311 * This function will return the number of EQEs that were popped.
312 **/
313uint32_t
314lpfc_sli4_eq_release(struct lpfc_queue *q, bool arm)
315{
316 uint32_t released = 0;
317 struct lpfc_eqe *temp_eqe;
318 struct lpfc_register doorbell;
319
James Smart2e90f4b2011-12-13 13:22:37 -0500320 /* sanity check on queue memory */
321 if (unlikely(!q))
322 return 0;
323
James Smart4f774512009-05-22 14:52:35 -0400324 /* while there are valid entries */
325 while (q->hba_index != q->host_index) {
326 temp_eqe = q->qe[q->host_index].eqe;
James Smartcb5172e2010-03-15 11:25:07 -0400327 bf_set_le32(lpfc_eqe_valid, temp_eqe, 0);
James Smart4f774512009-05-22 14:52:35 -0400328 released++;
329 q->host_index = ((q->host_index + 1) % q->entry_count);
330 }
331 if (unlikely(released == 0 && !arm))
332 return 0;
333
334 /* ring doorbell for number popped */
335 doorbell.word0 = 0;
336 if (arm) {
337 bf_set(lpfc_eqcq_doorbell_arm, &doorbell, 1);
338 bf_set(lpfc_eqcq_doorbell_eqci, &doorbell, 1);
339 }
340 bf_set(lpfc_eqcq_doorbell_num_released, &doorbell, released);
341 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_EVENT);
James Smart6b5151f2012-01-18 16:24:06 -0500342 bf_set(lpfc_eqcq_doorbell_eqid_hi, &doorbell,
343 (q->queue_id >> LPFC_EQID_HI_FIELD_SHIFT));
344 bf_set(lpfc_eqcq_doorbell_eqid_lo, &doorbell, q->queue_id);
James Smart4f774512009-05-22 14:52:35 -0400345 writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
James Smarta747c9c2009-11-18 15:41:10 -0500346 /* PCI read to flush PCI pipeline on re-arming for INTx mode */
347 if ((q->phba->intr_type == INTx) && (arm == LPFC_QUEUE_REARM))
348 readl(q->phba->sli4_hba.EQCQDBregaddr);
James Smart4f774512009-05-22 14:52:35 -0400349 return released;
350}
351
352/**
353 * lpfc_sli4_cq_get - Gets the next valid CQE from a CQ
354 * @q: The Completion Queue to get the first valid CQE from
355 *
356 * This routine will get the first valid Completion Queue Entry from @q, update
357 * the queue's internal hba index, and return the CQE. If no valid CQEs are in
358 * the Queue (no more work to do), or the Queue is full of CQEs that have been
359 * processed, but not popped back to the HBA then this routine will return NULL.
360 **/
361static struct lpfc_cqe *
362lpfc_sli4_cq_get(struct lpfc_queue *q)
363{
364 struct lpfc_cqe *cqe;
James Smart027140e2012-08-03 12:35:44 -0400365 uint32_t idx;
James Smart4f774512009-05-22 14:52:35 -0400366
James Smart2e90f4b2011-12-13 13:22:37 -0500367 /* sanity check on queue memory */
368 if (unlikely(!q))
369 return NULL;
370
James Smart4f774512009-05-22 14:52:35 -0400371 /* If the next CQE is not valid then we are done */
James Smartcb5172e2010-03-15 11:25:07 -0400372 if (!bf_get_le32(lpfc_cqe_valid, q->qe[q->hba_index].cqe))
James Smart4f774512009-05-22 14:52:35 -0400373 return NULL;
374 /* If the host has not yet processed the next entry then we are done */
James Smart027140e2012-08-03 12:35:44 -0400375 idx = ((q->hba_index + 1) % q->entry_count);
376 if (idx == q->host_index)
James Smart4f774512009-05-22 14:52:35 -0400377 return NULL;
378
379 cqe = q->qe[q->hba_index].cqe;
James Smart027140e2012-08-03 12:35:44 -0400380 q->hba_index = idx;
James Smart27f344e2014-05-07 17:16:46 -0400381
382 /*
383 * insert barrier for instruction interlock : data from the hardware
384 * must have the valid bit checked before it can be copied and acted
385 * upon. Speculative instructions were allowing a bcopy at the start
386 * of lpfc_sli4_fp_handle_wcqe(), which is called immediately
387 * after our return, to copy data before the valid bit check above
388 * was done. As such, some of the copied data was stale. The barrier
389 * ensures the check is before any data is copied.
390 */
391 mb();
James Smart4f774512009-05-22 14:52:35 -0400392 return cqe;
393}
394
395/**
396 * lpfc_sli4_cq_release - Indicates the host has finished processing a CQ
397 * @q: The Completion Queue that the host has completed processing for.
398 * @arm: Indicates whether the host wants to arms this CQ.
399 *
400 * This routine will mark all Completion queue entries on @q, from the last
401 * known completed entry to the last entry that was processed, as completed
402 * by clearing the valid bit for each completion queue entry. Then it will
403 * notify the HBA, by ringing the doorbell, that the CQEs have been processed.
404 * The internal host index in the @q will be updated by this routine to indicate
405 * that the host has finished processing the entries. The @arm parameter
406 * indicates that the queue should be rearmed when ringing the doorbell.
407 *
408 * This function will return the number of CQEs that were released.
409 **/
410uint32_t
411lpfc_sli4_cq_release(struct lpfc_queue *q, bool arm)
412{
413 uint32_t released = 0;
414 struct lpfc_cqe *temp_qe;
415 struct lpfc_register doorbell;
416
James Smart2e90f4b2011-12-13 13:22:37 -0500417 /* sanity check on queue memory */
418 if (unlikely(!q))
419 return 0;
James Smart4f774512009-05-22 14:52:35 -0400420 /* while there are valid entries */
421 while (q->hba_index != q->host_index) {
422 temp_qe = q->qe[q->host_index].cqe;
James Smartcb5172e2010-03-15 11:25:07 -0400423 bf_set_le32(lpfc_cqe_valid, temp_qe, 0);
James Smart4f774512009-05-22 14:52:35 -0400424 released++;
425 q->host_index = ((q->host_index + 1) % q->entry_count);
426 }
427 if (unlikely(released == 0 && !arm))
428 return 0;
429
430 /* ring doorbell for number popped */
431 doorbell.word0 = 0;
432 if (arm)
433 bf_set(lpfc_eqcq_doorbell_arm, &doorbell, 1);
434 bf_set(lpfc_eqcq_doorbell_num_released, &doorbell, released);
435 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_COMPLETION);
James Smart6b5151f2012-01-18 16:24:06 -0500436 bf_set(lpfc_eqcq_doorbell_cqid_hi, &doorbell,
437 (q->queue_id >> LPFC_CQID_HI_FIELD_SHIFT));
438 bf_set(lpfc_eqcq_doorbell_cqid_lo, &doorbell, q->queue_id);
James Smart4f774512009-05-22 14:52:35 -0400439 writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
440 return released;
441}
442
443/**
444 * lpfc_sli4_rq_put - Put a Receive Buffer Queue Entry on a Receive Queue
445 * @q: The Header Receive Queue to operate on.
446 * @wqe: The Receive Queue Entry to put on the Receive queue.
447 *
448 * This routine will copy the contents of @wqe to the next available entry on
449 * the @q. This function will then ring the Receive Queue Doorbell to signal the
450 * HBA to start processing the Receive Queue Entry. This function returns the
451 * index that the rqe was copied to if successful. If no entries are available
452 * on @q then this function will return -ENOMEM.
453 * The caller is expected to hold the hbalock when calling this routine.
454 **/
455static int
456lpfc_sli4_rq_put(struct lpfc_queue *hq, struct lpfc_queue *dq,
457 struct lpfc_rqe *hrqe, struct lpfc_rqe *drqe)
458{
James Smart2e90f4b2011-12-13 13:22:37 -0500459 struct lpfc_rqe *temp_hrqe;
460 struct lpfc_rqe *temp_drqe;
James Smart4f774512009-05-22 14:52:35 -0400461 struct lpfc_register doorbell;
Wei Yongjun5a25bf32012-12-02 08:33:24 -0500462 int put_index;
James Smart4f774512009-05-22 14:52:35 -0400463
James Smart2e90f4b2011-12-13 13:22:37 -0500464 /* sanity check on queue memory */
465 if (unlikely(!hq) || unlikely(!dq))
466 return -ENOMEM;
Wei Yongjun5a25bf32012-12-02 08:33:24 -0500467 put_index = hq->host_index;
James Smart2e90f4b2011-12-13 13:22:37 -0500468 temp_hrqe = hq->qe[hq->host_index].rqe;
469 temp_drqe = dq->qe[dq->host_index].rqe;
470
James Smart4f774512009-05-22 14:52:35 -0400471 if (hq->type != LPFC_HRQ || dq->type != LPFC_DRQ)
472 return -EINVAL;
473 if (hq->host_index != dq->host_index)
474 return -EINVAL;
475 /* If the host has not yet processed the next entry then we are done */
476 if (((hq->host_index + 1) % hq->entry_count) == hq->hba_index)
477 return -EBUSY;
478 lpfc_sli_pcimem_bcopy(hrqe, temp_hrqe, hq->entry_size);
479 lpfc_sli_pcimem_bcopy(drqe, temp_drqe, dq->entry_size);
480
481 /* Update the host index to point to the next slot */
482 hq->host_index = ((hq->host_index + 1) % hq->entry_count);
483 dq->host_index = ((dq->host_index + 1) % dq->entry_count);
484
485 /* Ring The Header Receive Queue Doorbell */
James Smart73d91e52011-10-10 21:32:10 -0400486 if (!(hq->host_index % hq->entry_repost)) {
James Smart4f774512009-05-22 14:52:35 -0400487 doorbell.word0 = 0;
James Smart962bc512013-01-03 15:44:00 -0500488 if (hq->db_format == LPFC_DB_RING_FORMAT) {
489 bf_set(lpfc_rq_db_ring_fm_num_posted, &doorbell,
490 hq->entry_repost);
491 bf_set(lpfc_rq_db_ring_fm_id, &doorbell, hq->queue_id);
492 } else if (hq->db_format == LPFC_DB_LIST_FORMAT) {
493 bf_set(lpfc_rq_db_list_fm_num_posted, &doorbell,
494 hq->entry_repost);
495 bf_set(lpfc_rq_db_list_fm_index, &doorbell,
496 hq->host_index);
497 bf_set(lpfc_rq_db_list_fm_id, &doorbell, hq->queue_id);
498 } else {
499 return -EINVAL;
500 }
501 writel(doorbell.word0, hq->db_regaddr);
James Smart4f774512009-05-22 14:52:35 -0400502 }
503 return put_index;
504}
505
506/**
507 * lpfc_sli4_rq_release - Updates internal hba index for RQ
508 * @q: The Header Receive Queue to operate on.
509 *
510 * This routine will update the HBA index of a queue to reflect consumption of
511 * one Receive Queue Entry by the HBA. When the HBA indicates that it has
512 * consumed an entry the host calls this function to update the queue's
513 * internal pointers. This routine returns the number of entries that were
514 * consumed by the HBA.
515 **/
516static uint32_t
517lpfc_sli4_rq_release(struct lpfc_queue *hq, struct lpfc_queue *dq)
518{
James Smart2e90f4b2011-12-13 13:22:37 -0500519 /* sanity check on queue memory */
520 if (unlikely(!hq) || unlikely(!dq))
521 return 0;
522
James Smart4f774512009-05-22 14:52:35 -0400523 if ((hq->type != LPFC_HRQ) || (dq->type != LPFC_DRQ))
524 return 0;
525 hq->hba_index = ((hq->hba_index + 1) % hq->entry_count);
526 dq->hba_index = ((dq->hba_index + 1) % dq->entry_count);
527 return 1;
528}
529
James Smarte59058c2008-08-24 21:49:00 -0400530/**
James Smart3621a712009-04-06 18:47:14 -0400531 * lpfc_cmd_iocb - Get next command iocb entry in the ring
James Smarte59058c2008-08-24 21:49:00 -0400532 * @phba: Pointer to HBA context object.
533 * @pring: Pointer to driver SLI ring object.
534 *
535 * This function returns pointer to next command iocb entry
536 * in the command ring. The caller must hold hbalock to prevent
537 * other threads consume the next command iocb.
538 * SLI-2/SLI-3 provide different sized iocbs.
539 **/
James Smarted957682007-06-17 19:56:37 -0500540static inline IOCB_t *
541lpfc_cmd_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
542{
James Smart7e56aa22012-08-03 12:35:34 -0400543 return (IOCB_t *) (((char *) pring->sli.sli3.cmdringaddr) +
544 pring->sli.sli3.cmdidx * phba->iocb_cmd_size);
James Smarted957682007-06-17 19:56:37 -0500545}
546
James Smarte59058c2008-08-24 21:49:00 -0400547/**
James Smart3621a712009-04-06 18:47:14 -0400548 * lpfc_resp_iocb - Get next response iocb entry in the ring
James Smarte59058c2008-08-24 21:49:00 -0400549 * @phba: Pointer to HBA context object.
550 * @pring: Pointer to driver SLI ring object.
551 *
552 * This function returns pointer to next response iocb entry
553 * in the response ring. The caller must hold hbalock to make sure
554 * that no other thread consume the next response iocb.
555 * SLI-2/SLI-3 provide different sized iocbs.
556 **/
James Smarted957682007-06-17 19:56:37 -0500557static inline IOCB_t *
558lpfc_resp_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
559{
James Smart7e56aa22012-08-03 12:35:34 -0400560 return (IOCB_t *) (((char *) pring->sli.sli3.rspringaddr) +
561 pring->sli.sli3.rspidx * phba->iocb_rsp_size);
James Smarted957682007-06-17 19:56:37 -0500562}
563
James Smarte59058c2008-08-24 21:49:00 -0400564/**
James Smart3621a712009-04-06 18:47:14 -0400565 * __lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
James Smarte59058c2008-08-24 21:49:00 -0400566 * @phba: Pointer to HBA context object.
567 *
568 * This function is called with hbalock held. This function
569 * allocates a new driver iocb object from the iocb pool. If the
570 * allocation is successful, it returns pointer to the newly
571 * allocated iocb object else it returns NULL.
572 **/
James Smart4f2e66c2012-05-09 21:17:07 -0400573struct lpfc_iocbq *
James Smart2e0fef82007-06-17 19:56:36 -0500574__lpfc_sli_get_iocbq(struct lpfc_hba *phba)
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400575{
576 struct list_head *lpfc_iocb_list = &phba->lpfc_iocb_list;
577 struct lpfc_iocbq * iocbq = NULL;
578
579 list_remove_head(lpfc_iocb_list, iocbq, struct lpfc_iocbq, list);
James Smart2a9bf3d2010-06-07 15:24:45 -0400580 if (iocbq)
581 phba->iocb_cnt++;
582 if (phba->iocb_cnt > phba->iocb_max)
583 phba->iocb_max = phba->iocb_cnt;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400584 return iocbq;
585}
586
James Smarte59058c2008-08-24 21:49:00 -0400587/**
James Smartda0436e2009-05-22 14:51:39 -0400588 * __lpfc_clear_active_sglq - Remove the active sglq for this XRI.
589 * @phba: Pointer to HBA context object.
590 * @xritag: XRI value.
591 *
592 * This function clears the sglq pointer from the array of acive
593 * sglq's. The xritag that is passed in is used to index into the
594 * array. Before the xritag can be used it needs to be adjusted
595 * by subtracting the xribase.
596 *
597 * Returns sglq ponter = success, NULL = Failure.
598 **/
599static struct lpfc_sglq *
600__lpfc_clear_active_sglq(struct lpfc_hba *phba, uint16_t xritag)
601{
James Smartda0436e2009-05-22 14:51:39 -0400602 struct lpfc_sglq *sglq;
James Smart6d368e52011-05-24 11:44:12 -0400603
604 sglq = phba->sli4_hba.lpfc_sglq_active_list[xritag];
605 phba->sli4_hba.lpfc_sglq_active_list[xritag] = NULL;
James Smartda0436e2009-05-22 14:51:39 -0400606 return sglq;
607}
608
609/**
610 * __lpfc_get_active_sglq - Get the active sglq for this XRI.
611 * @phba: Pointer to HBA context object.
612 * @xritag: XRI value.
613 *
614 * This function returns the sglq pointer from the array of acive
615 * sglq's. The xritag that is passed in is used to index into the
616 * array. Before the xritag can be used it needs to be adjusted
617 * by subtracting the xribase.
618 *
619 * Returns sglq ponter = success, NULL = Failure.
620 **/
James Smart0f65ff62010-02-26 14:14:23 -0500621struct lpfc_sglq *
James Smartda0436e2009-05-22 14:51:39 -0400622__lpfc_get_active_sglq(struct lpfc_hba *phba, uint16_t xritag)
623{
James Smartda0436e2009-05-22 14:51:39 -0400624 struct lpfc_sglq *sglq;
James Smart6d368e52011-05-24 11:44:12 -0400625
626 sglq = phba->sli4_hba.lpfc_sglq_active_list[xritag];
James Smartda0436e2009-05-22 14:51:39 -0400627 return sglq;
628}
629
630/**
James Smart1151e3e2011-02-16 12:39:35 -0500631 * lpfc_clr_rrq_active - Clears RRQ active bit in xri_bitmap.
James Smart19ca7602010-11-20 23:11:55 -0500632 * @phba: Pointer to HBA context object.
633 * @xritag: xri used in this exchange.
634 * @rrq: The RRQ to be cleared.
635 *
James Smart19ca7602010-11-20 23:11:55 -0500636 **/
James Smart1151e3e2011-02-16 12:39:35 -0500637void
638lpfc_clr_rrq_active(struct lpfc_hba *phba,
639 uint16_t xritag,
640 struct lpfc_node_rrq *rrq)
James Smart19ca7602010-11-20 23:11:55 -0500641{
James Smart1151e3e2011-02-16 12:39:35 -0500642 struct lpfc_nodelist *ndlp = NULL;
James Smart19ca7602010-11-20 23:11:55 -0500643
James Smart1151e3e2011-02-16 12:39:35 -0500644 if ((rrq->vport) && NLP_CHK_NODE_ACT(rrq->ndlp))
645 ndlp = lpfc_findnode_did(rrq->vport, rrq->nlp_DID);
James Smart19ca7602010-11-20 23:11:55 -0500646
647 /* The target DID could have been swapped (cable swap)
648 * we should use the ndlp from the findnode if it is
649 * available.
650 */
James Smart1151e3e2011-02-16 12:39:35 -0500651 if ((!ndlp) && rrq->ndlp)
James Smart19ca7602010-11-20 23:11:55 -0500652 ndlp = rrq->ndlp;
653
James Smart1151e3e2011-02-16 12:39:35 -0500654 if (!ndlp)
655 goto out;
656
James Smartcff261f2013-12-17 20:29:47 -0500657 if (test_and_clear_bit(xritag, ndlp->active_rrqs_xri_bitmap)) {
James Smart19ca7602010-11-20 23:11:55 -0500658 rrq->send_rrq = 0;
659 rrq->xritag = 0;
660 rrq->rrq_stop_time = 0;
661 }
James Smart1151e3e2011-02-16 12:39:35 -0500662out:
James Smart19ca7602010-11-20 23:11:55 -0500663 mempool_free(rrq, phba->rrq_pool);
664}
665
666/**
667 * lpfc_handle_rrq_active - Checks if RRQ has waithed RATOV.
668 * @phba: Pointer to HBA context object.
669 *
670 * This function is called with hbalock held. This function
671 * Checks if stop_time (ratov from setting rrq active) has
672 * been reached, if it has and the send_rrq flag is set then
673 * it will call lpfc_send_rrq. If the send_rrq flag is not set
674 * then it will just call the routine to clear the rrq and
675 * free the rrq resource.
676 * The timer is set to the next rrq that is going to expire before
677 * leaving the routine.
678 *
679 **/
680void
681lpfc_handle_rrq_active(struct lpfc_hba *phba)
682{
683 struct lpfc_node_rrq *rrq;
684 struct lpfc_node_rrq *nextrrq;
685 unsigned long next_time;
686 unsigned long iflags;
James Smart1151e3e2011-02-16 12:39:35 -0500687 LIST_HEAD(send_rrq);
James Smart19ca7602010-11-20 23:11:55 -0500688
689 spin_lock_irqsave(&phba->hbalock, iflags);
690 phba->hba_flag &= ~HBA_RRQ_ACTIVE;
James Smart256ec0d2013-04-17 20:14:58 -0400691 next_time = jiffies + msecs_to_jiffies(1000 * (phba->fc_ratov + 1));
James Smart19ca7602010-11-20 23:11:55 -0500692 list_for_each_entry_safe(rrq, nextrrq,
James Smart1151e3e2011-02-16 12:39:35 -0500693 &phba->active_rrq_list, list) {
694 if (time_after(jiffies, rrq->rrq_stop_time))
695 list_move(&rrq->list, &send_rrq);
696 else if (time_before(rrq->rrq_stop_time, next_time))
James Smart19ca7602010-11-20 23:11:55 -0500697 next_time = rrq->rrq_stop_time;
698 }
699 spin_unlock_irqrestore(&phba->hbalock, iflags);
James Smart06918ac2014-02-20 09:57:57 -0500700 if ((!list_empty(&phba->active_rrq_list)) &&
701 (!(phba->pport->load_flag & FC_UNLOADING)))
James Smart19ca7602010-11-20 23:11:55 -0500702 mod_timer(&phba->rrq_tmr, next_time);
James Smart1151e3e2011-02-16 12:39:35 -0500703 list_for_each_entry_safe(rrq, nextrrq, &send_rrq, list) {
704 list_del(&rrq->list);
705 if (!rrq->send_rrq)
706 /* this call will free the rrq */
707 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
708 else if (lpfc_send_rrq(phba, rrq)) {
709 /* if we send the rrq then the completion handler
710 * will clear the bit in the xribitmap.
711 */
712 lpfc_clr_rrq_active(phba, rrq->xritag,
713 rrq);
714 }
715 }
James Smart19ca7602010-11-20 23:11:55 -0500716}
717
718/**
719 * lpfc_get_active_rrq - Get the active RRQ for this exchange.
720 * @vport: Pointer to vport context object.
721 * @xri: The xri used in the exchange.
722 * @did: The targets DID for this exchange.
723 *
724 * returns NULL = rrq not found in the phba->active_rrq_list.
725 * rrq = rrq for this xri and target.
726 **/
727struct lpfc_node_rrq *
728lpfc_get_active_rrq(struct lpfc_vport *vport, uint16_t xri, uint32_t did)
729{
730 struct lpfc_hba *phba = vport->phba;
731 struct lpfc_node_rrq *rrq;
732 struct lpfc_node_rrq *nextrrq;
733 unsigned long iflags;
734
735 if (phba->sli_rev != LPFC_SLI_REV4)
736 return NULL;
737 spin_lock_irqsave(&phba->hbalock, iflags);
738 list_for_each_entry_safe(rrq, nextrrq, &phba->active_rrq_list, list) {
739 if (rrq->vport == vport && rrq->xritag == xri &&
740 rrq->nlp_DID == did){
741 list_del(&rrq->list);
742 spin_unlock_irqrestore(&phba->hbalock, iflags);
743 return rrq;
744 }
745 }
746 spin_unlock_irqrestore(&phba->hbalock, iflags);
747 return NULL;
748}
749
750/**
751 * lpfc_cleanup_vports_rrqs - Remove and clear the active RRQ for this vport.
752 * @vport: Pointer to vport context object.
James Smart1151e3e2011-02-16 12:39:35 -0500753 * @ndlp: Pointer to the lpfc_node_list structure.
754 * If ndlp is NULL Remove all active RRQs for this vport from the
755 * phba->active_rrq_list and clear the rrq.
756 * If ndlp is not NULL then only remove rrqs for this vport & this ndlp.
James Smart19ca7602010-11-20 23:11:55 -0500757 **/
758void
James Smart1151e3e2011-02-16 12:39:35 -0500759lpfc_cleanup_vports_rrqs(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
James Smart19ca7602010-11-20 23:11:55 -0500760
761{
762 struct lpfc_hba *phba = vport->phba;
763 struct lpfc_node_rrq *rrq;
764 struct lpfc_node_rrq *nextrrq;
765 unsigned long iflags;
James Smart1151e3e2011-02-16 12:39:35 -0500766 LIST_HEAD(rrq_list);
James Smart19ca7602010-11-20 23:11:55 -0500767
768 if (phba->sli_rev != LPFC_SLI_REV4)
769 return;
James Smart1151e3e2011-02-16 12:39:35 -0500770 if (!ndlp) {
771 lpfc_sli4_vport_delete_els_xri_aborted(vport);
772 lpfc_sli4_vport_delete_fcp_xri_aborted(vport);
James Smart19ca7602010-11-20 23:11:55 -0500773 }
James Smart1151e3e2011-02-16 12:39:35 -0500774 spin_lock_irqsave(&phba->hbalock, iflags);
775 list_for_each_entry_safe(rrq, nextrrq, &phba->active_rrq_list, list)
776 if ((rrq->vport == vport) && (!ndlp || rrq->ndlp == ndlp))
777 list_move(&rrq->list, &rrq_list);
James Smart19ca7602010-11-20 23:11:55 -0500778 spin_unlock_irqrestore(&phba->hbalock, iflags);
James Smart1151e3e2011-02-16 12:39:35 -0500779
780 list_for_each_entry_safe(rrq, nextrrq, &rrq_list, list) {
781 list_del(&rrq->list);
782 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
783 }
James Smart19ca7602010-11-20 23:11:55 -0500784}
785
786/**
James Smart1151e3e2011-02-16 12:39:35 -0500787 * lpfc_test_rrq_active - Test RRQ bit in xri_bitmap.
James Smart19ca7602010-11-20 23:11:55 -0500788 * @phba: Pointer to HBA context object.
789 * @ndlp: Targets nodelist pointer for this exchange.
790 * @xritag the xri in the bitmap to test.
791 *
792 * This function is called with hbalock held. This function
793 * returns 0 = rrq not active for this xri
794 * 1 = rrq is valid for this xri.
795 **/
James Smart1151e3e2011-02-16 12:39:35 -0500796int
797lpfc_test_rrq_active(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp,
James Smart19ca7602010-11-20 23:11:55 -0500798 uint16_t xritag)
799{
James Smart19ca7602010-11-20 23:11:55 -0500800 if (!ndlp)
801 return 0;
James Smartcff261f2013-12-17 20:29:47 -0500802 if (!ndlp->active_rrqs_xri_bitmap)
803 return 0;
804 if (test_bit(xritag, ndlp->active_rrqs_xri_bitmap))
James Smart19ca7602010-11-20 23:11:55 -0500805 return 1;
806 else
807 return 0;
808}
809
810/**
811 * lpfc_set_rrq_active - set RRQ active bit in xri_bitmap.
812 * @phba: Pointer to HBA context object.
813 * @ndlp: nodelist pointer for this target.
814 * @xritag: xri used in this exchange.
815 * @rxid: Remote Exchange ID.
816 * @send_rrq: Flag used to determine if we should send rrq els cmd.
817 *
818 * This function takes the hbalock.
819 * The active bit is always set in the active rrq xri_bitmap even
820 * if there is no slot avaiable for the other rrq information.
821 *
822 * returns 0 rrq actived for this xri
823 * < 0 No memory or invalid ndlp.
824 **/
825int
826lpfc_set_rrq_active(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp,
James Smartb42c07c2012-01-18 16:25:55 -0500827 uint16_t xritag, uint16_t rxid, uint16_t send_rrq)
James Smart19ca7602010-11-20 23:11:55 -0500828{
James Smart19ca7602010-11-20 23:11:55 -0500829 unsigned long iflags;
James Smartb42c07c2012-01-18 16:25:55 -0500830 struct lpfc_node_rrq *rrq;
831 int empty;
832
833 if (!ndlp)
834 return -EINVAL;
835
836 if (!phba->cfg_enable_rrq)
837 return -EINVAL;
James Smart19ca7602010-11-20 23:11:55 -0500838
839 spin_lock_irqsave(&phba->hbalock, iflags);
James Smartb42c07c2012-01-18 16:25:55 -0500840 if (phba->pport->load_flag & FC_UNLOADING) {
841 phba->hba_flag &= ~HBA_RRQ_ACTIVE;
842 goto out;
843 }
844
845 /*
846 * set the active bit even if there is no mem available.
847 */
848 if (NLP_CHK_FREE_REQ(ndlp))
849 goto out;
850
851 if (ndlp->vport && (ndlp->vport->load_flag & FC_UNLOADING))
852 goto out;
853
James Smartcff261f2013-12-17 20:29:47 -0500854 if (!ndlp->active_rrqs_xri_bitmap)
855 goto out;
856
857 if (test_and_set_bit(xritag, ndlp->active_rrqs_xri_bitmap))
James Smartb42c07c2012-01-18 16:25:55 -0500858 goto out;
859
James Smart19ca7602010-11-20 23:11:55 -0500860 spin_unlock_irqrestore(&phba->hbalock, iflags);
James Smartb42c07c2012-01-18 16:25:55 -0500861 rrq = mempool_alloc(phba->rrq_pool, GFP_KERNEL);
862 if (!rrq) {
863 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
864 "3155 Unable to allocate RRQ xri:0x%x rxid:0x%x"
865 " DID:0x%x Send:%d\n",
866 xritag, rxid, ndlp->nlp_DID, send_rrq);
867 return -EINVAL;
868 }
James Smarte5771b42013-03-01 16:37:14 -0500869 if (phba->cfg_enable_rrq == 1)
870 rrq->send_rrq = send_rrq;
871 else
872 rrq->send_rrq = 0;
James Smartb42c07c2012-01-18 16:25:55 -0500873 rrq->xritag = xritag;
James Smart256ec0d2013-04-17 20:14:58 -0400874 rrq->rrq_stop_time = jiffies +
875 msecs_to_jiffies(1000 * (phba->fc_ratov + 1));
James Smartb42c07c2012-01-18 16:25:55 -0500876 rrq->ndlp = ndlp;
877 rrq->nlp_DID = ndlp->nlp_DID;
878 rrq->vport = ndlp->vport;
879 rrq->rxid = rxid;
James Smartb42c07c2012-01-18 16:25:55 -0500880 spin_lock_irqsave(&phba->hbalock, iflags);
881 empty = list_empty(&phba->active_rrq_list);
882 list_add_tail(&rrq->list, &phba->active_rrq_list);
883 phba->hba_flag |= HBA_RRQ_ACTIVE;
884 if (empty)
885 lpfc_worker_wake_up(phba);
886 spin_unlock_irqrestore(&phba->hbalock, iflags);
887 return 0;
888out:
889 spin_unlock_irqrestore(&phba->hbalock, iflags);
890 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
891 "2921 Can't set rrq active xri:0x%x rxid:0x%x"
892 " DID:0x%x Send:%d\n",
893 xritag, rxid, ndlp->nlp_DID, send_rrq);
894 return -EINVAL;
James Smart19ca7602010-11-20 23:11:55 -0500895}
896
897/**
James Smartda0436e2009-05-22 14:51:39 -0400898 * __lpfc_sli_get_sglq - Allocates an iocb object from sgl pool
899 * @phba: Pointer to HBA context object.
James Smart19ca7602010-11-20 23:11:55 -0500900 * @piocb: Pointer to the iocbq.
James Smartda0436e2009-05-22 14:51:39 -0400901 *
James Smartdafe8ce2014-09-03 12:56:40 -0400902 * This function is called with the ring lock held. This function
James Smart6d368e52011-05-24 11:44:12 -0400903 * gets a new driver sglq object from the sglq list. If the
James Smartda0436e2009-05-22 14:51:39 -0400904 * list is not empty then it is successful, it returns pointer to the newly
905 * allocated sglq object else it returns NULL.
906 **/
907static struct lpfc_sglq *
James Smart19ca7602010-11-20 23:11:55 -0500908__lpfc_sli_get_sglq(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq)
James Smartda0436e2009-05-22 14:51:39 -0400909{
910 struct list_head *lpfc_sgl_list = &phba->sli4_hba.lpfc_sgl_list;
911 struct lpfc_sglq *sglq = NULL;
James Smart19ca7602010-11-20 23:11:55 -0500912 struct lpfc_sglq *start_sglq = NULL;
James Smart19ca7602010-11-20 23:11:55 -0500913 struct lpfc_scsi_buf *lpfc_cmd;
914 struct lpfc_nodelist *ndlp;
915 int found = 0;
916
917 if (piocbq->iocb_flag & LPFC_IO_FCP) {
918 lpfc_cmd = (struct lpfc_scsi_buf *) piocbq->context1;
919 ndlp = lpfc_cmd->rdata->pnode;
James Smartbe858b62010-12-15 17:57:20 -0500920 } else if ((piocbq->iocb.ulpCommand == CMD_GEN_REQUEST64_CR) &&
921 !(piocbq->iocb_flag & LPFC_IO_LIBDFC))
James Smart19ca7602010-11-20 23:11:55 -0500922 ndlp = piocbq->context_un.ndlp;
James Smartd5ce53b2013-04-17 20:17:26 -0400923 else if (piocbq->iocb_flag & LPFC_IO_LIBDFC)
James Smart93d1379e2012-05-09 21:19:34 -0400924 ndlp = piocbq->context_un.ndlp;
James Smart19ca7602010-11-20 23:11:55 -0500925 else
926 ndlp = piocbq->context1;
927
James Smartda0436e2009-05-22 14:51:39 -0400928 list_remove_head(lpfc_sgl_list, sglq, struct lpfc_sglq, list);
James Smart19ca7602010-11-20 23:11:55 -0500929 start_sglq = sglq;
930 while (!found) {
931 if (!sglq)
932 return NULL;
James Smartee0f4fe2012-05-09 21:19:14 -0400933 if (lpfc_test_rrq_active(phba, ndlp, sglq->sli4_lxritag)) {
James Smart19ca7602010-11-20 23:11:55 -0500934 /* This xri has an rrq outstanding for this DID.
935 * put it back in the list and get another xri.
936 */
937 list_add_tail(&sglq->list, lpfc_sgl_list);
938 sglq = NULL;
939 list_remove_head(lpfc_sgl_list, sglq,
940 struct lpfc_sglq, list);
941 if (sglq == start_sglq) {
942 sglq = NULL;
943 break;
944 } else
945 continue;
946 }
947 sglq->ndlp = ndlp;
948 found = 1;
James Smart6d368e52011-05-24 11:44:12 -0400949 phba->sli4_hba.lpfc_sglq_active_list[sglq->sli4_lxritag] = sglq;
James Smart19ca7602010-11-20 23:11:55 -0500950 sglq->state = SGL_ALLOCATED;
951 }
James Smartda0436e2009-05-22 14:51:39 -0400952 return sglq;
953}
954
955/**
James Smart3621a712009-04-06 18:47:14 -0400956 * lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
James Smarte59058c2008-08-24 21:49:00 -0400957 * @phba: Pointer to HBA context object.
958 *
959 * This function is called with no lock held. This function
960 * allocates a new driver iocb object from the iocb pool. If the
961 * allocation is successful, it returns pointer to the newly
962 * allocated iocb object else it returns NULL.
963 **/
James Smart2e0fef82007-06-17 19:56:36 -0500964struct lpfc_iocbq *
965lpfc_sli_get_iocbq(struct lpfc_hba *phba)
James Bottomley604a3e32005-10-29 10:28:33 -0500966{
James Smart2e0fef82007-06-17 19:56:36 -0500967 struct lpfc_iocbq * iocbq = NULL;
968 unsigned long iflags;
969
970 spin_lock_irqsave(&phba->hbalock, iflags);
971 iocbq = __lpfc_sli_get_iocbq(phba);
972 spin_unlock_irqrestore(&phba->hbalock, iflags);
973 return iocbq;
974}
975
James Smarte59058c2008-08-24 21:49:00 -0400976/**
James Smart4f774512009-05-22 14:52:35 -0400977 * __lpfc_sli_release_iocbq_s4 - Release iocb to the iocb pool
978 * @phba: Pointer to HBA context object.
979 * @iocbq: Pointer to driver iocb object.
980 *
981 * This function is called with hbalock held to release driver
982 * iocb object to the iocb pool. The iotag in the iocb object
983 * does not change for each use of the iocb object. This function
984 * clears all other fields of the iocb object when it is freed.
985 * The sqlq structure that holds the xritag and phys and virtual
986 * mappings for the scatter gather list is retrieved from the
987 * active array of sglq. The get of the sglq pointer also clears
988 * the entry in the array. If the status of the IO indiactes that
989 * this IO was aborted then the sglq entry it put on the
990 * lpfc_abts_els_sgl_list until the CQ_ABORTED_XRI is received. If the
991 * IO has good status or fails for any other reason then the sglq
992 * entry is added to the free list (lpfc_sgl_list).
993 **/
994static void
995__lpfc_sli_release_iocbq_s4(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
996{
997 struct lpfc_sglq *sglq;
998 size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
James Smart2a9bf3d2010-06-07 15:24:45 -0400999 unsigned long iflag = 0;
1000 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
James Smart4f774512009-05-22 14:52:35 -04001001
1002 if (iocbq->sli4_xritag == NO_XRI)
1003 sglq = NULL;
1004 else
James Smart6d368e52011-05-24 11:44:12 -04001005 sglq = __lpfc_clear_active_sglq(phba, iocbq->sli4_lxritag);
1006
James Smart0e9bb8d2013-03-01 16:35:12 -05001007
James Smart4f774512009-05-22 14:52:35 -04001008 if (sglq) {
James Smart0f65ff62010-02-26 14:14:23 -05001009 if ((iocbq->iocb_flag & LPFC_EXCHANGE_BUSY) &&
1010 (sglq->state != SGL_XRI_ABORTED)) {
James Smart4f774512009-05-22 14:52:35 -04001011 spin_lock_irqsave(&phba->sli4_hba.abts_sgl_list_lock,
1012 iflag);
1013 list_add(&sglq->list,
1014 &phba->sli4_hba.lpfc_abts_els_sgl_list);
1015 spin_unlock_irqrestore(
1016 &phba->sli4_hba.abts_sgl_list_lock, iflag);
James Smart0f65ff62010-02-26 14:14:23 -05001017 } else {
James Smartdafe8ce2014-09-03 12:56:40 -04001018 spin_lock_irqsave(&pring->ring_lock, iflag);
James Smart0f65ff62010-02-26 14:14:23 -05001019 sglq->state = SGL_FREED;
James Smart19ca7602010-11-20 23:11:55 -05001020 sglq->ndlp = NULL;
James Smartfedd3b72011-02-16 12:39:24 -05001021 list_add_tail(&sglq->list,
1022 &phba->sli4_hba.lpfc_sgl_list);
James Smartdafe8ce2014-09-03 12:56:40 -04001023 spin_unlock_irqrestore(&pring->ring_lock, iflag);
James Smart2a9bf3d2010-06-07 15:24:45 -04001024
1025 /* Check if TXQ queue needs to be serviced */
James Smart0e9bb8d2013-03-01 16:35:12 -05001026 if (!list_empty(&pring->txq))
James Smart2a9bf3d2010-06-07 15:24:45 -04001027 lpfc_worker_wake_up(phba);
James Smart0f65ff62010-02-26 14:14:23 -05001028 }
James Smart4f774512009-05-22 14:52:35 -04001029 }
1030
1031
1032 /*
1033 * Clean all volatile data fields, preserve iotag and node struct.
1034 */
1035 memset((char *)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
James Smart6d368e52011-05-24 11:44:12 -04001036 iocbq->sli4_lxritag = NO_XRI;
James Smart4f774512009-05-22 14:52:35 -04001037 iocbq->sli4_xritag = NO_XRI;
1038 list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
1039}
1040
James Smart2a9bf3d2010-06-07 15:24:45 -04001041
James Smart4f774512009-05-22 14:52:35 -04001042/**
James Smart3772a992009-05-22 14:50:54 -04001043 * __lpfc_sli_release_iocbq_s3 - Release iocb to the iocb pool
1044 * @phba: Pointer to HBA context object.
1045 * @iocbq: Pointer to driver iocb object.
1046 *
1047 * This function is called with hbalock held to release driver
1048 * iocb object to the iocb pool. The iotag in the iocb object
1049 * does not change for each use of the iocb object. This function
1050 * clears all other fields of the iocb object when it is freed.
1051 **/
1052static void
1053__lpfc_sli_release_iocbq_s3(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1054{
1055 size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
1056
James Smart0e9bb8d2013-03-01 16:35:12 -05001057
1058 /*
James Smart3772a992009-05-22 14:50:54 -04001059 * Clean all volatile data fields, preserve iotag and node struct.
1060 */
1061 memset((char*)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
1062 iocbq->sli4_xritag = NO_XRI;
1063 list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
1064}
1065
1066/**
James Smart3621a712009-04-06 18:47:14 -04001067 * __lpfc_sli_release_iocbq - Release iocb to the iocb pool
James Smarte59058c2008-08-24 21:49:00 -04001068 * @phba: Pointer to HBA context object.
1069 * @iocbq: Pointer to driver iocb object.
1070 *
1071 * This function is called with hbalock held to release driver
1072 * iocb object to the iocb pool. The iotag in the iocb object
1073 * does not change for each use of the iocb object. This function
1074 * clears all other fields of the iocb object when it is freed.
1075 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01001076static void
James Smart2e0fef82007-06-17 19:56:36 -05001077__lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1078{
James Smart3772a992009-05-22 14:50:54 -04001079 phba->__lpfc_sli_release_iocbq(phba, iocbq);
James Smart2a9bf3d2010-06-07 15:24:45 -04001080 phba->iocb_cnt--;
James Bottomley604a3e32005-10-29 10:28:33 -05001081}
1082
James Smarte59058c2008-08-24 21:49:00 -04001083/**
James Smart3621a712009-04-06 18:47:14 -04001084 * lpfc_sli_release_iocbq - Release iocb to the iocb pool
James Smarte59058c2008-08-24 21:49:00 -04001085 * @phba: Pointer to HBA context object.
1086 * @iocbq: Pointer to driver iocb object.
1087 *
1088 * This function is called with no lock held to release the iocb to
1089 * iocb pool.
1090 **/
James Smart2e0fef82007-06-17 19:56:36 -05001091void
1092lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1093{
1094 unsigned long iflags;
1095
1096 /*
1097 * Clean all volatile data fields, preserve iotag and node struct.
1098 */
1099 spin_lock_irqsave(&phba->hbalock, iflags);
1100 __lpfc_sli_release_iocbq(phba, iocbq);
1101 spin_unlock_irqrestore(&phba->hbalock, iflags);
1102}
1103
James Smarte59058c2008-08-24 21:49:00 -04001104/**
James Smarta257bf92009-04-06 18:48:10 -04001105 * lpfc_sli_cancel_iocbs - Cancel all iocbs from a list.
1106 * @phba: Pointer to HBA context object.
1107 * @iocblist: List of IOCBs.
1108 * @ulpstatus: ULP status in IOCB command field.
1109 * @ulpWord4: ULP word-4 in IOCB command field.
1110 *
1111 * This function is called with a list of IOCBs to cancel. It cancels the IOCB
1112 * on the list by invoking the complete callback function associated with the
1113 * IOCB with the provided @ulpstatus and @ulpword4 set to the IOCB commond
1114 * fields.
1115 **/
1116void
1117lpfc_sli_cancel_iocbs(struct lpfc_hba *phba, struct list_head *iocblist,
1118 uint32_t ulpstatus, uint32_t ulpWord4)
1119{
1120 struct lpfc_iocbq *piocb;
1121
1122 while (!list_empty(iocblist)) {
1123 list_remove_head(iocblist, piocb, struct lpfc_iocbq, list);
James Smarta257bf92009-04-06 18:48:10 -04001124 if (!piocb->iocb_cmpl)
1125 lpfc_sli_release_iocbq(phba, piocb);
1126 else {
1127 piocb->iocb.ulpStatus = ulpstatus;
1128 piocb->iocb.un.ulpWord[4] = ulpWord4;
1129 (piocb->iocb_cmpl) (phba, piocb, piocb);
1130 }
1131 }
1132 return;
1133}
1134
1135/**
James Smart3621a712009-04-06 18:47:14 -04001136 * lpfc_sli_iocb_cmd_type - Get the iocb type
1137 * @iocb_cmnd: iocb command code.
James Smarte59058c2008-08-24 21:49:00 -04001138 *
1139 * This function is called by ring event handler function to get the iocb type.
1140 * This function translates the iocb command to an iocb command type used to
1141 * decide the final disposition of each completed IOCB.
1142 * The function returns
1143 * LPFC_UNKNOWN_IOCB if it is an unsupported iocb
1144 * LPFC_SOL_IOCB if it is a solicited iocb completion
1145 * LPFC_ABORT_IOCB if it is an abort iocb
1146 * LPFC_UNSOL_IOCB if it is an unsolicited iocb
1147 *
1148 * The caller is not required to hold any lock.
1149 **/
dea31012005-04-17 16:05:31 -05001150static lpfc_iocb_type
1151lpfc_sli_iocb_cmd_type(uint8_t iocb_cmnd)
1152{
1153 lpfc_iocb_type type = LPFC_UNKNOWN_IOCB;
1154
1155 if (iocb_cmnd > CMD_MAX_IOCB_CMD)
1156 return 0;
1157
1158 switch (iocb_cmnd) {
1159 case CMD_XMIT_SEQUENCE_CR:
1160 case CMD_XMIT_SEQUENCE_CX:
1161 case CMD_XMIT_BCAST_CN:
1162 case CMD_XMIT_BCAST_CX:
1163 case CMD_ELS_REQUEST_CR:
1164 case CMD_ELS_REQUEST_CX:
1165 case CMD_CREATE_XRI_CR:
1166 case CMD_CREATE_XRI_CX:
1167 case CMD_GET_RPI_CN:
1168 case CMD_XMIT_ELS_RSP_CX:
1169 case CMD_GET_RPI_CR:
1170 case CMD_FCP_IWRITE_CR:
1171 case CMD_FCP_IWRITE_CX:
1172 case CMD_FCP_IREAD_CR:
1173 case CMD_FCP_IREAD_CX:
1174 case CMD_FCP_ICMND_CR:
1175 case CMD_FCP_ICMND_CX:
James Smartf5603512006-12-02 13:35:43 -05001176 case CMD_FCP_TSEND_CX:
1177 case CMD_FCP_TRSP_CX:
1178 case CMD_FCP_TRECEIVE_CX:
1179 case CMD_FCP_AUTO_TRSP_CX:
dea31012005-04-17 16:05:31 -05001180 case CMD_ADAPTER_MSG:
1181 case CMD_ADAPTER_DUMP:
1182 case CMD_XMIT_SEQUENCE64_CR:
1183 case CMD_XMIT_SEQUENCE64_CX:
1184 case CMD_XMIT_BCAST64_CN:
1185 case CMD_XMIT_BCAST64_CX:
1186 case CMD_ELS_REQUEST64_CR:
1187 case CMD_ELS_REQUEST64_CX:
1188 case CMD_FCP_IWRITE64_CR:
1189 case CMD_FCP_IWRITE64_CX:
1190 case CMD_FCP_IREAD64_CR:
1191 case CMD_FCP_IREAD64_CX:
1192 case CMD_FCP_ICMND64_CR:
1193 case CMD_FCP_ICMND64_CX:
James Smartf5603512006-12-02 13:35:43 -05001194 case CMD_FCP_TSEND64_CX:
1195 case CMD_FCP_TRSP64_CX:
1196 case CMD_FCP_TRECEIVE64_CX:
dea31012005-04-17 16:05:31 -05001197 case CMD_GEN_REQUEST64_CR:
1198 case CMD_GEN_REQUEST64_CX:
1199 case CMD_XMIT_ELS_RSP64_CX:
James Smartda0436e2009-05-22 14:51:39 -04001200 case DSSCMD_IWRITE64_CR:
1201 case DSSCMD_IWRITE64_CX:
1202 case DSSCMD_IREAD64_CR:
1203 case DSSCMD_IREAD64_CX:
dea31012005-04-17 16:05:31 -05001204 type = LPFC_SOL_IOCB;
1205 break;
1206 case CMD_ABORT_XRI_CN:
1207 case CMD_ABORT_XRI_CX:
1208 case CMD_CLOSE_XRI_CN:
1209 case CMD_CLOSE_XRI_CX:
1210 case CMD_XRI_ABORTED_CX:
1211 case CMD_ABORT_MXRI64_CN:
James Smart6669f9b2009-10-02 15:16:45 -04001212 case CMD_XMIT_BLS_RSP64_CX:
dea31012005-04-17 16:05:31 -05001213 type = LPFC_ABORT_IOCB;
1214 break;
1215 case CMD_RCV_SEQUENCE_CX:
1216 case CMD_RCV_ELS_REQ_CX:
1217 case CMD_RCV_SEQUENCE64_CX:
1218 case CMD_RCV_ELS_REQ64_CX:
James Smart57127f12007-10-27 13:37:05 -04001219 case CMD_ASYNC_STATUS:
James Smarted957682007-06-17 19:56:37 -05001220 case CMD_IOCB_RCV_SEQ64_CX:
1221 case CMD_IOCB_RCV_ELS64_CX:
1222 case CMD_IOCB_RCV_CONT64_CX:
James Smart3163f722008-02-08 18:50:25 -05001223 case CMD_IOCB_RET_XRI64_CX:
dea31012005-04-17 16:05:31 -05001224 type = LPFC_UNSOL_IOCB;
1225 break;
James Smart3163f722008-02-08 18:50:25 -05001226 case CMD_IOCB_XMIT_MSEQ64_CR:
1227 case CMD_IOCB_XMIT_MSEQ64_CX:
1228 case CMD_IOCB_RCV_SEQ_LIST64_CX:
1229 case CMD_IOCB_RCV_ELS_LIST64_CX:
1230 case CMD_IOCB_CLOSE_EXTENDED_CN:
1231 case CMD_IOCB_ABORT_EXTENDED_CN:
1232 case CMD_IOCB_RET_HBQE64_CN:
1233 case CMD_IOCB_FCP_IBIDIR64_CR:
1234 case CMD_IOCB_FCP_IBIDIR64_CX:
1235 case CMD_IOCB_FCP_ITASKMGT64_CX:
1236 case CMD_IOCB_LOGENTRY_CN:
1237 case CMD_IOCB_LOGENTRY_ASYNC_CN:
1238 printk("%s - Unhandled SLI-3 Command x%x\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07001239 __func__, iocb_cmnd);
James Smart3163f722008-02-08 18:50:25 -05001240 type = LPFC_UNKNOWN_IOCB;
1241 break;
dea31012005-04-17 16:05:31 -05001242 default:
1243 type = LPFC_UNKNOWN_IOCB;
1244 break;
1245 }
1246
1247 return type;
1248}
1249
James Smarte59058c2008-08-24 21:49:00 -04001250/**
James Smart3621a712009-04-06 18:47:14 -04001251 * lpfc_sli_ring_map - Issue config_ring mbox for all rings
James Smarte59058c2008-08-24 21:49:00 -04001252 * @phba: Pointer to HBA context object.
1253 *
1254 * This function is called from SLI initialization code
1255 * to configure every ring of the HBA's SLI interface. The
1256 * caller is not required to hold any lock. This function issues
1257 * a config_ring mailbox command for each ring.
1258 * This function returns zero if successful else returns a negative
1259 * error code.
1260 **/
dea31012005-04-17 16:05:31 -05001261static int
James Smarted957682007-06-17 19:56:37 -05001262lpfc_sli_ring_map(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05001263{
1264 struct lpfc_sli *psli = &phba->sli;
James Smarted957682007-06-17 19:56:37 -05001265 LPFC_MBOXQ_t *pmb;
1266 MAILBOX_t *pmbox;
1267 int i, rc, ret = 0;
dea31012005-04-17 16:05:31 -05001268
James Smarted957682007-06-17 19:56:37 -05001269 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
1270 if (!pmb)
1271 return -ENOMEM;
James Smart04c68492009-05-22 14:52:52 -04001272 pmbox = &pmb->u.mb;
James Smarted957682007-06-17 19:56:37 -05001273 phba->link_state = LPFC_INIT_MBX_CMDS;
dea31012005-04-17 16:05:31 -05001274 for (i = 0; i < psli->num_rings; i++) {
dea31012005-04-17 16:05:31 -05001275 lpfc_config_ring(phba, i, pmb);
1276 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
1277 if (rc != MBX_SUCCESS) {
James Smart92d7f7b2007-06-17 19:56:38 -05001278 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04001279 "0446 Adapter failed to init (%d), "
dea31012005-04-17 16:05:31 -05001280 "mbxCmd x%x CFG_RING, mbxStatus x%x, "
1281 "ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -04001282 rc, pmbox->mbxCommand,
1283 pmbox->mbxStatus, i);
James Smart2e0fef82007-06-17 19:56:36 -05001284 phba->link_state = LPFC_HBA_ERROR;
James Smarted957682007-06-17 19:56:37 -05001285 ret = -ENXIO;
1286 break;
dea31012005-04-17 16:05:31 -05001287 }
1288 }
James Smarted957682007-06-17 19:56:37 -05001289 mempool_free(pmb, phba->mbox_mem_pool);
1290 return ret;
dea31012005-04-17 16:05:31 -05001291}
1292
James Smarte59058c2008-08-24 21:49:00 -04001293/**
James Smart3621a712009-04-06 18:47:14 -04001294 * lpfc_sli_ringtxcmpl_put - Adds new iocb to the txcmplq
James Smarte59058c2008-08-24 21:49:00 -04001295 * @phba: Pointer to HBA context object.
1296 * @pring: Pointer to driver SLI ring object.
1297 * @piocb: Pointer to the driver iocb object.
1298 *
1299 * This function is called with hbalock held. The function adds the
1300 * new iocb to txcmplq of the given ring. This function always returns
1301 * 0. If this function is called for ELS ring, this function checks if
1302 * there is a vport associated with the ELS command. This function also
1303 * starts els_tmofunc timer if this is an ELS command.
1304 **/
dea31012005-04-17 16:05:31 -05001305static int
James Smart2e0fef82007-06-17 19:56:36 -05001306lpfc_sli_ringtxcmpl_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
1307 struct lpfc_iocbq *piocb)
dea31012005-04-17 16:05:31 -05001308{
dea31012005-04-17 16:05:31 -05001309 list_add_tail(&piocb->list, &pring->txcmplq);
James Smart4f2e66c2012-05-09 21:17:07 -04001310 piocb->iocb_flag |= LPFC_IO_ON_TXCMPLQ;
James Smart2a9bf3d2010-06-07 15:24:45 -04001311
James Smart92d7f7b2007-06-17 19:56:38 -05001312 if ((unlikely(pring->ringno == LPFC_ELS_RING)) &&
1313 (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
James Smart06918ac2014-02-20 09:57:57 -05001314 (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN) &&
1315 (!(piocb->vport->load_flag & FC_UNLOADING))) {
James Smart92d7f7b2007-06-17 19:56:38 -05001316 if (!piocb->vport)
1317 BUG();
1318 else
1319 mod_timer(&piocb->vport->els_tmofunc,
James Smart256ec0d2013-04-17 20:14:58 -04001320 jiffies +
1321 msecs_to_jiffies(1000 * (phba->fc_ratov << 1)));
James Smart92d7f7b2007-06-17 19:56:38 -05001322 }
1323
dea31012005-04-17 16:05:31 -05001324
James Smart2e0fef82007-06-17 19:56:36 -05001325 return 0;
dea31012005-04-17 16:05:31 -05001326}
1327
James Smarte59058c2008-08-24 21:49:00 -04001328/**
James Smart3621a712009-04-06 18:47:14 -04001329 * lpfc_sli_ringtx_get - Get first element of the txq
James Smarte59058c2008-08-24 21:49:00 -04001330 * @phba: Pointer to HBA context object.
1331 * @pring: Pointer to driver SLI ring object.
1332 *
1333 * This function is called with hbalock held to get next
1334 * iocb in txq of the given ring. If there is any iocb in
1335 * the txq, the function returns first iocb in the list after
1336 * removing the iocb from the list, else it returns NULL.
1337 **/
James Smart2a9bf3d2010-06-07 15:24:45 -04001338struct lpfc_iocbq *
James Smart2e0fef82007-06-17 19:56:36 -05001339lpfc_sli_ringtx_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea31012005-04-17 16:05:31 -05001340{
dea31012005-04-17 16:05:31 -05001341 struct lpfc_iocbq *cmd_iocb;
1342
James Smart858c9f62007-06-17 19:56:39 -05001343 list_remove_head((&pring->txq), cmd_iocb, struct lpfc_iocbq, list);
James Smart2e0fef82007-06-17 19:56:36 -05001344 return cmd_iocb;
dea31012005-04-17 16:05:31 -05001345}
1346
James Smarte59058c2008-08-24 21:49:00 -04001347/**
James Smart3621a712009-04-06 18:47:14 -04001348 * lpfc_sli_next_iocb_slot - Get next iocb slot in the ring
James Smarte59058c2008-08-24 21:49:00 -04001349 * @phba: Pointer to HBA context object.
1350 * @pring: Pointer to driver SLI ring object.
1351 *
1352 * This function is called with hbalock held and the caller must post the
1353 * iocb without releasing the lock. If the caller releases the lock,
1354 * iocb slot returned by the function is not guaranteed to be available.
1355 * The function returns pointer to the next available iocb slot if there
1356 * is available slot in the ring, else it returns NULL.
1357 * If the get index of the ring is ahead of the put index, the function
1358 * will post an error attention event to the worker thread to take the
1359 * HBA to offline state.
1360 **/
dea31012005-04-17 16:05:31 -05001361static IOCB_t *
1362lpfc_sli_next_iocb_slot (struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
1363{
James Smart34b02dc2008-08-24 21:49:55 -04001364 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
James Smart7e56aa22012-08-03 12:35:34 -04001365 uint32_t max_cmd_idx = pring->sli.sli3.numCiocb;
1366 if ((pring->sli.sli3.next_cmdidx == pring->sli.sli3.cmdidx) &&
1367 (++pring->sli.sli3.next_cmdidx >= max_cmd_idx))
1368 pring->sli.sli3.next_cmdidx = 0;
dea31012005-04-17 16:05:31 -05001369
James Smart7e56aa22012-08-03 12:35:34 -04001370 if (unlikely(pring->sli.sli3.local_getidx ==
1371 pring->sli.sli3.next_cmdidx)) {
dea31012005-04-17 16:05:31 -05001372
James Smart7e56aa22012-08-03 12:35:34 -04001373 pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
dea31012005-04-17 16:05:31 -05001374
James Smart7e56aa22012-08-03 12:35:34 -04001375 if (unlikely(pring->sli.sli3.local_getidx >= max_cmd_idx)) {
dea31012005-04-17 16:05:31 -05001376 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04001377 "0315 Ring %d issue: portCmdGet %d "
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02001378 "is bigger than cmd ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -04001379 pring->ringno,
James Smart7e56aa22012-08-03 12:35:34 -04001380 pring->sli.sli3.local_getidx,
1381 max_cmd_idx);
dea31012005-04-17 16:05:31 -05001382
James Smart2e0fef82007-06-17 19:56:36 -05001383 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05001384 /*
1385 * All error attention handlers are posted to
1386 * worker thread
1387 */
1388 phba->work_ha |= HA_ERATT;
1389 phba->work_hs = HS_FFER3;
James Smart92d7f7b2007-06-17 19:56:38 -05001390
James Smart5e9d9b82008-06-14 22:52:53 -04001391 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -05001392
1393 return NULL;
1394 }
1395
James Smart7e56aa22012-08-03 12:35:34 -04001396 if (pring->sli.sli3.local_getidx == pring->sli.sli3.next_cmdidx)
dea31012005-04-17 16:05:31 -05001397 return NULL;
1398 }
1399
James Smarted957682007-06-17 19:56:37 -05001400 return lpfc_cmd_iocb(phba, pring);
dea31012005-04-17 16:05:31 -05001401}
1402
James Smarte59058c2008-08-24 21:49:00 -04001403/**
James Smart3621a712009-04-06 18:47:14 -04001404 * lpfc_sli_next_iotag - Get an iotag for the iocb
James Smarte59058c2008-08-24 21:49:00 -04001405 * @phba: Pointer to HBA context object.
1406 * @iocbq: Pointer to driver iocb object.
1407 *
1408 * This function gets an iotag for the iocb. If there is no unused iotag and
1409 * the iocbq_lookup_len < 0xffff, this function allocates a bigger iotag_lookup
1410 * array and assigns a new iotag.
1411 * The function returns the allocated iotag if successful, else returns zero.
1412 * Zero is not a valid iotag.
1413 * The caller is not required to hold any lock.
1414 **/
James Bottomley604a3e32005-10-29 10:28:33 -05001415uint16_t
James Smart2e0fef82007-06-17 19:56:36 -05001416lpfc_sli_next_iotag(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
dea31012005-04-17 16:05:31 -05001417{
James Smart2e0fef82007-06-17 19:56:36 -05001418 struct lpfc_iocbq **new_arr;
1419 struct lpfc_iocbq **old_arr;
James Bottomley604a3e32005-10-29 10:28:33 -05001420 size_t new_len;
1421 struct lpfc_sli *psli = &phba->sli;
1422 uint16_t iotag;
dea31012005-04-17 16:05:31 -05001423
James Smart2e0fef82007-06-17 19:56:36 -05001424 spin_lock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001425 iotag = psli->last_iotag;
1426 if(++iotag < psli->iocbq_lookup_len) {
1427 psli->last_iotag = iotag;
1428 psli->iocbq_lookup[iotag] = iocbq;
James Smart2e0fef82007-06-17 19:56:36 -05001429 spin_unlock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001430 iocbq->iotag = iotag;
1431 return iotag;
James Smart2e0fef82007-06-17 19:56:36 -05001432 } else if (psli->iocbq_lookup_len < (0xffff
James Bottomley604a3e32005-10-29 10:28:33 -05001433 - LPFC_IOCBQ_LOOKUP_INCREMENT)) {
1434 new_len = psli->iocbq_lookup_len + LPFC_IOCBQ_LOOKUP_INCREMENT;
James Smart2e0fef82007-06-17 19:56:36 -05001435 spin_unlock_irq(&phba->hbalock);
1436 new_arr = kzalloc(new_len * sizeof (struct lpfc_iocbq *),
James Bottomley604a3e32005-10-29 10:28:33 -05001437 GFP_KERNEL);
1438 if (new_arr) {
James Smart2e0fef82007-06-17 19:56:36 -05001439 spin_lock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001440 old_arr = psli->iocbq_lookup;
1441 if (new_len <= psli->iocbq_lookup_len) {
1442 /* highly unprobable case */
1443 kfree(new_arr);
1444 iotag = psli->last_iotag;
1445 if(++iotag < psli->iocbq_lookup_len) {
1446 psli->last_iotag = iotag;
1447 psli->iocbq_lookup[iotag] = iocbq;
James Smart2e0fef82007-06-17 19:56:36 -05001448 spin_unlock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001449 iocbq->iotag = iotag;
1450 return iotag;
1451 }
James Smart2e0fef82007-06-17 19:56:36 -05001452 spin_unlock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001453 return 0;
1454 }
1455 if (psli->iocbq_lookup)
1456 memcpy(new_arr, old_arr,
1457 ((psli->last_iotag + 1) *
James Smart311464e2007-08-02 11:10:37 -04001458 sizeof (struct lpfc_iocbq *)));
James Bottomley604a3e32005-10-29 10:28:33 -05001459 psli->iocbq_lookup = new_arr;
1460 psli->iocbq_lookup_len = new_len;
1461 psli->last_iotag = iotag;
1462 psli->iocbq_lookup[iotag] = iocbq;
James Smart2e0fef82007-06-17 19:56:36 -05001463 spin_unlock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001464 iocbq->iotag = iotag;
1465 kfree(old_arr);
1466 return iotag;
1467 }
James Smart8f6d98d2006-08-01 07:34:00 -04001468 } else
James Smart2e0fef82007-06-17 19:56:36 -05001469 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001470
James Smartbc739052010-08-04 16:11:18 -04001471 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04001472 "0318 Failed to allocate IOTAG.last IOTAG is %d\n",
1473 psli->last_iotag);
dea31012005-04-17 16:05:31 -05001474
James Bottomley604a3e32005-10-29 10:28:33 -05001475 return 0;
dea31012005-04-17 16:05:31 -05001476}
1477
James Smarte59058c2008-08-24 21:49:00 -04001478/**
James Smart3621a712009-04-06 18:47:14 -04001479 * lpfc_sli_submit_iocb - Submit an iocb to the firmware
James Smarte59058c2008-08-24 21:49:00 -04001480 * @phba: Pointer to HBA context object.
1481 * @pring: Pointer to driver SLI ring object.
1482 * @iocb: Pointer to iocb slot in the ring.
1483 * @nextiocb: Pointer to driver iocb object which need to be
1484 * posted to firmware.
1485 *
1486 * This function is called with hbalock held to post a new iocb to
1487 * the firmware. This function copies the new iocb to ring iocb slot and
1488 * updates the ring pointers. It adds the new iocb to txcmplq if there is
1489 * a completion call back for this iocb else the function will free the
1490 * iocb object.
1491 **/
dea31012005-04-17 16:05:31 -05001492static void
1493lpfc_sli_submit_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
1494 IOCB_t *iocb, struct lpfc_iocbq *nextiocb)
1495{
1496 /*
James Bottomley604a3e32005-10-29 10:28:33 -05001497 * Set up an iotag
dea31012005-04-17 16:05:31 -05001498 */
James Bottomley604a3e32005-10-29 10:28:33 -05001499 nextiocb->iocb.ulpIoTag = (nextiocb->iocb_cmpl) ? nextiocb->iotag : 0;
dea31012005-04-17 16:05:31 -05001500
James Smarte2a0a9d2008-12-04 22:40:02 -05001501
James Smarta58cbd52007-08-02 11:09:43 -04001502 if (pring->ringno == LPFC_ELS_RING) {
1503 lpfc_debugfs_slow_ring_trc(phba,
1504 "IOCB cmd ring: wd4:x%08x wd6:x%08x wd7:x%08x",
1505 *(((uint32_t *) &nextiocb->iocb) + 4),
1506 *(((uint32_t *) &nextiocb->iocb) + 6),
1507 *(((uint32_t *) &nextiocb->iocb) + 7));
1508 }
1509
dea31012005-04-17 16:05:31 -05001510 /*
1511 * Issue iocb command to adapter
1512 */
James Smart92d7f7b2007-06-17 19:56:38 -05001513 lpfc_sli_pcimem_bcopy(&nextiocb->iocb, iocb, phba->iocb_cmd_size);
dea31012005-04-17 16:05:31 -05001514 wmb();
1515 pring->stats.iocb_cmd++;
1516
1517 /*
1518 * If there is no completion routine to call, we can release the
1519 * IOCB buffer back right now. For IOCBs, like QUE_RING_BUF,
1520 * that have no rsp ring completion, iocb_cmpl MUST be NULL.
1521 */
1522 if (nextiocb->iocb_cmpl)
1523 lpfc_sli_ringtxcmpl_put(phba, pring, nextiocb);
James Bottomley604a3e32005-10-29 10:28:33 -05001524 else
James Smart2e0fef82007-06-17 19:56:36 -05001525 __lpfc_sli_release_iocbq(phba, nextiocb);
dea31012005-04-17 16:05:31 -05001526
1527 /*
1528 * Let the HBA know what IOCB slot will be the next one the
1529 * driver will put a command into.
1530 */
James Smart7e56aa22012-08-03 12:35:34 -04001531 pring->sli.sli3.cmdidx = pring->sli.sli3.next_cmdidx;
1532 writel(pring->sli.sli3.cmdidx, &phba->host_gp[pring->ringno].cmdPutInx);
dea31012005-04-17 16:05:31 -05001533}
1534
James Smarte59058c2008-08-24 21:49:00 -04001535/**
James Smart3621a712009-04-06 18:47:14 -04001536 * lpfc_sli_update_full_ring - Update the chip attention register
James Smarte59058c2008-08-24 21:49:00 -04001537 * @phba: Pointer to HBA context object.
1538 * @pring: Pointer to driver SLI ring object.
1539 *
1540 * The caller is not required to hold any lock for calling this function.
1541 * This function updates the chip attention bits for the ring to inform firmware
1542 * that there are pending work to be done for this ring and requests an
1543 * interrupt when there is space available in the ring. This function is
1544 * called when the driver is unable to post more iocbs to the ring due
1545 * to unavailability of space in the ring.
1546 **/
dea31012005-04-17 16:05:31 -05001547static void
James Smart2e0fef82007-06-17 19:56:36 -05001548lpfc_sli_update_full_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea31012005-04-17 16:05:31 -05001549{
1550 int ringno = pring->ringno;
1551
1552 pring->flag |= LPFC_CALL_RING_AVAILABLE;
1553
1554 wmb();
1555
1556 /*
1557 * Set ring 'ringno' to SET R0CE_REQ in Chip Att register.
1558 * The HBA will tell us when an IOCB entry is available.
1559 */
1560 writel((CA_R0ATT|CA_R0CE_REQ) << (ringno*4), phba->CAregaddr);
1561 readl(phba->CAregaddr); /* flush */
1562
1563 pring->stats.iocb_cmd_full++;
1564}
1565
James Smarte59058c2008-08-24 21:49:00 -04001566/**
James Smart3621a712009-04-06 18:47:14 -04001567 * lpfc_sli_update_ring - Update chip attention register
James Smarte59058c2008-08-24 21:49:00 -04001568 * @phba: Pointer to HBA context object.
1569 * @pring: Pointer to driver SLI ring object.
1570 *
1571 * This function updates the chip attention register bit for the
1572 * given ring to inform HBA that there is more work to be done
1573 * in this ring. The caller is not required to hold any lock.
1574 **/
dea31012005-04-17 16:05:31 -05001575static void
James Smart2e0fef82007-06-17 19:56:36 -05001576lpfc_sli_update_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea31012005-04-17 16:05:31 -05001577{
1578 int ringno = pring->ringno;
1579
1580 /*
1581 * Tell the HBA that there is work to do in this ring.
1582 */
James Smart34b02dc2008-08-24 21:49:55 -04001583 if (!(phba->sli3_options & LPFC_SLI3_CRP_ENABLED)) {
1584 wmb();
1585 writel(CA_R0ATT << (ringno * 4), phba->CAregaddr);
1586 readl(phba->CAregaddr); /* flush */
1587 }
dea31012005-04-17 16:05:31 -05001588}
1589
James Smarte59058c2008-08-24 21:49:00 -04001590/**
James Smart3621a712009-04-06 18:47:14 -04001591 * lpfc_sli_resume_iocb - Process iocbs in the txq
James Smarte59058c2008-08-24 21:49:00 -04001592 * @phba: Pointer to HBA context object.
1593 * @pring: Pointer to driver SLI ring object.
1594 *
1595 * This function is called with hbalock held to post pending iocbs
1596 * in the txq to the firmware. This function is called when driver
1597 * detects space available in the ring.
1598 **/
dea31012005-04-17 16:05:31 -05001599static void
James Smart2e0fef82007-06-17 19:56:36 -05001600lpfc_sli_resume_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea31012005-04-17 16:05:31 -05001601{
1602 IOCB_t *iocb;
1603 struct lpfc_iocbq *nextiocb;
1604
1605 /*
1606 * Check to see if:
1607 * (a) there is anything on the txq to send
1608 * (b) link is up
1609 * (c) link attention events can be processed (fcp ring only)
1610 * (d) IOCB processing is not blocked by the outstanding mbox command.
1611 */
James Smart0e9bb8d2013-03-01 16:35:12 -05001612
1613 if (lpfc_is_link_up(phba) &&
1614 (!list_empty(&pring->txq)) &&
dea31012005-04-17 16:05:31 -05001615 (pring->ringno != phba->sli.fcp_ring ||
James Smart0b727fe2007-10-27 13:37:25 -04001616 phba->sli.sli_flag & LPFC_PROCESS_LA)) {
dea31012005-04-17 16:05:31 -05001617
1618 while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
1619 (nextiocb = lpfc_sli_ringtx_get(phba, pring)))
1620 lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
1621
1622 if (iocb)
1623 lpfc_sli_update_ring(phba, pring);
1624 else
1625 lpfc_sli_update_full_ring(phba, pring);
1626 }
1627
1628 return;
1629}
1630
James Smarte59058c2008-08-24 21:49:00 -04001631/**
James Smart3621a712009-04-06 18:47:14 -04001632 * lpfc_sli_next_hbq_slot - Get next hbq entry for the HBQ
James Smarte59058c2008-08-24 21:49:00 -04001633 * @phba: Pointer to HBA context object.
1634 * @hbqno: HBQ number.
1635 *
1636 * This function is called with hbalock held to get the next
1637 * available slot for the given HBQ. If there is free slot
1638 * available for the HBQ it will return pointer to the next available
1639 * HBQ entry else it will return NULL.
1640 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01001641static struct lpfc_hbq_entry *
James Smarted957682007-06-17 19:56:37 -05001642lpfc_sli_next_hbq_slot(struct lpfc_hba *phba, uint32_t hbqno)
1643{
1644 struct hbq_s *hbqp = &phba->hbqs[hbqno];
1645
1646 if (hbqp->next_hbqPutIdx == hbqp->hbqPutIdx &&
1647 ++hbqp->next_hbqPutIdx >= hbqp->entry_count)
1648 hbqp->next_hbqPutIdx = 0;
1649
1650 if (unlikely(hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)) {
James Smart92d7f7b2007-06-17 19:56:38 -05001651 uint32_t raw_index = phba->hbq_get[hbqno];
James Smarted957682007-06-17 19:56:37 -05001652 uint32_t getidx = le32_to_cpu(raw_index);
1653
1654 hbqp->local_hbqGetIdx = getidx;
1655
1656 if (unlikely(hbqp->local_hbqGetIdx >= hbqp->entry_count)) {
1657 lpfc_printf_log(phba, KERN_ERR,
James Smart92d7f7b2007-06-17 19:56:38 -05001658 LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04001659 "1802 HBQ %d: local_hbqGetIdx "
James Smarted957682007-06-17 19:56:37 -05001660 "%u is > than hbqp->entry_count %u\n",
James Smarte8b62012007-08-02 11:10:09 -04001661 hbqno, hbqp->local_hbqGetIdx,
James Smarted957682007-06-17 19:56:37 -05001662 hbqp->entry_count);
1663
1664 phba->link_state = LPFC_HBA_ERROR;
1665 return NULL;
1666 }
1667
1668 if (hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)
1669 return NULL;
1670 }
1671
James Smart51ef4c22007-08-02 11:10:31 -04001672 return (struct lpfc_hbq_entry *) phba->hbqs[hbqno].hbq_virt +
1673 hbqp->hbqPutIdx;
James Smarted957682007-06-17 19:56:37 -05001674}
1675
James Smarte59058c2008-08-24 21:49:00 -04001676/**
James Smart3621a712009-04-06 18:47:14 -04001677 * lpfc_sli_hbqbuf_free_all - Free all the hbq buffers
James Smarte59058c2008-08-24 21:49:00 -04001678 * @phba: Pointer to HBA context object.
1679 *
1680 * This function is called with no lock held to free all the
1681 * hbq buffers while uninitializing the SLI interface. It also
1682 * frees the HBQ buffers returned by the firmware but not yet
1683 * processed by the upper layers.
1684 **/
James Smarted957682007-06-17 19:56:37 -05001685void
1686lpfc_sli_hbqbuf_free_all(struct lpfc_hba *phba)
1687{
James Smart92d7f7b2007-06-17 19:56:38 -05001688 struct lpfc_dmabuf *dmabuf, *next_dmabuf;
1689 struct hbq_dmabuf *hbq_buf;
James Smart3163f722008-02-08 18:50:25 -05001690 unsigned long flags;
James Smart51ef4c22007-08-02 11:10:31 -04001691 int i, hbq_count;
James Smart3163f722008-02-08 18:50:25 -05001692 uint32_t hbqno;
James Smarted957682007-06-17 19:56:37 -05001693
James Smart51ef4c22007-08-02 11:10:31 -04001694 hbq_count = lpfc_sli_hbq_count();
James Smarted957682007-06-17 19:56:37 -05001695 /* Return all memory used by all HBQs */
James Smart3163f722008-02-08 18:50:25 -05001696 spin_lock_irqsave(&phba->hbalock, flags);
James Smart51ef4c22007-08-02 11:10:31 -04001697 for (i = 0; i < hbq_count; ++i) {
1698 list_for_each_entry_safe(dmabuf, next_dmabuf,
1699 &phba->hbqs[i].hbq_buffer_list, list) {
1700 hbq_buf = container_of(dmabuf, struct hbq_dmabuf, dbuf);
1701 list_del(&hbq_buf->dbuf.list);
1702 (phba->hbqs[i].hbq_free_buffer)(phba, hbq_buf);
1703 }
James Smarta8adb832007-10-27 13:37:53 -04001704 phba->hbqs[i].buffer_count = 0;
James Smarted957682007-06-17 19:56:37 -05001705 }
James Smart3163f722008-02-08 18:50:25 -05001706 /* Return all HBQ buffer that are in-fly */
James Smart3772a992009-05-22 14:50:54 -04001707 list_for_each_entry_safe(dmabuf, next_dmabuf, &phba->rb_pend_list,
1708 list) {
James Smart3163f722008-02-08 18:50:25 -05001709 hbq_buf = container_of(dmabuf, struct hbq_dmabuf, dbuf);
1710 list_del(&hbq_buf->dbuf.list);
1711 if (hbq_buf->tag == -1) {
1712 (phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer)
1713 (phba, hbq_buf);
1714 } else {
1715 hbqno = hbq_buf->tag >> 16;
1716 if (hbqno >= LPFC_MAX_HBQS)
1717 (phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer)
1718 (phba, hbq_buf);
1719 else
1720 (phba->hbqs[hbqno].hbq_free_buffer)(phba,
1721 hbq_buf);
1722 }
1723 }
1724
1725 /* Mark the HBQs not in use */
1726 phba->hbq_in_use = 0;
1727 spin_unlock_irqrestore(&phba->hbalock, flags);
James Smarted957682007-06-17 19:56:37 -05001728}
1729
James Smarte59058c2008-08-24 21:49:00 -04001730/**
James Smart3621a712009-04-06 18:47:14 -04001731 * lpfc_sli_hbq_to_firmware - Post the hbq buffer to firmware
James Smarte59058c2008-08-24 21:49:00 -04001732 * @phba: Pointer to HBA context object.
1733 * @hbqno: HBQ number.
1734 * @hbq_buf: Pointer to HBQ buffer.
1735 *
1736 * This function is called with the hbalock held to post a
1737 * hbq buffer to the firmware. If the function finds an empty
1738 * slot in the HBQ, it will post the buffer. The function will return
1739 * pointer to the hbq entry if it successfully post the buffer
1740 * else it will return NULL.
1741 **/
James Smart3772a992009-05-22 14:50:54 -04001742static int
James Smarted957682007-06-17 19:56:37 -05001743lpfc_sli_hbq_to_firmware(struct lpfc_hba *phba, uint32_t hbqno,
James Smart92d7f7b2007-06-17 19:56:38 -05001744 struct hbq_dmabuf *hbq_buf)
James Smarted957682007-06-17 19:56:37 -05001745{
James Smart3772a992009-05-22 14:50:54 -04001746 return phba->lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buf);
1747}
1748
1749/**
1750 * lpfc_sli_hbq_to_firmware_s3 - Post the hbq buffer to SLI3 firmware
1751 * @phba: Pointer to HBA context object.
1752 * @hbqno: HBQ number.
1753 * @hbq_buf: Pointer to HBQ buffer.
1754 *
1755 * This function is called with the hbalock held to post a hbq buffer to the
1756 * firmware. If the function finds an empty slot in the HBQ, it will post the
1757 * buffer and place it on the hbq_buffer_list. The function will return zero if
1758 * it successfully post the buffer else it will return an error.
1759 **/
1760static int
1761lpfc_sli_hbq_to_firmware_s3(struct lpfc_hba *phba, uint32_t hbqno,
1762 struct hbq_dmabuf *hbq_buf)
1763{
James Smarted957682007-06-17 19:56:37 -05001764 struct lpfc_hbq_entry *hbqe;
James Smart92d7f7b2007-06-17 19:56:38 -05001765 dma_addr_t physaddr = hbq_buf->dbuf.phys;
James Smarted957682007-06-17 19:56:37 -05001766
1767 /* Get next HBQ entry slot to use */
1768 hbqe = lpfc_sli_next_hbq_slot(phba, hbqno);
1769 if (hbqe) {
1770 struct hbq_s *hbqp = &phba->hbqs[hbqno];
1771
James Smart92d7f7b2007-06-17 19:56:38 -05001772 hbqe->bde.addrHigh = le32_to_cpu(putPaddrHigh(physaddr));
1773 hbqe->bde.addrLow = le32_to_cpu(putPaddrLow(physaddr));
James Smart51ef4c22007-08-02 11:10:31 -04001774 hbqe->bde.tus.f.bdeSize = hbq_buf->size;
James Smarted957682007-06-17 19:56:37 -05001775 hbqe->bde.tus.f.bdeFlags = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05001776 hbqe->bde.tus.w = le32_to_cpu(hbqe->bde.tus.w);
1777 hbqe->buffer_tag = le32_to_cpu(hbq_buf->tag);
1778 /* Sync SLIM */
James Smarted957682007-06-17 19:56:37 -05001779 hbqp->hbqPutIdx = hbqp->next_hbqPutIdx;
1780 writel(hbqp->hbqPutIdx, phba->hbq_put + hbqno);
James Smart92d7f7b2007-06-17 19:56:38 -05001781 /* flush */
James Smarted957682007-06-17 19:56:37 -05001782 readl(phba->hbq_put + hbqno);
James Smart51ef4c22007-08-02 11:10:31 -04001783 list_add_tail(&hbq_buf->dbuf.list, &hbqp->hbq_buffer_list);
James Smart3772a992009-05-22 14:50:54 -04001784 return 0;
1785 } else
1786 return -ENOMEM;
James Smarted957682007-06-17 19:56:37 -05001787}
1788
James Smart4f774512009-05-22 14:52:35 -04001789/**
1790 * lpfc_sli_hbq_to_firmware_s4 - Post the hbq buffer to SLI4 firmware
1791 * @phba: Pointer to HBA context object.
1792 * @hbqno: HBQ number.
1793 * @hbq_buf: Pointer to HBQ buffer.
1794 *
1795 * This function is called with the hbalock held to post an RQE to the SLI4
1796 * firmware. If able to post the RQE to the RQ it will queue the hbq entry to
1797 * the hbq_buffer_list and return zero, otherwise it will return an error.
1798 **/
1799static int
1800lpfc_sli_hbq_to_firmware_s4(struct lpfc_hba *phba, uint32_t hbqno,
1801 struct hbq_dmabuf *hbq_buf)
1802{
1803 int rc;
1804 struct lpfc_rqe hrqe;
1805 struct lpfc_rqe drqe;
1806
1807 hrqe.address_lo = putPaddrLow(hbq_buf->hbuf.phys);
1808 hrqe.address_hi = putPaddrHigh(hbq_buf->hbuf.phys);
1809 drqe.address_lo = putPaddrLow(hbq_buf->dbuf.phys);
1810 drqe.address_hi = putPaddrHigh(hbq_buf->dbuf.phys);
1811 rc = lpfc_sli4_rq_put(phba->sli4_hba.hdr_rq, phba->sli4_hba.dat_rq,
1812 &hrqe, &drqe);
1813 if (rc < 0)
1814 return rc;
1815 hbq_buf->tag = rc;
1816 list_add_tail(&hbq_buf->dbuf.list, &phba->hbqs[hbqno].hbq_buffer_list);
1817 return 0;
1818}
1819
James Smarte59058c2008-08-24 21:49:00 -04001820/* HBQ for ELS and CT traffic. */
James Smart92d7f7b2007-06-17 19:56:38 -05001821static struct lpfc_hbq_init lpfc_els_hbq = {
1822 .rn = 1,
James Smartdef9c7a2009-12-21 17:02:28 -05001823 .entry_count = 256,
James Smart92d7f7b2007-06-17 19:56:38 -05001824 .mask_count = 0,
1825 .profile = 0,
James Smart51ef4c22007-08-02 11:10:31 -04001826 .ring_mask = (1 << LPFC_ELS_RING),
James Smart92d7f7b2007-06-17 19:56:38 -05001827 .buffer_count = 0,
James Smarta257bf92009-04-06 18:48:10 -04001828 .init_count = 40,
1829 .add_count = 40,
James Smart92d7f7b2007-06-17 19:56:38 -05001830};
James Smarted957682007-06-17 19:56:37 -05001831
James Smarte59058c2008-08-24 21:49:00 -04001832/* HBQ for the extra ring if needed */
James Smart51ef4c22007-08-02 11:10:31 -04001833static struct lpfc_hbq_init lpfc_extra_hbq = {
1834 .rn = 1,
1835 .entry_count = 200,
1836 .mask_count = 0,
1837 .profile = 0,
1838 .ring_mask = (1 << LPFC_EXTRA_RING),
1839 .buffer_count = 0,
1840 .init_count = 0,
1841 .add_count = 5,
1842};
1843
James Smarte59058c2008-08-24 21:49:00 -04001844/* Array of HBQs */
James Smart78b2d852007-08-02 11:10:21 -04001845struct lpfc_hbq_init *lpfc_hbq_defs[] = {
James Smart92d7f7b2007-06-17 19:56:38 -05001846 &lpfc_els_hbq,
James Smart51ef4c22007-08-02 11:10:31 -04001847 &lpfc_extra_hbq,
James Smart92d7f7b2007-06-17 19:56:38 -05001848};
1849
James Smarte59058c2008-08-24 21:49:00 -04001850/**
James Smart3621a712009-04-06 18:47:14 -04001851 * lpfc_sli_hbqbuf_fill_hbqs - Post more hbq buffers to HBQ
James Smarte59058c2008-08-24 21:49:00 -04001852 * @phba: Pointer to HBA context object.
1853 * @hbqno: HBQ number.
1854 * @count: Number of HBQ buffers to be posted.
1855 *
James Smartd7c255b2008-08-24 21:50:00 -04001856 * This function is called with no lock held to post more hbq buffers to the
1857 * given HBQ. The function returns the number of HBQ buffers successfully
1858 * posted.
James Smarte59058c2008-08-24 21:49:00 -04001859 **/
James Smart311464e2007-08-02 11:10:37 -04001860static int
James Smart92d7f7b2007-06-17 19:56:38 -05001861lpfc_sli_hbqbuf_fill_hbqs(struct lpfc_hba *phba, uint32_t hbqno, uint32_t count)
1862{
James Smartd7c255b2008-08-24 21:50:00 -04001863 uint32_t i, posted = 0;
James Smart3163f722008-02-08 18:50:25 -05001864 unsigned long flags;
James Smart92d7f7b2007-06-17 19:56:38 -05001865 struct hbq_dmabuf *hbq_buffer;
James Smartd7c255b2008-08-24 21:50:00 -04001866 LIST_HEAD(hbq_buf_list);
Matthew Wilcoxeafe1df2008-02-21 05:44:33 -07001867 if (!phba->hbqs[hbqno].hbq_alloc_buffer)
James Smart51ef4c22007-08-02 11:10:31 -04001868 return 0;
James Smart51ef4c22007-08-02 11:10:31 -04001869
James Smartd7c255b2008-08-24 21:50:00 -04001870 if ((phba->hbqs[hbqno].buffer_count + count) >
1871 lpfc_hbq_defs[hbqno]->entry_count)
1872 count = lpfc_hbq_defs[hbqno]->entry_count -
1873 phba->hbqs[hbqno].buffer_count;
1874 if (!count)
1875 return 0;
1876 /* Allocate HBQ entries */
1877 for (i = 0; i < count; i++) {
1878 hbq_buffer = (phba->hbqs[hbqno].hbq_alloc_buffer)(phba);
1879 if (!hbq_buffer)
1880 break;
1881 list_add_tail(&hbq_buffer->dbuf.list, &hbq_buf_list);
1882 }
James Smart3163f722008-02-08 18:50:25 -05001883 /* Check whether HBQ is still in use */
1884 spin_lock_irqsave(&phba->hbalock, flags);
Matthew Wilcoxeafe1df2008-02-21 05:44:33 -07001885 if (!phba->hbq_in_use)
James Smartd7c255b2008-08-24 21:50:00 -04001886 goto err;
1887 while (!list_empty(&hbq_buf_list)) {
1888 list_remove_head(&hbq_buf_list, hbq_buffer, struct hbq_dmabuf,
1889 dbuf.list);
1890 hbq_buffer->tag = (phba->hbqs[hbqno].buffer_count |
1891 (hbqno << 16));
James Smart3772a992009-05-22 14:50:54 -04001892 if (!lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer)) {
James Smarta8adb832007-10-27 13:37:53 -04001893 phba->hbqs[hbqno].buffer_count++;
James Smartd7c255b2008-08-24 21:50:00 -04001894 posted++;
1895 } else
James Smart51ef4c22007-08-02 11:10:31 -04001896 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
James Smart92d7f7b2007-06-17 19:56:38 -05001897 }
James Smart3163f722008-02-08 18:50:25 -05001898 spin_unlock_irqrestore(&phba->hbalock, flags);
James Smartd7c255b2008-08-24 21:50:00 -04001899 return posted;
1900err:
1901 spin_unlock_irqrestore(&phba->hbalock, flags);
1902 while (!list_empty(&hbq_buf_list)) {
1903 list_remove_head(&hbq_buf_list, hbq_buffer, struct hbq_dmabuf,
1904 dbuf.list);
1905 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
1906 }
James Smart92d7f7b2007-06-17 19:56:38 -05001907 return 0;
James Smarted957682007-06-17 19:56:37 -05001908}
1909
James Smarte59058c2008-08-24 21:49:00 -04001910/**
James Smart3621a712009-04-06 18:47:14 -04001911 * lpfc_sli_hbqbuf_add_hbqs - Post more HBQ buffers to firmware
James Smarte59058c2008-08-24 21:49:00 -04001912 * @phba: Pointer to HBA context object.
1913 * @qno: HBQ number.
1914 *
1915 * This function posts more buffers to the HBQ. This function
James Smartd7c255b2008-08-24 21:50:00 -04001916 * is called with no lock held. The function returns the number of HBQ entries
1917 * successfully allocated.
James Smarte59058c2008-08-24 21:49:00 -04001918 **/
James Smarted957682007-06-17 19:56:37 -05001919int
James Smart92d7f7b2007-06-17 19:56:38 -05001920lpfc_sli_hbqbuf_add_hbqs(struct lpfc_hba *phba, uint32_t qno)
James Smarted957682007-06-17 19:56:37 -05001921{
James Smartdef9c7a2009-12-21 17:02:28 -05001922 if (phba->sli_rev == LPFC_SLI_REV4)
1923 return 0;
1924 else
1925 return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
1926 lpfc_hbq_defs[qno]->add_count);
James Smarted957682007-06-17 19:56:37 -05001927}
1928
James Smarte59058c2008-08-24 21:49:00 -04001929/**
James Smart3621a712009-04-06 18:47:14 -04001930 * lpfc_sli_hbqbuf_init_hbqs - Post initial buffers to the HBQ
James Smarte59058c2008-08-24 21:49:00 -04001931 * @phba: Pointer to HBA context object.
1932 * @qno: HBQ queue number.
1933 *
1934 * This function is called from SLI initialization code path with
1935 * no lock held to post initial HBQ buffers to firmware. The
James Smartd7c255b2008-08-24 21:50:00 -04001936 * function returns the number of HBQ entries successfully allocated.
James Smarte59058c2008-08-24 21:49:00 -04001937 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01001938static int
James Smart92d7f7b2007-06-17 19:56:38 -05001939lpfc_sli_hbqbuf_init_hbqs(struct lpfc_hba *phba, uint32_t qno)
James Smarted957682007-06-17 19:56:37 -05001940{
James Smartdef9c7a2009-12-21 17:02:28 -05001941 if (phba->sli_rev == LPFC_SLI_REV4)
1942 return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
James Smart73d91e52011-10-10 21:32:10 -04001943 lpfc_hbq_defs[qno]->entry_count);
James Smartdef9c7a2009-12-21 17:02:28 -05001944 else
1945 return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
1946 lpfc_hbq_defs[qno]->init_count);
James Smarted957682007-06-17 19:56:37 -05001947}
1948
James Smarte59058c2008-08-24 21:49:00 -04001949/**
James Smart3772a992009-05-22 14:50:54 -04001950 * lpfc_sli_hbqbuf_get - Remove the first hbq off of an hbq list
1951 * @phba: Pointer to HBA context object.
1952 * @hbqno: HBQ number.
1953 *
1954 * This function removes the first hbq buffer on an hbq list and returns a
1955 * pointer to that buffer. If it finds no buffers on the list it returns NULL.
1956 **/
1957static struct hbq_dmabuf *
1958lpfc_sli_hbqbuf_get(struct list_head *rb_list)
1959{
1960 struct lpfc_dmabuf *d_buf;
1961
1962 list_remove_head(rb_list, d_buf, struct lpfc_dmabuf, list);
1963 if (!d_buf)
1964 return NULL;
1965 return container_of(d_buf, struct hbq_dmabuf, dbuf);
1966}
1967
1968/**
James Smart3621a712009-04-06 18:47:14 -04001969 * lpfc_sli_hbqbuf_find - Find the hbq buffer associated with a tag
James Smarte59058c2008-08-24 21:49:00 -04001970 * @phba: Pointer to HBA context object.
1971 * @tag: Tag of the hbq buffer.
1972 *
1973 * This function is called with hbalock held. This function searches
1974 * for the hbq buffer associated with the given tag in the hbq buffer
1975 * list. If it finds the hbq buffer, it returns the hbq_buffer other wise
1976 * it returns NULL.
1977 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01001978static struct hbq_dmabuf *
James Smarted957682007-06-17 19:56:37 -05001979lpfc_sli_hbqbuf_find(struct lpfc_hba *phba, uint32_t tag)
1980{
James Smart92d7f7b2007-06-17 19:56:38 -05001981 struct lpfc_dmabuf *d_buf;
1982 struct hbq_dmabuf *hbq_buf;
James Smart51ef4c22007-08-02 11:10:31 -04001983 uint32_t hbqno;
James Smarted957682007-06-17 19:56:37 -05001984
James Smart51ef4c22007-08-02 11:10:31 -04001985 hbqno = tag >> 16;
Jesper Juhla0a74e452007-08-09 20:47:15 +02001986 if (hbqno >= LPFC_MAX_HBQS)
James Smart51ef4c22007-08-02 11:10:31 -04001987 return NULL;
1988
James Smart3772a992009-05-22 14:50:54 -04001989 spin_lock_irq(&phba->hbalock);
James Smart51ef4c22007-08-02 11:10:31 -04001990 list_for_each_entry(d_buf, &phba->hbqs[hbqno].hbq_buffer_list, list) {
James Smart92d7f7b2007-06-17 19:56:38 -05001991 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
James Smart51ef4c22007-08-02 11:10:31 -04001992 if (hbq_buf->tag == tag) {
James Smart3772a992009-05-22 14:50:54 -04001993 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -05001994 return hbq_buf;
James Smarted957682007-06-17 19:56:37 -05001995 }
1996 }
James Smart3772a992009-05-22 14:50:54 -04001997 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -05001998 lpfc_printf_log(phba, KERN_ERR, LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04001999 "1803 Bad hbq tag. Data: x%x x%x\n",
James Smarta8adb832007-10-27 13:37:53 -04002000 tag, phba->hbqs[tag >> 16].buffer_count);
James Smart92d7f7b2007-06-17 19:56:38 -05002001 return NULL;
James Smarted957682007-06-17 19:56:37 -05002002}
2003
James Smarte59058c2008-08-24 21:49:00 -04002004/**
James Smart3621a712009-04-06 18:47:14 -04002005 * lpfc_sli_free_hbq - Give back the hbq buffer to firmware
James Smarte59058c2008-08-24 21:49:00 -04002006 * @phba: Pointer to HBA context object.
2007 * @hbq_buffer: Pointer to HBQ buffer.
2008 *
2009 * This function is called with hbalock. This function gives back
2010 * the hbq buffer to firmware. If the HBQ does not have space to
2011 * post the buffer, it will free the buffer.
2012 **/
James Smarted957682007-06-17 19:56:37 -05002013void
James Smart51ef4c22007-08-02 11:10:31 -04002014lpfc_sli_free_hbq(struct lpfc_hba *phba, struct hbq_dmabuf *hbq_buffer)
James Smarted957682007-06-17 19:56:37 -05002015{
2016 uint32_t hbqno;
2017
James Smart51ef4c22007-08-02 11:10:31 -04002018 if (hbq_buffer) {
2019 hbqno = hbq_buffer->tag >> 16;
James Smart3772a992009-05-22 14:50:54 -04002020 if (lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer))
James Smart51ef4c22007-08-02 11:10:31 -04002021 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
James Smarted957682007-06-17 19:56:37 -05002022 }
2023}
2024
James Smarte59058c2008-08-24 21:49:00 -04002025/**
James Smart3621a712009-04-06 18:47:14 -04002026 * lpfc_sli_chk_mbx_command - Check if the mailbox is a legitimate mailbox
James Smarte59058c2008-08-24 21:49:00 -04002027 * @mbxCommand: mailbox command code.
2028 *
2029 * This function is called by the mailbox event handler function to verify
2030 * that the completed mailbox command is a legitimate mailbox command. If the
2031 * completed mailbox is not known to the function, it will return MBX_SHUTDOWN
2032 * and the mailbox event handler will take the HBA offline.
2033 **/
dea31012005-04-17 16:05:31 -05002034static int
2035lpfc_sli_chk_mbx_command(uint8_t mbxCommand)
2036{
2037 uint8_t ret;
2038
2039 switch (mbxCommand) {
2040 case MBX_LOAD_SM:
2041 case MBX_READ_NV:
2042 case MBX_WRITE_NV:
James Smarta8adb832007-10-27 13:37:53 -04002043 case MBX_WRITE_VPARMS:
dea31012005-04-17 16:05:31 -05002044 case MBX_RUN_BIU_DIAG:
2045 case MBX_INIT_LINK:
2046 case MBX_DOWN_LINK:
2047 case MBX_CONFIG_LINK:
2048 case MBX_CONFIG_RING:
2049 case MBX_RESET_RING:
2050 case MBX_READ_CONFIG:
2051 case MBX_READ_RCONFIG:
2052 case MBX_READ_SPARM:
2053 case MBX_READ_STATUS:
2054 case MBX_READ_RPI:
2055 case MBX_READ_XRI:
2056 case MBX_READ_REV:
2057 case MBX_READ_LNK_STAT:
2058 case MBX_REG_LOGIN:
2059 case MBX_UNREG_LOGIN:
dea31012005-04-17 16:05:31 -05002060 case MBX_CLEAR_LA:
2061 case MBX_DUMP_MEMORY:
2062 case MBX_DUMP_CONTEXT:
2063 case MBX_RUN_DIAGS:
2064 case MBX_RESTART:
2065 case MBX_UPDATE_CFG:
2066 case MBX_DOWN_LOAD:
2067 case MBX_DEL_LD_ENTRY:
2068 case MBX_RUN_PROGRAM:
2069 case MBX_SET_MASK:
James Smart09372822008-01-11 01:52:54 -05002070 case MBX_SET_VARIABLE:
dea31012005-04-17 16:05:31 -05002071 case MBX_UNREG_D_ID:
Jamie Wellnitz41415862006-02-28 19:25:27 -05002072 case MBX_KILL_BOARD:
dea31012005-04-17 16:05:31 -05002073 case MBX_CONFIG_FARP:
Jamie Wellnitz41415862006-02-28 19:25:27 -05002074 case MBX_BEACON:
dea31012005-04-17 16:05:31 -05002075 case MBX_LOAD_AREA:
2076 case MBX_RUN_BIU_DIAG64:
2077 case MBX_CONFIG_PORT:
2078 case MBX_READ_SPARM64:
2079 case MBX_READ_RPI64:
2080 case MBX_REG_LOGIN64:
James Smart76a95d72010-11-20 23:11:48 -05002081 case MBX_READ_TOPOLOGY:
James Smart09372822008-01-11 01:52:54 -05002082 case MBX_WRITE_WWN:
dea31012005-04-17 16:05:31 -05002083 case MBX_SET_DEBUG:
2084 case MBX_LOAD_EXP_ROM:
James Smart57127f12007-10-27 13:37:05 -04002085 case MBX_ASYNCEVT_ENABLE:
James Smart92d7f7b2007-06-17 19:56:38 -05002086 case MBX_REG_VPI:
2087 case MBX_UNREG_VPI:
James Smart858c9f62007-06-17 19:56:39 -05002088 case MBX_HEARTBEAT:
James Smart84774a42008-08-24 21:50:06 -04002089 case MBX_PORT_CAPABILITIES:
2090 case MBX_PORT_IOV_CONTROL:
James Smart04c68492009-05-22 14:52:52 -04002091 case MBX_SLI4_CONFIG:
2092 case MBX_SLI4_REQ_FTRS:
2093 case MBX_REG_FCFI:
2094 case MBX_UNREG_FCFI:
2095 case MBX_REG_VFI:
2096 case MBX_UNREG_VFI:
2097 case MBX_INIT_VPI:
2098 case MBX_INIT_VFI:
2099 case MBX_RESUME_RPI:
James Smartc7495932010-04-06 15:05:28 -04002100 case MBX_READ_EVENT_LOG_STATUS:
2101 case MBX_READ_EVENT_LOG:
James Smartdcf2a4e2010-09-29 11:18:53 -04002102 case MBX_SECURITY_MGMT:
2103 case MBX_AUTH_PORT:
James Smart940eb682012-08-03 12:37:08 -04002104 case MBX_ACCESS_VDATA:
dea31012005-04-17 16:05:31 -05002105 ret = mbxCommand;
2106 break;
2107 default:
2108 ret = MBX_SHUTDOWN;
2109 break;
2110 }
James Smart2e0fef82007-06-17 19:56:36 -05002111 return ret;
dea31012005-04-17 16:05:31 -05002112}
James Smarte59058c2008-08-24 21:49:00 -04002113
2114/**
James Smart3621a712009-04-06 18:47:14 -04002115 * lpfc_sli_wake_mbox_wait - lpfc_sli_issue_mbox_wait mbox completion handler
James Smarte59058c2008-08-24 21:49:00 -04002116 * @phba: Pointer to HBA context object.
2117 * @pmboxq: Pointer to mailbox command.
2118 *
2119 * This is completion handler function for mailbox commands issued from
2120 * lpfc_sli_issue_mbox_wait function. This function is called by the
2121 * mailbox event handler function with no lock held. This function
2122 * will wake up thread waiting on the wait queue pointed by context1
2123 * of the mailbox.
2124 **/
James Smart04c68492009-05-22 14:52:52 -04002125void
James Smart2e0fef82007-06-17 19:56:36 -05002126lpfc_sli_wake_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq)
dea31012005-04-17 16:05:31 -05002127{
2128 wait_queue_head_t *pdone_q;
James Smart858c9f62007-06-17 19:56:39 -05002129 unsigned long drvr_flag;
dea31012005-04-17 16:05:31 -05002130
2131 /*
2132 * If pdone_q is empty, the driver thread gave up waiting and
2133 * continued running.
2134 */
James Smart7054a602007-04-25 09:52:34 -04002135 pmboxq->mbox_flag |= LPFC_MBX_WAKE;
James Smart858c9f62007-06-17 19:56:39 -05002136 spin_lock_irqsave(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05002137 pdone_q = (wait_queue_head_t *) pmboxq->context1;
2138 if (pdone_q)
2139 wake_up_interruptible(pdone_q);
James Smart858c9f62007-06-17 19:56:39 -05002140 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05002141 return;
2142}
2143
James Smarte59058c2008-08-24 21:49:00 -04002144
2145/**
James Smart3621a712009-04-06 18:47:14 -04002146 * lpfc_sli_def_mbox_cmpl - Default mailbox completion handler
James Smarte59058c2008-08-24 21:49:00 -04002147 * @phba: Pointer to HBA context object.
2148 * @pmb: Pointer to mailbox object.
2149 *
2150 * This function is the default mailbox completion handler. It
2151 * frees the memory resources associated with the completed mailbox
2152 * command. If the completed command is a REG_LOGIN mailbox command,
2153 * this function will issue a UREG_LOGIN to re-claim the RPI.
2154 **/
dea31012005-04-17 16:05:31 -05002155void
James Smart2e0fef82007-06-17 19:56:36 -05002156lpfc_sli_def_mbox_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05002157{
James Smartd439d282010-09-29 11:18:45 -04002158 struct lpfc_vport *vport = pmb->vport;
dea31012005-04-17 16:05:31 -05002159 struct lpfc_dmabuf *mp;
James Smartd439d282010-09-29 11:18:45 -04002160 struct lpfc_nodelist *ndlp;
James Smart5af5eee2010-10-22 11:06:38 -04002161 struct Scsi_Host *shost;
James Smart04c68492009-05-22 14:52:52 -04002162 uint16_t rpi, vpi;
James Smart7054a602007-04-25 09:52:34 -04002163 int rc;
2164
dea31012005-04-17 16:05:31 -05002165 mp = (struct lpfc_dmabuf *) (pmb->context1);
James Smart7054a602007-04-25 09:52:34 -04002166
dea31012005-04-17 16:05:31 -05002167 if (mp) {
2168 lpfc_mbuf_free(phba, mp->virt, mp->phys);
2169 kfree(mp);
2170 }
James Smart7054a602007-04-25 09:52:34 -04002171
2172 /*
2173 * If a REG_LOGIN succeeded after node is destroyed or node
2174 * is in re-discovery driver need to cleanup the RPI.
2175 */
James Smart2e0fef82007-06-17 19:56:36 -05002176 if (!(phba->pport->load_flag & FC_UNLOADING) &&
James Smart04c68492009-05-22 14:52:52 -04002177 pmb->u.mb.mbxCommand == MBX_REG_LOGIN64 &&
2178 !pmb->u.mb.mbxStatus) {
2179 rpi = pmb->u.mb.un.varWords[0];
James Smart6d368e52011-05-24 11:44:12 -04002180 vpi = pmb->u.mb.un.varRegLogin.vpi;
James Smart04c68492009-05-22 14:52:52 -04002181 lpfc_unreg_login(phba, vpi, rpi, pmb);
James Smart92d7f7b2007-06-17 19:56:38 -05002182 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart7054a602007-04-25 09:52:34 -04002183 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
2184 if (rc != MBX_NOT_FINISHED)
2185 return;
2186 }
2187
James Smart695a8142010-01-26 23:08:03 -05002188 if ((pmb->u.mb.mbxCommand == MBX_REG_VPI) &&
2189 !(phba->pport->load_flag & FC_UNLOADING) &&
2190 !pmb->u.mb.mbxStatus) {
James Smart5af5eee2010-10-22 11:06:38 -04002191 shost = lpfc_shost_from_vport(vport);
2192 spin_lock_irq(shost->host_lock);
2193 vport->vpi_state |= LPFC_VPI_REGISTERED;
2194 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
2195 spin_unlock_irq(shost->host_lock);
James Smart695a8142010-01-26 23:08:03 -05002196 }
2197
James Smartd439d282010-09-29 11:18:45 -04002198 if (pmb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
2199 ndlp = (struct lpfc_nodelist *)pmb->context2;
2200 lpfc_nlp_put(ndlp);
2201 pmb->context2 = NULL;
2202 }
2203
James Smartdcf2a4e2010-09-29 11:18:53 -04002204 /* Check security permission status on INIT_LINK mailbox command */
2205 if ((pmb->u.mb.mbxCommand == MBX_INIT_LINK) &&
2206 (pmb->u.mb.mbxStatus == MBXERR_SEC_NO_PERMISSION))
2207 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
2208 "2860 SLI authentication is required "
2209 "for INIT_LINK but has not done yet\n");
2210
James Smart04c68492009-05-22 14:52:52 -04002211 if (bf_get(lpfc_mqe_command, &pmb->u.mqe) == MBX_SLI4_CONFIG)
2212 lpfc_sli4_mbox_cmd_free(phba, pmb);
2213 else
2214 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05002215}
James Smartbe6bb942015-04-07 15:07:22 -04002216 /**
2217 * lpfc_sli4_unreg_rpi_cmpl_clr - mailbox completion handler
2218 * @phba: Pointer to HBA context object.
2219 * @pmb: Pointer to mailbox object.
2220 *
2221 * This function is the unreg rpi mailbox completion handler. It
2222 * frees the memory resources associated with the completed mailbox
2223 * command. An additional refrenece is put on the ndlp to prevent
2224 * lpfc_nlp_release from freeing the rpi bit in the bitmask before
2225 * the unreg mailbox command completes, this routine puts the
2226 * reference back.
2227 *
2228 **/
2229void
2230lpfc_sli4_unreg_rpi_cmpl_clr(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
2231{
2232 struct lpfc_vport *vport = pmb->vport;
2233 struct lpfc_nodelist *ndlp;
2234
2235 ndlp = pmb->context1;
2236 if (pmb->u.mb.mbxCommand == MBX_UNREG_LOGIN) {
2237 if (phba->sli_rev == LPFC_SLI_REV4 &&
2238 (bf_get(lpfc_sli_intf_if_type,
2239 &phba->sli4_hba.sli_intf) ==
2240 LPFC_SLI_INTF_IF_TYPE_2)) {
2241 if (ndlp) {
2242 lpfc_printf_vlog(vport, KERN_INFO, LOG_SLI,
2243 "0010 UNREG_LOGIN vpi:%x "
2244 "rpi:%x DID:%x map:%x %p\n",
2245 vport->vpi, ndlp->nlp_rpi,
2246 ndlp->nlp_DID,
2247 ndlp->nlp_usg_map, ndlp);
2248
2249 lpfc_nlp_put(ndlp);
2250 }
2251 }
2252 }
2253
2254 mempool_free(pmb, phba->mbox_mem_pool);
2255}
dea31012005-04-17 16:05:31 -05002256
James Smarte59058c2008-08-24 21:49:00 -04002257/**
James Smart3621a712009-04-06 18:47:14 -04002258 * lpfc_sli_handle_mb_event - Handle mailbox completions from firmware
James Smarte59058c2008-08-24 21:49:00 -04002259 * @phba: Pointer to HBA context object.
2260 *
2261 * This function is called with no lock held. This function processes all
2262 * the completed mailbox commands and gives it to upper layers. The interrupt
2263 * service routine processes mailbox completion interrupt and adds completed
2264 * mailbox commands to the mboxq_cmpl queue and signals the worker thread.
2265 * Worker thread call lpfc_sli_handle_mb_event, which will return the
2266 * completed mailbox commands in mboxq_cmpl queue to the upper layers. This
2267 * function returns the mailbox commands to the upper layer by calling the
2268 * completion handler function of each mailbox.
2269 **/
dea31012005-04-17 16:05:31 -05002270int
James Smart2e0fef82007-06-17 19:56:36 -05002271lpfc_sli_handle_mb_event(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05002272{
James Smart92d7f7b2007-06-17 19:56:38 -05002273 MAILBOX_t *pmbox;
dea31012005-04-17 16:05:31 -05002274 LPFC_MBOXQ_t *pmb;
James Smart92d7f7b2007-06-17 19:56:38 -05002275 int rc;
2276 LIST_HEAD(cmplq);
dea31012005-04-17 16:05:31 -05002277
2278 phba->sli.slistat.mbox_event++;
2279
James Smart92d7f7b2007-06-17 19:56:38 -05002280 /* Get all completed mailboxe buffers into the cmplq */
2281 spin_lock_irq(&phba->hbalock);
2282 list_splice_init(&phba->sli.mboxq_cmpl, &cmplq);
2283 spin_unlock_irq(&phba->hbalock);
2284
dea31012005-04-17 16:05:31 -05002285 /* Get a Mailbox buffer to setup mailbox commands for callback */
James Smart92d7f7b2007-06-17 19:56:38 -05002286 do {
2287 list_remove_head(&cmplq, pmb, LPFC_MBOXQ_t, list);
2288 if (pmb == NULL)
2289 break;
2290
James Smart04c68492009-05-22 14:52:52 -04002291 pmbox = &pmb->u.mb;
dea31012005-04-17 16:05:31 -05002292
James Smart858c9f62007-06-17 19:56:39 -05002293 if (pmbox->mbxCommand != MBX_HEARTBEAT) {
2294 if (pmb->vport) {
2295 lpfc_debugfs_disc_trc(pmb->vport,
2296 LPFC_DISC_TRC_MBOX_VPORT,
2297 "MBOX cmpl vport: cmd:x%x mb:x%x x%x",
2298 (uint32_t)pmbox->mbxCommand,
2299 pmbox->un.varWords[0],
2300 pmbox->un.varWords[1]);
2301 }
2302 else {
2303 lpfc_debugfs_disc_trc(phba->pport,
2304 LPFC_DISC_TRC_MBOX,
2305 "MBOX cmpl: cmd:x%x mb:x%x x%x",
2306 (uint32_t)pmbox->mbxCommand,
2307 pmbox->un.varWords[0],
2308 pmbox->un.varWords[1]);
2309 }
2310 }
2311
dea31012005-04-17 16:05:31 -05002312 /*
2313 * It is a fatal error if unknown mbox command completion.
2314 */
2315 if (lpfc_sli_chk_mbx_command(pmbox->mbxCommand) ==
2316 MBX_SHUTDOWN) {
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002317 /* Unknown mailbox command compl */
James Smart92d7f7b2007-06-17 19:56:38 -05002318 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002319 "(%d):0323 Unknown Mailbox command "
James Smarta183a152011-10-10 21:32:43 -04002320 "x%x (x%x/x%x) Cmpl\n",
James Smart92d7f7b2007-06-17 19:56:38 -05002321 pmb->vport ? pmb->vport->vpi : 0,
James Smart04c68492009-05-22 14:52:52 -04002322 pmbox->mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04002323 lpfc_sli_config_mbox_subsys_get(phba,
2324 pmb),
2325 lpfc_sli_config_mbox_opcode_get(phba,
2326 pmb));
James Smart2e0fef82007-06-17 19:56:36 -05002327 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05002328 phba->work_hs = HS_FFER3;
2329 lpfc_handle_eratt(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05002330 continue;
dea31012005-04-17 16:05:31 -05002331 }
2332
dea31012005-04-17 16:05:31 -05002333 if (pmbox->mbxStatus) {
2334 phba->sli.slistat.mbox_stat_err++;
2335 if (pmbox->mbxStatus == MBXERR_NO_RESOURCES) {
2336 /* Mbox cmd cmpl error - RETRYing */
James Smart92d7f7b2007-06-17 19:56:38 -05002337 lpfc_printf_log(phba, KERN_INFO,
James Smarta183a152011-10-10 21:32:43 -04002338 LOG_MBOX | LOG_SLI,
2339 "(%d):0305 Mbox cmd cmpl "
2340 "error - RETRYing Data: x%x "
2341 "(x%x/x%x) x%x x%x x%x\n",
2342 pmb->vport ? pmb->vport->vpi : 0,
2343 pmbox->mbxCommand,
2344 lpfc_sli_config_mbox_subsys_get(phba,
2345 pmb),
2346 lpfc_sli_config_mbox_opcode_get(phba,
2347 pmb),
2348 pmbox->mbxStatus,
2349 pmbox->un.varWords[0],
2350 pmb->vport->port_state);
dea31012005-04-17 16:05:31 -05002351 pmbox->mbxStatus = 0;
2352 pmbox->mbxOwner = OWN_HOST;
dea31012005-04-17 16:05:31 -05002353 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
James Smart04c68492009-05-22 14:52:52 -04002354 if (rc != MBX_NOT_FINISHED)
James Smart92d7f7b2007-06-17 19:56:38 -05002355 continue;
dea31012005-04-17 16:05:31 -05002356 }
2357 }
2358
2359 /* Mailbox cmd <cmd> Cmpl <cmpl> */
James Smart92d7f7b2007-06-17 19:56:38 -05002360 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04002361 "(%d):0307 Mailbox cmd x%x (x%x/x%x) Cmpl x%p "
James Smarte74c03c2013-04-17 20:15:19 -04002362 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x "
2363 "x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05002364 pmb->vport ? pmb->vport->vpi : 0,
dea31012005-04-17 16:05:31 -05002365 pmbox->mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04002366 lpfc_sli_config_mbox_subsys_get(phba, pmb),
2367 lpfc_sli_config_mbox_opcode_get(phba, pmb),
dea31012005-04-17 16:05:31 -05002368 pmb->mbox_cmpl,
2369 *((uint32_t *) pmbox),
2370 pmbox->un.varWords[0],
2371 pmbox->un.varWords[1],
2372 pmbox->un.varWords[2],
2373 pmbox->un.varWords[3],
2374 pmbox->un.varWords[4],
2375 pmbox->un.varWords[5],
2376 pmbox->un.varWords[6],
James Smarte74c03c2013-04-17 20:15:19 -04002377 pmbox->un.varWords[7],
2378 pmbox->un.varWords[8],
2379 pmbox->un.varWords[9],
2380 pmbox->un.varWords[10]);
dea31012005-04-17 16:05:31 -05002381
James Smart92d7f7b2007-06-17 19:56:38 -05002382 if (pmb->mbox_cmpl)
dea31012005-04-17 16:05:31 -05002383 pmb->mbox_cmpl(phba,pmb);
James Smart92d7f7b2007-06-17 19:56:38 -05002384 } while (1);
James Smart2e0fef82007-06-17 19:56:36 -05002385 return 0;
dea31012005-04-17 16:05:31 -05002386}
James Smart92d7f7b2007-06-17 19:56:38 -05002387
James Smarte59058c2008-08-24 21:49:00 -04002388/**
James Smart3621a712009-04-06 18:47:14 -04002389 * lpfc_sli_get_buff - Get the buffer associated with the buffer tag
James Smarte59058c2008-08-24 21:49:00 -04002390 * @phba: Pointer to HBA context object.
2391 * @pring: Pointer to driver SLI ring object.
2392 * @tag: buffer tag.
2393 *
2394 * This function is called with no lock held. When QUE_BUFTAG_BIT bit
2395 * is set in the tag the buffer is posted for a particular exchange,
2396 * the function will return the buffer without replacing the buffer.
2397 * If the buffer is for unsolicited ELS or CT traffic, this function
2398 * returns the buffer and also posts another buffer to the firmware.
2399 **/
James Smart76bb24e2007-10-27 13:38:00 -04002400static struct lpfc_dmabuf *
2401lpfc_sli_get_buff(struct lpfc_hba *phba,
James Smart9f1e1b52008-12-04 22:39:40 -05002402 struct lpfc_sli_ring *pring,
2403 uint32_t tag)
James Smart76bb24e2007-10-27 13:38:00 -04002404{
James Smart9f1e1b52008-12-04 22:39:40 -05002405 struct hbq_dmabuf *hbq_entry;
2406
James Smart76bb24e2007-10-27 13:38:00 -04002407 if (tag & QUE_BUFTAG_BIT)
2408 return lpfc_sli_ring_taggedbuf_get(phba, pring, tag);
James Smart9f1e1b52008-12-04 22:39:40 -05002409 hbq_entry = lpfc_sli_hbqbuf_find(phba, tag);
2410 if (!hbq_entry)
2411 return NULL;
2412 return &hbq_entry->dbuf;
James Smart76bb24e2007-10-27 13:38:00 -04002413}
James Smart57127f12007-10-27 13:37:05 -04002414
James Smart3772a992009-05-22 14:50:54 -04002415/**
2416 * lpfc_complete_unsol_iocb - Complete an unsolicited sequence
2417 * @phba: Pointer to HBA context object.
2418 * @pring: Pointer to driver SLI ring object.
2419 * @saveq: Pointer to the iocbq struct representing the sequence starting frame.
2420 * @fch_r_ctl: the r_ctl for the first frame of the sequence.
2421 * @fch_type: the type for the first frame of the sequence.
2422 *
2423 * This function is called with no lock held. This function uses the r_ctl and
2424 * type of the received sequence to find the correct callback function to call
2425 * to process the sequence.
2426 **/
2427static int
2428lpfc_complete_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2429 struct lpfc_iocbq *saveq, uint32_t fch_r_ctl,
2430 uint32_t fch_type)
2431{
2432 int i;
2433
2434 /* unSolicited Responses */
2435 if (pring->prt[0].profile) {
2436 if (pring->prt[0].lpfc_sli_rcv_unsol_event)
2437 (pring->prt[0].lpfc_sli_rcv_unsol_event) (phba, pring,
2438 saveq);
2439 return 1;
2440 }
2441 /* We must search, based on rctl / type
2442 for the right routine */
2443 for (i = 0; i < pring->num_mask; i++) {
2444 if ((pring->prt[i].rctl == fch_r_ctl) &&
2445 (pring->prt[i].type == fch_type)) {
2446 if (pring->prt[i].lpfc_sli_rcv_unsol_event)
2447 (pring->prt[i].lpfc_sli_rcv_unsol_event)
2448 (phba, pring, saveq);
2449 return 1;
2450 }
2451 }
2452 return 0;
2453}
James Smarte59058c2008-08-24 21:49:00 -04002454
2455/**
James Smart3621a712009-04-06 18:47:14 -04002456 * lpfc_sli_process_unsol_iocb - Unsolicited iocb handler
James Smarte59058c2008-08-24 21:49:00 -04002457 * @phba: Pointer to HBA context object.
2458 * @pring: Pointer to driver SLI ring object.
2459 * @saveq: Pointer to the unsolicited iocb.
2460 *
2461 * This function is called with no lock held by the ring event handler
2462 * when there is an unsolicited iocb posted to the response ring by the
2463 * firmware. This function gets the buffer associated with the iocbs
2464 * and calls the event handler for the ring. This function handles both
2465 * qring buffers and hbq buffers.
2466 * When the function returns 1 the caller can free the iocb object otherwise
2467 * upper layer functions will free the iocb objects.
2468 **/
dea31012005-04-17 16:05:31 -05002469static int
2470lpfc_sli_process_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2471 struct lpfc_iocbq *saveq)
2472{
2473 IOCB_t * irsp;
2474 WORD5 * w5p;
2475 uint32_t Rctl, Type;
James Smart76bb24e2007-10-27 13:38:00 -04002476 struct lpfc_iocbq *iocbq;
James Smart3163f722008-02-08 18:50:25 -05002477 struct lpfc_dmabuf *dmzbuf;
dea31012005-04-17 16:05:31 -05002478
dea31012005-04-17 16:05:31 -05002479 irsp = &(saveq->iocb);
James Smart57127f12007-10-27 13:37:05 -04002480
2481 if (irsp->ulpCommand == CMD_ASYNC_STATUS) {
2482 if (pring->lpfc_sli_rcv_async_status)
2483 pring->lpfc_sli_rcv_async_status(phba, pring, saveq);
2484 else
2485 lpfc_printf_log(phba,
2486 KERN_WARNING,
2487 LOG_SLI,
2488 "0316 Ring %d handler: unexpected "
2489 "ASYNC_STATUS iocb received evt_code "
2490 "0x%x\n",
2491 pring->ringno,
2492 irsp->un.asyncstat.evt_code);
2493 return 1;
2494 }
2495
James Smart3163f722008-02-08 18:50:25 -05002496 if ((irsp->ulpCommand == CMD_IOCB_RET_XRI64_CX) &&
2497 (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED)) {
2498 if (irsp->ulpBdeCount > 0) {
2499 dmzbuf = lpfc_sli_get_buff(phba, pring,
2500 irsp->un.ulpWord[3]);
2501 lpfc_in_buf_free(phba, dmzbuf);
2502 }
2503
2504 if (irsp->ulpBdeCount > 1) {
2505 dmzbuf = lpfc_sli_get_buff(phba, pring,
2506 irsp->unsli3.sli3Words[3]);
2507 lpfc_in_buf_free(phba, dmzbuf);
2508 }
2509
2510 if (irsp->ulpBdeCount > 2) {
2511 dmzbuf = lpfc_sli_get_buff(phba, pring,
2512 irsp->unsli3.sli3Words[7]);
2513 lpfc_in_buf_free(phba, dmzbuf);
2514 }
2515
2516 return 1;
2517 }
2518
James Smart92d7f7b2007-06-17 19:56:38 -05002519 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
James Smart76bb24e2007-10-27 13:38:00 -04002520 if (irsp->ulpBdeCount != 0) {
2521 saveq->context2 = lpfc_sli_get_buff(phba, pring,
James Smart92d7f7b2007-06-17 19:56:38 -05002522 irsp->un.ulpWord[3]);
James Smart76bb24e2007-10-27 13:38:00 -04002523 if (!saveq->context2)
2524 lpfc_printf_log(phba,
2525 KERN_ERR,
2526 LOG_SLI,
2527 "0341 Ring %d Cannot find buffer for "
2528 "an unsolicited iocb. tag 0x%x\n",
2529 pring->ringno,
2530 irsp->un.ulpWord[3]);
James Smart76bb24e2007-10-27 13:38:00 -04002531 }
2532 if (irsp->ulpBdeCount == 2) {
2533 saveq->context3 = lpfc_sli_get_buff(phba, pring,
James Smart51ef4c22007-08-02 11:10:31 -04002534 irsp->unsli3.sli3Words[7]);
James Smart76bb24e2007-10-27 13:38:00 -04002535 if (!saveq->context3)
2536 lpfc_printf_log(phba,
2537 KERN_ERR,
2538 LOG_SLI,
2539 "0342 Ring %d Cannot find buffer for an"
2540 " unsolicited iocb. tag 0x%x\n",
2541 pring->ringno,
2542 irsp->unsli3.sli3Words[7]);
2543 }
2544 list_for_each_entry(iocbq, &saveq->list, list) {
James Smart76bb24e2007-10-27 13:38:00 -04002545 irsp = &(iocbq->iocb);
James Smart76bb24e2007-10-27 13:38:00 -04002546 if (irsp->ulpBdeCount != 0) {
2547 iocbq->context2 = lpfc_sli_get_buff(phba, pring,
2548 irsp->un.ulpWord[3]);
James Smart9c2face2008-01-11 01:53:18 -05002549 if (!iocbq->context2)
James Smart76bb24e2007-10-27 13:38:00 -04002550 lpfc_printf_log(phba,
2551 KERN_ERR,
2552 LOG_SLI,
2553 "0343 Ring %d Cannot find "
2554 "buffer for an unsolicited iocb"
2555 ". tag 0x%x\n", pring->ringno,
2556 irsp->un.ulpWord[3]);
2557 }
2558 if (irsp->ulpBdeCount == 2) {
2559 iocbq->context3 = lpfc_sli_get_buff(phba, pring,
2560 irsp->unsli3.sli3Words[7]);
James Smart9c2face2008-01-11 01:53:18 -05002561 if (!iocbq->context3)
James Smart76bb24e2007-10-27 13:38:00 -04002562 lpfc_printf_log(phba,
2563 KERN_ERR,
2564 LOG_SLI,
2565 "0344 Ring %d Cannot find "
2566 "buffer for an unsolicited "
2567 "iocb. tag 0x%x\n",
2568 pring->ringno,
2569 irsp->unsli3.sli3Words[7]);
2570 }
2571 }
James Smart92d7f7b2007-06-17 19:56:38 -05002572 }
James Smart9c2face2008-01-11 01:53:18 -05002573 if (irsp->ulpBdeCount != 0 &&
2574 (irsp->ulpCommand == CMD_IOCB_RCV_CONT64_CX ||
2575 irsp->ulpStatus == IOSTAT_INTERMED_RSP)) {
2576 int found = 0;
2577
2578 /* search continue save q for same XRI */
2579 list_for_each_entry(iocbq, &pring->iocb_continue_saveq, clist) {
James Smart7851fe22011-07-22 18:36:52 -04002580 if (iocbq->iocb.unsli3.rcvsli3.ox_id ==
2581 saveq->iocb.unsli3.rcvsli3.ox_id) {
James Smart9c2face2008-01-11 01:53:18 -05002582 list_add_tail(&saveq->list, &iocbq->list);
2583 found = 1;
2584 break;
2585 }
2586 }
2587 if (!found)
2588 list_add_tail(&saveq->clist,
2589 &pring->iocb_continue_saveq);
2590 if (saveq->iocb.ulpStatus != IOSTAT_INTERMED_RSP) {
2591 list_del_init(&iocbq->clist);
2592 saveq = iocbq;
2593 irsp = &(saveq->iocb);
2594 } else
2595 return 0;
2596 }
2597 if ((irsp->ulpCommand == CMD_RCV_ELS_REQ64_CX) ||
2598 (irsp->ulpCommand == CMD_RCV_ELS_REQ_CX) ||
2599 (irsp->ulpCommand == CMD_IOCB_RCV_ELS64_CX)) {
James Smart6a9c52c2009-10-02 15:16:51 -04002600 Rctl = FC_RCTL_ELS_REQ;
2601 Type = FC_TYPE_ELS;
James Smart9c2face2008-01-11 01:53:18 -05002602 } else {
2603 w5p = (WORD5 *)&(saveq->iocb.un.ulpWord[5]);
2604 Rctl = w5p->hcsw.Rctl;
2605 Type = w5p->hcsw.Type;
2606
2607 /* Firmware Workaround */
2608 if ((Rctl == 0) && (pring->ringno == LPFC_ELS_RING) &&
2609 (irsp->ulpCommand == CMD_RCV_SEQUENCE64_CX ||
2610 irsp->ulpCommand == CMD_IOCB_RCV_SEQ64_CX)) {
James Smart6a9c52c2009-10-02 15:16:51 -04002611 Rctl = FC_RCTL_ELS_REQ;
2612 Type = FC_TYPE_ELS;
James Smart9c2face2008-01-11 01:53:18 -05002613 w5p->hcsw.Rctl = Rctl;
2614 w5p->hcsw.Type = Type;
2615 }
2616 }
James Smart92d7f7b2007-06-17 19:56:38 -05002617
James Smart3772a992009-05-22 14:50:54 -04002618 if (!lpfc_complete_unsol_iocb(phba, pring, saveq, Rctl, Type))
James Smart92d7f7b2007-06-17 19:56:38 -05002619 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002620 "0313 Ring %d handler: unexpected Rctl x%x "
James Smart92d7f7b2007-06-17 19:56:38 -05002621 "Type x%x received\n",
James Smarte8b62012007-08-02 11:10:09 -04002622 pring->ringno, Rctl, Type);
James Smart3772a992009-05-22 14:50:54 -04002623
James Smart92d7f7b2007-06-17 19:56:38 -05002624 return 1;
dea31012005-04-17 16:05:31 -05002625}
2626
James Smarte59058c2008-08-24 21:49:00 -04002627/**
James Smart3621a712009-04-06 18:47:14 -04002628 * lpfc_sli_iocbq_lookup - Find command iocb for the given response iocb
James Smarte59058c2008-08-24 21:49:00 -04002629 * @phba: Pointer to HBA context object.
2630 * @pring: Pointer to driver SLI ring object.
2631 * @prspiocb: Pointer to response iocb object.
2632 *
2633 * This function looks up the iocb_lookup table to get the command iocb
2634 * corresponding to the given response iocb using the iotag of the
2635 * response iocb. This function is called with the hbalock held.
2636 * This function returns the command iocb object if it finds the command
2637 * iocb else returns NULL.
2638 **/
dea31012005-04-17 16:05:31 -05002639static struct lpfc_iocbq *
James Smart2e0fef82007-06-17 19:56:36 -05002640lpfc_sli_iocbq_lookup(struct lpfc_hba *phba,
2641 struct lpfc_sli_ring *pring,
2642 struct lpfc_iocbq *prspiocb)
dea31012005-04-17 16:05:31 -05002643{
dea31012005-04-17 16:05:31 -05002644 struct lpfc_iocbq *cmd_iocb = NULL;
2645 uint16_t iotag;
2646
James Bottomley604a3e32005-10-29 10:28:33 -05002647 iotag = prspiocb->iocb.ulpIoTag;
dea31012005-04-17 16:05:31 -05002648
James Bottomley604a3e32005-10-29 10:28:33 -05002649 if (iotag != 0 && iotag <= phba->sli.last_iotag) {
2650 cmd_iocb = phba->sli.iocbq_lookup[iotag];
James Smart92d7f7b2007-06-17 19:56:38 -05002651 list_del_init(&cmd_iocb->list);
James Smart4f2e66c2012-05-09 21:17:07 -04002652 if (cmd_iocb->iocb_flag & LPFC_IO_ON_TXCMPLQ) {
James Smart4f2e66c2012-05-09 21:17:07 -04002653 cmd_iocb->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
James Smart2a9bf3d2010-06-07 15:24:45 -04002654 }
James Bottomley604a3e32005-10-29 10:28:33 -05002655 return cmd_iocb;
dea31012005-04-17 16:05:31 -05002656 }
2657
dea31012005-04-17 16:05:31 -05002658 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002659 "0317 iotag x%x is out off "
James Bottomley604a3e32005-10-29 10:28:33 -05002660 "range: max iotag x%x wd0 x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04002661 iotag, phba->sli.last_iotag,
James Bottomley604a3e32005-10-29 10:28:33 -05002662 *(((uint32_t *) &prspiocb->iocb) + 7));
dea31012005-04-17 16:05:31 -05002663 return NULL;
2664}
2665
James Smarte59058c2008-08-24 21:49:00 -04002666/**
James Smart3772a992009-05-22 14:50:54 -04002667 * lpfc_sli_iocbq_lookup_by_tag - Find command iocb for the iotag
2668 * @phba: Pointer to HBA context object.
2669 * @pring: Pointer to driver SLI ring object.
2670 * @iotag: IOCB tag.
2671 *
2672 * This function looks up the iocb_lookup table to get the command iocb
2673 * corresponding to the given iotag. This function is called with the
2674 * hbalock held.
2675 * This function returns the command iocb object if it finds the command
2676 * iocb else returns NULL.
2677 **/
2678static struct lpfc_iocbq *
2679lpfc_sli_iocbq_lookup_by_tag(struct lpfc_hba *phba,
2680 struct lpfc_sli_ring *pring, uint16_t iotag)
2681{
2682 struct lpfc_iocbq *cmd_iocb;
2683
2684 if (iotag != 0 && iotag <= phba->sli.last_iotag) {
2685 cmd_iocb = phba->sli.iocbq_lookup[iotag];
James Smart4f2e66c2012-05-09 21:17:07 -04002686 if (cmd_iocb->iocb_flag & LPFC_IO_ON_TXCMPLQ) {
2687 /* remove from txcmpl queue list */
2688 list_del_init(&cmd_iocb->list);
2689 cmd_iocb->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
James Smart4f2e66c2012-05-09 21:17:07 -04002690 return cmd_iocb;
James Smart2a9bf3d2010-06-07 15:24:45 -04002691 }
James Smart3772a992009-05-22 14:50:54 -04002692 }
James Smart3772a992009-05-22 14:50:54 -04002693 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2694 "0372 iotag x%x is out off range: max iotag (x%x)\n",
2695 iotag, phba->sli.last_iotag);
2696 return NULL;
2697}
2698
2699/**
James Smart3621a712009-04-06 18:47:14 -04002700 * lpfc_sli_process_sol_iocb - process solicited iocb completion
James Smarte59058c2008-08-24 21:49:00 -04002701 * @phba: Pointer to HBA context object.
2702 * @pring: Pointer to driver SLI ring object.
2703 * @saveq: Pointer to the response iocb to be processed.
2704 *
2705 * This function is called by the ring event handler for non-fcp
2706 * rings when there is a new response iocb in the response ring.
2707 * The caller is not required to hold any locks. This function
2708 * gets the command iocb associated with the response iocb and
2709 * calls the completion handler for the command iocb. If there
2710 * is no completion handler, the function will free the resources
2711 * associated with command iocb. If the response iocb is for
2712 * an already aborted command iocb, the status of the completion
2713 * is changed to IOSTAT_LOCAL_REJECT/IOERR_SLI_ABORTED.
2714 * This function always returns 1.
2715 **/
dea31012005-04-17 16:05:31 -05002716static int
James Smart2e0fef82007-06-17 19:56:36 -05002717lpfc_sli_process_sol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
dea31012005-04-17 16:05:31 -05002718 struct lpfc_iocbq *saveq)
2719{
James Smart2e0fef82007-06-17 19:56:36 -05002720 struct lpfc_iocbq *cmdiocbp;
dea31012005-04-17 16:05:31 -05002721 int rc = 1;
2722 unsigned long iflag;
2723
2724 /* Based on the iotag field, get the cmd IOCB from the txcmplq */
James Smart2e0fef82007-06-17 19:56:36 -05002725 spin_lock_irqsave(&phba->hbalock, iflag);
James Bottomley604a3e32005-10-29 10:28:33 -05002726 cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring, saveq);
James Smart2e0fef82007-06-17 19:56:36 -05002727 spin_unlock_irqrestore(&phba->hbalock, iflag);
2728
dea31012005-04-17 16:05:31 -05002729 if (cmdiocbp) {
2730 if (cmdiocbp->iocb_cmpl) {
2731 /*
James Smartea2151b2008-09-07 11:52:10 -04002732 * If an ELS command failed send an event to mgmt
2733 * application.
2734 */
2735 if (saveq->iocb.ulpStatus &&
2736 (pring->ringno == LPFC_ELS_RING) &&
2737 (cmdiocbp->iocb.ulpCommand ==
2738 CMD_ELS_REQUEST64_CR))
2739 lpfc_send_els_failure_event(phba,
2740 cmdiocbp, saveq);
2741
2742 /*
dea31012005-04-17 16:05:31 -05002743 * Post all ELS completions to the worker thread.
2744 * All other are passed to the completion callback.
2745 */
2746 if (pring->ringno == LPFC_ELS_RING) {
James Smart341af102010-01-26 23:07:37 -05002747 if ((phba->sli_rev < LPFC_SLI_REV4) &&
2748 (cmdiocbp->iocb_flag &
2749 LPFC_DRIVER_ABORTED)) {
2750 spin_lock_irqsave(&phba->hbalock,
2751 iflag);
James Smart07951072007-04-25 09:51:38 -04002752 cmdiocbp->iocb_flag &=
2753 ~LPFC_DRIVER_ABORTED;
James Smart341af102010-01-26 23:07:37 -05002754 spin_unlock_irqrestore(&phba->hbalock,
2755 iflag);
James Smart07951072007-04-25 09:51:38 -04002756 saveq->iocb.ulpStatus =
2757 IOSTAT_LOCAL_REJECT;
2758 saveq->iocb.un.ulpWord[4] =
2759 IOERR_SLI_ABORTED;
James Smart0ff10d42008-01-11 01:52:36 -05002760
2761 /* Firmware could still be in progress
2762 * of DMAing payload, so don't free data
2763 * buffer till after a hbeat.
2764 */
James Smart341af102010-01-26 23:07:37 -05002765 spin_lock_irqsave(&phba->hbalock,
2766 iflag);
James Smart0ff10d42008-01-11 01:52:36 -05002767 saveq->iocb_flag |= LPFC_DELAY_MEM_FREE;
James Smart341af102010-01-26 23:07:37 -05002768 spin_unlock_irqrestore(&phba->hbalock,
2769 iflag);
2770 }
James Smart0f65ff62010-02-26 14:14:23 -05002771 if (phba->sli_rev == LPFC_SLI_REV4) {
2772 if (saveq->iocb_flag &
2773 LPFC_EXCHANGE_BUSY) {
2774 /* Set cmdiocb flag for the
2775 * exchange busy so sgl (xri)
2776 * will not be released until
2777 * the abort xri is received
2778 * from hba.
2779 */
2780 spin_lock_irqsave(
2781 &phba->hbalock, iflag);
2782 cmdiocbp->iocb_flag |=
2783 LPFC_EXCHANGE_BUSY;
2784 spin_unlock_irqrestore(
2785 &phba->hbalock, iflag);
2786 }
2787 if (cmdiocbp->iocb_flag &
2788 LPFC_DRIVER_ABORTED) {
2789 /*
2790 * Clear LPFC_DRIVER_ABORTED
2791 * bit in case it was driver
2792 * initiated abort.
2793 */
2794 spin_lock_irqsave(
2795 &phba->hbalock, iflag);
2796 cmdiocbp->iocb_flag &=
2797 ~LPFC_DRIVER_ABORTED;
2798 spin_unlock_irqrestore(
2799 &phba->hbalock, iflag);
2800 cmdiocbp->iocb.ulpStatus =
2801 IOSTAT_LOCAL_REJECT;
2802 cmdiocbp->iocb.un.ulpWord[4] =
2803 IOERR_ABORT_REQUESTED;
2804 /*
2805 * For SLI4, irsiocb contains
2806 * NO_XRI in sli_xritag, it
2807 * shall not affect releasing
2808 * sgl (xri) process.
2809 */
2810 saveq->iocb.ulpStatus =
2811 IOSTAT_LOCAL_REJECT;
2812 saveq->iocb.un.ulpWord[4] =
2813 IOERR_SLI_ABORTED;
2814 spin_lock_irqsave(
2815 &phba->hbalock, iflag);
2816 saveq->iocb_flag |=
2817 LPFC_DELAY_MEM_FREE;
2818 spin_unlock_irqrestore(
2819 &phba->hbalock, iflag);
2820 }
James Smart07951072007-04-25 09:51:38 -04002821 }
dea31012005-04-17 16:05:31 -05002822 }
James Smart2e0fef82007-06-17 19:56:36 -05002823 (cmdiocbp->iocb_cmpl) (phba, cmdiocbp, saveq);
James Bottomley604a3e32005-10-29 10:28:33 -05002824 } else
2825 lpfc_sli_release_iocbq(phba, cmdiocbp);
dea31012005-04-17 16:05:31 -05002826 } else {
2827 /*
2828 * Unknown initiating command based on the response iotag.
2829 * This could be the case on the ELS ring because of
2830 * lpfc_els_abort().
2831 */
2832 if (pring->ringno != LPFC_ELS_RING) {
2833 /*
2834 * Ring <ringno> handler: unexpected completion IoTag
2835 * <IoTag>
2836 */
James Smarta257bf92009-04-06 18:48:10 -04002837 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002838 "0322 Ring %d handler: "
2839 "unexpected completion IoTag x%x "
2840 "Data: x%x x%x x%x x%x\n",
2841 pring->ringno,
2842 saveq->iocb.ulpIoTag,
2843 saveq->iocb.ulpStatus,
2844 saveq->iocb.un.ulpWord[4],
2845 saveq->iocb.ulpCommand,
2846 saveq->iocb.ulpContext);
dea31012005-04-17 16:05:31 -05002847 }
2848 }
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04002849
dea31012005-04-17 16:05:31 -05002850 return rc;
2851}
2852
James Smarte59058c2008-08-24 21:49:00 -04002853/**
James Smart3621a712009-04-06 18:47:14 -04002854 * lpfc_sli_rsp_pointers_error - Response ring pointer error handler
James Smarte59058c2008-08-24 21:49:00 -04002855 * @phba: Pointer to HBA context object.
2856 * @pring: Pointer to driver SLI ring object.
2857 *
2858 * This function is called from the iocb ring event handlers when
2859 * put pointer is ahead of the get pointer for a ring. This function signal
2860 * an error attention condition to the worker thread and the worker
2861 * thread will transition the HBA to offline state.
2862 **/
James Smart2e0fef82007-06-17 19:56:36 -05002863static void
2864lpfc_sli_rsp_pointers_error(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002865{
James Smart34b02dc2008-08-24 21:49:55 -04002866 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002867 /*
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02002868 * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002869 * rsp ring <portRspMax>
2870 */
2871 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002872 "0312 Ring %d handler: portRspPut %d "
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02002873 "is bigger than rsp ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -04002874 pring->ringno, le32_to_cpu(pgp->rspPutInx),
James Smart7e56aa22012-08-03 12:35:34 -04002875 pring->sli.sli3.numRiocb);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002876
James Smart2e0fef82007-06-17 19:56:36 -05002877 phba->link_state = LPFC_HBA_ERROR;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002878
2879 /*
2880 * All error attention handlers are posted to
2881 * worker thread
2882 */
2883 phba->work_ha |= HA_ERATT;
2884 phba->work_hs = HS_FFER3;
James Smart92d7f7b2007-06-17 19:56:38 -05002885
James Smart5e9d9b82008-06-14 22:52:53 -04002886 lpfc_worker_wake_up(phba);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002887
2888 return;
2889}
2890
James Smarte59058c2008-08-24 21:49:00 -04002891/**
James Smart3621a712009-04-06 18:47:14 -04002892 * lpfc_poll_eratt - Error attention polling timer timeout handler
James Smart93996272008-08-24 21:50:30 -04002893 * @ptr: Pointer to address of HBA context object.
2894 *
2895 * This function is invoked by the Error Attention polling timer when the
2896 * timer times out. It will check the SLI Error Attention register for
2897 * possible attention events. If so, it will post an Error Attention event
2898 * and wake up worker thread to process it. Otherwise, it will set up the
2899 * Error Attention polling timer for the next poll.
2900 **/
2901void lpfc_poll_eratt(unsigned long ptr)
2902{
2903 struct lpfc_hba *phba;
James Smarteb016562014-09-03 12:58:06 -04002904 uint32_t eratt = 0;
James Smartaa6fbb72012-08-03 12:36:03 -04002905 uint64_t sli_intr, cnt;
James Smart93996272008-08-24 21:50:30 -04002906
2907 phba = (struct lpfc_hba *)ptr;
2908
James Smartaa6fbb72012-08-03 12:36:03 -04002909 /* Here we will also keep track of interrupts per sec of the hba */
2910 sli_intr = phba->sli.slistat.sli_intr;
2911
2912 if (phba->sli.slistat.sli_prev_intr > sli_intr)
2913 cnt = (((uint64_t)(-1) - phba->sli.slistat.sli_prev_intr) +
2914 sli_intr);
2915 else
2916 cnt = (sli_intr - phba->sli.slistat.sli_prev_intr);
2917
2918 /* 64-bit integer division not supporte on 32-bit x86 - use do_div */
James Smarteb016562014-09-03 12:58:06 -04002919 do_div(cnt, LPFC_ERATT_POLL_INTERVAL);
James Smartaa6fbb72012-08-03 12:36:03 -04002920 phba->sli.slistat.sli_ips = cnt;
2921
2922 phba->sli.slistat.sli_prev_intr = sli_intr;
2923
James Smart93996272008-08-24 21:50:30 -04002924 /* Check chip HA register for error event */
2925 eratt = lpfc_sli_check_eratt(phba);
2926
2927 if (eratt)
2928 /* Tell the worker thread there is work to do */
2929 lpfc_worker_wake_up(phba);
2930 else
2931 /* Restart the timer for next eratt poll */
James Smart256ec0d2013-04-17 20:14:58 -04002932 mod_timer(&phba->eratt_poll,
2933 jiffies +
2934 msecs_to_jiffies(1000 * LPFC_ERATT_POLL_INTERVAL));
James Smart93996272008-08-24 21:50:30 -04002935 return;
2936}
2937
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002938
James Smarte59058c2008-08-24 21:49:00 -04002939/**
James Smart3621a712009-04-06 18:47:14 -04002940 * lpfc_sli_handle_fast_ring_event - Handle ring events on FCP ring
James Smarte59058c2008-08-24 21:49:00 -04002941 * @phba: Pointer to HBA context object.
2942 * @pring: Pointer to driver SLI ring object.
2943 * @mask: Host attention register mask for this ring.
2944 *
2945 * This function is called from the interrupt context when there is a ring
2946 * event for the fcp ring. The caller does not hold any lock.
2947 * The function processes each response iocb in the response ring until it
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002948 * finds an iocb with LE bit set and chains all the iocbs up to the iocb with
James Smarte59058c2008-08-24 21:49:00 -04002949 * LE bit set. The function will call the completion handler of the command iocb
2950 * if the response iocb indicates a completion for a command iocb or it is
2951 * an abort completion. The function will call lpfc_sli_process_unsol_iocb
2952 * function if this is an unsolicited iocb.
dea31012005-04-17 16:05:31 -05002953 * This routine presumes LPFC_FCP_RING handling and doesn't bother
James Smart45ed1192009-10-02 15:17:02 -04002954 * to check it explicitly.
2955 */
2956int
James Smart2e0fef82007-06-17 19:56:36 -05002957lpfc_sli_handle_fast_ring_event(struct lpfc_hba *phba,
2958 struct lpfc_sli_ring *pring, uint32_t mask)
dea31012005-04-17 16:05:31 -05002959{
James Smart34b02dc2008-08-24 21:49:55 -04002960 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
dea31012005-04-17 16:05:31 -05002961 IOCB_t *irsp = NULL;
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04002962 IOCB_t *entry = NULL;
dea31012005-04-17 16:05:31 -05002963 struct lpfc_iocbq *cmdiocbq = NULL;
2964 struct lpfc_iocbq rspiocbq;
dea31012005-04-17 16:05:31 -05002965 uint32_t status;
2966 uint32_t portRspPut, portRspMax;
2967 int rc = 1;
2968 lpfc_iocb_type type;
2969 unsigned long iflag;
2970 uint32_t rsp_cmpl = 0;
dea31012005-04-17 16:05:31 -05002971
James Smart2e0fef82007-06-17 19:56:36 -05002972 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05002973 pring->stats.iocb_event++;
2974
dea31012005-04-17 16:05:31 -05002975 /*
2976 * The next available response entry should never exceed the maximum
2977 * entries. If it does, treat it as an adapter hardware error.
2978 */
James Smart7e56aa22012-08-03 12:35:34 -04002979 portRspMax = pring->sli.sli3.numRiocb;
dea31012005-04-17 16:05:31 -05002980 portRspPut = le32_to_cpu(pgp->rspPutInx);
2981 if (unlikely(portRspPut >= portRspMax)) {
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002982 lpfc_sli_rsp_pointers_error(phba, pring);
James Smart2e0fef82007-06-17 19:56:36 -05002983 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05002984 return 1;
2985 }
James Smart45ed1192009-10-02 15:17:02 -04002986 if (phba->fcp_ring_in_use) {
2987 spin_unlock_irqrestore(&phba->hbalock, iflag);
2988 return 1;
2989 } else
2990 phba->fcp_ring_in_use = 1;
dea31012005-04-17 16:05:31 -05002991
2992 rmb();
James Smart7e56aa22012-08-03 12:35:34 -04002993 while (pring->sli.sli3.rspidx != portRspPut) {
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04002994 /*
2995 * Fetch an entry off the ring and copy it into a local data
2996 * structure. The copy involves a byte-swap since the
2997 * network byte order and pci byte orders are different.
2998 */
James Smarted957682007-06-17 19:56:37 -05002999 entry = lpfc_resp_iocb(phba, pring);
James Smart858c9f62007-06-17 19:56:39 -05003000 phba->last_completion_time = jiffies;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003001
James Smart7e56aa22012-08-03 12:35:34 -04003002 if (++pring->sli.sli3.rspidx >= portRspMax)
3003 pring->sli.sli3.rspidx = 0;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003004
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04003005 lpfc_sli_pcimem_bcopy((uint32_t *) entry,
3006 (uint32_t *) &rspiocbq.iocb,
James Smarted957682007-06-17 19:56:37 -05003007 phba->iocb_rsp_size);
James Smarta4bc3372006-12-02 13:34:16 -05003008 INIT_LIST_HEAD(&(rspiocbq.list));
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04003009 irsp = &rspiocbq.iocb;
3010
dea31012005-04-17 16:05:31 -05003011 type = lpfc_sli_iocb_cmd_type(irsp->ulpCommand & CMD_IOCB_MASK);
3012 pring->stats.iocb_rsp++;
3013 rsp_cmpl++;
3014
3015 if (unlikely(irsp->ulpStatus)) {
James Smart92d7f7b2007-06-17 19:56:38 -05003016 /*
3017 * If resource errors reported from HBA, reduce
3018 * queuedepths of the SCSI device.
3019 */
3020 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
James Smarte3d2b802012-08-14 14:25:43 -04003021 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
3022 IOERR_NO_RESOURCES)) {
James Smart92d7f7b2007-06-17 19:56:38 -05003023 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart3772a992009-05-22 14:50:54 -04003024 phba->lpfc_rampdown_queue_depth(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05003025 spin_lock_irqsave(&phba->hbalock, iflag);
3026 }
3027
dea31012005-04-17 16:05:31 -05003028 /* Rsp ring <ringno> error: IOCB */
3029 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003030 "0336 Rsp Ring %d error: IOCB Data: "
James Smart92d7f7b2007-06-17 19:56:38 -05003031 "x%x x%x x%x x%x x%x x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04003032 pring->ringno,
James Smart92d7f7b2007-06-17 19:56:38 -05003033 irsp->un.ulpWord[0],
3034 irsp->un.ulpWord[1],
3035 irsp->un.ulpWord[2],
3036 irsp->un.ulpWord[3],
3037 irsp->un.ulpWord[4],
3038 irsp->un.ulpWord[5],
James Smartd7c255b2008-08-24 21:50:00 -04003039 *(uint32_t *)&irsp->un1,
3040 *((uint32_t *)&irsp->un1 + 1));
dea31012005-04-17 16:05:31 -05003041 }
3042
3043 switch (type) {
3044 case LPFC_ABORT_IOCB:
3045 case LPFC_SOL_IOCB:
3046 /*
3047 * Idle exchange closed via ABTS from port. No iocb
3048 * resources need to be recovered.
3049 */
3050 if (unlikely(irsp->ulpCommand == CMD_XRI_ABORTED_CX)) {
James Smartdca94792006-08-01 07:34:08 -04003051 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003052 "0333 IOCB cmd 0x%x"
James Smartdca94792006-08-01 07:34:08 -04003053 " processed. Skipping"
James Smart92d7f7b2007-06-17 19:56:38 -05003054 " completion\n",
James Smartdca94792006-08-01 07:34:08 -04003055 irsp->ulpCommand);
dea31012005-04-17 16:05:31 -05003056 break;
3057 }
3058
James Bottomley604a3e32005-10-29 10:28:33 -05003059 cmdiocbq = lpfc_sli_iocbq_lookup(phba, pring,
3060 &rspiocbq);
James Smart0f65ff62010-02-26 14:14:23 -05003061 if (unlikely(!cmdiocbq))
3062 break;
3063 if (cmdiocbq->iocb_flag & LPFC_DRIVER_ABORTED)
3064 cmdiocbq->iocb_flag &= ~LPFC_DRIVER_ABORTED;
3065 if (cmdiocbq->iocb_cmpl) {
3066 spin_unlock_irqrestore(&phba->hbalock, iflag);
3067 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq,
3068 &rspiocbq);
3069 spin_lock_irqsave(&phba->hbalock, iflag);
3070 }
dea31012005-04-17 16:05:31 -05003071 break;
James Smarta4bc3372006-12-02 13:34:16 -05003072 case LPFC_UNSOL_IOCB:
James Smart2e0fef82007-06-17 19:56:36 -05003073 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smarta4bc3372006-12-02 13:34:16 -05003074 lpfc_sli_process_unsol_iocb(phba, pring, &rspiocbq);
James Smart2e0fef82007-06-17 19:56:36 -05003075 spin_lock_irqsave(&phba->hbalock, iflag);
James Smarta4bc3372006-12-02 13:34:16 -05003076 break;
dea31012005-04-17 16:05:31 -05003077 default:
3078 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
3079 char adaptermsg[LPFC_MAX_ADPTMSG];
3080 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
3081 memcpy(&adaptermsg[0], (uint8_t *) irsp,
3082 MAX_MSG_DATA);
Joe Perches898eb712007-10-18 03:06:30 -07003083 dev_warn(&((phba->pcidev)->dev),
3084 "lpfc%d: %s\n",
dea31012005-04-17 16:05:31 -05003085 phba->brd_no, adaptermsg);
3086 } else {
3087 /* Unknown IOCB command */
3088 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003089 "0334 Unknown IOCB command "
James Smart92d7f7b2007-06-17 19:56:38 -05003090 "Data: x%x, x%x x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04003091 type, irsp->ulpCommand,
James Smart92d7f7b2007-06-17 19:56:38 -05003092 irsp->ulpStatus,
3093 irsp->ulpIoTag,
3094 irsp->ulpContext);
dea31012005-04-17 16:05:31 -05003095 }
3096 break;
3097 }
3098
3099 /*
3100 * The response IOCB has been processed. Update the ring
3101 * pointer in SLIM. If the port response put pointer has not
3102 * been updated, sync the pgp->rspPutInx and fetch the new port
3103 * response put pointer.
3104 */
James Smart7e56aa22012-08-03 12:35:34 -04003105 writel(pring->sli.sli3.rspidx,
3106 &phba->host_gp[pring->ringno].rspGetInx);
dea31012005-04-17 16:05:31 -05003107
James Smart7e56aa22012-08-03 12:35:34 -04003108 if (pring->sli.sli3.rspidx == portRspPut)
dea31012005-04-17 16:05:31 -05003109 portRspPut = le32_to_cpu(pgp->rspPutInx);
3110 }
3111
3112 if ((rsp_cmpl > 0) && (mask & HA_R0RE_REQ)) {
3113 pring->stats.iocb_rsp_full++;
3114 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
3115 writel(status, phba->CAregaddr);
3116 readl(phba->CAregaddr);
3117 }
3118 if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
3119 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
3120 pring->stats.iocb_cmd_empty++;
3121
3122 /* Force update of the local copy of cmdGetInx */
James Smart7e56aa22012-08-03 12:35:34 -04003123 pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
dea31012005-04-17 16:05:31 -05003124 lpfc_sli_resume_iocb(phba, pring);
3125
3126 if ((pring->lpfc_sli_cmd_available))
3127 (pring->lpfc_sli_cmd_available) (phba, pring);
3128
3129 }
3130
James Smart45ed1192009-10-02 15:17:02 -04003131 phba->fcp_ring_in_use = 0;
James Smart2e0fef82007-06-17 19:56:36 -05003132 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003133 return rc;
3134}
3135
James Smarte59058c2008-08-24 21:49:00 -04003136/**
James Smart3772a992009-05-22 14:50:54 -04003137 * lpfc_sli_sp_handle_rspiocb - Handle slow-path response iocb
3138 * @phba: Pointer to HBA context object.
3139 * @pring: Pointer to driver SLI ring object.
3140 * @rspiocbp: Pointer to driver response IOCB object.
3141 *
3142 * This function is called from the worker thread when there is a slow-path
3143 * response IOCB to process. This function chains all the response iocbs until
3144 * seeing the iocb with the LE bit set. The function will call
3145 * lpfc_sli_process_sol_iocb function if the response iocb indicates a
3146 * completion of a command iocb. The function will call the
3147 * lpfc_sli_process_unsol_iocb function if this is an unsolicited iocb.
3148 * The function frees the resources or calls the completion handler if this
3149 * iocb is an abort completion. The function returns NULL when the response
3150 * iocb has the LE bit set and all the chained iocbs are processed, otherwise
3151 * this function shall chain the iocb on to the iocb_continueq and return the
3152 * response iocb passed in.
3153 **/
3154static struct lpfc_iocbq *
3155lpfc_sli_sp_handle_rspiocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
3156 struct lpfc_iocbq *rspiocbp)
3157{
3158 struct lpfc_iocbq *saveq;
3159 struct lpfc_iocbq *cmdiocbp;
3160 struct lpfc_iocbq *next_iocb;
3161 IOCB_t *irsp = NULL;
3162 uint32_t free_saveq;
3163 uint8_t iocb_cmd_type;
3164 lpfc_iocb_type type;
3165 unsigned long iflag;
3166 int rc;
3167
3168 spin_lock_irqsave(&phba->hbalock, iflag);
3169 /* First add the response iocb to the countinueq list */
3170 list_add_tail(&rspiocbp->list, &(pring->iocb_continueq));
3171 pring->iocb_continueq_cnt++;
3172
Justin P. Mattock70f23fd2011-05-10 10:16:21 +02003173 /* Now, determine whether the list is completed for processing */
James Smart3772a992009-05-22 14:50:54 -04003174 irsp = &rspiocbp->iocb;
3175 if (irsp->ulpLe) {
3176 /*
3177 * By default, the driver expects to free all resources
3178 * associated with this iocb completion.
3179 */
3180 free_saveq = 1;
3181 saveq = list_get_first(&pring->iocb_continueq,
3182 struct lpfc_iocbq, list);
3183 irsp = &(saveq->iocb);
3184 list_del_init(&pring->iocb_continueq);
3185 pring->iocb_continueq_cnt = 0;
3186
3187 pring->stats.iocb_rsp++;
3188
3189 /*
3190 * If resource errors reported from HBA, reduce
3191 * queuedepths of the SCSI device.
3192 */
3193 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
James Smarte3d2b802012-08-14 14:25:43 -04003194 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
3195 IOERR_NO_RESOURCES)) {
James Smart3772a992009-05-22 14:50:54 -04003196 spin_unlock_irqrestore(&phba->hbalock, iflag);
3197 phba->lpfc_rampdown_queue_depth(phba);
3198 spin_lock_irqsave(&phba->hbalock, iflag);
3199 }
3200
3201 if (irsp->ulpStatus) {
3202 /* Rsp ring <ringno> error: IOCB */
3203 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
3204 "0328 Rsp Ring %d error: "
3205 "IOCB Data: "
3206 "x%x x%x x%x x%x "
3207 "x%x x%x x%x x%x "
3208 "x%x x%x x%x x%x "
3209 "x%x x%x x%x x%x\n",
3210 pring->ringno,
3211 irsp->un.ulpWord[0],
3212 irsp->un.ulpWord[1],
3213 irsp->un.ulpWord[2],
3214 irsp->un.ulpWord[3],
3215 irsp->un.ulpWord[4],
3216 irsp->un.ulpWord[5],
3217 *(((uint32_t *) irsp) + 6),
3218 *(((uint32_t *) irsp) + 7),
3219 *(((uint32_t *) irsp) + 8),
3220 *(((uint32_t *) irsp) + 9),
3221 *(((uint32_t *) irsp) + 10),
3222 *(((uint32_t *) irsp) + 11),
3223 *(((uint32_t *) irsp) + 12),
3224 *(((uint32_t *) irsp) + 13),
3225 *(((uint32_t *) irsp) + 14),
3226 *(((uint32_t *) irsp) + 15));
3227 }
3228
3229 /*
3230 * Fetch the IOCB command type and call the correct completion
3231 * routine. Solicited and Unsolicited IOCBs on the ELS ring
3232 * get freed back to the lpfc_iocb_list by the discovery
3233 * kernel thread.
3234 */
3235 iocb_cmd_type = irsp->ulpCommand & CMD_IOCB_MASK;
3236 type = lpfc_sli_iocb_cmd_type(iocb_cmd_type);
3237 switch (type) {
3238 case LPFC_SOL_IOCB:
3239 spin_unlock_irqrestore(&phba->hbalock, iflag);
3240 rc = lpfc_sli_process_sol_iocb(phba, pring, saveq);
3241 spin_lock_irqsave(&phba->hbalock, iflag);
3242 break;
3243
3244 case LPFC_UNSOL_IOCB:
3245 spin_unlock_irqrestore(&phba->hbalock, iflag);
3246 rc = lpfc_sli_process_unsol_iocb(phba, pring, saveq);
3247 spin_lock_irqsave(&phba->hbalock, iflag);
3248 if (!rc)
3249 free_saveq = 0;
3250 break;
3251
3252 case LPFC_ABORT_IOCB:
3253 cmdiocbp = NULL;
3254 if (irsp->ulpCommand != CMD_XRI_ABORTED_CX)
3255 cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring,
3256 saveq);
3257 if (cmdiocbp) {
3258 /* Call the specified completion routine */
3259 if (cmdiocbp->iocb_cmpl) {
3260 spin_unlock_irqrestore(&phba->hbalock,
3261 iflag);
3262 (cmdiocbp->iocb_cmpl)(phba, cmdiocbp,
3263 saveq);
3264 spin_lock_irqsave(&phba->hbalock,
3265 iflag);
3266 } else
3267 __lpfc_sli_release_iocbq(phba,
3268 cmdiocbp);
3269 }
3270 break;
3271
3272 case LPFC_UNKNOWN_IOCB:
3273 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
3274 char adaptermsg[LPFC_MAX_ADPTMSG];
3275 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
3276 memcpy(&adaptermsg[0], (uint8_t *)irsp,
3277 MAX_MSG_DATA);
3278 dev_warn(&((phba->pcidev)->dev),
3279 "lpfc%d: %s\n",
3280 phba->brd_no, adaptermsg);
3281 } else {
3282 /* Unknown IOCB command */
3283 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3284 "0335 Unknown IOCB "
3285 "command Data: x%x "
3286 "x%x x%x x%x\n",
3287 irsp->ulpCommand,
3288 irsp->ulpStatus,
3289 irsp->ulpIoTag,
3290 irsp->ulpContext);
3291 }
3292 break;
3293 }
3294
3295 if (free_saveq) {
3296 list_for_each_entry_safe(rspiocbp, next_iocb,
3297 &saveq->list, list) {
James Smart61f35bf2013-05-31 17:03:48 -04003298 list_del_init(&rspiocbp->list);
James Smart3772a992009-05-22 14:50:54 -04003299 __lpfc_sli_release_iocbq(phba, rspiocbp);
3300 }
3301 __lpfc_sli_release_iocbq(phba, saveq);
3302 }
3303 rspiocbp = NULL;
3304 }
3305 spin_unlock_irqrestore(&phba->hbalock, iflag);
3306 return rspiocbp;
3307}
3308
3309/**
3310 * lpfc_sli_handle_slow_ring_event - Wrapper func for handling slow-path iocbs
James Smarte59058c2008-08-24 21:49:00 -04003311 * @phba: Pointer to HBA context object.
3312 * @pring: Pointer to driver SLI ring object.
3313 * @mask: Host attention register mask for this ring.
3314 *
James Smart3772a992009-05-22 14:50:54 -04003315 * This routine wraps the actual slow_ring event process routine from the
3316 * API jump table function pointer from the lpfc_hba struct.
James Smarte59058c2008-08-24 21:49:00 -04003317 **/
James Smart3772a992009-05-22 14:50:54 -04003318void
James Smart2e0fef82007-06-17 19:56:36 -05003319lpfc_sli_handle_slow_ring_event(struct lpfc_hba *phba,
3320 struct lpfc_sli_ring *pring, uint32_t mask)
dea31012005-04-17 16:05:31 -05003321{
James Smart3772a992009-05-22 14:50:54 -04003322 phba->lpfc_sli_handle_slow_ring_event(phba, pring, mask);
3323}
3324
3325/**
3326 * lpfc_sli_handle_slow_ring_event_s3 - Handle SLI3 ring event for non-FCP rings
3327 * @phba: Pointer to HBA context object.
3328 * @pring: Pointer to driver SLI ring object.
3329 * @mask: Host attention register mask for this ring.
3330 *
3331 * This function is called from the worker thread when there is a ring event
3332 * for non-fcp rings. The caller does not hold any lock. The function will
3333 * remove each response iocb in the response ring and calls the handle
3334 * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
3335 **/
3336static void
3337lpfc_sli_handle_slow_ring_event_s3(struct lpfc_hba *phba,
3338 struct lpfc_sli_ring *pring, uint32_t mask)
3339{
James Smart34b02dc2008-08-24 21:49:55 -04003340 struct lpfc_pgp *pgp;
dea31012005-04-17 16:05:31 -05003341 IOCB_t *entry;
3342 IOCB_t *irsp = NULL;
3343 struct lpfc_iocbq *rspiocbp = NULL;
dea31012005-04-17 16:05:31 -05003344 uint32_t portRspPut, portRspMax;
dea31012005-04-17 16:05:31 -05003345 unsigned long iflag;
James Smart3772a992009-05-22 14:50:54 -04003346 uint32_t status;
dea31012005-04-17 16:05:31 -05003347
James Smart34b02dc2008-08-24 21:49:55 -04003348 pgp = &phba->port_gp[pring->ringno];
James Smart2e0fef82007-06-17 19:56:36 -05003349 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003350 pring->stats.iocb_event++;
3351
dea31012005-04-17 16:05:31 -05003352 /*
3353 * The next available response entry should never exceed the maximum
3354 * entries. If it does, treat it as an adapter hardware error.
3355 */
James Smart7e56aa22012-08-03 12:35:34 -04003356 portRspMax = pring->sli.sli3.numRiocb;
dea31012005-04-17 16:05:31 -05003357 portRspPut = le32_to_cpu(pgp->rspPutInx);
3358 if (portRspPut >= portRspMax) {
3359 /*
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02003360 * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
dea31012005-04-17 16:05:31 -05003361 * rsp ring <portRspMax>
3362 */
James Smarted957682007-06-17 19:56:37 -05003363 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003364 "0303 Ring %d handler: portRspPut %d "
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02003365 "is bigger than rsp ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -04003366 pring->ringno, portRspPut, portRspMax);
dea31012005-04-17 16:05:31 -05003367
James Smart2e0fef82007-06-17 19:56:36 -05003368 phba->link_state = LPFC_HBA_ERROR;
3369 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003370
3371 phba->work_hs = HS_FFER3;
3372 lpfc_handle_eratt(phba);
3373
James Smart3772a992009-05-22 14:50:54 -04003374 return;
dea31012005-04-17 16:05:31 -05003375 }
3376
3377 rmb();
James Smart7e56aa22012-08-03 12:35:34 -04003378 while (pring->sli.sli3.rspidx != portRspPut) {
dea31012005-04-17 16:05:31 -05003379 /*
3380 * Build a completion list and call the appropriate handler.
3381 * The process is to get the next available response iocb, get
3382 * a free iocb from the list, copy the response data into the
3383 * free iocb, insert to the continuation list, and update the
3384 * next response index to slim. This process makes response
3385 * iocb's in the ring available to DMA as fast as possible but
3386 * pays a penalty for a copy operation. Since the iocb is
3387 * only 32 bytes, this penalty is considered small relative to
3388 * the PCI reads for register values and a slim write. When
3389 * the ulpLe field is set, the entire Command has been
3390 * received.
3391 */
James Smarted957682007-06-17 19:56:37 -05003392 entry = lpfc_resp_iocb(phba, pring);
3393
James Smart858c9f62007-06-17 19:56:39 -05003394 phba->last_completion_time = jiffies;
James Smart2e0fef82007-06-17 19:56:36 -05003395 rspiocbp = __lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -05003396 if (rspiocbp == NULL) {
3397 printk(KERN_ERR "%s: out of buffers! Failing "
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07003398 "completion.\n", __func__);
dea31012005-04-17 16:05:31 -05003399 break;
3400 }
3401
James Smarted957682007-06-17 19:56:37 -05003402 lpfc_sli_pcimem_bcopy(entry, &rspiocbp->iocb,
3403 phba->iocb_rsp_size);
dea31012005-04-17 16:05:31 -05003404 irsp = &rspiocbp->iocb;
3405
James Smart7e56aa22012-08-03 12:35:34 -04003406 if (++pring->sli.sli3.rspidx >= portRspMax)
3407 pring->sli.sli3.rspidx = 0;
dea31012005-04-17 16:05:31 -05003408
James Smarta58cbd52007-08-02 11:09:43 -04003409 if (pring->ringno == LPFC_ELS_RING) {
3410 lpfc_debugfs_slow_ring_trc(phba,
3411 "IOCB rsp ring: wd4:x%08x wd6:x%08x wd7:x%08x",
3412 *(((uint32_t *) irsp) + 4),
3413 *(((uint32_t *) irsp) + 6),
3414 *(((uint32_t *) irsp) + 7));
3415 }
3416
James Smart7e56aa22012-08-03 12:35:34 -04003417 writel(pring->sli.sli3.rspidx,
3418 &phba->host_gp[pring->ringno].rspGetInx);
dea31012005-04-17 16:05:31 -05003419
James Smart3772a992009-05-22 14:50:54 -04003420 spin_unlock_irqrestore(&phba->hbalock, iflag);
3421 /* Handle the response IOCB */
3422 rspiocbp = lpfc_sli_sp_handle_rspiocb(phba, pring, rspiocbp);
3423 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003424
3425 /*
3426 * If the port response put pointer has not been updated, sync
3427 * the pgp->rspPutInx in the MAILBOX_tand fetch the new port
3428 * response put pointer.
3429 */
James Smart7e56aa22012-08-03 12:35:34 -04003430 if (pring->sli.sli3.rspidx == portRspPut) {
dea31012005-04-17 16:05:31 -05003431 portRspPut = le32_to_cpu(pgp->rspPutInx);
3432 }
James Smart7e56aa22012-08-03 12:35:34 -04003433 } /* while (pring->sli.sli3.rspidx != portRspPut) */
dea31012005-04-17 16:05:31 -05003434
James Smart92d7f7b2007-06-17 19:56:38 -05003435 if ((rspiocbp != NULL) && (mask & HA_R0RE_REQ)) {
dea31012005-04-17 16:05:31 -05003436 /* At least one response entry has been freed */
3437 pring->stats.iocb_rsp_full++;
3438 /* SET RxRE_RSP in Chip Att register */
3439 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
3440 writel(status, phba->CAregaddr);
3441 readl(phba->CAregaddr); /* flush */
3442 }
3443 if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
3444 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
3445 pring->stats.iocb_cmd_empty++;
3446
3447 /* Force update of the local copy of cmdGetInx */
James Smart7e56aa22012-08-03 12:35:34 -04003448 pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
dea31012005-04-17 16:05:31 -05003449 lpfc_sli_resume_iocb(phba, pring);
3450
3451 if ((pring->lpfc_sli_cmd_available))
3452 (pring->lpfc_sli_cmd_available) (phba, pring);
3453
3454 }
3455
James Smart2e0fef82007-06-17 19:56:36 -05003456 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart3772a992009-05-22 14:50:54 -04003457 return;
dea31012005-04-17 16:05:31 -05003458}
3459
James Smarte59058c2008-08-24 21:49:00 -04003460/**
James Smart4f774512009-05-22 14:52:35 -04003461 * lpfc_sli_handle_slow_ring_event_s4 - Handle SLI4 slow-path els events
3462 * @phba: Pointer to HBA context object.
3463 * @pring: Pointer to driver SLI ring object.
3464 * @mask: Host attention register mask for this ring.
3465 *
3466 * This function is called from the worker thread when there is a pending
3467 * ELS response iocb on the driver internal slow-path response iocb worker
3468 * queue. The caller does not hold any lock. The function will remove each
3469 * response iocb from the response worker queue and calls the handle
3470 * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
3471 **/
3472static void
3473lpfc_sli_handle_slow_ring_event_s4(struct lpfc_hba *phba,
3474 struct lpfc_sli_ring *pring, uint32_t mask)
3475{
3476 struct lpfc_iocbq *irspiocbq;
James Smart4d9ab992009-10-02 15:16:39 -04003477 struct hbq_dmabuf *dmabuf;
3478 struct lpfc_cq_event *cq_event;
James Smart4f774512009-05-22 14:52:35 -04003479 unsigned long iflag;
3480
James Smart45ed1192009-10-02 15:17:02 -04003481 spin_lock_irqsave(&phba->hbalock, iflag);
3482 phba->hba_flag &= ~HBA_SP_QUEUE_EVT;
3483 spin_unlock_irqrestore(&phba->hbalock, iflag);
3484 while (!list_empty(&phba->sli4_hba.sp_queue_event)) {
James Smart4f774512009-05-22 14:52:35 -04003485 /* Get the response iocb from the head of work queue */
3486 spin_lock_irqsave(&phba->hbalock, iflag);
James Smart45ed1192009-10-02 15:17:02 -04003487 list_remove_head(&phba->sli4_hba.sp_queue_event,
James Smart4d9ab992009-10-02 15:16:39 -04003488 cq_event, struct lpfc_cq_event, list);
James Smart4f774512009-05-22 14:52:35 -04003489 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart4d9ab992009-10-02 15:16:39 -04003490
3491 switch (bf_get(lpfc_wcqe_c_code, &cq_event->cqe.wcqe_cmpl)) {
3492 case CQE_CODE_COMPL_WQE:
3493 irspiocbq = container_of(cq_event, struct lpfc_iocbq,
3494 cq_event);
James Smart45ed1192009-10-02 15:17:02 -04003495 /* Translate ELS WCQE to response IOCBQ */
3496 irspiocbq = lpfc_sli4_els_wcqe_to_rspiocbq(phba,
3497 irspiocbq);
3498 if (irspiocbq)
3499 lpfc_sli_sp_handle_rspiocb(phba, pring,
3500 irspiocbq);
James Smart4d9ab992009-10-02 15:16:39 -04003501 break;
3502 case CQE_CODE_RECEIVE:
James Smart7851fe22011-07-22 18:36:52 -04003503 case CQE_CODE_RECEIVE_V1:
James Smart4d9ab992009-10-02 15:16:39 -04003504 dmabuf = container_of(cq_event, struct hbq_dmabuf,
3505 cq_event);
3506 lpfc_sli4_handle_received_buffer(phba, dmabuf);
3507 break;
3508 default:
3509 break;
3510 }
James Smart4f774512009-05-22 14:52:35 -04003511 }
3512}
3513
3514/**
James Smart3621a712009-04-06 18:47:14 -04003515 * lpfc_sli_abort_iocb_ring - Abort all iocbs in the ring
James Smarte59058c2008-08-24 21:49:00 -04003516 * @phba: Pointer to HBA context object.
3517 * @pring: Pointer to driver SLI ring object.
3518 *
3519 * This function aborts all iocbs in the given ring and frees all the iocb
3520 * objects in txq. This function issues an abort iocb for all the iocb commands
3521 * in txcmplq. The iocbs in the txcmplq is not guaranteed to complete before
3522 * the return of this function. The caller is not required to hold any locks.
3523 **/
James Smart2e0fef82007-06-17 19:56:36 -05003524void
dea31012005-04-17 16:05:31 -05003525lpfc_sli_abort_iocb_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
3526{
James Smart2534ba72007-04-25 09:52:20 -04003527 LIST_HEAD(completions);
dea31012005-04-17 16:05:31 -05003528 struct lpfc_iocbq *iocb, *next_iocb;
dea31012005-04-17 16:05:31 -05003529
James Smart92d7f7b2007-06-17 19:56:38 -05003530 if (pring->ringno == LPFC_ELS_RING) {
3531 lpfc_fabric_abort_hba(phba);
3532 }
3533
dea31012005-04-17 16:05:31 -05003534 /* Error everything on txq and txcmplq
3535 * First do the txq.
3536 */
James Smartdb55fba2014-04-04 13:52:02 -04003537 if (phba->sli_rev >= LPFC_SLI_REV4) {
3538 spin_lock_irq(&pring->ring_lock);
3539 list_splice_init(&pring->txq, &completions);
3540 pring->txq_cnt = 0;
3541 spin_unlock_irq(&pring->ring_lock);
dea31012005-04-17 16:05:31 -05003542
James Smartdb55fba2014-04-04 13:52:02 -04003543 spin_lock_irq(&phba->hbalock);
3544 /* Next issue ABTS for everything on the txcmplq */
3545 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
3546 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
3547 spin_unlock_irq(&phba->hbalock);
3548 } else {
3549 spin_lock_irq(&phba->hbalock);
3550 list_splice_init(&pring->txq, &completions);
3551 pring->txq_cnt = 0;
James Smart2534ba72007-04-25 09:52:20 -04003552
James Smartdb55fba2014-04-04 13:52:02 -04003553 /* Next issue ABTS for everything on the txcmplq */
3554 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
3555 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
3556 spin_unlock_irq(&phba->hbalock);
3557 }
James Smart2534ba72007-04-25 09:52:20 -04003558
James Smarta257bf92009-04-06 18:48:10 -04003559 /* Cancel all the IOCBs from the completions list */
3560 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
3561 IOERR_SLI_ABORTED);
dea31012005-04-17 16:05:31 -05003562}
3563
James Smarte59058c2008-08-24 21:49:00 -04003564/**
James Smartdb55fba2014-04-04 13:52:02 -04003565 * lpfc_sli_abort_fcp_rings - Abort all iocbs in all FCP rings
3566 * @phba: Pointer to HBA context object.
3567 * @pring: Pointer to driver SLI ring object.
3568 *
3569 * This function aborts all iocbs in FCP rings and frees all the iocb
3570 * objects in txq. This function issues an abort iocb for all the iocb commands
3571 * in txcmplq. The iocbs in the txcmplq is not guaranteed to complete before
3572 * the return of this function. The caller is not required to hold any locks.
3573 **/
3574void
3575lpfc_sli_abort_fcp_rings(struct lpfc_hba *phba)
3576{
3577 struct lpfc_sli *psli = &phba->sli;
3578 struct lpfc_sli_ring *pring;
3579 uint32_t i;
3580
3581 /* Look on all the FCP Rings for the iotag */
3582 if (phba->sli_rev >= LPFC_SLI_REV4) {
3583 for (i = 0; i < phba->cfg_fcp_io_channel; i++) {
3584 pring = &psli->ring[i + MAX_SLI3_CONFIGURED_RINGS];
3585 lpfc_sli_abort_iocb_ring(phba, pring);
3586 }
3587 } else {
3588 pring = &psli->ring[psli->fcp_ring];
3589 lpfc_sli_abort_iocb_ring(phba, pring);
3590 }
3591}
3592
3593
3594/**
James Smart3621a712009-04-06 18:47:14 -04003595 * lpfc_sli_flush_fcp_rings - flush all iocbs in the fcp ring
James Smarta8e497d2008-08-24 21:50:11 -04003596 * @phba: Pointer to HBA context object.
3597 *
3598 * This function flushes all iocbs in the fcp ring and frees all the iocb
3599 * objects in txq and txcmplq. This function will not issue abort iocbs
3600 * for all the iocb commands in txcmplq, they will just be returned with
3601 * IOERR_SLI_DOWN. This function is invoked with EEH when device's PCI
3602 * slot has been permanently disabled.
3603 **/
3604void
3605lpfc_sli_flush_fcp_rings(struct lpfc_hba *phba)
3606{
3607 LIST_HEAD(txq);
3608 LIST_HEAD(txcmplq);
James Smarta8e497d2008-08-24 21:50:11 -04003609 struct lpfc_sli *psli = &phba->sli;
3610 struct lpfc_sli_ring *pring;
James Smartdb55fba2014-04-04 13:52:02 -04003611 uint32_t i;
James Smarta8e497d2008-08-24 21:50:11 -04003612
3613 spin_lock_irq(&phba->hbalock);
James Smart4f2e66c2012-05-09 21:17:07 -04003614 /* Indicate the I/O queues are flushed */
3615 phba->hba_flag |= HBA_FCP_IOQ_FLUSH;
James Smarta8e497d2008-08-24 21:50:11 -04003616 spin_unlock_irq(&phba->hbalock);
3617
James Smartdb55fba2014-04-04 13:52:02 -04003618 /* Look on all the FCP Rings for the iotag */
3619 if (phba->sli_rev >= LPFC_SLI_REV4) {
3620 for (i = 0; i < phba->cfg_fcp_io_channel; i++) {
3621 pring = &psli->ring[i + MAX_SLI3_CONFIGURED_RINGS];
James Smarta8e497d2008-08-24 21:50:11 -04003622
James Smartdb55fba2014-04-04 13:52:02 -04003623 spin_lock_irq(&pring->ring_lock);
3624 /* Retrieve everything on txq */
3625 list_splice_init(&pring->txq, &txq);
3626 /* Retrieve everything on the txcmplq */
3627 list_splice_init(&pring->txcmplq, &txcmplq);
3628 pring->txq_cnt = 0;
3629 pring->txcmplq_cnt = 0;
3630 spin_unlock_irq(&pring->ring_lock);
3631
3632 /* Flush the txq */
3633 lpfc_sli_cancel_iocbs(phba, &txq,
3634 IOSTAT_LOCAL_REJECT,
3635 IOERR_SLI_DOWN);
3636 /* Flush the txcmpq */
3637 lpfc_sli_cancel_iocbs(phba, &txcmplq,
3638 IOSTAT_LOCAL_REJECT,
3639 IOERR_SLI_DOWN);
3640 }
3641 } else {
3642 pring = &psli->ring[psli->fcp_ring];
3643
3644 spin_lock_irq(&phba->hbalock);
3645 /* Retrieve everything on txq */
3646 list_splice_init(&pring->txq, &txq);
3647 /* Retrieve everything on the txcmplq */
3648 list_splice_init(&pring->txcmplq, &txcmplq);
3649 pring->txq_cnt = 0;
3650 pring->txcmplq_cnt = 0;
3651 spin_unlock_irq(&phba->hbalock);
3652
3653 /* Flush the txq */
3654 lpfc_sli_cancel_iocbs(phba, &txq, IOSTAT_LOCAL_REJECT,
3655 IOERR_SLI_DOWN);
3656 /* Flush the txcmpq */
3657 lpfc_sli_cancel_iocbs(phba, &txcmplq, IOSTAT_LOCAL_REJECT,
3658 IOERR_SLI_DOWN);
3659 }
James Smarta8e497d2008-08-24 21:50:11 -04003660}
3661
3662/**
James Smart3772a992009-05-22 14:50:54 -04003663 * lpfc_sli_brdready_s3 - Check for sli3 host ready status
James Smarte59058c2008-08-24 21:49:00 -04003664 * @phba: Pointer to HBA context object.
3665 * @mask: Bit mask to be checked.
3666 *
3667 * This function reads the host status register and compares
3668 * with the provided bit mask to check if HBA completed
3669 * the restart. This function will wait in a loop for the
3670 * HBA to complete restart. If the HBA does not restart within
3671 * 15 iterations, the function will reset the HBA again. The
3672 * function returns 1 when HBA fail to restart otherwise returns
3673 * zero.
3674 **/
James Smart3772a992009-05-22 14:50:54 -04003675static int
3676lpfc_sli_brdready_s3(struct lpfc_hba *phba, uint32_t mask)
dea31012005-04-17 16:05:31 -05003677{
Jamie Wellnitz41415862006-02-28 19:25:27 -05003678 uint32_t status;
3679 int i = 0;
3680 int retval = 0;
dea31012005-04-17 16:05:31 -05003681
Jamie Wellnitz41415862006-02-28 19:25:27 -05003682 /* Read the HBA Host Status Register */
James Smart9940b972011-03-11 16:06:12 -05003683 if (lpfc_readl(phba->HSregaddr, &status))
3684 return 1;
dea31012005-04-17 16:05:31 -05003685
Jamie Wellnitz41415862006-02-28 19:25:27 -05003686 /*
3687 * Check status register every 100ms for 5 retries, then every
3688 * 500ms for 5, then every 2.5 sec for 5, then reset board and
3689 * every 2.5 sec for 4.
3690 * Break our of the loop if errors occurred during init.
3691 */
3692 while (((status & mask) != mask) &&
3693 !(status & HS_FFERM) &&
3694 i++ < 20) {
dea31012005-04-17 16:05:31 -05003695
Jamie Wellnitz41415862006-02-28 19:25:27 -05003696 if (i <= 5)
3697 msleep(10);
3698 else if (i <= 10)
3699 msleep(500);
3700 else
3701 msleep(2500);
dea31012005-04-17 16:05:31 -05003702
Jamie Wellnitz41415862006-02-28 19:25:27 -05003703 if (i == 15) {
James Smart2e0fef82007-06-17 19:56:36 -05003704 /* Do post */
James Smart92d7f7b2007-06-17 19:56:38 -05003705 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003706 lpfc_sli_brdrestart(phba);
3707 }
3708 /* Read the HBA Host Status Register */
James Smart9940b972011-03-11 16:06:12 -05003709 if (lpfc_readl(phba->HSregaddr, &status)) {
3710 retval = 1;
3711 break;
3712 }
dea31012005-04-17 16:05:31 -05003713 }
dea31012005-04-17 16:05:31 -05003714
Jamie Wellnitz41415862006-02-28 19:25:27 -05003715 /* Check to see if any errors occurred during init */
3716 if ((status & HS_FFERM) || (i >= 20)) {
James Smarte40a02c2010-02-26 14:13:54 -05003717 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3718 "2751 Adapter failed to restart, "
3719 "status reg x%x, FW Data: A8 x%x AC x%x\n",
3720 status,
3721 readl(phba->MBslimaddr + 0xa8),
3722 readl(phba->MBslimaddr + 0xac));
James Smart2e0fef82007-06-17 19:56:36 -05003723 phba->link_state = LPFC_HBA_ERROR;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003724 retval = 1;
3725 }
dea31012005-04-17 16:05:31 -05003726
Jamie Wellnitz41415862006-02-28 19:25:27 -05003727 return retval;
dea31012005-04-17 16:05:31 -05003728}
3729
James Smartda0436e2009-05-22 14:51:39 -04003730/**
3731 * lpfc_sli_brdready_s4 - Check for sli4 host ready status
3732 * @phba: Pointer to HBA context object.
3733 * @mask: Bit mask to be checked.
3734 *
3735 * This function checks the host status register to check if HBA is
3736 * ready. This function will wait in a loop for the HBA to be ready
3737 * If the HBA is not ready , the function will will reset the HBA PCI
3738 * function again. The function returns 1 when HBA fail to be ready
3739 * otherwise returns zero.
3740 **/
3741static int
3742lpfc_sli_brdready_s4(struct lpfc_hba *phba, uint32_t mask)
3743{
3744 uint32_t status;
3745 int retval = 0;
3746
3747 /* Read the HBA Host Status Register */
3748 status = lpfc_sli4_post_status_check(phba);
3749
3750 if (status) {
3751 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
3752 lpfc_sli_brdrestart(phba);
3753 status = lpfc_sli4_post_status_check(phba);
3754 }
3755
3756 /* Check to see if any errors occurred during init */
3757 if (status) {
3758 phba->link_state = LPFC_HBA_ERROR;
3759 retval = 1;
3760 } else
3761 phba->sli4_hba.intr_enable = 0;
3762
3763 return retval;
3764}
3765
3766/**
3767 * lpfc_sli_brdready - Wrapper func for checking the hba readyness
3768 * @phba: Pointer to HBA context object.
3769 * @mask: Bit mask to be checked.
3770 *
3771 * This routine wraps the actual SLI3 or SLI4 hba readyness check routine
3772 * from the API jump table function pointer from the lpfc_hba struct.
3773 **/
3774int
3775lpfc_sli_brdready(struct lpfc_hba *phba, uint32_t mask)
3776{
3777 return phba->lpfc_sli_brdready(phba, mask);
3778}
3779
James Smart92908312006-03-07 15:04:13 -05003780#define BARRIER_TEST_PATTERN (0xdeadbeef)
3781
James Smarte59058c2008-08-24 21:49:00 -04003782/**
James Smart3621a712009-04-06 18:47:14 -04003783 * lpfc_reset_barrier - Make HBA ready for HBA reset
James Smarte59058c2008-08-24 21:49:00 -04003784 * @phba: Pointer to HBA context object.
3785 *
James Smart1b511972011-12-13 13:23:09 -05003786 * This function is called before resetting an HBA. This function is called
3787 * with hbalock held and requests HBA to quiesce DMAs before a reset.
James Smarte59058c2008-08-24 21:49:00 -04003788 **/
James Smart2e0fef82007-06-17 19:56:36 -05003789void lpfc_reset_barrier(struct lpfc_hba *phba)
James Smart92908312006-03-07 15:04:13 -05003790{
James Smart65a29c12006-07-06 15:50:50 -04003791 uint32_t __iomem *resp_buf;
3792 uint32_t __iomem *mbox_buf;
James Smart92908312006-03-07 15:04:13 -05003793 volatile uint32_t mbox;
James Smart9940b972011-03-11 16:06:12 -05003794 uint32_t hc_copy, ha_copy, resp_data;
James Smart92908312006-03-07 15:04:13 -05003795 int i;
3796 uint8_t hdrtype;
3797
3798 pci_read_config_byte(phba->pcidev, PCI_HEADER_TYPE, &hdrtype);
3799 if (hdrtype != 0x80 ||
3800 (FC_JEDEC_ID(phba->vpd.rev.biuRev) != HELIOS_JEDEC_ID &&
3801 FC_JEDEC_ID(phba->vpd.rev.biuRev) != THOR_JEDEC_ID))
3802 return;
3803
3804 /*
3805 * Tell the other part of the chip to suspend temporarily all
3806 * its DMA activity.
3807 */
James Smart65a29c12006-07-06 15:50:50 -04003808 resp_buf = phba->MBslimaddr;
James Smart92908312006-03-07 15:04:13 -05003809
3810 /* Disable the error attention */
James Smart9940b972011-03-11 16:06:12 -05003811 if (lpfc_readl(phba->HCregaddr, &hc_copy))
3812 return;
James Smart92908312006-03-07 15:04:13 -05003813 writel((hc_copy & ~HC_ERINT_ENA), phba->HCregaddr);
3814 readl(phba->HCregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -05003815 phba->link_flag |= LS_IGNORE_ERATT;
James Smart92908312006-03-07 15:04:13 -05003816
James Smart9940b972011-03-11 16:06:12 -05003817 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3818 return;
3819 if (ha_copy & HA_ERATT) {
James Smart92908312006-03-07 15:04:13 -05003820 /* Clear Chip error bit */
3821 writel(HA_ERATT, phba->HAregaddr);
James Smart2e0fef82007-06-17 19:56:36 -05003822 phba->pport->stopped = 1;
James Smart92908312006-03-07 15:04:13 -05003823 }
3824
3825 mbox = 0;
3826 ((MAILBOX_t *)&mbox)->mbxCommand = MBX_KILL_BOARD;
3827 ((MAILBOX_t *)&mbox)->mbxOwner = OWN_CHIP;
3828
3829 writel(BARRIER_TEST_PATTERN, (resp_buf + 1));
James Smart65a29c12006-07-06 15:50:50 -04003830 mbox_buf = phba->MBslimaddr;
James Smart92908312006-03-07 15:04:13 -05003831 writel(mbox, mbox_buf);
3832
James Smart9940b972011-03-11 16:06:12 -05003833 for (i = 0; i < 50; i++) {
3834 if (lpfc_readl((resp_buf + 1), &resp_data))
3835 return;
3836 if (resp_data != ~(BARRIER_TEST_PATTERN))
3837 mdelay(1);
3838 else
3839 break;
3840 }
3841 resp_data = 0;
3842 if (lpfc_readl((resp_buf + 1), &resp_data))
3843 return;
3844 if (resp_data != ~(BARRIER_TEST_PATTERN)) {
James Smartf4b4c682009-05-22 14:53:12 -04003845 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE ||
James Smart2e0fef82007-06-17 19:56:36 -05003846 phba->pport->stopped)
James Smart92908312006-03-07 15:04:13 -05003847 goto restore_hc;
3848 else
3849 goto clear_errat;
3850 }
3851
3852 ((MAILBOX_t *)&mbox)->mbxOwner = OWN_HOST;
James Smart9940b972011-03-11 16:06:12 -05003853 resp_data = 0;
3854 for (i = 0; i < 500; i++) {
3855 if (lpfc_readl(resp_buf, &resp_data))
3856 return;
3857 if (resp_data != mbox)
3858 mdelay(1);
3859 else
3860 break;
3861 }
James Smart92908312006-03-07 15:04:13 -05003862
3863clear_errat:
3864
James Smart9940b972011-03-11 16:06:12 -05003865 while (++i < 500) {
3866 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3867 return;
3868 if (!(ha_copy & HA_ERATT))
3869 mdelay(1);
3870 else
3871 break;
3872 }
James Smart92908312006-03-07 15:04:13 -05003873
3874 if (readl(phba->HAregaddr) & HA_ERATT) {
3875 writel(HA_ERATT, phba->HAregaddr);
James Smart2e0fef82007-06-17 19:56:36 -05003876 phba->pport->stopped = 1;
James Smart92908312006-03-07 15:04:13 -05003877 }
3878
3879restore_hc:
James Smart2e0fef82007-06-17 19:56:36 -05003880 phba->link_flag &= ~LS_IGNORE_ERATT;
James Smart92908312006-03-07 15:04:13 -05003881 writel(hc_copy, phba->HCregaddr);
3882 readl(phba->HCregaddr); /* flush */
3883}
3884
James Smarte59058c2008-08-24 21:49:00 -04003885/**
James Smart3621a712009-04-06 18:47:14 -04003886 * lpfc_sli_brdkill - Issue a kill_board mailbox command
James Smarte59058c2008-08-24 21:49:00 -04003887 * @phba: Pointer to HBA context object.
3888 *
3889 * This function issues a kill_board mailbox command and waits for
3890 * the error attention interrupt. This function is called for stopping
3891 * the firmware processing. The caller is not required to hold any
3892 * locks. This function calls lpfc_hba_down_post function to free
3893 * any pending commands after the kill. The function will return 1 when it
3894 * fails to kill the board else will return 0.
3895 **/
Jamie Wellnitz41415862006-02-28 19:25:27 -05003896int
James Smart2e0fef82007-06-17 19:56:36 -05003897lpfc_sli_brdkill(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05003898{
Jamie Wellnitz41415862006-02-28 19:25:27 -05003899 struct lpfc_sli *psli;
3900 LPFC_MBOXQ_t *pmb;
3901 uint32_t status;
3902 uint32_t ha_copy;
3903 int retval;
3904 int i = 0;
3905
3906 psli = &phba->sli;
3907
3908 /* Kill HBA */
James Smarted957682007-06-17 19:56:37 -05003909 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003910 "0329 Kill HBA Data: x%x x%x\n",
3911 phba->pport->port_state, psli->sli_flag);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003912
James Smart98c9ea52007-10-27 13:37:33 -04003913 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3914 if (!pmb)
Jamie Wellnitz41415862006-02-28 19:25:27 -05003915 return 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003916
3917 /* Disable the error attention */
James Smart2e0fef82007-06-17 19:56:36 -05003918 spin_lock_irq(&phba->hbalock);
James Smart9940b972011-03-11 16:06:12 -05003919 if (lpfc_readl(phba->HCregaddr, &status)) {
3920 spin_unlock_irq(&phba->hbalock);
3921 mempool_free(pmb, phba->mbox_mem_pool);
3922 return 1;
3923 }
Jamie Wellnitz41415862006-02-28 19:25:27 -05003924 status &= ~HC_ERINT_ENA;
3925 writel(status, phba->HCregaddr);
3926 readl(phba->HCregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -05003927 phba->link_flag |= LS_IGNORE_ERATT;
3928 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003929
3930 lpfc_kill_board(phba, pmb);
3931 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
3932 retval = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
3933
3934 if (retval != MBX_SUCCESS) {
3935 if (retval != MBX_BUSY)
3936 mempool_free(pmb, phba->mbox_mem_pool);
James Smarte40a02c2010-02-26 14:13:54 -05003937 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3938 "2752 KILL_BOARD command failed retval %d\n",
3939 retval);
James Smart2e0fef82007-06-17 19:56:36 -05003940 spin_lock_irq(&phba->hbalock);
3941 phba->link_flag &= ~LS_IGNORE_ERATT;
3942 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003943 return 1;
3944 }
3945
James Smartf4b4c682009-05-22 14:53:12 -04003946 spin_lock_irq(&phba->hbalock);
3947 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
3948 spin_unlock_irq(&phba->hbalock);
James Smart92908312006-03-07 15:04:13 -05003949
Jamie Wellnitz41415862006-02-28 19:25:27 -05003950 mempool_free(pmb, phba->mbox_mem_pool);
3951
3952 /* There is no completion for a KILL_BOARD mbox cmd. Check for an error
3953 * attention every 100ms for 3 seconds. If we don't get ERATT after
3954 * 3 seconds we still set HBA_ERROR state because the status of the
3955 * board is now undefined.
3956 */
James Smart9940b972011-03-11 16:06:12 -05003957 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3958 return 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003959 while ((i++ < 30) && !(ha_copy & HA_ERATT)) {
3960 mdelay(100);
James Smart9940b972011-03-11 16:06:12 -05003961 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3962 return 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003963 }
3964
3965 del_timer_sync(&psli->mbox_tmo);
James Smart92908312006-03-07 15:04:13 -05003966 if (ha_copy & HA_ERATT) {
3967 writel(HA_ERATT, phba->HAregaddr);
James Smart2e0fef82007-06-17 19:56:36 -05003968 phba->pport->stopped = 1;
James Smart92908312006-03-07 15:04:13 -05003969 }
James Smart2e0fef82007-06-17 19:56:36 -05003970 spin_lock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003971 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart04c68492009-05-22 14:52:52 -04003972 psli->mbox_active = NULL;
James Smart2e0fef82007-06-17 19:56:36 -05003973 phba->link_flag &= ~LS_IGNORE_ERATT;
3974 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003975
Jamie Wellnitz41415862006-02-28 19:25:27 -05003976 lpfc_hba_down_post(phba);
James Smart2e0fef82007-06-17 19:56:36 -05003977 phba->link_state = LPFC_HBA_ERROR;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003978
James Smart2e0fef82007-06-17 19:56:36 -05003979 return ha_copy & HA_ERATT ? 0 : 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003980}
3981
James Smarte59058c2008-08-24 21:49:00 -04003982/**
James Smart3772a992009-05-22 14:50:54 -04003983 * lpfc_sli_brdreset - Reset a sli-2 or sli-3 HBA
James Smarte59058c2008-08-24 21:49:00 -04003984 * @phba: Pointer to HBA context object.
3985 *
3986 * This function resets the HBA by writing HC_INITFF to the control
3987 * register. After the HBA resets, this function resets all the iocb ring
3988 * indices. This function disables PCI layer parity checking during
3989 * the reset.
3990 * This function returns 0 always.
3991 * The caller is not required to hold any locks.
3992 **/
Jamie Wellnitz41415862006-02-28 19:25:27 -05003993int
James Smart2e0fef82007-06-17 19:56:36 -05003994lpfc_sli_brdreset(struct lpfc_hba *phba)
Jamie Wellnitz41415862006-02-28 19:25:27 -05003995{
3996 struct lpfc_sli *psli;
dea31012005-04-17 16:05:31 -05003997 struct lpfc_sli_ring *pring;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003998 uint16_t cfg_value;
dea31012005-04-17 16:05:31 -05003999 int i;
dea31012005-04-17 16:05:31 -05004000
Jamie Wellnitz41415862006-02-28 19:25:27 -05004001 psli = &phba->sli;
dea31012005-04-17 16:05:31 -05004002
Jamie Wellnitz41415862006-02-28 19:25:27 -05004003 /* Reset HBA */
4004 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04004005 "0325 Reset HBA Data: x%x x%x\n",
James Smart2e0fef82007-06-17 19:56:36 -05004006 phba->pport->port_state, psli->sli_flag);
dea31012005-04-17 16:05:31 -05004007
4008 /* perform board reset */
4009 phba->fc_eventTag = 0;
James Smart4d9ab992009-10-02 15:16:39 -04004010 phba->link_events = 0;
James Smart2e0fef82007-06-17 19:56:36 -05004011 phba->pport->fc_myDID = 0;
4012 phba->pport->fc_prevDID = 0;
dea31012005-04-17 16:05:31 -05004013
Jamie Wellnitz41415862006-02-28 19:25:27 -05004014 /* Turn off parity checking and serr during the physical reset */
4015 pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
4016 pci_write_config_word(phba->pcidev, PCI_COMMAND,
4017 (cfg_value &
4018 ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
4019
James Smart3772a992009-05-22 14:50:54 -04004020 psli->sli_flag &= ~(LPFC_SLI_ACTIVE | LPFC_PROCESS_LA);
4021
Jamie Wellnitz41415862006-02-28 19:25:27 -05004022 /* Now toggle INITFF bit in the Host Control Register */
4023 writel(HC_INITFF, phba->HCregaddr);
4024 mdelay(1);
4025 readl(phba->HCregaddr); /* flush */
4026 writel(0, phba->HCregaddr);
4027 readl(phba->HCregaddr); /* flush */
4028
4029 /* Restore PCI cmd register */
4030 pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
dea31012005-04-17 16:05:31 -05004031
4032 /* Initialize relevant SLI info */
Jamie Wellnitz41415862006-02-28 19:25:27 -05004033 for (i = 0; i < psli->num_rings; i++) {
4034 pring = &psli->ring[i];
dea31012005-04-17 16:05:31 -05004035 pring->flag = 0;
James Smart7e56aa22012-08-03 12:35:34 -04004036 pring->sli.sli3.rspidx = 0;
4037 pring->sli.sli3.next_cmdidx = 0;
4038 pring->sli.sli3.local_getidx = 0;
4039 pring->sli.sli3.cmdidx = 0;
dea31012005-04-17 16:05:31 -05004040 pring->missbufcnt = 0;
4041 }
dea31012005-04-17 16:05:31 -05004042
James Smart2e0fef82007-06-17 19:56:36 -05004043 phba->link_state = LPFC_WARM_START;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004044 return 0;
4045}
4046
James Smarte59058c2008-08-24 21:49:00 -04004047/**
James Smartda0436e2009-05-22 14:51:39 -04004048 * lpfc_sli4_brdreset - Reset a sli-4 HBA
4049 * @phba: Pointer to HBA context object.
4050 *
4051 * This function resets a SLI4 HBA. This function disables PCI layer parity
4052 * checking during resets the device. The caller is not required to hold
4053 * any locks.
4054 *
4055 * This function returns 0 always.
4056 **/
4057int
4058lpfc_sli4_brdreset(struct lpfc_hba *phba)
4059{
4060 struct lpfc_sli *psli = &phba->sli;
4061 uint16_t cfg_value;
James Smart02936352014-04-04 13:52:12 -04004062 int rc = 0;
James Smartda0436e2009-05-22 14:51:39 -04004063
4064 /* Reset HBA */
4065 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smart02936352014-04-04 13:52:12 -04004066 "0295 Reset HBA Data: x%x x%x x%x\n",
4067 phba->pport->port_state, psli->sli_flag,
4068 phba->hba_flag);
James Smartda0436e2009-05-22 14:51:39 -04004069
4070 /* perform board reset */
4071 phba->fc_eventTag = 0;
James Smart4d9ab992009-10-02 15:16:39 -04004072 phba->link_events = 0;
James Smartda0436e2009-05-22 14:51:39 -04004073 phba->pport->fc_myDID = 0;
4074 phba->pport->fc_prevDID = 0;
4075
James Smartda0436e2009-05-22 14:51:39 -04004076 spin_lock_irq(&phba->hbalock);
4077 psli->sli_flag &= ~(LPFC_PROCESS_LA);
4078 phba->fcf.fcf_flag = 0;
James Smartda0436e2009-05-22 14:51:39 -04004079 spin_unlock_irq(&phba->hbalock);
4080
James Smart02936352014-04-04 13:52:12 -04004081 /* SLI4 INTF 2: if FW dump is being taken skip INIT_PORT */
4082 if (phba->hba_flag & HBA_FW_DUMP_OP) {
4083 phba->hba_flag &= ~HBA_FW_DUMP_OP;
4084 return rc;
4085 }
4086
James Smartda0436e2009-05-22 14:51:39 -04004087 /* Now physically reset the device */
4088 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4089 "0389 Performing PCI function reset!\n");
James Smartbe858b62010-12-15 17:57:20 -05004090
4091 /* Turn off parity checking and serr during the physical reset */
4092 pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
4093 pci_write_config_word(phba->pcidev, PCI_COMMAND, (cfg_value &
4094 ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
4095
James Smart88318812012-09-29 11:29:29 -04004096 /* Perform FCoE PCI function reset before freeing queue memory */
James Smart27b01b82012-05-09 21:19:44 -04004097 rc = lpfc_pci_function_reset(phba);
James Smart88318812012-09-29 11:29:29 -04004098 lpfc_sli4_queue_destroy(phba);
James Smartda0436e2009-05-22 14:51:39 -04004099
James Smartbe858b62010-12-15 17:57:20 -05004100 /* Restore PCI cmd register */
4101 pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
4102
James Smart27b01b82012-05-09 21:19:44 -04004103 return rc;
James Smartda0436e2009-05-22 14:51:39 -04004104}
4105
4106/**
4107 * lpfc_sli_brdrestart_s3 - Restart a sli-3 hba
James Smarte59058c2008-08-24 21:49:00 -04004108 * @phba: Pointer to HBA context object.
4109 *
4110 * This function is called in the SLI initialization code path to
4111 * restart the HBA. The caller is not required to hold any lock.
4112 * This function writes MBX_RESTART mailbox command to the SLIM and
4113 * resets the HBA. At the end of the function, it calls lpfc_hba_down_post
4114 * function to free any pending commands. The function enables
4115 * POST only during the first initialization. The function returns zero.
4116 * The function does not guarantee completion of MBX_RESTART mailbox
4117 * command before the return of this function.
4118 **/
James Smartda0436e2009-05-22 14:51:39 -04004119static int
4120lpfc_sli_brdrestart_s3(struct lpfc_hba *phba)
Jamie Wellnitz41415862006-02-28 19:25:27 -05004121{
4122 MAILBOX_t *mb;
4123 struct lpfc_sli *psli;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004124 volatile uint32_t word0;
4125 void __iomem *to_slim;
James Smart0d878412009-10-02 15:16:56 -04004126 uint32_t hba_aer_enabled;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004127
James Smart2e0fef82007-06-17 19:56:36 -05004128 spin_lock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004129
James Smart0d878412009-10-02 15:16:56 -04004130 /* Take PCIe device Advanced Error Reporting (AER) state */
4131 hba_aer_enabled = phba->hba_flag & HBA_AER_ENABLED;
4132
Jamie Wellnitz41415862006-02-28 19:25:27 -05004133 psli = &phba->sli;
4134
4135 /* Restart HBA */
4136 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04004137 "0337 Restart HBA Data: x%x x%x\n",
James Smart2e0fef82007-06-17 19:56:36 -05004138 phba->pport->port_state, psli->sli_flag);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004139
4140 word0 = 0;
4141 mb = (MAILBOX_t *) &word0;
4142 mb->mbxCommand = MBX_RESTART;
4143 mb->mbxHc = 1;
4144
James Smart92908312006-03-07 15:04:13 -05004145 lpfc_reset_barrier(phba);
4146
Jamie Wellnitz41415862006-02-28 19:25:27 -05004147 to_slim = phba->MBslimaddr;
4148 writel(*(uint32_t *) mb, to_slim);
4149 readl(to_slim); /* flush */
4150
4151 /* Only skip post after fc_ffinit is completed */
James Smarteaf15d52008-12-04 22:39:29 -05004152 if (phba->pport->port_state)
Jamie Wellnitz41415862006-02-28 19:25:27 -05004153 word0 = 1; /* This is really setting up word1 */
James Smarteaf15d52008-12-04 22:39:29 -05004154 else
Jamie Wellnitz41415862006-02-28 19:25:27 -05004155 word0 = 0; /* This is really setting up word1 */
James Smart65a29c12006-07-06 15:50:50 -04004156 to_slim = phba->MBslimaddr + sizeof (uint32_t);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004157 writel(*(uint32_t *) mb, to_slim);
4158 readl(to_slim); /* flush */
4159
4160 lpfc_sli_brdreset(phba);
James Smart2e0fef82007-06-17 19:56:36 -05004161 phba->pport->stopped = 0;
4162 phba->link_state = LPFC_INIT_START;
James Smartda0436e2009-05-22 14:51:39 -04004163 phba->hba_flag = 0;
James Smart2e0fef82007-06-17 19:56:36 -05004164 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004165
James Smart64ba8812006-08-02 15:24:34 -04004166 memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
4167 psli->stats_start = get_seconds();
4168
James Smarteaf15d52008-12-04 22:39:29 -05004169 /* Give the INITFF and Post time to settle. */
4170 mdelay(100);
dea31012005-04-17 16:05:31 -05004171
James Smart0d878412009-10-02 15:16:56 -04004172 /* Reset HBA AER if it was enabled, note hba_flag was reset above */
4173 if (hba_aer_enabled)
4174 pci_disable_pcie_error_reporting(phba->pcidev);
4175
Jamie Wellnitz41415862006-02-28 19:25:27 -05004176 lpfc_hba_down_post(phba);
dea31012005-04-17 16:05:31 -05004177
4178 return 0;
4179}
4180
James Smarte59058c2008-08-24 21:49:00 -04004181/**
James Smartda0436e2009-05-22 14:51:39 -04004182 * lpfc_sli_brdrestart_s4 - Restart the sli-4 hba
4183 * @phba: Pointer to HBA context object.
4184 *
4185 * This function is called in the SLI initialization code path to restart
4186 * a SLI4 HBA. The caller is not required to hold any lock.
4187 * At the end of the function, it calls lpfc_hba_down_post function to
4188 * free any pending commands.
4189 **/
4190static int
4191lpfc_sli_brdrestart_s4(struct lpfc_hba *phba)
4192{
4193 struct lpfc_sli *psli = &phba->sli;
James Smart75baf692010-06-08 18:31:21 -04004194 uint32_t hba_aer_enabled;
James Smart27b01b82012-05-09 21:19:44 -04004195 int rc;
James Smartda0436e2009-05-22 14:51:39 -04004196
4197 /* Restart HBA */
4198 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4199 "0296 Restart HBA Data: x%x x%x\n",
4200 phba->pport->port_state, psli->sli_flag);
4201
James Smart75baf692010-06-08 18:31:21 -04004202 /* Take PCIe device Advanced Error Reporting (AER) state */
4203 hba_aer_enabled = phba->hba_flag & HBA_AER_ENABLED;
4204
James Smart27b01b82012-05-09 21:19:44 -04004205 rc = lpfc_sli4_brdreset(phba);
James Smartda0436e2009-05-22 14:51:39 -04004206
4207 spin_lock_irq(&phba->hbalock);
4208 phba->pport->stopped = 0;
4209 phba->link_state = LPFC_INIT_START;
4210 phba->hba_flag = 0;
4211 spin_unlock_irq(&phba->hbalock);
4212
4213 memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
4214 psli->stats_start = get_seconds();
4215
James Smart75baf692010-06-08 18:31:21 -04004216 /* Reset HBA AER if it was enabled, note hba_flag was reset above */
4217 if (hba_aer_enabled)
4218 pci_disable_pcie_error_reporting(phba->pcidev);
4219
James Smartda0436e2009-05-22 14:51:39 -04004220 lpfc_hba_down_post(phba);
4221
James Smart27b01b82012-05-09 21:19:44 -04004222 return rc;
James Smartda0436e2009-05-22 14:51:39 -04004223}
4224
4225/**
4226 * lpfc_sli_brdrestart - Wrapper func for restarting hba
4227 * @phba: Pointer to HBA context object.
4228 *
4229 * This routine wraps the actual SLI3 or SLI4 hba restart routine from the
4230 * API jump table function pointer from the lpfc_hba struct.
4231**/
4232int
4233lpfc_sli_brdrestart(struct lpfc_hba *phba)
4234{
4235 return phba->lpfc_sli_brdrestart(phba);
4236}
4237
4238/**
James Smart3621a712009-04-06 18:47:14 -04004239 * lpfc_sli_chipset_init - Wait for the restart of the HBA after a restart
James Smarte59058c2008-08-24 21:49:00 -04004240 * @phba: Pointer to HBA context object.
4241 *
4242 * This function is called after a HBA restart to wait for successful
4243 * restart of the HBA. Successful restart of the HBA is indicated by
4244 * HS_FFRDY and HS_MBRDY bits. If the HBA fails to restart even after 15
4245 * iteration, the function will restart the HBA again. The function returns
4246 * zero if HBA successfully restarted else returns negative error code.
4247 **/
dea31012005-04-17 16:05:31 -05004248static int
4249lpfc_sli_chipset_init(struct lpfc_hba *phba)
4250{
4251 uint32_t status, i = 0;
4252
4253 /* Read the HBA Host Status Register */
James Smart9940b972011-03-11 16:06:12 -05004254 if (lpfc_readl(phba->HSregaddr, &status))
4255 return -EIO;
dea31012005-04-17 16:05:31 -05004256
4257 /* Check status register to see what current state is */
4258 i = 0;
4259 while ((status & (HS_FFRDY | HS_MBRDY)) != (HS_FFRDY | HS_MBRDY)) {
4260
James Smartdcf2a4e2010-09-29 11:18:53 -04004261 /* Check every 10ms for 10 retries, then every 100ms for 90
4262 * retries, then every 1 sec for 50 retires for a total of
4263 * ~60 seconds before reset the board again and check every
4264 * 1 sec for 50 retries. The up to 60 seconds before the
4265 * board ready is required by the Falcon FIPS zeroization
4266 * complete, and any reset the board in between shall cause
4267 * restart of zeroization, further delay the board ready.
dea31012005-04-17 16:05:31 -05004268 */
James Smartdcf2a4e2010-09-29 11:18:53 -04004269 if (i++ >= 200) {
dea31012005-04-17 16:05:31 -05004270 /* Adapter failed to init, timeout, status reg
4271 <status> */
James Smarted957682007-06-17 19:56:37 -05004272 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004273 "0436 Adapter failed to init, "
James Smart09372822008-01-11 01:52:54 -05004274 "timeout, status reg x%x, "
4275 "FW Data: A8 x%x AC x%x\n", status,
4276 readl(phba->MBslimaddr + 0xa8),
4277 readl(phba->MBslimaddr + 0xac));
James Smart2e0fef82007-06-17 19:56:36 -05004278 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004279 return -ETIMEDOUT;
4280 }
4281
4282 /* Check to see if any errors occurred during init */
4283 if (status & HS_FFERM) {
4284 /* ERROR: During chipset initialization */
4285 /* Adapter failed to init, chipset, status reg
4286 <status> */
James Smarted957682007-06-17 19:56:37 -05004287 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004288 "0437 Adapter failed to init, "
James Smart09372822008-01-11 01:52:54 -05004289 "chipset, status reg x%x, "
4290 "FW Data: A8 x%x AC x%x\n", status,
4291 readl(phba->MBslimaddr + 0xa8),
4292 readl(phba->MBslimaddr + 0xac));
James Smart2e0fef82007-06-17 19:56:36 -05004293 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004294 return -EIO;
4295 }
4296
James Smartdcf2a4e2010-09-29 11:18:53 -04004297 if (i <= 10)
dea31012005-04-17 16:05:31 -05004298 msleep(10);
James Smartdcf2a4e2010-09-29 11:18:53 -04004299 else if (i <= 100)
4300 msleep(100);
4301 else
4302 msleep(1000);
dea31012005-04-17 16:05:31 -05004303
James Smartdcf2a4e2010-09-29 11:18:53 -04004304 if (i == 150) {
4305 /* Do post */
James Smart92d7f7b2007-06-17 19:56:38 -05004306 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004307 lpfc_sli_brdrestart(phba);
dea31012005-04-17 16:05:31 -05004308 }
4309 /* Read the HBA Host Status Register */
James Smart9940b972011-03-11 16:06:12 -05004310 if (lpfc_readl(phba->HSregaddr, &status))
4311 return -EIO;
dea31012005-04-17 16:05:31 -05004312 }
4313
4314 /* Check to see if any errors occurred during init */
4315 if (status & HS_FFERM) {
4316 /* ERROR: During chipset initialization */
4317 /* Adapter failed to init, chipset, status reg <status> */
James Smarted957682007-06-17 19:56:37 -05004318 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004319 "0438 Adapter failed to init, chipset, "
James Smart09372822008-01-11 01:52:54 -05004320 "status reg x%x, "
4321 "FW Data: A8 x%x AC x%x\n", status,
4322 readl(phba->MBslimaddr + 0xa8),
4323 readl(phba->MBslimaddr + 0xac));
James Smart2e0fef82007-06-17 19:56:36 -05004324 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004325 return -EIO;
4326 }
4327
4328 /* Clear all interrupt enable conditions */
4329 writel(0, phba->HCregaddr);
4330 readl(phba->HCregaddr); /* flush */
4331
4332 /* setup host attn register */
4333 writel(0xffffffff, phba->HAregaddr);
4334 readl(phba->HAregaddr); /* flush */
4335 return 0;
4336}
4337
James Smarte59058c2008-08-24 21:49:00 -04004338/**
James Smart3621a712009-04-06 18:47:14 -04004339 * lpfc_sli_hbq_count - Get the number of HBQs to be configured
James Smarte59058c2008-08-24 21:49:00 -04004340 *
4341 * This function calculates and returns the number of HBQs required to be
4342 * configured.
4343 **/
James Smart78b2d852007-08-02 11:10:21 -04004344int
James Smarted957682007-06-17 19:56:37 -05004345lpfc_sli_hbq_count(void)
4346{
James Smart92d7f7b2007-06-17 19:56:38 -05004347 return ARRAY_SIZE(lpfc_hbq_defs);
James Smarted957682007-06-17 19:56:37 -05004348}
4349
James Smarte59058c2008-08-24 21:49:00 -04004350/**
James Smart3621a712009-04-06 18:47:14 -04004351 * lpfc_sli_hbq_entry_count - Calculate total number of hbq entries
James Smarte59058c2008-08-24 21:49:00 -04004352 *
4353 * This function adds the number of hbq entries in every HBQ to get
4354 * the total number of hbq entries required for the HBA and returns
4355 * the total count.
4356 **/
James Smarted957682007-06-17 19:56:37 -05004357static int
4358lpfc_sli_hbq_entry_count(void)
4359{
4360 int hbq_count = lpfc_sli_hbq_count();
4361 int count = 0;
4362 int i;
4363
4364 for (i = 0; i < hbq_count; ++i)
James Smart92d7f7b2007-06-17 19:56:38 -05004365 count += lpfc_hbq_defs[i]->entry_count;
James Smarted957682007-06-17 19:56:37 -05004366 return count;
4367}
4368
James Smarte59058c2008-08-24 21:49:00 -04004369/**
James Smart3621a712009-04-06 18:47:14 -04004370 * lpfc_sli_hbq_size - Calculate memory required for all hbq entries
James Smarte59058c2008-08-24 21:49:00 -04004371 *
4372 * This function calculates amount of memory required for all hbq entries
4373 * to be configured and returns the total memory required.
4374 **/
dea31012005-04-17 16:05:31 -05004375int
James Smarted957682007-06-17 19:56:37 -05004376lpfc_sli_hbq_size(void)
4377{
4378 return lpfc_sli_hbq_entry_count() * sizeof(struct lpfc_hbq_entry);
4379}
4380
James Smarte59058c2008-08-24 21:49:00 -04004381/**
James Smart3621a712009-04-06 18:47:14 -04004382 * lpfc_sli_hbq_setup - configure and initialize HBQs
James Smarte59058c2008-08-24 21:49:00 -04004383 * @phba: Pointer to HBA context object.
4384 *
4385 * This function is called during the SLI initialization to configure
4386 * all the HBQs and post buffers to the HBQ. The caller is not
4387 * required to hold any locks. This function will return zero if successful
4388 * else it will return negative error code.
4389 **/
James Smarted957682007-06-17 19:56:37 -05004390static int
4391lpfc_sli_hbq_setup(struct lpfc_hba *phba)
4392{
4393 int hbq_count = lpfc_sli_hbq_count();
4394 LPFC_MBOXQ_t *pmb;
4395 MAILBOX_t *pmbox;
4396 uint32_t hbqno;
4397 uint32_t hbq_entry_index;
James Smarted957682007-06-17 19:56:37 -05004398
James Smart92d7f7b2007-06-17 19:56:38 -05004399 /* Get a Mailbox buffer to setup mailbox
4400 * commands for HBA initialization
4401 */
James Smarted957682007-06-17 19:56:37 -05004402 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4403
4404 if (!pmb)
4405 return -ENOMEM;
4406
James Smart04c68492009-05-22 14:52:52 -04004407 pmbox = &pmb->u.mb;
James Smarted957682007-06-17 19:56:37 -05004408
4409 /* Initialize the struct lpfc_sli_hbq structure for each hbq */
4410 phba->link_state = LPFC_INIT_MBX_CMDS;
James Smart3163f722008-02-08 18:50:25 -05004411 phba->hbq_in_use = 1;
James Smarted957682007-06-17 19:56:37 -05004412
4413 hbq_entry_index = 0;
4414 for (hbqno = 0; hbqno < hbq_count; ++hbqno) {
4415 phba->hbqs[hbqno].next_hbqPutIdx = 0;
4416 phba->hbqs[hbqno].hbqPutIdx = 0;
4417 phba->hbqs[hbqno].local_hbqGetIdx = 0;
4418 phba->hbqs[hbqno].entry_count =
James Smart92d7f7b2007-06-17 19:56:38 -05004419 lpfc_hbq_defs[hbqno]->entry_count;
James Smart51ef4c22007-08-02 11:10:31 -04004420 lpfc_config_hbq(phba, hbqno, lpfc_hbq_defs[hbqno],
4421 hbq_entry_index, pmb);
James Smarted957682007-06-17 19:56:37 -05004422 hbq_entry_index += phba->hbqs[hbqno].entry_count;
4423
4424 if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
4425 /* Adapter failed to init, mbxCmd <cmd> CFG_RING,
4426 mbxStatus <status>, ring <num> */
4427
4428 lpfc_printf_log(phba, KERN_ERR,
James Smart92d7f7b2007-06-17 19:56:38 -05004429 LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04004430 "1805 Adapter failed to init. "
James Smarted957682007-06-17 19:56:37 -05004431 "Data: x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04004432 pmbox->mbxCommand,
James Smarted957682007-06-17 19:56:37 -05004433 pmbox->mbxStatus, hbqno);
4434
4435 phba->link_state = LPFC_HBA_ERROR;
4436 mempool_free(pmb, phba->mbox_mem_pool);
James Smart6e7288d2010-06-07 15:23:35 -04004437 return -ENXIO;
James Smarted957682007-06-17 19:56:37 -05004438 }
4439 }
4440 phba->hbq_count = hbq_count;
4441
James Smarted957682007-06-17 19:56:37 -05004442 mempool_free(pmb, phba->mbox_mem_pool);
4443
James Smart92d7f7b2007-06-17 19:56:38 -05004444 /* Initially populate or replenish the HBQs */
James Smartd7c255b2008-08-24 21:50:00 -04004445 for (hbqno = 0; hbqno < hbq_count; ++hbqno)
4446 lpfc_sli_hbqbuf_init_hbqs(phba, hbqno);
James Smarted957682007-06-17 19:56:37 -05004447 return 0;
4448}
4449
James Smarte59058c2008-08-24 21:49:00 -04004450/**
James Smart4f774512009-05-22 14:52:35 -04004451 * lpfc_sli4_rb_setup - Initialize and post RBs to HBA
4452 * @phba: Pointer to HBA context object.
4453 *
4454 * This function is called during the SLI initialization to configure
4455 * all the HBQs and post buffers to the HBQ. The caller is not
4456 * required to hold any locks. This function will return zero if successful
4457 * else it will return negative error code.
4458 **/
4459static int
4460lpfc_sli4_rb_setup(struct lpfc_hba *phba)
4461{
4462 phba->hbq_in_use = 1;
4463 phba->hbqs[0].entry_count = lpfc_hbq_defs[0]->entry_count;
4464 phba->hbq_count = 1;
4465 /* Initially populate or replenish the HBQs */
4466 lpfc_sli_hbqbuf_init_hbqs(phba, 0);
4467 return 0;
4468}
4469
4470/**
James Smart3621a712009-04-06 18:47:14 -04004471 * lpfc_sli_config_port - Issue config port mailbox command
James Smarte59058c2008-08-24 21:49:00 -04004472 * @phba: Pointer to HBA context object.
4473 * @sli_mode: sli mode - 2/3
4474 *
4475 * This function is called by the sli intialization code path
4476 * to issue config_port mailbox command. This function restarts the
4477 * HBA firmware and issues a config_port mailbox command to configure
4478 * the SLI interface in the sli mode specified by sli_mode
4479 * variable. The caller is not required to hold any locks.
4480 * The function returns 0 if successful, else returns negative error
4481 * code.
4482 **/
James Smart93996272008-08-24 21:50:30 -04004483int
4484lpfc_sli_config_port(struct lpfc_hba *phba, int sli_mode)
dea31012005-04-17 16:05:31 -05004485{
4486 LPFC_MBOXQ_t *pmb;
4487 uint32_t resetcount = 0, rc = 0, done = 0;
4488
4489 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4490 if (!pmb) {
James Smart2e0fef82007-06-17 19:56:36 -05004491 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004492 return -ENOMEM;
4493 }
4494
James Smarted957682007-06-17 19:56:37 -05004495 phba->sli_rev = sli_mode;
dea31012005-04-17 16:05:31 -05004496 while (resetcount < 2 && !done) {
James Smart2e0fef82007-06-17 19:56:36 -05004497 spin_lock_irq(&phba->hbalock);
James Smart1c067a42006-08-01 07:33:52 -04004498 phba->sli.sli_flag |= LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05004499 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -05004500 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004501 lpfc_sli_brdrestart(phba);
dea31012005-04-17 16:05:31 -05004502 rc = lpfc_sli_chipset_init(phba);
4503 if (rc)
4504 break;
4505
James Smart2e0fef82007-06-17 19:56:36 -05004506 spin_lock_irq(&phba->hbalock);
James Smart1c067a42006-08-01 07:33:52 -04004507 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05004508 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004509 resetcount++;
4510
James Smarted957682007-06-17 19:56:37 -05004511 /* Call pre CONFIG_PORT mailbox command initialization. A
4512 * value of 0 means the call was successful. Any other
4513 * nonzero value is a failure, but if ERESTART is returned,
4514 * the driver may reset the HBA and try again.
4515 */
dea31012005-04-17 16:05:31 -05004516 rc = lpfc_config_port_prep(phba);
4517 if (rc == -ERESTART) {
James Smarted957682007-06-17 19:56:37 -05004518 phba->link_state = LPFC_LINK_UNKNOWN;
dea31012005-04-17 16:05:31 -05004519 continue;
James Smart34b02dc2008-08-24 21:49:55 -04004520 } else if (rc)
dea31012005-04-17 16:05:31 -05004521 break;
James Smart6d368e52011-05-24 11:44:12 -04004522
James Smart2e0fef82007-06-17 19:56:36 -05004523 phba->link_state = LPFC_INIT_MBX_CMDS;
dea31012005-04-17 16:05:31 -05004524 lpfc_config_port(phba, pmb);
4525 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
James Smart34b02dc2008-08-24 21:49:55 -04004526 phba->sli3_options &= ~(LPFC_SLI3_NPIV_ENABLED |
4527 LPFC_SLI3_HBQ_ENABLED |
4528 LPFC_SLI3_CRP_ENABLED |
James Smartbc739052010-08-04 16:11:18 -04004529 LPFC_SLI3_BG_ENABLED |
4530 LPFC_SLI3_DSS_ENABLED);
James Smarted957682007-06-17 19:56:37 -05004531 if (rc != MBX_SUCCESS) {
dea31012005-04-17 16:05:31 -05004532 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004533 "0442 Adapter failed to init, mbxCmd x%x "
James Smart92d7f7b2007-06-17 19:56:38 -05004534 "CONFIG_PORT, mbxStatus x%x Data: x%x\n",
James Smart04c68492009-05-22 14:52:52 -04004535 pmb->u.mb.mbxCommand, pmb->u.mb.mbxStatus, 0);
James Smart2e0fef82007-06-17 19:56:36 -05004536 spin_lock_irq(&phba->hbalock);
James Smart04c68492009-05-22 14:52:52 -04004537 phba->sli.sli_flag &= ~LPFC_SLI_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05004538 spin_unlock_irq(&phba->hbalock);
4539 rc = -ENXIO;
James Smart04c68492009-05-22 14:52:52 -04004540 } else {
4541 /* Allow asynchronous mailbox command to go through */
4542 spin_lock_irq(&phba->hbalock);
4543 phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
4544 spin_unlock_irq(&phba->hbalock);
James Smarted957682007-06-17 19:56:37 -05004545 done = 1;
James Smartcb69f7d2011-12-13 13:21:57 -05004546
4547 if ((pmb->u.mb.un.varCfgPort.casabt == 1) &&
4548 (pmb->u.mb.un.varCfgPort.gasabt == 0))
4549 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
4550 "3110 Port did not grant ASABT\n");
James Smart04c68492009-05-22 14:52:52 -04004551 }
dea31012005-04-17 16:05:31 -05004552 }
James Smarted957682007-06-17 19:56:37 -05004553 if (!done) {
4554 rc = -EINVAL;
4555 goto do_prep_failed;
4556 }
James Smart04c68492009-05-22 14:52:52 -04004557 if (pmb->u.mb.un.varCfgPort.sli_mode == 3) {
4558 if (!pmb->u.mb.un.varCfgPort.cMA) {
James Smart34b02dc2008-08-24 21:49:55 -04004559 rc = -ENXIO;
4560 goto do_prep_failed;
4561 }
James Smart04c68492009-05-22 14:52:52 -04004562 if (phba->max_vpi && pmb->u.mb.un.varCfgPort.gmv) {
James Smart34b02dc2008-08-24 21:49:55 -04004563 phba->sli3_options |= LPFC_SLI3_NPIV_ENABLED;
James Smart04c68492009-05-22 14:52:52 -04004564 phba->max_vpi = pmb->u.mb.un.varCfgPort.max_vpi;
4565 phba->max_vports = (phba->max_vpi > phba->max_vports) ?
4566 phba->max_vpi : phba->max_vports;
4567
James Smart34b02dc2008-08-24 21:49:55 -04004568 } else
4569 phba->max_vpi = 0;
James Smartbc739052010-08-04 16:11:18 -04004570 phba->fips_level = 0;
4571 phba->fips_spec_rev = 0;
4572 if (pmb->u.mb.un.varCfgPort.gdss) {
James Smart04c68492009-05-22 14:52:52 -04004573 phba->sli3_options |= LPFC_SLI3_DSS_ENABLED;
James Smartbc739052010-08-04 16:11:18 -04004574 phba->fips_level = pmb->u.mb.un.varCfgPort.fips_level;
4575 phba->fips_spec_rev = pmb->u.mb.un.varCfgPort.fips_rev;
4576 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4577 "2850 Security Crypto Active. FIPS x%d "
4578 "(Spec Rev: x%d)",
4579 phba->fips_level, phba->fips_spec_rev);
4580 }
4581 if (pmb->u.mb.un.varCfgPort.sec_err) {
4582 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4583 "2856 Config Port Security Crypto "
4584 "Error: x%x ",
4585 pmb->u.mb.un.varCfgPort.sec_err);
4586 }
James Smart04c68492009-05-22 14:52:52 -04004587 if (pmb->u.mb.un.varCfgPort.gerbm)
James Smart34b02dc2008-08-24 21:49:55 -04004588 phba->sli3_options |= LPFC_SLI3_HBQ_ENABLED;
James Smart04c68492009-05-22 14:52:52 -04004589 if (pmb->u.mb.un.varCfgPort.gcrp)
James Smart34b02dc2008-08-24 21:49:55 -04004590 phba->sli3_options |= LPFC_SLI3_CRP_ENABLED;
James Smart6e7288d2010-06-07 15:23:35 -04004591
4592 phba->hbq_get = phba->mbox->us.s3_pgp.hbq_get;
4593 phba->port_gp = phba->mbox->us.s3_pgp.port;
James Smarte2a0a9d2008-12-04 22:40:02 -05004594
4595 if (phba->cfg_enable_bg) {
James Smart04c68492009-05-22 14:52:52 -04004596 if (pmb->u.mb.un.varCfgPort.gbg)
James Smarte2a0a9d2008-12-04 22:40:02 -05004597 phba->sli3_options |= LPFC_SLI3_BG_ENABLED;
4598 else
4599 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4600 "0443 Adapter did not grant "
4601 "BlockGuard\n");
4602 }
James Smart34b02dc2008-08-24 21:49:55 -04004603 } else {
James Smart8f34f4c2008-12-04 22:39:23 -05004604 phba->hbq_get = NULL;
James Smart34b02dc2008-08-24 21:49:55 -04004605 phba->port_gp = phba->mbox->us.s2.port;
James Smartd7c255b2008-08-24 21:50:00 -04004606 phba->max_vpi = 0;
James Smarted957682007-06-17 19:56:37 -05004607 }
James Smart92d7f7b2007-06-17 19:56:38 -05004608do_prep_failed:
James Smarted957682007-06-17 19:56:37 -05004609 mempool_free(pmb, phba->mbox_mem_pool);
4610 return rc;
4611}
4612
James Smarte59058c2008-08-24 21:49:00 -04004613
4614/**
James Smart3621a712009-04-06 18:47:14 -04004615 * lpfc_sli_hba_setup - SLI intialization function
James Smarte59058c2008-08-24 21:49:00 -04004616 * @phba: Pointer to HBA context object.
4617 *
4618 * This function is the main SLI intialization function. This function
4619 * is called by the HBA intialization code, HBA reset code and HBA
4620 * error attention handler code. Caller is not required to hold any
4621 * locks. This function issues config_port mailbox command to configure
4622 * the SLI, setup iocb rings and HBQ rings. In the end the function
4623 * calls the config_port_post function to issue init_link mailbox
4624 * command and to start the discovery. The function will return zero
4625 * if successful, else it will return negative error code.
4626 **/
James Smarted957682007-06-17 19:56:37 -05004627int
4628lpfc_sli_hba_setup(struct lpfc_hba *phba)
4629{
4630 uint32_t rc;
James Smart6d368e52011-05-24 11:44:12 -04004631 int mode = 3, i;
4632 int longs;
James Smarted957682007-06-17 19:56:37 -05004633
4634 switch (lpfc_sli_mode) {
4635 case 2:
James Smart78b2d852007-08-02 11:10:21 -04004636 if (phba->cfg_enable_npiv) {
James Smart92d7f7b2007-06-17 19:56:38 -05004637 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04004638 "1824 NPIV enabled: Override lpfc_sli_mode "
James Smart92d7f7b2007-06-17 19:56:38 -05004639 "parameter (%d) to auto (0).\n",
James Smarte8b62012007-08-02 11:10:09 -04004640 lpfc_sli_mode);
James Smart92d7f7b2007-06-17 19:56:38 -05004641 break;
4642 }
James Smarted957682007-06-17 19:56:37 -05004643 mode = 2;
4644 break;
4645 case 0:
4646 case 3:
4647 break;
4648 default:
James Smart92d7f7b2007-06-17 19:56:38 -05004649 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04004650 "1819 Unrecognized lpfc_sli_mode "
4651 "parameter: %d.\n", lpfc_sli_mode);
James Smarted957682007-06-17 19:56:37 -05004652
4653 break;
4654 }
4655
James Smart93996272008-08-24 21:50:30 -04004656 rc = lpfc_sli_config_port(phba, mode);
4657
James Smarted957682007-06-17 19:56:37 -05004658 if (rc && lpfc_sli_mode == 3)
James Smart92d7f7b2007-06-17 19:56:38 -05004659 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04004660 "1820 Unable to select SLI-3. "
4661 "Not supported by adapter.\n");
James Smarted957682007-06-17 19:56:37 -05004662 if (rc && mode != 2)
James Smart93996272008-08-24 21:50:30 -04004663 rc = lpfc_sli_config_port(phba, 2);
James Smarted957682007-06-17 19:56:37 -05004664 if (rc)
dea31012005-04-17 16:05:31 -05004665 goto lpfc_sli_hba_setup_error;
4666
James Smart0d878412009-10-02 15:16:56 -04004667 /* Enable PCIe device Advanced Error Reporting (AER) if configured */
4668 if (phba->cfg_aer_support == 1 && !(phba->hba_flag & HBA_AER_ENABLED)) {
4669 rc = pci_enable_pcie_error_reporting(phba->pcidev);
4670 if (!rc) {
4671 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4672 "2709 This device supports "
4673 "Advanced Error Reporting (AER)\n");
4674 spin_lock_irq(&phba->hbalock);
4675 phba->hba_flag |= HBA_AER_ENABLED;
4676 spin_unlock_irq(&phba->hbalock);
4677 } else {
4678 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4679 "2708 This device does not support "
James Smartb069d7e2013-05-31 17:04:36 -04004680 "Advanced Error Reporting (AER): %d\n",
4681 rc);
James Smart0d878412009-10-02 15:16:56 -04004682 phba->cfg_aer_support = 0;
4683 }
4684 }
4685
James Smarted957682007-06-17 19:56:37 -05004686 if (phba->sli_rev == 3) {
4687 phba->iocb_cmd_size = SLI3_IOCB_CMD_SIZE;
4688 phba->iocb_rsp_size = SLI3_IOCB_RSP_SIZE;
James Smarted957682007-06-17 19:56:37 -05004689 } else {
4690 phba->iocb_cmd_size = SLI2_IOCB_CMD_SIZE;
4691 phba->iocb_rsp_size = SLI2_IOCB_RSP_SIZE;
James Smart92d7f7b2007-06-17 19:56:38 -05004692 phba->sli3_options = 0;
James Smarted957682007-06-17 19:56:37 -05004693 }
4694
4695 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004696 "0444 Firmware in SLI %x mode. Max_vpi %d\n",
4697 phba->sli_rev, phba->max_vpi);
James Smarted957682007-06-17 19:56:37 -05004698 rc = lpfc_sli_ring_map(phba);
dea31012005-04-17 16:05:31 -05004699
4700 if (rc)
4701 goto lpfc_sli_hba_setup_error;
4702
James Smart6d368e52011-05-24 11:44:12 -04004703 /* Initialize VPIs. */
4704 if (phba->sli_rev == LPFC_SLI_REV3) {
4705 /*
4706 * The VPI bitmask and physical ID array are allocated
4707 * and initialized once only - at driver load. A port
4708 * reset doesn't need to reinitialize this memory.
4709 */
4710 if ((phba->vpi_bmask == NULL) && (phba->vpi_ids == NULL)) {
4711 longs = (phba->max_vpi + BITS_PER_LONG) / BITS_PER_LONG;
4712 phba->vpi_bmask = kzalloc(longs * sizeof(unsigned long),
4713 GFP_KERNEL);
4714 if (!phba->vpi_bmask) {
4715 rc = -ENOMEM;
4716 goto lpfc_sli_hba_setup_error;
4717 }
4718
4719 phba->vpi_ids = kzalloc(
4720 (phba->max_vpi+1) * sizeof(uint16_t),
4721 GFP_KERNEL);
4722 if (!phba->vpi_ids) {
4723 kfree(phba->vpi_bmask);
4724 rc = -ENOMEM;
4725 goto lpfc_sli_hba_setup_error;
4726 }
4727 for (i = 0; i < phba->max_vpi; i++)
4728 phba->vpi_ids[i] = i;
4729 }
4730 }
4731
James Smart93996272008-08-24 21:50:30 -04004732 /* Init HBQs */
James Smarted957682007-06-17 19:56:37 -05004733 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
4734 rc = lpfc_sli_hbq_setup(phba);
4735 if (rc)
4736 goto lpfc_sli_hba_setup_error;
4737 }
James Smart04c68492009-05-22 14:52:52 -04004738 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004739 phba->sli.sli_flag |= LPFC_PROCESS_LA;
James Smart04c68492009-05-22 14:52:52 -04004740 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004741
4742 rc = lpfc_config_port_post(phba);
4743 if (rc)
4744 goto lpfc_sli_hba_setup_error;
4745
James Smarted957682007-06-17 19:56:37 -05004746 return rc;
4747
James Smart92d7f7b2007-06-17 19:56:38 -05004748lpfc_sli_hba_setup_error:
James Smart2e0fef82007-06-17 19:56:36 -05004749 phba->link_state = LPFC_HBA_ERROR;
James Smarte40a02c2010-02-26 14:13:54 -05004750 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004751 "0445 Firmware initialization failed\n");
dea31012005-04-17 16:05:31 -05004752 return rc;
4753}
4754
James Smartda0436e2009-05-22 14:51:39 -04004755/**
4756 * lpfc_sli4_read_fcoe_params - Read fcoe params from conf region
4757 * @phba: Pointer to HBA context object.
4758 * @mboxq: mailbox pointer.
4759 * This function issue a dump mailbox command to read config region
4760 * 23 and parse the records in the region and populate driver
4761 * data structure.
4762 **/
4763static int
James Smartff78d8f2011-12-13 13:21:35 -05004764lpfc_sli4_read_fcoe_params(struct lpfc_hba *phba)
James Smartda0436e2009-05-22 14:51:39 -04004765{
James Smartff78d8f2011-12-13 13:21:35 -05004766 LPFC_MBOXQ_t *mboxq;
James Smartda0436e2009-05-22 14:51:39 -04004767 struct lpfc_dmabuf *mp;
4768 struct lpfc_mqe *mqe;
4769 uint32_t data_length;
4770 int rc;
4771
4772 /* Program the default value of vlan_id and fc_map */
4773 phba->valid_vlan = 0;
4774 phba->fc_map[0] = LPFC_FCOE_FCF_MAP0;
4775 phba->fc_map[1] = LPFC_FCOE_FCF_MAP1;
4776 phba->fc_map[2] = LPFC_FCOE_FCF_MAP2;
4777
James Smartff78d8f2011-12-13 13:21:35 -05004778 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4779 if (!mboxq)
James Smartda0436e2009-05-22 14:51:39 -04004780 return -ENOMEM;
4781
James Smartff78d8f2011-12-13 13:21:35 -05004782 mqe = &mboxq->u.mqe;
4783 if (lpfc_sli4_dump_cfg_rg23(phba, mboxq)) {
4784 rc = -ENOMEM;
4785 goto out_free_mboxq;
4786 }
4787
James Smartda0436e2009-05-22 14:51:39 -04004788 mp = (struct lpfc_dmabuf *) mboxq->context1;
4789 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4790
4791 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
4792 "(%d):2571 Mailbox cmd x%x Status x%x "
4793 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x "
4794 "x%x x%x x%x x%x x%x x%x x%x x%x x%x "
4795 "CQ: x%x x%x x%x x%x\n",
4796 mboxq->vport ? mboxq->vport->vpi : 0,
4797 bf_get(lpfc_mqe_command, mqe),
4798 bf_get(lpfc_mqe_status, mqe),
4799 mqe->un.mb_words[0], mqe->un.mb_words[1],
4800 mqe->un.mb_words[2], mqe->un.mb_words[3],
4801 mqe->un.mb_words[4], mqe->un.mb_words[5],
4802 mqe->un.mb_words[6], mqe->un.mb_words[7],
4803 mqe->un.mb_words[8], mqe->un.mb_words[9],
4804 mqe->un.mb_words[10], mqe->un.mb_words[11],
4805 mqe->un.mb_words[12], mqe->un.mb_words[13],
4806 mqe->un.mb_words[14], mqe->un.mb_words[15],
4807 mqe->un.mb_words[16], mqe->un.mb_words[50],
4808 mboxq->mcqe.word0,
4809 mboxq->mcqe.mcqe_tag0, mboxq->mcqe.mcqe_tag1,
4810 mboxq->mcqe.trailer);
4811
4812 if (rc) {
4813 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4814 kfree(mp);
James Smartff78d8f2011-12-13 13:21:35 -05004815 rc = -EIO;
4816 goto out_free_mboxq;
James Smartda0436e2009-05-22 14:51:39 -04004817 }
4818 data_length = mqe->un.mb_words[5];
James Smarta0c87cb2009-07-19 10:01:10 -04004819 if (data_length > DMP_RGN23_SIZE) {
James Smartd11e31d2009-06-10 17:23:06 -04004820 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4821 kfree(mp);
James Smartff78d8f2011-12-13 13:21:35 -05004822 rc = -EIO;
4823 goto out_free_mboxq;
James Smartd11e31d2009-06-10 17:23:06 -04004824 }
James Smartda0436e2009-05-22 14:51:39 -04004825
4826 lpfc_parse_fcoe_conf(phba, mp->virt, data_length);
4827 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4828 kfree(mp);
James Smartff78d8f2011-12-13 13:21:35 -05004829 rc = 0;
4830
4831out_free_mboxq:
4832 mempool_free(mboxq, phba->mbox_mem_pool);
4833 return rc;
James Smartda0436e2009-05-22 14:51:39 -04004834}
4835
4836/**
4837 * lpfc_sli4_read_rev - Issue READ_REV and collect vpd data
4838 * @phba: pointer to lpfc hba data structure.
4839 * @mboxq: pointer to the LPFC_MBOXQ_t structure.
4840 * @vpd: pointer to the memory to hold resulting port vpd data.
4841 * @vpd_size: On input, the number of bytes allocated to @vpd.
4842 * On output, the number of data bytes in @vpd.
4843 *
4844 * This routine executes a READ_REV SLI4 mailbox command. In
4845 * addition, this routine gets the port vpd data.
4846 *
4847 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004848 * 0 - successful
James Smartd439d282010-09-29 11:18:45 -04004849 * -ENOMEM - could not allocated memory.
James Smartda0436e2009-05-22 14:51:39 -04004850 **/
4851static int
4852lpfc_sli4_read_rev(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
4853 uint8_t *vpd, uint32_t *vpd_size)
4854{
4855 int rc = 0;
4856 uint32_t dma_size;
4857 struct lpfc_dmabuf *dmabuf;
4858 struct lpfc_mqe *mqe;
4859
4860 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
4861 if (!dmabuf)
4862 return -ENOMEM;
4863
4864 /*
4865 * Get a DMA buffer for the vpd data resulting from the READ_REV
4866 * mailbox command.
4867 */
4868 dma_size = *vpd_size;
Joe Perches1aee3832014-09-03 12:56:12 -04004869 dmabuf->virt = dma_zalloc_coherent(&phba->pcidev->dev, dma_size,
4870 &dmabuf->phys, GFP_KERNEL);
James Smartda0436e2009-05-22 14:51:39 -04004871 if (!dmabuf->virt) {
4872 kfree(dmabuf);
4873 return -ENOMEM;
4874 }
James Smartda0436e2009-05-22 14:51:39 -04004875
4876 /*
4877 * The SLI4 implementation of READ_REV conflicts at word1,
4878 * bits 31:16 and SLI4 adds vpd functionality not present
4879 * in SLI3. This code corrects the conflicts.
4880 */
4881 lpfc_read_rev(phba, mboxq);
4882 mqe = &mboxq->u.mqe;
4883 mqe->un.read_rev.vpd_paddr_high = putPaddrHigh(dmabuf->phys);
4884 mqe->un.read_rev.vpd_paddr_low = putPaddrLow(dmabuf->phys);
4885 mqe->un.read_rev.word1 &= 0x0000FFFF;
4886 bf_set(lpfc_mbx_rd_rev_vpd, &mqe->un.read_rev, 1);
4887 bf_set(lpfc_mbx_rd_rev_avail_len, &mqe->un.read_rev, dma_size);
4888
4889 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4890 if (rc) {
4891 dma_free_coherent(&phba->pcidev->dev, dma_size,
4892 dmabuf->virt, dmabuf->phys);
James Smartdef9c7a2009-12-21 17:02:28 -05004893 kfree(dmabuf);
James Smartda0436e2009-05-22 14:51:39 -04004894 return -EIO;
4895 }
4896
James Smartda0436e2009-05-22 14:51:39 -04004897 /*
4898 * The available vpd length cannot be bigger than the
4899 * DMA buffer passed to the port. Catch the less than
4900 * case and update the caller's size.
4901 */
4902 if (mqe->un.read_rev.avail_vpd_len < *vpd_size)
4903 *vpd_size = mqe->un.read_rev.avail_vpd_len;
4904
James Smartd7c47992010-06-08 18:31:54 -04004905 memcpy(vpd, dmabuf->virt, *vpd_size);
4906
James Smartda0436e2009-05-22 14:51:39 -04004907 dma_free_coherent(&phba->pcidev->dev, dma_size,
4908 dmabuf->virt, dmabuf->phys);
4909 kfree(dmabuf);
4910 return 0;
4911}
4912
4913/**
James Smartcd1c8302011-10-10 21:33:25 -04004914 * lpfc_sli4_retrieve_pport_name - Retrieve SLI4 device physical port name
4915 * @phba: pointer to lpfc hba data structure.
4916 *
4917 * This routine retrieves SLI4 device physical port name this PCI function
4918 * is attached to.
4919 *
4920 * Return codes
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004921 * 0 - successful
James Smartcd1c8302011-10-10 21:33:25 -04004922 * otherwise - failed to retrieve physical port name
4923 **/
4924static int
4925lpfc_sli4_retrieve_pport_name(struct lpfc_hba *phba)
4926{
4927 LPFC_MBOXQ_t *mboxq;
James Smartcd1c8302011-10-10 21:33:25 -04004928 struct lpfc_mbx_get_cntl_attributes *mbx_cntl_attr;
4929 struct lpfc_controller_attribute *cntl_attr;
4930 struct lpfc_mbx_get_port_name *get_port_name;
4931 void *virtaddr = NULL;
4932 uint32_t alloclen, reqlen;
4933 uint32_t shdr_status, shdr_add_status;
4934 union lpfc_sli4_cfg_shdr *shdr;
4935 char cport_name = 0;
4936 int rc;
4937
4938 /* We assume nothing at this point */
4939 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_INVAL;
4940 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_NON;
4941
4942 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4943 if (!mboxq)
4944 return -ENOMEM;
James Smartcd1c8302011-10-10 21:33:25 -04004945 /* obtain link type and link number via READ_CONFIG */
James Smartff78d8f2011-12-13 13:21:35 -05004946 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_INVAL;
4947 lpfc_sli4_read_config(phba);
4948 if (phba->sli4_hba.lnk_info.lnk_dv == LPFC_LNK_DAT_VAL)
4949 goto retrieve_ppname;
James Smartcd1c8302011-10-10 21:33:25 -04004950
4951 /* obtain link type and link number via COMMON_GET_CNTL_ATTRIBUTES */
4952 reqlen = sizeof(struct lpfc_mbx_get_cntl_attributes);
4953 alloclen = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
4954 LPFC_MBOX_OPCODE_GET_CNTL_ATTRIBUTES, reqlen,
4955 LPFC_SLI4_MBX_NEMBED);
4956 if (alloclen < reqlen) {
4957 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
4958 "3084 Allocated DMA memory size (%d) is "
4959 "less than the requested DMA memory size "
4960 "(%d)\n", alloclen, reqlen);
4961 rc = -ENOMEM;
4962 goto out_free_mboxq;
4963 }
4964 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4965 virtaddr = mboxq->sge_array->addr[0];
4966 mbx_cntl_attr = (struct lpfc_mbx_get_cntl_attributes *)virtaddr;
4967 shdr = &mbx_cntl_attr->cfg_shdr;
4968 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
4969 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
4970 if (shdr_status || shdr_add_status || rc) {
4971 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
4972 "3085 Mailbox x%x (x%x/x%x) failed, "
4973 "rc:x%x, status:x%x, add_status:x%x\n",
4974 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
4975 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
4976 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
4977 rc, shdr_status, shdr_add_status);
4978 rc = -ENXIO;
4979 goto out_free_mboxq;
4980 }
4981 cntl_attr = &mbx_cntl_attr->cntl_attr;
4982 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_VAL;
4983 phba->sli4_hba.lnk_info.lnk_tp =
4984 bf_get(lpfc_cntl_attr_lnk_type, cntl_attr);
4985 phba->sli4_hba.lnk_info.lnk_no =
4986 bf_get(lpfc_cntl_attr_lnk_numb, cntl_attr);
4987 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4988 "3086 lnk_type:%d, lnk_numb:%d\n",
4989 phba->sli4_hba.lnk_info.lnk_tp,
4990 phba->sli4_hba.lnk_info.lnk_no);
4991
4992retrieve_ppname:
4993 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
4994 LPFC_MBOX_OPCODE_GET_PORT_NAME,
4995 sizeof(struct lpfc_mbx_get_port_name) -
4996 sizeof(struct lpfc_sli4_cfg_mhdr),
4997 LPFC_SLI4_MBX_EMBED);
4998 get_port_name = &mboxq->u.mqe.un.get_port_name;
4999 shdr = (union lpfc_sli4_cfg_shdr *)&get_port_name->header.cfg_shdr;
5000 bf_set(lpfc_mbox_hdr_version, &shdr->request, LPFC_OPCODE_VERSION_1);
5001 bf_set(lpfc_mbx_get_port_name_lnk_type, &get_port_name->u.request,
5002 phba->sli4_hba.lnk_info.lnk_tp);
5003 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
5004 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
5005 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
5006 if (shdr_status || shdr_add_status || rc) {
5007 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
5008 "3087 Mailbox x%x (x%x/x%x) failed: "
5009 "rc:x%x, status:x%x, add_status:x%x\n",
5010 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
5011 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
5012 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
5013 rc, shdr_status, shdr_add_status);
5014 rc = -ENXIO;
5015 goto out_free_mboxq;
5016 }
5017 switch (phba->sli4_hba.lnk_info.lnk_no) {
5018 case LPFC_LINK_NUMBER_0:
5019 cport_name = bf_get(lpfc_mbx_get_port_name_name0,
5020 &get_port_name->u.response);
5021 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
5022 break;
5023 case LPFC_LINK_NUMBER_1:
5024 cport_name = bf_get(lpfc_mbx_get_port_name_name1,
5025 &get_port_name->u.response);
5026 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
5027 break;
5028 case LPFC_LINK_NUMBER_2:
5029 cport_name = bf_get(lpfc_mbx_get_port_name_name2,
5030 &get_port_name->u.response);
5031 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
5032 break;
5033 case LPFC_LINK_NUMBER_3:
5034 cport_name = bf_get(lpfc_mbx_get_port_name_name3,
5035 &get_port_name->u.response);
5036 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
5037 break;
5038 default:
5039 break;
5040 }
5041
5042 if (phba->sli4_hba.pport_name_sta == LPFC_SLI4_PPNAME_GET) {
5043 phba->Port[0] = cport_name;
5044 phba->Port[1] = '\0';
5045 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
5046 "3091 SLI get port name: %s\n", phba->Port);
5047 }
5048
5049out_free_mboxq:
5050 if (rc != MBX_TIMEOUT) {
5051 if (bf_get(lpfc_mqe_command, &mboxq->u.mqe) == MBX_SLI4_CONFIG)
5052 lpfc_sli4_mbox_cmd_free(phba, mboxq);
5053 else
5054 mempool_free(mboxq, phba->mbox_mem_pool);
5055 }
5056 return rc;
5057}
5058
5059/**
James Smartda0436e2009-05-22 14:51:39 -04005060 * lpfc_sli4_arm_cqeq_intr - Arm sli-4 device completion and event queues
5061 * @phba: pointer to lpfc hba data structure.
5062 *
5063 * This routine is called to explicitly arm the SLI4 device's completion and
5064 * event queues
5065 **/
5066static void
5067lpfc_sli4_arm_cqeq_intr(struct lpfc_hba *phba)
5068{
James Smart962bc512013-01-03 15:44:00 -05005069 int fcp_eqidx;
James Smartda0436e2009-05-22 14:51:39 -04005070
5071 lpfc_sli4_cq_release(phba->sli4_hba.mbx_cq, LPFC_QUEUE_REARM);
5072 lpfc_sli4_cq_release(phba->sli4_hba.els_cq, LPFC_QUEUE_REARM);
James Smart05580562011-05-24 11:40:48 -04005073 fcp_eqidx = 0;
James Smart2e90f4b2011-12-13 13:22:37 -05005074 if (phba->sli4_hba.fcp_cq) {
James Smart67d12732012-08-03 12:36:13 -04005075 do {
James Smart2e90f4b2011-12-13 13:22:37 -05005076 lpfc_sli4_cq_release(phba->sli4_hba.fcp_cq[fcp_eqidx],
5077 LPFC_QUEUE_REARM);
James Smart67d12732012-08-03 12:36:13 -04005078 } while (++fcp_eqidx < phba->cfg_fcp_io_channel);
James Smart2e90f4b2011-12-13 13:22:37 -05005079 }
James Smart1ba981f2014-02-20 09:56:45 -05005080
James Smartf38fa0b2014-04-04 13:52:21 -04005081 if (phba->cfg_fof)
James Smart1ba981f2014-02-20 09:56:45 -05005082 lpfc_sli4_cq_release(phba->sli4_hba.oas_cq, LPFC_QUEUE_REARM);
5083
James Smart67d12732012-08-03 12:36:13 -04005084 if (phba->sli4_hba.hba_eq) {
5085 for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_io_channel;
James Smart2e90f4b2011-12-13 13:22:37 -05005086 fcp_eqidx++)
James Smart67d12732012-08-03 12:36:13 -04005087 lpfc_sli4_eq_release(phba->sli4_hba.hba_eq[fcp_eqidx],
James Smart2e90f4b2011-12-13 13:22:37 -05005088 LPFC_QUEUE_REARM);
5089 }
James Smart1ba981f2014-02-20 09:56:45 -05005090
5091 if (phba->cfg_fof)
5092 lpfc_sli4_eq_release(phba->sli4_hba.fof_eq, LPFC_QUEUE_REARM);
James Smartda0436e2009-05-22 14:51:39 -04005093}
5094
5095/**
James Smart6d368e52011-05-24 11:44:12 -04005096 * lpfc_sli4_get_avail_extnt_rsrc - Get available resource extent count.
5097 * @phba: Pointer to HBA context object.
5098 * @type: The resource extent type.
James Smartb76f2dc2011-07-22 18:37:42 -04005099 * @extnt_count: buffer to hold port available extent count.
5100 * @extnt_size: buffer to hold element count per extent.
James Smart6d368e52011-05-24 11:44:12 -04005101 *
James Smartb76f2dc2011-07-22 18:37:42 -04005102 * This function calls the port and retrievs the number of available
5103 * extents and their size for a particular extent type.
5104 *
5105 * Returns: 0 if successful. Nonzero otherwise.
James Smart6d368e52011-05-24 11:44:12 -04005106 **/
James Smartb76f2dc2011-07-22 18:37:42 -04005107int
James Smart6d368e52011-05-24 11:44:12 -04005108lpfc_sli4_get_avail_extnt_rsrc(struct lpfc_hba *phba, uint16_t type,
5109 uint16_t *extnt_count, uint16_t *extnt_size)
5110{
5111 int rc = 0;
5112 uint32_t length;
5113 uint32_t mbox_tmo;
5114 struct lpfc_mbx_get_rsrc_extent_info *rsrc_info;
5115 LPFC_MBOXQ_t *mbox;
5116
5117 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5118 if (!mbox)
5119 return -ENOMEM;
5120
5121 /* Find out how many extents are available for this resource type */
5122 length = (sizeof(struct lpfc_mbx_get_rsrc_extent_info) -
5123 sizeof(struct lpfc_sli4_cfg_mhdr));
5124 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5125 LPFC_MBOX_OPCODE_GET_RSRC_EXTENT_INFO,
5126 length, LPFC_SLI4_MBX_EMBED);
5127
5128 /* Send an extents count of 0 - the GET doesn't use it. */
5129 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, 0, type,
5130 LPFC_SLI4_MBX_EMBED);
5131 if (unlikely(rc)) {
5132 rc = -EIO;
5133 goto err_exit;
5134 }
5135
5136 if (!phba->sli4_hba.intr_enable)
5137 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5138 else {
James Smarta183a152011-10-10 21:32:43 -04005139 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -04005140 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5141 }
5142 if (unlikely(rc)) {
5143 rc = -EIO;
5144 goto err_exit;
5145 }
5146
5147 rsrc_info = &mbox->u.mqe.un.rsrc_extent_info;
5148 if (bf_get(lpfc_mbox_hdr_status,
5149 &rsrc_info->header.cfg_shdr.response)) {
5150 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5151 "2930 Failed to get resource extents "
5152 "Status 0x%x Add'l Status 0x%x\n",
5153 bf_get(lpfc_mbox_hdr_status,
5154 &rsrc_info->header.cfg_shdr.response),
5155 bf_get(lpfc_mbox_hdr_add_status,
5156 &rsrc_info->header.cfg_shdr.response));
5157 rc = -EIO;
5158 goto err_exit;
5159 }
5160
5161 *extnt_count = bf_get(lpfc_mbx_get_rsrc_extent_info_cnt,
5162 &rsrc_info->u.rsp);
5163 *extnt_size = bf_get(lpfc_mbx_get_rsrc_extent_info_size,
5164 &rsrc_info->u.rsp);
James Smart8a9d2e82012-05-09 21:16:12 -04005165
5166 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
5167 "3162 Retrieved extents type-%d from port: count:%d, "
5168 "size:%d\n", type, *extnt_count, *extnt_size);
5169
5170err_exit:
James Smart6d368e52011-05-24 11:44:12 -04005171 mempool_free(mbox, phba->mbox_mem_pool);
5172 return rc;
5173}
5174
5175/**
5176 * lpfc_sli4_chk_avail_extnt_rsrc - Check for available SLI4 resource extents.
5177 * @phba: Pointer to HBA context object.
5178 * @type: The extent type to check.
5179 *
5180 * This function reads the current available extents from the port and checks
5181 * if the extent count or extent size has changed since the last access.
5182 * Callers use this routine post port reset to understand if there is a
5183 * extent reprovisioning requirement.
5184 *
5185 * Returns:
5186 * -Error: error indicates problem.
5187 * 1: Extent count or size has changed.
5188 * 0: No changes.
5189 **/
5190static int
5191lpfc_sli4_chk_avail_extnt_rsrc(struct lpfc_hba *phba, uint16_t type)
5192{
5193 uint16_t curr_ext_cnt, rsrc_ext_cnt;
5194 uint16_t size_diff, rsrc_ext_size;
5195 int rc = 0;
5196 struct lpfc_rsrc_blks *rsrc_entry;
5197 struct list_head *rsrc_blk_list = NULL;
5198
5199 size_diff = 0;
5200 curr_ext_cnt = 0;
5201 rc = lpfc_sli4_get_avail_extnt_rsrc(phba, type,
5202 &rsrc_ext_cnt,
5203 &rsrc_ext_size);
5204 if (unlikely(rc))
5205 return -EIO;
5206
5207 switch (type) {
5208 case LPFC_RSC_TYPE_FCOE_RPI:
5209 rsrc_blk_list = &phba->sli4_hba.lpfc_rpi_blk_list;
5210 break;
5211 case LPFC_RSC_TYPE_FCOE_VPI:
5212 rsrc_blk_list = &phba->lpfc_vpi_blk_list;
5213 break;
5214 case LPFC_RSC_TYPE_FCOE_XRI:
5215 rsrc_blk_list = &phba->sli4_hba.lpfc_xri_blk_list;
5216 break;
5217 case LPFC_RSC_TYPE_FCOE_VFI:
5218 rsrc_blk_list = &phba->sli4_hba.lpfc_vfi_blk_list;
5219 break;
5220 default:
5221 break;
5222 }
5223
5224 list_for_each_entry(rsrc_entry, rsrc_blk_list, list) {
5225 curr_ext_cnt++;
5226 if (rsrc_entry->rsrc_size != rsrc_ext_size)
5227 size_diff++;
5228 }
5229
5230 if (curr_ext_cnt != rsrc_ext_cnt || size_diff != 0)
5231 rc = 1;
5232
5233 return rc;
5234}
5235
5236/**
5237 * lpfc_sli4_cfg_post_extnts -
5238 * @phba: Pointer to HBA context object.
5239 * @extnt_cnt - number of available extents.
5240 * @type - the extent type (rpi, xri, vfi, vpi).
5241 * @emb - buffer to hold either MBX_EMBED or MBX_NEMBED operation.
5242 * @mbox - pointer to the caller's allocated mailbox structure.
5243 *
5244 * This function executes the extents allocation request. It also
5245 * takes care of the amount of memory needed to allocate or get the
5246 * allocated extents. It is the caller's responsibility to evaluate
5247 * the response.
5248 *
5249 * Returns:
5250 * -Error: Error value describes the condition found.
5251 * 0: if successful
5252 **/
5253static int
James Smart8a9d2e82012-05-09 21:16:12 -04005254lpfc_sli4_cfg_post_extnts(struct lpfc_hba *phba, uint16_t extnt_cnt,
James Smart6d368e52011-05-24 11:44:12 -04005255 uint16_t type, bool *emb, LPFC_MBOXQ_t *mbox)
5256{
5257 int rc = 0;
5258 uint32_t req_len;
5259 uint32_t emb_len;
5260 uint32_t alloc_len, mbox_tmo;
5261
5262 /* Calculate the total requested length of the dma memory */
James Smart8a9d2e82012-05-09 21:16:12 -04005263 req_len = extnt_cnt * sizeof(uint16_t);
James Smart6d368e52011-05-24 11:44:12 -04005264
5265 /*
5266 * Calculate the size of an embedded mailbox. The uint32_t
5267 * accounts for extents-specific word.
5268 */
5269 emb_len = sizeof(MAILBOX_t) - sizeof(struct mbox_header) -
5270 sizeof(uint32_t);
5271
5272 /*
5273 * Presume the allocation and response will fit into an embedded
5274 * mailbox. If not true, reconfigure to a non-embedded mailbox.
5275 */
5276 *emb = LPFC_SLI4_MBX_EMBED;
5277 if (req_len > emb_len) {
James Smart8a9d2e82012-05-09 21:16:12 -04005278 req_len = extnt_cnt * sizeof(uint16_t) +
James Smart6d368e52011-05-24 11:44:12 -04005279 sizeof(union lpfc_sli4_cfg_shdr) +
5280 sizeof(uint32_t);
5281 *emb = LPFC_SLI4_MBX_NEMBED;
5282 }
5283
5284 alloc_len = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5285 LPFC_MBOX_OPCODE_ALLOC_RSRC_EXTENT,
5286 req_len, *emb);
5287 if (alloc_len < req_len) {
5288 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smartb76f2dc2011-07-22 18:37:42 -04005289 "2982 Allocated DMA memory size (x%x) is "
James Smart6d368e52011-05-24 11:44:12 -04005290 "less than the requested DMA memory "
5291 "size (x%x)\n", alloc_len, req_len);
5292 return -ENOMEM;
5293 }
James Smart8a9d2e82012-05-09 21:16:12 -04005294 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, extnt_cnt, type, *emb);
James Smart6d368e52011-05-24 11:44:12 -04005295 if (unlikely(rc))
5296 return -EIO;
5297
5298 if (!phba->sli4_hba.intr_enable)
5299 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5300 else {
James Smarta183a152011-10-10 21:32:43 -04005301 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -04005302 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5303 }
5304
5305 if (unlikely(rc))
5306 rc = -EIO;
5307 return rc;
5308}
5309
5310/**
5311 * lpfc_sli4_alloc_extent - Allocate an SLI4 resource extent.
5312 * @phba: Pointer to HBA context object.
5313 * @type: The resource extent type to allocate.
5314 *
5315 * This function allocates the number of elements for the specified
5316 * resource type.
5317 **/
5318static int
5319lpfc_sli4_alloc_extent(struct lpfc_hba *phba, uint16_t type)
5320{
5321 bool emb = false;
5322 uint16_t rsrc_id_cnt, rsrc_cnt, rsrc_size;
5323 uint16_t rsrc_id, rsrc_start, j, k;
5324 uint16_t *ids;
5325 int i, rc;
5326 unsigned long longs;
5327 unsigned long *bmask;
5328 struct lpfc_rsrc_blks *rsrc_blks;
5329 LPFC_MBOXQ_t *mbox;
5330 uint32_t length;
5331 struct lpfc_id_range *id_array = NULL;
5332 void *virtaddr = NULL;
5333 struct lpfc_mbx_nembed_rsrc_extent *n_rsrc;
5334 struct lpfc_mbx_alloc_rsrc_extents *rsrc_ext;
5335 struct list_head *ext_blk_list;
5336
5337 rc = lpfc_sli4_get_avail_extnt_rsrc(phba, type,
5338 &rsrc_cnt,
5339 &rsrc_size);
5340 if (unlikely(rc))
5341 return -EIO;
5342
5343 if ((rsrc_cnt == 0) || (rsrc_size == 0)) {
5344 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5345 "3009 No available Resource Extents "
5346 "for resource type 0x%x: Count: 0x%x, "
5347 "Size 0x%x\n", type, rsrc_cnt,
5348 rsrc_size);
5349 return -ENOMEM;
5350 }
5351
James Smart8a9d2e82012-05-09 21:16:12 -04005352 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_INIT | LOG_SLI,
5353 "2903 Post resource extents type-0x%x: "
5354 "count:%d, size %d\n", type, rsrc_cnt, rsrc_size);
James Smart6d368e52011-05-24 11:44:12 -04005355
5356 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5357 if (!mbox)
5358 return -ENOMEM;
5359
James Smart8a9d2e82012-05-09 21:16:12 -04005360 rc = lpfc_sli4_cfg_post_extnts(phba, rsrc_cnt, type, &emb, mbox);
James Smart6d368e52011-05-24 11:44:12 -04005361 if (unlikely(rc)) {
5362 rc = -EIO;
5363 goto err_exit;
5364 }
5365
5366 /*
5367 * Figure out where the response is located. Then get local pointers
5368 * to the response data. The port does not guarantee to respond to
5369 * all extents counts request so update the local variable with the
5370 * allocated count from the port.
5371 */
5372 if (emb == LPFC_SLI4_MBX_EMBED) {
5373 rsrc_ext = &mbox->u.mqe.un.alloc_rsrc_extents;
5374 id_array = &rsrc_ext->u.rsp.id[0];
5375 rsrc_cnt = bf_get(lpfc_mbx_rsrc_cnt, &rsrc_ext->u.rsp);
5376 } else {
5377 virtaddr = mbox->sge_array->addr[0];
5378 n_rsrc = (struct lpfc_mbx_nembed_rsrc_extent *) virtaddr;
5379 rsrc_cnt = bf_get(lpfc_mbx_rsrc_cnt, n_rsrc);
5380 id_array = &n_rsrc->id;
5381 }
5382
5383 longs = ((rsrc_cnt * rsrc_size) + BITS_PER_LONG - 1) / BITS_PER_LONG;
5384 rsrc_id_cnt = rsrc_cnt * rsrc_size;
5385
5386 /*
5387 * Based on the resource size and count, correct the base and max
5388 * resource values.
5389 */
5390 length = sizeof(struct lpfc_rsrc_blks);
5391 switch (type) {
5392 case LPFC_RSC_TYPE_FCOE_RPI:
5393 phba->sli4_hba.rpi_bmask = kzalloc(longs *
5394 sizeof(unsigned long),
5395 GFP_KERNEL);
5396 if (unlikely(!phba->sli4_hba.rpi_bmask)) {
5397 rc = -ENOMEM;
5398 goto err_exit;
5399 }
5400 phba->sli4_hba.rpi_ids = kzalloc(rsrc_id_cnt *
5401 sizeof(uint16_t),
5402 GFP_KERNEL);
5403 if (unlikely(!phba->sli4_hba.rpi_ids)) {
5404 kfree(phba->sli4_hba.rpi_bmask);
5405 rc = -ENOMEM;
5406 goto err_exit;
5407 }
5408
5409 /*
5410 * The next_rpi was initialized with the maximum available
5411 * count but the port may allocate a smaller number. Catch
5412 * that case and update the next_rpi.
5413 */
5414 phba->sli4_hba.next_rpi = rsrc_id_cnt;
5415
5416 /* Initialize local ptrs for common extent processing later. */
5417 bmask = phba->sli4_hba.rpi_bmask;
5418 ids = phba->sli4_hba.rpi_ids;
5419 ext_blk_list = &phba->sli4_hba.lpfc_rpi_blk_list;
5420 break;
5421 case LPFC_RSC_TYPE_FCOE_VPI:
5422 phba->vpi_bmask = kzalloc(longs *
5423 sizeof(unsigned long),
5424 GFP_KERNEL);
5425 if (unlikely(!phba->vpi_bmask)) {
5426 rc = -ENOMEM;
5427 goto err_exit;
5428 }
5429 phba->vpi_ids = kzalloc(rsrc_id_cnt *
5430 sizeof(uint16_t),
5431 GFP_KERNEL);
5432 if (unlikely(!phba->vpi_ids)) {
5433 kfree(phba->vpi_bmask);
5434 rc = -ENOMEM;
5435 goto err_exit;
5436 }
5437
5438 /* Initialize local ptrs for common extent processing later. */
5439 bmask = phba->vpi_bmask;
5440 ids = phba->vpi_ids;
5441 ext_blk_list = &phba->lpfc_vpi_blk_list;
5442 break;
5443 case LPFC_RSC_TYPE_FCOE_XRI:
5444 phba->sli4_hba.xri_bmask = kzalloc(longs *
5445 sizeof(unsigned long),
5446 GFP_KERNEL);
5447 if (unlikely(!phba->sli4_hba.xri_bmask)) {
5448 rc = -ENOMEM;
5449 goto err_exit;
5450 }
James Smart8a9d2e82012-05-09 21:16:12 -04005451 phba->sli4_hba.max_cfg_param.xri_used = 0;
James Smart6d368e52011-05-24 11:44:12 -04005452 phba->sli4_hba.xri_ids = kzalloc(rsrc_id_cnt *
5453 sizeof(uint16_t),
5454 GFP_KERNEL);
5455 if (unlikely(!phba->sli4_hba.xri_ids)) {
5456 kfree(phba->sli4_hba.xri_bmask);
5457 rc = -ENOMEM;
5458 goto err_exit;
5459 }
5460
5461 /* Initialize local ptrs for common extent processing later. */
5462 bmask = phba->sli4_hba.xri_bmask;
5463 ids = phba->sli4_hba.xri_ids;
5464 ext_blk_list = &phba->sli4_hba.lpfc_xri_blk_list;
5465 break;
5466 case LPFC_RSC_TYPE_FCOE_VFI:
5467 phba->sli4_hba.vfi_bmask = kzalloc(longs *
5468 sizeof(unsigned long),
5469 GFP_KERNEL);
5470 if (unlikely(!phba->sli4_hba.vfi_bmask)) {
5471 rc = -ENOMEM;
5472 goto err_exit;
5473 }
5474 phba->sli4_hba.vfi_ids = kzalloc(rsrc_id_cnt *
5475 sizeof(uint16_t),
5476 GFP_KERNEL);
5477 if (unlikely(!phba->sli4_hba.vfi_ids)) {
5478 kfree(phba->sli4_hba.vfi_bmask);
5479 rc = -ENOMEM;
5480 goto err_exit;
5481 }
5482
5483 /* Initialize local ptrs for common extent processing later. */
5484 bmask = phba->sli4_hba.vfi_bmask;
5485 ids = phba->sli4_hba.vfi_ids;
5486 ext_blk_list = &phba->sli4_hba.lpfc_vfi_blk_list;
5487 break;
5488 default:
5489 /* Unsupported Opcode. Fail call. */
5490 id_array = NULL;
5491 bmask = NULL;
5492 ids = NULL;
5493 ext_blk_list = NULL;
5494 goto err_exit;
5495 }
5496
5497 /*
5498 * Complete initializing the extent configuration with the
5499 * allocated ids assigned to this function. The bitmask serves
5500 * as an index into the array and manages the available ids. The
5501 * array just stores the ids communicated to the port via the wqes.
5502 */
5503 for (i = 0, j = 0, k = 0; i < rsrc_cnt; i++) {
5504 if ((i % 2) == 0)
5505 rsrc_id = bf_get(lpfc_mbx_rsrc_id_word4_0,
5506 &id_array[k]);
5507 else
5508 rsrc_id = bf_get(lpfc_mbx_rsrc_id_word4_1,
5509 &id_array[k]);
5510
5511 rsrc_blks = kzalloc(length, GFP_KERNEL);
5512 if (unlikely(!rsrc_blks)) {
5513 rc = -ENOMEM;
5514 kfree(bmask);
5515 kfree(ids);
5516 goto err_exit;
5517 }
5518 rsrc_blks->rsrc_start = rsrc_id;
5519 rsrc_blks->rsrc_size = rsrc_size;
5520 list_add_tail(&rsrc_blks->list, ext_blk_list);
5521 rsrc_start = rsrc_id;
5522 if ((type == LPFC_RSC_TYPE_FCOE_XRI) && (j == 0))
5523 phba->sli4_hba.scsi_xri_start = rsrc_start +
5524 lpfc_sli4_get_els_iocb_cnt(phba);
5525
5526 while (rsrc_id < (rsrc_start + rsrc_size)) {
5527 ids[j] = rsrc_id;
5528 rsrc_id++;
5529 j++;
5530 }
5531 /* Entire word processed. Get next word.*/
5532 if ((i % 2) == 1)
5533 k++;
5534 }
5535 err_exit:
5536 lpfc_sli4_mbox_cmd_free(phba, mbox);
5537 return rc;
5538}
5539
5540/**
5541 * lpfc_sli4_dealloc_extent - Deallocate an SLI4 resource extent.
5542 * @phba: Pointer to HBA context object.
5543 * @type: the extent's type.
5544 *
5545 * This function deallocates all extents of a particular resource type.
5546 * SLI4 does not allow for deallocating a particular extent range. It
5547 * is the caller's responsibility to release all kernel memory resources.
5548 **/
5549static int
5550lpfc_sli4_dealloc_extent(struct lpfc_hba *phba, uint16_t type)
5551{
5552 int rc;
5553 uint32_t length, mbox_tmo = 0;
5554 LPFC_MBOXQ_t *mbox;
5555 struct lpfc_mbx_dealloc_rsrc_extents *dealloc_rsrc;
5556 struct lpfc_rsrc_blks *rsrc_blk, *rsrc_blk_next;
5557
5558 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5559 if (!mbox)
5560 return -ENOMEM;
5561
5562 /*
5563 * This function sends an embedded mailbox because it only sends the
5564 * the resource type. All extents of this type are released by the
5565 * port.
5566 */
5567 length = (sizeof(struct lpfc_mbx_dealloc_rsrc_extents) -
5568 sizeof(struct lpfc_sli4_cfg_mhdr));
5569 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5570 LPFC_MBOX_OPCODE_DEALLOC_RSRC_EXTENT,
5571 length, LPFC_SLI4_MBX_EMBED);
5572
5573 /* Send an extents count of 0 - the dealloc doesn't use it. */
5574 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, 0, type,
5575 LPFC_SLI4_MBX_EMBED);
5576 if (unlikely(rc)) {
5577 rc = -EIO;
5578 goto out_free_mbox;
5579 }
5580 if (!phba->sli4_hba.intr_enable)
5581 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5582 else {
James Smarta183a152011-10-10 21:32:43 -04005583 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -04005584 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5585 }
5586 if (unlikely(rc)) {
5587 rc = -EIO;
5588 goto out_free_mbox;
5589 }
5590
5591 dealloc_rsrc = &mbox->u.mqe.un.dealloc_rsrc_extents;
5592 if (bf_get(lpfc_mbox_hdr_status,
5593 &dealloc_rsrc->header.cfg_shdr.response)) {
5594 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5595 "2919 Failed to release resource extents "
5596 "for type %d - Status 0x%x Add'l Status 0x%x. "
5597 "Resource memory not released.\n",
5598 type,
5599 bf_get(lpfc_mbox_hdr_status,
5600 &dealloc_rsrc->header.cfg_shdr.response),
5601 bf_get(lpfc_mbox_hdr_add_status,
5602 &dealloc_rsrc->header.cfg_shdr.response));
5603 rc = -EIO;
5604 goto out_free_mbox;
5605 }
5606
5607 /* Release kernel memory resources for the specific type. */
5608 switch (type) {
5609 case LPFC_RSC_TYPE_FCOE_VPI:
5610 kfree(phba->vpi_bmask);
5611 kfree(phba->vpi_ids);
5612 bf_set(lpfc_vpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5613 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5614 &phba->lpfc_vpi_blk_list, list) {
5615 list_del_init(&rsrc_blk->list);
5616 kfree(rsrc_blk);
5617 }
James Smart16a3a202013-04-17 20:14:38 -04005618 phba->sli4_hba.max_cfg_param.vpi_used = 0;
James Smart6d368e52011-05-24 11:44:12 -04005619 break;
5620 case LPFC_RSC_TYPE_FCOE_XRI:
5621 kfree(phba->sli4_hba.xri_bmask);
5622 kfree(phba->sli4_hba.xri_ids);
James Smart6d368e52011-05-24 11:44:12 -04005623 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5624 &phba->sli4_hba.lpfc_xri_blk_list, list) {
5625 list_del_init(&rsrc_blk->list);
5626 kfree(rsrc_blk);
5627 }
5628 break;
5629 case LPFC_RSC_TYPE_FCOE_VFI:
5630 kfree(phba->sli4_hba.vfi_bmask);
5631 kfree(phba->sli4_hba.vfi_ids);
5632 bf_set(lpfc_vfi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5633 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5634 &phba->sli4_hba.lpfc_vfi_blk_list, list) {
5635 list_del_init(&rsrc_blk->list);
5636 kfree(rsrc_blk);
5637 }
5638 break;
5639 case LPFC_RSC_TYPE_FCOE_RPI:
5640 /* RPI bitmask and physical id array are cleaned up earlier. */
5641 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5642 &phba->sli4_hba.lpfc_rpi_blk_list, list) {
5643 list_del_init(&rsrc_blk->list);
5644 kfree(rsrc_blk);
5645 }
5646 break;
5647 default:
5648 break;
5649 }
5650
5651 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5652
5653 out_free_mbox:
5654 mempool_free(mbox, phba->mbox_mem_pool);
5655 return rc;
5656}
5657
5658/**
5659 * lpfc_sli4_alloc_resource_identifiers - Allocate all SLI4 resource extents.
5660 * @phba: Pointer to HBA context object.
5661 *
5662 * This function allocates all SLI4 resource identifiers.
5663 **/
5664int
5665lpfc_sli4_alloc_resource_identifiers(struct lpfc_hba *phba)
5666{
5667 int i, rc, error = 0;
5668 uint16_t count, base;
5669 unsigned long longs;
5670
James Smartff78d8f2011-12-13 13:21:35 -05005671 if (!phba->sli4_hba.rpi_hdrs_in_use)
5672 phba->sli4_hba.next_rpi = phba->sli4_hba.max_cfg_param.max_rpi;
James Smart6d368e52011-05-24 11:44:12 -04005673 if (phba->sli4_hba.extents_in_use) {
5674 /*
5675 * The port supports resource extents. The XRI, VPI, VFI, RPI
5676 * resource extent count must be read and allocated before
5677 * provisioning the resource id arrays.
5678 */
5679 if (bf_get(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags) ==
5680 LPFC_IDX_RSRC_RDY) {
5681 /*
5682 * Extent-based resources are set - the driver could
5683 * be in a port reset. Figure out if any corrective
5684 * actions need to be taken.
5685 */
5686 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5687 LPFC_RSC_TYPE_FCOE_VFI);
5688 if (rc != 0)
5689 error++;
5690 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5691 LPFC_RSC_TYPE_FCOE_VPI);
5692 if (rc != 0)
5693 error++;
5694 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5695 LPFC_RSC_TYPE_FCOE_XRI);
5696 if (rc != 0)
5697 error++;
5698 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5699 LPFC_RSC_TYPE_FCOE_RPI);
5700 if (rc != 0)
5701 error++;
5702
5703 /*
5704 * It's possible that the number of resources
5705 * provided to this port instance changed between
5706 * resets. Detect this condition and reallocate
5707 * resources. Otherwise, there is no action.
5708 */
5709 if (error) {
5710 lpfc_printf_log(phba, KERN_INFO,
5711 LOG_MBOX | LOG_INIT,
5712 "2931 Detected extent resource "
5713 "change. Reallocating all "
5714 "extents.\n");
5715 rc = lpfc_sli4_dealloc_extent(phba,
5716 LPFC_RSC_TYPE_FCOE_VFI);
5717 rc = lpfc_sli4_dealloc_extent(phba,
5718 LPFC_RSC_TYPE_FCOE_VPI);
5719 rc = lpfc_sli4_dealloc_extent(phba,
5720 LPFC_RSC_TYPE_FCOE_XRI);
5721 rc = lpfc_sli4_dealloc_extent(phba,
5722 LPFC_RSC_TYPE_FCOE_RPI);
5723 } else
5724 return 0;
5725 }
5726
5727 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_VFI);
5728 if (unlikely(rc))
5729 goto err_exit;
5730
5731 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_VPI);
5732 if (unlikely(rc))
5733 goto err_exit;
5734
5735 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_RPI);
5736 if (unlikely(rc))
5737 goto err_exit;
5738
5739 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_XRI);
5740 if (unlikely(rc))
5741 goto err_exit;
5742 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags,
5743 LPFC_IDX_RSRC_RDY);
5744 return rc;
5745 } else {
5746 /*
5747 * The port does not support resource extents. The XRI, VPI,
5748 * VFI, RPI resource ids were determined from READ_CONFIG.
5749 * Just allocate the bitmasks and provision the resource id
5750 * arrays. If a port reset is active, the resources don't
5751 * need any action - just exit.
5752 */
5753 if (bf_get(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags) ==
James Smartff78d8f2011-12-13 13:21:35 -05005754 LPFC_IDX_RSRC_RDY) {
5755 lpfc_sli4_dealloc_resource_identifiers(phba);
5756 lpfc_sli4_remove_rpis(phba);
5757 }
James Smart6d368e52011-05-24 11:44:12 -04005758 /* RPIs. */
5759 count = phba->sli4_hba.max_cfg_param.max_rpi;
James Smart0a630c22013-01-03 15:44:09 -05005760 if (count <= 0) {
5761 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5762 "3279 Invalid provisioning of "
5763 "rpi:%d\n", count);
5764 rc = -EINVAL;
5765 goto err_exit;
5766 }
James Smart6d368e52011-05-24 11:44:12 -04005767 base = phba->sli4_hba.max_cfg_param.rpi_base;
5768 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5769 phba->sli4_hba.rpi_bmask = kzalloc(longs *
5770 sizeof(unsigned long),
5771 GFP_KERNEL);
5772 if (unlikely(!phba->sli4_hba.rpi_bmask)) {
5773 rc = -ENOMEM;
5774 goto err_exit;
5775 }
5776 phba->sli4_hba.rpi_ids = kzalloc(count *
5777 sizeof(uint16_t),
5778 GFP_KERNEL);
5779 if (unlikely(!phba->sli4_hba.rpi_ids)) {
5780 rc = -ENOMEM;
5781 goto free_rpi_bmask;
5782 }
5783
5784 for (i = 0; i < count; i++)
5785 phba->sli4_hba.rpi_ids[i] = base + i;
5786
5787 /* VPIs. */
5788 count = phba->sli4_hba.max_cfg_param.max_vpi;
James Smart0a630c22013-01-03 15:44:09 -05005789 if (count <= 0) {
5790 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5791 "3280 Invalid provisioning of "
5792 "vpi:%d\n", count);
5793 rc = -EINVAL;
5794 goto free_rpi_ids;
5795 }
James Smart6d368e52011-05-24 11:44:12 -04005796 base = phba->sli4_hba.max_cfg_param.vpi_base;
5797 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5798 phba->vpi_bmask = kzalloc(longs *
5799 sizeof(unsigned long),
5800 GFP_KERNEL);
5801 if (unlikely(!phba->vpi_bmask)) {
5802 rc = -ENOMEM;
5803 goto free_rpi_ids;
5804 }
5805 phba->vpi_ids = kzalloc(count *
5806 sizeof(uint16_t),
5807 GFP_KERNEL);
5808 if (unlikely(!phba->vpi_ids)) {
5809 rc = -ENOMEM;
5810 goto free_vpi_bmask;
5811 }
5812
5813 for (i = 0; i < count; i++)
5814 phba->vpi_ids[i] = base + i;
5815
5816 /* XRIs. */
5817 count = phba->sli4_hba.max_cfg_param.max_xri;
James Smart0a630c22013-01-03 15:44:09 -05005818 if (count <= 0) {
5819 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5820 "3281 Invalid provisioning of "
5821 "xri:%d\n", count);
5822 rc = -EINVAL;
5823 goto free_vpi_ids;
5824 }
James Smart6d368e52011-05-24 11:44:12 -04005825 base = phba->sli4_hba.max_cfg_param.xri_base;
5826 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5827 phba->sli4_hba.xri_bmask = kzalloc(longs *
5828 sizeof(unsigned long),
5829 GFP_KERNEL);
5830 if (unlikely(!phba->sli4_hba.xri_bmask)) {
5831 rc = -ENOMEM;
5832 goto free_vpi_ids;
5833 }
James Smart41899be2012-03-01 22:34:19 -05005834 phba->sli4_hba.max_cfg_param.xri_used = 0;
James Smart6d368e52011-05-24 11:44:12 -04005835 phba->sli4_hba.xri_ids = kzalloc(count *
5836 sizeof(uint16_t),
5837 GFP_KERNEL);
5838 if (unlikely(!phba->sli4_hba.xri_ids)) {
5839 rc = -ENOMEM;
5840 goto free_xri_bmask;
5841 }
5842
5843 for (i = 0; i < count; i++)
5844 phba->sli4_hba.xri_ids[i] = base + i;
5845
5846 /* VFIs. */
5847 count = phba->sli4_hba.max_cfg_param.max_vfi;
James Smart0a630c22013-01-03 15:44:09 -05005848 if (count <= 0) {
5849 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5850 "3282 Invalid provisioning of "
5851 "vfi:%d\n", count);
5852 rc = -EINVAL;
5853 goto free_xri_ids;
5854 }
James Smart6d368e52011-05-24 11:44:12 -04005855 base = phba->sli4_hba.max_cfg_param.vfi_base;
5856 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5857 phba->sli4_hba.vfi_bmask = kzalloc(longs *
5858 sizeof(unsigned long),
5859 GFP_KERNEL);
5860 if (unlikely(!phba->sli4_hba.vfi_bmask)) {
5861 rc = -ENOMEM;
5862 goto free_xri_ids;
5863 }
5864 phba->sli4_hba.vfi_ids = kzalloc(count *
5865 sizeof(uint16_t),
5866 GFP_KERNEL);
5867 if (unlikely(!phba->sli4_hba.vfi_ids)) {
5868 rc = -ENOMEM;
5869 goto free_vfi_bmask;
5870 }
5871
5872 for (i = 0; i < count; i++)
5873 phba->sli4_hba.vfi_ids[i] = base + i;
5874
5875 /*
5876 * Mark all resources ready. An HBA reset doesn't need
5877 * to reset the initialization.
5878 */
5879 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags,
5880 LPFC_IDX_RSRC_RDY);
5881 return 0;
5882 }
5883
5884 free_vfi_bmask:
5885 kfree(phba->sli4_hba.vfi_bmask);
5886 free_xri_ids:
5887 kfree(phba->sli4_hba.xri_ids);
5888 free_xri_bmask:
5889 kfree(phba->sli4_hba.xri_bmask);
5890 free_vpi_ids:
5891 kfree(phba->vpi_ids);
5892 free_vpi_bmask:
5893 kfree(phba->vpi_bmask);
5894 free_rpi_ids:
5895 kfree(phba->sli4_hba.rpi_ids);
5896 free_rpi_bmask:
5897 kfree(phba->sli4_hba.rpi_bmask);
5898 err_exit:
5899 return rc;
5900}
5901
5902/**
5903 * lpfc_sli4_dealloc_resource_identifiers - Deallocate all SLI4 resource extents.
5904 * @phba: Pointer to HBA context object.
5905 *
5906 * This function allocates the number of elements for the specified
5907 * resource type.
5908 **/
5909int
5910lpfc_sli4_dealloc_resource_identifiers(struct lpfc_hba *phba)
5911{
5912 if (phba->sli4_hba.extents_in_use) {
5913 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_VPI);
5914 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_RPI);
5915 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_XRI);
5916 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_VFI);
5917 } else {
5918 kfree(phba->vpi_bmask);
James Smart16a3a202013-04-17 20:14:38 -04005919 phba->sli4_hba.max_cfg_param.vpi_used = 0;
James Smart6d368e52011-05-24 11:44:12 -04005920 kfree(phba->vpi_ids);
5921 bf_set(lpfc_vpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5922 kfree(phba->sli4_hba.xri_bmask);
5923 kfree(phba->sli4_hba.xri_ids);
James Smart6d368e52011-05-24 11:44:12 -04005924 kfree(phba->sli4_hba.vfi_bmask);
5925 kfree(phba->sli4_hba.vfi_ids);
5926 bf_set(lpfc_vfi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5927 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5928 }
5929
5930 return 0;
5931}
5932
5933/**
James Smartb76f2dc2011-07-22 18:37:42 -04005934 * lpfc_sli4_get_allocated_extnts - Get the port's allocated extents.
5935 * @phba: Pointer to HBA context object.
5936 * @type: The resource extent type.
5937 * @extnt_count: buffer to hold port extent count response
5938 * @extnt_size: buffer to hold port extent size response.
5939 *
5940 * This function calls the port to read the host allocated extents
5941 * for a particular type.
5942 **/
5943int
5944lpfc_sli4_get_allocated_extnts(struct lpfc_hba *phba, uint16_t type,
5945 uint16_t *extnt_cnt, uint16_t *extnt_size)
5946{
5947 bool emb;
5948 int rc = 0;
5949 uint16_t curr_blks = 0;
5950 uint32_t req_len, emb_len;
5951 uint32_t alloc_len, mbox_tmo;
5952 struct list_head *blk_list_head;
5953 struct lpfc_rsrc_blks *rsrc_blk;
5954 LPFC_MBOXQ_t *mbox;
5955 void *virtaddr = NULL;
5956 struct lpfc_mbx_nembed_rsrc_extent *n_rsrc;
5957 struct lpfc_mbx_alloc_rsrc_extents *rsrc_ext;
5958 union lpfc_sli4_cfg_shdr *shdr;
5959
5960 switch (type) {
5961 case LPFC_RSC_TYPE_FCOE_VPI:
5962 blk_list_head = &phba->lpfc_vpi_blk_list;
5963 break;
5964 case LPFC_RSC_TYPE_FCOE_XRI:
5965 blk_list_head = &phba->sli4_hba.lpfc_xri_blk_list;
5966 break;
5967 case LPFC_RSC_TYPE_FCOE_VFI:
5968 blk_list_head = &phba->sli4_hba.lpfc_vfi_blk_list;
5969 break;
5970 case LPFC_RSC_TYPE_FCOE_RPI:
5971 blk_list_head = &phba->sli4_hba.lpfc_rpi_blk_list;
5972 break;
5973 default:
5974 return -EIO;
5975 }
5976
5977 /* Count the number of extents currently allocatd for this type. */
5978 list_for_each_entry(rsrc_blk, blk_list_head, list) {
5979 if (curr_blks == 0) {
5980 /*
5981 * The GET_ALLOCATED mailbox does not return the size,
5982 * just the count. The size should be just the size
5983 * stored in the current allocated block and all sizes
5984 * for an extent type are the same so set the return
5985 * value now.
5986 */
5987 *extnt_size = rsrc_blk->rsrc_size;
5988 }
5989 curr_blks++;
5990 }
5991
James Smartb76f2dc2011-07-22 18:37:42 -04005992 /*
5993 * Calculate the size of an embedded mailbox. The uint32_t
5994 * accounts for extents-specific word.
5995 */
5996 emb_len = sizeof(MAILBOX_t) - sizeof(struct mbox_header) -
5997 sizeof(uint32_t);
5998
5999 /*
6000 * Presume the allocation and response will fit into an embedded
6001 * mailbox. If not true, reconfigure to a non-embedded mailbox.
6002 */
6003 emb = LPFC_SLI4_MBX_EMBED;
6004 req_len = emb_len;
6005 if (req_len > emb_len) {
6006 req_len = curr_blks * sizeof(uint16_t) +
6007 sizeof(union lpfc_sli4_cfg_shdr) +
6008 sizeof(uint32_t);
6009 emb = LPFC_SLI4_MBX_NEMBED;
6010 }
6011
6012 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6013 if (!mbox)
6014 return -ENOMEM;
6015 memset(mbox, 0, sizeof(LPFC_MBOXQ_t));
6016
6017 alloc_len = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
6018 LPFC_MBOX_OPCODE_GET_ALLOC_RSRC_EXTENT,
6019 req_len, emb);
6020 if (alloc_len < req_len) {
6021 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6022 "2983 Allocated DMA memory size (x%x) is "
6023 "less than the requested DMA memory "
6024 "size (x%x)\n", alloc_len, req_len);
6025 rc = -ENOMEM;
6026 goto err_exit;
6027 }
6028 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, curr_blks, type, emb);
6029 if (unlikely(rc)) {
6030 rc = -EIO;
6031 goto err_exit;
6032 }
6033
6034 if (!phba->sli4_hba.intr_enable)
6035 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
6036 else {
James Smarta183a152011-10-10 21:32:43 -04006037 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smartb76f2dc2011-07-22 18:37:42 -04006038 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
6039 }
6040
6041 if (unlikely(rc)) {
6042 rc = -EIO;
6043 goto err_exit;
6044 }
6045
6046 /*
6047 * Figure out where the response is located. Then get local pointers
6048 * to the response data. The port does not guarantee to respond to
6049 * all extents counts request so update the local variable with the
6050 * allocated count from the port.
6051 */
6052 if (emb == LPFC_SLI4_MBX_EMBED) {
6053 rsrc_ext = &mbox->u.mqe.un.alloc_rsrc_extents;
6054 shdr = &rsrc_ext->header.cfg_shdr;
6055 *extnt_cnt = bf_get(lpfc_mbx_rsrc_cnt, &rsrc_ext->u.rsp);
6056 } else {
6057 virtaddr = mbox->sge_array->addr[0];
6058 n_rsrc = (struct lpfc_mbx_nembed_rsrc_extent *) virtaddr;
6059 shdr = &n_rsrc->cfg_shdr;
6060 *extnt_cnt = bf_get(lpfc_mbx_rsrc_cnt, n_rsrc);
6061 }
6062
6063 if (bf_get(lpfc_mbox_hdr_status, &shdr->response)) {
6064 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
6065 "2984 Failed to read allocated resources "
6066 "for type %d - Status 0x%x Add'l Status 0x%x.\n",
6067 type,
6068 bf_get(lpfc_mbox_hdr_status, &shdr->response),
6069 bf_get(lpfc_mbox_hdr_add_status, &shdr->response));
6070 rc = -EIO;
6071 goto err_exit;
6072 }
6073 err_exit:
6074 lpfc_sli4_mbox_cmd_free(phba, mbox);
6075 return rc;
6076}
6077
6078/**
James Smart8a9d2e82012-05-09 21:16:12 -04006079 * lpfc_sli4_repost_els_sgl_list - Repsot the els buffers sgl pages as block
6080 * @phba: pointer to lpfc hba data structure.
6081 *
6082 * This routine walks the list of els buffers that have been allocated and
6083 * repost them to the port by using SGL block post. This is needed after a
6084 * pci_function_reset/warm_start or start. It attempts to construct blocks
6085 * of els buffer sgls which contains contiguous xris and uses the non-embedded
6086 * SGL block post mailbox commands to post them to the port. For single els
6087 * buffer sgl with non-contiguous xri, if any, it shall use embedded SGL post
6088 * mailbox command for posting.
6089 *
6090 * Returns: 0 = success, non-zero failure.
6091 **/
6092static int
6093lpfc_sli4_repost_els_sgl_list(struct lpfc_hba *phba)
6094{
6095 struct lpfc_sglq *sglq_entry = NULL;
6096 struct lpfc_sglq *sglq_entry_next = NULL;
6097 struct lpfc_sglq *sglq_entry_first = NULL;
James Smart711ea882013-04-17 20:18:29 -04006098 int status, total_cnt, post_cnt = 0, num_posted = 0, block_cnt = 0;
James Smart8a9d2e82012-05-09 21:16:12 -04006099 int last_xritag = NO_XRI;
James Smartdafe8ce2014-09-03 12:56:40 -04006100 struct lpfc_sli_ring *pring;
James Smart8a9d2e82012-05-09 21:16:12 -04006101 LIST_HEAD(prep_sgl_list);
6102 LIST_HEAD(blck_sgl_list);
6103 LIST_HEAD(allc_sgl_list);
6104 LIST_HEAD(post_sgl_list);
6105 LIST_HEAD(free_sgl_list);
6106
James Smartdafe8ce2014-09-03 12:56:40 -04006107 pring = &phba->sli.ring[LPFC_ELS_RING];
James Smart38c20672013-03-01 16:37:44 -05006108 spin_lock_irq(&phba->hbalock);
James Smartdafe8ce2014-09-03 12:56:40 -04006109 spin_lock(&pring->ring_lock);
James Smart8a9d2e82012-05-09 21:16:12 -04006110 list_splice_init(&phba->sli4_hba.lpfc_sgl_list, &allc_sgl_list);
James Smartdafe8ce2014-09-03 12:56:40 -04006111 spin_unlock(&pring->ring_lock);
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 Smartdafe8ce2014-09-03 12:56:40 -04006213 spin_lock(&pring->ring_lock);
James Smart8a9d2e82012-05-09 21:16:12 -04006214 list_splice_init(&post_sgl_list,
6215 &phba->sli4_hba.lpfc_sgl_list);
James Smartdafe8ce2014-09-03 12:56:40 -04006216 spin_unlock(&pring->ring_lock);
James Smart38c20672013-03-01 16:37:44 -05006217 spin_unlock_irq(&phba->hbalock);
James Smart8a9d2e82012-05-09 21:16:12 -04006218 } else {
6219 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
6220 "3161 Failure to post els sgl to port.\n");
6221 return -EIO;
6222 }
6223 return 0;
6224}
6225
6226/**
James Smartda0436e2009-05-22 14:51:39 -04006227 * lpfc_sli4_hba_setup - SLI4 device intialization PCI function
6228 * @phba: Pointer to HBA context object.
6229 *
6230 * This function is the main SLI4 device intialization PCI function. This
6231 * function is called by the HBA intialization code, HBA reset code and
6232 * HBA error attention handler code. Caller is not required to hold any
6233 * locks.
6234 **/
6235int
6236lpfc_sli4_hba_setup(struct lpfc_hba *phba)
6237{
6238 int rc;
6239 LPFC_MBOXQ_t *mboxq;
6240 struct lpfc_mqe *mqe;
6241 uint8_t *vpd;
6242 uint32_t vpd_size;
6243 uint32_t ftr_rsp = 0;
6244 struct Scsi_Host *shost = lpfc_shost_from_vport(phba->pport);
6245 struct lpfc_vport *vport = phba->pport;
6246 struct lpfc_dmabuf *mp;
6247
6248 /* Perform a PCI function reset to start from clean */
6249 rc = lpfc_pci_function_reset(phba);
6250 if (unlikely(rc))
6251 return -ENODEV;
6252
6253 /* Check the HBA Host Status Register for readyness */
6254 rc = lpfc_sli4_post_status_check(phba);
6255 if (unlikely(rc))
6256 return -ENODEV;
6257 else {
6258 spin_lock_irq(&phba->hbalock);
6259 phba->sli.sli_flag |= LPFC_SLI_ACTIVE;
6260 spin_unlock_irq(&phba->hbalock);
6261 }
6262
6263 /*
6264 * Allocate a single mailbox container for initializing the
6265 * port.
6266 */
6267 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6268 if (!mboxq)
6269 return -ENOMEM;
6270
James Smartda0436e2009-05-22 14:51:39 -04006271 /* Issue READ_REV to collect vpd and FW information. */
James Smart49198b32010-04-06 15:04:33 -04006272 vpd_size = SLI4_PAGE_SIZE;
James Smartda0436e2009-05-22 14:51:39 -04006273 vpd = kzalloc(vpd_size, GFP_KERNEL);
6274 if (!vpd) {
6275 rc = -ENOMEM;
6276 goto out_free_mbox;
6277 }
6278
6279 rc = lpfc_sli4_read_rev(phba, mboxq, vpd, &vpd_size);
James Smart76a95d72010-11-20 23:11:48 -05006280 if (unlikely(rc)) {
6281 kfree(vpd);
6282 goto out_free_mbox;
6283 }
James Smart572709e2013-07-15 18:32:43 -04006284
James Smartda0436e2009-05-22 14:51:39 -04006285 mqe = &mboxq->u.mqe;
James Smartf1126682009-06-10 17:22:44 -04006286 phba->sli_rev = bf_get(lpfc_mbx_rd_rev_sli_lvl, &mqe->un.read_rev);
6287 if (bf_get(lpfc_mbx_rd_rev_fcoe, &mqe->un.read_rev))
James Smart76a95d72010-11-20 23:11:48 -05006288 phba->hba_flag |= HBA_FCOE_MODE;
6289 else
6290 phba->hba_flag &= ~HBA_FCOE_MODE;
James Smart45ed1192009-10-02 15:17:02 -04006291
6292 if (bf_get(lpfc_mbx_rd_rev_cee_ver, &mqe->un.read_rev) ==
6293 LPFC_DCBX_CEE_MODE)
6294 phba->hba_flag |= HBA_FIP_SUPPORT;
6295 else
6296 phba->hba_flag &= ~HBA_FIP_SUPPORT;
6297
James Smart4f2e66c2012-05-09 21:17:07 -04006298 phba->hba_flag &= ~HBA_FCP_IOQ_FLUSH;
6299
James Smartc31098c2011-04-16 11:03:33 -04006300 if (phba->sli_rev != LPFC_SLI_REV4) {
James Smartda0436e2009-05-22 14:51:39 -04006301 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6302 "0376 READ_REV Error. SLI Level %d "
6303 "FCoE enabled %d\n",
James Smart76a95d72010-11-20 23:11:48 -05006304 phba->sli_rev, phba->hba_flag & HBA_FCOE_MODE);
James Smartda0436e2009-05-22 14:51:39 -04006305 rc = -EIO;
James Smart76a95d72010-11-20 23:11:48 -05006306 kfree(vpd);
6307 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006308 }
James Smartcd1c8302011-10-10 21:33:25 -04006309
6310 /*
James Smartff78d8f2011-12-13 13:21:35 -05006311 * Continue initialization with default values even if driver failed
6312 * to read FCoE param config regions, only read parameters if the
6313 * board is FCoE
6314 */
6315 if (phba->hba_flag & HBA_FCOE_MODE &&
6316 lpfc_sli4_read_fcoe_params(phba))
6317 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_INIT,
6318 "2570 Failed to read FCoE parameters\n");
6319
6320 /*
James Smartcd1c8302011-10-10 21:33:25 -04006321 * Retrieve sli4 device physical port name, failure of doing it
6322 * is considered as non-fatal.
6323 */
6324 rc = lpfc_sli4_retrieve_pport_name(phba);
6325 if (!rc)
6326 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
6327 "3080 Successful retrieving SLI4 device "
6328 "physical port name: %s.\n", phba->Port);
6329
James Smartda0436e2009-05-22 14:51:39 -04006330 /*
6331 * Evaluate the read rev and vpd data. Populate the driver
6332 * state with the results. If this routine fails, the failure
6333 * is not fatal as the driver will use generic values.
6334 */
6335 rc = lpfc_parse_vpd(phba, vpd, vpd_size);
6336 if (unlikely(!rc)) {
6337 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6338 "0377 Error %d parsing vpd. "
6339 "Using defaults.\n", rc);
6340 rc = 0;
6341 }
James Smart76a95d72010-11-20 23:11:48 -05006342 kfree(vpd);
James Smartda0436e2009-05-22 14:51:39 -04006343
James Smartf1126682009-06-10 17:22:44 -04006344 /* Save information as VPD data */
6345 phba->vpd.rev.biuRev = mqe->un.read_rev.first_hw_rev;
6346 phba->vpd.rev.smRev = mqe->un.read_rev.second_hw_rev;
6347 phba->vpd.rev.endecRev = mqe->un.read_rev.third_hw_rev;
6348 phba->vpd.rev.fcphHigh = bf_get(lpfc_mbx_rd_rev_fcph_high,
6349 &mqe->un.read_rev);
6350 phba->vpd.rev.fcphLow = bf_get(lpfc_mbx_rd_rev_fcph_low,
6351 &mqe->un.read_rev);
6352 phba->vpd.rev.feaLevelHigh = bf_get(lpfc_mbx_rd_rev_ftr_lvl_high,
6353 &mqe->un.read_rev);
6354 phba->vpd.rev.feaLevelLow = bf_get(lpfc_mbx_rd_rev_ftr_lvl_low,
6355 &mqe->un.read_rev);
6356 phba->vpd.rev.sli1FwRev = mqe->un.read_rev.fw_id_rev;
6357 memcpy(phba->vpd.rev.sli1FwName, mqe->un.read_rev.fw_name, 16);
6358 phba->vpd.rev.sli2FwRev = mqe->un.read_rev.ulp_fw_id_rev;
6359 memcpy(phba->vpd.rev.sli2FwName, mqe->un.read_rev.ulp_fw_name, 16);
6360 phba->vpd.rev.opFwRev = mqe->un.read_rev.fw_id_rev;
6361 memcpy(phba->vpd.rev.opFwName, mqe->un.read_rev.fw_name, 16);
6362 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
6363 "(%d):0380 READ_REV Status x%x "
6364 "fw_rev:%s fcphHi:%x fcphLo:%x flHi:%x flLo:%x\n",
6365 mboxq->vport ? mboxq->vport->vpi : 0,
6366 bf_get(lpfc_mqe_status, mqe),
6367 phba->vpd.rev.opFwName,
6368 phba->vpd.rev.fcphHigh, phba->vpd.rev.fcphLow,
6369 phba->vpd.rev.feaLevelHigh, phba->vpd.rev.feaLevelLow);
James Smartda0436e2009-05-22 14:51:39 -04006370
James Smart572709e2013-07-15 18:32:43 -04006371 /* Reset the DFT_LUN_Q_DEPTH to (max xri >> 3) */
6372 rc = (phba->sli4_hba.max_cfg_param.max_xri >> 3);
6373 if (phba->pport->cfg_lun_queue_depth > rc) {
6374 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
6375 "3362 LUN queue depth changed from %d to %d\n",
6376 phba->pport->cfg_lun_queue_depth, rc);
6377 phba->pport->cfg_lun_queue_depth = rc;
6378 }
6379
6380
James Smartda0436e2009-05-22 14:51:39 -04006381 /*
6382 * Discover the port's supported feature set and match it against the
6383 * hosts requests.
6384 */
6385 lpfc_request_features(phba, mboxq);
6386 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6387 if (unlikely(rc)) {
6388 rc = -EIO;
James Smart76a95d72010-11-20 23:11:48 -05006389 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006390 }
6391
6392 /*
6393 * The port must support FCP initiator mode as this is the
6394 * only mode running in the host.
6395 */
6396 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_fcpi, &mqe->un.req_ftrs))) {
6397 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
6398 "0378 No support for fcpi mode.\n");
6399 ftr_rsp++;
6400 }
James Smartfedd3b72011-02-16 12:39:24 -05006401 if (bf_get(lpfc_mbx_rq_ftr_rsp_perfh, &mqe->un.req_ftrs))
6402 phba->sli3_options |= LPFC_SLI4_PERFH_ENABLED;
6403 else
6404 phba->sli3_options &= ~LPFC_SLI4_PERFH_ENABLED;
James Smartda0436e2009-05-22 14:51:39 -04006405 /*
6406 * If the port cannot support the host's requested features
6407 * then turn off the global config parameters to disable the
6408 * feature in the driver. This is not a fatal error.
6409 */
James Smartbf086112011-08-21 21:48:13 -04006410 phba->sli3_options &= ~LPFC_SLI3_BG_ENABLED;
6411 if (phba->cfg_enable_bg) {
6412 if (bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs))
6413 phba->sli3_options |= LPFC_SLI3_BG_ENABLED;
6414 else
6415 ftr_rsp++;
6416 }
James Smartda0436e2009-05-22 14:51:39 -04006417
6418 if (phba->max_vpi && phba->cfg_enable_npiv &&
6419 !(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
6420 ftr_rsp++;
6421
6422 if (ftr_rsp) {
6423 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
6424 "0379 Feature Mismatch Data: x%08x %08x "
6425 "x%x x%x x%x\n", mqe->un.req_ftrs.word2,
6426 mqe->un.req_ftrs.word3, phba->cfg_enable_bg,
6427 phba->cfg_enable_npiv, phba->max_vpi);
6428 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs)))
6429 phba->cfg_enable_bg = 0;
6430 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
6431 phba->cfg_enable_npiv = 0;
6432 }
6433
6434 /* These SLI3 features are assumed in SLI4 */
6435 spin_lock_irq(&phba->hbalock);
6436 phba->sli3_options |= (LPFC_SLI3_NPIV_ENABLED | LPFC_SLI3_HBQ_ENABLED);
6437 spin_unlock_irq(&phba->hbalock);
6438
James Smart6d368e52011-05-24 11:44:12 -04006439 /*
6440 * Allocate all resources (xri,rpi,vpi,vfi) now. Subsequent
6441 * calls depends on these resources to complete port setup.
6442 */
6443 rc = lpfc_sli4_alloc_resource_identifiers(phba);
6444 if (rc) {
6445 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6446 "2920 Failed to alloc Resource IDs "
6447 "rc = x%x\n", rc);
6448 goto out_free_mbox;
6449 }
6450
James Smartda0436e2009-05-22 14:51:39 -04006451 /* Read the port's service parameters. */
James Smart9f1177a2010-02-26 14:12:57 -05006452 rc = lpfc_read_sparam(phba, mboxq, vport->vpi);
6453 if (rc) {
6454 phba->link_state = LPFC_HBA_ERROR;
6455 rc = -ENOMEM;
James Smart76a95d72010-11-20 23:11:48 -05006456 goto out_free_mbox;
James Smart9f1177a2010-02-26 14:12:57 -05006457 }
6458
James Smartda0436e2009-05-22 14:51:39 -04006459 mboxq->vport = vport;
6460 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6461 mp = (struct lpfc_dmabuf *) mboxq->context1;
6462 if (rc == MBX_SUCCESS) {
6463 memcpy(&vport->fc_sparam, mp->virt, sizeof(struct serv_parm));
6464 rc = 0;
6465 }
6466
6467 /*
6468 * This memory was allocated by the lpfc_read_sparam routine. Release
6469 * it to the mbuf pool.
6470 */
6471 lpfc_mbuf_free(phba, mp->virt, mp->phys);
6472 kfree(mp);
6473 mboxq->context1 = NULL;
6474 if (unlikely(rc)) {
6475 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6476 "0382 READ_SPARAM command failed "
6477 "status %d, mbxStatus x%x\n",
6478 rc, bf_get(lpfc_mqe_status, mqe));
6479 phba->link_state = LPFC_HBA_ERROR;
6480 rc = -EIO;
James Smart76a95d72010-11-20 23:11:48 -05006481 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006482 }
6483
James Smart05580562011-05-24 11:40:48 -04006484 lpfc_update_vport_wwn(vport);
James Smartda0436e2009-05-22 14:51:39 -04006485
6486 /* Update the fc_host data structures with new wwn. */
6487 fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn);
6488 fc_host_port_name(shost) = wwn_to_u64(vport->fc_portname.u.wwn);
6489
James Smart8a9d2e82012-05-09 21:16:12 -04006490 /* update host els and scsi xri-sgl sizes and mappings */
6491 rc = lpfc_sli4_xri_sgl_update(phba);
6492 if (unlikely(rc)) {
6493 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6494 "1400 Failed to update xri-sgl size and "
6495 "mapping: %d\n", rc);
6496 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006497 }
6498
James Smart8a9d2e82012-05-09 21:16:12 -04006499 /* register the els sgl pool to the port */
6500 rc = lpfc_sli4_repost_els_sgl_list(phba);
6501 if (unlikely(rc)) {
6502 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6503 "0582 Error %d during els sgl post "
6504 "operation\n", rc);
6505 rc = -ENODEV;
6506 goto out_free_mbox;
6507 }
6508
6509 /* register the allocated scsi sgl pool to the port */
James Smartda0436e2009-05-22 14:51:39 -04006510 rc = lpfc_sli4_repost_scsi_sgl_list(phba);
6511 if (unlikely(rc)) {
James Smart6d368e52011-05-24 11:44:12 -04006512 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smart6a9c52c2009-10-02 15:16:51 -04006513 "0383 Error %d during scsi sgl post "
6514 "operation\n", rc);
James Smartda0436e2009-05-22 14:51:39 -04006515 /* Some Scsi buffers were moved to the abort scsi list */
6516 /* A pci function reset will repost them */
6517 rc = -ENODEV;
James Smart76a95d72010-11-20 23:11:48 -05006518 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006519 }
6520
6521 /* Post the rpi header region to the device. */
6522 rc = lpfc_sli4_post_all_rpi_hdrs(phba);
6523 if (unlikely(rc)) {
6524 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6525 "0393 Error %d during rpi post operation\n",
6526 rc);
6527 rc = -ENODEV;
James Smart76a95d72010-11-20 23:11:48 -05006528 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006529 }
James Smart97f2ecf2012-03-01 22:35:23 -05006530 lpfc_sli4_node_prep(phba);
James Smartda0436e2009-05-22 14:51:39 -04006531
James Smart5350d872011-10-10 21:33:49 -04006532 /* Create all the SLI4 queues */
6533 rc = lpfc_sli4_queue_create(phba);
6534 if (rc) {
6535 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6536 "3089 Failed to allocate queues\n");
6537 rc = -ENODEV;
6538 goto out_stop_timers;
6539 }
James Smartda0436e2009-05-22 14:51:39 -04006540 /* Set up all the queues to the device */
6541 rc = lpfc_sli4_queue_setup(phba);
6542 if (unlikely(rc)) {
6543 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6544 "0381 Error %d during queue setup.\n ", rc);
James Smart5350d872011-10-10 21:33:49 -04006545 goto out_destroy_queue;
James Smartda0436e2009-05-22 14:51:39 -04006546 }
6547
6548 /* Arm the CQs and then EQs on device */
6549 lpfc_sli4_arm_cqeq_intr(phba);
6550
6551 /* Indicate device interrupt mode */
6552 phba->sli4_hba.intr_enable = 1;
6553
6554 /* Allow asynchronous mailbox command to go through */
6555 spin_lock_irq(&phba->hbalock);
6556 phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
6557 spin_unlock_irq(&phba->hbalock);
6558
6559 /* Post receive buffers to the device */
6560 lpfc_sli4_rb_setup(phba);
6561
James Smartfc2b9892010-02-26 14:15:29 -05006562 /* Reset HBA FCF states after HBA reset */
6563 phba->fcf.fcf_flag = 0;
6564 phba->fcf.current_rec.flag = 0;
6565
James Smartda0436e2009-05-22 14:51:39 -04006566 /* Start the ELS watchdog timer */
James Smart8fa38512009-07-19 10:01:03 -04006567 mod_timer(&vport->els_tmofunc,
James Smart256ec0d2013-04-17 20:14:58 -04006568 jiffies + msecs_to_jiffies(1000 * (phba->fc_ratov * 2)));
James Smartda0436e2009-05-22 14:51:39 -04006569
6570 /* Start heart beat timer */
6571 mod_timer(&phba->hb_tmofunc,
James Smart256ec0d2013-04-17 20:14:58 -04006572 jiffies + msecs_to_jiffies(1000 * LPFC_HB_MBOX_INTERVAL));
James Smartda0436e2009-05-22 14:51:39 -04006573 phba->hb_outstanding = 0;
6574 phba->last_completion_time = jiffies;
6575
6576 /* Start error attention (ERATT) polling timer */
James Smart256ec0d2013-04-17 20:14:58 -04006577 mod_timer(&phba->eratt_poll,
6578 jiffies + msecs_to_jiffies(1000 * LPFC_ERATT_POLL_INTERVAL));
James Smartda0436e2009-05-22 14:51:39 -04006579
James Smart75baf692010-06-08 18:31:21 -04006580 /* Enable PCIe device Advanced Error Reporting (AER) if configured */
6581 if (phba->cfg_aer_support == 1 && !(phba->hba_flag & HBA_AER_ENABLED)) {
6582 rc = pci_enable_pcie_error_reporting(phba->pcidev);
6583 if (!rc) {
6584 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6585 "2829 This device supports "
6586 "Advanced Error Reporting (AER)\n");
6587 spin_lock_irq(&phba->hbalock);
6588 phba->hba_flag |= HBA_AER_ENABLED;
6589 spin_unlock_irq(&phba->hbalock);
6590 } else {
6591 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6592 "2830 This device does not support "
6593 "Advanced Error Reporting (AER)\n");
6594 phba->cfg_aer_support = 0;
6595 }
James Smart0a96e972011-07-22 18:37:28 -04006596 rc = 0;
James Smart75baf692010-06-08 18:31:21 -04006597 }
6598
James Smart76a95d72010-11-20 23:11:48 -05006599 if (!(phba->hba_flag & HBA_FCOE_MODE)) {
6600 /*
6601 * The FC Port needs to register FCFI (index 0)
6602 */
6603 lpfc_reg_fcfi(phba, mboxq);
6604 mboxq->vport = phba->pport;
6605 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
James Smart9589b0622011-04-16 11:03:17 -04006606 if (rc != MBX_SUCCESS)
James Smart76a95d72010-11-20 23:11:48 -05006607 goto out_unset_queue;
James Smart9589b0622011-04-16 11:03:17 -04006608 rc = 0;
6609 phba->fcf.fcfi = bf_get(lpfc_reg_fcfi_fcfi,
6610 &mboxq->u.mqe.un.reg_fcfi);
James Smart026abb82011-12-13 13:20:45 -05006611
6612 /* Check if the port is configured to be disabled */
6613 lpfc_sli_read_link_ste(phba);
James Smart76a95d72010-11-20 23:11:48 -05006614 }
James Smart026abb82011-12-13 13:20:45 -05006615
James Smartda0436e2009-05-22 14:51:39 -04006616 /*
6617 * The port is ready, set the host's link state to LINK_DOWN
6618 * in preparation for link interrupts.
6619 */
James Smartda0436e2009-05-22 14:51:39 -04006620 spin_lock_irq(&phba->hbalock);
6621 phba->link_state = LPFC_LINK_DOWN;
6622 spin_unlock_irq(&phba->hbalock);
James Smart026abb82011-12-13 13:20:45 -05006623 if (!(phba->hba_flag & HBA_FCOE_MODE) &&
6624 (phba->hba_flag & LINK_DISABLED)) {
6625 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_SLI,
6626 "3103 Adapter Link is disabled.\n");
6627 lpfc_down_link(phba, mboxq);
6628 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6629 if (rc != MBX_SUCCESS) {
6630 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_SLI,
6631 "3104 Adapter failed to issue "
6632 "DOWN_LINK mbox cmd, rc:x%x\n", rc);
6633 goto out_unset_queue;
6634 }
6635 } else if (phba->cfg_suppress_link_up == LPFC_INITIALIZE_LINK) {
James Smart1b511972011-12-13 13:23:09 -05006636 /* don't perform init_link on SLI4 FC port loopback test */
6637 if (!(phba->link_flag & LS_LOOPBACK_MODE)) {
6638 rc = phba->lpfc_hba_init_link(phba, MBX_NOWAIT);
6639 if (rc)
6640 goto out_unset_queue;
6641 }
James Smart5350d872011-10-10 21:33:49 -04006642 }
6643 mempool_free(mboxq, phba->mbox_mem_pool);
6644 return rc;
James Smart76a95d72010-11-20 23:11:48 -05006645out_unset_queue:
James Smartda0436e2009-05-22 14:51:39 -04006646 /* Unset all the queues set up in this routine when error out */
James Smart5350d872011-10-10 21:33:49 -04006647 lpfc_sli4_queue_unset(phba);
6648out_destroy_queue:
6649 lpfc_sli4_queue_destroy(phba);
James Smartda0436e2009-05-22 14:51:39 -04006650out_stop_timers:
James Smart5350d872011-10-10 21:33:49 -04006651 lpfc_stop_hba_timers(phba);
James Smartda0436e2009-05-22 14:51:39 -04006652out_free_mbox:
6653 mempool_free(mboxq, phba->mbox_mem_pool);
6654 return rc;
6655}
James Smarte59058c2008-08-24 21:49:00 -04006656
6657/**
James Smart3621a712009-04-06 18:47:14 -04006658 * lpfc_mbox_timeout - Timeout call back function for mbox timer
James Smarte59058c2008-08-24 21:49:00 -04006659 * @ptr: context object - pointer to hba structure.
dea31012005-04-17 16:05:31 -05006660 *
James Smarte59058c2008-08-24 21:49:00 -04006661 * This is the callback function for mailbox timer. The mailbox
6662 * timer is armed when a new mailbox command is issued and the timer
6663 * is deleted when the mailbox complete. The function is called by
6664 * the kernel timer code when a mailbox does not complete within
6665 * expected time. This function wakes up the worker thread to
6666 * process the mailbox timeout and returns. All the processing is
6667 * done by the worker thread function lpfc_mbox_timeout_handler.
6668 **/
dea31012005-04-17 16:05:31 -05006669void
6670lpfc_mbox_timeout(unsigned long ptr)
6671{
James Smart92d7f7b2007-06-17 19:56:38 -05006672 struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
dea31012005-04-17 16:05:31 -05006673 unsigned long iflag;
James Smart2e0fef82007-06-17 19:56:36 -05006674 uint32_t tmo_posted;
dea31012005-04-17 16:05:31 -05006675
James Smart2e0fef82007-06-17 19:56:36 -05006676 spin_lock_irqsave(&phba->pport->work_port_lock, iflag);
James Smart92d7f7b2007-06-17 19:56:38 -05006677 tmo_posted = phba->pport->work_port_events & WORKER_MBOX_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05006678 if (!tmo_posted)
6679 phba->pport->work_port_events |= WORKER_MBOX_TMO;
6680 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflag);
6681
James Smart5e9d9b82008-06-14 22:52:53 -04006682 if (!tmo_posted)
6683 lpfc_worker_wake_up(phba);
6684 return;
dea31012005-04-17 16:05:31 -05006685}
6686
James Smarte8d3c3b2013-10-10 12:21:30 -04006687/**
6688 * lpfc_sli4_mbox_completions_pending - check to see if any mailbox completions
6689 * are pending
6690 * @phba: Pointer to HBA context object.
6691 *
6692 * This function checks if any mailbox completions are present on the mailbox
6693 * completion queue.
6694 **/
6695bool
6696lpfc_sli4_mbox_completions_pending(struct lpfc_hba *phba)
6697{
6698
6699 uint32_t idx;
6700 struct lpfc_queue *mcq;
6701 struct lpfc_mcqe *mcqe;
6702 bool pending_completions = false;
6703
6704 if (unlikely(!phba) || (phba->sli_rev != LPFC_SLI_REV4))
6705 return false;
6706
6707 /* Check for completions on mailbox completion queue */
6708
6709 mcq = phba->sli4_hba.mbx_cq;
6710 idx = mcq->hba_index;
6711 while (bf_get_le32(lpfc_cqe_valid, mcq->qe[idx].cqe)) {
6712 mcqe = (struct lpfc_mcqe *)mcq->qe[idx].cqe;
6713 if (bf_get_le32(lpfc_trailer_completed, mcqe) &&
6714 (!bf_get_le32(lpfc_trailer_async, mcqe))) {
6715 pending_completions = true;
6716 break;
6717 }
6718 idx = (idx + 1) % mcq->entry_count;
6719 if (mcq->hba_index == idx)
6720 break;
6721 }
6722 return pending_completions;
6723
6724}
6725
6726/**
6727 * lpfc_sli4_process_missed_mbox_completions - process mbox completions
6728 * that were missed.
6729 * @phba: Pointer to HBA context object.
6730 *
6731 * For sli4, it is possible to miss an interrupt. As such mbox completions
6732 * maybe missed causing erroneous mailbox timeouts to occur. This function
6733 * checks to see if mbox completions are on the mailbox completion queue
6734 * and will process all the completions associated with the eq for the
6735 * mailbox completion queue.
6736 **/
6737bool
6738lpfc_sli4_process_missed_mbox_completions(struct lpfc_hba *phba)
6739{
6740
6741 uint32_t eqidx;
6742 struct lpfc_queue *fpeq = NULL;
6743 struct lpfc_eqe *eqe;
6744 bool mbox_pending;
6745
6746 if (unlikely(!phba) || (phba->sli_rev != LPFC_SLI_REV4))
6747 return false;
6748
6749 /* Find the eq associated with the mcq */
6750
6751 if (phba->sli4_hba.hba_eq)
6752 for (eqidx = 0; eqidx < phba->cfg_fcp_io_channel; eqidx++)
6753 if (phba->sli4_hba.hba_eq[eqidx]->queue_id ==
6754 phba->sli4_hba.mbx_cq->assoc_qid) {
6755 fpeq = phba->sli4_hba.hba_eq[eqidx];
6756 break;
6757 }
6758 if (!fpeq)
6759 return false;
6760
6761 /* Turn off interrupts from this EQ */
6762
6763 lpfc_sli4_eq_clr_intr(fpeq);
6764
6765 /* Check to see if a mbox completion is pending */
6766
6767 mbox_pending = lpfc_sli4_mbox_completions_pending(phba);
6768
6769 /*
6770 * If a mbox completion is pending, process all the events on EQ
6771 * associated with the mbox completion queue (this could include
6772 * mailbox commands, async events, els commands, receive queue data
6773 * and fcp commands)
6774 */
6775
6776 if (mbox_pending)
6777 while ((eqe = lpfc_sli4_eq_get(fpeq))) {
6778 lpfc_sli4_hba_handle_eqe(phba, eqe, eqidx);
6779 fpeq->EQ_processed++;
6780 }
6781
6782 /* Always clear and re-arm the EQ */
6783
6784 lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_REARM);
6785
6786 return mbox_pending;
6787
6788}
James Smarte59058c2008-08-24 21:49:00 -04006789
6790/**
James Smart3621a712009-04-06 18:47:14 -04006791 * lpfc_mbox_timeout_handler - Worker thread function to handle mailbox timeout
James Smarte59058c2008-08-24 21:49:00 -04006792 * @phba: Pointer to HBA context object.
6793 *
6794 * This function is called from worker thread when a mailbox command times out.
6795 * The caller is not required to hold any locks. This function will reset the
6796 * HBA and recover all the pending commands.
6797 **/
dea31012005-04-17 16:05:31 -05006798void
6799lpfc_mbox_timeout_handler(struct lpfc_hba *phba)
6800{
James Smart2e0fef82007-06-17 19:56:36 -05006801 LPFC_MBOXQ_t *pmbox = phba->sli.mbox_active;
James Smarteb016562014-09-03 12:58:06 -04006802 MAILBOX_t *mb = NULL;
6803
James Smart1dcb58e2007-04-25 09:51:30 -04006804 struct lpfc_sli *psli = &phba->sli;
dea31012005-04-17 16:05:31 -05006805
James Smarte8d3c3b2013-10-10 12:21:30 -04006806 /* If the mailbox completed, process the completion and return */
6807 if (lpfc_sli4_process_missed_mbox_completions(phba))
6808 return;
6809
James Smarteb016562014-09-03 12:58:06 -04006810 if (pmbox != NULL)
6811 mb = &pmbox->u.mb;
James Smarta257bf92009-04-06 18:48:10 -04006812 /* Check the pmbox pointer first. There is a race condition
6813 * between the mbox timeout handler getting executed in the
6814 * worklist and the mailbox actually completing. When this
6815 * race condition occurs, the mbox_active will be NULL.
6816 */
6817 spin_lock_irq(&phba->hbalock);
6818 if (pmbox == NULL) {
6819 lpfc_printf_log(phba, KERN_WARNING,
6820 LOG_MBOX | LOG_SLI,
6821 "0353 Active Mailbox cleared - mailbox timeout "
6822 "exiting\n");
6823 spin_unlock_irq(&phba->hbalock);
6824 return;
6825 }
6826
dea31012005-04-17 16:05:31 -05006827 /* Mbox cmd <mbxCommand> timeout */
James Smarted957682007-06-17 19:56:37 -05006828 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04006829 "0310 Mailbox command x%x timeout Data: x%x x%x x%p\n",
James Smart92d7f7b2007-06-17 19:56:38 -05006830 mb->mbxCommand,
6831 phba->pport->port_state,
6832 phba->sli.sli_flag,
6833 phba->sli.mbox_active);
James Smarta257bf92009-04-06 18:48:10 -04006834 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05006835
James Smart1dcb58e2007-04-25 09:51:30 -04006836 /* Setting state unknown so lpfc_sli_abort_iocb_ring
6837 * would get IOCB_ERROR from lpfc_sli_issue_iocb, allowing
Lucas De Marchi25985ed2011-03-30 22:57:33 -03006838 * it to fail all outstanding SCSI IO.
James Smart1dcb58e2007-04-25 09:51:30 -04006839 */
James Smart2e0fef82007-06-17 19:56:36 -05006840 spin_lock_irq(&phba->pport->work_port_lock);
6841 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
6842 spin_unlock_irq(&phba->pport->work_port_lock);
6843 spin_lock_irq(&phba->hbalock);
6844 phba->link_state = LPFC_LINK_UNKNOWN;
James Smartf4b4c682009-05-22 14:53:12 -04006845 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05006846 spin_unlock_irq(&phba->hbalock);
James Smart1dcb58e2007-04-25 09:51:30 -04006847
James Smartdb55fba2014-04-04 13:52:02 -04006848 lpfc_sli_abort_fcp_rings(phba);
James Smart1dcb58e2007-04-25 09:51:30 -04006849
6850 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smart76bb24e2007-10-27 13:38:00 -04006851 "0345 Resetting board due to mailbox timeout\n");
James Smart3772a992009-05-22 14:50:54 -04006852
6853 /* Reset the HBA device */
6854 lpfc_reset_hba(phba);
dea31012005-04-17 16:05:31 -05006855}
6856
James Smarte59058c2008-08-24 21:49:00 -04006857/**
James Smart3772a992009-05-22 14:50:54 -04006858 * lpfc_sli_issue_mbox_s3 - Issue an SLI3 mailbox command to firmware
James Smarte59058c2008-08-24 21:49:00 -04006859 * @phba: Pointer to HBA context object.
6860 * @pmbox: Pointer to mailbox object.
6861 * @flag: Flag indicating how the mailbox need to be processed.
6862 *
6863 * This function is called by discovery code and HBA management code
James Smart3772a992009-05-22 14:50:54 -04006864 * to submit a mailbox command to firmware with SLI-3 interface spec. This
6865 * function gets the hbalock to protect the data structures.
James Smarte59058c2008-08-24 21:49:00 -04006866 * The mailbox command can be submitted in polling mode, in which case
6867 * this function will wait in a polling loop for the completion of the
6868 * mailbox.
6869 * If the mailbox is submitted in no_wait mode (not polling) the
6870 * function will submit the command and returns immediately without waiting
6871 * for the mailbox completion. The no_wait is supported only when HBA
6872 * is in SLI2/SLI3 mode - interrupts are enabled.
6873 * The SLI interface allows only one mailbox pending at a time. If the
6874 * mailbox is issued in polling mode and there is already a mailbox
6875 * pending, then the function will return an error. If the mailbox is issued
6876 * in NO_WAIT mode and there is a mailbox pending already, the function
6877 * will return MBX_BUSY after queuing the mailbox into mailbox queue.
6878 * The sli layer owns the mailbox object until the completion of mailbox
6879 * command if this function return MBX_BUSY or MBX_SUCCESS. For all other
6880 * return codes the caller owns the mailbox command after the return of
6881 * the function.
6882 **/
James Smart3772a992009-05-22 14:50:54 -04006883static int
6884lpfc_sli_issue_mbox_s3(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox,
6885 uint32_t flag)
dea31012005-04-17 16:05:31 -05006886{
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006887 MAILBOX_t *mbx;
James Smart2e0fef82007-06-17 19:56:36 -05006888 struct lpfc_sli *psli = &phba->sli;
dea31012005-04-17 16:05:31 -05006889 uint32_t status, evtctr;
James Smart9940b972011-03-11 16:06:12 -05006890 uint32_t ha_copy, hc_copy;
dea31012005-04-17 16:05:31 -05006891 int i;
James Smart09372822008-01-11 01:52:54 -05006892 unsigned long timeout;
dea31012005-04-17 16:05:31 -05006893 unsigned long drvr_flag = 0;
James Smart34b02dc2008-08-24 21:49:55 -04006894 uint32_t word0, ldata;
dea31012005-04-17 16:05:31 -05006895 void __iomem *to_slim;
James Smart58da1ff2008-04-07 10:15:56 -04006896 int processing_queue = 0;
6897
6898 spin_lock_irqsave(&phba->hbalock, drvr_flag);
6899 if (!pmbox) {
James Smart8568a4d2009-07-19 10:01:16 -04006900 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart58da1ff2008-04-07 10:15:56 -04006901 /* processing mbox queue from intr_handler */
James Smart3772a992009-05-22 14:50:54 -04006902 if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
6903 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6904 return MBX_SUCCESS;
6905 }
James Smart58da1ff2008-04-07 10:15:56 -04006906 processing_queue = 1;
James Smart58da1ff2008-04-07 10:15:56 -04006907 pmbox = lpfc_mbox_get(phba);
6908 if (!pmbox) {
6909 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6910 return MBX_SUCCESS;
6911 }
6912 }
dea31012005-04-17 16:05:31 -05006913
James Smarted957682007-06-17 19:56:37 -05006914 if (pmbox->mbox_cmpl && pmbox->mbox_cmpl != lpfc_sli_def_mbox_cmpl &&
James Smart92d7f7b2007-06-17 19:56:38 -05006915 pmbox->mbox_cmpl != lpfc_sli_wake_mbox_wait) {
James Smarted957682007-06-17 19:56:37 -05006916 if(!pmbox->vport) {
James Smart58da1ff2008-04-07 10:15:56 -04006917 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
James Smarted957682007-06-17 19:56:37 -05006918 lpfc_printf_log(phba, KERN_ERR,
James Smart92d7f7b2007-06-17 19:56:38 -05006919 LOG_MBOX | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04006920 "1806 Mbox x%x failed. No vport\n",
James Smart3772a992009-05-22 14:50:54 -04006921 pmbox->u.mb.mbxCommand);
James Smarted957682007-06-17 19:56:37 -05006922 dump_stack();
James Smart58da1ff2008-04-07 10:15:56 -04006923 goto out_not_finished;
James Smarted957682007-06-17 19:56:37 -05006924 }
6925 }
6926
Linas Vepstas8d63f372007-02-14 14:28:36 -06006927 /* If the PCI channel is in offline state, do not post mbox. */
James Smart58da1ff2008-04-07 10:15:56 -04006928 if (unlikely(pci_channel_offline(phba->pcidev))) {
6929 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6930 goto out_not_finished;
6931 }
Linas Vepstas8d63f372007-02-14 14:28:36 -06006932
James Smarta257bf92009-04-06 18:48:10 -04006933 /* If HBA has a deferred error attention, fail the iocb. */
6934 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
6935 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6936 goto out_not_finished;
6937 }
6938
dea31012005-04-17 16:05:31 -05006939 psli = &phba->sli;
James Smart92d7f7b2007-06-17 19:56:38 -05006940
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006941 mbx = &pmbox->u.mb;
dea31012005-04-17 16:05:31 -05006942 status = MBX_SUCCESS;
6943
James Smart2e0fef82007-06-17 19:56:36 -05006944 if (phba->link_state == LPFC_HBA_ERROR) {
6945 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
Jamie Wellnitz41415862006-02-28 19:25:27 -05006946
6947 /* Mbox command <mbxCommand> cannot issue */
James Smart3772a992009-05-22 14:50:54 -04006948 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6949 "(%d):0311 Mailbox command x%x cannot "
6950 "issue Data: x%x x%x\n",
6951 pmbox->vport ? pmbox->vport->vpi : 0,
6952 pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
James Smart58da1ff2008-04-07 10:15:56 -04006953 goto out_not_finished;
Jamie Wellnitz41415862006-02-28 19:25:27 -05006954 }
6955
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006956 if (mbx->mbxCommand != MBX_KILL_BOARD && flag & MBX_NOWAIT) {
James Smart9940b972011-03-11 16:06:12 -05006957 if (lpfc_readl(phba->HCregaddr, &hc_copy) ||
6958 !(hc_copy & HC_MBINT_ENA)) {
6959 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6960 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smart3772a992009-05-22 14:50:54 -04006961 "(%d):2528 Mailbox command x%x cannot "
6962 "issue Data: x%x x%x\n",
6963 pmbox->vport ? pmbox->vport->vpi : 0,
6964 pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
James Smart9940b972011-03-11 16:06:12 -05006965 goto out_not_finished;
6966 }
James Smart92908312006-03-07 15:04:13 -05006967 }
6968
dea31012005-04-17 16:05:31 -05006969 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
6970 /* Polling for a mbox command when another one is already active
6971 * is not allowed in SLI. Also, the driver must have established
6972 * SLI2 mode to queue and process multiple mbox commands.
6973 */
6974
6975 if (flag & MBX_POLL) {
James Smart2e0fef82007-06-17 19:56:36 -05006976 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05006977
6978 /* Mbox command <mbxCommand> cannot issue */
James Smart3772a992009-05-22 14:50:54 -04006979 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6980 "(%d):2529 Mailbox command x%x "
6981 "cannot issue Data: x%x x%x\n",
6982 pmbox->vport ? pmbox->vport->vpi : 0,
6983 pmbox->u.mb.mbxCommand,
6984 psli->sli_flag, flag);
James Smart58da1ff2008-04-07 10:15:56 -04006985 goto out_not_finished;
dea31012005-04-17 16:05:31 -05006986 }
6987
James Smart3772a992009-05-22 14:50:54 -04006988 if (!(psli->sli_flag & LPFC_SLI_ACTIVE)) {
James Smart2e0fef82007-06-17 19:56:36 -05006989 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05006990 /* Mbox command <mbxCommand> cannot issue */
James Smart3772a992009-05-22 14:50:54 -04006991 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6992 "(%d):2530 Mailbox command x%x "
6993 "cannot issue Data: x%x x%x\n",
6994 pmbox->vport ? pmbox->vport->vpi : 0,
6995 pmbox->u.mb.mbxCommand,
6996 psli->sli_flag, flag);
James Smart58da1ff2008-04-07 10:15:56 -04006997 goto out_not_finished;
dea31012005-04-17 16:05:31 -05006998 }
6999
dea31012005-04-17 16:05:31 -05007000 /* Another mailbox command is still being processed, queue this
7001 * command to be processed later.
7002 */
7003 lpfc_mbox_put(phba, pmbox);
7004
7005 /* Mbox cmd issue - BUSY */
James Smarted957682007-06-17 19:56:37 -05007006 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04007007 "(%d):0308 Mbox cmd issue - BUSY Data: "
James Smart92d7f7b2007-06-17 19:56:38 -05007008 "x%x x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05007009 pmbox->vport ? pmbox->vport->vpi : 0xffffff,
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007010 mbx->mbxCommand, phba->pport->port_state,
James Smart92d7f7b2007-06-17 19:56:38 -05007011 psli->sli_flag, flag);
dea31012005-04-17 16:05:31 -05007012
7013 psli->slistat.mbox_busy++;
James Smart2e0fef82007-06-17 19:56:36 -05007014 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05007015
James Smart858c9f62007-06-17 19:56:39 -05007016 if (pmbox->vport) {
7017 lpfc_debugfs_disc_trc(pmbox->vport,
7018 LPFC_DISC_TRC_MBOX_VPORT,
7019 "MBOX Bsy vport: cmd:x%x mb:x%x x%x",
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007020 (uint32_t)mbx->mbxCommand,
7021 mbx->un.varWords[0], mbx->un.varWords[1]);
James Smart858c9f62007-06-17 19:56:39 -05007022 }
7023 else {
7024 lpfc_debugfs_disc_trc(phba->pport,
7025 LPFC_DISC_TRC_MBOX,
7026 "MBOX Bsy: cmd:x%x mb:x%x x%x",
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007027 (uint32_t)mbx->mbxCommand,
7028 mbx->un.varWords[0], mbx->un.varWords[1]);
James Smart858c9f62007-06-17 19:56:39 -05007029 }
7030
James Smart2e0fef82007-06-17 19:56:36 -05007031 return MBX_BUSY;
dea31012005-04-17 16:05:31 -05007032 }
7033
dea31012005-04-17 16:05:31 -05007034 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
7035
7036 /* If we are not polling, we MUST be in SLI2 mode */
7037 if (flag != MBX_POLL) {
James Smart3772a992009-05-22 14:50:54 -04007038 if (!(psli->sli_flag & LPFC_SLI_ACTIVE) &&
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007039 (mbx->mbxCommand != MBX_KILL_BOARD)) {
dea31012005-04-17 16:05:31 -05007040 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05007041 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05007042 /* Mbox command <mbxCommand> cannot issue */
James Smart3772a992009-05-22 14:50:54 -04007043 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7044 "(%d):2531 Mailbox command x%x "
7045 "cannot issue Data: x%x x%x\n",
7046 pmbox->vport ? pmbox->vport->vpi : 0,
7047 pmbox->u.mb.mbxCommand,
7048 psli->sli_flag, flag);
James Smart58da1ff2008-04-07 10:15:56 -04007049 goto out_not_finished;
dea31012005-04-17 16:05:31 -05007050 }
7051 /* timeout active mbox command */
James Smart256ec0d2013-04-17 20:14:58 -04007052 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, pmbox) *
7053 1000);
7054 mod_timer(&psli->mbox_tmo, jiffies + timeout);
dea31012005-04-17 16:05:31 -05007055 }
7056
7057 /* Mailbox cmd <cmd> issue */
James Smarted957682007-06-17 19:56:37 -05007058 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04007059 "(%d):0309 Mailbox cmd x%x issue Data: x%x x%x "
James Smart92d7f7b2007-06-17 19:56:38 -05007060 "x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04007061 pmbox->vport ? pmbox->vport->vpi : 0,
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007062 mbx->mbxCommand, phba->pport->port_state,
James Smart92d7f7b2007-06-17 19:56:38 -05007063 psli->sli_flag, flag);
dea31012005-04-17 16:05:31 -05007064
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007065 if (mbx->mbxCommand != MBX_HEARTBEAT) {
James Smart858c9f62007-06-17 19:56:39 -05007066 if (pmbox->vport) {
7067 lpfc_debugfs_disc_trc(pmbox->vport,
7068 LPFC_DISC_TRC_MBOX_VPORT,
7069 "MBOX Send vport: cmd:x%x mb:x%x x%x",
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007070 (uint32_t)mbx->mbxCommand,
7071 mbx->un.varWords[0], mbx->un.varWords[1]);
James Smart858c9f62007-06-17 19:56:39 -05007072 }
7073 else {
7074 lpfc_debugfs_disc_trc(phba->pport,
7075 LPFC_DISC_TRC_MBOX,
7076 "MBOX Send: cmd:x%x mb:x%x x%x",
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007077 (uint32_t)mbx->mbxCommand,
7078 mbx->un.varWords[0], mbx->un.varWords[1]);
James Smart858c9f62007-06-17 19:56:39 -05007079 }
7080 }
7081
dea31012005-04-17 16:05:31 -05007082 psli->slistat.mbox_cmd++;
7083 evtctr = psli->slistat.mbox_event;
7084
7085 /* next set own bit for the adapter and copy over command word */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007086 mbx->mbxOwner = OWN_CHIP;
dea31012005-04-17 16:05:31 -05007087
James Smart3772a992009-05-22 14:50:54 -04007088 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
James Smart7a470272010-03-15 11:25:20 -04007089 /* Populate mbox extension offset word. */
7090 if (pmbox->in_ext_byte_len || pmbox->out_ext_byte_len) {
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007091 *(((uint32_t *)mbx) + pmbox->mbox_offset_word)
James Smart7a470272010-03-15 11:25:20 -04007092 = (uint8_t *)phba->mbox_ext
7093 - (uint8_t *)phba->mbox;
7094 }
7095
7096 /* Copy the mailbox extension data */
7097 if (pmbox->in_ext_byte_len && pmbox->context2) {
7098 lpfc_sli_pcimem_bcopy(pmbox->context2,
7099 (uint8_t *)phba->mbox_ext,
7100 pmbox->in_ext_byte_len);
7101 }
7102 /* Copy command data to host SLIM area */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007103 lpfc_sli_pcimem_bcopy(mbx, phba->mbox, MAILBOX_CMD_SIZE);
dea31012005-04-17 16:05:31 -05007104 } else {
James Smart7a470272010-03-15 11:25:20 -04007105 /* Populate mbox extension offset word. */
7106 if (pmbox->in_ext_byte_len || pmbox->out_ext_byte_len)
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007107 *(((uint32_t *)mbx) + pmbox->mbox_offset_word)
James Smart7a470272010-03-15 11:25:20 -04007108 = MAILBOX_HBA_EXT_OFFSET;
7109
7110 /* Copy the mailbox extension data */
7111 if (pmbox->in_ext_byte_len && pmbox->context2) {
7112 lpfc_memcpy_to_slim(phba->MBslimaddr +
7113 MAILBOX_HBA_EXT_OFFSET,
7114 pmbox->context2, pmbox->in_ext_byte_len);
7115
7116 }
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007117 if (mbx->mbxCommand == MBX_CONFIG_PORT) {
dea31012005-04-17 16:05:31 -05007118 /* copy command data into host mbox for cmpl */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007119 lpfc_sli_pcimem_bcopy(mbx, phba->mbox, MAILBOX_CMD_SIZE);
dea31012005-04-17 16:05:31 -05007120 }
7121
7122 /* First copy mbox command data to HBA SLIM, skip past first
7123 word */
7124 to_slim = phba->MBslimaddr + sizeof (uint32_t);
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007125 lpfc_memcpy_to_slim(to_slim, &mbx->un.varWords[0],
dea31012005-04-17 16:05:31 -05007126 MAILBOX_CMD_SIZE - sizeof (uint32_t));
7127
7128 /* Next copy over first word, with mbxOwner set */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007129 ldata = *((uint32_t *)mbx);
dea31012005-04-17 16:05:31 -05007130 to_slim = phba->MBslimaddr;
7131 writel(ldata, to_slim);
7132 readl(to_slim); /* flush */
7133
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007134 if (mbx->mbxCommand == MBX_CONFIG_PORT) {
dea31012005-04-17 16:05:31 -05007135 /* switch over to host mailbox */
James Smart3772a992009-05-22 14:50:54 -04007136 psli->sli_flag |= LPFC_SLI_ACTIVE;
dea31012005-04-17 16:05:31 -05007137 }
7138 }
7139
7140 wmb();
dea31012005-04-17 16:05:31 -05007141
7142 switch (flag) {
7143 case MBX_NOWAIT:
James Smart09372822008-01-11 01:52:54 -05007144 /* Set up reference to mailbox command */
dea31012005-04-17 16:05:31 -05007145 psli->mbox_active = pmbox;
James Smart09372822008-01-11 01:52:54 -05007146 /* Interrupt board to do it */
7147 writel(CA_MBATT, phba->CAregaddr);
7148 readl(phba->CAregaddr); /* flush */
7149 /* Don't wait for it to finish, just return */
dea31012005-04-17 16:05:31 -05007150 break;
7151
7152 case MBX_POLL:
James Smart09372822008-01-11 01:52:54 -05007153 /* Set up null reference to mailbox command */
dea31012005-04-17 16:05:31 -05007154 psli->mbox_active = NULL;
James Smart09372822008-01-11 01:52:54 -05007155 /* Interrupt board to do it */
7156 writel(CA_MBATT, phba->CAregaddr);
7157 readl(phba->CAregaddr); /* flush */
7158
James Smart3772a992009-05-22 14:50:54 -04007159 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea31012005-04-17 16:05:31 -05007160 /* First read mbox status word */
James Smart34b02dc2008-08-24 21:49:55 -04007161 word0 = *((uint32_t *)phba->mbox);
dea31012005-04-17 16:05:31 -05007162 word0 = le32_to_cpu(word0);
7163 } else {
7164 /* First read mbox status word */
James Smart9940b972011-03-11 16:06:12 -05007165 if (lpfc_readl(phba->MBslimaddr, &word0)) {
7166 spin_unlock_irqrestore(&phba->hbalock,
7167 drvr_flag);
7168 goto out_not_finished;
7169 }
dea31012005-04-17 16:05:31 -05007170 }
7171
7172 /* Read the HBA Host Attention Register */
James Smart9940b972011-03-11 16:06:12 -05007173 if (lpfc_readl(phba->HAregaddr, &ha_copy)) {
7174 spin_unlock_irqrestore(&phba->hbalock,
7175 drvr_flag);
7176 goto out_not_finished;
7177 }
James Smarta183a152011-10-10 21:32:43 -04007178 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, pmbox) *
7179 1000) + jiffies;
James Smart09372822008-01-11 01:52:54 -05007180 i = 0;
dea31012005-04-17 16:05:31 -05007181 /* Wait for command to complete */
Jamie Wellnitz41415862006-02-28 19:25:27 -05007182 while (((word0 & OWN_CHIP) == OWN_CHIP) ||
7183 (!(ha_copy & HA_MBATT) &&
James Smart2e0fef82007-06-17 19:56:36 -05007184 (phba->link_state > LPFC_WARM_START))) {
James Smart09372822008-01-11 01:52:54 -05007185 if (time_after(jiffies, timeout)) {
dea31012005-04-17 16:05:31 -05007186 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05007187 spin_unlock_irqrestore(&phba->hbalock,
dea31012005-04-17 16:05:31 -05007188 drvr_flag);
James Smart58da1ff2008-04-07 10:15:56 -04007189 goto out_not_finished;
dea31012005-04-17 16:05:31 -05007190 }
7191
7192 /* Check if we took a mbox interrupt while we were
7193 polling */
7194 if (((word0 & OWN_CHIP) != OWN_CHIP)
7195 && (evtctr != psli->slistat.mbox_event))
7196 break;
7197
James Smart09372822008-01-11 01:52:54 -05007198 if (i++ > 10) {
7199 spin_unlock_irqrestore(&phba->hbalock,
7200 drvr_flag);
7201 msleep(1);
7202 spin_lock_irqsave(&phba->hbalock, drvr_flag);
7203 }
dea31012005-04-17 16:05:31 -05007204
James Smart3772a992009-05-22 14:50:54 -04007205 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea31012005-04-17 16:05:31 -05007206 /* First copy command data */
James Smart34b02dc2008-08-24 21:49:55 -04007207 word0 = *((uint32_t *)phba->mbox);
dea31012005-04-17 16:05:31 -05007208 word0 = le32_to_cpu(word0);
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007209 if (mbx->mbxCommand == MBX_CONFIG_PORT) {
dea31012005-04-17 16:05:31 -05007210 MAILBOX_t *slimmb;
James Smart34b02dc2008-08-24 21:49:55 -04007211 uint32_t slimword0;
dea31012005-04-17 16:05:31 -05007212 /* Check real SLIM for any errors */
7213 slimword0 = readl(phba->MBslimaddr);
7214 slimmb = (MAILBOX_t *) & slimword0;
7215 if (((slimword0 & OWN_CHIP) != OWN_CHIP)
7216 && slimmb->mbxStatus) {
7217 psli->sli_flag &=
James Smart3772a992009-05-22 14:50:54 -04007218 ~LPFC_SLI_ACTIVE;
dea31012005-04-17 16:05:31 -05007219 word0 = slimword0;
7220 }
7221 }
7222 } else {
7223 /* First copy command data */
7224 word0 = readl(phba->MBslimaddr);
7225 }
7226 /* Read the HBA Host Attention Register */
James Smart9940b972011-03-11 16:06:12 -05007227 if (lpfc_readl(phba->HAregaddr, &ha_copy)) {
7228 spin_unlock_irqrestore(&phba->hbalock,
7229 drvr_flag);
7230 goto out_not_finished;
7231 }
dea31012005-04-17 16:05:31 -05007232 }
7233
James Smart3772a992009-05-22 14:50:54 -04007234 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea31012005-04-17 16:05:31 -05007235 /* copy results back to user */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007236 lpfc_sli_pcimem_bcopy(phba->mbox, mbx, MAILBOX_CMD_SIZE);
James Smart7a470272010-03-15 11:25:20 -04007237 /* Copy the mailbox extension data */
7238 if (pmbox->out_ext_byte_len && pmbox->context2) {
7239 lpfc_sli_pcimem_bcopy(phba->mbox_ext,
7240 pmbox->context2,
7241 pmbox->out_ext_byte_len);
7242 }
dea31012005-04-17 16:05:31 -05007243 } else {
7244 /* First copy command data */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007245 lpfc_memcpy_from_slim(mbx, phba->MBslimaddr,
dea31012005-04-17 16:05:31 -05007246 MAILBOX_CMD_SIZE);
James Smart7a470272010-03-15 11:25:20 -04007247 /* Copy the mailbox extension data */
7248 if (pmbox->out_ext_byte_len && pmbox->context2) {
7249 lpfc_memcpy_from_slim(pmbox->context2,
7250 phba->MBslimaddr +
7251 MAILBOX_HBA_EXT_OFFSET,
7252 pmbox->out_ext_byte_len);
dea31012005-04-17 16:05:31 -05007253 }
7254 }
7255
7256 writel(HA_MBATT, phba->HAregaddr);
7257 readl(phba->HAregaddr); /* flush */
7258
7259 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007260 status = mbx->mbxStatus;
dea31012005-04-17 16:05:31 -05007261 }
7262
James Smart2e0fef82007-06-17 19:56:36 -05007263 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
7264 return status;
James Smart58da1ff2008-04-07 10:15:56 -04007265
7266out_not_finished:
7267 if (processing_queue) {
James Smartda0436e2009-05-22 14:51:39 -04007268 pmbox->u.mb.mbxStatus = MBX_NOT_FINISHED;
James Smart58da1ff2008-04-07 10:15:56 -04007269 lpfc_mbox_cmpl_put(phba, pmbox);
7270 }
7271 return MBX_NOT_FINISHED;
dea31012005-04-17 16:05:31 -05007272}
7273
James Smarte59058c2008-08-24 21:49:00 -04007274/**
James Smartf1126682009-06-10 17:22:44 -04007275 * lpfc_sli4_async_mbox_block - Block posting SLI4 asynchronous mailbox command
7276 * @phba: Pointer to HBA context object.
7277 *
7278 * The function blocks the posting of SLI4 asynchronous mailbox commands from
7279 * the driver internal pending mailbox queue. It will then try to wait out the
7280 * possible outstanding mailbox command before return.
7281 *
7282 * Returns:
7283 * 0 - the outstanding mailbox command completed; otherwise, the wait for
7284 * the outstanding mailbox command timed out.
7285 **/
7286static int
7287lpfc_sli4_async_mbox_block(struct lpfc_hba *phba)
7288{
7289 struct lpfc_sli *psli = &phba->sli;
James Smartf1126682009-06-10 17:22:44 -04007290 int rc = 0;
James Smarta183a152011-10-10 21:32:43 -04007291 unsigned long timeout = 0;
James Smartf1126682009-06-10 17:22:44 -04007292
7293 /* Mark the asynchronous mailbox command posting as blocked */
7294 spin_lock_irq(&phba->hbalock);
7295 psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
James Smartf1126682009-06-10 17:22:44 -04007296 /* Determine how long we might wait for the active mailbox
7297 * command to be gracefully completed by firmware.
7298 */
James Smarta183a152011-10-10 21:32:43 -04007299 if (phba->sli.mbox_active)
7300 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
7301 phba->sli.mbox_active) *
7302 1000) + jiffies;
7303 spin_unlock_irq(&phba->hbalock);
7304
James Smarte8d3c3b2013-10-10 12:21:30 -04007305 /* Make sure the mailbox is really active */
7306 if (timeout)
7307 lpfc_sli4_process_missed_mbox_completions(phba);
7308
James Smartf1126682009-06-10 17:22:44 -04007309 /* Wait for the outstnading mailbox command to complete */
7310 while (phba->sli.mbox_active) {
7311 /* Check active mailbox complete status every 2ms */
7312 msleep(2);
7313 if (time_after(jiffies, timeout)) {
7314 /* Timeout, marked the outstanding cmd not complete */
7315 rc = 1;
7316 break;
7317 }
7318 }
7319
7320 /* Can not cleanly block async mailbox command, fails it */
7321 if (rc) {
7322 spin_lock_irq(&phba->hbalock);
7323 psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
7324 spin_unlock_irq(&phba->hbalock);
7325 }
7326 return rc;
7327}
7328
7329/**
7330 * lpfc_sli4_async_mbox_unblock - Block posting SLI4 async mailbox command
7331 * @phba: Pointer to HBA context object.
7332 *
7333 * The function unblocks and resume posting of SLI4 asynchronous mailbox
7334 * commands from the driver internal pending mailbox queue. It makes sure
7335 * that there is no outstanding mailbox command before resuming posting
7336 * asynchronous mailbox commands. If, for any reason, there is outstanding
7337 * mailbox command, it will try to wait it out before resuming asynchronous
7338 * mailbox command posting.
7339 **/
7340static void
7341lpfc_sli4_async_mbox_unblock(struct lpfc_hba *phba)
7342{
7343 struct lpfc_sli *psli = &phba->sli;
7344
7345 spin_lock_irq(&phba->hbalock);
7346 if (!(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
7347 /* Asynchronous mailbox posting is not blocked, do nothing */
7348 spin_unlock_irq(&phba->hbalock);
7349 return;
7350 }
7351
7352 /* Outstanding synchronous mailbox command is guaranteed to be done,
7353 * successful or timeout, after timing-out the outstanding mailbox
7354 * command shall always be removed, so just unblock posting async
7355 * mailbox command and resume
7356 */
7357 psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
7358 spin_unlock_irq(&phba->hbalock);
7359
7360 /* wake up worker thread to post asynchronlous mailbox command */
7361 lpfc_worker_wake_up(phba);
7362}
7363
7364/**
James Smart2d843ed2012-09-29 11:29:06 -04007365 * lpfc_sli4_wait_bmbx_ready - Wait for bootstrap mailbox register ready
7366 * @phba: Pointer to HBA context object.
7367 * @mboxq: Pointer to mailbox object.
7368 *
7369 * The function waits for the bootstrap mailbox register ready bit from
7370 * port for twice the regular mailbox command timeout value.
7371 *
7372 * 0 - no timeout on waiting for bootstrap mailbox register ready.
7373 * MBXERR_ERROR - wait for bootstrap mailbox register timed out.
7374 **/
7375static int
7376lpfc_sli4_wait_bmbx_ready(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
7377{
7378 uint32_t db_ready;
7379 unsigned long timeout;
7380 struct lpfc_register bmbx_reg;
7381
7382 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, mboxq)
7383 * 1000) + jiffies;
7384
7385 do {
7386 bmbx_reg.word0 = readl(phba->sli4_hba.BMBXregaddr);
7387 db_ready = bf_get(lpfc_bmbx_rdy, &bmbx_reg);
7388 if (!db_ready)
7389 msleep(2);
7390
7391 if (time_after(jiffies, timeout))
7392 return MBXERR_ERROR;
7393 } while (!db_ready);
7394
7395 return 0;
7396}
7397
7398/**
James Smartda0436e2009-05-22 14:51:39 -04007399 * lpfc_sli4_post_sync_mbox - Post an SLI4 mailbox to the bootstrap mailbox
7400 * @phba: Pointer to HBA context object.
7401 * @mboxq: Pointer to mailbox object.
7402 *
7403 * The function posts a mailbox to the port. The mailbox is expected
7404 * to be comletely filled in and ready for the port to operate on it.
7405 * This routine executes a synchronous completion operation on the
7406 * mailbox by polling for its completion.
7407 *
7408 * The caller must not be holding any locks when calling this routine.
7409 *
7410 * Returns:
7411 * MBX_SUCCESS - mailbox posted successfully
7412 * Any of the MBX error values.
7413 **/
7414static int
7415lpfc_sli4_post_sync_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
7416{
7417 int rc = MBX_SUCCESS;
7418 unsigned long iflag;
James Smartda0436e2009-05-22 14:51:39 -04007419 uint32_t mcqe_status;
7420 uint32_t mbx_cmnd;
James Smartda0436e2009-05-22 14:51:39 -04007421 struct lpfc_sli *psli = &phba->sli;
7422 struct lpfc_mqe *mb = &mboxq->u.mqe;
7423 struct lpfc_bmbx_create *mbox_rgn;
7424 struct dma_address *dma_address;
James Smartda0436e2009-05-22 14:51:39 -04007425
7426 /*
7427 * Only one mailbox can be active to the bootstrap mailbox region
7428 * at a time and there is no queueing provided.
7429 */
7430 spin_lock_irqsave(&phba->hbalock, iflag);
7431 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
7432 spin_unlock_irqrestore(&phba->hbalock, iflag);
7433 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007434 "(%d):2532 Mailbox command x%x (x%x/x%x) "
James Smartda0436e2009-05-22 14:51:39 -04007435 "cannot issue Data: x%x x%x\n",
7436 mboxq->vport ? mboxq->vport->vpi : 0,
7437 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007438 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7439 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007440 psli->sli_flag, MBX_POLL);
7441 return MBXERR_ERROR;
7442 }
7443 /* The server grabs the token and owns it until release */
7444 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
7445 phba->sli.mbox_active = mboxq;
7446 spin_unlock_irqrestore(&phba->hbalock, iflag);
7447
James Smart2d843ed2012-09-29 11:29:06 -04007448 /* wait for bootstrap mbox register for readyness */
7449 rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
7450 if (rc)
7451 goto exit;
7452
James Smartda0436e2009-05-22 14:51:39 -04007453 /*
7454 * Initialize the bootstrap memory region to avoid stale data areas
7455 * in the mailbox post. Then copy the caller's mailbox contents to
7456 * the bmbx mailbox region.
7457 */
7458 mbx_cmnd = bf_get(lpfc_mqe_command, mb);
7459 memset(phba->sli4_hba.bmbx.avirt, 0, sizeof(struct lpfc_bmbx_create));
7460 lpfc_sli_pcimem_bcopy(mb, phba->sli4_hba.bmbx.avirt,
7461 sizeof(struct lpfc_mqe));
7462
7463 /* Post the high mailbox dma address to the port and wait for ready. */
7464 dma_address = &phba->sli4_hba.bmbx.dma_address;
7465 writel(dma_address->addr_hi, phba->sli4_hba.BMBXregaddr);
7466
James Smart2d843ed2012-09-29 11:29:06 -04007467 /* wait for bootstrap mbox register for hi-address write done */
7468 rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
7469 if (rc)
7470 goto exit;
James Smartda0436e2009-05-22 14:51:39 -04007471
7472 /* Post the low mailbox dma address to the port. */
7473 writel(dma_address->addr_lo, phba->sli4_hba.BMBXregaddr);
James Smartda0436e2009-05-22 14:51:39 -04007474
James Smart2d843ed2012-09-29 11:29:06 -04007475 /* wait for bootstrap mbox register for low address write done */
7476 rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
7477 if (rc)
7478 goto exit;
James Smartda0436e2009-05-22 14:51:39 -04007479
7480 /*
7481 * Read the CQ to ensure the mailbox has completed.
7482 * If so, update the mailbox status so that the upper layers
7483 * can complete the request normally.
7484 */
7485 lpfc_sli_pcimem_bcopy(phba->sli4_hba.bmbx.avirt, mb,
7486 sizeof(struct lpfc_mqe));
7487 mbox_rgn = (struct lpfc_bmbx_create *) phba->sli4_hba.bmbx.avirt;
7488 lpfc_sli_pcimem_bcopy(&mbox_rgn->mcqe, &mboxq->mcqe,
7489 sizeof(struct lpfc_mcqe));
7490 mcqe_status = bf_get(lpfc_mcqe_status, &mbox_rgn->mcqe);
James Smart05580562011-05-24 11:40:48 -04007491 /*
7492 * When the CQE status indicates a failure and the mailbox status
7493 * indicates success then copy the CQE status into the mailbox status
7494 * (and prefix it with x4000).
7495 */
James Smartda0436e2009-05-22 14:51:39 -04007496 if (mcqe_status != MB_CQE_STATUS_SUCCESS) {
James Smart05580562011-05-24 11:40:48 -04007497 if (bf_get(lpfc_mqe_status, mb) == MBX_SUCCESS)
7498 bf_set(lpfc_mqe_status, mb,
7499 (LPFC_MBX_ERROR_RANGE | mcqe_status));
James Smartda0436e2009-05-22 14:51:39 -04007500 rc = MBXERR_ERROR;
James Smartd7c47992010-06-08 18:31:54 -04007501 } else
7502 lpfc_sli4_swap_str(phba, mboxq);
James Smartda0436e2009-05-22 14:51:39 -04007503
7504 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007505 "(%d):0356 Mailbox cmd x%x (x%x/x%x) Status x%x "
James Smartda0436e2009-05-22 14:51:39 -04007506 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x"
7507 " x%x x%x CQ: x%x x%x x%x x%x\n",
James Smarta183a152011-10-10 21:32:43 -04007508 mboxq->vport ? mboxq->vport->vpi : 0, mbx_cmnd,
7509 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7510 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007511 bf_get(lpfc_mqe_status, mb),
7512 mb->un.mb_words[0], mb->un.mb_words[1],
7513 mb->un.mb_words[2], mb->un.mb_words[3],
7514 mb->un.mb_words[4], mb->un.mb_words[5],
7515 mb->un.mb_words[6], mb->un.mb_words[7],
7516 mb->un.mb_words[8], mb->un.mb_words[9],
7517 mb->un.mb_words[10], mb->un.mb_words[11],
7518 mb->un.mb_words[12], mboxq->mcqe.word0,
7519 mboxq->mcqe.mcqe_tag0, mboxq->mcqe.mcqe_tag1,
7520 mboxq->mcqe.trailer);
7521exit:
7522 /* We are holding the token, no needed for lock when release */
7523 spin_lock_irqsave(&phba->hbalock, iflag);
7524 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7525 phba->sli.mbox_active = NULL;
7526 spin_unlock_irqrestore(&phba->hbalock, iflag);
7527 return rc;
7528}
7529
7530/**
7531 * lpfc_sli_issue_mbox_s4 - Issue an SLI4 mailbox command to firmware
7532 * @phba: Pointer to HBA context object.
7533 * @pmbox: Pointer to mailbox object.
7534 * @flag: Flag indicating how the mailbox need to be processed.
7535 *
7536 * This function is called by discovery code and HBA management code to submit
7537 * a mailbox command to firmware with SLI-4 interface spec.
7538 *
7539 * Return codes the caller owns the mailbox command after the return of the
7540 * function.
7541 **/
7542static int
7543lpfc_sli_issue_mbox_s4(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
7544 uint32_t flag)
7545{
7546 struct lpfc_sli *psli = &phba->sli;
7547 unsigned long iflags;
7548 int rc;
7549
James Smartb76f2dc2011-07-22 18:37:42 -04007550 /* dump from issue mailbox command if setup */
7551 lpfc_idiag_mbxacc_dump_issue_mbox(phba, &mboxq->u.mb);
7552
James Smart8fa38512009-07-19 10:01:03 -04007553 rc = lpfc_mbox_dev_check(phba);
7554 if (unlikely(rc)) {
7555 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007556 "(%d):2544 Mailbox command x%x (x%x/x%x) "
James Smart8fa38512009-07-19 10:01:03 -04007557 "cannot issue Data: x%x x%x\n",
7558 mboxq->vport ? mboxq->vport->vpi : 0,
7559 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007560 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7561 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smart8fa38512009-07-19 10:01:03 -04007562 psli->sli_flag, flag);
7563 goto out_not_finished;
7564 }
7565
James Smartda0436e2009-05-22 14:51:39 -04007566 /* Detect polling mode and jump to a handler */
7567 if (!phba->sli4_hba.intr_enable) {
7568 if (flag == MBX_POLL)
7569 rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
7570 else
7571 rc = -EIO;
7572 if (rc != MBX_SUCCESS)
James Smart05580562011-05-24 11:40:48 -04007573 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
James Smartda0436e2009-05-22 14:51:39 -04007574 "(%d):2541 Mailbox command x%x "
James Smartcc459f12012-05-09 21:18:30 -04007575 "(x%x/x%x) failure: "
7576 "mqe_sta: x%x mcqe_sta: x%x/x%x "
7577 "Data: x%x x%x\n,",
James Smartda0436e2009-05-22 14:51:39 -04007578 mboxq->vport ? mboxq->vport->vpi : 0,
7579 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007580 lpfc_sli_config_mbox_subsys_get(phba,
7581 mboxq),
7582 lpfc_sli_config_mbox_opcode_get(phba,
7583 mboxq),
James Smartcc459f12012-05-09 21:18:30 -04007584 bf_get(lpfc_mqe_status, &mboxq->u.mqe),
7585 bf_get(lpfc_mcqe_status, &mboxq->mcqe),
7586 bf_get(lpfc_mcqe_ext_status,
7587 &mboxq->mcqe),
James Smartda0436e2009-05-22 14:51:39 -04007588 psli->sli_flag, flag);
7589 return rc;
7590 } else if (flag == MBX_POLL) {
James Smartf1126682009-06-10 17:22:44 -04007591 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
7592 "(%d):2542 Try to issue mailbox command "
James Smarta183a152011-10-10 21:32:43 -04007593 "x%x (x%x/x%x) synchronously ahead of async"
James Smartf1126682009-06-10 17:22:44 -04007594 "mailbox command queue: x%x x%x\n",
James Smartda0436e2009-05-22 14:51:39 -04007595 mboxq->vport ? mboxq->vport->vpi : 0,
7596 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007597 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7598 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007599 psli->sli_flag, flag);
James Smartf1126682009-06-10 17:22:44 -04007600 /* Try to block the asynchronous mailbox posting */
7601 rc = lpfc_sli4_async_mbox_block(phba);
7602 if (!rc) {
7603 /* Successfully blocked, now issue sync mbox cmd */
7604 rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
7605 if (rc != MBX_SUCCESS)
James Smartcc459f12012-05-09 21:18:30 -04007606 lpfc_printf_log(phba, KERN_WARNING,
James Smarta183a152011-10-10 21:32:43 -04007607 LOG_MBOX | LOG_SLI,
James Smartcc459f12012-05-09 21:18:30 -04007608 "(%d):2597 Sync Mailbox command "
7609 "x%x (x%x/x%x) failure: "
7610 "mqe_sta: x%x mcqe_sta: x%x/x%x "
7611 "Data: x%x x%x\n,",
7612 mboxq->vport ? mboxq->vport->vpi : 0,
James Smarta183a152011-10-10 21:32:43 -04007613 mboxq->u.mb.mbxCommand,
7614 lpfc_sli_config_mbox_subsys_get(phba,
7615 mboxq),
7616 lpfc_sli_config_mbox_opcode_get(phba,
7617 mboxq),
James Smartcc459f12012-05-09 21:18:30 -04007618 bf_get(lpfc_mqe_status, &mboxq->u.mqe),
7619 bf_get(lpfc_mcqe_status, &mboxq->mcqe),
7620 bf_get(lpfc_mcqe_ext_status,
7621 &mboxq->mcqe),
James Smarta183a152011-10-10 21:32:43 -04007622 psli->sli_flag, flag);
James Smartf1126682009-06-10 17:22:44 -04007623 /* Unblock the async mailbox posting afterward */
7624 lpfc_sli4_async_mbox_unblock(phba);
7625 }
7626 return rc;
James Smartda0436e2009-05-22 14:51:39 -04007627 }
7628
7629 /* Now, interrupt mode asynchrous mailbox command */
7630 rc = lpfc_mbox_cmd_check(phba, mboxq);
7631 if (rc) {
7632 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007633 "(%d):2543 Mailbox command x%x (x%x/x%x) "
James Smartda0436e2009-05-22 14:51:39 -04007634 "cannot issue Data: x%x x%x\n",
7635 mboxq->vport ? mboxq->vport->vpi : 0,
7636 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007637 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7638 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007639 psli->sli_flag, flag);
7640 goto out_not_finished;
7641 }
James Smartda0436e2009-05-22 14:51:39 -04007642
7643 /* Put the mailbox command to the driver internal FIFO */
7644 psli->slistat.mbox_busy++;
7645 spin_lock_irqsave(&phba->hbalock, iflags);
7646 lpfc_mbox_put(phba, mboxq);
7647 spin_unlock_irqrestore(&phba->hbalock, iflags);
7648 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
7649 "(%d):0354 Mbox cmd issue - Enqueue Data: "
James Smarta183a152011-10-10 21:32:43 -04007650 "x%x (x%x/x%x) x%x x%x x%x\n",
James Smartda0436e2009-05-22 14:51:39 -04007651 mboxq->vport ? mboxq->vport->vpi : 0xffffff,
7652 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
James Smarta183a152011-10-10 21:32:43 -04007653 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7654 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007655 phba->pport->port_state,
7656 psli->sli_flag, MBX_NOWAIT);
7657 /* Wake up worker thread to transport mailbox command from head */
7658 lpfc_worker_wake_up(phba);
7659
7660 return MBX_BUSY;
7661
7662out_not_finished:
7663 return MBX_NOT_FINISHED;
7664}
7665
7666/**
7667 * lpfc_sli4_post_async_mbox - Post an SLI4 mailbox command to device
7668 * @phba: Pointer to HBA context object.
7669 *
7670 * This function is called by worker thread to send a mailbox command to
7671 * SLI4 HBA firmware.
7672 *
7673 **/
7674int
7675lpfc_sli4_post_async_mbox(struct lpfc_hba *phba)
7676{
7677 struct lpfc_sli *psli = &phba->sli;
7678 LPFC_MBOXQ_t *mboxq;
7679 int rc = MBX_SUCCESS;
7680 unsigned long iflags;
7681 struct lpfc_mqe *mqe;
7682 uint32_t mbx_cmnd;
7683
7684 /* Check interrupt mode before post async mailbox command */
7685 if (unlikely(!phba->sli4_hba.intr_enable))
7686 return MBX_NOT_FINISHED;
7687
7688 /* Check for mailbox command service token */
7689 spin_lock_irqsave(&phba->hbalock, iflags);
7690 if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
7691 spin_unlock_irqrestore(&phba->hbalock, iflags);
7692 return MBX_NOT_FINISHED;
7693 }
7694 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
7695 spin_unlock_irqrestore(&phba->hbalock, iflags);
7696 return MBX_NOT_FINISHED;
7697 }
7698 if (unlikely(phba->sli.mbox_active)) {
7699 spin_unlock_irqrestore(&phba->hbalock, iflags);
7700 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7701 "0384 There is pending active mailbox cmd\n");
7702 return MBX_NOT_FINISHED;
7703 }
7704 /* Take the mailbox command service token */
7705 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
7706
7707 /* Get the next mailbox command from head of queue */
7708 mboxq = lpfc_mbox_get(phba);
7709
7710 /* If no more mailbox command waiting for post, we're done */
7711 if (!mboxq) {
7712 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7713 spin_unlock_irqrestore(&phba->hbalock, iflags);
7714 return MBX_SUCCESS;
7715 }
7716 phba->sli.mbox_active = mboxq;
7717 spin_unlock_irqrestore(&phba->hbalock, iflags);
7718
7719 /* Check device readiness for posting mailbox command */
7720 rc = lpfc_mbox_dev_check(phba);
7721 if (unlikely(rc))
7722 /* Driver clean routine will clean up pending mailbox */
7723 goto out_not_finished;
7724
7725 /* Prepare the mbox command to be posted */
7726 mqe = &mboxq->u.mqe;
7727 mbx_cmnd = bf_get(lpfc_mqe_command, mqe);
7728
7729 /* Start timer for the mbox_tmo and log some mailbox post messages */
7730 mod_timer(&psli->mbox_tmo, (jiffies +
James Smart256ec0d2013-04-17 20:14:58 -04007731 msecs_to_jiffies(1000 * lpfc_mbox_tmo_val(phba, mboxq))));
James Smartda0436e2009-05-22 14:51:39 -04007732
7733 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007734 "(%d):0355 Mailbox cmd x%x (x%x/x%x) issue Data: "
James Smartda0436e2009-05-22 14:51:39 -04007735 "x%x x%x\n",
7736 mboxq->vport ? mboxq->vport->vpi : 0, mbx_cmnd,
James Smarta183a152011-10-10 21:32:43 -04007737 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7738 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007739 phba->pport->port_state, psli->sli_flag);
7740
7741 if (mbx_cmnd != MBX_HEARTBEAT) {
7742 if (mboxq->vport) {
7743 lpfc_debugfs_disc_trc(mboxq->vport,
7744 LPFC_DISC_TRC_MBOX_VPORT,
7745 "MBOX Send vport: cmd:x%x mb:x%x x%x",
7746 mbx_cmnd, mqe->un.mb_words[0],
7747 mqe->un.mb_words[1]);
7748 } else {
7749 lpfc_debugfs_disc_trc(phba->pport,
7750 LPFC_DISC_TRC_MBOX,
7751 "MBOX Send: cmd:x%x mb:x%x x%x",
7752 mbx_cmnd, mqe->un.mb_words[0],
7753 mqe->un.mb_words[1]);
7754 }
7755 }
7756 psli->slistat.mbox_cmd++;
7757
7758 /* Post the mailbox command to the port */
7759 rc = lpfc_sli4_mq_put(phba->sli4_hba.mbx_wq, mqe);
7760 if (rc != MBX_SUCCESS) {
7761 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007762 "(%d):2533 Mailbox command x%x (x%x/x%x) "
James Smartda0436e2009-05-22 14:51:39 -04007763 "cannot issue Data: x%x x%x\n",
7764 mboxq->vport ? mboxq->vport->vpi : 0,
7765 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007766 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7767 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007768 psli->sli_flag, MBX_NOWAIT);
7769 goto out_not_finished;
7770 }
7771
7772 return rc;
7773
7774out_not_finished:
7775 spin_lock_irqsave(&phba->hbalock, iflags);
James Smartd7069f02012-03-01 22:36:29 -05007776 if (phba->sli.mbox_active) {
7777 mboxq->u.mb.mbxStatus = MBX_NOT_FINISHED;
7778 __lpfc_mbox_cmpl_put(phba, mboxq);
7779 /* Release the token */
7780 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7781 phba->sli.mbox_active = NULL;
7782 }
James Smartda0436e2009-05-22 14:51:39 -04007783 spin_unlock_irqrestore(&phba->hbalock, iflags);
7784
7785 return MBX_NOT_FINISHED;
7786}
7787
7788/**
7789 * lpfc_sli_issue_mbox - Wrapper func for issuing mailbox command
7790 * @phba: Pointer to HBA context object.
7791 * @pmbox: Pointer to mailbox object.
7792 * @flag: Flag indicating how the mailbox need to be processed.
7793 *
7794 * This routine wraps the actual SLI3 or SLI4 mailbox issuing routine from
7795 * the API jump table function pointer from the lpfc_hba struct.
7796 *
7797 * Return codes the caller owns the mailbox command after the return of the
7798 * function.
7799 **/
7800int
7801lpfc_sli_issue_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox, uint32_t flag)
7802{
7803 return phba->lpfc_sli_issue_mbox(phba, pmbox, flag);
7804}
7805
7806/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03007807 * lpfc_mbox_api_table_setup - Set up mbox api function jump table
James Smartda0436e2009-05-22 14:51:39 -04007808 * @phba: The hba struct for which this call is being executed.
7809 * @dev_grp: The HBA PCI-Device group number.
7810 *
7811 * This routine sets up the mbox interface API function jump table in @phba
7812 * struct.
7813 * Returns: 0 - success, -ENODEV - failure.
7814 **/
7815int
7816lpfc_mbox_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
7817{
7818
7819 switch (dev_grp) {
7820 case LPFC_PCI_DEV_LP:
7821 phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s3;
7822 phba->lpfc_sli_handle_slow_ring_event =
7823 lpfc_sli_handle_slow_ring_event_s3;
7824 phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s3;
7825 phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s3;
7826 phba->lpfc_sli_brdready = lpfc_sli_brdready_s3;
7827 break;
7828 case LPFC_PCI_DEV_OC:
7829 phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s4;
7830 phba->lpfc_sli_handle_slow_ring_event =
7831 lpfc_sli_handle_slow_ring_event_s4;
7832 phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s4;
7833 phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s4;
7834 phba->lpfc_sli_brdready = lpfc_sli_brdready_s4;
7835 break;
7836 default:
7837 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7838 "1420 Invalid HBA PCI-device group: 0x%x\n",
7839 dev_grp);
7840 return -ENODEV;
7841 break;
7842 }
7843 return 0;
7844}
7845
7846/**
James Smart3621a712009-04-06 18:47:14 -04007847 * __lpfc_sli_ringtx_put - Add an iocb to the txq
James Smarte59058c2008-08-24 21:49:00 -04007848 * @phba: Pointer to HBA context object.
7849 * @pring: Pointer to driver SLI ring object.
7850 * @piocb: Pointer to address of newly added command iocb.
7851 *
7852 * This function is called with hbalock held to add a command
7853 * iocb to the txq when SLI layer cannot submit the command iocb
7854 * to the ring.
7855 **/
James Smart2a9bf3d2010-06-07 15:24:45 -04007856void
James Smart92d7f7b2007-06-17 19:56:38 -05007857__lpfc_sli_ringtx_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart2e0fef82007-06-17 19:56:36 -05007858 struct lpfc_iocbq *piocb)
dea31012005-04-17 16:05:31 -05007859{
7860 /* Insert the caller's iocb in the txq tail for later processing. */
7861 list_add_tail(&piocb->list, &pring->txq);
dea31012005-04-17 16:05:31 -05007862}
7863
James Smarte59058c2008-08-24 21:49:00 -04007864/**
James Smart3621a712009-04-06 18:47:14 -04007865 * lpfc_sli_next_iocb - Get the next iocb in the txq
James Smarte59058c2008-08-24 21:49:00 -04007866 * @phba: Pointer to HBA context object.
7867 * @pring: Pointer to driver SLI ring object.
7868 * @piocb: Pointer to address of newly added command iocb.
7869 *
7870 * This function is called with hbalock held before a new
7871 * iocb is submitted to the firmware. This function checks
7872 * txq to flush the iocbs in txq to Firmware before
7873 * submitting new iocbs to the Firmware.
7874 * If there are iocbs in the txq which need to be submitted
7875 * to firmware, lpfc_sli_next_iocb returns the first element
7876 * of the txq after dequeuing it from txq.
7877 * If there is no iocb in the txq then the function will return
7878 * *piocb and *piocb is set to NULL. Caller needs to check
7879 * *piocb to find if there are more commands in the txq.
7880 **/
dea31012005-04-17 16:05:31 -05007881static struct lpfc_iocbq *
7882lpfc_sli_next_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart2e0fef82007-06-17 19:56:36 -05007883 struct lpfc_iocbq **piocb)
dea31012005-04-17 16:05:31 -05007884{
7885 struct lpfc_iocbq * nextiocb;
7886
7887 nextiocb = lpfc_sli_ringtx_get(phba, pring);
7888 if (!nextiocb) {
7889 nextiocb = *piocb;
7890 *piocb = NULL;
7891 }
7892
7893 return nextiocb;
7894}
7895
James Smarte59058c2008-08-24 21:49:00 -04007896/**
James Smart3772a992009-05-22 14:50:54 -04007897 * __lpfc_sli_issue_iocb_s3 - SLI3 device lockless ver of lpfc_sli_issue_iocb
James Smarte59058c2008-08-24 21:49:00 -04007898 * @phba: Pointer to HBA context object.
James Smart3772a992009-05-22 14:50:54 -04007899 * @ring_number: SLI ring number to issue iocb on.
James Smarte59058c2008-08-24 21:49:00 -04007900 * @piocb: Pointer to command iocb.
7901 * @flag: Flag indicating if this command can be put into txq.
7902 *
James Smart3772a992009-05-22 14:50:54 -04007903 * __lpfc_sli_issue_iocb_s3 is used by other functions in the driver to issue
7904 * an iocb command to an HBA with SLI-3 interface spec. If the PCI slot is
7905 * recovering from error state, if HBA is resetting or if LPFC_STOP_IOCB_EVENT
7906 * flag is turned on, the function returns IOCB_ERROR. When the link is down,
7907 * this function allows only iocbs for posting buffers. This function finds
7908 * next available slot in the command ring and posts the command to the
7909 * available slot and writes the port attention register to request HBA start
7910 * processing new iocb. If there is no slot available in the ring and
7911 * flag & SLI_IOCB_RET_IOCB is set, the new iocb is added to the txq, otherwise
7912 * the function returns IOCB_BUSY.
James Smarte59058c2008-08-24 21:49:00 -04007913 *
James Smart3772a992009-05-22 14:50:54 -04007914 * This function is called with hbalock held. The function will return success
7915 * after it successfully submit the iocb to firmware or after adding to the
7916 * txq.
James Smarte59058c2008-08-24 21:49:00 -04007917 **/
James Smart98c9ea52007-10-27 13:37:33 -04007918static int
James Smart3772a992009-05-22 14:50:54 -04007919__lpfc_sli_issue_iocb_s3(struct lpfc_hba *phba, uint32_t ring_number,
dea31012005-04-17 16:05:31 -05007920 struct lpfc_iocbq *piocb, uint32_t flag)
7921{
7922 struct lpfc_iocbq *nextiocb;
7923 IOCB_t *iocb;
James Smart3772a992009-05-22 14:50:54 -04007924 struct lpfc_sli_ring *pring = &phba->sli.ring[ring_number];
dea31012005-04-17 16:05:31 -05007925
James Smart92d7f7b2007-06-17 19:56:38 -05007926 if (piocb->iocb_cmpl && (!piocb->vport) &&
7927 (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
7928 (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) {
7929 lpfc_printf_log(phba, KERN_ERR,
7930 LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04007931 "1807 IOCB x%x failed. No vport\n",
James Smart92d7f7b2007-06-17 19:56:38 -05007932 piocb->iocb.ulpCommand);
7933 dump_stack();
7934 return IOCB_ERROR;
7935 }
7936
7937
Linas Vepstas8d63f372007-02-14 14:28:36 -06007938 /* If the PCI channel is in offline state, do not post iocbs. */
7939 if (unlikely(pci_channel_offline(phba->pcidev)))
7940 return IOCB_ERROR;
7941
James Smarta257bf92009-04-06 18:48:10 -04007942 /* If HBA has a deferred error attention, fail the iocb. */
7943 if (unlikely(phba->hba_flag & DEFER_ERATT))
7944 return IOCB_ERROR;
7945
dea31012005-04-17 16:05:31 -05007946 /*
7947 * We should never get an IOCB if we are in a < LINK_DOWN state
7948 */
James Smart2e0fef82007-06-17 19:56:36 -05007949 if (unlikely(phba->link_state < LPFC_LINK_DOWN))
dea31012005-04-17 16:05:31 -05007950 return IOCB_ERROR;
7951
7952 /*
7953 * Check to see if we are blocking IOCB processing because of a
James Smart0b727fe2007-10-27 13:37:25 -04007954 * outstanding event.
dea31012005-04-17 16:05:31 -05007955 */
James Smart0b727fe2007-10-27 13:37:25 -04007956 if (unlikely(pring->flag & LPFC_STOP_IOCB_EVENT))
dea31012005-04-17 16:05:31 -05007957 goto iocb_busy;
7958
James Smart2e0fef82007-06-17 19:56:36 -05007959 if (unlikely(phba->link_state == LPFC_LINK_DOWN)) {
dea31012005-04-17 16:05:31 -05007960 /*
James Smart2680eea2007-04-25 09:52:55 -04007961 * Only CREATE_XRI, CLOSE_XRI, and QUE_RING_BUF
dea31012005-04-17 16:05:31 -05007962 * can be issued if the link is not up.
7963 */
7964 switch (piocb->iocb.ulpCommand) {
James Smart84774a42008-08-24 21:50:06 -04007965 case CMD_GEN_REQUEST64_CR:
7966 case CMD_GEN_REQUEST64_CX:
7967 if (!(phba->sli.sli_flag & LPFC_MENLO_MAINT) ||
7968 (piocb->iocb.un.genreq64.w5.hcsw.Rctl !=
James Smart6a9c52c2009-10-02 15:16:51 -04007969 FC_RCTL_DD_UNSOL_CMD) ||
James Smart84774a42008-08-24 21:50:06 -04007970 (piocb->iocb.un.genreq64.w5.hcsw.Type !=
7971 MENLO_TRANSPORT_TYPE))
7972
7973 goto iocb_busy;
7974 break;
dea31012005-04-17 16:05:31 -05007975 case CMD_QUE_RING_BUF_CN:
7976 case CMD_QUE_RING_BUF64_CN:
dea31012005-04-17 16:05:31 -05007977 /*
7978 * For IOCBs, like QUE_RING_BUF, that have no rsp ring
7979 * completion, iocb_cmpl MUST be 0.
7980 */
7981 if (piocb->iocb_cmpl)
7982 piocb->iocb_cmpl = NULL;
7983 /*FALLTHROUGH*/
7984 case CMD_CREATE_XRI_CR:
James Smart2680eea2007-04-25 09:52:55 -04007985 case CMD_CLOSE_XRI_CN:
7986 case CMD_CLOSE_XRI_CX:
dea31012005-04-17 16:05:31 -05007987 break;
7988 default:
7989 goto iocb_busy;
7990 }
7991
7992 /*
7993 * For FCP commands, we must be in a state where we can process link
7994 * attention events.
7995 */
7996 } else if (unlikely(pring->ringno == phba->sli.fcp_ring &&
James Smart92d7f7b2007-06-17 19:56:38 -05007997 !(phba->sli.sli_flag & LPFC_PROCESS_LA))) {
dea31012005-04-17 16:05:31 -05007998 goto iocb_busy;
James Smart92d7f7b2007-06-17 19:56:38 -05007999 }
dea31012005-04-17 16:05:31 -05008000
dea31012005-04-17 16:05:31 -05008001 while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
8002 (nextiocb = lpfc_sli_next_iocb(phba, pring, &piocb)))
8003 lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
8004
8005 if (iocb)
8006 lpfc_sli_update_ring(phba, pring);
8007 else
8008 lpfc_sli_update_full_ring(phba, pring);
8009
8010 if (!piocb)
8011 return IOCB_SUCCESS;
8012
8013 goto out_busy;
8014
8015 iocb_busy:
8016 pring->stats.iocb_cmd_delay++;
8017
8018 out_busy:
8019
8020 if (!(flag & SLI_IOCB_RET_IOCB)) {
James Smart92d7f7b2007-06-17 19:56:38 -05008021 __lpfc_sli_ringtx_put(phba, pring, piocb);
dea31012005-04-17 16:05:31 -05008022 return IOCB_SUCCESS;
8023 }
8024
8025 return IOCB_BUSY;
8026}
8027
James Smart3772a992009-05-22 14:50:54 -04008028/**
James Smart4f774512009-05-22 14:52:35 -04008029 * lpfc_sli4_bpl2sgl - Convert the bpl/bde to a sgl.
8030 * @phba: Pointer to HBA context object.
8031 * @piocb: Pointer to command iocb.
8032 * @sglq: Pointer to the scatter gather queue object.
8033 *
8034 * This routine converts the bpl or bde that is in the IOCB
8035 * to a sgl list for the sli4 hardware. The physical address
8036 * of the bpl/bde is converted back to a virtual address.
8037 * If the IOCB contains a BPL then the list of BDE's is
8038 * converted to sli4_sge's. If the IOCB contains a single
8039 * BDE then it is converted to a single sli_sge.
8040 * The IOCB is still in cpu endianess so the contents of
8041 * the bpl can be used without byte swapping.
8042 *
8043 * Returns valid XRI = Success, NO_XRI = Failure.
8044**/
8045static uint16_t
8046lpfc_sli4_bpl2sgl(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq,
8047 struct lpfc_sglq *sglq)
8048{
8049 uint16_t xritag = NO_XRI;
8050 struct ulp_bde64 *bpl = NULL;
8051 struct ulp_bde64 bde;
8052 struct sli4_sge *sgl = NULL;
James Smart1b511972011-12-13 13:23:09 -05008053 struct lpfc_dmabuf *dmabuf;
James Smart4f774512009-05-22 14:52:35 -04008054 IOCB_t *icmd;
8055 int numBdes = 0;
8056 int i = 0;
James Smart63e801c2010-11-20 23:14:19 -05008057 uint32_t offset = 0; /* accumulated offset in the sg request list */
8058 int inbound = 0; /* number of sg reply entries inbound from firmware */
James Smart4f774512009-05-22 14:52:35 -04008059
8060 if (!piocbq || !sglq)
8061 return xritag;
8062
8063 sgl = (struct sli4_sge *)sglq->sgl;
8064 icmd = &piocbq->iocb;
James Smart6b5151f2012-01-18 16:24:06 -05008065 if (icmd->ulpCommand == CMD_XMIT_BLS_RSP64_CX)
8066 return sglq->sli4_xritag;
James Smart4f774512009-05-22 14:52:35 -04008067 if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
8068 numBdes = icmd->un.genreq64.bdl.bdeSize /
8069 sizeof(struct ulp_bde64);
8070 /* The addrHigh and addrLow fields within the IOCB
8071 * have not been byteswapped yet so there is no
8072 * need to swap them back.
8073 */
James Smart1b511972011-12-13 13:23:09 -05008074 if (piocbq->context3)
8075 dmabuf = (struct lpfc_dmabuf *)piocbq->context3;
8076 else
8077 return xritag;
James Smart4f774512009-05-22 14:52:35 -04008078
James Smart1b511972011-12-13 13:23:09 -05008079 bpl = (struct ulp_bde64 *)dmabuf->virt;
James Smart4f774512009-05-22 14:52:35 -04008080 if (!bpl)
8081 return xritag;
8082
8083 for (i = 0; i < numBdes; i++) {
8084 /* Should already be byte swapped. */
James Smart28baac72010-02-12 14:42:03 -05008085 sgl->addr_hi = bpl->addrHigh;
8086 sgl->addr_lo = bpl->addrLow;
8087
James Smart05580562011-05-24 11:40:48 -04008088 sgl->word2 = le32_to_cpu(sgl->word2);
James Smart4f774512009-05-22 14:52:35 -04008089 if ((i+1) == numBdes)
8090 bf_set(lpfc_sli4_sge_last, sgl, 1);
8091 else
8092 bf_set(lpfc_sli4_sge_last, sgl, 0);
James Smart28baac72010-02-12 14:42:03 -05008093 /* swap the size field back to the cpu so we
8094 * can assign it to the sgl.
8095 */
8096 bde.tus.w = le32_to_cpu(bpl->tus.w);
8097 sgl->sge_len = cpu_to_le32(bde.tus.f.bdeSize);
James Smart63e801c2010-11-20 23:14:19 -05008098 /* The offsets in the sgl need to be accumulated
8099 * separately for the request and reply lists.
8100 * The request is always first, the reply follows.
8101 */
8102 if (piocbq->iocb.ulpCommand == CMD_GEN_REQUEST64_CR) {
8103 /* add up the reply sg entries */
8104 if (bpl->tus.f.bdeFlags == BUFF_TYPE_BDE_64I)
8105 inbound++;
8106 /* first inbound? reset the offset */
8107 if (inbound == 1)
8108 offset = 0;
8109 bf_set(lpfc_sli4_sge_offset, sgl, offset);
James Smartf9bb2da2011-10-10 21:34:11 -04008110 bf_set(lpfc_sli4_sge_type, sgl,
8111 LPFC_SGE_TYPE_DATA);
James Smart63e801c2010-11-20 23:14:19 -05008112 offset += bde.tus.f.bdeSize;
8113 }
James Smart546fc852011-03-11 16:06:29 -05008114 sgl->word2 = cpu_to_le32(sgl->word2);
James Smart4f774512009-05-22 14:52:35 -04008115 bpl++;
8116 sgl++;
8117 }
8118 } else if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BDE_64) {
8119 /* The addrHigh and addrLow fields of the BDE have not
8120 * been byteswapped yet so they need to be swapped
8121 * before putting them in the sgl.
8122 */
8123 sgl->addr_hi =
8124 cpu_to_le32(icmd->un.genreq64.bdl.addrHigh);
8125 sgl->addr_lo =
8126 cpu_to_le32(icmd->un.genreq64.bdl.addrLow);
James Smart05580562011-05-24 11:40:48 -04008127 sgl->word2 = le32_to_cpu(sgl->word2);
James Smart4f774512009-05-22 14:52:35 -04008128 bf_set(lpfc_sli4_sge_last, sgl, 1);
8129 sgl->word2 = cpu_to_le32(sgl->word2);
James Smart28baac72010-02-12 14:42:03 -05008130 sgl->sge_len =
8131 cpu_to_le32(icmd->un.genreq64.bdl.bdeSize);
James Smart4f774512009-05-22 14:52:35 -04008132 }
8133 return sglq->sli4_xritag;
8134}
8135
8136/**
8137 * lpfc_sli4_scmd_to_wqidx_distr - scsi command to SLI4 WQ index distribution
8138 * @phba: Pointer to HBA context object.
James Smart4f774512009-05-22 14:52:35 -04008139 *
James Smarta93ff372010-10-22 11:06:08 -04008140 * This routine performs a roundrobin SCSI command to SLI4 FCP WQ index
James Smart8fa38512009-07-19 10:01:03 -04008141 * distribution. This is called by __lpfc_sli_issue_iocb_s4() with the hbalock
8142 * held.
James Smart4f774512009-05-22 14:52:35 -04008143 *
8144 * Return: index into SLI4 fast-path FCP queue index.
8145 **/
James Smarta2fc4aef2014-09-03 12:57:55 -04008146static inline int
James Smart8fa38512009-07-19 10:01:03 -04008147lpfc_sli4_scmd_to_wqidx_distr(struct lpfc_hba *phba)
James Smart4f774512009-05-22 14:52:35 -04008148{
James Smart7bb03bb2013-04-17 20:19:16 -04008149 struct lpfc_vector_map_info *cpup;
8150 int chann, cpu;
James Smart4f774512009-05-22 14:52:35 -04008151
James Smart76f96b62013-12-17 20:29:01 -05008152 if (phba->cfg_fcp_io_sched == LPFC_FCP_SCHED_BY_CPU
8153 && phba->cfg_fcp_io_channel > 1) {
James Smart7bb03bb2013-04-17 20:19:16 -04008154 cpu = smp_processor_id();
8155 if (cpu < phba->sli4_hba.num_present_cpu) {
8156 cpup = phba->sli4_hba.cpu_map;
8157 cpup += cpu;
8158 return cpup->channel_id;
8159 }
James Smart7bb03bb2013-04-17 20:19:16 -04008160 }
8161 chann = atomic_add_return(1, &phba->fcp_qidx);
8162 chann = (chann % phba->cfg_fcp_io_channel);
8163 return chann;
James Smart4f774512009-05-22 14:52:35 -04008164}
8165
8166/**
8167 * lpfc_sli_iocb2wqe - Convert the IOCB to a work queue entry.
8168 * @phba: Pointer to HBA context object.
8169 * @piocb: Pointer to command iocb.
8170 * @wqe: Pointer to the work queue entry.
8171 *
8172 * This routine converts the iocb command to its Work Queue Entry
8173 * equivalent. The wqe pointer should not have any fields set when
8174 * this routine is called because it will memcpy over them.
8175 * This routine does not set the CQ_ID or the WQEC bits in the
8176 * wqe.
8177 *
8178 * Returns: 0 = Success, IOCB_ERROR = Failure.
8179 **/
8180static int
8181lpfc_sli4_iocb2wqe(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq,
8182 union lpfc_wqe *wqe)
8183{
James Smart5ffc2662009-11-18 15:39:44 -05008184 uint32_t xmit_len = 0, total_len = 0;
James Smart4f774512009-05-22 14:52:35 -04008185 uint8_t ct = 0;
8186 uint32_t fip;
8187 uint32_t abort_tag;
8188 uint8_t command_type = ELS_COMMAND_NON_FIP;
8189 uint8_t cmnd;
8190 uint16_t xritag;
James Smartdcf2a4e2010-09-29 11:18:53 -04008191 uint16_t abrt_iotag;
8192 struct lpfc_iocbq *abrtiocbq;
James Smart4f774512009-05-22 14:52:35 -04008193 struct ulp_bde64 *bpl = NULL;
James Smartf0d9bcc2010-10-22 11:07:09 -04008194 uint32_t els_id = LPFC_ELS_ID_DEFAULT;
James Smart5ffc2662009-11-18 15:39:44 -05008195 int numBdes, i;
8196 struct ulp_bde64 bde;
James Smartc31098c2011-04-16 11:03:33 -04008197 struct lpfc_nodelist *ndlp;
James Smartff78d8f2011-12-13 13:21:35 -05008198 uint32_t *pcmd;
James Smart1b511972011-12-13 13:23:09 -05008199 uint32_t if_type;
James Smart4f774512009-05-22 14:52:35 -04008200
James Smart45ed1192009-10-02 15:17:02 -04008201 fip = phba->hba_flag & HBA_FIP_SUPPORT;
James Smart4f774512009-05-22 14:52:35 -04008202 /* The fcp commands will set command type */
James Smart0c287582009-06-10 17:22:56 -04008203 if (iocbq->iocb_flag & LPFC_IO_FCP)
James Smart4f774512009-05-22 14:52:35 -04008204 command_type = FCP_COMMAND;
James Smartc8685952009-11-18 15:39:16 -05008205 else if (fip && (iocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK))
James Smart0c287582009-06-10 17:22:56 -04008206 command_type = ELS_COMMAND_FIP;
8207 else
8208 command_type = ELS_COMMAND_NON_FIP;
8209
James Smart4f774512009-05-22 14:52:35 -04008210 /* Some of the fields are in the right position already */
8211 memcpy(wqe, &iocbq->iocb, sizeof(union lpfc_wqe));
8212 abort_tag = (uint32_t) iocbq->iotag;
8213 xritag = iocbq->sli4_xritag;
James Smartf0d9bcc2010-10-22 11:07:09 -04008214 wqe->generic.wqe_com.word7 = 0; /* The ct field has moved so reset */
James Smart28d7f3d2014-05-21 08:05:28 -04008215 wqe->generic.wqe_com.word10 = 0;
James Smart4f774512009-05-22 14:52:35 -04008216 /* words0-2 bpl convert bde */
8217 if (iocbq->iocb.un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
James Smart5ffc2662009-11-18 15:39:44 -05008218 numBdes = iocbq->iocb.un.genreq64.bdl.bdeSize /
8219 sizeof(struct ulp_bde64);
James Smart4f774512009-05-22 14:52:35 -04008220 bpl = (struct ulp_bde64 *)
8221 ((struct lpfc_dmabuf *)iocbq->context3)->virt;
8222 if (!bpl)
8223 return IOCB_ERROR;
8224
8225 /* Should already be byte swapped. */
8226 wqe->generic.bde.addrHigh = le32_to_cpu(bpl->addrHigh);
8227 wqe->generic.bde.addrLow = le32_to_cpu(bpl->addrLow);
8228 /* swap the size field back to the cpu so we
8229 * can assign it to the sgl.
8230 */
8231 wqe->generic.bde.tus.w = le32_to_cpu(bpl->tus.w);
James Smart5ffc2662009-11-18 15:39:44 -05008232 xmit_len = wqe->generic.bde.tus.f.bdeSize;
8233 total_len = 0;
8234 for (i = 0; i < numBdes; i++) {
8235 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
8236 total_len += bde.tus.f.bdeSize;
8237 }
James Smart4f774512009-05-22 14:52:35 -04008238 } else
James Smart5ffc2662009-11-18 15:39:44 -05008239 xmit_len = iocbq->iocb.un.fcpi64.bdl.bdeSize;
James Smart4f774512009-05-22 14:52:35 -04008240
8241 iocbq->iocb.ulpIoTag = iocbq->iotag;
8242 cmnd = iocbq->iocb.ulpCommand;
8243
8244 switch (iocbq->iocb.ulpCommand) {
8245 case CMD_ELS_REQUEST64_CR:
James Smart93d1379e2012-05-09 21:19:34 -04008246 if (iocbq->iocb_flag & LPFC_IO_LIBDFC)
8247 ndlp = iocbq->context_un.ndlp;
8248 else
8249 ndlp = (struct lpfc_nodelist *)iocbq->context1;
James Smart4f774512009-05-22 14:52:35 -04008250 if (!iocbq->iocb.ulpLe) {
8251 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8252 "2007 Only Limited Edition cmd Format"
8253 " supported 0x%x\n",
8254 iocbq->iocb.ulpCommand);
8255 return IOCB_ERROR;
8256 }
James Smartff78d8f2011-12-13 13:21:35 -05008257
James Smart5ffc2662009-11-18 15:39:44 -05008258 wqe->els_req.payload_len = xmit_len;
James Smart4f774512009-05-22 14:52:35 -04008259 /* Els_reguest64 has a TMO */
8260 bf_set(wqe_tmo, &wqe->els_req.wqe_com,
8261 iocbq->iocb.ulpTimeout);
8262 /* Need a VF for word 4 set the vf bit*/
8263 bf_set(els_req64_vf, &wqe->els_req, 0);
8264 /* And a VFID for word 12 */
8265 bf_set(els_req64_vfid, &wqe->els_req, 0);
James Smart4f774512009-05-22 14:52:35 -04008266 ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
James Smartf0d9bcc2010-10-22 11:07:09 -04008267 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
8268 iocbq->iocb.ulpContext);
8269 bf_set(wqe_ct, &wqe->els_req.wqe_com, ct);
8270 bf_set(wqe_pu, &wqe->els_req.wqe_com, 0);
James Smart4f774512009-05-22 14:52:35 -04008271 /* CCP CCPE PV PRI in word10 were set in the memcpy */
James Smartff78d8f2011-12-13 13:21:35 -05008272 if (command_type == ELS_COMMAND_FIP)
James Smartc8685952009-11-18 15:39:16 -05008273 els_id = ((iocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK)
8274 >> LPFC_FIP_ELS_ID_SHIFT);
James Smartff78d8f2011-12-13 13:21:35 -05008275 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
8276 iocbq->context2)->virt);
James Smart1b511972011-12-13 13:23:09 -05008277 if_type = bf_get(lpfc_sli_intf_if_type,
8278 &phba->sli4_hba.sli_intf);
8279 if (if_type == LPFC_SLI_INTF_IF_TYPE_2) {
James Smartff78d8f2011-12-13 13:21:35 -05008280 if (pcmd && (*pcmd == ELS_CMD_FLOGI ||
James Smartcb69f7d2011-12-13 13:21:57 -05008281 *pcmd == ELS_CMD_SCR ||
James Smart6b5151f2012-01-18 16:24:06 -05008282 *pcmd == ELS_CMD_FDISC ||
James Smartbdcd2b92012-03-01 22:33:52 -05008283 *pcmd == ELS_CMD_LOGO ||
James Smartff78d8f2011-12-13 13:21:35 -05008284 *pcmd == ELS_CMD_PLOGI)) {
8285 bf_set(els_req64_sp, &wqe->els_req, 1);
8286 bf_set(els_req64_sid, &wqe->els_req,
8287 iocbq->vport->fc_myDID);
James Smart939723a2012-05-09 21:19:03 -04008288 if ((*pcmd == ELS_CMD_FLOGI) &&
8289 !(phba->fc_topology ==
8290 LPFC_TOPOLOGY_LOOP))
8291 bf_set(els_req64_sid, &wqe->els_req, 0);
James Smartff78d8f2011-12-13 13:21:35 -05008292 bf_set(wqe_ct, &wqe->els_req.wqe_com, 1);
8293 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
James Smarta7dd9c02012-05-09 21:16:50 -04008294 phba->vpi_ids[iocbq->vport->vpi]);
James Smart3ef6d242012-01-18 16:23:48 -05008295 } else if (pcmd && iocbq->context1) {
James Smartff78d8f2011-12-13 13:21:35 -05008296 bf_set(wqe_ct, &wqe->els_req.wqe_com, 0);
8297 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
8298 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
8299 }
James Smartc8685952009-11-18 15:39:16 -05008300 }
James Smart6d368e52011-05-24 11:44:12 -04008301 bf_set(wqe_temp_rpi, &wqe->els_req.wqe_com,
8302 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
James Smartf0d9bcc2010-10-22 11:07:09 -04008303 bf_set(wqe_els_id, &wqe->els_req.wqe_com, els_id);
8304 bf_set(wqe_dbde, &wqe->els_req.wqe_com, 1);
8305 bf_set(wqe_iod, &wqe->els_req.wqe_com, LPFC_WQE_IOD_READ);
8306 bf_set(wqe_qosd, &wqe->els_req.wqe_com, 1);
8307 bf_set(wqe_lenloc, &wqe->els_req.wqe_com, LPFC_WQE_LENLOC_NONE);
8308 bf_set(wqe_ebde_cnt, &wqe->els_req.wqe_com, 0);
James Smartaf227412013-10-10 12:23:10 -04008309 wqe->els_req.max_response_payload_len = total_len - xmit_len;
James Smart7851fe22011-07-22 18:36:52 -04008310 break;
James Smart5ffc2662009-11-18 15:39:44 -05008311 case CMD_XMIT_SEQUENCE64_CX:
James Smartf0d9bcc2010-10-22 11:07:09 -04008312 bf_set(wqe_ctxt_tag, &wqe->xmit_sequence.wqe_com,
8313 iocbq->iocb.un.ulpWord[3]);
8314 bf_set(wqe_rcvoxid, &wqe->xmit_sequence.wqe_com,
James Smart7851fe22011-07-22 18:36:52 -04008315 iocbq->iocb.unsli3.rcvsli3.ox_id);
James Smart5ffc2662009-11-18 15:39:44 -05008316 /* The entire sequence is transmitted for this IOCB */
8317 xmit_len = total_len;
8318 cmnd = CMD_XMIT_SEQUENCE64_CR;
James Smart1b511972011-12-13 13:23:09 -05008319 if (phba->link_flag & LS_LOOPBACK_MODE)
8320 bf_set(wqe_xo, &wqe->xmit_sequence.wge_ctl, 1);
James Smart4f774512009-05-22 14:52:35 -04008321 case CMD_XMIT_SEQUENCE64_CR:
James Smartf0d9bcc2010-10-22 11:07:09 -04008322 /* word3 iocb=io_tag32 wqe=reserved */
8323 wqe->xmit_sequence.rsvd3 = 0;
James Smart4f774512009-05-22 14:52:35 -04008324 /* word4 relative_offset memcpy */
8325 /* word5 r_ctl/df_ctl memcpy */
James Smartf0d9bcc2010-10-22 11:07:09 -04008326 bf_set(wqe_pu, &wqe->xmit_sequence.wqe_com, 0);
8327 bf_set(wqe_dbde, &wqe->xmit_sequence.wqe_com, 1);
8328 bf_set(wqe_iod, &wqe->xmit_sequence.wqe_com,
8329 LPFC_WQE_IOD_WRITE);
8330 bf_set(wqe_lenloc, &wqe->xmit_sequence.wqe_com,
8331 LPFC_WQE_LENLOC_WORD12);
8332 bf_set(wqe_ebde_cnt, &wqe->xmit_sequence.wqe_com, 0);
James Smart5ffc2662009-11-18 15:39:44 -05008333 wqe->xmit_sequence.xmit_len = xmit_len;
8334 command_type = OTHER_COMMAND;
James Smart7851fe22011-07-22 18:36:52 -04008335 break;
James Smart4f774512009-05-22 14:52:35 -04008336 case CMD_XMIT_BCAST64_CN:
James Smartf0d9bcc2010-10-22 11:07:09 -04008337 /* word3 iocb=iotag32 wqe=seq_payload_len */
8338 wqe->xmit_bcast64.seq_payload_len = xmit_len;
James Smart4f774512009-05-22 14:52:35 -04008339 /* word4 iocb=rsvd wqe=rsvd */
8340 /* word5 iocb=rctl/type/df_ctl wqe=rctl/type/df_ctl memcpy */
8341 /* word6 iocb=ctxt_tag/io_tag wqe=ctxt_tag/xri */
James Smartf0d9bcc2010-10-22 11:07:09 -04008342 bf_set(wqe_ct, &wqe->xmit_bcast64.wqe_com,
James Smart4f774512009-05-22 14:52:35 -04008343 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
James Smartf0d9bcc2010-10-22 11:07:09 -04008344 bf_set(wqe_dbde, &wqe->xmit_bcast64.wqe_com, 1);
8345 bf_set(wqe_iod, &wqe->xmit_bcast64.wqe_com, LPFC_WQE_IOD_WRITE);
8346 bf_set(wqe_lenloc, &wqe->xmit_bcast64.wqe_com,
8347 LPFC_WQE_LENLOC_WORD3);
8348 bf_set(wqe_ebde_cnt, &wqe->xmit_bcast64.wqe_com, 0);
James Smart7851fe22011-07-22 18:36:52 -04008349 break;
James Smart4f774512009-05-22 14:52:35 -04008350 case CMD_FCP_IWRITE64_CR:
8351 command_type = FCP_COMMAND_DATA_OUT;
James Smartf0d9bcc2010-10-22 11:07:09 -04008352 /* word3 iocb=iotag wqe=payload_offset_len */
8353 /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
James Smart0ba4b212013-10-10 12:22:38 -04008354 bf_set(payload_offset_len, &wqe->fcp_iwrite,
8355 xmit_len + sizeof(struct fcp_rsp));
8356 bf_set(cmd_buff_len, &wqe->fcp_iwrite,
8357 0);
James Smartf0d9bcc2010-10-22 11:07:09 -04008358 /* word4 iocb=parameter wqe=total_xfer_length memcpy */
8359 /* word5 iocb=initial_xfer_len wqe=initial_xfer_len memcpy */
8360 bf_set(wqe_erp, &wqe->fcp_iwrite.wqe_com,
8361 iocbq->iocb.ulpFCP2Rcvy);
8362 bf_set(wqe_lnk, &wqe->fcp_iwrite.wqe_com, iocbq->iocb.ulpXS);
8363 /* Always open the exchange */
8364 bf_set(wqe_xc, &wqe->fcp_iwrite.wqe_com, 0);
James Smartf0d9bcc2010-10-22 11:07:09 -04008365 bf_set(wqe_iod, &wqe->fcp_iwrite.wqe_com, LPFC_WQE_IOD_WRITE);
8366 bf_set(wqe_lenloc, &wqe->fcp_iwrite.wqe_com,
8367 LPFC_WQE_LENLOC_WORD4);
8368 bf_set(wqe_ebde_cnt, &wqe->fcp_iwrite.wqe_com, 0);
8369 bf_set(wqe_pu, &wqe->fcp_iwrite.wqe_com, iocbq->iocb.ulpPU);
James Smartacd68592012-01-18 16:25:09 -05008370 bf_set(wqe_dbde, &wqe->fcp_iwrite.wqe_com, 1);
James Smart1ba981f2014-02-20 09:56:45 -05008371 if (iocbq->iocb_flag & LPFC_IO_OAS) {
8372 bf_set(wqe_oas, &wqe->fcp_iwrite.wqe_com, 1);
8373 if (phba->cfg_XLanePriority) {
8374 bf_set(wqe_ccpe, &wqe->fcp_iwrite.wqe_com, 1);
8375 bf_set(wqe_ccp, &wqe->fcp_iwrite.wqe_com,
8376 (phba->cfg_XLanePriority << 1));
8377 }
8378 }
James Smart7851fe22011-07-22 18:36:52 -04008379 break;
James Smartf0d9bcc2010-10-22 11:07:09 -04008380 case CMD_FCP_IREAD64_CR:
8381 /* word3 iocb=iotag wqe=payload_offset_len */
8382 /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
James Smart0ba4b212013-10-10 12:22:38 -04008383 bf_set(payload_offset_len, &wqe->fcp_iread,
8384 xmit_len + sizeof(struct fcp_rsp));
8385 bf_set(cmd_buff_len, &wqe->fcp_iread,
8386 0);
James Smartf0d9bcc2010-10-22 11:07:09 -04008387 /* word4 iocb=parameter wqe=total_xfer_length memcpy */
8388 /* word5 iocb=initial_xfer_len wqe=initial_xfer_len memcpy */
8389 bf_set(wqe_erp, &wqe->fcp_iread.wqe_com,
8390 iocbq->iocb.ulpFCP2Rcvy);
8391 bf_set(wqe_lnk, &wqe->fcp_iread.wqe_com, iocbq->iocb.ulpXS);
James Smart4f774512009-05-22 14:52:35 -04008392 /* Always open the exchange */
8393 bf_set(wqe_xc, &wqe->fcp_iread.wqe_com, 0);
James Smartf0d9bcc2010-10-22 11:07:09 -04008394 bf_set(wqe_iod, &wqe->fcp_iread.wqe_com, LPFC_WQE_IOD_READ);
8395 bf_set(wqe_lenloc, &wqe->fcp_iread.wqe_com,
8396 LPFC_WQE_LENLOC_WORD4);
8397 bf_set(wqe_ebde_cnt, &wqe->fcp_iread.wqe_com, 0);
8398 bf_set(wqe_pu, &wqe->fcp_iread.wqe_com, iocbq->iocb.ulpPU);
James Smartacd68592012-01-18 16:25:09 -05008399 bf_set(wqe_dbde, &wqe->fcp_iread.wqe_com, 1);
James Smart1ba981f2014-02-20 09:56:45 -05008400 if (iocbq->iocb_flag & LPFC_IO_OAS) {
8401 bf_set(wqe_oas, &wqe->fcp_iread.wqe_com, 1);
8402 if (phba->cfg_XLanePriority) {
8403 bf_set(wqe_ccpe, &wqe->fcp_iread.wqe_com, 1);
8404 bf_set(wqe_ccp, &wqe->fcp_iread.wqe_com,
8405 (phba->cfg_XLanePriority << 1));
8406 }
8407 }
James Smart7851fe22011-07-22 18:36:52 -04008408 break;
James Smartf1126682009-06-10 17:22:44 -04008409 case CMD_FCP_ICMND64_CR:
James Smart0ba4b212013-10-10 12:22:38 -04008410 /* word3 iocb=iotag wqe=payload_offset_len */
8411 /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
8412 bf_set(payload_offset_len, &wqe->fcp_icmd,
8413 xmit_len + sizeof(struct fcp_rsp));
8414 bf_set(cmd_buff_len, &wqe->fcp_icmd,
8415 0);
James Smartf0d9bcc2010-10-22 11:07:09 -04008416 /* word3 iocb=IO_TAG wqe=reserved */
James Smartf0d9bcc2010-10-22 11:07:09 -04008417 bf_set(wqe_pu, &wqe->fcp_icmd.wqe_com, 0);
James Smartf1126682009-06-10 17:22:44 -04008418 /* Always open the exchange */
James Smartf0d9bcc2010-10-22 11:07:09 -04008419 bf_set(wqe_xc, &wqe->fcp_icmd.wqe_com, 0);
8420 bf_set(wqe_dbde, &wqe->fcp_icmd.wqe_com, 1);
8421 bf_set(wqe_iod, &wqe->fcp_icmd.wqe_com, LPFC_WQE_IOD_WRITE);
8422 bf_set(wqe_qosd, &wqe->fcp_icmd.wqe_com, 1);
8423 bf_set(wqe_lenloc, &wqe->fcp_icmd.wqe_com,
8424 LPFC_WQE_LENLOC_NONE);
8425 bf_set(wqe_ebde_cnt, &wqe->fcp_icmd.wqe_com, 0);
James Smart2a94aea2012-09-29 11:30:31 -04008426 bf_set(wqe_erp, &wqe->fcp_icmd.wqe_com,
8427 iocbq->iocb.ulpFCP2Rcvy);
James Smart1ba981f2014-02-20 09:56:45 -05008428 if (iocbq->iocb_flag & LPFC_IO_OAS) {
8429 bf_set(wqe_oas, &wqe->fcp_icmd.wqe_com, 1);
8430 if (phba->cfg_XLanePriority) {
8431 bf_set(wqe_ccpe, &wqe->fcp_icmd.wqe_com, 1);
8432 bf_set(wqe_ccp, &wqe->fcp_icmd.wqe_com,
8433 (phba->cfg_XLanePriority << 1));
8434 }
8435 }
James Smart7851fe22011-07-22 18:36:52 -04008436 break;
James Smart4f774512009-05-22 14:52:35 -04008437 case CMD_GEN_REQUEST64_CR:
James Smart63e801c2010-11-20 23:14:19 -05008438 /* For this command calculate the xmit length of the
8439 * request bde.
8440 */
8441 xmit_len = 0;
8442 numBdes = iocbq->iocb.un.genreq64.bdl.bdeSize /
8443 sizeof(struct ulp_bde64);
8444 for (i = 0; i < numBdes; i++) {
James Smart63e801c2010-11-20 23:14:19 -05008445 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
James Smart546fc852011-03-11 16:06:29 -05008446 if (bde.tus.f.bdeFlags != BUFF_TYPE_BDE_64)
8447 break;
James Smart63e801c2010-11-20 23:14:19 -05008448 xmit_len += bde.tus.f.bdeSize;
8449 }
James Smartf0d9bcc2010-10-22 11:07:09 -04008450 /* word3 iocb=IO_TAG wqe=request_payload_len */
8451 wqe->gen_req.request_payload_len = xmit_len;
8452 /* word4 iocb=parameter wqe=relative_offset memcpy */
8453 /* word5 [rctl, type, df_ctl, la] copied in memcpy */
James Smart4f774512009-05-22 14:52:35 -04008454 /* word6 context tag copied in memcpy */
8455 if (iocbq->iocb.ulpCt_h || iocbq->iocb.ulpCt_l) {
8456 ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
8457 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8458 "2015 Invalid CT %x command 0x%x\n",
8459 ct, iocbq->iocb.ulpCommand);
8460 return IOCB_ERROR;
8461 }
James Smartf0d9bcc2010-10-22 11:07:09 -04008462 bf_set(wqe_ct, &wqe->gen_req.wqe_com, 0);
8463 bf_set(wqe_tmo, &wqe->gen_req.wqe_com, iocbq->iocb.ulpTimeout);
8464 bf_set(wqe_pu, &wqe->gen_req.wqe_com, iocbq->iocb.ulpPU);
8465 bf_set(wqe_dbde, &wqe->gen_req.wqe_com, 1);
8466 bf_set(wqe_iod, &wqe->gen_req.wqe_com, LPFC_WQE_IOD_READ);
8467 bf_set(wqe_qosd, &wqe->gen_req.wqe_com, 1);
8468 bf_set(wqe_lenloc, &wqe->gen_req.wqe_com, LPFC_WQE_LENLOC_NONE);
8469 bf_set(wqe_ebde_cnt, &wqe->gen_req.wqe_com, 0);
James Smartaf227412013-10-10 12:23:10 -04008470 wqe->gen_req.max_response_payload_len = total_len - xmit_len;
James Smart4f774512009-05-22 14:52:35 -04008471 command_type = OTHER_COMMAND;
James Smart7851fe22011-07-22 18:36:52 -04008472 break;
James Smart4f774512009-05-22 14:52:35 -04008473 case CMD_XMIT_ELS_RSP64_CX:
James Smartc31098c2011-04-16 11:03:33 -04008474 ndlp = (struct lpfc_nodelist *)iocbq->context1;
James Smart4f774512009-05-22 14:52:35 -04008475 /* words0-2 BDE memcpy */
James Smartf0d9bcc2010-10-22 11:07:09 -04008476 /* word3 iocb=iotag32 wqe=response_payload_len */
8477 wqe->xmit_els_rsp.response_payload_len = xmit_len;
James Smart939723a2012-05-09 21:19:03 -04008478 /* word4 */
8479 wqe->xmit_els_rsp.word4 = 0;
James Smart4f774512009-05-22 14:52:35 -04008480 /* word5 iocb=rsvd wge=did */
8481 bf_set(wqe_els_did, &wqe->xmit_els_rsp.wqe_dest,
James Smart939723a2012-05-09 21:19:03 -04008482 iocbq->iocb.un.xseq64.xmit_els_remoteID);
8483
8484 if_type = bf_get(lpfc_sli_intf_if_type,
8485 &phba->sli4_hba.sli_intf);
8486 if (if_type == LPFC_SLI_INTF_IF_TYPE_2) {
8487 if (iocbq->vport->fc_flag & FC_PT2PT) {
8488 bf_set(els_rsp64_sp, &wqe->xmit_els_rsp, 1);
8489 bf_set(els_rsp64_sid, &wqe->xmit_els_rsp,
8490 iocbq->vport->fc_myDID);
8491 if (iocbq->vport->fc_myDID == Fabric_DID) {
8492 bf_set(wqe_els_did,
8493 &wqe->xmit_els_rsp.wqe_dest, 0);
8494 }
8495 }
8496 }
James Smartf0d9bcc2010-10-22 11:07:09 -04008497 bf_set(wqe_ct, &wqe->xmit_els_rsp.wqe_com,
8498 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
8499 bf_set(wqe_pu, &wqe->xmit_els_rsp.wqe_com, iocbq->iocb.ulpPU);
8500 bf_set(wqe_rcvoxid, &wqe->xmit_els_rsp.wqe_com,
James Smart7851fe22011-07-22 18:36:52 -04008501 iocbq->iocb.unsli3.rcvsli3.ox_id);
James Smart4f774512009-05-22 14:52:35 -04008502 if (!iocbq->iocb.ulpCt_h && iocbq->iocb.ulpCt_l)
James Smartf0d9bcc2010-10-22 11:07:09 -04008503 bf_set(wqe_ctxt_tag, &wqe->xmit_els_rsp.wqe_com,
James Smart6d368e52011-05-24 11:44:12 -04008504 phba->vpi_ids[iocbq->vport->vpi]);
James Smartf0d9bcc2010-10-22 11:07:09 -04008505 bf_set(wqe_dbde, &wqe->xmit_els_rsp.wqe_com, 1);
8506 bf_set(wqe_iod, &wqe->xmit_els_rsp.wqe_com, LPFC_WQE_IOD_WRITE);
8507 bf_set(wqe_qosd, &wqe->xmit_els_rsp.wqe_com, 1);
8508 bf_set(wqe_lenloc, &wqe->xmit_els_rsp.wqe_com,
8509 LPFC_WQE_LENLOC_WORD3);
8510 bf_set(wqe_ebde_cnt, &wqe->xmit_els_rsp.wqe_com, 0);
James Smart6d368e52011-05-24 11:44:12 -04008511 bf_set(wqe_rsp_temp_rpi, &wqe->xmit_els_rsp,
8512 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
James Smartff78d8f2011-12-13 13:21:35 -05008513 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
8514 iocbq->context2)->virt);
8515 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart939723a2012-05-09 21:19:03 -04008516 bf_set(els_rsp64_sp, &wqe->xmit_els_rsp, 1);
8517 bf_set(els_rsp64_sid, &wqe->xmit_els_rsp,
James Smartff78d8f2011-12-13 13:21:35 -05008518 iocbq->vport->fc_myDID);
James Smart939723a2012-05-09 21:19:03 -04008519 bf_set(wqe_ct, &wqe->xmit_els_rsp.wqe_com, 1);
8520 bf_set(wqe_ctxt_tag, &wqe->xmit_els_rsp.wqe_com,
James Smartff78d8f2011-12-13 13:21:35 -05008521 phba->vpi_ids[phba->pport->vpi]);
8522 }
James Smart4f774512009-05-22 14:52:35 -04008523 command_type = OTHER_COMMAND;
James Smart7851fe22011-07-22 18:36:52 -04008524 break;
James Smart4f774512009-05-22 14:52:35 -04008525 case CMD_CLOSE_XRI_CN:
8526 case CMD_ABORT_XRI_CN:
8527 case CMD_ABORT_XRI_CX:
8528 /* words 0-2 memcpy should be 0 rserved */
8529 /* port will send abts */
James Smartdcf2a4e2010-09-29 11:18:53 -04008530 abrt_iotag = iocbq->iocb.un.acxri.abortContextTag;
8531 if (abrt_iotag != 0 && abrt_iotag <= phba->sli.last_iotag) {
8532 abrtiocbq = phba->sli.iocbq_lookup[abrt_iotag];
8533 fip = abrtiocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK;
8534 } else
8535 fip = 0;
8536
8537 if ((iocbq->iocb.ulpCommand == CMD_CLOSE_XRI_CN) || fip)
James Smart4f774512009-05-22 14:52:35 -04008538 /*
James Smartdcf2a4e2010-09-29 11:18:53 -04008539 * The link is down, or the command was ELS_FIP
8540 * so the fw does not need to send abts
James Smart4f774512009-05-22 14:52:35 -04008541 * on the wire.
8542 */
8543 bf_set(abort_cmd_ia, &wqe->abort_cmd, 1);
8544 else
8545 bf_set(abort_cmd_ia, &wqe->abort_cmd, 0);
8546 bf_set(abort_cmd_criteria, &wqe->abort_cmd, T_XRI_TAG);
James Smartf0d9bcc2010-10-22 11:07:09 -04008547 /* word5 iocb=CONTEXT_TAG|IO_TAG wqe=reserved */
8548 wqe->abort_cmd.rsrvd5 = 0;
8549 bf_set(wqe_ct, &wqe->abort_cmd.wqe_com,
James Smart4f774512009-05-22 14:52:35 -04008550 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
8551 abort_tag = iocbq->iocb.un.acxri.abortIoTag;
James Smart4f774512009-05-22 14:52:35 -04008552 /*
8553 * The abort handler will send us CMD_ABORT_XRI_CN or
8554 * CMD_CLOSE_XRI_CN and the fw only accepts CMD_ABORT_XRI_CX
8555 */
James Smartf0d9bcc2010-10-22 11:07:09 -04008556 bf_set(wqe_cmnd, &wqe->abort_cmd.wqe_com, CMD_ABORT_XRI_CX);
8557 bf_set(wqe_qosd, &wqe->abort_cmd.wqe_com, 1);
8558 bf_set(wqe_lenloc, &wqe->abort_cmd.wqe_com,
8559 LPFC_WQE_LENLOC_NONE);
James Smart4f774512009-05-22 14:52:35 -04008560 cmnd = CMD_ABORT_XRI_CX;
8561 command_type = OTHER_COMMAND;
8562 xritag = 0;
James Smart7851fe22011-07-22 18:36:52 -04008563 break;
James Smart6669f9b2009-10-02 15:16:45 -04008564 case CMD_XMIT_BLS_RSP64_CX:
James Smart6b5151f2012-01-18 16:24:06 -05008565 ndlp = (struct lpfc_nodelist *)iocbq->context1;
James Smart546fc852011-03-11 16:06:29 -05008566 /* As BLS ABTS RSP WQE is very different from other WQEs,
James Smart6669f9b2009-10-02 15:16:45 -04008567 * we re-construct this WQE here based on information in
8568 * iocbq from scratch.
8569 */
8570 memset(wqe, 0, sizeof(union lpfc_wqe));
James Smart5ffc2662009-11-18 15:39:44 -05008571 /* OX_ID is invariable to who sent ABTS to CT exchange */
James Smart6669f9b2009-10-02 15:16:45 -04008572 bf_set(xmit_bls_rsp64_oxid, &wqe->xmit_bls_rsp,
James Smart546fc852011-03-11 16:06:29 -05008573 bf_get(lpfc_abts_oxid, &iocbq->iocb.un.bls_rsp));
8574 if (bf_get(lpfc_abts_orig, &iocbq->iocb.un.bls_rsp) ==
James Smart5ffc2662009-11-18 15:39:44 -05008575 LPFC_ABTS_UNSOL_INT) {
8576 /* ABTS sent by initiator to CT exchange, the
8577 * RX_ID field will be filled with the newly
8578 * allocated responder XRI.
8579 */
8580 bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
8581 iocbq->sli4_xritag);
8582 } else {
8583 /* ABTS sent by responder to CT exchange, the
8584 * RX_ID field will be filled with the responder
8585 * RX_ID from ABTS.
8586 */
8587 bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
James Smart546fc852011-03-11 16:06:29 -05008588 bf_get(lpfc_abts_rxid, &iocbq->iocb.un.bls_rsp));
James Smart5ffc2662009-11-18 15:39:44 -05008589 }
James Smart6669f9b2009-10-02 15:16:45 -04008590 bf_set(xmit_bls_rsp64_seqcnthi, &wqe->xmit_bls_rsp, 0xffff);
8591 bf_set(wqe_xmit_bls_pt, &wqe->xmit_bls_rsp.wqe_dest, 0x1);
James Smart6b5151f2012-01-18 16:24:06 -05008592
8593 /* Use CT=VPI */
8594 bf_set(wqe_els_did, &wqe->xmit_bls_rsp.wqe_dest,
8595 ndlp->nlp_DID);
8596 bf_set(xmit_bls_rsp64_temprpi, &wqe->xmit_bls_rsp,
8597 iocbq->iocb.ulpContext);
8598 bf_set(wqe_ct, &wqe->xmit_bls_rsp.wqe_com, 1);
James Smart6669f9b2009-10-02 15:16:45 -04008599 bf_set(wqe_ctxt_tag, &wqe->xmit_bls_rsp.wqe_com,
James Smart6b5151f2012-01-18 16:24:06 -05008600 phba->vpi_ids[phba->pport->vpi]);
James Smartf0d9bcc2010-10-22 11:07:09 -04008601 bf_set(wqe_qosd, &wqe->xmit_bls_rsp.wqe_com, 1);
8602 bf_set(wqe_lenloc, &wqe->xmit_bls_rsp.wqe_com,
8603 LPFC_WQE_LENLOC_NONE);
James Smart6669f9b2009-10-02 15:16:45 -04008604 /* Overwrite the pre-set comnd type with OTHER_COMMAND */
8605 command_type = OTHER_COMMAND;
James Smart546fc852011-03-11 16:06:29 -05008606 if (iocbq->iocb.un.xseq64.w5.hcsw.Rctl == FC_RCTL_BA_RJT) {
8607 bf_set(xmit_bls_rsp64_rjt_vspec, &wqe->xmit_bls_rsp,
8608 bf_get(lpfc_vndr_code, &iocbq->iocb.un.bls_rsp));
8609 bf_set(xmit_bls_rsp64_rjt_expc, &wqe->xmit_bls_rsp,
8610 bf_get(lpfc_rsn_expln, &iocbq->iocb.un.bls_rsp));
8611 bf_set(xmit_bls_rsp64_rjt_rsnc, &wqe->xmit_bls_rsp,
8612 bf_get(lpfc_rsn_code, &iocbq->iocb.un.bls_rsp));
8613 }
8614
James Smart7851fe22011-07-22 18:36:52 -04008615 break;
James Smart4f774512009-05-22 14:52:35 -04008616 case CMD_XRI_ABORTED_CX:
8617 case CMD_CREATE_XRI_CR: /* Do we expect to use this? */
James Smart4f774512009-05-22 14:52:35 -04008618 case CMD_IOCB_FCP_IBIDIR64_CR: /* bidirectional xfer */
8619 case CMD_FCP_TSEND64_CX: /* Target mode send xfer-ready */
8620 case CMD_FCP_TRSP64_CX: /* Target mode rcv */
8621 case CMD_FCP_AUTO_TRSP_CX: /* Auto target rsp */
8622 default:
8623 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8624 "2014 Invalid command 0x%x\n",
8625 iocbq->iocb.ulpCommand);
8626 return IOCB_ERROR;
James Smart7851fe22011-07-22 18:36:52 -04008627 break;
James Smart4f774512009-05-22 14:52:35 -04008628 }
James Smart6d368e52011-05-24 11:44:12 -04008629
James Smart8012cc32012-10-31 14:44:49 -04008630 if (iocbq->iocb_flag & LPFC_IO_DIF_PASS)
8631 bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_PASSTHRU);
8632 else if (iocbq->iocb_flag & LPFC_IO_DIF_STRIP)
8633 bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_STRIP);
8634 else if (iocbq->iocb_flag & LPFC_IO_DIF_INSERT)
8635 bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_INSERT);
8636 iocbq->iocb_flag &= ~(LPFC_IO_DIF_PASS | LPFC_IO_DIF_STRIP |
8637 LPFC_IO_DIF_INSERT);
James Smartf0d9bcc2010-10-22 11:07:09 -04008638 bf_set(wqe_xri_tag, &wqe->generic.wqe_com, xritag);
8639 bf_set(wqe_reqtag, &wqe->generic.wqe_com, iocbq->iotag);
8640 wqe->generic.wqe_com.abort_tag = abort_tag;
8641 bf_set(wqe_cmd_type, &wqe->generic.wqe_com, command_type);
8642 bf_set(wqe_cmnd, &wqe->generic.wqe_com, cmnd);
8643 bf_set(wqe_class, &wqe->generic.wqe_com, iocbq->iocb.ulpClass);
8644 bf_set(wqe_cqid, &wqe->generic.wqe_com, LPFC_WQE_CQ_ID_DEFAULT);
James Smart4f774512009-05-22 14:52:35 -04008645 return 0;
8646}
8647
8648/**
8649 * __lpfc_sli_issue_iocb_s4 - SLI4 device lockless ver of lpfc_sli_issue_iocb
8650 * @phba: Pointer to HBA context object.
8651 * @ring_number: SLI ring number to issue iocb on.
8652 * @piocb: Pointer to command iocb.
8653 * @flag: Flag indicating if this command can be put into txq.
8654 *
8655 * __lpfc_sli_issue_iocb_s4 is used by other functions in the driver to issue
8656 * an iocb command to an HBA with SLI-4 interface spec.
8657 *
8658 * This function is called with hbalock held. The function will return success
8659 * after it successfully submit the iocb to firmware or after adding to the
8660 * txq.
8661 **/
8662static int
8663__lpfc_sli_issue_iocb_s4(struct lpfc_hba *phba, uint32_t ring_number,
8664 struct lpfc_iocbq *piocb, uint32_t flag)
8665{
8666 struct lpfc_sglq *sglq;
James Smart4f774512009-05-22 14:52:35 -04008667 union lpfc_wqe wqe;
James Smart1ba981f2014-02-20 09:56:45 -05008668 struct lpfc_queue *wq;
James Smart4f774512009-05-22 14:52:35 -04008669 struct lpfc_sli_ring *pring = &phba->sli.ring[ring_number];
James Smart4f774512009-05-22 14:52:35 -04008670
8671 if (piocb->sli4_xritag == NO_XRI) {
8672 if (piocb->iocb.ulpCommand == CMD_ABORT_XRI_CN ||
James Smart6b5151f2012-01-18 16:24:06 -05008673 piocb->iocb.ulpCommand == CMD_CLOSE_XRI_CN)
James Smart4f774512009-05-22 14:52:35 -04008674 sglq = NULL;
8675 else {
James Smart0e9bb8d2013-03-01 16:35:12 -05008676 if (!list_empty(&pring->txq)) {
James Smart2a9bf3d2010-06-07 15:24:45 -04008677 if (!(flag & SLI_IOCB_RET_IOCB)) {
8678 __lpfc_sli_ringtx_put(phba,
8679 pring, piocb);
8680 return IOCB_SUCCESS;
8681 } else {
8682 return IOCB_BUSY;
8683 }
8684 } else {
James Smart6d368e52011-05-24 11:44:12 -04008685 sglq = __lpfc_sli_get_sglq(phba, piocb);
James Smart2a9bf3d2010-06-07 15:24:45 -04008686 if (!sglq) {
8687 if (!(flag & SLI_IOCB_RET_IOCB)) {
8688 __lpfc_sli_ringtx_put(phba,
8689 pring,
8690 piocb);
8691 return IOCB_SUCCESS;
8692 } else
8693 return IOCB_BUSY;
8694 }
8695 }
James Smart4f774512009-05-22 14:52:35 -04008696 }
8697 } else if (piocb->iocb_flag & LPFC_IO_FCP) {
James Smart6d368e52011-05-24 11:44:12 -04008698 /* These IO's already have an XRI and a mapped sgl. */
8699 sglq = NULL;
James Smart4f774512009-05-22 14:52:35 -04008700 } else {
James Smart6d368e52011-05-24 11:44:12 -04008701 /*
8702 * This is a continuation of a commandi,(CX) so this
James Smart4f774512009-05-22 14:52:35 -04008703 * sglq is on the active list
8704 */
James Smartedccdc12013-01-03 15:43:45 -05008705 sglq = __lpfc_get_active_sglq(phba, piocb->sli4_lxritag);
James Smart4f774512009-05-22 14:52:35 -04008706 if (!sglq)
8707 return IOCB_ERROR;
8708 }
8709
8710 if (sglq) {
James Smart6d368e52011-05-24 11:44:12 -04008711 piocb->sli4_lxritag = sglq->sli4_lxritag;
James Smart2a9bf3d2010-06-07 15:24:45 -04008712 piocb->sli4_xritag = sglq->sli4_xritag;
James Smart2a9bf3d2010-06-07 15:24:45 -04008713 if (NO_XRI == lpfc_sli4_bpl2sgl(phba, piocb, sglq))
James Smart4f774512009-05-22 14:52:35 -04008714 return IOCB_ERROR;
8715 }
8716
8717 if (lpfc_sli4_iocb2wqe(phba, piocb, &wqe))
8718 return IOCB_ERROR;
8719
James Smart341af102010-01-26 23:07:37 -05008720 if ((piocb->iocb_flag & LPFC_IO_FCP) ||
James Smart1ba981f2014-02-20 09:56:45 -05008721 (piocb->iocb_flag & LPFC_USE_FCPWQIDX)) {
James Smartf38fa0b2014-04-04 13:52:21 -04008722 if (!phba->cfg_fof || (!(piocb->iocb_flag & LPFC_IO_OAS))) {
James Smart1ba981f2014-02-20 09:56:45 -05008723 wq = phba->sli4_hba.fcp_wq[piocb->fcp_wqidx];
8724 } else {
8725 wq = phba->sli4_hba.oas_wq;
8726 }
8727 if (lpfc_sli4_wq_put(wq, &wqe))
James Smart4f774512009-05-22 14:52:35 -04008728 return IOCB_ERROR;
8729 } else {
James Smartea714f32013-04-17 20:18:47 -04008730 if (unlikely(!phba->sli4_hba.els_wq))
8731 return IOCB_ERROR;
James Smart4f774512009-05-22 14:52:35 -04008732 if (lpfc_sli4_wq_put(phba->sli4_hba.els_wq, &wqe))
8733 return IOCB_ERROR;
8734 }
8735 lpfc_sli_ringtxcmpl_put(phba, pring, piocb);
8736
8737 return 0;
8738}
8739
8740/**
James Smart3772a992009-05-22 14:50:54 -04008741 * __lpfc_sli_issue_iocb - Wrapper func of lockless version for issuing iocb
8742 *
8743 * This routine wraps the actual lockless version for issusing IOCB function
8744 * pointer from the lpfc_hba struct.
8745 *
8746 * Return codes:
8747 * IOCB_ERROR - Error
8748 * IOCB_SUCCESS - Success
8749 * IOCB_BUSY - Busy
8750 **/
James Smart2a9bf3d2010-06-07 15:24:45 -04008751int
James Smart3772a992009-05-22 14:50:54 -04008752__lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
8753 struct lpfc_iocbq *piocb, uint32_t flag)
8754{
8755 return phba->__lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
8756}
8757
8758/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03008759 * lpfc_sli_api_table_setup - Set up sli api function jump table
James Smart3772a992009-05-22 14:50:54 -04008760 * @phba: The hba struct for which this call is being executed.
8761 * @dev_grp: The HBA PCI-Device group number.
8762 *
8763 * This routine sets up the SLI interface API function jump table in @phba
8764 * struct.
8765 * Returns: 0 - success, -ENODEV - failure.
8766 **/
8767int
8768lpfc_sli_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
8769{
8770
8771 switch (dev_grp) {
8772 case LPFC_PCI_DEV_LP:
8773 phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s3;
8774 phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s3;
8775 break;
James Smart4f774512009-05-22 14:52:35 -04008776 case LPFC_PCI_DEV_OC:
8777 phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s4;
8778 phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s4;
8779 break;
James Smart3772a992009-05-22 14:50:54 -04008780 default:
8781 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8782 "1419 Invalid HBA PCI-device group: 0x%x\n",
8783 dev_grp);
8784 return -ENODEV;
8785 break;
8786 }
8787 phba->lpfc_get_iocb_from_iocbq = lpfc_get_iocb_from_iocbq;
8788 return 0;
8789}
James Smart92d7f7b2007-06-17 19:56:38 -05008790
James Smart9bd2bff52014-09-03 12:57:30 -04008791int
8792lpfc_sli_calc_ring(struct lpfc_hba *phba, uint32_t ring_number,
8793 struct lpfc_iocbq *piocb)
8794{
8795 uint32_t idx;
8796
8797 if (phba->sli_rev == LPFC_SLI_REV4) {
8798 if (piocb->iocb_flag & (LPFC_IO_FCP | LPFC_USE_FCPWQIDX)) {
8799 /*
8800 * fcp_wqidx should already be setup based on what
8801 * completion queue we want to use.
8802 */
8803 if (!(phba->cfg_fof) ||
8804 (!(piocb->iocb_flag & LPFC_IO_FOF))) {
8805 if (unlikely(!phba->sli4_hba.fcp_wq))
8806 return LPFC_HBA_ERROR;
8807 idx = lpfc_sli4_scmd_to_wqidx_distr(phba);
8808 piocb->fcp_wqidx = idx;
8809 ring_number = MAX_SLI3_CONFIGURED_RINGS + idx;
8810 } else {
8811 if (unlikely(!phba->sli4_hba.oas_wq))
8812 return LPFC_HBA_ERROR;
8813 idx = 0;
8814 piocb->fcp_wqidx = idx;
8815 ring_number = LPFC_FCP_OAS_RING;
8816 }
8817 }
8818 }
8819 return ring_number;
8820}
8821
James Smarte59058c2008-08-24 21:49:00 -04008822/**
James Smart3621a712009-04-06 18:47:14 -04008823 * lpfc_sli_issue_iocb - Wrapper function for __lpfc_sli_issue_iocb
James Smarte59058c2008-08-24 21:49:00 -04008824 * @phba: Pointer to HBA context object.
8825 * @pring: Pointer to driver SLI ring object.
8826 * @piocb: Pointer to command iocb.
8827 * @flag: Flag indicating if this command can be put into txq.
8828 *
8829 * lpfc_sli_issue_iocb is a wrapper around __lpfc_sli_issue_iocb
8830 * function. This function gets the hbalock and calls
8831 * __lpfc_sli_issue_iocb function and will return the error returned
8832 * by __lpfc_sli_issue_iocb function. This wrapper is used by
8833 * functions which do not hold hbalock.
8834 **/
James Smart92d7f7b2007-06-17 19:56:38 -05008835int
James Smart3772a992009-05-22 14:50:54 -04008836lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
James Smart92d7f7b2007-06-17 19:56:38 -05008837 struct lpfc_iocbq *piocb, uint32_t flag)
8838{
James Smartba20c852012-08-03 12:36:52 -04008839 struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
James Smart2a76a282012-08-03 12:35:54 -04008840 struct lpfc_sli_ring *pring;
James Smartba20c852012-08-03 12:36:52 -04008841 struct lpfc_queue *fpeq;
8842 struct lpfc_eqe *eqe;
James Smart92d7f7b2007-06-17 19:56:38 -05008843 unsigned long iflags;
James Smart2a76a282012-08-03 12:35:54 -04008844 int rc, idx;
James Smart92d7f7b2007-06-17 19:56:38 -05008845
James Smart7e56aa22012-08-03 12:35:34 -04008846 if (phba->sli_rev == LPFC_SLI_REV4) {
James Smart9bd2bff52014-09-03 12:57:30 -04008847 ring_number = lpfc_sli_calc_ring(phba, ring_number, piocb);
8848 if (unlikely(ring_number == LPFC_HBA_ERROR))
8849 return IOCB_ERROR;
8850 idx = piocb->fcp_wqidx;
James Smartba20c852012-08-03 12:36:52 -04008851
James Smart9bd2bff52014-09-03 12:57:30 -04008852 pring = &phba->sli.ring[ring_number];
8853 spin_lock_irqsave(&pring->ring_lock, iflags);
8854 rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
8855 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smartba20c852012-08-03 12:36:52 -04008856
James Smart9bd2bff52014-09-03 12:57:30 -04008857 if (lpfc_fcp_look_ahead && (piocb->iocb_flag & LPFC_IO_FCP)) {
8858 fcp_eq_hdl = &phba->sli4_hba.fcp_eq_hdl[idx];
James Smartba20c852012-08-03 12:36:52 -04008859
James Smart9bd2bff52014-09-03 12:57:30 -04008860 if (atomic_dec_and_test(&fcp_eq_hdl->
8861 fcp_eq_in_use)) {
James Smartba20c852012-08-03 12:36:52 -04008862
James Smart9bd2bff52014-09-03 12:57:30 -04008863 /* Get associated EQ with this index */
8864 fpeq = phba->sli4_hba.hba_eq[idx];
James Smartba20c852012-08-03 12:36:52 -04008865
James Smart9bd2bff52014-09-03 12:57:30 -04008866 /* Turn off interrupts from this EQ */
8867 lpfc_sli4_eq_clr_intr(fpeq);
James Smartba20c852012-08-03 12:36:52 -04008868
James Smart9bd2bff52014-09-03 12:57:30 -04008869 /*
8870 * Process all the events on FCP EQ
8871 */
8872 while ((eqe = lpfc_sli4_eq_get(fpeq))) {
8873 lpfc_sli4_hba_handle_eqe(phba,
8874 eqe, idx);
8875 fpeq->EQ_processed++;
James Smartba20c852012-08-03 12:36:52 -04008876 }
James Smartba20c852012-08-03 12:36:52 -04008877
James Smart9bd2bff52014-09-03 12:57:30 -04008878 /* Always clear and re-arm the EQ */
8879 lpfc_sli4_eq_release(fpeq,
8880 LPFC_QUEUE_REARM);
8881 }
8882 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
James Smart2a76a282012-08-03 12:35:54 -04008883 }
James Smart7e56aa22012-08-03 12:35:34 -04008884 } else {
8885 /* For now, SLI2/3 will still use hbalock */
8886 spin_lock_irqsave(&phba->hbalock, iflags);
8887 rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
8888 spin_unlock_irqrestore(&phba->hbalock, iflags);
8889 }
James Smart92d7f7b2007-06-17 19:56:38 -05008890 return rc;
8891}
8892
James Smarte59058c2008-08-24 21:49:00 -04008893/**
James Smart3621a712009-04-06 18:47:14 -04008894 * lpfc_extra_ring_setup - Extra ring setup function
James Smarte59058c2008-08-24 21:49:00 -04008895 * @phba: Pointer to HBA context object.
8896 *
8897 * This function is called while driver attaches with the
8898 * HBA to setup the extra ring. The extra ring is used
8899 * only when driver needs to support target mode functionality
8900 * or IP over FC functionalities.
8901 *
8902 * This function is called with no lock held.
8903 **/
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008904static int
8905lpfc_extra_ring_setup( struct lpfc_hba *phba)
8906{
8907 struct lpfc_sli *psli;
8908 struct lpfc_sli_ring *pring;
8909
8910 psli = &phba->sli;
8911
8912 /* Adjust cmd/rsp ring iocb entries more evenly */
James Smarta4bc3372006-12-02 13:34:16 -05008913
8914 /* Take some away from the FCP ring */
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008915 pring = &psli->ring[psli->fcp_ring];
James Smart7e56aa22012-08-03 12:35:34 -04008916 pring->sli.sli3.numCiocb -= SLI2_IOCB_CMD_R1XTRA_ENTRIES;
8917 pring->sli.sli3.numRiocb -= SLI2_IOCB_RSP_R1XTRA_ENTRIES;
8918 pring->sli.sli3.numCiocb -= SLI2_IOCB_CMD_R3XTRA_ENTRIES;
8919 pring->sli.sli3.numRiocb -= SLI2_IOCB_RSP_R3XTRA_ENTRIES;
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008920
James Smarta4bc3372006-12-02 13:34:16 -05008921 /* and give them to the extra ring */
8922 pring = &psli->ring[psli->extra_ring];
8923
James Smart7e56aa22012-08-03 12:35:34 -04008924 pring->sli.sli3.numCiocb += SLI2_IOCB_CMD_R1XTRA_ENTRIES;
8925 pring->sli.sli3.numRiocb += SLI2_IOCB_RSP_R1XTRA_ENTRIES;
8926 pring->sli.sli3.numCiocb += SLI2_IOCB_CMD_R3XTRA_ENTRIES;
8927 pring->sli.sli3.numRiocb += SLI2_IOCB_RSP_R3XTRA_ENTRIES;
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008928
8929 /* Setup default profile for this ring */
8930 pring->iotag_max = 4096;
8931 pring->num_mask = 1;
8932 pring->prt[0].profile = 0; /* Mask 0 */
James Smarta4bc3372006-12-02 13:34:16 -05008933 pring->prt[0].rctl = phba->cfg_multi_ring_rctl;
8934 pring->prt[0].type = phba->cfg_multi_ring_type;
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008935 pring->prt[0].lpfc_sli_rcv_unsol_event = NULL;
8936 return 0;
8937}
8938
James Smartcb69f7d2011-12-13 13:21:57 -05008939/* lpfc_sli_abts_err_handler - handle a failed ABTS request from an SLI3 port.
8940 * @phba: Pointer to HBA context object.
8941 * @iocbq: Pointer to iocb object.
8942 *
8943 * The async_event handler calls this routine when it receives
8944 * an ASYNC_STATUS_CN event from the port. The port generates
8945 * this event when an Abort Sequence request to an rport fails
8946 * twice in succession. The abort could be originated by the
8947 * driver or by the port. The ABTS could have been for an ELS
8948 * or FCP IO. The port only generates this event when an ABTS
8949 * fails to complete after one retry.
8950 */
8951static void
8952lpfc_sli_abts_err_handler(struct lpfc_hba *phba,
8953 struct lpfc_iocbq *iocbq)
8954{
8955 struct lpfc_nodelist *ndlp = NULL;
8956 uint16_t rpi = 0, vpi = 0;
8957 struct lpfc_vport *vport = NULL;
8958
8959 /* The rpi in the ulpContext is vport-sensitive. */
8960 vpi = iocbq->iocb.un.asyncstat.sub_ctxt_tag;
8961 rpi = iocbq->iocb.ulpContext;
8962
8963 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
8964 "3092 Port generated ABTS async event "
8965 "on vpi %d rpi %d status 0x%x\n",
8966 vpi, rpi, iocbq->iocb.ulpStatus);
8967
8968 vport = lpfc_find_vport_by_vpid(phba, vpi);
8969 if (!vport)
8970 goto err_exit;
8971 ndlp = lpfc_findnode_rpi(vport, rpi);
8972 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
8973 goto err_exit;
8974
8975 if (iocbq->iocb.ulpStatus == IOSTAT_LOCAL_REJECT)
8976 lpfc_sli_abts_recover_port(vport, ndlp);
8977 return;
8978
8979 err_exit:
8980 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
8981 "3095 Event Context not found, no "
8982 "action on vpi %d rpi %d status 0x%x, reason 0x%x\n",
8983 iocbq->iocb.ulpContext, iocbq->iocb.ulpStatus,
8984 vpi, rpi);
8985}
8986
8987/* lpfc_sli4_abts_err_handler - handle a failed ABTS request from an SLI4 port.
8988 * @phba: pointer to HBA context object.
8989 * @ndlp: nodelist pointer for the impacted rport.
8990 * @axri: pointer to the wcqe containing the failed exchange.
8991 *
8992 * The driver calls this routine when it receives an ABORT_XRI_FCP CQE from the
8993 * port. The port generates this event when an abort exchange request to an
8994 * rport fails twice in succession with no reply. The abort could be originated
8995 * by the driver or by the port. The ABTS could have been for an ELS or FCP IO.
8996 */
8997void
8998lpfc_sli4_abts_err_handler(struct lpfc_hba *phba,
8999 struct lpfc_nodelist *ndlp,
9000 struct sli4_wcqe_xri_aborted *axri)
9001{
9002 struct lpfc_vport *vport;
James Smart5c1db2a2012-03-01 22:34:36 -05009003 uint32_t ext_status = 0;
James Smartcb69f7d2011-12-13 13:21:57 -05009004
James Smart6b5151f2012-01-18 16:24:06 -05009005 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
James Smartcb69f7d2011-12-13 13:21:57 -05009006 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
9007 "3115 Node Context not found, driver "
9008 "ignoring abts err event\n");
James Smart6b5151f2012-01-18 16:24:06 -05009009 return;
9010 }
9011
James Smartcb69f7d2011-12-13 13:21:57 -05009012 vport = ndlp->vport;
9013 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
9014 "3116 Port generated FCP XRI ABORT event on "
James Smart5c1db2a2012-03-01 22:34:36 -05009015 "vpi %d rpi %d xri x%x status 0x%x parameter x%x\n",
James Smart8e668af2013-05-31 17:04:28 -04009016 ndlp->vport->vpi, phba->sli4_hba.rpi_ids[ndlp->nlp_rpi],
James Smartcb69f7d2011-12-13 13:21:57 -05009017 bf_get(lpfc_wcqe_xa_xri, axri),
James Smart5c1db2a2012-03-01 22:34:36 -05009018 bf_get(lpfc_wcqe_xa_status, axri),
9019 axri->parameter);
James Smartcb69f7d2011-12-13 13:21:57 -05009020
James Smart5c1db2a2012-03-01 22:34:36 -05009021 /*
9022 * Catch the ABTS protocol failure case. Older OCe FW releases returned
9023 * LOCAL_REJECT and 0 for a failed ABTS exchange and later OCe and
9024 * LPe FW releases returned LOCAL_REJECT and SEQUENCE_TIMEOUT.
9025 */
James Smarte3d2b802012-08-14 14:25:43 -04009026 ext_status = axri->parameter & IOERR_PARAM_MASK;
James Smart5c1db2a2012-03-01 22:34:36 -05009027 if ((bf_get(lpfc_wcqe_xa_status, axri) == IOSTAT_LOCAL_REJECT) &&
9028 ((ext_status == IOERR_SEQUENCE_TIMEOUT) || (ext_status == 0)))
James Smartcb69f7d2011-12-13 13:21:57 -05009029 lpfc_sli_abts_recover_port(vport, ndlp);
9030}
9031
James Smarte59058c2008-08-24 21:49:00 -04009032/**
James Smart3621a712009-04-06 18:47:14 -04009033 * lpfc_sli_async_event_handler - ASYNC iocb handler function
James Smarte59058c2008-08-24 21:49:00 -04009034 * @phba: Pointer to HBA context object.
9035 * @pring: Pointer to driver SLI ring object.
9036 * @iocbq: Pointer to iocb object.
9037 *
9038 * This function is called by the slow ring event handler
9039 * function when there is an ASYNC event iocb in the ring.
9040 * This function is called with no lock held.
9041 * Currently this function handles only temperature related
9042 * ASYNC events. The function decodes the temperature sensor
9043 * event message and posts events for the management applications.
9044 **/
James Smart98c9ea52007-10-27 13:37:33 -04009045static void
James Smart57127f12007-10-27 13:37:05 -04009046lpfc_sli_async_event_handler(struct lpfc_hba * phba,
9047 struct lpfc_sli_ring * pring, struct lpfc_iocbq * iocbq)
9048{
9049 IOCB_t *icmd;
9050 uint16_t evt_code;
James Smart57127f12007-10-27 13:37:05 -04009051 struct temp_event temp_event_data;
9052 struct Scsi_Host *shost;
James Smarta257bf92009-04-06 18:48:10 -04009053 uint32_t *iocb_w;
James Smart57127f12007-10-27 13:37:05 -04009054
9055 icmd = &iocbq->iocb;
9056 evt_code = icmd->un.asyncstat.evt_code;
James Smart57127f12007-10-27 13:37:05 -04009057
James Smartcb69f7d2011-12-13 13:21:57 -05009058 switch (evt_code) {
9059 case ASYNC_TEMP_WARN:
9060 case ASYNC_TEMP_SAFE:
9061 temp_event_data.data = (uint32_t) icmd->ulpContext;
9062 temp_event_data.event_type = FC_REG_TEMPERATURE_EVENT;
9063 if (evt_code == ASYNC_TEMP_WARN) {
9064 temp_event_data.event_code = LPFC_THRESHOLD_TEMP;
9065 lpfc_printf_log(phba, KERN_ERR, LOG_TEMP,
9066 "0347 Adapter is very hot, please take "
9067 "corrective action. temperature : %d Celsius\n",
9068 (uint32_t) icmd->ulpContext);
9069 } else {
9070 temp_event_data.event_code = LPFC_NORMAL_TEMP;
9071 lpfc_printf_log(phba, KERN_ERR, LOG_TEMP,
9072 "0340 Adapter temperature is OK now. "
9073 "temperature : %d Celsius\n",
9074 (uint32_t) icmd->ulpContext);
9075 }
9076
9077 /* Send temperature change event to applications */
9078 shost = lpfc_shost_from_vport(phba->pport);
9079 fc_host_post_vendor_event(shost, fc_get_event_number(),
9080 sizeof(temp_event_data), (char *) &temp_event_data,
9081 LPFC_NL_VENDOR_ID);
9082 break;
9083 case ASYNC_STATUS_CN:
9084 lpfc_sli_abts_err_handler(phba, iocbq);
9085 break;
9086 default:
James Smarta257bf92009-04-06 18:48:10 -04009087 iocb_w = (uint32_t *) icmd;
James Smartcb69f7d2011-12-13 13:21:57 -05009088 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart76bb24e2007-10-27 13:38:00 -04009089 "0346 Ring %d handler: unexpected ASYNC_STATUS"
James Smarte4e74272009-07-19 10:01:38 -04009090 " evt_code 0x%x\n"
James Smarta257bf92009-04-06 18:48:10 -04009091 "W0 0x%08x W1 0x%08x W2 0x%08x W3 0x%08x\n"
9092 "W4 0x%08x W5 0x%08x W6 0x%08x W7 0x%08x\n"
9093 "W8 0x%08x W9 0x%08x W10 0x%08x W11 0x%08x\n"
9094 "W12 0x%08x W13 0x%08x W14 0x%08x W15 0x%08x\n",
James Smartcb69f7d2011-12-13 13:21:57 -05009095 pring->ringno, icmd->un.asyncstat.evt_code,
James Smarta257bf92009-04-06 18:48:10 -04009096 iocb_w[0], iocb_w[1], iocb_w[2], iocb_w[3],
9097 iocb_w[4], iocb_w[5], iocb_w[6], iocb_w[7],
9098 iocb_w[8], iocb_w[9], iocb_w[10], iocb_w[11],
9099 iocb_w[12], iocb_w[13], iocb_w[14], iocb_w[15]);
9100
James Smartcb69f7d2011-12-13 13:21:57 -05009101 break;
James Smart57127f12007-10-27 13:37:05 -04009102 }
James Smart57127f12007-10-27 13:37:05 -04009103}
9104
9105
James Smarte59058c2008-08-24 21:49:00 -04009106/**
James Smart3621a712009-04-06 18:47:14 -04009107 * lpfc_sli_setup - SLI ring setup function
James Smarte59058c2008-08-24 21:49:00 -04009108 * @phba: Pointer to HBA context object.
9109 *
9110 * lpfc_sli_setup sets up rings of the SLI interface with
9111 * number of iocbs per ring and iotags. This function is
9112 * called while driver attach to the HBA and before the
9113 * interrupts are enabled. So there is no need for locking.
9114 *
9115 * This function always returns 0.
9116 **/
dea31012005-04-17 16:05:31 -05009117int
9118lpfc_sli_setup(struct lpfc_hba *phba)
9119{
James Smarted957682007-06-17 19:56:37 -05009120 int i, totiocbsize = 0;
dea31012005-04-17 16:05:31 -05009121 struct lpfc_sli *psli = &phba->sli;
9122 struct lpfc_sli_ring *pring;
9123
James Smart2a76a282012-08-03 12:35:54 -04009124 psli->num_rings = MAX_SLI3_CONFIGURED_RINGS;
9125 if (phba->sli_rev == LPFC_SLI_REV4)
James Smart67d12732012-08-03 12:36:13 -04009126 psli->num_rings += phba->cfg_fcp_io_channel;
dea31012005-04-17 16:05:31 -05009127 psli->sli_flag = 0;
9128 psli->fcp_ring = LPFC_FCP_RING;
9129 psli->next_ring = LPFC_FCP_NEXT_RING;
James Smarta4bc3372006-12-02 13:34:16 -05009130 psli->extra_ring = LPFC_EXTRA_RING;
dea31012005-04-17 16:05:31 -05009131
James Bottomley604a3e32005-10-29 10:28:33 -05009132 psli->iocbq_lookup = NULL;
9133 psli->iocbq_lookup_len = 0;
9134 psli->last_iotag = 0;
9135
dea31012005-04-17 16:05:31 -05009136 for (i = 0; i < psli->num_rings; i++) {
9137 pring = &psli->ring[i];
9138 switch (i) {
9139 case LPFC_FCP_RING: /* ring 0 - FCP */
9140 /* numCiocb and numRiocb are used in config_port */
James Smart7e56aa22012-08-03 12:35:34 -04009141 pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R0_ENTRIES;
9142 pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R0_ENTRIES;
9143 pring->sli.sli3.numCiocb +=
9144 SLI2_IOCB_CMD_R1XTRA_ENTRIES;
9145 pring->sli.sli3.numRiocb +=
9146 SLI2_IOCB_RSP_R1XTRA_ENTRIES;
9147 pring->sli.sli3.numCiocb +=
9148 SLI2_IOCB_CMD_R3XTRA_ENTRIES;
9149 pring->sli.sli3.numRiocb +=
9150 SLI2_IOCB_RSP_R3XTRA_ENTRIES;
9151 pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05009152 SLI3_IOCB_CMD_SIZE :
9153 SLI2_IOCB_CMD_SIZE;
James Smart7e56aa22012-08-03 12:35:34 -04009154 pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05009155 SLI3_IOCB_RSP_SIZE :
9156 SLI2_IOCB_RSP_SIZE;
dea31012005-04-17 16:05:31 -05009157 pring->iotag_ctr = 0;
9158 pring->iotag_max =
James Smart92d7f7b2007-06-17 19:56:38 -05009159 (phba->cfg_hba_queue_depth * 2);
dea31012005-04-17 16:05:31 -05009160 pring->fast_iotag = pring->iotag_max;
9161 pring->num_mask = 0;
9162 break;
James Smarta4bc3372006-12-02 13:34:16 -05009163 case LPFC_EXTRA_RING: /* ring 1 - EXTRA */
dea31012005-04-17 16:05:31 -05009164 /* numCiocb and numRiocb are used in config_port */
James Smart7e56aa22012-08-03 12:35:34 -04009165 pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R1_ENTRIES;
9166 pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R1_ENTRIES;
9167 pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05009168 SLI3_IOCB_CMD_SIZE :
9169 SLI2_IOCB_CMD_SIZE;
James Smart7e56aa22012-08-03 12:35:34 -04009170 pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05009171 SLI3_IOCB_RSP_SIZE :
9172 SLI2_IOCB_RSP_SIZE;
James Smart2e0fef82007-06-17 19:56:36 -05009173 pring->iotag_max = phba->cfg_hba_queue_depth;
dea31012005-04-17 16:05:31 -05009174 pring->num_mask = 0;
9175 break;
9176 case LPFC_ELS_RING: /* ring 2 - ELS / CT */
9177 /* numCiocb and numRiocb are used in config_port */
James Smart7e56aa22012-08-03 12:35:34 -04009178 pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R2_ENTRIES;
9179 pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R2_ENTRIES;
9180 pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05009181 SLI3_IOCB_CMD_SIZE :
9182 SLI2_IOCB_CMD_SIZE;
James Smart7e56aa22012-08-03 12:35:34 -04009183 pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05009184 SLI3_IOCB_RSP_SIZE :
9185 SLI2_IOCB_RSP_SIZE;
dea31012005-04-17 16:05:31 -05009186 pring->fast_iotag = 0;
9187 pring->iotag_ctr = 0;
9188 pring->iotag_max = 4096;
James Smart57127f12007-10-27 13:37:05 -04009189 pring->lpfc_sli_rcv_async_status =
9190 lpfc_sli_async_event_handler;
James Smart6669f9b2009-10-02 15:16:45 -04009191 pring->num_mask = LPFC_MAX_RING_MASK;
dea31012005-04-17 16:05:31 -05009192 pring->prt[0].profile = 0; /* Mask 0 */
James Smart6a9c52c2009-10-02 15:16:51 -04009193 pring->prt[0].rctl = FC_RCTL_ELS_REQ;
9194 pring->prt[0].type = FC_TYPE_ELS;
dea31012005-04-17 16:05:31 -05009195 pring->prt[0].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -05009196 lpfc_els_unsol_event;
dea31012005-04-17 16:05:31 -05009197 pring->prt[1].profile = 0; /* Mask 1 */
James Smart6a9c52c2009-10-02 15:16:51 -04009198 pring->prt[1].rctl = FC_RCTL_ELS_REP;
9199 pring->prt[1].type = FC_TYPE_ELS;
dea31012005-04-17 16:05:31 -05009200 pring->prt[1].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -05009201 lpfc_els_unsol_event;
dea31012005-04-17 16:05:31 -05009202 pring->prt[2].profile = 0; /* Mask 2 */
9203 /* NameServer Inquiry */
James Smart6a9c52c2009-10-02 15:16:51 -04009204 pring->prt[2].rctl = FC_RCTL_DD_UNSOL_CTL;
dea31012005-04-17 16:05:31 -05009205 /* NameServer */
James Smart6a9c52c2009-10-02 15:16:51 -04009206 pring->prt[2].type = FC_TYPE_CT;
dea31012005-04-17 16:05:31 -05009207 pring->prt[2].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -05009208 lpfc_ct_unsol_event;
dea31012005-04-17 16:05:31 -05009209 pring->prt[3].profile = 0; /* Mask 3 */
9210 /* NameServer response */
James Smart6a9c52c2009-10-02 15:16:51 -04009211 pring->prt[3].rctl = FC_RCTL_DD_SOL_CTL;
dea31012005-04-17 16:05:31 -05009212 /* NameServer */
James Smart6a9c52c2009-10-02 15:16:51 -04009213 pring->prt[3].type = FC_TYPE_CT;
dea31012005-04-17 16:05:31 -05009214 pring->prt[3].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -05009215 lpfc_ct_unsol_event;
dea31012005-04-17 16:05:31 -05009216 break;
9217 }
James Smart7e56aa22012-08-03 12:35:34 -04009218 totiocbsize += (pring->sli.sli3.numCiocb *
9219 pring->sli.sli3.sizeCiocb) +
9220 (pring->sli.sli3.numRiocb * pring->sli.sli3.sizeRiocb);
dea31012005-04-17 16:05:31 -05009221 }
James Smarted957682007-06-17 19:56:37 -05009222 if (totiocbsize > MAX_SLIM_IOCB_SIZE) {
dea31012005-04-17 16:05:31 -05009223 /* Too many cmd / rsp ring entries in SLI2 SLIM */
James Smarte8b62012007-08-02 11:10:09 -04009224 printk(KERN_ERR "%d:0462 Too many cmd / rsp ring entries in "
9225 "SLI2 SLIM Data: x%x x%lx\n",
9226 phba->brd_no, totiocbsize,
9227 (unsigned long) MAX_SLIM_IOCB_SIZE);
dea31012005-04-17 16:05:31 -05009228 }
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05009229 if (phba->cfg_multi_ring_support == 2)
9230 lpfc_extra_ring_setup(phba);
dea31012005-04-17 16:05:31 -05009231
9232 return 0;
9233}
9234
James Smarte59058c2008-08-24 21:49:00 -04009235/**
James Smart3621a712009-04-06 18:47:14 -04009236 * lpfc_sli_queue_setup - Queue initialization function
James Smarte59058c2008-08-24 21:49:00 -04009237 * @phba: Pointer to HBA context object.
9238 *
9239 * lpfc_sli_queue_setup sets up mailbox queues and iocb queues for each
9240 * ring. This function also initializes ring indices of each ring.
9241 * This function is called during the initialization of the SLI
9242 * interface of an HBA.
9243 * This function is called with no lock held and always returns
9244 * 1.
9245 **/
dea31012005-04-17 16:05:31 -05009246int
James Smart2e0fef82007-06-17 19:56:36 -05009247lpfc_sli_queue_setup(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05009248{
9249 struct lpfc_sli *psli;
9250 struct lpfc_sli_ring *pring;
James Bottomley604a3e32005-10-29 10:28:33 -05009251 int i;
dea31012005-04-17 16:05:31 -05009252
9253 psli = &phba->sli;
James Smart2e0fef82007-06-17 19:56:36 -05009254 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009255 INIT_LIST_HEAD(&psli->mboxq);
James Smart92d7f7b2007-06-17 19:56:38 -05009256 INIT_LIST_HEAD(&psli->mboxq_cmpl);
dea31012005-04-17 16:05:31 -05009257 /* Initialize list headers for txq and txcmplq as double linked lists */
9258 for (i = 0; i < psli->num_rings; i++) {
9259 pring = &psli->ring[i];
9260 pring->ringno = i;
James Smart7e56aa22012-08-03 12:35:34 -04009261 pring->sli.sli3.next_cmdidx = 0;
9262 pring->sli.sli3.local_getidx = 0;
9263 pring->sli.sli3.cmdidx = 0;
James Smart68e814f2014-05-21 08:04:59 -04009264 pring->flag = 0;
dea31012005-04-17 16:05:31 -05009265 INIT_LIST_HEAD(&pring->txq);
9266 INIT_LIST_HEAD(&pring->txcmplq);
9267 INIT_LIST_HEAD(&pring->iocb_continueq);
James Smart9c2face2008-01-11 01:53:18 -05009268 INIT_LIST_HEAD(&pring->iocb_continue_saveq);
dea31012005-04-17 16:05:31 -05009269 INIT_LIST_HEAD(&pring->postbufq);
James Smart7e56aa22012-08-03 12:35:34 -04009270 spin_lock_init(&pring->ring_lock);
dea31012005-04-17 16:05:31 -05009271 }
James Smart2e0fef82007-06-17 19:56:36 -05009272 spin_unlock_irq(&phba->hbalock);
9273 return 1;
dea31012005-04-17 16:05:31 -05009274}
9275
James Smarte59058c2008-08-24 21:49:00 -04009276/**
James Smart04c68492009-05-22 14:52:52 -04009277 * lpfc_sli_mbox_sys_flush - Flush mailbox command sub-system
9278 * @phba: Pointer to HBA context object.
9279 *
9280 * This routine flushes the mailbox command subsystem. It will unconditionally
9281 * flush all the mailbox commands in the three possible stages in the mailbox
9282 * command sub-system: pending mailbox command queue; the outstanding mailbox
9283 * command; and completed mailbox command queue. It is caller's responsibility
9284 * to make sure that the driver is in the proper state to flush the mailbox
9285 * command sub-system. Namely, the posting of mailbox commands into the
9286 * pending mailbox command queue from the various clients must be stopped;
9287 * either the HBA is in a state that it will never works on the outstanding
9288 * mailbox command (such as in EEH or ERATT conditions) or the outstanding
9289 * mailbox command has been completed.
9290 **/
9291static void
9292lpfc_sli_mbox_sys_flush(struct lpfc_hba *phba)
9293{
9294 LIST_HEAD(completions);
9295 struct lpfc_sli *psli = &phba->sli;
9296 LPFC_MBOXQ_t *pmb;
9297 unsigned long iflag;
9298
9299 /* Flush all the mailbox commands in the mbox system */
9300 spin_lock_irqsave(&phba->hbalock, iflag);
9301 /* The pending mailbox command queue */
9302 list_splice_init(&phba->sli.mboxq, &completions);
9303 /* The outstanding active mailbox command */
9304 if (psli->mbox_active) {
9305 list_add_tail(&psli->mbox_active->list, &completions);
9306 psli->mbox_active = NULL;
9307 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
9308 }
9309 /* The completed mailbox command queue */
9310 list_splice_init(&phba->sli.mboxq_cmpl, &completions);
9311 spin_unlock_irqrestore(&phba->hbalock, iflag);
9312
9313 /* Return all flushed mailbox commands with MBX_NOT_FINISHED status */
9314 while (!list_empty(&completions)) {
9315 list_remove_head(&completions, pmb, LPFC_MBOXQ_t, list);
9316 pmb->u.mb.mbxStatus = MBX_NOT_FINISHED;
9317 if (pmb->mbox_cmpl)
9318 pmb->mbox_cmpl(phba, pmb);
9319 }
9320}
9321
9322/**
James Smart3621a712009-04-06 18:47:14 -04009323 * lpfc_sli_host_down - Vport cleanup function
James Smarte59058c2008-08-24 21:49:00 -04009324 * @vport: Pointer to virtual port object.
9325 *
9326 * lpfc_sli_host_down is called to clean up the resources
9327 * associated with a vport before destroying virtual
9328 * port data structures.
9329 * This function does following operations:
9330 * - Free discovery resources associated with this virtual
9331 * port.
9332 * - Free iocbs associated with this virtual port in
9333 * the txq.
9334 * - Send abort for all iocb commands associated with this
9335 * vport in txcmplq.
9336 *
9337 * This function is called with no lock held and always returns 1.
9338 **/
dea31012005-04-17 16:05:31 -05009339int
James Smart92d7f7b2007-06-17 19:56:38 -05009340lpfc_sli_host_down(struct lpfc_vport *vport)
9341{
James Smart858c9f62007-06-17 19:56:39 -05009342 LIST_HEAD(completions);
James Smart92d7f7b2007-06-17 19:56:38 -05009343 struct lpfc_hba *phba = vport->phba;
9344 struct lpfc_sli *psli = &phba->sli;
9345 struct lpfc_sli_ring *pring;
9346 struct lpfc_iocbq *iocb, *next_iocb;
James Smart92d7f7b2007-06-17 19:56:38 -05009347 int i;
9348 unsigned long flags = 0;
9349 uint16_t prev_pring_flag;
9350
9351 lpfc_cleanup_discovery_resources(vport);
9352
9353 spin_lock_irqsave(&phba->hbalock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -05009354 for (i = 0; i < psli->num_rings; i++) {
9355 pring = &psli->ring[i];
9356 prev_pring_flag = pring->flag;
James Smart5e9d9b82008-06-14 22:52:53 -04009357 /* Only slow rings */
9358 if (pring->ringno == LPFC_ELS_RING) {
James Smart858c9f62007-06-17 19:56:39 -05009359 pring->flag |= LPFC_DEFERRED_RING_EVENT;
James Smart5e9d9b82008-06-14 22:52:53 -04009360 /* Set the lpfc data pending flag */
9361 set_bit(LPFC_DATA_READY, &phba->data_flags);
9362 }
James Smart92d7f7b2007-06-17 19:56:38 -05009363 /*
9364 * Error everything on the txq since these iocbs have not been
9365 * given to the FW yet.
9366 */
James Smart92d7f7b2007-06-17 19:56:38 -05009367 list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
9368 if (iocb->vport != vport)
9369 continue;
James Smart858c9f62007-06-17 19:56:39 -05009370 list_move_tail(&iocb->list, &completions);
James Smart92d7f7b2007-06-17 19:56:38 -05009371 }
9372
9373 /* Next issue ABTS for everything on the txcmplq */
9374 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq,
9375 list) {
9376 if (iocb->vport != vport)
9377 continue;
9378 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
9379 }
9380
9381 pring->flag = prev_pring_flag;
9382 }
9383
9384 spin_unlock_irqrestore(&phba->hbalock, flags);
9385
James Smarta257bf92009-04-06 18:48:10 -04009386 /* Cancel all the IOCBs from the completions list */
9387 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
9388 IOERR_SLI_DOWN);
James Smart92d7f7b2007-06-17 19:56:38 -05009389 return 1;
9390}
9391
James Smarte59058c2008-08-24 21:49:00 -04009392/**
James Smart3621a712009-04-06 18:47:14 -04009393 * lpfc_sli_hba_down - Resource cleanup function for the HBA
James Smarte59058c2008-08-24 21:49:00 -04009394 * @phba: Pointer to HBA context object.
9395 *
9396 * This function cleans up all iocb, buffers, mailbox commands
9397 * while shutting down the HBA. This function is called with no
9398 * lock held and always returns 1.
9399 * This function does the following to cleanup driver resources:
9400 * - Free discovery resources for each virtual port
9401 * - Cleanup any pending fabric iocbs
9402 * - Iterate through the iocb txq and free each entry
9403 * in the list.
9404 * - Free up any buffer posted to the HBA
9405 * - Free mailbox commands in the mailbox queue.
9406 **/
James Smart92d7f7b2007-06-17 19:56:38 -05009407int
James Smart2e0fef82007-06-17 19:56:36 -05009408lpfc_sli_hba_down(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05009409{
James Smart2534ba72007-04-25 09:52:20 -04009410 LIST_HEAD(completions);
James Smart2e0fef82007-06-17 19:56:36 -05009411 struct lpfc_sli *psli = &phba->sli;
dea31012005-04-17 16:05:31 -05009412 struct lpfc_sli_ring *pring;
James Smart0ff10d42008-01-11 01:52:36 -05009413 struct lpfc_dmabuf *buf_ptr;
dea31012005-04-17 16:05:31 -05009414 unsigned long flags = 0;
James Smart04c68492009-05-22 14:52:52 -04009415 int i;
9416
9417 /* Shutdown the mailbox command sub-system */
James Smart618a5232012-06-12 13:54:36 -04009418 lpfc_sli_mbox_sys_shutdown(phba, LPFC_MBX_WAIT);
dea31012005-04-17 16:05:31 -05009419
dea31012005-04-17 16:05:31 -05009420 lpfc_hba_down_prep(phba);
9421
James Smart92d7f7b2007-06-17 19:56:38 -05009422 lpfc_fabric_abort_hba(phba);
9423
James Smart2e0fef82007-06-17 19:56:36 -05009424 spin_lock_irqsave(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05009425 for (i = 0; i < psli->num_rings; i++) {
9426 pring = &psli->ring[i];
James Smart5e9d9b82008-06-14 22:52:53 -04009427 /* Only slow rings */
9428 if (pring->ringno == LPFC_ELS_RING) {
James Smart858c9f62007-06-17 19:56:39 -05009429 pring->flag |= LPFC_DEFERRED_RING_EVENT;
James Smart5e9d9b82008-06-14 22:52:53 -04009430 /* Set the lpfc data pending flag */
9431 set_bit(LPFC_DATA_READY, &phba->data_flags);
9432 }
dea31012005-04-17 16:05:31 -05009433
9434 /*
9435 * Error everything on the txq since these iocbs have not been
9436 * given to the FW yet.
9437 */
James Smart2534ba72007-04-25 09:52:20 -04009438 list_splice_init(&pring->txq, &completions);
dea31012005-04-17 16:05:31 -05009439 }
James Smart2e0fef82007-06-17 19:56:36 -05009440 spin_unlock_irqrestore(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05009441
James Smarta257bf92009-04-06 18:48:10 -04009442 /* Cancel all the IOCBs from the completions list */
9443 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
9444 IOERR_SLI_DOWN);
James Smart2534ba72007-04-25 09:52:20 -04009445
James Smart0ff10d42008-01-11 01:52:36 -05009446 spin_lock_irqsave(&phba->hbalock, flags);
9447 list_splice_init(&phba->elsbuf, &completions);
9448 phba->elsbuf_cnt = 0;
9449 phba->elsbuf_prev_cnt = 0;
9450 spin_unlock_irqrestore(&phba->hbalock, flags);
9451
9452 while (!list_empty(&completions)) {
9453 list_remove_head(&completions, buf_ptr,
9454 struct lpfc_dmabuf, list);
9455 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
9456 kfree(buf_ptr);
9457 }
9458
dea31012005-04-17 16:05:31 -05009459 /* Return any active mbox cmds */
9460 del_timer_sync(&psli->mbox_tmo);
James Smart92d7f7b2007-06-17 19:56:38 -05009461
James Smartda0436e2009-05-22 14:51:39 -04009462 spin_lock_irqsave(&phba->pport->work_port_lock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -05009463 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
James Smartda0436e2009-05-22 14:51:39 -04009464 spin_unlock_irqrestore(&phba->pport->work_port_lock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -05009465
James Smartda0436e2009-05-22 14:51:39 -04009466 return 1;
9467}
James Smart92d7f7b2007-06-17 19:56:38 -05009468
James Smartda0436e2009-05-22 14:51:39 -04009469/**
James Smart3621a712009-04-06 18:47:14 -04009470 * lpfc_sli_pcimem_bcopy - SLI memory copy function
James Smarte59058c2008-08-24 21:49:00 -04009471 * @srcp: Source memory pointer.
9472 * @destp: Destination memory pointer.
9473 * @cnt: Number of words required to be copied.
9474 *
9475 * This function is used for copying data between driver memory
9476 * and the SLI memory. This function also changes the endianness
9477 * of each word if native endianness is different from SLI
9478 * endianness. This function can be called with or without
9479 * lock.
9480 **/
dea31012005-04-17 16:05:31 -05009481void
9482lpfc_sli_pcimem_bcopy(void *srcp, void *destp, uint32_t cnt)
9483{
9484 uint32_t *src = srcp;
9485 uint32_t *dest = destp;
9486 uint32_t ldata;
9487 int i;
9488
9489 for (i = 0; i < (int)cnt; i += sizeof (uint32_t)) {
9490 ldata = *src;
9491 ldata = le32_to_cpu(ldata);
9492 *dest = ldata;
9493 src++;
9494 dest++;
9495 }
9496}
9497
James Smarte59058c2008-08-24 21:49:00 -04009498
9499/**
James Smarta0c87cb2009-07-19 10:01:10 -04009500 * lpfc_sli_bemem_bcopy - SLI memory copy function
9501 * @srcp: Source memory pointer.
9502 * @destp: Destination memory pointer.
9503 * @cnt: Number of words required to be copied.
9504 *
9505 * This function is used for copying data between a data structure
9506 * with big endian representation to local endianness.
9507 * This function can be called with or without lock.
9508 **/
9509void
9510lpfc_sli_bemem_bcopy(void *srcp, void *destp, uint32_t cnt)
9511{
9512 uint32_t *src = srcp;
9513 uint32_t *dest = destp;
9514 uint32_t ldata;
9515 int i;
9516
9517 for (i = 0; i < (int)cnt; i += sizeof(uint32_t)) {
9518 ldata = *src;
9519 ldata = be32_to_cpu(ldata);
9520 *dest = ldata;
9521 src++;
9522 dest++;
9523 }
9524}
9525
9526/**
James Smart3621a712009-04-06 18:47:14 -04009527 * lpfc_sli_ringpostbuf_put - Function to add a buffer to postbufq
James Smarte59058c2008-08-24 21:49:00 -04009528 * @phba: Pointer to HBA context object.
9529 * @pring: Pointer to driver SLI ring object.
9530 * @mp: Pointer to driver buffer object.
9531 *
9532 * This function is called with no lock held.
9533 * It always return zero after adding the buffer to the postbufq
9534 * buffer list.
9535 **/
dea31012005-04-17 16:05:31 -05009536int
James Smart2e0fef82007-06-17 19:56:36 -05009537lpfc_sli_ringpostbuf_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9538 struct lpfc_dmabuf *mp)
dea31012005-04-17 16:05:31 -05009539{
9540 /* Stick struct lpfc_dmabuf at end of postbufq so driver can look it up
9541 later */
James Smart2e0fef82007-06-17 19:56:36 -05009542 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009543 list_add_tail(&mp->list, &pring->postbufq);
dea31012005-04-17 16:05:31 -05009544 pring->postbufq_cnt++;
James Smart2e0fef82007-06-17 19:56:36 -05009545 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009546 return 0;
9547}
9548
James Smarte59058c2008-08-24 21:49:00 -04009549/**
James Smart3621a712009-04-06 18:47:14 -04009550 * lpfc_sli_get_buffer_tag - allocates a tag for a CMD_QUE_XRI64_CX buffer
James Smarte59058c2008-08-24 21:49:00 -04009551 * @phba: Pointer to HBA context object.
9552 *
9553 * When HBQ is enabled, buffers are searched based on tags. This function
9554 * allocates a tag for buffer posted using CMD_QUE_XRI64_CX iocb. The
9555 * tag is bit wise or-ed with QUE_BUFTAG_BIT to make sure that the tag
9556 * does not conflict with tags of buffer posted for unsolicited events.
9557 * The function returns the allocated tag. The function is called with
9558 * no locks held.
9559 **/
James Smart76bb24e2007-10-27 13:38:00 -04009560uint32_t
9561lpfc_sli_get_buffer_tag(struct lpfc_hba *phba)
9562{
9563 spin_lock_irq(&phba->hbalock);
9564 phba->buffer_tag_count++;
9565 /*
9566 * Always set the QUE_BUFTAG_BIT to distiguish between
9567 * a tag assigned by HBQ.
9568 */
9569 phba->buffer_tag_count |= QUE_BUFTAG_BIT;
9570 spin_unlock_irq(&phba->hbalock);
9571 return phba->buffer_tag_count;
9572}
9573
James Smarte59058c2008-08-24 21:49:00 -04009574/**
James Smart3621a712009-04-06 18:47:14 -04009575 * lpfc_sli_ring_taggedbuf_get - find HBQ buffer associated with given tag
James Smarte59058c2008-08-24 21:49:00 -04009576 * @phba: Pointer to HBA context object.
9577 * @pring: Pointer to driver SLI ring object.
9578 * @tag: Buffer tag.
9579 *
9580 * Buffers posted using CMD_QUE_XRI64_CX iocb are in pring->postbufq
9581 * list. After HBA DMA data to these buffers, CMD_IOCB_RET_XRI64_CX
9582 * iocb is posted to the response ring with the tag of the buffer.
9583 * This function searches the pring->postbufq list using the tag
9584 * to find buffer associated with CMD_IOCB_RET_XRI64_CX
9585 * iocb. If the buffer is found then lpfc_dmabuf object of the
9586 * buffer is returned to the caller else NULL is returned.
9587 * This function is called with no lock held.
9588 **/
James Smart76bb24e2007-10-27 13:38:00 -04009589struct lpfc_dmabuf *
9590lpfc_sli_ring_taggedbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9591 uint32_t tag)
9592{
9593 struct lpfc_dmabuf *mp, *next_mp;
9594 struct list_head *slp = &pring->postbufq;
9595
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009596 /* Search postbufq, from the beginning, looking for a match on tag */
James Smart76bb24e2007-10-27 13:38:00 -04009597 spin_lock_irq(&phba->hbalock);
9598 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
9599 if (mp->buffer_tag == tag) {
9600 list_del_init(&mp->list);
9601 pring->postbufq_cnt--;
9602 spin_unlock_irq(&phba->hbalock);
9603 return mp;
9604 }
9605 }
9606
9607 spin_unlock_irq(&phba->hbalock);
9608 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smartd7c255b2008-08-24 21:50:00 -04009609 "0402 Cannot find virtual addr for buffer tag on "
James Smart76bb24e2007-10-27 13:38:00 -04009610 "ring %d Data x%lx x%p x%p x%x\n",
9611 pring->ringno, (unsigned long) tag,
9612 slp->next, slp->prev, pring->postbufq_cnt);
9613
9614 return NULL;
9615}
dea31012005-04-17 16:05:31 -05009616
James Smarte59058c2008-08-24 21:49:00 -04009617/**
James Smart3621a712009-04-06 18:47:14 -04009618 * lpfc_sli_ringpostbuf_get - search buffers for unsolicited CT and ELS events
James Smarte59058c2008-08-24 21:49:00 -04009619 * @phba: Pointer to HBA context object.
9620 * @pring: Pointer to driver SLI ring object.
9621 * @phys: DMA address of the buffer.
9622 *
9623 * This function searches the buffer list using the dma_address
9624 * of unsolicited event to find the driver's lpfc_dmabuf object
9625 * corresponding to the dma_address. The function returns the
9626 * lpfc_dmabuf object if a buffer is found else it returns NULL.
9627 * This function is called by the ct and els unsolicited event
9628 * handlers to get the buffer associated with the unsolicited
9629 * event.
9630 *
9631 * This function is called with no lock held.
9632 **/
dea31012005-04-17 16:05:31 -05009633struct lpfc_dmabuf *
9634lpfc_sli_ringpostbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9635 dma_addr_t phys)
9636{
9637 struct lpfc_dmabuf *mp, *next_mp;
9638 struct list_head *slp = &pring->postbufq;
9639
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009640 /* Search postbufq, from the beginning, looking for a match on phys */
James Smart2e0fef82007-06-17 19:56:36 -05009641 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009642 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
9643 if (mp->phys == phys) {
9644 list_del_init(&mp->list);
9645 pring->postbufq_cnt--;
James Smart2e0fef82007-06-17 19:56:36 -05009646 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009647 return mp;
9648 }
9649 }
9650
James Smart2e0fef82007-06-17 19:56:36 -05009651 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009652 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04009653 "0410 Cannot find virtual addr for mapped buf on "
dea31012005-04-17 16:05:31 -05009654 "ring %d Data x%llx x%p x%p x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04009655 pring->ringno, (unsigned long long)phys,
dea31012005-04-17 16:05:31 -05009656 slp->next, slp->prev, pring->postbufq_cnt);
9657 return NULL;
9658}
9659
James Smarte59058c2008-08-24 21:49:00 -04009660/**
James Smart3621a712009-04-06 18:47:14 -04009661 * lpfc_sli_abort_els_cmpl - Completion handler for the els abort iocbs
James Smarte59058c2008-08-24 21:49:00 -04009662 * @phba: Pointer to HBA context object.
9663 * @cmdiocb: Pointer to driver command iocb object.
9664 * @rspiocb: Pointer to driver response iocb object.
9665 *
9666 * This function is the completion handler for the abort iocbs for
9667 * ELS commands. This function is called from the ELS ring event
9668 * handler with no lock held. This function frees memory resources
9669 * associated with the abort iocb.
9670 **/
dea31012005-04-17 16:05:31 -05009671static void
James Smart2e0fef82007-06-17 19:56:36 -05009672lpfc_sli_abort_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
9673 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05009674{
James Smart2e0fef82007-06-17 19:56:36 -05009675 IOCB_t *irsp = &rspiocb->iocb;
James Smart2680eea2007-04-25 09:52:55 -04009676 uint16_t abort_iotag, abort_context;
James Smartff78d8f2011-12-13 13:21:35 -05009677 struct lpfc_iocbq *abort_iocb = NULL;
James Smart2680eea2007-04-25 09:52:55 -04009678
9679 if (irsp->ulpStatus) {
James Smartff78d8f2011-12-13 13:21:35 -05009680
9681 /*
9682 * Assume that the port already completed and returned, or
9683 * will return the iocb. Just Log the message.
9684 */
James Smart2680eea2007-04-25 09:52:55 -04009685 abort_context = cmdiocb->iocb.un.acxri.abortContextTag;
9686 abort_iotag = cmdiocb->iocb.un.acxri.abortIoTag;
9687
James Smart2e0fef82007-06-17 19:56:36 -05009688 spin_lock_irq(&phba->hbalock);
James Smart45ed1192009-10-02 15:17:02 -04009689 if (phba->sli_rev < LPFC_SLI_REV4) {
9690 if (abort_iotag != 0 &&
9691 abort_iotag <= phba->sli.last_iotag)
9692 abort_iocb =
9693 phba->sli.iocbq_lookup[abort_iotag];
9694 } else
9695 /* For sli4 the abort_tag is the XRI,
9696 * so the abort routine puts the iotag of the iocb
9697 * being aborted in the context field of the abort
9698 * IOCB.
9699 */
9700 abort_iocb = phba->sli.iocbq_lookup[abort_context];
James Smart2680eea2007-04-25 09:52:55 -04009701
James Smart2a9bf3d2010-06-07 15:24:45 -04009702 lpfc_printf_log(phba, KERN_WARNING, LOG_ELS | LOG_SLI,
9703 "0327 Cannot abort els iocb %p "
9704 "with tag %x context %x, abort status %x, "
9705 "abort code %x\n",
9706 abort_iocb, abort_iotag, abort_context,
9707 irsp->ulpStatus, irsp->un.ulpWord[4]);
James Smart2680eea2007-04-25 09:52:55 -04009708
James Smartff78d8f2011-12-13 13:21:35 -05009709 spin_unlock_irq(&phba->hbalock);
James Smart2680eea2007-04-25 09:52:55 -04009710 }
James Bottomley604a3e32005-10-29 10:28:33 -05009711 lpfc_sli_release_iocbq(phba, cmdiocb);
dea31012005-04-17 16:05:31 -05009712 return;
9713}
9714
James Smarte59058c2008-08-24 21:49:00 -04009715/**
James Smart3621a712009-04-06 18:47:14 -04009716 * lpfc_ignore_els_cmpl - Completion handler for aborted ELS command
James Smarte59058c2008-08-24 21:49:00 -04009717 * @phba: Pointer to HBA context object.
9718 * @cmdiocb: Pointer to driver command iocb object.
9719 * @rspiocb: Pointer to driver response iocb object.
9720 *
9721 * The function is called from SLI ring event handler with no
9722 * lock held. This function is the completion handler for ELS commands
9723 * which are aborted. The function frees memory resources used for
9724 * the aborted ELS commands.
9725 **/
James Smart92d7f7b2007-06-17 19:56:38 -05009726static void
9727lpfc_ignore_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
9728 struct lpfc_iocbq *rspiocb)
9729{
9730 IOCB_t *irsp = &rspiocb->iocb;
9731
9732 /* ELS cmd tag <ulpIoTag> completes */
9733 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
James Smartd7c255b2008-08-24 21:50:00 -04009734 "0139 Ignoring ELS cmd tag x%x completion Data: "
James Smart92d7f7b2007-06-17 19:56:38 -05009735 "x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04009736 irsp->ulpIoTag, irsp->ulpStatus,
James Smart92d7f7b2007-06-17 19:56:38 -05009737 irsp->un.ulpWord[4], irsp->ulpTimeout);
James Smart858c9f62007-06-17 19:56:39 -05009738 if (cmdiocb->iocb.ulpCommand == CMD_GEN_REQUEST64_CR)
9739 lpfc_ct_free_iocb(phba, cmdiocb);
9740 else
9741 lpfc_els_free_iocb(phba, cmdiocb);
James Smart92d7f7b2007-06-17 19:56:38 -05009742 return;
9743}
9744
James Smarte59058c2008-08-24 21:49:00 -04009745/**
James Smart5af5eee2010-10-22 11:06:38 -04009746 * lpfc_sli_abort_iotag_issue - Issue abort for a command iocb
James Smarte59058c2008-08-24 21:49:00 -04009747 * @phba: Pointer to HBA context object.
9748 * @pring: Pointer to driver SLI ring object.
9749 * @cmdiocb: Pointer to driver command iocb object.
9750 *
James Smart5af5eee2010-10-22 11:06:38 -04009751 * This function issues an abort iocb for the provided command iocb down to
9752 * the port. Other than the case the outstanding command iocb is an abort
9753 * request, this function issues abort out unconditionally. This function is
9754 * called with hbalock held. The function returns 0 when it fails due to
9755 * memory allocation failure or when the command iocb is an abort request.
James Smarte59058c2008-08-24 21:49:00 -04009756 **/
James Smart5af5eee2010-10-22 11:06:38 -04009757static int
9758lpfc_sli_abort_iotag_issue(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart2e0fef82007-06-17 19:56:36 -05009759 struct lpfc_iocbq *cmdiocb)
dea31012005-04-17 16:05:31 -05009760{
James Smart2e0fef82007-06-17 19:56:36 -05009761 struct lpfc_vport *vport = cmdiocb->vport;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009762 struct lpfc_iocbq *abtsiocbp;
dea31012005-04-17 16:05:31 -05009763 IOCB_t *icmd = NULL;
9764 IOCB_t *iabt = NULL;
James Smart9bd2bff52014-09-03 12:57:30 -04009765 int ring_number;
James Smart5af5eee2010-10-22 11:06:38 -04009766 int retval;
James Smart7e56aa22012-08-03 12:35:34 -04009767 unsigned long iflags;
James Smart07951072007-04-25 09:51:38 -04009768
James Smart92d7f7b2007-06-17 19:56:38 -05009769 /*
9770 * There are certain command types we don't want to abort. And we
9771 * don't want to abort commands that are already in the process of
9772 * being aborted.
James Smart07951072007-04-25 09:51:38 -04009773 */
9774 icmd = &cmdiocb->iocb;
James Smart2e0fef82007-06-17 19:56:36 -05009775 if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
James Smart92d7f7b2007-06-17 19:56:38 -05009776 icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
9777 (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
James Smart07951072007-04-25 09:51:38 -04009778 return 0;
9779
dea31012005-04-17 16:05:31 -05009780 /* issue ABTS for this IOCB based on iotag */
James Smart92d7f7b2007-06-17 19:56:38 -05009781 abtsiocbp = __lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -05009782 if (abtsiocbp == NULL)
9783 return 0;
dea31012005-04-17 16:05:31 -05009784
James Smart07951072007-04-25 09:51:38 -04009785 /* This signals the response to set the correct status
James Smart341af102010-01-26 23:07:37 -05009786 * before calling the completion handler
James Smart07951072007-04-25 09:51:38 -04009787 */
9788 cmdiocb->iocb_flag |= LPFC_DRIVER_ABORTED;
9789
dea31012005-04-17 16:05:31 -05009790 iabt = &abtsiocbp->iocb;
James Smart07951072007-04-25 09:51:38 -04009791 iabt->un.acxri.abortType = ABORT_TYPE_ABTS;
9792 iabt->un.acxri.abortContextTag = icmd->ulpContext;
James Smart45ed1192009-10-02 15:17:02 -04009793 if (phba->sli_rev == LPFC_SLI_REV4) {
James Smartda0436e2009-05-22 14:51:39 -04009794 iabt->un.acxri.abortIoTag = cmdiocb->sli4_xritag;
James Smart45ed1192009-10-02 15:17:02 -04009795 iabt->un.acxri.abortContextTag = cmdiocb->iotag;
9796 }
James Smartda0436e2009-05-22 14:51:39 -04009797 else
9798 iabt->un.acxri.abortIoTag = icmd->ulpIoTag;
dea31012005-04-17 16:05:31 -05009799 iabt->ulpLe = 1;
James Smart07951072007-04-25 09:51:38 -04009800 iabt->ulpClass = icmd->ulpClass;
dea31012005-04-17 16:05:31 -05009801
James Smart5ffc2662009-11-18 15:39:44 -05009802 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
9803 abtsiocbp->fcp_wqidx = cmdiocb->fcp_wqidx;
James Smart341af102010-01-26 23:07:37 -05009804 if (cmdiocb->iocb_flag & LPFC_IO_FCP)
9805 abtsiocbp->iocb_flag |= LPFC_USE_FCPWQIDX;
James Smart9bd2bff52014-09-03 12:57:30 -04009806 if (cmdiocb->iocb_flag & LPFC_IO_FOF)
9807 abtsiocbp->iocb_flag |= LPFC_IO_FOF;
James Smart5ffc2662009-11-18 15:39:44 -05009808
James Smart2e0fef82007-06-17 19:56:36 -05009809 if (phba->link_state >= LPFC_LINK_UP)
James Smart07951072007-04-25 09:51:38 -04009810 iabt->ulpCommand = CMD_ABORT_XRI_CN;
9811 else
9812 iabt->ulpCommand = CMD_CLOSE_XRI_CN;
9813
9814 abtsiocbp->iocb_cmpl = lpfc_sli_abort_els_cmpl;
James Smart5b8bd0c2007-04-25 09:52:49 -04009815
James Smarte8b62012007-08-02 11:10:09 -04009816 lpfc_printf_vlog(vport, KERN_INFO, LOG_SLI,
9817 "0339 Abort xri x%x, original iotag x%x, "
9818 "abort cmd iotag x%x\n",
James Smart2a9bf3d2010-06-07 15:24:45 -04009819 iabt->un.acxri.abortIoTag,
James Smarte8b62012007-08-02 11:10:09 -04009820 iabt->un.acxri.abortContextTag,
James Smart2a9bf3d2010-06-07 15:24:45 -04009821 abtsiocbp->iotag);
James Smart7e56aa22012-08-03 12:35:34 -04009822
9823 if (phba->sli_rev == LPFC_SLI_REV4) {
James Smart9bd2bff52014-09-03 12:57:30 -04009824 ring_number =
9825 lpfc_sli_calc_ring(phba, pring->ringno, abtsiocbp);
9826 if (unlikely(ring_number == LPFC_HBA_ERROR))
9827 return 0;
9828 pring = &phba->sli.ring[ring_number];
James Smart7e56aa22012-08-03 12:35:34 -04009829 /* Note: both hbalock and ring_lock need to be set here */
9830 spin_lock_irqsave(&pring->ring_lock, iflags);
9831 retval = __lpfc_sli_issue_iocb(phba, pring->ringno,
9832 abtsiocbp, 0);
9833 spin_unlock_irqrestore(&pring->ring_lock, iflags);
9834 } else {
9835 retval = __lpfc_sli_issue_iocb(phba, pring->ringno,
9836 abtsiocbp, 0);
9837 }
James Smart07951072007-04-25 09:51:38 -04009838
James Smartd7c255b2008-08-24 21:50:00 -04009839 if (retval)
9840 __lpfc_sli_release_iocbq(phba, abtsiocbp);
James Smart5af5eee2010-10-22 11:06:38 -04009841
9842 /*
9843 * Caller to this routine should check for IOCB_ERROR
9844 * and handle it properly. This routine no longer removes
9845 * iocb off txcmplq and call compl in case of IOCB_ERROR.
9846 */
9847 return retval;
9848}
9849
9850/**
9851 * lpfc_sli_issue_abort_iotag - Abort function for a command iocb
9852 * @phba: Pointer to HBA context object.
9853 * @pring: Pointer to driver SLI ring object.
9854 * @cmdiocb: Pointer to driver command iocb object.
9855 *
9856 * This function issues an abort iocb for the provided command iocb. In case
9857 * of unloading, the abort iocb will not be issued to commands on the ELS
9858 * ring. Instead, the callback function shall be changed to those commands
9859 * so that nothing happens when them finishes. This function is called with
9860 * hbalock held. The function returns 0 when the command iocb is an abort
9861 * request.
9862 **/
9863int
9864lpfc_sli_issue_abort_iotag(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9865 struct lpfc_iocbq *cmdiocb)
9866{
9867 struct lpfc_vport *vport = cmdiocb->vport;
9868 int retval = IOCB_ERROR;
9869 IOCB_t *icmd = NULL;
9870
9871 /*
9872 * There are certain command types we don't want to abort. And we
9873 * don't want to abort commands that are already in the process of
9874 * being aborted.
9875 */
9876 icmd = &cmdiocb->iocb;
9877 if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
9878 icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
9879 (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
9880 return 0;
9881
9882 /*
9883 * If we're unloading, don't abort iocb on the ELS ring, but change
9884 * the callback so that nothing happens when it finishes.
9885 */
9886 if ((vport->load_flag & FC_UNLOADING) &&
9887 (pring->ringno == LPFC_ELS_RING)) {
9888 if (cmdiocb->iocb_flag & LPFC_IO_FABRIC)
9889 cmdiocb->fabric_iocb_cmpl = lpfc_ignore_els_cmpl;
9890 else
9891 cmdiocb->iocb_cmpl = lpfc_ignore_els_cmpl;
9892 goto abort_iotag_exit;
9893 }
9894
9895 /* Now, we try to issue the abort to the cmdiocb out */
9896 retval = lpfc_sli_abort_iotag_issue(phba, pring, cmdiocb);
9897
James Smart07951072007-04-25 09:51:38 -04009898abort_iotag_exit:
James Smart2e0fef82007-06-17 19:56:36 -05009899 /*
9900 * Caller to this routine should check for IOCB_ERROR
9901 * and handle it properly. This routine no longer removes
9902 * iocb off txcmplq and call compl in case of IOCB_ERROR.
James Smart07951072007-04-25 09:51:38 -04009903 */
James Smart2e0fef82007-06-17 19:56:36 -05009904 return retval;
dea31012005-04-17 16:05:31 -05009905}
9906
James Smarte59058c2008-08-24 21:49:00 -04009907/**
James Smart5af5eee2010-10-22 11:06:38 -04009908 * lpfc_sli_hba_iocb_abort - Abort all iocbs to an hba.
9909 * @phba: pointer to lpfc HBA data structure.
9910 *
9911 * This routine will abort all pending and outstanding iocbs to an HBA.
9912 **/
9913void
9914lpfc_sli_hba_iocb_abort(struct lpfc_hba *phba)
9915{
9916 struct lpfc_sli *psli = &phba->sli;
9917 struct lpfc_sli_ring *pring;
9918 int i;
9919
9920 for (i = 0; i < psli->num_rings; i++) {
9921 pring = &psli->ring[i];
James Smartdb55fba2014-04-04 13:52:02 -04009922 lpfc_sli_abort_iocb_ring(phba, pring);
James Smart5af5eee2010-10-22 11:06:38 -04009923 }
9924}
9925
9926/**
James Smart3621a712009-04-06 18:47:14 -04009927 * lpfc_sli_validate_fcp_iocb - find commands associated with a vport or LUN
James Smarte59058c2008-08-24 21:49:00 -04009928 * @iocbq: Pointer to driver iocb object.
9929 * @vport: Pointer to driver virtual port object.
9930 * @tgt_id: SCSI ID of the target.
9931 * @lun_id: LUN ID of the scsi device.
9932 * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST
9933 *
James Smart3621a712009-04-06 18:47:14 -04009934 * This function acts as an iocb filter for functions which abort or count
James Smarte59058c2008-08-24 21:49:00 -04009935 * all FCP iocbs pending on a lun/SCSI target/SCSI host. It will return
9936 * 0 if the filtering criteria is met for the given iocb and will return
9937 * 1 if the filtering criteria is not met.
9938 * If ctx_cmd == LPFC_CTX_LUN, the function returns 0 only if the
9939 * given iocb is for the SCSI device specified by vport, tgt_id and
9940 * lun_id parameter.
9941 * If ctx_cmd == LPFC_CTX_TGT, the function returns 0 only if the
9942 * given iocb is for the SCSI target specified by vport and tgt_id
9943 * parameters.
9944 * If ctx_cmd == LPFC_CTX_HOST, the function returns 0 only if the
9945 * given iocb is for the SCSI host associated with the given vport.
9946 * This function is called with no locks held.
9947 **/
dea31012005-04-17 16:05:31 -05009948static int
James Smart51ef4c22007-08-02 11:10:31 -04009949lpfc_sli_validate_fcp_iocb(struct lpfc_iocbq *iocbq, struct lpfc_vport *vport,
9950 uint16_t tgt_id, uint64_t lun_id,
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009951 lpfc_ctx_cmd ctx_cmd)
dea31012005-04-17 16:05:31 -05009952{
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009953 struct lpfc_scsi_buf *lpfc_cmd;
dea31012005-04-17 16:05:31 -05009954 int rc = 1;
9955
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009956 if (!(iocbq->iocb_flag & LPFC_IO_FCP))
9957 return rc;
9958
James Smart51ef4c22007-08-02 11:10:31 -04009959 if (iocbq->vport != vport)
9960 return rc;
9961
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009962 lpfc_cmd = container_of(iocbq, struct lpfc_scsi_buf, cur_iocbq);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009963
James Smart495a7142008-06-14 22:52:59 -04009964 if (lpfc_cmd->pCmd == NULL)
dea31012005-04-17 16:05:31 -05009965 return rc;
9966
9967 switch (ctx_cmd) {
9968 case LPFC_CTX_LUN:
James Smart495a7142008-06-14 22:52:59 -04009969 if ((lpfc_cmd->rdata->pnode) &&
9970 (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id) &&
9971 (scsilun_to_int(&lpfc_cmd->fcp_cmnd->fcp_lun) == lun_id))
dea31012005-04-17 16:05:31 -05009972 rc = 0;
9973 break;
9974 case LPFC_CTX_TGT:
James Smart495a7142008-06-14 22:52:59 -04009975 if ((lpfc_cmd->rdata->pnode) &&
9976 (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id))
dea31012005-04-17 16:05:31 -05009977 rc = 0;
9978 break;
dea31012005-04-17 16:05:31 -05009979 case LPFC_CTX_HOST:
9980 rc = 0;
9981 break;
9982 default:
9983 printk(KERN_ERR "%s: Unknown context cmd type, value %d\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07009984 __func__, ctx_cmd);
dea31012005-04-17 16:05:31 -05009985 break;
9986 }
9987
9988 return rc;
9989}
9990
James Smarte59058c2008-08-24 21:49:00 -04009991/**
James Smart3621a712009-04-06 18:47:14 -04009992 * lpfc_sli_sum_iocb - Function to count the number of FCP iocbs pending
James Smarte59058c2008-08-24 21:49:00 -04009993 * @vport: Pointer to virtual port.
9994 * @tgt_id: SCSI ID of the target.
9995 * @lun_id: LUN ID of the scsi device.
9996 * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
9997 *
9998 * This function returns number of FCP commands pending for the vport.
9999 * When ctx_cmd == LPFC_CTX_LUN, the function returns number of FCP
10000 * commands pending on the vport associated with SCSI device specified
10001 * by tgt_id and lun_id parameters.
10002 * When ctx_cmd == LPFC_CTX_TGT, the function returns number of FCP
10003 * commands pending on the vport associated with SCSI target specified
10004 * by tgt_id parameter.
10005 * When ctx_cmd == LPFC_CTX_HOST, the function returns number of FCP
10006 * commands pending on the vport.
10007 * This function returns the number of iocbs which satisfy the filter.
10008 * This function is called without any lock held.
10009 **/
dea31012005-04-17 16:05:31 -050010010int
James Smart51ef4c22007-08-02 11:10:31 -040010011lpfc_sli_sum_iocb(struct lpfc_vport *vport, uint16_t tgt_id, uint64_t lun_id,
10012 lpfc_ctx_cmd ctx_cmd)
dea31012005-04-17 16:05:31 -050010013{
James Smart51ef4c22007-08-02 11:10:31 -040010014 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040010015 struct lpfc_iocbq *iocbq;
10016 int sum, i;
dea31012005-04-17 16:05:31 -050010017
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040010018 for (i = 1, sum = 0; i <= phba->sli.last_iotag; i++) {
10019 iocbq = phba->sli.iocbq_lookup[i];
dea31012005-04-17 16:05:31 -050010020
James Smart51ef4c22007-08-02 11:10:31 -040010021 if (lpfc_sli_validate_fcp_iocb (iocbq, vport, tgt_id, lun_id,
10022 ctx_cmd) == 0)
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040010023 sum++;
dea31012005-04-17 16:05:31 -050010024 }
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040010025
dea31012005-04-17 16:05:31 -050010026 return sum;
10027}
10028
James Smarte59058c2008-08-24 21:49:00 -040010029/**
James Smart3621a712009-04-06 18:47:14 -040010030 * lpfc_sli_abort_fcp_cmpl - Completion handler function for aborted FCP IOCBs
James Smarte59058c2008-08-24 21:49:00 -040010031 * @phba: Pointer to HBA context object
10032 * @cmdiocb: Pointer to command iocb object.
10033 * @rspiocb: Pointer to response iocb object.
10034 *
10035 * This function is called when an aborted FCP iocb completes. This
10036 * function is called by the ring event handler with no lock held.
10037 * This function frees the iocb.
10038 **/
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -040010039void
James Smart2e0fef82007-06-17 19:56:36 -050010040lpfc_sli_abort_fcp_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
10041 struct lpfc_iocbq *rspiocb)
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -040010042{
James Smartcb69f7d2011-12-13 13:21:57 -050010043 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smart8e668af2013-05-31 17:04:28 -040010044 "3096 ABORT_XRI_CN completing on rpi x%x "
James Smartcb69f7d2011-12-13 13:21:57 -050010045 "original iotag x%x, abort cmd iotag x%x "
10046 "status 0x%x, reason 0x%x\n",
10047 cmdiocb->iocb.un.acxri.abortContextTag,
10048 cmdiocb->iocb.un.acxri.abortIoTag,
10049 cmdiocb->iotag, rspiocb->iocb.ulpStatus,
10050 rspiocb->iocb.un.ulpWord[4]);
James Bottomley604a3e32005-10-29 10:28:33 -050010051 lpfc_sli_release_iocbq(phba, cmdiocb);
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -040010052 return;
10053}
10054
James Smarte59058c2008-08-24 21:49:00 -040010055/**
James Smart3621a712009-04-06 18:47:14 -040010056 * lpfc_sli_abort_iocb - issue abort for all commands on a host/target/LUN
James Smarte59058c2008-08-24 21:49:00 -040010057 * @vport: Pointer to virtual port.
10058 * @pring: Pointer to driver SLI ring object.
10059 * @tgt_id: SCSI ID of the target.
10060 * @lun_id: LUN ID of the scsi device.
10061 * @abort_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
10062 *
10063 * This function sends an abort command for every SCSI command
10064 * associated with the given virtual port pending on the ring
10065 * filtered by lpfc_sli_validate_fcp_iocb function.
10066 * When abort_cmd == LPFC_CTX_LUN, the function sends abort only to the
10067 * FCP iocbs associated with lun specified by tgt_id and lun_id
10068 * parameters
10069 * When abort_cmd == LPFC_CTX_TGT, the function sends abort only to the
10070 * FCP iocbs associated with SCSI target specified by tgt_id parameter.
10071 * When abort_cmd == LPFC_CTX_HOST, the function sends abort to all
10072 * FCP iocbs associated with virtual port.
10073 * This function returns number of iocbs it failed to abort.
10074 * This function is called with no locks held.
10075 **/
dea31012005-04-17 16:05:31 -050010076int
James Smart51ef4c22007-08-02 11:10:31 -040010077lpfc_sli_abort_iocb(struct lpfc_vport *vport, struct lpfc_sli_ring *pring,
10078 uint16_t tgt_id, uint64_t lun_id, lpfc_ctx_cmd abort_cmd)
dea31012005-04-17 16:05:31 -050010079{
James Smart51ef4c22007-08-02 11:10:31 -040010080 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040010081 struct lpfc_iocbq *iocbq;
10082 struct lpfc_iocbq *abtsiocb;
dea31012005-04-17 16:05:31 -050010083 IOCB_t *cmd = NULL;
dea31012005-04-17 16:05:31 -050010084 int errcnt = 0, ret_val = 0;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040010085 int i;
dea31012005-04-17 16:05:31 -050010086
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040010087 for (i = 1; i <= phba->sli.last_iotag; i++) {
10088 iocbq = phba->sli.iocbq_lookup[i];
dea31012005-04-17 16:05:31 -050010089
James Smart51ef4c22007-08-02 11:10:31 -040010090 if (lpfc_sli_validate_fcp_iocb(iocbq, vport, tgt_id, lun_id,
James Smart2e0fef82007-06-17 19:56:36 -050010091 abort_cmd) != 0)
dea31012005-04-17 16:05:31 -050010092 continue;
10093
James Smartafbd8d82013-09-06 12:22:13 -040010094 /*
10095 * If the iocbq is already being aborted, don't take a second
10096 * action, but do count it.
10097 */
10098 if (iocbq->iocb_flag & LPFC_DRIVER_ABORTED)
10099 continue;
10100
dea31012005-04-17 16:05:31 -050010101 /* issue ABTS for this IOCB based on iotag */
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040010102 abtsiocb = lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -050010103 if (abtsiocb == NULL) {
10104 errcnt++;
10105 continue;
10106 }
dea31012005-04-17 16:05:31 -050010107
James Smartafbd8d82013-09-06 12:22:13 -040010108 /* indicate the IO is being aborted by the driver. */
10109 iocbq->iocb_flag |= LPFC_DRIVER_ABORTED;
10110
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040010111 cmd = &iocbq->iocb;
dea31012005-04-17 16:05:31 -050010112 abtsiocb->iocb.un.acxri.abortType = ABORT_TYPE_ABTS;
10113 abtsiocb->iocb.un.acxri.abortContextTag = cmd->ulpContext;
James Smartda0436e2009-05-22 14:51:39 -040010114 if (phba->sli_rev == LPFC_SLI_REV4)
10115 abtsiocb->iocb.un.acxri.abortIoTag = iocbq->sli4_xritag;
10116 else
10117 abtsiocb->iocb.un.acxri.abortIoTag = cmd->ulpIoTag;
dea31012005-04-17 16:05:31 -050010118 abtsiocb->iocb.ulpLe = 1;
10119 abtsiocb->iocb.ulpClass = cmd->ulpClass;
James Smartafbd8d82013-09-06 12:22:13 -040010120 abtsiocb->vport = vport;
dea31012005-04-17 16:05:31 -050010121
James Smart5ffc2662009-11-18 15:39:44 -050010122 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
10123 abtsiocb->fcp_wqidx = iocbq->fcp_wqidx;
James Smart341af102010-01-26 23:07:37 -050010124 if (iocbq->iocb_flag & LPFC_IO_FCP)
10125 abtsiocb->iocb_flag |= LPFC_USE_FCPWQIDX;
James Smart9bd2bff52014-09-03 12:57:30 -040010126 if (iocbq->iocb_flag & LPFC_IO_FOF)
10127 abtsiocb->iocb_flag |= LPFC_IO_FOF;
James Smart5ffc2662009-11-18 15:39:44 -050010128
James Smart2e0fef82007-06-17 19:56:36 -050010129 if (lpfc_is_link_up(phba))
dea31012005-04-17 16:05:31 -050010130 abtsiocb->iocb.ulpCommand = CMD_ABORT_XRI_CN;
10131 else
10132 abtsiocb->iocb.ulpCommand = CMD_CLOSE_XRI_CN;
10133
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -040010134 /* Setup callback routine and issue the command. */
10135 abtsiocb->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
James Smartda0436e2009-05-22 14:51:39 -040010136 ret_val = lpfc_sli_issue_iocb(phba, pring->ringno,
10137 abtsiocb, 0);
dea31012005-04-17 16:05:31 -050010138 if (ret_val == IOCB_ERROR) {
James Bottomley604a3e32005-10-29 10:28:33 -050010139 lpfc_sli_release_iocbq(phba, abtsiocb);
dea31012005-04-17 16:05:31 -050010140 errcnt++;
10141 continue;
10142 }
10143 }
10144
10145 return errcnt;
10146}
10147
James Smarte59058c2008-08-24 21:49:00 -040010148/**
James Smart98912dda2014-04-04 13:52:31 -040010149 * lpfc_sli_abort_taskmgmt - issue abort for all commands on a host/target/LUN
10150 * @vport: Pointer to virtual port.
10151 * @pring: Pointer to driver SLI ring object.
10152 * @tgt_id: SCSI ID of the target.
10153 * @lun_id: LUN ID of the scsi device.
10154 * @taskmgmt_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
10155 *
10156 * This function sends an abort command for every SCSI command
10157 * associated with the given virtual port pending on the ring
10158 * filtered by lpfc_sli_validate_fcp_iocb function.
10159 * When taskmgmt_cmd == LPFC_CTX_LUN, the function sends abort only to the
10160 * FCP iocbs associated with lun specified by tgt_id and lun_id
10161 * parameters
10162 * When taskmgmt_cmd == LPFC_CTX_TGT, the function sends abort only to the
10163 * FCP iocbs associated with SCSI target specified by tgt_id parameter.
10164 * When taskmgmt_cmd == LPFC_CTX_HOST, the function sends abort to all
10165 * FCP iocbs associated with virtual port.
10166 * This function returns number of iocbs it aborted .
10167 * This function is called with no locks held right after a taskmgmt
10168 * command is sent.
10169 **/
10170int
10171lpfc_sli_abort_taskmgmt(struct lpfc_vport *vport, struct lpfc_sli_ring *pring,
10172 uint16_t tgt_id, uint64_t lun_id, lpfc_ctx_cmd cmd)
10173{
10174 struct lpfc_hba *phba = vport->phba;
James Smart8c50d252014-09-03 12:58:16 -040010175 struct lpfc_scsi_buf *lpfc_cmd;
James Smart98912dda2014-04-04 13:52:31 -040010176 struct lpfc_iocbq *abtsiocbq;
James Smart8c50d252014-09-03 12:58:16 -040010177 struct lpfc_nodelist *ndlp;
James Smart98912dda2014-04-04 13:52:31 -040010178 struct lpfc_iocbq *iocbq;
10179 IOCB_t *icmd;
10180 int sum, i, ret_val;
10181 unsigned long iflags;
10182 struct lpfc_sli_ring *pring_s4;
10183 uint32_t ring_number;
10184
10185 spin_lock_irq(&phba->hbalock);
10186
10187 /* all I/Os are in process of being flushed */
10188 if (phba->hba_flag & HBA_FCP_IOQ_FLUSH) {
10189 spin_unlock_irq(&phba->hbalock);
10190 return 0;
10191 }
10192 sum = 0;
10193
10194 for (i = 1; i <= phba->sli.last_iotag; i++) {
10195 iocbq = phba->sli.iocbq_lookup[i];
10196
10197 if (lpfc_sli_validate_fcp_iocb(iocbq, vport, tgt_id, lun_id,
10198 cmd) != 0)
10199 continue;
10200
10201 /*
10202 * If the iocbq is already being aborted, don't take a second
10203 * action, but do count it.
10204 */
10205 if (iocbq->iocb_flag & LPFC_DRIVER_ABORTED)
10206 continue;
10207
10208 /* issue ABTS for this IOCB based on iotag */
10209 abtsiocbq = __lpfc_sli_get_iocbq(phba);
10210 if (abtsiocbq == NULL)
10211 continue;
10212
10213 icmd = &iocbq->iocb;
10214 abtsiocbq->iocb.un.acxri.abortType = ABORT_TYPE_ABTS;
10215 abtsiocbq->iocb.un.acxri.abortContextTag = icmd->ulpContext;
10216 if (phba->sli_rev == LPFC_SLI_REV4)
10217 abtsiocbq->iocb.un.acxri.abortIoTag =
10218 iocbq->sli4_xritag;
10219 else
10220 abtsiocbq->iocb.un.acxri.abortIoTag = icmd->ulpIoTag;
10221 abtsiocbq->iocb.ulpLe = 1;
10222 abtsiocbq->iocb.ulpClass = icmd->ulpClass;
10223 abtsiocbq->vport = vport;
10224
10225 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
10226 abtsiocbq->fcp_wqidx = iocbq->fcp_wqidx;
10227 if (iocbq->iocb_flag & LPFC_IO_FCP)
10228 abtsiocbq->iocb_flag |= LPFC_USE_FCPWQIDX;
James Smart9bd2bff52014-09-03 12:57:30 -040010229 if (iocbq->iocb_flag & LPFC_IO_FOF)
10230 abtsiocbq->iocb_flag |= LPFC_IO_FOF;
James Smart98912dda2014-04-04 13:52:31 -040010231
James Smart8c50d252014-09-03 12:58:16 -040010232 lpfc_cmd = container_of(iocbq, struct lpfc_scsi_buf, cur_iocbq);
10233 ndlp = lpfc_cmd->rdata->pnode;
10234
10235 if (lpfc_is_link_up(phba) &&
10236 (ndlp && ndlp->nlp_state == NLP_STE_MAPPED_NODE))
James Smart98912dda2014-04-04 13:52:31 -040010237 abtsiocbq->iocb.ulpCommand = CMD_ABORT_XRI_CN;
10238 else
10239 abtsiocbq->iocb.ulpCommand = CMD_CLOSE_XRI_CN;
10240
10241 /* Setup callback routine and issue the command. */
10242 abtsiocbq->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
10243
10244 /*
10245 * Indicate the IO is being aborted by the driver and set
10246 * the caller's flag into the aborted IO.
10247 */
10248 iocbq->iocb_flag |= LPFC_DRIVER_ABORTED;
10249
10250 if (phba->sli_rev == LPFC_SLI_REV4) {
10251 ring_number = MAX_SLI3_CONFIGURED_RINGS +
10252 iocbq->fcp_wqidx;
10253 pring_s4 = &phba->sli.ring[ring_number];
10254 /* Note: both hbalock and ring_lock must be set here */
10255 spin_lock_irqsave(&pring_s4->ring_lock, iflags);
10256 ret_val = __lpfc_sli_issue_iocb(phba, pring_s4->ringno,
10257 abtsiocbq, 0);
10258 spin_unlock_irqrestore(&pring_s4->ring_lock, iflags);
10259 } else {
10260 ret_val = __lpfc_sli_issue_iocb(phba, pring->ringno,
10261 abtsiocbq, 0);
10262 }
10263
10264
10265 if (ret_val == IOCB_ERROR)
10266 __lpfc_sli_release_iocbq(phba, abtsiocbq);
10267 else
10268 sum++;
10269 }
10270 spin_unlock_irq(&phba->hbalock);
10271 return sum;
10272}
10273
10274/**
James Smart3621a712009-04-06 18:47:14 -040010275 * lpfc_sli_wake_iocb_wait - lpfc_sli_issue_iocb_wait's completion handler
James Smarte59058c2008-08-24 21:49:00 -040010276 * @phba: Pointer to HBA context object.
10277 * @cmdiocbq: Pointer to command iocb.
10278 * @rspiocbq: Pointer to response iocb.
10279 *
10280 * This function is the completion handler for iocbs issued using
10281 * lpfc_sli_issue_iocb_wait function. This function is called by the
10282 * ring event handler function without any lock held. This function
10283 * can be called from both worker thread context and interrupt
10284 * context. This function also can be called from other thread which
10285 * cleans up the SLI layer objects.
10286 * This function copy the contents of the response iocb to the
10287 * response iocb memory object provided by the caller of
10288 * lpfc_sli_issue_iocb_wait and then wakes up the thread which
10289 * sleeps for the iocb completion.
10290 **/
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010291static void
10292lpfc_sli_wake_iocb_wait(struct lpfc_hba *phba,
10293 struct lpfc_iocbq *cmdiocbq,
10294 struct lpfc_iocbq *rspiocbq)
dea31012005-04-17 16:05:31 -050010295{
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010296 wait_queue_head_t *pdone_q;
10297 unsigned long iflags;
James Smart0f65ff62010-02-26 14:14:23 -050010298 struct lpfc_scsi_buf *lpfc_cmd;
dea31012005-04-17 16:05:31 -050010299
James Smart2e0fef82007-06-17 19:56:36 -050010300 spin_lock_irqsave(&phba->hbalock, iflags);
James Smart5a0916b2013-07-15 18:31:42 -040010301 if (cmdiocbq->iocb_flag & LPFC_IO_WAKE_TMO) {
10302
10303 /*
10304 * A time out has occurred for the iocb. If a time out
10305 * completion handler has been supplied, call it. Otherwise,
10306 * just free the iocbq.
10307 */
10308
10309 spin_unlock_irqrestore(&phba->hbalock, iflags);
10310 cmdiocbq->iocb_cmpl = cmdiocbq->wait_iocb_cmpl;
10311 cmdiocbq->wait_iocb_cmpl = NULL;
10312 if (cmdiocbq->iocb_cmpl)
10313 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq, NULL);
10314 else
10315 lpfc_sli_release_iocbq(phba, cmdiocbq);
10316 return;
10317 }
10318
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010319 cmdiocbq->iocb_flag |= LPFC_IO_WAKE;
10320 if (cmdiocbq->context2 && rspiocbq)
10321 memcpy(&((struct lpfc_iocbq *)cmdiocbq->context2)->iocb,
10322 &rspiocbq->iocb, sizeof(IOCB_t));
10323
James Smart0f65ff62010-02-26 14:14:23 -050010324 /* Set the exchange busy flag for task management commands */
10325 if ((cmdiocbq->iocb_flag & LPFC_IO_FCP) &&
10326 !(cmdiocbq->iocb_flag & LPFC_IO_LIBDFC)) {
10327 lpfc_cmd = container_of(cmdiocbq, struct lpfc_scsi_buf,
10328 cur_iocbq);
10329 lpfc_cmd->exch_busy = rspiocbq->iocb_flag & LPFC_EXCHANGE_BUSY;
10330 }
10331
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010332 pdone_q = cmdiocbq->context_un.wait_queue;
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010333 if (pdone_q)
10334 wake_up(pdone_q);
James Smart858c9f62007-06-17 19:56:39 -050010335 spin_unlock_irqrestore(&phba->hbalock, iflags);
dea31012005-04-17 16:05:31 -050010336 return;
10337}
10338
James Smarte59058c2008-08-24 21:49:00 -040010339/**
James Smartd11e31d2009-06-10 17:23:06 -040010340 * lpfc_chk_iocb_flg - Test IOCB flag with lock held.
10341 * @phba: Pointer to HBA context object..
10342 * @piocbq: Pointer to command iocb.
10343 * @flag: Flag to test.
10344 *
10345 * This routine grabs the hbalock and then test the iocb_flag to
10346 * see if the passed in flag is set.
10347 * Returns:
10348 * 1 if flag is set.
10349 * 0 if flag is not set.
10350 **/
10351static int
10352lpfc_chk_iocb_flg(struct lpfc_hba *phba,
10353 struct lpfc_iocbq *piocbq, uint32_t flag)
10354{
10355 unsigned long iflags;
10356 int ret;
10357
10358 spin_lock_irqsave(&phba->hbalock, iflags);
10359 ret = piocbq->iocb_flag & flag;
10360 spin_unlock_irqrestore(&phba->hbalock, iflags);
10361 return ret;
10362
10363}
10364
10365/**
James Smart3621a712009-04-06 18:47:14 -040010366 * lpfc_sli_issue_iocb_wait - Synchronous function to issue iocb commands
James Smarte59058c2008-08-24 21:49:00 -040010367 * @phba: Pointer to HBA context object..
10368 * @pring: Pointer to sli ring.
10369 * @piocb: Pointer to command iocb.
10370 * @prspiocbq: Pointer to response iocb.
10371 * @timeout: Timeout in number of seconds.
10372 *
10373 * This function issues the iocb to firmware and waits for the
James Smart5a0916b2013-07-15 18:31:42 -040010374 * iocb to complete. The iocb_cmpl field of the shall be used
10375 * to handle iocbs which time out. If the field is NULL, the
10376 * function shall free the iocbq structure. If more clean up is
10377 * needed, the caller is expected to provide a completion function
10378 * that will provide the needed clean up. If the iocb command is
10379 * not completed within timeout seconds, the function will either
10380 * free the iocbq structure (if iocb_cmpl == NULL) or execute the
10381 * completion function set in the iocb_cmpl field and then return
10382 * a status of IOCB_TIMEDOUT. The caller should not free the iocb
10383 * resources if this function returns IOCB_TIMEDOUT.
James Smarte59058c2008-08-24 21:49:00 -040010384 * The function waits for the iocb completion using an
10385 * non-interruptible wait.
10386 * This function will sleep while waiting for iocb completion.
10387 * So, this function should not be called from any context which
10388 * does not allow sleeping. Due to the same reason, this function
10389 * cannot be called with interrupt disabled.
10390 * This function assumes that the iocb completions occur while
10391 * this function sleep. So, this function cannot be called from
10392 * the thread which process iocb completion for this ring.
10393 * This function clears the iocb_flag of the iocb object before
10394 * issuing the iocb and the iocb completion handler sets this
10395 * flag and wakes this thread when the iocb completes.
10396 * The contents of the response iocb will be copied to prspiocbq
10397 * by the completion handler when the command completes.
10398 * This function returns IOCB_SUCCESS when success.
10399 * This function is called with no lock held.
10400 **/
dea31012005-04-17 16:05:31 -050010401int
James Smart2e0fef82007-06-17 19:56:36 -050010402lpfc_sli_issue_iocb_wait(struct lpfc_hba *phba,
James Smartda0436e2009-05-22 14:51:39 -040010403 uint32_t ring_number,
James Smart2e0fef82007-06-17 19:56:36 -050010404 struct lpfc_iocbq *piocb,
10405 struct lpfc_iocbq *prspiocbq,
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010406 uint32_t timeout)
dea31012005-04-17 16:05:31 -050010407{
Peter Zijlstra7259f0d2006-10-29 22:46:36 -080010408 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010409 long timeleft, timeout_req = 0;
10410 int retval = IOCB_SUCCESS;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050010411 uint32_t creg_val;
James Smart0e9bb8d2013-03-01 16:35:12 -050010412 struct lpfc_iocbq *iocb;
10413 int txq_cnt = 0;
10414 int txcmplq_cnt = 0;
James Smart2a9bf3d2010-06-07 15:24:45 -040010415 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
James Smart5a0916b2013-07-15 18:31:42 -040010416 unsigned long iflags;
10417 bool iocb_completed = true;
10418
dea31012005-04-17 16:05:31 -050010419 /*
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010420 * If the caller has provided a response iocbq buffer, then context2
10421 * is NULL or its an error.
dea31012005-04-17 16:05:31 -050010422 */
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010423 if (prspiocbq) {
10424 if (piocb->context2)
10425 return IOCB_ERROR;
10426 piocb->context2 = prspiocbq;
dea31012005-04-17 16:05:31 -050010427 }
10428
James Smart5a0916b2013-07-15 18:31:42 -040010429 piocb->wait_iocb_cmpl = piocb->iocb_cmpl;
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010430 piocb->iocb_cmpl = lpfc_sli_wake_iocb_wait;
10431 piocb->context_un.wait_queue = &done_q;
James Smart5a0916b2013-07-15 18:31:42 -040010432 piocb->iocb_flag &= ~(LPFC_IO_WAKE | LPFC_IO_WAKE_TMO);
dea31012005-04-17 16:05:31 -050010433
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050010434 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
James Smart9940b972011-03-11 16:06:12 -050010435 if (lpfc_readl(phba->HCregaddr, &creg_val))
10436 return IOCB_ERROR;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050010437 creg_val |= (HC_R0INT_ENA << LPFC_FCP_RING);
10438 writel(creg_val, phba->HCregaddr);
10439 readl(phba->HCregaddr); /* flush */
10440 }
10441
James Smart2a9bf3d2010-06-07 15:24:45 -040010442 retval = lpfc_sli_issue_iocb(phba, ring_number, piocb,
10443 SLI_IOCB_RET_IOCB);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010444 if (retval == IOCB_SUCCESS) {
James Smart256ec0d2013-04-17 20:14:58 -040010445 timeout_req = msecs_to_jiffies(timeout * 1000);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010446 timeleft = wait_event_timeout(done_q,
James Smartd11e31d2009-06-10 17:23:06 -040010447 lpfc_chk_iocb_flg(phba, piocb, LPFC_IO_WAKE),
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010448 timeout_req);
James Smart5a0916b2013-07-15 18:31:42 -040010449 spin_lock_irqsave(&phba->hbalock, iflags);
10450 if (!(piocb->iocb_flag & LPFC_IO_WAKE)) {
dea31012005-04-17 16:05:31 -050010451
James Smart5a0916b2013-07-15 18:31:42 -040010452 /*
10453 * IOCB timed out. Inform the wake iocb wait
10454 * completion function and set local status
10455 */
10456
10457 iocb_completed = false;
10458 piocb->iocb_flag |= LPFC_IO_WAKE_TMO;
10459 }
10460 spin_unlock_irqrestore(&phba->hbalock, iflags);
10461 if (iocb_completed) {
James Smart7054a602007-04-25 09:52:34 -040010462 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -040010463 "0331 IOCB wake signaled\n");
James Smart53151bb2013-10-10 12:24:07 -040010464 /* Note: we are not indicating if the IOCB has a success
10465 * status or not - that's for the caller to check.
10466 * IOCB_SUCCESS means just that the command was sent and
10467 * completed. Not that it completed successfully.
10468 * */
James Smart7054a602007-04-25 09:52:34 -040010469 } else if (timeleft == 0) {
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010470 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -040010471 "0338 IOCB wait timeout error - no "
10472 "wake response Data x%x\n", timeout);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010473 retval = IOCB_TIMEDOUT;
James Smart7054a602007-04-25 09:52:34 -040010474 } else {
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010475 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -040010476 "0330 IOCB wake NOT set, "
10477 "Data x%x x%lx\n",
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010478 timeout, (timeleft / jiffies));
10479 retval = IOCB_TIMEDOUT;
dea31012005-04-17 16:05:31 -050010480 }
James Smart2a9bf3d2010-06-07 15:24:45 -040010481 } else if (retval == IOCB_BUSY) {
James Smart0e9bb8d2013-03-01 16:35:12 -050010482 if (phba->cfg_log_verbose & LOG_SLI) {
10483 list_for_each_entry(iocb, &pring->txq, list) {
10484 txq_cnt++;
10485 }
10486 list_for_each_entry(iocb, &pring->txcmplq, list) {
10487 txcmplq_cnt++;
10488 }
10489 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
10490 "2818 Max IOCBs %d txq cnt %d txcmplq cnt %d\n",
10491 phba->iocb_cnt, txq_cnt, txcmplq_cnt);
10492 }
James Smart2a9bf3d2010-06-07 15:24:45 -040010493 return retval;
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010494 } else {
10495 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smartd7c255b2008-08-24 21:50:00 -040010496 "0332 IOCB wait issue failed, Data x%x\n",
James Smarte8b62012007-08-02 11:10:09 -040010497 retval);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010498 retval = IOCB_ERROR;
dea31012005-04-17 16:05:31 -050010499 }
10500
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050010501 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
James Smart9940b972011-03-11 16:06:12 -050010502 if (lpfc_readl(phba->HCregaddr, &creg_val))
10503 return IOCB_ERROR;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050010504 creg_val &= ~(HC_R0INT_ENA << LPFC_FCP_RING);
10505 writel(creg_val, phba->HCregaddr);
10506 readl(phba->HCregaddr); /* flush */
10507 }
10508
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010509 if (prspiocbq)
10510 piocb->context2 = NULL;
10511
10512 piocb->context_un.wait_queue = NULL;
10513 piocb->iocb_cmpl = NULL;
dea31012005-04-17 16:05:31 -050010514 return retval;
10515}
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010516
James Smarte59058c2008-08-24 21:49:00 -040010517/**
James Smart3621a712009-04-06 18:47:14 -040010518 * lpfc_sli_issue_mbox_wait - Synchronous function to issue mailbox
James Smarte59058c2008-08-24 21:49:00 -040010519 * @phba: Pointer to HBA context object.
10520 * @pmboxq: Pointer to driver mailbox object.
10521 * @timeout: Timeout in number of seconds.
10522 *
10523 * This function issues the mailbox to firmware and waits for the
10524 * mailbox command to complete. If the mailbox command is not
10525 * completed within timeout seconds, it returns MBX_TIMEOUT.
10526 * The function waits for the mailbox completion using an
10527 * interruptible wait. If the thread is woken up due to a
10528 * signal, MBX_TIMEOUT error is returned to the caller. Caller
10529 * should not free the mailbox resources, if this function returns
10530 * MBX_TIMEOUT.
10531 * This function will sleep while waiting for mailbox completion.
10532 * So, this function should not be called from any context which
10533 * does not allow sleeping. Due to the same reason, this function
10534 * cannot be called with interrupt disabled.
10535 * This function assumes that the mailbox completion occurs while
10536 * this function sleep. So, this function cannot be called from
10537 * the worker thread which processes mailbox completion.
10538 * This function is called in the context of HBA management
10539 * applications.
10540 * This function returns MBX_SUCCESS when successful.
10541 * This function is called with no lock held.
10542 **/
dea31012005-04-17 16:05:31 -050010543int
James Smart2e0fef82007-06-17 19:56:36 -050010544lpfc_sli_issue_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq,
dea31012005-04-17 16:05:31 -050010545 uint32_t timeout)
10546{
Peter Zijlstra7259f0d2006-10-29 22:46:36 -080010547 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
James Smartb230b8a2013-05-31 17:05:27 -040010548 MAILBOX_t *mb = NULL;
dea31012005-04-17 16:05:31 -050010549 int retval;
James Smart858c9f62007-06-17 19:56:39 -050010550 unsigned long flag;
dea31012005-04-17 16:05:31 -050010551
James Smartb230b8a2013-05-31 17:05:27 -040010552 /* The caller might set context1 for extended buffer */
James Smart98c9ea52007-10-27 13:37:33 -040010553 if (pmboxq->context1)
James Smartb230b8a2013-05-31 17:05:27 -040010554 mb = (MAILBOX_t *)pmboxq->context1;
dea31012005-04-17 16:05:31 -050010555
James Smart495a7142008-06-14 22:52:59 -040010556 pmboxq->mbox_flag &= ~LPFC_MBX_WAKE;
dea31012005-04-17 16:05:31 -050010557 /* setup wake call as IOCB callback */
10558 pmboxq->mbox_cmpl = lpfc_sli_wake_mbox_wait;
10559 /* setup context field to pass wait_queue pointer to wake function */
10560 pmboxq->context1 = &done_q;
10561
dea31012005-04-17 16:05:31 -050010562 /* now issue the command */
10563 retval = lpfc_sli_issue_mbox(phba, pmboxq, MBX_NOWAIT);
dea31012005-04-17 16:05:31 -050010564 if (retval == MBX_BUSY || retval == MBX_SUCCESS) {
James Smart7054a602007-04-25 09:52:34 -040010565 wait_event_interruptible_timeout(done_q,
10566 pmboxq->mbox_flag & LPFC_MBX_WAKE,
James Smart256ec0d2013-04-17 20:14:58 -040010567 msecs_to_jiffies(timeout * 1000));
James Smart7054a602007-04-25 09:52:34 -040010568
James Smart858c9f62007-06-17 19:56:39 -050010569 spin_lock_irqsave(&phba->hbalock, flag);
James Smartb230b8a2013-05-31 17:05:27 -040010570 /* restore the possible extended buffer for free resource */
10571 pmboxq->context1 = (uint8_t *)mb;
James Smart7054a602007-04-25 09:52:34 -040010572 /*
10573 * if LPFC_MBX_WAKE flag is set the mailbox is completed
10574 * else do not free the resources.
10575 */
James Smartd7c47992010-06-08 18:31:54 -040010576 if (pmboxq->mbox_flag & LPFC_MBX_WAKE) {
dea31012005-04-17 16:05:31 -050010577 retval = MBX_SUCCESS;
James Smartd7c47992010-06-08 18:31:54 -040010578 } else {
James Smart7054a602007-04-25 09:52:34 -040010579 retval = MBX_TIMEOUT;
James Smart858c9f62007-06-17 19:56:39 -050010580 pmboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
10581 }
10582 spin_unlock_irqrestore(&phba->hbalock, flag);
James Smartb230b8a2013-05-31 17:05:27 -040010583 } else {
10584 /* restore the possible extended buffer for free resource */
10585 pmboxq->context1 = (uint8_t *)mb;
dea31012005-04-17 16:05:31 -050010586 }
10587
dea31012005-04-17 16:05:31 -050010588 return retval;
10589}
10590
James Smarte59058c2008-08-24 21:49:00 -040010591/**
James Smart3772a992009-05-22 14:50:54 -040010592 * lpfc_sli_mbox_sys_shutdown - shutdown mailbox command sub-system
James Smarte59058c2008-08-24 21:49:00 -040010593 * @phba: Pointer to HBA context.
10594 *
James Smart3772a992009-05-22 14:50:54 -040010595 * This function is called to shutdown the driver's mailbox sub-system.
10596 * It first marks the mailbox sub-system is in a block state to prevent
10597 * the asynchronous mailbox command from issued off the pending mailbox
10598 * command queue. If the mailbox command sub-system shutdown is due to
10599 * HBA error conditions such as EEH or ERATT, this routine shall invoke
10600 * the mailbox sub-system flush routine to forcefully bring down the
10601 * mailbox sub-system. Otherwise, if it is due to normal condition (such
10602 * as with offline or HBA function reset), this routine will wait for the
10603 * outstanding mailbox command to complete before invoking the mailbox
10604 * sub-system flush routine to gracefully bring down mailbox sub-system.
James Smarte59058c2008-08-24 21:49:00 -040010605 **/
James Smart3772a992009-05-22 14:50:54 -040010606void
James Smart618a5232012-06-12 13:54:36 -040010607lpfc_sli_mbox_sys_shutdown(struct lpfc_hba *phba, int mbx_action)
James Smartb4c02652006-07-06 15:50:43 -040010608{
James Smart3772a992009-05-22 14:50:54 -040010609 struct lpfc_sli *psli = &phba->sli;
James Smart3772a992009-05-22 14:50:54 -040010610 unsigned long timeout;
10611
James Smart618a5232012-06-12 13:54:36 -040010612 if (mbx_action == LPFC_MBX_NO_WAIT) {
10613 /* delay 100ms for port state */
10614 msleep(100);
10615 lpfc_sli_mbox_sys_flush(phba);
10616 return;
10617 }
James Smarta183a152011-10-10 21:32:43 -040010618 timeout = msecs_to_jiffies(LPFC_MBOX_TMO * 1000) + jiffies;
James Smartd7069f02012-03-01 22:36:29 -050010619
James Smart3772a992009-05-22 14:50:54 -040010620 spin_lock_irq(&phba->hbalock);
10621 psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
James Smart3772a992009-05-22 14:50:54 -040010622
10623 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
James Smart3772a992009-05-22 14:50:54 -040010624 /* Determine how long we might wait for the active mailbox
10625 * command to be gracefully completed by firmware.
10626 */
James Smarta183a152011-10-10 21:32:43 -040010627 if (phba->sli.mbox_active)
10628 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
10629 phba->sli.mbox_active) *
10630 1000) + jiffies;
10631 spin_unlock_irq(&phba->hbalock);
10632
James Smart3772a992009-05-22 14:50:54 -040010633 while (phba->sli.mbox_active) {
10634 /* Check active mailbox complete status every 2ms */
10635 msleep(2);
10636 if (time_after(jiffies, timeout))
10637 /* Timeout, let the mailbox flush routine to
10638 * forcefully release active mailbox command
10639 */
10640 break;
10641 }
James Smartd7069f02012-03-01 22:36:29 -050010642 } else
10643 spin_unlock_irq(&phba->hbalock);
10644
James Smart3772a992009-05-22 14:50:54 -040010645 lpfc_sli_mbox_sys_flush(phba);
10646}
10647
10648/**
10649 * lpfc_sli_eratt_read - read sli-3 error attention events
10650 * @phba: Pointer to HBA context.
10651 *
10652 * This function is called to read the SLI3 device error attention registers
10653 * for possible error attention events. The caller must hold the hostlock
10654 * with spin_lock_irq().
10655 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030010656 * This function returns 1 when there is Error Attention in the Host Attention
James Smart3772a992009-05-22 14:50:54 -040010657 * Register and returns 0 otherwise.
10658 **/
10659static int
10660lpfc_sli_eratt_read(struct lpfc_hba *phba)
10661{
James Smarted957682007-06-17 19:56:37 -050010662 uint32_t ha_copy;
James Smartb4c02652006-07-06 15:50:43 -040010663
James Smart3772a992009-05-22 14:50:54 -040010664 /* Read chip Host Attention (HA) register */
James Smart9940b972011-03-11 16:06:12 -050010665 if (lpfc_readl(phba->HAregaddr, &ha_copy))
10666 goto unplug_err;
10667
James Smart3772a992009-05-22 14:50:54 -040010668 if (ha_copy & HA_ERATT) {
10669 /* Read host status register to retrieve error event */
James Smart9940b972011-03-11 16:06:12 -050010670 if (lpfc_sli_read_hs(phba))
10671 goto unplug_err;
James Smartb4c02652006-07-06 15:50:43 -040010672
James Smart3772a992009-05-22 14:50:54 -040010673 /* Check if there is a deferred error condition is active */
10674 if ((HS_FFER1 & phba->work_hs) &&
10675 ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
James Smartdcf2a4e2010-09-29 11:18:53 -040010676 HS_FFER6 | HS_FFER7 | HS_FFER8) & phba->work_hs)) {
James Smart3772a992009-05-22 14:50:54 -040010677 phba->hba_flag |= DEFER_ERATT;
James Smart3772a992009-05-22 14:50:54 -040010678 /* Clear all interrupt enable conditions */
10679 writel(0, phba->HCregaddr);
10680 readl(phba->HCregaddr);
10681 }
10682
10683 /* Set the driver HA work bitmap */
James Smart3772a992009-05-22 14:50:54 -040010684 phba->work_ha |= HA_ERATT;
10685 /* Indicate polling handles this ERATT */
10686 phba->hba_flag |= HBA_ERATT_HANDLED;
James Smart3772a992009-05-22 14:50:54 -040010687 return 1;
James Smartb4c02652006-07-06 15:50:43 -040010688 }
James Smart3772a992009-05-22 14:50:54 -040010689 return 0;
James Smart9940b972011-03-11 16:06:12 -050010690
10691unplug_err:
10692 /* Set the driver HS work bitmap */
10693 phba->work_hs |= UNPLUG_ERR;
10694 /* Set the driver HA work bitmap */
10695 phba->work_ha |= HA_ERATT;
10696 /* Indicate polling handles this ERATT */
10697 phba->hba_flag |= HBA_ERATT_HANDLED;
10698 return 1;
James Smartb4c02652006-07-06 15:50:43 -040010699}
10700
James Smarte59058c2008-08-24 21:49:00 -040010701/**
James Smartda0436e2009-05-22 14:51:39 -040010702 * lpfc_sli4_eratt_read - read sli-4 error attention events
10703 * @phba: Pointer to HBA context.
10704 *
10705 * This function is called to read the SLI4 device error attention registers
10706 * for possible error attention events. The caller must hold the hostlock
10707 * with spin_lock_irq().
10708 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030010709 * This function returns 1 when there is Error Attention in the Host Attention
James Smartda0436e2009-05-22 14:51:39 -040010710 * Register and returns 0 otherwise.
10711 **/
10712static int
10713lpfc_sli4_eratt_read(struct lpfc_hba *phba)
10714{
10715 uint32_t uerr_sta_hi, uerr_sta_lo;
James Smart2fcee4b2010-12-15 17:57:46 -050010716 uint32_t if_type, portsmphr;
10717 struct lpfc_register portstat_reg;
James Smartda0436e2009-05-22 14:51:39 -040010718
James Smart2fcee4b2010-12-15 17:57:46 -050010719 /*
10720 * For now, use the SLI4 device internal unrecoverable error
James Smartda0436e2009-05-22 14:51:39 -040010721 * registers for error attention. This can be changed later.
10722 */
James Smart2fcee4b2010-12-15 17:57:46 -050010723 if_type = bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf);
10724 switch (if_type) {
10725 case LPFC_SLI_INTF_IF_TYPE_0:
James Smart9940b972011-03-11 16:06:12 -050010726 if (lpfc_readl(phba->sli4_hba.u.if_type0.UERRLOregaddr,
10727 &uerr_sta_lo) ||
10728 lpfc_readl(phba->sli4_hba.u.if_type0.UERRHIregaddr,
10729 &uerr_sta_hi)) {
10730 phba->work_hs |= UNPLUG_ERR;
10731 phba->work_ha |= HA_ERATT;
10732 phba->hba_flag |= HBA_ERATT_HANDLED;
10733 return 1;
10734 }
James Smart2fcee4b2010-12-15 17:57:46 -050010735 if ((~phba->sli4_hba.ue_mask_lo & uerr_sta_lo) ||
10736 (~phba->sli4_hba.ue_mask_hi & uerr_sta_hi)) {
10737 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10738 "1423 HBA Unrecoverable error: "
10739 "uerr_lo_reg=0x%x, uerr_hi_reg=0x%x, "
10740 "ue_mask_lo_reg=0x%x, "
10741 "ue_mask_hi_reg=0x%x\n",
10742 uerr_sta_lo, uerr_sta_hi,
10743 phba->sli4_hba.ue_mask_lo,
10744 phba->sli4_hba.ue_mask_hi);
10745 phba->work_status[0] = uerr_sta_lo;
10746 phba->work_status[1] = uerr_sta_hi;
10747 phba->work_ha |= HA_ERATT;
10748 phba->hba_flag |= HBA_ERATT_HANDLED;
10749 return 1;
10750 }
10751 break;
10752 case LPFC_SLI_INTF_IF_TYPE_2:
James Smart9940b972011-03-11 16:06:12 -050010753 if (lpfc_readl(phba->sli4_hba.u.if_type2.STATUSregaddr,
10754 &portstat_reg.word0) ||
10755 lpfc_readl(phba->sli4_hba.PSMPHRregaddr,
10756 &portsmphr)){
10757 phba->work_hs |= UNPLUG_ERR;
10758 phba->work_ha |= HA_ERATT;
10759 phba->hba_flag |= HBA_ERATT_HANDLED;
10760 return 1;
10761 }
James Smart2fcee4b2010-12-15 17:57:46 -050010762 if (bf_get(lpfc_sliport_status_err, &portstat_reg)) {
10763 phba->work_status[0] =
10764 readl(phba->sli4_hba.u.if_type2.ERR1regaddr);
10765 phba->work_status[1] =
10766 readl(phba->sli4_hba.u.if_type2.ERR2regaddr);
10767 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart2e90f4b2011-12-13 13:22:37 -050010768 "2885 Port Status Event: "
James Smart2fcee4b2010-12-15 17:57:46 -050010769 "port status reg 0x%x, "
10770 "port smphr reg 0x%x, "
10771 "error 1=0x%x, error 2=0x%x\n",
10772 portstat_reg.word0,
10773 portsmphr,
10774 phba->work_status[0],
10775 phba->work_status[1]);
10776 phba->work_ha |= HA_ERATT;
10777 phba->hba_flag |= HBA_ERATT_HANDLED;
10778 return 1;
10779 }
10780 break;
10781 case LPFC_SLI_INTF_IF_TYPE_1:
10782 default:
James Smarta747c9c2009-11-18 15:41:10 -050010783 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart2fcee4b2010-12-15 17:57:46 -050010784 "2886 HBA Error Attention on unsupported "
10785 "if type %d.", if_type);
James Smarta747c9c2009-11-18 15:41:10 -050010786 return 1;
James Smartda0436e2009-05-22 14:51:39 -040010787 }
James Smart2fcee4b2010-12-15 17:57:46 -050010788
James Smartda0436e2009-05-22 14:51:39 -040010789 return 0;
10790}
10791
10792/**
James Smart3621a712009-04-06 18:47:14 -040010793 * lpfc_sli_check_eratt - check error attention events
James Smart93996272008-08-24 21:50:30 -040010794 * @phba: Pointer to HBA context.
10795 *
James Smart3772a992009-05-22 14:50:54 -040010796 * This function is called from timer soft interrupt context to check HBA's
James Smart93996272008-08-24 21:50:30 -040010797 * error attention register bit for error attention events.
10798 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030010799 * This function returns 1 when there is Error Attention in the Host Attention
James Smart93996272008-08-24 21:50:30 -040010800 * Register and returns 0 otherwise.
10801 **/
10802int
10803lpfc_sli_check_eratt(struct lpfc_hba *phba)
10804{
10805 uint32_t ha_copy;
10806
10807 /* If somebody is waiting to handle an eratt, don't process it
10808 * here. The brdkill function will do this.
10809 */
10810 if (phba->link_flag & LS_IGNORE_ERATT)
10811 return 0;
10812
10813 /* Check if interrupt handler handles this ERATT */
10814 spin_lock_irq(&phba->hbalock);
10815 if (phba->hba_flag & HBA_ERATT_HANDLED) {
10816 /* Interrupt handler has handled ERATT */
10817 spin_unlock_irq(&phba->hbalock);
10818 return 0;
10819 }
10820
James Smarta257bf92009-04-06 18:48:10 -040010821 /*
10822 * If there is deferred error attention, do not check for error
10823 * attention
10824 */
10825 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
10826 spin_unlock_irq(&phba->hbalock);
10827 return 0;
10828 }
10829
James Smart3772a992009-05-22 14:50:54 -040010830 /* If PCI channel is offline, don't process it */
10831 if (unlikely(pci_channel_offline(phba->pcidev))) {
James Smart93996272008-08-24 21:50:30 -040010832 spin_unlock_irq(&phba->hbalock);
James Smart3772a992009-05-22 14:50:54 -040010833 return 0;
10834 }
10835
10836 switch (phba->sli_rev) {
10837 case LPFC_SLI_REV2:
10838 case LPFC_SLI_REV3:
10839 /* Read chip Host Attention (HA) register */
10840 ha_copy = lpfc_sli_eratt_read(phba);
10841 break;
James Smartda0436e2009-05-22 14:51:39 -040010842 case LPFC_SLI_REV4:
James Smart2fcee4b2010-12-15 17:57:46 -050010843 /* Read device Uncoverable Error (UERR) registers */
James Smartda0436e2009-05-22 14:51:39 -040010844 ha_copy = lpfc_sli4_eratt_read(phba);
10845 break;
James Smart3772a992009-05-22 14:50:54 -040010846 default:
10847 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10848 "0299 Invalid SLI revision (%d)\n",
10849 phba->sli_rev);
10850 ha_copy = 0;
10851 break;
James Smart93996272008-08-24 21:50:30 -040010852 }
10853 spin_unlock_irq(&phba->hbalock);
James Smart3772a992009-05-22 14:50:54 -040010854
10855 return ha_copy;
10856}
10857
10858/**
10859 * lpfc_intr_state_check - Check device state for interrupt handling
10860 * @phba: Pointer to HBA context.
10861 *
10862 * This inline routine checks whether a device or its PCI slot is in a state
10863 * that the interrupt should be handled.
10864 *
10865 * This function returns 0 if the device or the PCI slot is in a state that
10866 * interrupt should be handled, otherwise -EIO.
10867 */
10868static inline int
10869lpfc_intr_state_check(struct lpfc_hba *phba)
10870{
10871 /* If the pci channel is offline, ignore all the interrupts */
10872 if (unlikely(pci_channel_offline(phba->pcidev)))
10873 return -EIO;
10874
10875 /* Update device level interrupt statistics */
10876 phba->sli.slistat.sli_intr++;
10877
10878 /* Ignore all interrupts during initialization. */
10879 if (unlikely(phba->link_state < LPFC_LINK_DOWN))
10880 return -EIO;
10881
James Smart93996272008-08-24 21:50:30 -040010882 return 0;
10883}
10884
10885/**
James Smart3772a992009-05-22 14:50:54 -040010886 * lpfc_sli_sp_intr_handler - Slow-path interrupt handler to SLI-3 device
James Smarte59058c2008-08-24 21:49:00 -040010887 * @irq: Interrupt number.
10888 * @dev_id: The device context pointer.
10889 *
James Smart93996272008-08-24 21:50:30 -040010890 * This function is directly called from the PCI layer as an interrupt
James Smart3772a992009-05-22 14:50:54 -040010891 * service routine when device with SLI-3 interface spec is enabled with
10892 * MSI-X multi-message interrupt mode and there are slow-path events in
10893 * the HBA. However, when the device is enabled with either MSI or Pin-IRQ
10894 * interrupt mode, this function is called as part of the device-level
10895 * interrupt handler. When the PCI slot is in error recovery or the HBA
10896 * is undergoing initialization, the interrupt handler will not process
10897 * the interrupt. The link attention and ELS ring attention events are
10898 * handled by the worker thread. The interrupt handler signals the worker
10899 * thread and returns for these events. This function is called without
10900 * any lock held. It gets the hbalock to access and update SLI data
James Smart93996272008-08-24 21:50:30 -040010901 * structures.
10902 *
10903 * This function returns IRQ_HANDLED when interrupt is handled else it
10904 * returns IRQ_NONE.
James Smarte59058c2008-08-24 21:49:00 -040010905 **/
dea31012005-04-17 16:05:31 -050010906irqreturn_t
James Smart3772a992009-05-22 14:50:54 -040010907lpfc_sli_sp_intr_handler(int irq, void *dev_id)
dea31012005-04-17 16:05:31 -050010908{
James Smart2e0fef82007-06-17 19:56:36 -050010909 struct lpfc_hba *phba;
James Smarta747c9c2009-11-18 15:41:10 -050010910 uint32_t ha_copy, hc_copy;
dea31012005-04-17 16:05:31 -050010911 uint32_t work_ha_copy;
10912 unsigned long status;
James Smart5b75da22008-12-04 22:39:35 -050010913 unsigned long iflag;
dea31012005-04-17 16:05:31 -050010914 uint32_t control;
10915
James Smart92d7f7b2007-06-17 19:56:38 -050010916 MAILBOX_t *mbox, *pmbox;
James Smart858c9f62007-06-17 19:56:39 -050010917 struct lpfc_vport *vport;
10918 struct lpfc_nodelist *ndlp;
10919 struct lpfc_dmabuf *mp;
James Smart92d7f7b2007-06-17 19:56:38 -050010920 LPFC_MBOXQ_t *pmb;
10921 int rc;
10922
dea31012005-04-17 16:05:31 -050010923 /*
10924 * Get the driver's phba structure from the dev_id and
10925 * assume the HBA is not interrupting.
10926 */
James Smart93996272008-08-24 21:50:30 -040010927 phba = (struct lpfc_hba *)dev_id;
dea31012005-04-17 16:05:31 -050010928
10929 if (unlikely(!phba))
10930 return IRQ_NONE;
10931
dea31012005-04-17 16:05:31 -050010932 /*
James Smart93996272008-08-24 21:50:30 -040010933 * Stuff needs to be attented to when this function is invoked as an
10934 * individual interrupt handler in MSI-X multi-message interrupt mode
dea31012005-04-17 16:05:31 -050010935 */
James Smart93996272008-08-24 21:50:30 -040010936 if (phba->intr_type == MSIX) {
James Smart3772a992009-05-22 14:50:54 -040010937 /* Check device state for handling interrupt */
10938 if (lpfc_intr_state_check(phba))
James Smart93996272008-08-24 21:50:30 -040010939 return IRQ_NONE;
10940 /* Need to read HA REG for slow-path events */
James Smart5b75da22008-12-04 22:39:35 -050010941 spin_lock_irqsave(&phba->hbalock, iflag);
James Smart9940b972011-03-11 16:06:12 -050010942 if (lpfc_readl(phba->HAregaddr, &ha_copy))
10943 goto unplug_error;
James Smart93996272008-08-24 21:50:30 -040010944 /* If somebody is waiting to handle an eratt don't process it
10945 * here. The brdkill function will do this.
10946 */
10947 if (phba->link_flag & LS_IGNORE_ERATT)
10948 ha_copy &= ~HA_ERATT;
10949 /* Check the need for handling ERATT in interrupt handler */
10950 if (ha_copy & HA_ERATT) {
10951 if (phba->hba_flag & HBA_ERATT_HANDLED)
10952 /* ERATT polling has handled ERATT */
10953 ha_copy &= ~HA_ERATT;
10954 else
10955 /* Indicate interrupt handler handles ERATT */
10956 phba->hba_flag |= HBA_ERATT_HANDLED;
10957 }
James Smarta257bf92009-04-06 18:48:10 -040010958
10959 /*
10960 * If there is deferred error attention, do not check for any
10961 * interrupt.
10962 */
10963 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
James Smart3772a992009-05-22 14:50:54 -040010964 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smarta257bf92009-04-06 18:48:10 -040010965 return IRQ_NONE;
10966 }
10967
James Smart93996272008-08-24 21:50:30 -040010968 /* Clear up only attention source related to slow-path */
James Smart9940b972011-03-11 16:06:12 -050010969 if (lpfc_readl(phba->HCregaddr, &hc_copy))
10970 goto unplug_error;
10971
James Smarta747c9c2009-11-18 15:41:10 -050010972 writel(hc_copy & ~(HC_MBINT_ENA | HC_R2INT_ENA |
10973 HC_LAINT_ENA | HC_ERINT_ENA),
10974 phba->HCregaddr);
James Smart93996272008-08-24 21:50:30 -040010975 writel((ha_copy & (HA_MBATT | HA_R2_CLR_MSK)),
10976 phba->HAregaddr);
James Smarta747c9c2009-11-18 15:41:10 -050010977 writel(hc_copy, phba->HCregaddr);
James Smart93996272008-08-24 21:50:30 -040010978 readl(phba->HAregaddr); /* flush */
James Smart5b75da22008-12-04 22:39:35 -050010979 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart93996272008-08-24 21:50:30 -040010980 } else
10981 ha_copy = phba->ha_copy;
dea31012005-04-17 16:05:31 -050010982
dea31012005-04-17 16:05:31 -050010983 work_ha_copy = ha_copy & phba->work_ha_mask;
10984
James Smart93996272008-08-24 21:50:30 -040010985 if (work_ha_copy) {
dea31012005-04-17 16:05:31 -050010986 if (work_ha_copy & HA_LATT) {
10987 if (phba->sli.sli_flag & LPFC_PROCESS_LA) {
10988 /*
10989 * Turn off Link Attention interrupts
10990 * until CLEAR_LA done
10991 */
James Smart5b75da22008-12-04 22:39:35 -050010992 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -050010993 phba->sli.sli_flag &= ~LPFC_PROCESS_LA;
James Smart9940b972011-03-11 16:06:12 -050010994 if (lpfc_readl(phba->HCregaddr, &control))
10995 goto unplug_error;
dea31012005-04-17 16:05:31 -050010996 control &= ~HC_LAINT_ENA;
10997 writel(control, phba->HCregaddr);
10998 readl(phba->HCregaddr); /* flush */
James Smart5b75da22008-12-04 22:39:35 -050010999 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -050011000 }
11001 else
11002 work_ha_copy &= ~HA_LATT;
11003 }
11004
James Smart93996272008-08-24 21:50:30 -040011005 if (work_ha_copy & ~(HA_ERATT | HA_MBATT | HA_LATT)) {
James Smart858c9f62007-06-17 19:56:39 -050011006 /*
11007 * Turn off Slow Rings interrupts, LPFC_ELS_RING is
11008 * the only slow ring.
11009 */
11010 status = (work_ha_copy &
11011 (HA_RXMASK << (4*LPFC_ELS_RING)));
11012 status >>= (4*LPFC_ELS_RING);
11013 if (status & HA_RXMASK) {
James Smart5b75da22008-12-04 22:39:35 -050011014 spin_lock_irqsave(&phba->hbalock, iflag);
James Smart9940b972011-03-11 16:06:12 -050011015 if (lpfc_readl(phba->HCregaddr, &control))
11016 goto unplug_error;
James Smarta58cbd52007-08-02 11:09:43 -040011017
11018 lpfc_debugfs_slow_ring_trc(phba,
11019 "ISR slow ring: ctl:x%x stat:x%x isrcnt:x%x",
11020 control, status,
11021 (uint32_t)phba->sli.slistat.sli_intr);
11022
James Smart858c9f62007-06-17 19:56:39 -050011023 if (control & (HC_R0INT_ENA << LPFC_ELS_RING)) {
James Smarta58cbd52007-08-02 11:09:43 -040011024 lpfc_debugfs_slow_ring_trc(phba,
11025 "ISR Disable ring:"
11026 "pwork:x%x hawork:x%x wait:x%x",
11027 phba->work_ha, work_ha_copy,
11028 (uint32_t)((unsigned long)
James Smart5e9d9b82008-06-14 22:52:53 -040011029 &phba->work_waitq));
James Smarta58cbd52007-08-02 11:09:43 -040011030
James Smart858c9f62007-06-17 19:56:39 -050011031 control &=
11032 ~(HC_R0INT_ENA << LPFC_ELS_RING);
dea31012005-04-17 16:05:31 -050011033 writel(control, phba->HCregaddr);
11034 readl(phba->HCregaddr); /* flush */
dea31012005-04-17 16:05:31 -050011035 }
James Smarta58cbd52007-08-02 11:09:43 -040011036 else {
11037 lpfc_debugfs_slow_ring_trc(phba,
11038 "ISR slow ring: pwork:"
11039 "x%x hawork:x%x wait:x%x",
11040 phba->work_ha, work_ha_copy,
11041 (uint32_t)((unsigned long)
James Smart5e9d9b82008-06-14 22:52:53 -040011042 &phba->work_waitq));
James Smarta58cbd52007-08-02 11:09:43 -040011043 }
James Smart5b75da22008-12-04 22:39:35 -050011044 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -050011045 }
11046 }
James Smart5b75da22008-12-04 22:39:35 -050011047 spin_lock_irqsave(&phba->hbalock, iflag);
James Smarta257bf92009-04-06 18:48:10 -040011048 if (work_ha_copy & HA_ERATT) {
James Smart9940b972011-03-11 16:06:12 -050011049 if (lpfc_sli_read_hs(phba))
11050 goto unplug_error;
James Smarta257bf92009-04-06 18:48:10 -040011051 /*
11052 * Check if there is a deferred error condition
11053 * is active
11054 */
11055 if ((HS_FFER1 & phba->work_hs) &&
11056 ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
James Smartdcf2a4e2010-09-29 11:18:53 -040011057 HS_FFER6 | HS_FFER7 | HS_FFER8) &
11058 phba->work_hs)) {
James Smarta257bf92009-04-06 18:48:10 -040011059 phba->hba_flag |= DEFER_ERATT;
11060 /* Clear all interrupt enable conditions */
11061 writel(0, phba->HCregaddr);
11062 readl(phba->HCregaddr);
11063 }
11064 }
11065
James Smart93996272008-08-24 21:50:30 -040011066 if ((work_ha_copy & HA_MBATT) && (phba->sli.mbox_active)) {
James Smart92d7f7b2007-06-17 19:56:38 -050011067 pmb = phba->sli.mbox_active;
James Smart04c68492009-05-22 14:52:52 -040011068 pmbox = &pmb->u.mb;
James Smart34b02dc2008-08-24 21:49:55 -040011069 mbox = phba->mbox;
James Smart858c9f62007-06-17 19:56:39 -050011070 vport = pmb->vport;
James Smart92d7f7b2007-06-17 19:56:38 -050011071
11072 /* First check out the status word */
11073 lpfc_sli_pcimem_bcopy(mbox, pmbox, sizeof(uint32_t));
11074 if (pmbox->mbxOwner != OWN_HOST) {
James Smart5b75da22008-12-04 22:39:35 -050011075 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart92d7f7b2007-06-17 19:56:38 -050011076 /*
11077 * Stray Mailbox Interrupt, mbxCommand <cmd>
11078 * mbxStatus <status>
11079 */
James Smart09372822008-01-11 01:52:54 -050011080 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
James Smart92d7f7b2007-06-17 19:56:38 -050011081 LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -040011082 "(%d):0304 Stray Mailbox "
James Smart92d7f7b2007-06-17 19:56:38 -050011083 "Interrupt mbxCommand x%x "
11084 "mbxStatus x%x\n",
James Smarte8b62012007-08-02 11:10:09 -040011085 (vport ? vport->vpi : 0),
James Smart92d7f7b2007-06-17 19:56:38 -050011086 pmbox->mbxCommand,
11087 pmbox->mbxStatus);
James Smart09372822008-01-11 01:52:54 -050011088 /* clear mailbox attention bit */
11089 work_ha_copy &= ~HA_MBATT;
11090 } else {
James Smart97eab632008-04-07 10:16:05 -040011091 phba->sli.mbox_active = NULL;
James Smart5b75da22008-12-04 22:39:35 -050011092 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart09372822008-01-11 01:52:54 -050011093 phba->last_completion_time = jiffies;
11094 del_timer(&phba->sli.mbox_tmo);
James Smart09372822008-01-11 01:52:54 -050011095 if (pmb->mbox_cmpl) {
11096 lpfc_sli_pcimem_bcopy(mbox, pmbox,
11097 MAILBOX_CMD_SIZE);
James Smart7a470272010-03-15 11:25:20 -040011098 if (pmb->out_ext_byte_len &&
11099 pmb->context2)
11100 lpfc_sli_pcimem_bcopy(
11101 phba->mbox_ext,
11102 pmb->context2,
11103 pmb->out_ext_byte_len);
James Smart858c9f62007-06-17 19:56:39 -050011104 }
James Smart09372822008-01-11 01:52:54 -050011105 if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
11106 pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
11107
11108 lpfc_debugfs_disc_trc(vport,
11109 LPFC_DISC_TRC_MBOX_VPORT,
11110 "MBOX dflt rpi: : "
11111 "status:x%x rpi:x%x",
11112 (uint32_t)pmbox->mbxStatus,
11113 pmbox->un.varWords[0], 0);
11114
11115 if (!pmbox->mbxStatus) {
11116 mp = (struct lpfc_dmabuf *)
11117 (pmb->context1);
11118 ndlp = (struct lpfc_nodelist *)
11119 pmb->context2;
11120
11121 /* Reg_LOGIN of dflt RPI was
11122 * successful. new lets get
11123 * rid of the RPI using the
11124 * same mbox buffer.
11125 */
11126 lpfc_unreg_login(phba,
11127 vport->vpi,
11128 pmbox->un.varWords[0],
11129 pmb);
11130 pmb->mbox_cmpl =
11131 lpfc_mbx_cmpl_dflt_rpi;
11132 pmb->context1 = mp;
11133 pmb->context2 = ndlp;
11134 pmb->vport = vport;
James Smart58da1ff2008-04-07 10:15:56 -040011135 rc = lpfc_sli_issue_mbox(phba,
11136 pmb,
11137 MBX_NOWAIT);
11138 if (rc != MBX_BUSY)
11139 lpfc_printf_log(phba,
11140 KERN_ERR,
11141 LOG_MBOX | LOG_SLI,
James Smartd7c255b2008-08-24 21:50:00 -040011142 "0350 rc should have"
James Smart6a9c52c2009-10-02 15:16:51 -040011143 "been MBX_BUSY\n");
James Smart3772a992009-05-22 14:50:54 -040011144 if (rc != MBX_NOT_FINISHED)
11145 goto send_current_mbox;
James Smart09372822008-01-11 01:52:54 -050011146 }
11147 }
James Smart5b75da22008-12-04 22:39:35 -050011148 spin_lock_irqsave(
11149 &phba->pport->work_port_lock,
11150 iflag);
James Smart09372822008-01-11 01:52:54 -050011151 phba->pport->work_port_events &=
11152 ~WORKER_MBOX_TMO;
James Smart5b75da22008-12-04 22:39:35 -050011153 spin_unlock_irqrestore(
11154 &phba->pport->work_port_lock,
11155 iflag);
James Smart09372822008-01-11 01:52:54 -050011156 lpfc_mbox_cmpl_put(phba, pmb);
James Smart858c9f62007-06-17 19:56:39 -050011157 }
James Smart97eab632008-04-07 10:16:05 -040011158 } else
James Smart5b75da22008-12-04 22:39:35 -050011159 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart93996272008-08-24 21:50:30 -040011160
James Smart92d7f7b2007-06-17 19:56:38 -050011161 if ((work_ha_copy & HA_MBATT) &&
11162 (phba->sli.mbox_active == NULL)) {
James Smart858c9f62007-06-17 19:56:39 -050011163send_current_mbox:
James Smart92d7f7b2007-06-17 19:56:38 -050011164 /* Process next mailbox command if there is one */
James Smart58da1ff2008-04-07 10:15:56 -040011165 do {
11166 rc = lpfc_sli_issue_mbox(phba, NULL,
11167 MBX_NOWAIT);
11168 } while (rc == MBX_NOT_FINISHED);
11169 if (rc != MBX_SUCCESS)
11170 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
11171 LOG_SLI, "0349 rc should be "
James Smart6a9c52c2009-10-02 15:16:51 -040011172 "MBX_SUCCESS\n");
James Smart92d7f7b2007-06-17 19:56:38 -050011173 }
11174
James Smart5b75da22008-12-04 22:39:35 -050011175 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -050011176 phba->work_ha |= work_ha_copy;
James Smart5b75da22008-12-04 22:39:35 -050011177 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart5e9d9b82008-06-14 22:52:53 -040011178 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -050011179 }
James Smart93996272008-08-24 21:50:30 -040011180 return IRQ_HANDLED;
James Smart9940b972011-03-11 16:06:12 -050011181unplug_error:
11182 spin_unlock_irqrestore(&phba->hbalock, iflag);
11183 return IRQ_HANDLED;
dea31012005-04-17 16:05:31 -050011184
James Smart3772a992009-05-22 14:50:54 -040011185} /* lpfc_sli_sp_intr_handler */
James Smart93996272008-08-24 21:50:30 -040011186
11187/**
James Smart3772a992009-05-22 14:50:54 -040011188 * lpfc_sli_fp_intr_handler - Fast-path interrupt handler to SLI-3 device.
James Smart93996272008-08-24 21:50:30 -040011189 * @irq: Interrupt number.
11190 * @dev_id: The device context pointer.
11191 *
11192 * This function is directly called from the PCI layer as an interrupt
James Smart3772a992009-05-22 14:50:54 -040011193 * service routine when device with SLI-3 interface spec is enabled with
11194 * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
11195 * ring event in the HBA. However, when the device is enabled with either
11196 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
11197 * device-level interrupt handler. When the PCI slot is in error recovery
11198 * or the HBA is undergoing initialization, the interrupt handler will not
11199 * process the interrupt. The SCSI FCP fast-path ring event are handled in
11200 * the intrrupt context. This function is called without any lock held.
11201 * It gets the hbalock to access and update SLI data structures.
James Smart93996272008-08-24 21:50:30 -040011202 *
11203 * This function returns IRQ_HANDLED when interrupt is handled else it
11204 * returns IRQ_NONE.
11205 **/
11206irqreturn_t
James Smart3772a992009-05-22 14:50:54 -040011207lpfc_sli_fp_intr_handler(int irq, void *dev_id)
James Smart93996272008-08-24 21:50:30 -040011208{
11209 struct lpfc_hba *phba;
11210 uint32_t ha_copy;
11211 unsigned long status;
James Smart5b75da22008-12-04 22:39:35 -050011212 unsigned long iflag;
James Smart93996272008-08-24 21:50:30 -040011213
11214 /* Get the driver's phba structure from the dev_id and
11215 * assume the HBA is not interrupting.
11216 */
11217 phba = (struct lpfc_hba *) dev_id;
11218
11219 if (unlikely(!phba))
11220 return IRQ_NONE;
dea31012005-04-17 16:05:31 -050011221
11222 /*
James Smart93996272008-08-24 21:50:30 -040011223 * Stuff needs to be attented to when this function is invoked as an
11224 * individual interrupt handler in MSI-X multi-message interrupt mode
dea31012005-04-17 16:05:31 -050011225 */
James Smart93996272008-08-24 21:50:30 -040011226 if (phba->intr_type == MSIX) {
James Smart3772a992009-05-22 14:50:54 -040011227 /* Check device state for handling interrupt */
11228 if (lpfc_intr_state_check(phba))
James Smart93996272008-08-24 21:50:30 -040011229 return IRQ_NONE;
11230 /* Need to read HA REG for FCP ring and other ring events */
James Smart9940b972011-03-11 16:06:12 -050011231 if (lpfc_readl(phba->HAregaddr, &ha_copy))
11232 return IRQ_HANDLED;
James Smart93996272008-08-24 21:50:30 -040011233 /* Clear up only attention source related to fast-path */
James Smart5b75da22008-12-04 22:39:35 -050011234 spin_lock_irqsave(&phba->hbalock, iflag);
James Smarta257bf92009-04-06 18:48:10 -040011235 /*
11236 * If there is deferred error attention, do not check for
11237 * any interrupt.
11238 */
11239 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
James Smart3772a992009-05-22 14:50:54 -040011240 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smarta257bf92009-04-06 18:48:10 -040011241 return IRQ_NONE;
11242 }
James Smart93996272008-08-24 21:50:30 -040011243 writel((ha_copy & (HA_R0_CLR_MSK | HA_R1_CLR_MSK)),
11244 phba->HAregaddr);
11245 readl(phba->HAregaddr); /* flush */
James Smart5b75da22008-12-04 22:39:35 -050011246 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart93996272008-08-24 21:50:30 -040011247 } else
11248 ha_copy = phba->ha_copy;
11249
11250 /*
11251 * Process all events on FCP ring. Take the optimized path for FCP IO.
11252 */
11253 ha_copy &= ~(phba->work_ha_mask);
11254
11255 status = (ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
dea31012005-04-17 16:05:31 -050011256 status >>= (4*LPFC_FCP_RING);
James Smart858c9f62007-06-17 19:56:39 -050011257 if (status & HA_RXMASK)
dea31012005-04-17 16:05:31 -050011258 lpfc_sli_handle_fast_ring_event(phba,
11259 &phba->sli.ring[LPFC_FCP_RING],
11260 status);
James Smarta4bc3372006-12-02 13:34:16 -050011261
11262 if (phba->cfg_multi_ring_support == 2) {
11263 /*
James Smart93996272008-08-24 21:50:30 -040011264 * Process all events on extra ring. Take the optimized path
11265 * for extra ring IO.
James Smarta4bc3372006-12-02 13:34:16 -050011266 */
James Smart93996272008-08-24 21:50:30 -040011267 status = (ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
James Smarta4bc3372006-12-02 13:34:16 -050011268 status >>= (4*LPFC_EXTRA_RING);
James Smart858c9f62007-06-17 19:56:39 -050011269 if (status & HA_RXMASK) {
James Smarta4bc3372006-12-02 13:34:16 -050011270 lpfc_sli_handle_fast_ring_event(phba,
11271 &phba->sli.ring[LPFC_EXTRA_RING],
11272 status);
11273 }
11274 }
dea31012005-04-17 16:05:31 -050011275 return IRQ_HANDLED;
James Smart3772a992009-05-22 14:50:54 -040011276} /* lpfc_sli_fp_intr_handler */
dea31012005-04-17 16:05:31 -050011277
James Smart93996272008-08-24 21:50:30 -040011278/**
James Smart3772a992009-05-22 14:50:54 -040011279 * lpfc_sli_intr_handler - Device-level interrupt handler to SLI-3 device
James Smart93996272008-08-24 21:50:30 -040011280 * @irq: Interrupt number.
11281 * @dev_id: The device context pointer.
11282 *
James Smart3772a992009-05-22 14:50:54 -040011283 * This function is the HBA device-level interrupt handler to device with
11284 * SLI-3 interface spec, called from the PCI layer when either MSI or
11285 * Pin-IRQ interrupt mode is enabled and there is an event in the HBA which
11286 * requires driver attention. This function invokes the slow-path interrupt
11287 * attention handling function and fast-path interrupt attention handling
11288 * function in turn to process the relevant HBA attention events. This
11289 * function is called without any lock held. It gets the hbalock to access
11290 * and update SLI data structures.
James Smart93996272008-08-24 21:50:30 -040011291 *
11292 * This function returns IRQ_HANDLED when interrupt is handled, else it
11293 * returns IRQ_NONE.
11294 **/
11295irqreturn_t
James Smart3772a992009-05-22 14:50:54 -040011296lpfc_sli_intr_handler(int irq, void *dev_id)
James Smart93996272008-08-24 21:50:30 -040011297{
11298 struct lpfc_hba *phba;
11299 irqreturn_t sp_irq_rc, fp_irq_rc;
11300 unsigned long status1, status2;
James Smarta747c9c2009-11-18 15:41:10 -050011301 uint32_t hc_copy;
James Smart93996272008-08-24 21:50:30 -040011302
11303 /*
11304 * Get the driver's phba structure from the dev_id and
11305 * assume the HBA is not interrupting.
11306 */
11307 phba = (struct lpfc_hba *) dev_id;
11308
11309 if (unlikely(!phba))
11310 return IRQ_NONE;
11311
James Smart3772a992009-05-22 14:50:54 -040011312 /* Check device state for handling interrupt */
11313 if (lpfc_intr_state_check(phba))
James Smart93996272008-08-24 21:50:30 -040011314 return IRQ_NONE;
11315
11316 spin_lock(&phba->hbalock);
James Smart9940b972011-03-11 16:06:12 -050011317 if (lpfc_readl(phba->HAregaddr, &phba->ha_copy)) {
11318 spin_unlock(&phba->hbalock);
11319 return IRQ_HANDLED;
11320 }
11321
James Smart93996272008-08-24 21:50:30 -040011322 if (unlikely(!phba->ha_copy)) {
11323 spin_unlock(&phba->hbalock);
11324 return IRQ_NONE;
11325 } else if (phba->ha_copy & HA_ERATT) {
11326 if (phba->hba_flag & HBA_ERATT_HANDLED)
11327 /* ERATT polling has handled ERATT */
11328 phba->ha_copy &= ~HA_ERATT;
11329 else
11330 /* Indicate interrupt handler handles ERATT */
11331 phba->hba_flag |= HBA_ERATT_HANDLED;
11332 }
11333
James Smarta257bf92009-04-06 18:48:10 -040011334 /*
11335 * If there is deferred error attention, do not check for any interrupt.
11336 */
11337 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
Dan Carpenterec21b3b2010-08-08 00:15:17 +020011338 spin_unlock(&phba->hbalock);
James Smarta257bf92009-04-06 18:48:10 -040011339 return IRQ_NONE;
11340 }
11341
James Smart93996272008-08-24 21:50:30 -040011342 /* Clear attention sources except link and error attentions */
James Smart9940b972011-03-11 16:06:12 -050011343 if (lpfc_readl(phba->HCregaddr, &hc_copy)) {
11344 spin_unlock(&phba->hbalock);
11345 return IRQ_HANDLED;
11346 }
James Smarta747c9c2009-11-18 15:41:10 -050011347 writel(hc_copy & ~(HC_MBINT_ENA | HC_R0INT_ENA | HC_R1INT_ENA
11348 | HC_R2INT_ENA | HC_LAINT_ENA | HC_ERINT_ENA),
11349 phba->HCregaddr);
James Smart93996272008-08-24 21:50:30 -040011350 writel((phba->ha_copy & ~(HA_LATT | HA_ERATT)), phba->HAregaddr);
James Smarta747c9c2009-11-18 15:41:10 -050011351 writel(hc_copy, phba->HCregaddr);
James Smart93996272008-08-24 21:50:30 -040011352 readl(phba->HAregaddr); /* flush */
11353 spin_unlock(&phba->hbalock);
11354
11355 /*
11356 * Invokes slow-path host attention interrupt handling as appropriate.
11357 */
11358
11359 /* status of events with mailbox and link attention */
11360 status1 = phba->ha_copy & (HA_MBATT | HA_LATT | HA_ERATT);
11361
11362 /* status of events with ELS ring */
11363 status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_ELS_RING)));
11364 status2 >>= (4*LPFC_ELS_RING);
11365
11366 if (status1 || (status2 & HA_RXMASK))
James Smart3772a992009-05-22 14:50:54 -040011367 sp_irq_rc = lpfc_sli_sp_intr_handler(irq, dev_id);
James Smart93996272008-08-24 21:50:30 -040011368 else
11369 sp_irq_rc = IRQ_NONE;
11370
11371 /*
11372 * Invoke fast-path host attention interrupt handling as appropriate.
11373 */
11374
11375 /* status of events with FCP ring */
11376 status1 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
11377 status1 >>= (4*LPFC_FCP_RING);
11378
11379 /* status of events with extra ring */
11380 if (phba->cfg_multi_ring_support == 2) {
11381 status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
11382 status2 >>= (4*LPFC_EXTRA_RING);
11383 } else
11384 status2 = 0;
11385
11386 if ((status1 & HA_RXMASK) || (status2 & HA_RXMASK))
James Smart3772a992009-05-22 14:50:54 -040011387 fp_irq_rc = lpfc_sli_fp_intr_handler(irq, dev_id);
James Smart93996272008-08-24 21:50:30 -040011388 else
11389 fp_irq_rc = IRQ_NONE;
11390
11391 /* Return device-level interrupt handling status */
11392 return (sp_irq_rc == IRQ_HANDLED) ? sp_irq_rc : fp_irq_rc;
James Smart3772a992009-05-22 14:50:54 -040011393} /* lpfc_sli_intr_handler */
James Smart4f774512009-05-22 14:52:35 -040011394
11395/**
11396 * lpfc_sli4_fcp_xri_abort_event_proc - Process fcp xri abort event
11397 * @phba: pointer to lpfc hba data structure.
11398 *
11399 * This routine is invoked by the worker thread to process all the pending
11400 * SLI4 FCP abort XRI events.
11401 **/
11402void lpfc_sli4_fcp_xri_abort_event_proc(struct lpfc_hba *phba)
11403{
11404 struct lpfc_cq_event *cq_event;
11405
11406 /* First, declare the fcp xri abort event has been handled */
11407 spin_lock_irq(&phba->hbalock);
11408 phba->hba_flag &= ~FCP_XRI_ABORT_EVENT;
11409 spin_unlock_irq(&phba->hbalock);
11410 /* Now, handle all the fcp xri abort events */
11411 while (!list_empty(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue)) {
11412 /* Get the first event from the head of the event queue */
11413 spin_lock_irq(&phba->hbalock);
11414 list_remove_head(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue,
11415 cq_event, struct lpfc_cq_event, list);
11416 spin_unlock_irq(&phba->hbalock);
11417 /* Notify aborted XRI for FCP work queue */
11418 lpfc_sli4_fcp_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
11419 /* Free the event processed back to the free pool */
11420 lpfc_sli4_cq_event_release(phba, cq_event);
11421 }
11422}
11423
11424/**
11425 * lpfc_sli4_els_xri_abort_event_proc - Process els xri abort event
11426 * @phba: pointer to lpfc hba data structure.
11427 *
11428 * This routine is invoked by the worker thread to process all the pending
11429 * SLI4 els abort xri events.
11430 **/
11431void lpfc_sli4_els_xri_abort_event_proc(struct lpfc_hba *phba)
11432{
11433 struct lpfc_cq_event *cq_event;
11434
11435 /* First, declare the els xri abort event has been handled */
11436 spin_lock_irq(&phba->hbalock);
11437 phba->hba_flag &= ~ELS_XRI_ABORT_EVENT;
11438 spin_unlock_irq(&phba->hbalock);
11439 /* Now, handle all the els xri abort events */
11440 while (!list_empty(&phba->sli4_hba.sp_els_xri_aborted_work_queue)) {
11441 /* Get the first event from the head of the event queue */
11442 spin_lock_irq(&phba->hbalock);
11443 list_remove_head(&phba->sli4_hba.sp_els_xri_aborted_work_queue,
11444 cq_event, struct lpfc_cq_event, list);
11445 spin_unlock_irq(&phba->hbalock);
11446 /* Notify aborted XRI for ELS work queue */
11447 lpfc_sli4_els_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
11448 /* Free the event processed back to the free pool */
11449 lpfc_sli4_cq_event_release(phba, cq_event);
11450 }
11451}
11452
James Smart341af102010-01-26 23:07:37 -050011453/**
11454 * lpfc_sli4_iocb_param_transfer - Transfer pIocbOut and cmpl status to pIocbIn
11455 * @phba: pointer to lpfc hba data structure
11456 * @pIocbIn: pointer to the rspiocbq
11457 * @pIocbOut: pointer to the cmdiocbq
11458 * @wcqe: pointer to the complete wcqe
11459 *
11460 * This routine transfers the fields of a command iocbq to a response iocbq
11461 * by copying all the IOCB fields from command iocbq and transferring the
11462 * completion status information from the complete wcqe.
11463 **/
James Smart4f774512009-05-22 14:52:35 -040011464static void
James Smart341af102010-01-26 23:07:37 -050011465lpfc_sli4_iocb_param_transfer(struct lpfc_hba *phba,
11466 struct lpfc_iocbq *pIocbIn,
James Smart4f774512009-05-22 14:52:35 -040011467 struct lpfc_iocbq *pIocbOut,
11468 struct lpfc_wcqe_complete *wcqe)
11469{
James Smartaf227412013-10-10 12:23:10 -040011470 int numBdes, i;
James Smart341af102010-01-26 23:07:37 -050011471 unsigned long iflags;
James Smartaf227412013-10-10 12:23:10 -040011472 uint32_t status, max_response;
11473 struct lpfc_dmabuf *dmabuf;
11474 struct ulp_bde64 *bpl, bde;
James Smart4f774512009-05-22 14:52:35 -040011475 size_t offset = offsetof(struct lpfc_iocbq, iocb);
11476
11477 memcpy((char *)pIocbIn + offset, (char *)pIocbOut + offset,
11478 sizeof(struct lpfc_iocbq) - offset);
James Smart4f774512009-05-22 14:52:35 -040011479 /* Map WCQE parameters into irspiocb parameters */
James Smartacd68592012-01-18 16:25:09 -050011480 status = bf_get(lpfc_wcqe_c_status, wcqe);
11481 pIocbIn->iocb.ulpStatus = (status & LPFC_IOCB_STATUS_MASK);
James Smart4f774512009-05-22 14:52:35 -040011482 if (pIocbOut->iocb_flag & LPFC_IO_FCP)
11483 if (pIocbIn->iocb.ulpStatus == IOSTAT_FCP_RSP_ERROR)
11484 pIocbIn->iocb.un.fcpi.fcpi_parm =
11485 pIocbOut->iocb.un.fcpi.fcpi_parm -
11486 wcqe->total_data_placed;
11487 else
11488 pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
James Smart695a8142010-01-26 23:08:03 -050011489 else {
James Smart4f774512009-05-22 14:52:35 -040011490 pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
James Smartaf227412013-10-10 12:23:10 -040011491 switch (pIocbOut->iocb.ulpCommand) {
11492 case CMD_ELS_REQUEST64_CR:
11493 dmabuf = (struct lpfc_dmabuf *)pIocbOut->context3;
11494 bpl = (struct ulp_bde64 *)dmabuf->virt;
11495 bde.tus.w = le32_to_cpu(bpl[1].tus.w);
11496 max_response = bde.tus.f.bdeSize;
11497 break;
11498 case CMD_GEN_REQUEST64_CR:
11499 max_response = 0;
11500 if (!pIocbOut->context3)
11501 break;
11502 numBdes = pIocbOut->iocb.un.genreq64.bdl.bdeSize/
11503 sizeof(struct ulp_bde64);
11504 dmabuf = (struct lpfc_dmabuf *)pIocbOut->context3;
11505 bpl = (struct ulp_bde64 *)dmabuf->virt;
11506 for (i = 0; i < numBdes; i++) {
11507 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
11508 if (bde.tus.f.bdeFlags != BUFF_TYPE_BDE_64)
11509 max_response += bde.tus.f.bdeSize;
11510 }
11511 break;
11512 default:
11513 max_response = wcqe->total_data_placed;
11514 break;
11515 }
11516 if (max_response < wcqe->total_data_placed)
11517 pIocbIn->iocb.un.genreq64.bdl.bdeSize = max_response;
11518 else
11519 pIocbIn->iocb.un.genreq64.bdl.bdeSize =
11520 wcqe->total_data_placed;
James Smart695a8142010-01-26 23:08:03 -050011521 }
James Smart341af102010-01-26 23:07:37 -050011522
James Smartacd68592012-01-18 16:25:09 -050011523 /* Convert BG errors for completion status */
11524 if (status == CQE_STATUS_DI_ERROR) {
11525 pIocbIn->iocb.ulpStatus = IOSTAT_LOCAL_REJECT;
11526
11527 if (bf_get(lpfc_wcqe_c_bg_edir, wcqe))
11528 pIocbIn->iocb.un.ulpWord[4] = IOERR_RX_DMA_FAILED;
11529 else
11530 pIocbIn->iocb.un.ulpWord[4] = IOERR_TX_DMA_FAILED;
11531
11532 pIocbIn->iocb.unsli3.sli3_bg.bgstat = 0;
11533 if (bf_get(lpfc_wcqe_c_bg_ge, wcqe)) /* Guard Check failed */
11534 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11535 BGS_GUARD_ERR_MASK;
11536 if (bf_get(lpfc_wcqe_c_bg_ae, wcqe)) /* App Tag Check failed */
11537 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11538 BGS_APPTAG_ERR_MASK;
11539 if (bf_get(lpfc_wcqe_c_bg_re, wcqe)) /* Ref Tag Check failed */
11540 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11541 BGS_REFTAG_ERR_MASK;
11542
11543 /* Check to see if there was any good data before the error */
11544 if (bf_get(lpfc_wcqe_c_bg_tdpv, wcqe)) {
11545 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11546 BGS_HI_WATER_MARK_PRESENT_MASK;
11547 pIocbIn->iocb.unsli3.sli3_bg.bghm =
11548 wcqe->total_data_placed;
11549 }
11550
11551 /*
11552 * Set ALL the error bits to indicate we don't know what
11553 * type of error it is.
11554 */
11555 if (!pIocbIn->iocb.unsli3.sli3_bg.bgstat)
11556 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11557 (BGS_REFTAG_ERR_MASK | BGS_APPTAG_ERR_MASK |
11558 BGS_GUARD_ERR_MASK);
11559 }
11560
James Smart341af102010-01-26 23:07:37 -050011561 /* Pick up HBA exchange busy condition */
11562 if (bf_get(lpfc_wcqe_c_xb, wcqe)) {
11563 spin_lock_irqsave(&phba->hbalock, iflags);
11564 pIocbIn->iocb_flag |= LPFC_EXCHANGE_BUSY;
11565 spin_unlock_irqrestore(&phba->hbalock, iflags);
11566 }
James Smart4f774512009-05-22 14:52:35 -040011567}
11568
11569/**
James Smart45ed1192009-10-02 15:17:02 -040011570 * lpfc_sli4_els_wcqe_to_rspiocbq - Get response iocbq from els wcqe
11571 * @phba: Pointer to HBA context object.
11572 * @wcqe: Pointer to work-queue completion queue entry.
11573 *
11574 * This routine handles an ELS work-queue completion event and construct
11575 * a pseudo response ELS IODBQ from the SLI4 ELS WCQE for the common
11576 * discovery engine to handle.
11577 *
11578 * Return: Pointer to the receive IOCBQ, NULL otherwise.
11579 **/
11580static struct lpfc_iocbq *
11581lpfc_sli4_els_wcqe_to_rspiocbq(struct lpfc_hba *phba,
11582 struct lpfc_iocbq *irspiocbq)
11583{
11584 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
11585 struct lpfc_iocbq *cmdiocbq;
11586 struct lpfc_wcqe_complete *wcqe;
11587 unsigned long iflags;
11588
11589 wcqe = &irspiocbq->cq_event.cqe.wcqe_cmpl;
James Smart7e56aa22012-08-03 12:35:34 -040011590 spin_lock_irqsave(&pring->ring_lock, iflags);
James Smart45ed1192009-10-02 15:17:02 -040011591 pring->stats.iocb_event++;
11592 /* Look up the ELS command IOCB and create pseudo response IOCB */
11593 cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
11594 bf_get(lpfc_wcqe_c_request_tag, wcqe));
James Smart7e56aa22012-08-03 12:35:34 -040011595 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smart45ed1192009-10-02 15:17:02 -040011596
11597 if (unlikely(!cmdiocbq)) {
11598 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11599 "0386 ELS complete with no corresponding "
11600 "cmdiocb: iotag (%d)\n",
11601 bf_get(lpfc_wcqe_c_request_tag, wcqe));
11602 lpfc_sli_release_iocbq(phba, irspiocbq);
11603 return NULL;
11604 }
11605
11606 /* Fake the irspiocbq and copy necessary response information */
James Smart341af102010-01-26 23:07:37 -050011607 lpfc_sli4_iocb_param_transfer(phba, irspiocbq, cmdiocbq, wcqe);
James Smart45ed1192009-10-02 15:17:02 -040011608
11609 return irspiocbq;
11610}
11611
11612/**
James Smart04c68492009-05-22 14:52:52 -040011613 * lpfc_sli4_sp_handle_async_event - Handle an asynchroous event
11614 * @phba: Pointer to HBA context object.
11615 * @cqe: Pointer to mailbox completion queue entry.
11616 *
11617 * This routine process a mailbox completion queue entry with asynchrous
11618 * event.
11619 *
11620 * Return: true if work posted to worker thread, otherwise false.
11621 **/
11622static bool
11623lpfc_sli4_sp_handle_async_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
11624{
11625 struct lpfc_cq_event *cq_event;
11626 unsigned long iflags;
11627
11628 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
11629 "0392 Async Event: word0:x%x, word1:x%x, "
11630 "word2:x%x, word3:x%x\n", mcqe->word0,
11631 mcqe->mcqe_tag0, mcqe->mcqe_tag1, mcqe->trailer);
11632
11633 /* Allocate a new internal CQ_EVENT entry */
11634 cq_event = lpfc_sli4_cq_event_alloc(phba);
11635 if (!cq_event) {
11636 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11637 "0394 Failed to allocate CQ_EVENT entry\n");
11638 return false;
11639 }
11640
11641 /* Move the CQE into an asynchronous event entry */
11642 memcpy(&cq_event->cqe, mcqe, sizeof(struct lpfc_mcqe));
11643 spin_lock_irqsave(&phba->hbalock, iflags);
11644 list_add_tail(&cq_event->list, &phba->sli4_hba.sp_asynce_work_queue);
11645 /* Set the async event flag */
11646 phba->hba_flag |= ASYNC_EVENT;
11647 spin_unlock_irqrestore(&phba->hbalock, iflags);
11648
11649 return true;
11650}
11651
11652/**
11653 * lpfc_sli4_sp_handle_mbox_event - Handle a mailbox completion event
11654 * @phba: Pointer to HBA context object.
11655 * @cqe: Pointer to mailbox completion queue entry.
11656 *
11657 * This routine process a mailbox completion queue entry with mailbox
11658 * completion event.
11659 *
11660 * Return: true if work posted to worker thread, otherwise false.
11661 **/
11662static bool
11663lpfc_sli4_sp_handle_mbox_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
11664{
11665 uint32_t mcqe_status;
11666 MAILBOX_t *mbox, *pmbox;
11667 struct lpfc_mqe *mqe;
11668 struct lpfc_vport *vport;
11669 struct lpfc_nodelist *ndlp;
11670 struct lpfc_dmabuf *mp;
11671 unsigned long iflags;
11672 LPFC_MBOXQ_t *pmb;
11673 bool workposted = false;
11674 int rc;
11675
11676 /* If not a mailbox complete MCQE, out by checking mailbox consume */
11677 if (!bf_get(lpfc_trailer_completed, mcqe))
11678 goto out_no_mqe_complete;
11679
11680 /* Get the reference to the active mbox command */
11681 spin_lock_irqsave(&phba->hbalock, iflags);
11682 pmb = phba->sli.mbox_active;
11683 if (unlikely(!pmb)) {
11684 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
11685 "1832 No pending MBOX command to handle\n");
11686 spin_unlock_irqrestore(&phba->hbalock, iflags);
11687 goto out_no_mqe_complete;
11688 }
11689 spin_unlock_irqrestore(&phba->hbalock, iflags);
11690 mqe = &pmb->u.mqe;
11691 pmbox = (MAILBOX_t *)&pmb->u.mqe;
11692 mbox = phba->mbox;
11693 vport = pmb->vport;
11694
11695 /* Reset heartbeat timer */
11696 phba->last_completion_time = jiffies;
11697 del_timer(&phba->sli.mbox_tmo);
11698
11699 /* Move mbox data to caller's mailbox region, do endian swapping */
11700 if (pmb->mbox_cmpl && mbox)
11701 lpfc_sli_pcimem_bcopy(mbox, mqe, sizeof(struct lpfc_mqe));
James Smart04c68492009-05-22 14:52:52 -040011702
James Smart73d91e52011-10-10 21:32:10 -040011703 /*
11704 * For mcqe errors, conditionally move a modified error code to
11705 * the mbox so that the error will not be missed.
11706 */
11707 mcqe_status = bf_get(lpfc_mcqe_status, mcqe);
11708 if (mcqe_status != MB_CQE_STATUS_SUCCESS) {
11709 if (bf_get(lpfc_mqe_status, mqe) == MBX_SUCCESS)
11710 bf_set(lpfc_mqe_status, mqe,
11711 (LPFC_MBX_ERROR_RANGE | mcqe_status));
11712 }
James Smart04c68492009-05-22 14:52:52 -040011713 if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
11714 pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
11715 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_MBOX_VPORT,
11716 "MBOX dflt rpi: status:x%x rpi:x%x",
11717 mcqe_status,
11718 pmbox->un.varWords[0], 0);
11719 if (mcqe_status == MB_CQE_STATUS_SUCCESS) {
11720 mp = (struct lpfc_dmabuf *)(pmb->context1);
11721 ndlp = (struct lpfc_nodelist *)pmb->context2;
11722 /* Reg_LOGIN of dflt RPI was successful. Now lets get
11723 * RID of the PPI using the same mbox buffer.
11724 */
11725 lpfc_unreg_login(phba, vport->vpi,
11726 pmbox->un.varWords[0], pmb);
11727 pmb->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
11728 pmb->context1 = mp;
11729 pmb->context2 = ndlp;
11730 pmb->vport = vport;
11731 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
11732 if (rc != MBX_BUSY)
11733 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
11734 LOG_SLI, "0385 rc should "
11735 "have been MBX_BUSY\n");
11736 if (rc != MBX_NOT_FINISHED)
11737 goto send_current_mbox;
11738 }
11739 }
11740 spin_lock_irqsave(&phba->pport->work_port_lock, iflags);
11741 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
11742 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflags);
11743
11744 /* There is mailbox completion work to do */
11745 spin_lock_irqsave(&phba->hbalock, iflags);
11746 __lpfc_mbox_cmpl_put(phba, pmb);
11747 phba->work_ha |= HA_MBATT;
11748 spin_unlock_irqrestore(&phba->hbalock, iflags);
11749 workposted = true;
11750
11751send_current_mbox:
11752 spin_lock_irqsave(&phba->hbalock, iflags);
11753 /* Release the mailbox command posting token */
11754 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
11755 /* Setting active mailbox pointer need to be in sync to flag clear */
11756 phba->sli.mbox_active = NULL;
11757 spin_unlock_irqrestore(&phba->hbalock, iflags);
11758 /* Wake up worker thread to post the next pending mailbox command */
11759 lpfc_worker_wake_up(phba);
11760out_no_mqe_complete:
11761 if (bf_get(lpfc_trailer_consumed, mcqe))
11762 lpfc_sli4_mq_release(phba->sli4_hba.mbx_wq);
11763 return workposted;
11764}
11765
11766/**
11767 * lpfc_sli4_sp_handle_mcqe - Process a mailbox completion queue entry
11768 * @phba: Pointer to HBA context object.
11769 * @cqe: Pointer to mailbox completion queue entry.
11770 *
11771 * This routine process a mailbox completion queue entry, it invokes the
11772 * proper mailbox complete handling or asynchrous event handling routine
11773 * according to the MCQE's async bit.
11774 *
11775 * Return: true if work posted to worker thread, otherwise false.
11776 **/
11777static bool
11778lpfc_sli4_sp_handle_mcqe(struct lpfc_hba *phba, struct lpfc_cqe *cqe)
11779{
11780 struct lpfc_mcqe mcqe;
11781 bool workposted;
11782
11783 /* Copy the mailbox MCQE and convert endian order as needed */
11784 lpfc_sli_pcimem_bcopy(cqe, &mcqe, sizeof(struct lpfc_mcqe));
11785
11786 /* Invoke the proper event handling routine */
11787 if (!bf_get(lpfc_trailer_async, &mcqe))
11788 workposted = lpfc_sli4_sp_handle_mbox_event(phba, &mcqe);
11789 else
11790 workposted = lpfc_sli4_sp_handle_async_event(phba, &mcqe);
11791 return workposted;
11792}
11793
11794/**
James Smart4f774512009-05-22 14:52:35 -040011795 * lpfc_sli4_sp_handle_els_wcqe - Handle els work-queue completion event
11796 * @phba: Pointer to HBA context object.
James Smart2a76a282012-08-03 12:35:54 -040011797 * @cq: Pointer to associated CQ
James Smart4f774512009-05-22 14:52:35 -040011798 * @wcqe: Pointer to work-queue completion queue entry.
11799 *
11800 * This routine handles an ELS work-queue completion event.
11801 *
11802 * Return: true if work posted to worker thread, otherwise false.
11803 **/
11804static bool
James Smart2a76a282012-08-03 12:35:54 -040011805lpfc_sli4_sp_handle_els_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
James Smart4f774512009-05-22 14:52:35 -040011806 struct lpfc_wcqe_complete *wcqe)
11807{
James Smart4f774512009-05-22 14:52:35 -040011808 struct lpfc_iocbq *irspiocbq;
11809 unsigned long iflags;
James Smart2a76a282012-08-03 12:35:54 -040011810 struct lpfc_sli_ring *pring = cq->pring;
James Smart0e9bb8d2013-03-01 16:35:12 -050011811 int txq_cnt = 0;
11812 int txcmplq_cnt = 0;
11813 int fcp_txcmplq_cnt = 0;
James Smart4f774512009-05-22 14:52:35 -040011814
James Smart45ed1192009-10-02 15:17:02 -040011815 /* Get an irspiocbq for later ELS response processing use */
James Smart4f774512009-05-22 14:52:35 -040011816 irspiocbq = lpfc_sli_get_iocbq(phba);
11817 if (!irspiocbq) {
James Smart0e9bb8d2013-03-01 16:35:12 -050011818 if (!list_empty(&pring->txq))
11819 txq_cnt++;
11820 if (!list_empty(&pring->txcmplq))
11821 txcmplq_cnt++;
11822 if (!list_empty(&phba->sli.ring[LPFC_FCP_RING].txcmplq))
11823 fcp_txcmplq_cnt++;
James Smart4f774512009-05-22 14:52:35 -040011824 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart2a9bf3d2010-06-07 15:24:45 -040011825 "0387 NO IOCBQ data: txq_cnt=%d iocb_cnt=%d "
11826 "fcp_txcmplq_cnt=%d, els_txcmplq_cnt=%d\n",
James Smart0e9bb8d2013-03-01 16:35:12 -050011827 txq_cnt, phba->iocb_cnt,
11828 fcp_txcmplq_cnt,
11829 txcmplq_cnt);
James Smart45ed1192009-10-02 15:17:02 -040011830 return false;
James Smart4f774512009-05-22 14:52:35 -040011831 }
James Smart4f774512009-05-22 14:52:35 -040011832
James Smart45ed1192009-10-02 15:17:02 -040011833 /* Save off the slow-path queue event for work thread to process */
11834 memcpy(&irspiocbq->cq_event.cqe.wcqe_cmpl, wcqe, sizeof(*wcqe));
James Smart4f774512009-05-22 14:52:35 -040011835 spin_lock_irqsave(&phba->hbalock, iflags);
James Smart4d9ab992009-10-02 15:16:39 -040011836 list_add_tail(&irspiocbq->cq_event.list,
James Smart45ed1192009-10-02 15:17:02 -040011837 &phba->sli4_hba.sp_queue_event);
11838 phba->hba_flag |= HBA_SP_QUEUE_EVT;
James Smart4f774512009-05-22 14:52:35 -040011839 spin_unlock_irqrestore(&phba->hbalock, iflags);
James Smart4f774512009-05-22 14:52:35 -040011840
James Smart45ed1192009-10-02 15:17:02 -040011841 return true;
James Smart4f774512009-05-22 14:52:35 -040011842}
11843
11844/**
11845 * lpfc_sli4_sp_handle_rel_wcqe - Handle slow-path WQ entry consumed event
11846 * @phba: Pointer to HBA context object.
11847 * @wcqe: Pointer to work-queue completion queue entry.
11848 *
11849 * This routine handles slow-path WQ entry comsumed event by invoking the
11850 * proper WQ release routine to the slow-path WQ.
11851 **/
11852static void
11853lpfc_sli4_sp_handle_rel_wcqe(struct lpfc_hba *phba,
11854 struct lpfc_wcqe_release *wcqe)
11855{
James Smart2e90f4b2011-12-13 13:22:37 -050011856 /* sanity check on queue memory */
11857 if (unlikely(!phba->sli4_hba.els_wq))
11858 return;
James Smart4f774512009-05-22 14:52:35 -040011859 /* Check for the slow-path ELS work queue */
11860 if (bf_get(lpfc_wcqe_r_wq_id, wcqe) == phba->sli4_hba.els_wq->queue_id)
11861 lpfc_sli4_wq_release(phba->sli4_hba.els_wq,
11862 bf_get(lpfc_wcqe_r_wqe_index, wcqe));
11863 else
11864 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11865 "2579 Slow-path wqe consume event carries "
11866 "miss-matched qid: wcqe-qid=x%x, sp-qid=x%x\n",
11867 bf_get(lpfc_wcqe_r_wqe_index, wcqe),
11868 phba->sli4_hba.els_wq->queue_id);
11869}
11870
11871/**
11872 * lpfc_sli4_sp_handle_abort_xri_wcqe - Handle a xri abort event
11873 * @phba: Pointer to HBA context object.
11874 * @cq: Pointer to a WQ completion queue.
11875 * @wcqe: Pointer to work-queue completion queue entry.
11876 *
11877 * This routine handles an XRI abort event.
11878 *
11879 * Return: true if work posted to worker thread, otherwise false.
11880 **/
11881static bool
11882lpfc_sli4_sp_handle_abort_xri_wcqe(struct lpfc_hba *phba,
11883 struct lpfc_queue *cq,
11884 struct sli4_wcqe_xri_aborted *wcqe)
11885{
11886 bool workposted = false;
11887 struct lpfc_cq_event *cq_event;
11888 unsigned long iflags;
11889
11890 /* Allocate a new internal CQ_EVENT entry */
11891 cq_event = lpfc_sli4_cq_event_alloc(phba);
11892 if (!cq_event) {
11893 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11894 "0602 Failed to allocate CQ_EVENT entry\n");
11895 return false;
11896 }
11897
11898 /* Move the CQE into the proper xri abort event list */
11899 memcpy(&cq_event->cqe, wcqe, sizeof(struct sli4_wcqe_xri_aborted));
11900 switch (cq->subtype) {
11901 case LPFC_FCP:
11902 spin_lock_irqsave(&phba->hbalock, iflags);
11903 list_add_tail(&cq_event->list,
11904 &phba->sli4_hba.sp_fcp_xri_aborted_work_queue);
11905 /* Set the fcp xri abort event flag */
11906 phba->hba_flag |= FCP_XRI_ABORT_EVENT;
11907 spin_unlock_irqrestore(&phba->hbalock, iflags);
11908 workposted = true;
11909 break;
11910 case LPFC_ELS:
11911 spin_lock_irqsave(&phba->hbalock, iflags);
11912 list_add_tail(&cq_event->list,
11913 &phba->sli4_hba.sp_els_xri_aborted_work_queue);
11914 /* Set the els xri abort event flag */
11915 phba->hba_flag |= ELS_XRI_ABORT_EVENT;
11916 spin_unlock_irqrestore(&phba->hbalock, iflags);
11917 workposted = true;
11918 break;
11919 default:
11920 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11921 "0603 Invalid work queue CQE subtype (x%x)\n",
11922 cq->subtype);
11923 workposted = false;
11924 break;
11925 }
11926 return workposted;
11927}
11928
11929/**
James Smart4d9ab992009-10-02 15:16:39 -040011930 * lpfc_sli4_sp_handle_rcqe - Process a receive-queue completion queue entry
James Smart4f774512009-05-22 14:52:35 -040011931 * @phba: Pointer to HBA context object.
James Smart4d9ab992009-10-02 15:16:39 -040011932 * @rcqe: Pointer to receive-queue completion queue entry.
James Smart4f774512009-05-22 14:52:35 -040011933 *
James Smart4d9ab992009-10-02 15:16:39 -040011934 * This routine process a receive-queue completion queue entry.
James Smart4f774512009-05-22 14:52:35 -040011935 *
11936 * Return: true if work posted to worker thread, otherwise false.
11937 **/
11938static bool
James Smart4d9ab992009-10-02 15:16:39 -040011939lpfc_sli4_sp_handle_rcqe(struct lpfc_hba *phba, struct lpfc_rcqe *rcqe)
11940{
11941 bool workposted = false;
11942 struct lpfc_queue *hrq = phba->sli4_hba.hdr_rq;
11943 struct lpfc_queue *drq = phba->sli4_hba.dat_rq;
11944 struct hbq_dmabuf *dma_buf;
James Smart7851fe22011-07-22 18:36:52 -040011945 uint32_t status, rq_id;
James Smart4d9ab992009-10-02 15:16:39 -040011946 unsigned long iflags;
11947
James Smart2e90f4b2011-12-13 13:22:37 -050011948 /* sanity check on queue memory */
11949 if (unlikely(!hrq) || unlikely(!drq))
11950 return workposted;
11951
James Smart7851fe22011-07-22 18:36:52 -040011952 if (bf_get(lpfc_cqe_code, rcqe) == CQE_CODE_RECEIVE_V1)
11953 rq_id = bf_get(lpfc_rcqe_rq_id_v1, rcqe);
11954 else
11955 rq_id = bf_get(lpfc_rcqe_rq_id, rcqe);
11956 if (rq_id != hrq->queue_id)
James Smart4d9ab992009-10-02 15:16:39 -040011957 goto out;
11958
11959 status = bf_get(lpfc_rcqe_status, rcqe);
11960 switch (status) {
11961 case FC_STATUS_RQ_BUF_LEN_EXCEEDED:
11962 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11963 "2537 Receive Frame Truncated!!\n");
James Smartb84daac2012-08-03 12:35:13 -040011964 hrq->RQ_buf_trunc++;
James Smart4d9ab992009-10-02 15:16:39 -040011965 case FC_STATUS_RQ_SUCCESS:
James Smart5ffc2662009-11-18 15:39:44 -050011966 lpfc_sli4_rq_release(hrq, drq);
James Smart4d9ab992009-10-02 15:16:39 -040011967 spin_lock_irqsave(&phba->hbalock, iflags);
11968 dma_buf = lpfc_sli_hbqbuf_get(&phba->hbqs[0].hbq_buffer_list);
11969 if (!dma_buf) {
James Smartb84daac2012-08-03 12:35:13 -040011970 hrq->RQ_no_buf_found++;
James Smart4d9ab992009-10-02 15:16:39 -040011971 spin_unlock_irqrestore(&phba->hbalock, iflags);
11972 goto out;
11973 }
James Smartb84daac2012-08-03 12:35:13 -040011974 hrq->RQ_rcv_buf++;
James Smart4d9ab992009-10-02 15:16:39 -040011975 memcpy(&dma_buf->cq_event.cqe.rcqe_cmpl, rcqe, sizeof(*rcqe));
11976 /* save off the frame for the word thread to process */
11977 list_add_tail(&dma_buf->cq_event.list,
James Smart45ed1192009-10-02 15:17:02 -040011978 &phba->sli4_hba.sp_queue_event);
James Smart4d9ab992009-10-02 15:16:39 -040011979 /* Frame received */
James Smart45ed1192009-10-02 15:17:02 -040011980 phba->hba_flag |= HBA_SP_QUEUE_EVT;
James Smart4d9ab992009-10-02 15:16:39 -040011981 spin_unlock_irqrestore(&phba->hbalock, iflags);
11982 workposted = true;
11983 break;
11984 case FC_STATUS_INSUFF_BUF_NEED_BUF:
11985 case FC_STATUS_INSUFF_BUF_FRM_DISC:
James Smartb84daac2012-08-03 12:35:13 -040011986 hrq->RQ_no_posted_buf++;
James Smart4d9ab992009-10-02 15:16:39 -040011987 /* Post more buffers if possible */
11988 spin_lock_irqsave(&phba->hbalock, iflags);
11989 phba->hba_flag |= HBA_POST_RECEIVE_BUFFER;
11990 spin_unlock_irqrestore(&phba->hbalock, iflags);
11991 workposted = true;
11992 break;
11993 }
11994out:
11995 return workposted;
James Smart4d9ab992009-10-02 15:16:39 -040011996}
11997
11998/**
11999 * lpfc_sli4_sp_handle_cqe - Process a slow path completion queue entry
12000 * @phba: Pointer to HBA context object.
12001 * @cq: Pointer to the completion queue.
12002 * @wcqe: Pointer to a completion queue entry.
12003 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030012004 * This routine process a slow-path work-queue or receive queue completion queue
James Smart4d9ab992009-10-02 15:16:39 -040012005 * entry.
12006 *
12007 * Return: true if work posted to worker thread, otherwise false.
12008 **/
12009static bool
12010lpfc_sli4_sp_handle_cqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
James Smart4f774512009-05-22 14:52:35 -040012011 struct lpfc_cqe *cqe)
12012{
James Smart45ed1192009-10-02 15:17:02 -040012013 struct lpfc_cqe cqevt;
James Smart4f774512009-05-22 14:52:35 -040012014 bool workposted = false;
12015
12016 /* Copy the work queue CQE and convert endian order if needed */
James Smart45ed1192009-10-02 15:17:02 -040012017 lpfc_sli_pcimem_bcopy(cqe, &cqevt, sizeof(struct lpfc_cqe));
James Smart4f774512009-05-22 14:52:35 -040012018
12019 /* Check and process for different type of WCQE and dispatch */
James Smart45ed1192009-10-02 15:17:02 -040012020 switch (bf_get(lpfc_cqe_code, &cqevt)) {
James Smart4f774512009-05-22 14:52:35 -040012021 case CQE_CODE_COMPL_WQE:
James Smart45ed1192009-10-02 15:17:02 -040012022 /* Process the WQ/RQ complete event */
James Smartbc739052010-08-04 16:11:18 -040012023 phba->last_completion_time = jiffies;
James Smart2a76a282012-08-03 12:35:54 -040012024 workposted = lpfc_sli4_sp_handle_els_wcqe(phba, cq,
James Smart45ed1192009-10-02 15:17:02 -040012025 (struct lpfc_wcqe_complete *)&cqevt);
James Smart4f774512009-05-22 14:52:35 -040012026 break;
12027 case CQE_CODE_RELEASE_WQE:
12028 /* Process the WQ release event */
12029 lpfc_sli4_sp_handle_rel_wcqe(phba,
James Smart45ed1192009-10-02 15:17:02 -040012030 (struct lpfc_wcqe_release *)&cqevt);
James Smart4f774512009-05-22 14:52:35 -040012031 break;
12032 case CQE_CODE_XRI_ABORTED:
12033 /* Process the WQ XRI abort event */
James Smartbc739052010-08-04 16:11:18 -040012034 phba->last_completion_time = jiffies;
James Smart4f774512009-05-22 14:52:35 -040012035 workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
James Smart45ed1192009-10-02 15:17:02 -040012036 (struct sli4_wcqe_xri_aborted *)&cqevt);
James Smart4f774512009-05-22 14:52:35 -040012037 break;
James Smart4d9ab992009-10-02 15:16:39 -040012038 case CQE_CODE_RECEIVE:
James Smart7851fe22011-07-22 18:36:52 -040012039 case CQE_CODE_RECEIVE_V1:
James Smart4d9ab992009-10-02 15:16:39 -040012040 /* Process the RQ event */
James Smartbc739052010-08-04 16:11:18 -040012041 phba->last_completion_time = jiffies;
James Smart4d9ab992009-10-02 15:16:39 -040012042 workposted = lpfc_sli4_sp_handle_rcqe(phba,
James Smart45ed1192009-10-02 15:17:02 -040012043 (struct lpfc_rcqe *)&cqevt);
James Smart4d9ab992009-10-02 15:16:39 -040012044 break;
James Smart4f774512009-05-22 14:52:35 -040012045 default:
12046 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12047 "0388 Not a valid WCQE code: x%x\n",
James Smart45ed1192009-10-02 15:17:02 -040012048 bf_get(lpfc_cqe_code, &cqevt));
James Smart4f774512009-05-22 14:52:35 -040012049 break;
12050 }
12051 return workposted;
12052}
12053
12054/**
James Smart4f774512009-05-22 14:52:35 -040012055 * lpfc_sli4_sp_handle_eqe - Process a slow-path event queue entry
12056 * @phba: Pointer to HBA context object.
12057 * @eqe: Pointer to fast-path event queue entry.
12058 *
12059 * This routine process a event queue entry from the slow-path event queue.
12060 * It will check the MajorCode and MinorCode to determine this is for a
12061 * completion event on a completion queue, if not, an error shall be logged
12062 * and just return. Otherwise, it will get to the corresponding completion
12063 * queue and process all the entries on that completion queue, rearm the
12064 * completion queue, and then return.
12065 *
12066 **/
12067static void
James Smart67d12732012-08-03 12:36:13 -040012068lpfc_sli4_sp_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe,
12069 struct lpfc_queue *speq)
James Smart4f774512009-05-22 14:52:35 -040012070{
James Smart67d12732012-08-03 12:36:13 -040012071 struct lpfc_queue *cq = NULL, *childq;
James Smart4f774512009-05-22 14:52:35 -040012072 struct lpfc_cqe *cqe;
12073 bool workposted = false;
12074 int ecount = 0;
12075 uint16_t cqid;
12076
James Smart4f774512009-05-22 14:52:35 -040012077 /* Get the reference to the corresponding CQ */
James Smartcb5172e2010-03-15 11:25:07 -040012078 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
James Smart4f774512009-05-22 14:52:35 -040012079
James Smart4f774512009-05-22 14:52:35 -040012080 list_for_each_entry(childq, &speq->child_list, list) {
12081 if (childq->queue_id == cqid) {
12082 cq = childq;
12083 break;
12084 }
12085 }
12086 if (unlikely(!cq)) {
James Smart75baf692010-06-08 18:31:21 -040012087 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
12088 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12089 "0365 Slow-path CQ identifier "
12090 "(%d) does not exist\n", cqid);
James Smart4f774512009-05-22 14:52:35 -040012091 return;
12092 }
12093
12094 /* Process all the entries to the CQ */
12095 switch (cq->type) {
12096 case LPFC_MCQ:
12097 while ((cqe = lpfc_sli4_cq_get(cq))) {
12098 workposted |= lpfc_sli4_sp_handle_mcqe(phba, cqe);
James Smart73d91e52011-10-10 21:32:10 -040012099 if (!(++ecount % cq->entry_repost))
James Smart4f774512009-05-22 14:52:35 -040012100 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
James Smartb84daac2012-08-03 12:35:13 -040012101 cq->CQ_mbox++;
James Smart4f774512009-05-22 14:52:35 -040012102 }
12103 break;
12104 case LPFC_WCQ:
12105 while ((cqe = lpfc_sli4_cq_get(cq))) {
James Smart05580562011-05-24 11:40:48 -040012106 if (cq->subtype == LPFC_FCP)
12107 workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq,
12108 cqe);
12109 else
12110 workposted |= lpfc_sli4_sp_handle_cqe(phba, cq,
12111 cqe);
James Smart73d91e52011-10-10 21:32:10 -040012112 if (!(++ecount % cq->entry_repost))
James Smart4f774512009-05-22 14:52:35 -040012113 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
12114 }
James Smartb84daac2012-08-03 12:35:13 -040012115
12116 /* Track the max number of CQEs processed in 1 EQ */
12117 if (ecount > cq->CQ_max_cqe)
12118 cq->CQ_max_cqe = ecount;
James Smart4f774512009-05-22 14:52:35 -040012119 break;
12120 default:
12121 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12122 "0370 Invalid completion queue type (%d)\n",
12123 cq->type);
12124 return;
12125 }
12126
12127 /* Catch the no cq entry condition, log an error */
12128 if (unlikely(ecount == 0))
12129 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12130 "0371 No entry from the CQ: identifier "
12131 "(x%x), type (%d)\n", cq->queue_id, cq->type);
12132
12133 /* In any case, flash and re-arm the RCQ */
12134 lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
12135
12136 /* wake up worker thread if there are works to be done */
12137 if (workposted)
12138 lpfc_worker_wake_up(phba);
12139}
12140
12141/**
12142 * lpfc_sli4_fp_handle_fcp_wcqe - Process fast-path work queue completion entry
James Smart2a76a282012-08-03 12:35:54 -040012143 * @phba: Pointer to HBA context object.
12144 * @cq: Pointer to associated CQ
12145 * @wcqe: Pointer to work-queue completion queue entry.
James Smart4f774512009-05-22 14:52:35 -040012146 *
12147 * This routine process a fast-path work queue completion entry from fast-path
12148 * event queue for FCP command response completion.
12149 **/
12150static void
James Smart2a76a282012-08-03 12:35:54 -040012151lpfc_sli4_fp_handle_fcp_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
James Smart4f774512009-05-22 14:52:35 -040012152 struct lpfc_wcqe_complete *wcqe)
12153{
James Smart2a76a282012-08-03 12:35:54 -040012154 struct lpfc_sli_ring *pring = cq->pring;
James Smart4f774512009-05-22 14:52:35 -040012155 struct lpfc_iocbq *cmdiocbq;
12156 struct lpfc_iocbq irspiocbq;
12157 unsigned long iflags;
12158
James Smart4f774512009-05-22 14:52:35 -040012159 /* Check for response status */
12160 if (unlikely(bf_get(lpfc_wcqe_c_status, wcqe))) {
12161 /* If resource errors reported from HBA, reduce queue
12162 * depth of the SCSI device.
12163 */
James Smarte3d2b802012-08-14 14:25:43 -040012164 if (((bf_get(lpfc_wcqe_c_status, wcqe) ==
12165 IOSTAT_LOCAL_REJECT)) &&
12166 ((wcqe->parameter & IOERR_PARAM_MASK) ==
12167 IOERR_NO_RESOURCES))
James Smart4f774512009-05-22 14:52:35 -040012168 phba->lpfc_rampdown_queue_depth(phba);
James Smarte3d2b802012-08-14 14:25:43 -040012169
James Smart4f774512009-05-22 14:52:35 -040012170 /* Log the error status */
12171 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12172 "0373 FCP complete error: status=x%x, "
12173 "hw_status=x%x, total_data_specified=%d, "
12174 "parameter=x%x, word3=x%x\n",
12175 bf_get(lpfc_wcqe_c_status, wcqe),
12176 bf_get(lpfc_wcqe_c_hw_status, wcqe),
12177 wcqe->total_data_placed, wcqe->parameter,
12178 wcqe->word3);
12179 }
12180
12181 /* Look up the FCP command IOCB and create pseudo response IOCB */
James Smart7e56aa22012-08-03 12:35:34 -040012182 spin_lock_irqsave(&pring->ring_lock, iflags);
12183 pring->stats.iocb_event++;
James Smart4f774512009-05-22 14:52:35 -040012184 cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
12185 bf_get(lpfc_wcqe_c_request_tag, wcqe));
James Smart7e56aa22012-08-03 12:35:34 -040012186 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smart4f774512009-05-22 14:52:35 -040012187 if (unlikely(!cmdiocbq)) {
12188 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12189 "0374 FCP complete with no corresponding "
12190 "cmdiocb: iotag (%d)\n",
12191 bf_get(lpfc_wcqe_c_request_tag, wcqe));
12192 return;
12193 }
12194 if (unlikely(!cmdiocbq->iocb_cmpl)) {
12195 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12196 "0375 FCP cmdiocb not callback function "
12197 "iotag: (%d)\n",
12198 bf_get(lpfc_wcqe_c_request_tag, wcqe));
12199 return;
12200 }
12201
12202 /* Fake the irspiocb and copy necessary response information */
James Smart341af102010-01-26 23:07:37 -050012203 lpfc_sli4_iocb_param_transfer(phba, &irspiocbq, cmdiocbq, wcqe);
James Smart4f774512009-05-22 14:52:35 -040012204
James Smart0f65ff62010-02-26 14:14:23 -050012205 if (cmdiocbq->iocb_flag & LPFC_DRIVER_ABORTED) {
12206 spin_lock_irqsave(&phba->hbalock, iflags);
12207 cmdiocbq->iocb_flag &= ~LPFC_DRIVER_ABORTED;
12208 spin_unlock_irqrestore(&phba->hbalock, iflags);
12209 }
12210
James Smart4f774512009-05-22 14:52:35 -040012211 /* Pass the cmd_iocb and the rsp state to the upper layer */
12212 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq, &irspiocbq);
12213}
12214
12215/**
12216 * lpfc_sli4_fp_handle_rel_wcqe - Handle fast-path WQ entry consumed event
12217 * @phba: Pointer to HBA context object.
12218 * @cq: Pointer to completion queue.
12219 * @wcqe: Pointer to work-queue completion queue entry.
12220 *
12221 * This routine handles an fast-path WQ entry comsumed event by invoking the
12222 * proper WQ release routine to the slow-path WQ.
12223 **/
12224static void
12225lpfc_sli4_fp_handle_rel_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
12226 struct lpfc_wcqe_release *wcqe)
12227{
12228 struct lpfc_queue *childwq;
12229 bool wqid_matched = false;
12230 uint16_t fcp_wqid;
12231
12232 /* Check for fast-path FCP work queue release */
12233 fcp_wqid = bf_get(lpfc_wcqe_r_wq_id, wcqe);
12234 list_for_each_entry(childwq, &cq->child_list, list) {
12235 if (childwq->queue_id == fcp_wqid) {
12236 lpfc_sli4_wq_release(childwq,
12237 bf_get(lpfc_wcqe_r_wqe_index, wcqe));
12238 wqid_matched = true;
12239 break;
12240 }
12241 }
12242 /* Report warning log message if no match found */
12243 if (wqid_matched != true)
12244 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12245 "2580 Fast-path wqe consume event carries "
12246 "miss-matched qid: wcqe-qid=x%x\n", fcp_wqid);
12247}
12248
12249/**
12250 * lpfc_sli4_fp_handle_wcqe - Process fast-path work queue completion entry
12251 * @cq: Pointer to the completion queue.
12252 * @eqe: Pointer to fast-path completion queue entry.
12253 *
12254 * This routine process a fast-path work queue completion entry from fast-path
12255 * event queue for FCP command response completion.
12256 **/
12257static int
12258lpfc_sli4_fp_handle_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
12259 struct lpfc_cqe *cqe)
12260{
12261 struct lpfc_wcqe_release wcqe;
12262 bool workposted = false;
12263
12264 /* Copy the work queue CQE and convert endian order if needed */
12265 lpfc_sli_pcimem_bcopy(cqe, &wcqe, sizeof(struct lpfc_cqe));
12266
12267 /* Check and process for different type of WCQE and dispatch */
12268 switch (bf_get(lpfc_wcqe_c_code, &wcqe)) {
12269 case CQE_CODE_COMPL_WQE:
James Smartb84daac2012-08-03 12:35:13 -040012270 cq->CQ_wq++;
James Smart4f774512009-05-22 14:52:35 -040012271 /* Process the WQ complete event */
James Smart98fc5dd2010-06-07 15:24:29 -040012272 phba->last_completion_time = jiffies;
James Smart2a76a282012-08-03 12:35:54 -040012273 lpfc_sli4_fp_handle_fcp_wcqe(phba, cq,
James Smart4f774512009-05-22 14:52:35 -040012274 (struct lpfc_wcqe_complete *)&wcqe);
12275 break;
12276 case CQE_CODE_RELEASE_WQE:
James Smartb84daac2012-08-03 12:35:13 -040012277 cq->CQ_release_wqe++;
James Smart4f774512009-05-22 14:52:35 -040012278 /* Process the WQ release event */
12279 lpfc_sli4_fp_handle_rel_wcqe(phba, cq,
12280 (struct lpfc_wcqe_release *)&wcqe);
12281 break;
12282 case CQE_CODE_XRI_ABORTED:
James Smartb84daac2012-08-03 12:35:13 -040012283 cq->CQ_xri_aborted++;
James Smart4f774512009-05-22 14:52:35 -040012284 /* Process the WQ XRI abort event */
James Smartbc739052010-08-04 16:11:18 -040012285 phba->last_completion_time = jiffies;
James Smart4f774512009-05-22 14:52:35 -040012286 workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
12287 (struct sli4_wcqe_xri_aborted *)&wcqe);
12288 break;
12289 default:
12290 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12291 "0144 Not a valid WCQE code: x%x\n",
12292 bf_get(lpfc_wcqe_c_code, &wcqe));
12293 break;
12294 }
12295 return workposted;
12296}
12297
12298/**
James Smart67d12732012-08-03 12:36:13 -040012299 * lpfc_sli4_hba_handle_eqe - Process a fast-path event queue entry
James Smart4f774512009-05-22 14:52:35 -040012300 * @phba: Pointer to HBA context object.
12301 * @eqe: Pointer to fast-path event queue entry.
12302 *
12303 * This routine process a event queue entry from the fast-path event queue.
12304 * It will check the MajorCode and MinorCode to determine this is for a
12305 * completion event on a completion queue, if not, an error shall be logged
12306 * and just return. Otherwise, it will get to the corresponding completion
12307 * queue and process all the entries on the completion queue, rearm the
12308 * completion queue, and then return.
12309 **/
12310static void
James Smart67d12732012-08-03 12:36:13 -040012311lpfc_sli4_hba_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe,
12312 uint32_t qidx)
James Smart4f774512009-05-22 14:52:35 -040012313{
12314 struct lpfc_queue *cq;
12315 struct lpfc_cqe *cqe;
12316 bool workposted = false;
12317 uint16_t cqid;
12318 int ecount = 0;
12319
James Smartcb5172e2010-03-15 11:25:07 -040012320 if (unlikely(bf_get_le32(lpfc_eqe_major_code, eqe) != 0)) {
James Smart4f774512009-05-22 14:52:35 -040012321 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart67d12732012-08-03 12:36:13 -040012322 "0366 Not a valid completion "
James Smart4f774512009-05-22 14:52:35 -040012323 "event: majorcode=x%x, minorcode=x%x\n",
James Smartcb5172e2010-03-15 11:25:07 -040012324 bf_get_le32(lpfc_eqe_major_code, eqe),
12325 bf_get_le32(lpfc_eqe_minor_code, eqe));
James Smart4f774512009-05-22 14:52:35 -040012326 return;
12327 }
12328
James Smart67d12732012-08-03 12:36:13 -040012329 /* Get the reference to the corresponding CQ */
12330 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
12331
12332 /* Check if this is a Slow path event */
12333 if (unlikely(cqid != phba->sli4_hba.fcp_cq_map[qidx])) {
12334 lpfc_sli4_sp_handle_eqe(phba, eqe,
12335 phba->sli4_hba.hba_eq[qidx]);
12336 return;
12337 }
12338
James Smart2e90f4b2011-12-13 13:22:37 -050012339 if (unlikely(!phba->sli4_hba.fcp_cq)) {
12340 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12341 "3146 Fast-path completion queues "
12342 "does not exist\n");
12343 return;
12344 }
James Smart67d12732012-08-03 12:36:13 -040012345 cq = phba->sli4_hba.fcp_cq[qidx];
James Smart4f774512009-05-22 14:52:35 -040012346 if (unlikely(!cq)) {
James Smart75baf692010-06-08 18:31:21 -040012347 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
12348 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12349 "0367 Fast-path completion queue "
James Smart67d12732012-08-03 12:36:13 -040012350 "(%d) does not exist\n", qidx);
James Smart4f774512009-05-22 14:52:35 -040012351 return;
12352 }
12353
James Smart4f774512009-05-22 14:52:35 -040012354 if (unlikely(cqid != cq->queue_id)) {
12355 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12356 "0368 Miss-matched fast-path completion "
12357 "queue identifier: eqcqid=%d, fcpcqid=%d\n",
12358 cqid, cq->queue_id);
12359 return;
12360 }
12361
12362 /* Process all the entries to the CQ */
12363 while ((cqe = lpfc_sli4_cq_get(cq))) {
12364 workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq, cqe);
James Smart73d91e52011-10-10 21:32:10 -040012365 if (!(++ecount % cq->entry_repost))
James Smart4f774512009-05-22 14:52:35 -040012366 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
12367 }
12368
James Smartb84daac2012-08-03 12:35:13 -040012369 /* Track the max number of CQEs processed in 1 EQ */
12370 if (ecount > cq->CQ_max_cqe)
12371 cq->CQ_max_cqe = ecount;
12372
James Smart4f774512009-05-22 14:52:35 -040012373 /* Catch the no cq entry condition */
12374 if (unlikely(ecount == 0))
12375 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12376 "0369 No entry from fast-path completion "
12377 "queue fcpcqid=%d\n", cq->queue_id);
12378
12379 /* In any case, flash and re-arm the CQ */
12380 lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
12381
12382 /* wake up worker thread if there are works to be done */
12383 if (workposted)
12384 lpfc_worker_wake_up(phba);
12385}
12386
12387static void
12388lpfc_sli4_eq_flush(struct lpfc_hba *phba, struct lpfc_queue *eq)
12389{
12390 struct lpfc_eqe *eqe;
12391
12392 /* walk all the EQ entries and drop on the floor */
12393 while ((eqe = lpfc_sli4_eq_get(eq)))
12394 ;
12395
12396 /* Clear and re-arm the EQ */
12397 lpfc_sli4_eq_release(eq, LPFC_QUEUE_REARM);
12398}
12399
James Smart1ba981f2014-02-20 09:56:45 -050012400
12401/**
12402 * lpfc_sli4_fof_handle_eqe - Process a Flash Optimized Fabric event queue
12403 * entry
12404 * @phba: Pointer to HBA context object.
12405 * @eqe: Pointer to fast-path event queue entry.
12406 *
12407 * This routine process a event queue entry from the Flash Optimized Fabric
12408 * event queue. It will check the MajorCode and MinorCode to determine this
12409 * is for a completion event on a completion queue, if not, an error shall be
12410 * logged and just return. Otherwise, it will get to the corresponding
12411 * completion queue and process all the entries on the completion queue, rearm
12412 * the completion queue, and then return.
12413 **/
12414static void
12415lpfc_sli4_fof_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe)
12416{
12417 struct lpfc_queue *cq;
12418 struct lpfc_cqe *cqe;
12419 bool workposted = false;
12420 uint16_t cqid;
12421 int ecount = 0;
12422
12423 if (unlikely(bf_get_le32(lpfc_eqe_major_code, eqe) != 0)) {
12424 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12425 "9147 Not a valid completion "
12426 "event: majorcode=x%x, minorcode=x%x\n",
12427 bf_get_le32(lpfc_eqe_major_code, eqe),
12428 bf_get_le32(lpfc_eqe_minor_code, eqe));
12429 return;
12430 }
12431
12432 /* Get the reference to the corresponding CQ */
12433 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
12434
12435 /* Next check for OAS */
12436 cq = phba->sli4_hba.oas_cq;
12437 if (unlikely(!cq)) {
12438 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
12439 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12440 "9148 OAS completion queue "
12441 "does not exist\n");
12442 return;
12443 }
12444
12445 if (unlikely(cqid != cq->queue_id)) {
12446 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12447 "9149 Miss-matched fast-path compl "
12448 "queue id: eqcqid=%d, fcpcqid=%d\n",
12449 cqid, cq->queue_id);
12450 return;
12451 }
12452
12453 /* Process all the entries to the OAS CQ */
12454 while ((cqe = lpfc_sli4_cq_get(cq))) {
12455 workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq, cqe);
12456 if (!(++ecount % cq->entry_repost))
12457 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
12458 }
12459
12460 /* Track the max number of CQEs processed in 1 EQ */
12461 if (ecount > cq->CQ_max_cqe)
12462 cq->CQ_max_cqe = ecount;
12463
12464 /* Catch the no cq entry condition */
12465 if (unlikely(ecount == 0))
12466 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12467 "9153 No entry from fast-path completion "
12468 "queue fcpcqid=%d\n", cq->queue_id);
12469
12470 /* In any case, flash and re-arm the CQ */
12471 lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
12472
12473 /* wake up worker thread if there are works to be done */
12474 if (workposted)
12475 lpfc_worker_wake_up(phba);
12476}
12477
12478/**
12479 * lpfc_sli4_fof_intr_handler - HBA interrupt handler to SLI-4 device
12480 * @irq: Interrupt number.
12481 * @dev_id: The device context pointer.
12482 *
12483 * This function is directly called from the PCI layer as an interrupt
12484 * service routine when device with SLI-4 interface spec is enabled with
12485 * MSI-X multi-message interrupt mode and there is a Flash Optimized Fabric
12486 * IOCB ring event in the HBA. However, when the device is enabled with either
12487 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
12488 * device-level interrupt handler. When the PCI slot is in error recovery
12489 * or the HBA is undergoing initialization, the interrupt handler will not
12490 * process the interrupt. The Flash Optimized Fabric ring event are handled in
12491 * the intrrupt context. This function is called without any lock held.
12492 * It gets the hbalock to access and update SLI data structures. Note that,
12493 * the EQ to CQ are one-to-one map such that the EQ index is
12494 * equal to that of CQ index.
12495 *
12496 * This function returns IRQ_HANDLED when interrupt is handled else it
12497 * returns IRQ_NONE.
12498 **/
12499irqreturn_t
12500lpfc_sli4_fof_intr_handler(int irq, void *dev_id)
12501{
12502 struct lpfc_hba *phba;
12503 struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
12504 struct lpfc_queue *eq;
12505 struct lpfc_eqe *eqe;
12506 unsigned long iflag;
12507 int ecount = 0;
12508 uint32_t eqidx;
12509
12510 /* Get the driver's phba structure from the dev_id */
12511 fcp_eq_hdl = (struct lpfc_fcp_eq_hdl *)dev_id;
12512 phba = fcp_eq_hdl->phba;
12513 eqidx = fcp_eq_hdl->idx;
12514
12515 if (unlikely(!phba))
12516 return IRQ_NONE;
12517
12518 /* Get to the EQ struct associated with this vector */
12519 eq = phba->sli4_hba.fof_eq;
12520 if (unlikely(!eq))
12521 return IRQ_NONE;
12522
12523 /* Check device state for handling interrupt */
12524 if (unlikely(lpfc_intr_state_check(phba))) {
12525 eq->EQ_badstate++;
12526 /* Check again for link_state with lock held */
12527 spin_lock_irqsave(&phba->hbalock, iflag);
12528 if (phba->link_state < LPFC_LINK_DOWN)
12529 /* Flush, clear interrupt, and rearm the EQ */
12530 lpfc_sli4_eq_flush(phba, eq);
12531 spin_unlock_irqrestore(&phba->hbalock, iflag);
12532 return IRQ_NONE;
12533 }
12534
12535 /*
12536 * Process all the event on FCP fast-path EQ
12537 */
12538 while ((eqe = lpfc_sli4_eq_get(eq))) {
12539 lpfc_sli4_fof_handle_eqe(phba, eqe);
12540 if (!(++ecount % eq->entry_repost))
12541 lpfc_sli4_eq_release(eq, LPFC_QUEUE_NOARM);
12542 eq->EQ_processed++;
12543 }
12544
12545 /* Track the max number of EQEs processed in 1 intr */
12546 if (ecount > eq->EQ_max_eqe)
12547 eq->EQ_max_eqe = ecount;
12548
12549
12550 if (unlikely(ecount == 0)) {
12551 eq->EQ_no_entry++;
12552
12553 if (phba->intr_type == MSIX)
12554 /* MSI-X treated interrupt served as no EQ share INT */
12555 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12556 "9145 MSI-X interrupt with no EQE\n");
12557 else {
12558 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12559 "9146 ISR interrupt with no EQE\n");
12560 /* Non MSI-X treated on interrupt as EQ share INT */
12561 return IRQ_NONE;
12562 }
12563 }
12564 /* Always clear and re-arm the fast-path EQ */
12565 lpfc_sli4_eq_release(eq, LPFC_QUEUE_REARM);
12566 return IRQ_HANDLED;
12567}
12568
James Smart4f774512009-05-22 14:52:35 -040012569/**
James Smart67d12732012-08-03 12:36:13 -040012570 * lpfc_sli4_hba_intr_handler - HBA interrupt handler to SLI-4 device
James Smart4f774512009-05-22 14:52:35 -040012571 * @irq: Interrupt number.
12572 * @dev_id: The device context pointer.
12573 *
12574 * This function is directly called from the PCI layer as an interrupt
12575 * service routine when device with SLI-4 interface spec is enabled with
12576 * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
12577 * ring event in the HBA. However, when the device is enabled with either
12578 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
12579 * device-level interrupt handler. When the PCI slot is in error recovery
12580 * or the HBA is undergoing initialization, the interrupt handler will not
12581 * process the interrupt. The SCSI FCP fast-path ring event are handled in
12582 * the intrrupt context. This function is called without any lock held.
12583 * It gets the hbalock to access and update SLI data structures. Note that,
12584 * the FCP EQ to FCP CQ are one-to-one map such that the FCP EQ index is
12585 * equal to that of FCP CQ index.
12586 *
James Smart67d12732012-08-03 12:36:13 -040012587 * The link attention and ELS ring attention events are handled
12588 * by the worker thread. The interrupt handler signals the worker thread
12589 * and returns for these events. This function is called without any lock
12590 * held. It gets the hbalock to access and update SLI data structures.
12591 *
James Smart4f774512009-05-22 14:52:35 -040012592 * This function returns IRQ_HANDLED when interrupt is handled else it
12593 * returns IRQ_NONE.
12594 **/
12595irqreturn_t
James Smart67d12732012-08-03 12:36:13 -040012596lpfc_sli4_hba_intr_handler(int irq, void *dev_id)
James Smart4f774512009-05-22 14:52:35 -040012597{
12598 struct lpfc_hba *phba;
12599 struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
12600 struct lpfc_queue *fpeq;
12601 struct lpfc_eqe *eqe;
12602 unsigned long iflag;
12603 int ecount = 0;
James Smart962bc512013-01-03 15:44:00 -050012604 int fcp_eqidx;
James Smart4f774512009-05-22 14:52:35 -040012605
12606 /* Get the driver's phba structure from the dev_id */
12607 fcp_eq_hdl = (struct lpfc_fcp_eq_hdl *)dev_id;
12608 phba = fcp_eq_hdl->phba;
12609 fcp_eqidx = fcp_eq_hdl->idx;
12610
12611 if (unlikely(!phba))
12612 return IRQ_NONE;
James Smart67d12732012-08-03 12:36:13 -040012613 if (unlikely(!phba->sli4_hba.hba_eq))
James Smart5350d872011-10-10 21:33:49 -040012614 return IRQ_NONE;
James Smart4f774512009-05-22 14:52:35 -040012615
12616 /* Get to the EQ struct associated with this vector */
James Smart67d12732012-08-03 12:36:13 -040012617 fpeq = phba->sli4_hba.hba_eq[fcp_eqidx];
James Smart2e90f4b2011-12-13 13:22:37 -050012618 if (unlikely(!fpeq))
12619 return IRQ_NONE;
James Smart4f774512009-05-22 14:52:35 -040012620
James Smartba20c852012-08-03 12:36:52 -040012621 if (lpfc_fcp_look_ahead) {
12622 if (atomic_dec_and_test(&fcp_eq_hdl->fcp_eq_in_use))
12623 lpfc_sli4_eq_clr_intr(fpeq);
12624 else {
12625 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
12626 return IRQ_NONE;
12627 }
12628 }
12629
James Smart4f774512009-05-22 14:52:35 -040012630 /* Check device state for handling interrupt */
12631 if (unlikely(lpfc_intr_state_check(phba))) {
James Smartb84daac2012-08-03 12:35:13 -040012632 fpeq->EQ_badstate++;
James Smart4f774512009-05-22 14:52:35 -040012633 /* Check again for link_state with lock held */
12634 spin_lock_irqsave(&phba->hbalock, iflag);
12635 if (phba->link_state < LPFC_LINK_DOWN)
12636 /* Flush, clear interrupt, and rearm the EQ */
12637 lpfc_sli4_eq_flush(phba, fpeq);
12638 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smartba20c852012-08-03 12:36:52 -040012639 if (lpfc_fcp_look_ahead)
12640 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
James Smart4f774512009-05-22 14:52:35 -040012641 return IRQ_NONE;
12642 }
12643
12644 /*
12645 * Process all the event on FCP fast-path EQ
12646 */
12647 while ((eqe = lpfc_sli4_eq_get(fpeq))) {
James Smarteb016562014-09-03 12:58:06 -040012648 if (eqe == NULL)
12649 break;
12650
James Smart67d12732012-08-03 12:36:13 -040012651 lpfc_sli4_hba_handle_eqe(phba, eqe, fcp_eqidx);
James Smart73d91e52011-10-10 21:32:10 -040012652 if (!(++ecount % fpeq->entry_repost))
James Smart4f774512009-05-22 14:52:35 -040012653 lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_NOARM);
James Smartb84daac2012-08-03 12:35:13 -040012654 fpeq->EQ_processed++;
James Smart4f774512009-05-22 14:52:35 -040012655 }
12656
James Smartb84daac2012-08-03 12:35:13 -040012657 /* Track the max number of EQEs processed in 1 intr */
12658 if (ecount > fpeq->EQ_max_eqe)
12659 fpeq->EQ_max_eqe = ecount;
12660
James Smart4f774512009-05-22 14:52:35 -040012661 /* Always clear and re-arm the fast-path EQ */
12662 lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_REARM);
12663
12664 if (unlikely(ecount == 0)) {
James Smartb84daac2012-08-03 12:35:13 -040012665 fpeq->EQ_no_entry++;
James Smartba20c852012-08-03 12:36:52 -040012666
12667 if (lpfc_fcp_look_ahead) {
12668 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
12669 return IRQ_NONE;
12670 }
12671
James Smart4f774512009-05-22 14:52:35 -040012672 if (phba->intr_type == MSIX)
12673 /* MSI-X treated interrupt served as no EQ share INT */
12674 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12675 "0358 MSI-X interrupt with no EQE\n");
12676 else
12677 /* Non MSI-X treated on interrupt as EQ share INT */
12678 return IRQ_NONE;
12679 }
12680
James Smartba20c852012-08-03 12:36:52 -040012681 if (lpfc_fcp_look_ahead)
12682 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
James Smart4f774512009-05-22 14:52:35 -040012683 return IRQ_HANDLED;
12684} /* lpfc_sli4_fp_intr_handler */
12685
12686/**
12687 * lpfc_sli4_intr_handler - Device-level interrupt handler for SLI-4 device
12688 * @irq: Interrupt number.
12689 * @dev_id: The device context pointer.
12690 *
12691 * This function is the device-level interrupt handler to device with SLI-4
12692 * interface spec, called from the PCI layer when either MSI or Pin-IRQ
12693 * interrupt mode is enabled and there is an event in the HBA which requires
12694 * driver attention. This function invokes the slow-path interrupt attention
12695 * handling function and fast-path interrupt attention handling function in
12696 * turn to process the relevant HBA attention events. This function is called
12697 * without any lock held. It gets the hbalock to access and update SLI data
12698 * structures.
12699 *
12700 * This function returns IRQ_HANDLED when interrupt is handled, else it
12701 * returns IRQ_NONE.
12702 **/
12703irqreturn_t
12704lpfc_sli4_intr_handler(int irq, void *dev_id)
12705{
12706 struct lpfc_hba *phba;
James Smart67d12732012-08-03 12:36:13 -040012707 irqreturn_t hba_irq_rc;
12708 bool hba_handled = false;
James Smart962bc512013-01-03 15:44:00 -050012709 int fcp_eqidx;
James Smart4f774512009-05-22 14:52:35 -040012710
12711 /* Get the driver's phba structure from the dev_id */
12712 phba = (struct lpfc_hba *)dev_id;
12713
12714 if (unlikely(!phba))
12715 return IRQ_NONE;
12716
12717 /*
James Smart4f774512009-05-22 14:52:35 -040012718 * Invoke fast-path host attention interrupt handling as appropriate.
12719 */
James Smart67d12732012-08-03 12:36:13 -040012720 for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_io_channel; fcp_eqidx++) {
12721 hba_irq_rc = lpfc_sli4_hba_intr_handler(irq,
James Smart4f774512009-05-22 14:52:35 -040012722 &phba->sli4_hba.fcp_eq_hdl[fcp_eqidx]);
James Smart67d12732012-08-03 12:36:13 -040012723 if (hba_irq_rc == IRQ_HANDLED)
12724 hba_handled |= true;
James Smart4f774512009-05-22 14:52:35 -040012725 }
12726
James Smart1ba981f2014-02-20 09:56:45 -050012727 if (phba->cfg_fof) {
12728 hba_irq_rc = lpfc_sli4_fof_intr_handler(irq,
12729 &phba->sli4_hba.fcp_eq_hdl[0]);
12730 if (hba_irq_rc == IRQ_HANDLED)
12731 hba_handled |= true;
12732 }
12733
James Smart67d12732012-08-03 12:36:13 -040012734 return (hba_handled == true) ? IRQ_HANDLED : IRQ_NONE;
James Smart4f774512009-05-22 14:52:35 -040012735} /* lpfc_sli4_intr_handler */
12736
12737/**
12738 * lpfc_sli4_queue_free - free a queue structure and associated memory
12739 * @queue: The queue structure to free.
12740 *
Uwe Kleine-Königb5950762010-11-01 15:38:34 -040012741 * This function frees a queue structure and the DMAable memory used for
James Smart4f774512009-05-22 14:52:35 -040012742 * the host resident queue. This function must be called after destroying the
12743 * queue on the HBA.
12744 **/
12745void
12746lpfc_sli4_queue_free(struct lpfc_queue *queue)
12747{
12748 struct lpfc_dmabuf *dmabuf;
12749
12750 if (!queue)
12751 return;
12752
12753 while (!list_empty(&queue->page_list)) {
12754 list_remove_head(&queue->page_list, dmabuf, struct lpfc_dmabuf,
12755 list);
James Smart49198b32010-04-06 15:04:33 -040012756 dma_free_coherent(&queue->phba->pcidev->dev, SLI4_PAGE_SIZE,
James Smart4f774512009-05-22 14:52:35 -040012757 dmabuf->virt, dmabuf->phys);
12758 kfree(dmabuf);
12759 }
12760 kfree(queue);
12761 return;
12762}
12763
12764/**
12765 * lpfc_sli4_queue_alloc - Allocate and initialize a queue structure
12766 * @phba: The HBA that this queue is being created on.
12767 * @entry_size: The size of each queue entry for this queue.
12768 * @entry count: The number of entries that this queue will handle.
12769 *
12770 * This function allocates a queue structure and the DMAable memory used for
12771 * the host resident queue. This function must be called before creating the
12772 * queue on the HBA.
12773 **/
12774struct lpfc_queue *
12775lpfc_sli4_queue_alloc(struct lpfc_hba *phba, uint32_t entry_size,
12776 uint32_t entry_count)
12777{
12778 struct lpfc_queue *queue;
12779 struct lpfc_dmabuf *dmabuf;
12780 int x, total_qe_count;
12781 void *dma_pointer;
James Smartcb5172e2010-03-15 11:25:07 -040012782 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
James Smart4f774512009-05-22 14:52:35 -040012783
James Smartcb5172e2010-03-15 11:25:07 -040012784 if (!phba->sli4_hba.pc_sli4_params.supported)
12785 hw_page_size = SLI4_PAGE_SIZE;
12786
James Smart4f774512009-05-22 14:52:35 -040012787 queue = kzalloc(sizeof(struct lpfc_queue) +
12788 (sizeof(union sli4_qe) * entry_count), GFP_KERNEL);
12789 if (!queue)
12790 return NULL;
James Smartcb5172e2010-03-15 11:25:07 -040012791 queue->page_count = (ALIGN(entry_size * entry_count,
12792 hw_page_size))/hw_page_size;
James Smart4f774512009-05-22 14:52:35 -040012793 INIT_LIST_HEAD(&queue->list);
12794 INIT_LIST_HEAD(&queue->page_list);
12795 INIT_LIST_HEAD(&queue->child_list);
12796 for (x = 0, total_qe_count = 0; x < queue->page_count; x++) {
12797 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
12798 if (!dmabuf)
12799 goto out_fail;
Joe Perches1aee3832014-09-03 12:56:12 -040012800 dmabuf->virt = dma_zalloc_coherent(&phba->pcidev->dev,
12801 hw_page_size, &dmabuf->phys,
12802 GFP_KERNEL);
James Smart4f774512009-05-22 14:52:35 -040012803 if (!dmabuf->virt) {
12804 kfree(dmabuf);
12805 goto out_fail;
12806 }
12807 dmabuf->buffer_tag = x;
12808 list_add_tail(&dmabuf->list, &queue->page_list);
12809 /* initialize queue's entry array */
12810 dma_pointer = dmabuf->virt;
12811 for (; total_qe_count < entry_count &&
James Smartcb5172e2010-03-15 11:25:07 -040012812 dma_pointer < (hw_page_size + dmabuf->virt);
James Smart4f774512009-05-22 14:52:35 -040012813 total_qe_count++, dma_pointer += entry_size) {
12814 queue->qe[total_qe_count].address = dma_pointer;
12815 }
12816 }
12817 queue->entry_size = entry_size;
12818 queue->entry_count = entry_count;
James Smart73d91e52011-10-10 21:32:10 -040012819
12820 /*
12821 * entry_repost is calculated based on the number of entries in the
12822 * queue. This works out except for RQs. If buffers are NOT initially
12823 * posted for every RQE, entry_repost should be adjusted accordingly.
12824 */
12825 queue->entry_repost = (entry_count >> 3);
12826 if (queue->entry_repost < LPFC_QUEUE_MIN_REPOST)
12827 queue->entry_repost = LPFC_QUEUE_MIN_REPOST;
James Smart4f774512009-05-22 14:52:35 -040012828 queue->phba = phba;
12829
12830 return queue;
12831out_fail:
12832 lpfc_sli4_queue_free(queue);
12833 return NULL;
12834}
12835
12836/**
James Smart962bc512013-01-03 15:44:00 -050012837 * lpfc_dual_chute_pci_bar_map - Map pci base address register to host memory
12838 * @phba: HBA structure that indicates port to create a queue on.
12839 * @pci_barset: PCI BAR set flag.
12840 *
12841 * This function shall perform iomap of the specified PCI BAR address to host
12842 * memory address if not already done so and return it. The returned host
12843 * memory address can be NULL.
12844 */
12845static void __iomem *
12846lpfc_dual_chute_pci_bar_map(struct lpfc_hba *phba, uint16_t pci_barset)
12847{
12848 struct pci_dev *pdev;
James Smart962bc512013-01-03 15:44:00 -050012849
12850 if (!phba->pcidev)
12851 return NULL;
12852 else
12853 pdev = phba->pcidev;
12854
12855 switch (pci_barset) {
12856 case WQ_PCI_BAR_0_AND_1:
James Smart962bc512013-01-03 15:44:00 -050012857 return phba->pci_bar0_memmap_p;
12858 case WQ_PCI_BAR_2_AND_3:
James Smart962bc512013-01-03 15:44:00 -050012859 return phba->pci_bar2_memmap_p;
12860 case WQ_PCI_BAR_4_AND_5:
James Smart962bc512013-01-03 15:44:00 -050012861 return phba->pci_bar4_memmap_p;
12862 default:
12863 break;
12864 }
12865 return NULL;
12866}
12867
12868/**
James Smart173edbb2012-06-12 13:54:50 -040012869 * lpfc_modify_fcp_eq_delay - Modify Delay Multiplier on FCP EQs
12870 * @phba: HBA structure that indicates port to create a queue on.
12871 * @startq: The starting FCP EQ to modify
12872 *
12873 * This function sends an MODIFY_EQ_DELAY mailbox command to the HBA.
12874 *
12875 * The @phba struct is used to send mailbox command to HBA. The @startq
12876 * is used to get the starting FCP EQ to change.
12877 * This function is asynchronous and will wait for the mailbox
12878 * command to finish before continuing.
12879 *
12880 * On success this function will return a zero. If unable to allocate enough
12881 * memory this function will return -ENOMEM. If the queue create mailbox command
12882 * fails this function will return -ENXIO.
12883 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040012884int
James Smart2c9c5a02015-04-07 15:07:15 -040012885lpfc_modify_fcp_eq_delay(struct lpfc_hba *phba, uint32_t startq)
James Smart173edbb2012-06-12 13:54:50 -040012886{
12887 struct lpfc_mbx_modify_eq_delay *eq_delay;
12888 LPFC_MBOXQ_t *mbox;
12889 struct lpfc_queue *eq;
12890 int cnt, rc, length, status = 0;
12891 uint32_t shdr_status, shdr_add_status;
James Smartee020062012-09-29 11:28:52 -040012892 uint32_t result;
James Smart173edbb2012-06-12 13:54:50 -040012893 int fcp_eqidx;
12894 union lpfc_sli4_cfg_shdr *shdr;
12895 uint16_t dmult;
12896
James Smart67d12732012-08-03 12:36:13 -040012897 if (startq >= phba->cfg_fcp_io_channel)
James Smart173edbb2012-06-12 13:54:50 -040012898 return 0;
12899
12900 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
12901 if (!mbox)
12902 return -ENOMEM;
12903 length = (sizeof(struct lpfc_mbx_modify_eq_delay) -
12904 sizeof(struct lpfc_sli4_cfg_mhdr));
12905 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
12906 LPFC_MBOX_OPCODE_MODIFY_EQ_DELAY,
12907 length, LPFC_SLI4_MBX_EMBED);
12908 eq_delay = &mbox->u.mqe.un.eq_delay;
12909
12910 /* Calculate delay multiper from maximum interrupt per second */
James Smartee020062012-09-29 11:28:52 -040012911 result = phba->cfg_fcp_imax / phba->cfg_fcp_io_channel;
12912 if (result > LPFC_DMULT_CONST)
12913 dmult = 0;
12914 else
12915 dmult = LPFC_DMULT_CONST/result - 1;
James Smart173edbb2012-06-12 13:54:50 -040012916
12917 cnt = 0;
James Smart67d12732012-08-03 12:36:13 -040012918 for (fcp_eqidx = startq; fcp_eqidx < phba->cfg_fcp_io_channel;
James Smart173edbb2012-06-12 13:54:50 -040012919 fcp_eqidx++) {
James Smart67d12732012-08-03 12:36:13 -040012920 eq = phba->sli4_hba.hba_eq[fcp_eqidx];
James Smart173edbb2012-06-12 13:54:50 -040012921 if (!eq)
12922 continue;
12923 eq_delay->u.request.eq[cnt].eq_id = eq->queue_id;
12924 eq_delay->u.request.eq[cnt].phase = 0;
12925 eq_delay->u.request.eq[cnt].delay_multi = dmult;
12926 cnt++;
12927 if (cnt >= LPFC_MAX_EQ_DELAY)
12928 break;
12929 }
12930 eq_delay->u.request.num_eq = cnt;
12931
12932 mbox->vport = phba->pport;
12933 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
12934 mbox->context1 = NULL;
12935 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
12936 shdr = (union lpfc_sli4_cfg_shdr *) &eq_delay->header.cfg_shdr;
12937 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12938 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12939 if (shdr_status || shdr_add_status || rc) {
12940 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12941 "2512 MODIFY_EQ_DELAY mailbox failed with "
12942 "status x%x add_status x%x, mbx status x%x\n",
12943 shdr_status, shdr_add_status, rc);
12944 status = -ENXIO;
12945 }
12946 mempool_free(mbox, phba->mbox_mem_pool);
12947 return status;
12948}
12949
12950/**
James Smart4f774512009-05-22 14:52:35 -040012951 * lpfc_eq_create - Create an Event Queue on the HBA
12952 * @phba: HBA structure that indicates port to create a queue on.
12953 * @eq: The queue structure to use to create the event queue.
12954 * @imax: The maximum interrupt per second limit.
12955 *
12956 * This function creates an event queue, as detailed in @eq, on a port,
12957 * described by @phba by sending an EQ_CREATE mailbox command to the HBA.
12958 *
12959 * The @phba struct is used to send mailbox command to HBA. The @eq struct
12960 * is used to get the entry count and entry size that are necessary to
12961 * determine the number of pages to allocate and use for this queue. This
12962 * function will send the EQ_CREATE mailbox command to the HBA to setup the
12963 * event queue. This function is asynchronous and will wait for the mailbox
12964 * command to finish before continuing.
12965 *
12966 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040012967 * memory this function will return -ENOMEM. If the queue create mailbox command
12968 * fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040012969 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040012970int
James Smartee020062012-09-29 11:28:52 -040012971lpfc_eq_create(struct lpfc_hba *phba, struct lpfc_queue *eq, uint32_t imax)
James Smart4f774512009-05-22 14:52:35 -040012972{
12973 struct lpfc_mbx_eq_create *eq_create;
12974 LPFC_MBOXQ_t *mbox;
12975 int rc, length, status = 0;
12976 struct lpfc_dmabuf *dmabuf;
12977 uint32_t shdr_status, shdr_add_status;
12978 union lpfc_sli4_cfg_shdr *shdr;
12979 uint16_t dmult;
James Smart49198b32010-04-06 15:04:33 -040012980 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
12981
James Smart2e90f4b2011-12-13 13:22:37 -050012982 /* sanity check on queue memory */
12983 if (!eq)
12984 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040012985 if (!phba->sli4_hba.pc_sli4_params.supported)
12986 hw_page_size = SLI4_PAGE_SIZE;
James Smart4f774512009-05-22 14:52:35 -040012987
12988 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
12989 if (!mbox)
12990 return -ENOMEM;
12991 length = (sizeof(struct lpfc_mbx_eq_create) -
12992 sizeof(struct lpfc_sli4_cfg_mhdr));
12993 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
12994 LPFC_MBOX_OPCODE_EQ_CREATE,
12995 length, LPFC_SLI4_MBX_EMBED);
12996 eq_create = &mbox->u.mqe.un.eq_create;
12997 bf_set(lpfc_mbx_eq_create_num_pages, &eq_create->u.request,
12998 eq->page_count);
12999 bf_set(lpfc_eq_context_size, &eq_create->u.request.context,
13000 LPFC_EQE_SIZE);
13001 bf_set(lpfc_eq_context_valid, &eq_create->u.request.context, 1);
James Smart2c9c5a02015-04-07 15:07:15 -040013002 /* don't setup delay multiplier using EQ_CREATE */
13003 dmult = 0;
James Smart4f774512009-05-22 14:52:35 -040013004 bf_set(lpfc_eq_context_delay_multi, &eq_create->u.request.context,
13005 dmult);
13006 switch (eq->entry_count) {
13007 default:
13008 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13009 "0360 Unsupported EQ count. (%d)\n",
13010 eq->entry_count);
13011 if (eq->entry_count < 256)
13012 return -EINVAL;
13013 /* otherwise default to smallest count (drop through) */
13014 case 256:
13015 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
13016 LPFC_EQ_CNT_256);
13017 break;
13018 case 512:
13019 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
13020 LPFC_EQ_CNT_512);
13021 break;
13022 case 1024:
13023 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
13024 LPFC_EQ_CNT_1024);
13025 break;
13026 case 2048:
13027 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
13028 LPFC_EQ_CNT_2048);
13029 break;
13030 case 4096:
13031 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
13032 LPFC_EQ_CNT_4096);
13033 break;
13034 }
13035 list_for_each_entry(dmabuf, &eq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040013036 memset(dmabuf->virt, 0, hw_page_size);
James Smart4f774512009-05-22 14:52:35 -040013037 eq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
13038 putPaddrLow(dmabuf->phys);
13039 eq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
13040 putPaddrHigh(dmabuf->phys);
13041 }
13042 mbox->vport = phba->pport;
13043 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
13044 mbox->context1 = NULL;
13045 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13046 shdr = (union lpfc_sli4_cfg_shdr *) &eq_create->header.cfg_shdr;
13047 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13048 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13049 if (shdr_status || shdr_add_status || rc) {
13050 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13051 "2500 EQ_CREATE mailbox failed with "
13052 "status x%x add_status x%x, mbx status x%x\n",
13053 shdr_status, shdr_add_status, rc);
13054 status = -ENXIO;
13055 }
13056 eq->type = LPFC_EQ;
13057 eq->subtype = LPFC_NONE;
13058 eq->queue_id = bf_get(lpfc_mbx_eq_create_q_id, &eq_create->u.response);
13059 if (eq->queue_id == 0xFFFF)
13060 status = -ENXIO;
13061 eq->host_index = 0;
13062 eq->hba_index = 0;
13063
James Smart8fa38512009-07-19 10:01:03 -040013064 mempool_free(mbox, phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040013065 return status;
13066}
13067
13068/**
13069 * lpfc_cq_create - Create a Completion Queue on the HBA
13070 * @phba: HBA structure that indicates port to create a queue on.
13071 * @cq: The queue structure to use to create the completion queue.
13072 * @eq: The event queue to bind this completion queue to.
13073 *
13074 * This function creates a completion queue, as detailed in @wq, on a port,
13075 * described by @phba by sending a CQ_CREATE mailbox command to the HBA.
13076 *
13077 * The @phba struct is used to send mailbox command to HBA. The @cq struct
13078 * is used to get the entry count and entry size that are necessary to
13079 * determine the number of pages to allocate and use for this queue. The @eq
13080 * is used to indicate which event queue to bind this completion queue to. This
13081 * function will send the CQ_CREATE mailbox command to the HBA to setup the
13082 * completion queue. This function is asynchronous and will wait for the mailbox
13083 * command to finish before continuing.
13084 *
13085 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040013086 * memory this function will return -ENOMEM. If the queue create mailbox command
13087 * fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040013088 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040013089int
James Smart4f774512009-05-22 14:52:35 -040013090lpfc_cq_create(struct lpfc_hba *phba, struct lpfc_queue *cq,
13091 struct lpfc_queue *eq, uint32_t type, uint32_t subtype)
13092{
13093 struct lpfc_mbx_cq_create *cq_create;
13094 struct lpfc_dmabuf *dmabuf;
13095 LPFC_MBOXQ_t *mbox;
13096 int rc, length, status = 0;
13097 uint32_t shdr_status, shdr_add_status;
13098 union lpfc_sli4_cfg_shdr *shdr;
James Smart49198b32010-04-06 15:04:33 -040013099 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
13100
James Smart2e90f4b2011-12-13 13:22:37 -050013101 /* sanity check on queue memory */
13102 if (!cq || !eq)
13103 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040013104 if (!phba->sli4_hba.pc_sli4_params.supported)
13105 hw_page_size = SLI4_PAGE_SIZE;
13106
James Smart4f774512009-05-22 14:52:35 -040013107 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13108 if (!mbox)
13109 return -ENOMEM;
13110 length = (sizeof(struct lpfc_mbx_cq_create) -
13111 sizeof(struct lpfc_sli4_cfg_mhdr));
13112 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13113 LPFC_MBOX_OPCODE_CQ_CREATE,
13114 length, LPFC_SLI4_MBX_EMBED);
13115 cq_create = &mbox->u.mqe.un.cq_create;
James Smart5a6f1332011-03-11 16:05:35 -050013116 shdr = (union lpfc_sli4_cfg_shdr *) &cq_create->header.cfg_shdr;
James Smart4f774512009-05-22 14:52:35 -040013117 bf_set(lpfc_mbx_cq_create_num_pages, &cq_create->u.request,
13118 cq->page_count);
13119 bf_set(lpfc_cq_context_event, &cq_create->u.request.context, 1);
13120 bf_set(lpfc_cq_context_valid, &cq_create->u.request.context, 1);
James Smart5a6f1332011-03-11 16:05:35 -050013121 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13122 phba->sli4_hba.pc_sli4_params.cqv);
13123 if (phba->sli4_hba.pc_sli4_params.cqv == LPFC_Q_CREATE_VERSION_2) {
James Smartc31098c2011-04-16 11:03:33 -040013124 /* FW only supports 1. Should be PAGE_SIZE/SLI4_PAGE_SIZE */
13125 bf_set(lpfc_mbx_cq_create_page_size, &cq_create->u.request, 1);
James Smart5a6f1332011-03-11 16:05:35 -050013126 bf_set(lpfc_cq_eq_id_2, &cq_create->u.request.context,
13127 eq->queue_id);
13128 } else {
13129 bf_set(lpfc_cq_eq_id, &cq_create->u.request.context,
13130 eq->queue_id);
13131 }
James Smart4f774512009-05-22 14:52:35 -040013132 switch (cq->entry_count) {
13133 default:
13134 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13135 "0361 Unsupported CQ count. (%d)\n",
13136 cq->entry_count);
James Smart4f4c1862012-06-12 13:54:02 -040013137 if (cq->entry_count < 256) {
13138 status = -EINVAL;
13139 goto out;
13140 }
James Smart4f774512009-05-22 14:52:35 -040013141 /* otherwise default to smallest count (drop through) */
13142 case 256:
13143 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
13144 LPFC_CQ_CNT_256);
13145 break;
13146 case 512:
13147 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
13148 LPFC_CQ_CNT_512);
13149 break;
13150 case 1024:
13151 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
13152 LPFC_CQ_CNT_1024);
13153 break;
13154 }
13155 list_for_each_entry(dmabuf, &cq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040013156 memset(dmabuf->virt, 0, hw_page_size);
James Smart4f774512009-05-22 14:52:35 -040013157 cq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
13158 putPaddrLow(dmabuf->phys);
13159 cq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
13160 putPaddrHigh(dmabuf->phys);
13161 }
13162 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13163
13164 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart4f774512009-05-22 14:52:35 -040013165 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13166 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13167 if (shdr_status || shdr_add_status || rc) {
13168 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13169 "2501 CQ_CREATE mailbox failed with "
13170 "status x%x add_status x%x, mbx status x%x\n",
13171 shdr_status, shdr_add_status, rc);
13172 status = -ENXIO;
13173 goto out;
13174 }
13175 cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
13176 if (cq->queue_id == 0xFFFF) {
13177 status = -ENXIO;
13178 goto out;
13179 }
13180 /* link the cq onto the parent eq child list */
13181 list_add_tail(&cq->list, &eq->child_list);
13182 /* Set up completion queue's type and subtype */
13183 cq->type = type;
13184 cq->subtype = subtype;
13185 cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
James Smart2a622bf2011-02-16 12:40:06 -050013186 cq->assoc_qid = eq->queue_id;
James Smart4f774512009-05-22 14:52:35 -040013187 cq->host_index = 0;
13188 cq->hba_index = 0;
James Smart4f774512009-05-22 14:52:35 -040013189
James Smart8fa38512009-07-19 10:01:03 -040013190out:
13191 mempool_free(mbox, phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040013192 return status;
13193}
13194
13195/**
James Smartb19a0612010-04-06 14:48:51 -040013196 * lpfc_mq_create_fb_init - Send MCC_CREATE without async events registration
James Smart04c68492009-05-22 14:52:52 -040013197 * @phba: HBA structure that indicates port to create a queue on.
13198 * @mq: The queue structure to use to create the mailbox queue.
James Smartb19a0612010-04-06 14:48:51 -040013199 * @mbox: An allocated pointer to type LPFC_MBOXQ_t
13200 * @cq: The completion queue to associate with this cq.
James Smart04c68492009-05-22 14:52:52 -040013201 *
James Smartb19a0612010-04-06 14:48:51 -040013202 * This function provides failback (fb) functionality when the
13203 * mq_create_ext fails on older FW generations. It's purpose is identical
13204 * to mq_create_ext otherwise.
James Smart04c68492009-05-22 14:52:52 -040013205 *
James Smartb19a0612010-04-06 14:48:51 -040013206 * This routine cannot fail as all attributes were previously accessed and
13207 * initialized in mq_create_ext.
James Smart04c68492009-05-22 14:52:52 -040013208 **/
James Smartb19a0612010-04-06 14:48:51 -040013209static void
13210lpfc_mq_create_fb_init(struct lpfc_hba *phba, struct lpfc_queue *mq,
13211 LPFC_MBOXQ_t *mbox, struct lpfc_queue *cq)
James Smart04c68492009-05-22 14:52:52 -040013212{
13213 struct lpfc_mbx_mq_create *mq_create;
13214 struct lpfc_dmabuf *dmabuf;
James Smartb19a0612010-04-06 14:48:51 -040013215 int length;
James Smart04c68492009-05-22 14:52:52 -040013216
James Smart04c68492009-05-22 14:52:52 -040013217 length = (sizeof(struct lpfc_mbx_mq_create) -
13218 sizeof(struct lpfc_sli4_cfg_mhdr));
13219 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13220 LPFC_MBOX_OPCODE_MQ_CREATE,
13221 length, LPFC_SLI4_MBX_EMBED);
13222 mq_create = &mbox->u.mqe.un.mq_create;
13223 bf_set(lpfc_mbx_mq_create_num_pages, &mq_create->u.request,
James Smartb19a0612010-04-06 14:48:51 -040013224 mq->page_count);
James Smart04c68492009-05-22 14:52:52 -040013225 bf_set(lpfc_mq_context_cq_id, &mq_create->u.request.context,
James Smartb19a0612010-04-06 14:48:51 -040013226 cq->queue_id);
James Smart04c68492009-05-22 14:52:52 -040013227 bf_set(lpfc_mq_context_valid, &mq_create->u.request.context, 1);
13228 switch (mq->entry_count) {
James Smart04c68492009-05-22 14:52:52 -040013229 case 16:
James Smart5a6f1332011-03-11 16:05:35 -050013230 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
13231 LPFC_MQ_RING_SIZE_16);
James Smart04c68492009-05-22 14:52:52 -040013232 break;
13233 case 32:
James Smart5a6f1332011-03-11 16:05:35 -050013234 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
13235 LPFC_MQ_RING_SIZE_32);
James Smart04c68492009-05-22 14:52:52 -040013236 break;
13237 case 64:
James Smart5a6f1332011-03-11 16:05:35 -050013238 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
13239 LPFC_MQ_RING_SIZE_64);
James Smart04c68492009-05-22 14:52:52 -040013240 break;
13241 case 128:
James Smart5a6f1332011-03-11 16:05:35 -050013242 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
13243 LPFC_MQ_RING_SIZE_128);
James Smart04c68492009-05-22 14:52:52 -040013244 break;
13245 }
13246 list_for_each_entry(dmabuf, &mq->page_list, list) {
13247 mq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
James Smartb19a0612010-04-06 14:48:51 -040013248 putPaddrLow(dmabuf->phys);
James Smart04c68492009-05-22 14:52:52 -040013249 mq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
James Smartb19a0612010-04-06 14:48:51 -040013250 putPaddrHigh(dmabuf->phys);
13251 }
13252}
13253
13254/**
13255 * lpfc_mq_create - Create a mailbox Queue on the HBA
13256 * @phba: HBA structure that indicates port to create a queue on.
13257 * @mq: The queue structure to use to create the mailbox queue.
13258 * @cq: The completion queue to associate with this cq.
13259 * @subtype: The queue's subtype.
13260 *
13261 * This function creates a mailbox queue, as detailed in @mq, on a port,
13262 * described by @phba by sending a MQ_CREATE mailbox command to the HBA.
13263 *
13264 * The @phba struct is used to send mailbox command to HBA. The @cq struct
13265 * is used to get the entry count and entry size that are necessary to
13266 * determine the number of pages to allocate and use for this queue. This
13267 * function will send the MQ_CREATE mailbox command to the HBA to setup the
13268 * mailbox queue. This function is asynchronous and will wait for the mailbox
13269 * command to finish before continuing.
13270 *
13271 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040013272 * memory this function will return -ENOMEM. If the queue create mailbox command
13273 * fails this function will return -ENXIO.
James Smartb19a0612010-04-06 14:48:51 -040013274 **/
13275int32_t
13276lpfc_mq_create(struct lpfc_hba *phba, struct lpfc_queue *mq,
13277 struct lpfc_queue *cq, uint32_t subtype)
13278{
13279 struct lpfc_mbx_mq_create *mq_create;
13280 struct lpfc_mbx_mq_create_ext *mq_create_ext;
13281 struct lpfc_dmabuf *dmabuf;
13282 LPFC_MBOXQ_t *mbox;
13283 int rc, length, status = 0;
13284 uint32_t shdr_status, shdr_add_status;
13285 union lpfc_sli4_cfg_shdr *shdr;
James Smart49198b32010-04-06 15:04:33 -040013286 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
James Smartb19a0612010-04-06 14:48:51 -040013287
James Smart2e90f4b2011-12-13 13:22:37 -050013288 /* sanity check on queue memory */
13289 if (!mq || !cq)
13290 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040013291 if (!phba->sli4_hba.pc_sli4_params.supported)
13292 hw_page_size = SLI4_PAGE_SIZE;
James Smartb19a0612010-04-06 14:48:51 -040013293
13294 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13295 if (!mbox)
13296 return -ENOMEM;
13297 length = (sizeof(struct lpfc_mbx_mq_create_ext) -
13298 sizeof(struct lpfc_sli4_cfg_mhdr));
13299 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13300 LPFC_MBOX_OPCODE_MQ_CREATE_EXT,
13301 length, LPFC_SLI4_MBX_EMBED);
13302
13303 mq_create_ext = &mbox->u.mqe.un.mq_create_ext;
James Smart5a6f1332011-03-11 16:05:35 -050013304 shdr = (union lpfc_sli4_cfg_shdr *) &mq_create_ext->header.cfg_shdr;
James Smart70f3c072010-12-15 17:57:33 -050013305 bf_set(lpfc_mbx_mq_create_ext_num_pages,
13306 &mq_create_ext->u.request, mq->page_count);
13307 bf_set(lpfc_mbx_mq_create_ext_async_evt_link,
13308 &mq_create_ext->u.request, 1);
13309 bf_set(lpfc_mbx_mq_create_ext_async_evt_fip,
James Smartb19a0612010-04-06 14:48:51 -040013310 &mq_create_ext->u.request, 1);
13311 bf_set(lpfc_mbx_mq_create_ext_async_evt_group5,
13312 &mq_create_ext->u.request, 1);
James Smart70f3c072010-12-15 17:57:33 -050013313 bf_set(lpfc_mbx_mq_create_ext_async_evt_fc,
13314 &mq_create_ext->u.request, 1);
13315 bf_set(lpfc_mbx_mq_create_ext_async_evt_sli,
13316 &mq_create_ext->u.request, 1);
James Smartb19a0612010-04-06 14:48:51 -040013317 bf_set(lpfc_mq_context_valid, &mq_create_ext->u.request.context, 1);
James Smart5a6f1332011-03-11 16:05:35 -050013318 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13319 phba->sli4_hba.pc_sli4_params.mqv);
13320 if (phba->sli4_hba.pc_sli4_params.mqv == LPFC_Q_CREATE_VERSION_1)
13321 bf_set(lpfc_mbx_mq_create_ext_cq_id, &mq_create_ext->u.request,
13322 cq->queue_id);
13323 else
13324 bf_set(lpfc_mq_context_cq_id, &mq_create_ext->u.request.context,
13325 cq->queue_id);
James Smartb19a0612010-04-06 14:48:51 -040013326 switch (mq->entry_count) {
13327 default:
13328 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13329 "0362 Unsupported MQ count. (%d)\n",
13330 mq->entry_count);
James Smart4f4c1862012-06-12 13:54:02 -040013331 if (mq->entry_count < 16) {
13332 status = -EINVAL;
13333 goto out;
13334 }
James Smartb19a0612010-04-06 14:48:51 -040013335 /* otherwise default to smallest count (drop through) */
13336 case 16:
James Smart5a6f1332011-03-11 16:05:35 -050013337 bf_set(lpfc_mq_context_ring_size,
13338 &mq_create_ext->u.request.context,
13339 LPFC_MQ_RING_SIZE_16);
James Smartb19a0612010-04-06 14:48:51 -040013340 break;
13341 case 32:
James Smart5a6f1332011-03-11 16:05:35 -050013342 bf_set(lpfc_mq_context_ring_size,
13343 &mq_create_ext->u.request.context,
13344 LPFC_MQ_RING_SIZE_32);
James Smartb19a0612010-04-06 14:48:51 -040013345 break;
13346 case 64:
James Smart5a6f1332011-03-11 16:05:35 -050013347 bf_set(lpfc_mq_context_ring_size,
13348 &mq_create_ext->u.request.context,
13349 LPFC_MQ_RING_SIZE_64);
James Smartb19a0612010-04-06 14:48:51 -040013350 break;
13351 case 128:
James Smart5a6f1332011-03-11 16:05:35 -050013352 bf_set(lpfc_mq_context_ring_size,
13353 &mq_create_ext->u.request.context,
13354 LPFC_MQ_RING_SIZE_128);
James Smartb19a0612010-04-06 14:48:51 -040013355 break;
13356 }
13357 list_for_each_entry(dmabuf, &mq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040013358 memset(dmabuf->virt, 0, hw_page_size);
James Smartb19a0612010-04-06 14:48:51 -040013359 mq_create_ext->u.request.page[dmabuf->buffer_tag].addr_lo =
13360 putPaddrLow(dmabuf->phys);
13361 mq_create_ext->u.request.page[dmabuf->buffer_tag].addr_hi =
James Smart04c68492009-05-22 14:52:52 -040013362 putPaddrHigh(dmabuf->phys);
13363 }
13364 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
James Smartb19a0612010-04-06 14:48:51 -040013365 mq->queue_id = bf_get(lpfc_mbx_mq_create_q_id,
13366 &mq_create_ext->u.response);
13367 if (rc != MBX_SUCCESS) {
13368 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
13369 "2795 MQ_CREATE_EXT failed with "
13370 "status x%x. Failback to MQ_CREATE.\n",
13371 rc);
13372 lpfc_mq_create_fb_init(phba, mq, mbox, cq);
13373 mq_create = &mbox->u.mqe.un.mq_create;
13374 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13375 shdr = (union lpfc_sli4_cfg_shdr *) &mq_create->header.cfg_shdr;
13376 mq->queue_id = bf_get(lpfc_mbx_mq_create_q_id,
13377 &mq_create->u.response);
13378 }
13379
James Smart04c68492009-05-22 14:52:52 -040013380 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart04c68492009-05-22 14:52:52 -040013381 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13382 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13383 if (shdr_status || shdr_add_status || rc) {
13384 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13385 "2502 MQ_CREATE mailbox failed with "
13386 "status x%x add_status x%x, mbx status x%x\n",
13387 shdr_status, shdr_add_status, rc);
13388 status = -ENXIO;
13389 goto out;
13390 }
James Smart04c68492009-05-22 14:52:52 -040013391 if (mq->queue_id == 0xFFFF) {
13392 status = -ENXIO;
13393 goto out;
13394 }
13395 mq->type = LPFC_MQ;
James Smart2a622bf2011-02-16 12:40:06 -050013396 mq->assoc_qid = cq->queue_id;
James Smart04c68492009-05-22 14:52:52 -040013397 mq->subtype = subtype;
13398 mq->host_index = 0;
13399 mq->hba_index = 0;
13400
13401 /* link the mq onto the parent cq child list */
13402 list_add_tail(&mq->list, &cq->child_list);
13403out:
James Smart8fa38512009-07-19 10:01:03 -040013404 mempool_free(mbox, phba->mbox_mem_pool);
James Smart04c68492009-05-22 14:52:52 -040013405 return status;
13406}
13407
13408/**
James Smart4f774512009-05-22 14:52:35 -040013409 * lpfc_wq_create - Create a Work Queue on the HBA
13410 * @phba: HBA structure that indicates port to create a queue on.
13411 * @wq: The queue structure to use to create the work queue.
13412 * @cq: The completion queue to bind this work queue to.
13413 * @subtype: The subtype of the work queue indicating its functionality.
13414 *
13415 * This function creates a work queue, as detailed in @wq, on a port, described
13416 * by @phba by sending a WQ_CREATE mailbox command to the HBA.
13417 *
13418 * The @phba struct is used to send mailbox command to HBA. The @wq struct
13419 * is used to get the entry count and entry size that are necessary to
13420 * determine the number of pages to allocate and use for this queue. The @cq
13421 * is used to indicate which completion queue to bind this work queue to. This
13422 * function will send the WQ_CREATE mailbox command to the HBA to setup the
13423 * work queue. This function is asynchronous and will wait for the mailbox
13424 * command to finish before continuing.
13425 *
13426 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040013427 * memory this function will return -ENOMEM. If the queue create mailbox command
13428 * fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040013429 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040013430int
James Smart4f774512009-05-22 14:52:35 -040013431lpfc_wq_create(struct lpfc_hba *phba, struct lpfc_queue *wq,
13432 struct lpfc_queue *cq, uint32_t subtype)
13433{
13434 struct lpfc_mbx_wq_create *wq_create;
13435 struct lpfc_dmabuf *dmabuf;
13436 LPFC_MBOXQ_t *mbox;
13437 int rc, length, status = 0;
13438 uint32_t shdr_status, shdr_add_status;
13439 union lpfc_sli4_cfg_shdr *shdr;
James Smart49198b32010-04-06 15:04:33 -040013440 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
James Smart5a6f1332011-03-11 16:05:35 -050013441 struct dma_address *page;
James Smart962bc512013-01-03 15:44:00 -050013442 void __iomem *bar_memmap_p;
13443 uint32_t db_offset;
13444 uint16_t pci_barset;
James Smart49198b32010-04-06 15:04:33 -040013445
James Smart2e90f4b2011-12-13 13:22:37 -050013446 /* sanity check on queue memory */
13447 if (!wq || !cq)
13448 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040013449 if (!phba->sli4_hba.pc_sli4_params.supported)
13450 hw_page_size = SLI4_PAGE_SIZE;
James Smart4f774512009-05-22 14:52:35 -040013451
13452 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13453 if (!mbox)
13454 return -ENOMEM;
13455 length = (sizeof(struct lpfc_mbx_wq_create) -
13456 sizeof(struct lpfc_sli4_cfg_mhdr));
13457 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13458 LPFC_MBOX_OPCODE_FCOE_WQ_CREATE,
13459 length, LPFC_SLI4_MBX_EMBED);
13460 wq_create = &mbox->u.mqe.un.wq_create;
James Smart5a6f1332011-03-11 16:05:35 -050013461 shdr = (union lpfc_sli4_cfg_shdr *) &wq_create->header.cfg_shdr;
James Smart4f774512009-05-22 14:52:35 -040013462 bf_set(lpfc_mbx_wq_create_num_pages, &wq_create->u.request,
13463 wq->page_count);
13464 bf_set(lpfc_mbx_wq_create_cq_id, &wq_create->u.request,
13465 cq->queue_id);
James Smart0c651872013-07-15 18:33:23 -040013466
13467 /* wqv is the earliest version supported, NOT the latest */
James Smart5a6f1332011-03-11 16:05:35 -050013468 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13469 phba->sli4_hba.pc_sli4_params.wqv);
James Smart962bc512013-01-03 15:44:00 -050013470
James Smart0c651872013-07-15 18:33:23 -040013471 switch (phba->sli4_hba.pc_sli4_params.wqv) {
13472 case LPFC_Q_CREATE_VERSION_0:
13473 switch (wq->entry_size) {
13474 default:
13475 case 64:
13476 /* Nothing to do, version 0 ONLY supports 64 byte */
13477 page = wq_create->u.request.page;
13478 break;
13479 case 128:
13480 if (!(phba->sli4_hba.pc_sli4_params.wqsize &
13481 LPFC_WQ_SZ128_SUPPORT)) {
13482 status = -ERANGE;
13483 goto out;
13484 }
13485 /* If we get here the HBA MUST also support V1 and
13486 * we MUST use it
13487 */
13488 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13489 LPFC_Q_CREATE_VERSION_1);
13490
13491 bf_set(lpfc_mbx_wq_create_wqe_count,
13492 &wq_create->u.request_1, wq->entry_count);
13493 bf_set(lpfc_mbx_wq_create_wqe_size,
13494 &wq_create->u.request_1,
13495 LPFC_WQ_WQE_SIZE_128);
13496 bf_set(lpfc_mbx_wq_create_page_size,
13497 &wq_create->u.request_1,
13498 (PAGE_SIZE/SLI4_PAGE_SIZE));
13499 page = wq_create->u.request_1.page;
13500 break;
13501 }
13502 break;
13503 case LPFC_Q_CREATE_VERSION_1:
James Smart5a6f1332011-03-11 16:05:35 -050013504 bf_set(lpfc_mbx_wq_create_wqe_count, &wq_create->u.request_1,
13505 wq->entry_count);
13506 switch (wq->entry_size) {
13507 default:
13508 case 64:
13509 bf_set(lpfc_mbx_wq_create_wqe_size,
13510 &wq_create->u.request_1,
13511 LPFC_WQ_WQE_SIZE_64);
13512 break;
13513 case 128:
James Smart0c651872013-07-15 18:33:23 -040013514 if (!(phba->sli4_hba.pc_sli4_params.wqsize &
13515 LPFC_WQ_SZ128_SUPPORT)) {
13516 status = -ERANGE;
13517 goto out;
13518 }
James Smart5a6f1332011-03-11 16:05:35 -050013519 bf_set(lpfc_mbx_wq_create_wqe_size,
13520 &wq_create->u.request_1,
13521 LPFC_WQ_WQE_SIZE_128);
13522 break;
13523 }
13524 bf_set(lpfc_mbx_wq_create_page_size, &wq_create->u.request_1,
13525 (PAGE_SIZE/SLI4_PAGE_SIZE));
13526 page = wq_create->u.request_1.page;
James Smart0c651872013-07-15 18:33:23 -040013527 break;
13528 default:
13529 status = -ERANGE;
13530 goto out;
James Smart5a6f1332011-03-11 16:05:35 -050013531 }
James Smart0c651872013-07-15 18:33:23 -040013532
James Smart4f774512009-05-22 14:52:35 -040013533 list_for_each_entry(dmabuf, &wq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040013534 memset(dmabuf->virt, 0, hw_page_size);
James Smart5a6f1332011-03-11 16:05:35 -050013535 page[dmabuf->buffer_tag].addr_lo = putPaddrLow(dmabuf->phys);
13536 page[dmabuf->buffer_tag].addr_hi = putPaddrHigh(dmabuf->phys);
James Smart4f774512009-05-22 14:52:35 -040013537 }
James Smart962bc512013-01-03 15:44:00 -050013538
13539 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
13540 bf_set(lpfc_mbx_wq_create_dua, &wq_create->u.request, 1);
13541
James Smart4f774512009-05-22 14:52:35 -040013542 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13543 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart4f774512009-05-22 14:52:35 -040013544 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13545 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13546 if (shdr_status || shdr_add_status || rc) {
13547 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13548 "2503 WQ_CREATE mailbox failed with "
13549 "status x%x add_status x%x, mbx status x%x\n",
13550 shdr_status, shdr_add_status, rc);
13551 status = -ENXIO;
13552 goto out;
13553 }
13554 wq->queue_id = bf_get(lpfc_mbx_wq_create_q_id, &wq_create->u.response);
13555 if (wq->queue_id == 0xFFFF) {
13556 status = -ENXIO;
13557 goto out;
13558 }
James Smart962bc512013-01-03 15:44:00 -050013559 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE) {
13560 wq->db_format = bf_get(lpfc_mbx_wq_create_db_format,
13561 &wq_create->u.response);
13562 if ((wq->db_format != LPFC_DB_LIST_FORMAT) &&
13563 (wq->db_format != LPFC_DB_RING_FORMAT)) {
13564 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13565 "3265 WQ[%d] doorbell format not "
13566 "supported: x%x\n", wq->queue_id,
13567 wq->db_format);
13568 status = -EINVAL;
13569 goto out;
13570 }
13571 pci_barset = bf_get(lpfc_mbx_wq_create_bar_set,
13572 &wq_create->u.response);
13573 bar_memmap_p = lpfc_dual_chute_pci_bar_map(phba, pci_barset);
13574 if (!bar_memmap_p) {
13575 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13576 "3263 WQ[%d] failed to memmap pci "
13577 "barset:x%x\n", wq->queue_id,
13578 pci_barset);
13579 status = -ENOMEM;
13580 goto out;
13581 }
13582 db_offset = wq_create->u.response.doorbell_offset;
13583 if ((db_offset != LPFC_ULP0_WQ_DOORBELL) &&
13584 (db_offset != LPFC_ULP1_WQ_DOORBELL)) {
13585 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13586 "3252 WQ[%d] doorbell offset not "
13587 "supported: x%x\n", wq->queue_id,
13588 db_offset);
13589 status = -EINVAL;
13590 goto out;
13591 }
13592 wq->db_regaddr = bar_memmap_p + db_offset;
13593 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarta22e7db2013-04-17 20:16:37 -040013594 "3264 WQ[%d]: barset:x%x, offset:x%x, "
13595 "format:x%x\n", wq->queue_id, pci_barset,
13596 db_offset, wq->db_format);
James Smart962bc512013-01-03 15:44:00 -050013597 } else {
13598 wq->db_format = LPFC_DB_LIST_FORMAT;
13599 wq->db_regaddr = phba->sli4_hba.WQDBregaddr;
13600 }
James Smart4f774512009-05-22 14:52:35 -040013601 wq->type = LPFC_WQ;
James Smart2a622bf2011-02-16 12:40:06 -050013602 wq->assoc_qid = cq->queue_id;
James Smart4f774512009-05-22 14:52:35 -040013603 wq->subtype = subtype;
13604 wq->host_index = 0;
13605 wq->hba_index = 0;
James Smartff78d8f2011-12-13 13:21:35 -050013606 wq->entry_repost = LPFC_RELEASE_NOTIFICATION_INTERVAL;
James Smart4f774512009-05-22 14:52:35 -040013607
13608 /* link the wq onto the parent cq child list */
13609 list_add_tail(&wq->list, &cq->child_list);
13610out:
James Smart8fa38512009-07-19 10:01:03 -040013611 mempool_free(mbox, phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040013612 return status;
13613}
13614
13615/**
James Smart73d91e52011-10-10 21:32:10 -040013616 * lpfc_rq_adjust_repost - Adjust entry_repost for an RQ
13617 * @phba: HBA structure that indicates port to create a queue on.
13618 * @rq: The queue structure to use for the receive queue.
13619 * @qno: The associated HBQ number
13620 *
13621 *
13622 * For SLI4 we need to adjust the RQ repost value based on
13623 * the number of buffers that are initially posted to the RQ.
13624 */
13625void
13626lpfc_rq_adjust_repost(struct lpfc_hba *phba, struct lpfc_queue *rq, int qno)
13627{
13628 uint32_t cnt;
13629
James Smart2e90f4b2011-12-13 13:22:37 -050013630 /* sanity check on queue memory */
13631 if (!rq)
13632 return;
James Smart73d91e52011-10-10 21:32:10 -040013633 cnt = lpfc_hbq_defs[qno]->entry_count;
13634
13635 /* Recalc repost for RQs based on buffers initially posted */
13636 cnt = (cnt >> 3);
13637 if (cnt < LPFC_QUEUE_MIN_REPOST)
13638 cnt = LPFC_QUEUE_MIN_REPOST;
13639
13640 rq->entry_repost = cnt;
13641}
13642
13643/**
James Smart4f774512009-05-22 14:52:35 -040013644 * lpfc_rq_create - Create a Receive Queue on the HBA
13645 * @phba: HBA structure that indicates port to create a queue on.
13646 * @hrq: The queue structure to use to create the header receive queue.
13647 * @drq: The queue structure to use to create the data receive queue.
13648 * @cq: The completion queue to bind this work queue to.
13649 *
13650 * This function creates a receive buffer queue pair , as detailed in @hrq and
13651 * @drq, on a port, described by @phba by sending a RQ_CREATE mailbox command
13652 * to the HBA.
13653 *
13654 * The @phba struct is used to send mailbox command to HBA. The @drq and @hrq
13655 * struct is used to get the entry count that is necessary to determine the
13656 * number of pages to use for this queue. The @cq is used to indicate which
13657 * completion queue to bind received buffers that are posted to these queues to.
13658 * This function will send the RQ_CREATE mailbox command to the HBA to setup the
13659 * receive queue pair. This function is asynchronous and will wait for the
13660 * mailbox command to finish before continuing.
13661 *
13662 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040013663 * memory this function will return -ENOMEM. If the queue create mailbox command
13664 * fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040013665 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040013666int
James Smart4f774512009-05-22 14:52:35 -040013667lpfc_rq_create(struct lpfc_hba *phba, struct lpfc_queue *hrq,
13668 struct lpfc_queue *drq, struct lpfc_queue *cq, uint32_t subtype)
13669{
13670 struct lpfc_mbx_rq_create *rq_create;
13671 struct lpfc_dmabuf *dmabuf;
13672 LPFC_MBOXQ_t *mbox;
13673 int rc, length, status = 0;
13674 uint32_t shdr_status, shdr_add_status;
13675 union lpfc_sli4_cfg_shdr *shdr;
James Smart49198b32010-04-06 15:04:33 -040013676 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
James Smart962bc512013-01-03 15:44:00 -050013677 void __iomem *bar_memmap_p;
13678 uint32_t db_offset;
13679 uint16_t pci_barset;
James Smart49198b32010-04-06 15:04:33 -040013680
James Smart2e90f4b2011-12-13 13:22:37 -050013681 /* sanity check on queue memory */
13682 if (!hrq || !drq || !cq)
13683 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040013684 if (!phba->sli4_hba.pc_sli4_params.supported)
13685 hw_page_size = SLI4_PAGE_SIZE;
James Smart4f774512009-05-22 14:52:35 -040013686
13687 if (hrq->entry_count != drq->entry_count)
13688 return -EINVAL;
13689 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13690 if (!mbox)
13691 return -ENOMEM;
13692 length = (sizeof(struct lpfc_mbx_rq_create) -
13693 sizeof(struct lpfc_sli4_cfg_mhdr));
13694 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13695 LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
13696 length, LPFC_SLI4_MBX_EMBED);
13697 rq_create = &mbox->u.mqe.un.rq_create;
James Smart5a6f1332011-03-11 16:05:35 -050013698 shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
13699 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13700 phba->sli4_hba.pc_sli4_params.rqv);
13701 if (phba->sli4_hba.pc_sli4_params.rqv == LPFC_Q_CREATE_VERSION_1) {
13702 bf_set(lpfc_rq_context_rqe_count_1,
13703 &rq_create->u.request.context,
13704 hrq->entry_count);
13705 rq_create->u.request.context.buffer_size = LPFC_HDR_BUF_SIZE;
James Smartc31098c2011-04-16 11:03:33 -040013706 bf_set(lpfc_rq_context_rqe_size,
13707 &rq_create->u.request.context,
13708 LPFC_RQE_SIZE_8);
13709 bf_set(lpfc_rq_context_page_size,
13710 &rq_create->u.request.context,
13711 (PAGE_SIZE/SLI4_PAGE_SIZE));
James Smart5a6f1332011-03-11 16:05:35 -050013712 } else {
13713 switch (hrq->entry_count) {
13714 default:
13715 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13716 "2535 Unsupported RQ count. (%d)\n",
13717 hrq->entry_count);
James Smart4f4c1862012-06-12 13:54:02 -040013718 if (hrq->entry_count < 512) {
13719 status = -EINVAL;
13720 goto out;
13721 }
James Smart5a6f1332011-03-11 16:05:35 -050013722 /* otherwise default to smallest count (drop through) */
13723 case 512:
13724 bf_set(lpfc_rq_context_rqe_count,
13725 &rq_create->u.request.context,
13726 LPFC_RQ_RING_SIZE_512);
13727 break;
13728 case 1024:
13729 bf_set(lpfc_rq_context_rqe_count,
13730 &rq_create->u.request.context,
13731 LPFC_RQ_RING_SIZE_1024);
13732 break;
13733 case 2048:
13734 bf_set(lpfc_rq_context_rqe_count,
13735 &rq_create->u.request.context,
13736 LPFC_RQ_RING_SIZE_2048);
13737 break;
13738 case 4096:
13739 bf_set(lpfc_rq_context_rqe_count,
13740 &rq_create->u.request.context,
13741 LPFC_RQ_RING_SIZE_4096);
13742 break;
13743 }
13744 bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
13745 LPFC_HDR_BUF_SIZE);
James Smart4f774512009-05-22 14:52:35 -040013746 }
13747 bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
13748 cq->queue_id);
13749 bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
13750 hrq->page_count);
James Smart4f774512009-05-22 14:52:35 -040013751 list_for_each_entry(dmabuf, &hrq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040013752 memset(dmabuf->virt, 0, hw_page_size);
James Smart4f774512009-05-22 14:52:35 -040013753 rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
13754 putPaddrLow(dmabuf->phys);
13755 rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
13756 putPaddrHigh(dmabuf->phys);
13757 }
James Smart962bc512013-01-03 15:44:00 -050013758 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
13759 bf_set(lpfc_mbx_rq_create_dua, &rq_create->u.request, 1);
13760
James Smart4f774512009-05-22 14:52:35 -040013761 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13762 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart4f774512009-05-22 14:52:35 -040013763 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13764 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13765 if (shdr_status || shdr_add_status || rc) {
13766 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13767 "2504 RQ_CREATE mailbox failed with "
13768 "status x%x add_status x%x, mbx status x%x\n",
13769 shdr_status, shdr_add_status, rc);
13770 status = -ENXIO;
13771 goto out;
13772 }
13773 hrq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
13774 if (hrq->queue_id == 0xFFFF) {
13775 status = -ENXIO;
13776 goto out;
13777 }
James Smart962bc512013-01-03 15:44:00 -050013778
13779 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE) {
13780 hrq->db_format = bf_get(lpfc_mbx_rq_create_db_format,
13781 &rq_create->u.response);
13782 if ((hrq->db_format != LPFC_DB_LIST_FORMAT) &&
13783 (hrq->db_format != LPFC_DB_RING_FORMAT)) {
13784 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13785 "3262 RQ [%d] doorbell format not "
13786 "supported: x%x\n", hrq->queue_id,
13787 hrq->db_format);
13788 status = -EINVAL;
13789 goto out;
13790 }
13791
13792 pci_barset = bf_get(lpfc_mbx_rq_create_bar_set,
13793 &rq_create->u.response);
13794 bar_memmap_p = lpfc_dual_chute_pci_bar_map(phba, pci_barset);
13795 if (!bar_memmap_p) {
13796 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13797 "3269 RQ[%d] failed to memmap pci "
13798 "barset:x%x\n", hrq->queue_id,
13799 pci_barset);
13800 status = -ENOMEM;
13801 goto out;
13802 }
13803
13804 db_offset = rq_create->u.response.doorbell_offset;
13805 if ((db_offset != LPFC_ULP0_RQ_DOORBELL) &&
13806 (db_offset != LPFC_ULP1_RQ_DOORBELL)) {
13807 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13808 "3270 RQ[%d] doorbell offset not "
13809 "supported: x%x\n", hrq->queue_id,
13810 db_offset);
13811 status = -EINVAL;
13812 goto out;
13813 }
13814 hrq->db_regaddr = bar_memmap_p + db_offset;
13815 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarta22e7db2013-04-17 20:16:37 -040013816 "3266 RQ[qid:%d]: barset:x%x, offset:x%x, "
13817 "format:x%x\n", hrq->queue_id, pci_barset,
13818 db_offset, hrq->db_format);
James Smart962bc512013-01-03 15:44:00 -050013819 } else {
13820 hrq->db_format = LPFC_DB_RING_FORMAT;
13821 hrq->db_regaddr = phba->sli4_hba.RQDBregaddr;
13822 }
James Smart4f774512009-05-22 14:52:35 -040013823 hrq->type = LPFC_HRQ;
James Smart2a622bf2011-02-16 12:40:06 -050013824 hrq->assoc_qid = cq->queue_id;
James Smart4f774512009-05-22 14:52:35 -040013825 hrq->subtype = subtype;
13826 hrq->host_index = 0;
13827 hrq->hba_index = 0;
13828
13829 /* now create the data queue */
13830 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13831 LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
13832 length, LPFC_SLI4_MBX_EMBED);
James Smart5a6f1332011-03-11 16:05:35 -050013833 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13834 phba->sli4_hba.pc_sli4_params.rqv);
13835 if (phba->sli4_hba.pc_sli4_params.rqv == LPFC_Q_CREATE_VERSION_1) {
13836 bf_set(lpfc_rq_context_rqe_count_1,
James Smartc31098c2011-04-16 11:03:33 -040013837 &rq_create->u.request.context, hrq->entry_count);
James Smart5a6f1332011-03-11 16:05:35 -050013838 rq_create->u.request.context.buffer_size = LPFC_DATA_BUF_SIZE;
James Smartc31098c2011-04-16 11:03:33 -040013839 bf_set(lpfc_rq_context_rqe_size, &rq_create->u.request.context,
13840 LPFC_RQE_SIZE_8);
13841 bf_set(lpfc_rq_context_page_size, &rq_create->u.request.context,
13842 (PAGE_SIZE/SLI4_PAGE_SIZE));
James Smart5a6f1332011-03-11 16:05:35 -050013843 } else {
13844 switch (drq->entry_count) {
13845 default:
13846 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13847 "2536 Unsupported RQ count. (%d)\n",
13848 drq->entry_count);
James Smart4f4c1862012-06-12 13:54:02 -040013849 if (drq->entry_count < 512) {
13850 status = -EINVAL;
13851 goto out;
13852 }
James Smart5a6f1332011-03-11 16:05:35 -050013853 /* otherwise default to smallest count (drop through) */
13854 case 512:
13855 bf_set(lpfc_rq_context_rqe_count,
13856 &rq_create->u.request.context,
13857 LPFC_RQ_RING_SIZE_512);
13858 break;
13859 case 1024:
13860 bf_set(lpfc_rq_context_rqe_count,
13861 &rq_create->u.request.context,
13862 LPFC_RQ_RING_SIZE_1024);
13863 break;
13864 case 2048:
13865 bf_set(lpfc_rq_context_rqe_count,
13866 &rq_create->u.request.context,
13867 LPFC_RQ_RING_SIZE_2048);
13868 break;
13869 case 4096:
13870 bf_set(lpfc_rq_context_rqe_count,
13871 &rq_create->u.request.context,
13872 LPFC_RQ_RING_SIZE_4096);
13873 break;
13874 }
13875 bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
13876 LPFC_DATA_BUF_SIZE);
James Smart4f774512009-05-22 14:52:35 -040013877 }
13878 bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
13879 cq->queue_id);
13880 bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
13881 drq->page_count);
James Smart4f774512009-05-22 14:52:35 -040013882 list_for_each_entry(dmabuf, &drq->page_list, list) {
13883 rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
13884 putPaddrLow(dmabuf->phys);
13885 rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
13886 putPaddrHigh(dmabuf->phys);
13887 }
James Smart962bc512013-01-03 15:44:00 -050013888 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
13889 bf_set(lpfc_mbx_rq_create_dua, &rq_create->u.request, 1);
James Smart4f774512009-05-22 14:52:35 -040013890 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13891 /* The IOCTL status is embedded in the mailbox subheader. */
13892 shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
13893 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13894 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13895 if (shdr_status || shdr_add_status || rc) {
13896 status = -ENXIO;
13897 goto out;
13898 }
13899 drq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
13900 if (drq->queue_id == 0xFFFF) {
13901 status = -ENXIO;
13902 goto out;
13903 }
13904 drq->type = LPFC_DRQ;
James Smart2a622bf2011-02-16 12:40:06 -050013905 drq->assoc_qid = cq->queue_id;
James Smart4f774512009-05-22 14:52:35 -040013906 drq->subtype = subtype;
13907 drq->host_index = 0;
13908 drq->hba_index = 0;
13909
13910 /* link the header and data RQs onto the parent cq child list */
13911 list_add_tail(&hrq->list, &cq->child_list);
13912 list_add_tail(&drq->list, &cq->child_list);
13913
13914out:
James Smart8fa38512009-07-19 10:01:03 -040013915 mempool_free(mbox, phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040013916 return status;
13917}
13918
13919/**
13920 * lpfc_eq_destroy - Destroy an event Queue on the HBA
13921 * @eq: The queue structure associated with the queue to destroy.
13922 *
13923 * This function destroys a queue, as detailed in @eq by sending an mailbox
13924 * command, specific to the type of queue, to the HBA.
13925 *
13926 * The @eq struct is used to get the queue ID of the queue to destroy.
13927 *
13928 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040013929 * command fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040013930 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040013931int
James Smart4f774512009-05-22 14:52:35 -040013932lpfc_eq_destroy(struct lpfc_hba *phba, struct lpfc_queue *eq)
13933{
13934 LPFC_MBOXQ_t *mbox;
13935 int rc, length, status = 0;
13936 uint32_t shdr_status, shdr_add_status;
13937 union lpfc_sli4_cfg_shdr *shdr;
13938
James Smart2e90f4b2011-12-13 13:22:37 -050013939 /* sanity check on queue memory */
James Smart4f774512009-05-22 14:52:35 -040013940 if (!eq)
13941 return -ENODEV;
13942 mbox = mempool_alloc(eq->phba->mbox_mem_pool, GFP_KERNEL);
13943 if (!mbox)
13944 return -ENOMEM;
13945 length = (sizeof(struct lpfc_mbx_eq_destroy) -
13946 sizeof(struct lpfc_sli4_cfg_mhdr));
13947 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13948 LPFC_MBOX_OPCODE_EQ_DESTROY,
13949 length, LPFC_SLI4_MBX_EMBED);
13950 bf_set(lpfc_mbx_eq_destroy_q_id, &mbox->u.mqe.un.eq_destroy.u.request,
13951 eq->queue_id);
13952 mbox->vport = eq->phba->pport;
13953 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
13954
13955 rc = lpfc_sli_issue_mbox(eq->phba, mbox, MBX_POLL);
13956 /* The IOCTL status is embedded in the mailbox subheader. */
13957 shdr = (union lpfc_sli4_cfg_shdr *)
13958 &mbox->u.mqe.un.eq_destroy.header.cfg_shdr;
13959 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13960 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13961 if (shdr_status || shdr_add_status || rc) {
13962 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13963 "2505 EQ_DESTROY mailbox failed with "
13964 "status x%x add_status x%x, mbx status x%x\n",
13965 shdr_status, shdr_add_status, rc);
13966 status = -ENXIO;
13967 }
13968
13969 /* Remove eq from any list */
13970 list_del_init(&eq->list);
James Smart8fa38512009-07-19 10:01:03 -040013971 mempool_free(mbox, eq->phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040013972 return status;
13973}
13974
13975/**
13976 * lpfc_cq_destroy - Destroy a Completion Queue on the HBA
13977 * @cq: The queue structure associated with the queue to destroy.
13978 *
13979 * This function destroys a queue, as detailed in @cq by sending an mailbox
13980 * command, specific to the type of queue, to the HBA.
13981 *
13982 * The @cq struct is used to get the queue ID of the queue to destroy.
13983 *
13984 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040013985 * command fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040013986 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040013987int
James Smart4f774512009-05-22 14:52:35 -040013988lpfc_cq_destroy(struct lpfc_hba *phba, struct lpfc_queue *cq)
13989{
13990 LPFC_MBOXQ_t *mbox;
13991 int rc, length, status = 0;
13992 uint32_t shdr_status, shdr_add_status;
13993 union lpfc_sli4_cfg_shdr *shdr;
13994
James Smart2e90f4b2011-12-13 13:22:37 -050013995 /* sanity check on queue memory */
James Smart4f774512009-05-22 14:52:35 -040013996 if (!cq)
13997 return -ENODEV;
13998 mbox = mempool_alloc(cq->phba->mbox_mem_pool, GFP_KERNEL);
13999 if (!mbox)
14000 return -ENOMEM;
14001 length = (sizeof(struct lpfc_mbx_cq_destroy) -
14002 sizeof(struct lpfc_sli4_cfg_mhdr));
14003 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
14004 LPFC_MBOX_OPCODE_CQ_DESTROY,
14005 length, LPFC_SLI4_MBX_EMBED);
14006 bf_set(lpfc_mbx_cq_destroy_q_id, &mbox->u.mqe.un.cq_destroy.u.request,
14007 cq->queue_id);
14008 mbox->vport = cq->phba->pport;
14009 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
14010 rc = lpfc_sli_issue_mbox(cq->phba, mbox, MBX_POLL);
14011 /* The IOCTL status is embedded in the mailbox subheader. */
14012 shdr = (union lpfc_sli4_cfg_shdr *)
14013 &mbox->u.mqe.un.wq_create.header.cfg_shdr;
14014 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14015 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14016 if (shdr_status || shdr_add_status || rc) {
14017 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14018 "2506 CQ_DESTROY mailbox failed with "
14019 "status x%x add_status x%x, mbx status x%x\n",
14020 shdr_status, shdr_add_status, rc);
14021 status = -ENXIO;
14022 }
14023 /* Remove cq from any list */
14024 list_del_init(&cq->list);
James Smart8fa38512009-07-19 10:01:03 -040014025 mempool_free(mbox, cq->phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040014026 return status;
14027}
14028
14029/**
James Smart04c68492009-05-22 14:52:52 -040014030 * lpfc_mq_destroy - Destroy a Mailbox Queue on the HBA
14031 * @qm: The queue structure associated with the queue to destroy.
14032 *
14033 * This function destroys a queue, as detailed in @mq by sending an mailbox
14034 * command, specific to the type of queue, to the HBA.
14035 *
14036 * The @mq struct is used to get the queue ID of the queue to destroy.
14037 *
14038 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040014039 * command fails this function will return -ENXIO.
James Smart04c68492009-05-22 14:52:52 -040014040 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040014041int
James Smart04c68492009-05-22 14:52:52 -040014042lpfc_mq_destroy(struct lpfc_hba *phba, struct lpfc_queue *mq)
14043{
14044 LPFC_MBOXQ_t *mbox;
14045 int rc, length, status = 0;
14046 uint32_t shdr_status, shdr_add_status;
14047 union lpfc_sli4_cfg_shdr *shdr;
14048
James Smart2e90f4b2011-12-13 13:22:37 -050014049 /* sanity check on queue memory */
James Smart04c68492009-05-22 14:52:52 -040014050 if (!mq)
14051 return -ENODEV;
14052 mbox = mempool_alloc(mq->phba->mbox_mem_pool, GFP_KERNEL);
14053 if (!mbox)
14054 return -ENOMEM;
14055 length = (sizeof(struct lpfc_mbx_mq_destroy) -
14056 sizeof(struct lpfc_sli4_cfg_mhdr));
14057 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
14058 LPFC_MBOX_OPCODE_MQ_DESTROY,
14059 length, LPFC_SLI4_MBX_EMBED);
14060 bf_set(lpfc_mbx_mq_destroy_q_id, &mbox->u.mqe.un.mq_destroy.u.request,
14061 mq->queue_id);
14062 mbox->vport = mq->phba->pport;
14063 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
14064 rc = lpfc_sli_issue_mbox(mq->phba, mbox, MBX_POLL);
14065 /* The IOCTL status is embedded in the mailbox subheader. */
14066 shdr = (union lpfc_sli4_cfg_shdr *)
14067 &mbox->u.mqe.un.mq_destroy.header.cfg_shdr;
14068 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14069 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14070 if (shdr_status || shdr_add_status || rc) {
14071 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14072 "2507 MQ_DESTROY mailbox failed with "
14073 "status x%x add_status x%x, mbx status x%x\n",
14074 shdr_status, shdr_add_status, rc);
14075 status = -ENXIO;
14076 }
14077 /* Remove mq from any list */
14078 list_del_init(&mq->list);
James Smart8fa38512009-07-19 10:01:03 -040014079 mempool_free(mbox, mq->phba->mbox_mem_pool);
James Smart04c68492009-05-22 14:52:52 -040014080 return status;
14081}
14082
14083/**
James Smart4f774512009-05-22 14:52:35 -040014084 * lpfc_wq_destroy - Destroy a Work Queue on the HBA
14085 * @wq: The queue structure associated with the queue to destroy.
14086 *
14087 * This function destroys a queue, as detailed in @wq by sending an mailbox
14088 * command, specific to the type of queue, to the HBA.
14089 *
14090 * The @wq struct is used to get the queue ID of the queue to destroy.
14091 *
14092 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040014093 * command fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040014094 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040014095int
James Smart4f774512009-05-22 14:52:35 -040014096lpfc_wq_destroy(struct lpfc_hba *phba, struct lpfc_queue *wq)
14097{
14098 LPFC_MBOXQ_t *mbox;
14099 int rc, length, status = 0;
14100 uint32_t shdr_status, shdr_add_status;
14101 union lpfc_sli4_cfg_shdr *shdr;
14102
James Smart2e90f4b2011-12-13 13:22:37 -050014103 /* sanity check on queue memory */
James Smart4f774512009-05-22 14:52:35 -040014104 if (!wq)
14105 return -ENODEV;
14106 mbox = mempool_alloc(wq->phba->mbox_mem_pool, GFP_KERNEL);
14107 if (!mbox)
14108 return -ENOMEM;
14109 length = (sizeof(struct lpfc_mbx_wq_destroy) -
14110 sizeof(struct lpfc_sli4_cfg_mhdr));
14111 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14112 LPFC_MBOX_OPCODE_FCOE_WQ_DESTROY,
14113 length, LPFC_SLI4_MBX_EMBED);
14114 bf_set(lpfc_mbx_wq_destroy_q_id, &mbox->u.mqe.un.wq_destroy.u.request,
14115 wq->queue_id);
14116 mbox->vport = wq->phba->pport;
14117 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
14118 rc = lpfc_sli_issue_mbox(wq->phba, mbox, MBX_POLL);
14119 shdr = (union lpfc_sli4_cfg_shdr *)
14120 &mbox->u.mqe.un.wq_destroy.header.cfg_shdr;
14121 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14122 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14123 if (shdr_status || shdr_add_status || rc) {
14124 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14125 "2508 WQ_DESTROY mailbox failed with "
14126 "status x%x add_status x%x, mbx status x%x\n",
14127 shdr_status, shdr_add_status, rc);
14128 status = -ENXIO;
14129 }
14130 /* Remove wq from any list */
14131 list_del_init(&wq->list);
James Smart8fa38512009-07-19 10:01:03 -040014132 mempool_free(mbox, wq->phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040014133 return status;
14134}
14135
14136/**
14137 * lpfc_rq_destroy - Destroy a Receive Queue on the HBA
14138 * @rq: The queue structure associated with the queue to destroy.
14139 *
14140 * This function destroys a queue, as detailed in @rq by sending an mailbox
14141 * command, specific to the type of queue, to the HBA.
14142 *
14143 * The @rq struct is used to get the queue ID of the queue to destroy.
14144 *
14145 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040014146 * command fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040014147 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040014148int
James Smart4f774512009-05-22 14:52:35 -040014149lpfc_rq_destroy(struct lpfc_hba *phba, struct lpfc_queue *hrq,
14150 struct lpfc_queue *drq)
14151{
14152 LPFC_MBOXQ_t *mbox;
14153 int rc, length, status = 0;
14154 uint32_t shdr_status, shdr_add_status;
14155 union lpfc_sli4_cfg_shdr *shdr;
14156
James Smart2e90f4b2011-12-13 13:22:37 -050014157 /* sanity check on queue memory */
James Smart4f774512009-05-22 14:52:35 -040014158 if (!hrq || !drq)
14159 return -ENODEV;
14160 mbox = mempool_alloc(hrq->phba->mbox_mem_pool, GFP_KERNEL);
14161 if (!mbox)
14162 return -ENOMEM;
14163 length = (sizeof(struct lpfc_mbx_rq_destroy) -
James Smartfedd3b72011-02-16 12:39:24 -050014164 sizeof(struct lpfc_sli4_cfg_mhdr));
James Smart4f774512009-05-22 14:52:35 -040014165 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14166 LPFC_MBOX_OPCODE_FCOE_RQ_DESTROY,
14167 length, LPFC_SLI4_MBX_EMBED);
14168 bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
14169 hrq->queue_id);
14170 mbox->vport = hrq->phba->pport;
14171 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
14172 rc = lpfc_sli_issue_mbox(hrq->phba, mbox, MBX_POLL);
14173 /* The IOCTL status is embedded in the mailbox subheader. */
14174 shdr = (union lpfc_sli4_cfg_shdr *)
14175 &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
14176 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14177 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14178 if (shdr_status || shdr_add_status || rc) {
14179 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14180 "2509 RQ_DESTROY mailbox failed with "
14181 "status x%x add_status x%x, mbx status x%x\n",
14182 shdr_status, shdr_add_status, rc);
14183 if (rc != MBX_TIMEOUT)
14184 mempool_free(mbox, hrq->phba->mbox_mem_pool);
14185 return -ENXIO;
14186 }
14187 bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
14188 drq->queue_id);
14189 rc = lpfc_sli_issue_mbox(drq->phba, mbox, MBX_POLL);
14190 shdr = (union lpfc_sli4_cfg_shdr *)
14191 &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
14192 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14193 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14194 if (shdr_status || shdr_add_status || rc) {
14195 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14196 "2510 RQ_DESTROY mailbox failed with "
14197 "status x%x add_status x%x, mbx status x%x\n",
14198 shdr_status, shdr_add_status, rc);
14199 status = -ENXIO;
14200 }
14201 list_del_init(&hrq->list);
14202 list_del_init(&drq->list);
James Smart8fa38512009-07-19 10:01:03 -040014203 mempool_free(mbox, hrq->phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040014204 return status;
14205}
14206
14207/**
14208 * lpfc_sli4_post_sgl - Post scatter gather list for an XRI to HBA
14209 * @phba: The virtual port for which this call being executed.
14210 * @pdma_phys_addr0: Physical address of the 1st SGL page.
14211 * @pdma_phys_addr1: Physical address of the 2nd SGL page.
14212 * @xritag: the xritag that ties this io to the SGL pages.
14213 *
14214 * This routine will post the sgl pages for the IO that has the xritag
14215 * that is in the iocbq structure. The xritag is assigned during iocbq
14216 * creation and persists for as long as the driver is loaded.
14217 * if the caller has fewer than 256 scatter gather segments to map then
14218 * pdma_phys_addr1 should be 0.
14219 * If the caller needs to map more than 256 scatter gather segment then
14220 * pdma_phys_addr1 should be a valid physical address.
14221 * physical address for SGLs must be 64 byte aligned.
14222 * If you are going to map 2 SGL's then the first one must have 256 entries
14223 * the second sgl can have between 1 and 256 entries.
14224 *
14225 * Return codes:
14226 * 0 - Success
14227 * -ENXIO, -ENOMEM - Failure
14228 **/
14229int
14230lpfc_sli4_post_sgl(struct lpfc_hba *phba,
14231 dma_addr_t pdma_phys_addr0,
14232 dma_addr_t pdma_phys_addr1,
14233 uint16_t xritag)
14234{
14235 struct lpfc_mbx_post_sgl_pages *post_sgl_pages;
14236 LPFC_MBOXQ_t *mbox;
14237 int rc;
14238 uint32_t shdr_status, shdr_add_status;
James Smart6d368e52011-05-24 11:44:12 -040014239 uint32_t mbox_tmo;
James Smart4f774512009-05-22 14:52:35 -040014240 union lpfc_sli4_cfg_shdr *shdr;
14241
14242 if (xritag == NO_XRI) {
14243 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14244 "0364 Invalid param:\n");
14245 return -EINVAL;
14246 }
14247
14248 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
14249 if (!mbox)
14250 return -ENOMEM;
14251
14252 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14253 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES,
14254 sizeof(struct lpfc_mbx_post_sgl_pages) -
James Smartfedd3b72011-02-16 12:39:24 -050014255 sizeof(struct lpfc_sli4_cfg_mhdr), LPFC_SLI4_MBX_EMBED);
James Smart4f774512009-05-22 14:52:35 -040014256
14257 post_sgl_pages = (struct lpfc_mbx_post_sgl_pages *)
14258 &mbox->u.mqe.un.post_sgl_pages;
14259 bf_set(lpfc_post_sgl_pages_xri, post_sgl_pages, xritag);
14260 bf_set(lpfc_post_sgl_pages_xricnt, post_sgl_pages, 1);
14261
14262 post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_lo =
14263 cpu_to_le32(putPaddrLow(pdma_phys_addr0));
14264 post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_hi =
14265 cpu_to_le32(putPaddrHigh(pdma_phys_addr0));
14266
14267 post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_lo =
14268 cpu_to_le32(putPaddrLow(pdma_phys_addr1));
14269 post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_hi =
14270 cpu_to_le32(putPaddrHigh(pdma_phys_addr1));
14271 if (!phba->sli4_hba.intr_enable)
14272 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
James Smart6d368e52011-05-24 11:44:12 -040014273 else {
James Smarta183a152011-10-10 21:32:43 -040014274 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -040014275 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
14276 }
James Smart4f774512009-05-22 14:52:35 -040014277 /* The IOCTL status is embedded in the mailbox subheader. */
14278 shdr = (union lpfc_sli4_cfg_shdr *) &post_sgl_pages->header.cfg_shdr;
14279 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14280 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14281 if (rc != MBX_TIMEOUT)
14282 mempool_free(mbox, phba->mbox_mem_pool);
14283 if (shdr_status || shdr_add_status || rc) {
14284 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14285 "2511 POST_SGL mailbox failed with "
14286 "status x%x add_status x%x, mbx status x%x\n",
14287 shdr_status, shdr_add_status, rc);
James Smart4f774512009-05-22 14:52:35 -040014288 }
14289 return 0;
14290}
James Smart4f774512009-05-22 14:52:35 -040014291
14292/**
James Smart88a2cfb2011-07-22 18:36:33 -040014293 * lpfc_sli4_alloc_xri - Get an available rpi in the device's range
James Smart6d368e52011-05-24 11:44:12 -040014294 * @phba: pointer to lpfc hba data structure.
14295 *
14296 * This routine is invoked to post rpi header templates to the
James Smart88a2cfb2011-07-22 18:36:33 -040014297 * HBA consistent with the SLI-4 interface spec. This routine
14298 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
14299 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
James Smart6d368e52011-05-24 11:44:12 -040014300 *
James Smart88a2cfb2011-07-22 18:36:33 -040014301 * Returns
14302 * A nonzero rpi defined as rpi_base <= rpi < max_rpi if successful
14303 * LPFC_RPI_ALLOC_ERROR if no rpis are available.
14304 **/
Rashika Kheria5d8b8162014-09-03 12:55:04 -040014305static uint16_t
James Smart6d368e52011-05-24 11:44:12 -040014306lpfc_sli4_alloc_xri(struct lpfc_hba *phba)
14307{
14308 unsigned long xri;
14309
14310 /*
14311 * Fetch the next logical xri. Because this index is logical,
14312 * the driver starts at 0 each time.
14313 */
14314 spin_lock_irq(&phba->hbalock);
14315 xri = find_next_zero_bit(phba->sli4_hba.xri_bmask,
14316 phba->sli4_hba.max_cfg_param.max_xri, 0);
14317 if (xri >= phba->sli4_hba.max_cfg_param.max_xri) {
14318 spin_unlock_irq(&phba->hbalock);
14319 return NO_XRI;
14320 } else {
14321 set_bit(xri, phba->sli4_hba.xri_bmask);
14322 phba->sli4_hba.max_cfg_param.xri_used++;
James Smart6d368e52011-05-24 11:44:12 -040014323 }
James Smart6d368e52011-05-24 11:44:12 -040014324 spin_unlock_irq(&phba->hbalock);
14325 return xri;
14326}
14327
14328/**
14329 * lpfc_sli4_free_xri - Release an xri for reuse.
14330 * @phba: pointer to lpfc hba data structure.
14331 *
14332 * This routine is invoked to release an xri to the pool of
14333 * available rpis maintained by the driver.
14334 **/
Rashika Kheria5d8b8162014-09-03 12:55:04 -040014335static void
James Smart6d368e52011-05-24 11:44:12 -040014336__lpfc_sli4_free_xri(struct lpfc_hba *phba, int xri)
14337{
14338 if (test_and_clear_bit(xri, phba->sli4_hba.xri_bmask)) {
James Smart6d368e52011-05-24 11:44:12 -040014339 phba->sli4_hba.max_cfg_param.xri_used--;
14340 }
14341}
14342
14343/**
14344 * lpfc_sli4_free_xri - Release an xri for reuse.
14345 * @phba: pointer to lpfc hba data structure.
14346 *
14347 * This routine is invoked to release an xri to the pool of
14348 * available rpis maintained by the driver.
14349 **/
14350void
14351lpfc_sli4_free_xri(struct lpfc_hba *phba, int xri)
14352{
14353 spin_lock_irq(&phba->hbalock);
14354 __lpfc_sli4_free_xri(phba, xri);
14355 spin_unlock_irq(&phba->hbalock);
14356}
14357
14358/**
James Smart4f774512009-05-22 14:52:35 -040014359 * lpfc_sli4_next_xritag - Get an xritag for the io
14360 * @phba: Pointer to HBA context object.
14361 *
14362 * This function gets an xritag for the iocb. If there is no unused xritag
14363 * it will return 0xffff.
14364 * The function returns the allocated xritag if successful, else returns zero.
14365 * Zero is not a valid xritag.
14366 * The caller is not required to hold any lock.
14367 **/
14368uint16_t
14369lpfc_sli4_next_xritag(struct lpfc_hba *phba)
14370{
James Smart6d368e52011-05-24 11:44:12 -040014371 uint16_t xri_index;
James Smart4f774512009-05-22 14:52:35 -040014372
James Smart6d368e52011-05-24 11:44:12 -040014373 xri_index = lpfc_sli4_alloc_xri(phba);
James Smart81378052012-05-09 21:17:37 -040014374 if (xri_index == NO_XRI)
14375 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
14376 "2004 Failed to allocate XRI.last XRITAG is %d"
14377 " Max XRI is %d, Used XRI is %d\n",
14378 xri_index,
14379 phba->sli4_hba.max_cfg_param.max_xri,
14380 phba->sli4_hba.max_cfg_param.xri_used);
14381 return xri_index;
James Smart4f774512009-05-22 14:52:35 -040014382}
14383
14384/**
James Smart6d368e52011-05-24 11:44:12 -040014385 * lpfc_sli4_post_els_sgl_list - post a block of ELS sgls to the port.
James Smart4f774512009-05-22 14:52:35 -040014386 * @phba: pointer to lpfc hba data structure.
James Smart8a9d2e82012-05-09 21:16:12 -040014387 * @post_sgl_list: pointer to els sgl entry list.
14388 * @count: number of els sgl entries on the list.
James Smart4f774512009-05-22 14:52:35 -040014389 *
14390 * This routine is invoked to post a block of driver's sgl pages to the
14391 * HBA using non-embedded mailbox command. No Lock is held. This routine
14392 * is only called when the driver is loading and after all IO has been
14393 * stopped.
14394 **/
James Smart8a9d2e82012-05-09 21:16:12 -040014395static int
14396lpfc_sli4_post_els_sgl_list(struct lpfc_hba *phba,
14397 struct list_head *post_sgl_list,
14398 int post_cnt)
James Smart4f774512009-05-22 14:52:35 -040014399{
James Smart8a9d2e82012-05-09 21:16:12 -040014400 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
James Smart4f774512009-05-22 14:52:35 -040014401 struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
14402 struct sgl_page_pairs *sgl_pg_pairs;
14403 void *viraddr;
14404 LPFC_MBOXQ_t *mbox;
14405 uint32_t reqlen, alloclen, pg_pairs;
14406 uint32_t mbox_tmo;
James Smart8a9d2e82012-05-09 21:16:12 -040014407 uint16_t xritag_start = 0;
14408 int rc = 0;
James Smart4f774512009-05-22 14:52:35 -040014409 uint32_t shdr_status, shdr_add_status;
14410 union lpfc_sli4_cfg_shdr *shdr;
14411
James Smart8a9d2e82012-05-09 21:16:12 -040014412 reqlen = phba->sli4_hba.els_xri_cnt * sizeof(struct sgl_page_pairs) +
James Smart4f774512009-05-22 14:52:35 -040014413 sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
James Smart49198b32010-04-06 15:04:33 -040014414 if (reqlen > SLI4_PAGE_SIZE) {
James Smart4f774512009-05-22 14:52:35 -040014415 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
14416 "2559 Block sgl registration required DMA "
14417 "size (%d) great than a page\n", reqlen);
14418 return -ENOMEM;
14419 }
14420 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart6d368e52011-05-24 11:44:12 -040014421 if (!mbox)
James Smart4f774512009-05-22 14:52:35 -040014422 return -ENOMEM;
James Smart4f774512009-05-22 14:52:35 -040014423
14424 /* Allocate DMA memory and set up the non-embedded mailbox command */
14425 alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14426 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
14427 LPFC_SLI4_MBX_NEMBED);
14428
14429 if (alloclen < reqlen) {
14430 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14431 "0285 Allocated DMA memory size (%d) is "
14432 "less than the requested DMA memory "
14433 "size (%d)\n", alloclen, reqlen);
14434 lpfc_sli4_mbox_cmd_free(phba, mbox);
14435 return -ENOMEM;
14436 }
James Smart4f774512009-05-22 14:52:35 -040014437 /* Set up the SGL pages in the non-embedded DMA pages */
James Smart6d368e52011-05-24 11:44:12 -040014438 viraddr = mbox->sge_array->addr[0];
James Smart4f774512009-05-22 14:52:35 -040014439 sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
14440 sgl_pg_pairs = &sgl->sgl_pg_pairs;
14441
James Smart8a9d2e82012-05-09 21:16:12 -040014442 pg_pairs = 0;
14443 list_for_each_entry_safe(sglq_entry, sglq_next, post_sgl_list, list) {
James Smart4f774512009-05-22 14:52:35 -040014444 /* Set up the sge entry */
14445 sgl_pg_pairs->sgl_pg0_addr_lo =
14446 cpu_to_le32(putPaddrLow(sglq_entry->phys));
14447 sgl_pg_pairs->sgl_pg0_addr_hi =
14448 cpu_to_le32(putPaddrHigh(sglq_entry->phys));
14449 sgl_pg_pairs->sgl_pg1_addr_lo =
14450 cpu_to_le32(putPaddrLow(0));
14451 sgl_pg_pairs->sgl_pg1_addr_hi =
14452 cpu_to_le32(putPaddrHigh(0));
James Smart6d368e52011-05-24 11:44:12 -040014453
James Smart4f774512009-05-22 14:52:35 -040014454 /* Keep the first xritag on the list */
14455 if (pg_pairs == 0)
14456 xritag_start = sglq_entry->sli4_xritag;
14457 sgl_pg_pairs++;
James Smart8a9d2e82012-05-09 21:16:12 -040014458 pg_pairs++;
James Smart4f774512009-05-22 14:52:35 -040014459 }
James Smart6d368e52011-05-24 11:44:12 -040014460
14461 /* Complete initialization and perform endian conversion. */
James Smart4f774512009-05-22 14:52:35 -040014462 bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
James Smart8a9d2e82012-05-09 21:16:12 -040014463 bf_set(lpfc_post_sgl_pages_xricnt, sgl, phba->sli4_hba.els_xri_cnt);
James Smart4f774512009-05-22 14:52:35 -040014464 sgl->word0 = cpu_to_le32(sgl->word0);
James Smart4f774512009-05-22 14:52:35 -040014465 if (!phba->sli4_hba.intr_enable)
14466 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
14467 else {
James Smarta183a152011-10-10 21:32:43 -040014468 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart4f774512009-05-22 14:52:35 -040014469 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
14470 }
14471 shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
14472 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14473 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14474 if (rc != MBX_TIMEOUT)
14475 lpfc_sli4_mbox_cmd_free(phba, mbox);
14476 if (shdr_status || shdr_add_status || rc) {
14477 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14478 "2513 POST_SGL_BLOCK mailbox command failed "
14479 "status x%x add_status x%x mbx status x%x\n",
14480 shdr_status, shdr_add_status, rc);
14481 rc = -ENXIO;
14482 }
14483 return rc;
14484}
14485
14486/**
14487 * lpfc_sli4_post_scsi_sgl_block - post a block of scsi sgl list to firmware
14488 * @phba: pointer to lpfc hba data structure.
14489 * @sblist: pointer to scsi buffer list.
14490 * @count: number of scsi buffers on the list.
14491 *
14492 * This routine is invoked to post a block of @count scsi sgl pages from a
14493 * SCSI buffer list @sblist to the HBA using non-embedded mailbox command.
14494 * No Lock is held.
14495 *
14496 **/
14497int
James Smart8a9d2e82012-05-09 21:16:12 -040014498lpfc_sli4_post_scsi_sgl_block(struct lpfc_hba *phba,
14499 struct list_head *sblist,
14500 int count)
James Smart4f774512009-05-22 14:52:35 -040014501{
14502 struct lpfc_scsi_buf *psb;
14503 struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
14504 struct sgl_page_pairs *sgl_pg_pairs;
14505 void *viraddr;
14506 LPFC_MBOXQ_t *mbox;
14507 uint32_t reqlen, alloclen, pg_pairs;
14508 uint32_t mbox_tmo;
14509 uint16_t xritag_start = 0;
14510 int rc = 0;
14511 uint32_t shdr_status, shdr_add_status;
14512 dma_addr_t pdma_phys_bpl1;
14513 union lpfc_sli4_cfg_shdr *shdr;
14514
14515 /* Calculate the requested length of the dma memory */
James Smart8a9d2e82012-05-09 21:16:12 -040014516 reqlen = count * sizeof(struct sgl_page_pairs) +
James Smart4f774512009-05-22 14:52:35 -040014517 sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
James Smart49198b32010-04-06 15:04:33 -040014518 if (reqlen > SLI4_PAGE_SIZE) {
James Smart4f774512009-05-22 14:52:35 -040014519 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
14520 "0217 Block sgl registration required DMA "
14521 "size (%d) great than a page\n", reqlen);
14522 return -ENOMEM;
14523 }
14524 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
14525 if (!mbox) {
14526 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14527 "0283 Failed to allocate mbox cmd memory\n");
14528 return -ENOMEM;
14529 }
14530
14531 /* Allocate DMA memory and set up the non-embedded mailbox command */
14532 alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14533 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
14534 LPFC_SLI4_MBX_NEMBED);
14535
14536 if (alloclen < reqlen) {
14537 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14538 "2561 Allocated DMA memory size (%d) is "
14539 "less than the requested DMA memory "
14540 "size (%d)\n", alloclen, reqlen);
14541 lpfc_sli4_mbox_cmd_free(phba, mbox);
14542 return -ENOMEM;
14543 }
James Smart6d368e52011-05-24 11:44:12 -040014544
James Smart4f774512009-05-22 14:52:35 -040014545 /* Get the first SGE entry from the non-embedded DMA memory */
James Smart4f774512009-05-22 14:52:35 -040014546 viraddr = mbox->sge_array->addr[0];
14547
14548 /* Set up the SGL pages in the non-embedded DMA pages */
14549 sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
14550 sgl_pg_pairs = &sgl->sgl_pg_pairs;
14551
14552 pg_pairs = 0;
14553 list_for_each_entry(psb, sblist, list) {
14554 /* Set up the sge entry */
14555 sgl_pg_pairs->sgl_pg0_addr_lo =
14556 cpu_to_le32(putPaddrLow(psb->dma_phys_bpl));
14557 sgl_pg_pairs->sgl_pg0_addr_hi =
14558 cpu_to_le32(putPaddrHigh(psb->dma_phys_bpl));
14559 if (phba->cfg_sg_dma_buf_size > SGL_PAGE_SIZE)
14560 pdma_phys_bpl1 = psb->dma_phys_bpl + SGL_PAGE_SIZE;
14561 else
14562 pdma_phys_bpl1 = 0;
14563 sgl_pg_pairs->sgl_pg1_addr_lo =
14564 cpu_to_le32(putPaddrLow(pdma_phys_bpl1));
14565 sgl_pg_pairs->sgl_pg1_addr_hi =
14566 cpu_to_le32(putPaddrHigh(pdma_phys_bpl1));
14567 /* Keep the first xritag on the list */
14568 if (pg_pairs == 0)
14569 xritag_start = psb->cur_iocbq.sli4_xritag;
14570 sgl_pg_pairs++;
14571 pg_pairs++;
14572 }
14573 bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
14574 bf_set(lpfc_post_sgl_pages_xricnt, sgl, pg_pairs);
14575 /* Perform endian conversion if necessary */
14576 sgl->word0 = cpu_to_le32(sgl->word0);
14577
14578 if (!phba->sli4_hba.intr_enable)
14579 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
14580 else {
James Smarta183a152011-10-10 21:32:43 -040014581 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart4f774512009-05-22 14:52:35 -040014582 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
14583 }
14584 shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
14585 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14586 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14587 if (rc != MBX_TIMEOUT)
14588 lpfc_sli4_mbox_cmd_free(phba, mbox);
14589 if (shdr_status || shdr_add_status || rc) {
14590 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14591 "2564 POST_SGL_BLOCK mailbox command failed "
14592 "status x%x add_status x%x mbx status x%x\n",
14593 shdr_status, shdr_add_status, rc);
14594 rc = -ENXIO;
14595 }
14596 return rc;
14597}
14598
14599/**
14600 * lpfc_fc_frame_check - Check that this frame is a valid frame to handle
14601 * @phba: pointer to lpfc_hba struct that the frame was received on
14602 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
14603 *
14604 * This function checks the fields in the @fc_hdr to see if the FC frame is a
14605 * valid type of frame that the LPFC driver will handle. This function will
14606 * return a zero if the frame is a valid frame or a non zero value when the
14607 * frame does not pass the check.
14608 **/
14609static int
14610lpfc_fc_frame_check(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr)
14611{
Tomas Henzl474ffb72010-12-22 16:52:40 +010014612 /* make rctl_names static to save stack space */
14613 static char *rctl_names[] = FC_RCTL_NAMES_INIT;
James Smart4f774512009-05-22 14:52:35 -040014614 char *type_names[] = FC_TYPE_NAMES_INIT;
14615 struct fc_vft_header *fc_vft_hdr;
James Smart546fc852011-03-11 16:06:29 -050014616 uint32_t *header = (uint32_t *) fc_hdr;
James Smart4f774512009-05-22 14:52:35 -040014617
14618 switch (fc_hdr->fh_r_ctl) {
14619 case FC_RCTL_DD_UNCAT: /* uncategorized information */
14620 case FC_RCTL_DD_SOL_DATA: /* solicited data */
14621 case FC_RCTL_DD_UNSOL_CTL: /* unsolicited control */
14622 case FC_RCTL_DD_SOL_CTL: /* solicited control or reply */
14623 case FC_RCTL_DD_UNSOL_DATA: /* unsolicited data */
14624 case FC_RCTL_DD_DATA_DESC: /* data descriptor */
14625 case FC_RCTL_DD_UNSOL_CMD: /* unsolicited command */
14626 case FC_RCTL_DD_CMD_STATUS: /* command status */
14627 case FC_RCTL_ELS_REQ: /* extended link services request */
14628 case FC_RCTL_ELS_REP: /* extended link services reply */
14629 case FC_RCTL_ELS4_REQ: /* FC-4 ELS request */
14630 case FC_RCTL_ELS4_REP: /* FC-4 ELS reply */
14631 case FC_RCTL_BA_NOP: /* basic link service NOP */
14632 case FC_RCTL_BA_ABTS: /* basic link service abort */
14633 case FC_RCTL_BA_RMC: /* remove connection */
14634 case FC_RCTL_BA_ACC: /* basic accept */
14635 case FC_RCTL_BA_RJT: /* basic reject */
14636 case FC_RCTL_BA_PRMT:
14637 case FC_RCTL_ACK_1: /* acknowledge_1 */
14638 case FC_RCTL_ACK_0: /* acknowledge_0 */
14639 case FC_RCTL_P_RJT: /* port reject */
14640 case FC_RCTL_F_RJT: /* fabric reject */
14641 case FC_RCTL_P_BSY: /* port busy */
14642 case FC_RCTL_F_BSY: /* fabric busy to data frame */
14643 case FC_RCTL_F_BSYL: /* fabric busy to link control frame */
14644 case FC_RCTL_LCR: /* link credit reset */
14645 case FC_RCTL_END: /* end */
14646 break;
14647 case FC_RCTL_VFTH: /* Virtual Fabric tagging Header */
14648 fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
14649 fc_hdr = &((struct fc_frame_header *)fc_vft_hdr)[1];
14650 return lpfc_fc_frame_check(phba, fc_hdr);
14651 default:
14652 goto drop;
14653 }
14654 switch (fc_hdr->fh_type) {
14655 case FC_TYPE_BLS:
14656 case FC_TYPE_ELS:
14657 case FC_TYPE_FCP:
14658 case FC_TYPE_CT:
14659 break;
14660 case FC_TYPE_IP:
14661 case FC_TYPE_ILS:
14662 default:
14663 goto drop;
14664 }
James Smart546fc852011-03-11 16:06:29 -050014665
James Smart4f774512009-05-22 14:52:35 -040014666 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
James Smart88f43a02013-04-17 20:19:44 -040014667 "2538 Received frame rctl:%s (x%x), type:%s (x%x), "
14668 "frame Data:%08x %08x %08x %08x %08x %08x %08x\n",
14669 rctl_names[fc_hdr->fh_r_ctl], fc_hdr->fh_r_ctl,
14670 type_names[fc_hdr->fh_type], fc_hdr->fh_type,
James Smart546fc852011-03-11 16:06:29 -050014671 be32_to_cpu(header[0]), be32_to_cpu(header[1]),
14672 be32_to_cpu(header[2]), be32_to_cpu(header[3]),
James Smart88f43a02013-04-17 20:19:44 -040014673 be32_to_cpu(header[4]), be32_to_cpu(header[5]),
14674 be32_to_cpu(header[6]));
James Smart4f774512009-05-22 14:52:35 -040014675 return 0;
14676drop:
14677 lpfc_printf_log(phba, KERN_WARNING, LOG_ELS,
14678 "2539 Dropped frame rctl:%s type:%s\n",
14679 rctl_names[fc_hdr->fh_r_ctl],
14680 type_names[fc_hdr->fh_type]);
14681 return 1;
14682}
14683
14684/**
14685 * lpfc_fc_hdr_get_vfi - Get the VFI from an FC frame
14686 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
14687 *
14688 * This function processes the FC header to retrieve the VFI from the VF
14689 * header, if one exists. This function will return the VFI if one exists
14690 * or 0 if no VSAN Header exists.
14691 **/
14692static uint32_t
14693lpfc_fc_hdr_get_vfi(struct fc_frame_header *fc_hdr)
14694{
14695 struct fc_vft_header *fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
14696
14697 if (fc_hdr->fh_r_ctl != FC_RCTL_VFTH)
14698 return 0;
14699 return bf_get(fc_vft_hdr_vf_id, fc_vft_hdr);
14700}
14701
14702/**
14703 * lpfc_fc_frame_to_vport - Finds the vport that a frame is destined to
14704 * @phba: Pointer to the HBA structure to search for the vport on
14705 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
14706 * @fcfi: The FC Fabric ID that the frame came from
14707 *
14708 * This function searches the @phba for a vport that matches the content of the
14709 * @fc_hdr passed in and the @fcfi. This function uses the @fc_hdr to fetch the
14710 * VFI, if the Virtual Fabric Tagging Header exists, and the DID. This function
14711 * returns the matching vport pointer or NULL if unable to match frame to a
14712 * vport.
14713 **/
14714static struct lpfc_vport *
14715lpfc_fc_frame_to_vport(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr,
14716 uint16_t fcfi)
14717{
14718 struct lpfc_vport **vports;
14719 struct lpfc_vport *vport = NULL;
14720 int i;
14721 uint32_t did = (fc_hdr->fh_d_id[0] << 16 |
14722 fc_hdr->fh_d_id[1] << 8 |
14723 fc_hdr->fh_d_id[2]);
James Smart939723a2012-05-09 21:19:03 -040014724
James Smartbf086112011-08-21 21:48:13 -040014725 if (did == Fabric_DID)
14726 return phba->pport;
James Smart939723a2012-05-09 21:19:03 -040014727 if ((phba->pport->fc_flag & FC_PT2PT) &&
14728 !(phba->link_state == LPFC_HBA_READY))
14729 return phba->pport;
14730
James Smart4f774512009-05-22 14:52:35 -040014731 vports = lpfc_create_vport_work_array(phba);
14732 if (vports != NULL)
14733 for (i = 0; i <= phba->max_vpi && vports[i] != NULL; i++) {
14734 if (phba->fcf.fcfi == fcfi &&
14735 vports[i]->vfi == lpfc_fc_hdr_get_vfi(fc_hdr) &&
14736 vports[i]->fc_myDID == did) {
14737 vport = vports[i];
14738 break;
14739 }
14740 }
14741 lpfc_destroy_vport_work_array(phba, vports);
14742 return vport;
14743}
14744
14745/**
James Smart45ed1192009-10-02 15:17:02 -040014746 * lpfc_update_rcv_time_stamp - Update vport's rcv seq time stamp
14747 * @vport: The vport to work on.
14748 *
14749 * This function updates the receive sequence time stamp for this vport. The
14750 * receive sequence time stamp indicates the time that the last frame of the
14751 * the sequence that has been idle for the longest amount of time was received.
14752 * the driver uses this time stamp to indicate if any received sequences have
14753 * timed out.
14754 **/
Rashika Kheria5d8b8162014-09-03 12:55:04 -040014755static void
James Smart45ed1192009-10-02 15:17:02 -040014756lpfc_update_rcv_time_stamp(struct lpfc_vport *vport)
14757{
14758 struct lpfc_dmabuf *h_buf;
14759 struct hbq_dmabuf *dmabuf = NULL;
14760
14761 /* get the oldest sequence on the rcv list */
14762 h_buf = list_get_first(&vport->rcv_buffer_list,
14763 struct lpfc_dmabuf, list);
14764 if (!h_buf)
14765 return;
14766 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14767 vport->rcv_buffer_time_stamp = dmabuf->time_stamp;
14768}
14769
14770/**
14771 * lpfc_cleanup_rcv_buffers - Cleans up all outstanding receive sequences.
14772 * @vport: The vport that the received sequences were sent to.
14773 *
14774 * This function cleans up all outstanding received sequences. This is called
14775 * by the driver when a link event or user action invalidates all the received
14776 * sequences.
14777 **/
14778void
14779lpfc_cleanup_rcv_buffers(struct lpfc_vport *vport)
14780{
14781 struct lpfc_dmabuf *h_buf, *hnext;
14782 struct lpfc_dmabuf *d_buf, *dnext;
14783 struct hbq_dmabuf *dmabuf = NULL;
14784
14785 /* start with the oldest sequence on the rcv list */
14786 list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
14787 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14788 list_del_init(&dmabuf->hbuf.list);
14789 list_for_each_entry_safe(d_buf, dnext,
14790 &dmabuf->dbuf.list, list) {
14791 list_del_init(&d_buf->list);
14792 lpfc_in_buf_free(vport->phba, d_buf);
14793 }
14794 lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
14795 }
14796}
14797
14798/**
14799 * lpfc_rcv_seq_check_edtov - Cleans up timed out receive sequences.
14800 * @vport: The vport that the received sequences were sent to.
14801 *
14802 * This function determines whether any received sequences have timed out by
14803 * first checking the vport's rcv_buffer_time_stamp. If this time_stamp
14804 * indicates that there is at least one timed out sequence this routine will
14805 * go through the received sequences one at a time from most inactive to most
14806 * active to determine which ones need to be cleaned up. Once it has determined
14807 * that a sequence needs to be cleaned up it will simply free up the resources
14808 * without sending an abort.
14809 **/
14810void
14811lpfc_rcv_seq_check_edtov(struct lpfc_vport *vport)
14812{
14813 struct lpfc_dmabuf *h_buf, *hnext;
14814 struct lpfc_dmabuf *d_buf, *dnext;
14815 struct hbq_dmabuf *dmabuf = NULL;
14816 unsigned long timeout;
14817 int abort_count = 0;
14818
14819 timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
14820 vport->rcv_buffer_time_stamp);
14821 if (list_empty(&vport->rcv_buffer_list) ||
14822 time_before(jiffies, timeout))
14823 return;
14824 /* start with the oldest sequence on the rcv list */
14825 list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
14826 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14827 timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
14828 dmabuf->time_stamp);
14829 if (time_before(jiffies, timeout))
14830 break;
14831 abort_count++;
14832 list_del_init(&dmabuf->hbuf.list);
14833 list_for_each_entry_safe(d_buf, dnext,
14834 &dmabuf->dbuf.list, list) {
14835 list_del_init(&d_buf->list);
14836 lpfc_in_buf_free(vport->phba, d_buf);
14837 }
14838 lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
14839 }
14840 if (abort_count)
14841 lpfc_update_rcv_time_stamp(vport);
14842}
14843
14844/**
James Smart4f774512009-05-22 14:52:35 -040014845 * lpfc_fc_frame_add - Adds a frame to the vport's list of received sequences
14846 * @dmabuf: pointer to a dmabuf that describes the hdr and data of the FC frame
14847 *
14848 * This function searches through the existing incomplete sequences that have
14849 * been sent to this @vport. If the frame matches one of the incomplete
14850 * sequences then the dbuf in the @dmabuf is added to the list of frames that
14851 * make up that sequence. If no sequence is found that matches this frame then
14852 * the function will add the hbuf in the @dmabuf to the @vport's rcv_buffer_list
14853 * This function returns a pointer to the first dmabuf in the sequence list that
14854 * the frame was linked to.
14855 **/
14856static struct hbq_dmabuf *
14857lpfc_fc_frame_add(struct lpfc_vport *vport, struct hbq_dmabuf *dmabuf)
14858{
14859 struct fc_frame_header *new_hdr;
14860 struct fc_frame_header *temp_hdr;
14861 struct lpfc_dmabuf *d_buf;
14862 struct lpfc_dmabuf *h_buf;
14863 struct hbq_dmabuf *seq_dmabuf = NULL;
14864 struct hbq_dmabuf *temp_dmabuf = NULL;
14865
James Smart4d9ab992009-10-02 15:16:39 -040014866 INIT_LIST_HEAD(&dmabuf->dbuf.list);
James Smart45ed1192009-10-02 15:17:02 -040014867 dmabuf->time_stamp = jiffies;
James Smart4f774512009-05-22 14:52:35 -040014868 new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
14869 /* Use the hdr_buf to find the sequence that this frame belongs to */
14870 list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
14871 temp_hdr = (struct fc_frame_header *)h_buf->virt;
14872 if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
14873 (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
14874 (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
14875 continue;
14876 /* found a pending sequence that matches this frame */
14877 seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14878 break;
14879 }
14880 if (!seq_dmabuf) {
14881 /*
14882 * This indicates first frame received for this sequence.
14883 * Queue the buffer on the vport's rcv_buffer_list.
14884 */
14885 list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
James Smart45ed1192009-10-02 15:17:02 -040014886 lpfc_update_rcv_time_stamp(vport);
James Smart4f774512009-05-22 14:52:35 -040014887 return dmabuf;
14888 }
14889 temp_hdr = seq_dmabuf->hbuf.virt;
James Smarteeead812009-12-21 17:01:23 -050014890 if (be16_to_cpu(new_hdr->fh_seq_cnt) <
14891 be16_to_cpu(temp_hdr->fh_seq_cnt)) {
James Smart4d9ab992009-10-02 15:16:39 -040014892 list_del_init(&seq_dmabuf->hbuf.list);
14893 list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
14894 list_add_tail(&dmabuf->dbuf.list, &seq_dmabuf->dbuf.list);
James Smart45ed1192009-10-02 15:17:02 -040014895 lpfc_update_rcv_time_stamp(vport);
James Smart4f774512009-05-22 14:52:35 -040014896 return dmabuf;
14897 }
James Smart45ed1192009-10-02 15:17:02 -040014898 /* move this sequence to the tail to indicate a young sequence */
14899 list_move_tail(&seq_dmabuf->hbuf.list, &vport->rcv_buffer_list);
14900 seq_dmabuf->time_stamp = jiffies;
14901 lpfc_update_rcv_time_stamp(vport);
James Smarteeead812009-12-21 17:01:23 -050014902 if (list_empty(&seq_dmabuf->dbuf.list)) {
14903 temp_hdr = dmabuf->hbuf.virt;
14904 list_add_tail(&dmabuf->dbuf.list, &seq_dmabuf->dbuf.list);
14905 return seq_dmabuf;
14906 }
James Smart4f774512009-05-22 14:52:35 -040014907 /* find the correct place in the sequence to insert this frame */
14908 list_for_each_entry_reverse(d_buf, &seq_dmabuf->dbuf.list, list) {
14909 temp_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
14910 temp_hdr = (struct fc_frame_header *)temp_dmabuf->hbuf.virt;
14911 /*
14912 * If the frame's sequence count is greater than the frame on
14913 * the list then insert the frame right after this frame
14914 */
James Smarteeead812009-12-21 17:01:23 -050014915 if (be16_to_cpu(new_hdr->fh_seq_cnt) >
14916 be16_to_cpu(temp_hdr->fh_seq_cnt)) {
James Smart4f774512009-05-22 14:52:35 -040014917 list_add(&dmabuf->dbuf.list, &temp_dmabuf->dbuf.list);
14918 return seq_dmabuf;
14919 }
14920 }
14921 return NULL;
14922}
14923
14924/**
James Smart6669f9b2009-10-02 15:16:45 -040014925 * lpfc_sli4_abort_partial_seq - Abort partially assembled unsol sequence
14926 * @vport: pointer to a vitural port
14927 * @dmabuf: pointer to a dmabuf that describes the FC sequence
14928 *
14929 * This function tries to abort from the partially assembed sequence, described
14930 * by the information from basic abbort @dmabuf. It checks to see whether such
14931 * partially assembled sequence held by the driver. If so, it shall free up all
14932 * the frames from the partially assembled sequence.
14933 *
14934 * Return
14935 * true -- if there is matching partially assembled sequence present and all
14936 * the frames freed with the sequence;
14937 * false -- if there is no matching partially assembled sequence present so
14938 * nothing got aborted in the lower layer driver
14939 **/
14940static bool
14941lpfc_sli4_abort_partial_seq(struct lpfc_vport *vport,
14942 struct hbq_dmabuf *dmabuf)
14943{
14944 struct fc_frame_header *new_hdr;
14945 struct fc_frame_header *temp_hdr;
14946 struct lpfc_dmabuf *d_buf, *n_buf, *h_buf;
14947 struct hbq_dmabuf *seq_dmabuf = NULL;
14948
14949 /* Use the hdr_buf to find the sequence that matches this frame */
14950 INIT_LIST_HEAD(&dmabuf->dbuf.list);
14951 INIT_LIST_HEAD(&dmabuf->hbuf.list);
14952 new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
14953 list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
14954 temp_hdr = (struct fc_frame_header *)h_buf->virt;
14955 if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
14956 (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
14957 (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
14958 continue;
14959 /* found a pending sequence that matches this frame */
14960 seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14961 break;
14962 }
14963
14964 /* Free up all the frames from the partially assembled sequence */
14965 if (seq_dmabuf) {
14966 list_for_each_entry_safe(d_buf, n_buf,
14967 &seq_dmabuf->dbuf.list, list) {
14968 list_del_init(&d_buf->list);
14969 lpfc_in_buf_free(vport->phba, d_buf);
14970 }
14971 return true;
14972 }
14973 return false;
14974}
14975
14976/**
James Smart6dd9e312013-01-03 15:43:37 -050014977 * lpfc_sli4_abort_ulp_seq - Abort assembled unsol sequence from ulp
14978 * @vport: pointer to a vitural port
14979 * @dmabuf: pointer to a dmabuf that describes the FC sequence
14980 *
14981 * This function tries to abort from the assembed sequence from upper level
14982 * protocol, described by the information from basic abbort @dmabuf. It
14983 * checks to see whether such pending context exists at upper level protocol.
14984 * If so, it shall clean up the pending context.
14985 *
14986 * Return
14987 * true -- if there is matching pending context of the sequence cleaned
14988 * at ulp;
14989 * false -- if there is no matching pending context of the sequence present
14990 * at ulp.
14991 **/
14992static bool
14993lpfc_sli4_abort_ulp_seq(struct lpfc_vport *vport, struct hbq_dmabuf *dmabuf)
14994{
14995 struct lpfc_hba *phba = vport->phba;
14996 int handled;
14997
14998 /* Accepting abort at ulp with SLI4 only */
14999 if (phba->sli_rev < LPFC_SLI_REV4)
15000 return false;
15001
15002 /* Register all caring upper level protocols to attend abort */
15003 handled = lpfc_ct_handle_unsol_abort(phba, dmabuf);
15004 if (handled)
15005 return true;
15006
15007 return false;
15008}
15009
15010/**
James Smart546fc852011-03-11 16:06:29 -050015011 * lpfc_sli4_seq_abort_rsp_cmpl - BLS ABORT RSP seq abort iocb complete handler
James Smart6669f9b2009-10-02 15:16:45 -040015012 * @phba: Pointer to HBA context object.
15013 * @cmd_iocbq: pointer to the command iocbq structure.
15014 * @rsp_iocbq: pointer to the response iocbq structure.
15015 *
James Smart546fc852011-03-11 16:06:29 -050015016 * This function handles the sequence abort response iocb command complete
James Smart6669f9b2009-10-02 15:16:45 -040015017 * event. It properly releases the memory allocated to the sequence abort
15018 * accept iocb.
15019 **/
15020static void
James Smart546fc852011-03-11 16:06:29 -050015021lpfc_sli4_seq_abort_rsp_cmpl(struct lpfc_hba *phba,
James Smart6669f9b2009-10-02 15:16:45 -040015022 struct lpfc_iocbq *cmd_iocbq,
15023 struct lpfc_iocbq *rsp_iocbq)
15024{
James Smart6dd9e312013-01-03 15:43:37 -050015025 struct lpfc_nodelist *ndlp;
15026
15027 if (cmd_iocbq) {
15028 ndlp = (struct lpfc_nodelist *)cmd_iocbq->context1;
15029 lpfc_nlp_put(ndlp);
15030 lpfc_nlp_not_used(ndlp);
James Smart6669f9b2009-10-02 15:16:45 -040015031 lpfc_sli_release_iocbq(phba, cmd_iocbq);
James Smart6dd9e312013-01-03 15:43:37 -050015032 }
James Smart6b5151f2012-01-18 16:24:06 -050015033
15034 /* Failure means BLS ABORT RSP did not get delivered to remote node*/
15035 if (rsp_iocbq && rsp_iocbq->iocb.ulpStatus)
15036 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15037 "3154 BLS ABORT RSP failed, data: x%x/x%x\n",
15038 rsp_iocbq->iocb.ulpStatus,
15039 rsp_iocbq->iocb.un.ulpWord[4]);
James Smart6669f9b2009-10-02 15:16:45 -040015040}
15041
15042/**
James Smart6d368e52011-05-24 11:44:12 -040015043 * lpfc_sli4_xri_inrange - check xri is in range of xris owned by driver.
15044 * @phba: Pointer to HBA context object.
15045 * @xri: xri id in transaction.
15046 *
15047 * This function validates the xri maps to the known range of XRIs allocated an
15048 * used by the driver.
15049 **/
James Smart7851fe22011-07-22 18:36:52 -040015050uint16_t
James Smart6d368e52011-05-24 11:44:12 -040015051lpfc_sli4_xri_inrange(struct lpfc_hba *phba,
15052 uint16_t xri)
15053{
James Smarta2fc4aef2014-09-03 12:57:55 -040015054 uint16_t i;
James Smart6d368e52011-05-24 11:44:12 -040015055
15056 for (i = 0; i < phba->sli4_hba.max_cfg_param.max_xri; i++) {
15057 if (xri == phba->sli4_hba.xri_ids[i])
15058 return i;
15059 }
15060 return NO_XRI;
15061}
15062
James Smart6d368e52011-05-24 11:44:12 -040015063/**
James Smart546fc852011-03-11 16:06:29 -050015064 * lpfc_sli4_seq_abort_rsp - bls rsp to sequence abort
James Smart6669f9b2009-10-02 15:16:45 -040015065 * @phba: Pointer to HBA context object.
15066 * @fc_hdr: pointer to a FC frame header.
15067 *
James Smart546fc852011-03-11 16:06:29 -050015068 * This function sends a basic response to a previous unsol sequence abort
James Smart6669f9b2009-10-02 15:16:45 -040015069 * event after aborting the sequence handling.
15070 **/
15071static void
James Smart6dd9e312013-01-03 15:43:37 -050015072lpfc_sli4_seq_abort_rsp(struct lpfc_vport *vport,
15073 struct fc_frame_header *fc_hdr, bool aborted)
James Smart6669f9b2009-10-02 15:16:45 -040015074{
James Smart6dd9e312013-01-03 15:43:37 -050015075 struct lpfc_hba *phba = vport->phba;
James Smart6669f9b2009-10-02 15:16:45 -040015076 struct lpfc_iocbq *ctiocb = NULL;
15077 struct lpfc_nodelist *ndlp;
James Smartee0f4fe2012-05-09 21:19:14 -040015078 uint16_t oxid, rxid, xri, lxri;
James Smart5ffc2662009-11-18 15:39:44 -050015079 uint32_t sid, fctl;
James Smart6669f9b2009-10-02 15:16:45 -040015080 IOCB_t *icmd;
James Smart546fc852011-03-11 16:06:29 -050015081 int rc;
James Smart6669f9b2009-10-02 15:16:45 -040015082
15083 if (!lpfc_is_link_up(phba))
15084 return;
15085
15086 sid = sli4_sid_from_fc_hdr(fc_hdr);
15087 oxid = be16_to_cpu(fc_hdr->fh_ox_id);
James Smart5ffc2662009-11-18 15:39:44 -050015088 rxid = be16_to_cpu(fc_hdr->fh_rx_id);
James Smart6669f9b2009-10-02 15:16:45 -040015089
James Smart6dd9e312013-01-03 15:43:37 -050015090 ndlp = lpfc_findnode_did(vport, sid);
James Smart6669f9b2009-10-02 15:16:45 -040015091 if (!ndlp) {
James Smart6dd9e312013-01-03 15:43:37 -050015092 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
15093 if (!ndlp) {
15094 lpfc_printf_vlog(vport, KERN_WARNING, LOG_ELS,
15095 "1268 Failed to allocate ndlp for "
15096 "oxid:x%x SID:x%x\n", oxid, sid);
15097 return;
15098 }
15099 lpfc_nlp_init(vport, ndlp, sid);
15100 /* Put ndlp onto pport node list */
15101 lpfc_enqueue_node(vport, ndlp);
15102 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
15103 /* re-setup ndlp without removing from node list */
15104 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
15105 if (!ndlp) {
15106 lpfc_printf_vlog(vport, KERN_WARNING, LOG_ELS,
15107 "3275 Failed to active ndlp found "
15108 "for oxid:x%x SID:x%x\n", oxid, sid);
15109 return;
15110 }
James Smart6669f9b2009-10-02 15:16:45 -040015111 }
15112
James Smart546fc852011-03-11 16:06:29 -050015113 /* Allocate buffer for rsp iocb */
James Smart6669f9b2009-10-02 15:16:45 -040015114 ctiocb = lpfc_sli_get_iocbq(phba);
15115 if (!ctiocb)
15116 return;
15117
James Smart5ffc2662009-11-18 15:39:44 -050015118 /* Extract the F_CTL field from FC_HDR */
15119 fctl = sli4_fctl_from_fc_hdr(fc_hdr);
15120
James Smart6669f9b2009-10-02 15:16:45 -040015121 icmd = &ctiocb->iocb;
James Smart6669f9b2009-10-02 15:16:45 -040015122 icmd->un.xseq64.bdl.bdeSize = 0;
James Smart5ffc2662009-11-18 15:39:44 -050015123 icmd->un.xseq64.bdl.ulpIoTag32 = 0;
James Smart6669f9b2009-10-02 15:16:45 -040015124 icmd->un.xseq64.w5.hcsw.Dfctl = 0;
15125 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_ACC;
15126 icmd->un.xseq64.w5.hcsw.Type = FC_TYPE_BLS;
15127
15128 /* Fill in the rest of iocb fields */
15129 icmd->ulpCommand = CMD_XMIT_BLS_RSP64_CX;
15130 icmd->ulpBdeCount = 0;
15131 icmd->ulpLe = 1;
15132 icmd->ulpClass = CLASS3;
James Smart6d368e52011-05-24 11:44:12 -040015133 icmd->ulpContext = phba->sli4_hba.rpi_ids[ndlp->nlp_rpi];
James Smart6dd9e312013-01-03 15:43:37 -050015134 ctiocb->context1 = lpfc_nlp_get(ndlp);
James Smart6669f9b2009-10-02 15:16:45 -040015135
James Smart6669f9b2009-10-02 15:16:45 -040015136 ctiocb->iocb_cmpl = NULL;
15137 ctiocb->vport = phba->pport;
James Smart546fc852011-03-11 16:06:29 -050015138 ctiocb->iocb_cmpl = lpfc_sli4_seq_abort_rsp_cmpl;
James Smart6d368e52011-05-24 11:44:12 -040015139 ctiocb->sli4_lxritag = NO_XRI;
James Smart546fc852011-03-11 16:06:29 -050015140 ctiocb->sli4_xritag = NO_XRI;
15141
James Smartee0f4fe2012-05-09 21:19:14 -040015142 if (fctl & FC_FC_EX_CTX)
15143 /* Exchange responder sent the abort so we
15144 * own the oxid.
15145 */
15146 xri = oxid;
15147 else
15148 xri = rxid;
15149 lxri = lpfc_sli4_xri_inrange(phba, xri);
15150 if (lxri != NO_XRI)
15151 lpfc_set_rrq_active(phba, ndlp, lxri,
15152 (xri == oxid) ? rxid : oxid, 0);
James Smart6dd9e312013-01-03 15:43:37 -050015153 /* For BA_ABTS from exchange responder, if the logical xri with
15154 * the oxid maps to the FCP XRI range, the port no longer has
15155 * that exchange context, send a BLS_RJT. Override the IOCB for
15156 * a BA_RJT.
James Smart546fc852011-03-11 16:06:29 -050015157 */
James Smart6dd9e312013-01-03 15:43:37 -050015158 if ((fctl & FC_FC_EX_CTX) &&
15159 (lxri > lpfc_sli4_get_els_iocb_cnt(phba))) {
15160 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_RJT;
15161 bf_set(lpfc_vndr_code, &icmd->un.bls_rsp, 0);
15162 bf_set(lpfc_rsn_expln, &icmd->un.bls_rsp, FC_BA_RJT_INV_XID);
15163 bf_set(lpfc_rsn_code, &icmd->un.bls_rsp, FC_BA_RJT_UNABLE);
15164 }
15165
15166 /* If BA_ABTS failed to abort a partially assembled receive sequence,
15167 * the driver no longer has that exchange, send a BLS_RJT. Override
15168 * the IOCB for a BA_RJT.
15169 */
15170 if (aborted == false) {
James Smart546fc852011-03-11 16:06:29 -050015171 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_RJT;
15172 bf_set(lpfc_vndr_code, &icmd->un.bls_rsp, 0);
15173 bf_set(lpfc_rsn_expln, &icmd->un.bls_rsp, FC_BA_RJT_INV_XID);
15174 bf_set(lpfc_rsn_code, &icmd->un.bls_rsp, FC_BA_RJT_UNABLE);
15175 }
James Smart6669f9b2009-10-02 15:16:45 -040015176
James Smart5ffc2662009-11-18 15:39:44 -050015177 if (fctl & FC_FC_EX_CTX) {
15178 /* ABTS sent by responder to CT exchange, construction
15179 * of BA_ACC will use OX_ID from ABTS for the XRI_TAG
15180 * field and RX_ID from ABTS for RX_ID field.
15181 */
James Smart546fc852011-03-11 16:06:29 -050015182 bf_set(lpfc_abts_orig, &icmd->un.bls_rsp, LPFC_ABTS_UNSOL_RSP);
James Smart5ffc2662009-11-18 15:39:44 -050015183 } else {
15184 /* ABTS sent by initiator to CT exchange, construction
15185 * of BA_ACC will need to allocate a new XRI as for the
James Smartf09c3ac2012-03-01 22:33:29 -050015186 * XRI_TAG field.
James Smart5ffc2662009-11-18 15:39:44 -050015187 */
James Smart546fc852011-03-11 16:06:29 -050015188 bf_set(lpfc_abts_orig, &icmd->un.bls_rsp, LPFC_ABTS_UNSOL_INT);
James Smart5ffc2662009-11-18 15:39:44 -050015189 }
James Smartf09c3ac2012-03-01 22:33:29 -050015190 bf_set(lpfc_abts_rxid, &icmd->un.bls_rsp, rxid);
James Smart546fc852011-03-11 16:06:29 -050015191 bf_set(lpfc_abts_oxid, &icmd->un.bls_rsp, oxid);
James Smart5ffc2662009-11-18 15:39:44 -050015192
James Smart546fc852011-03-11 16:06:29 -050015193 /* Xmit CT abts response on exchange <xid> */
James Smart6dd9e312013-01-03 15:43:37 -050015194 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
15195 "1200 Send BLS cmd x%x on oxid x%x Data: x%x\n",
15196 icmd->un.xseq64.w5.hcsw.Rctl, oxid, phba->link_state);
James Smart546fc852011-03-11 16:06:29 -050015197
15198 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, ctiocb, 0);
15199 if (rc == IOCB_ERROR) {
James Smart6dd9e312013-01-03 15:43:37 -050015200 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
15201 "2925 Failed to issue CT ABTS RSP x%x on "
15202 "xri x%x, Data x%x\n",
15203 icmd->un.xseq64.w5.hcsw.Rctl, oxid,
15204 phba->link_state);
15205 lpfc_nlp_put(ndlp);
15206 ctiocb->context1 = NULL;
James Smart546fc852011-03-11 16:06:29 -050015207 lpfc_sli_release_iocbq(phba, ctiocb);
15208 }
James Smart6669f9b2009-10-02 15:16:45 -040015209}
15210
15211/**
15212 * lpfc_sli4_handle_unsol_abort - Handle sli-4 unsolicited abort event
15213 * @vport: Pointer to the vport on which this sequence was received
15214 * @dmabuf: pointer to a dmabuf that describes the FC sequence
15215 *
15216 * This function handles an SLI-4 unsolicited abort event. If the unsolicited
15217 * receive sequence is only partially assembed by the driver, it shall abort
15218 * the partially assembled frames for the sequence. Otherwise, if the
15219 * unsolicited receive sequence has been completely assembled and passed to
15220 * the Upper Layer Protocol (UPL), it then mark the per oxid status for the
15221 * unsolicited sequence has been aborted. After that, it will issue a basic
15222 * accept to accept the abort.
15223 **/
Rashika Kheria5d8b8162014-09-03 12:55:04 -040015224static void
James Smart6669f9b2009-10-02 15:16:45 -040015225lpfc_sli4_handle_unsol_abort(struct lpfc_vport *vport,
15226 struct hbq_dmabuf *dmabuf)
15227{
15228 struct lpfc_hba *phba = vport->phba;
15229 struct fc_frame_header fc_hdr;
James Smart5ffc2662009-11-18 15:39:44 -050015230 uint32_t fctl;
James Smart6dd9e312013-01-03 15:43:37 -050015231 bool aborted;
James Smart6669f9b2009-10-02 15:16:45 -040015232
James Smart6669f9b2009-10-02 15:16:45 -040015233 /* Make a copy of fc_hdr before the dmabuf being released */
15234 memcpy(&fc_hdr, dmabuf->hbuf.virt, sizeof(struct fc_frame_header));
James Smart5ffc2662009-11-18 15:39:44 -050015235 fctl = sli4_fctl_from_fc_hdr(&fc_hdr);
James Smart6669f9b2009-10-02 15:16:45 -040015236
James Smart5ffc2662009-11-18 15:39:44 -050015237 if (fctl & FC_FC_EX_CTX) {
James Smart6dd9e312013-01-03 15:43:37 -050015238 /* ABTS by responder to exchange, no cleanup needed */
15239 aborted = true;
James Smart5ffc2662009-11-18 15:39:44 -050015240 } else {
James Smart6dd9e312013-01-03 15:43:37 -050015241 /* ABTS by initiator to exchange, need to do cleanup */
15242 aborted = lpfc_sli4_abort_partial_seq(vport, dmabuf);
15243 if (aborted == false)
15244 aborted = lpfc_sli4_abort_ulp_seq(vport, dmabuf);
James Smart5ffc2662009-11-18 15:39:44 -050015245 }
James Smart6dd9e312013-01-03 15:43:37 -050015246 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15247
15248 /* Respond with BA_ACC or BA_RJT accordingly */
15249 lpfc_sli4_seq_abort_rsp(vport, &fc_hdr, aborted);
James Smart6669f9b2009-10-02 15:16:45 -040015250}
15251
15252/**
James Smart4f774512009-05-22 14:52:35 -040015253 * lpfc_seq_complete - Indicates if a sequence is complete
15254 * @dmabuf: pointer to a dmabuf that describes the FC sequence
15255 *
15256 * This function checks the sequence, starting with the frame described by
15257 * @dmabuf, to see if all the frames associated with this sequence are present.
15258 * the frames associated with this sequence are linked to the @dmabuf using the
15259 * dbuf list. This function looks for two major things. 1) That the first frame
15260 * has a sequence count of zero. 2) There is a frame with last frame of sequence
15261 * set. 3) That there are no holes in the sequence count. The function will
15262 * return 1 when the sequence is complete, otherwise it will return 0.
15263 **/
15264static int
15265lpfc_seq_complete(struct hbq_dmabuf *dmabuf)
15266{
15267 struct fc_frame_header *hdr;
15268 struct lpfc_dmabuf *d_buf;
15269 struct hbq_dmabuf *seq_dmabuf;
15270 uint32_t fctl;
15271 int seq_count = 0;
15272
15273 hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
15274 /* make sure first fame of sequence has a sequence count of zero */
15275 if (hdr->fh_seq_cnt != seq_count)
15276 return 0;
15277 fctl = (hdr->fh_f_ctl[0] << 16 |
15278 hdr->fh_f_ctl[1] << 8 |
15279 hdr->fh_f_ctl[2]);
15280 /* If last frame of sequence we can return success. */
15281 if (fctl & FC_FC_END_SEQ)
15282 return 1;
15283 list_for_each_entry(d_buf, &dmabuf->dbuf.list, list) {
15284 seq_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
15285 hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
15286 /* If there is a hole in the sequence count then fail. */
James Smarteeead812009-12-21 17:01:23 -050015287 if (++seq_count != be16_to_cpu(hdr->fh_seq_cnt))
James Smart4f774512009-05-22 14:52:35 -040015288 return 0;
15289 fctl = (hdr->fh_f_ctl[0] << 16 |
15290 hdr->fh_f_ctl[1] << 8 |
15291 hdr->fh_f_ctl[2]);
15292 /* If last frame of sequence we can return success. */
15293 if (fctl & FC_FC_END_SEQ)
15294 return 1;
15295 }
15296 return 0;
15297}
15298
15299/**
15300 * lpfc_prep_seq - Prep sequence for ULP processing
15301 * @vport: Pointer to the vport on which this sequence was received
15302 * @dmabuf: pointer to a dmabuf that describes the FC sequence
15303 *
15304 * This function takes a sequence, described by a list of frames, and creates
15305 * a list of iocbq structures to describe the sequence. This iocbq list will be
15306 * used to issue to the generic unsolicited sequence handler. This routine
15307 * returns a pointer to the first iocbq in the list. If the function is unable
15308 * to allocate an iocbq then it throw out the received frames that were not
15309 * able to be described and return a pointer to the first iocbq. If unable to
15310 * allocate any iocbqs (including the first) this function will return NULL.
15311 **/
15312static struct lpfc_iocbq *
15313lpfc_prep_seq(struct lpfc_vport *vport, struct hbq_dmabuf *seq_dmabuf)
15314{
James Smart7851fe22011-07-22 18:36:52 -040015315 struct hbq_dmabuf *hbq_buf;
James Smart4f774512009-05-22 14:52:35 -040015316 struct lpfc_dmabuf *d_buf, *n_buf;
15317 struct lpfc_iocbq *first_iocbq, *iocbq;
15318 struct fc_frame_header *fc_hdr;
15319 uint32_t sid;
James Smart7851fe22011-07-22 18:36:52 -040015320 uint32_t len, tot_len;
James Smarteeead812009-12-21 17:01:23 -050015321 struct ulp_bde64 *pbde;
James Smart4f774512009-05-22 14:52:35 -040015322
15323 fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
15324 /* remove from receive buffer list */
15325 list_del_init(&seq_dmabuf->hbuf.list);
James Smart45ed1192009-10-02 15:17:02 -040015326 lpfc_update_rcv_time_stamp(vport);
James Smart4f774512009-05-22 14:52:35 -040015327 /* get the Remote Port's SID */
James Smart6669f9b2009-10-02 15:16:45 -040015328 sid = sli4_sid_from_fc_hdr(fc_hdr);
James Smart7851fe22011-07-22 18:36:52 -040015329 tot_len = 0;
James Smart4f774512009-05-22 14:52:35 -040015330 /* Get an iocbq struct to fill in. */
15331 first_iocbq = lpfc_sli_get_iocbq(vport->phba);
15332 if (first_iocbq) {
15333 /* Initialize the first IOCB. */
James Smart8fa38512009-07-19 10:01:03 -040015334 first_iocbq->iocb.unsli3.rcvsli3.acc_len = 0;
James Smart4f774512009-05-22 14:52:35 -040015335 first_iocbq->iocb.ulpStatus = IOSTAT_SUCCESS;
James Smart939723a2012-05-09 21:19:03 -040015336
15337 /* Check FC Header to see what TYPE of frame we are rcv'ing */
15338 if (sli4_type_from_fc_hdr(fc_hdr) == FC_TYPE_ELS) {
15339 first_iocbq->iocb.ulpCommand = CMD_IOCB_RCV_ELS64_CX;
15340 first_iocbq->iocb.un.rcvels.parmRo =
15341 sli4_did_from_fc_hdr(fc_hdr);
15342 first_iocbq->iocb.ulpPU = PARM_NPIV_DID;
15343 } else
15344 first_iocbq->iocb.ulpCommand = CMD_IOCB_RCV_SEQ64_CX;
James Smart7851fe22011-07-22 18:36:52 -040015345 first_iocbq->iocb.ulpContext = NO_XRI;
15346 first_iocbq->iocb.unsli3.rcvsli3.ox_id =
15347 be16_to_cpu(fc_hdr->fh_ox_id);
15348 /* iocbq is prepped for internal consumption. Physical vpi. */
15349 first_iocbq->iocb.unsli3.rcvsli3.vpi =
15350 vport->phba->vpi_ids[vport->vpi];
James Smart4f774512009-05-22 14:52:35 -040015351 /* put the first buffer into the first IOCBq */
James Smart48a5a662013-07-15 18:32:28 -040015352 tot_len = bf_get(lpfc_rcqe_length,
15353 &seq_dmabuf->cq_event.cqe.rcqe_cmpl);
15354
James Smart4f774512009-05-22 14:52:35 -040015355 first_iocbq->context2 = &seq_dmabuf->dbuf;
15356 first_iocbq->context3 = NULL;
15357 first_iocbq->iocb.ulpBdeCount = 1;
James Smart48a5a662013-07-15 18:32:28 -040015358 if (tot_len > LPFC_DATA_BUF_SIZE)
15359 first_iocbq->iocb.un.cont64[0].tus.f.bdeSize =
James Smart4f774512009-05-22 14:52:35 -040015360 LPFC_DATA_BUF_SIZE;
James Smart48a5a662013-07-15 18:32:28 -040015361 else
15362 first_iocbq->iocb.un.cont64[0].tus.f.bdeSize = tot_len;
15363
James Smart4f774512009-05-22 14:52:35 -040015364 first_iocbq->iocb.un.rcvels.remoteID = sid;
James Smart48a5a662013-07-15 18:32:28 -040015365
James Smart7851fe22011-07-22 18:36:52 -040015366 first_iocbq->iocb.unsli3.rcvsli3.acc_len = tot_len;
James Smart4f774512009-05-22 14:52:35 -040015367 }
15368 iocbq = first_iocbq;
15369 /*
15370 * Each IOCBq can have two Buffers assigned, so go through the list
15371 * of buffers for this sequence and save two buffers in each IOCBq
15372 */
15373 list_for_each_entry_safe(d_buf, n_buf, &seq_dmabuf->dbuf.list, list) {
15374 if (!iocbq) {
15375 lpfc_in_buf_free(vport->phba, d_buf);
15376 continue;
15377 }
15378 if (!iocbq->context3) {
15379 iocbq->context3 = d_buf;
15380 iocbq->iocb.ulpBdeCount++;
James Smart7851fe22011-07-22 18:36:52 -040015381 /* We need to get the size out of the right CQE */
15382 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
15383 len = bf_get(lpfc_rcqe_length,
15384 &hbq_buf->cq_event.cqe.rcqe_cmpl);
James Smart48a5a662013-07-15 18:32:28 -040015385 pbde = (struct ulp_bde64 *)
15386 &iocbq->iocb.unsli3.sli3Words[4];
15387 if (len > LPFC_DATA_BUF_SIZE)
15388 pbde->tus.f.bdeSize = LPFC_DATA_BUF_SIZE;
15389 else
15390 pbde->tus.f.bdeSize = len;
15391
James Smart7851fe22011-07-22 18:36:52 -040015392 iocbq->iocb.unsli3.rcvsli3.acc_len += len;
15393 tot_len += len;
James Smart4f774512009-05-22 14:52:35 -040015394 } else {
15395 iocbq = lpfc_sli_get_iocbq(vport->phba);
15396 if (!iocbq) {
15397 if (first_iocbq) {
15398 first_iocbq->iocb.ulpStatus =
15399 IOSTAT_FCP_RSP_ERROR;
15400 first_iocbq->iocb.un.ulpWord[4] =
15401 IOERR_NO_RESOURCES;
15402 }
15403 lpfc_in_buf_free(vport->phba, d_buf);
15404 continue;
15405 }
James Smart7851fe22011-07-22 18:36:52 -040015406 /* We need to get the size out of the right CQE */
15407 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
15408 len = bf_get(lpfc_rcqe_length,
15409 &hbq_buf->cq_event.cqe.rcqe_cmpl);
James Smart48a5a662013-07-15 18:32:28 -040015410 iocbq->context2 = d_buf;
15411 iocbq->context3 = NULL;
15412 iocbq->iocb.ulpBdeCount = 1;
15413 if (len > LPFC_DATA_BUF_SIZE)
15414 iocbq->iocb.un.cont64[0].tus.f.bdeSize =
15415 LPFC_DATA_BUF_SIZE;
15416 else
15417 iocbq->iocb.un.cont64[0].tus.f.bdeSize = len;
15418
James Smart7851fe22011-07-22 18:36:52 -040015419 tot_len += len;
15420 iocbq->iocb.unsli3.rcvsli3.acc_len = tot_len;
15421
James Smart4f774512009-05-22 14:52:35 -040015422 iocbq->iocb.un.rcvels.remoteID = sid;
15423 list_add_tail(&iocbq->list, &first_iocbq->list);
15424 }
15425 }
15426 return first_iocbq;
15427}
15428
James Smart6669f9b2009-10-02 15:16:45 -040015429static void
15430lpfc_sli4_send_seq_to_ulp(struct lpfc_vport *vport,
15431 struct hbq_dmabuf *seq_dmabuf)
15432{
15433 struct fc_frame_header *fc_hdr;
15434 struct lpfc_iocbq *iocbq, *curr_iocb, *next_iocb;
15435 struct lpfc_hba *phba = vport->phba;
15436
15437 fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
15438 iocbq = lpfc_prep_seq(vport, seq_dmabuf);
15439 if (!iocbq) {
15440 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15441 "2707 Ring %d handler: Failed to allocate "
15442 "iocb Rctl x%x Type x%x received\n",
15443 LPFC_ELS_RING,
15444 fc_hdr->fh_r_ctl, fc_hdr->fh_type);
15445 return;
15446 }
15447 if (!lpfc_complete_unsol_iocb(phba,
15448 &phba->sli.ring[LPFC_ELS_RING],
15449 iocbq, fc_hdr->fh_r_ctl,
15450 fc_hdr->fh_type))
James Smart6d368e52011-05-24 11:44:12 -040015451 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart6669f9b2009-10-02 15:16:45 -040015452 "2540 Ring %d handler: unexpected Rctl "
15453 "x%x Type x%x received\n",
15454 LPFC_ELS_RING,
15455 fc_hdr->fh_r_ctl, fc_hdr->fh_type);
15456
15457 /* Free iocb created in lpfc_prep_seq */
15458 list_for_each_entry_safe(curr_iocb, next_iocb,
15459 &iocbq->list, list) {
15460 list_del_init(&curr_iocb->list);
15461 lpfc_sli_release_iocbq(phba, curr_iocb);
15462 }
15463 lpfc_sli_release_iocbq(phba, iocbq);
15464}
15465
James Smart4f774512009-05-22 14:52:35 -040015466/**
15467 * lpfc_sli4_handle_received_buffer - Handle received buffers from firmware
15468 * @phba: Pointer to HBA context object.
15469 *
15470 * This function is called with no lock held. This function processes all
15471 * the received buffers and gives it to upper layers when a received buffer
15472 * indicates that it is the final frame in the sequence. The interrupt
15473 * service routine processes received buffers at interrupt contexts and adds
15474 * received dma buffers to the rb_pend_list queue and signals the worker thread.
15475 * Worker thread calls lpfc_sli4_handle_received_buffer, which will call the
15476 * appropriate receive function when the final frame in a sequence is received.
15477 **/
James Smart4d9ab992009-10-02 15:16:39 -040015478void
15479lpfc_sli4_handle_received_buffer(struct lpfc_hba *phba,
15480 struct hbq_dmabuf *dmabuf)
James Smart4f774512009-05-22 14:52:35 -040015481{
James Smart4d9ab992009-10-02 15:16:39 -040015482 struct hbq_dmabuf *seq_dmabuf;
James Smart4f774512009-05-22 14:52:35 -040015483 struct fc_frame_header *fc_hdr;
15484 struct lpfc_vport *vport;
15485 uint32_t fcfi;
James Smart939723a2012-05-09 21:19:03 -040015486 uint32_t did;
James Smart4f774512009-05-22 14:52:35 -040015487
James Smart4f774512009-05-22 14:52:35 -040015488 /* Process each received buffer */
James Smart4d9ab992009-10-02 15:16:39 -040015489 fc_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
15490 /* check to see if this a valid type of frame */
15491 if (lpfc_fc_frame_check(phba, fc_hdr)) {
15492 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15493 return;
15494 }
James Smart7851fe22011-07-22 18:36:52 -040015495 if ((bf_get(lpfc_cqe_code,
15496 &dmabuf->cq_event.cqe.rcqe_cmpl) == CQE_CODE_RECEIVE_V1))
15497 fcfi = bf_get(lpfc_rcqe_fcf_id_v1,
15498 &dmabuf->cq_event.cqe.rcqe_cmpl);
15499 else
15500 fcfi = bf_get(lpfc_rcqe_fcf_id,
15501 &dmabuf->cq_event.cqe.rcqe_cmpl);
James Smart939723a2012-05-09 21:19:03 -040015502
James Smart4d9ab992009-10-02 15:16:39 -040015503 vport = lpfc_fc_frame_to_vport(phba, fc_hdr, fcfi);
James Smart939723a2012-05-09 21:19:03 -040015504 if (!vport) {
James Smart4d9ab992009-10-02 15:16:39 -040015505 /* throw out the frame */
15506 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15507 return;
15508 }
James Smart939723a2012-05-09 21:19:03 -040015509
15510 /* d_id this frame is directed to */
15511 did = sli4_did_from_fc_hdr(fc_hdr);
15512
15513 /* vport is registered unless we rcv a FLOGI directed to Fabric_DID */
15514 if (!(vport->vpi_state & LPFC_VPI_REGISTERED) &&
15515 (did != Fabric_DID)) {
15516 /*
15517 * Throw out the frame if we are not pt2pt.
15518 * The pt2pt protocol allows for discovery frames
15519 * to be received without a registered VPI.
15520 */
15521 if (!(vport->fc_flag & FC_PT2PT) ||
15522 (phba->link_state == LPFC_HBA_READY)) {
15523 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15524 return;
15525 }
15526 }
15527
James Smart6669f9b2009-10-02 15:16:45 -040015528 /* Handle the basic abort sequence (BA_ABTS) event */
15529 if (fc_hdr->fh_r_ctl == FC_RCTL_BA_ABTS) {
15530 lpfc_sli4_handle_unsol_abort(vport, dmabuf);
15531 return;
15532 }
15533
James Smart4d9ab992009-10-02 15:16:39 -040015534 /* Link this frame */
15535 seq_dmabuf = lpfc_fc_frame_add(vport, dmabuf);
15536 if (!seq_dmabuf) {
15537 /* unable to add frame to vport - throw it out */
15538 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15539 return;
15540 }
15541 /* If not last frame in sequence continue processing frames. */
James Smartdef9c7a2009-12-21 17:02:28 -050015542 if (!lpfc_seq_complete(seq_dmabuf))
James Smart4d9ab992009-10-02 15:16:39 -040015543 return;
James Smartdef9c7a2009-12-21 17:02:28 -050015544
James Smart6669f9b2009-10-02 15:16:45 -040015545 /* Send the complete sequence to the upper layer protocol */
15546 lpfc_sli4_send_seq_to_ulp(vport, seq_dmabuf);
James Smart4f774512009-05-22 14:52:35 -040015547}
James Smart6fb120a2009-05-22 14:52:59 -040015548
15549/**
15550 * lpfc_sli4_post_all_rpi_hdrs - Post the rpi header memory region to the port
15551 * @phba: pointer to lpfc hba data structure.
15552 *
15553 * This routine is invoked to post rpi header templates to the
15554 * HBA consistent with the SLI-4 interface spec. This routine
James Smart49198b32010-04-06 15:04:33 -040015555 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
15556 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
James Smart6fb120a2009-05-22 14:52:59 -040015557 *
15558 * This routine does not require any locks. It's usage is expected
15559 * to be driver load or reset recovery when the driver is
15560 * sequential.
15561 *
15562 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020015563 * 0 - successful
James Smartd439d282010-09-29 11:18:45 -040015564 * -EIO - The mailbox failed to complete successfully.
James Smart6fb120a2009-05-22 14:52:59 -040015565 * When this error occurs, the driver is not guaranteed
15566 * to have any rpi regions posted to the device and
15567 * must either attempt to repost the regions or take a
15568 * fatal error.
15569 **/
15570int
15571lpfc_sli4_post_all_rpi_hdrs(struct lpfc_hba *phba)
15572{
15573 struct lpfc_rpi_hdr *rpi_page;
15574 uint32_t rc = 0;
James Smart6d368e52011-05-24 11:44:12 -040015575 uint16_t lrpi = 0;
James Smart6fb120a2009-05-22 14:52:59 -040015576
James Smart6d368e52011-05-24 11:44:12 -040015577 /* SLI4 ports that support extents do not require RPI headers. */
15578 if (!phba->sli4_hba.rpi_hdrs_in_use)
15579 goto exit;
15580 if (phba->sli4_hba.extents_in_use)
15581 return -EIO;
15582
James Smart6fb120a2009-05-22 14:52:59 -040015583 list_for_each_entry(rpi_page, &phba->sli4_hba.lpfc_rpi_hdr_list, list) {
James Smart6d368e52011-05-24 11:44:12 -040015584 /*
15585 * Assign the rpi headers a physical rpi only if the driver
15586 * has not initialized those resources. A port reset only
15587 * needs the headers posted.
15588 */
15589 if (bf_get(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags) !=
15590 LPFC_RPI_RSRC_RDY)
15591 rpi_page->start_rpi = phba->sli4_hba.rpi_ids[lrpi];
15592
James Smart6fb120a2009-05-22 14:52:59 -040015593 rc = lpfc_sli4_post_rpi_hdr(phba, rpi_page);
15594 if (rc != MBX_SUCCESS) {
15595 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15596 "2008 Error %d posting all rpi "
15597 "headers\n", rc);
15598 rc = -EIO;
15599 break;
15600 }
15601 }
15602
James Smart6d368e52011-05-24 11:44:12 -040015603 exit:
15604 bf_set(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags,
15605 LPFC_RPI_RSRC_RDY);
James Smart6fb120a2009-05-22 14:52:59 -040015606 return rc;
15607}
15608
15609/**
15610 * lpfc_sli4_post_rpi_hdr - Post an rpi header memory region to the port
15611 * @phba: pointer to lpfc hba data structure.
15612 * @rpi_page: pointer to the rpi memory region.
15613 *
15614 * This routine is invoked to post a single rpi header to the
15615 * HBA consistent with the SLI-4 interface spec. This memory region
15616 * maps up to 64 rpi context regions.
15617 *
15618 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020015619 * 0 - successful
James Smartd439d282010-09-29 11:18:45 -040015620 * -ENOMEM - No available memory
15621 * -EIO - The mailbox failed to complete successfully.
James Smart6fb120a2009-05-22 14:52:59 -040015622 **/
15623int
15624lpfc_sli4_post_rpi_hdr(struct lpfc_hba *phba, struct lpfc_rpi_hdr *rpi_page)
15625{
15626 LPFC_MBOXQ_t *mboxq;
15627 struct lpfc_mbx_post_hdr_tmpl *hdr_tmpl;
15628 uint32_t rc = 0;
James Smart6fb120a2009-05-22 14:52:59 -040015629 uint32_t shdr_status, shdr_add_status;
15630 union lpfc_sli4_cfg_shdr *shdr;
15631
James Smart6d368e52011-05-24 11:44:12 -040015632 /* SLI4 ports that support extents do not require RPI headers. */
15633 if (!phba->sli4_hba.rpi_hdrs_in_use)
15634 return rc;
15635 if (phba->sli4_hba.extents_in_use)
15636 return -EIO;
15637
James Smart6fb120a2009-05-22 14:52:59 -040015638 /* The port is notified of the header region via a mailbox command. */
15639 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15640 if (!mboxq) {
15641 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15642 "2001 Unable to allocate memory for issuing "
15643 "SLI_CONFIG_SPECIAL mailbox command\n");
15644 return -ENOMEM;
15645 }
15646
15647 /* Post all rpi memory regions to the port. */
15648 hdr_tmpl = &mboxq->u.mqe.un.hdr_tmpl;
James Smart6fb120a2009-05-22 14:52:59 -040015649 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
15650 LPFC_MBOX_OPCODE_FCOE_POST_HDR_TEMPLATE,
15651 sizeof(struct lpfc_mbx_post_hdr_tmpl) -
James Smartfedd3b72011-02-16 12:39:24 -050015652 sizeof(struct lpfc_sli4_cfg_mhdr),
15653 LPFC_SLI4_MBX_EMBED);
James Smart6d368e52011-05-24 11:44:12 -040015654
15655
15656 /* Post the physical rpi to the port for this rpi header. */
James Smart6fb120a2009-05-22 14:52:59 -040015657 bf_set(lpfc_mbx_post_hdr_tmpl_rpi_offset, hdr_tmpl,
15658 rpi_page->start_rpi);
James Smart6d368e52011-05-24 11:44:12 -040015659 bf_set(lpfc_mbx_post_hdr_tmpl_page_cnt,
15660 hdr_tmpl, rpi_page->page_count);
15661
James Smart6fb120a2009-05-22 14:52:59 -040015662 hdr_tmpl->rpi_paddr_lo = putPaddrLow(rpi_page->dmabuf->phys);
15663 hdr_tmpl->rpi_paddr_hi = putPaddrHigh(rpi_page->dmabuf->phys);
James Smartf1126682009-06-10 17:22:44 -040015664 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
James Smart6fb120a2009-05-22 14:52:59 -040015665 shdr = (union lpfc_sli4_cfg_shdr *) &hdr_tmpl->header.cfg_shdr;
15666 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
15667 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
15668 if (rc != MBX_TIMEOUT)
15669 mempool_free(mboxq, phba->mbox_mem_pool);
15670 if (shdr_status || shdr_add_status || rc) {
15671 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15672 "2514 POST_RPI_HDR mailbox failed with "
15673 "status x%x add_status x%x, mbx status x%x\n",
15674 shdr_status, shdr_add_status, rc);
15675 rc = -ENXIO;
15676 }
15677 return rc;
15678}
15679
15680/**
15681 * lpfc_sli4_alloc_rpi - Get an available rpi in the device's range
15682 * @phba: pointer to lpfc hba data structure.
15683 *
15684 * This routine is invoked to post rpi header templates to the
15685 * HBA consistent with the SLI-4 interface spec. This routine
James Smart49198b32010-04-06 15:04:33 -040015686 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
15687 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
James Smart6fb120a2009-05-22 14:52:59 -040015688 *
15689 * Returns
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020015690 * A nonzero rpi defined as rpi_base <= rpi < max_rpi if successful
James Smart6fb120a2009-05-22 14:52:59 -040015691 * LPFC_RPI_ALLOC_ERROR if no rpis are available.
15692 **/
15693int
15694lpfc_sli4_alloc_rpi(struct lpfc_hba *phba)
15695{
James Smart6d368e52011-05-24 11:44:12 -040015696 unsigned long rpi;
15697 uint16_t max_rpi, rpi_limit;
15698 uint16_t rpi_remaining, lrpi = 0;
James Smart6fb120a2009-05-22 14:52:59 -040015699 struct lpfc_rpi_hdr *rpi_hdr;
James Smart4902b382013-10-10 12:20:35 -040015700 unsigned long iflag;
James Smart6fb120a2009-05-22 14:52:59 -040015701
James Smart6fb120a2009-05-22 14:52:59 -040015702 /*
James Smart6d368e52011-05-24 11:44:12 -040015703 * Fetch the next logical rpi. Because this index is logical,
15704 * the driver starts at 0 each time.
James Smart6fb120a2009-05-22 14:52:59 -040015705 */
James Smart4902b382013-10-10 12:20:35 -040015706 spin_lock_irqsave(&phba->hbalock, iflag);
James Smartbe6bb942015-04-07 15:07:22 -040015707 max_rpi = phba->sli4_hba.max_cfg_param.max_rpi;
15708 rpi_limit = phba->sli4_hba.next_rpi;
15709
James Smart6d368e52011-05-24 11:44:12 -040015710 rpi = find_next_zero_bit(phba->sli4_hba.rpi_bmask, rpi_limit, 0);
15711 if (rpi >= rpi_limit)
James Smart6fb120a2009-05-22 14:52:59 -040015712 rpi = LPFC_RPI_ALLOC_ERROR;
15713 else {
15714 set_bit(rpi, phba->sli4_hba.rpi_bmask);
15715 phba->sli4_hba.max_cfg_param.rpi_used++;
15716 phba->sli4_hba.rpi_count++;
15717 }
James Smartbe6bb942015-04-07 15:07:22 -040015718 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
15719 "0001 rpi:%x max:%x lim:%x\n",
15720 (int) rpi, max_rpi, rpi_limit);
James Smart6fb120a2009-05-22 14:52:59 -040015721
15722 /*
15723 * Don't try to allocate more rpi header regions if the device limit
James Smart6d368e52011-05-24 11:44:12 -040015724 * has been exhausted.
James Smart6fb120a2009-05-22 14:52:59 -040015725 */
15726 if ((rpi == LPFC_RPI_ALLOC_ERROR) &&
15727 (phba->sli4_hba.rpi_count >= max_rpi)) {
James Smart4902b382013-10-10 12:20:35 -040015728 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart6fb120a2009-05-22 14:52:59 -040015729 return rpi;
15730 }
15731
15732 /*
James Smart6d368e52011-05-24 11:44:12 -040015733 * RPI header postings are not required for SLI4 ports capable of
15734 * extents.
15735 */
15736 if (!phba->sli4_hba.rpi_hdrs_in_use) {
James Smart4902b382013-10-10 12:20:35 -040015737 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart6d368e52011-05-24 11:44:12 -040015738 return rpi;
15739 }
15740
15741 /*
James Smart6fb120a2009-05-22 14:52:59 -040015742 * If the driver is running low on rpi resources, allocate another
15743 * page now. Note that the next_rpi value is used because
15744 * it represents how many are actually in use whereas max_rpi notes
15745 * how many are supported max by the device.
15746 */
James Smart6d368e52011-05-24 11:44:12 -040015747 rpi_remaining = phba->sli4_hba.next_rpi - phba->sli4_hba.rpi_count;
James Smart4902b382013-10-10 12:20:35 -040015748 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart6fb120a2009-05-22 14:52:59 -040015749 if (rpi_remaining < LPFC_RPI_LOW_WATER_MARK) {
15750 rpi_hdr = lpfc_sli4_create_rpi_hdr(phba);
15751 if (!rpi_hdr) {
15752 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15753 "2002 Error Could not grow rpi "
15754 "count\n");
15755 } else {
James Smart6d368e52011-05-24 11:44:12 -040015756 lrpi = rpi_hdr->start_rpi;
15757 rpi_hdr->start_rpi = phba->sli4_hba.rpi_ids[lrpi];
James Smart6fb120a2009-05-22 14:52:59 -040015758 lpfc_sli4_post_rpi_hdr(phba, rpi_hdr);
15759 }
15760 }
15761
15762 return rpi;
15763}
15764
15765/**
15766 * lpfc_sli4_free_rpi - Release an rpi for reuse.
15767 * @phba: pointer to lpfc hba data structure.
15768 *
15769 * This routine is invoked to release an rpi to the pool of
15770 * available rpis maintained by the driver.
15771 **/
Rashika Kheria5d8b8162014-09-03 12:55:04 -040015772static void
James Smartd7c47992010-06-08 18:31:54 -040015773__lpfc_sli4_free_rpi(struct lpfc_hba *phba, int rpi)
15774{
15775 if (test_and_clear_bit(rpi, phba->sli4_hba.rpi_bmask)) {
15776 phba->sli4_hba.rpi_count--;
15777 phba->sli4_hba.max_cfg_param.rpi_used--;
15778 }
15779}
15780
15781/**
15782 * lpfc_sli4_free_rpi - Release an rpi for reuse.
15783 * @phba: pointer to lpfc hba data structure.
15784 *
15785 * This routine is invoked to release an rpi to the pool of
15786 * available rpis maintained by the driver.
15787 **/
15788void
James Smart6fb120a2009-05-22 14:52:59 -040015789lpfc_sli4_free_rpi(struct lpfc_hba *phba, int rpi)
15790{
15791 spin_lock_irq(&phba->hbalock);
James Smartd7c47992010-06-08 18:31:54 -040015792 __lpfc_sli4_free_rpi(phba, rpi);
James Smart6fb120a2009-05-22 14:52:59 -040015793 spin_unlock_irq(&phba->hbalock);
15794}
15795
15796/**
15797 * lpfc_sli4_remove_rpis - Remove the rpi bitmask region
15798 * @phba: pointer to lpfc hba data structure.
15799 *
15800 * This routine is invoked to remove the memory region that
15801 * provided rpi via a bitmask.
15802 **/
15803void
15804lpfc_sli4_remove_rpis(struct lpfc_hba *phba)
15805{
15806 kfree(phba->sli4_hba.rpi_bmask);
James Smart6d368e52011-05-24 11:44:12 -040015807 kfree(phba->sli4_hba.rpi_ids);
15808 bf_set(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
James Smart6fb120a2009-05-22 14:52:59 -040015809}
15810
15811/**
15812 * lpfc_sli4_resume_rpi - Remove the rpi bitmask region
15813 * @phba: pointer to lpfc hba data structure.
15814 *
15815 * This routine is invoked to remove the memory region that
15816 * provided rpi via a bitmask.
15817 **/
15818int
James Smart6b5151f2012-01-18 16:24:06 -050015819lpfc_sli4_resume_rpi(struct lpfc_nodelist *ndlp,
15820 void (*cmpl)(struct lpfc_hba *, LPFC_MBOXQ_t *), void *arg)
James Smart6fb120a2009-05-22 14:52:59 -040015821{
15822 LPFC_MBOXQ_t *mboxq;
15823 struct lpfc_hba *phba = ndlp->phba;
15824 int rc;
15825
15826 /* The port is notified of the header region via a mailbox command. */
15827 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15828 if (!mboxq)
15829 return -ENOMEM;
15830
15831 /* Post all rpi memory regions to the port. */
15832 lpfc_resume_rpi(mboxq, ndlp);
James Smart6b5151f2012-01-18 16:24:06 -050015833 if (cmpl) {
15834 mboxq->mbox_cmpl = cmpl;
15835 mboxq->context1 = arg;
15836 mboxq->context2 = ndlp;
James Smart72859902012-01-18 16:25:38 -050015837 } else
15838 mboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart6b5151f2012-01-18 16:24:06 -050015839 mboxq->vport = ndlp->vport;
James Smart6fb120a2009-05-22 14:52:59 -040015840 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
15841 if (rc == MBX_NOT_FINISHED) {
15842 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15843 "2010 Resume RPI Mailbox failed "
15844 "status %d, mbxStatus x%x\n", rc,
15845 bf_get(lpfc_mqe_status, &mboxq->u.mqe));
15846 mempool_free(mboxq, phba->mbox_mem_pool);
15847 return -EIO;
15848 }
15849 return 0;
15850}
15851
15852/**
15853 * lpfc_sli4_init_vpi - Initialize a vpi with the port
James Smart76a95d72010-11-20 23:11:48 -050015854 * @vport: Pointer to the vport for which the vpi is being initialized
James Smart6fb120a2009-05-22 14:52:59 -040015855 *
James Smart76a95d72010-11-20 23:11:48 -050015856 * This routine is invoked to activate a vpi with the port.
James Smart6fb120a2009-05-22 14:52:59 -040015857 *
15858 * Returns:
15859 * 0 success
15860 * -Evalue otherwise
15861 **/
15862int
James Smart76a95d72010-11-20 23:11:48 -050015863lpfc_sli4_init_vpi(struct lpfc_vport *vport)
James Smart6fb120a2009-05-22 14:52:59 -040015864{
15865 LPFC_MBOXQ_t *mboxq;
15866 int rc = 0;
James Smart6a9c52c2009-10-02 15:16:51 -040015867 int retval = MBX_SUCCESS;
James Smart6fb120a2009-05-22 14:52:59 -040015868 uint32_t mbox_tmo;
James Smart76a95d72010-11-20 23:11:48 -050015869 struct lpfc_hba *phba = vport->phba;
James Smart6fb120a2009-05-22 14:52:59 -040015870 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15871 if (!mboxq)
15872 return -ENOMEM;
James Smart76a95d72010-11-20 23:11:48 -050015873 lpfc_init_vpi(phba, mboxq, vport->vpi);
James Smarta183a152011-10-10 21:32:43 -040015874 mbox_tmo = lpfc_mbox_tmo_val(phba, mboxq);
James Smart6fb120a2009-05-22 14:52:59 -040015875 rc = lpfc_sli_issue_mbox_wait(phba, mboxq, mbox_tmo);
James Smart6fb120a2009-05-22 14:52:59 -040015876 if (rc != MBX_SUCCESS) {
James Smart76a95d72010-11-20 23:11:48 -050015877 lpfc_printf_vlog(vport, KERN_ERR, LOG_SLI,
James Smart6fb120a2009-05-22 14:52:59 -040015878 "2022 INIT VPI Mailbox failed "
15879 "status %d, mbxStatus x%x\n", rc,
15880 bf_get(lpfc_mqe_status, &mboxq->u.mqe));
James Smart6a9c52c2009-10-02 15:16:51 -040015881 retval = -EIO;
James Smart6fb120a2009-05-22 14:52:59 -040015882 }
James Smart6a9c52c2009-10-02 15:16:51 -040015883 if (rc != MBX_TIMEOUT)
James Smart76a95d72010-11-20 23:11:48 -050015884 mempool_free(mboxq, vport->phba->mbox_mem_pool);
James Smart6a9c52c2009-10-02 15:16:51 -040015885
15886 return retval;
James Smart6fb120a2009-05-22 14:52:59 -040015887}
15888
15889/**
15890 * lpfc_mbx_cmpl_add_fcf_record - add fcf mbox completion handler.
15891 * @phba: pointer to lpfc hba data structure.
15892 * @mboxq: Pointer to mailbox object.
15893 *
15894 * This routine is invoked to manually add a single FCF record. The caller
15895 * must pass a completely initialized FCF_Record. This routine takes
15896 * care of the nonembedded mailbox operations.
15897 **/
15898static void
15899lpfc_mbx_cmpl_add_fcf_record(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
15900{
15901 void *virt_addr;
15902 union lpfc_sli4_cfg_shdr *shdr;
15903 uint32_t shdr_status, shdr_add_status;
15904
15905 virt_addr = mboxq->sge_array->addr[0];
15906 /* The IOCTL status is embedded in the mailbox subheader. */
15907 shdr = (union lpfc_sli4_cfg_shdr *) virt_addr;
15908 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
15909 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
15910
15911 if ((shdr_status || shdr_add_status) &&
15912 (shdr_status != STATUS_FCF_IN_USE))
15913 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15914 "2558 ADD_FCF_RECORD mailbox failed with "
15915 "status x%x add_status x%x\n",
15916 shdr_status, shdr_add_status);
15917
15918 lpfc_sli4_mbox_cmd_free(phba, mboxq);
15919}
15920
15921/**
15922 * lpfc_sli4_add_fcf_record - Manually add an FCF Record.
15923 * @phba: pointer to lpfc hba data structure.
15924 * @fcf_record: pointer to the initialized fcf record to add.
15925 *
15926 * This routine is invoked to manually add a single FCF record. The caller
15927 * must pass a completely initialized FCF_Record. This routine takes
15928 * care of the nonembedded mailbox operations.
15929 **/
15930int
15931lpfc_sli4_add_fcf_record(struct lpfc_hba *phba, struct fcf_record *fcf_record)
15932{
15933 int rc = 0;
15934 LPFC_MBOXQ_t *mboxq;
15935 uint8_t *bytep;
15936 void *virt_addr;
15937 dma_addr_t phys_addr;
15938 struct lpfc_mbx_sge sge;
15939 uint32_t alloc_len, req_len;
15940 uint32_t fcfindex;
15941
15942 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15943 if (!mboxq) {
15944 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15945 "2009 Failed to allocate mbox for ADD_FCF cmd\n");
15946 return -ENOMEM;
15947 }
15948
15949 req_len = sizeof(struct fcf_record) + sizeof(union lpfc_sli4_cfg_shdr) +
15950 sizeof(uint32_t);
15951
15952 /* Allocate DMA memory and set up the non-embedded mailbox command */
15953 alloc_len = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
15954 LPFC_MBOX_OPCODE_FCOE_ADD_FCF,
15955 req_len, LPFC_SLI4_MBX_NEMBED);
15956 if (alloc_len < req_len) {
15957 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15958 "2523 Allocated DMA memory size (x%x) is "
15959 "less than the requested DMA memory "
15960 "size (x%x)\n", alloc_len, req_len);
15961 lpfc_sli4_mbox_cmd_free(phba, mboxq);
15962 return -ENOMEM;
15963 }
15964
15965 /*
15966 * Get the first SGE entry from the non-embedded DMA memory. This
15967 * routine only uses a single SGE.
15968 */
15969 lpfc_sli4_mbx_sge_get(mboxq, 0, &sge);
15970 phys_addr = getPaddr(sge.pa_hi, sge.pa_lo);
James Smart6fb120a2009-05-22 14:52:59 -040015971 virt_addr = mboxq->sge_array->addr[0];
15972 /*
15973 * Configure the FCF record for FCFI 0. This is the driver's
15974 * hardcoded default and gets used in nonFIP mode.
15975 */
15976 fcfindex = bf_get(lpfc_fcf_record_fcf_index, fcf_record);
15977 bytep = virt_addr + sizeof(union lpfc_sli4_cfg_shdr);
15978 lpfc_sli_pcimem_bcopy(&fcfindex, bytep, sizeof(uint32_t));
15979
15980 /*
15981 * Copy the fcf_index and the FCF Record Data. The data starts after
15982 * the FCoE header plus word10. The data copy needs to be endian
15983 * correct.
15984 */
15985 bytep += sizeof(uint32_t);
15986 lpfc_sli_pcimem_bcopy(fcf_record, bytep, sizeof(struct fcf_record));
15987 mboxq->vport = phba->pport;
15988 mboxq->mbox_cmpl = lpfc_mbx_cmpl_add_fcf_record;
15989 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
15990 if (rc == MBX_NOT_FINISHED) {
15991 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15992 "2515 ADD_FCF_RECORD mailbox failed with "
15993 "status 0x%x\n", rc);
15994 lpfc_sli4_mbox_cmd_free(phba, mboxq);
15995 rc = -EIO;
15996 } else
15997 rc = 0;
15998
15999 return rc;
16000}
16001
16002/**
16003 * lpfc_sli4_build_dflt_fcf_record - Build the driver's default FCF Record.
16004 * @phba: pointer to lpfc hba data structure.
16005 * @fcf_record: pointer to the fcf record to write the default data.
16006 * @fcf_index: FCF table entry index.
16007 *
16008 * This routine is invoked to build the driver's default FCF record. The
16009 * values used are hardcoded. This routine handles memory initialization.
16010 *
16011 **/
16012void
16013lpfc_sli4_build_dflt_fcf_record(struct lpfc_hba *phba,
16014 struct fcf_record *fcf_record,
16015 uint16_t fcf_index)
16016{
16017 memset(fcf_record, 0, sizeof(struct fcf_record));
16018 fcf_record->max_rcv_size = LPFC_FCOE_MAX_RCV_SIZE;
16019 fcf_record->fka_adv_period = LPFC_FCOE_FKA_ADV_PER;
16020 fcf_record->fip_priority = LPFC_FCOE_FIP_PRIORITY;
16021 bf_set(lpfc_fcf_record_mac_0, fcf_record, phba->fc_map[0]);
16022 bf_set(lpfc_fcf_record_mac_1, fcf_record, phba->fc_map[1]);
16023 bf_set(lpfc_fcf_record_mac_2, fcf_record, phba->fc_map[2]);
16024 bf_set(lpfc_fcf_record_mac_3, fcf_record, LPFC_FCOE_FCF_MAC3);
16025 bf_set(lpfc_fcf_record_mac_4, fcf_record, LPFC_FCOE_FCF_MAC4);
16026 bf_set(lpfc_fcf_record_mac_5, fcf_record, LPFC_FCOE_FCF_MAC5);
16027 bf_set(lpfc_fcf_record_fc_map_0, fcf_record, phba->fc_map[0]);
16028 bf_set(lpfc_fcf_record_fc_map_1, fcf_record, phba->fc_map[1]);
16029 bf_set(lpfc_fcf_record_fc_map_2, fcf_record, phba->fc_map[2]);
16030 bf_set(lpfc_fcf_record_fcf_valid, fcf_record, 1);
James Smart0c287582009-06-10 17:22:56 -040016031 bf_set(lpfc_fcf_record_fcf_avail, fcf_record, 1);
James Smart6fb120a2009-05-22 14:52:59 -040016032 bf_set(lpfc_fcf_record_fcf_index, fcf_record, fcf_index);
16033 bf_set(lpfc_fcf_record_mac_addr_prov, fcf_record,
16034 LPFC_FCF_FPMA | LPFC_FCF_SPMA);
16035 /* Set the VLAN bit map */
16036 if (phba->valid_vlan) {
16037 fcf_record->vlan_bitmap[phba->vlan_id / 8]
16038 = 1 << (phba->vlan_id % 8);
16039 }
16040}
16041
16042/**
James Smart0c9ab6f2010-02-26 14:15:57 -050016043 * lpfc_sli4_fcf_scan_read_fcf_rec - Read hba fcf record for fcf scan.
James Smart6fb120a2009-05-22 14:52:59 -040016044 * @phba: pointer to lpfc hba data structure.
16045 * @fcf_index: FCF table entry offset.
16046 *
James Smart0c9ab6f2010-02-26 14:15:57 -050016047 * This routine is invoked to scan the entire FCF table by reading FCF
16048 * record and processing it one at a time starting from the @fcf_index
16049 * for initial FCF discovery or fast FCF failover rediscovery.
16050 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030016051 * Return 0 if the mailbox command is submitted successfully, none 0
James Smart0c9ab6f2010-02-26 14:15:57 -050016052 * otherwise.
James Smart6fb120a2009-05-22 14:52:59 -040016053 **/
16054int
James Smart0c9ab6f2010-02-26 14:15:57 -050016055lpfc_sli4_fcf_scan_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
James Smart6fb120a2009-05-22 14:52:59 -040016056{
16057 int rc = 0, error;
16058 LPFC_MBOXQ_t *mboxq;
James Smart6fb120a2009-05-22 14:52:59 -040016059
James Smart32b97932009-07-19 10:01:21 -040016060 phba->fcoe_eventtag_at_fcf_scan = phba->fcoe_eventtag;
James Smart80c17842012-03-01 22:35:45 -050016061 phba->fcoe_cvl_eventtag_attn = phba->fcoe_cvl_eventtag;
James Smart6fb120a2009-05-22 14:52:59 -040016062 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16063 if (!mboxq) {
16064 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16065 "2000 Failed to allocate mbox for "
16066 "READ_FCF cmd\n");
James Smart4d9ab992009-10-02 15:16:39 -040016067 error = -ENOMEM;
James Smart0c9ab6f2010-02-26 14:15:57 -050016068 goto fail_fcf_scan;
James Smart6fb120a2009-05-22 14:52:59 -040016069 }
James Smartecfd03c2010-02-12 14:41:27 -050016070 /* Construct the read FCF record mailbox command */
James Smart0c9ab6f2010-02-26 14:15:57 -050016071 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
James Smartecfd03c2010-02-12 14:41:27 -050016072 if (rc) {
16073 error = -EINVAL;
James Smart0c9ab6f2010-02-26 14:15:57 -050016074 goto fail_fcf_scan;
James Smart6fb120a2009-05-22 14:52:59 -040016075 }
James Smartecfd03c2010-02-12 14:41:27 -050016076 /* Issue the mailbox command asynchronously */
James Smart6fb120a2009-05-22 14:52:59 -040016077 mboxq->vport = phba->pport;
James Smart0c9ab6f2010-02-26 14:15:57 -050016078 mboxq->mbox_cmpl = lpfc_mbx_cmpl_fcf_scan_read_fcf_rec;
James Smarta93ff372010-10-22 11:06:08 -040016079
16080 spin_lock_irq(&phba->hbalock);
16081 phba->hba_flag |= FCF_TS_INPROG;
16082 spin_unlock_irq(&phba->hbalock);
16083
James Smart6fb120a2009-05-22 14:52:59 -040016084 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
James Smartecfd03c2010-02-12 14:41:27 -050016085 if (rc == MBX_NOT_FINISHED)
James Smart6fb120a2009-05-22 14:52:59 -040016086 error = -EIO;
James Smartecfd03c2010-02-12 14:41:27 -050016087 else {
James Smart38b92ef2010-08-04 16:11:39 -040016088 /* Reset eligible FCF count for new scan */
16089 if (fcf_index == LPFC_FCOE_FCF_GET_FIRST)
James Smart999d8132010-03-15 11:24:56 -040016090 phba->fcf.eligible_fcf_cnt = 0;
James Smart6fb120a2009-05-22 14:52:59 -040016091 error = 0;
James Smart32b97932009-07-19 10:01:21 -040016092 }
James Smart0c9ab6f2010-02-26 14:15:57 -050016093fail_fcf_scan:
James Smart4d9ab992009-10-02 15:16:39 -040016094 if (error) {
16095 if (mboxq)
16096 lpfc_sli4_mbox_cmd_free(phba, mboxq);
James Smarta93ff372010-10-22 11:06:08 -040016097 /* FCF scan failed, clear FCF_TS_INPROG flag */
James Smart4d9ab992009-10-02 15:16:39 -040016098 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -040016099 phba->hba_flag &= ~FCF_TS_INPROG;
James Smart4d9ab992009-10-02 15:16:39 -040016100 spin_unlock_irq(&phba->hbalock);
16101 }
James Smart6fb120a2009-05-22 14:52:59 -040016102 return error;
16103}
James Smarta0c87cb2009-07-19 10:01:10 -040016104
16105/**
James Smarta93ff372010-10-22 11:06:08 -040016106 * lpfc_sli4_fcf_rr_read_fcf_rec - Read hba fcf record for roundrobin fcf.
James Smart0c9ab6f2010-02-26 14:15:57 -050016107 * @phba: pointer to lpfc hba data structure.
16108 * @fcf_index: FCF table entry offset.
16109 *
16110 * This routine is invoked to read an FCF record indicated by @fcf_index
James Smarta93ff372010-10-22 11:06:08 -040016111 * and to use it for FLOGI roundrobin FCF failover.
James Smart0c9ab6f2010-02-26 14:15:57 -050016112 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030016113 * Return 0 if the mailbox command is submitted successfully, none 0
James Smart0c9ab6f2010-02-26 14:15:57 -050016114 * otherwise.
16115 **/
16116int
16117lpfc_sli4_fcf_rr_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
16118{
16119 int rc = 0, error;
16120 LPFC_MBOXQ_t *mboxq;
16121
16122 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16123 if (!mboxq) {
16124 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_INIT,
16125 "2763 Failed to allocate mbox for "
16126 "READ_FCF cmd\n");
16127 error = -ENOMEM;
16128 goto fail_fcf_read;
16129 }
16130 /* Construct the read FCF record mailbox command */
16131 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
16132 if (rc) {
16133 error = -EINVAL;
16134 goto fail_fcf_read;
16135 }
16136 /* Issue the mailbox command asynchronously */
16137 mboxq->vport = phba->pport;
16138 mboxq->mbox_cmpl = lpfc_mbx_cmpl_fcf_rr_read_fcf_rec;
16139 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
16140 if (rc == MBX_NOT_FINISHED)
16141 error = -EIO;
16142 else
16143 error = 0;
16144
16145fail_fcf_read:
16146 if (error && mboxq)
16147 lpfc_sli4_mbox_cmd_free(phba, mboxq);
16148 return error;
16149}
16150
16151/**
16152 * lpfc_sli4_read_fcf_rec - Read hba fcf record for update eligible fcf bmask.
16153 * @phba: pointer to lpfc hba data structure.
16154 * @fcf_index: FCF table entry offset.
16155 *
16156 * This routine is invoked to read an FCF record indicated by @fcf_index to
James Smarta93ff372010-10-22 11:06:08 -040016157 * determine whether it's eligible for FLOGI roundrobin failover list.
James Smart0c9ab6f2010-02-26 14:15:57 -050016158 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030016159 * Return 0 if the mailbox command is submitted successfully, none 0
James Smart0c9ab6f2010-02-26 14:15:57 -050016160 * otherwise.
16161 **/
16162int
16163lpfc_sli4_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
16164{
16165 int rc = 0, error;
16166 LPFC_MBOXQ_t *mboxq;
16167
16168 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16169 if (!mboxq) {
16170 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_INIT,
16171 "2758 Failed to allocate mbox for "
16172 "READ_FCF cmd\n");
16173 error = -ENOMEM;
16174 goto fail_fcf_read;
16175 }
16176 /* Construct the read FCF record mailbox command */
16177 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
16178 if (rc) {
16179 error = -EINVAL;
16180 goto fail_fcf_read;
16181 }
16182 /* Issue the mailbox command asynchronously */
16183 mboxq->vport = phba->pport;
16184 mboxq->mbox_cmpl = lpfc_mbx_cmpl_read_fcf_rec;
16185 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
16186 if (rc == MBX_NOT_FINISHED)
16187 error = -EIO;
16188 else
16189 error = 0;
16190
16191fail_fcf_read:
16192 if (error && mboxq)
16193 lpfc_sli4_mbox_cmd_free(phba, mboxq);
16194 return error;
16195}
16196
16197/**
James Smart7d791df2011-07-22 18:37:52 -040016198 * lpfc_check_next_fcf_pri
16199 * phba pointer to the lpfc_hba struct for this port.
16200 * This routine is called from the lpfc_sli4_fcf_rr_next_index_get
16201 * routine when the rr_bmask is empty. The FCF indecies are put into the
16202 * rr_bmask based on their priority level. Starting from the highest priority
16203 * to the lowest. The most likely FCF candidate will be in the highest
16204 * priority group. When this routine is called it searches the fcf_pri list for
16205 * next lowest priority group and repopulates the rr_bmask with only those
16206 * fcf_indexes.
16207 * returns:
16208 * 1=success 0=failure
16209 **/
Rashika Kheria5d8b8162014-09-03 12:55:04 -040016210static int
James Smart7d791df2011-07-22 18:37:52 -040016211lpfc_check_next_fcf_pri_level(struct lpfc_hba *phba)
16212{
16213 uint16_t next_fcf_pri;
16214 uint16_t last_index;
16215 struct lpfc_fcf_pri *fcf_pri;
16216 int rc;
16217 int ret = 0;
16218
16219 last_index = find_first_bit(phba->fcf.fcf_rr_bmask,
16220 LPFC_SLI4_FCF_TBL_INDX_MAX);
16221 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
16222 "3060 Last IDX %d\n", last_index);
James Smart25626692013-03-01 16:36:54 -050016223
16224 /* Verify the priority list has 2 or more entries */
16225 spin_lock_irq(&phba->hbalock);
16226 if (list_empty(&phba->fcf.fcf_pri_list) ||
16227 list_is_singular(&phba->fcf.fcf_pri_list)) {
16228 spin_unlock_irq(&phba->hbalock);
James Smart7d791df2011-07-22 18:37:52 -040016229 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
16230 "3061 Last IDX %d\n", last_index);
16231 return 0; /* Empty rr list */
16232 }
James Smart25626692013-03-01 16:36:54 -050016233 spin_unlock_irq(&phba->hbalock);
16234
James Smart7d791df2011-07-22 18:37:52 -040016235 next_fcf_pri = 0;
16236 /*
16237 * Clear the rr_bmask and set all of the bits that are at this
16238 * priority.
16239 */
16240 memset(phba->fcf.fcf_rr_bmask, 0,
16241 sizeof(*phba->fcf.fcf_rr_bmask));
16242 spin_lock_irq(&phba->hbalock);
16243 list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
16244 if (fcf_pri->fcf_rec.flag & LPFC_FCF_FLOGI_FAILED)
16245 continue;
16246 /*
16247 * the 1st priority that has not FLOGI failed
16248 * will be the highest.
16249 */
16250 if (!next_fcf_pri)
16251 next_fcf_pri = fcf_pri->fcf_rec.priority;
16252 spin_unlock_irq(&phba->hbalock);
16253 if (fcf_pri->fcf_rec.priority == next_fcf_pri) {
16254 rc = lpfc_sli4_fcf_rr_index_set(phba,
16255 fcf_pri->fcf_rec.fcf_index);
16256 if (rc)
16257 return 0;
16258 }
16259 spin_lock_irq(&phba->hbalock);
16260 }
16261 /*
16262 * if next_fcf_pri was not set above and the list is not empty then
16263 * we have failed flogis on all of them. So reset flogi failed
Anatol Pomozov4907cb72012-09-01 10:31:09 -070016264 * and start at the beginning.
James Smart7d791df2011-07-22 18:37:52 -040016265 */
16266 if (!next_fcf_pri && !list_empty(&phba->fcf.fcf_pri_list)) {
16267 list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
16268 fcf_pri->fcf_rec.flag &= ~LPFC_FCF_FLOGI_FAILED;
16269 /*
16270 * the 1st priority that has not FLOGI failed
16271 * will be the highest.
16272 */
16273 if (!next_fcf_pri)
16274 next_fcf_pri = fcf_pri->fcf_rec.priority;
16275 spin_unlock_irq(&phba->hbalock);
16276 if (fcf_pri->fcf_rec.priority == next_fcf_pri) {
16277 rc = lpfc_sli4_fcf_rr_index_set(phba,
16278 fcf_pri->fcf_rec.fcf_index);
16279 if (rc)
16280 return 0;
16281 }
16282 spin_lock_irq(&phba->hbalock);
16283 }
16284 } else
16285 ret = 1;
16286 spin_unlock_irq(&phba->hbalock);
16287
16288 return ret;
16289}
16290/**
James Smart0c9ab6f2010-02-26 14:15:57 -050016291 * lpfc_sli4_fcf_rr_next_index_get - Get next eligible fcf record index
16292 * @phba: pointer to lpfc hba data structure.
16293 *
16294 * This routine is to get the next eligible FCF record index in a round
16295 * robin fashion. If the next eligible FCF record index equals to the
James Smarta93ff372010-10-22 11:06:08 -040016296 * initial roundrobin FCF record index, LPFC_FCOE_FCF_NEXT_NONE (0xFFFF)
James Smart0c9ab6f2010-02-26 14:15:57 -050016297 * shall be returned, otherwise, the next eligible FCF record's index
16298 * shall be returned.
16299 **/
16300uint16_t
16301lpfc_sli4_fcf_rr_next_index_get(struct lpfc_hba *phba)
16302{
16303 uint16_t next_fcf_index;
16304
James Smart421c6622013-01-03 15:44:16 -050016305initial_priority:
James Smart3804dc82010-07-14 15:31:37 -040016306 /* Search start from next bit of currently registered FCF index */
James Smart421c6622013-01-03 15:44:16 -050016307 next_fcf_index = phba->fcf.current_rec.fcf_indx;
16308
James Smart7d791df2011-07-22 18:37:52 -040016309next_priority:
James Smart421c6622013-01-03 15:44:16 -050016310 /* Determine the next fcf index to check */
16311 next_fcf_index = (next_fcf_index + 1) % LPFC_SLI4_FCF_TBL_INDX_MAX;
James Smart0c9ab6f2010-02-26 14:15:57 -050016312 next_fcf_index = find_next_bit(phba->fcf.fcf_rr_bmask,
16313 LPFC_SLI4_FCF_TBL_INDX_MAX,
James Smart3804dc82010-07-14 15:31:37 -040016314 next_fcf_index);
16315
James Smart0c9ab6f2010-02-26 14:15:57 -050016316 /* Wrap around condition on phba->fcf.fcf_rr_bmask */
James Smart7d791df2011-07-22 18:37:52 -040016317 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
16318 /*
16319 * If we have wrapped then we need to clear the bits that
16320 * have been tested so that we can detect when we should
16321 * change the priority level.
16322 */
James Smart0c9ab6f2010-02-26 14:15:57 -050016323 next_fcf_index = find_next_bit(phba->fcf.fcf_rr_bmask,
16324 LPFC_SLI4_FCF_TBL_INDX_MAX, 0);
James Smart7d791df2011-07-22 18:37:52 -040016325 }
16326
James Smart0c9ab6f2010-02-26 14:15:57 -050016327
James Smart3804dc82010-07-14 15:31:37 -040016328 /* Check roundrobin failover list empty condition */
James Smart7d791df2011-07-22 18:37:52 -040016329 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX ||
16330 next_fcf_index == phba->fcf.current_rec.fcf_indx) {
16331 /*
16332 * If next fcf index is not found check if there are lower
16333 * Priority level fcf's in the fcf_priority list.
16334 * Set up the rr_bmask with all of the avaiable fcf bits
16335 * at that level and continue the selection process.
16336 */
16337 if (lpfc_check_next_fcf_pri_level(phba))
James Smart421c6622013-01-03 15:44:16 -050016338 goto initial_priority;
James Smart3804dc82010-07-14 15:31:37 -040016339 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
16340 "2844 No roundrobin failover FCF available\n");
James Smart7d791df2011-07-22 18:37:52 -040016341 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX)
16342 return LPFC_FCOE_FCF_NEXT_NONE;
16343 else {
16344 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
16345 "3063 Only FCF available idx %d, flag %x\n",
16346 next_fcf_index,
16347 phba->fcf.fcf_pri[next_fcf_index].fcf_rec.flag);
16348 return next_fcf_index;
16349 }
James Smart3804dc82010-07-14 15:31:37 -040016350 }
16351
James Smart7d791df2011-07-22 18:37:52 -040016352 if (next_fcf_index < LPFC_SLI4_FCF_TBL_INDX_MAX &&
16353 phba->fcf.fcf_pri[next_fcf_index].fcf_rec.flag &
16354 LPFC_FCF_FLOGI_FAILED)
16355 goto next_priority;
16356
James Smart3804dc82010-07-14 15:31:37 -040016357 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040016358 "2845 Get next roundrobin failover FCF (x%x)\n",
16359 next_fcf_index);
16360
James Smart0c9ab6f2010-02-26 14:15:57 -050016361 return next_fcf_index;
16362}
16363
16364/**
16365 * lpfc_sli4_fcf_rr_index_set - Set bmask with eligible fcf record index
16366 * @phba: pointer to lpfc hba data structure.
16367 *
16368 * This routine sets the FCF record index in to the eligible bmask for
James Smarta93ff372010-10-22 11:06:08 -040016369 * roundrobin failover search. It checks to make sure that the index
James Smart0c9ab6f2010-02-26 14:15:57 -050016370 * does not go beyond the range of the driver allocated bmask dimension
16371 * before setting the bit.
16372 *
16373 * Returns 0 if the index bit successfully set, otherwise, it returns
16374 * -EINVAL.
16375 **/
16376int
16377lpfc_sli4_fcf_rr_index_set(struct lpfc_hba *phba, uint16_t fcf_index)
16378{
16379 if (fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
16380 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040016381 "2610 FCF (x%x) reached driver's book "
16382 "keeping dimension:x%x\n",
James Smart0c9ab6f2010-02-26 14:15:57 -050016383 fcf_index, LPFC_SLI4_FCF_TBL_INDX_MAX);
16384 return -EINVAL;
16385 }
16386 /* Set the eligible FCF record index bmask */
16387 set_bit(fcf_index, phba->fcf.fcf_rr_bmask);
16388
James Smart3804dc82010-07-14 15:31:37 -040016389 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040016390 "2790 Set FCF (x%x) to roundrobin FCF failover "
James Smart3804dc82010-07-14 15:31:37 -040016391 "bmask\n", fcf_index);
16392
James Smart0c9ab6f2010-02-26 14:15:57 -050016393 return 0;
16394}
16395
16396/**
James Smart3804dc82010-07-14 15:31:37 -040016397 * lpfc_sli4_fcf_rr_index_clear - Clear bmask from eligible fcf record index
James Smart0c9ab6f2010-02-26 14:15:57 -050016398 * @phba: pointer to lpfc hba data structure.
16399 *
16400 * This routine clears the FCF record index from the eligible bmask for
James Smarta93ff372010-10-22 11:06:08 -040016401 * roundrobin failover search. It checks to make sure that the index
James Smart0c9ab6f2010-02-26 14:15:57 -050016402 * does not go beyond the range of the driver allocated bmask dimension
16403 * before clearing the bit.
16404 **/
16405void
16406lpfc_sli4_fcf_rr_index_clear(struct lpfc_hba *phba, uint16_t fcf_index)
16407{
James Smart9a803a72013-09-06 12:17:56 -040016408 struct lpfc_fcf_pri *fcf_pri, *fcf_pri_next;
James Smart0c9ab6f2010-02-26 14:15:57 -050016409 if (fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
16410 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040016411 "2762 FCF (x%x) reached driver's book "
16412 "keeping dimension:x%x\n",
James Smart0c9ab6f2010-02-26 14:15:57 -050016413 fcf_index, LPFC_SLI4_FCF_TBL_INDX_MAX);
16414 return;
16415 }
16416 /* Clear the eligible FCF record index bmask */
James Smart7d791df2011-07-22 18:37:52 -040016417 spin_lock_irq(&phba->hbalock);
James Smart9a803a72013-09-06 12:17:56 -040016418 list_for_each_entry_safe(fcf_pri, fcf_pri_next, &phba->fcf.fcf_pri_list,
16419 list) {
James Smart7d791df2011-07-22 18:37:52 -040016420 if (fcf_pri->fcf_rec.fcf_index == fcf_index) {
16421 list_del_init(&fcf_pri->list);
16422 break;
16423 }
16424 }
16425 spin_unlock_irq(&phba->hbalock);
James Smart0c9ab6f2010-02-26 14:15:57 -050016426 clear_bit(fcf_index, phba->fcf.fcf_rr_bmask);
James Smart3804dc82010-07-14 15:31:37 -040016427
16428 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040016429 "2791 Clear FCF (x%x) from roundrobin failover "
James Smart3804dc82010-07-14 15:31:37 -040016430 "bmask\n", fcf_index);
James Smart0c9ab6f2010-02-26 14:15:57 -050016431}
16432
16433/**
James Smartecfd03c2010-02-12 14:41:27 -050016434 * lpfc_mbx_cmpl_redisc_fcf_table - completion routine for rediscover FCF table
16435 * @phba: pointer to lpfc hba data structure.
16436 *
16437 * This routine is the completion routine for the rediscover FCF table mailbox
16438 * command. If the mailbox command returned failure, it will try to stop the
16439 * FCF rediscover wait timer.
16440 **/
Rashika Kheria5d8b8162014-09-03 12:55:04 -040016441static void
James Smartecfd03c2010-02-12 14:41:27 -050016442lpfc_mbx_cmpl_redisc_fcf_table(struct lpfc_hba *phba, LPFC_MBOXQ_t *mbox)
16443{
16444 struct lpfc_mbx_redisc_fcf_tbl *redisc_fcf;
16445 uint32_t shdr_status, shdr_add_status;
16446
16447 redisc_fcf = &mbox->u.mqe.un.redisc_fcf_tbl;
16448
16449 shdr_status = bf_get(lpfc_mbox_hdr_status,
16450 &redisc_fcf->header.cfg_shdr.response);
16451 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status,
16452 &redisc_fcf->header.cfg_shdr.response);
16453 if (shdr_status || shdr_add_status) {
James Smart0c9ab6f2010-02-26 14:15:57 -050016454 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smartecfd03c2010-02-12 14:41:27 -050016455 "2746 Requesting for FCF rediscovery failed "
16456 "status x%x add_status x%x\n",
16457 shdr_status, shdr_add_status);
James Smart0c9ab6f2010-02-26 14:15:57 -050016458 if (phba->fcf.fcf_flag & FCF_ACVL_DISC) {
James Smartfc2b9892010-02-26 14:15:29 -050016459 spin_lock_irq(&phba->hbalock);
James Smart0c9ab6f2010-02-26 14:15:57 -050016460 phba->fcf.fcf_flag &= ~FCF_ACVL_DISC;
James Smartfc2b9892010-02-26 14:15:29 -050016461 spin_unlock_irq(&phba->hbalock);
16462 /*
16463 * CVL event triggered FCF rediscover request failed,
16464 * last resort to re-try current registered FCF entry.
16465 */
16466 lpfc_retry_pport_discovery(phba);
16467 } else {
16468 spin_lock_irq(&phba->hbalock);
James Smart0c9ab6f2010-02-26 14:15:57 -050016469 phba->fcf.fcf_flag &= ~FCF_DEAD_DISC;
James Smartfc2b9892010-02-26 14:15:29 -050016470 spin_unlock_irq(&phba->hbalock);
16471 /*
16472 * DEAD FCF event triggered FCF rediscover request
16473 * failed, last resort to fail over as a link down
16474 * to FCF registration.
16475 */
16476 lpfc_sli4_fcf_dead_failthrough(phba);
16477 }
James Smart0c9ab6f2010-02-26 14:15:57 -050016478 } else {
16479 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040016480 "2775 Start FCF rediscover quiescent timer\n");
James Smartecfd03c2010-02-12 14:41:27 -050016481 /*
16482 * Start FCF rediscovery wait timer for pending FCF
16483 * before rescan FCF record table.
16484 */
16485 lpfc_fcf_redisc_wait_start_timer(phba);
James Smart0c9ab6f2010-02-26 14:15:57 -050016486 }
James Smartecfd03c2010-02-12 14:41:27 -050016487
16488 mempool_free(mbox, phba->mbox_mem_pool);
16489}
16490
16491/**
James Smart3804dc82010-07-14 15:31:37 -040016492 * lpfc_sli4_redisc_fcf_table - Request to rediscover entire FCF table by port.
James Smartecfd03c2010-02-12 14:41:27 -050016493 * @phba: pointer to lpfc hba data structure.
16494 *
16495 * This routine is invoked to request for rediscovery of the entire FCF table
16496 * by the port.
16497 **/
16498int
16499lpfc_sli4_redisc_fcf_table(struct lpfc_hba *phba)
16500{
16501 LPFC_MBOXQ_t *mbox;
16502 struct lpfc_mbx_redisc_fcf_tbl *redisc_fcf;
16503 int rc, length;
16504
James Smart0c9ab6f2010-02-26 14:15:57 -050016505 /* Cancel retry delay timers to all vports before FCF rediscover */
16506 lpfc_cancel_all_vport_retry_delay_timer(phba);
16507
James Smartecfd03c2010-02-12 14:41:27 -050016508 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16509 if (!mbox) {
16510 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
16511 "2745 Failed to allocate mbox for "
16512 "requesting FCF rediscover.\n");
16513 return -ENOMEM;
16514 }
16515
16516 length = (sizeof(struct lpfc_mbx_redisc_fcf_tbl) -
16517 sizeof(struct lpfc_sli4_cfg_mhdr));
16518 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
16519 LPFC_MBOX_OPCODE_FCOE_REDISCOVER_FCF,
16520 length, LPFC_SLI4_MBX_EMBED);
16521
16522 redisc_fcf = &mbox->u.mqe.un.redisc_fcf_tbl;
16523 /* Set count to 0 for invalidating the entire FCF database */
16524 bf_set(lpfc_mbx_redisc_fcf_count, redisc_fcf, 0);
16525
16526 /* Issue the mailbox command asynchronously */
16527 mbox->vport = phba->pport;
16528 mbox->mbox_cmpl = lpfc_mbx_cmpl_redisc_fcf_table;
16529 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
16530
16531 if (rc == MBX_NOT_FINISHED) {
16532 mempool_free(mbox, phba->mbox_mem_pool);
16533 return -EIO;
16534 }
16535 return 0;
16536}
16537
16538/**
James Smartfc2b9892010-02-26 14:15:29 -050016539 * lpfc_sli4_fcf_dead_failthrough - Failthrough routine to fcf dead event
16540 * @phba: pointer to lpfc hba data structure.
16541 *
16542 * This function is the failover routine as a last resort to the FCF DEAD
16543 * event when driver failed to perform fast FCF failover.
16544 **/
16545void
16546lpfc_sli4_fcf_dead_failthrough(struct lpfc_hba *phba)
16547{
16548 uint32_t link_state;
16549
16550 /*
16551 * Last resort as FCF DEAD event failover will treat this as
16552 * a link down, but save the link state because we don't want
16553 * it to be changed to Link Down unless it is already down.
16554 */
16555 link_state = phba->link_state;
16556 lpfc_linkdown(phba);
16557 phba->link_state = link_state;
16558
16559 /* Unregister FCF if no devices connected to it */
16560 lpfc_unregister_unused_fcf(phba);
16561}
16562
16563/**
James Smart026abb82011-12-13 13:20:45 -050016564 * lpfc_sli_get_config_region23 - Get sli3 port region 23 data.
James Smarta0c87cb2009-07-19 10:01:10 -040016565 * @phba: pointer to lpfc hba data structure.
James Smart026abb82011-12-13 13:20:45 -050016566 * @rgn23_data: pointer to configure region 23 data.
James Smarta0c87cb2009-07-19 10:01:10 -040016567 *
James Smart026abb82011-12-13 13:20:45 -050016568 * This function gets SLI3 port configure region 23 data through memory dump
16569 * mailbox command. When it successfully retrieves data, the size of the data
16570 * will be returned, otherwise, 0 will be returned.
James Smarta0c87cb2009-07-19 10:01:10 -040016571 **/
James Smart026abb82011-12-13 13:20:45 -050016572static uint32_t
16573lpfc_sli_get_config_region23(struct lpfc_hba *phba, char *rgn23_data)
James Smarta0c87cb2009-07-19 10:01:10 -040016574{
16575 LPFC_MBOXQ_t *pmb = NULL;
16576 MAILBOX_t *mb;
James Smart026abb82011-12-13 13:20:45 -050016577 uint32_t offset = 0;
James Smarta0c87cb2009-07-19 10:01:10 -040016578 int rc;
16579
James Smart026abb82011-12-13 13:20:45 -050016580 if (!rgn23_data)
16581 return 0;
16582
James Smarta0c87cb2009-07-19 10:01:10 -040016583 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16584 if (!pmb) {
16585 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart026abb82011-12-13 13:20:45 -050016586 "2600 failed to allocate mailbox memory\n");
16587 return 0;
James Smarta0c87cb2009-07-19 10:01:10 -040016588 }
16589 mb = &pmb->u.mb;
16590
James Smarta0c87cb2009-07-19 10:01:10 -040016591 do {
16592 lpfc_dump_mem(phba, pmb, offset, DMP_REGION_23);
16593 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
16594
16595 if (rc != MBX_SUCCESS) {
16596 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smart026abb82011-12-13 13:20:45 -050016597 "2601 failed to read config "
16598 "region 23, rc 0x%x Status 0x%x\n",
16599 rc, mb->mbxStatus);
James Smarta0c87cb2009-07-19 10:01:10 -040016600 mb->un.varDmp.word_cnt = 0;
16601 }
16602 /*
16603 * dump mem may return a zero when finished or we got a
16604 * mailbox error, either way we are done.
16605 */
16606 if (mb->un.varDmp.word_cnt == 0)
16607 break;
16608 if (mb->un.varDmp.word_cnt > DMP_RGN23_SIZE - offset)
16609 mb->un.varDmp.word_cnt = DMP_RGN23_SIZE - offset;
16610
16611 lpfc_sli_pcimem_bcopy(((uint8_t *)mb) + DMP_RSP_OFFSET,
James Smart026abb82011-12-13 13:20:45 -050016612 rgn23_data + offset,
16613 mb->un.varDmp.word_cnt);
James Smarta0c87cb2009-07-19 10:01:10 -040016614 offset += mb->un.varDmp.word_cnt;
16615 } while (mb->un.varDmp.word_cnt && offset < DMP_RGN23_SIZE);
16616
James Smart026abb82011-12-13 13:20:45 -050016617 mempool_free(pmb, phba->mbox_mem_pool);
16618 return offset;
16619}
16620
16621/**
16622 * lpfc_sli4_get_config_region23 - Get sli4 port region 23 data.
16623 * @phba: pointer to lpfc hba data structure.
16624 * @rgn23_data: pointer to configure region 23 data.
16625 *
16626 * This function gets SLI4 port configure region 23 data through memory dump
16627 * mailbox command. When it successfully retrieves data, the size of the data
16628 * will be returned, otherwise, 0 will be returned.
16629 **/
16630static uint32_t
16631lpfc_sli4_get_config_region23(struct lpfc_hba *phba, char *rgn23_data)
16632{
16633 LPFC_MBOXQ_t *mboxq = NULL;
16634 struct lpfc_dmabuf *mp = NULL;
16635 struct lpfc_mqe *mqe;
16636 uint32_t data_length = 0;
16637 int rc;
16638
16639 if (!rgn23_data)
16640 return 0;
16641
16642 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16643 if (!mboxq) {
16644 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16645 "3105 failed to allocate mailbox memory\n");
16646 return 0;
16647 }
16648
16649 if (lpfc_sli4_dump_cfg_rg23(phba, mboxq))
16650 goto out;
16651 mqe = &mboxq->u.mqe;
16652 mp = (struct lpfc_dmabuf *) mboxq->context1;
16653 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
16654 if (rc)
16655 goto out;
16656 data_length = mqe->un.mb_words[5];
16657 if (data_length == 0)
16658 goto out;
16659 if (data_length > DMP_RGN23_SIZE) {
16660 data_length = 0;
16661 goto out;
16662 }
16663 lpfc_sli_pcimem_bcopy((char *)mp->virt, rgn23_data, data_length);
16664out:
16665 mempool_free(mboxq, phba->mbox_mem_pool);
16666 if (mp) {
16667 lpfc_mbuf_free(phba, mp->virt, mp->phys);
16668 kfree(mp);
16669 }
16670 return data_length;
16671}
16672
16673/**
16674 * lpfc_sli_read_link_ste - Read region 23 to decide if link is disabled.
16675 * @phba: pointer to lpfc hba data structure.
16676 *
16677 * This function read region 23 and parse TLV for port status to
16678 * decide if the user disaled the port. If the TLV indicates the
16679 * port is disabled, the hba_flag is set accordingly.
16680 **/
16681void
16682lpfc_sli_read_link_ste(struct lpfc_hba *phba)
16683{
16684 uint8_t *rgn23_data = NULL;
16685 uint32_t if_type, data_size, sub_tlv_len, tlv_offset;
16686 uint32_t offset = 0;
16687
16688 /* Get adapter Region 23 data */
16689 rgn23_data = kzalloc(DMP_RGN23_SIZE, GFP_KERNEL);
16690 if (!rgn23_data)
16691 goto out;
16692
16693 if (phba->sli_rev < LPFC_SLI_REV4)
16694 data_size = lpfc_sli_get_config_region23(phba, rgn23_data);
16695 else {
16696 if_type = bf_get(lpfc_sli_intf_if_type,
16697 &phba->sli4_hba.sli_intf);
16698 if (if_type == LPFC_SLI_INTF_IF_TYPE_0)
16699 goto out;
16700 data_size = lpfc_sli4_get_config_region23(phba, rgn23_data);
16701 }
James Smarta0c87cb2009-07-19 10:01:10 -040016702
16703 if (!data_size)
16704 goto out;
16705
16706 /* Check the region signature first */
16707 if (memcmp(&rgn23_data[offset], LPFC_REGION23_SIGNATURE, 4)) {
16708 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16709 "2619 Config region 23 has bad signature\n");
16710 goto out;
16711 }
16712 offset += 4;
16713
16714 /* Check the data structure version */
16715 if (rgn23_data[offset] != LPFC_REGION23_VERSION) {
16716 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16717 "2620 Config region 23 has bad version\n");
16718 goto out;
16719 }
16720 offset += 4;
16721
16722 /* Parse TLV entries in the region */
16723 while (offset < data_size) {
16724 if (rgn23_data[offset] == LPFC_REGION23_LAST_REC)
16725 break;
16726 /*
16727 * If the TLV is not driver specific TLV or driver id is
16728 * not linux driver id, skip the record.
16729 */
16730 if ((rgn23_data[offset] != DRIVER_SPECIFIC_TYPE) ||
16731 (rgn23_data[offset + 2] != LINUX_DRIVER_ID) ||
16732 (rgn23_data[offset + 3] != 0)) {
16733 offset += rgn23_data[offset + 1] * 4 + 4;
16734 continue;
16735 }
16736
16737 /* Driver found a driver specific TLV in the config region */
16738 sub_tlv_len = rgn23_data[offset + 1] * 4;
16739 offset += 4;
16740 tlv_offset = 0;
16741
16742 /*
16743 * Search for configured port state sub-TLV.
16744 */
16745 while ((offset < data_size) &&
16746 (tlv_offset < sub_tlv_len)) {
16747 if (rgn23_data[offset] == LPFC_REGION23_LAST_REC) {
16748 offset += 4;
16749 tlv_offset += 4;
16750 break;
16751 }
16752 if (rgn23_data[offset] != PORT_STE_TYPE) {
16753 offset += rgn23_data[offset + 1] * 4 + 4;
16754 tlv_offset += rgn23_data[offset + 1] * 4 + 4;
16755 continue;
16756 }
16757
16758 /* This HBA contains PORT_STE configured */
16759 if (!rgn23_data[offset + 2])
16760 phba->hba_flag |= LINK_DISABLED;
16761
16762 goto out;
16763 }
16764 }
James Smart026abb82011-12-13 13:20:45 -050016765
James Smarta0c87cb2009-07-19 10:01:10 -040016766out:
James Smarta0c87cb2009-07-19 10:01:10 -040016767 kfree(rgn23_data);
16768 return;
16769}
James Smart695a8142010-01-26 23:08:03 -050016770
16771/**
James Smart52d52442011-05-24 11:42:45 -040016772 * lpfc_wr_object - write an object to the firmware
16773 * @phba: HBA structure that indicates port to create a queue on.
16774 * @dmabuf_list: list of dmabufs to write to the port.
16775 * @size: the total byte value of the objects to write to the port.
16776 * @offset: the current offset to be used to start the transfer.
16777 *
16778 * This routine will create a wr_object mailbox command to send to the port.
16779 * the mailbox command will be constructed using the dma buffers described in
16780 * @dmabuf_list to create a list of BDEs. This routine will fill in as many
16781 * BDEs that the imbedded mailbox can support. The @offset variable will be
16782 * used to indicate the starting offset of the transfer and will also return
16783 * the offset after the write object mailbox has completed. @size is used to
16784 * determine the end of the object and whether the eof bit should be set.
16785 *
16786 * Return 0 is successful and offset will contain the the new offset to use
16787 * for the next write.
16788 * Return negative value for error cases.
16789 **/
16790int
16791lpfc_wr_object(struct lpfc_hba *phba, struct list_head *dmabuf_list,
16792 uint32_t size, uint32_t *offset)
16793{
16794 struct lpfc_mbx_wr_object *wr_object;
16795 LPFC_MBOXQ_t *mbox;
16796 int rc = 0, i = 0;
16797 uint32_t shdr_status, shdr_add_status;
16798 uint32_t mbox_tmo;
16799 union lpfc_sli4_cfg_shdr *shdr;
16800 struct lpfc_dmabuf *dmabuf;
16801 uint32_t written = 0;
16802
16803 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16804 if (!mbox)
16805 return -ENOMEM;
16806
16807 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
16808 LPFC_MBOX_OPCODE_WRITE_OBJECT,
16809 sizeof(struct lpfc_mbx_wr_object) -
16810 sizeof(struct lpfc_sli4_cfg_mhdr), LPFC_SLI4_MBX_EMBED);
16811
16812 wr_object = (struct lpfc_mbx_wr_object *)&mbox->u.mqe.un.wr_object;
16813 wr_object->u.request.write_offset = *offset;
16814 sprintf((uint8_t *)wr_object->u.request.object_name, "/");
16815 wr_object->u.request.object_name[0] =
16816 cpu_to_le32(wr_object->u.request.object_name[0]);
16817 bf_set(lpfc_wr_object_eof, &wr_object->u.request, 0);
16818 list_for_each_entry(dmabuf, dmabuf_list, list) {
16819 if (i >= LPFC_MBX_WR_CONFIG_MAX_BDE || written >= size)
16820 break;
16821 wr_object->u.request.bde[i].addrLow = putPaddrLow(dmabuf->phys);
16822 wr_object->u.request.bde[i].addrHigh =
16823 putPaddrHigh(dmabuf->phys);
16824 if (written + SLI4_PAGE_SIZE >= size) {
16825 wr_object->u.request.bde[i].tus.f.bdeSize =
16826 (size - written);
16827 written += (size - written);
16828 bf_set(lpfc_wr_object_eof, &wr_object->u.request, 1);
16829 } else {
16830 wr_object->u.request.bde[i].tus.f.bdeSize =
16831 SLI4_PAGE_SIZE;
16832 written += SLI4_PAGE_SIZE;
16833 }
16834 i++;
16835 }
16836 wr_object->u.request.bde_count = i;
16837 bf_set(lpfc_wr_object_write_length, &wr_object->u.request, written);
16838 if (!phba->sli4_hba.intr_enable)
16839 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
16840 else {
James Smarta183a152011-10-10 21:32:43 -040016841 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart52d52442011-05-24 11:42:45 -040016842 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
16843 }
16844 /* The IOCTL status is embedded in the mailbox subheader. */
16845 shdr = (union lpfc_sli4_cfg_shdr *) &wr_object->header.cfg_shdr;
16846 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
16847 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
16848 if (rc != MBX_TIMEOUT)
16849 mempool_free(mbox, phba->mbox_mem_pool);
16850 if (shdr_status || shdr_add_status || rc) {
16851 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16852 "3025 Write Object mailbox failed with "
16853 "status x%x add_status x%x, mbx status x%x\n",
16854 shdr_status, shdr_add_status, rc);
16855 rc = -ENXIO;
16856 } else
16857 *offset += wr_object->u.response.actual_write_length;
16858 return rc;
16859}
16860
16861/**
James Smart695a8142010-01-26 23:08:03 -050016862 * lpfc_cleanup_pending_mbox - Free up vport discovery mailbox commands.
16863 * @vport: pointer to vport data structure.
16864 *
16865 * This function iterate through the mailboxq and clean up all REG_LOGIN
16866 * and REG_VPI mailbox commands associated with the vport. This function
16867 * is called when driver want to restart discovery of the vport due to
16868 * a Clear Virtual Link event.
16869 **/
16870void
16871lpfc_cleanup_pending_mbox(struct lpfc_vport *vport)
16872{
16873 struct lpfc_hba *phba = vport->phba;
16874 LPFC_MBOXQ_t *mb, *nextmb;
16875 struct lpfc_dmabuf *mp;
James Smart78730cf2010-04-06 15:06:30 -040016876 struct lpfc_nodelist *ndlp;
James Smartd439d282010-09-29 11:18:45 -040016877 struct lpfc_nodelist *act_mbx_ndlp = NULL;
James Smart589a52d2010-07-14 15:30:54 -040016878 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smartd439d282010-09-29 11:18:45 -040016879 LIST_HEAD(mbox_cmd_list);
James Smart63e801c2010-11-20 23:14:19 -050016880 uint8_t restart_loop;
James Smart695a8142010-01-26 23:08:03 -050016881
James Smartd439d282010-09-29 11:18:45 -040016882 /* Clean up internally queued mailbox commands with the vport */
James Smart695a8142010-01-26 23:08:03 -050016883 spin_lock_irq(&phba->hbalock);
16884 list_for_each_entry_safe(mb, nextmb, &phba->sli.mboxq, list) {
16885 if (mb->vport != vport)
16886 continue;
16887
16888 if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) &&
16889 (mb->u.mb.mbxCommand != MBX_REG_VPI))
16890 continue;
16891
James Smartd439d282010-09-29 11:18:45 -040016892 list_del(&mb->list);
16893 list_add_tail(&mb->list, &mbox_cmd_list);
16894 }
16895 /* Clean up active mailbox command with the vport */
16896 mb = phba->sli.mbox_active;
16897 if (mb && (mb->vport == vport)) {
16898 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) ||
16899 (mb->u.mb.mbxCommand == MBX_REG_VPI))
16900 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
16901 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
16902 act_mbx_ndlp = (struct lpfc_nodelist *)mb->context2;
16903 /* Put reference count for delayed processing */
16904 act_mbx_ndlp = lpfc_nlp_get(act_mbx_ndlp);
16905 /* Unregister the RPI when mailbox complete */
16906 mb->mbox_flag |= LPFC_MBX_IMED_UNREG;
16907 }
16908 }
James Smart63e801c2010-11-20 23:14:19 -050016909 /* Cleanup any mailbox completions which are not yet processed */
16910 do {
16911 restart_loop = 0;
16912 list_for_each_entry(mb, &phba->sli.mboxq_cmpl, list) {
16913 /*
16914 * If this mailox is already processed or it is
16915 * for another vport ignore it.
16916 */
16917 if ((mb->vport != vport) ||
16918 (mb->mbox_flag & LPFC_MBX_IMED_UNREG))
16919 continue;
16920
16921 if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) &&
16922 (mb->u.mb.mbxCommand != MBX_REG_VPI))
16923 continue;
16924
16925 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
16926 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
16927 ndlp = (struct lpfc_nodelist *)mb->context2;
16928 /* Unregister the RPI when mailbox complete */
16929 mb->mbox_flag |= LPFC_MBX_IMED_UNREG;
16930 restart_loop = 1;
16931 spin_unlock_irq(&phba->hbalock);
16932 spin_lock(shost->host_lock);
16933 ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
16934 spin_unlock(shost->host_lock);
16935 spin_lock_irq(&phba->hbalock);
16936 break;
16937 }
16938 }
16939 } while (restart_loop);
16940
James Smartd439d282010-09-29 11:18:45 -040016941 spin_unlock_irq(&phba->hbalock);
16942
16943 /* Release the cleaned-up mailbox commands */
16944 while (!list_empty(&mbox_cmd_list)) {
16945 list_remove_head(&mbox_cmd_list, mb, LPFC_MBOXQ_t, list);
James Smart695a8142010-01-26 23:08:03 -050016946 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
16947 mp = (struct lpfc_dmabuf *) (mb->context1);
16948 if (mp) {
16949 __lpfc_mbuf_free(phba, mp->virt, mp->phys);
16950 kfree(mp);
16951 }
James Smart78730cf2010-04-06 15:06:30 -040016952 ndlp = (struct lpfc_nodelist *) mb->context2;
James Smartd439d282010-09-29 11:18:45 -040016953 mb->context2 = NULL;
James Smart78730cf2010-04-06 15:06:30 -040016954 if (ndlp) {
Dan Carpenterec21b3b2010-08-08 00:15:17 +020016955 spin_lock(shost->host_lock);
James Smart589a52d2010-07-14 15:30:54 -040016956 ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
Dan Carpenterec21b3b2010-08-08 00:15:17 +020016957 spin_unlock(shost->host_lock);
James Smart78730cf2010-04-06 15:06:30 -040016958 lpfc_nlp_put(ndlp);
James Smart78730cf2010-04-06 15:06:30 -040016959 }
James Smart695a8142010-01-26 23:08:03 -050016960 }
James Smart695a8142010-01-26 23:08:03 -050016961 mempool_free(mb, phba->mbox_mem_pool);
16962 }
James Smartd439d282010-09-29 11:18:45 -040016963
16964 /* Release the ndlp with the cleaned-up active mailbox command */
16965 if (act_mbx_ndlp) {
16966 spin_lock(shost->host_lock);
16967 act_mbx_ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
16968 spin_unlock(shost->host_lock);
16969 lpfc_nlp_put(act_mbx_ndlp);
James Smart695a8142010-01-26 23:08:03 -050016970 }
James Smart695a8142010-01-26 23:08:03 -050016971}
16972
James Smart2a9bf3d2010-06-07 15:24:45 -040016973/**
16974 * lpfc_drain_txq - Drain the txq
16975 * @phba: Pointer to HBA context object.
16976 *
16977 * This function attempt to submit IOCBs on the txq
16978 * to the adapter. For SLI4 adapters, the txq contains
16979 * ELS IOCBs that have been deferred because the there
16980 * are no SGLs. This congestion can occur with large
16981 * vport counts during node discovery.
16982 **/
16983
16984uint32_t
16985lpfc_drain_txq(struct lpfc_hba *phba)
16986{
16987 LIST_HEAD(completions);
16988 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
Daeseok Youn2e706372014-02-21 09:03:32 +090016989 struct lpfc_iocbq *piocbq = NULL;
James Smart2a9bf3d2010-06-07 15:24:45 -040016990 unsigned long iflags = 0;
16991 char *fail_msg = NULL;
16992 struct lpfc_sglq *sglq;
16993 union lpfc_wqe wqe;
James Smarta2fc4aef2014-09-03 12:57:55 -040016994 uint32_t txq_cnt = 0;
James Smart2a9bf3d2010-06-07 15:24:45 -040016995
James Smart398d81c2013-05-31 17:04:19 -040016996 spin_lock_irqsave(&pring->ring_lock, iflags);
James Smart0e9bb8d2013-03-01 16:35:12 -050016997 list_for_each_entry(piocbq, &pring->txq, list) {
16998 txq_cnt++;
16999 }
17000
17001 if (txq_cnt > pring->txq_max)
17002 pring->txq_max = txq_cnt;
James Smart2a9bf3d2010-06-07 15:24:45 -040017003
James Smart398d81c2013-05-31 17:04:19 -040017004 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smart2a9bf3d2010-06-07 15:24:45 -040017005
James Smart0e9bb8d2013-03-01 16:35:12 -050017006 while (!list_empty(&pring->txq)) {
James Smart398d81c2013-05-31 17:04:19 -040017007 spin_lock_irqsave(&pring->ring_lock, iflags);
James Smart2a9bf3d2010-06-07 15:24:45 -040017008
James Smart19ca7602010-11-20 23:11:55 -050017009 piocbq = lpfc_sli_ringtx_get(phba, pring);
James Smarta6298522012-06-12 13:54:11 -040017010 if (!piocbq) {
James Smart398d81c2013-05-31 17:04:19 -040017011 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smarta6298522012-06-12 13:54:11 -040017012 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
17013 "2823 txq empty and txq_cnt is %d\n ",
James Smart0e9bb8d2013-03-01 16:35:12 -050017014 txq_cnt);
James Smarta6298522012-06-12 13:54:11 -040017015 break;
17016 }
James Smart19ca7602010-11-20 23:11:55 -050017017 sglq = __lpfc_sli_get_sglq(phba, piocbq);
James Smart2a9bf3d2010-06-07 15:24:45 -040017018 if (!sglq) {
James Smart19ca7602010-11-20 23:11:55 -050017019 __lpfc_sli_ringtx_put(phba, pring, piocbq);
James Smart398d81c2013-05-31 17:04:19 -040017020 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smart2a9bf3d2010-06-07 15:24:45 -040017021 break;
James Smart2a9bf3d2010-06-07 15:24:45 -040017022 }
James Smart0e9bb8d2013-03-01 16:35:12 -050017023 txq_cnt--;
James Smart2a9bf3d2010-06-07 15:24:45 -040017024
17025 /* The xri and iocb resources secured,
17026 * attempt to issue request
17027 */
James Smart6d368e52011-05-24 11:44:12 -040017028 piocbq->sli4_lxritag = sglq->sli4_lxritag;
James Smart2a9bf3d2010-06-07 15:24:45 -040017029 piocbq->sli4_xritag = sglq->sli4_xritag;
17030 if (NO_XRI == lpfc_sli4_bpl2sgl(phba, piocbq, sglq))
17031 fail_msg = "to convert bpl to sgl";
17032 else if (lpfc_sli4_iocb2wqe(phba, piocbq, &wqe))
17033 fail_msg = "to convert iocb to wqe";
17034 else if (lpfc_sli4_wq_put(phba->sli4_hba.els_wq, &wqe))
17035 fail_msg = " - Wq is full";
17036 else
17037 lpfc_sli_ringtxcmpl_put(phba, pring, piocbq);
17038
17039 if (fail_msg) {
17040 /* Failed means we can't issue and need to cancel */
17041 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
17042 "2822 IOCB failed %s iotag 0x%x "
17043 "xri 0x%x\n",
17044 fail_msg,
17045 piocbq->iotag, piocbq->sli4_xritag);
17046 list_add_tail(&piocbq->list, &completions);
17047 }
James Smart398d81c2013-05-31 17:04:19 -040017048 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smart2a9bf3d2010-06-07 15:24:45 -040017049 }
17050
James Smart2a9bf3d2010-06-07 15:24:45 -040017051 /* Cancel all the IOCBs that cannot be issued */
17052 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
17053 IOERR_SLI_ABORTED);
17054
James Smart0e9bb8d2013-03-01 16:35:12 -050017055 return txq_cnt;
James Smart2a9bf3d2010-06-07 15:24:45 -040017056}