blob: cea89c6ce1d698f8cabf62266efd93050f395d50 [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}
2216
James Smarte59058c2008-08-24 21:49:00 -04002217/**
James Smart3621a712009-04-06 18:47:14 -04002218 * lpfc_sli_handle_mb_event - Handle mailbox completions from firmware
James Smarte59058c2008-08-24 21:49:00 -04002219 * @phba: Pointer to HBA context object.
2220 *
2221 * This function is called with no lock held. This function processes all
2222 * the completed mailbox commands and gives it to upper layers. The interrupt
2223 * service routine processes mailbox completion interrupt and adds completed
2224 * mailbox commands to the mboxq_cmpl queue and signals the worker thread.
2225 * Worker thread call lpfc_sli_handle_mb_event, which will return the
2226 * completed mailbox commands in mboxq_cmpl queue to the upper layers. This
2227 * function returns the mailbox commands to the upper layer by calling the
2228 * completion handler function of each mailbox.
2229 **/
dea31012005-04-17 16:05:31 -05002230int
James Smart2e0fef82007-06-17 19:56:36 -05002231lpfc_sli_handle_mb_event(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05002232{
James Smart92d7f7b2007-06-17 19:56:38 -05002233 MAILBOX_t *pmbox;
dea31012005-04-17 16:05:31 -05002234 LPFC_MBOXQ_t *pmb;
James Smart92d7f7b2007-06-17 19:56:38 -05002235 int rc;
2236 LIST_HEAD(cmplq);
dea31012005-04-17 16:05:31 -05002237
2238 phba->sli.slistat.mbox_event++;
2239
James Smart92d7f7b2007-06-17 19:56:38 -05002240 /* Get all completed mailboxe buffers into the cmplq */
2241 spin_lock_irq(&phba->hbalock);
2242 list_splice_init(&phba->sli.mboxq_cmpl, &cmplq);
2243 spin_unlock_irq(&phba->hbalock);
2244
dea31012005-04-17 16:05:31 -05002245 /* Get a Mailbox buffer to setup mailbox commands for callback */
James Smart92d7f7b2007-06-17 19:56:38 -05002246 do {
2247 list_remove_head(&cmplq, pmb, LPFC_MBOXQ_t, list);
2248 if (pmb == NULL)
2249 break;
2250
James Smart04c68492009-05-22 14:52:52 -04002251 pmbox = &pmb->u.mb;
dea31012005-04-17 16:05:31 -05002252
James Smart858c9f62007-06-17 19:56:39 -05002253 if (pmbox->mbxCommand != MBX_HEARTBEAT) {
2254 if (pmb->vport) {
2255 lpfc_debugfs_disc_trc(pmb->vport,
2256 LPFC_DISC_TRC_MBOX_VPORT,
2257 "MBOX cmpl vport: cmd:x%x mb:x%x x%x",
2258 (uint32_t)pmbox->mbxCommand,
2259 pmbox->un.varWords[0],
2260 pmbox->un.varWords[1]);
2261 }
2262 else {
2263 lpfc_debugfs_disc_trc(phba->pport,
2264 LPFC_DISC_TRC_MBOX,
2265 "MBOX cmpl: cmd:x%x mb:x%x x%x",
2266 (uint32_t)pmbox->mbxCommand,
2267 pmbox->un.varWords[0],
2268 pmbox->un.varWords[1]);
2269 }
2270 }
2271
dea31012005-04-17 16:05:31 -05002272 /*
2273 * It is a fatal error if unknown mbox command completion.
2274 */
2275 if (lpfc_sli_chk_mbx_command(pmbox->mbxCommand) ==
2276 MBX_SHUTDOWN) {
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002277 /* Unknown mailbox command compl */
James Smart92d7f7b2007-06-17 19:56:38 -05002278 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002279 "(%d):0323 Unknown Mailbox command "
James Smarta183a152011-10-10 21:32:43 -04002280 "x%x (x%x/x%x) Cmpl\n",
James Smart92d7f7b2007-06-17 19:56:38 -05002281 pmb->vport ? pmb->vport->vpi : 0,
James Smart04c68492009-05-22 14:52:52 -04002282 pmbox->mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04002283 lpfc_sli_config_mbox_subsys_get(phba,
2284 pmb),
2285 lpfc_sli_config_mbox_opcode_get(phba,
2286 pmb));
James Smart2e0fef82007-06-17 19:56:36 -05002287 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05002288 phba->work_hs = HS_FFER3;
2289 lpfc_handle_eratt(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05002290 continue;
dea31012005-04-17 16:05:31 -05002291 }
2292
dea31012005-04-17 16:05:31 -05002293 if (pmbox->mbxStatus) {
2294 phba->sli.slistat.mbox_stat_err++;
2295 if (pmbox->mbxStatus == MBXERR_NO_RESOURCES) {
2296 /* Mbox cmd cmpl error - RETRYing */
James Smart92d7f7b2007-06-17 19:56:38 -05002297 lpfc_printf_log(phba, KERN_INFO,
James Smarta183a152011-10-10 21:32:43 -04002298 LOG_MBOX | LOG_SLI,
2299 "(%d):0305 Mbox cmd cmpl "
2300 "error - RETRYing Data: x%x "
2301 "(x%x/x%x) x%x x%x x%x\n",
2302 pmb->vport ? pmb->vport->vpi : 0,
2303 pmbox->mbxCommand,
2304 lpfc_sli_config_mbox_subsys_get(phba,
2305 pmb),
2306 lpfc_sli_config_mbox_opcode_get(phba,
2307 pmb),
2308 pmbox->mbxStatus,
2309 pmbox->un.varWords[0],
2310 pmb->vport->port_state);
dea31012005-04-17 16:05:31 -05002311 pmbox->mbxStatus = 0;
2312 pmbox->mbxOwner = OWN_HOST;
dea31012005-04-17 16:05:31 -05002313 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
James Smart04c68492009-05-22 14:52:52 -04002314 if (rc != MBX_NOT_FINISHED)
James Smart92d7f7b2007-06-17 19:56:38 -05002315 continue;
dea31012005-04-17 16:05:31 -05002316 }
2317 }
2318
2319 /* Mailbox cmd <cmd> Cmpl <cmpl> */
James Smart92d7f7b2007-06-17 19:56:38 -05002320 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04002321 "(%d):0307 Mailbox cmd x%x (x%x/x%x) Cmpl x%p "
James Smarte74c03c2013-04-17 20:15:19 -04002322 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x "
2323 "x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05002324 pmb->vport ? pmb->vport->vpi : 0,
dea31012005-04-17 16:05:31 -05002325 pmbox->mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04002326 lpfc_sli_config_mbox_subsys_get(phba, pmb),
2327 lpfc_sli_config_mbox_opcode_get(phba, pmb),
dea31012005-04-17 16:05:31 -05002328 pmb->mbox_cmpl,
2329 *((uint32_t *) pmbox),
2330 pmbox->un.varWords[0],
2331 pmbox->un.varWords[1],
2332 pmbox->un.varWords[2],
2333 pmbox->un.varWords[3],
2334 pmbox->un.varWords[4],
2335 pmbox->un.varWords[5],
2336 pmbox->un.varWords[6],
James Smarte74c03c2013-04-17 20:15:19 -04002337 pmbox->un.varWords[7],
2338 pmbox->un.varWords[8],
2339 pmbox->un.varWords[9],
2340 pmbox->un.varWords[10]);
dea31012005-04-17 16:05:31 -05002341
James Smart92d7f7b2007-06-17 19:56:38 -05002342 if (pmb->mbox_cmpl)
dea31012005-04-17 16:05:31 -05002343 pmb->mbox_cmpl(phba,pmb);
James Smart92d7f7b2007-06-17 19:56:38 -05002344 } while (1);
James Smart2e0fef82007-06-17 19:56:36 -05002345 return 0;
dea31012005-04-17 16:05:31 -05002346}
James Smart92d7f7b2007-06-17 19:56:38 -05002347
James Smarte59058c2008-08-24 21:49:00 -04002348/**
James Smart3621a712009-04-06 18:47:14 -04002349 * lpfc_sli_get_buff - Get the buffer associated with the buffer tag
James Smarte59058c2008-08-24 21:49:00 -04002350 * @phba: Pointer to HBA context object.
2351 * @pring: Pointer to driver SLI ring object.
2352 * @tag: buffer tag.
2353 *
2354 * This function is called with no lock held. When QUE_BUFTAG_BIT bit
2355 * is set in the tag the buffer is posted for a particular exchange,
2356 * the function will return the buffer without replacing the buffer.
2357 * If the buffer is for unsolicited ELS or CT traffic, this function
2358 * returns the buffer and also posts another buffer to the firmware.
2359 **/
James Smart76bb24e2007-10-27 13:38:00 -04002360static struct lpfc_dmabuf *
2361lpfc_sli_get_buff(struct lpfc_hba *phba,
James Smart9f1e1b52008-12-04 22:39:40 -05002362 struct lpfc_sli_ring *pring,
2363 uint32_t tag)
James Smart76bb24e2007-10-27 13:38:00 -04002364{
James Smart9f1e1b52008-12-04 22:39:40 -05002365 struct hbq_dmabuf *hbq_entry;
2366
James Smart76bb24e2007-10-27 13:38:00 -04002367 if (tag & QUE_BUFTAG_BIT)
2368 return lpfc_sli_ring_taggedbuf_get(phba, pring, tag);
James Smart9f1e1b52008-12-04 22:39:40 -05002369 hbq_entry = lpfc_sli_hbqbuf_find(phba, tag);
2370 if (!hbq_entry)
2371 return NULL;
2372 return &hbq_entry->dbuf;
James Smart76bb24e2007-10-27 13:38:00 -04002373}
James Smart57127f12007-10-27 13:37:05 -04002374
James Smart3772a992009-05-22 14:50:54 -04002375/**
2376 * lpfc_complete_unsol_iocb - Complete an unsolicited sequence
2377 * @phba: Pointer to HBA context object.
2378 * @pring: Pointer to driver SLI ring object.
2379 * @saveq: Pointer to the iocbq struct representing the sequence starting frame.
2380 * @fch_r_ctl: the r_ctl for the first frame of the sequence.
2381 * @fch_type: the type for the first frame of the sequence.
2382 *
2383 * This function is called with no lock held. This function uses the r_ctl and
2384 * type of the received sequence to find the correct callback function to call
2385 * to process the sequence.
2386 **/
2387static int
2388lpfc_complete_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2389 struct lpfc_iocbq *saveq, uint32_t fch_r_ctl,
2390 uint32_t fch_type)
2391{
2392 int i;
2393
2394 /* unSolicited Responses */
2395 if (pring->prt[0].profile) {
2396 if (pring->prt[0].lpfc_sli_rcv_unsol_event)
2397 (pring->prt[0].lpfc_sli_rcv_unsol_event) (phba, pring,
2398 saveq);
2399 return 1;
2400 }
2401 /* We must search, based on rctl / type
2402 for the right routine */
2403 for (i = 0; i < pring->num_mask; i++) {
2404 if ((pring->prt[i].rctl == fch_r_ctl) &&
2405 (pring->prt[i].type == fch_type)) {
2406 if (pring->prt[i].lpfc_sli_rcv_unsol_event)
2407 (pring->prt[i].lpfc_sli_rcv_unsol_event)
2408 (phba, pring, saveq);
2409 return 1;
2410 }
2411 }
2412 return 0;
2413}
James Smarte59058c2008-08-24 21:49:00 -04002414
2415/**
James Smart3621a712009-04-06 18:47:14 -04002416 * lpfc_sli_process_unsol_iocb - Unsolicited iocb handler
James Smarte59058c2008-08-24 21:49:00 -04002417 * @phba: Pointer to HBA context object.
2418 * @pring: Pointer to driver SLI ring object.
2419 * @saveq: Pointer to the unsolicited iocb.
2420 *
2421 * This function is called with no lock held by the ring event handler
2422 * when there is an unsolicited iocb posted to the response ring by the
2423 * firmware. This function gets the buffer associated with the iocbs
2424 * and calls the event handler for the ring. This function handles both
2425 * qring buffers and hbq buffers.
2426 * When the function returns 1 the caller can free the iocb object otherwise
2427 * upper layer functions will free the iocb objects.
2428 **/
dea31012005-04-17 16:05:31 -05002429static int
2430lpfc_sli_process_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2431 struct lpfc_iocbq *saveq)
2432{
2433 IOCB_t * irsp;
2434 WORD5 * w5p;
2435 uint32_t Rctl, Type;
James Smart76bb24e2007-10-27 13:38:00 -04002436 struct lpfc_iocbq *iocbq;
James Smart3163f722008-02-08 18:50:25 -05002437 struct lpfc_dmabuf *dmzbuf;
dea31012005-04-17 16:05:31 -05002438
dea31012005-04-17 16:05:31 -05002439 irsp = &(saveq->iocb);
James Smart57127f12007-10-27 13:37:05 -04002440
2441 if (irsp->ulpCommand == CMD_ASYNC_STATUS) {
2442 if (pring->lpfc_sli_rcv_async_status)
2443 pring->lpfc_sli_rcv_async_status(phba, pring, saveq);
2444 else
2445 lpfc_printf_log(phba,
2446 KERN_WARNING,
2447 LOG_SLI,
2448 "0316 Ring %d handler: unexpected "
2449 "ASYNC_STATUS iocb received evt_code "
2450 "0x%x\n",
2451 pring->ringno,
2452 irsp->un.asyncstat.evt_code);
2453 return 1;
2454 }
2455
James Smart3163f722008-02-08 18:50:25 -05002456 if ((irsp->ulpCommand == CMD_IOCB_RET_XRI64_CX) &&
2457 (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED)) {
2458 if (irsp->ulpBdeCount > 0) {
2459 dmzbuf = lpfc_sli_get_buff(phba, pring,
2460 irsp->un.ulpWord[3]);
2461 lpfc_in_buf_free(phba, dmzbuf);
2462 }
2463
2464 if (irsp->ulpBdeCount > 1) {
2465 dmzbuf = lpfc_sli_get_buff(phba, pring,
2466 irsp->unsli3.sli3Words[3]);
2467 lpfc_in_buf_free(phba, dmzbuf);
2468 }
2469
2470 if (irsp->ulpBdeCount > 2) {
2471 dmzbuf = lpfc_sli_get_buff(phba, pring,
2472 irsp->unsli3.sli3Words[7]);
2473 lpfc_in_buf_free(phba, dmzbuf);
2474 }
2475
2476 return 1;
2477 }
2478
James Smart92d7f7b2007-06-17 19:56:38 -05002479 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
James Smart76bb24e2007-10-27 13:38:00 -04002480 if (irsp->ulpBdeCount != 0) {
2481 saveq->context2 = lpfc_sli_get_buff(phba, pring,
James Smart92d7f7b2007-06-17 19:56:38 -05002482 irsp->un.ulpWord[3]);
James Smart76bb24e2007-10-27 13:38:00 -04002483 if (!saveq->context2)
2484 lpfc_printf_log(phba,
2485 KERN_ERR,
2486 LOG_SLI,
2487 "0341 Ring %d Cannot find buffer for "
2488 "an unsolicited iocb. tag 0x%x\n",
2489 pring->ringno,
2490 irsp->un.ulpWord[3]);
James Smart76bb24e2007-10-27 13:38:00 -04002491 }
2492 if (irsp->ulpBdeCount == 2) {
2493 saveq->context3 = lpfc_sli_get_buff(phba, pring,
James Smart51ef4c22007-08-02 11:10:31 -04002494 irsp->unsli3.sli3Words[7]);
James Smart76bb24e2007-10-27 13:38:00 -04002495 if (!saveq->context3)
2496 lpfc_printf_log(phba,
2497 KERN_ERR,
2498 LOG_SLI,
2499 "0342 Ring %d Cannot find buffer for an"
2500 " unsolicited iocb. tag 0x%x\n",
2501 pring->ringno,
2502 irsp->unsli3.sli3Words[7]);
2503 }
2504 list_for_each_entry(iocbq, &saveq->list, list) {
James Smart76bb24e2007-10-27 13:38:00 -04002505 irsp = &(iocbq->iocb);
James Smart76bb24e2007-10-27 13:38:00 -04002506 if (irsp->ulpBdeCount != 0) {
2507 iocbq->context2 = lpfc_sli_get_buff(phba, pring,
2508 irsp->un.ulpWord[3]);
James Smart9c2face2008-01-11 01:53:18 -05002509 if (!iocbq->context2)
James Smart76bb24e2007-10-27 13:38:00 -04002510 lpfc_printf_log(phba,
2511 KERN_ERR,
2512 LOG_SLI,
2513 "0343 Ring %d Cannot find "
2514 "buffer for an unsolicited iocb"
2515 ". tag 0x%x\n", pring->ringno,
2516 irsp->un.ulpWord[3]);
2517 }
2518 if (irsp->ulpBdeCount == 2) {
2519 iocbq->context3 = lpfc_sli_get_buff(phba, pring,
2520 irsp->unsli3.sli3Words[7]);
James Smart9c2face2008-01-11 01:53:18 -05002521 if (!iocbq->context3)
James Smart76bb24e2007-10-27 13:38:00 -04002522 lpfc_printf_log(phba,
2523 KERN_ERR,
2524 LOG_SLI,
2525 "0344 Ring %d Cannot find "
2526 "buffer for an unsolicited "
2527 "iocb. tag 0x%x\n",
2528 pring->ringno,
2529 irsp->unsli3.sli3Words[7]);
2530 }
2531 }
James Smart92d7f7b2007-06-17 19:56:38 -05002532 }
James Smart9c2face2008-01-11 01:53:18 -05002533 if (irsp->ulpBdeCount != 0 &&
2534 (irsp->ulpCommand == CMD_IOCB_RCV_CONT64_CX ||
2535 irsp->ulpStatus == IOSTAT_INTERMED_RSP)) {
2536 int found = 0;
2537
2538 /* search continue save q for same XRI */
2539 list_for_each_entry(iocbq, &pring->iocb_continue_saveq, clist) {
James Smart7851fe22011-07-22 18:36:52 -04002540 if (iocbq->iocb.unsli3.rcvsli3.ox_id ==
2541 saveq->iocb.unsli3.rcvsli3.ox_id) {
James Smart9c2face2008-01-11 01:53:18 -05002542 list_add_tail(&saveq->list, &iocbq->list);
2543 found = 1;
2544 break;
2545 }
2546 }
2547 if (!found)
2548 list_add_tail(&saveq->clist,
2549 &pring->iocb_continue_saveq);
2550 if (saveq->iocb.ulpStatus != IOSTAT_INTERMED_RSP) {
2551 list_del_init(&iocbq->clist);
2552 saveq = iocbq;
2553 irsp = &(saveq->iocb);
2554 } else
2555 return 0;
2556 }
2557 if ((irsp->ulpCommand == CMD_RCV_ELS_REQ64_CX) ||
2558 (irsp->ulpCommand == CMD_RCV_ELS_REQ_CX) ||
2559 (irsp->ulpCommand == CMD_IOCB_RCV_ELS64_CX)) {
James Smart6a9c52c2009-10-02 15:16:51 -04002560 Rctl = FC_RCTL_ELS_REQ;
2561 Type = FC_TYPE_ELS;
James Smart9c2face2008-01-11 01:53:18 -05002562 } else {
2563 w5p = (WORD5 *)&(saveq->iocb.un.ulpWord[5]);
2564 Rctl = w5p->hcsw.Rctl;
2565 Type = w5p->hcsw.Type;
2566
2567 /* Firmware Workaround */
2568 if ((Rctl == 0) && (pring->ringno == LPFC_ELS_RING) &&
2569 (irsp->ulpCommand == CMD_RCV_SEQUENCE64_CX ||
2570 irsp->ulpCommand == CMD_IOCB_RCV_SEQ64_CX)) {
James Smart6a9c52c2009-10-02 15:16:51 -04002571 Rctl = FC_RCTL_ELS_REQ;
2572 Type = FC_TYPE_ELS;
James Smart9c2face2008-01-11 01:53:18 -05002573 w5p->hcsw.Rctl = Rctl;
2574 w5p->hcsw.Type = Type;
2575 }
2576 }
James Smart92d7f7b2007-06-17 19:56:38 -05002577
James Smart3772a992009-05-22 14:50:54 -04002578 if (!lpfc_complete_unsol_iocb(phba, pring, saveq, Rctl, Type))
James Smart92d7f7b2007-06-17 19:56:38 -05002579 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002580 "0313 Ring %d handler: unexpected Rctl x%x "
James Smart92d7f7b2007-06-17 19:56:38 -05002581 "Type x%x received\n",
James Smarte8b62012007-08-02 11:10:09 -04002582 pring->ringno, Rctl, Type);
James Smart3772a992009-05-22 14:50:54 -04002583
James Smart92d7f7b2007-06-17 19:56:38 -05002584 return 1;
dea31012005-04-17 16:05:31 -05002585}
2586
James Smarte59058c2008-08-24 21:49:00 -04002587/**
James Smart3621a712009-04-06 18:47:14 -04002588 * lpfc_sli_iocbq_lookup - Find command iocb for the given response iocb
James Smarte59058c2008-08-24 21:49:00 -04002589 * @phba: Pointer to HBA context object.
2590 * @pring: Pointer to driver SLI ring object.
2591 * @prspiocb: Pointer to response iocb object.
2592 *
2593 * This function looks up the iocb_lookup table to get the command iocb
2594 * corresponding to the given response iocb using the iotag of the
2595 * response iocb. This function is called with the hbalock held.
2596 * This function returns the command iocb object if it finds the command
2597 * iocb else returns NULL.
2598 **/
dea31012005-04-17 16:05:31 -05002599static struct lpfc_iocbq *
James Smart2e0fef82007-06-17 19:56:36 -05002600lpfc_sli_iocbq_lookup(struct lpfc_hba *phba,
2601 struct lpfc_sli_ring *pring,
2602 struct lpfc_iocbq *prspiocb)
dea31012005-04-17 16:05:31 -05002603{
dea31012005-04-17 16:05:31 -05002604 struct lpfc_iocbq *cmd_iocb = NULL;
2605 uint16_t iotag;
2606
James Bottomley604a3e32005-10-29 10:28:33 -05002607 iotag = prspiocb->iocb.ulpIoTag;
dea31012005-04-17 16:05:31 -05002608
James Bottomley604a3e32005-10-29 10:28:33 -05002609 if (iotag != 0 && iotag <= phba->sli.last_iotag) {
2610 cmd_iocb = phba->sli.iocbq_lookup[iotag];
James Smart92d7f7b2007-06-17 19:56:38 -05002611 list_del_init(&cmd_iocb->list);
James Smart4f2e66c2012-05-09 21:17:07 -04002612 if (cmd_iocb->iocb_flag & LPFC_IO_ON_TXCMPLQ) {
James Smart4f2e66c2012-05-09 21:17:07 -04002613 cmd_iocb->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
James Smart2a9bf3d2010-06-07 15:24:45 -04002614 }
James Bottomley604a3e32005-10-29 10:28:33 -05002615 return cmd_iocb;
dea31012005-04-17 16:05:31 -05002616 }
2617
dea31012005-04-17 16:05:31 -05002618 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002619 "0317 iotag x%x is out off "
James Bottomley604a3e32005-10-29 10:28:33 -05002620 "range: max iotag x%x wd0 x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04002621 iotag, phba->sli.last_iotag,
James Bottomley604a3e32005-10-29 10:28:33 -05002622 *(((uint32_t *) &prspiocb->iocb) + 7));
dea31012005-04-17 16:05:31 -05002623 return NULL;
2624}
2625
James Smarte59058c2008-08-24 21:49:00 -04002626/**
James Smart3772a992009-05-22 14:50:54 -04002627 * lpfc_sli_iocbq_lookup_by_tag - Find command iocb for the iotag
2628 * @phba: Pointer to HBA context object.
2629 * @pring: Pointer to driver SLI ring object.
2630 * @iotag: IOCB tag.
2631 *
2632 * This function looks up the iocb_lookup table to get the command iocb
2633 * corresponding to the given iotag. This function is called with the
2634 * hbalock held.
2635 * This function returns the command iocb object if it finds the command
2636 * iocb else returns NULL.
2637 **/
2638static struct lpfc_iocbq *
2639lpfc_sli_iocbq_lookup_by_tag(struct lpfc_hba *phba,
2640 struct lpfc_sli_ring *pring, uint16_t iotag)
2641{
2642 struct lpfc_iocbq *cmd_iocb;
2643
2644 if (iotag != 0 && iotag <= phba->sli.last_iotag) {
2645 cmd_iocb = phba->sli.iocbq_lookup[iotag];
James Smart4f2e66c2012-05-09 21:17:07 -04002646 if (cmd_iocb->iocb_flag & LPFC_IO_ON_TXCMPLQ) {
2647 /* remove from txcmpl queue list */
2648 list_del_init(&cmd_iocb->list);
2649 cmd_iocb->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
James Smart4f2e66c2012-05-09 21:17:07 -04002650 return cmd_iocb;
James Smart2a9bf3d2010-06-07 15:24:45 -04002651 }
James Smart3772a992009-05-22 14:50:54 -04002652 }
James Smart3772a992009-05-22 14:50:54 -04002653 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2654 "0372 iotag x%x is out off range: max iotag (x%x)\n",
2655 iotag, phba->sli.last_iotag);
2656 return NULL;
2657}
2658
2659/**
James Smart3621a712009-04-06 18:47:14 -04002660 * lpfc_sli_process_sol_iocb - process solicited iocb completion
James Smarte59058c2008-08-24 21:49:00 -04002661 * @phba: Pointer to HBA context object.
2662 * @pring: Pointer to driver SLI ring object.
2663 * @saveq: Pointer to the response iocb to be processed.
2664 *
2665 * This function is called by the ring event handler for non-fcp
2666 * rings when there is a new response iocb in the response ring.
2667 * The caller is not required to hold any locks. This function
2668 * gets the command iocb associated with the response iocb and
2669 * calls the completion handler for the command iocb. If there
2670 * is no completion handler, the function will free the resources
2671 * associated with command iocb. If the response iocb is for
2672 * an already aborted command iocb, the status of the completion
2673 * is changed to IOSTAT_LOCAL_REJECT/IOERR_SLI_ABORTED.
2674 * This function always returns 1.
2675 **/
dea31012005-04-17 16:05:31 -05002676static int
James Smart2e0fef82007-06-17 19:56:36 -05002677lpfc_sli_process_sol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
dea31012005-04-17 16:05:31 -05002678 struct lpfc_iocbq *saveq)
2679{
James Smart2e0fef82007-06-17 19:56:36 -05002680 struct lpfc_iocbq *cmdiocbp;
dea31012005-04-17 16:05:31 -05002681 int rc = 1;
2682 unsigned long iflag;
2683
2684 /* Based on the iotag field, get the cmd IOCB from the txcmplq */
James Smart2e0fef82007-06-17 19:56:36 -05002685 spin_lock_irqsave(&phba->hbalock, iflag);
James Bottomley604a3e32005-10-29 10:28:33 -05002686 cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring, saveq);
James Smart2e0fef82007-06-17 19:56:36 -05002687 spin_unlock_irqrestore(&phba->hbalock, iflag);
2688
dea31012005-04-17 16:05:31 -05002689 if (cmdiocbp) {
2690 if (cmdiocbp->iocb_cmpl) {
2691 /*
James Smartea2151b2008-09-07 11:52:10 -04002692 * If an ELS command failed send an event to mgmt
2693 * application.
2694 */
2695 if (saveq->iocb.ulpStatus &&
2696 (pring->ringno == LPFC_ELS_RING) &&
2697 (cmdiocbp->iocb.ulpCommand ==
2698 CMD_ELS_REQUEST64_CR))
2699 lpfc_send_els_failure_event(phba,
2700 cmdiocbp, saveq);
2701
2702 /*
dea31012005-04-17 16:05:31 -05002703 * Post all ELS completions to the worker thread.
2704 * All other are passed to the completion callback.
2705 */
2706 if (pring->ringno == LPFC_ELS_RING) {
James Smart341af102010-01-26 23:07:37 -05002707 if ((phba->sli_rev < LPFC_SLI_REV4) &&
2708 (cmdiocbp->iocb_flag &
2709 LPFC_DRIVER_ABORTED)) {
2710 spin_lock_irqsave(&phba->hbalock,
2711 iflag);
James Smart07951072007-04-25 09:51:38 -04002712 cmdiocbp->iocb_flag &=
2713 ~LPFC_DRIVER_ABORTED;
James Smart341af102010-01-26 23:07:37 -05002714 spin_unlock_irqrestore(&phba->hbalock,
2715 iflag);
James Smart07951072007-04-25 09:51:38 -04002716 saveq->iocb.ulpStatus =
2717 IOSTAT_LOCAL_REJECT;
2718 saveq->iocb.un.ulpWord[4] =
2719 IOERR_SLI_ABORTED;
James Smart0ff10d42008-01-11 01:52:36 -05002720
2721 /* Firmware could still be in progress
2722 * of DMAing payload, so don't free data
2723 * buffer till after a hbeat.
2724 */
James Smart341af102010-01-26 23:07:37 -05002725 spin_lock_irqsave(&phba->hbalock,
2726 iflag);
James Smart0ff10d42008-01-11 01:52:36 -05002727 saveq->iocb_flag |= LPFC_DELAY_MEM_FREE;
James Smart341af102010-01-26 23:07:37 -05002728 spin_unlock_irqrestore(&phba->hbalock,
2729 iflag);
2730 }
James Smart0f65ff62010-02-26 14:14:23 -05002731 if (phba->sli_rev == LPFC_SLI_REV4) {
2732 if (saveq->iocb_flag &
2733 LPFC_EXCHANGE_BUSY) {
2734 /* Set cmdiocb flag for the
2735 * exchange busy so sgl (xri)
2736 * will not be released until
2737 * the abort xri is received
2738 * from hba.
2739 */
2740 spin_lock_irqsave(
2741 &phba->hbalock, iflag);
2742 cmdiocbp->iocb_flag |=
2743 LPFC_EXCHANGE_BUSY;
2744 spin_unlock_irqrestore(
2745 &phba->hbalock, iflag);
2746 }
2747 if (cmdiocbp->iocb_flag &
2748 LPFC_DRIVER_ABORTED) {
2749 /*
2750 * Clear LPFC_DRIVER_ABORTED
2751 * bit in case it was driver
2752 * initiated abort.
2753 */
2754 spin_lock_irqsave(
2755 &phba->hbalock, iflag);
2756 cmdiocbp->iocb_flag &=
2757 ~LPFC_DRIVER_ABORTED;
2758 spin_unlock_irqrestore(
2759 &phba->hbalock, iflag);
2760 cmdiocbp->iocb.ulpStatus =
2761 IOSTAT_LOCAL_REJECT;
2762 cmdiocbp->iocb.un.ulpWord[4] =
2763 IOERR_ABORT_REQUESTED;
2764 /*
2765 * For SLI4, irsiocb contains
2766 * NO_XRI in sli_xritag, it
2767 * shall not affect releasing
2768 * sgl (xri) process.
2769 */
2770 saveq->iocb.ulpStatus =
2771 IOSTAT_LOCAL_REJECT;
2772 saveq->iocb.un.ulpWord[4] =
2773 IOERR_SLI_ABORTED;
2774 spin_lock_irqsave(
2775 &phba->hbalock, iflag);
2776 saveq->iocb_flag |=
2777 LPFC_DELAY_MEM_FREE;
2778 spin_unlock_irqrestore(
2779 &phba->hbalock, iflag);
2780 }
James Smart07951072007-04-25 09:51:38 -04002781 }
dea31012005-04-17 16:05:31 -05002782 }
James Smart2e0fef82007-06-17 19:56:36 -05002783 (cmdiocbp->iocb_cmpl) (phba, cmdiocbp, saveq);
James Bottomley604a3e32005-10-29 10:28:33 -05002784 } else
2785 lpfc_sli_release_iocbq(phba, cmdiocbp);
dea31012005-04-17 16:05:31 -05002786 } else {
2787 /*
2788 * Unknown initiating command based on the response iotag.
2789 * This could be the case on the ELS ring because of
2790 * lpfc_els_abort().
2791 */
2792 if (pring->ringno != LPFC_ELS_RING) {
2793 /*
2794 * Ring <ringno> handler: unexpected completion IoTag
2795 * <IoTag>
2796 */
James Smarta257bf92009-04-06 18:48:10 -04002797 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002798 "0322 Ring %d handler: "
2799 "unexpected completion IoTag x%x "
2800 "Data: x%x x%x x%x x%x\n",
2801 pring->ringno,
2802 saveq->iocb.ulpIoTag,
2803 saveq->iocb.ulpStatus,
2804 saveq->iocb.un.ulpWord[4],
2805 saveq->iocb.ulpCommand,
2806 saveq->iocb.ulpContext);
dea31012005-04-17 16:05:31 -05002807 }
2808 }
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04002809
dea31012005-04-17 16:05:31 -05002810 return rc;
2811}
2812
James Smarte59058c2008-08-24 21:49:00 -04002813/**
James Smart3621a712009-04-06 18:47:14 -04002814 * lpfc_sli_rsp_pointers_error - Response ring pointer error handler
James Smarte59058c2008-08-24 21:49:00 -04002815 * @phba: Pointer to HBA context object.
2816 * @pring: Pointer to driver SLI ring object.
2817 *
2818 * This function is called from the iocb ring event handlers when
2819 * put pointer is ahead of the get pointer for a ring. This function signal
2820 * an error attention condition to the worker thread and the worker
2821 * thread will transition the HBA to offline state.
2822 **/
James Smart2e0fef82007-06-17 19:56:36 -05002823static void
2824lpfc_sli_rsp_pointers_error(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002825{
James Smart34b02dc2008-08-24 21:49:55 -04002826 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002827 /*
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02002828 * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002829 * rsp ring <portRspMax>
2830 */
2831 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002832 "0312 Ring %d handler: portRspPut %d "
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02002833 "is bigger than rsp ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -04002834 pring->ringno, le32_to_cpu(pgp->rspPutInx),
James Smart7e56aa22012-08-03 12:35:34 -04002835 pring->sli.sli3.numRiocb);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002836
James Smart2e0fef82007-06-17 19:56:36 -05002837 phba->link_state = LPFC_HBA_ERROR;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002838
2839 /*
2840 * All error attention handlers are posted to
2841 * worker thread
2842 */
2843 phba->work_ha |= HA_ERATT;
2844 phba->work_hs = HS_FFER3;
James Smart92d7f7b2007-06-17 19:56:38 -05002845
James Smart5e9d9b82008-06-14 22:52:53 -04002846 lpfc_worker_wake_up(phba);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002847
2848 return;
2849}
2850
James Smarte59058c2008-08-24 21:49:00 -04002851/**
James Smart3621a712009-04-06 18:47:14 -04002852 * lpfc_poll_eratt - Error attention polling timer timeout handler
James Smart93996272008-08-24 21:50:30 -04002853 * @ptr: Pointer to address of HBA context object.
2854 *
2855 * This function is invoked by the Error Attention polling timer when the
2856 * timer times out. It will check the SLI Error Attention register for
2857 * possible attention events. If so, it will post an Error Attention event
2858 * and wake up worker thread to process it. Otherwise, it will set up the
2859 * Error Attention polling timer for the next poll.
2860 **/
2861void lpfc_poll_eratt(unsigned long ptr)
2862{
2863 struct lpfc_hba *phba;
James Smarteb016562014-09-03 12:58:06 -04002864 uint32_t eratt = 0;
James Smartaa6fbb72012-08-03 12:36:03 -04002865 uint64_t sli_intr, cnt;
James Smart93996272008-08-24 21:50:30 -04002866
2867 phba = (struct lpfc_hba *)ptr;
2868
James Smartaa6fbb72012-08-03 12:36:03 -04002869 /* Here we will also keep track of interrupts per sec of the hba */
2870 sli_intr = phba->sli.slistat.sli_intr;
2871
2872 if (phba->sli.slistat.sli_prev_intr > sli_intr)
2873 cnt = (((uint64_t)(-1) - phba->sli.slistat.sli_prev_intr) +
2874 sli_intr);
2875 else
2876 cnt = (sli_intr - phba->sli.slistat.sli_prev_intr);
2877
2878 /* 64-bit integer division not supporte on 32-bit x86 - use do_div */
James Smarteb016562014-09-03 12:58:06 -04002879 do_div(cnt, LPFC_ERATT_POLL_INTERVAL);
James Smartaa6fbb72012-08-03 12:36:03 -04002880 phba->sli.slistat.sli_ips = cnt;
2881
2882 phba->sli.slistat.sli_prev_intr = sli_intr;
2883
James Smart93996272008-08-24 21:50:30 -04002884 /* Check chip HA register for error event */
2885 eratt = lpfc_sli_check_eratt(phba);
2886
2887 if (eratt)
2888 /* Tell the worker thread there is work to do */
2889 lpfc_worker_wake_up(phba);
2890 else
2891 /* Restart the timer for next eratt poll */
James Smart256ec0d2013-04-17 20:14:58 -04002892 mod_timer(&phba->eratt_poll,
2893 jiffies +
2894 msecs_to_jiffies(1000 * LPFC_ERATT_POLL_INTERVAL));
James Smart93996272008-08-24 21:50:30 -04002895 return;
2896}
2897
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002898
James Smarte59058c2008-08-24 21:49:00 -04002899/**
James Smart3621a712009-04-06 18:47:14 -04002900 * lpfc_sli_handle_fast_ring_event - Handle ring events on FCP ring
James Smarte59058c2008-08-24 21:49:00 -04002901 * @phba: Pointer to HBA context object.
2902 * @pring: Pointer to driver SLI ring object.
2903 * @mask: Host attention register mask for this ring.
2904 *
2905 * This function is called from the interrupt context when there is a ring
2906 * event for the fcp ring. The caller does not hold any lock.
2907 * The function processes each response iocb in the response ring until it
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002908 * finds an iocb with LE bit set and chains all the iocbs up to the iocb with
James Smarte59058c2008-08-24 21:49:00 -04002909 * LE bit set. The function will call the completion handler of the command iocb
2910 * if the response iocb indicates a completion for a command iocb or it is
2911 * an abort completion. The function will call lpfc_sli_process_unsol_iocb
2912 * function if this is an unsolicited iocb.
dea31012005-04-17 16:05:31 -05002913 * This routine presumes LPFC_FCP_RING handling and doesn't bother
James Smart45ed1192009-10-02 15:17:02 -04002914 * to check it explicitly.
2915 */
2916int
James Smart2e0fef82007-06-17 19:56:36 -05002917lpfc_sli_handle_fast_ring_event(struct lpfc_hba *phba,
2918 struct lpfc_sli_ring *pring, uint32_t mask)
dea31012005-04-17 16:05:31 -05002919{
James Smart34b02dc2008-08-24 21:49:55 -04002920 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
dea31012005-04-17 16:05:31 -05002921 IOCB_t *irsp = NULL;
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04002922 IOCB_t *entry = NULL;
dea31012005-04-17 16:05:31 -05002923 struct lpfc_iocbq *cmdiocbq = NULL;
2924 struct lpfc_iocbq rspiocbq;
dea31012005-04-17 16:05:31 -05002925 uint32_t status;
2926 uint32_t portRspPut, portRspMax;
2927 int rc = 1;
2928 lpfc_iocb_type type;
2929 unsigned long iflag;
2930 uint32_t rsp_cmpl = 0;
dea31012005-04-17 16:05:31 -05002931
James Smart2e0fef82007-06-17 19:56:36 -05002932 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05002933 pring->stats.iocb_event++;
2934
dea31012005-04-17 16:05:31 -05002935 /*
2936 * The next available response entry should never exceed the maximum
2937 * entries. If it does, treat it as an adapter hardware error.
2938 */
James Smart7e56aa22012-08-03 12:35:34 -04002939 portRspMax = pring->sli.sli3.numRiocb;
dea31012005-04-17 16:05:31 -05002940 portRspPut = le32_to_cpu(pgp->rspPutInx);
2941 if (unlikely(portRspPut >= portRspMax)) {
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002942 lpfc_sli_rsp_pointers_error(phba, pring);
James Smart2e0fef82007-06-17 19:56:36 -05002943 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05002944 return 1;
2945 }
James Smart45ed1192009-10-02 15:17:02 -04002946 if (phba->fcp_ring_in_use) {
2947 spin_unlock_irqrestore(&phba->hbalock, iflag);
2948 return 1;
2949 } else
2950 phba->fcp_ring_in_use = 1;
dea31012005-04-17 16:05:31 -05002951
2952 rmb();
James Smart7e56aa22012-08-03 12:35:34 -04002953 while (pring->sli.sli3.rspidx != portRspPut) {
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04002954 /*
2955 * Fetch an entry off the ring and copy it into a local data
2956 * structure. The copy involves a byte-swap since the
2957 * network byte order and pci byte orders are different.
2958 */
James Smarted957682007-06-17 19:56:37 -05002959 entry = lpfc_resp_iocb(phba, pring);
James Smart858c9f62007-06-17 19:56:39 -05002960 phba->last_completion_time = jiffies;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002961
James Smart7e56aa22012-08-03 12:35:34 -04002962 if (++pring->sli.sli3.rspidx >= portRspMax)
2963 pring->sli.sli3.rspidx = 0;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002964
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04002965 lpfc_sli_pcimem_bcopy((uint32_t *) entry,
2966 (uint32_t *) &rspiocbq.iocb,
James Smarted957682007-06-17 19:56:37 -05002967 phba->iocb_rsp_size);
James Smarta4bc3372006-12-02 13:34:16 -05002968 INIT_LIST_HEAD(&(rspiocbq.list));
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04002969 irsp = &rspiocbq.iocb;
2970
dea31012005-04-17 16:05:31 -05002971 type = lpfc_sli_iocb_cmd_type(irsp->ulpCommand & CMD_IOCB_MASK);
2972 pring->stats.iocb_rsp++;
2973 rsp_cmpl++;
2974
2975 if (unlikely(irsp->ulpStatus)) {
James Smart92d7f7b2007-06-17 19:56:38 -05002976 /*
2977 * If resource errors reported from HBA, reduce
2978 * queuedepths of the SCSI device.
2979 */
2980 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
James Smarte3d2b802012-08-14 14:25:43 -04002981 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
2982 IOERR_NO_RESOURCES)) {
James Smart92d7f7b2007-06-17 19:56:38 -05002983 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart3772a992009-05-22 14:50:54 -04002984 phba->lpfc_rampdown_queue_depth(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05002985 spin_lock_irqsave(&phba->hbalock, iflag);
2986 }
2987
dea31012005-04-17 16:05:31 -05002988 /* Rsp ring <ringno> error: IOCB */
2989 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002990 "0336 Rsp Ring %d error: IOCB Data: "
James Smart92d7f7b2007-06-17 19:56:38 -05002991 "x%x x%x x%x x%x x%x x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04002992 pring->ringno,
James Smart92d7f7b2007-06-17 19:56:38 -05002993 irsp->un.ulpWord[0],
2994 irsp->un.ulpWord[1],
2995 irsp->un.ulpWord[2],
2996 irsp->un.ulpWord[3],
2997 irsp->un.ulpWord[4],
2998 irsp->un.ulpWord[5],
James Smartd7c255b2008-08-24 21:50:00 -04002999 *(uint32_t *)&irsp->un1,
3000 *((uint32_t *)&irsp->un1 + 1));
dea31012005-04-17 16:05:31 -05003001 }
3002
3003 switch (type) {
3004 case LPFC_ABORT_IOCB:
3005 case LPFC_SOL_IOCB:
3006 /*
3007 * Idle exchange closed via ABTS from port. No iocb
3008 * resources need to be recovered.
3009 */
3010 if (unlikely(irsp->ulpCommand == CMD_XRI_ABORTED_CX)) {
James Smartdca94792006-08-01 07:34:08 -04003011 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003012 "0333 IOCB cmd 0x%x"
James Smartdca94792006-08-01 07:34:08 -04003013 " processed. Skipping"
James Smart92d7f7b2007-06-17 19:56:38 -05003014 " completion\n",
James Smartdca94792006-08-01 07:34:08 -04003015 irsp->ulpCommand);
dea31012005-04-17 16:05:31 -05003016 break;
3017 }
3018
James Bottomley604a3e32005-10-29 10:28:33 -05003019 cmdiocbq = lpfc_sli_iocbq_lookup(phba, pring,
3020 &rspiocbq);
James Smart0f65ff62010-02-26 14:14:23 -05003021 if (unlikely(!cmdiocbq))
3022 break;
3023 if (cmdiocbq->iocb_flag & LPFC_DRIVER_ABORTED)
3024 cmdiocbq->iocb_flag &= ~LPFC_DRIVER_ABORTED;
3025 if (cmdiocbq->iocb_cmpl) {
3026 spin_unlock_irqrestore(&phba->hbalock, iflag);
3027 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq,
3028 &rspiocbq);
3029 spin_lock_irqsave(&phba->hbalock, iflag);
3030 }
dea31012005-04-17 16:05:31 -05003031 break;
James Smarta4bc3372006-12-02 13:34:16 -05003032 case LPFC_UNSOL_IOCB:
James Smart2e0fef82007-06-17 19:56:36 -05003033 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smarta4bc3372006-12-02 13:34:16 -05003034 lpfc_sli_process_unsol_iocb(phba, pring, &rspiocbq);
James Smart2e0fef82007-06-17 19:56:36 -05003035 spin_lock_irqsave(&phba->hbalock, iflag);
James Smarta4bc3372006-12-02 13:34:16 -05003036 break;
dea31012005-04-17 16:05:31 -05003037 default:
3038 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
3039 char adaptermsg[LPFC_MAX_ADPTMSG];
3040 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
3041 memcpy(&adaptermsg[0], (uint8_t *) irsp,
3042 MAX_MSG_DATA);
Joe Perches898eb712007-10-18 03:06:30 -07003043 dev_warn(&((phba->pcidev)->dev),
3044 "lpfc%d: %s\n",
dea31012005-04-17 16:05:31 -05003045 phba->brd_no, adaptermsg);
3046 } else {
3047 /* Unknown IOCB command */
3048 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003049 "0334 Unknown IOCB command "
James Smart92d7f7b2007-06-17 19:56:38 -05003050 "Data: x%x, x%x x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04003051 type, irsp->ulpCommand,
James Smart92d7f7b2007-06-17 19:56:38 -05003052 irsp->ulpStatus,
3053 irsp->ulpIoTag,
3054 irsp->ulpContext);
dea31012005-04-17 16:05:31 -05003055 }
3056 break;
3057 }
3058
3059 /*
3060 * The response IOCB has been processed. Update the ring
3061 * pointer in SLIM. If the port response put pointer has not
3062 * been updated, sync the pgp->rspPutInx and fetch the new port
3063 * response put pointer.
3064 */
James Smart7e56aa22012-08-03 12:35:34 -04003065 writel(pring->sli.sli3.rspidx,
3066 &phba->host_gp[pring->ringno].rspGetInx);
dea31012005-04-17 16:05:31 -05003067
James Smart7e56aa22012-08-03 12:35:34 -04003068 if (pring->sli.sli3.rspidx == portRspPut)
dea31012005-04-17 16:05:31 -05003069 portRspPut = le32_to_cpu(pgp->rspPutInx);
3070 }
3071
3072 if ((rsp_cmpl > 0) && (mask & HA_R0RE_REQ)) {
3073 pring->stats.iocb_rsp_full++;
3074 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
3075 writel(status, phba->CAregaddr);
3076 readl(phba->CAregaddr);
3077 }
3078 if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
3079 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
3080 pring->stats.iocb_cmd_empty++;
3081
3082 /* Force update of the local copy of cmdGetInx */
James Smart7e56aa22012-08-03 12:35:34 -04003083 pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
dea31012005-04-17 16:05:31 -05003084 lpfc_sli_resume_iocb(phba, pring);
3085
3086 if ((pring->lpfc_sli_cmd_available))
3087 (pring->lpfc_sli_cmd_available) (phba, pring);
3088
3089 }
3090
James Smart45ed1192009-10-02 15:17:02 -04003091 phba->fcp_ring_in_use = 0;
James Smart2e0fef82007-06-17 19:56:36 -05003092 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003093 return rc;
3094}
3095
James Smarte59058c2008-08-24 21:49:00 -04003096/**
James Smart3772a992009-05-22 14:50:54 -04003097 * lpfc_sli_sp_handle_rspiocb - Handle slow-path response iocb
3098 * @phba: Pointer to HBA context object.
3099 * @pring: Pointer to driver SLI ring object.
3100 * @rspiocbp: Pointer to driver response IOCB object.
3101 *
3102 * This function is called from the worker thread when there is a slow-path
3103 * response IOCB to process. This function chains all the response iocbs until
3104 * seeing the iocb with the LE bit set. The function will call
3105 * lpfc_sli_process_sol_iocb function if the response iocb indicates a
3106 * completion of a command iocb. The function will call the
3107 * lpfc_sli_process_unsol_iocb function if this is an unsolicited iocb.
3108 * The function frees the resources or calls the completion handler if this
3109 * iocb is an abort completion. The function returns NULL when the response
3110 * iocb has the LE bit set and all the chained iocbs are processed, otherwise
3111 * this function shall chain the iocb on to the iocb_continueq and return the
3112 * response iocb passed in.
3113 **/
3114static struct lpfc_iocbq *
3115lpfc_sli_sp_handle_rspiocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
3116 struct lpfc_iocbq *rspiocbp)
3117{
3118 struct lpfc_iocbq *saveq;
3119 struct lpfc_iocbq *cmdiocbp;
3120 struct lpfc_iocbq *next_iocb;
3121 IOCB_t *irsp = NULL;
3122 uint32_t free_saveq;
3123 uint8_t iocb_cmd_type;
3124 lpfc_iocb_type type;
3125 unsigned long iflag;
3126 int rc;
3127
3128 spin_lock_irqsave(&phba->hbalock, iflag);
3129 /* First add the response iocb to the countinueq list */
3130 list_add_tail(&rspiocbp->list, &(pring->iocb_continueq));
3131 pring->iocb_continueq_cnt++;
3132
Justin P. Mattock70f23fd2011-05-10 10:16:21 +02003133 /* Now, determine whether the list is completed for processing */
James Smart3772a992009-05-22 14:50:54 -04003134 irsp = &rspiocbp->iocb;
3135 if (irsp->ulpLe) {
3136 /*
3137 * By default, the driver expects to free all resources
3138 * associated with this iocb completion.
3139 */
3140 free_saveq = 1;
3141 saveq = list_get_first(&pring->iocb_continueq,
3142 struct lpfc_iocbq, list);
3143 irsp = &(saveq->iocb);
3144 list_del_init(&pring->iocb_continueq);
3145 pring->iocb_continueq_cnt = 0;
3146
3147 pring->stats.iocb_rsp++;
3148
3149 /*
3150 * If resource errors reported from HBA, reduce
3151 * queuedepths of the SCSI device.
3152 */
3153 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
James Smarte3d2b802012-08-14 14:25:43 -04003154 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
3155 IOERR_NO_RESOURCES)) {
James Smart3772a992009-05-22 14:50:54 -04003156 spin_unlock_irqrestore(&phba->hbalock, iflag);
3157 phba->lpfc_rampdown_queue_depth(phba);
3158 spin_lock_irqsave(&phba->hbalock, iflag);
3159 }
3160
3161 if (irsp->ulpStatus) {
3162 /* Rsp ring <ringno> error: IOCB */
3163 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
3164 "0328 Rsp Ring %d error: "
3165 "IOCB Data: "
3166 "x%x x%x x%x x%x "
3167 "x%x x%x x%x x%x "
3168 "x%x x%x x%x x%x "
3169 "x%x x%x x%x x%x\n",
3170 pring->ringno,
3171 irsp->un.ulpWord[0],
3172 irsp->un.ulpWord[1],
3173 irsp->un.ulpWord[2],
3174 irsp->un.ulpWord[3],
3175 irsp->un.ulpWord[4],
3176 irsp->un.ulpWord[5],
3177 *(((uint32_t *) irsp) + 6),
3178 *(((uint32_t *) irsp) + 7),
3179 *(((uint32_t *) irsp) + 8),
3180 *(((uint32_t *) irsp) + 9),
3181 *(((uint32_t *) irsp) + 10),
3182 *(((uint32_t *) irsp) + 11),
3183 *(((uint32_t *) irsp) + 12),
3184 *(((uint32_t *) irsp) + 13),
3185 *(((uint32_t *) irsp) + 14),
3186 *(((uint32_t *) irsp) + 15));
3187 }
3188
3189 /*
3190 * Fetch the IOCB command type and call the correct completion
3191 * routine. Solicited and Unsolicited IOCBs on the ELS ring
3192 * get freed back to the lpfc_iocb_list by the discovery
3193 * kernel thread.
3194 */
3195 iocb_cmd_type = irsp->ulpCommand & CMD_IOCB_MASK;
3196 type = lpfc_sli_iocb_cmd_type(iocb_cmd_type);
3197 switch (type) {
3198 case LPFC_SOL_IOCB:
3199 spin_unlock_irqrestore(&phba->hbalock, iflag);
3200 rc = lpfc_sli_process_sol_iocb(phba, pring, saveq);
3201 spin_lock_irqsave(&phba->hbalock, iflag);
3202 break;
3203
3204 case LPFC_UNSOL_IOCB:
3205 spin_unlock_irqrestore(&phba->hbalock, iflag);
3206 rc = lpfc_sli_process_unsol_iocb(phba, pring, saveq);
3207 spin_lock_irqsave(&phba->hbalock, iflag);
3208 if (!rc)
3209 free_saveq = 0;
3210 break;
3211
3212 case LPFC_ABORT_IOCB:
3213 cmdiocbp = NULL;
3214 if (irsp->ulpCommand != CMD_XRI_ABORTED_CX)
3215 cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring,
3216 saveq);
3217 if (cmdiocbp) {
3218 /* Call the specified completion routine */
3219 if (cmdiocbp->iocb_cmpl) {
3220 spin_unlock_irqrestore(&phba->hbalock,
3221 iflag);
3222 (cmdiocbp->iocb_cmpl)(phba, cmdiocbp,
3223 saveq);
3224 spin_lock_irqsave(&phba->hbalock,
3225 iflag);
3226 } else
3227 __lpfc_sli_release_iocbq(phba,
3228 cmdiocbp);
3229 }
3230 break;
3231
3232 case LPFC_UNKNOWN_IOCB:
3233 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
3234 char adaptermsg[LPFC_MAX_ADPTMSG];
3235 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
3236 memcpy(&adaptermsg[0], (uint8_t *)irsp,
3237 MAX_MSG_DATA);
3238 dev_warn(&((phba->pcidev)->dev),
3239 "lpfc%d: %s\n",
3240 phba->brd_no, adaptermsg);
3241 } else {
3242 /* Unknown IOCB command */
3243 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3244 "0335 Unknown IOCB "
3245 "command Data: x%x "
3246 "x%x x%x x%x\n",
3247 irsp->ulpCommand,
3248 irsp->ulpStatus,
3249 irsp->ulpIoTag,
3250 irsp->ulpContext);
3251 }
3252 break;
3253 }
3254
3255 if (free_saveq) {
3256 list_for_each_entry_safe(rspiocbp, next_iocb,
3257 &saveq->list, list) {
James Smart61f35bf2013-05-31 17:03:48 -04003258 list_del_init(&rspiocbp->list);
James Smart3772a992009-05-22 14:50:54 -04003259 __lpfc_sli_release_iocbq(phba, rspiocbp);
3260 }
3261 __lpfc_sli_release_iocbq(phba, saveq);
3262 }
3263 rspiocbp = NULL;
3264 }
3265 spin_unlock_irqrestore(&phba->hbalock, iflag);
3266 return rspiocbp;
3267}
3268
3269/**
3270 * lpfc_sli_handle_slow_ring_event - Wrapper func for handling slow-path iocbs
James Smarte59058c2008-08-24 21:49:00 -04003271 * @phba: Pointer to HBA context object.
3272 * @pring: Pointer to driver SLI ring object.
3273 * @mask: Host attention register mask for this ring.
3274 *
James Smart3772a992009-05-22 14:50:54 -04003275 * This routine wraps the actual slow_ring event process routine from the
3276 * API jump table function pointer from the lpfc_hba struct.
James Smarte59058c2008-08-24 21:49:00 -04003277 **/
James Smart3772a992009-05-22 14:50:54 -04003278void
James Smart2e0fef82007-06-17 19:56:36 -05003279lpfc_sli_handle_slow_ring_event(struct lpfc_hba *phba,
3280 struct lpfc_sli_ring *pring, uint32_t mask)
dea31012005-04-17 16:05:31 -05003281{
James Smart3772a992009-05-22 14:50:54 -04003282 phba->lpfc_sli_handle_slow_ring_event(phba, pring, mask);
3283}
3284
3285/**
3286 * lpfc_sli_handle_slow_ring_event_s3 - Handle SLI3 ring event for non-FCP rings
3287 * @phba: Pointer to HBA context object.
3288 * @pring: Pointer to driver SLI ring object.
3289 * @mask: Host attention register mask for this ring.
3290 *
3291 * This function is called from the worker thread when there is a ring event
3292 * for non-fcp rings. The caller does not hold any lock. The function will
3293 * remove each response iocb in the response ring and calls the handle
3294 * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
3295 **/
3296static void
3297lpfc_sli_handle_slow_ring_event_s3(struct lpfc_hba *phba,
3298 struct lpfc_sli_ring *pring, uint32_t mask)
3299{
James Smart34b02dc2008-08-24 21:49:55 -04003300 struct lpfc_pgp *pgp;
dea31012005-04-17 16:05:31 -05003301 IOCB_t *entry;
3302 IOCB_t *irsp = NULL;
3303 struct lpfc_iocbq *rspiocbp = NULL;
dea31012005-04-17 16:05:31 -05003304 uint32_t portRspPut, portRspMax;
dea31012005-04-17 16:05:31 -05003305 unsigned long iflag;
James Smart3772a992009-05-22 14:50:54 -04003306 uint32_t status;
dea31012005-04-17 16:05:31 -05003307
James Smart34b02dc2008-08-24 21:49:55 -04003308 pgp = &phba->port_gp[pring->ringno];
James Smart2e0fef82007-06-17 19:56:36 -05003309 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003310 pring->stats.iocb_event++;
3311
dea31012005-04-17 16:05:31 -05003312 /*
3313 * The next available response entry should never exceed the maximum
3314 * entries. If it does, treat it as an adapter hardware error.
3315 */
James Smart7e56aa22012-08-03 12:35:34 -04003316 portRspMax = pring->sli.sli3.numRiocb;
dea31012005-04-17 16:05:31 -05003317 portRspPut = le32_to_cpu(pgp->rspPutInx);
3318 if (portRspPut >= portRspMax) {
3319 /*
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02003320 * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
dea31012005-04-17 16:05:31 -05003321 * rsp ring <portRspMax>
3322 */
James Smarted957682007-06-17 19:56:37 -05003323 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003324 "0303 Ring %d handler: portRspPut %d "
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02003325 "is bigger than rsp ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -04003326 pring->ringno, portRspPut, portRspMax);
dea31012005-04-17 16:05:31 -05003327
James Smart2e0fef82007-06-17 19:56:36 -05003328 phba->link_state = LPFC_HBA_ERROR;
3329 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003330
3331 phba->work_hs = HS_FFER3;
3332 lpfc_handle_eratt(phba);
3333
James Smart3772a992009-05-22 14:50:54 -04003334 return;
dea31012005-04-17 16:05:31 -05003335 }
3336
3337 rmb();
James Smart7e56aa22012-08-03 12:35:34 -04003338 while (pring->sli.sli3.rspidx != portRspPut) {
dea31012005-04-17 16:05:31 -05003339 /*
3340 * Build a completion list and call the appropriate handler.
3341 * The process is to get the next available response iocb, get
3342 * a free iocb from the list, copy the response data into the
3343 * free iocb, insert to the continuation list, and update the
3344 * next response index to slim. This process makes response
3345 * iocb's in the ring available to DMA as fast as possible but
3346 * pays a penalty for a copy operation. Since the iocb is
3347 * only 32 bytes, this penalty is considered small relative to
3348 * the PCI reads for register values and a slim write. When
3349 * the ulpLe field is set, the entire Command has been
3350 * received.
3351 */
James Smarted957682007-06-17 19:56:37 -05003352 entry = lpfc_resp_iocb(phba, pring);
3353
James Smart858c9f62007-06-17 19:56:39 -05003354 phba->last_completion_time = jiffies;
James Smart2e0fef82007-06-17 19:56:36 -05003355 rspiocbp = __lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -05003356 if (rspiocbp == NULL) {
3357 printk(KERN_ERR "%s: out of buffers! Failing "
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07003358 "completion.\n", __func__);
dea31012005-04-17 16:05:31 -05003359 break;
3360 }
3361
James Smarted957682007-06-17 19:56:37 -05003362 lpfc_sli_pcimem_bcopy(entry, &rspiocbp->iocb,
3363 phba->iocb_rsp_size);
dea31012005-04-17 16:05:31 -05003364 irsp = &rspiocbp->iocb;
3365
James Smart7e56aa22012-08-03 12:35:34 -04003366 if (++pring->sli.sli3.rspidx >= portRspMax)
3367 pring->sli.sli3.rspidx = 0;
dea31012005-04-17 16:05:31 -05003368
James Smarta58cbd52007-08-02 11:09:43 -04003369 if (pring->ringno == LPFC_ELS_RING) {
3370 lpfc_debugfs_slow_ring_trc(phba,
3371 "IOCB rsp ring: wd4:x%08x wd6:x%08x wd7:x%08x",
3372 *(((uint32_t *) irsp) + 4),
3373 *(((uint32_t *) irsp) + 6),
3374 *(((uint32_t *) irsp) + 7));
3375 }
3376
James Smart7e56aa22012-08-03 12:35:34 -04003377 writel(pring->sli.sli3.rspidx,
3378 &phba->host_gp[pring->ringno].rspGetInx);
dea31012005-04-17 16:05:31 -05003379
James Smart3772a992009-05-22 14:50:54 -04003380 spin_unlock_irqrestore(&phba->hbalock, iflag);
3381 /* Handle the response IOCB */
3382 rspiocbp = lpfc_sli_sp_handle_rspiocb(phba, pring, rspiocbp);
3383 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003384
3385 /*
3386 * If the port response put pointer has not been updated, sync
3387 * the pgp->rspPutInx in the MAILBOX_tand fetch the new port
3388 * response put pointer.
3389 */
James Smart7e56aa22012-08-03 12:35:34 -04003390 if (pring->sli.sli3.rspidx == portRspPut) {
dea31012005-04-17 16:05:31 -05003391 portRspPut = le32_to_cpu(pgp->rspPutInx);
3392 }
James Smart7e56aa22012-08-03 12:35:34 -04003393 } /* while (pring->sli.sli3.rspidx != portRspPut) */
dea31012005-04-17 16:05:31 -05003394
James Smart92d7f7b2007-06-17 19:56:38 -05003395 if ((rspiocbp != NULL) && (mask & HA_R0RE_REQ)) {
dea31012005-04-17 16:05:31 -05003396 /* At least one response entry has been freed */
3397 pring->stats.iocb_rsp_full++;
3398 /* SET RxRE_RSP in Chip Att register */
3399 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
3400 writel(status, phba->CAregaddr);
3401 readl(phba->CAregaddr); /* flush */
3402 }
3403 if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
3404 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
3405 pring->stats.iocb_cmd_empty++;
3406
3407 /* Force update of the local copy of cmdGetInx */
James Smart7e56aa22012-08-03 12:35:34 -04003408 pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
dea31012005-04-17 16:05:31 -05003409 lpfc_sli_resume_iocb(phba, pring);
3410
3411 if ((pring->lpfc_sli_cmd_available))
3412 (pring->lpfc_sli_cmd_available) (phba, pring);
3413
3414 }
3415
James Smart2e0fef82007-06-17 19:56:36 -05003416 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart3772a992009-05-22 14:50:54 -04003417 return;
dea31012005-04-17 16:05:31 -05003418}
3419
James Smarte59058c2008-08-24 21:49:00 -04003420/**
James Smart4f774512009-05-22 14:52:35 -04003421 * lpfc_sli_handle_slow_ring_event_s4 - Handle SLI4 slow-path els events
3422 * @phba: Pointer to HBA context object.
3423 * @pring: Pointer to driver SLI ring object.
3424 * @mask: Host attention register mask for this ring.
3425 *
3426 * This function is called from the worker thread when there is a pending
3427 * ELS response iocb on the driver internal slow-path response iocb worker
3428 * queue. The caller does not hold any lock. The function will remove each
3429 * response iocb from the response worker queue and calls the handle
3430 * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
3431 **/
3432static void
3433lpfc_sli_handle_slow_ring_event_s4(struct lpfc_hba *phba,
3434 struct lpfc_sli_ring *pring, uint32_t mask)
3435{
3436 struct lpfc_iocbq *irspiocbq;
James Smart4d9ab992009-10-02 15:16:39 -04003437 struct hbq_dmabuf *dmabuf;
3438 struct lpfc_cq_event *cq_event;
James Smart4f774512009-05-22 14:52:35 -04003439 unsigned long iflag;
3440
James Smart45ed1192009-10-02 15:17:02 -04003441 spin_lock_irqsave(&phba->hbalock, iflag);
3442 phba->hba_flag &= ~HBA_SP_QUEUE_EVT;
3443 spin_unlock_irqrestore(&phba->hbalock, iflag);
3444 while (!list_empty(&phba->sli4_hba.sp_queue_event)) {
James Smart4f774512009-05-22 14:52:35 -04003445 /* Get the response iocb from the head of work queue */
3446 spin_lock_irqsave(&phba->hbalock, iflag);
James Smart45ed1192009-10-02 15:17:02 -04003447 list_remove_head(&phba->sli4_hba.sp_queue_event,
James Smart4d9ab992009-10-02 15:16:39 -04003448 cq_event, struct lpfc_cq_event, list);
James Smart4f774512009-05-22 14:52:35 -04003449 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart4d9ab992009-10-02 15:16:39 -04003450
3451 switch (bf_get(lpfc_wcqe_c_code, &cq_event->cqe.wcqe_cmpl)) {
3452 case CQE_CODE_COMPL_WQE:
3453 irspiocbq = container_of(cq_event, struct lpfc_iocbq,
3454 cq_event);
James Smart45ed1192009-10-02 15:17:02 -04003455 /* Translate ELS WCQE to response IOCBQ */
3456 irspiocbq = lpfc_sli4_els_wcqe_to_rspiocbq(phba,
3457 irspiocbq);
3458 if (irspiocbq)
3459 lpfc_sli_sp_handle_rspiocb(phba, pring,
3460 irspiocbq);
James Smart4d9ab992009-10-02 15:16:39 -04003461 break;
3462 case CQE_CODE_RECEIVE:
James Smart7851fe22011-07-22 18:36:52 -04003463 case CQE_CODE_RECEIVE_V1:
James Smart4d9ab992009-10-02 15:16:39 -04003464 dmabuf = container_of(cq_event, struct hbq_dmabuf,
3465 cq_event);
3466 lpfc_sli4_handle_received_buffer(phba, dmabuf);
3467 break;
3468 default:
3469 break;
3470 }
James Smart4f774512009-05-22 14:52:35 -04003471 }
3472}
3473
3474/**
James Smart3621a712009-04-06 18:47:14 -04003475 * lpfc_sli_abort_iocb_ring - Abort all iocbs in the ring
James Smarte59058c2008-08-24 21:49:00 -04003476 * @phba: Pointer to HBA context object.
3477 * @pring: Pointer to driver SLI ring object.
3478 *
3479 * This function aborts all iocbs in the given ring and frees all the iocb
3480 * objects in txq. This function issues an abort iocb for all the iocb commands
3481 * in txcmplq. The iocbs in the txcmplq is not guaranteed to complete before
3482 * the return of this function. The caller is not required to hold any locks.
3483 **/
James Smart2e0fef82007-06-17 19:56:36 -05003484void
dea31012005-04-17 16:05:31 -05003485lpfc_sli_abort_iocb_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
3486{
James Smart2534ba72007-04-25 09:52:20 -04003487 LIST_HEAD(completions);
dea31012005-04-17 16:05:31 -05003488 struct lpfc_iocbq *iocb, *next_iocb;
dea31012005-04-17 16:05:31 -05003489
James Smart92d7f7b2007-06-17 19:56:38 -05003490 if (pring->ringno == LPFC_ELS_RING) {
3491 lpfc_fabric_abort_hba(phba);
3492 }
3493
dea31012005-04-17 16:05:31 -05003494 /* Error everything on txq and txcmplq
3495 * First do the txq.
3496 */
James Smartdb55fba2014-04-04 13:52:02 -04003497 if (phba->sli_rev >= LPFC_SLI_REV4) {
3498 spin_lock_irq(&pring->ring_lock);
3499 list_splice_init(&pring->txq, &completions);
3500 pring->txq_cnt = 0;
3501 spin_unlock_irq(&pring->ring_lock);
dea31012005-04-17 16:05:31 -05003502
James Smartdb55fba2014-04-04 13:52:02 -04003503 spin_lock_irq(&phba->hbalock);
3504 /* Next issue ABTS for everything on the txcmplq */
3505 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
3506 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
3507 spin_unlock_irq(&phba->hbalock);
3508 } else {
3509 spin_lock_irq(&phba->hbalock);
3510 list_splice_init(&pring->txq, &completions);
3511 pring->txq_cnt = 0;
James Smart2534ba72007-04-25 09:52:20 -04003512
James Smartdb55fba2014-04-04 13:52:02 -04003513 /* Next issue ABTS for everything on the txcmplq */
3514 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
3515 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
3516 spin_unlock_irq(&phba->hbalock);
3517 }
James Smart2534ba72007-04-25 09:52:20 -04003518
James Smarta257bf92009-04-06 18:48:10 -04003519 /* Cancel all the IOCBs from the completions list */
3520 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
3521 IOERR_SLI_ABORTED);
dea31012005-04-17 16:05:31 -05003522}
3523
James Smarte59058c2008-08-24 21:49:00 -04003524/**
James Smartdb55fba2014-04-04 13:52:02 -04003525 * lpfc_sli_abort_fcp_rings - Abort all iocbs in all FCP rings
3526 * @phba: Pointer to HBA context object.
3527 * @pring: Pointer to driver SLI ring object.
3528 *
3529 * This function aborts all iocbs in FCP rings and frees all the iocb
3530 * objects in txq. This function issues an abort iocb for all the iocb commands
3531 * in txcmplq. The iocbs in the txcmplq is not guaranteed to complete before
3532 * the return of this function. The caller is not required to hold any locks.
3533 **/
3534void
3535lpfc_sli_abort_fcp_rings(struct lpfc_hba *phba)
3536{
3537 struct lpfc_sli *psli = &phba->sli;
3538 struct lpfc_sli_ring *pring;
3539 uint32_t i;
3540
3541 /* Look on all the FCP Rings for the iotag */
3542 if (phba->sli_rev >= LPFC_SLI_REV4) {
3543 for (i = 0; i < phba->cfg_fcp_io_channel; i++) {
3544 pring = &psli->ring[i + MAX_SLI3_CONFIGURED_RINGS];
3545 lpfc_sli_abort_iocb_ring(phba, pring);
3546 }
3547 } else {
3548 pring = &psli->ring[psli->fcp_ring];
3549 lpfc_sli_abort_iocb_ring(phba, pring);
3550 }
3551}
3552
3553
3554/**
James Smart3621a712009-04-06 18:47:14 -04003555 * lpfc_sli_flush_fcp_rings - flush all iocbs in the fcp ring
James Smarta8e497d2008-08-24 21:50:11 -04003556 * @phba: Pointer to HBA context object.
3557 *
3558 * This function flushes all iocbs in the fcp ring and frees all the iocb
3559 * objects in txq and txcmplq. This function will not issue abort iocbs
3560 * for all the iocb commands in txcmplq, they will just be returned with
3561 * IOERR_SLI_DOWN. This function is invoked with EEH when device's PCI
3562 * slot has been permanently disabled.
3563 **/
3564void
3565lpfc_sli_flush_fcp_rings(struct lpfc_hba *phba)
3566{
3567 LIST_HEAD(txq);
3568 LIST_HEAD(txcmplq);
James Smarta8e497d2008-08-24 21:50:11 -04003569 struct lpfc_sli *psli = &phba->sli;
3570 struct lpfc_sli_ring *pring;
James Smartdb55fba2014-04-04 13:52:02 -04003571 uint32_t i;
James Smarta8e497d2008-08-24 21:50:11 -04003572
3573 spin_lock_irq(&phba->hbalock);
James Smart4f2e66c2012-05-09 21:17:07 -04003574 /* Indicate the I/O queues are flushed */
3575 phba->hba_flag |= HBA_FCP_IOQ_FLUSH;
James Smarta8e497d2008-08-24 21:50:11 -04003576 spin_unlock_irq(&phba->hbalock);
3577
James Smartdb55fba2014-04-04 13:52:02 -04003578 /* Look on all the FCP Rings for the iotag */
3579 if (phba->sli_rev >= LPFC_SLI_REV4) {
3580 for (i = 0; i < phba->cfg_fcp_io_channel; i++) {
3581 pring = &psli->ring[i + MAX_SLI3_CONFIGURED_RINGS];
James Smarta8e497d2008-08-24 21:50:11 -04003582
James Smartdb55fba2014-04-04 13:52:02 -04003583 spin_lock_irq(&pring->ring_lock);
3584 /* Retrieve everything on txq */
3585 list_splice_init(&pring->txq, &txq);
3586 /* Retrieve everything on the txcmplq */
3587 list_splice_init(&pring->txcmplq, &txcmplq);
3588 pring->txq_cnt = 0;
3589 pring->txcmplq_cnt = 0;
3590 spin_unlock_irq(&pring->ring_lock);
3591
3592 /* Flush the txq */
3593 lpfc_sli_cancel_iocbs(phba, &txq,
3594 IOSTAT_LOCAL_REJECT,
3595 IOERR_SLI_DOWN);
3596 /* Flush the txcmpq */
3597 lpfc_sli_cancel_iocbs(phba, &txcmplq,
3598 IOSTAT_LOCAL_REJECT,
3599 IOERR_SLI_DOWN);
3600 }
3601 } else {
3602 pring = &psli->ring[psli->fcp_ring];
3603
3604 spin_lock_irq(&phba->hbalock);
3605 /* Retrieve everything on txq */
3606 list_splice_init(&pring->txq, &txq);
3607 /* Retrieve everything on the txcmplq */
3608 list_splice_init(&pring->txcmplq, &txcmplq);
3609 pring->txq_cnt = 0;
3610 pring->txcmplq_cnt = 0;
3611 spin_unlock_irq(&phba->hbalock);
3612
3613 /* Flush the txq */
3614 lpfc_sli_cancel_iocbs(phba, &txq, IOSTAT_LOCAL_REJECT,
3615 IOERR_SLI_DOWN);
3616 /* Flush the txcmpq */
3617 lpfc_sli_cancel_iocbs(phba, &txcmplq, IOSTAT_LOCAL_REJECT,
3618 IOERR_SLI_DOWN);
3619 }
James Smarta8e497d2008-08-24 21:50:11 -04003620}
3621
3622/**
James Smart3772a992009-05-22 14:50:54 -04003623 * lpfc_sli_brdready_s3 - Check for sli3 host ready status
James Smarte59058c2008-08-24 21:49:00 -04003624 * @phba: Pointer to HBA context object.
3625 * @mask: Bit mask to be checked.
3626 *
3627 * This function reads the host status register and compares
3628 * with the provided bit mask to check if HBA completed
3629 * the restart. This function will wait in a loop for the
3630 * HBA to complete restart. If the HBA does not restart within
3631 * 15 iterations, the function will reset the HBA again. The
3632 * function returns 1 when HBA fail to restart otherwise returns
3633 * zero.
3634 **/
James Smart3772a992009-05-22 14:50:54 -04003635static int
3636lpfc_sli_brdready_s3(struct lpfc_hba *phba, uint32_t mask)
dea31012005-04-17 16:05:31 -05003637{
Jamie Wellnitz41415862006-02-28 19:25:27 -05003638 uint32_t status;
3639 int i = 0;
3640 int retval = 0;
dea31012005-04-17 16:05:31 -05003641
Jamie Wellnitz41415862006-02-28 19:25:27 -05003642 /* Read the HBA Host Status Register */
James Smart9940b972011-03-11 16:06:12 -05003643 if (lpfc_readl(phba->HSregaddr, &status))
3644 return 1;
dea31012005-04-17 16:05:31 -05003645
Jamie Wellnitz41415862006-02-28 19:25:27 -05003646 /*
3647 * Check status register every 100ms for 5 retries, then every
3648 * 500ms for 5, then every 2.5 sec for 5, then reset board and
3649 * every 2.5 sec for 4.
3650 * Break our of the loop if errors occurred during init.
3651 */
3652 while (((status & mask) != mask) &&
3653 !(status & HS_FFERM) &&
3654 i++ < 20) {
dea31012005-04-17 16:05:31 -05003655
Jamie Wellnitz41415862006-02-28 19:25:27 -05003656 if (i <= 5)
3657 msleep(10);
3658 else if (i <= 10)
3659 msleep(500);
3660 else
3661 msleep(2500);
dea31012005-04-17 16:05:31 -05003662
Jamie Wellnitz41415862006-02-28 19:25:27 -05003663 if (i == 15) {
James Smart2e0fef82007-06-17 19:56:36 -05003664 /* Do post */
James Smart92d7f7b2007-06-17 19:56:38 -05003665 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003666 lpfc_sli_brdrestart(phba);
3667 }
3668 /* Read the HBA Host Status Register */
James Smart9940b972011-03-11 16:06:12 -05003669 if (lpfc_readl(phba->HSregaddr, &status)) {
3670 retval = 1;
3671 break;
3672 }
dea31012005-04-17 16:05:31 -05003673 }
dea31012005-04-17 16:05:31 -05003674
Jamie Wellnitz41415862006-02-28 19:25:27 -05003675 /* Check to see if any errors occurred during init */
3676 if ((status & HS_FFERM) || (i >= 20)) {
James Smarte40a02c2010-02-26 14:13:54 -05003677 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3678 "2751 Adapter failed to restart, "
3679 "status reg x%x, FW Data: A8 x%x AC x%x\n",
3680 status,
3681 readl(phba->MBslimaddr + 0xa8),
3682 readl(phba->MBslimaddr + 0xac));
James Smart2e0fef82007-06-17 19:56:36 -05003683 phba->link_state = LPFC_HBA_ERROR;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003684 retval = 1;
3685 }
dea31012005-04-17 16:05:31 -05003686
Jamie Wellnitz41415862006-02-28 19:25:27 -05003687 return retval;
dea31012005-04-17 16:05:31 -05003688}
3689
James Smartda0436e2009-05-22 14:51:39 -04003690/**
3691 * lpfc_sli_brdready_s4 - Check for sli4 host ready status
3692 * @phba: Pointer to HBA context object.
3693 * @mask: Bit mask to be checked.
3694 *
3695 * This function checks the host status register to check if HBA is
3696 * ready. This function will wait in a loop for the HBA to be ready
3697 * If the HBA is not ready , the function will will reset the HBA PCI
3698 * function again. The function returns 1 when HBA fail to be ready
3699 * otherwise returns zero.
3700 **/
3701static int
3702lpfc_sli_brdready_s4(struct lpfc_hba *phba, uint32_t mask)
3703{
3704 uint32_t status;
3705 int retval = 0;
3706
3707 /* Read the HBA Host Status Register */
3708 status = lpfc_sli4_post_status_check(phba);
3709
3710 if (status) {
3711 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
3712 lpfc_sli_brdrestart(phba);
3713 status = lpfc_sli4_post_status_check(phba);
3714 }
3715
3716 /* Check to see if any errors occurred during init */
3717 if (status) {
3718 phba->link_state = LPFC_HBA_ERROR;
3719 retval = 1;
3720 } else
3721 phba->sli4_hba.intr_enable = 0;
3722
3723 return retval;
3724}
3725
3726/**
3727 * lpfc_sli_brdready - Wrapper func for checking the hba readyness
3728 * @phba: Pointer to HBA context object.
3729 * @mask: Bit mask to be checked.
3730 *
3731 * This routine wraps the actual SLI3 or SLI4 hba readyness check routine
3732 * from the API jump table function pointer from the lpfc_hba struct.
3733 **/
3734int
3735lpfc_sli_brdready(struct lpfc_hba *phba, uint32_t mask)
3736{
3737 return phba->lpfc_sli_brdready(phba, mask);
3738}
3739
James Smart92908312006-03-07 15:04:13 -05003740#define BARRIER_TEST_PATTERN (0xdeadbeef)
3741
James Smarte59058c2008-08-24 21:49:00 -04003742/**
James Smart3621a712009-04-06 18:47:14 -04003743 * lpfc_reset_barrier - Make HBA ready for HBA reset
James Smarte59058c2008-08-24 21:49:00 -04003744 * @phba: Pointer to HBA context object.
3745 *
James Smart1b511972011-12-13 13:23:09 -05003746 * This function is called before resetting an HBA. This function is called
3747 * with hbalock held and requests HBA to quiesce DMAs before a reset.
James Smarte59058c2008-08-24 21:49:00 -04003748 **/
James Smart2e0fef82007-06-17 19:56:36 -05003749void lpfc_reset_barrier(struct lpfc_hba *phba)
James Smart92908312006-03-07 15:04:13 -05003750{
James Smart65a29c12006-07-06 15:50:50 -04003751 uint32_t __iomem *resp_buf;
3752 uint32_t __iomem *mbox_buf;
James Smart92908312006-03-07 15:04:13 -05003753 volatile uint32_t mbox;
James Smart9940b972011-03-11 16:06:12 -05003754 uint32_t hc_copy, ha_copy, resp_data;
James Smart92908312006-03-07 15:04:13 -05003755 int i;
3756 uint8_t hdrtype;
3757
3758 pci_read_config_byte(phba->pcidev, PCI_HEADER_TYPE, &hdrtype);
3759 if (hdrtype != 0x80 ||
3760 (FC_JEDEC_ID(phba->vpd.rev.biuRev) != HELIOS_JEDEC_ID &&
3761 FC_JEDEC_ID(phba->vpd.rev.biuRev) != THOR_JEDEC_ID))
3762 return;
3763
3764 /*
3765 * Tell the other part of the chip to suspend temporarily all
3766 * its DMA activity.
3767 */
James Smart65a29c12006-07-06 15:50:50 -04003768 resp_buf = phba->MBslimaddr;
James Smart92908312006-03-07 15:04:13 -05003769
3770 /* Disable the error attention */
James Smart9940b972011-03-11 16:06:12 -05003771 if (lpfc_readl(phba->HCregaddr, &hc_copy))
3772 return;
James Smart92908312006-03-07 15:04:13 -05003773 writel((hc_copy & ~HC_ERINT_ENA), phba->HCregaddr);
3774 readl(phba->HCregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -05003775 phba->link_flag |= LS_IGNORE_ERATT;
James Smart92908312006-03-07 15:04:13 -05003776
James Smart9940b972011-03-11 16:06:12 -05003777 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3778 return;
3779 if (ha_copy & HA_ERATT) {
James Smart92908312006-03-07 15:04:13 -05003780 /* Clear Chip error bit */
3781 writel(HA_ERATT, phba->HAregaddr);
James Smart2e0fef82007-06-17 19:56:36 -05003782 phba->pport->stopped = 1;
James Smart92908312006-03-07 15:04:13 -05003783 }
3784
3785 mbox = 0;
3786 ((MAILBOX_t *)&mbox)->mbxCommand = MBX_KILL_BOARD;
3787 ((MAILBOX_t *)&mbox)->mbxOwner = OWN_CHIP;
3788
3789 writel(BARRIER_TEST_PATTERN, (resp_buf + 1));
James Smart65a29c12006-07-06 15:50:50 -04003790 mbox_buf = phba->MBslimaddr;
James Smart92908312006-03-07 15:04:13 -05003791 writel(mbox, mbox_buf);
3792
James Smart9940b972011-03-11 16:06:12 -05003793 for (i = 0; i < 50; i++) {
3794 if (lpfc_readl((resp_buf + 1), &resp_data))
3795 return;
3796 if (resp_data != ~(BARRIER_TEST_PATTERN))
3797 mdelay(1);
3798 else
3799 break;
3800 }
3801 resp_data = 0;
3802 if (lpfc_readl((resp_buf + 1), &resp_data))
3803 return;
3804 if (resp_data != ~(BARRIER_TEST_PATTERN)) {
James Smartf4b4c682009-05-22 14:53:12 -04003805 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE ||
James Smart2e0fef82007-06-17 19:56:36 -05003806 phba->pport->stopped)
James Smart92908312006-03-07 15:04:13 -05003807 goto restore_hc;
3808 else
3809 goto clear_errat;
3810 }
3811
3812 ((MAILBOX_t *)&mbox)->mbxOwner = OWN_HOST;
James Smart9940b972011-03-11 16:06:12 -05003813 resp_data = 0;
3814 for (i = 0; i < 500; i++) {
3815 if (lpfc_readl(resp_buf, &resp_data))
3816 return;
3817 if (resp_data != mbox)
3818 mdelay(1);
3819 else
3820 break;
3821 }
James Smart92908312006-03-07 15:04:13 -05003822
3823clear_errat:
3824
James Smart9940b972011-03-11 16:06:12 -05003825 while (++i < 500) {
3826 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3827 return;
3828 if (!(ha_copy & HA_ERATT))
3829 mdelay(1);
3830 else
3831 break;
3832 }
James Smart92908312006-03-07 15:04:13 -05003833
3834 if (readl(phba->HAregaddr) & HA_ERATT) {
3835 writel(HA_ERATT, phba->HAregaddr);
James Smart2e0fef82007-06-17 19:56:36 -05003836 phba->pport->stopped = 1;
James Smart92908312006-03-07 15:04:13 -05003837 }
3838
3839restore_hc:
James Smart2e0fef82007-06-17 19:56:36 -05003840 phba->link_flag &= ~LS_IGNORE_ERATT;
James Smart92908312006-03-07 15:04:13 -05003841 writel(hc_copy, phba->HCregaddr);
3842 readl(phba->HCregaddr); /* flush */
3843}
3844
James Smarte59058c2008-08-24 21:49:00 -04003845/**
James Smart3621a712009-04-06 18:47:14 -04003846 * lpfc_sli_brdkill - Issue a kill_board mailbox command
James Smarte59058c2008-08-24 21:49:00 -04003847 * @phba: Pointer to HBA context object.
3848 *
3849 * This function issues a kill_board mailbox command and waits for
3850 * the error attention interrupt. This function is called for stopping
3851 * the firmware processing. The caller is not required to hold any
3852 * locks. This function calls lpfc_hba_down_post function to free
3853 * any pending commands after the kill. The function will return 1 when it
3854 * fails to kill the board else will return 0.
3855 **/
Jamie Wellnitz41415862006-02-28 19:25:27 -05003856int
James Smart2e0fef82007-06-17 19:56:36 -05003857lpfc_sli_brdkill(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05003858{
Jamie Wellnitz41415862006-02-28 19:25:27 -05003859 struct lpfc_sli *psli;
3860 LPFC_MBOXQ_t *pmb;
3861 uint32_t status;
3862 uint32_t ha_copy;
3863 int retval;
3864 int i = 0;
3865
3866 psli = &phba->sli;
3867
3868 /* Kill HBA */
James Smarted957682007-06-17 19:56:37 -05003869 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003870 "0329 Kill HBA Data: x%x x%x\n",
3871 phba->pport->port_state, psli->sli_flag);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003872
James Smart98c9ea52007-10-27 13:37:33 -04003873 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3874 if (!pmb)
Jamie Wellnitz41415862006-02-28 19:25:27 -05003875 return 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003876
3877 /* Disable the error attention */
James Smart2e0fef82007-06-17 19:56:36 -05003878 spin_lock_irq(&phba->hbalock);
James Smart9940b972011-03-11 16:06:12 -05003879 if (lpfc_readl(phba->HCregaddr, &status)) {
3880 spin_unlock_irq(&phba->hbalock);
3881 mempool_free(pmb, phba->mbox_mem_pool);
3882 return 1;
3883 }
Jamie Wellnitz41415862006-02-28 19:25:27 -05003884 status &= ~HC_ERINT_ENA;
3885 writel(status, phba->HCregaddr);
3886 readl(phba->HCregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -05003887 phba->link_flag |= LS_IGNORE_ERATT;
3888 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003889
3890 lpfc_kill_board(phba, pmb);
3891 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
3892 retval = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
3893
3894 if (retval != MBX_SUCCESS) {
3895 if (retval != MBX_BUSY)
3896 mempool_free(pmb, phba->mbox_mem_pool);
James Smarte40a02c2010-02-26 14:13:54 -05003897 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3898 "2752 KILL_BOARD command failed retval %d\n",
3899 retval);
James Smart2e0fef82007-06-17 19:56:36 -05003900 spin_lock_irq(&phba->hbalock);
3901 phba->link_flag &= ~LS_IGNORE_ERATT;
3902 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003903 return 1;
3904 }
3905
James Smartf4b4c682009-05-22 14:53:12 -04003906 spin_lock_irq(&phba->hbalock);
3907 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
3908 spin_unlock_irq(&phba->hbalock);
James Smart92908312006-03-07 15:04:13 -05003909
Jamie Wellnitz41415862006-02-28 19:25:27 -05003910 mempool_free(pmb, phba->mbox_mem_pool);
3911
3912 /* There is no completion for a KILL_BOARD mbox cmd. Check for an error
3913 * attention every 100ms for 3 seconds. If we don't get ERATT after
3914 * 3 seconds we still set HBA_ERROR state because the status of the
3915 * board is now undefined.
3916 */
James Smart9940b972011-03-11 16:06:12 -05003917 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3918 return 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003919 while ((i++ < 30) && !(ha_copy & HA_ERATT)) {
3920 mdelay(100);
James Smart9940b972011-03-11 16:06:12 -05003921 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3922 return 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003923 }
3924
3925 del_timer_sync(&psli->mbox_tmo);
James Smart92908312006-03-07 15:04:13 -05003926 if (ha_copy & HA_ERATT) {
3927 writel(HA_ERATT, phba->HAregaddr);
James Smart2e0fef82007-06-17 19:56:36 -05003928 phba->pport->stopped = 1;
James Smart92908312006-03-07 15:04:13 -05003929 }
James Smart2e0fef82007-06-17 19:56:36 -05003930 spin_lock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003931 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart04c68492009-05-22 14:52:52 -04003932 psli->mbox_active = NULL;
James Smart2e0fef82007-06-17 19:56:36 -05003933 phba->link_flag &= ~LS_IGNORE_ERATT;
3934 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003935
Jamie Wellnitz41415862006-02-28 19:25:27 -05003936 lpfc_hba_down_post(phba);
James Smart2e0fef82007-06-17 19:56:36 -05003937 phba->link_state = LPFC_HBA_ERROR;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003938
James Smart2e0fef82007-06-17 19:56:36 -05003939 return ha_copy & HA_ERATT ? 0 : 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003940}
3941
James Smarte59058c2008-08-24 21:49:00 -04003942/**
James Smart3772a992009-05-22 14:50:54 -04003943 * lpfc_sli_brdreset - Reset a sli-2 or sli-3 HBA
James Smarte59058c2008-08-24 21:49:00 -04003944 * @phba: Pointer to HBA context object.
3945 *
3946 * This function resets the HBA by writing HC_INITFF to the control
3947 * register. After the HBA resets, this function resets all the iocb ring
3948 * indices. This function disables PCI layer parity checking during
3949 * the reset.
3950 * This function returns 0 always.
3951 * The caller is not required to hold any locks.
3952 **/
Jamie Wellnitz41415862006-02-28 19:25:27 -05003953int
James Smart2e0fef82007-06-17 19:56:36 -05003954lpfc_sli_brdreset(struct lpfc_hba *phba)
Jamie Wellnitz41415862006-02-28 19:25:27 -05003955{
3956 struct lpfc_sli *psli;
dea31012005-04-17 16:05:31 -05003957 struct lpfc_sli_ring *pring;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003958 uint16_t cfg_value;
dea31012005-04-17 16:05:31 -05003959 int i;
dea31012005-04-17 16:05:31 -05003960
Jamie Wellnitz41415862006-02-28 19:25:27 -05003961 psli = &phba->sli;
dea31012005-04-17 16:05:31 -05003962
Jamie Wellnitz41415862006-02-28 19:25:27 -05003963 /* Reset HBA */
3964 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003965 "0325 Reset HBA Data: x%x x%x\n",
James Smart2e0fef82007-06-17 19:56:36 -05003966 phba->pport->port_state, psli->sli_flag);
dea31012005-04-17 16:05:31 -05003967
3968 /* perform board reset */
3969 phba->fc_eventTag = 0;
James Smart4d9ab992009-10-02 15:16:39 -04003970 phba->link_events = 0;
James Smart2e0fef82007-06-17 19:56:36 -05003971 phba->pport->fc_myDID = 0;
3972 phba->pport->fc_prevDID = 0;
dea31012005-04-17 16:05:31 -05003973
Jamie Wellnitz41415862006-02-28 19:25:27 -05003974 /* Turn off parity checking and serr during the physical reset */
3975 pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
3976 pci_write_config_word(phba->pcidev, PCI_COMMAND,
3977 (cfg_value &
3978 ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
3979
James Smart3772a992009-05-22 14:50:54 -04003980 psli->sli_flag &= ~(LPFC_SLI_ACTIVE | LPFC_PROCESS_LA);
3981
Jamie Wellnitz41415862006-02-28 19:25:27 -05003982 /* Now toggle INITFF bit in the Host Control Register */
3983 writel(HC_INITFF, phba->HCregaddr);
3984 mdelay(1);
3985 readl(phba->HCregaddr); /* flush */
3986 writel(0, phba->HCregaddr);
3987 readl(phba->HCregaddr); /* flush */
3988
3989 /* Restore PCI cmd register */
3990 pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
dea31012005-04-17 16:05:31 -05003991
3992 /* Initialize relevant SLI info */
Jamie Wellnitz41415862006-02-28 19:25:27 -05003993 for (i = 0; i < psli->num_rings; i++) {
3994 pring = &psli->ring[i];
dea31012005-04-17 16:05:31 -05003995 pring->flag = 0;
James Smart7e56aa22012-08-03 12:35:34 -04003996 pring->sli.sli3.rspidx = 0;
3997 pring->sli.sli3.next_cmdidx = 0;
3998 pring->sli.sli3.local_getidx = 0;
3999 pring->sli.sli3.cmdidx = 0;
dea31012005-04-17 16:05:31 -05004000 pring->missbufcnt = 0;
4001 }
dea31012005-04-17 16:05:31 -05004002
James Smart2e0fef82007-06-17 19:56:36 -05004003 phba->link_state = LPFC_WARM_START;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004004 return 0;
4005}
4006
James Smarte59058c2008-08-24 21:49:00 -04004007/**
James Smartda0436e2009-05-22 14:51:39 -04004008 * lpfc_sli4_brdreset - Reset a sli-4 HBA
4009 * @phba: Pointer to HBA context object.
4010 *
4011 * This function resets a SLI4 HBA. This function disables PCI layer parity
4012 * checking during resets the device. The caller is not required to hold
4013 * any locks.
4014 *
4015 * This function returns 0 always.
4016 **/
4017int
4018lpfc_sli4_brdreset(struct lpfc_hba *phba)
4019{
4020 struct lpfc_sli *psli = &phba->sli;
4021 uint16_t cfg_value;
James Smart02936352014-04-04 13:52:12 -04004022 int rc = 0;
James Smartda0436e2009-05-22 14:51:39 -04004023
4024 /* Reset HBA */
4025 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smart02936352014-04-04 13:52:12 -04004026 "0295 Reset HBA Data: x%x x%x x%x\n",
4027 phba->pport->port_state, psli->sli_flag,
4028 phba->hba_flag);
James Smartda0436e2009-05-22 14:51:39 -04004029
4030 /* perform board reset */
4031 phba->fc_eventTag = 0;
James Smart4d9ab992009-10-02 15:16:39 -04004032 phba->link_events = 0;
James Smartda0436e2009-05-22 14:51:39 -04004033 phba->pport->fc_myDID = 0;
4034 phba->pport->fc_prevDID = 0;
4035
James Smartda0436e2009-05-22 14:51:39 -04004036 spin_lock_irq(&phba->hbalock);
4037 psli->sli_flag &= ~(LPFC_PROCESS_LA);
4038 phba->fcf.fcf_flag = 0;
James Smartda0436e2009-05-22 14:51:39 -04004039 spin_unlock_irq(&phba->hbalock);
4040
James Smart02936352014-04-04 13:52:12 -04004041 /* SLI4 INTF 2: if FW dump is being taken skip INIT_PORT */
4042 if (phba->hba_flag & HBA_FW_DUMP_OP) {
4043 phba->hba_flag &= ~HBA_FW_DUMP_OP;
4044 return rc;
4045 }
4046
James Smartda0436e2009-05-22 14:51:39 -04004047 /* Now physically reset the device */
4048 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4049 "0389 Performing PCI function reset!\n");
James Smartbe858b62010-12-15 17:57:20 -05004050
4051 /* Turn off parity checking and serr during the physical reset */
4052 pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
4053 pci_write_config_word(phba->pcidev, PCI_COMMAND, (cfg_value &
4054 ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
4055
James Smart88318812012-09-29 11:29:29 -04004056 /* Perform FCoE PCI function reset before freeing queue memory */
James Smart27b01b82012-05-09 21:19:44 -04004057 rc = lpfc_pci_function_reset(phba);
James Smart88318812012-09-29 11:29:29 -04004058 lpfc_sli4_queue_destroy(phba);
James Smartda0436e2009-05-22 14:51:39 -04004059
James Smartbe858b62010-12-15 17:57:20 -05004060 /* Restore PCI cmd register */
4061 pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
4062
James Smart27b01b82012-05-09 21:19:44 -04004063 return rc;
James Smartda0436e2009-05-22 14:51:39 -04004064}
4065
4066/**
4067 * lpfc_sli_brdrestart_s3 - Restart a sli-3 hba
James Smarte59058c2008-08-24 21:49:00 -04004068 * @phba: Pointer to HBA context object.
4069 *
4070 * This function is called in the SLI initialization code path to
4071 * restart the HBA. The caller is not required to hold any lock.
4072 * This function writes MBX_RESTART mailbox command to the SLIM and
4073 * resets the HBA. At the end of the function, it calls lpfc_hba_down_post
4074 * function to free any pending commands. The function enables
4075 * POST only during the first initialization. The function returns zero.
4076 * The function does not guarantee completion of MBX_RESTART mailbox
4077 * command before the return of this function.
4078 **/
James Smartda0436e2009-05-22 14:51:39 -04004079static int
4080lpfc_sli_brdrestart_s3(struct lpfc_hba *phba)
Jamie Wellnitz41415862006-02-28 19:25:27 -05004081{
4082 MAILBOX_t *mb;
4083 struct lpfc_sli *psli;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004084 volatile uint32_t word0;
4085 void __iomem *to_slim;
James Smart0d878412009-10-02 15:16:56 -04004086 uint32_t hba_aer_enabled;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004087
James Smart2e0fef82007-06-17 19:56:36 -05004088 spin_lock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004089
James Smart0d878412009-10-02 15:16:56 -04004090 /* Take PCIe device Advanced Error Reporting (AER) state */
4091 hba_aer_enabled = phba->hba_flag & HBA_AER_ENABLED;
4092
Jamie Wellnitz41415862006-02-28 19:25:27 -05004093 psli = &phba->sli;
4094
4095 /* Restart HBA */
4096 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04004097 "0337 Restart HBA Data: x%x x%x\n",
James Smart2e0fef82007-06-17 19:56:36 -05004098 phba->pport->port_state, psli->sli_flag);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004099
4100 word0 = 0;
4101 mb = (MAILBOX_t *) &word0;
4102 mb->mbxCommand = MBX_RESTART;
4103 mb->mbxHc = 1;
4104
James Smart92908312006-03-07 15:04:13 -05004105 lpfc_reset_barrier(phba);
4106
Jamie Wellnitz41415862006-02-28 19:25:27 -05004107 to_slim = phba->MBslimaddr;
4108 writel(*(uint32_t *) mb, to_slim);
4109 readl(to_slim); /* flush */
4110
4111 /* Only skip post after fc_ffinit is completed */
James Smarteaf15d52008-12-04 22:39:29 -05004112 if (phba->pport->port_state)
Jamie Wellnitz41415862006-02-28 19:25:27 -05004113 word0 = 1; /* This is really setting up word1 */
James Smarteaf15d52008-12-04 22:39:29 -05004114 else
Jamie Wellnitz41415862006-02-28 19:25:27 -05004115 word0 = 0; /* This is really setting up word1 */
James Smart65a29c12006-07-06 15:50:50 -04004116 to_slim = phba->MBslimaddr + sizeof (uint32_t);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004117 writel(*(uint32_t *) mb, to_slim);
4118 readl(to_slim); /* flush */
4119
4120 lpfc_sli_brdreset(phba);
James Smart2e0fef82007-06-17 19:56:36 -05004121 phba->pport->stopped = 0;
4122 phba->link_state = LPFC_INIT_START;
James Smartda0436e2009-05-22 14:51:39 -04004123 phba->hba_flag = 0;
James Smart2e0fef82007-06-17 19:56:36 -05004124 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004125
James Smart64ba8812006-08-02 15:24:34 -04004126 memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
4127 psli->stats_start = get_seconds();
4128
James Smarteaf15d52008-12-04 22:39:29 -05004129 /* Give the INITFF and Post time to settle. */
4130 mdelay(100);
dea31012005-04-17 16:05:31 -05004131
James Smart0d878412009-10-02 15:16:56 -04004132 /* Reset HBA AER if it was enabled, note hba_flag was reset above */
4133 if (hba_aer_enabled)
4134 pci_disable_pcie_error_reporting(phba->pcidev);
4135
Jamie Wellnitz41415862006-02-28 19:25:27 -05004136 lpfc_hba_down_post(phba);
dea31012005-04-17 16:05:31 -05004137
4138 return 0;
4139}
4140
James Smarte59058c2008-08-24 21:49:00 -04004141/**
James Smartda0436e2009-05-22 14:51:39 -04004142 * lpfc_sli_brdrestart_s4 - Restart the sli-4 hba
4143 * @phba: Pointer to HBA context object.
4144 *
4145 * This function is called in the SLI initialization code path to restart
4146 * a SLI4 HBA. The caller is not required to hold any lock.
4147 * At the end of the function, it calls lpfc_hba_down_post function to
4148 * free any pending commands.
4149 **/
4150static int
4151lpfc_sli_brdrestart_s4(struct lpfc_hba *phba)
4152{
4153 struct lpfc_sli *psli = &phba->sli;
James Smart75baf692010-06-08 18:31:21 -04004154 uint32_t hba_aer_enabled;
James Smart27b01b82012-05-09 21:19:44 -04004155 int rc;
James Smartda0436e2009-05-22 14:51:39 -04004156
4157 /* Restart HBA */
4158 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4159 "0296 Restart HBA Data: x%x x%x\n",
4160 phba->pport->port_state, psli->sli_flag);
4161
James Smart75baf692010-06-08 18:31:21 -04004162 /* Take PCIe device Advanced Error Reporting (AER) state */
4163 hba_aer_enabled = phba->hba_flag & HBA_AER_ENABLED;
4164
James Smart27b01b82012-05-09 21:19:44 -04004165 rc = lpfc_sli4_brdreset(phba);
James Smartda0436e2009-05-22 14:51:39 -04004166
4167 spin_lock_irq(&phba->hbalock);
4168 phba->pport->stopped = 0;
4169 phba->link_state = LPFC_INIT_START;
4170 phba->hba_flag = 0;
4171 spin_unlock_irq(&phba->hbalock);
4172
4173 memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
4174 psli->stats_start = get_seconds();
4175
James Smart75baf692010-06-08 18:31:21 -04004176 /* Reset HBA AER if it was enabled, note hba_flag was reset above */
4177 if (hba_aer_enabled)
4178 pci_disable_pcie_error_reporting(phba->pcidev);
4179
James Smartda0436e2009-05-22 14:51:39 -04004180 lpfc_hba_down_post(phba);
4181
James Smart27b01b82012-05-09 21:19:44 -04004182 return rc;
James Smartda0436e2009-05-22 14:51:39 -04004183}
4184
4185/**
4186 * lpfc_sli_brdrestart - Wrapper func for restarting hba
4187 * @phba: Pointer to HBA context object.
4188 *
4189 * This routine wraps the actual SLI3 or SLI4 hba restart routine from the
4190 * API jump table function pointer from the lpfc_hba struct.
4191**/
4192int
4193lpfc_sli_brdrestart(struct lpfc_hba *phba)
4194{
4195 return phba->lpfc_sli_brdrestart(phba);
4196}
4197
4198/**
James Smart3621a712009-04-06 18:47:14 -04004199 * lpfc_sli_chipset_init - Wait for the restart of the HBA after a restart
James Smarte59058c2008-08-24 21:49:00 -04004200 * @phba: Pointer to HBA context object.
4201 *
4202 * This function is called after a HBA restart to wait for successful
4203 * restart of the HBA. Successful restart of the HBA is indicated by
4204 * HS_FFRDY and HS_MBRDY bits. If the HBA fails to restart even after 15
4205 * iteration, the function will restart the HBA again. The function returns
4206 * zero if HBA successfully restarted else returns negative error code.
4207 **/
dea31012005-04-17 16:05:31 -05004208static int
4209lpfc_sli_chipset_init(struct lpfc_hba *phba)
4210{
4211 uint32_t status, i = 0;
4212
4213 /* Read the HBA Host Status Register */
James Smart9940b972011-03-11 16:06:12 -05004214 if (lpfc_readl(phba->HSregaddr, &status))
4215 return -EIO;
dea31012005-04-17 16:05:31 -05004216
4217 /* Check status register to see what current state is */
4218 i = 0;
4219 while ((status & (HS_FFRDY | HS_MBRDY)) != (HS_FFRDY | HS_MBRDY)) {
4220
James Smartdcf2a4e2010-09-29 11:18:53 -04004221 /* Check every 10ms for 10 retries, then every 100ms for 90
4222 * retries, then every 1 sec for 50 retires for a total of
4223 * ~60 seconds before reset the board again and check every
4224 * 1 sec for 50 retries. The up to 60 seconds before the
4225 * board ready is required by the Falcon FIPS zeroization
4226 * complete, and any reset the board in between shall cause
4227 * restart of zeroization, further delay the board ready.
dea31012005-04-17 16:05:31 -05004228 */
James Smartdcf2a4e2010-09-29 11:18:53 -04004229 if (i++ >= 200) {
dea31012005-04-17 16:05:31 -05004230 /* Adapter failed to init, timeout, status reg
4231 <status> */
James Smarted957682007-06-17 19:56:37 -05004232 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004233 "0436 Adapter failed to init, "
James Smart09372822008-01-11 01:52:54 -05004234 "timeout, status reg x%x, "
4235 "FW Data: A8 x%x AC x%x\n", status,
4236 readl(phba->MBslimaddr + 0xa8),
4237 readl(phba->MBslimaddr + 0xac));
James Smart2e0fef82007-06-17 19:56:36 -05004238 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004239 return -ETIMEDOUT;
4240 }
4241
4242 /* Check to see if any errors occurred during init */
4243 if (status & HS_FFERM) {
4244 /* ERROR: During chipset initialization */
4245 /* Adapter failed to init, chipset, status reg
4246 <status> */
James Smarted957682007-06-17 19:56:37 -05004247 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004248 "0437 Adapter failed to init, "
James Smart09372822008-01-11 01:52:54 -05004249 "chipset, status reg x%x, "
4250 "FW Data: A8 x%x AC x%x\n", status,
4251 readl(phba->MBslimaddr + 0xa8),
4252 readl(phba->MBslimaddr + 0xac));
James Smart2e0fef82007-06-17 19:56:36 -05004253 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004254 return -EIO;
4255 }
4256
James Smartdcf2a4e2010-09-29 11:18:53 -04004257 if (i <= 10)
dea31012005-04-17 16:05:31 -05004258 msleep(10);
James Smartdcf2a4e2010-09-29 11:18:53 -04004259 else if (i <= 100)
4260 msleep(100);
4261 else
4262 msleep(1000);
dea31012005-04-17 16:05:31 -05004263
James Smartdcf2a4e2010-09-29 11:18:53 -04004264 if (i == 150) {
4265 /* Do post */
James Smart92d7f7b2007-06-17 19:56:38 -05004266 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004267 lpfc_sli_brdrestart(phba);
dea31012005-04-17 16:05:31 -05004268 }
4269 /* Read the HBA Host Status Register */
James Smart9940b972011-03-11 16:06:12 -05004270 if (lpfc_readl(phba->HSregaddr, &status))
4271 return -EIO;
dea31012005-04-17 16:05:31 -05004272 }
4273
4274 /* Check to see if any errors occurred during init */
4275 if (status & HS_FFERM) {
4276 /* ERROR: During chipset initialization */
4277 /* Adapter failed to init, chipset, status reg <status> */
James Smarted957682007-06-17 19:56:37 -05004278 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004279 "0438 Adapter failed to init, chipset, "
James Smart09372822008-01-11 01:52:54 -05004280 "status reg x%x, "
4281 "FW Data: A8 x%x AC x%x\n", status,
4282 readl(phba->MBslimaddr + 0xa8),
4283 readl(phba->MBslimaddr + 0xac));
James Smart2e0fef82007-06-17 19:56:36 -05004284 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004285 return -EIO;
4286 }
4287
4288 /* Clear all interrupt enable conditions */
4289 writel(0, phba->HCregaddr);
4290 readl(phba->HCregaddr); /* flush */
4291
4292 /* setup host attn register */
4293 writel(0xffffffff, phba->HAregaddr);
4294 readl(phba->HAregaddr); /* flush */
4295 return 0;
4296}
4297
James Smarte59058c2008-08-24 21:49:00 -04004298/**
James Smart3621a712009-04-06 18:47:14 -04004299 * lpfc_sli_hbq_count - Get the number of HBQs to be configured
James Smarte59058c2008-08-24 21:49:00 -04004300 *
4301 * This function calculates and returns the number of HBQs required to be
4302 * configured.
4303 **/
James Smart78b2d852007-08-02 11:10:21 -04004304int
James Smarted957682007-06-17 19:56:37 -05004305lpfc_sli_hbq_count(void)
4306{
James Smart92d7f7b2007-06-17 19:56:38 -05004307 return ARRAY_SIZE(lpfc_hbq_defs);
James Smarted957682007-06-17 19:56:37 -05004308}
4309
James Smarte59058c2008-08-24 21:49:00 -04004310/**
James Smart3621a712009-04-06 18:47:14 -04004311 * lpfc_sli_hbq_entry_count - Calculate total number of hbq entries
James Smarte59058c2008-08-24 21:49:00 -04004312 *
4313 * This function adds the number of hbq entries in every HBQ to get
4314 * the total number of hbq entries required for the HBA and returns
4315 * the total count.
4316 **/
James Smarted957682007-06-17 19:56:37 -05004317static int
4318lpfc_sli_hbq_entry_count(void)
4319{
4320 int hbq_count = lpfc_sli_hbq_count();
4321 int count = 0;
4322 int i;
4323
4324 for (i = 0; i < hbq_count; ++i)
James Smart92d7f7b2007-06-17 19:56:38 -05004325 count += lpfc_hbq_defs[i]->entry_count;
James Smarted957682007-06-17 19:56:37 -05004326 return count;
4327}
4328
James Smarte59058c2008-08-24 21:49:00 -04004329/**
James Smart3621a712009-04-06 18:47:14 -04004330 * lpfc_sli_hbq_size - Calculate memory required for all hbq entries
James Smarte59058c2008-08-24 21:49:00 -04004331 *
4332 * This function calculates amount of memory required for all hbq entries
4333 * to be configured and returns the total memory required.
4334 **/
dea31012005-04-17 16:05:31 -05004335int
James Smarted957682007-06-17 19:56:37 -05004336lpfc_sli_hbq_size(void)
4337{
4338 return lpfc_sli_hbq_entry_count() * sizeof(struct lpfc_hbq_entry);
4339}
4340
James Smarte59058c2008-08-24 21:49:00 -04004341/**
James Smart3621a712009-04-06 18:47:14 -04004342 * lpfc_sli_hbq_setup - configure and initialize HBQs
James Smarte59058c2008-08-24 21:49:00 -04004343 * @phba: Pointer to HBA context object.
4344 *
4345 * This function is called during the SLI initialization to configure
4346 * all the HBQs and post buffers to the HBQ. The caller is not
4347 * required to hold any locks. This function will return zero if successful
4348 * else it will return negative error code.
4349 **/
James Smarted957682007-06-17 19:56:37 -05004350static int
4351lpfc_sli_hbq_setup(struct lpfc_hba *phba)
4352{
4353 int hbq_count = lpfc_sli_hbq_count();
4354 LPFC_MBOXQ_t *pmb;
4355 MAILBOX_t *pmbox;
4356 uint32_t hbqno;
4357 uint32_t hbq_entry_index;
James Smarted957682007-06-17 19:56:37 -05004358
James Smart92d7f7b2007-06-17 19:56:38 -05004359 /* Get a Mailbox buffer to setup mailbox
4360 * commands for HBA initialization
4361 */
James Smarted957682007-06-17 19:56:37 -05004362 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4363
4364 if (!pmb)
4365 return -ENOMEM;
4366
James Smart04c68492009-05-22 14:52:52 -04004367 pmbox = &pmb->u.mb;
James Smarted957682007-06-17 19:56:37 -05004368
4369 /* Initialize the struct lpfc_sli_hbq structure for each hbq */
4370 phba->link_state = LPFC_INIT_MBX_CMDS;
James Smart3163f722008-02-08 18:50:25 -05004371 phba->hbq_in_use = 1;
James Smarted957682007-06-17 19:56:37 -05004372
4373 hbq_entry_index = 0;
4374 for (hbqno = 0; hbqno < hbq_count; ++hbqno) {
4375 phba->hbqs[hbqno].next_hbqPutIdx = 0;
4376 phba->hbqs[hbqno].hbqPutIdx = 0;
4377 phba->hbqs[hbqno].local_hbqGetIdx = 0;
4378 phba->hbqs[hbqno].entry_count =
James Smart92d7f7b2007-06-17 19:56:38 -05004379 lpfc_hbq_defs[hbqno]->entry_count;
James Smart51ef4c22007-08-02 11:10:31 -04004380 lpfc_config_hbq(phba, hbqno, lpfc_hbq_defs[hbqno],
4381 hbq_entry_index, pmb);
James Smarted957682007-06-17 19:56:37 -05004382 hbq_entry_index += phba->hbqs[hbqno].entry_count;
4383
4384 if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
4385 /* Adapter failed to init, mbxCmd <cmd> CFG_RING,
4386 mbxStatus <status>, ring <num> */
4387
4388 lpfc_printf_log(phba, KERN_ERR,
James Smart92d7f7b2007-06-17 19:56:38 -05004389 LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04004390 "1805 Adapter failed to init. "
James Smarted957682007-06-17 19:56:37 -05004391 "Data: x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04004392 pmbox->mbxCommand,
James Smarted957682007-06-17 19:56:37 -05004393 pmbox->mbxStatus, hbqno);
4394
4395 phba->link_state = LPFC_HBA_ERROR;
4396 mempool_free(pmb, phba->mbox_mem_pool);
James Smart6e7288d2010-06-07 15:23:35 -04004397 return -ENXIO;
James Smarted957682007-06-17 19:56:37 -05004398 }
4399 }
4400 phba->hbq_count = hbq_count;
4401
James Smarted957682007-06-17 19:56:37 -05004402 mempool_free(pmb, phba->mbox_mem_pool);
4403
James Smart92d7f7b2007-06-17 19:56:38 -05004404 /* Initially populate or replenish the HBQs */
James Smartd7c255b2008-08-24 21:50:00 -04004405 for (hbqno = 0; hbqno < hbq_count; ++hbqno)
4406 lpfc_sli_hbqbuf_init_hbqs(phba, hbqno);
James Smarted957682007-06-17 19:56:37 -05004407 return 0;
4408}
4409
James Smarte59058c2008-08-24 21:49:00 -04004410/**
James Smart4f774512009-05-22 14:52:35 -04004411 * lpfc_sli4_rb_setup - Initialize and post RBs to HBA
4412 * @phba: Pointer to HBA context object.
4413 *
4414 * This function is called during the SLI initialization to configure
4415 * all the HBQs and post buffers to the HBQ. The caller is not
4416 * required to hold any locks. This function will return zero if successful
4417 * else it will return negative error code.
4418 **/
4419static int
4420lpfc_sli4_rb_setup(struct lpfc_hba *phba)
4421{
4422 phba->hbq_in_use = 1;
4423 phba->hbqs[0].entry_count = lpfc_hbq_defs[0]->entry_count;
4424 phba->hbq_count = 1;
4425 /* Initially populate or replenish the HBQs */
4426 lpfc_sli_hbqbuf_init_hbqs(phba, 0);
4427 return 0;
4428}
4429
4430/**
James Smart3621a712009-04-06 18:47:14 -04004431 * lpfc_sli_config_port - Issue config port mailbox command
James Smarte59058c2008-08-24 21:49:00 -04004432 * @phba: Pointer to HBA context object.
4433 * @sli_mode: sli mode - 2/3
4434 *
4435 * This function is called by the sli intialization code path
4436 * to issue config_port mailbox command. This function restarts the
4437 * HBA firmware and issues a config_port mailbox command to configure
4438 * the SLI interface in the sli mode specified by sli_mode
4439 * variable. The caller is not required to hold any locks.
4440 * The function returns 0 if successful, else returns negative error
4441 * code.
4442 **/
James Smart93996272008-08-24 21:50:30 -04004443int
4444lpfc_sli_config_port(struct lpfc_hba *phba, int sli_mode)
dea31012005-04-17 16:05:31 -05004445{
4446 LPFC_MBOXQ_t *pmb;
4447 uint32_t resetcount = 0, rc = 0, done = 0;
4448
4449 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4450 if (!pmb) {
James Smart2e0fef82007-06-17 19:56:36 -05004451 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004452 return -ENOMEM;
4453 }
4454
James Smarted957682007-06-17 19:56:37 -05004455 phba->sli_rev = sli_mode;
dea31012005-04-17 16:05:31 -05004456 while (resetcount < 2 && !done) {
James Smart2e0fef82007-06-17 19:56:36 -05004457 spin_lock_irq(&phba->hbalock);
James Smart1c067a42006-08-01 07:33:52 -04004458 phba->sli.sli_flag |= LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05004459 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -05004460 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004461 lpfc_sli_brdrestart(phba);
dea31012005-04-17 16:05:31 -05004462 rc = lpfc_sli_chipset_init(phba);
4463 if (rc)
4464 break;
4465
James Smart2e0fef82007-06-17 19:56:36 -05004466 spin_lock_irq(&phba->hbalock);
James Smart1c067a42006-08-01 07:33:52 -04004467 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05004468 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004469 resetcount++;
4470
James Smarted957682007-06-17 19:56:37 -05004471 /* Call pre CONFIG_PORT mailbox command initialization. A
4472 * value of 0 means the call was successful. Any other
4473 * nonzero value is a failure, but if ERESTART is returned,
4474 * the driver may reset the HBA and try again.
4475 */
dea31012005-04-17 16:05:31 -05004476 rc = lpfc_config_port_prep(phba);
4477 if (rc == -ERESTART) {
James Smarted957682007-06-17 19:56:37 -05004478 phba->link_state = LPFC_LINK_UNKNOWN;
dea31012005-04-17 16:05:31 -05004479 continue;
James Smart34b02dc2008-08-24 21:49:55 -04004480 } else if (rc)
dea31012005-04-17 16:05:31 -05004481 break;
James Smart6d368e52011-05-24 11:44:12 -04004482
James Smart2e0fef82007-06-17 19:56:36 -05004483 phba->link_state = LPFC_INIT_MBX_CMDS;
dea31012005-04-17 16:05:31 -05004484 lpfc_config_port(phba, pmb);
4485 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
James Smart34b02dc2008-08-24 21:49:55 -04004486 phba->sli3_options &= ~(LPFC_SLI3_NPIV_ENABLED |
4487 LPFC_SLI3_HBQ_ENABLED |
4488 LPFC_SLI3_CRP_ENABLED |
James Smartbc739052010-08-04 16:11:18 -04004489 LPFC_SLI3_BG_ENABLED |
4490 LPFC_SLI3_DSS_ENABLED);
James Smarted957682007-06-17 19:56:37 -05004491 if (rc != MBX_SUCCESS) {
dea31012005-04-17 16:05:31 -05004492 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004493 "0442 Adapter failed to init, mbxCmd x%x "
James Smart92d7f7b2007-06-17 19:56:38 -05004494 "CONFIG_PORT, mbxStatus x%x Data: x%x\n",
James Smart04c68492009-05-22 14:52:52 -04004495 pmb->u.mb.mbxCommand, pmb->u.mb.mbxStatus, 0);
James Smart2e0fef82007-06-17 19:56:36 -05004496 spin_lock_irq(&phba->hbalock);
James Smart04c68492009-05-22 14:52:52 -04004497 phba->sli.sli_flag &= ~LPFC_SLI_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05004498 spin_unlock_irq(&phba->hbalock);
4499 rc = -ENXIO;
James Smart04c68492009-05-22 14:52:52 -04004500 } else {
4501 /* Allow asynchronous mailbox command to go through */
4502 spin_lock_irq(&phba->hbalock);
4503 phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
4504 spin_unlock_irq(&phba->hbalock);
James Smarted957682007-06-17 19:56:37 -05004505 done = 1;
James Smartcb69f7d2011-12-13 13:21:57 -05004506
4507 if ((pmb->u.mb.un.varCfgPort.casabt == 1) &&
4508 (pmb->u.mb.un.varCfgPort.gasabt == 0))
4509 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
4510 "3110 Port did not grant ASABT\n");
James Smart04c68492009-05-22 14:52:52 -04004511 }
dea31012005-04-17 16:05:31 -05004512 }
James Smarted957682007-06-17 19:56:37 -05004513 if (!done) {
4514 rc = -EINVAL;
4515 goto do_prep_failed;
4516 }
James Smart04c68492009-05-22 14:52:52 -04004517 if (pmb->u.mb.un.varCfgPort.sli_mode == 3) {
4518 if (!pmb->u.mb.un.varCfgPort.cMA) {
James Smart34b02dc2008-08-24 21:49:55 -04004519 rc = -ENXIO;
4520 goto do_prep_failed;
4521 }
James Smart04c68492009-05-22 14:52:52 -04004522 if (phba->max_vpi && pmb->u.mb.un.varCfgPort.gmv) {
James Smart34b02dc2008-08-24 21:49:55 -04004523 phba->sli3_options |= LPFC_SLI3_NPIV_ENABLED;
James Smart04c68492009-05-22 14:52:52 -04004524 phba->max_vpi = pmb->u.mb.un.varCfgPort.max_vpi;
4525 phba->max_vports = (phba->max_vpi > phba->max_vports) ?
4526 phba->max_vpi : phba->max_vports;
4527
James Smart34b02dc2008-08-24 21:49:55 -04004528 } else
4529 phba->max_vpi = 0;
James Smartbc739052010-08-04 16:11:18 -04004530 phba->fips_level = 0;
4531 phba->fips_spec_rev = 0;
4532 if (pmb->u.mb.un.varCfgPort.gdss) {
James Smart04c68492009-05-22 14:52:52 -04004533 phba->sli3_options |= LPFC_SLI3_DSS_ENABLED;
James Smartbc739052010-08-04 16:11:18 -04004534 phba->fips_level = pmb->u.mb.un.varCfgPort.fips_level;
4535 phba->fips_spec_rev = pmb->u.mb.un.varCfgPort.fips_rev;
4536 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4537 "2850 Security Crypto Active. FIPS x%d "
4538 "(Spec Rev: x%d)",
4539 phba->fips_level, phba->fips_spec_rev);
4540 }
4541 if (pmb->u.mb.un.varCfgPort.sec_err) {
4542 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4543 "2856 Config Port Security Crypto "
4544 "Error: x%x ",
4545 pmb->u.mb.un.varCfgPort.sec_err);
4546 }
James Smart04c68492009-05-22 14:52:52 -04004547 if (pmb->u.mb.un.varCfgPort.gerbm)
James Smart34b02dc2008-08-24 21:49:55 -04004548 phba->sli3_options |= LPFC_SLI3_HBQ_ENABLED;
James Smart04c68492009-05-22 14:52:52 -04004549 if (pmb->u.mb.un.varCfgPort.gcrp)
James Smart34b02dc2008-08-24 21:49:55 -04004550 phba->sli3_options |= LPFC_SLI3_CRP_ENABLED;
James Smart6e7288d2010-06-07 15:23:35 -04004551
4552 phba->hbq_get = phba->mbox->us.s3_pgp.hbq_get;
4553 phba->port_gp = phba->mbox->us.s3_pgp.port;
James Smarte2a0a9d2008-12-04 22:40:02 -05004554
4555 if (phba->cfg_enable_bg) {
James Smart04c68492009-05-22 14:52:52 -04004556 if (pmb->u.mb.un.varCfgPort.gbg)
James Smarte2a0a9d2008-12-04 22:40:02 -05004557 phba->sli3_options |= LPFC_SLI3_BG_ENABLED;
4558 else
4559 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4560 "0443 Adapter did not grant "
4561 "BlockGuard\n");
4562 }
James Smart34b02dc2008-08-24 21:49:55 -04004563 } else {
James Smart8f34f4c2008-12-04 22:39:23 -05004564 phba->hbq_get = NULL;
James Smart34b02dc2008-08-24 21:49:55 -04004565 phba->port_gp = phba->mbox->us.s2.port;
James Smartd7c255b2008-08-24 21:50:00 -04004566 phba->max_vpi = 0;
James Smarted957682007-06-17 19:56:37 -05004567 }
James Smart92d7f7b2007-06-17 19:56:38 -05004568do_prep_failed:
James Smarted957682007-06-17 19:56:37 -05004569 mempool_free(pmb, phba->mbox_mem_pool);
4570 return rc;
4571}
4572
James Smarte59058c2008-08-24 21:49:00 -04004573
4574/**
James Smart3621a712009-04-06 18:47:14 -04004575 * lpfc_sli_hba_setup - SLI intialization function
James Smarte59058c2008-08-24 21:49:00 -04004576 * @phba: Pointer to HBA context object.
4577 *
4578 * This function is the main SLI intialization function. This function
4579 * is called by the HBA intialization code, HBA reset code and HBA
4580 * error attention handler code. Caller is not required to hold any
4581 * locks. This function issues config_port mailbox command to configure
4582 * the SLI, setup iocb rings and HBQ rings. In the end the function
4583 * calls the config_port_post function to issue init_link mailbox
4584 * command and to start the discovery. The function will return zero
4585 * if successful, else it will return negative error code.
4586 **/
James Smarted957682007-06-17 19:56:37 -05004587int
4588lpfc_sli_hba_setup(struct lpfc_hba *phba)
4589{
4590 uint32_t rc;
James Smart6d368e52011-05-24 11:44:12 -04004591 int mode = 3, i;
4592 int longs;
James Smarted957682007-06-17 19:56:37 -05004593
4594 switch (lpfc_sli_mode) {
4595 case 2:
James Smart78b2d852007-08-02 11:10:21 -04004596 if (phba->cfg_enable_npiv) {
James Smart92d7f7b2007-06-17 19:56:38 -05004597 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04004598 "1824 NPIV enabled: Override lpfc_sli_mode "
James Smart92d7f7b2007-06-17 19:56:38 -05004599 "parameter (%d) to auto (0).\n",
James Smarte8b62012007-08-02 11:10:09 -04004600 lpfc_sli_mode);
James Smart92d7f7b2007-06-17 19:56:38 -05004601 break;
4602 }
James Smarted957682007-06-17 19:56:37 -05004603 mode = 2;
4604 break;
4605 case 0:
4606 case 3:
4607 break;
4608 default:
James Smart92d7f7b2007-06-17 19:56:38 -05004609 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04004610 "1819 Unrecognized lpfc_sli_mode "
4611 "parameter: %d.\n", lpfc_sli_mode);
James Smarted957682007-06-17 19:56:37 -05004612
4613 break;
4614 }
4615
James Smart93996272008-08-24 21:50:30 -04004616 rc = lpfc_sli_config_port(phba, mode);
4617
James Smarted957682007-06-17 19:56:37 -05004618 if (rc && lpfc_sli_mode == 3)
James Smart92d7f7b2007-06-17 19:56:38 -05004619 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04004620 "1820 Unable to select SLI-3. "
4621 "Not supported by adapter.\n");
James Smarted957682007-06-17 19:56:37 -05004622 if (rc && mode != 2)
James Smart93996272008-08-24 21:50:30 -04004623 rc = lpfc_sli_config_port(phba, 2);
James Smarted957682007-06-17 19:56:37 -05004624 if (rc)
dea31012005-04-17 16:05:31 -05004625 goto lpfc_sli_hba_setup_error;
4626
James Smart0d878412009-10-02 15:16:56 -04004627 /* Enable PCIe device Advanced Error Reporting (AER) if configured */
4628 if (phba->cfg_aer_support == 1 && !(phba->hba_flag & HBA_AER_ENABLED)) {
4629 rc = pci_enable_pcie_error_reporting(phba->pcidev);
4630 if (!rc) {
4631 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4632 "2709 This device supports "
4633 "Advanced Error Reporting (AER)\n");
4634 spin_lock_irq(&phba->hbalock);
4635 phba->hba_flag |= HBA_AER_ENABLED;
4636 spin_unlock_irq(&phba->hbalock);
4637 } else {
4638 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4639 "2708 This device does not support "
James Smartb069d7e2013-05-31 17:04:36 -04004640 "Advanced Error Reporting (AER): %d\n",
4641 rc);
James Smart0d878412009-10-02 15:16:56 -04004642 phba->cfg_aer_support = 0;
4643 }
4644 }
4645
James Smarted957682007-06-17 19:56:37 -05004646 if (phba->sli_rev == 3) {
4647 phba->iocb_cmd_size = SLI3_IOCB_CMD_SIZE;
4648 phba->iocb_rsp_size = SLI3_IOCB_RSP_SIZE;
James Smarted957682007-06-17 19:56:37 -05004649 } else {
4650 phba->iocb_cmd_size = SLI2_IOCB_CMD_SIZE;
4651 phba->iocb_rsp_size = SLI2_IOCB_RSP_SIZE;
James Smart92d7f7b2007-06-17 19:56:38 -05004652 phba->sli3_options = 0;
James Smarted957682007-06-17 19:56:37 -05004653 }
4654
4655 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004656 "0444 Firmware in SLI %x mode. Max_vpi %d\n",
4657 phba->sli_rev, phba->max_vpi);
James Smarted957682007-06-17 19:56:37 -05004658 rc = lpfc_sli_ring_map(phba);
dea31012005-04-17 16:05:31 -05004659
4660 if (rc)
4661 goto lpfc_sli_hba_setup_error;
4662
James Smart6d368e52011-05-24 11:44:12 -04004663 /* Initialize VPIs. */
4664 if (phba->sli_rev == LPFC_SLI_REV3) {
4665 /*
4666 * The VPI bitmask and physical ID array are allocated
4667 * and initialized once only - at driver load. A port
4668 * reset doesn't need to reinitialize this memory.
4669 */
4670 if ((phba->vpi_bmask == NULL) && (phba->vpi_ids == NULL)) {
4671 longs = (phba->max_vpi + BITS_PER_LONG) / BITS_PER_LONG;
4672 phba->vpi_bmask = kzalloc(longs * sizeof(unsigned long),
4673 GFP_KERNEL);
4674 if (!phba->vpi_bmask) {
4675 rc = -ENOMEM;
4676 goto lpfc_sli_hba_setup_error;
4677 }
4678
4679 phba->vpi_ids = kzalloc(
4680 (phba->max_vpi+1) * sizeof(uint16_t),
4681 GFP_KERNEL);
4682 if (!phba->vpi_ids) {
4683 kfree(phba->vpi_bmask);
4684 rc = -ENOMEM;
4685 goto lpfc_sli_hba_setup_error;
4686 }
4687 for (i = 0; i < phba->max_vpi; i++)
4688 phba->vpi_ids[i] = i;
4689 }
4690 }
4691
James Smart93996272008-08-24 21:50:30 -04004692 /* Init HBQs */
James Smarted957682007-06-17 19:56:37 -05004693 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
4694 rc = lpfc_sli_hbq_setup(phba);
4695 if (rc)
4696 goto lpfc_sli_hba_setup_error;
4697 }
James Smart04c68492009-05-22 14:52:52 -04004698 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004699 phba->sli.sli_flag |= LPFC_PROCESS_LA;
James Smart04c68492009-05-22 14:52:52 -04004700 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004701
4702 rc = lpfc_config_port_post(phba);
4703 if (rc)
4704 goto lpfc_sli_hba_setup_error;
4705
James Smarted957682007-06-17 19:56:37 -05004706 return rc;
4707
James Smart92d7f7b2007-06-17 19:56:38 -05004708lpfc_sli_hba_setup_error:
James Smart2e0fef82007-06-17 19:56:36 -05004709 phba->link_state = LPFC_HBA_ERROR;
James Smarte40a02c2010-02-26 14:13:54 -05004710 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004711 "0445 Firmware initialization failed\n");
dea31012005-04-17 16:05:31 -05004712 return rc;
4713}
4714
James Smartda0436e2009-05-22 14:51:39 -04004715/**
4716 * lpfc_sli4_read_fcoe_params - Read fcoe params from conf region
4717 * @phba: Pointer to HBA context object.
4718 * @mboxq: mailbox pointer.
4719 * This function issue a dump mailbox command to read config region
4720 * 23 and parse the records in the region and populate driver
4721 * data structure.
4722 **/
4723static int
James Smartff78d8f2011-12-13 13:21:35 -05004724lpfc_sli4_read_fcoe_params(struct lpfc_hba *phba)
James Smartda0436e2009-05-22 14:51:39 -04004725{
James Smartff78d8f2011-12-13 13:21:35 -05004726 LPFC_MBOXQ_t *mboxq;
James Smartda0436e2009-05-22 14:51:39 -04004727 struct lpfc_dmabuf *mp;
4728 struct lpfc_mqe *mqe;
4729 uint32_t data_length;
4730 int rc;
4731
4732 /* Program the default value of vlan_id and fc_map */
4733 phba->valid_vlan = 0;
4734 phba->fc_map[0] = LPFC_FCOE_FCF_MAP0;
4735 phba->fc_map[1] = LPFC_FCOE_FCF_MAP1;
4736 phba->fc_map[2] = LPFC_FCOE_FCF_MAP2;
4737
James Smartff78d8f2011-12-13 13:21:35 -05004738 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4739 if (!mboxq)
James Smartda0436e2009-05-22 14:51:39 -04004740 return -ENOMEM;
4741
James Smartff78d8f2011-12-13 13:21:35 -05004742 mqe = &mboxq->u.mqe;
4743 if (lpfc_sli4_dump_cfg_rg23(phba, mboxq)) {
4744 rc = -ENOMEM;
4745 goto out_free_mboxq;
4746 }
4747
James Smartda0436e2009-05-22 14:51:39 -04004748 mp = (struct lpfc_dmabuf *) mboxq->context1;
4749 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4750
4751 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
4752 "(%d):2571 Mailbox cmd x%x Status x%x "
4753 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x "
4754 "x%x x%x x%x x%x x%x x%x x%x x%x x%x "
4755 "CQ: x%x x%x x%x x%x\n",
4756 mboxq->vport ? mboxq->vport->vpi : 0,
4757 bf_get(lpfc_mqe_command, mqe),
4758 bf_get(lpfc_mqe_status, mqe),
4759 mqe->un.mb_words[0], mqe->un.mb_words[1],
4760 mqe->un.mb_words[2], mqe->un.mb_words[3],
4761 mqe->un.mb_words[4], mqe->un.mb_words[5],
4762 mqe->un.mb_words[6], mqe->un.mb_words[7],
4763 mqe->un.mb_words[8], mqe->un.mb_words[9],
4764 mqe->un.mb_words[10], mqe->un.mb_words[11],
4765 mqe->un.mb_words[12], mqe->un.mb_words[13],
4766 mqe->un.mb_words[14], mqe->un.mb_words[15],
4767 mqe->un.mb_words[16], mqe->un.mb_words[50],
4768 mboxq->mcqe.word0,
4769 mboxq->mcqe.mcqe_tag0, mboxq->mcqe.mcqe_tag1,
4770 mboxq->mcqe.trailer);
4771
4772 if (rc) {
4773 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4774 kfree(mp);
James Smartff78d8f2011-12-13 13:21:35 -05004775 rc = -EIO;
4776 goto out_free_mboxq;
James Smartda0436e2009-05-22 14:51:39 -04004777 }
4778 data_length = mqe->un.mb_words[5];
James Smarta0c87cb2009-07-19 10:01:10 -04004779 if (data_length > DMP_RGN23_SIZE) {
James Smartd11e31d2009-06-10 17:23:06 -04004780 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4781 kfree(mp);
James Smartff78d8f2011-12-13 13:21:35 -05004782 rc = -EIO;
4783 goto out_free_mboxq;
James Smartd11e31d2009-06-10 17:23:06 -04004784 }
James Smartda0436e2009-05-22 14:51:39 -04004785
4786 lpfc_parse_fcoe_conf(phba, mp->virt, data_length);
4787 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4788 kfree(mp);
James Smartff78d8f2011-12-13 13:21:35 -05004789 rc = 0;
4790
4791out_free_mboxq:
4792 mempool_free(mboxq, phba->mbox_mem_pool);
4793 return rc;
James Smartda0436e2009-05-22 14:51:39 -04004794}
4795
4796/**
4797 * lpfc_sli4_read_rev - Issue READ_REV and collect vpd data
4798 * @phba: pointer to lpfc hba data structure.
4799 * @mboxq: pointer to the LPFC_MBOXQ_t structure.
4800 * @vpd: pointer to the memory to hold resulting port vpd data.
4801 * @vpd_size: On input, the number of bytes allocated to @vpd.
4802 * On output, the number of data bytes in @vpd.
4803 *
4804 * This routine executes a READ_REV SLI4 mailbox command. In
4805 * addition, this routine gets the port vpd data.
4806 *
4807 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004808 * 0 - successful
James Smartd439d282010-09-29 11:18:45 -04004809 * -ENOMEM - could not allocated memory.
James Smartda0436e2009-05-22 14:51:39 -04004810 **/
4811static int
4812lpfc_sli4_read_rev(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
4813 uint8_t *vpd, uint32_t *vpd_size)
4814{
4815 int rc = 0;
4816 uint32_t dma_size;
4817 struct lpfc_dmabuf *dmabuf;
4818 struct lpfc_mqe *mqe;
4819
4820 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
4821 if (!dmabuf)
4822 return -ENOMEM;
4823
4824 /*
4825 * Get a DMA buffer for the vpd data resulting from the READ_REV
4826 * mailbox command.
4827 */
4828 dma_size = *vpd_size;
Joe Perches1aee3832014-09-03 12:56:12 -04004829 dmabuf->virt = dma_zalloc_coherent(&phba->pcidev->dev, dma_size,
4830 &dmabuf->phys, GFP_KERNEL);
James Smartda0436e2009-05-22 14:51:39 -04004831 if (!dmabuf->virt) {
4832 kfree(dmabuf);
4833 return -ENOMEM;
4834 }
James Smartda0436e2009-05-22 14:51:39 -04004835
4836 /*
4837 * The SLI4 implementation of READ_REV conflicts at word1,
4838 * bits 31:16 and SLI4 adds vpd functionality not present
4839 * in SLI3. This code corrects the conflicts.
4840 */
4841 lpfc_read_rev(phba, mboxq);
4842 mqe = &mboxq->u.mqe;
4843 mqe->un.read_rev.vpd_paddr_high = putPaddrHigh(dmabuf->phys);
4844 mqe->un.read_rev.vpd_paddr_low = putPaddrLow(dmabuf->phys);
4845 mqe->un.read_rev.word1 &= 0x0000FFFF;
4846 bf_set(lpfc_mbx_rd_rev_vpd, &mqe->un.read_rev, 1);
4847 bf_set(lpfc_mbx_rd_rev_avail_len, &mqe->un.read_rev, dma_size);
4848
4849 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4850 if (rc) {
4851 dma_free_coherent(&phba->pcidev->dev, dma_size,
4852 dmabuf->virt, dmabuf->phys);
James Smartdef9c7a2009-12-21 17:02:28 -05004853 kfree(dmabuf);
James Smartda0436e2009-05-22 14:51:39 -04004854 return -EIO;
4855 }
4856
James Smartda0436e2009-05-22 14:51:39 -04004857 /*
4858 * The available vpd length cannot be bigger than the
4859 * DMA buffer passed to the port. Catch the less than
4860 * case and update the caller's size.
4861 */
4862 if (mqe->un.read_rev.avail_vpd_len < *vpd_size)
4863 *vpd_size = mqe->un.read_rev.avail_vpd_len;
4864
James Smartd7c47992010-06-08 18:31:54 -04004865 memcpy(vpd, dmabuf->virt, *vpd_size);
4866
James Smartda0436e2009-05-22 14:51:39 -04004867 dma_free_coherent(&phba->pcidev->dev, dma_size,
4868 dmabuf->virt, dmabuf->phys);
4869 kfree(dmabuf);
4870 return 0;
4871}
4872
4873/**
James Smartcd1c8302011-10-10 21:33:25 -04004874 * lpfc_sli4_retrieve_pport_name - Retrieve SLI4 device physical port name
4875 * @phba: pointer to lpfc hba data structure.
4876 *
4877 * This routine retrieves SLI4 device physical port name this PCI function
4878 * is attached to.
4879 *
4880 * Return codes
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004881 * 0 - successful
James Smartcd1c8302011-10-10 21:33:25 -04004882 * otherwise - failed to retrieve physical port name
4883 **/
4884static int
4885lpfc_sli4_retrieve_pport_name(struct lpfc_hba *phba)
4886{
4887 LPFC_MBOXQ_t *mboxq;
James Smartcd1c8302011-10-10 21:33:25 -04004888 struct lpfc_mbx_get_cntl_attributes *mbx_cntl_attr;
4889 struct lpfc_controller_attribute *cntl_attr;
4890 struct lpfc_mbx_get_port_name *get_port_name;
4891 void *virtaddr = NULL;
4892 uint32_t alloclen, reqlen;
4893 uint32_t shdr_status, shdr_add_status;
4894 union lpfc_sli4_cfg_shdr *shdr;
4895 char cport_name = 0;
4896 int rc;
4897
4898 /* We assume nothing at this point */
4899 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_INVAL;
4900 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_NON;
4901
4902 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4903 if (!mboxq)
4904 return -ENOMEM;
James Smartcd1c8302011-10-10 21:33:25 -04004905 /* obtain link type and link number via READ_CONFIG */
James Smartff78d8f2011-12-13 13:21:35 -05004906 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_INVAL;
4907 lpfc_sli4_read_config(phba);
4908 if (phba->sli4_hba.lnk_info.lnk_dv == LPFC_LNK_DAT_VAL)
4909 goto retrieve_ppname;
James Smartcd1c8302011-10-10 21:33:25 -04004910
4911 /* obtain link type and link number via COMMON_GET_CNTL_ATTRIBUTES */
4912 reqlen = sizeof(struct lpfc_mbx_get_cntl_attributes);
4913 alloclen = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
4914 LPFC_MBOX_OPCODE_GET_CNTL_ATTRIBUTES, reqlen,
4915 LPFC_SLI4_MBX_NEMBED);
4916 if (alloclen < reqlen) {
4917 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
4918 "3084 Allocated DMA memory size (%d) is "
4919 "less than the requested DMA memory size "
4920 "(%d)\n", alloclen, reqlen);
4921 rc = -ENOMEM;
4922 goto out_free_mboxq;
4923 }
4924 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4925 virtaddr = mboxq->sge_array->addr[0];
4926 mbx_cntl_attr = (struct lpfc_mbx_get_cntl_attributes *)virtaddr;
4927 shdr = &mbx_cntl_attr->cfg_shdr;
4928 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
4929 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
4930 if (shdr_status || shdr_add_status || rc) {
4931 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
4932 "3085 Mailbox x%x (x%x/x%x) failed, "
4933 "rc:x%x, status:x%x, add_status:x%x\n",
4934 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
4935 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
4936 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
4937 rc, shdr_status, shdr_add_status);
4938 rc = -ENXIO;
4939 goto out_free_mboxq;
4940 }
4941 cntl_attr = &mbx_cntl_attr->cntl_attr;
4942 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_VAL;
4943 phba->sli4_hba.lnk_info.lnk_tp =
4944 bf_get(lpfc_cntl_attr_lnk_type, cntl_attr);
4945 phba->sli4_hba.lnk_info.lnk_no =
4946 bf_get(lpfc_cntl_attr_lnk_numb, cntl_attr);
4947 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4948 "3086 lnk_type:%d, lnk_numb:%d\n",
4949 phba->sli4_hba.lnk_info.lnk_tp,
4950 phba->sli4_hba.lnk_info.lnk_no);
4951
4952retrieve_ppname:
4953 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
4954 LPFC_MBOX_OPCODE_GET_PORT_NAME,
4955 sizeof(struct lpfc_mbx_get_port_name) -
4956 sizeof(struct lpfc_sli4_cfg_mhdr),
4957 LPFC_SLI4_MBX_EMBED);
4958 get_port_name = &mboxq->u.mqe.un.get_port_name;
4959 shdr = (union lpfc_sli4_cfg_shdr *)&get_port_name->header.cfg_shdr;
4960 bf_set(lpfc_mbox_hdr_version, &shdr->request, LPFC_OPCODE_VERSION_1);
4961 bf_set(lpfc_mbx_get_port_name_lnk_type, &get_port_name->u.request,
4962 phba->sli4_hba.lnk_info.lnk_tp);
4963 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4964 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
4965 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
4966 if (shdr_status || shdr_add_status || rc) {
4967 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
4968 "3087 Mailbox x%x (x%x/x%x) failed: "
4969 "rc:x%x, status:x%x, add_status:x%x\n",
4970 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
4971 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
4972 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
4973 rc, shdr_status, shdr_add_status);
4974 rc = -ENXIO;
4975 goto out_free_mboxq;
4976 }
4977 switch (phba->sli4_hba.lnk_info.lnk_no) {
4978 case LPFC_LINK_NUMBER_0:
4979 cport_name = bf_get(lpfc_mbx_get_port_name_name0,
4980 &get_port_name->u.response);
4981 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
4982 break;
4983 case LPFC_LINK_NUMBER_1:
4984 cport_name = bf_get(lpfc_mbx_get_port_name_name1,
4985 &get_port_name->u.response);
4986 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
4987 break;
4988 case LPFC_LINK_NUMBER_2:
4989 cport_name = bf_get(lpfc_mbx_get_port_name_name2,
4990 &get_port_name->u.response);
4991 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
4992 break;
4993 case LPFC_LINK_NUMBER_3:
4994 cport_name = bf_get(lpfc_mbx_get_port_name_name3,
4995 &get_port_name->u.response);
4996 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
4997 break;
4998 default:
4999 break;
5000 }
5001
5002 if (phba->sli4_hba.pport_name_sta == LPFC_SLI4_PPNAME_GET) {
5003 phba->Port[0] = cport_name;
5004 phba->Port[1] = '\0';
5005 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
5006 "3091 SLI get port name: %s\n", phba->Port);
5007 }
5008
5009out_free_mboxq:
5010 if (rc != MBX_TIMEOUT) {
5011 if (bf_get(lpfc_mqe_command, &mboxq->u.mqe) == MBX_SLI4_CONFIG)
5012 lpfc_sli4_mbox_cmd_free(phba, mboxq);
5013 else
5014 mempool_free(mboxq, phba->mbox_mem_pool);
5015 }
5016 return rc;
5017}
5018
5019/**
James Smartda0436e2009-05-22 14:51:39 -04005020 * lpfc_sli4_arm_cqeq_intr - Arm sli-4 device completion and event queues
5021 * @phba: pointer to lpfc hba data structure.
5022 *
5023 * This routine is called to explicitly arm the SLI4 device's completion and
5024 * event queues
5025 **/
5026static void
5027lpfc_sli4_arm_cqeq_intr(struct lpfc_hba *phba)
5028{
James Smart962bc512013-01-03 15:44:00 -05005029 int fcp_eqidx;
James Smartda0436e2009-05-22 14:51:39 -04005030
5031 lpfc_sli4_cq_release(phba->sli4_hba.mbx_cq, LPFC_QUEUE_REARM);
5032 lpfc_sli4_cq_release(phba->sli4_hba.els_cq, LPFC_QUEUE_REARM);
James Smart05580562011-05-24 11:40:48 -04005033 fcp_eqidx = 0;
James Smart2e90f4b2011-12-13 13:22:37 -05005034 if (phba->sli4_hba.fcp_cq) {
James Smart67d12732012-08-03 12:36:13 -04005035 do {
James Smart2e90f4b2011-12-13 13:22:37 -05005036 lpfc_sli4_cq_release(phba->sli4_hba.fcp_cq[fcp_eqidx],
5037 LPFC_QUEUE_REARM);
James Smart67d12732012-08-03 12:36:13 -04005038 } while (++fcp_eqidx < phba->cfg_fcp_io_channel);
James Smart2e90f4b2011-12-13 13:22:37 -05005039 }
James Smart1ba981f2014-02-20 09:56:45 -05005040
James Smartf38fa0b2014-04-04 13:52:21 -04005041 if (phba->cfg_fof)
James Smart1ba981f2014-02-20 09:56:45 -05005042 lpfc_sli4_cq_release(phba->sli4_hba.oas_cq, LPFC_QUEUE_REARM);
5043
James Smart67d12732012-08-03 12:36:13 -04005044 if (phba->sli4_hba.hba_eq) {
5045 for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_io_channel;
James Smart2e90f4b2011-12-13 13:22:37 -05005046 fcp_eqidx++)
James Smart67d12732012-08-03 12:36:13 -04005047 lpfc_sli4_eq_release(phba->sli4_hba.hba_eq[fcp_eqidx],
James Smart2e90f4b2011-12-13 13:22:37 -05005048 LPFC_QUEUE_REARM);
5049 }
James Smart1ba981f2014-02-20 09:56:45 -05005050
5051 if (phba->cfg_fof)
5052 lpfc_sli4_eq_release(phba->sli4_hba.fof_eq, LPFC_QUEUE_REARM);
James Smartda0436e2009-05-22 14:51:39 -04005053}
5054
5055/**
James Smart6d368e52011-05-24 11:44:12 -04005056 * lpfc_sli4_get_avail_extnt_rsrc - Get available resource extent count.
5057 * @phba: Pointer to HBA context object.
5058 * @type: The resource extent type.
James Smartb76f2dc2011-07-22 18:37:42 -04005059 * @extnt_count: buffer to hold port available extent count.
5060 * @extnt_size: buffer to hold element count per extent.
James Smart6d368e52011-05-24 11:44:12 -04005061 *
James Smartb76f2dc2011-07-22 18:37:42 -04005062 * This function calls the port and retrievs the number of available
5063 * extents and their size for a particular extent type.
5064 *
5065 * Returns: 0 if successful. Nonzero otherwise.
James Smart6d368e52011-05-24 11:44:12 -04005066 **/
James Smartb76f2dc2011-07-22 18:37:42 -04005067int
James Smart6d368e52011-05-24 11:44:12 -04005068lpfc_sli4_get_avail_extnt_rsrc(struct lpfc_hba *phba, uint16_t type,
5069 uint16_t *extnt_count, uint16_t *extnt_size)
5070{
5071 int rc = 0;
5072 uint32_t length;
5073 uint32_t mbox_tmo;
5074 struct lpfc_mbx_get_rsrc_extent_info *rsrc_info;
5075 LPFC_MBOXQ_t *mbox;
5076
5077 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5078 if (!mbox)
5079 return -ENOMEM;
5080
5081 /* Find out how many extents are available for this resource type */
5082 length = (sizeof(struct lpfc_mbx_get_rsrc_extent_info) -
5083 sizeof(struct lpfc_sli4_cfg_mhdr));
5084 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5085 LPFC_MBOX_OPCODE_GET_RSRC_EXTENT_INFO,
5086 length, LPFC_SLI4_MBX_EMBED);
5087
5088 /* Send an extents count of 0 - the GET doesn't use it. */
5089 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, 0, type,
5090 LPFC_SLI4_MBX_EMBED);
5091 if (unlikely(rc)) {
5092 rc = -EIO;
5093 goto err_exit;
5094 }
5095
5096 if (!phba->sli4_hba.intr_enable)
5097 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5098 else {
James Smarta183a152011-10-10 21:32:43 -04005099 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -04005100 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5101 }
5102 if (unlikely(rc)) {
5103 rc = -EIO;
5104 goto err_exit;
5105 }
5106
5107 rsrc_info = &mbox->u.mqe.un.rsrc_extent_info;
5108 if (bf_get(lpfc_mbox_hdr_status,
5109 &rsrc_info->header.cfg_shdr.response)) {
5110 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5111 "2930 Failed to get resource extents "
5112 "Status 0x%x Add'l Status 0x%x\n",
5113 bf_get(lpfc_mbox_hdr_status,
5114 &rsrc_info->header.cfg_shdr.response),
5115 bf_get(lpfc_mbox_hdr_add_status,
5116 &rsrc_info->header.cfg_shdr.response));
5117 rc = -EIO;
5118 goto err_exit;
5119 }
5120
5121 *extnt_count = bf_get(lpfc_mbx_get_rsrc_extent_info_cnt,
5122 &rsrc_info->u.rsp);
5123 *extnt_size = bf_get(lpfc_mbx_get_rsrc_extent_info_size,
5124 &rsrc_info->u.rsp);
James Smart8a9d2e82012-05-09 21:16:12 -04005125
5126 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
5127 "3162 Retrieved extents type-%d from port: count:%d, "
5128 "size:%d\n", type, *extnt_count, *extnt_size);
5129
5130err_exit:
James Smart6d368e52011-05-24 11:44:12 -04005131 mempool_free(mbox, phba->mbox_mem_pool);
5132 return rc;
5133}
5134
5135/**
5136 * lpfc_sli4_chk_avail_extnt_rsrc - Check for available SLI4 resource extents.
5137 * @phba: Pointer to HBA context object.
5138 * @type: The extent type to check.
5139 *
5140 * This function reads the current available extents from the port and checks
5141 * if the extent count or extent size has changed since the last access.
5142 * Callers use this routine post port reset to understand if there is a
5143 * extent reprovisioning requirement.
5144 *
5145 * Returns:
5146 * -Error: error indicates problem.
5147 * 1: Extent count or size has changed.
5148 * 0: No changes.
5149 **/
5150static int
5151lpfc_sli4_chk_avail_extnt_rsrc(struct lpfc_hba *phba, uint16_t type)
5152{
5153 uint16_t curr_ext_cnt, rsrc_ext_cnt;
5154 uint16_t size_diff, rsrc_ext_size;
5155 int rc = 0;
5156 struct lpfc_rsrc_blks *rsrc_entry;
5157 struct list_head *rsrc_blk_list = NULL;
5158
5159 size_diff = 0;
5160 curr_ext_cnt = 0;
5161 rc = lpfc_sli4_get_avail_extnt_rsrc(phba, type,
5162 &rsrc_ext_cnt,
5163 &rsrc_ext_size);
5164 if (unlikely(rc))
5165 return -EIO;
5166
5167 switch (type) {
5168 case LPFC_RSC_TYPE_FCOE_RPI:
5169 rsrc_blk_list = &phba->sli4_hba.lpfc_rpi_blk_list;
5170 break;
5171 case LPFC_RSC_TYPE_FCOE_VPI:
5172 rsrc_blk_list = &phba->lpfc_vpi_blk_list;
5173 break;
5174 case LPFC_RSC_TYPE_FCOE_XRI:
5175 rsrc_blk_list = &phba->sli4_hba.lpfc_xri_blk_list;
5176 break;
5177 case LPFC_RSC_TYPE_FCOE_VFI:
5178 rsrc_blk_list = &phba->sli4_hba.lpfc_vfi_blk_list;
5179 break;
5180 default:
5181 break;
5182 }
5183
5184 list_for_each_entry(rsrc_entry, rsrc_blk_list, list) {
5185 curr_ext_cnt++;
5186 if (rsrc_entry->rsrc_size != rsrc_ext_size)
5187 size_diff++;
5188 }
5189
5190 if (curr_ext_cnt != rsrc_ext_cnt || size_diff != 0)
5191 rc = 1;
5192
5193 return rc;
5194}
5195
5196/**
5197 * lpfc_sli4_cfg_post_extnts -
5198 * @phba: Pointer to HBA context object.
5199 * @extnt_cnt - number of available extents.
5200 * @type - the extent type (rpi, xri, vfi, vpi).
5201 * @emb - buffer to hold either MBX_EMBED or MBX_NEMBED operation.
5202 * @mbox - pointer to the caller's allocated mailbox structure.
5203 *
5204 * This function executes the extents allocation request. It also
5205 * takes care of the amount of memory needed to allocate or get the
5206 * allocated extents. It is the caller's responsibility to evaluate
5207 * the response.
5208 *
5209 * Returns:
5210 * -Error: Error value describes the condition found.
5211 * 0: if successful
5212 **/
5213static int
James Smart8a9d2e82012-05-09 21:16:12 -04005214lpfc_sli4_cfg_post_extnts(struct lpfc_hba *phba, uint16_t extnt_cnt,
James Smart6d368e52011-05-24 11:44:12 -04005215 uint16_t type, bool *emb, LPFC_MBOXQ_t *mbox)
5216{
5217 int rc = 0;
5218 uint32_t req_len;
5219 uint32_t emb_len;
5220 uint32_t alloc_len, mbox_tmo;
5221
5222 /* Calculate the total requested length of the dma memory */
James Smart8a9d2e82012-05-09 21:16:12 -04005223 req_len = extnt_cnt * sizeof(uint16_t);
James Smart6d368e52011-05-24 11:44:12 -04005224
5225 /*
5226 * Calculate the size of an embedded mailbox. The uint32_t
5227 * accounts for extents-specific word.
5228 */
5229 emb_len = sizeof(MAILBOX_t) - sizeof(struct mbox_header) -
5230 sizeof(uint32_t);
5231
5232 /*
5233 * Presume the allocation and response will fit into an embedded
5234 * mailbox. If not true, reconfigure to a non-embedded mailbox.
5235 */
5236 *emb = LPFC_SLI4_MBX_EMBED;
5237 if (req_len > emb_len) {
James Smart8a9d2e82012-05-09 21:16:12 -04005238 req_len = extnt_cnt * sizeof(uint16_t) +
James Smart6d368e52011-05-24 11:44:12 -04005239 sizeof(union lpfc_sli4_cfg_shdr) +
5240 sizeof(uint32_t);
5241 *emb = LPFC_SLI4_MBX_NEMBED;
5242 }
5243
5244 alloc_len = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5245 LPFC_MBOX_OPCODE_ALLOC_RSRC_EXTENT,
5246 req_len, *emb);
5247 if (alloc_len < req_len) {
5248 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smartb76f2dc2011-07-22 18:37:42 -04005249 "2982 Allocated DMA memory size (x%x) is "
James Smart6d368e52011-05-24 11:44:12 -04005250 "less than the requested DMA memory "
5251 "size (x%x)\n", alloc_len, req_len);
5252 return -ENOMEM;
5253 }
James Smart8a9d2e82012-05-09 21:16:12 -04005254 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, extnt_cnt, type, *emb);
James Smart6d368e52011-05-24 11:44:12 -04005255 if (unlikely(rc))
5256 return -EIO;
5257
5258 if (!phba->sli4_hba.intr_enable)
5259 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5260 else {
James Smarta183a152011-10-10 21:32:43 -04005261 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -04005262 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5263 }
5264
5265 if (unlikely(rc))
5266 rc = -EIO;
5267 return rc;
5268}
5269
5270/**
5271 * lpfc_sli4_alloc_extent - Allocate an SLI4 resource extent.
5272 * @phba: Pointer to HBA context object.
5273 * @type: The resource extent type to allocate.
5274 *
5275 * This function allocates the number of elements for the specified
5276 * resource type.
5277 **/
5278static int
5279lpfc_sli4_alloc_extent(struct lpfc_hba *phba, uint16_t type)
5280{
5281 bool emb = false;
5282 uint16_t rsrc_id_cnt, rsrc_cnt, rsrc_size;
5283 uint16_t rsrc_id, rsrc_start, j, k;
5284 uint16_t *ids;
5285 int i, rc;
5286 unsigned long longs;
5287 unsigned long *bmask;
5288 struct lpfc_rsrc_blks *rsrc_blks;
5289 LPFC_MBOXQ_t *mbox;
5290 uint32_t length;
5291 struct lpfc_id_range *id_array = NULL;
5292 void *virtaddr = NULL;
5293 struct lpfc_mbx_nembed_rsrc_extent *n_rsrc;
5294 struct lpfc_mbx_alloc_rsrc_extents *rsrc_ext;
5295 struct list_head *ext_blk_list;
5296
5297 rc = lpfc_sli4_get_avail_extnt_rsrc(phba, type,
5298 &rsrc_cnt,
5299 &rsrc_size);
5300 if (unlikely(rc))
5301 return -EIO;
5302
5303 if ((rsrc_cnt == 0) || (rsrc_size == 0)) {
5304 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5305 "3009 No available Resource Extents "
5306 "for resource type 0x%x: Count: 0x%x, "
5307 "Size 0x%x\n", type, rsrc_cnt,
5308 rsrc_size);
5309 return -ENOMEM;
5310 }
5311
James Smart8a9d2e82012-05-09 21:16:12 -04005312 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_INIT | LOG_SLI,
5313 "2903 Post resource extents type-0x%x: "
5314 "count:%d, size %d\n", type, rsrc_cnt, rsrc_size);
James Smart6d368e52011-05-24 11:44:12 -04005315
5316 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5317 if (!mbox)
5318 return -ENOMEM;
5319
James Smart8a9d2e82012-05-09 21:16:12 -04005320 rc = lpfc_sli4_cfg_post_extnts(phba, rsrc_cnt, type, &emb, mbox);
James Smart6d368e52011-05-24 11:44:12 -04005321 if (unlikely(rc)) {
5322 rc = -EIO;
5323 goto err_exit;
5324 }
5325
5326 /*
5327 * Figure out where the response is located. Then get local pointers
5328 * to the response data. The port does not guarantee to respond to
5329 * all extents counts request so update the local variable with the
5330 * allocated count from the port.
5331 */
5332 if (emb == LPFC_SLI4_MBX_EMBED) {
5333 rsrc_ext = &mbox->u.mqe.un.alloc_rsrc_extents;
5334 id_array = &rsrc_ext->u.rsp.id[0];
5335 rsrc_cnt = bf_get(lpfc_mbx_rsrc_cnt, &rsrc_ext->u.rsp);
5336 } else {
5337 virtaddr = mbox->sge_array->addr[0];
5338 n_rsrc = (struct lpfc_mbx_nembed_rsrc_extent *) virtaddr;
5339 rsrc_cnt = bf_get(lpfc_mbx_rsrc_cnt, n_rsrc);
5340 id_array = &n_rsrc->id;
5341 }
5342
5343 longs = ((rsrc_cnt * rsrc_size) + BITS_PER_LONG - 1) / BITS_PER_LONG;
5344 rsrc_id_cnt = rsrc_cnt * rsrc_size;
5345
5346 /*
5347 * Based on the resource size and count, correct the base and max
5348 * resource values.
5349 */
5350 length = sizeof(struct lpfc_rsrc_blks);
5351 switch (type) {
5352 case LPFC_RSC_TYPE_FCOE_RPI:
5353 phba->sli4_hba.rpi_bmask = kzalloc(longs *
5354 sizeof(unsigned long),
5355 GFP_KERNEL);
5356 if (unlikely(!phba->sli4_hba.rpi_bmask)) {
5357 rc = -ENOMEM;
5358 goto err_exit;
5359 }
5360 phba->sli4_hba.rpi_ids = kzalloc(rsrc_id_cnt *
5361 sizeof(uint16_t),
5362 GFP_KERNEL);
5363 if (unlikely(!phba->sli4_hba.rpi_ids)) {
5364 kfree(phba->sli4_hba.rpi_bmask);
5365 rc = -ENOMEM;
5366 goto err_exit;
5367 }
5368
5369 /*
5370 * The next_rpi was initialized with the maximum available
5371 * count but the port may allocate a smaller number. Catch
5372 * that case and update the next_rpi.
5373 */
5374 phba->sli4_hba.next_rpi = rsrc_id_cnt;
5375
5376 /* Initialize local ptrs for common extent processing later. */
5377 bmask = phba->sli4_hba.rpi_bmask;
5378 ids = phba->sli4_hba.rpi_ids;
5379 ext_blk_list = &phba->sli4_hba.lpfc_rpi_blk_list;
5380 break;
5381 case LPFC_RSC_TYPE_FCOE_VPI:
5382 phba->vpi_bmask = kzalloc(longs *
5383 sizeof(unsigned long),
5384 GFP_KERNEL);
5385 if (unlikely(!phba->vpi_bmask)) {
5386 rc = -ENOMEM;
5387 goto err_exit;
5388 }
5389 phba->vpi_ids = kzalloc(rsrc_id_cnt *
5390 sizeof(uint16_t),
5391 GFP_KERNEL);
5392 if (unlikely(!phba->vpi_ids)) {
5393 kfree(phba->vpi_bmask);
5394 rc = -ENOMEM;
5395 goto err_exit;
5396 }
5397
5398 /* Initialize local ptrs for common extent processing later. */
5399 bmask = phba->vpi_bmask;
5400 ids = phba->vpi_ids;
5401 ext_blk_list = &phba->lpfc_vpi_blk_list;
5402 break;
5403 case LPFC_RSC_TYPE_FCOE_XRI:
5404 phba->sli4_hba.xri_bmask = kzalloc(longs *
5405 sizeof(unsigned long),
5406 GFP_KERNEL);
5407 if (unlikely(!phba->sli4_hba.xri_bmask)) {
5408 rc = -ENOMEM;
5409 goto err_exit;
5410 }
James Smart8a9d2e82012-05-09 21:16:12 -04005411 phba->sli4_hba.max_cfg_param.xri_used = 0;
James Smart6d368e52011-05-24 11:44:12 -04005412 phba->sli4_hba.xri_ids = kzalloc(rsrc_id_cnt *
5413 sizeof(uint16_t),
5414 GFP_KERNEL);
5415 if (unlikely(!phba->sli4_hba.xri_ids)) {
5416 kfree(phba->sli4_hba.xri_bmask);
5417 rc = -ENOMEM;
5418 goto err_exit;
5419 }
5420
5421 /* Initialize local ptrs for common extent processing later. */
5422 bmask = phba->sli4_hba.xri_bmask;
5423 ids = phba->sli4_hba.xri_ids;
5424 ext_blk_list = &phba->sli4_hba.lpfc_xri_blk_list;
5425 break;
5426 case LPFC_RSC_TYPE_FCOE_VFI:
5427 phba->sli4_hba.vfi_bmask = kzalloc(longs *
5428 sizeof(unsigned long),
5429 GFP_KERNEL);
5430 if (unlikely(!phba->sli4_hba.vfi_bmask)) {
5431 rc = -ENOMEM;
5432 goto err_exit;
5433 }
5434 phba->sli4_hba.vfi_ids = kzalloc(rsrc_id_cnt *
5435 sizeof(uint16_t),
5436 GFP_KERNEL);
5437 if (unlikely(!phba->sli4_hba.vfi_ids)) {
5438 kfree(phba->sli4_hba.vfi_bmask);
5439 rc = -ENOMEM;
5440 goto err_exit;
5441 }
5442
5443 /* Initialize local ptrs for common extent processing later. */
5444 bmask = phba->sli4_hba.vfi_bmask;
5445 ids = phba->sli4_hba.vfi_ids;
5446 ext_blk_list = &phba->sli4_hba.lpfc_vfi_blk_list;
5447 break;
5448 default:
5449 /* Unsupported Opcode. Fail call. */
5450 id_array = NULL;
5451 bmask = NULL;
5452 ids = NULL;
5453 ext_blk_list = NULL;
5454 goto err_exit;
5455 }
5456
5457 /*
5458 * Complete initializing the extent configuration with the
5459 * allocated ids assigned to this function. The bitmask serves
5460 * as an index into the array and manages the available ids. The
5461 * array just stores the ids communicated to the port via the wqes.
5462 */
5463 for (i = 0, j = 0, k = 0; i < rsrc_cnt; i++) {
5464 if ((i % 2) == 0)
5465 rsrc_id = bf_get(lpfc_mbx_rsrc_id_word4_0,
5466 &id_array[k]);
5467 else
5468 rsrc_id = bf_get(lpfc_mbx_rsrc_id_word4_1,
5469 &id_array[k]);
5470
5471 rsrc_blks = kzalloc(length, GFP_KERNEL);
5472 if (unlikely(!rsrc_blks)) {
5473 rc = -ENOMEM;
5474 kfree(bmask);
5475 kfree(ids);
5476 goto err_exit;
5477 }
5478 rsrc_blks->rsrc_start = rsrc_id;
5479 rsrc_blks->rsrc_size = rsrc_size;
5480 list_add_tail(&rsrc_blks->list, ext_blk_list);
5481 rsrc_start = rsrc_id;
5482 if ((type == LPFC_RSC_TYPE_FCOE_XRI) && (j == 0))
5483 phba->sli4_hba.scsi_xri_start = rsrc_start +
5484 lpfc_sli4_get_els_iocb_cnt(phba);
5485
5486 while (rsrc_id < (rsrc_start + rsrc_size)) {
5487 ids[j] = rsrc_id;
5488 rsrc_id++;
5489 j++;
5490 }
5491 /* Entire word processed. Get next word.*/
5492 if ((i % 2) == 1)
5493 k++;
5494 }
5495 err_exit:
5496 lpfc_sli4_mbox_cmd_free(phba, mbox);
5497 return rc;
5498}
5499
5500/**
5501 * lpfc_sli4_dealloc_extent - Deallocate an SLI4 resource extent.
5502 * @phba: Pointer to HBA context object.
5503 * @type: the extent's type.
5504 *
5505 * This function deallocates all extents of a particular resource type.
5506 * SLI4 does not allow for deallocating a particular extent range. It
5507 * is the caller's responsibility to release all kernel memory resources.
5508 **/
5509static int
5510lpfc_sli4_dealloc_extent(struct lpfc_hba *phba, uint16_t type)
5511{
5512 int rc;
5513 uint32_t length, mbox_tmo = 0;
5514 LPFC_MBOXQ_t *mbox;
5515 struct lpfc_mbx_dealloc_rsrc_extents *dealloc_rsrc;
5516 struct lpfc_rsrc_blks *rsrc_blk, *rsrc_blk_next;
5517
5518 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5519 if (!mbox)
5520 return -ENOMEM;
5521
5522 /*
5523 * This function sends an embedded mailbox because it only sends the
5524 * the resource type. All extents of this type are released by the
5525 * port.
5526 */
5527 length = (sizeof(struct lpfc_mbx_dealloc_rsrc_extents) -
5528 sizeof(struct lpfc_sli4_cfg_mhdr));
5529 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5530 LPFC_MBOX_OPCODE_DEALLOC_RSRC_EXTENT,
5531 length, LPFC_SLI4_MBX_EMBED);
5532
5533 /* Send an extents count of 0 - the dealloc doesn't use it. */
5534 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, 0, type,
5535 LPFC_SLI4_MBX_EMBED);
5536 if (unlikely(rc)) {
5537 rc = -EIO;
5538 goto out_free_mbox;
5539 }
5540 if (!phba->sli4_hba.intr_enable)
5541 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5542 else {
James Smarta183a152011-10-10 21:32:43 -04005543 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -04005544 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5545 }
5546 if (unlikely(rc)) {
5547 rc = -EIO;
5548 goto out_free_mbox;
5549 }
5550
5551 dealloc_rsrc = &mbox->u.mqe.un.dealloc_rsrc_extents;
5552 if (bf_get(lpfc_mbox_hdr_status,
5553 &dealloc_rsrc->header.cfg_shdr.response)) {
5554 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5555 "2919 Failed to release resource extents "
5556 "for type %d - Status 0x%x Add'l Status 0x%x. "
5557 "Resource memory not released.\n",
5558 type,
5559 bf_get(lpfc_mbox_hdr_status,
5560 &dealloc_rsrc->header.cfg_shdr.response),
5561 bf_get(lpfc_mbox_hdr_add_status,
5562 &dealloc_rsrc->header.cfg_shdr.response));
5563 rc = -EIO;
5564 goto out_free_mbox;
5565 }
5566
5567 /* Release kernel memory resources for the specific type. */
5568 switch (type) {
5569 case LPFC_RSC_TYPE_FCOE_VPI:
5570 kfree(phba->vpi_bmask);
5571 kfree(phba->vpi_ids);
5572 bf_set(lpfc_vpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5573 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5574 &phba->lpfc_vpi_blk_list, list) {
5575 list_del_init(&rsrc_blk->list);
5576 kfree(rsrc_blk);
5577 }
James Smart16a3a202013-04-17 20:14:38 -04005578 phba->sli4_hba.max_cfg_param.vpi_used = 0;
James Smart6d368e52011-05-24 11:44:12 -04005579 break;
5580 case LPFC_RSC_TYPE_FCOE_XRI:
5581 kfree(phba->sli4_hba.xri_bmask);
5582 kfree(phba->sli4_hba.xri_ids);
James Smart6d368e52011-05-24 11:44:12 -04005583 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5584 &phba->sli4_hba.lpfc_xri_blk_list, list) {
5585 list_del_init(&rsrc_blk->list);
5586 kfree(rsrc_blk);
5587 }
5588 break;
5589 case LPFC_RSC_TYPE_FCOE_VFI:
5590 kfree(phba->sli4_hba.vfi_bmask);
5591 kfree(phba->sli4_hba.vfi_ids);
5592 bf_set(lpfc_vfi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5593 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5594 &phba->sli4_hba.lpfc_vfi_blk_list, list) {
5595 list_del_init(&rsrc_blk->list);
5596 kfree(rsrc_blk);
5597 }
5598 break;
5599 case LPFC_RSC_TYPE_FCOE_RPI:
5600 /* RPI bitmask and physical id array are cleaned up earlier. */
5601 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5602 &phba->sli4_hba.lpfc_rpi_blk_list, list) {
5603 list_del_init(&rsrc_blk->list);
5604 kfree(rsrc_blk);
5605 }
5606 break;
5607 default:
5608 break;
5609 }
5610
5611 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5612
5613 out_free_mbox:
5614 mempool_free(mbox, phba->mbox_mem_pool);
5615 return rc;
5616}
5617
5618/**
5619 * lpfc_sli4_alloc_resource_identifiers - Allocate all SLI4 resource extents.
5620 * @phba: Pointer to HBA context object.
5621 *
5622 * This function allocates all SLI4 resource identifiers.
5623 **/
5624int
5625lpfc_sli4_alloc_resource_identifiers(struct lpfc_hba *phba)
5626{
5627 int i, rc, error = 0;
5628 uint16_t count, base;
5629 unsigned long longs;
5630
James Smartff78d8f2011-12-13 13:21:35 -05005631 if (!phba->sli4_hba.rpi_hdrs_in_use)
5632 phba->sli4_hba.next_rpi = phba->sli4_hba.max_cfg_param.max_rpi;
James Smart6d368e52011-05-24 11:44:12 -04005633 if (phba->sli4_hba.extents_in_use) {
5634 /*
5635 * The port supports resource extents. The XRI, VPI, VFI, RPI
5636 * resource extent count must be read and allocated before
5637 * provisioning the resource id arrays.
5638 */
5639 if (bf_get(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags) ==
5640 LPFC_IDX_RSRC_RDY) {
5641 /*
5642 * Extent-based resources are set - the driver could
5643 * be in a port reset. Figure out if any corrective
5644 * actions need to be taken.
5645 */
5646 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5647 LPFC_RSC_TYPE_FCOE_VFI);
5648 if (rc != 0)
5649 error++;
5650 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5651 LPFC_RSC_TYPE_FCOE_VPI);
5652 if (rc != 0)
5653 error++;
5654 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5655 LPFC_RSC_TYPE_FCOE_XRI);
5656 if (rc != 0)
5657 error++;
5658 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5659 LPFC_RSC_TYPE_FCOE_RPI);
5660 if (rc != 0)
5661 error++;
5662
5663 /*
5664 * It's possible that the number of resources
5665 * provided to this port instance changed between
5666 * resets. Detect this condition and reallocate
5667 * resources. Otherwise, there is no action.
5668 */
5669 if (error) {
5670 lpfc_printf_log(phba, KERN_INFO,
5671 LOG_MBOX | LOG_INIT,
5672 "2931 Detected extent resource "
5673 "change. Reallocating all "
5674 "extents.\n");
5675 rc = lpfc_sli4_dealloc_extent(phba,
5676 LPFC_RSC_TYPE_FCOE_VFI);
5677 rc = lpfc_sli4_dealloc_extent(phba,
5678 LPFC_RSC_TYPE_FCOE_VPI);
5679 rc = lpfc_sli4_dealloc_extent(phba,
5680 LPFC_RSC_TYPE_FCOE_XRI);
5681 rc = lpfc_sli4_dealloc_extent(phba,
5682 LPFC_RSC_TYPE_FCOE_RPI);
5683 } else
5684 return 0;
5685 }
5686
5687 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_VFI);
5688 if (unlikely(rc))
5689 goto err_exit;
5690
5691 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_VPI);
5692 if (unlikely(rc))
5693 goto err_exit;
5694
5695 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_RPI);
5696 if (unlikely(rc))
5697 goto err_exit;
5698
5699 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_XRI);
5700 if (unlikely(rc))
5701 goto err_exit;
5702 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags,
5703 LPFC_IDX_RSRC_RDY);
5704 return rc;
5705 } else {
5706 /*
5707 * The port does not support resource extents. The XRI, VPI,
5708 * VFI, RPI resource ids were determined from READ_CONFIG.
5709 * Just allocate the bitmasks and provision the resource id
5710 * arrays. If a port reset is active, the resources don't
5711 * need any action - just exit.
5712 */
5713 if (bf_get(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags) ==
James Smartff78d8f2011-12-13 13:21:35 -05005714 LPFC_IDX_RSRC_RDY) {
5715 lpfc_sli4_dealloc_resource_identifiers(phba);
5716 lpfc_sli4_remove_rpis(phba);
5717 }
James Smart6d368e52011-05-24 11:44:12 -04005718 /* RPIs. */
5719 count = phba->sli4_hba.max_cfg_param.max_rpi;
James Smart0a630c22013-01-03 15:44:09 -05005720 if (count <= 0) {
5721 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5722 "3279 Invalid provisioning of "
5723 "rpi:%d\n", count);
5724 rc = -EINVAL;
5725 goto err_exit;
5726 }
James Smart6d368e52011-05-24 11:44:12 -04005727 base = phba->sli4_hba.max_cfg_param.rpi_base;
5728 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5729 phba->sli4_hba.rpi_bmask = kzalloc(longs *
5730 sizeof(unsigned long),
5731 GFP_KERNEL);
5732 if (unlikely(!phba->sli4_hba.rpi_bmask)) {
5733 rc = -ENOMEM;
5734 goto err_exit;
5735 }
5736 phba->sli4_hba.rpi_ids = kzalloc(count *
5737 sizeof(uint16_t),
5738 GFP_KERNEL);
5739 if (unlikely(!phba->sli4_hba.rpi_ids)) {
5740 rc = -ENOMEM;
5741 goto free_rpi_bmask;
5742 }
5743
5744 for (i = 0; i < count; i++)
5745 phba->sli4_hba.rpi_ids[i] = base + i;
5746
5747 /* VPIs. */
5748 count = phba->sli4_hba.max_cfg_param.max_vpi;
James Smart0a630c22013-01-03 15:44:09 -05005749 if (count <= 0) {
5750 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5751 "3280 Invalid provisioning of "
5752 "vpi:%d\n", count);
5753 rc = -EINVAL;
5754 goto free_rpi_ids;
5755 }
James Smart6d368e52011-05-24 11:44:12 -04005756 base = phba->sli4_hba.max_cfg_param.vpi_base;
5757 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5758 phba->vpi_bmask = kzalloc(longs *
5759 sizeof(unsigned long),
5760 GFP_KERNEL);
5761 if (unlikely(!phba->vpi_bmask)) {
5762 rc = -ENOMEM;
5763 goto free_rpi_ids;
5764 }
5765 phba->vpi_ids = kzalloc(count *
5766 sizeof(uint16_t),
5767 GFP_KERNEL);
5768 if (unlikely(!phba->vpi_ids)) {
5769 rc = -ENOMEM;
5770 goto free_vpi_bmask;
5771 }
5772
5773 for (i = 0; i < count; i++)
5774 phba->vpi_ids[i] = base + i;
5775
5776 /* XRIs. */
5777 count = phba->sli4_hba.max_cfg_param.max_xri;
James Smart0a630c22013-01-03 15:44:09 -05005778 if (count <= 0) {
5779 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5780 "3281 Invalid provisioning of "
5781 "xri:%d\n", count);
5782 rc = -EINVAL;
5783 goto free_vpi_ids;
5784 }
James Smart6d368e52011-05-24 11:44:12 -04005785 base = phba->sli4_hba.max_cfg_param.xri_base;
5786 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5787 phba->sli4_hba.xri_bmask = kzalloc(longs *
5788 sizeof(unsigned long),
5789 GFP_KERNEL);
5790 if (unlikely(!phba->sli4_hba.xri_bmask)) {
5791 rc = -ENOMEM;
5792 goto free_vpi_ids;
5793 }
James Smart41899be2012-03-01 22:34:19 -05005794 phba->sli4_hba.max_cfg_param.xri_used = 0;
James Smart6d368e52011-05-24 11:44:12 -04005795 phba->sli4_hba.xri_ids = kzalloc(count *
5796 sizeof(uint16_t),
5797 GFP_KERNEL);
5798 if (unlikely(!phba->sli4_hba.xri_ids)) {
5799 rc = -ENOMEM;
5800 goto free_xri_bmask;
5801 }
5802
5803 for (i = 0; i < count; i++)
5804 phba->sli4_hba.xri_ids[i] = base + i;
5805
5806 /* VFIs. */
5807 count = phba->sli4_hba.max_cfg_param.max_vfi;
James Smart0a630c22013-01-03 15:44:09 -05005808 if (count <= 0) {
5809 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5810 "3282 Invalid provisioning of "
5811 "vfi:%d\n", count);
5812 rc = -EINVAL;
5813 goto free_xri_ids;
5814 }
James Smart6d368e52011-05-24 11:44:12 -04005815 base = phba->sli4_hba.max_cfg_param.vfi_base;
5816 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5817 phba->sli4_hba.vfi_bmask = kzalloc(longs *
5818 sizeof(unsigned long),
5819 GFP_KERNEL);
5820 if (unlikely(!phba->sli4_hba.vfi_bmask)) {
5821 rc = -ENOMEM;
5822 goto free_xri_ids;
5823 }
5824 phba->sli4_hba.vfi_ids = kzalloc(count *
5825 sizeof(uint16_t),
5826 GFP_KERNEL);
5827 if (unlikely(!phba->sli4_hba.vfi_ids)) {
5828 rc = -ENOMEM;
5829 goto free_vfi_bmask;
5830 }
5831
5832 for (i = 0; i < count; i++)
5833 phba->sli4_hba.vfi_ids[i] = base + i;
5834
5835 /*
5836 * Mark all resources ready. An HBA reset doesn't need
5837 * to reset the initialization.
5838 */
5839 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags,
5840 LPFC_IDX_RSRC_RDY);
5841 return 0;
5842 }
5843
5844 free_vfi_bmask:
5845 kfree(phba->sli4_hba.vfi_bmask);
5846 free_xri_ids:
5847 kfree(phba->sli4_hba.xri_ids);
5848 free_xri_bmask:
5849 kfree(phba->sli4_hba.xri_bmask);
5850 free_vpi_ids:
5851 kfree(phba->vpi_ids);
5852 free_vpi_bmask:
5853 kfree(phba->vpi_bmask);
5854 free_rpi_ids:
5855 kfree(phba->sli4_hba.rpi_ids);
5856 free_rpi_bmask:
5857 kfree(phba->sli4_hba.rpi_bmask);
5858 err_exit:
5859 return rc;
5860}
5861
5862/**
5863 * lpfc_sli4_dealloc_resource_identifiers - Deallocate all SLI4 resource extents.
5864 * @phba: Pointer to HBA context object.
5865 *
5866 * This function allocates the number of elements for the specified
5867 * resource type.
5868 **/
5869int
5870lpfc_sli4_dealloc_resource_identifiers(struct lpfc_hba *phba)
5871{
5872 if (phba->sli4_hba.extents_in_use) {
5873 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_VPI);
5874 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_RPI);
5875 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_XRI);
5876 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_VFI);
5877 } else {
5878 kfree(phba->vpi_bmask);
James Smart16a3a202013-04-17 20:14:38 -04005879 phba->sli4_hba.max_cfg_param.vpi_used = 0;
James Smart6d368e52011-05-24 11:44:12 -04005880 kfree(phba->vpi_ids);
5881 bf_set(lpfc_vpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5882 kfree(phba->sli4_hba.xri_bmask);
5883 kfree(phba->sli4_hba.xri_ids);
James Smart6d368e52011-05-24 11:44:12 -04005884 kfree(phba->sli4_hba.vfi_bmask);
5885 kfree(phba->sli4_hba.vfi_ids);
5886 bf_set(lpfc_vfi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5887 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5888 }
5889
5890 return 0;
5891}
5892
5893/**
James Smartb76f2dc2011-07-22 18:37:42 -04005894 * lpfc_sli4_get_allocated_extnts - Get the port's allocated extents.
5895 * @phba: Pointer to HBA context object.
5896 * @type: The resource extent type.
5897 * @extnt_count: buffer to hold port extent count response
5898 * @extnt_size: buffer to hold port extent size response.
5899 *
5900 * This function calls the port to read the host allocated extents
5901 * for a particular type.
5902 **/
5903int
5904lpfc_sli4_get_allocated_extnts(struct lpfc_hba *phba, uint16_t type,
5905 uint16_t *extnt_cnt, uint16_t *extnt_size)
5906{
5907 bool emb;
5908 int rc = 0;
5909 uint16_t curr_blks = 0;
5910 uint32_t req_len, emb_len;
5911 uint32_t alloc_len, mbox_tmo;
5912 struct list_head *blk_list_head;
5913 struct lpfc_rsrc_blks *rsrc_blk;
5914 LPFC_MBOXQ_t *mbox;
5915 void *virtaddr = NULL;
5916 struct lpfc_mbx_nembed_rsrc_extent *n_rsrc;
5917 struct lpfc_mbx_alloc_rsrc_extents *rsrc_ext;
5918 union lpfc_sli4_cfg_shdr *shdr;
5919
5920 switch (type) {
5921 case LPFC_RSC_TYPE_FCOE_VPI:
5922 blk_list_head = &phba->lpfc_vpi_blk_list;
5923 break;
5924 case LPFC_RSC_TYPE_FCOE_XRI:
5925 blk_list_head = &phba->sli4_hba.lpfc_xri_blk_list;
5926 break;
5927 case LPFC_RSC_TYPE_FCOE_VFI:
5928 blk_list_head = &phba->sli4_hba.lpfc_vfi_blk_list;
5929 break;
5930 case LPFC_RSC_TYPE_FCOE_RPI:
5931 blk_list_head = &phba->sli4_hba.lpfc_rpi_blk_list;
5932 break;
5933 default:
5934 return -EIO;
5935 }
5936
5937 /* Count the number of extents currently allocatd for this type. */
5938 list_for_each_entry(rsrc_blk, blk_list_head, list) {
5939 if (curr_blks == 0) {
5940 /*
5941 * The GET_ALLOCATED mailbox does not return the size,
5942 * just the count. The size should be just the size
5943 * stored in the current allocated block and all sizes
5944 * for an extent type are the same so set the return
5945 * value now.
5946 */
5947 *extnt_size = rsrc_blk->rsrc_size;
5948 }
5949 curr_blks++;
5950 }
5951
James Smartb76f2dc2011-07-22 18:37:42 -04005952 /*
5953 * Calculate the size of an embedded mailbox. The uint32_t
5954 * accounts for extents-specific word.
5955 */
5956 emb_len = sizeof(MAILBOX_t) - sizeof(struct mbox_header) -
5957 sizeof(uint32_t);
5958
5959 /*
5960 * Presume the allocation and response will fit into an embedded
5961 * mailbox. If not true, reconfigure to a non-embedded mailbox.
5962 */
5963 emb = LPFC_SLI4_MBX_EMBED;
5964 req_len = emb_len;
5965 if (req_len > emb_len) {
5966 req_len = curr_blks * sizeof(uint16_t) +
5967 sizeof(union lpfc_sli4_cfg_shdr) +
5968 sizeof(uint32_t);
5969 emb = LPFC_SLI4_MBX_NEMBED;
5970 }
5971
5972 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5973 if (!mbox)
5974 return -ENOMEM;
5975 memset(mbox, 0, sizeof(LPFC_MBOXQ_t));
5976
5977 alloc_len = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5978 LPFC_MBOX_OPCODE_GET_ALLOC_RSRC_EXTENT,
5979 req_len, emb);
5980 if (alloc_len < req_len) {
5981 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5982 "2983 Allocated DMA memory size (x%x) is "
5983 "less than the requested DMA memory "
5984 "size (x%x)\n", alloc_len, req_len);
5985 rc = -ENOMEM;
5986 goto err_exit;
5987 }
5988 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, curr_blks, type, emb);
5989 if (unlikely(rc)) {
5990 rc = -EIO;
5991 goto err_exit;
5992 }
5993
5994 if (!phba->sli4_hba.intr_enable)
5995 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5996 else {
James Smarta183a152011-10-10 21:32:43 -04005997 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smartb76f2dc2011-07-22 18:37:42 -04005998 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5999 }
6000
6001 if (unlikely(rc)) {
6002 rc = -EIO;
6003 goto err_exit;
6004 }
6005
6006 /*
6007 * Figure out where the response is located. Then get local pointers
6008 * to the response data. The port does not guarantee to respond to
6009 * all extents counts request so update the local variable with the
6010 * allocated count from the port.
6011 */
6012 if (emb == LPFC_SLI4_MBX_EMBED) {
6013 rsrc_ext = &mbox->u.mqe.un.alloc_rsrc_extents;
6014 shdr = &rsrc_ext->header.cfg_shdr;
6015 *extnt_cnt = bf_get(lpfc_mbx_rsrc_cnt, &rsrc_ext->u.rsp);
6016 } else {
6017 virtaddr = mbox->sge_array->addr[0];
6018 n_rsrc = (struct lpfc_mbx_nembed_rsrc_extent *) virtaddr;
6019 shdr = &n_rsrc->cfg_shdr;
6020 *extnt_cnt = bf_get(lpfc_mbx_rsrc_cnt, n_rsrc);
6021 }
6022
6023 if (bf_get(lpfc_mbox_hdr_status, &shdr->response)) {
6024 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
6025 "2984 Failed to read allocated resources "
6026 "for type %d - Status 0x%x Add'l Status 0x%x.\n",
6027 type,
6028 bf_get(lpfc_mbox_hdr_status, &shdr->response),
6029 bf_get(lpfc_mbox_hdr_add_status, &shdr->response));
6030 rc = -EIO;
6031 goto err_exit;
6032 }
6033 err_exit:
6034 lpfc_sli4_mbox_cmd_free(phba, mbox);
6035 return rc;
6036}
6037
6038/**
James Smart8a9d2e82012-05-09 21:16:12 -04006039 * lpfc_sli4_repost_els_sgl_list - Repsot the els buffers sgl pages as block
6040 * @phba: pointer to lpfc hba data structure.
6041 *
6042 * This routine walks the list of els buffers that have been allocated and
6043 * repost them to the port by using SGL block post. This is needed after a
6044 * pci_function_reset/warm_start or start. It attempts to construct blocks
6045 * of els buffer sgls which contains contiguous xris and uses the non-embedded
6046 * SGL block post mailbox commands to post them to the port. For single els
6047 * buffer sgl with non-contiguous xri, if any, it shall use embedded SGL post
6048 * mailbox command for posting.
6049 *
6050 * Returns: 0 = success, non-zero failure.
6051 **/
6052static int
6053lpfc_sli4_repost_els_sgl_list(struct lpfc_hba *phba)
6054{
6055 struct lpfc_sglq *sglq_entry = NULL;
6056 struct lpfc_sglq *sglq_entry_next = NULL;
6057 struct lpfc_sglq *sglq_entry_first = NULL;
James Smart711ea882013-04-17 20:18:29 -04006058 int status, total_cnt, post_cnt = 0, num_posted = 0, block_cnt = 0;
James Smart8a9d2e82012-05-09 21:16:12 -04006059 int last_xritag = NO_XRI;
James Smartdafe8ce2014-09-03 12:56:40 -04006060 struct lpfc_sli_ring *pring;
James Smart8a9d2e82012-05-09 21:16:12 -04006061 LIST_HEAD(prep_sgl_list);
6062 LIST_HEAD(blck_sgl_list);
6063 LIST_HEAD(allc_sgl_list);
6064 LIST_HEAD(post_sgl_list);
6065 LIST_HEAD(free_sgl_list);
6066
James Smartdafe8ce2014-09-03 12:56:40 -04006067 pring = &phba->sli.ring[LPFC_ELS_RING];
James Smart38c20672013-03-01 16:37:44 -05006068 spin_lock_irq(&phba->hbalock);
James Smartdafe8ce2014-09-03 12:56:40 -04006069 spin_lock(&pring->ring_lock);
James Smart8a9d2e82012-05-09 21:16:12 -04006070 list_splice_init(&phba->sli4_hba.lpfc_sgl_list, &allc_sgl_list);
James Smartdafe8ce2014-09-03 12:56:40 -04006071 spin_unlock(&pring->ring_lock);
James Smart38c20672013-03-01 16:37:44 -05006072 spin_unlock_irq(&phba->hbalock);
James Smart8a9d2e82012-05-09 21:16:12 -04006073
James Smart711ea882013-04-17 20:18:29 -04006074 total_cnt = phba->sli4_hba.els_xri_cnt;
James Smart8a9d2e82012-05-09 21:16:12 -04006075 list_for_each_entry_safe(sglq_entry, sglq_entry_next,
6076 &allc_sgl_list, list) {
6077 list_del_init(&sglq_entry->list);
6078 block_cnt++;
6079 if ((last_xritag != NO_XRI) &&
6080 (sglq_entry->sli4_xritag != last_xritag + 1)) {
6081 /* a hole in xri block, form a sgl posting block */
6082 list_splice_init(&prep_sgl_list, &blck_sgl_list);
6083 post_cnt = block_cnt - 1;
6084 /* prepare list for next posting block */
6085 list_add_tail(&sglq_entry->list, &prep_sgl_list);
6086 block_cnt = 1;
6087 } else {
6088 /* prepare list for next posting block */
6089 list_add_tail(&sglq_entry->list, &prep_sgl_list);
6090 /* enough sgls for non-embed sgl mbox command */
6091 if (block_cnt == LPFC_NEMBED_MBOX_SGL_CNT) {
6092 list_splice_init(&prep_sgl_list,
6093 &blck_sgl_list);
6094 post_cnt = block_cnt;
6095 block_cnt = 0;
6096 }
6097 }
6098 num_posted++;
6099
6100 /* keep track of last sgl's xritag */
6101 last_xritag = sglq_entry->sli4_xritag;
6102
6103 /* end of repost sgl list condition for els buffers */
6104 if (num_posted == phba->sli4_hba.els_xri_cnt) {
6105 if (post_cnt == 0) {
6106 list_splice_init(&prep_sgl_list,
6107 &blck_sgl_list);
6108 post_cnt = block_cnt;
6109 } else if (block_cnt == 1) {
6110 status = lpfc_sli4_post_sgl(phba,
6111 sglq_entry->phys, 0,
6112 sglq_entry->sli4_xritag);
6113 if (!status) {
6114 /* successful, put sgl to posted list */
6115 list_add_tail(&sglq_entry->list,
6116 &post_sgl_list);
6117 } else {
6118 /* Failure, put sgl to free list */
6119 lpfc_printf_log(phba, KERN_WARNING,
6120 LOG_SLI,
6121 "3159 Failed to post els "
6122 "sgl, xritag:x%x\n",
6123 sglq_entry->sli4_xritag);
6124 list_add_tail(&sglq_entry->list,
6125 &free_sgl_list);
James Smart711ea882013-04-17 20:18:29 -04006126 total_cnt--;
James Smart8a9d2e82012-05-09 21:16:12 -04006127 }
6128 }
6129 }
6130
6131 /* continue until a nembed page worth of sgls */
6132 if (post_cnt == 0)
6133 continue;
6134
6135 /* post the els buffer list sgls as a block */
6136 status = lpfc_sli4_post_els_sgl_list(phba, &blck_sgl_list,
6137 post_cnt);
6138
6139 if (!status) {
6140 /* success, put sgl list to posted sgl list */
6141 list_splice_init(&blck_sgl_list, &post_sgl_list);
6142 } else {
6143 /* Failure, put sgl list to free sgl list */
6144 sglq_entry_first = list_first_entry(&blck_sgl_list,
6145 struct lpfc_sglq,
6146 list);
6147 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
6148 "3160 Failed to post els sgl-list, "
6149 "xritag:x%x-x%x\n",
6150 sglq_entry_first->sli4_xritag,
6151 (sglq_entry_first->sli4_xritag +
6152 post_cnt - 1));
6153 list_splice_init(&blck_sgl_list, &free_sgl_list);
James Smart711ea882013-04-17 20:18:29 -04006154 total_cnt -= post_cnt;
James Smart8a9d2e82012-05-09 21:16:12 -04006155 }
6156
6157 /* don't reset xirtag due to hole in xri block */
6158 if (block_cnt == 0)
6159 last_xritag = NO_XRI;
6160
6161 /* reset els sgl post count for next round of posting */
6162 post_cnt = 0;
6163 }
James Smart711ea882013-04-17 20:18:29 -04006164 /* update the number of XRIs posted for ELS */
6165 phba->sli4_hba.els_xri_cnt = total_cnt;
James Smart8a9d2e82012-05-09 21:16:12 -04006166
6167 /* free the els sgls failed to post */
6168 lpfc_free_sgl_list(phba, &free_sgl_list);
6169
6170 /* push els sgls posted to the availble list */
6171 if (!list_empty(&post_sgl_list)) {
James Smart38c20672013-03-01 16:37:44 -05006172 spin_lock_irq(&phba->hbalock);
James Smartdafe8ce2014-09-03 12:56:40 -04006173 spin_lock(&pring->ring_lock);
James Smart8a9d2e82012-05-09 21:16:12 -04006174 list_splice_init(&post_sgl_list,
6175 &phba->sli4_hba.lpfc_sgl_list);
James Smartdafe8ce2014-09-03 12:56:40 -04006176 spin_unlock(&pring->ring_lock);
James Smart38c20672013-03-01 16:37:44 -05006177 spin_unlock_irq(&phba->hbalock);
James Smart8a9d2e82012-05-09 21:16:12 -04006178 } else {
6179 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
6180 "3161 Failure to post els sgl to port.\n");
6181 return -EIO;
6182 }
6183 return 0;
6184}
6185
6186/**
James Smartda0436e2009-05-22 14:51:39 -04006187 * lpfc_sli4_hba_setup - SLI4 device intialization PCI function
6188 * @phba: Pointer to HBA context object.
6189 *
6190 * This function is the main SLI4 device intialization PCI function. This
6191 * function is called by the HBA intialization code, HBA reset code and
6192 * HBA error attention handler code. Caller is not required to hold any
6193 * locks.
6194 **/
6195int
6196lpfc_sli4_hba_setup(struct lpfc_hba *phba)
6197{
6198 int rc;
6199 LPFC_MBOXQ_t *mboxq;
6200 struct lpfc_mqe *mqe;
6201 uint8_t *vpd;
6202 uint32_t vpd_size;
6203 uint32_t ftr_rsp = 0;
6204 struct Scsi_Host *shost = lpfc_shost_from_vport(phba->pport);
6205 struct lpfc_vport *vport = phba->pport;
6206 struct lpfc_dmabuf *mp;
6207
6208 /* Perform a PCI function reset to start from clean */
6209 rc = lpfc_pci_function_reset(phba);
6210 if (unlikely(rc))
6211 return -ENODEV;
6212
6213 /* Check the HBA Host Status Register for readyness */
6214 rc = lpfc_sli4_post_status_check(phba);
6215 if (unlikely(rc))
6216 return -ENODEV;
6217 else {
6218 spin_lock_irq(&phba->hbalock);
6219 phba->sli.sli_flag |= LPFC_SLI_ACTIVE;
6220 spin_unlock_irq(&phba->hbalock);
6221 }
6222
6223 /*
6224 * Allocate a single mailbox container for initializing the
6225 * port.
6226 */
6227 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6228 if (!mboxq)
6229 return -ENOMEM;
6230
James Smartda0436e2009-05-22 14:51:39 -04006231 /* Issue READ_REV to collect vpd and FW information. */
James Smart49198b32010-04-06 15:04:33 -04006232 vpd_size = SLI4_PAGE_SIZE;
James Smartda0436e2009-05-22 14:51:39 -04006233 vpd = kzalloc(vpd_size, GFP_KERNEL);
6234 if (!vpd) {
6235 rc = -ENOMEM;
6236 goto out_free_mbox;
6237 }
6238
6239 rc = lpfc_sli4_read_rev(phba, mboxq, vpd, &vpd_size);
James Smart76a95d72010-11-20 23:11:48 -05006240 if (unlikely(rc)) {
6241 kfree(vpd);
6242 goto out_free_mbox;
6243 }
James Smart572709e2013-07-15 18:32:43 -04006244
James Smartda0436e2009-05-22 14:51:39 -04006245 mqe = &mboxq->u.mqe;
James Smartf1126682009-06-10 17:22:44 -04006246 phba->sli_rev = bf_get(lpfc_mbx_rd_rev_sli_lvl, &mqe->un.read_rev);
6247 if (bf_get(lpfc_mbx_rd_rev_fcoe, &mqe->un.read_rev))
James Smart76a95d72010-11-20 23:11:48 -05006248 phba->hba_flag |= HBA_FCOE_MODE;
6249 else
6250 phba->hba_flag &= ~HBA_FCOE_MODE;
James Smart45ed1192009-10-02 15:17:02 -04006251
6252 if (bf_get(lpfc_mbx_rd_rev_cee_ver, &mqe->un.read_rev) ==
6253 LPFC_DCBX_CEE_MODE)
6254 phba->hba_flag |= HBA_FIP_SUPPORT;
6255 else
6256 phba->hba_flag &= ~HBA_FIP_SUPPORT;
6257
James Smart4f2e66c2012-05-09 21:17:07 -04006258 phba->hba_flag &= ~HBA_FCP_IOQ_FLUSH;
6259
James Smartc31098c2011-04-16 11:03:33 -04006260 if (phba->sli_rev != LPFC_SLI_REV4) {
James Smartda0436e2009-05-22 14:51:39 -04006261 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6262 "0376 READ_REV Error. SLI Level %d "
6263 "FCoE enabled %d\n",
James Smart76a95d72010-11-20 23:11:48 -05006264 phba->sli_rev, phba->hba_flag & HBA_FCOE_MODE);
James Smartda0436e2009-05-22 14:51:39 -04006265 rc = -EIO;
James Smart76a95d72010-11-20 23:11:48 -05006266 kfree(vpd);
6267 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006268 }
James Smartcd1c8302011-10-10 21:33:25 -04006269
6270 /*
James Smartff78d8f2011-12-13 13:21:35 -05006271 * Continue initialization with default values even if driver failed
6272 * to read FCoE param config regions, only read parameters if the
6273 * board is FCoE
6274 */
6275 if (phba->hba_flag & HBA_FCOE_MODE &&
6276 lpfc_sli4_read_fcoe_params(phba))
6277 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_INIT,
6278 "2570 Failed to read FCoE parameters\n");
6279
6280 /*
James Smartcd1c8302011-10-10 21:33:25 -04006281 * Retrieve sli4 device physical port name, failure of doing it
6282 * is considered as non-fatal.
6283 */
6284 rc = lpfc_sli4_retrieve_pport_name(phba);
6285 if (!rc)
6286 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
6287 "3080 Successful retrieving SLI4 device "
6288 "physical port name: %s.\n", phba->Port);
6289
James Smartda0436e2009-05-22 14:51:39 -04006290 /*
6291 * Evaluate the read rev and vpd data. Populate the driver
6292 * state with the results. If this routine fails, the failure
6293 * is not fatal as the driver will use generic values.
6294 */
6295 rc = lpfc_parse_vpd(phba, vpd, vpd_size);
6296 if (unlikely(!rc)) {
6297 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6298 "0377 Error %d parsing vpd. "
6299 "Using defaults.\n", rc);
6300 rc = 0;
6301 }
James Smart76a95d72010-11-20 23:11:48 -05006302 kfree(vpd);
James Smartda0436e2009-05-22 14:51:39 -04006303
James Smartf1126682009-06-10 17:22:44 -04006304 /* Save information as VPD data */
6305 phba->vpd.rev.biuRev = mqe->un.read_rev.first_hw_rev;
6306 phba->vpd.rev.smRev = mqe->un.read_rev.second_hw_rev;
6307 phba->vpd.rev.endecRev = mqe->un.read_rev.third_hw_rev;
6308 phba->vpd.rev.fcphHigh = bf_get(lpfc_mbx_rd_rev_fcph_high,
6309 &mqe->un.read_rev);
6310 phba->vpd.rev.fcphLow = bf_get(lpfc_mbx_rd_rev_fcph_low,
6311 &mqe->un.read_rev);
6312 phba->vpd.rev.feaLevelHigh = bf_get(lpfc_mbx_rd_rev_ftr_lvl_high,
6313 &mqe->un.read_rev);
6314 phba->vpd.rev.feaLevelLow = bf_get(lpfc_mbx_rd_rev_ftr_lvl_low,
6315 &mqe->un.read_rev);
6316 phba->vpd.rev.sli1FwRev = mqe->un.read_rev.fw_id_rev;
6317 memcpy(phba->vpd.rev.sli1FwName, mqe->un.read_rev.fw_name, 16);
6318 phba->vpd.rev.sli2FwRev = mqe->un.read_rev.ulp_fw_id_rev;
6319 memcpy(phba->vpd.rev.sli2FwName, mqe->un.read_rev.ulp_fw_name, 16);
6320 phba->vpd.rev.opFwRev = mqe->un.read_rev.fw_id_rev;
6321 memcpy(phba->vpd.rev.opFwName, mqe->un.read_rev.fw_name, 16);
6322 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
6323 "(%d):0380 READ_REV Status x%x "
6324 "fw_rev:%s fcphHi:%x fcphLo:%x flHi:%x flLo:%x\n",
6325 mboxq->vport ? mboxq->vport->vpi : 0,
6326 bf_get(lpfc_mqe_status, mqe),
6327 phba->vpd.rev.opFwName,
6328 phba->vpd.rev.fcphHigh, phba->vpd.rev.fcphLow,
6329 phba->vpd.rev.feaLevelHigh, phba->vpd.rev.feaLevelLow);
James Smartda0436e2009-05-22 14:51:39 -04006330
James Smart572709e2013-07-15 18:32:43 -04006331 /* Reset the DFT_LUN_Q_DEPTH to (max xri >> 3) */
6332 rc = (phba->sli4_hba.max_cfg_param.max_xri >> 3);
6333 if (phba->pport->cfg_lun_queue_depth > rc) {
6334 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
6335 "3362 LUN queue depth changed from %d to %d\n",
6336 phba->pport->cfg_lun_queue_depth, rc);
6337 phba->pport->cfg_lun_queue_depth = rc;
6338 }
6339
6340
James Smartda0436e2009-05-22 14:51:39 -04006341 /*
6342 * Discover the port's supported feature set and match it against the
6343 * hosts requests.
6344 */
6345 lpfc_request_features(phba, mboxq);
6346 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6347 if (unlikely(rc)) {
6348 rc = -EIO;
James Smart76a95d72010-11-20 23:11:48 -05006349 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006350 }
6351
6352 /*
6353 * The port must support FCP initiator mode as this is the
6354 * only mode running in the host.
6355 */
6356 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_fcpi, &mqe->un.req_ftrs))) {
6357 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
6358 "0378 No support for fcpi mode.\n");
6359 ftr_rsp++;
6360 }
James Smartfedd3b72011-02-16 12:39:24 -05006361 if (bf_get(lpfc_mbx_rq_ftr_rsp_perfh, &mqe->un.req_ftrs))
6362 phba->sli3_options |= LPFC_SLI4_PERFH_ENABLED;
6363 else
6364 phba->sli3_options &= ~LPFC_SLI4_PERFH_ENABLED;
James Smartda0436e2009-05-22 14:51:39 -04006365 /*
6366 * If the port cannot support the host's requested features
6367 * then turn off the global config parameters to disable the
6368 * feature in the driver. This is not a fatal error.
6369 */
James Smartbf086112011-08-21 21:48:13 -04006370 phba->sli3_options &= ~LPFC_SLI3_BG_ENABLED;
6371 if (phba->cfg_enable_bg) {
6372 if (bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs))
6373 phba->sli3_options |= LPFC_SLI3_BG_ENABLED;
6374 else
6375 ftr_rsp++;
6376 }
James Smartda0436e2009-05-22 14:51:39 -04006377
6378 if (phba->max_vpi && phba->cfg_enable_npiv &&
6379 !(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
6380 ftr_rsp++;
6381
6382 if (ftr_rsp) {
6383 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
6384 "0379 Feature Mismatch Data: x%08x %08x "
6385 "x%x x%x x%x\n", mqe->un.req_ftrs.word2,
6386 mqe->un.req_ftrs.word3, phba->cfg_enable_bg,
6387 phba->cfg_enable_npiv, phba->max_vpi);
6388 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs)))
6389 phba->cfg_enable_bg = 0;
6390 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
6391 phba->cfg_enable_npiv = 0;
6392 }
6393
6394 /* These SLI3 features are assumed in SLI4 */
6395 spin_lock_irq(&phba->hbalock);
6396 phba->sli3_options |= (LPFC_SLI3_NPIV_ENABLED | LPFC_SLI3_HBQ_ENABLED);
6397 spin_unlock_irq(&phba->hbalock);
6398
James Smart6d368e52011-05-24 11:44:12 -04006399 /*
6400 * Allocate all resources (xri,rpi,vpi,vfi) now. Subsequent
6401 * calls depends on these resources to complete port setup.
6402 */
6403 rc = lpfc_sli4_alloc_resource_identifiers(phba);
6404 if (rc) {
6405 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6406 "2920 Failed to alloc Resource IDs "
6407 "rc = x%x\n", rc);
6408 goto out_free_mbox;
6409 }
6410
James Smartda0436e2009-05-22 14:51:39 -04006411 /* Read the port's service parameters. */
James Smart9f1177a2010-02-26 14:12:57 -05006412 rc = lpfc_read_sparam(phba, mboxq, vport->vpi);
6413 if (rc) {
6414 phba->link_state = LPFC_HBA_ERROR;
6415 rc = -ENOMEM;
James Smart76a95d72010-11-20 23:11:48 -05006416 goto out_free_mbox;
James Smart9f1177a2010-02-26 14:12:57 -05006417 }
6418
James Smartda0436e2009-05-22 14:51:39 -04006419 mboxq->vport = vport;
6420 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6421 mp = (struct lpfc_dmabuf *) mboxq->context1;
6422 if (rc == MBX_SUCCESS) {
6423 memcpy(&vport->fc_sparam, mp->virt, sizeof(struct serv_parm));
6424 rc = 0;
6425 }
6426
6427 /*
6428 * This memory was allocated by the lpfc_read_sparam routine. Release
6429 * it to the mbuf pool.
6430 */
6431 lpfc_mbuf_free(phba, mp->virt, mp->phys);
6432 kfree(mp);
6433 mboxq->context1 = NULL;
6434 if (unlikely(rc)) {
6435 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6436 "0382 READ_SPARAM command failed "
6437 "status %d, mbxStatus x%x\n",
6438 rc, bf_get(lpfc_mqe_status, mqe));
6439 phba->link_state = LPFC_HBA_ERROR;
6440 rc = -EIO;
James Smart76a95d72010-11-20 23:11:48 -05006441 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006442 }
6443
James Smart05580562011-05-24 11:40:48 -04006444 lpfc_update_vport_wwn(vport);
James Smartda0436e2009-05-22 14:51:39 -04006445
6446 /* Update the fc_host data structures with new wwn. */
6447 fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn);
6448 fc_host_port_name(shost) = wwn_to_u64(vport->fc_portname.u.wwn);
6449
James Smart8a9d2e82012-05-09 21:16:12 -04006450 /* update host els and scsi xri-sgl sizes and mappings */
6451 rc = lpfc_sli4_xri_sgl_update(phba);
6452 if (unlikely(rc)) {
6453 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6454 "1400 Failed to update xri-sgl size and "
6455 "mapping: %d\n", rc);
6456 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006457 }
6458
James Smart8a9d2e82012-05-09 21:16:12 -04006459 /* register the els sgl pool to the port */
6460 rc = lpfc_sli4_repost_els_sgl_list(phba);
6461 if (unlikely(rc)) {
6462 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6463 "0582 Error %d during els sgl post "
6464 "operation\n", rc);
6465 rc = -ENODEV;
6466 goto out_free_mbox;
6467 }
6468
6469 /* register the allocated scsi sgl pool to the port */
James Smartda0436e2009-05-22 14:51:39 -04006470 rc = lpfc_sli4_repost_scsi_sgl_list(phba);
6471 if (unlikely(rc)) {
James Smart6d368e52011-05-24 11:44:12 -04006472 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smart6a9c52c2009-10-02 15:16:51 -04006473 "0383 Error %d during scsi sgl post "
6474 "operation\n", rc);
James Smartda0436e2009-05-22 14:51:39 -04006475 /* Some Scsi buffers were moved to the abort scsi list */
6476 /* A pci function reset will repost them */
6477 rc = -ENODEV;
James Smart76a95d72010-11-20 23:11:48 -05006478 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006479 }
6480
6481 /* Post the rpi header region to the device. */
6482 rc = lpfc_sli4_post_all_rpi_hdrs(phba);
6483 if (unlikely(rc)) {
6484 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6485 "0393 Error %d during rpi post operation\n",
6486 rc);
6487 rc = -ENODEV;
James Smart76a95d72010-11-20 23:11:48 -05006488 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006489 }
James Smart97f2ecf2012-03-01 22:35:23 -05006490 lpfc_sli4_node_prep(phba);
James Smartda0436e2009-05-22 14:51:39 -04006491
James Smart5350d872011-10-10 21:33:49 -04006492 /* Create all the SLI4 queues */
6493 rc = lpfc_sli4_queue_create(phba);
6494 if (rc) {
6495 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6496 "3089 Failed to allocate queues\n");
6497 rc = -ENODEV;
6498 goto out_stop_timers;
6499 }
James Smartda0436e2009-05-22 14:51:39 -04006500 /* Set up all the queues to the device */
6501 rc = lpfc_sli4_queue_setup(phba);
6502 if (unlikely(rc)) {
6503 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6504 "0381 Error %d during queue setup.\n ", rc);
James Smart5350d872011-10-10 21:33:49 -04006505 goto out_destroy_queue;
James Smartda0436e2009-05-22 14:51:39 -04006506 }
6507
6508 /* Arm the CQs and then EQs on device */
6509 lpfc_sli4_arm_cqeq_intr(phba);
6510
6511 /* Indicate device interrupt mode */
6512 phba->sli4_hba.intr_enable = 1;
6513
6514 /* Allow asynchronous mailbox command to go through */
6515 spin_lock_irq(&phba->hbalock);
6516 phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
6517 spin_unlock_irq(&phba->hbalock);
6518
6519 /* Post receive buffers to the device */
6520 lpfc_sli4_rb_setup(phba);
6521
James Smartfc2b9892010-02-26 14:15:29 -05006522 /* Reset HBA FCF states after HBA reset */
6523 phba->fcf.fcf_flag = 0;
6524 phba->fcf.current_rec.flag = 0;
6525
James Smartda0436e2009-05-22 14:51:39 -04006526 /* Start the ELS watchdog timer */
James Smart8fa38512009-07-19 10:01:03 -04006527 mod_timer(&vport->els_tmofunc,
James Smart256ec0d2013-04-17 20:14:58 -04006528 jiffies + msecs_to_jiffies(1000 * (phba->fc_ratov * 2)));
James Smartda0436e2009-05-22 14:51:39 -04006529
6530 /* Start heart beat timer */
6531 mod_timer(&phba->hb_tmofunc,
James Smart256ec0d2013-04-17 20:14:58 -04006532 jiffies + msecs_to_jiffies(1000 * LPFC_HB_MBOX_INTERVAL));
James Smartda0436e2009-05-22 14:51:39 -04006533 phba->hb_outstanding = 0;
6534 phba->last_completion_time = jiffies;
6535
6536 /* Start error attention (ERATT) polling timer */
James Smart256ec0d2013-04-17 20:14:58 -04006537 mod_timer(&phba->eratt_poll,
6538 jiffies + msecs_to_jiffies(1000 * LPFC_ERATT_POLL_INTERVAL));
James Smartda0436e2009-05-22 14:51:39 -04006539
James Smart75baf692010-06-08 18:31:21 -04006540 /* Enable PCIe device Advanced Error Reporting (AER) if configured */
6541 if (phba->cfg_aer_support == 1 && !(phba->hba_flag & HBA_AER_ENABLED)) {
6542 rc = pci_enable_pcie_error_reporting(phba->pcidev);
6543 if (!rc) {
6544 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6545 "2829 This device supports "
6546 "Advanced Error Reporting (AER)\n");
6547 spin_lock_irq(&phba->hbalock);
6548 phba->hba_flag |= HBA_AER_ENABLED;
6549 spin_unlock_irq(&phba->hbalock);
6550 } else {
6551 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6552 "2830 This device does not support "
6553 "Advanced Error Reporting (AER)\n");
6554 phba->cfg_aer_support = 0;
6555 }
James Smart0a96e972011-07-22 18:37:28 -04006556 rc = 0;
James Smart75baf692010-06-08 18:31:21 -04006557 }
6558
James Smart76a95d72010-11-20 23:11:48 -05006559 if (!(phba->hba_flag & HBA_FCOE_MODE)) {
6560 /*
6561 * The FC Port needs to register FCFI (index 0)
6562 */
6563 lpfc_reg_fcfi(phba, mboxq);
6564 mboxq->vport = phba->pport;
6565 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
James Smart9589b0622011-04-16 11:03:17 -04006566 if (rc != MBX_SUCCESS)
James Smart76a95d72010-11-20 23:11:48 -05006567 goto out_unset_queue;
James Smart9589b0622011-04-16 11:03:17 -04006568 rc = 0;
6569 phba->fcf.fcfi = bf_get(lpfc_reg_fcfi_fcfi,
6570 &mboxq->u.mqe.un.reg_fcfi);
James Smart026abb82011-12-13 13:20:45 -05006571
6572 /* Check if the port is configured to be disabled */
6573 lpfc_sli_read_link_ste(phba);
James Smart76a95d72010-11-20 23:11:48 -05006574 }
James Smart026abb82011-12-13 13:20:45 -05006575
James Smartda0436e2009-05-22 14:51:39 -04006576 /*
6577 * The port is ready, set the host's link state to LINK_DOWN
6578 * in preparation for link interrupts.
6579 */
James Smartda0436e2009-05-22 14:51:39 -04006580 spin_lock_irq(&phba->hbalock);
6581 phba->link_state = LPFC_LINK_DOWN;
6582 spin_unlock_irq(&phba->hbalock);
James Smart026abb82011-12-13 13:20:45 -05006583 if (!(phba->hba_flag & HBA_FCOE_MODE) &&
6584 (phba->hba_flag & LINK_DISABLED)) {
6585 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_SLI,
6586 "3103 Adapter Link is disabled.\n");
6587 lpfc_down_link(phba, mboxq);
6588 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6589 if (rc != MBX_SUCCESS) {
6590 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_SLI,
6591 "3104 Adapter failed to issue "
6592 "DOWN_LINK mbox cmd, rc:x%x\n", rc);
6593 goto out_unset_queue;
6594 }
6595 } else if (phba->cfg_suppress_link_up == LPFC_INITIALIZE_LINK) {
James Smart1b511972011-12-13 13:23:09 -05006596 /* don't perform init_link on SLI4 FC port loopback test */
6597 if (!(phba->link_flag & LS_LOOPBACK_MODE)) {
6598 rc = phba->lpfc_hba_init_link(phba, MBX_NOWAIT);
6599 if (rc)
6600 goto out_unset_queue;
6601 }
James Smart5350d872011-10-10 21:33:49 -04006602 }
6603 mempool_free(mboxq, phba->mbox_mem_pool);
6604 return rc;
James Smart76a95d72010-11-20 23:11:48 -05006605out_unset_queue:
James Smartda0436e2009-05-22 14:51:39 -04006606 /* Unset all the queues set up in this routine when error out */
James Smart5350d872011-10-10 21:33:49 -04006607 lpfc_sli4_queue_unset(phba);
6608out_destroy_queue:
6609 lpfc_sli4_queue_destroy(phba);
James Smartda0436e2009-05-22 14:51:39 -04006610out_stop_timers:
James Smart5350d872011-10-10 21:33:49 -04006611 lpfc_stop_hba_timers(phba);
James Smartda0436e2009-05-22 14:51:39 -04006612out_free_mbox:
6613 mempool_free(mboxq, phba->mbox_mem_pool);
6614 return rc;
6615}
James Smarte59058c2008-08-24 21:49:00 -04006616
6617/**
James Smart3621a712009-04-06 18:47:14 -04006618 * lpfc_mbox_timeout - Timeout call back function for mbox timer
James Smarte59058c2008-08-24 21:49:00 -04006619 * @ptr: context object - pointer to hba structure.
dea31012005-04-17 16:05:31 -05006620 *
James Smarte59058c2008-08-24 21:49:00 -04006621 * This is the callback function for mailbox timer. The mailbox
6622 * timer is armed when a new mailbox command is issued and the timer
6623 * is deleted when the mailbox complete. The function is called by
6624 * the kernel timer code when a mailbox does not complete within
6625 * expected time. This function wakes up the worker thread to
6626 * process the mailbox timeout and returns. All the processing is
6627 * done by the worker thread function lpfc_mbox_timeout_handler.
6628 **/
dea31012005-04-17 16:05:31 -05006629void
6630lpfc_mbox_timeout(unsigned long ptr)
6631{
James Smart92d7f7b2007-06-17 19:56:38 -05006632 struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
dea31012005-04-17 16:05:31 -05006633 unsigned long iflag;
James Smart2e0fef82007-06-17 19:56:36 -05006634 uint32_t tmo_posted;
dea31012005-04-17 16:05:31 -05006635
James Smart2e0fef82007-06-17 19:56:36 -05006636 spin_lock_irqsave(&phba->pport->work_port_lock, iflag);
James Smart92d7f7b2007-06-17 19:56:38 -05006637 tmo_posted = phba->pport->work_port_events & WORKER_MBOX_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05006638 if (!tmo_posted)
6639 phba->pport->work_port_events |= WORKER_MBOX_TMO;
6640 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflag);
6641
James Smart5e9d9b82008-06-14 22:52:53 -04006642 if (!tmo_posted)
6643 lpfc_worker_wake_up(phba);
6644 return;
dea31012005-04-17 16:05:31 -05006645}
6646
James Smarte8d3c3b2013-10-10 12:21:30 -04006647/**
6648 * lpfc_sli4_mbox_completions_pending - check to see if any mailbox completions
6649 * are pending
6650 * @phba: Pointer to HBA context object.
6651 *
6652 * This function checks if any mailbox completions are present on the mailbox
6653 * completion queue.
6654 **/
6655bool
6656lpfc_sli4_mbox_completions_pending(struct lpfc_hba *phba)
6657{
6658
6659 uint32_t idx;
6660 struct lpfc_queue *mcq;
6661 struct lpfc_mcqe *mcqe;
6662 bool pending_completions = false;
6663
6664 if (unlikely(!phba) || (phba->sli_rev != LPFC_SLI_REV4))
6665 return false;
6666
6667 /* Check for completions on mailbox completion queue */
6668
6669 mcq = phba->sli4_hba.mbx_cq;
6670 idx = mcq->hba_index;
6671 while (bf_get_le32(lpfc_cqe_valid, mcq->qe[idx].cqe)) {
6672 mcqe = (struct lpfc_mcqe *)mcq->qe[idx].cqe;
6673 if (bf_get_le32(lpfc_trailer_completed, mcqe) &&
6674 (!bf_get_le32(lpfc_trailer_async, mcqe))) {
6675 pending_completions = true;
6676 break;
6677 }
6678 idx = (idx + 1) % mcq->entry_count;
6679 if (mcq->hba_index == idx)
6680 break;
6681 }
6682 return pending_completions;
6683
6684}
6685
6686/**
6687 * lpfc_sli4_process_missed_mbox_completions - process mbox completions
6688 * that were missed.
6689 * @phba: Pointer to HBA context object.
6690 *
6691 * For sli4, it is possible to miss an interrupt. As such mbox completions
6692 * maybe missed causing erroneous mailbox timeouts to occur. This function
6693 * checks to see if mbox completions are on the mailbox completion queue
6694 * and will process all the completions associated with the eq for the
6695 * mailbox completion queue.
6696 **/
6697bool
6698lpfc_sli4_process_missed_mbox_completions(struct lpfc_hba *phba)
6699{
6700
6701 uint32_t eqidx;
6702 struct lpfc_queue *fpeq = NULL;
6703 struct lpfc_eqe *eqe;
6704 bool mbox_pending;
6705
6706 if (unlikely(!phba) || (phba->sli_rev != LPFC_SLI_REV4))
6707 return false;
6708
6709 /* Find the eq associated with the mcq */
6710
6711 if (phba->sli4_hba.hba_eq)
6712 for (eqidx = 0; eqidx < phba->cfg_fcp_io_channel; eqidx++)
6713 if (phba->sli4_hba.hba_eq[eqidx]->queue_id ==
6714 phba->sli4_hba.mbx_cq->assoc_qid) {
6715 fpeq = phba->sli4_hba.hba_eq[eqidx];
6716 break;
6717 }
6718 if (!fpeq)
6719 return false;
6720
6721 /* Turn off interrupts from this EQ */
6722
6723 lpfc_sli4_eq_clr_intr(fpeq);
6724
6725 /* Check to see if a mbox completion is pending */
6726
6727 mbox_pending = lpfc_sli4_mbox_completions_pending(phba);
6728
6729 /*
6730 * If a mbox completion is pending, process all the events on EQ
6731 * associated with the mbox completion queue (this could include
6732 * mailbox commands, async events, els commands, receive queue data
6733 * and fcp commands)
6734 */
6735
6736 if (mbox_pending)
6737 while ((eqe = lpfc_sli4_eq_get(fpeq))) {
6738 lpfc_sli4_hba_handle_eqe(phba, eqe, eqidx);
6739 fpeq->EQ_processed++;
6740 }
6741
6742 /* Always clear and re-arm the EQ */
6743
6744 lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_REARM);
6745
6746 return mbox_pending;
6747
6748}
James Smarte59058c2008-08-24 21:49:00 -04006749
6750/**
James Smart3621a712009-04-06 18:47:14 -04006751 * lpfc_mbox_timeout_handler - Worker thread function to handle mailbox timeout
James Smarte59058c2008-08-24 21:49:00 -04006752 * @phba: Pointer to HBA context object.
6753 *
6754 * This function is called from worker thread when a mailbox command times out.
6755 * The caller is not required to hold any locks. This function will reset the
6756 * HBA and recover all the pending commands.
6757 **/
dea31012005-04-17 16:05:31 -05006758void
6759lpfc_mbox_timeout_handler(struct lpfc_hba *phba)
6760{
James Smart2e0fef82007-06-17 19:56:36 -05006761 LPFC_MBOXQ_t *pmbox = phba->sli.mbox_active;
James Smarteb016562014-09-03 12:58:06 -04006762 MAILBOX_t *mb = NULL;
6763
James Smart1dcb58e2007-04-25 09:51:30 -04006764 struct lpfc_sli *psli = &phba->sli;
dea31012005-04-17 16:05:31 -05006765
James Smarte8d3c3b2013-10-10 12:21:30 -04006766 /* If the mailbox completed, process the completion and return */
6767 if (lpfc_sli4_process_missed_mbox_completions(phba))
6768 return;
6769
James Smarteb016562014-09-03 12:58:06 -04006770 if (pmbox != NULL)
6771 mb = &pmbox->u.mb;
James Smarta257bf92009-04-06 18:48:10 -04006772 /* Check the pmbox pointer first. There is a race condition
6773 * between the mbox timeout handler getting executed in the
6774 * worklist and the mailbox actually completing. When this
6775 * race condition occurs, the mbox_active will be NULL.
6776 */
6777 spin_lock_irq(&phba->hbalock);
6778 if (pmbox == NULL) {
6779 lpfc_printf_log(phba, KERN_WARNING,
6780 LOG_MBOX | LOG_SLI,
6781 "0353 Active Mailbox cleared - mailbox timeout "
6782 "exiting\n");
6783 spin_unlock_irq(&phba->hbalock);
6784 return;
6785 }
6786
dea31012005-04-17 16:05:31 -05006787 /* Mbox cmd <mbxCommand> timeout */
James Smarted957682007-06-17 19:56:37 -05006788 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04006789 "0310 Mailbox command x%x timeout Data: x%x x%x x%p\n",
James Smart92d7f7b2007-06-17 19:56:38 -05006790 mb->mbxCommand,
6791 phba->pport->port_state,
6792 phba->sli.sli_flag,
6793 phba->sli.mbox_active);
James Smarta257bf92009-04-06 18:48:10 -04006794 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05006795
James Smart1dcb58e2007-04-25 09:51:30 -04006796 /* Setting state unknown so lpfc_sli_abort_iocb_ring
6797 * would get IOCB_ERROR from lpfc_sli_issue_iocb, allowing
Lucas De Marchi25985ed2011-03-30 22:57:33 -03006798 * it to fail all outstanding SCSI IO.
James Smart1dcb58e2007-04-25 09:51:30 -04006799 */
James Smart2e0fef82007-06-17 19:56:36 -05006800 spin_lock_irq(&phba->pport->work_port_lock);
6801 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
6802 spin_unlock_irq(&phba->pport->work_port_lock);
6803 spin_lock_irq(&phba->hbalock);
6804 phba->link_state = LPFC_LINK_UNKNOWN;
James Smartf4b4c682009-05-22 14:53:12 -04006805 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05006806 spin_unlock_irq(&phba->hbalock);
James Smart1dcb58e2007-04-25 09:51:30 -04006807
James Smartdb55fba2014-04-04 13:52:02 -04006808 lpfc_sli_abort_fcp_rings(phba);
James Smart1dcb58e2007-04-25 09:51:30 -04006809
6810 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smart76bb24e2007-10-27 13:38:00 -04006811 "0345 Resetting board due to mailbox timeout\n");
James Smart3772a992009-05-22 14:50:54 -04006812
6813 /* Reset the HBA device */
6814 lpfc_reset_hba(phba);
dea31012005-04-17 16:05:31 -05006815}
6816
James Smarte59058c2008-08-24 21:49:00 -04006817/**
James Smart3772a992009-05-22 14:50:54 -04006818 * lpfc_sli_issue_mbox_s3 - Issue an SLI3 mailbox command to firmware
James Smarte59058c2008-08-24 21:49:00 -04006819 * @phba: Pointer to HBA context object.
6820 * @pmbox: Pointer to mailbox object.
6821 * @flag: Flag indicating how the mailbox need to be processed.
6822 *
6823 * This function is called by discovery code and HBA management code
James Smart3772a992009-05-22 14:50:54 -04006824 * to submit a mailbox command to firmware with SLI-3 interface spec. This
6825 * function gets the hbalock to protect the data structures.
James Smarte59058c2008-08-24 21:49:00 -04006826 * The mailbox command can be submitted in polling mode, in which case
6827 * this function will wait in a polling loop for the completion of the
6828 * mailbox.
6829 * If the mailbox is submitted in no_wait mode (not polling) the
6830 * function will submit the command and returns immediately without waiting
6831 * for the mailbox completion. The no_wait is supported only when HBA
6832 * is in SLI2/SLI3 mode - interrupts are enabled.
6833 * The SLI interface allows only one mailbox pending at a time. If the
6834 * mailbox is issued in polling mode and there is already a mailbox
6835 * pending, then the function will return an error. If the mailbox is issued
6836 * in NO_WAIT mode and there is a mailbox pending already, the function
6837 * will return MBX_BUSY after queuing the mailbox into mailbox queue.
6838 * The sli layer owns the mailbox object until the completion of mailbox
6839 * command if this function return MBX_BUSY or MBX_SUCCESS. For all other
6840 * return codes the caller owns the mailbox command after the return of
6841 * the function.
6842 **/
James Smart3772a992009-05-22 14:50:54 -04006843static int
6844lpfc_sli_issue_mbox_s3(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox,
6845 uint32_t flag)
dea31012005-04-17 16:05:31 -05006846{
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006847 MAILBOX_t *mbx;
James Smart2e0fef82007-06-17 19:56:36 -05006848 struct lpfc_sli *psli = &phba->sli;
dea31012005-04-17 16:05:31 -05006849 uint32_t status, evtctr;
James Smart9940b972011-03-11 16:06:12 -05006850 uint32_t ha_copy, hc_copy;
dea31012005-04-17 16:05:31 -05006851 int i;
James Smart09372822008-01-11 01:52:54 -05006852 unsigned long timeout;
dea31012005-04-17 16:05:31 -05006853 unsigned long drvr_flag = 0;
James Smart34b02dc2008-08-24 21:49:55 -04006854 uint32_t word0, ldata;
dea31012005-04-17 16:05:31 -05006855 void __iomem *to_slim;
James Smart58da1ff2008-04-07 10:15:56 -04006856 int processing_queue = 0;
6857
6858 spin_lock_irqsave(&phba->hbalock, drvr_flag);
6859 if (!pmbox) {
James Smart8568a4d2009-07-19 10:01:16 -04006860 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart58da1ff2008-04-07 10:15:56 -04006861 /* processing mbox queue from intr_handler */
James Smart3772a992009-05-22 14:50:54 -04006862 if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
6863 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6864 return MBX_SUCCESS;
6865 }
James Smart58da1ff2008-04-07 10:15:56 -04006866 processing_queue = 1;
James Smart58da1ff2008-04-07 10:15:56 -04006867 pmbox = lpfc_mbox_get(phba);
6868 if (!pmbox) {
6869 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6870 return MBX_SUCCESS;
6871 }
6872 }
dea31012005-04-17 16:05:31 -05006873
James Smarted957682007-06-17 19:56:37 -05006874 if (pmbox->mbox_cmpl && pmbox->mbox_cmpl != lpfc_sli_def_mbox_cmpl &&
James Smart92d7f7b2007-06-17 19:56:38 -05006875 pmbox->mbox_cmpl != lpfc_sli_wake_mbox_wait) {
James Smarted957682007-06-17 19:56:37 -05006876 if(!pmbox->vport) {
James Smart58da1ff2008-04-07 10:15:56 -04006877 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
James Smarted957682007-06-17 19:56:37 -05006878 lpfc_printf_log(phba, KERN_ERR,
James Smart92d7f7b2007-06-17 19:56:38 -05006879 LOG_MBOX | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04006880 "1806 Mbox x%x failed. No vport\n",
James Smart3772a992009-05-22 14:50:54 -04006881 pmbox->u.mb.mbxCommand);
James Smarted957682007-06-17 19:56:37 -05006882 dump_stack();
James Smart58da1ff2008-04-07 10:15:56 -04006883 goto out_not_finished;
James Smarted957682007-06-17 19:56:37 -05006884 }
6885 }
6886
Linas Vepstas8d63f372007-02-14 14:28:36 -06006887 /* If the PCI channel is in offline state, do not post mbox. */
James Smart58da1ff2008-04-07 10:15:56 -04006888 if (unlikely(pci_channel_offline(phba->pcidev))) {
6889 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6890 goto out_not_finished;
6891 }
Linas Vepstas8d63f372007-02-14 14:28:36 -06006892
James Smarta257bf92009-04-06 18:48:10 -04006893 /* If HBA has a deferred error attention, fail the iocb. */
6894 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
6895 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6896 goto out_not_finished;
6897 }
6898
dea31012005-04-17 16:05:31 -05006899 psli = &phba->sli;
James Smart92d7f7b2007-06-17 19:56:38 -05006900
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006901 mbx = &pmbox->u.mb;
dea31012005-04-17 16:05:31 -05006902 status = MBX_SUCCESS;
6903
James Smart2e0fef82007-06-17 19:56:36 -05006904 if (phba->link_state == LPFC_HBA_ERROR) {
6905 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
Jamie Wellnitz41415862006-02-28 19:25:27 -05006906
6907 /* Mbox command <mbxCommand> cannot issue */
James Smart3772a992009-05-22 14:50:54 -04006908 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6909 "(%d):0311 Mailbox command x%x cannot "
6910 "issue Data: x%x x%x\n",
6911 pmbox->vport ? pmbox->vport->vpi : 0,
6912 pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
James Smart58da1ff2008-04-07 10:15:56 -04006913 goto out_not_finished;
Jamie Wellnitz41415862006-02-28 19:25:27 -05006914 }
6915
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006916 if (mbx->mbxCommand != MBX_KILL_BOARD && flag & MBX_NOWAIT) {
James Smart9940b972011-03-11 16:06:12 -05006917 if (lpfc_readl(phba->HCregaddr, &hc_copy) ||
6918 !(hc_copy & HC_MBINT_ENA)) {
6919 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6920 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smart3772a992009-05-22 14:50:54 -04006921 "(%d):2528 Mailbox command x%x cannot "
6922 "issue Data: x%x x%x\n",
6923 pmbox->vport ? pmbox->vport->vpi : 0,
6924 pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
James Smart9940b972011-03-11 16:06:12 -05006925 goto out_not_finished;
6926 }
James Smart92908312006-03-07 15:04:13 -05006927 }
6928
dea31012005-04-17 16:05:31 -05006929 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
6930 /* Polling for a mbox command when another one is already active
6931 * is not allowed in SLI. Also, the driver must have established
6932 * SLI2 mode to queue and process multiple mbox commands.
6933 */
6934
6935 if (flag & MBX_POLL) {
James Smart2e0fef82007-06-17 19:56:36 -05006936 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05006937
6938 /* Mbox command <mbxCommand> cannot issue */
James Smart3772a992009-05-22 14:50:54 -04006939 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6940 "(%d):2529 Mailbox command x%x "
6941 "cannot issue Data: x%x x%x\n",
6942 pmbox->vport ? pmbox->vport->vpi : 0,
6943 pmbox->u.mb.mbxCommand,
6944 psli->sli_flag, flag);
James Smart58da1ff2008-04-07 10:15:56 -04006945 goto out_not_finished;
dea31012005-04-17 16:05:31 -05006946 }
6947
James Smart3772a992009-05-22 14:50:54 -04006948 if (!(psli->sli_flag & LPFC_SLI_ACTIVE)) {
James Smart2e0fef82007-06-17 19:56:36 -05006949 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05006950 /* Mbox command <mbxCommand> cannot issue */
James Smart3772a992009-05-22 14:50:54 -04006951 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6952 "(%d):2530 Mailbox command x%x "
6953 "cannot issue Data: x%x x%x\n",
6954 pmbox->vport ? pmbox->vport->vpi : 0,
6955 pmbox->u.mb.mbxCommand,
6956 psli->sli_flag, flag);
James Smart58da1ff2008-04-07 10:15:56 -04006957 goto out_not_finished;
dea31012005-04-17 16:05:31 -05006958 }
6959
dea31012005-04-17 16:05:31 -05006960 /* Another mailbox command is still being processed, queue this
6961 * command to be processed later.
6962 */
6963 lpfc_mbox_put(phba, pmbox);
6964
6965 /* Mbox cmd issue - BUSY */
James Smarted957682007-06-17 19:56:37 -05006966 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04006967 "(%d):0308 Mbox cmd issue - BUSY Data: "
James Smart92d7f7b2007-06-17 19:56:38 -05006968 "x%x x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05006969 pmbox->vport ? pmbox->vport->vpi : 0xffffff,
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006970 mbx->mbxCommand, phba->pport->port_state,
James Smart92d7f7b2007-06-17 19:56:38 -05006971 psli->sli_flag, flag);
dea31012005-04-17 16:05:31 -05006972
6973 psli->slistat.mbox_busy++;
James Smart2e0fef82007-06-17 19:56:36 -05006974 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05006975
James Smart858c9f62007-06-17 19:56:39 -05006976 if (pmbox->vport) {
6977 lpfc_debugfs_disc_trc(pmbox->vport,
6978 LPFC_DISC_TRC_MBOX_VPORT,
6979 "MBOX Bsy vport: cmd:x%x mb:x%x x%x",
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006980 (uint32_t)mbx->mbxCommand,
6981 mbx->un.varWords[0], mbx->un.varWords[1]);
James Smart858c9f62007-06-17 19:56:39 -05006982 }
6983 else {
6984 lpfc_debugfs_disc_trc(phba->pport,
6985 LPFC_DISC_TRC_MBOX,
6986 "MBOX Bsy: cmd:x%x mb:x%x x%x",
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006987 (uint32_t)mbx->mbxCommand,
6988 mbx->un.varWords[0], mbx->un.varWords[1]);
James Smart858c9f62007-06-17 19:56:39 -05006989 }
6990
James Smart2e0fef82007-06-17 19:56:36 -05006991 return MBX_BUSY;
dea31012005-04-17 16:05:31 -05006992 }
6993
dea31012005-04-17 16:05:31 -05006994 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
6995
6996 /* If we are not polling, we MUST be in SLI2 mode */
6997 if (flag != MBX_POLL) {
James Smart3772a992009-05-22 14:50:54 -04006998 if (!(psli->sli_flag & LPFC_SLI_ACTIVE) &&
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006999 (mbx->mbxCommand != MBX_KILL_BOARD)) {
dea31012005-04-17 16:05:31 -05007000 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05007001 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05007002 /* Mbox command <mbxCommand> cannot issue */
James Smart3772a992009-05-22 14:50:54 -04007003 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7004 "(%d):2531 Mailbox command x%x "
7005 "cannot issue Data: x%x x%x\n",
7006 pmbox->vport ? pmbox->vport->vpi : 0,
7007 pmbox->u.mb.mbxCommand,
7008 psli->sli_flag, flag);
James Smart58da1ff2008-04-07 10:15:56 -04007009 goto out_not_finished;
dea31012005-04-17 16:05:31 -05007010 }
7011 /* timeout active mbox command */
James Smart256ec0d2013-04-17 20:14:58 -04007012 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, pmbox) *
7013 1000);
7014 mod_timer(&psli->mbox_tmo, jiffies + timeout);
dea31012005-04-17 16:05:31 -05007015 }
7016
7017 /* Mailbox cmd <cmd> issue */
James Smarted957682007-06-17 19:56:37 -05007018 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04007019 "(%d):0309 Mailbox cmd x%x issue Data: x%x x%x "
James Smart92d7f7b2007-06-17 19:56:38 -05007020 "x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04007021 pmbox->vport ? pmbox->vport->vpi : 0,
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007022 mbx->mbxCommand, phba->pport->port_state,
James Smart92d7f7b2007-06-17 19:56:38 -05007023 psli->sli_flag, flag);
dea31012005-04-17 16:05:31 -05007024
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007025 if (mbx->mbxCommand != MBX_HEARTBEAT) {
James Smart858c9f62007-06-17 19:56:39 -05007026 if (pmbox->vport) {
7027 lpfc_debugfs_disc_trc(pmbox->vport,
7028 LPFC_DISC_TRC_MBOX_VPORT,
7029 "MBOX Send vport: cmd:x%x mb:x%x x%x",
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007030 (uint32_t)mbx->mbxCommand,
7031 mbx->un.varWords[0], mbx->un.varWords[1]);
James Smart858c9f62007-06-17 19:56:39 -05007032 }
7033 else {
7034 lpfc_debugfs_disc_trc(phba->pport,
7035 LPFC_DISC_TRC_MBOX,
7036 "MBOX Send: cmd:x%x mb:x%x x%x",
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007037 (uint32_t)mbx->mbxCommand,
7038 mbx->un.varWords[0], mbx->un.varWords[1]);
James Smart858c9f62007-06-17 19:56:39 -05007039 }
7040 }
7041
dea31012005-04-17 16:05:31 -05007042 psli->slistat.mbox_cmd++;
7043 evtctr = psli->slistat.mbox_event;
7044
7045 /* next set own bit for the adapter and copy over command word */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007046 mbx->mbxOwner = OWN_CHIP;
dea31012005-04-17 16:05:31 -05007047
James Smart3772a992009-05-22 14:50:54 -04007048 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
James Smart7a470272010-03-15 11:25:20 -04007049 /* Populate mbox extension offset word. */
7050 if (pmbox->in_ext_byte_len || pmbox->out_ext_byte_len) {
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007051 *(((uint32_t *)mbx) + pmbox->mbox_offset_word)
James Smart7a470272010-03-15 11:25:20 -04007052 = (uint8_t *)phba->mbox_ext
7053 - (uint8_t *)phba->mbox;
7054 }
7055
7056 /* Copy the mailbox extension data */
7057 if (pmbox->in_ext_byte_len && pmbox->context2) {
7058 lpfc_sli_pcimem_bcopy(pmbox->context2,
7059 (uint8_t *)phba->mbox_ext,
7060 pmbox->in_ext_byte_len);
7061 }
7062 /* Copy command data to host SLIM area */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007063 lpfc_sli_pcimem_bcopy(mbx, phba->mbox, MAILBOX_CMD_SIZE);
dea31012005-04-17 16:05:31 -05007064 } else {
James Smart7a470272010-03-15 11:25:20 -04007065 /* Populate mbox extension offset word. */
7066 if (pmbox->in_ext_byte_len || pmbox->out_ext_byte_len)
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007067 *(((uint32_t *)mbx) + pmbox->mbox_offset_word)
James Smart7a470272010-03-15 11:25:20 -04007068 = MAILBOX_HBA_EXT_OFFSET;
7069
7070 /* Copy the mailbox extension data */
7071 if (pmbox->in_ext_byte_len && pmbox->context2) {
7072 lpfc_memcpy_to_slim(phba->MBslimaddr +
7073 MAILBOX_HBA_EXT_OFFSET,
7074 pmbox->context2, pmbox->in_ext_byte_len);
7075
7076 }
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007077 if (mbx->mbxCommand == MBX_CONFIG_PORT) {
dea31012005-04-17 16:05:31 -05007078 /* copy command data into host mbox for cmpl */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007079 lpfc_sli_pcimem_bcopy(mbx, phba->mbox, MAILBOX_CMD_SIZE);
dea31012005-04-17 16:05:31 -05007080 }
7081
7082 /* First copy mbox command data to HBA SLIM, skip past first
7083 word */
7084 to_slim = phba->MBslimaddr + sizeof (uint32_t);
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007085 lpfc_memcpy_to_slim(to_slim, &mbx->un.varWords[0],
dea31012005-04-17 16:05:31 -05007086 MAILBOX_CMD_SIZE - sizeof (uint32_t));
7087
7088 /* Next copy over first word, with mbxOwner set */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007089 ldata = *((uint32_t *)mbx);
dea31012005-04-17 16:05:31 -05007090 to_slim = phba->MBslimaddr;
7091 writel(ldata, to_slim);
7092 readl(to_slim); /* flush */
7093
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007094 if (mbx->mbxCommand == MBX_CONFIG_PORT) {
dea31012005-04-17 16:05:31 -05007095 /* switch over to host mailbox */
James Smart3772a992009-05-22 14:50:54 -04007096 psli->sli_flag |= LPFC_SLI_ACTIVE;
dea31012005-04-17 16:05:31 -05007097 }
7098 }
7099
7100 wmb();
dea31012005-04-17 16:05:31 -05007101
7102 switch (flag) {
7103 case MBX_NOWAIT:
James Smart09372822008-01-11 01:52:54 -05007104 /* Set up reference to mailbox command */
dea31012005-04-17 16:05:31 -05007105 psli->mbox_active = pmbox;
James Smart09372822008-01-11 01:52:54 -05007106 /* Interrupt board to do it */
7107 writel(CA_MBATT, phba->CAregaddr);
7108 readl(phba->CAregaddr); /* flush */
7109 /* Don't wait for it to finish, just return */
dea31012005-04-17 16:05:31 -05007110 break;
7111
7112 case MBX_POLL:
James Smart09372822008-01-11 01:52:54 -05007113 /* Set up null reference to mailbox command */
dea31012005-04-17 16:05:31 -05007114 psli->mbox_active = NULL;
James Smart09372822008-01-11 01:52:54 -05007115 /* Interrupt board to do it */
7116 writel(CA_MBATT, phba->CAregaddr);
7117 readl(phba->CAregaddr); /* flush */
7118
James Smart3772a992009-05-22 14:50:54 -04007119 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea31012005-04-17 16:05:31 -05007120 /* First read mbox status word */
James Smart34b02dc2008-08-24 21:49:55 -04007121 word0 = *((uint32_t *)phba->mbox);
dea31012005-04-17 16:05:31 -05007122 word0 = le32_to_cpu(word0);
7123 } else {
7124 /* First read mbox status word */
James Smart9940b972011-03-11 16:06:12 -05007125 if (lpfc_readl(phba->MBslimaddr, &word0)) {
7126 spin_unlock_irqrestore(&phba->hbalock,
7127 drvr_flag);
7128 goto out_not_finished;
7129 }
dea31012005-04-17 16:05:31 -05007130 }
7131
7132 /* Read the HBA Host Attention Register */
James Smart9940b972011-03-11 16:06:12 -05007133 if (lpfc_readl(phba->HAregaddr, &ha_copy)) {
7134 spin_unlock_irqrestore(&phba->hbalock,
7135 drvr_flag);
7136 goto out_not_finished;
7137 }
James Smarta183a152011-10-10 21:32:43 -04007138 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, pmbox) *
7139 1000) + jiffies;
James Smart09372822008-01-11 01:52:54 -05007140 i = 0;
dea31012005-04-17 16:05:31 -05007141 /* Wait for command to complete */
Jamie Wellnitz41415862006-02-28 19:25:27 -05007142 while (((word0 & OWN_CHIP) == OWN_CHIP) ||
7143 (!(ha_copy & HA_MBATT) &&
James Smart2e0fef82007-06-17 19:56:36 -05007144 (phba->link_state > LPFC_WARM_START))) {
James Smart09372822008-01-11 01:52:54 -05007145 if (time_after(jiffies, timeout)) {
dea31012005-04-17 16:05:31 -05007146 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05007147 spin_unlock_irqrestore(&phba->hbalock,
dea31012005-04-17 16:05:31 -05007148 drvr_flag);
James Smart58da1ff2008-04-07 10:15:56 -04007149 goto out_not_finished;
dea31012005-04-17 16:05:31 -05007150 }
7151
7152 /* Check if we took a mbox interrupt while we were
7153 polling */
7154 if (((word0 & OWN_CHIP) != OWN_CHIP)
7155 && (evtctr != psli->slistat.mbox_event))
7156 break;
7157
James Smart09372822008-01-11 01:52:54 -05007158 if (i++ > 10) {
7159 spin_unlock_irqrestore(&phba->hbalock,
7160 drvr_flag);
7161 msleep(1);
7162 spin_lock_irqsave(&phba->hbalock, drvr_flag);
7163 }
dea31012005-04-17 16:05:31 -05007164
James Smart3772a992009-05-22 14:50:54 -04007165 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea31012005-04-17 16:05:31 -05007166 /* First copy command data */
James Smart34b02dc2008-08-24 21:49:55 -04007167 word0 = *((uint32_t *)phba->mbox);
dea31012005-04-17 16:05:31 -05007168 word0 = le32_to_cpu(word0);
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007169 if (mbx->mbxCommand == MBX_CONFIG_PORT) {
dea31012005-04-17 16:05:31 -05007170 MAILBOX_t *slimmb;
James Smart34b02dc2008-08-24 21:49:55 -04007171 uint32_t slimword0;
dea31012005-04-17 16:05:31 -05007172 /* Check real SLIM for any errors */
7173 slimword0 = readl(phba->MBslimaddr);
7174 slimmb = (MAILBOX_t *) & slimword0;
7175 if (((slimword0 & OWN_CHIP) != OWN_CHIP)
7176 && slimmb->mbxStatus) {
7177 psli->sli_flag &=
James Smart3772a992009-05-22 14:50:54 -04007178 ~LPFC_SLI_ACTIVE;
dea31012005-04-17 16:05:31 -05007179 word0 = slimword0;
7180 }
7181 }
7182 } else {
7183 /* First copy command data */
7184 word0 = readl(phba->MBslimaddr);
7185 }
7186 /* Read the HBA Host Attention Register */
James Smart9940b972011-03-11 16:06:12 -05007187 if (lpfc_readl(phba->HAregaddr, &ha_copy)) {
7188 spin_unlock_irqrestore(&phba->hbalock,
7189 drvr_flag);
7190 goto out_not_finished;
7191 }
dea31012005-04-17 16:05:31 -05007192 }
7193
James Smart3772a992009-05-22 14:50:54 -04007194 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea31012005-04-17 16:05:31 -05007195 /* copy results back to user */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007196 lpfc_sli_pcimem_bcopy(phba->mbox, mbx, MAILBOX_CMD_SIZE);
James Smart7a470272010-03-15 11:25:20 -04007197 /* Copy the mailbox extension data */
7198 if (pmbox->out_ext_byte_len && pmbox->context2) {
7199 lpfc_sli_pcimem_bcopy(phba->mbox_ext,
7200 pmbox->context2,
7201 pmbox->out_ext_byte_len);
7202 }
dea31012005-04-17 16:05:31 -05007203 } else {
7204 /* First copy command data */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007205 lpfc_memcpy_from_slim(mbx, phba->MBslimaddr,
dea31012005-04-17 16:05:31 -05007206 MAILBOX_CMD_SIZE);
James Smart7a470272010-03-15 11:25:20 -04007207 /* Copy the mailbox extension data */
7208 if (pmbox->out_ext_byte_len && pmbox->context2) {
7209 lpfc_memcpy_from_slim(pmbox->context2,
7210 phba->MBslimaddr +
7211 MAILBOX_HBA_EXT_OFFSET,
7212 pmbox->out_ext_byte_len);
dea31012005-04-17 16:05:31 -05007213 }
7214 }
7215
7216 writel(HA_MBATT, phba->HAregaddr);
7217 readl(phba->HAregaddr); /* flush */
7218
7219 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007220 status = mbx->mbxStatus;
dea31012005-04-17 16:05:31 -05007221 }
7222
James Smart2e0fef82007-06-17 19:56:36 -05007223 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
7224 return status;
James Smart58da1ff2008-04-07 10:15:56 -04007225
7226out_not_finished:
7227 if (processing_queue) {
James Smartda0436e2009-05-22 14:51:39 -04007228 pmbox->u.mb.mbxStatus = MBX_NOT_FINISHED;
James Smart58da1ff2008-04-07 10:15:56 -04007229 lpfc_mbox_cmpl_put(phba, pmbox);
7230 }
7231 return MBX_NOT_FINISHED;
dea31012005-04-17 16:05:31 -05007232}
7233
James Smarte59058c2008-08-24 21:49:00 -04007234/**
James Smartf1126682009-06-10 17:22:44 -04007235 * lpfc_sli4_async_mbox_block - Block posting SLI4 asynchronous mailbox command
7236 * @phba: Pointer to HBA context object.
7237 *
7238 * The function blocks the posting of SLI4 asynchronous mailbox commands from
7239 * the driver internal pending mailbox queue. It will then try to wait out the
7240 * possible outstanding mailbox command before return.
7241 *
7242 * Returns:
7243 * 0 - the outstanding mailbox command completed; otherwise, the wait for
7244 * the outstanding mailbox command timed out.
7245 **/
7246static int
7247lpfc_sli4_async_mbox_block(struct lpfc_hba *phba)
7248{
7249 struct lpfc_sli *psli = &phba->sli;
James Smartf1126682009-06-10 17:22:44 -04007250 int rc = 0;
James Smarta183a152011-10-10 21:32:43 -04007251 unsigned long timeout = 0;
James Smartf1126682009-06-10 17:22:44 -04007252
7253 /* Mark the asynchronous mailbox command posting as blocked */
7254 spin_lock_irq(&phba->hbalock);
7255 psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
James Smartf1126682009-06-10 17:22:44 -04007256 /* Determine how long we might wait for the active mailbox
7257 * command to be gracefully completed by firmware.
7258 */
James Smarta183a152011-10-10 21:32:43 -04007259 if (phba->sli.mbox_active)
7260 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
7261 phba->sli.mbox_active) *
7262 1000) + jiffies;
7263 spin_unlock_irq(&phba->hbalock);
7264
James Smarte8d3c3b2013-10-10 12:21:30 -04007265 /* Make sure the mailbox is really active */
7266 if (timeout)
7267 lpfc_sli4_process_missed_mbox_completions(phba);
7268
James Smartf1126682009-06-10 17:22:44 -04007269 /* Wait for the outstnading mailbox command to complete */
7270 while (phba->sli.mbox_active) {
7271 /* Check active mailbox complete status every 2ms */
7272 msleep(2);
7273 if (time_after(jiffies, timeout)) {
7274 /* Timeout, marked the outstanding cmd not complete */
7275 rc = 1;
7276 break;
7277 }
7278 }
7279
7280 /* Can not cleanly block async mailbox command, fails it */
7281 if (rc) {
7282 spin_lock_irq(&phba->hbalock);
7283 psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
7284 spin_unlock_irq(&phba->hbalock);
7285 }
7286 return rc;
7287}
7288
7289/**
7290 * lpfc_sli4_async_mbox_unblock - Block posting SLI4 async mailbox command
7291 * @phba: Pointer to HBA context object.
7292 *
7293 * The function unblocks and resume posting of SLI4 asynchronous mailbox
7294 * commands from the driver internal pending mailbox queue. It makes sure
7295 * that there is no outstanding mailbox command before resuming posting
7296 * asynchronous mailbox commands. If, for any reason, there is outstanding
7297 * mailbox command, it will try to wait it out before resuming asynchronous
7298 * mailbox command posting.
7299 **/
7300static void
7301lpfc_sli4_async_mbox_unblock(struct lpfc_hba *phba)
7302{
7303 struct lpfc_sli *psli = &phba->sli;
7304
7305 spin_lock_irq(&phba->hbalock);
7306 if (!(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
7307 /* Asynchronous mailbox posting is not blocked, do nothing */
7308 spin_unlock_irq(&phba->hbalock);
7309 return;
7310 }
7311
7312 /* Outstanding synchronous mailbox command is guaranteed to be done,
7313 * successful or timeout, after timing-out the outstanding mailbox
7314 * command shall always be removed, so just unblock posting async
7315 * mailbox command and resume
7316 */
7317 psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
7318 spin_unlock_irq(&phba->hbalock);
7319
7320 /* wake up worker thread to post asynchronlous mailbox command */
7321 lpfc_worker_wake_up(phba);
7322}
7323
7324/**
James Smart2d843ed2012-09-29 11:29:06 -04007325 * lpfc_sli4_wait_bmbx_ready - Wait for bootstrap mailbox register ready
7326 * @phba: Pointer to HBA context object.
7327 * @mboxq: Pointer to mailbox object.
7328 *
7329 * The function waits for the bootstrap mailbox register ready bit from
7330 * port for twice the regular mailbox command timeout value.
7331 *
7332 * 0 - no timeout on waiting for bootstrap mailbox register ready.
7333 * MBXERR_ERROR - wait for bootstrap mailbox register timed out.
7334 **/
7335static int
7336lpfc_sli4_wait_bmbx_ready(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
7337{
7338 uint32_t db_ready;
7339 unsigned long timeout;
7340 struct lpfc_register bmbx_reg;
7341
7342 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, mboxq)
7343 * 1000) + jiffies;
7344
7345 do {
7346 bmbx_reg.word0 = readl(phba->sli4_hba.BMBXregaddr);
7347 db_ready = bf_get(lpfc_bmbx_rdy, &bmbx_reg);
7348 if (!db_ready)
7349 msleep(2);
7350
7351 if (time_after(jiffies, timeout))
7352 return MBXERR_ERROR;
7353 } while (!db_ready);
7354
7355 return 0;
7356}
7357
7358/**
James Smartda0436e2009-05-22 14:51:39 -04007359 * lpfc_sli4_post_sync_mbox - Post an SLI4 mailbox to the bootstrap mailbox
7360 * @phba: Pointer to HBA context object.
7361 * @mboxq: Pointer to mailbox object.
7362 *
7363 * The function posts a mailbox to the port. The mailbox is expected
7364 * to be comletely filled in and ready for the port to operate on it.
7365 * This routine executes a synchronous completion operation on the
7366 * mailbox by polling for its completion.
7367 *
7368 * The caller must not be holding any locks when calling this routine.
7369 *
7370 * Returns:
7371 * MBX_SUCCESS - mailbox posted successfully
7372 * Any of the MBX error values.
7373 **/
7374static int
7375lpfc_sli4_post_sync_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
7376{
7377 int rc = MBX_SUCCESS;
7378 unsigned long iflag;
James Smartda0436e2009-05-22 14:51:39 -04007379 uint32_t mcqe_status;
7380 uint32_t mbx_cmnd;
James Smartda0436e2009-05-22 14:51:39 -04007381 struct lpfc_sli *psli = &phba->sli;
7382 struct lpfc_mqe *mb = &mboxq->u.mqe;
7383 struct lpfc_bmbx_create *mbox_rgn;
7384 struct dma_address *dma_address;
James Smartda0436e2009-05-22 14:51:39 -04007385
7386 /*
7387 * Only one mailbox can be active to the bootstrap mailbox region
7388 * at a time and there is no queueing provided.
7389 */
7390 spin_lock_irqsave(&phba->hbalock, iflag);
7391 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
7392 spin_unlock_irqrestore(&phba->hbalock, iflag);
7393 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007394 "(%d):2532 Mailbox command x%x (x%x/x%x) "
James Smartda0436e2009-05-22 14:51:39 -04007395 "cannot issue Data: x%x x%x\n",
7396 mboxq->vport ? mboxq->vport->vpi : 0,
7397 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007398 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7399 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007400 psli->sli_flag, MBX_POLL);
7401 return MBXERR_ERROR;
7402 }
7403 /* The server grabs the token and owns it until release */
7404 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
7405 phba->sli.mbox_active = mboxq;
7406 spin_unlock_irqrestore(&phba->hbalock, iflag);
7407
James Smart2d843ed2012-09-29 11:29:06 -04007408 /* wait for bootstrap mbox register for readyness */
7409 rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
7410 if (rc)
7411 goto exit;
7412
James Smartda0436e2009-05-22 14:51:39 -04007413 /*
7414 * Initialize the bootstrap memory region to avoid stale data areas
7415 * in the mailbox post. Then copy the caller's mailbox contents to
7416 * the bmbx mailbox region.
7417 */
7418 mbx_cmnd = bf_get(lpfc_mqe_command, mb);
7419 memset(phba->sli4_hba.bmbx.avirt, 0, sizeof(struct lpfc_bmbx_create));
7420 lpfc_sli_pcimem_bcopy(mb, phba->sli4_hba.bmbx.avirt,
7421 sizeof(struct lpfc_mqe));
7422
7423 /* Post the high mailbox dma address to the port and wait for ready. */
7424 dma_address = &phba->sli4_hba.bmbx.dma_address;
7425 writel(dma_address->addr_hi, phba->sli4_hba.BMBXregaddr);
7426
James Smart2d843ed2012-09-29 11:29:06 -04007427 /* wait for bootstrap mbox register for hi-address write done */
7428 rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
7429 if (rc)
7430 goto exit;
James Smartda0436e2009-05-22 14:51:39 -04007431
7432 /* Post the low mailbox dma address to the port. */
7433 writel(dma_address->addr_lo, phba->sli4_hba.BMBXregaddr);
James Smartda0436e2009-05-22 14:51:39 -04007434
James Smart2d843ed2012-09-29 11:29:06 -04007435 /* wait for bootstrap mbox register for low address write done */
7436 rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
7437 if (rc)
7438 goto exit;
James Smartda0436e2009-05-22 14:51:39 -04007439
7440 /*
7441 * Read the CQ to ensure the mailbox has completed.
7442 * If so, update the mailbox status so that the upper layers
7443 * can complete the request normally.
7444 */
7445 lpfc_sli_pcimem_bcopy(phba->sli4_hba.bmbx.avirt, mb,
7446 sizeof(struct lpfc_mqe));
7447 mbox_rgn = (struct lpfc_bmbx_create *) phba->sli4_hba.bmbx.avirt;
7448 lpfc_sli_pcimem_bcopy(&mbox_rgn->mcqe, &mboxq->mcqe,
7449 sizeof(struct lpfc_mcqe));
7450 mcqe_status = bf_get(lpfc_mcqe_status, &mbox_rgn->mcqe);
James Smart05580562011-05-24 11:40:48 -04007451 /*
7452 * When the CQE status indicates a failure and the mailbox status
7453 * indicates success then copy the CQE status into the mailbox status
7454 * (and prefix it with x4000).
7455 */
James Smartda0436e2009-05-22 14:51:39 -04007456 if (mcqe_status != MB_CQE_STATUS_SUCCESS) {
James Smart05580562011-05-24 11:40:48 -04007457 if (bf_get(lpfc_mqe_status, mb) == MBX_SUCCESS)
7458 bf_set(lpfc_mqe_status, mb,
7459 (LPFC_MBX_ERROR_RANGE | mcqe_status));
James Smartda0436e2009-05-22 14:51:39 -04007460 rc = MBXERR_ERROR;
James Smartd7c47992010-06-08 18:31:54 -04007461 } else
7462 lpfc_sli4_swap_str(phba, mboxq);
James Smartda0436e2009-05-22 14:51:39 -04007463
7464 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007465 "(%d):0356 Mailbox cmd x%x (x%x/x%x) Status x%x "
James Smartda0436e2009-05-22 14:51:39 -04007466 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x"
7467 " x%x x%x CQ: x%x x%x x%x x%x\n",
James Smarta183a152011-10-10 21:32:43 -04007468 mboxq->vport ? mboxq->vport->vpi : 0, mbx_cmnd,
7469 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7470 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007471 bf_get(lpfc_mqe_status, mb),
7472 mb->un.mb_words[0], mb->un.mb_words[1],
7473 mb->un.mb_words[2], mb->un.mb_words[3],
7474 mb->un.mb_words[4], mb->un.mb_words[5],
7475 mb->un.mb_words[6], mb->un.mb_words[7],
7476 mb->un.mb_words[8], mb->un.mb_words[9],
7477 mb->un.mb_words[10], mb->un.mb_words[11],
7478 mb->un.mb_words[12], mboxq->mcqe.word0,
7479 mboxq->mcqe.mcqe_tag0, mboxq->mcqe.mcqe_tag1,
7480 mboxq->mcqe.trailer);
7481exit:
7482 /* We are holding the token, no needed for lock when release */
7483 spin_lock_irqsave(&phba->hbalock, iflag);
7484 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7485 phba->sli.mbox_active = NULL;
7486 spin_unlock_irqrestore(&phba->hbalock, iflag);
7487 return rc;
7488}
7489
7490/**
7491 * lpfc_sli_issue_mbox_s4 - Issue an SLI4 mailbox command to firmware
7492 * @phba: Pointer to HBA context object.
7493 * @pmbox: Pointer to mailbox object.
7494 * @flag: Flag indicating how the mailbox need to be processed.
7495 *
7496 * This function is called by discovery code and HBA management code to submit
7497 * a mailbox command to firmware with SLI-4 interface spec.
7498 *
7499 * Return codes the caller owns the mailbox command after the return of the
7500 * function.
7501 **/
7502static int
7503lpfc_sli_issue_mbox_s4(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
7504 uint32_t flag)
7505{
7506 struct lpfc_sli *psli = &phba->sli;
7507 unsigned long iflags;
7508 int rc;
7509
James Smartb76f2dc2011-07-22 18:37:42 -04007510 /* dump from issue mailbox command if setup */
7511 lpfc_idiag_mbxacc_dump_issue_mbox(phba, &mboxq->u.mb);
7512
James Smart8fa38512009-07-19 10:01:03 -04007513 rc = lpfc_mbox_dev_check(phba);
7514 if (unlikely(rc)) {
7515 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007516 "(%d):2544 Mailbox command x%x (x%x/x%x) "
James Smart8fa38512009-07-19 10:01:03 -04007517 "cannot issue Data: x%x x%x\n",
7518 mboxq->vport ? mboxq->vport->vpi : 0,
7519 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007520 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7521 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smart8fa38512009-07-19 10:01:03 -04007522 psli->sli_flag, flag);
7523 goto out_not_finished;
7524 }
7525
James Smartda0436e2009-05-22 14:51:39 -04007526 /* Detect polling mode and jump to a handler */
7527 if (!phba->sli4_hba.intr_enable) {
7528 if (flag == MBX_POLL)
7529 rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
7530 else
7531 rc = -EIO;
7532 if (rc != MBX_SUCCESS)
James Smart05580562011-05-24 11:40:48 -04007533 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
James Smartda0436e2009-05-22 14:51:39 -04007534 "(%d):2541 Mailbox command x%x "
James Smartcc459f12012-05-09 21:18:30 -04007535 "(x%x/x%x) failure: "
7536 "mqe_sta: x%x mcqe_sta: x%x/x%x "
7537 "Data: x%x x%x\n,",
James Smartda0436e2009-05-22 14:51:39 -04007538 mboxq->vport ? mboxq->vport->vpi : 0,
7539 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007540 lpfc_sli_config_mbox_subsys_get(phba,
7541 mboxq),
7542 lpfc_sli_config_mbox_opcode_get(phba,
7543 mboxq),
James Smartcc459f12012-05-09 21:18:30 -04007544 bf_get(lpfc_mqe_status, &mboxq->u.mqe),
7545 bf_get(lpfc_mcqe_status, &mboxq->mcqe),
7546 bf_get(lpfc_mcqe_ext_status,
7547 &mboxq->mcqe),
James Smartda0436e2009-05-22 14:51:39 -04007548 psli->sli_flag, flag);
7549 return rc;
7550 } else if (flag == MBX_POLL) {
James Smartf1126682009-06-10 17:22:44 -04007551 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
7552 "(%d):2542 Try to issue mailbox command "
James Smarta183a152011-10-10 21:32:43 -04007553 "x%x (x%x/x%x) synchronously ahead of async"
James Smartf1126682009-06-10 17:22:44 -04007554 "mailbox command queue: x%x x%x\n",
James Smartda0436e2009-05-22 14:51:39 -04007555 mboxq->vport ? mboxq->vport->vpi : 0,
7556 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007557 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7558 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007559 psli->sli_flag, flag);
James Smartf1126682009-06-10 17:22:44 -04007560 /* Try to block the asynchronous mailbox posting */
7561 rc = lpfc_sli4_async_mbox_block(phba);
7562 if (!rc) {
7563 /* Successfully blocked, now issue sync mbox cmd */
7564 rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
7565 if (rc != MBX_SUCCESS)
James Smartcc459f12012-05-09 21:18:30 -04007566 lpfc_printf_log(phba, KERN_WARNING,
James Smarta183a152011-10-10 21:32:43 -04007567 LOG_MBOX | LOG_SLI,
James Smartcc459f12012-05-09 21:18:30 -04007568 "(%d):2597 Sync Mailbox command "
7569 "x%x (x%x/x%x) failure: "
7570 "mqe_sta: x%x mcqe_sta: x%x/x%x "
7571 "Data: x%x x%x\n,",
7572 mboxq->vport ? mboxq->vport->vpi : 0,
James Smarta183a152011-10-10 21:32:43 -04007573 mboxq->u.mb.mbxCommand,
7574 lpfc_sli_config_mbox_subsys_get(phba,
7575 mboxq),
7576 lpfc_sli_config_mbox_opcode_get(phba,
7577 mboxq),
James Smartcc459f12012-05-09 21:18:30 -04007578 bf_get(lpfc_mqe_status, &mboxq->u.mqe),
7579 bf_get(lpfc_mcqe_status, &mboxq->mcqe),
7580 bf_get(lpfc_mcqe_ext_status,
7581 &mboxq->mcqe),
James Smarta183a152011-10-10 21:32:43 -04007582 psli->sli_flag, flag);
James Smartf1126682009-06-10 17:22:44 -04007583 /* Unblock the async mailbox posting afterward */
7584 lpfc_sli4_async_mbox_unblock(phba);
7585 }
7586 return rc;
James Smartda0436e2009-05-22 14:51:39 -04007587 }
7588
7589 /* Now, interrupt mode asynchrous mailbox command */
7590 rc = lpfc_mbox_cmd_check(phba, mboxq);
7591 if (rc) {
7592 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007593 "(%d):2543 Mailbox command x%x (x%x/x%x) "
James Smartda0436e2009-05-22 14:51:39 -04007594 "cannot issue Data: x%x x%x\n",
7595 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);
7600 goto out_not_finished;
7601 }
James Smartda0436e2009-05-22 14:51:39 -04007602
7603 /* Put the mailbox command to the driver internal FIFO */
7604 psli->slistat.mbox_busy++;
7605 spin_lock_irqsave(&phba->hbalock, iflags);
7606 lpfc_mbox_put(phba, mboxq);
7607 spin_unlock_irqrestore(&phba->hbalock, iflags);
7608 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
7609 "(%d):0354 Mbox cmd issue - Enqueue Data: "
James Smarta183a152011-10-10 21:32:43 -04007610 "x%x (x%x/x%x) x%x x%x x%x\n",
James Smartda0436e2009-05-22 14:51:39 -04007611 mboxq->vport ? mboxq->vport->vpi : 0xffffff,
7612 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
James Smarta183a152011-10-10 21:32:43 -04007613 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7614 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007615 phba->pport->port_state,
7616 psli->sli_flag, MBX_NOWAIT);
7617 /* Wake up worker thread to transport mailbox command from head */
7618 lpfc_worker_wake_up(phba);
7619
7620 return MBX_BUSY;
7621
7622out_not_finished:
7623 return MBX_NOT_FINISHED;
7624}
7625
7626/**
7627 * lpfc_sli4_post_async_mbox - Post an SLI4 mailbox command to device
7628 * @phba: Pointer to HBA context object.
7629 *
7630 * This function is called by worker thread to send a mailbox command to
7631 * SLI4 HBA firmware.
7632 *
7633 **/
7634int
7635lpfc_sli4_post_async_mbox(struct lpfc_hba *phba)
7636{
7637 struct lpfc_sli *psli = &phba->sli;
7638 LPFC_MBOXQ_t *mboxq;
7639 int rc = MBX_SUCCESS;
7640 unsigned long iflags;
7641 struct lpfc_mqe *mqe;
7642 uint32_t mbx_cmnd;
7643
7644 /* Check interrupt mode before post async mailbox command */
7645 if (unlikely(!phba->sli4_hba.intr_enable))
7646 return MBX_NOT_FINISHED;
7647
7648 /* Check for mailbox command service token */
7649 spin_lock_irqsave(&phba->hbalock, iflags);
7650 if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
7651 spin_unlock_irqrestore(&phba->hbalock, iflags);
7652 return MBX_NOT_FINISHED;
7653 }
7654 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
7655 spin_unlock_irqrestore(&phba->hbalock, iflags);
7656 return MBX_NOT_FINISHED;
7657 }
7658 if (unlikely(phba->sli.mbox_active)) {
7659 spin_unlock_irqrestore(&phba->hbalock, iflags);
7660 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7661 "0384 There is pending active mailbox cmd\n");
7662 return MBX_NOT_FINISHED;
7663 }
7664 /* Take the mailbox command service token */
7665 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
7666
7667 /* Get the next mailbox command from head of queue */
7668 mboxq = lpfc_mbox_get(phba);
7669
7670 /* If no more mailbox command waiting for post, we're done */
7671 if (!mboxq) {
7672 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7673 spin_unlock_irqrestore(&phba->hbalock, iflags);
7674 return MBX_SUCCESS;
7675 }
7676 phba->sli.mbox_active = mboxq;
7677 spin_unlock_irqrestore(&phba->hbalock, iflags);
7678
7679 /* Check device readiness for posting mailbox command */
7680 rc = lpfc_mbox_dev_check(phba);
7681 if (unlikely(rc))
7682 /* Driver clean routine will clean up pending mailbox */
7683 goto out_not_finished;
7684
7685 /* Prepare the mbox command to be posted */
7686 mqe = &mboxq->u.mqe;
7687 mbx_cmnd = bf_get(lpfc_mqe_command, mqe);
7688
7689 /* Start timer for the mbox_tmo and log some mailbox post messages */
7690 mod_timer(&psli->mbox_tmo, (jiffies +
James Smart256ec0d2013-04-17 20:14:58 -04007691 msecs_to_jiffies(1000 * lpfc_mbox_tmo_val(phba, mboxq))));
James Smartda0436e2009-05-22 14:51:39 -04007692
7693 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007694 "(%d):0355 Mailbox cmd x%x (x%x/x%x) issue Data: "
James Smartda0436e2009-05-22 14:51:39 -04007695 "x%x x%x\n",
7696 mboxq->vport ? mboxq->vport->vpi : 0, mbx_cmnd,
James Smarta183a152011-10-10 21:32:43 -04007697 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7698 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007699 phba->pport->port_state, psli->sli_flag);
7700
7701 if (mbx_cmnd != MBX_HEARTBEAT) {
7702 if (mboxq->vport) {
7703 lpfc_debugfs_disc_trc(mboxq->vport,
7704 LPFC_DISC_TRC_MBOX_VPORT,
7705 "MBOX Send vport: cmd:x%x mb:x%x x%x",
7706 mbx_cmnd, mqe->un.mb_words[0],
7707 mqe->un.mb_words[1]);
7708 } else {
7709 lpfc_debugfs_disc_trc(phba->pport,
7710 LPFC_DISC_TRC_MBOX,
7711 "MBOX Send: cmd:x%x mb:x%x x%x",
7712 mbx_cmnd, mqe->un.mb_words[0],
7713 mqe->un.mb_words[1]);
7714 }
7715 }
7716 psli->slistat.mbox_cmd++;
7717
7718 /* Post the mailbox command to the port */
7719 rc = lpfc_sli4_mq_put(phba->sli4_hba.mbx_wq, mqe);
7720 if (rc != MBX_SUCCESS) {
7721 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007722 "(%d):2533 Mailbox command x%x (x%x/x%x) "
James Smartda0436e2009-05-22 14:51:39 -04007723 "cannot issue Data: x%x x%x\n",
7724 mboxq->vport ? mboxq->vport->vpi : 0,
7725 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007726 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7727 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007728 psli->sli_flag, MBX_NOWAIT);
7729 goto out_not_finished;
7730 }
7731
7732 return rc;
7733
7734out_not_finished:
7735 spin_lock_irqsave(&phba->hbalock, iflags);
James Smartd7069f02012-03-01 22:36:29 -05007736 if (phba->sli.mbox_active) {
7737 mboxq->u.mb.mbxStatus = MBX_NOT_FINISHED;
7738 __lpfc_mbox_cmpl_put(phba, mboxq);
7739 /* Release the token */
7740 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7741 phba->sli.mbox_active = NULL;
7742 }
James Smartda0436e2009-05-22 14:51:39 -04007743 spin_unlock_irqrestore(&phba->hbalock, iflags);
7744
7745 return MBX_NOT_FINISHED;
7746}
7747
7748/**
7749 * lpfc_sli_issue_mbox - Wrapper func for issuing mailbox command
7750 * @phba: Pointer to HBA context object.
7751 * @pmbox: Pointer to mailbox object.
7752 * @flag: Flag indicating how the mailbox need to be processed.
7753 *
7754 * This routine wraps the actual SLI3 or SLI4 mailbox issuing routine from
7755 * the API jump table function pointer from the lpfc_hba struct.
7756 *
7757 * Return codes the caller owns the mailbox command after the return of the
7758 * function.
7759 **/
7760int
7761lpfc_sli_issue_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox, uint32_t flag)
7762{
7763 return phba->lpfc_sli_issue_mbox(phba, pmbox, flag);
7764}
7765
7766/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03007767 * lpfc_mbox_api_table_setup - Set up mbox api function jump table
James Smartda0436e2009-05-22 14:51:39 -04007768 * @phba: The hba struct for which this call is being executed.
7769 * @dev_grp: The HBA PCI-Device group number.
7770 *
7771 * This routine sets up the mbox interface API function jump table in @phba
7772 * struct.
7773 * Returns: 0 - success, -ENODEV - failure.
7774 **/
7775int
7776lpfc_mbox_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
7777{
7778
7779 switch (dev_grp) {
7780 case LPFC_PCI_DEV_LP:
7781 phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s3;
7782 phba->lpfc_sli_handle_slow_ring_event =
7783 lpfc_sli_handle_slow_ring_event_s3;
7784 phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s3;
7785 phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s3;
7786 phba->lpfc_sli_brdready = lpfc_sli_brdready_s3;
7787 break;
7788 case LPFC_PCI_DEV_OC:
7789 phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s4;
7790 phba->lpfc_sli_handle_slow_ring_event =
7791 lpfc_sli_handle_slow_ring_event_s4;
7792 phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s4;
7793 phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s4;
7794 phba->lpfc_sli_brdready = lpfc_sli_brdready_s4;
7795 break;
7796 default:
7797 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7798 "1420 Invalid HBA PCI-device group: 0x%x\n",
7799 dev_grp);
7800 return -ENODEV;
7801 break;
7802 }
7803 return 0;
7804}
7805
7806/**
James Smart3621a712009-04-06 18:47:14 -04007807 * __lpfc_sli_ringtx_put - Add an iocb to the txq
James Smarte59058c2008-08-24 21:49:00 -04007808 * @phba: Pointer to HBA context object.
7809 * @pring: Pointer to driver SLI ring object.
7810 * @piocb: Pointer to address of newly added command iocb.
7811 *
7812 * This function is called with hbalock held to add a command
7813 * iocb to the txq when SLI layer cannot submit the command iocb
7814 * to the ring.
7815 **/
James Smart2a9bf3d2010-06-07 15:24:45 -04007816void
James Smart92d7f7b2007-06-17 19:56:38 -05007817__lpfc_sli_ringtx_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart2e0fef82007-06-17 19:56:36 -05007818 struct lpfc_iocbq *piocb)
dea31012005-04-17 16:05:31 -05007819{
7820 /* Insert the caller's iocb in the txq tail for later processing. */
7821 list_add_tail(&piocb->list, &pring->txq);
dea31012005-04-17 16:05:31 -05007822}
7823
James Smarte59058c2008-08-24 21:49:00 -04007824/**
James Smart3621a712009-04-06 18:47:14 -04007825 * lpfc_sli_next_iocb - Get the next iocb in the txq
James Smarte59058c2008-08-24 21:49:00 -04007826 * @phba: Pointer to HBA context object.
7827 * @pring: Pointer to driver SLI ring object.
7828 * @piocb: Pointer to address of newly added command iocb.
7829 *
7830 * This function is called with hbalock held before a new
7831 * iocb is submitted to the firmware. This function checks
7832 * txq to flush the iocbs in txq to Firmware before
7833 * submitting new iocbs to the Firmware.
7834 * If there are iocbs in the txq which need to be submitted
7835 * to firmware, lpfc_sli_next_iocb returns the first element
7836 * of the txq after dequeuing it from txq.
7837 * If there is no iocb in the txq then the function will return
7838 * *piocb and *piocb is set to NULL. Caller needs to check
7839 * *piocb to find if there are more commands in the txq.
7840 **/
dea31012005-04-17 16:05:31 -05007841static struct lpfc_iocbq *
7842lpfc_sli_next_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart2e0fef82007-06-17 19:56:36 -05007843 struct lpfc_iocbq **piocb)
dea31012005-04-17 16:05:31 -05007844{
7845 struct lpfc_iocbq * nextiocb;
7846
7847 nextiocb = lpfc_sli_ringtx_get(phba, pring);
7848 if (!nextiocb) {
7849 nextiocb = *piocb;
7850 *piocb = NULL;
7851 }
7852
7853 return nextiocb;
7854}
7855
James Smarte59058c2008-08-24 21:49:00 -04007856/**
James Smart3772a992009-05-22 14:50:54 -04007857 * __lpfc_sli_issue_iocb_s3 - SLI3 device lockless ver of lpfc_sli_issue_iocb
James Smarte59058c2008-08-24 21:49:00 -04007858 * @phba: Pointer to HBA context object.
James Smart3772a992009-05-22 14:50:54 -04007859 * @ring_number: SLI ring number to issue iocb on.
James Smarte59058c2008-08-24 21:49:00 -04007860 * @piocb: Pointer to command iocb.
7861 * @flag: Flag indicating if this command can be put into txq.
7862 *
James Smart3772a992009-05-22 14:50:54 -04007863 * __lpfc_sli_issue_iocb_s3 is used by other functions in the driver to issue
7864 * an iocb command to an HBA with SLI-3 interface spec. If the PCI slot is
7865 * recovering from error state, if HBA is resetting or if LPFC_STOP_IOCB_EVENT
7866 * flag is turned on, the function returns IOCB_ERROR. When the link is down,
7867 * this function allows only iocbs for posting buffers. This function finds
7868 * next available slot in the command ring and posts the command to the
7869 * available slot and writes the port attention register to request HBA start
7870 * processing new iocb. If there is no slot available in the ring and
7871 * flag & SLI_IOCB_RET_IOCB is set, the new iocb is added to the txq, otherwise
7872 * the function returns IOCB_BUSY.
James Smarte59058c2008-08-24 21:49:00 -04007873 *
James Smart3772a992009-05-22 14:50:54 -04007874 * This function is called with hbalock held. The function will return success
7875 * after it successfully submit the iocb to firmware or after adding to the
7876 * txq.
James Smarte59058c2008-08-24 21:49:00 -04007877 **/
James Smart98c9ea52007-10-27 13:37:33 -04007878static int
James Smart3772a992009-05-22 14:50:54 -04007879__lpfc_sli_issue_iocb_s3(struct lpfc_hba *phba, uint32_t ring_number,
dea31012005-04-17 16:05:31 -05007880 struct lpfc_iocbq *piocb, uint32_t flag)
7881{
7882 struct lpfc_iocbq *nextiocb;
7883 IOCB_t *iocb;
James Smart3772a992009-05-22 14:50:54 -04007884 struct lpfc_sli_ring *pring = &phba->sli.ring[ring_number];
dea31012005-04-17 16:05:31 -05007885
James Smart92d7f7b2007-06-17 19:56:38 -05007886 if (piocb->iocb_cmpl && (!piocb->vport) &&
7887 (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
7888 (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) {
7889 lpfc_printf_log(phba, KERN_ERR,
7890 LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04007891 "1807 IOCB x%x failed. No vport\n",
James Smart92d7f7b2007-06-17 19:56:38 -05007892 piocb->iocb.ulpCommand);
7893 dump_stack();
7894 return IOCB_ERROR;
7895 }
7896
7897
Linas Vepstas8d63f372007-02-14 14:28:36 -06007898 /* If the PCI channel is in offline state, do not post iocbs. */
7899 if (unlikely(pci_channel_offline(phba->pcidev)))
7900 return IOCB_ERROR;
7901
James Smarta257bf92009-04-06 18:48:10 -04007902 /* If HBA has a deferred error attention, fail the iocb. */
7903 if (unlikely(phba->hba_flag & DEFER_ERATT))
7904 return IOCB_ERROR;
7905
dea31012005-04-17 16:05:31 -05007906 /*
7907 * We should never get an IOCB if we are in a < LINK_DOWN state
7908 */
James Smart2e0fef82007-06-17 19:56:36 -05007909 if (unlikely(phba->link_state < LPFC_LINK_DOWN))
dea31012005-04-17 16:05:31 -05007910 return IOCB_ERROR;
7911
7912 /*
7913 * Check to see if we are blocking IOCB processing because of a
James Smart0b727fe2007-10-27 13:37:25 -04007914 * outstanding event.
dea31012005-04-17 16:05:31 -05007915 */
James Smart0b727fe2007-10-27 13:37:25 -04007916 if (unlikely(pring->flag & LPFC_STOP_IOCB_EVENT))
dea31012005-04-17 16:05:31 -05007917 goto iocb_busy;
7918
James Smart2e0fef82007-06-17 19:56:36 -05007919 if (unlikely(phba->link_state == LPFC_LINK_DOWN)) {
dea31012005-04-17 16:05:31 -05007920 /*
James Smart2680eea2007-04-25 09:52:55 -04007921 * Only CREATE_XRI, CLOSE_XRI, and QUE_RING_BUF
dea31012005-04-17 16:05:31 -05007922 * can be issued if the link is not up.
7923 */
7924 switch (piocb->iocb.ulpCommand) {
James Smart84774a42008-08-24 21:50:06 -04007925 case CMD_GEN_REQUEST64_CR:
7926 case CMD_GEN_REQUEST64_CX:
7927 if (!(phba->sli.sli_flag & LPFC_MENLO_MAINT) ||
7928 (piocb->iocb.un.genreq64.w5.hcsw.Rctl !=
James Smart6a9c52c2009-10-02 15:16:51 -04007929 FC_RCTL_DD_UNSOL_CMD) ||
James Smart84774a42008-08-24 21:50:06 -04007930 (piocb->iocb.un.genreq64.w5.hcsw.Type !=
7931 MENLO_TRANSPORT_TYPE))
7932
7933 goto iocb_busy;
7934 break;
dea31012005-04-17 16:05:31 -05007935 case CMD_QUE_RING_BUF_CN:
7936 case CMD_QUE_RING_BUF64_CN:
dea31012005-04-17 16:05:31 -05007937 /*
7938 * For IOCBs, like QUE_RING_BUF, that have no rsp ring
7939 * completion, iocb_cmpl MUST be 0.
7940 */
7941 if (piocb->iocb_cmpl)
7942 piocb->iocb_cmpl = NULL;
7943 /*FALLTHROUGH*/
7944 case CMD_CREATE_XRI_CR:
James Smart2680eea2007-04-25 09:52:55 -04007945 case CMD_CLOSE_XRI_CN:
7946 case CMD_CLOSE_XRI_CX:
dea31012005-04-17 16:05:31 -05007947 break;
7948 default:
7949 goto iocb_busy;
7950 }
7951
7952 /*
7953 * For FCP commands, we must be in a state where we can process link
7954 * attention events.
7955 */
7956 } else if (unlikely(pring->ringno == phba->sli.fcp_ring &&
James Smart92d7f7b2007-06-17 19:56:38 -05007957 !(phba->sli.sli_flag & LPFC_PROCESS_LA))) {
dea31012005-04-17 16:05:31 -05007958 goto iocb_busy;
James Smart92d7f7b2007-06-17 19:56:38 -05007959 }
dea31012005-04-17 16:05:31 -05007960
dea31012005-04-17 16:05:31 -05007961 while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
7962 (nextiocb = lpfc_sli_next_iocb(phba, pring, &piocb)))
7963 lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
7964
7965 if (iocb)
7966 lpfc_sli_update_ring(phba, pring);
7967 else
7968 lpfc_sli_update_full_ring(phba, pring);
7969
7970 if (!piocb)
7971 return IOCB_SUCCESS;
7972
7973 goto out_busy;
7974
7975 iocb_busy:
7976 pring->stats.iocb_cmd_delay++;
7977
7978 out_busy:
7979
7980 if (!(flag & SLI_IOCB_RET_IOCB)) {
James Smart92d7f7b2007-06-17 19:56:38 -05007981 __lpfc_sli_ringtx_put(phba, pring, piocb);
dea31012005-04-17 16:05:31 -05007982 return IOCB_SUCCESS;
7983 }
7984
7985 return IOCB_BUSY;
7986}
7987
James Smart3772a992009-05-22 14:50:54 -04007988/**
James Smart4f774512009-05-22 14:52:35 -04007989 * lpfc_sli4_bpl2sgl - Convert the bpl/bde to a sgl.
7990 * @phba: Pointer to HBA context object.
7991 * @piocb: Pointer to command iocb.
7992 * @sglq: Pointer to the scatter gather queue object.
7993 *
7994 * This routine converts the bpl or bde that is in the IOCB
7995 * to a sgl list for the sli4 hardware. The physical address
7996 * of the bpl/bde is converted back to a virtual address.
7997 * If the IOCB contains a BPL then the list of BDE's is
7998 * converted to sli4_sge's. If the IOCB contains a single
7999 * BDE then it is converted to a single sli_sge.
8000 * The IOCB is still in cpu endianess so the contents of
8001 * the bpl can be used without byte swapping.
8002 *
8003 * Returns valid XRI = Success, NO_XRI = Failure.
8004**/
8005static uint16_t
8006lpfc_sli4_bpl2sgl(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq,
8007 struct lpfc_sglq *sglq)
8008{
8009 uint16_t xritag = NO_XRI;
8010 struct ulp_bde64 *bpl = NULL;
8011 struct ulp_bde64 bde;
8012 struct sli4_sge *sgl = NULL;
James Smart1b511972011-12-13 13:23:09 -05008013 struct lpfc_dmabuf *dmabuf;
James Smart4f774512009-05-22 14:52:35 -04008014 IOCB_t *icmd;
8015 int numBdes = 0;
8016 int i = 0;
James Smart63e801c2010-11-20 23:14:19 -05008017 uint32_t offset = 0; /* accumulated offset in the sg request list */
8018 int inbound = 0; /* number of sg reply entries inbound from firmware */
James Smart4f774512009-05-22 14:52:35 -04008019
8020 if (!piocbq || !sglq)
8021 return xritag;
8022
8023 sgl = (struct sli4_sge *)sglq->sgl;
8024 icmd = &piocbq->iocb;
James Smart6b5151f2012-01-18 16:24:06 -05008025 if (icmd->ulpCommand == CMD_XMIT_BLS_RSP64_CX)
8026 return sglq->sli4_xritag;
James Smart4f774512009-05-22 14:52:35 -04008027 if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
8028 numBdes = icmd->un.genreq64.bdl.bdeSize /
8029 sizeof(struct ulp_bde64);
8030 /* The addrHigh and addrLow fields within the IOCB
8031 * have not been byteswapped yet so there is no
8032 * need to swap them back.
8033 */
James Smart1b511972011-12-13 13:23:09 -05008034 if (piocbq->context3)
8035 dmabuf = (struct lpfc_dmabuf *)piocbq->context3;
8036 else
8037 return xritag;
James Smart4f774512009-05-22 14:52:35 -04008038
James Smart1b511972011-12-13 13:23:09 -05008039 bpl = (struct ulp_bde64 *)dmabuf->virt;
James Smart4f774512009-05-22 14:52:35 -04008040 if (!bpl)
8041 return xritag;
8042
8043 for (i = 0; i < numBdes; i++) {
8044 /* Should already be byte swapped. */
James Smart28baac72010-02-12 14:42:03 -05008045 sgl->addr_hi = bpl->addrHigh;
8046 sgl->addr_lo = bpl->addrLow;
8047
James Smart05580562011-05-24 11:40:48 -04008048 sgl->word2 = le32_to_cpu(sgl->word2);
James Smart4f774512009-05-22 14:52:35 -04008049 if ((i+1) == numBdes)
8050 bf_set(lpfc_sli4_sge_last, sgl, 1);
8051 else
8052 bf_set(lpfc_sli4_sge_last, sgl, 0);
James Smart28baac72010-02-12 14:42:03 -05008053 /* swap the size field back to the cpu so we
8054 * can assign it to the sgl.
8055 */
8056 bde.tus.w = le32_to_cpu(bpl->tus.w);
8057 sgl->sge_len = cpu_to_le32(bde.tus.f.bdeSize);
James Smart63e801c2010-11-20 23:14:19 -05008058 /* The offsets in the sgl need to be accumulated
8059 * separately for the request and reply lists.
8060 * The request is always first, the reply follows.
8061 */
8062 if (piocbq->iocb.ulpCommand == CMD_GEN_REQUEST64_CR) {
8063 /* add up the reply sg entries */
8064 if (bpl->tus.f.bdeFlags == BUFF_TYPE_BDE_64I)
8065 inbound++;
8066 /* first inbound? reset the offset */
8067 if (inbound == 1)
8068 offset = 0;
8069 bf_set(lpfc_sli4_sge_offset, sgl, offset);
James Smartf9bb2da2011-10-10 21:34:11 -04008070 bf_set(lpfc_sli4_sge_type, sgl,
8071 LPFC_SGE_TYPE_DATA);
James Smart63e801c2010-11-20 23:14:19 -05008072 offset += bde.tus.f.bdeSize;
8073 }
James Smart546fc852011-03-11 16:06:29 -05008074 sgl->word2 = cpu_to_le32(sgl->word2);
James Smart4f774512009-05-22 14:52:35 -04008075 bpl++;
8076 sgl++;
8077 }
8078 } else if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BDE_64) {
8079 /* The addrHigh and addrLow fields of the BDE have not
8080 * been byteswapped yet so they need to be swapped
8081 * before putting them in the sgl.
8082 */
8083 sgl->addr_hi =
8084 cpu_to_le32(icmd->un.genreq64.bdl.addrHigh);
8085 sgl->addr_lo =
8086 cpu_to_le32(icmd->un.genreq64.bdl.addrLow);
James Smart05580562011-05-24 11:40:48 -04008087 sgl->word2 = le32_to_cpu(sgl->word2);
James Smart4f774512009-05-22 14:52:35 -04008088 bf_set(lpfc_sli4_sge_last, sgl, 1);
8089 sgl->word2 = cpu_to_le32(sgl->word2);
James Smart28baac72010-02-12 14:42:03 -05008090 sgl->sge_len =
8091 cpu_to_le32(icmd->un.genreq64.bdl.bdeSize);
James Smart4f774512009-05-22 14:52:35 -04008092 }
8093 return sglq->sli4_xritag;
8094}
8095
8096/**
8097 * lpfc_sli4_scmd_to_wqidx_distr - scsi command to SLI4 WQ index distribution
8098 * @phba: Pointer to HBA context object.
James Smart4f774512009-05-22 14:52:35 -04008099 *
James Smarta93ff372010-10-22 11:06:08 -04008100 * This routine performs a roundrobin SCSI command to SLI4 FCP WQ index
James Smart8fa38512009-07-19 10:01:03 -04008101 * distribution. This is called by __lpfc_sli_issue_iocb_s4() with the hbalock
8102 * held.
James Smart4f774512009-05-22 14:52:35 -04008103 *
8104 * Return: index into SLI4 fast-path FCP queue index.
8105 **/
James Smarta2fc4aef2014-09-03 12:57:55 -04008106static inline int
James Smart8fa38512009-07-19 10:01:03 -04008107lpfc_sli4_scmd_to_wqidx_distr(struct lpfc_hba *phba)
James Smart4f774512009-05-22 14:52:35 -04008108{
James Smart7bb03bb2013-04-17 20:19:16 -04008109 struct lpfc_vector_map_info *cpup;
8110 int chann, cpu;
James Smart4f774512009-05-22 14:52:35 -04008111
James Smart76f96b62013-12-17 20:29:01 -05008112 if (phba->cfg_fcp_io_sched == LPFC_FCP_SCHED_BY_CPU
8113 && phba->cfg_fcp_io_channel > 1) {
James Smart7bb03bb2013-04-17 20:19:16 -04008114 cpu = smp_processor_id();
8115 if (cpu < phba->sli4_hba.num_present_cpu) {
8116 cpup = phba->sli4_hba.cpu_map;
8117 cpup += cpu;
8118 return cpup->channel_id;
8119 }
James Smart7bb03bb2013-04-17 20:19:16 -04008120 }
8121 chann = atomic_add_return(1, &phba->fcp_qidx);
8122 chann = (chann % phba->cfg_fcp_io_channel);
8123 return chann;
James Smart4f774512009-05-22 14:52:35 -04008124}
8125
8126/**
8127 * lpfc_sli_iocb2wqe - Convert the IOCB to a work queue entry.
8128 * @phba: Pointer to HBA context object.
8129 * @piocb: Pointer to command iocb.
8130 * @wqe: Pointer to the work queue entry.
8131 *
8132 * This routine converts the iocb command to its Work Queue Entry
8133 * equivalent. The wqe pointer should not have any fields set when
8134 * this routine is called because it will memcpy over them.
8135 * This routine does not set the CQ_ID or the WQEC bits in the
8136 * wqe.
8137 *
8138 * Returns: 0 = Success, IOCB_ERROR = Failure.
8139 **/
8140static int
8141lpfc_sli4_iocb2wqe(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq,
8142 union lpfc_wqe *wqe)
8143{
James Smart5ffc2662009-11-18 15:39:44 -05008144 uint32_t xmit_len = 0, total_len = 0;
James Smart4f774512009-05-22 14:52:35 -04008145 uint8_t ct = 0;
8146 uint32_t fip;
8147 uint32_t abort_tag;
8148 uint8_t command_type = ELS_COMMAND_NON_FIP;
8149 uint8_t cmnd;
8150 uint16_t xritag;
James Smartdcf2a4e2010-09-29 11:18:53 -04008151 uint16_t abrt_iotag;
8152 struct lpfc_iocbq *abrtiocbq;
James Smart4f774512009-05-22 14:52:35 -04008153 struct ulp_bde64 *bpl = NULL;
James Smartf0d9bcc2010-10-22 11:07:09 -04008154 uint32_t els_id = LPFC_ELS_ID_DEFAULT;
James Smart5ffc2662009-11-18 15:39:44 -05008155 int numBdes, i;
8156 struct ulp_bde64 bde;
James Smartc31098c2011-04-16 11:03:33 -04008157 struct lpfc_nodelist *ndlp;
James Smartff78d8f2011-12-13 13:21:35 -05008158 uint32_t *pcmd;
James Smart1b511972011-12-13 13:23:09 -05008159 uint32_t if_type;
James Smart4f774512009-05-22 14:52:35 -04008160
James Smart45ed1192009-10-02 15:17:02 -04008161 fip = phba->hba_flag & HBA_FIP_SUPPORT;
James Smart4f774512009-05-22 14:52:35 -04008162 /* The fcp commands will set command type */
James Smart0c287582009-06-10 17:22:56 -04008163 if (iocbq->iocb_flag & LPFC_IO_FCP)
James Smart4f774512009-05-22 14:52:35 -04008164 command_type = FCP_COMMAND;
James Smartc8685952009-11-18 15:39:16 -05008165 else if (fip && (iocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK))
James Smart0c287582009-06-10 17:22:56 -04008166 command_type = ELS_COMMAND_FIP;
8167 else
8168 command_type = ELS_COMMAND_NON_FIP;
8169
James Smart4f774512009-05-22 14:52:35 -04008170 /* Some of the fields are in the right position already */
8171 memcpy(wqe, &iocbq->iocb, sizeof(union lpfc_wqe));
8172 abort_tag = (uint32_t) iocbq->iotag;
8173 xritag = iocbq->sli4_xritag;
James Smartf0d9bcc2010-10-22 11:07:09 -04008174 wqe->generic.wqe_com.word7 = 0; /* The ct field has moved so reset */
James Smart28d7f3d2014-05-21 08:05:28 -04008175 wqe->generic.wqe_com.word10 = 0;
James Smart4f774512009-05-22 14:52:35 -04008176 /* words0-2 bpl convert bde */
8177 if (iocbq->iocb.un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
James Smart5ffc2662009-11-18 15:39:44 -05008178 numBdes = iocbq->iocb.un.genreq64.bdl.bdeSize /
8179 sizeof(struct ulp_bde64);
James Smart4f774512009-05-22 14:52:35 -04008180 bpl = (struct ulp_bde64 *)
8181 ((struct lpfc_dmabuf *)iocbq->context3)->virt;
8182 if (!bpl)
8183 return IOCB_ERROR;
8184
8185 /* Should already be byte swapped. */
8186 wqe->generic.bde.addrHigh = le32_to_cpu(bpl->addrHigh);
8187 wqe->generic.bde.addrLow = le32_to_cpu(bpl->addrLow);
8188 /* swap the size field back to the cpu so we
8189 * can assign it to the sgl.
8190 */
8191 wqe->generic.bde.tus.w = le32_to_cpu(bpl->tus.w);
James Smart5ffc2662009-11-18 15:39:44 -05008192 xmit_len = wqe->generic.bde.tus.f.bdeSize;
8193 total_len = 0;
8194 for (i = 0; i < numBdes; i++) {
8195 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
8196 total_len += bde.tus.f.bdeSize;
8197 }
James Smart4f774512009-05-22 14:52:35 -04008198 } else
James Smart5ffc2662009-11-18 15:39:44 -05008199 xmit_len = iocbq->iocb.un.fcpi64.bdl.bdeSize;
James Smart4f774512009-05-22 14:52:35 -04008200
8201 iocbq->iocb.ulpIoTag = iocbq->iotag;
8202 cmnd = iocbq->iocb.ulpCommand;
8203
8204 switch (iocbq->iocb.ulpCommand) {
8205 case CMD_ELS_REQUEST64_CR:
James Smart93d1379e2012-05-09 21:19:34 -04008206 if (iocbq->iocb_flag & LPFC_IO_LIBDFC)
8207 ndlp = iocbq->context_un.ndlp;
8208 else
8209 ndlp = (struct lpfc_nodelist *)iocbq->context1;
James Smart4f774512009-05-22 14:52:35 -04008210 if (!iocbq->iocb.ulpLe) {
8211 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8212 "2007 Only Limited Edition cmd Format"
8213 " supported 0x%x\n",
8214 iocbq->iocb.ulpCommand);
8215 return IOCB_ERROR;
8216 }
James Smartff78d8f2011-12-13 13:21:35 -05008217
James Smart5ffc2662009-11-18 15:39:44 -05008218 wqe->els_req.payload_len = xmit_len;
James Smart4f774512009-05-22 14:52:35 -04008219 /* Els_reguest64 has a TMO */
8220 bf_set(wqe_tmo, &wqe->els_req.wqe_com,
8221 iocbq->iocb.ulpTimeout);
8222 /* Need a VF for word 4 set the vf bit*/
8223 bf_set(els_req64_vf, &wqe->els_req, 0);
8224 /* And a VFID for word 12 */
8225 bf_set(els_req64_vfid, &wqe->els_req, 0);
James Smart4f774512009-05-22 14:52:35 -04008226 ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
James Smartf0d9bcc2010-10-22 11:07:09 -04008227 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
8228 iocbq->iocb.ulpContext);
8229 bf_set(wqe_ct, &wqe->els_req.wqe_com, ct);
8230 bf_set(wqe_pu, &wqe->els_req.wqe_com, 0);
James Smart4f774512009-05-22 14:52:35 -04008231 /* CCP CCPE PV PRI in word10 were set in the memcpy */
James Smartff78d8f2011-12-13 13:21:35 -05008232 if (command_type == ELS_COMMAND_FIP)
James Smartc8685952009-11-18 15:39:16 -05008233 els_id = ((iocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK)
8234 >> LPFC_FIP_ELS_ID_SHIFT);
James Smartff78d8f2011-12-13 13:21:35 -05008235 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
8236 iocbq->context2)->virt);
James Smart1b511972011-12-13 13:23:09 -05008237 if_type = bf_get(lpfc_sli_intf_if_type,
8238 &phba->sli4_hba.sli_intf);
8239 if (if_type == LPFC_SLI_INTF_IF_TYPE_2) {
James Smartff78d8f2011-12-13 13:21:35 -05008240 if (pcmd && (*pcmd == ELS_CMD_FLOGI ||
James Smartcb69f7d2011-12-13 13:21:57 -05008241 *pcmd == ELS_CMD_SCR ||
James Smart6b5151f2012-01-18 16:24:06 -05008242 *pcmd == ELS_CMD_FDISC ||
James Smartbdcd2b92012-03-01 22:33:52 -05008243 *pcmd == ELS_CMD_LOGO ||
James Smartff78d8f2011-12-13 13:21:35 -05008244 *pcmd == ELS_CMD_PLOGI)) {
8245 bf_set(els_req64_sp, &wqe->els_req, 1);
8246 bf_set(els_req64_sid, &wqe->els_req,
8247 iocbq->vport->fc_myDID);
James Smart939723a2012-05-09 21:19:03 -04008248 if ((*pcmd == ELS_CMD_FLOGI) &&
8249 !(phba->fc_topology ==
8250 LPFC_TOPOLOGY_LOOP))
8251 bf_set(els_req64_sid, &wqe->els_req, 0);
James Smartff78d8f2011-12-13 13:21:35 -05008252 bf_set(wqe_ct, &wqe->els_req.wqe_com, 1);
8253 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
James Smarta7dd9c02012-05-09 21:16:50 -04008254 phba->vpi_ids[iocbq->vport->vpi]);
James Smart3ef6d242012-01-18 16:23:48 -05008255 } else if (pcmd && iocbq->context1) {
James Smartff78d8f2011-12-13 13:21:35 -05008256 bf_set(wqe_ct, &wqe->els_req.wqe_com, 0);
8257 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
8258 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
8259 }
James Smartc8685952009-11-18 15:39:16 -05008260 }
James Smart6d368e52011-05-24 11:44:12 -04008261 bf_set(wqe_temp_rpi, &wqe->els_req.wqe_com,
8262 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
James Smartf0d9bcc2010-10-22 11:07:09 -04008263 bf_set(wqe_els_id, &wqe->els_req.wqe_com, els_id);
8264 bf_set(wqe_dbde, &wqe->els_req.wqe_com, 1);
8265 bf_set(wqe_iod, &wqe->els_req.wqe_com, LPFC_WQE_IOD_READ);
8266 bf_set(wqe_qosd, &wqe->els_req.wqe_com, 1);
8267 bf_set(wqe_lenloc, &wqe->els_req.wqe_com, LPFC_WQE_LENLOC_NONE);
8268 bf_set(wqe_ebde_cnt, &wqe->els_req.wqe_com, 0);
James Smartaf227412013-10-10 12:23:10 -04008269 wqe->els_req.max_response_payload_len = total_len - xmit_len;
James Smart7851fe22011-07-22 18:36:52 -04008270 break;
James Smart5ffc2662009-11-18 15:39:44 -05008271 case CMD_XMIT_SEQUENCE64_CX:
James Smartf0d9bcc2010-10-22 11:07:09 -04008272 bf_set(wqe_ctxt_tag, &wqe->xmit_sequence.wqe_com,
8273 iocbq->iocb.un.ulpWord[3]);
8274 bf_set(wqe_rcvoxid, &wqe->xmit_sequence.wqe_com,
James Smart7851fe22011-07-22 18:36:52 -04008275 iocbq->iocb.unsli3.rcvsli3.ox_id);
James Smart5ffc2662009-11-18 15:39:44 -05008276 /* The entire sequence is transmitted for this IOCB */
8277 xmit_len = total_len;
8278 cmnd = CMD_XMIT_SEQUENCE64_CR;
James Smart1b511972011-12-13 13:23:09 -05008279 if (phba->link_flag & LS_LOOPBACK_MODE)
8280 bf_set(wqe_xo, &wqe->xmit_sequence.wge_ctl, 1);
James Smart4f774512009-05-22 14:52:35 -04008281 case CMD_XMIT_SEQUENCE64_CR:
James Smartf0d9bcc2010-10-22 11:07:09 -04008282 /* word3 iocb=io_tag32 wqe=reserved */
8283 wqe->xmit_sequence.rsvd3 = 0;
James Smart4f774512009-05-22 14:52:35 -04008284 /* word4 relative_offset memcpy */
8285 /* word5 r_ctl/df_ctl memcpy */
James Smartf0d9bcc2010-10-22 11:07:09 -04008286 bf_set(wqe_pu, &wqe->xmit_sequence.wqe_com, 0);
8287 bf_set(wqe_dbde, &wqe->xmit_sequence.wqe_com, 1);
8288 bf_set(wqe_iod, &wqe->xmit_sequence.wqe_com,
8289 LPFC_WQE_IOD_WRITE);
8290 bf_set(wqe_lenloc, &wqe->xmit_sequence.wqe_com,
8291 LPFC_WQE_LENLOC_WORD12);
8292 bf_set(wqe_ebde_cnt, &wqe->xmit_sequence.wqe_com, 0);
James Smart5ffc2662009-11-18 15:39:44 -05008293 wqe->xmit_sequence.xmit_len = xmit_len;
8294 command_type = OTHER_COMMAND;
James Smart7851fe22011-07-22 18:36:52 -04008295 break;
James Smart4f774512009-05-22 14:52:35 -04008296 case CMD_XMIT_BCAST64_CN:
James Smartf0d9bcc2010-10-22 11:07:09 -04008297 /* word3 iocb=iotag32 wqe=seq_payload_len */
8298 wqe->xmit_bcast64.seq_payload_len = xmit_len;
James Smart4f774512009-05-22 14:52:35 -04008299 /* word4 iocb=rsvd wqe=rsvd */
8300 /* word5 iocb=rctl/type/df_ctl wqe=rctl/type/df_ctl memcpy */
8301 /* word6 iocb=ctxt_tag/io_tag wqe=ctxt_tag/xri */
James Smartf0d9bcc2010-10-22 11:07:09 -04008302 bf_set(wqe_ct, &wqe->xmit_bcast64.wqe_com,
James Smart4f774512009-05-22 14:52:35 -04008303 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
James Smartf0d9bcc2010-10-22 11:07:09 -04008304 bf_set(wqe_dbde, &wqe->xmit_bcast64.wqe_com, 1);
8305 bf_set(wqe_iod, &wqe->xmit_bcast64.wqe_com, LPFC_WQE_IOD_WRITE);
8306 bf_set(wqe_lenloc, &wqe->xmit_bcast64.wqe_com,
8307 LPFC_WQE_LENLOC_WORD3);
8308 bf_set(wqe_ebde_cnt, &wqe->xmit_bcast64.wqe_com, 0);
James Smart7851fe22011-07-22 18:36:52 -04008309 break;
James Smart4f774512009-05-22 14:52:35 -04008310 case CMD_FCP_IWRITE64_CR:
8311 command_type = FCP_COMMAND_DATA_OUT;
James Smartf0d9bcc2010-10-22 11:07:09 -04008312 /* word3 iocb=iotag wqe=payload_offset_len */
8313 /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
James Smart0ba4b212013-10-10 12:22:38 -04008314 bf_set(payload_offset_len, &wqe->fcp_iwrite,
8315 xmit_len + sizeof(struct fcp_rsp));
8316 bf_set(cmd_buff_len, &wqe->fcp_iwrite,
8317 0);
James Smartf0d9bcc2010-10-22 11:07:09 -04008318 /* word4 iocb=parameter wqe=total_xfer_length memcpy */
8319 /* word5 iocb=initial_xfer_len wqe=initial_xfer_len memcpy */
8320 bf_set(wqe_erp, &wqe->fcp_iwrite.wqe_com,
8321 iocbq->iocb.ulpFCP2Rcvy);
8322 bf_set(wqe_lnk, &wqe->fcp_iwrite.wqe_com, iocbq->iocb.ulpXS);
8323 /* Always open the exchange */
8324 bf_set(wqe_xc, &wqe->fcp_iwrite.wqe_com, 0);
James Smartf0d9bcc2010-10-22 11:07:09 -04008325 bf_set(wqe_iod, &wqe->fcp_iwrite.wqe_com, LPFC_WQE_IOD_WRITE);
8326 bf_set(wqe_lenloc, &wqe->fcp_iwrite.wqe_com,
8327 LPFC_WQE_LENLOC_WORD4);
8328 bf_set(wqe_ebde_cnt, &wqe->fcp_iwrite.wqe_com, 0);
8329 bf_set(wqe_pu, &wqe->fcp_iwrite.wqe_com, iocbq->iocb.ulpPU);
James Smartacd68592012-01-18 16:25:09 -05008330 bf_set(wqe_dbde, &wqe->fcp_iwrite.wqe_com, 1);
James Smart1ba981f2014-02-20 09:56:45 -05008331 if (iocbq->iocb_flag & LPFC_IO_OAS) {
8332 bf_set(wqe_oas, &wqe->fcp_iwrite.wqe_com, 1);
8333 if (phba->cfg_XLanePriority) {
8334 bf_set(wqe_ccpe, &wqe->fcp_iwrite.wqe_com, 1);
8335 bf_set(wqe_ccp, &wqe->fcp_iwrite.wqe_com,
8336 (phba->cfg_XLanePriority << 1));
8337 }
8338 }
James Smart7851fe22011-07-22 18:36:52 -04008339 break;
James Smartf0d9bcc2010-10-22 11:07:09 -04008340 case CMD_FCP_IREAD64_CR:
8341 /* word3 iocb=iotag wqe=payload_offset_len */
8342 /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
James Smart0ba4b212013-10-10 12:22:38 -04008343 bf_set(payload_offset_len, &wqe->fcp_iread,
8344 xmit_len + sizeof(struct fcp_rsp));
8345 bf_set(cmd_buff_len, &wqe->fcp_iread,
8346 0);
James Smartf0d9bcc2010-10-22 11:07:09 -04008347 /* word4 iocb=parameter wqe=total_xfer_length memcpy */
8348 /* word5 iocb=initial_xfer_len wqe=initial_xfer_len memcpy */
8349 bf_set(wqe_erp, &wqe->fcp_iread.wqe_com,
8350 iocbq->iocb.ulpFCP2Rcvy);
8351 bf_set(wqe_lnk, &wqe->fcp_iread.wqe_com, iocbq->iocb.ulpXS);
James Smart4f774512009-05-22 14:52:35 -04008352 /* Always open the exchange */
8353 bf_set(wqe_xc, &wqe->fcp_iread.wqe_com, 0);
James Smartf0d9bcc2010-10-22 11:07:09 -04008354 bf_set(wqe_iod, &wqe->fcp_iread.wqe_com, LPFC_WQE_IOD_READ);
8355 bf_set(wqe_lenloc, &wqe->fcp_iread.wqe_com,
8356 LPFC_WQE_LENLOC_WORD4);
8357 bf_set(wqe_ebde_cnt, &wqe->fcp_iread.wqe_com, 0);
8358 bf_set(wqe_pu, &wqe->fcp_iread.wqe_com, iocbq->iocb.ulpPU);
James Smartacd68592012-01-18 16:25:09 -05008359 bf_set(wqe_dbde, &wqe->fcp_iread.wqe_com, 1);
James Smart1ba981f2014-02-20 09:56:45 -05008360 if (iocbq->iocb_flag & LPFC_IO_OAS) {
8361 bf_set(wqe_oas, &wqe->fcp_iread.wqe_com, 1);
8362 if (phba->cfg_XLanePriority) {
8363 bf_set(wqe_ccpe, &wqe->fcp_iread.wqe_com, 1);
8364 bf_set(wqe_ccp, &wqe->fcp_iread.wqe_com,
8365 (phba->cfg_XLanePriority << 1));
8366 }
8367 }
James Smart7851fe22011-07-22 18:36:52 -04008368 break;
James Smartf1126682009-06-10 17:22:44 -04008369 case CMD_FCP_ICMND64_CR:
James Smart0ba4b212013-10-10 12:22:38 -04008370 /* word3 iocb=iotag wqe=payload_offset_len */
8371 /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
8372 bf_set(payload_offset_len, &wqe->fcp_icmd,
8373 xmit_len + sizeof(struct fcp_rsp));
8374 bf_set(cmd_buff_len, &wqe->fcp_icmd,
8375 0);
James Smartf0d9bcc2010-10-22 11:07:09 -04008376 /* word3 iocb=IO_TAG wqe=reserved */
James Smartf0d9bcc2010-10-22 11:07:09 -04008377 bf_set(wqe_pu, &wqe->fcp_icmd.wqe_com, 0);
James Smartf1126682009-06-10 17:22:44 -04008378 /* Always open the exchange */
James Smartf0d9bcc2010-10-22 11:07:09 -04008379 bf_set(wqe_xc, &wqe->fcp_icmd.wqe_com, 0);
8380 bf_set(wqe_dbde, &wqe->fcp_icmd.wqe_com, 1);
8381 bf_set(wqe_iod, &wqe->fcp_icmd.wqe_com, LPFC_WQE_IOD_WRITE);
8382 bf_set(wqe_qosd, &wqe->fcp_icmd.wqe_com, 1);
8383 bf_set(wqe_lenloc, &wqe->fcp_icmd.wqe_com,
8384 LPFC_WQE_LENLOC_NONE);
8385 bf_set(wqe_ebde_cnt, &wqe->fcp_icmd.wqe_com, 0);
James Smart2a94aea2012-09-29 11:30:31 -04008386 bf_set(wqe_erp, &wqe->fcp_icmd.wqe_com,
8387 iocbq->iocb.ulpFCP2Rcvy);
James Smart1ba981f2014-02-20 09:56:45 -05008388 if (iocbq->iocb_flag & LPFC_IO_OAS) {
8389 bf_set(wqe_oas, &wqe->fcp_icmd.wqe_com, 1);
8390 if (phba->cfg_XLanePriority) {
8391 bf_set(wqe_ccpe, &wqe->fcp_icmd.wqe_com, 1);
8392 bf_set(wqe_ccp, &wqe->fcp_icmd.wqe_com,
8393 (phba->cfg_XLanePriority << 1));
8394 }
8395 }
James Smart7851fe22011-07-22 18:36:52 -04008396 break;
James Smart4f774512009-05-22 14:52:35 -04008397 case CMD_GEN_REQUEST64_CR:
James Smart63e801c2010-11-20 23:14:19 -05008398 /* For this command calculate the xmit length of the
8399 * request bde.
8400 */
8401 xmit_len = 0;
8402 numBdes = iocbq->iocb.un.genreq64.bdl.bdeSize /
8403 sizeof(struct ulp_bde64);
8404 for (i = 0; i < numBdes; i++) {
James Smart63e801c2010-11-20 23:14:19 -05008405 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
James Smart546fc852011-03-11 16:06:29 -05008406 if (bde.tus.f.bdeFlags != BUFF_TYPE_BDE_64)
8407 break;
James Smart63e801c2010-11-20 23:14:19 -05008408 xmit_len += bde.tus.f.bdeSize;
8409 }
James Smartf0d9bcc2010-10-22 11:07:09 -04008410 /* word3 iocb=IO_TAG wqe=request_payload_len */
8411 wqe->gen_req.request_payload_len = xmit_len;
8412 /* word4 iocb=parameter wqe=relative_offset memcpy */
8413 /* word5 [rctl, type, df_ctl, la] copied in memcpy */
James Smart4f774512009-05-22 14:52:35 -04008414 /* word6 context tag copied in memcpy */
8415 if (iocbq->iocb.ulpCt_h || iocbq->iocb.ulpCt_l) {
8416 ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
8417 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8418 "2015 Invalid CT %x command 0x%x\n",
8419 ct, iocbq->iocb.ulpCommand);
8420 return IOCB_ERROR;
8421 }
James Smartf0d9bcc2010-10-22 11:07:09 -04008422 bf_set(wqe_ct, &wqe->gen_req.wqe_com, 0);
8423 bf_set(wqe_tmo, &wqe->gen_req.wqe_com, iocbq->iocb.ulpTimeout);
8424 bf_set(wqe_pu, &wqe->gen_req.wqe_com, iocbq->iocb.ulpPU);
8425 bf_set(wqe_dbde, &wqe->gen_req.wqe_com, 1);
8426 bf_set(wqe_iod, &wqe->gen_req.wqe_com, LPFC_WQE_IOD_READ);
8427 bf_set(wqe_qosd, &wqe->gen_req.wqe_com, 1);
8428 bf_set(wqe_lenloc, &wqe->gen_req.wqe_com, LPFC_WQE_LENLOC_NONE);
8429 bf_set(wqe_ebde_cnt, &wqe->gen_req.wqe_com, 0);
James Smartaf227412013-10-10 12:23:10 -04008430 wqe->gen_req.max_response_payload_len = total_len - xmit_len;
James Smart4f774512009-05-22 14:52:35 -04008431 command_type = OTHER_COMMAND;
James Smart7851fe22011-07-22 18:36:52 -04008432 break;
James Smart4f774512009-05-22 14:52:35 -04008433 case CMD_XMIT_ELS_RSP64_CX:
James Smartc31098c2011-04-16 11:03:33 -04008434 ndlp = (struct lpfc_nodelist *)iocbq->context1;
James Smart4f774512009-05-22 14:52:35 -04008435 /* words0-2 BDE memcpy */
James Smartf0d9bcc2010-10-22 11:07:09 -04008436 /* word3 iocb=iotag32 wqe=response_payload_len */
8437 wqe->xmit_els_rsp.response_payload_len = xmit_len;
James Smart939723a2012-05-09 21:19:03 -04008438 /* word4 */
8439 wqe->xmit_els_rsp.word4 = 0;
James Smart4f774512009-05-22 14:52:35 -04008440 /* word5 iocb=rsvd wge=did */
8441 bf_set(wqe_els_did, &wqe->xmit_els_rsp.wqe_dest,
James Smart939723a2012-05-09 21:19:03 -04008442 iocbq->iocb.un.xseq64.xmit_els_remoteID);
8443
8444 if_type = bf_get(lpfc_sli_intf_if_type,
8445 &phba->sli4_hba.sli_intf);
8446 if (if_type == LPFC_SLI_INTF_IF_TYPE_2) {
8447 if (iocbq->vport->fc_flag & FC_PT2PT) {
8448 bf_set(els_rsp64_sp, &wqe->xmit_els_rsp, 1);
8449 bf_set(els_rsp64_sid, &wqe->xmit_els_rsp,
8450 iocbq->vport->fc_myDID);
8451 if (iocbq->vport->fc_myDID == Fabric_DID) {
8452 bf_set(wqe_els_did,
8453 &wqe->xmit_els_rsp.wqe_dest, 0);
8454 }
8455 }
8456 }
James Smartf0d9bcc2010-10-22 11:07:09 -04008457 bf_set(wqe_ct, &wqe->xmit_els_rsp.wqe_com,
8458 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
8459 bf_set(wqe_pu, &wqe->xmit_els_rsp.wqe_com, iocbq->iocb.ulpPU);
8460 bf_set(wqe_rcvoxid, &wqe->xmit_els_rsp.wqe_com,
James Smart7851fe22011-07-22 18:36:52 -04008461 iocbq->iocb.unsli3.rcvsli3.ox_id);
James Smart4f774512009-05-22 14:52:35 -04008462 if (!iocbq->iocb.ulpCt_h && iocbq->iocb.ulpCt_l)
James Smartf0d9bcc2010-10-22 11:07:09 -04008463 bf_set(wqe_ctxt_tag, &wqe->xmit_els_rsp.wqe_com,
James Smart6d368e52011-05-24 11:44:12 -04008464 phba->vpi_ids[iocbq->vport->vpi]);
James Smartf0d9bcc2010-10-22 11:07:09 -04008465 bf_set(wqe_dbde, &wqe->xmit_els_rsp.wqe_com, 1);
8466 bf_set(wqe_iod, &wqe->xmit_els_rsp.wqe_com, LPFC_WQE_IOD_WRITE);
8467 bf_set(wqe_qosd, &wqe->xmit_els_rsp.wqe_com, 1);
8468 bf_set(wqe_lenloc, &wqe->xmit_els_rsp.wqe_com,
8469 LPFC_WQE_LENLOC_WORD3);
8470 bf_set(wqe_ebde_cnt, &wqe->xmit_els_rsp.wqe_com, 0);
James Smart6d368e52011-05-24 11:44:12 -04008471 bf_set(wqe_rsp_temp_rpi, &wqe->xmit_els_rsp,
8472 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
James Smartff78d8f2011-12-13 13:21:35 -05008473 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
8474 iocbq->context2)->virt);
8475 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart939723a2012-05-09 21:19:03 -04008476 bf_set(els_rsp64_sp, &wqe->xmit_els_rsp, 1);
8477 bf_set(els_rsp64_sid, &wqe->xmit_els_rsp,
James Smartff78d8f2011-12-13 13:21:35 -05008478 iocbq->vport->fc_myDID);
James Smart939723a2012-05-09 21:19:03 -04008479 bf_set(wqe_ct, &wqe->xmit_els_rsp.wqe_com, 1);
8480 bf_set(wqe_ctxt_tag, &wqe->xmit_els_rsp.wqe_com,
James Smartff78d8f2011-12-13 13:21:35 -05008481 phba->vpi_ids[phba->pport->vpi]);
8482 }
James Smart4f774512009-05-22 14:52:35 -04008483 command_type = OTHER_COMMAND;
James Smart7851fe22011-07-22 18:36:52 -04008484 break;
James Smart4f774512009-05-22 14:52:35 -04008485 case CMD_CLOSE_XRI_CN:
8486 case CMD_ABORT_XRI_CN:
8487 case CMD_ABORT_XRI_CX:
8488 /* words 0-2 memcpy should be 0 rserved */
8489 /* port will send abts */
James Smartdcf2a4e2010-09-29 11:18:53 -04008490 abrt_iotag = iocbq->iocb.un.acxri.abortContextTag;
8491 if (abrt_iotag != 0 && abrt_iotag <= phba->sli.last_iotag) {
8492 abrtiocbq = phba->sli.iocbq_lookup[abrt_iotag];
8493 fip = abrtiocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK;
8494 } else
8495 fip = 0;
8496
8497 if ((iocbq->iocb.ulpCommand == CMD_CLOSE_XRI_CN) || fip)
James Smart4f774512009-05-22 14:52:35 -04008498 /*
James Smartdcf2a4e2010-09-29 11:18:53 -04008499 * The link is down, or the command was ELS_FIP
8500 * so the fw does not need to send abts
James Smart4f774512009-05-22 14:52:35 -04008501 * on the wire.
8502 */
8503 bf_set(abort_cmd_ia, &wqe->abort_cmd, 1);
8504 else
8505 bf_set(abort_cmd_ia, &wqe->abort_cmd, 0);
8506 bf_set(abort_cmd_criteria, &wqe->abort_cmd, T_XRI_TAG);
James Smartf0d9bcc2010-10-22 11:07:09 -04008507 /* word5 iocb=CONTEXT_TAG|IO_TAG wqe=reserved */
8508 wqe->abort_cmd.rsrvd5 = 0;
8509 bf_set(wqe_ct, &wqe->abort_cmd.wqe_com,
James Smart4f774512009-05-22 14:52:35 -04008510 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
8511 abort_tag = iocbq->iocb.un.acxri.abortIoTag;
James Smart4f774512009-05-22 14:52:35 -04008512 /*
8513 * The abort handler will send us CMD_ABORT_XRI_CN or
8514 * CMD_CLOSE_XRI_CN and the fw only accepts CMD_ABORT_XRI_CX
8515 */
James Smartf0d9bcc2010-10-22 11:07:09 -04008516 bf_set(wqe_cmnd, &wqe->abort_cmd.wqe_com, CMD_ABORT_XRI_CX);
8517 bf_set(wqe_qosd, &wqe->abort_cmd.wqe_com, 1);
8518 bf_set(wqe_lenloc, &wqe->abort_cmd.wqe_com,
8519 LPFC_WQE_LENLOC_NONE);
James Smart4f774512009-05-22 14:52:35 -04008520 cmnd = CMD_ABORT_XRI_CX;
8521 command_type = OTHER_COMMAND;
8522 xritag = 0;
James Smart7851fe22011-07-22 18:36:52 -04008523 break;
James Smart6669f9b2009-10-02 15:16:45 -04008524 case CMD_XMIT_BLS_RSP64_CX:
James Smart6b5151f2012-01-18 16:24:06 -05008525 ndlp = (struct lpfc_nodelist *)iocbq->context1;
James Smart546fc852011-03-11 16:06:29 -05008526 /* As BLS ABTS RSP WQE is very different from other WQEs,
James Smart6669f9b2009-10-02 15:16:45 -04008527 * we re-construct this WQE here based on information in
8528 * iocbq from scratch.
8529 */
8530 memset(wqe, 0, sizeof(union lpfc_wqe));
James Smart5ffc2662009-11-18 15:39:44 -05008531 /* OX_ID is invariable to who sent ABTS to CT exchange */
James Smart6669f9b2009-10-02 15:16:45 -04008532 bf_set(xmit_bls_rsp64_oxid, &wqe->xmit_bls_rsp,
James Smart546fc852011-03-11 16:06:29 -05008533 bf_get(lpfc_abts_oxid, &iocbq->iocb.un.bls_rsp));
8534 if (bf_get(lpfc_abts_orig, &iocbq->iocb.un.bls_rsp) ==
James Smart5ffc2662009-11-18 15:39:44 -05008535 LPFC_ABTS_UNSOL_INT) {
8536 /* ABTS sent by initiator to CT exchange, the
8537 * RX_ID field will be filled with the newly
8538 * allocated responder XRI.
8539 */
8540 bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
8541 iocbq->sli4_xritag);
8542 } else {
8543 /* ABTS sent by responder to CT exchange, the
8544 * RX_ID field will be filled with the responder
8545 * RX_ID from ABTS.
8546 */
8547 bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
James Smart546fc852011-03-11 16:06:29 -05008548 bf_get(lpfc_abts_rxid, &iocbq->iocb.un.bls_rsp));
James Smart5ffc2662009-11-18 15:39:44 -05008549 }
James Smart6669f9b2009-10-02 15:16:45 -04008550 bf_set(xmit_bls_rsp64_seqcnthi, &wqe->xmit_bls_rsp, 0xffff);
8551 bf_set(wqe_xmit_bls_pt, &wqe->xmit_bls_rsp.wqe_dest, 0x1);
James Smart6b5151f2012-01-18 16:24:06 -05008552
8553 /* Use CT=VPI */
8554 bf_set(wqe_els_did, &wqe->xmit_bls_rsp.wqe_dest,
8555 ndlp->nlp_DID);
8556 bf_set(xmit_bls_rsp64_temprpi, &wqe->xmit_bls_rsp,
8557 iocbq->iocb.ulpContext);
8558 bf_set(wqe_ct, &wqe->xmit_bls_rsp.wqe_com, 1);
James Smart6669f9b2009-10-02 15:16:45 -04008559 bf_set(wqe_ctxt_tag, &wqe->xmit_bls_rsp.wqe_com,
James Smart6b5151f2012-01-18 16:24:06 -05008560 phba->vpi_ids[phba->pport->vpi]);
James Smartf0d9bcc2010-10-22 11:07:09 -04008561 bf_set(wqe_qosd, &wqe->xmit_bls_rsp.wqe_com, 1);
8562 bf_set(wqe_lenloc, &wqe->xmit_bls_rsp.wqe_com,
8563 LPFC_WQE_LENLOC_NONE);
James Smart6669f9b2009-10-02 15:16:45 -04008564 /* Overwrite the pre-set comnd type with OTHER_COMMAND */
8565 command_type = OTHER_COMMAND;
James Smart546fc852011-03-11 16:06:29 -05008566 if (iocbq->iocb.un.xseq64.w5.hcsw.Rctl == FC_RCTL_BA_RJT) {
8567 bf_set(xmit_bls_rsp64_rjt_vspec, &wqe->xmit_bls_rsp,
8568 bf_get(lpfc_vndr_code, &iocbq->iocb.un.bls_rsp));
8569 bf_set(xmit_bls_rsp64_rjt_expc, &wqe->xmit_bls_rsp,
8570 bf_get(lpfc_rsn_expln, &iocbq->iocb.un.bls_rsp));
8571 bf_set(xmit_bls_rsp64_rjt_rsnc, &wqe->xmit_bls_rsp,
8572 bf_get(lpfc_rsn_code, &iocbq->iocb.un.bls_rsp));
8573 }
8574
James Smart7851fe22011-07-22 18:36:52 -04008575 break;
James Smart4f774512009-05-22 14:52:35 -04008576 case CMD_XRI_ABORTED_CX:
8577 case CMD_CREATE_XRI_CR: /* Do we expect to use this? */
James Smart4f774512009-05-22 14:52:35 -04008578 case CMD_IOCB_FCP_IBIDIR64_CR: /* bidirectional xfer */
8579 case CMD_FCP_TSEND64_CX: /* Target mode send xfer-ready */
8580 case CMD_FCP_TRSP64_CX: /* Target mode rcv */
8581 case CMD_FCP_AUTO_TRSP_CX: /* Auto target rsp */
8582 default:
8583 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8584 "2014 Invalid command 0x%x\n",
8585 iocbq->iocb.ulpCommand);
8586 return IOCB_ERROR;
James Smart7851fe22011-07-22 18:36:52 -04008587 break;
James Smart4f774512009-05-22 14:52:35 -04008588 }
James Smart6d368e52011-05-24 11:44:12 -04008589
James Smart8012cc32012-10-31 14:44:49 -04008590 if (iocbq->iocb_flag & LPFC_IO_DIF_PASS)
8591 bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_PASSTHRU);
8592 else if (iocbq->iocb_flag & LPFC_IO_DIF_STRIP)
8593 bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_STRIP);
8594 else if (iocbq->iocb_flag & LPFC_IO_DIF_INSERT)
8595 bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_INSERT);
8596 iocbq->iocb_flag &= ~(LPFC_IO_DIF_PASS | LPFC_IO_DIF_STRIP |
8597 LPFC_IO_DIF_INSERT);
James Smartf0d9bcc2010-10-22 11:07:09 -04008598 bf_set(wqe_xri_tag, &wqe->generic.wqe_com, xritag);
8599 bf_set(wqe_reqtag, &wqe->generic.wqe_com, iocbq->iotag);
8600 wqe->generic.wqe_com.abort_tag = abort_tag;
8601 bf_set(wqe_cmd_type, &wqe->generic.wqe_com, command_type);
8602 bf_set(wqe_cmnd, &wqe->generic.wqe_com, cmnd);
8603 bf_set(wqe_class, &wqe->generic.wqe_com, iocbq->iocb.ulpClass);
8604 bf_set(wqe_cqid, &wqe->generic.wqe_com, LPFC_WQE_CQ_ID_DEFAULT);
James Smart4f774512009-05-22 14:52:35 -04008605 return 0;
8606}
8607
8608/**
8609 * __lpfc_sli_issue_iocb_s4 - SLI4 device lockless ver of lpfc_sli_issue_iocb
8610 * @phba: Pointer to HBA context object.
8611 * @ring_number: SLI ring number to issue iocb on.
8612 * @piocb: Pointer to command iocb.
8613 * @flag: Flag indicating if this command can be put into txq.
8614 *
8615 * __lpfc_sli_issue_iocb_s4 is used by other functions in the driver to issue
8616 * an iocb command to an HBA with SLI-4 interface spec.
8617 *
8618 * This function is called with hbalock held. The function will return success
8619 * after it successfully submit the iocb to firmware or after adding to the
8620 * txq.
8621 **/
8622static int
8623__lpfc_sli_issue_iocb_s4(struct lpfc_hba *phba, uint32_t ring_number,
8624 struct lpfc_iocbq *piocb, uint32_t flag)
8625{
8626 struct lpfc_sglq *sglq;
James Smart4f774512009-05-22 14:52:35 -04008627 union lpfc_wqe wqe;
James Smart1ba981f2014-02-20 09:56:45 -05008628 struct lpfc_queue *wq;
James Smart4f774512009-05-22 14:52:35 -04008629 struct lpfc_sli_ring *pring = &phba->sli.ring[ring_number];
James Smart4f774512009-05-22 14:52:35 -04008630
8631 if (piocb->sli4_xritag == NO_XRI) {
8632 if (piocb->iocb.ulpCommand == CMD_ABORT_XRI_CN ||
James Smart6b5151f2012-01-18 16:24:06 -05008633 piocb->iocb.ulpCommand == CMD_CLOSE_XRI_CN)
James Smart4f774512009-05-22 14:52:35 -04008634 sglq = NULL;
8635 else {
James Smart0e9bb8d2013-03-01 16:35:12 -05008636 if (!list_empty(&pring->txq)) {
James Smart2a9bf3d2010-06-07 15:24:45 -04008637 if (!(flag & SLI_IOCB_RET_IOCB)) {
8638 __lpfc_sli_ringtx_put(phba,
8639 pring, piocb);
8640 return IOCB_SUCCESS;
8641 } else {
8642 return IOCB_BUSY;
8643 }
8644 } else {
James Smart6d368e52011-05-24 11:44:12 -04008645 sglq = __lpfc_sli_get_sglq(phba, piocb);
James Smart2a9bf3d2010-06-07 15:24:45 -04008646 if (!sglq) {
8647 if (!(flag & SLI_IOCB_RET_IOCB)) {
8648 __lpfc_sli_ringtx_put(phba,
8649 pring,
8650 piocb);
8651 return IOCB_SUCCESS;
8652 } else
8653 return IOCB_BUSY;
8654 }
8655 }
James Smart4f774512009-05-22 14:52:35 -04008656 }
8657 } else if (piocb->iocb_flag & LPFC_IO_FCP) {
James Smart6d368e52011-05-24 11:44:12 -04008658 /* These IO's already have an XRI and a mapped sgl. */
8659 sglq = NULL;
James Smart4f774512009-05-22 14:52:35 -04008660 } else {
James Smart6d368e52011-05-24 11:44:12 -04008661 /*
8662 * This is a continuation of a commandi,(CX) so this
James Smart4f774512009-05-22 14:52:35 -04008663 * sglq is on the active list
8664 */
James Smartedccdc12013-01-03 15:43:45 -05008665 sglq = __lpfc_get_active_sglq(phba, piocb->sli4_lxritag);
James Smart4f774512009-05-22 14:52:35 -04008666 if (!sglq)
8667 return IOCB_ERROR;
8668 }
8669
8670 if (sglq) {
James Smart6d368e52011-05-24 11:44:12 -04008671 piocb->sli4_lxritag = sglq->sli4_lxritag;
James Smart2a9bf3d2010-06-07 15:24:45 -04008672 piocb->sli4_xritag = sglq->sli4_xritag;
James Smart2a9bf3d2010-06-07 15:24:45 -04008673 if (NO_XRI == lpfc_sli4_bpl2sgl(phba, piocb, sglq))
James Smart4f774512009-05-22 14:52:35 -04008674 return IOCB_ERROR;
8675 }
8676
8677 if (lpfc_sli4_iocb2wqe(phba, piocb, &wqe))
8678 return IOCB_ERROR;
8679
James Smart341af102010-01-26 23:07:37 -05008680 if ((piocb->iocb_flag & LPFC_IO_FCP) ||
James Smart1ba981f2014-02-20 09:56:45 -05008681 (piocb->iocb_flag & LPFC_USE_FCPWQIDX)) {
James Smartf38fa0b2014-04-04 13:52:21 -04008682 if (!phba->cfg_fof || (!(piocb->iocb_flag & LPFC_IO_OAS))) {
James Smart1ba981f2014-02-20 09:56:45 -05008683 wq = phba->sli4_hba.fcp_wq[piocb->fcp_wqidx];
8684 } else {
8685 wq = phba->sli4_hba.oas_wq;
8686 }
8687 if (lpfc_sli4_wq_put(wq, &wqe))
James Smart4f774512009-05-22 14:52:35 -04008688 return IOCB_ERROR;
8689 } else {
James Smartea714f32013-04-17 20:18:47 -04008690 if (unlikely(!phba->sli4_hba.els_wq))
8691 return IOCB_ERROR;
James Smart4f774512009-05-22 14:52:35 -04008692 if (lpfc_sli4_wq_put(phba->sli4_hba.els_wq, &wqe))
8693 return IOCB_ERROR;
8694 }
8695 lpfc_sli_ringtxcmpl_put(phba, pring, piocb);
8696
8697 return 0;
8698}
8699
8700/**
James Smart3772a992009-05-22 14:50:54 -04008701 * __lpfc_sli_issue_iocb - Wrapper func of lockless version for issuing iocb
8702 *
8703 * This routine wraps the actual lockless version for issusing IOCB function
8704 * pointer from the lpfc_hba struct.
8705 *
8706 * Return codes:
8707 * IOCB_ERROR - Error
8708 * IOCB_SUCCESS - Success
8709 * IOCB_BUSY - Busy
8710 **/
James Smart2a9bf3d2010-06-07 15:24:45 -04008711int
James Smart3772a992009-05-22 14:50:54 -04008712__lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
8713 struct lpfc_iocbq *piocb, uint32_t flag)
8714{
8715 return phba->__lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
8716}
8717
8718/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03008719 * lpfc_sli_api_table_setup - Set up sli api function jump table
James Smart3772a992009-05-22 14:50:54 -04008720 * @phba: The hba struct for which this call is being executed.
8721 * @dev_grp: The HBA PCI-Device group number.
8722 *
8723 * This routine sets up the SLI interface API function jump table in @phba
8724 * struct.
8725 * Returns: 0 - success, -ENODEV - failure.
8726 **/
8727int
8728lpfc_sli_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
8729{
8730
8731 switch (dev_grp) {
8732 case LPFC_PCI_DEV_LP:
8733 phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s3;
8734 phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s3;
8735 break;
James Smart4f774512009-05-22 14:52:35 -04008736 case LPFC_PCI_DEV_OC:
8737 phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s4;
8738 phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s4;
8739 break;
James Smart3772a992009-05-22 14:50:54 -04008740 default:
8741 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8742 "1419 Invalid HBA PCI-device group: 0x%x\n",
8743 dev_grp);
8744 return -ENODEV;
8745 break;
8746 }
8747 phba->lpfc_get_iocb_from_iocbq = lpfc_get_iocb_from_iocbq;
8748 return 0;
8749}
James Smart92d7f7b2007-06-17 19:56:38 -05008750
James Smart9bd2bff52014-09-03 12:57:30 -04008751int
8752lpfc_sli_calc_ring(struct lpfc_hba *phba, uint32_t ring_number,
8753 struct lpfc_iocbq *piocb)
8754{
8755 uint32_t idx;
8756
8757 if (phba->sli_rev == LPFC_SLI_REV4) {
8758 if (piocb->iocb_flag & (LPFC_IO_FCP | LPFC_USE_FCPWQIDX)) {
8759 /*
8760 * fcp_wqidx should already be setup based on what
8761 * completion queue we want to use.
8762 */
8763 if (!(phba->cfg_fof) ||
8764 (!(piocb->iocb_flag & LPFC_IO_FOF))) {
8765 if (unlikely(!phba->sli4_hba.fcp_wq))
8766 return LPFC_HBA_ERROR;
8767 idx = lpfc_sli4_scmd_to_wqidx_distr(phba);
8768 piocb->fcp_wqidx = idx;
8769 ring_number = MAX_SLI3_CONFIGURED_RINGS + idx;
8770 } else {
8771 if (unlikely(!phba->sli4_hba.oas_wq))
8772 return LPFC_HBA_ERROR;
8773 idx = 0;
8774 piocb->fcp_wqidx = idx;
8775 ring_number = LPFC_FCP_OAS_RING;
8776 }
8777 }
8778 }
8779 return ring_number;
8780}
8781
James Smarte59058c2008-08-24 21:49:00 -04008782/**
James Smart3621a712009-04-06 18:47:14 -04008783 * lpfc_sli_issue_iocb - Wrapper function for __lpfc_sli_issue_iocb
James Smarte59058c2008-08-24 21:49:00 -04008784 * @phba: Pointer to HBA context object.
8785 * @pring: Pointer to driver SLI ring object.
8786 * @piocb: Pointer to command iocb.
8787 * @flag: Flag indicating if this command can be put into txq.
8788 *
8789 * lpfc_sli_issue_iocb is a wrapper around __lpfc_sli_issue_iocb
8790 * function. This function gets the hbalock and calls
8791 * __lpfc_sli_issue_iocb function and will return the error returned
8792 * by __lpfc_sli_issue_iocb function. This wrapper is used by
8793 * functions which do not hold hbalock.
8794 **/
James Smart92d7f7b2007-06-17 19:56:38 -05008795int
James Smart3772a992009-05-22 14:50:54 -04008796lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
James Smart92d7f7b2007-06-17 19:56:38 -05008797 struct lpfc_iocbq *piocb, uint32_t flag)
8798{
James Smartba20c852012-08-03 12:36:52 -04008799 struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
James Smart2a76a282012-08-03 12:35:54 -04008800 struct lpfc_sli_ring *pring;
James Smartba20c852012-08-03 12:36:52 -04008801 struct lpfc_queue *fpeq;
8802 struct lpfc_eqe *eqe;
James Smart92d7f7b2007-06-17 19:56:38 -05008803 unsigned long iflags;
James Smart2a76a282012-08-03 12:35:54 -04008804 int rc, idx;
James Smart92d7f7b2007-06-17 19:56:38 -05008805
James Smart7e56aa22012-08-03 12:35:34 -04008806 if (phba->sli_rev == LPFC_SLI_REV4) {
James Smart9bd2bff52014-09-03 12:57:30 -04008807 ring_number = lpfc_sli_calc_ring(phba, ring_number, piocb);
8808 if (unlikely(ring_number == LPFC_HBA_ERROR))
8809 return IOCB_ERROR;
8810 idx = piocb->fcp_wqidx;
James Smartba20c852012-08-03 12:36:52 -04008811
James Smart9bd2bff52014-09-03 12:57:30 -04008812 pring = &phba->sli.ring[ring_number];
8813 spin_lock_irqsave(&pring->ring_lock, iflags);
8814 rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
8815 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smartba20c852012-08-03 12:36:52 -04008816
James Smart9bd2bff52014-09-03 12:57:30 -04008817 if (lpfc_fcp_look_ahead && (piocb->iocb_flag & LPFC_IO_FCP)) {
8818 fcp_eq_hdl = &phba->sli4_hba.fcp_eq_hdl[idx];
James Smartba20c852012-08-03 12:36:52 -04008819
James Smart9bd2bff52014-09-03 12:57:30 -04008820 if (atomic_dec_and_test(&fcp_eq_hdl->
8821 fcp_eq_in_use)) {
James Smartba20c852012-08-03 12:36:52 -04008822
James Smart9bd2bff52014-09-03 12:57:30 -04008823 /* Get associated EQ with this index */
8824 fpeq = phba->sli4_hba.hba_eq[idx];
James Smartba20c852012-08-03 12:36:52 -04008825
James Smart9bd2bff52014-09-03 12:57:30 -04008826 /* Turn off interrupts from this EQ */
8827 lpfc_sli4_eq_clr_intr(fpeq);
James Smartba20c852012-08-03 12:36:52 -04008828
James Smart9bd2bff52014-09-03 12:57:30 -04008829 /*
8830 * Process all the events on FCP EQ
8831 */
8832 while ((eqe = lpfc_sli4_eq_get(fpeq))) {
8833 lpfc_sli4_hba_handle_eqe(phba,
8834 eqe, idx);
8835 fpeq->EQ_processed++;
James Smartba20c852012-08-03 12:36:52 -04008836 }
James Smartba20c852012-08-03 12:36:52 -04008837
James Smart9bd2bff52014-09-03 12:57:30 -04008838 /* Always clear and re-arm the EQ */
8839 lpfc_sli4_eq_release(fpeq,
8840 LPFC_QUEUE_REARM);
8841 }
8842 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
James Smart2a76a282012-08-03 12:35:54 -04008843 }
James Smart7e56aa22012-08-03 12:35:34 -04008844 } else {
8845 /* For now, SLI2/3 will still use hbalock */
8846 spin_lock_irqsave(&phba->hbalock, iflags);
8847 rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
8848 spin_unlock_irqrestore(&phba->hbalock, iflags);
8849 }
James Smart92d7f7b2007-06-17 19:56:38 -05008850 return rc;
8851}
8852
James Smarte59058c2008-08-24 21:49:00 -04008853/**
James Smart3621a712009-04-06 18:47:14 -04008854 * lpfc_extra_ring_setup - Extra ring setup function
James Smarte59058c2008-08-24 21:49:00 -04008855 * @phba: Pointer to HBA context object.
8856 *
8857 * This function is called while driver attaches with the
8858 * HBA to setup the extra ring. The extra ring is used
8859 * only when driver needs to support target mode functionality
8860 * or IP over FC functionalities.
8861 *
8862 * This function is called with no lock held.
8863 **/
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008864static int
8865lpfc_extra_ring_setup( struct lpfc_hba *phba)
8866{
8867 struct lpfc_sli *psli;
8868 struct lpfc_sli_ring *pring;
8869
8870 psli = &phba->sli;
8871
8872 /* Adjust cmd/rsp ring iocb entries more evenly */
James Smarta4bc3372006-12-02 13:34:16 -05008873
8874 /* Take some away from the FCP ring */
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008875 pring = &psli->ring[psli->fcp_ring];
James Smart7e56aa22012-08-03 12:35:34 -04008876 pring->sli.sli3.numCiocb -= SLI2_IOCB_CMD_R1XTRA_ENTRIES;
8877 pring->sli.sli3.numRiocb -= SLI2_IOCB_RSP_R1XTRA_ENTRIES;
8878 pring->sli.sli3.numCiocb -= SLI2_IOCB_CMD_R3XTRA_ENTRIES;
8879 pring->sli.sli3.numRiocb -= SLI2_IOCB_RSP_R3XTRA_ENTRIES;
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008880
James Smarta4bc3372006-12-02 13:34:16 -05008881 /* and give them to the extra ring */
8882 pring = &psli->ring[psli->extra_ring];
8883
James Smart7e56aa22012-08-03 12:35:34 -04008884 pring->sli.sli3.numCiocb += SLI2_IOCB_CMD_R1XTRA_ENTRIES;
8885 pring->sli.sli3.numRiocb += SLI2_IOCB_RSP_R1XTRA_ENTRIES;
8886 pring->sli.sli3.numCiocb += SLI2_IOCB_CMD_R3XTRA_ENTRIES;
8887 pring->sli.sli3.numRiocb += SLI2_IOCB_RSP_R3XTRA_ENTRIES;
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008888
8889 /* Setup default profile for this ring */
8890 pring->iotag_max = 4096;
8891 pring->num_mask = 1;
8892 pring->prt[0].profile = 0; /* Mask 0 */
James Smarta4bc3372006-12-02 13:34:16 -05008893 pring->prt[0].rctl = phba->cfg_multi_ring_rctl;
8894 pring->prt[0].type = phba->cfg_multi_ring_type;
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008895 pring->prt[0].lpfc_sli_rcv_unsol_event = NULL;
8896 return 0;
8897}
8898
James Smartcb69f7d2011-12-13 13:21:57 -05008899/* lpfc_sli_abts_err_handler - handle a failed ABTS request from an SLI3 port.
8900 * @phba: Pointer to HBA context object.
8901 * @iocbq: Pointer to iocb object.
8902 *
8903 * The async_event handler calls this routine when it receives
8904 * an ASYNC_STATUS_CN event from the port. The port generates
8905 * this event when an Abort Sequence request to an rport fails
8906 * twice in succession. The abort could be originated by the
8907 * driver or by the port. The ABTS could have been for an ELS
8908 * or FCP IO. The port only generates this event when an ABTS
8909 * fails to complete after one retry.
8910 */
8911static void
8912lpfc_sli_abts_err_handler(struct lpfc_hba *phba,
8913 struct lpfc_iocbq *iocbq)
8914{
8915 struct lpfc_nodelist *ndlp = NULL;
8916 uint16_t rpi = 0, vpi = 0;
8917 struct lpfc_vport *vport = NULL;
8918
8919 /* The rpi in the ulpContext is vport-sensitive. */
8920 vpi = iocbq->iocb.un.asyncstat.sub_ctxt_tag;
8921 rpi = iocbq->iocb.ulpContext;
8922
8923 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
8924 "3092 Port generated ABTS async event "
8925 "on vpi %d rpi %d status 0x%x\n",
8926 vpi, rpi, iocbq->iocb.ulpStatus);
8927
8928 vport = lpfc_find_vport_by_vpid(phba, vpi);
8929 if (!vport)
8930 goto err_exit;
8931 ndlp = lpfc_findnode_rpi(vport, rpi);
8932 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
8933 goto err_exit;
8934
8935 if (iocbq->iocb.ulpStatus == IOSTAT_LOCAL_REJECT)
8936 lpfc_sli_abts_recover_port(vport, ndlp);
8937 return;
8938
8939 err_exit:
8940 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
8941 "3095 Event Context not found, no "
8942 "action on vpi %d rpi %d status 0x%x, reason 0x%x\n",
8943 iocbq->iocb.ulpContext, iocbq->iocb.ulpStatus,
8944 vpi, rpi);
8945}
8946
8947/* lpfc_sli4_abts_err_handler - handle a failed ABTS request from an SLI4 port.
8948 * @phba: pointer to HBA context object.
8949 * @ndlp: nodelist pointer for the impacted rport.
8950 * @axri: pointer to the wcqe containing the failed exchange.
8951 *
8952 * The driver calls this routine when it receives an ABORT_XRI_FCP CQE from the
8953 * port. The port generates this event when an abort exchange request to an
8954 * rport fails twice in succession with no reply. The abort could be originated
8955 * by the driver or by the port. The ABTS could have been for an ELS or FCP IO.
8956 */
8957void
8958lpfc_sli4_abts_err_handler(struct lpfc_hba *phba,
8959 struct lpfc_nodelist *ndlp,
8960 struct sli4_wcqe_xri_aborted *axri)
8961{
8962 struct lpfc_vport *vport;
James Smart5c1db2a2012-03-01 22:34:36 -05008963 uint32_t ext_status = 0;
James Smartcb69f7d2011-12-13 13:21:57 -05008964
James Smart6b5151f2012-01-18 16:24:06 -05008965 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
James Smartcb69f7d2011-12-13 13:21:57 -05008966 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
8967 "3115 Node Context not found, driver "
8968 "ignoring abts err event\n");
James Smart6b5151f2012-01-18 16:24:06 -05008969 return;
8970 }
8971
James Smartcb69f7d2011-12-13 13:21:57 -05008972 vport = ndlp->vport;
8973 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
8974 "3116 Port generated FCP XRI ABORT event on "
James Smart5c1db2a2012-03-01 22:34:36 -05008975 "vpi %d rpi %d xri x%x status 0x%x parameter x%x\n",
James Smart8e668af2013-05-31 17:04:28 -04008976 ndlp->vport->vpi, phba->sli4_hba.rpi_ids[ndlp->nlp_rpi],
James Smartcb69f7d2011-12-13 13:21:57 -05008977 bf_get(lpfc_wcqe_xa_xri, axri),
James Smart5c1db2a2012-03-01 22:34:36 -05008978 bf_get(lpfc_wcqe_xa_status, axri),
8979 axri->parameter);
James Smartcb69f7d2011-12-13 13:21:57 -05008980
James Smart5c1db2a2012-03-01 22:34:36 -05008981 /*
8982 * Catch the ABTS protocol failure case. Older OCe FW releases returned
8983 * LOCAL_REJECT and 0 for a failed ABTS exchange and later OCe and
8984 * LPe FW releases returned LOCAL_REJECT and SEQUENCE_TIMEOUT.
8985 */
James Smarte3d2b802012-08-14 14:25:43 -04008986 ext_status = axri->parameter & IOERR_PARAM_MASK;
James Smart5c1db2a2012-03-01 22:34:36 -05008987 if ((bf_get(lpfc_wcqe_xa_status, axri) == IOSTAT_LOCAL_REJECT) &&
8988 ((ext_status == IOERR_SEQUENCE_TIMEOUT) || (ext_status == 0)))
James Smartcb69f7d2011-12-13 13:21:57 -05008989 lpfc_sli_abts_recover_port(vport, ndlp);
8990}
8991
James Smarte59058c2008-08-24 21:49:00 -04008992/**
James Smart3621a712009-04-06 18:47:14 -04008993 * lpfc_sli_async_event_handler - ASYNC iocb handler function
James Smarte59058c2008-08-24 21:49:00 -04008994 * @phba: Pointer to HBA context object.
8995 * @pring: Pointer to driver SLI ring object.
8996 * @iocbq: Pointer to iocb object.
8997 *
8998 * This function is called by the slow ring event handler
8999 * function when there is an ASYNC event iocb in the ring.
9000 * This function is called with no lock held.
9001 * Currently this function handles only temperature related
9002 * ASYNC events. The function decodes the temperature sensor
9003 * event message and posts events for the management applications.
9004 **/
James Smart98c9ea52007-10-27 13:37:33 -04009005static void
James Smart57127f12007-10-27 13:37:05 -04009006lpfc_sli_async_event_handler(struct lpfc_hba * phba,
9007 struct lpfc_sli_ring * pring, struct lpfc_iocbq * iocbq)
9008{
9009 IOCB_t *icmd;
9010 uint16_t evt_code;
James Smart57127f12007-10-27 13:37:05 -04009011 struct temp_event temp_event_data;
9012 struct Scsi_Host *shost;
James Smarta257bf92009-04-06 18:48:10 -04009013 uint32_t *iocb_w;
James Smart57127f12007-10-27 13:37:05 -04009014
9015 icmd = &iocbq->iocb;
9016 evt_code = icmd->un.asyncstat.evt_code;
James Smart57127f12007-10-27 13:37:05 -04009017
James Smartcb69f7d2011-12-13 13:21:57 -05009018 switch (evt_code) {
9019 case ASYNC_TEMP_WARN:
9020 case ASYNC_TEMP_SAFE:
9021 temp_event_data.data = (uint32_t) icmd->ulpContext;
9022 temp_event_data.event_type = FC_REG_TEMPERATURE_EVENT;
9023 if (evt_code == ASYNC_TEMP_WARN) {
9024 temp_event_data.event_code = LPFC_THRESHOLD_TEMP;
9025 lpfc_printf_log(phba, KERN_ERR, LOG_TEMP,
9026 "0347 Adapter is very hot, please take "
9027 "corrective action. temperature : %d Celsius\n",
9028 (uint32_t) icmd->ulpContext);
9029 } else {
9030 temp_event_data.event_code = LPFC_NORMAL_TEMP;
9031 lpfc_printf_log(phba, KERN_ERR, LOG_TEMP,
9032 "0340 Adapter temperature is OK now. "
9033 "temperature : %d Celsius\n",
9034 (uint32_t) icmd->ulpContext);
9035 }
9036
9037 /* Send temperature change event to applications */
9038 shost = lpfc_shost_from_vport(phba->pport);
9039 fc_host_post_vendor_event(shost, fc_get_event_number(),
9040 sizeof(temp_event_data), (char *) &temp_event_data,
9041 LPFC_NL_VENDOR_ID);
9042 break;
9043 case ASYNC_STATUS_CN:
9044 lpfc_sli_abts_err_handler(phba, iocbq);
9045 break;
9046 default:
James Smarta257bf92009-04-06 18:48:10 -04009047 iocb_w = (uint32_t *) icmd;
James Smartcb69f7d2011-12-13 13:21:57 -05009048 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart76bb24e2007-10-27 13:38:00 -04009049 "0346 Ring %d handler: unexpected ASYNC_STATUS"
James Smarte4e74272009-07-19 10:01:38 -04009050 " evt_code 0x%x\n"
James Smarta257bf92009-04-06 18:48:10 -04009051 "W0 0x%08x W1 0x%08x W2 0x%08x W3 0x%08x\n"
9052 "W4 0x%08x W5 0x%08x W6 0x%08x W7 0x%08x\n"
9053 "W8 0x%08x W9 0x%08x W10 0x%08x W11 0x%08x\n"
9054 "W12 0x%08x W13 0x%08x W14 0x%08x W15 0x%08x\n",
James Smartcb69f7d2011-12-13 13:21:57 -05009055 pring->ringno, icmd->un.asyncstat.evt_code,
James Smarta257bf92009-04-06 18:48:10 -04009056 iocb_w[0], iocb_w[1], iocb_w[2], iocb_w[3],
9057 iocb_w[4], iocb_w[5], iocb_w[6], iocb_w[7],
9058 iocb_w[8], iocb_w[9], iocb_w[10], iocb_w[11],
9059 iocb_w[12], iocb_w[13], iocb_w[14], iocb_w[15]);
9060
James Smartcb69f7d2011-12-13 13:21:57 -05009061 break;
James Smart57127f12007-10-27 13:37:05 -04009062 }
James Smart57127f12007-10-27 13:37:05 -04009063}
9064
9065
James Smarte59058c2008-08-24 21:49:00 -04009066/**
James Smart3621a712009-04-06 18:47:14 -04009067 * lpfc_sli_setup - SLI ring setup function
James Smarte59058c2008-08-24 21:49:00 -04009068 * @phba: Pointer to HBA context object.
9069 *
9070 * lpfc_sli_setup sets up rings of the SLI interface with
9071 * number of iocbs per ring and iotags. This function is
9072 * called while driver attach to the HBA and before the
9073 * interrupts are enabled. So there is no need for locking.
9074 *
9075 * This function always returns 0.
9076 **/
dea31012005-04-17 16:05:31 -05009077int
9078lpfc_sli_setup(struct lpfc_hba *phba)
9079{
James Smarted957682007-06-17 19:56:37 -05009080 int i, totiocbsize = 0;
dea31012005-04-17 16:05:31 -05009081 struct lpfc_sli *psli = &phba->sli;
9082 struct lpfc_sli_ring *pring;
9083
James Smart2a76a282012-08-03 12:35:54 -04009084 psli->num_rings = MAX_SLI3_CONFIGURED_RINGS;
9085 if (phba->sli_rev == LPFC_SLI_REV4)
James Smart67d12732012-08-03 12:36:13 -04009086 psli->num_rings += phba->cfg_fcp_io_channel;
dea31012005-04-17 16:05:31 -05009087 psli->sli_flag = 0;
9088 psli->fcp_ring = LPFC_FCP_RING;
9089 psli->next_ring = LPFC_FCP_NEXT_RING;
James Smarta4bc3372006-12-02 13:34:16 -05009090 psli->extra_ring = LPFC_EXTRA_RING;
dea31012005-04-17 16:05:31 -05009091
James Bottomley604a3e32005-10-29 10:28:33 -05009092 psli->iocbq_lookup = NULL;
9093 psli->iocbq_lookup_len = 0;
9094 psli->last_iotag = 0;
9095
dea31012005-04-17 16:05:31 -05009096 for (i = 0; i < psli->num_rings; i++) {
9097 pring = &psli->ring[i];
9098 switch (i) {
9099 case LPFC_FCP_RING: /* ring 0 - FCP */
9100 /* numCiocb and numRiocb are used in config_port */
James Smart7e56aa22012-08-03 12:35:34 -04009101 pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R0_ENTRIES;
9102 pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R0_ENTRIES;
9103 pring->sli.sli3.numCiocb +=
9104 SLI2_IOCB_CMD_R1XTRA_ENTRIES;
9105 pring->sli.sli3.numRiocb +=
9106 SLI2_IOCB_RSP_R1XTRA_ENTRIES;
9107 pring->sli.sli3.numCiocb +=
9108 SLI2_IOCB_CMD_R3XTRA_ENTRIES;
9109 pring->sli.sli3.numRiocb +=
9110 SLI2_IOCB_RSP_R3XTRA_ENTRIES;
9111 pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05009112 SLI3_IOCB_CMD_SIZE :
9113 SLI2_IOCB_CMD_SIZE;
James Smart7e56aa22012-08-03 12:35:34 -04009114 pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05009115 SLI3_IOCB_RSP_SIZE :
9116 SLI2_IOCB_RSP_SIZE;
dea31012005-04-17 16:05:31 -05009117 pring->iotag_ctr = 0;
9118 pring->iotag_max =
James Smart92d7f7b2007-06-17 19:56:38 -05009119 (phba->cfg_hba_queue_depth * 2);
dea31012005-04-17 16:05:31 -05009120 pring->fast_iotag = pring->iotag_max;
9121 pring->num_mask = 0;
9122 break;
James Smarta4bc3372006-12-02 13:34:16 -05009123 case LPFC_EXTRA_RING: /* ring 1 - EXTRA */
dea31012005-04-17 16:05:31 -05009124 /* numCiocb and numRiocb are used in config_port */
James Smart7e56aa22012-08-03 12:35:34 -04009125 pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R1_ENTRIES;
9126 pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R1_ENTRIES;
9127 pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05009128 SLI3_IOCB_CMD_SIZE :
9129 SLI2_IOCB_CMD_SIZE;
James Smart7e56aa22012-08-03 12:35:34 -04009130 pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05009131 SLI3_IOCB_RSP_SIZE :
9132 SLI2_IOCB_RSP_SIZE;
James Smart2e0fef82007-06-17 19:56:36 -05009133 pring->iotag_max = phba->cfg_hba_queue_depth;
dea31012005-04-17 16:05:31 -05009134 pring->num_mask = 0;
9135 break;
9136 case LPFC_ELS_RING: /* ring 2 - ELS / CT */
9137 /* numCiocb and numRiocb are used in config_port */
James Smart7e56aa22012-08-03 12:35:34 -04009138 pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R2_ENTRIES;
9139 pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R2_ENTRIES;
9140 pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05009141 SLI3_IOCB_CMD_SIZE :
9142 SLI2_IOCB_CMD_SIZE;
James Smart7e56aa22012-08-03 12:35:34 -04009143 pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05009144 SLI3_IOCB_RSP_SIZE :
9145 SLI2_IOCB_RSP_SIZE;
dea31012005-04-17 16:05:31 -05009146 pring->fast_iotag = 0;
9147 pring->iotag_ctr = 0;
9148 pring->iotag_max = 4096;
James Smart57127f12007-10-27 13:37:05 -04009149 pring->lpfc_sli_rcv_async_status =
9150 lpfc_sli_async_event_handler;
James Smart6669f9b2009-10-02 15:16:45 -04009151 pring->num_mask = LPFC_MAX_RING_MASK;
dea31012005-04-17 16:05:31 -05009152 pring->prt[0].profile = 0; /* Mask 0 */
James Smart6a9c52c2009-10-02 15:16:51 -04009153 pring->prt[0].rctl = FC_RCTL_ELS_REQ;
9154 pring->prt[0].type = FC_TYPE_ELS;
dea31012005-04-17 16:05:31 -05009155 pring->prt[0].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -05009156 lpfc_els_unsol_event;
dea31012005-04-17 16:05:31 -05009157 pring->prt[1].profile = 0; /* Mask 1 */
James Smart6a9c52c2009-10-02 15:16:51 -04009158 pring->prt[1].rctl = FC_RCTL_ELS_REP;
9159 pring->prt[1].type = FC_TYPE_ELS;
dea31012005-04-17 16:05:31 -05009160 pring->prt[1].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -05009161 lpfc_els_unsol_event;
dea31012005-04-17 16:05:31 -05009162 pring->prt[2].profile = 0; /* Mask 2 */
9163 /* NameServer Inquiry */
James Smart6a9c52c2009-10-02 15:16:51 -04009164 pring->prt[2].rctl = FC_RCTL_DD_UNSOL_CTL;
dea31012005-04-17 16:05:31 -05009165 /* NameServer */
James Smart6a9c52c2009-10-02 15:16:51 -04009166 pring->prt[2].type = FC_TYPE_CT;
dea31012005-04-17 16:05:31 -05009167 pring->prt[2].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -05009168 lpfc_ct_unsol_event;
dea31012005-04-17 16:05:31 -05009169 pring->prt[3].profile = 0; /* Mask 3 */
9170 /* NameServer response */
James Smart6a9c52c2009-10-02 15:16:51 -04009171 pring->prt[3].rctl = FC_RCTL_DD_SOL_CTL;
dea31012005-04-17 16:05:31 -05009172 /* NameServer */
James Smart6a9c52c2009-10-02 15:16:51 -04009173 pring->prt[3].type = FC_TYPE_CT;
dea31012005-04-17 16:05:31 -05009174 pring->prt[3].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -05009175 lpfc_ct_unsol_event;
dea31012005-04-17 16:05:31 -05009176 break;
9177 }
James Smart7e56aa22012-08-03 12:35:34 -04009178 totiocbsize += (pring->sli.sli3.numCiocb *
9179 pring->sli.sli3.sizeCiocb) +
9180 (pring->sli.sli3.numRiocb * pring->sli.sli3.sizeRiocb);
dea31012005-04-17 16:05:31 -05009181 }
James Smarted957682007-06-17 19:56:37 -05009182 if (totiocbsize > MAX_SLIM_IOCB_SIZE) {
dea31012005-04-17 16:05:31 -05009183 /* Too many cmd / rsp ring entries in SLI2 SLIM */
James Smarte8b62012007-08-02 11:10:09 -04009184 printk(KERN_ERR "%d:0462 Too many cmd / rsp ring entries in "
9185 "SLI2 SLIM Data: x%x x%lx\n",
9186 phba->brd_no, totiocbsize,
9187 (unsigned long) MAX_SLIM_IOCB_SIZE);
dea31012005-04-17 16:05:31 -05009188 }
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05009189 if (phba->cfg_multi_ring_support == 2)
9190 lpfc_extra_ring_setup(phba);
dea31012005-04-17 16:05:31 -05009191
9192 return 0;
9193}
9194
James Smarte59058c2008-08-24 21:49:00 -04009195/**
James Smart3621a712009-04-06 18:47:14 -04009196 * lpfc_sli_queue_setup - Queue initialization function
James Smarte59058c2008-08-24 21:49:00 -04009197 * @phba: Pointer to HBA context object.
9198 *
9199 * lpfc_sli_queue_setup sets up mailbox queues and iocb queues for each
9200 * ring. This function also initializes ring indices of each ring.
9201 * This function is called during the initialization of the SLI
9202 * interface of an HBA.
9203 * This function is called with no lock held and always returns
9204 * 1.
9205 **/
dea31012005-04-17 16:05:31 -05009206int
James Smart2e0fef82007-06-17 19:56:36 -05009207lpfc_sli_queue_setup(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05009208{
9209 struct lpfc_sli *psli;
9210 struct lpfc_sli_ring *pring;
James Bottomley604a3e32005-10-29 10:28:33 -05009211 int i;
dea31012005-04-17 16:05:31 -05009212
9213 psli = &phba->sli;
James Smart2e0fef82007-06-17 19:56:36 -05009214 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009215 INIT_LIST_HEAD(&psli->mboxq);
James Smart92d7f7b2007-06-17 19:56:38 -05009216 INIT_LIST_HEAD(&psli->mboxq_cmpl);
dea31012005-04-17 16:05:31 -05009217 /* Initialize list headers for txq and txcmplq as double linked lists */
9218 for (i = 0; i < psli->num_rings; i++) {
9219 pring = &psli->ring[i];
9220 pring->ringno = i;
James Smart7e56aa22012-08-03 12:35:34 -04009221 pring->sli.sli3.next_cmdidx = 0;
9222 pring->sli.sli3.local_getidx = 0;
9223 pring->sli.sli3.cmdidx = 0;
James Smart68e814f2014-05-21 08:04:59 -04009224 pring->flag = 0;
dea31012005-04-17 16:05:31 -05009225 INIT_LIST_HEAD(&pring->txq);
9226 INIT_LIST_HEAD(&pring->txcmplq);
9227 INIT_LIST_HEAD(&pring->iocb_continueq);
James Smart9c2face2008-01-11 01:53:18 -05009228 INIT_LIST_HEAD(&pring->iocb_continue_saveq);
dea31012005-04-17 16:05:31 -05009229 INIT_LIST_HEAD(&pring->postbufq);
James Smart7e56aa22012-08-03 12:35:34 -04009230 spin_lock_init(&pring->ring_lock);
dea31012005-04-17 16:05:31 -05009231 }
James Smart2e0fef82007-06-17 19:56:36 -05009232 spin_unlock_irq(&phba->hbalock);
9233 return 1;
dea31012005-04-17 16:05:31 -05009234}
9235
James Smarte59058c2008-08-24 21:49:00 -04009236/**
James Smart04c68492009-05-22 14:52:52 -04009237 * lpfc_sli_mbox_sys_flush - Flush mailbox command sub-system
9238 * @phba: Pointer to HBA context object.
9239 *
9240 * This routine flushes the mailbox command subsystem. It will unconditionally
9241 * flush all the mailbox commands in the three possible stages in the mailbox
9242 * command sub-system: pending mailbox command queue; the outstanding mailbox
9243 * command; and completed mailbox command queue. It is caller's responsibility
9244 * to make sure that the driver is in the proper state to flush the mailbox
9245 * command sub-system. Namely, the posting of mailbox commands into the
9246 * pending mailbox command queue from the various clients must be stopped;
9247 * either the HBA is in a state that it will never works on the outstanding
9248 * mailbox command (such as in EEH or ERATT conditions) or the outstanding
9249 * mailbox command has been completed.
9250 **/
9251static void
9252lpfc_sli_mbox_sys_flush(struct lpfc_hba *phba)
9253{
9254 LIST_HEAD(completions);
9255 struct lpfc_sli *psli = &phba->sli;
9256 LPFC_MBOXQ_t *pmb;
9257 unsigned long iflag;
9258
9259 /* Flush all the mailbox commands in the mbox system */
9260 spin_lock_irqsave(&phba->hbalock, iflag);
9261 /* The pending mailbox command queue */
9262 list_splice_init(&phba->sli.mboxq, &completions);
9263 /* The outstanding active mailbox command */
9264 if (psli->mbox_active) {
9265 list_add_tail(&psli->mbox_active->list, &completions);
9266 psli->mbox_active = NULL;
9267 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
9268 }
9269 /* The completed mailbox command queue */
9270 list_splice_init(&phba->sli.mboxq_cmpl, &completions);
9271 spin_unlock_irqrestore(&phba->hbalock, iflag);
9272
9273 /* Return all flushed mailbox commands with MBX_NOT_FINISHED status */
9274 while (!list_empty(&completions)) {
9275 list_remove_head(&completions, pmb, LPFC_MBOXQ_t, list);
9276 pmb->u.mb.mbxStatus = MBX_NOT_FINISHED;
9277 if (pmb->mbox_cmpl)
9278 pmb->mbox_cmpl(phba, pmb);
9279 }
9280}
9281
9282/**
James Smart3621a712009-04-06 18:47:14 -04009283 * lpfc_sli_host_down - Vport cleanup function
James Smarte59058c2008-08-24 21:49:00 -04009284 * @vport: Pointer to virtual port object.
9285 *
9286 * lpfc_sli_host_down is called to clean up the resources
9287 * associated with a vport before destroying virtual
9288 * port data structures.
9289 * This function does following operations:
9290 * - Free discovery resources associated with this virtual
9291 * port.
9292 * - Free iocbs associated with this virtual port in
9293 * the txq.
9294 * - Send abort for all iocb commands associated with this
9295 * vport in txcmplq.
9296 *
9297 * This function is called with no lock held and always returns 1.
9298 **/
dea31012005-04-17 16:05:31 -05009299int
James Smart92d7f7b2007-06-17 19:56:38 -05009300lpfc_sli_host_down(struct lpfc_vport *vport)
9301{
James Smart858c9f62007-06-17 19:56:39 -05009302 LIST_HEAD(completions);
James Smart92d7f7b2007-06-17 19:56:38 -05009303 struct lpfc_hba *phba = vport->phba;
9304 struct lpfc_sli *psli = &phba->sli;
9305 struct lpfc_sli_ring *pring;
9306 struct lpfc_iocbq *iocb, *next_iocb;
James Smart92d7f7b2007-06-17 19:56:38 -05009307 int i;
9308 unsigned long flags = 0;
9309 uint16_t prev_pring_flag;
9310
9311 lpfc_cleanup_discovery_resources(vport);
9312
9313 spin_lock_irqsave(&phba->hbalock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -05009314 for (i = 0; i < psli->num_rings; i++) {
9315 pring = &psli->ring[i];
9316 prev_pring_flag = pring->flag;
James Smart5e9d9b82008-06-14 22:52:53 -04009317 /* Only slow rings */
9318 if (pring->ringno == LPFC_ELS_RING) {
James Smart858c9f62007-06-17 19:56:39 -05009319 pring->flag |= LPFC_DEFERRED_RING_EVENT;
James Smart5e9d9b82008-06-14 22:52:53 -04009320 /* Set the lpfc data pending flag */
9321 set_bit(LPFC_DATA_READY, &phba->data_flags);
9322 }
James Smart92d7f7b2007-06-17 19:56:38 -05009323 /*
9324 * Error everything on the txq since these iocbs have not been
9325 * given to the FW yet.
9326 */
James Smart92d7f7b2007-06-17 19:56:38 -05009327 list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
9328 if (iocb->vport != vport)
9329 continue;
James Smart858c9f62007-06-17 19:56:39 -05009330 list_move_tail(&iocb->list, &completions);
James Smart92d7f7b2007-06-17 19:56:38 -05009331 }
9332
9333 /* Next issue ABTS for everything on the txcmplq */
9334 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq,
9335 list) {
9336 if (iocb->vport != vport)
9337 continue;
9338 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
9339 }
9340
9341 pring->flag = prev_pring_flag;
9342 }
9343
9344 spin_unlock_irqrestore(&phba->hbalock, flags);
9345
James Smarta257bf92009-04-06 18:48:10 -04009346 /* Cancel all the IOCBs from the completions list */
9347 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
9348 IOERR_SLI_DOWN);
James Smart92d7f7b2007-06-17 19:56:38 -05009349 return 1;
9350}
9351
James Smarte59058c2008-08-24 21:49:00 -04009352/**
James Smart3621a712009-04-06 18:47:14 -04009353 * lpfc_sli_hba_down - Resource cleanup function for the HBA
James Smarte59058c2008-08-24 21:49:00 -04009354 * @phba: Pointer to HBA context object.
9355 *
9356 * This function cleans up all iocb, buffers, mailbox commands
9357 * while shutting down the HBA. This function is called with no
9358 * lock held and always returns 1.
9359 * This function does the following to cleanup driver resources:
9360 * - Free discovery resources for each virtual port
9361 * - Cleanup any pending fabric iocbs
9362 * - Iterate through the iocb txq and free each entry
9363 * in the list.
9364 * - Free up any buffer posted to the HBA
9365 * - Free mailbox commands in the mailbox queue.
9366 **/
James Smart92d7f7b2007-06-17 19:56:38 -05009367int
James Smart2e0fef82007-06-17 19:56:36 -05009368lpfc_sli_hba_down(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05009369{
James Smart2534ba72007-04-25 09:52:20 -04009370 LIST_HEAD(completions);
James Smart2e0fef82007-06-17 19:56:36 -05009371 struct lpfc_sli *psli = &phba->sli;
dea31012005-04-17 16:05:31 -05009372 struct lpfc_sli_ring *pring;
James Smart0ff10d42008-01-11 01:52:36 -05009373 struct lpfc_dmabuf *buf_ptr;
dea31012005-04-17 16:05:31 -05009374 unsigned long flags = 0;
James Smart04c68492009-05-22 14:52:52 -04009375 int i;
9376
9377 /* Shutdown the mailbox command sub-system */
James Smart618a5232012-06-12 13:54:36 -04009378 lpfc_sli_mbox_sys_shutdown(phba, LPFC_MBX_WAIT);
dea31012005-04-17 16:05:31 -05009379
dea31012005-04-17 16:05:31 -05009380 lpfc_hba_down_prep(phba);
9381
James Smart92d7f7b2007-06-17 19:56:38 -05009382 lpfc_fabric_abort_hba(phba);
9383
James Smart2e0fef82007-06-17 19:56:36 -05009384 spin_lock_irqsave(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05009385 for (i = 0; i < psli->num_rings; i++) {
9386 pring = &psli->ring[i];
James Smart5e9d9b82008-06-14 22:52:53 -04009387 /* Only slow rings */
9388 if (pring->ringno == LPFC_ELS_RING) {
James Smart858c9f62007-06-17 19:56:39 -05009389 pring->flag |= LPFC_DEFERRED_RING_EVENT;
James Smart5e9d9b82008-06-14 22:52:53 -04009390 /* Set the lpfc data pending flag */
9391 set_bit(LPFC_DATA_READY, &phba->data_flags);
9392 }
dea31012005-04-17 16:05:31 -05009393
9394 /*
9395 * Error everything on the txq since these iocbs have not been
9396 * given to the FW yet.
9397 */
James Smart2534ba72007-04-25 09:52:20 -04009398 list_splice_init(&pring->txq, &completions);
dea31012005-04-17 16:05:31 -05009399 }
James Smart2e0fef82007-06-17 19:56:36 -05009400 spin_unlock_irqrestore(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05009401
James Smarta257bf92009-04-06 18:48:10 -04009402 /* Cancel all the IOCBs from the completions list */
9403 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
9404 IOERR_SLI_DOWN);
James Smart2534ba72007-04-25 09:52:20 -04009405
James Smart0ff10d42008-01-11 01:52:36 -05009406 spin_lock_irqsave(&phba->hbalock, flags);
9407 list_splice_init(&phba->elsbuf, &completions);
9408 phba->elsbuf_cnt = 0;
9409 phba->elsbuf_prev_cnt = 0;
9410 spin_unlock_irqrestore(&phba->hbalock, flags);
9411
9412 while (!list_empty(&completions)) {
9413 list_remove_head(&completions, buf_ptr,
9414 struct lpfc_dmabuf, list);
9415 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
9416 kfree(buf_ptr);
9417 }
9418
dea31012005-04-17 16:05:31 -05009419 /* Return any active mbox cmds */
9420 del_timer_sync(&psli->mbox_tmo);
James Smart92d7f7b2007-06-17 19:56:38 -05009421
James Smartda0436e2009-05-22 14:51:39 -04009422 spin_lock_irqsave(&phba->pport->work_port_lock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -05009423 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
James Smartda0436e2009-05-22 14:51:39 -04009424 spin_unlock_irqrestore(&phba->pport->work_port_lock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -05009425
James Smartda0436e2009-05-22 14:51:39 -04009426 return 1;
9427}
James Smart92d7f7b2007-06-17 19:56:38 -05009428
James Smartda0436e2009-05-22 14:51:39 -04009429/**
James Smart3621a712009-04-06 18:47:14 -04009430 * lpfc_sli_pcimem_bcopy - SLI memory copy function
James Smarte59058c2008-08-24 21:49:00 -04009431 * @srcp: Source memory pointer.
9432 * @destp: Destination memory pointer.
9433 * @cnt: Number of words required to be copied.
9434 *
9435 * This function is used for copying data between driver memory
9436 * and the SLI memory. This function also changes the endianness
9437 * of each word if native endianness is different from SLI
9438 * endianness. This function can be called with or without
9439 * lock.
9440 **/
dea31012005-04-17 16:05:31 -05009441void
9442lpfc_sli_pcimem_bcopy(void *srcp, void *destp, uint32_t cnt)
9443{
9444 uint32_t *src = srcp;
9445 uint32_t *dest = destp;
9446 uint32_t ldata;
9447 int i;
9448
9449 for (i = 0; i < (int)cnt; i += sizeof (uint32_t)) {
9450 ldata = *src;
9451 ldata = le32_to_cpu(ldata);
9452 *dest = ldata;
9453 src++;
9454 dest++;
9455 }
9456}
9457
James Smarte59058c2008-08-24 21:49:00 -04009458
9459/**
James Smarta0c87cb2009-07-19 10:01:10 -04009460 * lpfc_sli_bemem_bcopy - SLI memory copy function
9461 * @srcp: Source memory pointer.
9462 * @destp: Destination memory pointer.
9463 * @cnt: Number of words required to be copied.
9464 *
9465 * This function is used for copying data between a data structure
9466 * with big endian representation to local endianness.
9467 * This function can be called with or without lock.
9468 **/
9469void
9470lpfc_sli_bemem_bcopy(void *srcp, void *destp, uint32_t cnt)
9471{
9472 uint32_t *src = srcp;
9473 uint32_t *dest = destp;
9474 uint32_t ldata;
9475 int i;
9476
9477 for (i = 0; i < (int)cnt; i += sizeof(uint32_t)) {
9478 ldata = *src;
9479 ldata = be32_to_cpu(ldata);
9480 *dest = ldata;
9481 src++;
9482 dest++;
9483 }
9484}
9485
9486/**
James Smart3621a712009-04-06 18:47:14 -04009487 * lpfc_sli_ringpostbuf_put - Function to add a buffer to postbufq
James Smarte59058c2008-08-24 21:49:00 -04009488 * @phba: Pointer to HBA context object.
9489 * @pring: Pointer to driver SLI ring object.
9490 * @mp: Pointer to driver buffer object.
9491 *
9492 * This function is called with no lock held.
9493 * It always return zero after adding the buffer to the postbufq
9494 * buffer list.
9495 **/
dea31012005-04-17 16:05:31 -05009496int
James Smart2e0fef82007-06-17 19:56:36 -05009497lpfc_sli_ringpostbuf_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9498 struct lpfc_dmabuf *mp)
dea31012005-04-17 16:05:31 -05009499{
9500 /* Stick struct lpfc_dmabuf at end of postbufq so driver can look it up
9501 later */
James Smart2e0fef82007-06-17 19:56:36 -05009502 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009503 list_add_tail(&mp->list, &pring->postbufq);
dea31012005-04-17 16:05:31 -05009504 pring->postbufq_cnt++;
James Smart2e0fef82007-06-17 19:56:36 -05009505 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009506 return 0;
9507}
9508
James Smarte59058c2008-08-24 21:49:00 -04009509/**
James Smart3621a712009-04-06 18:47:14 -04009510 * lpfc_sli_get_buffer_tag - allocates a tag for a CMD_QUE_XRI64_CX buffer
James Smarte59058c2008-08-24 21:49:00 -04009511 * @phba: Pointer to HBA context object.
9512 *
9513 * When HBQ is enabled, buffers are searched based on tags. This function
9514 * allocates a tag for buffer posted using CMD_QUE_XRI64_CX iocb. The
9515 * tag is bit wise or-ed with QUE_BUFTAG_BIT to make sure that the tag
9516 * does not conflict with tags of buffer posted for unsolicited events.
9517 * The function returns the allocated tag. The function is called with
9518 * no locks held.
9519 **/
James Smart76bb24e2007-10-27 13:38:00 -04009520uint32_t
9521lpfc_sli_get_buffer_tag(struct lpfc_hba *phba)
9522{
9523 spin_lock_irq(&phba->hbalock);
9524 phba->buffer_tag_count++;
9525 /*
9526 * Always set the QUE_BUFTAG_BIT to distiguish between
9527 * a tag assigned by HBQ.
9528 */
9529 phba->buffer_tag_count |= QUE_BUFTAG_BIT;
9530 spin_unlock_irq(&phba->hbalock);
9531 return phba->buffer_tag_count;
9532}
9533
James Smarte59058c2008-08-24 21:49:00 -04009534/**
James Smart3621a712009-04-06 18:47:14 -04009535 * lpfc_sli_ring_taggedbuf_get - find HBQ buffer associated with given tag
James Smarte59058c2008-08-24 21:49:00 -04009536 * @phba: Pointer to HBA context object.
9537 * @pring: Pointer to driver SLI ring object.
9538 * @tag: Buffer tag.
9539 *
9540 * Buffers posted using CMD_QUE_XRI64_CX iocb are in pring->postbufq
9541 * list. After HBA DMA data to these buffers, CMD_IOCB_RET_XRI64_CX
9542 * iocb is posted to the response ring with the tag of the buffer.
9543 * This function searches the pring->postbufq list using the tag
9544 * to find buffer associated with CMD_IOCB_RET_XRI64_CX
9545 * iocb. If the buffer is found then lpfc_dmabuf object of the
9546 * buffer is returned to the caller else NULL is returned.
9547 * This function is called with no lock held.
9548 **/
James Smart76bb24e2007-10-27 13:38:00 -04009549struct lpfc_dmabuf *
9550lpfc_sli_ring_taggedbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9551 uint32_t tag)
9552{
9553 struct lpfc_dmabuf *mp, *next_mp;
9554 struct list_head *slp = &pring->postbufq;
9555
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009556 /* Search postbufq, from the beginning, looking for a match on tag */
James Smart76bb24e2007-10-27 13:38:00 -04009557 spin_lock_irq(&phba->hbalock);
9558 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
9559 if (mp->buffer_tag == tag) {
9560 list_del_init(&mp->list);
9561 pring->postbufq_cnt--;
9562 spin_unlock_irq(&phba->hbalock);
9563 return mp;
9564 }
9565 }
9566
9567 spin_unlock_irq(&phba->hbalock);
9568 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smartd7c255b2008-08-24 21:50:00 -04009569 "0402 Cannot find virtual addr for buffer tag on "
James Smart76bb24e2007-10-27 13:38:00 -04009570 "ring %d Data x%lx x%p x%p x%x\n",
9571 pring->ringno, (unsigned long) tag,
9572 slp->next, slp->prev, pring->postbufq_cnt);
9573
9574 return NULL;
9575}
dea31012005-04-17 16:05:31 -05009576
James Smarte59058c2008-08-24 21:49:00 -04009577/**
James Smart3621a712009-04-06 18:47:14 -04009578 * lpfc_sli_ringpostbuf_get - search buffers for unsolicited CT and ELS events
James Smarte59058c2008-08-24 21:49:00 -04009579 * @phba: Pointer to HBA context object.
9580 * @pring: Pointer to driver SLI ring object.
9581 * @phys: DMA address of the buffer.
9582 *
9583 * This function searches the buffer list using the dma_address
9584 * of unsolicited event to find the driver's lpfc_dmabuf object
9585 * corresponding to the dma_address. The function returns the
9586 * lpfc_dmabuf object if a buffer is found else it returns NULL.
9587 * This function is called by the ct and els unsolicited event
9588 * handlers to get the buffer associated with the unsolicited
9589 * event.
9590 *
9591 * This function is called with no lock held.
9592 **/
dea31012005-04-17 16:05:31 -05009593struct lpfc_dmabuf *
9594lpfc_sli_ringpostbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9595 dma_addr_t phys)
9596{
9597 struct lpfc_dmabuf *mp, *next_mp;
9598 struct list_head *slp = &pring->postbufq;
9599
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009600 /* Search postbufq, from the beginning, looking for a match on phys */
James Smart2e0fef82007-06-17 19:56:36 -05009601 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009602 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
9603 if (mp->phys == phys) {
9604 list_del_init(&mp->list);
9605 pring->postbufq_cnt--;
James Smart2e0fef82007-06-17 19:56:36 -05009606 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009607 return mp;
9608 }
9609 }
9610
James Smart2e0fef82007-06-17 19:56:36 -05009611 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009612 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04009613 "0410 Cannot find virtual addr for mapped buf on "
dea31012005-04-17 16:05:31 -05009614 "ring %d Data x%llx x%p x%p x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04009615 pring->ringno, (unsigned long long)phys,
dea31012005-04-17 16:05:31 -05009616 slp->next, slp->prev, pring->postbufq_cnt);
9617 return NULL;
9618}
9619
James Smarte59058c2008-08-24 21:49:00 -04009620/**
James Smart3621a712009-04-06 18:47:14 -04009621 * lpfc_sli_abort_els_cmpl - Completion handler for the els abort iocbs
James Smarte59058c2008-08-24 21:49:00 -04009622 * @phba: Pointer to HBA context object.
9623 * @cmdiocb: Pointer to driver command iocb object.
9624 * @rspiocb: Pointer to driver response iocb object.
9625 *
9626 * This function is the completion handler for the abort iocbs for
9627 * ELS commands. This function is called from the ELS ring event
9628 * handler with no lock held. This function frees memory resources
9629 * associated with the abort iocb.
9630 **/
dea31012005-04-17 16:05:31 -05009631static void
James Smart2e0fef82007-06-17 19:56:36 -05009632lpfc_sli_abort_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
9633 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05009634{
James Smart2e0fef82007-06-17 19:56:36 -05009635 IOCB_t *irsp = &rspiocb->iocb;
James Smart2680eea2007-04-25 09:52:55 -04009636 uint16_t abort_iotag, abort_context;
James Smartff78d8f2011-12-13 13:21:35 -05009637 struct lpfc_iocbq *abort_iocb = NULL;
James Smart2680eea2007-04-25 09:52:55 -04009638
9639 if (irsp->ulpStatus) {
James Smartff78d8f2011-12-13 13:21:35 -05009640
9641 /*
9642 * Assume that the port already completed and returned, or
9643 * will return the iocb. Just Log the message.
9644 */
James Smart2680eea2007-04-25 09:52:55 -04009645 abort_context = cmdiocb->iocb.un.acxri.abortContextTag;
9646 abort_iotag = cmdiocb->iocb.un.acxri.abortIoTag;
9647
James Smart2e0fef82007-06-17 19:56:36 -05009648 spin_lock_irq(&phba->hbalock);
James Smart45ed1192009-10-02 15:17:02 -04009649 if (phba->sli_rev < LPFC_SLI_REV4) {
9650 if (abort_iotag != 0 &&
9651 abort_iotag <= phba->sli.last_iotag)
9652 abort_iocb =
9653 phba->sli.iocbq_lookup[abort_iotag];
9654 } else
9655 /* For sli4 the abort_tag is the XRI,
9656 * so the abort routine puts the iotag of the iocb
9657 * being aborted in the context field of the abort
9658 * IOCB.
9659 */
9660 abort_iocb = phba->sli.iocbq_lookup[abort_context];
James Smart2680eea2007-04-25 09:52:55 -04009661
James Smart2a9bf3d2010-06-07 15:24:45 -04009662 lpfc_printf_log(phba, KERN_WARNING, LOG_ELS | LOG_SLI,
9663 "0327 Cannot abort els iocb %p "
9664 "with tag %x context %x, abort status %x, "
9665 "abort code %x\n",
9666 abort_iocb, abort_iotag, abort_context,
9667 irsp->ulpStatus, irsp->un.ulpWord[4]);
James Smart2680eea2007-04-25 09:52:55 -04009668
James Smartff78d8f2011-12-13 13:21:35 -05009669 spin_unlock_irq(&phba->hbalock);
James Smart2680eea2007-04-25 09:52:55 -04009670 }
James Bottomley604a3e32005-10-29 10:28:33 -05009671 lpfc_sli_release_iocbq(phba, cmdiocb);
dea31012005-04-17 16:05:31 -05009672 return;
9673}
9674
James Smarte59058c2008-08-24 21:49:00 -04009675/**
James Smart3621a712009-04-06 18:47:14 -04009676 * lpfc_ignore_els_cmpl - Completion handler for aborted ELS command
James Smarte59058c2008-08-24 21:49:00 -04009677 * @phba: Pointer to HBA context object.
9678 * @cmdiocb: Pointer to driver command iocb object.
9679 * @rspiocb: Pointer to driver response iocb object.
9680 *
9681 * The function is called from SLI ring event handler with no
9682 * lock held. This function is the completion handler for ELS commands
9683 * which are aborted. The function frees memory resources used for
9684 * the aborted ELS commands.
9685 **/
James Smart92d7f7b2007-06-17 19:56:38 -05009686static void
9687lpfc_ignore_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
9688 struct lpfc_iocbq *rspiocb)
9689{
9690 IOCB_t *irsp = &rspiocb->iocb;
9691
9692 /* ELS cmd tag <ulpIoTag> completes */
9693 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
James Smartd7c255b2008-08-24 21:50:00 -04009694 "0139 Ignoring ELS cmd tag x%x completion Data: "
James Smart92d7f7b2007-06-17 19:56:38 -05009695 "x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04009696 irsp->ulpIoTag, irsp->ulpStatus,
James Smart92d7f7b2007-06-17 19:56:38 -05009697 irsp->un.ulpWord[4], irsp->ulpTimeout);
James Smart858c9f62007-06-17 19:56:39 -05009698 if (cmdiocb->iocb.ulpCommand == CMD_GEN_REQUEST64_CR)
9699 lpfc_ct_free_iocb(phba, cmdiocb);
9700 else
9701 lpfc_els_free_iocb(phba, cmdiocb);
James Smart92d7f7b2007-06-17 19:56:38 -05009702 return;
9703}
9704
James Smarte59058c2008-08-24 21:49:00 -04009705/**
James Smart5af5eee2010-10-22 11:06:38 -04009706 * lpfc_sli_abort_iotag_issue - Issue abort for a command iocb
James Smarte59058c2008-08-24 21:49:00 -04009707 * @phba: Pointer to HBA context object.
9708 * @pring: Pointer to driver SLI ring object.
9709 * @cmdiocb: Pointer to driver command iocb object.
9710 *
James Smart5af5eee2010-10-22 11:06:38 -04009711 * This function issues an abort iocb for the provided command iocb down to
9712 * the port. Other than the case the outstanding command iocb is an abort
9713 * request, this function issues abort out unconditionally. This function is
9714 * called with hbalock held. The function returns 0 when it fails due to
9715 * memory allocation failure or when the command iocb is an abort request.
James Smarte59058c2008-08-24 21:49:00 -04009716 **/
James Smart5af5eee2010-10-22 11:06:38 -04009717static int
9718lpfc_sli_abort_iotag_issue(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart2e0fef82007-06-17 19:56:36 -05009719 struct lpfc_iocbq *cmdiocb)
dea31012005-04-17 16:05:31 -05009720{
James Smart2e0fef82007-06-17 19:56:36 -05009721 struct lpfc_vport *vport = cmdiocb->vport;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009722 struct lpfc_iocbq *abtsiocbp;
dea31012005-04-17 16:05:31 -05009723 IOCB_t *icmd = NULL;
9724 IOCB_t *iabt = NULL;
James Smart9bd2bff52014-09-03 12:57:30 -04009725 int ring_number;
James Smart5af5eee2010-10-22 11:06:38 -04009726 int retval;
James Smart7e56aa22012-08-03 12:35:34 -04009727 unsigned long iflags;
James Smart07951072007-04-25 09:51:38 -04009728
James Smart92d7f7b2007-06-17 19:56:38 -05009729 /*
9730 * There are certain command types we don't want to abort. And we
9731 * don't want to abort commands that are already in the process of
9732 * being aborted.
James Smart07951072007-04-25 09:51:38 -04009733 */
9734 icmd = &cmdiocb->iocb;
James Smart2e0fef82007-06-17 19:56:36 -05009735 if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
James Smart92d7f7b2007-06-17 19:56:38 -05009736 icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
9737 (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
James Smart07951072007-04-25 09:51:38 -04009738 return 0;
9739
dea31012005-04-17 16:05:31 -05009740 /* issue ABTS for this IOCB based on iotag */
James Smart92d7f7b2007-06-17 19:56:38 -05009741 abtsiocbp = __lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -05009742 if (abtsiocbp == NULL)
9743 return 0;
dea31012005-04-17 16:05:31 -05009744
James Smart07951072007-04-25 09:51:38 -04009745 /* This signals the response to set the correct status
James Smart341af102010-01-26 23:07:37 -05009746 * before calling the completion handler
James Smart07951072007-04-25 09:51:38 -04009747 */
9748 cmdiocb->iocb_flag |= LPFC_DRIVER_ABORTED;
9749
dea31012005-04-17 16:05:31 -05009750 iabt = &abtsiocbp->iocb;
James Smart07951072007-04-25 09:51:38 -04009751 iabt->un.acxri.abortType = ABORT_TYPE_ABTS;
9752 iabt->un.acxri.abortContextTag = icmd->ulpContext;
James Smart45ed1192009-10-02 15:17:02 -04009753 if (phba->sli_rev == LPFC_SLI_REV4) {
James Smartda0436e2009-05-22 14:51:39 -04009754 iabt->un.acxri.abortIoTag = cmdiocb->sli4_xritag;
James Smart45ed1192009-10-02 15:17:02 -04009755 iabt->un.acxri.abortContextTag = cmdiocb->iotag;
9756 }
James Smartda0436e2009-05-22 14:51:39 -04009757 else
9758 iabt->un.acxri.abortIoTag = icmd->ulpIoTag;
dea31012005-04-17 16:05:31 -05009759 iabt->ulpLe = 1;
James Smart07951072007-04-25 09:51:38 -04009760 iabt->ulpClass = icmd->ulpClass;
dea31012005-04-17 16:05:31 -05009761
James Smart5ffc2662009-11-18 15:39:44 -05009762 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
9763 abtsiocbp->fcp_wqidx = cmdiocb->fcp_wqidx;
James Smart341af102010-01-26 23:07:37 -05009764 if (cmdiocb->iocb_flag & LPFC_IO_FCP)
9765 abtsiocbp->iocb_flag |= LPFC_USE_FCPWQIDX;
James Smart9bd2bff52014-09-03 12:57:30 -04009766 if (cmdiocb->iocb_flag & LPFC_IO_FOF)
9767 abtsiocbp->iocb_flag |= LPFC_IO_FOF;
James Smart5ffc2662009-11-18 15:39:44 -05009768
James Smart2e0fef82007-06-17 19:56:36 -05009769 if (phba->link_state >= LPFC_LINK_UP)
James Smart07951072007-04-25 09:51:38 -04009770 iabt->ulpCommand = CMD_ABORT_XRI_CN;
9771 else
9772 iabt->ulpCommand = CMD_CLOSE_XRI_CN;
9773
9774 abtsiocbp->iocb_cmpl = lpfc_sli_abort_els_cmpl;
James Smart5b8bd0c2007-04-25 09:52:49 -04009775
James Smarte8b62012007-08-02 11:10:09 -04009776 lpfc_printf_vlog(vport, KERN_INFO, LOG_SLI,
9777 "0339 Abort xri x%x, original iotag x%x, "
9778 "abort cmd iotag x%x\n",
James Smart2a9bf3d2010-06-07 15:24:45 -04009779 iabt->un.acxri.abortIoTag,
James Smarte8b62012007-08-02 11:10:09 -04009780 iabt->un.acxri.abortContextTag,
James Smart2a9bf3d2010-06-07 15:24:45 -04009781 abtsiocbp->iotag);
James Smart7e56aa22012-08-03 12:35:34 -04009782
9783 if (phba->sli_rev == LPFC_SLI_REV4) {
James Smart9bd2bff52014-09-03 12:57:30 -04009784 ring_number =
9785 lpfc_sli_calc_ring(phba, pring->ringno, abtsiocbp);
9786 if (unlikely(ring_number == LPFC_HBA_ERROR))
9787 return 0;
9788 pring = &phba->sli.ring[ring_number];
James Smart7e56aa22012-08-03 12:35:34 -04009789 /* Note: both hbalock and ring_lock need to be set here */
9790 spin_lock_irqsave(&pring->ring_lock, iflags);
9791 retval = __lpfc_sli_issue_iocb(phba, pring->ringno,
9792 abtsiocbp, 0);
9793 spin_unlock_irqrestore(&pring->ring_lock, iflags);
9794 } else {
9795 retval = __lpfc_sli_issue_iocb(phba, pring->ringno,
9796 abtsiocbp, 0);
9797 }
James Smart07951072007-04-25 09:51:38 -04009798
James Smartd7c255b2008-08-24 21:50:00 -04009799 if (retval)
9800 __lpfc_sli_release_iocbq(phba, abtsiocbp);
James Smart5af5eee2010-10-22 11:06:38 -04009801
9802 /*
9803 * Caller to this routine should check for IOCB_ERROR
9804 * and handle it properly. This routine no longer removes
9805 * iocb off txcmplq and call compl in case of IOCB_ERROR.
9806 */
9807 return retval;
9808}
9809
9810/**
9811 * lpfc_sli_issue_abort_iotag - Abort function for a command iocb
9812 * @phba: Pointer to HBA context object.
9813 * @pring: Pointer to driver SLI ring object.
9814 * @cmdiocb: Pointer to driver command iocb object.
9815 *
9816 * This function issues an abort iocb for the provided command iocb. In case
9817 * of unloading, the abort iocb will not be issued to commands on the ELS
9818 * ring. Instead, the callback function shall be changed to those commands
9819 * so that nothing happens when them finishes. This function is called with
9820 * hbalock held. The function returns 0 when the command iocb is an abort
9821 * request.
9822 **/
9823int
9824lpfc_sli_issue_abort_iotag(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9825 struct lpfc_iocbq *cmdiocb)
9826{
9827 struct lpfc_vport *vport = cmdiocb->vport;
9828 int retval = IOCB_ERROR;
9829 IOCB_t *icmd = NULL;
9830
9831 /*
9832 * There are certain command types we don't want to abort. And we
9833 * don't want to abort commands that are already in the process of
9834 * being aborted.
9835 */
9836 icmd = &cmdiocb->iocb;
9837 if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
9838 icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
9839 (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
9840 return 0;
9841
9842 /*
9843 * If we're unloading, don't abort iocb on the ELS ring, but change
9844 * the callback so that nothing happens when it finishes.
9845 */
9846 if ((vport->load_flag & FC_UNLOADING) &&
9847 (pring->ringno == LPFC_ELS_RING)) {
9848 if (cmdiocb->iocb_flag & LPFC_IO_FABRIC)
9849 cmdiocb->fabric_iocb_cmpl = lpfc_ignore_els_cmpl;
9850 else
9851 cmdiocb->iocb_cmpl = lpfc_ignore_els_cmpl;
9852 goto abort_iotag_exit;
9853 }
9854
9855 /* Now, we try to issue the abort to the cmdiocb out */
9856 retval = lpfc_sli_abort_iotag_issue(phba, pring, cmdiocb);
9857
James Smart07951072007-04-25 09:51:38 -04009858abort_iotag_exit:
James Smart2e0fef82007-06-17 19:56:36 -05009859 /*
9860 * Caller to this routine should check for IOCB_ERROR
9861 * and handle it properly. This routine no longer removes
9862 * iocb off txcmplq and call compl in case of IOCB_ERROR.
James Smart07951072007-04-25 09:51:38 -04009863 */
James Smart2e0fef82007-06-17 19:56:36 -05009864 return retval;
dea31012005-04-17 16:05:31 -05009865}
9866
James Smarte59058c2008-08-24 21:49:00 -04009867/**
James Smart5af5eee2010-10-22 11:06:38 -04009868 * lpfc_sli_hba_iocb_abort - Abort all iocbs to an hba.
9869 * @phba: pointer to lpfc HBA data structure.
9870 *
9871 * This routine will abort all pending and outstanding iocbs to an HBA.
9872 **/
9873void
9874lpfc_sli_hba_iocb_abort(struct lpfc_hba *phba)
9875{
9876 struct lpfc_sli *psli = &phba->sli;
9877 struct lpfc_sli_ring *pring;
9878 int i;
9879
9880 for (i = 0; i < psli->num_rings; i++) {
9881 pring = &psli->ring[i];
James Smartdb55fba2014-04-04 13:52:02 -04009882 lpfc_sli_abort_iocb_ring(phba, pring);
James Smart5af5eee2010-10-22 11:06:38 -04009883 }
9884}
9885
9886/**
James Smart3621a712009-04-06 18:47:14 -04009887 * lpfc_sli_validate_fcp_iocb - find commands associated with a vport or LUN
James Smarte59058c2008-08-24 21:49:00 -04009888 * @iocbq: Pointer to driver iocb object.
9889 * @vport: Pointer to driver virtual port object.
9890 * @tgt_id: SCSI ID of the target.
9891 * @lun_id: LUN ID of the scsi device.
9892 * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST
9893 *
James Smart3621a712009-04-06 18:47:14 -04009894 * This function acts as an iocb filter for functions which abort or count
James Smarte59058c2008-08-24 21:49:00 -04009895 * all FCP iocbs pending on a lun/SCSI target/SCSI host. It will return
9896 * 0 if the filtering criteria is met for the given iocb and will return
9897 * 1 if the filtering criteria is not met.
9898 * If ctx_cmd == LPFC_CTX_LUN, the function returns 0 only if the
9899 * given iocb is for the SCSI device specified by vport, tgt_id and
9900 * lun_id parameter.
9901 * If ctx_cmd == LPFC_CTX_TGT, the function returns 0 only if the
9902 * given iocb is for the SCSI target specified by vport and tgt_id
9903 * parameters.
9904 * If ctx_cmd == LPFC_CTX_HOST, the function returns 0 only if the
9905 * given iocb is for the SCSI host associated with the given vport.
9906 * This function is called with no locks held.
9907 **/
dea31012005-04-17 16:05:31 -05009908static int
James Smart51ef4c22007-08-02 11:10:31 -04009909lpfc_sli_validate_fcp_iocb(struct lpfc_iocbq *iocbq, struct lpfc_vport *vport,
9910 uint16_t tgt_id, uint64_t lun_id,
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009911 lpfc_ctx_cmd ctx_cmd)
dea31012005-04-17 16:05:31 -05009912{
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009913 struct lpfc_scsi_buf *lpfc_cmd;
dea31012005-04-17 16:05:31 -05009914 int rc = 1;
9915
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009916 if (!(iocbq->iocb_flag & LPFC_IO_FCP))
9917 return rc;
9918
James Smart51ef4c22007-08-02 11:10:31 -04009919 if (iocbq->vport != vport)
9920 return rc;
9921
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009922 lpfc_cmd = container_of(iocbq, struct lpfc_scsi_buf, cur_iocbq);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009923
James Smart495a7142008-06-14 22:52:59 -04009924 if (lpfc_cmd->pCmd == NULL)
dea31012005-04-17 16:05:31 -05009925 return rc;
9926
9927 switch (ctx_cmd) {
9928 case LPFC_CTX_LUN:
James Smart495a7142008-06-14 22:52:59 -04009929 if ((lpfc_cmd->rdata->pnode) &&
9930 (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id) &&
9931 (scsilun_to_int(&lpfc_cmd->fcp_cmnd->fcp_lun) == lun_id))
dea31012005-04-17 16:05:31 -05009932 rc = 0;
9933 break;
9934 case LPFC_CTX_TGT:
James Smart495a7142008-06-14 22:52:59 -04009935 if ((lpfc_cmd->rdata->pnode) &&
9936 (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id))
dea31012005-04-17 16:05:31 -05009937 rc = 0;
9938 break;
dea31012005-04-17 16:05:31 -05009939 case LPFC_CTX_HOST:
9940 rc = 0;
9941 break;
9942 default:
9943 printk(KERN_ERR "%s: Unknown context cmd type, value %d\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07009944 __func__, ctx_cmd);
dea31012005-04-17 16:05:31 -05009945 break;
9946 }
9947
9948 return rc;
9949}
9950
James Smarte59058c2008-08-24 21:49:00 -04009951/**
James Smart3621a712009-04-06 18:47:14 -04009952 * lpfc_sli_sum_iocb - Function to count the number of FCP iocbs pending
James Smarte59058c2008-08-24 21:49:00 -04009953 * @vport: Pointer to virtual port.
9954 * @tgt_id: SCSI ID of the target.
9955 * @lun_id: LUN ID of the scsi device.
9956 * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
9957 *
9958 * This function returns number of FCP commands pending for the vport.
9959 * When ctx_cmd == LPFC_CTX_LUN, the function returns number of FCP
9960 * commands pending on the vport associated with SCSI device specified
9961 * by tgt_id and lun_id parameters.
9962 * When ctx_cmd == LPFC_CTX_TGT, the function returns number of FCP
9963 * commands pending on the vport associated with SCSI target specified
9964 * by tgt_id parameter.
9965 * When ctx_cmd == LPFC_CTX_HOST, the function returns number of FCP
9966 * commands pending on the vport.
9967 * This function returns the number of iocbs which satisfy the filter.
9968 * This function is called without any lock held.
9969 **/
dea31012005-04-17 16:05:31 -05009970int
James Smart51ef4c22007-08-02 11:10:31 -04009971lpfc_sli_sum_iocb(struct lpfc_vport *vport, uint16_t tgt_id, uint64_t lun_id,
9972 lpfc_ctx_cmd ctx_cmd)
dea31012005-04-17 16:05:31 -05009973{
James Smart51ef4c22007-08-02 11:10:31 -04009974 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009975 struct lpfc_iocbq *iocbq;
9976 int sum, i;
dea31012005-04-17 16:05:31 -05009977
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009978 for (i = 1, sum = 0; i <= phba->sli.last_iotag; i++) {
9979 iocbq = phba->sli.iocbq_lookup[i];
dea31012005-04-17 16:05:31 -05009980
James Smart51ef4c22007-08-02 11:10:31 -04009981 if (lpfc_sli_validate_fcp_iocb (iocbq, vport, tgt_id, lun_id,
9982 ctx_cmd) == 0)
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009983 sum++;
dea31012005-04-17 16:05:31 -05009984 }
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009985
dea31012005-04-17 16:05:31 -05009986 return sum;
9987}
9988
James Smarte59058c2008-08-24 21:49:00 -04009989/**
James Smart3621a712009-04-06 18:47:14 -04009990 * lpfc_sli_abort_fcp_cmpl - Completion handler function for aborted FCP IOCBs
James Smarte59058c2008-08-24 21:49:00 -04009991 * @phba: Pointer to HBA context object
9992 * @cmdiocb: Pointer to command iocb object.
9993 * @rspiocb: Pointer to response iocb object.
9994 *
9995 * This function is called when an aborted FCP iocb completes. This
9996 * function is called by the ring event handler with no lock held.
9997 * This function frees the iocb.
9998 **/
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -04009999void
James Smart2e0fef82007-06-17 19:56:36 -050010000lpfc_sli_abort_fcp_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
10001 struct lpfc_iocbq *rspiocb)
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -040010002{
James Smartcb69f7d2011-12-13 13:21:57 -050010003 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smart8e668af2013-05-31 17:04:28 -040010004 "3096 ABORT_XRI_CN completing on rpi x%x "
James Smartcb69f7d2011-12-13 13:21:57 -050010005 "original iotag x%x, abort cmd iotag x%x "
10006 "status 0x%x, reason 0x%x\n",
10007 cmdiocb->iocb.un.acxri.abortContextTag,
10008 cmdiocb->iocb.un.acxri.abortIoTag,
10009 cmdiocb->iotag, rspiocb->iocb.ulpStatus,
10010 rspiocb->iocb.un.ulpWord[4]);
James Bottomley604a3e32005-10-29 10:28:33 -050010011 lpfc_sli_release_iocbq(phba, cmdiocb);
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -040010012 return;
10013}
10014
James Smarte59058c2008-08-24 21:49:00 -040010015/**
James Smart3621a712009-04-06 18:47:14 -040010016 * lpfc_sli_abort_iocb - issue abort for all commands on a host/target/LUN
James Smarte59058c2008-08-24 21:49:00 -040010017 * @vport: Pointer to virtual port.
10018 * @pring: Pointer to driver SLI ring object.
10019 * @tgt_id: SCSI ID of the target.
10020 * @lun_id: LUN ID of the scsi device.
10021 * @abort_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
10022 *
10023 * This function sends an abort command for every SCSI command
10024 * associated with the given virtual port pending on the ring
10025 * filtered by lpfc_sli_validate_fcp_iocb function.
10026 * When abort_cmd == LPFC_CTX_LUN, the function sends abort only to the
10027 * FCP iocbs associated with lun specified by tgt_id and lun_id
10028 * parameters
10029 * When abort_cmd == LPFC_CTX_TGT, the function sends abort only to the
10030 * FCP iocbs associated with SCSI target specified by tgt_id parameter.
10031 * When abort_cmd == LPFC_CTX_HOST, the function sends abort to all
10032 * FCP iocbs associated with virtual port.
10033 * This function returns number of iocbs it failed to abort.
10034 * This function is called with no locks held.
10035 **/
dea31012005-04-17 16:05:31 -050010036int
James Smart51ef4c22007-08-02 11:10:31 -040010037lpfc_sli_abort_iocb(struct lpfc_vport *vport, struct lpfc_sli_ring *pring,
10038 uint16_t tgt_id, uint64_t lun_id, lpfc_ctx_cmd abort_cmd)
dea31012005-04-17 16:05:31 -050010039{
James Smart51ef4c22007-08-02 11:10:31 -040010040 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040010041 struct lpfc_iocbq *iocbq;
10042 struct lpfc_iocbq *abtsiocb;
dea31012005-04-17 16:05:31 -050010043 IOCB_t *cmd = NULL;
dea31012005-04-17 16:05:31 -050010044 int errcnt = 0, ret_val = 0;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040010045 int i;
dea31012005-04-17 16:05:31 -050010046
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040010047 for (i = 1; i <= phba->sli.last_iotag; i++) {
10048 iocbq = phba->sli.iocbq_lookup[i];
dea31012005-04-17 16:05:31 -050010049
James Smart51ef4c22007-08-02 11:10:31 -040010050 if (lpfc_sli_validate_fcp_iocb(iocbq, vport, tgt_id, lun_id,
James Smart2e0fef82007-06-17 19:56:36 -050010051 abort_cmd) != 0)
dea31012005-04-17 16:05:31 -050010052 continue;
10053
James Smartafbd8d82013-09-06 12:22:13 -040010054 /*
10055 * If the iocbq is already being aborted, don't take a second
10056 * action, but do count it.
10057 */
10058 if (iocbq->iocb_flag & LPFC_DRIVER_ABORTED)
10059 continue;
10060
dea31012005-04-17 16:05:31 -050010061 /* issue ABTS for this IOCB based on iotag */
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040010062 abtsiocb = lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -050010063 if (abtsiocb == NULL) {
10064 errcnt++;
10065 continue;
10066 }
dea31012005-04-17 16:05:31 -050010067
James Smartafbd8d82013-09-06 12:22:13 -040010068 /* indicate the IO is being aborted by the driver. */
10069 iocbq->iocb_flag |= LPFC_DRIVER_ABORTED;
10070
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040010071 cmd = &iocbq->iocb;
dea31012005-04-17 16:05:31 -050010072 abtsiocb->iocb.un.acxri.abortType = ABORT_TYPE_ABTS;
10073 abtsiocb->iocb.un.acxri.abortContextTag = cmd->ulpContext;
James Smartda0436e2009-05-22 14:51:39 -040010074 if (phba->sli_rev == LPFC_SLI_REV4)
10075 abtsiocb->iocb.un.acxri.abortIoTag = iocbq->sli4_xritag;
10076 else
10077 abtsiocb->iocb.un.acxri.abortIoTag = cmd->ulpIoTag;
dea31012005-04-17 16:05:31 -050010078 abtsiocb->iocb.ulpLe = 1;
10079 abtsiocb->iocb.ulpClass = cmd->ulpClass;
James Smartafbd8d82013-09-06 12:22:13 -040010080 abtsiocb->vport = vport;
dea31012005-04-17 16:05:31 -050010081
James Smart5ffc2662009-11-18 15:39:44 -050010082 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
10083 abtsiocb->fcp_wqidx = iocbq->fcp_wqidx;
James Smart341af102010-01-26 23:07:37 -050010084 if (iocbq->iocb_flag & LPFC_IO_FCP)
10085 abtsiocb->iocb_flag |= LPFC_USE_FCPWQIDX;
James Smart9bd2bff52014-09-03 12:57:30 -040010086 if (iocbq->iocb_flag & LPFC_IO_FOF)
10087 abtsiocb->iocb_flag |= LPFC_IO_FOF;
James Smart5ffc2662009-11-18 15:39:44 -050010088
James Smart2e0fef82007-06-17 19:56:36 -050010089 if (lpfc_is_link_up(phba))
dea31012005-04-17 16:05:31 -050010090 abtsiocb->iocb.ulpCommand = CMD_ABORT_XRI_CN;
10091 else
10092 abtsiocb->iocb.ulpCommand = CMD_CLOSE_XRI_CN;
10093
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -040010094 /* Setup callback routine and issue the command. */
10095 abtsiocb->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
James Smartda0436e2009-05-22 14:51:39 -040010096 ret_val = lpfc_sli_issue_iocb(phba, pring->ringno,
10097 abtsiocb, 0);
dea31012005-04-17 16:05:31 -050010098 if (ret_val == IOCB_ERROR) {
James Bottomley604a3e32005-10-29 10:28:33 -050010099 lpfc_sli_release_iocbq(phba, abtsiocb);
dea31012005-04-17 16:05:31 -050010100 errcnt++;
10101 continue;
10102 }
10103 }
10104
10105 return errcnt;
10106}
10107
James Smarte59058c2008-08-24 21:49:00 -040010108/**
James Smart98912dda2014-04-04 13:52:31 -040010109 * lpfc_sli_abort_taskmgmt - issue abort for all commands on a host/target/LUN
10110 * @vport: Pointer to virtual port.
10111 * @pring: Pointer to driver SLI ring object.
10112 * @tgt_id: SCSI ID of the target.
10113 * @lun_id: LUN ID of the scsi device.
10114 * @taskmgmt_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
10115 *
10116 * This function sends an abort command for every SCSI command
10117 * associated with the given virtual port pending on the ring
10118 * filtered by lpfc_sli_validate_fcp_iocb function.
10119 * When taskmgmt_cmd == LPFC_CTX_LUN, the function sends abort only to the
10120 * FCP iocbs associated with lun specified by tgt_id and lun_id
10121 * parameters
10122 * When taskmgmt_cmd == LPFC_CTX_TGT, the function sends abort only to the
10123 * FCP iocbs associated with SCSI target specified by tgt_id parameter.
10124 * When taskmgmt_cmd == LPFC_CTX_HOST, the function sends abort to all
10125 * FCP iocbs associated with virtual port.
10126 * This function returns number of iocbs it aborted .
10127 * This function is called with no locks held right after a taskmgmt
10128 * command is sent.
10129 **/
10130int
10131lpfc_sli_abort_taskmgmt(struct lpfc_vport *vport, struct lpfc_sli_ring *pring,
10132 uint16_t tgt_id, uint64_t lun_id, lpfc_ctx_cmd cmd)
10133{
10134 struct lpfc_hba *phba = vport->phba;
10135 struct lpfc_iocbq *abtsiocbq;
10136 struct lpfc_iocbq *iocbq;
10137 IOCB_t *icmd;
10138 int sum, i, ret_val;
10139 unsigned long iflags;
10140 struct lpfc_sli_ring *pring_s4;
10141 uint32_t ring_number;
10142
10143 spin_lock_irq(&phba->hbalock);
10144
10145 /* all I/Os are in process of being flushed */
10146 if (phba->hba_flag & HBA_FCP_IOQ_FLUSH) {
10147 spin_unlock_irq(&phba->hbalock);
10148 return 0;
10149 }
10150 sum = 0;
10151
10152 for (i = 1; i <= phba->sli.last_iotag; i++) {
10153 iocbq = phba->sli.iocbq_lookup[i];
10154
10155 if (lpfc_sli_validate_fcp_iocb(iocbq, vport, tgt_id, lun_id,
10156 cmd) != 0)
10157 continue;
10158
10159 /*
10160 * If the iocbq is already being aborted, don't take a second
10161 * action, but do count it.
10162 */
10163 if (iocbq->iocb_flag & LPFC_DRIVER_ABORTED)
10164 continue;
10165
10166 /* issue ABTS for this IOCB based on iotag */
10167 abtsiocbq = __lpfc_sli_get_iocbq(phba);
10168 if (abtsiocbq == NULL)
10169 continue;
10170
10171 icmd = &iocbq->iocb;
10172 abtsiocbq->iocb.un.acxri.abortType = ABORT_TYPE_ABTS;
10173 abtsiocbq->iocb.un.acxri.abortContextTag = icmd->ulpContext;
10174 if (phba->sli_rev == LPFC_SLI_REV4)
10175 abtsiocbq->iocb.un.acxri.abortIoTag =
10176 iocbq->sli4_xritag;
10177 else
10178 abtsiocbq->iocb.un.acxri.abortIoTag = icmd->ulpIoTag;
10179 abtsiocbq->iocb.ulpLe = 1;
10180 abtsiocbq->iocb.ulpClass = icmd->ulpClass;
10181 abtsiocbq->vport = vport;
10182
10183 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
10184 abtsiocbq->fcp_wqidx = iocbq->fcp_wqidx;
10185 if (iocbq->iocb_flag & LPFC_IO_FCP)
10186 abtsiocbq->iocb_flag |= LPFC_USE_FCPWQIDX;
James Smart9bd2bff52014-09-03 12:57:30 -040010187 if (iocbq->iocb_flag & LPFC_IO_FOF)
10188 abtsiocbq->iocb_flag |= LPFC_IO_FOF;
James Smart98912dda2014-04-04 13:52:31 -040010189
10190 if (lpfc_is_link_up(phba))
10191 abtsiocbq->iocb.ulpCommand = CMD_ABORT_XRI_CN;
10192 else
10193 abtsiocbq->iocb.ulpCommand = CMD_CLOSE_XRI_CN;
10194
10195 /* Setup callback routine and issue the command. */
10196 abtsiocbq->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
10197
10198 /*
10199 * Indicate the IO is being aborted by the driver and set
10200 * the caller's flag into the aborted IO.
10201 */
10202 iocbq->iocb_flag |= LPFC_DRIVER_ABORTED;
10203
10204 if (phba->sli_rev == LPFC_SLI_REV4) {
10205 ring_number = MAX_SLI3_CONFIGURED_RINGS +
10206 iocbq->fcp_wqidx;
10207 pring_s4 = &phba->sli.ring[ring_number];
10208 /* Note: both hbalock and ring_lock must be set here */
10209 spin_lock_irqsave(&pring_s4->ring_lock, iflags);
10210 ret_val = __lpfc_sli_issue_iocb(phba, pring_s4->ringno,
10211 abtsiocbq, 0);
10212 spin_unlock_irqrestore(&pring_s4->ring_lock, iflags);
10213 } else {
10214 ret_val = __lpfc_sli_issue_iocb(phba, pring->ringno,
10215 abtsiocbq, 0);
10216 }
10217
10218
10219 if (ret_val == IOCB_ERROR)
10220 __lpfc_sli_release_iocbq(phba, abtsiocbq);
10221 else
10222 sum++;
10223 }
10224 spin_unlock_irq(&phba->hbalock);
10225 return sum;
10226}
10227
10228/**
James Smart3621a712009-04-06 18:47:14 -040010229 * lpfc_sli_wake_iocb_wait - lpfc_sli_issue_iocb_wait's completion handler
James Smarte59058c2008-08-24 21:49:00 -040010230 * @phba: Pointer to HBA context object.
10231 * @cmdiocbq: Pointer to command iocb.
10232 * @rspiocbq: Pointer to response iocb.
10233 *
10234 * This function is the completion handler for iocbs issued using
10235 * lpfc_sli_issue_iocb_wait function. This function is called by the
10236 * ring event handler function without any lock held. This function
10237 * can be called from both worker thread context and interrupt
10238 * context. This function also can be called from other thread which
10239 * cleans up the SLI layer objects.
10240 * This function copy the contents of the response iocb to the
10241 * response iocb memory object provided by the caller of
10242 * lpfc_sli_issue_iocb_wait and then wakes up the thread which
10243 * sleeps for the iocb completion.
10244 **/
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010245static void
10246lpfc_sli_wake_iocb_wait(struct lpfc_hba *phba,
10247 struct lpfc_iocbq *cmdiocbq,
10248 struct lpfc_iocbq *rspiocbq)
dea31012005-04-17 16:05:31 -050010249{
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010250 wait_queue_head_t *pdone_q;
10251 unsigned long iflags;
James Smart0f65ff62010-02-26 14:14:23 -050010252 struct lpfc_scsi_buf *lpfc_cmd;
dea31012005-04-17 16:05:31 -050010253
James Smart2e0fef82007-06-17 19:56:36 -050010254 spin_lock_irqsave(&phba->hbalock, iflags);
James Smart5a0916b2013-07-15 18:31:42 -040010255 if (cmdiocbq->iocb_flag & LPFC_IO_WAKE_TMO) {
10256
10257 /*
10258 * A time out has occurred for the iocb. If a time out
10259 * completion handler has been supplied, call it. Otherwise,
10260 * just free the iocbq.
10261 */
10262
10263 spin_unlock_irqrestore(&phba->hbalock, iflags);
10264 cmdiocbq->iocb_cmpl = cmdiocbq->wait_iocb_cmpl;
10265 cmdiocbq->wait_iocb_cmpl = NULL;
10266 if (cmdiocbq->iocb_cmpl)
10267 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq, NULL);
10268 else
10269 lpfc_sli_release_iocbq(phba, cmdiocbq);
10270 return;
10271 }
10272
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010273 cmdiocbq->iocb_flag |= LPFC_IO_WAKE;
10274 if (cmdiocbq->context2 && rspiocbq)
10275 memcpy(&((struct lpfc_iocbq *)cmdiocbq->context2)->iocb,
10276 &rspiocbq->iocb, sizeof(IOCB_t));
10277
James Smart0f65ff62010-02-26 14:14:23 -050010278 /* Set the exchange busy flag for task management commands */
10279 if ((cmdiocbq->iocb_flag & LPFC_IO_FCP) &&
10280 !(cmdiocbq->iocb_flag & LPFC_IO_LIBDFC)) {
10281 lpfc_cmd = container_of(cmdiocbq, struct lpfc_scsi_buf,
10282 cur_iocbq);
10283 lpfc_cmd->exch_busy = rspiocbq->iocb_flag & LPFC_EXCHANGE_BUSY;
10284 }
10285
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010286 pdone_q = cmdiocbq->context_un.wait_queue;
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010287 if (pdone_q)
10288 wake_up(pdone_q);
James Smart858c9f62007-06-17 19:56:39 -050010289 spin_unlock_irqrestore(&phba->hbalock, iflags);
dea31012005-04-17 16:05:31 -050010290 return;
10291}
10292
James Smarte59058c2008-08-24 21:49:00 -040010293/**
James Smartd11e31d2009-06-10 17:23:06 -040010294 * lpfc_chk_iocb_flg - Test IOCB flag with lock held.
10295 * @phba: Pointer to HBA context object..
10296 * @piocbq: Pointer to command iocb.
10297 * @flag: Flag to test.
10298 *
10299 * This routine grabs the hbalock and then test the iocb_flag to
10300 * see if the passed in flag is set.
10301 * Returns:
10302 * 1 if flag is set.
10303 * 0 if flag is not set.
10304 **/
10305static int
10306lpfc_chk_iocb_flg(struct lpfc_hba *phba,
10307 struct lpfc_iocbq *piocbq, uint32_t flag)
10308{
10309 unsigned long iflags;
10310 int ret;
10311
10312 spin_lock_irqsave(&phba->hbalock, iflags);
10313 ret = piocbq->iocb_flag & flag;
10314 spin_unlock_irqrestore(&phba->hbalock, iflags);
10315 return ret;
10316
10317}
10318
10319/**
James Smart3621a712009-04-06 18:47:14 -040010320 * lpfc_sli_issue_iocb_wait - Synchronous function to issue iocb commands
James Smarte59058c2008-08-24 21:49:00 -040010321 * @phba: Pointer to HBA context object..
10322 * @pring: Pointer to sli ring.
10323 * @piocb: Pointer to command iocb.
10324 * @prspiocbq: Pointer to response iocb.
10325 * @timeout: Timeout in number of seconds.
10326 *
10327 * This function issues the iocb to firmware and waits for the
James Smart5a0916b2013-07-15 18:31:42 -040010328 * iocb to complete. The iocb_cmpl field of the shall be used
10329 * to handle iocbs which time out. If the field is NULL, the
10330 * function shall free the iocbq structure. If more clean up is
10331 * needed, the caller is expected to provide a completion function
10332 * that will provide the needed clean up. If the iocb command is
10333 * not completed within timeout seconds, the function will either
10334 * free the iocbq structure (if iocb_cmpl == NULL) or execute the
10335 * completion function set in the iocb_cmpl field and then return
10336 * a status of IOCB_TIMEDOUT. The caller should not free the iocb
10337 * resources if this function returns IOCB_TIMEDOUT.
James Smarte59058c2008-08-24 21:49:00 -040010338 * The function waits for the iocb completion using an
10339 * non-interruptible wait.
10340 * This function will sleep while waiting for iocb completion.
10341 * So, this function should not be called from any context which
10342 * does not allow sleeping. Due to the same reason, this function
10343 * cannot be called with interrupt disabled.
10344 * This function assumes that the iocb completions occur while
10345 * this function sleep. So, this function cannot be called from
10346 * the thread which process iocb completion for this ring.
10347 * This function clears the iocb_flag of the iocb object before
10348 * issuing the iocb and the iocb completion handler sets this
10349 * flag and wakes this thread when the iocb completes.
10350 * The contents of the response iocb will be copied to prspiocbq
10351 * by the completion handler when the command completes.
10352 * This function returns IOCB_SUCCESS when success.
10353 * This function is called with no lock held.
10354 **/
dea31012005-04-17 16:05:31 -050010355int
James Smart2e0fef82007-06-17 19:56:36 -050010356lpfc_sli_issue_iocb_wait(struct lpfc_hba *phba,
James Smartda0436e2009-05-22 14:51:39 -040010357 uint32_t ring_number,
James Smart2e0fef82007-06-17 19:56:36 -050010358 struct lpfc_iocbq *piocb,
10359 struct lpfc_iocbq *prspiocbq,
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010360 uint32_t timeout)
dea31012005-04-17 16:05:31 -050010361{
Peter Zijlstra7259f0d2006-10-29 22:46:36 -080010362 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010363 long timeleft, timeout_req = 0;
10364 int retval = IOCB_SUCCESS;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050010365 uint32_t creg_val;
James Smart0e9bb8d2013-03-01 16:35:12 -050010366 struct lpfc_iocbq *iocb;
10367 int txq_cnt = 0;
10368 int txcmplq_cnt = 0;
James Smart2a9bf3d2010-06-07 15:24:45 -040010369 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
James Smart5a0916b2013-07-15 18:31:42 -040010370 unsigned long iflags;
10371 bool iocb_completed = true;
10372
dea31012005-04-17 16:05:31 -050010373 /*
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010374 * If the caller has provided a response iocbq buffer, then context2
10375 * is NULL or its an error.
dea31012005-04-17 16:05:31 -050010376 */
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010377 if (prspiocbq) {
10378 if (piocb->context2)
10379 return IOCB_ERROR;
10380 piocb->context2 = prspiocbq;
dea31012005-04-17 16:05:31 -050010381 }
10382
James Smart5a0916b2013-07-15 18:31:42 -040010383 piocb->wait_iocb_cmpl = piocb->iocb_cmpl;
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010384 piocb->iocb_cmpl = lpfc_sli_wake_iocb_wait;
10385 piocb->context_un.wait_queue = &done_q;
James Smart5a0916b2013-07-15 18:31:42 -040010386 piocb->iocb_flag &= ~(LPFC_IO_WAKE | LPFC_IO_WAKE_TMO);
dea31012005-04-17 16:05:31 -050010387
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050010388 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
James Smart9940b972011-03-11 16:06:12 -050010389 if (lpfc_readl(phba->HCregaddr, &creg_val))
10390 return IOCB_ERROR;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050010391 creg_val |= (HC_R0INT_ENA << LPFC_FCP_RING);
10392 writel(creg_val, phba->HCregaddr);
10393 readl(phba->HCregaddr); /* flush */
10394 }
10395
James Smart2a9bf3d2010-06-07 15:24:45 -040010396 retval = lpfc_sli_issue_iocb(phba, ring_number, piocb,
10397 SLI_IOCB_RET_IOCB);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010398 if (retval == IOCB_SUCCESS) {
James Smart256ec0d2013-04-17 20:14:58 -040010399 timeout_req = msecs_to_jiffies(timeout * 1000);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010400 timeleft = wait_event_timeout(done_q,
James Smartd11e31d2009-06-10 17:23:06 -040010401 lpfc_chk_iocb_flg(phba, piocb, LPFC_IO_WAKE),
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010402 timeout_req);
James Smart5a0916b2013-07-15 18:31:42 -040010403 spin_lock_irqsave(&phba->hbalock, iflags);
10404 if (!(piocb->iocb_flag & LPFC_IO_WAKE)) {
dea31012005-04-17 16:05:31 -050010405
James Smart5a0916b2013-07-15 18:31:42 -040010406 /*
10407 * IOCB timed out. Inform the wake iocb wait
10408 * completion function and set local status
10409 */
10410
10411 iocb_completed = false;
10412 piocb->iocb_flag |= LPFC_IO_WAKE_TMO;
10413 }
10414 spin_unlock_irqrestore(&phba->hbalock, iflags);
10415 if (iocb_completed) {
James Smart7054a602007-04-25 09:52:34 -040010416 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -040010417 "0331 IOCB wake signaled\n");
James Smart53151bb2013-10-10 12:24:07 -040010418 /* Note: we are not indicating if the IOCB has a success
10419 * status or not - that's for the caller to check.
10420 * IOCB_SUCCESS means just that the command was sent and
10421 * completed. Not that it completed successfully.
10422 * */
James Smart7054a602007-04-25 09:52:34 -040010423 } else if (timeleft == 0) {
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010424 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -040010425 "0338 IOCB wait timeout error - no "
10426 "wake response Data x%x\n", timeout);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010427 retval = IOCB_TIMEDOUT;
James Smart7054a602007-04-25 09:52:34 -040010428 } else {
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010429 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -040010430 "0330 IOCB wake NOT set, "
10431 "Data x%x x%lx\n",
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010432 timeout, (timeleft / jiffies));
10433 retval = IOCB_TIMEDOUT;
dea31012005-04-17 16:05:31 -050010434 }
James Smart2a9bf3d2010-06-07 15:24:45 -040010435 } else if (retval == IOCB_BUSY) {
James Smart0e9bb8d2013-03-01 16:35:12 -050010436 if (phba->cfg_log_verbose & LOG_SLI) {
10437 list_for_each_entry(iocb, &pring->txq, list) {
10438 txq_cnt++;
10439 }
10440 list_for_each_entry(iocb, &pring->txcmplq, list) {
10441 txcmplq_cnt++;
10442 }
10443 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
10444 "2818 Max IOCBs %d txq cnt %d txcmplq cnt %d\n",
10445 phba->iocb_cnt, txq_cnt, txcmplq_cnt);
10446 }
James Smart2a9bf3d2010-06-07 15:24:45 -040010447 return retval;
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010448 } else {
10449 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smartd7c255b2008-08-24 21:50:00 -040010450 "0332 IOCB wait issue failed, Data x%x\n",
James Smarte8b62012007-08-02 11:10:09 -040010451 retval);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010452 retval = IOCB_ERROR;
dea31012005-04-17 16:05:31 -050010453 }
10454
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050010455 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
James Smart9940b972011-03-11 16:06:12 -050010456 if (lpfc_readl(phba->HCregaddr, &creg_val))
10457 return IOCB_ERROR;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050010458 creg_val &= ~(HC_R0INT_ENA << LPFC_FCP_RING);
10459 writel(creg_val, phba->HCregaddr);
10460 readl(phba->HCregaddr); /* flush */
10461 }
10462
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010463 if (prspiocbq)
10464 piocb->context2 = NULL;
10465
10466 piocb->context_un.wait_queue = NULL;
10467 piocb->iocb_cmpl = NULL;
dea31012005-04-17 16:05:31 -050010468 return retval;
10469}
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010470
James Smarte59058c2008-08-24 21:49:00 -040010471/**
James Smart3621a712009-04-06 18:47:14 -040010472 * lpfc_sli_issue_mbox_wait - Synchronous function to issue mailbox
James Smarte59058c2008-08-24 21:49:00 -040010473 * @phba: Pointer to HBA context object.
10474 * @pmboxq: Pointer to driver mailbox object.
10475 * @timeout: Timeout in number of seconds.
10476 *
10477 * This function issues the mailbox to firmware and waits for the
10478 * mailbox command to complete. If the mailbox command is not
10479 * completed within timeout seconds, it returns MBX_TIMEOUT.
10480 * The function waits for the mailbox completion using an
10481 * interruptible wait. If the thread is woken up due to a
10482 * signal, MBX_TIMEOUT error is returned to the caller. Caller
10483 * should not free the mailbox resources, if this function returns
10484 * MBX_TIMEOUT.
10485 * This function will sleep while waiting for mailbox completion.
10486 * So, this function should not be called from any context which
10487 * does not allow sleeping. Due to the same reason, this function
10488 * cannot be called with interrupt disabled.
10489 * This function assumes that the mailbox completion occurs while
10490 * this function sleep. So, this function cannot be called from
10491 * the worker thread which processes mailbox completion.
10492 * This function is called in the context of HBA management
10493 * applications.
10494 * This function returns MBX_SUCCESS when successful.
10495 * This function is called with no lock held.
10496 **/
dea31012005-04-17 16:05:31 -050010497int
James Smart2e0fef82007-06-17 19:56:36 -050010498lpfc_sli_issue_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq,
dea31012005-04-17 16:05:31 -050010499 uint32_t timeout)
10500{
Peter Zijlstra7259f0d2006-10-29 22:46:36 -080010501 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
James Smartb230b8a2013-05-31 17:05:27 -040010502 MAILBOX_t *mb = NULL;
dea31012005-04-17 16:05:31 -050010503 int retval;
James Smart858c9f62007-06-17 19:56:39 -050010504 unsigned long flag;
dea31012005-04-17 16:05:31 -050010505
James Smartb230b8a2013-05-31 17:05:27 -040010506 /* The caller might set context1 for extended buffer */
James Smart98c9ea52007-10-27 13:37:33 -040010507 if (pmboxq->context1)
James Smartb230b8a2013-05-31 17:05:27 -040010508 mb = (MAILBOX_t *)pmboxq->context1;
dea31012005-04-17 16:05:31 -050010509
James Smart495a7142008-06-14 22:52:59 -040010510 pmboxq->mbox_flag &= ~LPFC_MBX_WAKE;
dea31012005-04-17 16:05:31 -050010511 /* setup wake call as IOCB callback */
10512 pmboxq->mbox_cmpl = lpfc_sli_wake_mbox_wait;
10513 /* setup context field to pass wait_queue pointer to wake function */
10514 pmboxq->context1 = &done_q;
10515
dea31012005-04-17 16:05:31 -050010516 /* now issue the command */
10517 retval = lpfc_sli_issue_mbox(phba, pmboxq, MBX_NOWAIT);
dea31012005-04-17 16:05:31 -050010518 if (retval == MBX_BUSY || retval == MBX_SUCCESS) {
James Smart7054a602007-04-25 09:52:34 -040010519 wait_event_interruptible_timeout(done_q,
10520 pmboxq->mbox_flag & LPFC_MBX_WAKE,
James Smart256ec0d2013-04-17 20:14:58 -040010521 msecs_to_jiffies(timeout * 1000));
James Smart7054a602007-04-25 09:52:34 -040010522
James Smart858c9f62007-06-17 19:56:39 -050010523 spin_lock_irqsave(&phba->hbalock, flag);
James Smartb230b8a2013-05-31 17:05:27 -040010524 /* restore the possible extended buffer for free resource */
10525 pmboxq->context1 = (uint8_t *)mb;
James Smart7054a602007-04-25 09:52:34 -040010526 /*
10527 * if LPFC_MBX_WAKE flag is set the mailbox is completed
10528 * else do not free the resources.
10529 */
James Smartd7c47992010-06-08 18:31:54 -040010530 if (pmboxq->mbox_flag & LPFC_MBX_WAKE) {
dea31012005-04-17 16:05:31 -050010531 retval = MBX_SUCCESS;
James Smartd7c47992010-06-08 18:31:54 -040010532 } else {
James Smart7054a602007-04-25 09:52:34 -040010533 retval = MBX_TIMEOUT;
James Smart858c9f62007-06-17 19:56:39 -050010534 pmboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
10535 }
10536 spin_unlock_irqrestore(&phba->hbalock, flag);
James Smartb230b8a2013-05-31 17:05:27 -040010537 } else {
10538 /* restore the possible extended buffer for free resource */
10539 pmboxq->context1 = (uint8_t *)mb;
dea31012005-04-17 16:05:31 -050010540 }
10541
dea31012005-04-17 16:05:31 -050010542 return retval;
10543}
10544
James Smarte59058c2008-08-24 21:49:00 -040010545/**
James Smart3772a992009-05-22 14:50:54 -040010546 * lpfc_sli_mbox_sys_shutdown - shutdown mailbox command sub-system
James Smarte59058c2008-08-24 21:49:00 -040010547 * @phba: Pointer to HBA context.
10548 *
James Smart3772a992009-05-22 14:50:54 -040010549 * This function is called to shutdown the driver's mailbox sub-system.
10550 * It first marks the mailbox sub-system is in a block state to prevent
10551 * the asynchronous mailbox command from issued off the pending mailbox
10552 * command queue. If the mailbox command sub-system shutdown is due to
10553 * HBA error conditions such as EEH or ERATT, this routine shall invoke
10554 * the mailbox sub-system flush routine to forcefully bring down the
10555 * mailbox sub-system. Otherwise, if it is due to normal condition (such
10556 * as with offline or HBA function reset), this routine will wait for the
10557 * outstanding mailbox command to complete before invoking the mailbox
10558 * sub-system flush routine to gracefully bring down mailbox sub-system.
James Smarte59058c2008-08-24 21:49:00 -040010559 **/
James Smart3772a992009-05-22 14:50:54 -040010560void
James Smart618a5232012-06-12 13:54:36 -040010561lpfc_sli_mbox_sys_shutdown(struct lpfc_hba *phba, int mbx_action)
James Smartb4c02652006-07-06 15:50:43 -040010562{
James Smart3772a992009-05-22 14:50:54 -040010563 struct lpfc_sli *psli = &phba->sli;
James Smart3772a992009-05-22 14:50:54 -040010564 unsigned long timeout;
10565
James Smart618a5232012-06-12 13:54:36 -040010566 if (mbx_action == LPFC_MBX_NO_WAIT) {
10567 /* delay 100ms for port state */
10568 msleep(100);
10569 lpfc_sli_mbox_sys_flush(phba);
10570 return;
10571 }
James Smarta183a152011-10-10 21:32:43 -040010572 timeout = msecs_to_jiffies(LPFC_MBOX_TMO * 1000) + jiffies;
James Smartd7069f02012-03-01 22:36:29 -050010573
James Smart3772a992009-05-22 14:50:54 -040010574 spin_lock_irq(&phba->hbalock);
10575 psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
James Smart3772a992009-05-22 14:50:54 -040010576
10577 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
James Smart3772a992009-05-22 14:50:54 -040010578 /* Determine how long we might wait for the active mailbox
10579 * command to be gracefully completed by firmware.
10580 */
James Smarta183a152011-10-10 21:32:43 -040010581 if (phba->sli.mbox_active)
10582 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
10583 phba->sli.mbox_active) *
10584 1000) + jiffies;
10585 spin_unlock_irq(&phba->hbalock);
10586
James Smart3772a992009-05-22 14:50:54 -040010587 while (phba->sli.mbox_active) {
10588 /* Check active mailbox complete status every 2ms */
10589 msleep(2);
10590 if (time_after(jiffies, timeout))
10591 /* Timeout, let the mailbox flush routine to
10592 * forcefully release active mailbox command
10593 */
10594 break;
10595 }
James Smartd7069f02012-03-01 22:36:29 -050010596 } else
10597 spin_unlock_irq(&phba->hbalock);
10598
James Smart3772a992009-05-22 14:50:54 -040010599 lpfc_sli_mbox_sys_flush(phba);
10600}
10601
10602/**
10603 * lpfc_sli_eratt_read - read sli-3 error attention events
10604 * @phba: Pointer to HBA context.
10605 *
10606 * This function is called to read the SLI3 device error attention registers
10607 * for possible error attention events. The caller must hold the hostlock
10608 * with spin_lock_irq().
10609 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030010610 * This function returns 1 when there is Error Attention in the Host Attention
James Smart3772a992009-05-22 14:50:54 -040010611 * Register and returns 0 otherwise.
10612 **/
10613static int
10614lpfc_sli_eratt_read(struct lpfc_hba *phba)
10615{
James Smarted957682007-06-17 19:56:37 -050010616 uint32_t ha_copy;
James Smartb4c02652006-07-06 15:50:43 -040010617
James Smart3772a992009-05-22 14:50:54 -040010618 /* Read chip Host Attention (HA) register */
James Smart9940b972011-03-11 16:06:12 -050010619 if (lpfc_readl(phba->HAregaddr, &ha_copy))
10620 goto unplug_err;
10621
James Smart3772a992009-05-22 14:50:54 -040010622 if (ha_copy & HA_ERATT) {
10623 /* Read host status register to retrieve error event */
James Smart9940b972011-03-11 16:06:12 -050010624 if (lpfc_sli_read_hs(phba))
10625 goto unplug_err;
James Smartb4c02652006-07-06 15:50:43 -040010626
James Smart3772a992009-05-22 14:50:54 -040010627 /* Check if there is a deferred error condition is active */
10628 if ((HS_FFER1 & phba->work_hs) &&
10629 ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
James Smartdcf2a4e2010-09-29 11:18:53 -040010630 HS_FFER6 | HS_FFER7 | HS_FFER8) & phba->work_hs)) {
James Smart3772a992009-05-22 14:50:54 -040010631 phba->hba_flag |= DEFER_ERATT;
James Smart3772a992009-05-22 14:50:54 -040010632 /* Clear all interrupt enable conditions */
10633 writel(0, phba->HCregaddr);
10634 readl(phba->HCregaddr);
10635 }
10636
10637 /* Set the driver HA work bitmap */
James Smart3772a992009-05-22 14:50:54 -040010638 phba->work_ha |= HA_ERATT;
10639 /* Indicate polling handles this ERATT */
10640 phba->hba_flag |= HBA_ERATT_HANDLED;
James Smart3772a992009-05-22 14:50:54 -040010641 return 1;
James Smartb4c02652006-07-06 15:50:43 -040010642 }
James Smart3772a992009-05-22 14:50:54 -040010643 return 0;
James Smart9940b972011-03-11 16:06:12 -050010644
10645unplug_err:
10646 /* Set the driver HS work bitmap */
10647 phba->work_hs |= UNPLUG_ERR;
10648 /* Set the driver HA work bitmap */
10649 phba->work_ha |= HA_ERATT;
10650 /* Indicate polling handles this ERATT */
10651 phba->hba_flag |= HBA_ERATT_HANDLED;
10652 return 1;
James Smartb4c02652006-07-06 15:50:43 -040010653}
10654
James Smarte59058c2008-08-24 21:49:00 -040010655/**
James Smartda0436e2009-05-22 14:51:39 -040010656 * lpfc_sli4_eratt_read - read sli-4 error attention events
10657 * @phba: Pointer to HBA context.
10658 *
10659 * This function is called to read the SLI4 device error attention registers
10660 * for possible error attention events. The caller must hold the hostlock
10661 * with spin_lock_irq().
10662 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030010663 * This function returns 1 when there is Error Attention in the Host Attention
James Smartda0436e2009-05-22 14:51:39 -040010664 * Register and returns 0 otherwise.
10665 **/
10666static int
10667lpfc_sli4_eratt_read(struct lpfc_hba *phba)
10668{
10669 uint32_t uerr_sta_hi, uerr_sta_lo;
James Smart2fcee4b2010-12-15 17:57:46 -050010670 uint32_t if_type, portsmphr;
10671 struct lpfc_register portstat_reg;
James Smartda0436e2009-05-22 14:51:39 -040010672
James Smart2fcee4b2010-12-15 17:57:46 -050010673 /*
10674 * For now, use the SLI4 device internal unrecoverable error
James Smartda0436e2009-05-22 14:51:39 -040010675 * registers for error attention. This can be changed later.
10676 */
James Smart2fcee4b2010-12-15 17:57:46 -050010677 if_type = bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf);
10678 switch (if_type) {
10679 case LPFC_SLI_INTF_IF_TYPE_0:
James Smart9940b972011-03-11 16:06:12 -050010680 if (lpfc_readl(phba->sli4_hba.u.if_type0.UERRLOregaddr,
10681 &uerr_sta_lo) ||
10682 lpfc_readl(phba->sli4_hba.u.if_type0.UERRHIregaddr,
10683 &uerr_sta_hi)) {
10684 phba->work_hs |= UNPLUG_ERR;
10685 phba->work_ha |= HA_ERATT;
10686 phba->hba_flag |= HBA_ERATT_HANDLED;
10687 return 1;
10688 }
James Smart2fcee4b2010-12-15 17:57:46 -050010689 if ((~phba->sli4_hba.ue_mask_lo & uerr_sta_lo) ||
10690 (~phba->sli4_hba.ue_mask_hi & uerr_sta_hi)) {
10691 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10692 "1423 HBA Unrecoverable error: "
10693 "uerr_lo_reg=0x%x, uerr_hi_reg=0x%x, "
10694 "ue_mask_lo_reg=0x%x, "
10695 "ue_mask_hi_reg=0x%x\n",
10696 uerr_sta_lo, uerr_sta_hi,
10697 phba->sli4_hba.ue_mask_lo,
10698 phba->sli4_hba.ue_mask_hi);
10699 phba->work_status[0] = uerr_sta_lo;
10700 phba->work_status[1] = uerr_sta_hi;
10701 phba->work_ha |= HA_ERATT;
10702 phba->hba_flag |= HBA_ERATT_HANDLED;
10703 return 1;
10704 }
10705 break;
10706 case LPFC_SLI_INTF_IF_TYPE_2:
James Smart9940b972011-03-11 16:06:12 -050010707 if (lpfc_readl(phba->sli4_hba.u.if_type2.STATUSregaddr,
10708 &portstat_reg.word0) ||
10709 lpfc_readl(phba->sli4_hba.PSMPHRregaddr,
10710 &portsmphr)){
10711 phba->work_hs |= UNPLUG_ERR;
10712 phba->work_ha |= HA_ERATT;
10713 phba->hba_flag |= HBA_ERATT_HANDLED;
10714 return 1;
10715 }
James Smart2fcee4b2010-12-15 17:57:46 -050010716 if (bf_get(lpfc_sliport_status_err, &portstat_reg)) {
10717 phba->work_status[0] =
10718 readl(phba->sli4_hba.u.if_type2.ERR1regaddr);
10719 phba->work_status[1] =
10720 readl(phba->sli4_hba.u.if_type2.ERR2regaddr);
10721 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart2e90f4b2011-12-13 13:22:37 -050010722 "2885 Port Status Event: "
James Smart2fcee4b2010-12-15 17:57:46 -050010723 "port status reg 0x%x, "
10724 "port smphr reg 0x%x, "
10725 "error 1=0x%x, error 2=0x%x\n",
10726 portstat_reg.word0,
10727 portsmphr,
10728 phba->work_status[0],
10729 phba->work_status[1]);
10730 phba->work_ha |= HA_ERATT;
10731 phba->hba_flag |= HBA_ERATT_HANDLED;
10732 return 1;
10733 }
10734 break;
10735 case LPFC_SLI_INTF_IF_TYPE_1:
10736 default:
James Smarta747c9c2009-11-18 15:41:10 -050010737 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart2fcee4b2010-12-15 17:57:46 -050010738 "2886 HBA Error Attention on unsupported "
10739 "if type %d.", if_type);
James Smarta747c9c2009-11-18 15:41:10 -050010740 return 1;
James Smartda0436e2009-05-22 14:51:39 -040010741 }
James Smart2fcee4b2010-12-15 17:57:46 -050010742
James Smartda0436e2009-05-22 14:51:39 -040010743 return 0;
10744}
10745
10746/**
James Smart3621a712009-04-06 18:47:14 -040010747 * lpfc_sli_check_eratt - check error attention events
James Smart93996272008-08-24 21:50:30 -040010748 * @phba: Pointer to HBA context.
10749 *
James Smart3772a992009-05-22 14:50:54 -040010750 * This function is called from timer soft interrupt context to check HBA's
James Smart93996272008-08-24 21:50:30 -040010751 * error attention register bit for error attention events.
10752 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030010753 * This function returns 1 when there is Error Attention in the Host Attention
James Smart93996272008-08-24 21:50:30 -040010754 * Register and returns 0 otherwise.
10755 **/
10756int
10757lpfc_sli_check_eratt(struct lpfc_hba *phba)
10758{
10759 uint32_t ha_copy;
10760
10761 /* If somebody is waiting to handle an eratt, don't process it
10762 * here. The brdkill function will do this.
10763 */
10764 if (phba->link_flag & LS_IGNORE_ERATT)
10765 return 0;
10766
10767 /* Check if interrupt handler handles this ERATT */
10768 spin_lock_irq(&phba->hbalock);
10769 if (phba->hba_flag & HBA_ERATT_HANDLED) {
10770 /* Interrupt handler has handled ERATT */
10771 spin_unlock_irq(&phba->hbalock);
10772 return 0;
10773 }
10774
James Smarta257bf92009-04-06 18:48:10 -040010775 /*
10776 * If there is deferred error attention, do not check for error
10777 * attention
10778 */
10779 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
10780 spin_unlock_irq(&phba->hbalock);
10781 return 0;
10782 }
10783
James Smart3772a992009-05-22 14:50:54 -040010784 /* If PCI channel is offline, don't process it */
10785 if (unlikely(pci_channel_offline(phba->pcidev))) {
James Smart93996272008-08-24 21:50:30 -040010786 spin_unlock_irq(&phba->hbalock);
James Smart3772a992009-05-22 14:50:54 -040010787 return 0;
10788 }
10789
10790 switch (phba->sli_rev) {
10791 case LPFC_SLI_REV2:
10792 case LPFC_SLI_REV3:
10793 /* Read chip Host Attention (HA) register */
10794 ha_copy = lpfc_sli_eratt_read(phba);
10795 break;
James Smartda0436e2009-05-22 14:51:39 -040010796 case LPFC_SLI_REV4:
James Smart2fcee4b2010-12-15 17:57:46 -050010797 /* Read device Uncoverable Error (UERR) registers */
James Smartda0436e2009-05-22 14:51:39 -040010798 ha_copy = lpfc_sli4_eratt_read(phba);
10799 break;
James Smart3772a992009-05-22 14:50:54 -040010800 default:
10801 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10802 "0299 Invalid SLI revision (%d)\n",
10803 phba->sli_rev);
10804 ha_copy = 0;
10805 break;
James Smart93996272008-08-24 21:50:30 -040010806 }
10807 spin_unlock_irq(&phba->hbalock);
James Smart3772a992009-05-22 14:50:54 -040010808
10809 return ha_copy;
10810}
10811
10812/**
10813 * lpfc_intr_state_check - Check device state for interrupt handling
10814 * @phba: Pointer to HBA context.
10815 *
10816 * This inline routine checks whether a device or its PCI slot is in a state
10817 * that the interrupt should be handled.
10818 *
10819 * This function returns 0 if the device or the PCI slot is in a state that
10820 * interrupt should be handled, otherwise -EIO.
10821 */
10822static inline int
10823lpfc_intr_state_check(struct lpfc_hba *phba)
10824{
10825 /* If the pci channel is offline, ignore all the interrupts */
10826 if (unlikely(pci_channel_offline(phba->pcidev)))
10827 return -EIO;
10828
10829 /* Update device level interrupt statistics */
10830 phba->sli.slistat.sli_intr++;
10831
10832 /* Ignore all interrupts during initialization. */
10833 if (unlikely(phba->link_state < LPFC_LINK_DOWN))
10834 return -EIO;
10835
James Smart93996272008-08-24 21:50:30 -040010836 return 0;
10837}
10838
10839/**
James Smart3772a992009-05-22 14:50:54 -040010840 * lpfc_sli_sp_intr_handler - Slow-path interrupt handler to SLI-3 device
James Smarte59058c2008-08-24 21:49:00 -040010841 * @irq: Interrupt number.
10842 * @dev_id: The device context pointer.
10843 *
James Smart93996272008-08-24 21:50:30 -040010844 * This function is directly called from the PCI layer as an interrupt
James Smart3772a992009-05-22 14:50:54 -040010845 * service routine when device with SLI-3 interface spec is enabled with
10846 * MSI-X multi-message interrupt mode and there are slow-path events in
10847 * the HBA. However, when the device is enabled with either MSI or Pin-IRQ
10848 * interrupt mode, this function is called as part of the device-level
10849 * interrupt handler. When the PCI slot is in error recovery or the HBA
10850 * is undergoing initialization, the interrupt handler will not process
10851 * the interrupt. The link attention and ELS ring attention events are
10852 * handled by the worker thread. The interrupt handler signals the worker
10853 * thread and returns for these events. This function is called without
10854 * any lock held. It gets the hbalock to access and update SLI data
James Smart93996272008-08-24 21:50:30 -040010855 * structures.
10856 *
10857 * This function returns IRQ_HANDLED when interrupt is handled else it
10858 * returns IRQ_NONE.
James Smarte59058c2008-08-24 21:49:00 -040010859 **/
dea31012005-04-17 16:05:31 -050010860irqreturn_t
James Smart3772a992009-05-22 14:50:54 -040010861lpfc_sli_sp_intr_handler(int irq, void *dev_id)
dea31012005-04-17 16:05:31 -050010862{
James Smart2e0fef82007-06-17 19:56:36 -050010863 struct lpfc_hba *phba;
James Smarta747c9c2009-11-18 15:41:10 -050010864 uint32_t ha_copy, hc_copy;
dea31012005-04-17 16:05:31 -050010865 uint32_t work_ha_copy;
10866 unsigned long status;
James Smart5b75da22008-12-04 22:39:35 -050010867 unsigned long iflag;
dea31012005-04-17 16:05:31 -050010868 uint32_t control;
10869
James Smart92d7f7b2007-06-17 19:56:38 -050010870 MAILBOX_t *mbox, *pmbox;
James Smart858c9f62007-06-17 19:56:39 -050010871 struct lpfc_vport *vport;
10872 struct lpfc_nodelist *ndlp;
10873 struct lpfc_dmabuf *mp;
James Smart92d7f7b2007-06-17 19:56:38 -050010874 LPFC_MBOXQ_t *pmb;
10875 int rc;
10876
dea31012005-04-17 16:05:31 -050010877 /*
10878 * Get the driver's phba structure from the dev_id and
10879 * assume the HBA is not interrupting.
10880 */
James Smart93996272008-08-24 21:50:30 -040010881 phba = (struct lpfc_hba *)dev_id;
dea31012005-04-17 16:05:31 -050010882
10883 if (unlikely(!phba))
10884 return IRQ_NONE;
10885
dea31012005-04-17 16:05:31 -050010886 /*
James Smart93996272008-08-24 21:50:30 -040010887 * Stuff needs to be attented to when this function is invoked as an
10888 * individual interrupt handler in MSI-X multi-message interrupt mode
dea31012005-04-17 16:05:31 -050010889 */
James Smart93996272008-08-24 21:50:30 -040010890 if (phba->intr_type == MSIX) {
James Smart3772a992009-05-22 14:50:54 -040010891 /* Check device state for handling interrupt */
10892 if (lpfc_intr_state_check(phba))
James Smart93996272008-08-24 21:50:30 -040010893 return IRQ_NONE;
10894 /* Need to read HA REG for slow-path events */
James Smart5b75da22008-12-04 22:39:35 -050010895 spin_lock_irqsave(&phba->hbalock, iflag);
James Smart9940b972011-03-11 16:06:12 -050010896 if (lpfc_readl(phba->HAregaddr, &ha_copy))
10897 goto unplug_error;
James Smart93996272008-08-24 21:50:30 -040010898 /* If somebody is waiting to handle an eratt don't process it
10899 * here. The brdkill function will do this.
10900 */
10901 if (phba->link_flag & LS_IGNORE_ERATT)
10902 ha_copy &= ~HA_ERATT;
10903 /* Check the need for handling ERATT in interrupt handler */
10904 if (ha_copy & HA_ERATT) {
10905 if (phba->hba_flag & HBA_ERATT_HANDLED)
10906 /* ERATT polling has handled ERATT */
10907 ha_copy &= ~HA_ERATT;
10908 else
10909 /* Indicate interrupt handler handles ERATT */
10910 phba->hba_flag |= HBA_ERATT_HANDLED;
10911 }
James Smarta257bf92009-04-06 18:48:10 -040010912
10913 /*
10914 * If there is deferred error attention, do not check for any
10915 * interrupt.
10916 */
10917 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
James Smart3772a992009-05-22 14:50:54 -040010918 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smarta257bf92009-04-06 18:48:10 -040010919 return IRQ_NONE;
10920 }
10921
James Smart93996272008-08-24 21:50:30 -040010922 /* Clear up only attention source related to slow-path */
James Smart9940b972011-03-11 16:06:12 -050010923 if (lpfc_readl(phba->HCregaddr, &hc_copy))
10924 goto unplug_error;
10925
James Smarta747c9c2009-11-18 15:41:10 -050010926 writel(hc_copy & ~(HC_MBINT_ENA | HC_R2INT_ENA |
10927 HC_LAINT_ENA | HC_ERINT_ENA),
10928 phba->HCregaddr);
James Smart93996272008-08-24 21:50:30 -040010929 writel((ha_copy & (HA_MBATT | HA_R2_CLR_MSK)),
10930 phba->HAregaddr);
James Smarta747c9c2009-11-18 15:41:10 -050010931 writel(hc_copy, phba->HCregaddr);
James Smart93996272008-08-24 21:50:30 -040010932 readl(phba->HAregaddr); /* flush */
James Smart5b75da22008-12-04 22:39:35 -050010933 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart93996272008-08-24 21:50:30 -040010934 } else
10935 ha_copy = phba->ha_copy;
dea31012005-04-17 16:05:31 -050010936
dea31012005-04-17 16:05:31 -050010937 work_ha_copy = ha_copy & phba->work_ha_mask;
10938
James Smart93996272008-08-24 21:50:30 -040010939 if (work_ha_copy) {
dea31012005-04-17 16:05:31 -050010940 if (work_ha_copy & HA_LATT) {
10941 if (phba->sli.sli_flag & LPFC_PROCESS_LA) {
10942 /*
10943 * Turn off Link Attention interrupts
10944 * until CLEAR_LA done
10945 */
James Smart5b75da22008-12-04 22:39:35 -050010946 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -050010947 phba->sli.sli_flag &= ~LPFC_PROCESS_LA;
James Smart9940b972011-03-11 16:06:12 -050010948 if (lpfc_readl(phba->HCregaddr, &control))
10949 goto unplug_error;
dea31012005-04-17 16:05:31 -050010950 control &= ~HC_LAINT_ENA;
10951 writel(control, phba->HCregaddr);
10952 readl(phba->HCregaddr); /* flush */
James Smart5b75da22008-12-04 22:39:35 -050010953 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -050010954 }
10955 else
10956 work_ha_copy &= ~HA_LATT;
10957 }
10958
James Smart93996272008-08-24 21:50:30 -040010959 if (work_ha_copy & ~(HA_ERATT | HA_MBATT | HA_LATT)) {
James Smart858c9f62007-06-17 19:56:39 -050010960 /*
10961 * Turn off Slow Rings interrupts, LPFC_ELS_RING is
10962 * the only slow ring.
10963 */
10964 status = (work_ha_copy &
10965 (HA_RXMASK << (4*LPFC_ELS_RING)));
10966 status >>= (4*LPFC_ELS_RING);
10967 if (status & HA_RXMASK) {
James Smart5b75da22008-12-04 22:39:35 -050010968 spin_lock_irqsave(&phba->hbalock, iflag);
James Smart9940b972011-03-11 16:06:12 -050010969 if (lpfc_readl(phba->HCregaddr, &control))
10970 goto unplug_error;
James Smarta58cbd52007-08-02 11:09:43 -040010971
10972 lpfc_debugfs_slow_ring_trc(phba,
10973 "ISR slow ring: ctl:x%x stat:x%x isrcnt:x%x",
10974 control, status,
10975 (uint32_t)phba->sli.slistat.sli_intr);
10976
James Smart858c9f62007-06-17 19:56:39 -050010977 if (control & (HC_R0INT_ENA << LPFC_ELS_RING)) {
James Smarta58cbd52007-08-02 11:09:43 -040010978 lpfc_debugfs_slow_ring_trc(phba,
10979 "ISR Disable ring:"
10980 "pwork:x%x hawork:x%x wait:x%x",
10981 phba->work_ha, work_ha_copy,
10982 (uint32_t)((unsigned long)
James Smart5e9d9b82008-06-14 22:52:53 -040010983 &phba->work_waitq));
James Smarta58cbd52007-08-02 11:09:43 -040010984
James Smart858c9f62007-06-17 19:56:39 -050010985 control &=
10986 ~(HC_R0INT_ENA << LPFC_ELS_RING);
dea31012005-04-17 16:05:31 -050010987 writel(control, phba->HCregaddr);
10988 readl(phba->HCregaddr); /* flush */
dea31012005-04-17 16:05:31 -050010989 }
James Smarta58cbd52007-08-02 11:09:43 -040010990 else {
10991 lpfc_debugfs_slow_ring_trc(phba,
10992 "ISR slow ring: pwork:"
10993 "x%x hawork:x%x wait:x%x",
10994 phba->work_ha, work_ha_copy,
10995 (uint32_t)((unsigned long)
James Smart5e9d9b82008-06-14 22:52:53 -040010996 &phba->work_waitq));
James Smarta58cbd52007-08-02 11:09:43 -040010997 }
James Smart5b75da22008-12-04 22:39:35 -050010998 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -050010999 }
11000 }
James Smart5b75da22008-12-04 22:39:35 -050011001 spin_lock_irqsave(&phba->hbalock, iflag);
James Smarta257bf92009-04-06 18:48:10 -040011002 if (work_ha_copy & HA_ERATT) {
James Smart9940b972011-03-11 16:06:12 -050011003 if (lpfc_sli_read_hs(phba))
11004 goto unplug_error;
James Smarta257bf92009-04-06 18:48:10 -040011005 /*
11006 * Check if there is a deferred error condition
11007 * is active
11008 */
11009 if ((HS_FFER1 & phba->work_hs) &&
11010 ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
James Smartdcf2a4e2010-09-29 11:18:53 -040011011 HS_FFER6 | HS_FFER7 | HS_FFER8) &
11012 phba->work_hs)) {
James Smarta257bf92009-04-06 18:48:10 -040011013 phba->hba_flag |= DEFER_ERATT;
11014 /* Clear all interrupt enable conditions */
11015 writel(0, phba->HCregaddr);
11016 readl(phba->HCregaddr);
11017 }
11018 }
11019
James Smart93996272008-08-24 21:50:30 -040011020 if ((work_ha_copy & HA_MBATT) && (phba->sli.mbox_active)) {
James Smart92d7f7b2007-06-17 19:56:38 -050011021 pmb = phba->sli.mbox_active;
James Smart04c68492009-05-22 14:52:52 -040011022 pmbox = &pmb->u.mb;
James Smart34b02dc2008-08-24 21:49:55 -040011023 mbox = phba->mbox;
James Smart858c9f62007-06-17 19:56:39 -050011024 vport = pmb->vport;
James Smart92d7f7b2007-06-17 19:56:38 -050011025
11026 /* First check out the status word */
11027 lpfc_sli_pcimem_bcopy(mbox, pmbox, sizeof(uint32_t));
11028 if (pmbox->mbxOwner != OWN_HOST) {
James Smart5b75da22008-12-04 22:39:35 -050011029 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart92d7f7b2007-06-17 19:56:38 -050011030 /*
11031 * Stray Mailbox Interrupt, mbxCommand <cmd>
11032 * mbxStatus <status>
11033 */
James Smart09372822008-01-11 01:52:54 -050011034 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
James Smart92d7f7b2007-06-17 19:56:38 -050011035 LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -040011036 "(%d):0304 Stray Mailbox "
James Smart92d7f7b2007-06-17 19:56:38 -050011037 "Interrupt mbxCommand x%x "
11038 "mbxStatus x%x\n",
James Smarte8b62012007-08-02 11:10:09 -040011039 (vport ? vport->vpi : 0),
James Smart92d7f7b2007-06-17 19:56:38 -050011040 pmbox->mbxCommand,
11041 pmbox->mbxStatus);
James Smart09372822008-01-11 01:52:54 -050011042 /* clear mailbox attention bit */
11043 work_ha_copy &= ~HA_MBATT;
11044 } else {
James Smart97eab632008-04-07 10:16:05 -040011045 phba->sli.mbox_active = NULL;
James Smart5b75da22008-12-04 22:39:35 -050011046 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart09372822008-01-11 01:52:54 -050011047 phba->last_completion_time = jiffies;
11048 del_timer(&phba->sli.mbox_tmo);
James Smart09372822008-01-11 01:52:54 -050011049 if (pmb->mbox_cmpl) {
11050 lpfc_sli_pcimem_bcopy(mbox, pmbox,
11051 MAILBOX_CMD_SIZE);
James Smart7a470272010-03-15 11:25:20 -040011052 if (pmb->out_ext_byte_len &&
11053 pmb->context2)
11054 lpfc_sli_pcimem_bcopy(
11055 phba->mbox_ext,
11056 pmb->context2,
11057 pmb->out_ext_byte_len);
James Smart858c9f62007-06-17 19:56:39 -050011058 }
James Smart09372822008-01-11 01:52:54 -050011059 if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
11060 pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
11061
11062 lpfc_debugfs_disc_trc(vport,
11063 LPFC_DISC_TRC_MBOX_VPORT,
11064 "MBOX dflt rpi: : "
11065 "status:x%x rpi:x%x",
11066 (uint32_t)pmbox->mbxStatus,
11067 pmbox->un.varWords[0], 0);
11068
11069 if (!pmbox->mbxStatus) {
11070 mp = (struct lpfc_dmabuf *)
11071 (pmb->context1);
11072 ndlp = (struct lpfc_nodelist *)
11073 pmb->context2;
11074
11075 /* Reg_LOGIN of dflt RPI was
11076 * successful. new lets get
11077 * rid of the RPI using the
11078 * same mbox buffer.
11079 */
11080 lpfc_unreg_login(phba,
11081 vport->vpi,
11082 pmbox->un.varWords[0],
11083 pmb);
11084 pmb->mbox_cmpl =
11085 lpfc_mbx_cmpl_dflt_rpi;
11086 pmb->context1 = mp;
11087 pmb->context2 = ndlp;
11088 pmb->vport = vport;
James Smart58da1ff2008-04-07 10:15:56 -040011089 rc = lpfc_sli_issue_mbox(phba,
11090 pmb,
11091 MBX_NOWAIT);
11092 if (rc != MBX_BUSY)
11093 lpfc_printf_log(phba,
11094 KERN_ERR,
11095 LOG_MBOX | LOG_SLI,
James Smartd7c255b2008-08-24 21:50:00 -040011096 "0350 rc should have"
James Smart6a9c52c2009-10-02 15:16:51 -040011097 "been MBX_BUSY\n");
James Smart3772a992009-05-22 14:50:54 -040011098 if (rc != MBX_NOT_FINISHED)
11099 goto send_current_mbox;
James Smart09372822008-01-11 01:52:54 -050011100 }
11101 }
James Smart5b75da22008-12-04 22:39:35 -050011102 spin_lock_irqsave(
11103 &phba->pport->work_port_lock,
11104 iflag);
James Smart09372822008-01-11 01:52:54 -050011105 phba->pport->work_port_events &=
11106 ~WORKER_MBOX_TMO;
James Smart5b75da22008-12-04 22:39:35 -050011107 spin_unlock_irqrestore(
11108 &phba->pport->work_port_lock,
11109 iflag);
James Smart09372822008-01-11 01:52:54 -050011110 lpfc_mbox_cmpl_put(phba, pmb);
James Smart858c9f62007-06-17 19:56:39 -050011111 }
James Smart97eab632008-04-07 10:16:05 -040011112 } else
James Smart5b75da22008-12-04 22:39:35 -050011113 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart93996272008-08-24 21:50:30 -040011114
James Smart92d7f7b2007-06-17 19:56:38 -050011115 if ((work_ha_copy & HA_MBATT) &&
11116 (phba->sli.mbox_active == NULL)) {
James Smart858c9f62007-06-17 19:56:39 -050011117send_current_mbox:
James Smart92d7f7b2007-06-17 19:56:38 -050011118 /* Process next mailbox command if there is one */
James Smart58da1ff2008-04-07 10:15:56 -040011119 do {
11120 rc = lpfc_sli_issue_mbox(phba, NULL,
11121 MBX_NOWAIT);
11122 } while (rc == MBX_NOT_FINISHED);
11123 if (rc != MBX_SUCCESS)
11124 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
11125 LOG_SLI, "0349 rc should be "
James Smart6a9c52c2009-10-02 15:16:51 -040011126 "MBX_SUCCESS\n");
James Smart92d7f7b2007-06-17 19:56:38 -050011127 }
11128
James Smart5b75da22008-12-04 22:39:35 -050011129 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -050011130 phba->work_ha |= work_ha_copy;
James Smart5b75da22008-12-04 22:39:35 -050011131 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart5e9d9b82008-06-14 22:52:53 -040011132 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -050011133 }
James Smart93996272008-08-24 21:50:30 -040011134 return IRQ_HANDLED;
James Smart9940b972011-03-11 16:06:12 -050011135unplug_error:
11136 spin_unlock_irqrestore(&phba->hbalock, iflag);
11137 return IRQ_HANDLED;
dea31012005-04-17 16:05:31 -050011138
James Smart3772a992009-05-22 14:50:54 -040011139} /* lpfc_sli_sp_intr_handler */
James Smart93996272008-08-24 21:50:30 -040011140
11141/**
James Smart3772a992009-05-22 14:50:54 -040011142 * lpfc_sli_fp_intr_handler - Fast-path interrupt handler to SLI-3 device.
James Smart93996272008-08-24 21:50:30 -040011143 * @irq: Interrupt number.
11144 * @dev_id: The device context pointer.
11145 *
11146 * This function is directly called from the PCI layer as an interrupt
James Smart3772a992009-05-22 14:50:54 -040011147 * service routine when device with SLI-3 interface spec is enabled with
11148 * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
11149 * ring event in the HBA. However, when the device is enabled with either
11150 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
11151 * device-level interrupt handler. When the PCI slot is in error recovery
11152 * or the HBA is undergoing initialization, the interrupt handler will not
11153 * process the interrupt. The SCSI FCP fast-path ring event are handled in
11154 * the intrrupt context. This function is called without any lock held.
11155 * It gets the hbalock to access and update SLI data structures.
James Smart93996272008-08-24 21:50:30 -040011156 *
11157 * This function returns IRQ_HANDLED when interrupt is handled else it
11158 * returns IRQ_NONE.
11159 **/
11160irqreturn_t
James Smart3772a992009-05-22 14:50:54 -040011161lpfc_sli_fp_intr_handler(int irq, void *dev_id)
James Smart93996272008-08-24 21:50:30 -040011162{
11163 struct lpfc_hba *phba;
11164 uint32_t ha_copy;
11165 unsigned long status;
James Smart5b75da22008-12-04 22:39:35 -050011166 unsigned long iflag;
James Smart93996272008-08-24 21:50:30 -040011167
11168 /* Get the driver's phba structure from the dev_id and
11169 * assume the HBA is not interrupting.
11170 */
11171 phba = (struct lpfc_hba *) dev_id;
11172
11173 if (unlikely(!phba))
11174 return IRQ_NONE;
dea31012005-04-17 16:05:31 -050011175
11176 /*
James Smart93996272008-08-24 21:50:30 -040011177 * Stuff needs to be attented to when this function is invoked as an
11178 * individual interrupt handler in MSI-X multi-message interrupt mode
dea31012005-04-17 16:05:31 -050011179 */
James Smart93996272008-08-24 21:50:30 -040011180 if (phba->intr_type == MSIX) {
James Smart3772a992009-05-22 14:50:54 -040011181 /* Check device state for handling interrupt */
11182 if (lpfc_intr_state_check(phba))
James Smart93996272008-08-24 21:50:30 -040011183 return IRQ_NONE;
11184 /* Need to read HA REG for FCP ring and other ring events */
James Smart9940b972011-03-11 16:06:12 -050011185 if (lpfc_readl(phba->HAregaddr, &ha_copy))
11186 return IRQ_HANDLED;
James Smart93996272008-08-24 21:50:30 -040011187 /* Clear up only attention source related to fast-path */
James Smart5b75da22008-12-04 22:39:35 -050011188 spin_lock_irqsave(&phba->hbalock, iflag);
James Smarta257bf92009-04-06 18:48:10 -040011189 /*
11190 * If there is deferred error attention, do not check for
11191 * any interrupt.
11192 */
11193 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
James Smart3772a992009-05-22 14:50:54 -040011194 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smarta257bf92009-04-06 18:48:10 -040011195 return IRQ_NONE;
11196 }
James Smart93996272008-08-24 21:50:30 -040011197 writel((ha_copy & (HA_R0_CLR_MSK | HA_R1_CLR_MSK)),
11198 phba->HAregaddr);
11199 readl(phba->HAregaddr); /* flush */
James Smart5b75da22008-12-04 22:39:35 -050011200 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart93996272008-08-24 21:50:30 -040011201 } else
11202 ha_copy = phba->ha_copy;
11203
11204 /*
11205 * Process all events on FCP ring. Take the optimized path for FCP IO.
11206 */
11207 ha_copy &= ~(phba->work_ha_mask);
11208
11209 status = (ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
dea31012005-04-17 16:05:31 -050011210 status >>= (4*LPFC_FCP_RING);
James Smart858c9f62007-06-17 19:56:39 -050011211 if (status & HA_RXMASK)
dea31012005-04-17 16:05:31 -050011212 lpfc_sli_handle_fast_ring_event(phba,
11213 &phba->sli.ring[LPFC_FCP_RING],
11214 status);
James Smarta4bc3372006-12-02 13:34:16 -050011215
11216 if (phba->cfg_multi_ring_support == 2) {
11217 /*
James Smart93996272008-08-24 21:50:30 -040011218 * Process all events on extra ring. Take the optimized path
11219 * for extra ring IO.
James Smarta4bc3372006-12-02 13:34:16 -050011220 */
James Smart93996272008-08-24 21:50:30 -040011221 status = (ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
James Smarta4bc3372006-12-02 13:34:16 -050011222 status >>= (4*LPFC_EXTRA_RING);
James Smart858c9f62007-06-17 19:56:39 -050011223 if (status & HA_RXMASK) {
James Smarta4bc3372006-12-02 13:34:16 -050011224 lpfc_sli_handle_fast_ring_event(phba,
11225 &phba->sli.ring[LPFC_EXTRA_RING],
11226 status);
11227 }
11228 }
dea31012005-04-17 16:05:31 -050011229 return IRQ_HANDLED;
James Smart3772a992009-05-22 14:50:54 -040011230} /* lpfc_sli_fp_intr_handler */
dea31012005-04-17 16:05:31 -050011231
James Smart93996272008-08-24 21:50:30 -040011232/**
James Smart3772a992009-05-22 14:50:54 -040011233 * lpfc_sli_intr_handler - Device-level interrupt handler to SLI-3 device
James Smart93996272008-08-24 21:50:30 -040011234 * @irq: Interrupt number.
11235 * @dev_id: The device context pointer.
11236 *
James Smart3772a992009-05-22 14:50:54 -040011237 * This function is the HBA device-level interrupt handler to device with
11238 * SLI-3 interface spec, called from the PCI layer when either MSI or
11239 * Pin-IRQ interrupt mode is enabled and there is an event in the HBA which
11240 * requires driver attention. This function invokes the slow-path interrupt
11241 * attention handling function and fast-path interrupt attention handling
11242 * function in turn to process the relevant HBA attention events. This
11243 * function is called without any lock held. It gets the hbalock to access
11244 * and update SLI data structures.
James Smart93996272008-08-24 21:50:30 -040011245 *
11246 * This function returns IRQ_HANDLED when interrupt is handled, else it
11247 * returns IRQ_NONE.
11248 **/
11249irqreturn_t
James Smart3772a992009-05-22 14:50:54 -040011250lpfc_sli_intr_handler(int irq, void *dev_id)
James Smart93996272008-08-24 21:50:30 -040011251{
11252 struct lpfc_hba *phba;
11253 irqreturn_t sp_irq_rc, fp_irq_rc;
11254 unsigned long status1, status2;
James Smarta747c9c2009-11-18 15:41:10 -050011255 uint32_t hc_copy;
James Smart93996272008-08-24 21:50:30 -040011256
11257 /*
11258 * Get the driver's phba structure from the dev_id and
11259 * assume the HBA is not interrupting.
11260 */
11261 phba = (struct lpfc_hba *) dev_id;
11262
11263 if (unlikely(!phba))
11264 return IRQ_NONE;
11265
James Smart3772a992009-05-22 14:50:54 -040011266 /* Check device state for handling interrupt */
11267 if (lpfc_intr_state_check(phba))
James Smart93996272008-08-24 21:50:30 -040011268 return IRQ_NONE;
11269
11270 spin_lock(&phba->hbalock);
James Smart9940b972011-03-11 16:06:12 -050011271 if (lpfc_readl(phba->HAregaddr, &phba->ha_copy)) {
11272 spin_unlock(&phba->hbalock);
11273 return IRQ_HANDLED;
11274 }
11275
James Smart93996272008-08-24 21:50:30 -040011276 if (unlikely(!phba->ha_copy)) {
11277 spin_unlock(&phba->hbalock);
11278 return IRQ_NONE;
11279 } else if (phba->ha_copy & HA_ERATT) {
11280 if (phba->hba_flag & HBA_ERATT_HANDLED)
11281 /* ERATT polling has handled ERATT */
11282 phba->ha_copy &= ~HA_ERATT;
11283 else
11284 /* Indicate interrupt handler handles ERATT */
11285 phba->hba_flag |= HBA_ERATT_HANDLED;
11286 }
11287
James Smarta257bf92009-04-06 18:48:10 -040011288 /*
11289 * If there is deferred error attention, do not check for any interrupt.
11290 */
11291 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
Dan Carpenterec21b3b2010-08-08 00:15:17 +020011292 spin_unlock(&phba->hbalock);
James Smarta257bf92009-04-06 18:48:10 -040011293 return IRQ_NONE;
11294 }
11295
James Smart93996272008-08-24 21:50:30 -040011296 /* Clear attention sources except link and error attentions */
James Smart9940b972011-03-11 16:06:12 -050011297 if (lpfc_readl(phba->HCregaddr, &hc_copy)) {
11298 spin_unlock(&phba->hbalock);
11299 return IRQ_HANDLED;
11300 }
James Smarta747c9c2009-11-18 15:41:10 -050011301 writel(hc_copy & ~(HC_MBINT_ENA | HC_R0INT_ENA | HC_R1INT_ENA
11302 | HC_R2INT_ENA | HC_LAINT_ENA | HC_ERINT_ENA),
11303 phba->HCregaddr);
James Smart93996272008-08-24 21:50:30 -040011304 writel((phba->ha_copy & ~(HA_LATT | HA_ERATT)), phba->HAregaddr);
James Smarta747c9c2009-11-18 15:41:10 -050011305 writel(hc_copy, phba->HCregaddr);
James Smart93996272008-08-24 21:50:30 -040011306 readl(phba->HAregaddr); /* flush */
11307 spin_unlock(&phba->hbalock);
11308
11309 /*
11310 * Invokes slow-path host attention interrupt handling as appropriate.
11311 */
11312
11313 /* status of events with mailbox and link attention */
11314 status1 = phba->ha_copy & (HA_MBATT | HA_LATT | HA_ERATT);
11315
11316 /* status of events with ELS ring */
11317 status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_ELS_RING)));
11318 status2 >>= (4*LPFC_ELS_RING);
11319
11320 if (status1 || (status2 & HA_RXMASK))
James Smart3772a992009-05-22 14:50:54 -040011321 sp_irq_rc = lpfc_sli_sp_intr_handler(irq, dev_id);
James Smart93996272008-08-24 21:50:30 -040011322 else
11323 sp_irq_rc = IRQ_NONE;
11324
11325 /*
11326 * Invoke fast-path host attention interrupt handling as appropriate.
11327 */
11328
11329 /* status of events with FCP ring */
11330 status1 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
11331 status1 >>= (4*LPFC_FCP_RING);
11332
11333 /* status of events with extra ring */
11334 if (phba->cfg_multi_ring_support == 2) {
11335 status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
11336 status2 >>= (4*LPFC_EXTRA_RING);
11337 } else
11338 status2 = 0;
11339
11340 if ((status1 & HA_RXMASK) || (status2 & HA_RXMASK))
James Smart3772a992009-05-22 14:50:54 -040011341 fp_irq_rc = lpfc_sli_fp_intr_handler(irq, dev_id);
James Smart93996272008-08-24 21:50:30 -040011342 else
11343 fp_irq_rc = IRQ_NONE;
11344
11345 /* Return device-level interrupt handling status */
11346 return (sp_irq_rc == IRQ_HANDLED) ? sp_irq_rc : fp_irq_rc;
James Smart3772a992009-05-22 14:50:54 -040011347} /* lpfc_sli_intr_handler */
James Smart4f774512009-05-22 14:52:35 -040011348
11349/**
11350 * lpfc_sli4_fcp_xri_abort_event_proc - Process fcp xri abort event
11351 * @phba: pointer to lpfc hba data structure.
11352 *
11353 * This routine is invoked by the worker thread to process all the pending
11354 * SLI4 FCP abort XRI events.
11355 **/
11356void lpfc_sli4_fcp_xri_abort_event_proc(struct lpfc_hba *phba)
11357{
11358 struct lpfc_cq_event *cq_event;
11359
11360 /* First, declare the fcp xri abort event has been handled */
11361 spin_lock_irq(&phba->hbalock);
11362 phba->hba_flag &= ~FCP_XRI_ABORT_EVENT;
11363 spin_unlock_irq(&phba->hbalock);
11364 /* Now, handle all the fcp xri abort events */
11365 while (!list_empty(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue)) {
11366 /* Get the first event from the head of the event queue */
11367 spin_lock_irq(&phba->hbalock);
11368 list_remove_head(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue,
11369 cq_event, struct lpfc_cq_event, list);
11370 spin_unlock_irq(&phba->hbalock);
11371 /* Notify aborted XRI for FCP work queue */
11372 lpfc_sli4_fcp_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
11373 /* Free the event processed back to the free pool */
11374 lpfc_sli4_cq_event_release(phba, cq_event);
11375 }
11376}
11377
11378/**
11379 * lpfc_sli4_els_xri_abort_event_proc - Process els xri abort event
11380 * @phba: pointer to lpfc hba data structure.
11381 *
11382 * This routine is invoked by the worker thread to process all the pending
11383 * SLI4 els abort xri events.
11384 **/
11385void lpfc_sli4_els_xri_abort_event_proc(struct lpfc_hba *phba)
11386{
11387 struct lpfc_cq_event *cq_event;
11388
11389 /* First, declare the els xri abort event has been handled */
11390 spin_lock_irq(&phba->hbalock);
11391 phba->hba_flag &= ~ELS_XRI_ABORT_EVENT;
11392 spin_unlock_irq(&phba->hbalock);
11393 /* Now, handle all the els xri abort events */
11394 while (!list_empty(&phba->sli4_hba.sp_els_xri_aborted_work_queue)) {
11395 /* Get the first event from the head of the event queue */
11396 spin_lock_irq(&phba->hbalock);
11397 list_remove_head(&phba->sli4_hba.sp_els_xri_aborted_work_queue,
11398 cq_event, struct lpfc_cq_event, list);
11399 spin_unlock_irq(&phba->hbalock);
11400 /* Notify aborted XRI for ELS work queue */
11401 lpfc_sli4_els_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
11402 /* Free the event processed back to the free pool */
11403 lpfc_sli4_cq_event_release(phba, cq_event);
11404 }
11405}
11406
James Smart341af102010-01-26 23:07:37 -050011407/**
11408 * lpfc_sli4_iocb_param_transfer - Transfer pIocbOut and cmpl status to pIocbIn
11409 * @phba: pointer to lpfc hba data structure
11410 * @pIocbIn: pointer to the rspiocbq
11411 * @pIocbOut: pointer to the cmdiocbq
11412 * @wcqe: pointer to the complete wcqe
11413 *
11414 * This routine transfers the fields of a command iocbq to a response iocbq
11415 * by copying all the IOCB fields from command iocbq and transferring the
11416 * completion status information from the complete wcqe.
11417 **/
James Smart4f774512009-05-22 14:52:35 -040011418static void
James Smart341af102010-01-26 23:07:37 -050011419lpfc_sli4_iocb_param_transfer(struct lpfc_hba *phba,
11420 struct lpfc_iocbq *pIocbIn,
James Smart4f774512009-05-22 14:52:35 -040011421 struct lpfc_iocbq *pIocbOut,
11422 struct lpfc_wcqe_complete *wcqe)
11423{
James Smartaf227412013-10-10 12:23:10 -040011424 int numBdes, i;
James Smart341af102010-01-26 23:07:37 -050011425 unsigned long iflags;
James Smartaf227412013-10-10 12:23:10 -040011426 uint32_t status, max_response;
11427 struct lpfc_dmabuf *dmabuf;
11428 struct ulp_bde64 *bpl, bde;
James Smart4f774512009-05-22 14:52:35 -040011429 size_t offset = offsetof(struct lpfc_iocbq, iocb);
11430
11431 memcpy((char *)pIocbIn + offset, (char *)pIocbOut + offset,
11432 sizeof(struct lpfc_iocbq) - offset);
James Smart4f774512009-05-22 14:52:35 -040011433 /* Map WCQE parameters into irspiocb parameters */
James Smartacd68592012-01-18 16:25:09 -050011434 status = bf_get(lpfc_wcqe_c_status, wcqe);
11435 pIocbIn->iocb.ulpStatus = (status & LPFC_IOCB_STATUS_MASK);
James Smart4f774512009-05-22 14:52:35 -040011436 if (pIocbOut->iocb_flag & LPFC_IO_FCP)
11437 if (pIocbIn->iocb.ulpStatus == IOSTAT_FCP_RSP_ERROR)
11438 pIocbIn->iocb.un.fcpi.fcpi_parm =
11439 pIocbOut->iocb.un.fcpi.fcpi_parm -
11440 wcqe->total_data_placed;
11441 else
11442 pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
James Smart695a8142010-01-26 23:08:03 -050011443 else {
James Smart4f774512009-05-22 14:52:35 -040011444 pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
James Smartaf227412013-10-10 12:23:10 -040011445 switch (pIocbOut->iocb.ulpCommand) {
11446 case CMD_ELS_REQUEST64_CR:
11447 dmabuf = (struct lpfc_dmabuf *)pIocbOut->context3;
11448 bpl = (struct ulp_bde64 *)dmabuf->virt;
11449 bde.tus.w = le32_to_cpu(bpl[1].tus.w);
11450 max_response = bde.tus.f.bdeSize;
11451 break;
11452 case CMD_GEN_REQUEST64_CR:
11453 max_response = 0;
11454 if (!pIocbOut->context3)
11455 break;
11456 numBdes = pIocbOut->iocb.un.genreq64.bdl.bdeSize/
11457 sizeof(struct ulp_bde64);
11458 dmabuf = (struct lpfc_dmabuf *)pIocbOut->context3;
11459 bpl = (struct ulp_bde64 *)dmabuf->virt;
11460 for (i = 0; i < numBdes; i++) {
11461 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
11462 if (bde.tus.f.bdeFlags != BUFF_TYPE_BDE_64)
11463 max_response += bde.tus.f.bdeSize;
11464 }
11465 break;
11466 default:
11467 max_response = wcqe->total_data_placed;
11468 break;
11469 }
11470 if (max_response < wcqe->total_data_placed)
11471 pIocbIn->iocb.un.genreq64.bdl.bdeSize = max_response;
11472 else
11473 pIocbIn->iocb.un.genreq64.bdl.bdeSize =
11474 wcqe->total_data_placed;
James Smart695a8142010-01-26 23:08:03 -050011475 }
James Smart341af102010-01-26 23:07:37 -050011476
James Smartacd68592012-01-18 16:25:09 -050011477 /* Convert BG errors for completion status */
11478 if (status == CQE_STATUS_DI_ERROR) {
11479 pIocbIn->iocb.ulpStatus = IOSTAT_LOCAL_REJECT;
11480
11481 if (bf_get(lpfc_wcqe_c_bg_edir, wcqe))
11482 pIocbIn->iocb.un.ulpWord[4] = IOERR_RX_DMA_FAILED;
11483 else
11484 pIocbIn->iocb.un.ulpWord[4] = IOERR_TX_DMA_FAILED;
11485
11486 pIocbIn->iocb.unsli3.sli3_bg.bgstat = 0;
11487 if (bf_get(lpfc_wcqe_c_bg_ge, wcqe)) /* Guard Check failed */
11488 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11489 BGS_GUARD_ERR_MASK;
11490 if (bf_get(lpfc_wcqe_c_bg_ae, wcqe)) /* App Tag Check failed */
11491 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11492 BGS_APPTAG_ERR_MASK;
11493 if (bf_get(lpfc_wcqe_c_bg_re, wcqe)) /* Ref Tag Check failed */
11494 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11495 BGS_REFTAG_ERR_MASK;
11496
11497 /* Check to see if there was any good data before the error */
11498 if (bf_get(lpfc_wcqe_c_bg_tdpv, wcqe)) {
11499 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11500 BGS_HI_WATER_MARK_PRESENT_MASK;
11501 pIocbIn->iocb.unsli3.sli3_bg.bghm =
11502 wcqe->total_data_placed;
11503 }
11504
11505 /*
11506 * Set ALL the error bits to indicate we don't know what
11507 * type of error it is.
11508 */
11509 if (!pIocbIn->iocb.unsli3.sli3_bg.bgstat)
11510 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11511 (BGS_REFTAG_ERR_MASK | BGS_APPTAG_ERR_MASK |
11512 BGS_GUARD_ERR_MASK);
11513 }
11514
James Smart341af102010-01-26 23:07:37 -050011515 /* Pick up HBA exchange busy condition */
11516 if (bf_get(lpfc_wcqe_c_xb, wcqe)) {
11517 spin_lock_irqsave(&phba->hbalock, iflags);
11518 pIocbIn->iocb_flag |= LPFC_EXCHANGE_BUSY;
11519 spin_unlock_irqrestore(&phba->hbalock, iflags);
11520 }
James Smart4f774512009-05-22 14:52:35 -040011521}
11522
11523/**
James Smart45ed1192009-10-02 15:17:02 -040011524 * lpfc_sli4_els_wcqe_to_rspiocbq - Get response iocbq from els wcqe
11525 * @phba: Pointer to HBA context object.
11526 * @wcqe: Pointer to work-queue completion queue entry.
11527 *
11528 * This routine handles an ELS work-queue completion event and construct
11529 * a pseudo response ELS IODBQ from the SLI4 ELS WCQE for the common
11530 * discovery engine to handle.
11531 *
11532 * Return: Pointer to the receive IOCBQ, NULL otherwise.
11533 **/
11534static struct lpfc_iocbq *
11535lpfc_sli4_els_wcqe_to_rspiocbq(struct lpfc_hba *phba,
11536 struct lpfc_iocbq *irspiocbq)
11537{
11538 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
11539 struct lpfc_iocbq *cmdiocbq;
11540 struct lpfc_wcqe_complete *wcqe;
11541 unsigned long iflags;
11542
11543 wcqe = &irspiocbq->cq_event.cqe.wcqe_cmpl;
James Smart7e56aa22012-08-03 12:35:34 -040011544 spin_lock_irqsave(&pring->ring_lock, iflags);
James Smart45ed1192009-10-02 15:17:02 -040011545 pring->stats.iocb_event++;
11546 /* Look up the ELS command IOCB and create pseudo response IOCB */
11547 cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
11548 bf_get(lpfc_wcqe_c_request_tag, wcqe));
James Smart7e56aa22012-08-03 12:35:34 -040011549 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smart45ed1192009-10-02 15:17:02 -040011550
11551 if (unlikely(!cmdiocbq)) {
11552 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11553 "0386 ELS complete with no corresponding "
11554 "cmdiocb: iotag (%d)\n",
11555 bf_get(lpfc_wcqe_c_request_tag, wcqe));
11556 lpfc_sli_release_iocbq(phba, irspiocbq);
11557 return NULL;
11558 }
11559
11560 /* Fake the irspiocbq and copy necessary response information */
James Smart341af102010-01-26 23:07:37 -050011561 lpfc_sli4_iocb_param_transfer(phba, irspiocbq, cmdiocbq, wcqe);
James Smart45ed1192009-10-02 15:17:02 -040011562
11563 return irspiocbq;
11564}
11565
11566/**
James Smart04c68492009-05-22 14:52:52 -040011567 * lpfc_sli4_sp_handle_async_event - Handle an asynchroous event
11568 * @phba: Pointer to HBA context object.
11569 * @cqe: Pointer to mailbox completion queue entry.
11570 *
11571 * This routine process a mailbox completion queue entry with asynchrous
11572 * event.
11573 *
11574 * Return: true if work posted to worker thread, otherwise false.
11575 **/
11576static bool
11577lpfc_sli4_sp_handle_async_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
11578{
11579 struct lpfc_cq_event *cq_event;
11580 unsigned long iflags;
11581
11582 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
11583 "0392 Async Event: word0:x%x, word1:x%x, "
11584 "word2:x%x, word3:x%x\n", mcqe->word0,
11585 mcqe->mcqe_tag0, mcqe->mcqe_tag1, mcqe->trailer);
11586
11587 /* Allocate a new internal CQ_EVENT entry */
11588 cq_event = lpfc_sli4_cq_event_alloc(phba);
11589 if (!cq_event) {
11590 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11591 "0394 Failed to allocate CQ_EVENT entry\n");
11592 return false;
11593 }
11594
11595 /* Move the CQE into an asynchronous event entry */
11596 memcpy(&cq_event->cqe, mcqe, sizeof(struct lpfc_mcqe));
11597 spin_lock_irqsave(&phba->hbalock, iflags);
11598 list_add_tail(&cq_event->list, &phba->sli4_hba.sp_asynce_work_queue);
11599 /* Set the async event flag */
11600 phba->hba_flag |= ASYNC_EVENT;
11601 spin_unlock_irqrestore(&phba->hbalock, iflags);
11602
11603 return true;
11604}
11605
11606/**
11607 * lpfc_sli4_sp_handle_mbox_event - Handle a mailbox completion event
11608 * @phba: Pointer to HBA context object.
11609 * @cqe: Pointer to mailbox completion queue entry.
11610 *
11611 * This routine process a mailbox completion queue entry with mailbox
11612 * completion event.
11613 *
11614 * Return: true if work posted to worker thread, otherwise false.
11615 **/
11616static bool
11617lpfc_sli4_sp_handle_mbox_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
11618{
11619 uint32_t mcqe_status;
11620 MAILBOX_t *mbox, *pmbox;
11621 struct lpfc_mqe *mqe;
11622 struct lpfc_vport *vport;
11623 struct lpfc_nodelist *ndlp;
11624 struct lpfc_dmabuf *mp;
11625 unsigned long iflags;
11626 LPFC_MBOXQ_t *pmb;
11627 bool workposted = false;
11628 int rc;
11629
11630 /* If not a mailbox complete MCQE, out by checking mailbox consume */
11631 if (!bf_get(lpfc_trailer_completed, mcqe))
11632 goto out_no_mqe_complete;
11633
11634 /* Get the reference to the active mbox command */
11635 spin_lock_irqsave(&phba->hbalock, iflags);
11636 pmb = phba->sli.mbox_active;
11637 if (unlikely(!pmb)) {
11638 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
11639 "1832 No pending MBOX command to handle\n");
11640 spin_unlock_irqrestore(&phba->hbalock, iflags);
11641 goto out_no_mqe_complete;
11642 }
11643 spin_unlock_irqrestore(&phba->hbalock, iflags);
11644 mqe = &pmb->u.mqe;
11645 pmbox = (MAILBOX_t *)&pmb->u.mqe;
11646 mbox = phba->mbox;
11647 vport = pmb->vport;
11648
11649 /* Reset heartbeat timer */
11650 phba->last_completion_time = jiffies;
11651 del_timer(&phba->sli.mbox_tmo);
11652
11653 /* Move mbox data to caller's mailbox region, do endian swapping */
11654 if (pmb->mbox_cmpl && mbox)
11655 lpfc_sli_pcimem_bcopy(mbox, mqe, sizeof(struct lpfc_mqe));
James Smart04c68492009-05-22 14:52:52 -040011656
James Smart73d91e52011-10-10 21:32:10 -040011657 /*
11658 * For mcqe errors, conditionally move a modified error code to
11659 * the mbox so that the error will not be missed.
11660 */
11661 mcqe_status = bf_get(lpfc_mcqe_status, mcqe);
11662 if (mcqe_status != MB_CQE_STATUS_SUCCESS) {
11663 if (bf_get(lpfc_mqe_status, mqe) == MBX_SUCCESS)
11664 bf_set(lpfc_mqe_status, mqe,
11665 (LPFC_MBX_ERROR_RANGE | mcqe_status));
11666 }
James Smart04c68492009-05-22 14:52:52 -040011667 if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
11668 pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
11669 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_MBOX_VPORT,
11670 "MBOX dflt rpi: status:x%x rpi:x%x",
11671 mcqe_status,
11672 pmbox->un.varWords[0], 0);
11673 if (mcqe_status == MB_CQE_STATUS_SUCCESS) {
11674 mp = (struct lpfc_dmabuf *)(pmb->context1);
11675 ndlp = (struct lpfc_nodelist *)pmb->context2;
11676 /* Reg_LOGIN of dflt RPI was successful. Now lets get
11677 * RID of the PPI using the same mbox buffer.
11678 */
11679 lpfc_unreg_login(phba, vport->vpi,
11680 pmbox->un.varWords[0], pmb);
11681 pmb->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
11682 pmb->context1 = mp;
11683 pmb->context2 = ndlp;
11684 pmb->vport = vport;
11685 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
11686 if (rc != MBX_BUSY)
11687 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
11688 LOG_SLI, "0385 rc should "
11689 "have been MBX_BUSY\n");
11690 if (rc != MBX_NOT_FINISHED)
11691 goto send_current_mbox;
11692 }
11693 }
11694 spin_lock_irqsave(&phba->pport->work_port_lock, iflags);
11695 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
11696 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflags);
11697
11698 /* There is mailbox completion work to do */
11699 spin_lock_irqsave(&phba->hbalock, iflags);
11700 __lpfc_mbox_cmpl_put(phba, pmb);
11701 phba->work_ha |= HA_MBATT;
11702 spin_unlock_irqrestore(&phba->hbalock, iflags);
11703 workposted = true;
11704
11705send_current_mbox:
11706 spin_lock_irqsave(&phba->hbalock, iflags);
11707 /* Release the mailbox command posting token */
11708 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
11709 /* Setting active mailbox pointer need to be in sync to flag clear */
11710 phba->sli.mbox_active = NULL;
11711 spin_unlock_irqrestore(&phba->hbalock, iflags);
11712 /* Wake up worker thread to post the next pending mailbox command */
11713 lpfc_worker_wake_up(phba);
11714out_no_mqe_complete:
11715 if (bf_get(lpfc_trailer_consumed, mcqe))
11716 lpfc_sli4_mq_release(phba->sli4_hba.mbx_wq);
11717 return workposted;
11718}
11719
11720/**
11721 * lpfc_sli4_sp_handle_mcqe - Process a mailbox completion queue entry
11722 * @phba: Pointer to HBA context object.
11723 * @cqe: Pointer to mailbox completion queue entry.
11724 *
11725 * This routine process a mailbox completion queue entry, it invokes the
11726 * proper mailbox complete handling or asynchrous event handling routine
11727 * according to the MCQE's async bit.
11728 *
11729 * Return: true if work posted to worker thread, otherwise false.
11730 **/
11731static bool
11732lpfc_sli4_sp_handle_mcqe(struct lpfc_hba *phba, struct lpfc_cqe *cqe)
11733{
11734 struct lpfc_mcqe mcqe;
11735 bool workposted;
11736
11737 /* Copy the mailbox MCQE and convert endian order as needed */
11738 lpfc_sli_pcimem_bcopy(cqe, &mcqe, sizeof(struct lpfc_mcqe));
11739
11740 /* Invoke the proper event handling routine */
11741 if (!bf_get(lpfc_trailer_async, &mcqe))
11742 workposted = lpfc_sli4_sp_handle_mbox_event(phba, &mcqe);
11743 else
11744 workposted = lpfc_sli4_sp_handle_async_event(phba, &mcqe);
11745 return workposted;
11746}
11747
11748/**
James Smart4f774512009-05-22 14:52:35 -040011749 * lpfc_sli4_sp_handle_els_wcqe - Handle els work-queue completion event
11750 * @phba: Pointer to HBA context object.
James Smart2a76a282012-08-03 12:35:54 -040011751 * @cq: Pointer to associated CQ
James Smart4f774512009-05-22 14:52:35 -040011752 * @wcqe: Pointer to work-queue completion queue entry.
11753 *
11754 * This routine handles an ELS work-queue completion event.
11755 *
11756 * Return: true if work posted to worker thread, otherwise false.
11757 **/
11758static bool
James Smart2a76a282012-08-03 12:35:54 -040011759lpfc_sli4_sp_handle_els_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
James Smart4f774512009-05-22 14:52:35 -040011760 struct lpfc_wcqe_complete *wcqe)
11761{
James Smart4f774512009-05-22 14:52:35 -040011762 struct lpfc_iocbq *irspiocbq;
11763 unsigned long iflags;
James Smart2a76a282012-08-03 12:35:54 -040011764 struct lpfc_sli_ring *pring = cq->pring;
James Smart0e9bb8d2013-03-01 16:35:12 -050011765 int txq_cnt = 0;
11766 int txcmplq_cnt = 0;
11767 int fcp_txcmplq_cnt = 0;
James Smart4f774512009-05-22 14:52:35 -040011768
James Smart45ed1192009-10-02 15:17:02 -040011769 /* Get an irspiocbq for later ELS response processing use */
James Smart4f774512009-05-22 14:52:35 -040011770 irspiocbq = lpfc_sli_get_iocbq(phba);
11771 if (!irspiocbq) {
James Smart0e9bb8d2013-03-01 16:35:12 -050011772 if (!list_empty(&pring->txq))
11773 txq_cnt++;
11774 if (!list_empty(&pring->txcmplq))
11775 txcmplq_cnt++;
11776 if (!list_empty(&phba->sli.ring[LPFC_FCP_RING].txcmplq))
11777 fcp_txcmplq_cnt++;
James Smart4f774512009-05-22 14:52:35 -040011778 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart2a9bf3d2010-06-07 15:24:45 -040011779 "0387 NO IOCBQ data: txq_cnt=%d iocb_cnt=%d "
11780 "fcp_txcmplq_cnt=%d, els_txcmplq_cnt=%d\n",
James Smart0e9bb8d2013-03-01 16:35:12 -050011781 txq_cnt, phba->iocb_cnt,
11782 fcp_txcmplq_cnt,
11783 txcmplq_cnt);
James Smart45ed1192009-10-02 15:17:02 -040011784 return false;
James Smart4f774512009-05-22 14:52:35 -040011785 }
James Smart4f774512009-05-22 14:52:35 -040011786
James Smart45ed1192009-10-02 15:17:02 -040011787 /* Save off the slow-path queue event for work thread to process */
11788 memcpy(&irspiocbq->cq_event.cqe.wcqe_cmpl, wcqe, sizeof(*wcqe));
James Smart4f774512009-05-22 14:52:35 -040011789 spin_lock_irqsave(&phba->hbalock, iflags);
James Smart4d9ab992009-10-02 15:16:39 -040011790 list_add_tail(&irspiocbq->cq_event.list,
James Smart45ed1192009-10-02 15:17:02 -040011791 &phba->sli4_hba.sp_queue_event);
11792 phba->hba_flag |= HBA_SP_QUEUE_EVT;
James Smart4f774512009-05-22 14:52:35 -040011793 spin_unlock_irqrestore(&phba->hbalock, iflags);
James Smart4f774512009-05-22 14:52:35 -040011794
James Smart45ed1192009-10-02 15:17:02 -040011795 return true;
James Smart4f774512009-05-22 14:52:35 -040011796}
11797
11798/**
11799 * lpfc_sli4_sp_handle_rel_wcqe - Handle slow-path WQ entry consumed event
11800 * @phba: Pointer to HBA context object.
11801 * @wcqe: Pointer to work-queue completion queue entry.
11802 *
11803 * This routine handles slow-path WQ entry comsumed event by invoking the
11804 * proper WQ release routine to the slow-path WQ.
11805 **/
11806static void
11807lpfc_sli4_sp_handle_rel_wcqe(struct lpfc_hba *phba,
11808 struct lpfc_wcqe_release *wcqe)
11809{
James Smart2e90f4b2011-12-13 13:22:37 -050011810 /* sanity check on queue memory */
11811 if (unlikely(!phba->sli4_hba.els_wq))
11812 return;
James Smart4f774512009-05-22 14:52:35 -040011813 /* Check for the slow-path ELS work queue */
11814 if (bf_get(lpfc_wcqe_r_wq_id, wcqe) == phba->sli4_hba.els_wq->queue_id)
11815 lpfc_sli4_wq_release(phba->sli4_hba.els_wq,
11816 bf_get(lpfc_wcqe_r_wqe_index, wcqe));
11817 else
11818 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11819 "2579 Slow-path wqe consume event carries "
11820 "miss-matched qid: wcqe-qid=x%x, sp-qid=x%x\n",
11821 bf_get(lpfc_wcqe_r_wqe_index, wcqe),
11822 phba->sli4_hba.els_wq->queue_id);
11823}
11824
11825/**
11826 * lpfc_sli4_sp_handle_abort_xri_wcqe - Handle a xri abort event
11827 * @phba: Pointer to HBA context object.
11828 * @cq: Pointer to a WQ completion queue.
11829 * @wcqe: Pointer to work-queue completion queue entry.
11830 *
11831 * This routine handles an XRI abort event.
11832 *
11833 * Return: true if work posted to worker thread, otherwise false.
11834 **/
11835static bool
11836lpfc_sli4_sp_handle_abort_xri_wcqe(struct lpfc_hba *phba,
11837 struct lpfc_queue *cq,
11838 struct sli4_wcqe_xri_aborted *wcqe)
11839{
11840 bool workposted = false;
11841 struct lpfc_cq_event *cq_event;
11842 unsigned long iflags;
11843
11844 /* Allocate a new internal CQ_EVENT entry */
11845 cq_event = lpfc_sli4_cq_event_alloc(phba);
11846 if (!cq_event) {
11847 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11848 "0602 Failed to allocate CQ_EVENT entry\n");
11849 return false;
11850 }
11851
11852 /* Move the CQE into the proper xri abort event list */
11853 memcpy(&cq_event->cqe, wcqe, sizeof(struct sli4_wcqe_xri_aborted));
11854 switch (cq->subtype) {
11855 case LPFC_FCP:
11856 spin_lock_irqsave(&phba->hbalock, iflags);
11857 list_add_tail(&cq_event->list,
11858 &phba->sli4_hba.sp_fcp_xri_aborted_work_queue);
11859 /* Set the fcp xri abort event flag */
11860 phba->hba_flag |= FCP_XRI_ABORT_EVENT;
11861 spin_unlock_irqrestore(&phba->hbalock, iflags);
11862 workposted = true;
11863 break;
11864 case LPFC_ELS:
11865 spin_lock_irqsave(&phba->hbalock, iflags);
11866 list_add_tail(&cq_event->list,
11867 &phba->sli4_hba.sp_els_xri_aborted_work_queue);
11868 /* Set the els xri abort event flag */
11869 phba->hba_flag |= ELS_XRI_ABORT_EVENT;
11870 spin_unlock_irqrestore(&phba->hbalock, iflags);
11871 workposted = true;
11872 break;
11873 default:
11874 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11875 "0603 Invalid work queue CQE subtype (x%x)\n",
11876 cq->subtype);
11877 workposted = false;
11878 break;
11879 }
11880 return workposted;
11881}
11882
11883/**
James Smart4d9ab992009-10-02 15:16:39 -040011884 * lpfc_sli4_sp_handle_rcqe - Process a receive-queue completion queue entry
James Smart4f774512009-05-22 14:52:35 -040011885 * @phba: Pointer to HBA context object.
James Smart4d9ab992009-10-02 15:16:39 -040011886 * @rcqe: Pointer to receive-queue completion queue entry.
James Smart4f774512009-05-22 14:52:35 -040011887 *
James Smart4d9ab992009-10-02 15:16:39 -040011888 * This routine process a receive-queue completion queue entry.
James Smart4f774512009-05-22 14:52:35 -040011889 *
11890 * Return: true if work posted to worker thread, otherwise false.
11891 **/
11892static bool
James Smart4d9ab992009-10-02 15:16:39 -040011893lpfc_sli4_sp_handle_rcqe(struct lpfc_hba *phba, struct lpfc_rcqe *rcqe)
11894{
11895 bool workposted = false;
11896 struct lpfc_queue *hrq = phba->sli4_hba.hdr_rq;
11897 struct lpfc_queue *drq = phba->sli4_hba.dat_rq;
11898 struct hbq_dmabuf *dma_buf;
James Smart7851fe22011-07-22 18:36:52 -040011899 uint32_t status, rq_id;
James Smart4d9ab992009-10-02 15:16:39 -040011900 unsigned long iflags;
11901
James Smart2e90f4b2011-12-13 13:22:37 -050011902 /* sanity check on queue memory */
11903 if (unlikely(!hrq) || unlikely(!drq))
11904 return workposted;
11905
James Smart7851fe22011-07-22 18:36:52 -040011906 if (bf_get(lpfc_cqe_code, rcqe) == CQE_CODE_RECEIVE_V1)
11907 rq_id = bf_get(lpfc_rcqe_rq_id_v1, rcqe);
11908 else
11909 rq_id = bf_get(lpfc_rcqe_rq_id, rcqe);
11910 if (rq_id != hrq->queue_id)
James Smart4d9ab992009-10-02 15:16:39 -040011911 goto out;
11912
11913 status = bf_get(lpfc_rcqe_status, rcqe);
11914 switch (status) {
11915 case FC_STATUS_RQ_BUF_LEN_EXCEEDED:
11916 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11917 "2537 Receive Frame Truncated!!\n");
James Smartb84daac2012-08-03 12:35:13 -040011918 hrq->RQ_buf_trunc++;
James Smart4d9ab992009-10-02 15:16:39 -040011919 case FC_STATUS_RQ_SUCCESS:
James Smart5ffc2662009-11-18 15:39:44 -050011920 lpfc_sli4_rq_release(hrq, drq);
James Smart4d9ab992009-10-02 15:16:39 -040011921 spin_lock_irqsave(&phba->hbalock, iflags);
11922 dma_buf = lpfc_sli_hbqbuf_get(&phba->hbqs[0].hbq_buffer_list);
11923 if (!dma_buf) {
James Smartb84daac2012-08-03 12:35:13 -040011924 hrq->RQ_no_buf_found++;
James Smart4d9ab992009-10-02 15:16:39 -040011925 spin_unlock_irqrestore(&phba->hbalock, iflags);
11926 goto out;
11927 }
James Smartb84daac2012-08-03 12:35:13 -040011928 hrq->RQ_rcv_buf++;
James Smart4d9ab992009-10-02 15:16:39 -040011929 memcpy(&dma_buf->cq_event.cqe.rcqe_cmpl, rcqe, sizeof(*rcqe));
11930 /* save off the frame for the word thread to process */
11931 list_add_tail(&dma_buf->cq_event.list,
James Smart45ed1192009-10-02 15:17:02 -040011932 &phba->sli4_hba.sp_queue_event);
James Smart4d9ab992009-10-02 15:16:39 -040011933 /* Frame received */
James Smart45ed1192009-10-02 15:17:02 -040011934 phba->hba_flag |= HBA_SP_QUEUE_EVT;
James Smart4d9ab992009-10-02 15:16:39 -040011935 spin_unlock_irqrestore(&phba->hbalock, iflags);
11936 workposted = true;
11937 break;
11938 case FC_STATUS_INSUFF_BUF_NEED_BUF:
11939 case FC_STATUS_INSUFF_BUF_FRM_DISC:
James Smartb84daac2012-08-03 12:35:13 -040011940 hrq->RQ_no_posted_buf++;
James Smart4d9ab992009-10-02 15:16:39 -040011941 /* Post more buffers if possible */
11942 spin_lock_irqsave(&phba->hbalock, iflags);
11943 phba->hba_flag |= HBA_POST_RECEIVE_BUFFER;
11944 spin_unlock_irqrestore(&phba->hbalock, iflags);
11945 workposted = true;
11946 break;
11947 }
11948out:
11949 return workposted;
James Smart4d9ab992009-10-02 15:16:39 -040011950}
11951
11952/**
11953 * lpfc_sli4_sp_handle_cqe - Process a slow path completion queue entry
11954 * @phba: Pointer to HBA context object.
11955 * @cq: Pointer to the completion queue.
11956 * @wcqe: Pointer to a completion queue entry.
11957 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030011958 * This routine process a slow-path work-queue or receive queue completion queue
James Smart4d9ab992009-10-02 15:16:39 -040011959 * entry.
11960 *
11961 * Return: true if work posted to worker thread, otherwise false.
11962 **/
11963static bool
11964lpfc_sli4_sp_handle_cqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
James Smart4f774512009-05-22 14:52:35 -040011965 struct lpfc_cqe *cqe)
11966{
James Smart45ed1192009-10-02 15:17:02 -040011967 struct lpfc_cqe cqevt;
James Smart4f774512009-05-22 14:52:35 -040011968 bool workposted = false;
11969
11970 /* Copy the work queue CQE and convert endian order if needed */
James Smart45ed1192009-10-02 15:17:02 -040011971 lpfc_sli_pcimem_bcopy(cqe, &cqevt, sizeof(struct lpfc_cqe));
James Smart4f774512009-05-22 14:52:35 -040011972
11973 /* Check and process for different type of WCQE and dispatch */
James Smart45ed1192009-10-02 15:17:02 -040011974 switch (bf_get(lpfc_cqe_code, &cqevt)) {
James Smart4f774512009-05-22 14:52:35 -040011975 case CQE_CODE_COMPL_WQE:
James Smart45ed1192009-10-02 15:17:02 -040011976 /* Process the WQ/RQ complete event */
James Smartbc739052010-08-04 16:11:18 -040011977 phba->last_completion_time = jiffies;
James Smart2a76a282012-08-03 12:35:54 -040011978 workposted = lpfc_sli4_sp_handle_els_wcqe(phba, cq,
James Smart45ed1192009-10-02 15:17:02 -040011979 (struct lpfc_wcqe_complete *)&cqevt);
James Smart4f774512009-05-22 14:52:35 -040011980 break;
11981 case CQE_CODE_RELEASE_WQE:
11982 /* Process the WQ release event */
11983 lpfc_sli4_sp_handle_rel_wcqe(phba,
James Smart45ed1192009-10-02 15:17:02 -040011984 (struct lpfc_wcqe_release *)&cqevt);
James Smart4f774512009-05-22 14:52:35 -040011985 break;
11986 case CQE_CODE_XRI_ABORTED:
11987 /* Process the WQ XRI abort event */
James Smartbc739052010-08-04 16:11:18 -040011988 phba->last_completion_time = jiffies;
James Smart4f774512009-05-22 14:52:35 -040011989 workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
James Smart45ed1192009-10-02 15:17:02 -040011990 (struct sli4_wcqe_xri_aborted *)&cqevt);
James Smart4f774512009-05-22 14:52:35 -040011991 break;
James Smart4d9ab992009-10-02 15:16:39 -040011992 case CQE_CODE_RECEIVE:
James Smart7851fe22011-07-22 18:36:52 -040011993 case CQE_CODE_RECEIVE_V1:
James Smart4d9ab992009-10-02 15:16:39 -040011994 /* Process the RQ event */
James Smartbc739052010-08-04 16:11:18 -040011995 phba->last_completion_time = jiffies;
James Smart4d9ab992009-10-02 15:16:39 -040011996 workposted = lpfc_sli4_sp_handle_rcqe(phba,
James Smart45ed1192009-10-02 15:17:02 -040011997 (struct lpfc_rcqe *)&cqevt);
James Smart4d9ab992009-10-02 15:16:39 -040011998 break;
James Smart4f774512009-05-22 14:52:35 -040011999 default:
12000 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12001 "0388 Not a valid WCQE code: x%x\n",
James Smart45ed1192009-10-02 15:17:02 -040012002 bf_get(lpfc_cqe_code, &cqevt));
James Smart4f774512009-05-22 14:52:35 -040012003 break;
12004 }
12005 return workposted;
12006}
12007
12008/**
James Smart4f774512009-05-22 14:52:35 -040012009 * lpfc_sli4_sp_handle_eqe - Process a slow-path event queue entry
12010 * @phba: Pointer to HBA context object.
12011 * @eqe: Pointer to fast-path event queue entry.
12012 *
12013 * This routine process a event queue entry from the slow-path event queue.
12014 * It will check the MajorCode and MinorCode to determine this is for a
12015 * completion event on a completion queue, if not, an error shall be logged
12016 * and just return. Otherwise, it will get to the corresponding completion
12017 * queue and process all the entries on that completion queue, rearm the
12018 * completion queue, and then return.
12019 *
12020 **/
12021static void
James Smart67d12732012-08-03 12:36:13 -040012022lpfc_sli4_sp_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe,
12023 struct lpfc_queue *speq)
James Smart4f774512009-05-22 14:52:35 -040012024{
James Smart67d12732012-08-03 12:36:13 -040012025 struct lpfc_queue *cq = NULL, *childq;
James Smart4f774512009-05-22 14:52:35 -040012026 struct lpfc_cqe *cqe;
12027 bool workposted = false;
12028 int ecount = 0;
12029 uint16_t cqid;
12030
James Smart4f774512009-05-22 14:52:35 -040012031 /* Get the reference to the corresponding CQ */
James Smartcb5172e2010-03-15 11:25:07 -040012032 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
James Smart4f774512009-05-22 14:52:35 -040012033
James Smart4f774512009-05-22 14:52:35 -040012034 list_for_each_entry(childq, &speq->child_list, list) {
12035 if (childq->queue_id == cqid) {
12036 cq = childq;
12037 break;
12038 }
12039 }
12040 if (unlikely(!cq)) {
James Smart75baf692010-06-08 18:31:21 -040012041 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
12042 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12043 "0365 Slow-path CQ identifier "
12044 "(%d) does not exist\n", cqid);
James Smart4f774512009-05-22 14:52:35 -040012045 return;
12046 }
12047
12048 /* Process all the entries to the CQ */
12049 switch (cq->type) {
12050 case LPFC_MCQ:
12051 while ((cqe = lpfc_sli4_cq_get(cq))) {
12052 workposted |= lpfc_sli4_sp_handle_mcqe(phba, cqe);
James Smart73d91e52011-10-10 21:32:10 -040012053 if (!(++ecount % cq->entry_repost))
James Smart4f774512009-05-22 14:52:35 -040012054 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
James Smartb84daac2012-08-03 12:35:13 -040012055 cq->CQ_mbox++;
James Smart4f774512009-05-22 14:52:35 -040012056 }
12057 break;
12058 case LPFC_WCQ:
12059 while ((cqe = lpfc_sli4_cq_get(cq))) {
James Smart05580562011-05-24 11:40:48 -040012060 if (cq->subtype == LPFC_FCP)
12061 workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq,
12062 cqe);
12063 else
12064 workposted |= lpfc_sli4_sp_handle_cqe(phba, cq,
12065 cqe);
James Smart73d91e52011-10-10 21:32:10 -040012066 if (!(++ecount % cq->entry_repost))
James Smart4f774512009-05-22 14:52:35 -040012067 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
12068 }
James Smartb84daac2012-08-03 12:35:13 -040012069
12070 /* Track the max number of CQEs processed in 1 EQ */
12071 if (ecount > cq->CQ_max_cqe)
12072 cq->CQ_max_cqe = ecount;
James Smart4f774512009-05-22 14:52:35 -040012073 break;
12074 default:
12075 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12076 "0370 Invalid completion queue type (%d)\n",
12077 cq->type);
12078 return;
12079 }
12080
12081 /* Catch the no cq entry condition, log an error */
12082 if (unlikely(ecount == 0))
12083 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12084 "0371 No entry from the CQ: identifier "
12085 "(x%x), type (%d)\n", cq->queue_id, cq->type);
12086
12087 /* In any case, flash and re-arm the RCQ */
12088 lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
12089
12090 /* wake up worker thread if there are works to be done */
12091 if (workposted)
12092 lpfc_worker_wake_up(phba);
12093}
12094
12095/**
12096 * lpfc_sli4_fp_handle_fcp_wcqe - Process fast-path work queue completion entry
James Smart2a76a282012-08-03 12:35:54 -040012097 * @phba: Pointer to HBA context object.
12098 * @cq: Pointer to associated CQ
12099 * @wcqe: Pointer to work-queue completion queue entry.
James Smart4f774512009-05-22 14:52:35 -040012100 *
12101 * This routine process a fast-path work queue completion entry from fast-path
12102 * event queue for FCP command response completion.
12103 **/
12104static void
James Smart2a76a282012-08-03 12:35:54 -040012105lpfc_sli4_fp_handle_fcp_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
James Smart4f774512009-05-22 14:52:35 -040012106 struct lpfc_wcqe_complete *wcqe)
12107{
James Smart2a76a282012-08-03 12:35:54 -040012108 struct lpfc_sli_ring *pring = cq->pring;
James Smart4f774512009-05-22 14:52:35 -040012109 struct lpfc_iocbq *cmdiocbq;
12110 struct lpfc_iocbq irspiocbq;
12111 unsigned long iflags;
12112
James Smart4f774512009-05-22 14:52:35 -040012113 /* Check for response status */
12114 if (unlikely(bf_get(lpfc_wcqe_c_status, wcqe))) {
12115 /* If resource errors reported from HBA, reduce queue
12116 * depth of the SCSI device.
12117 */
James Smarte3d2b802012-08-14 14:25:43 -040012118 if (((bf_get(lpfc_wcqe_c_status, wcqe) ==
12119 IOSTAT_LOCAL_REJECT)) &&
12120 ((wcqe->parameter & IOERR_PARAM_MASK) ==
12121 IOERR_NO_RESOURCES))
James Smart4f774512009-05-22 14:52:35 -040012122 phba->lpfc_rampdown_queue_depth(phba);
James Smarte3d2b802012-08-14 14:25:43 -040012123
James Smart4f774512009-05-22 14:52:35 -040012124 /* Log the error status */
12125 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12126 "0373 FCP complete error: status=x%x, "
12127 "hw_status=x%x, total_data_specified=%d, "
12128 "parameter=x%x, word3=x%x\n",
12129 bf_get(lpfc_wcqe_c_status, wcqe),
12130 bf_get(lpfc_wcqe_c_hw_status, wcqe),
12131 wcqe->total_data_placed, wcqe->parameter,
12132 wcqe->word3);
12133 }
12134
12135 /* Look up the FCP command IOCB and create pseudo response IOCB */
James Smart7e56aa22012-08-03 12:35:34 -040012136 spin_lock_irqsave(&pring->ring_lock, iflags);
12137 pring->stats.iocb_event++;
James Smart4f774512009-05-22 14:52:35 -040012138 cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
12139 bf_get(lpfc_wcqe_c_request_tag, wcqe));
James Smart7e56aa22012-08-03 12:35:34 -040012140 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smart4f774512009-05-22 14:52:35 -040012141 if (unlikely(!cmdiocbq)) {
12142 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12143 "0374 FCP complete with no corresponding "
12144 "cmdiocb: iotag (%d)\n",
12145 bf_get(lpfc_wcqe_c_request_tag, wcqe));
12146 return;
12147 }
12148 if (unlikely(!cmdiocbq->iocb_cmpl)) {
12149 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12150 "0375 FCP cmdiocb not callback function "
12151 "iotag: (%d)\n",
12152 bf_get(lpfc_wcqe_c_request_tag, wcqe));
12153 return;
12154 }
12155
12156 /* Fake the irspiocb and copy necessary response information */
James Smart341af102010-01-26 23:07:37 -050012157 lpfc_sli4_iocb_param_transfer(phba, &irspiocbq, cmdiocbq, wcqe);
James Smart4f774512009-05-22 14:52:35 -040012158
James Smart0f65ff62010-02-26 14:14:23 -050012159 if (cmdiocbq->iocb_flag & LPFC_DRIVER_ABORTED) {
12160 spin_lock_irqsave(&phba->hbalock, iflags);
12161 cmdiocbq->iocb_flag &= ~LPFC_DRIVER_ABORTED;
12162 spin_unlock_irqrestore(&phba->hbalock, iflags);
12163 }
12164
James Smart4f774512009-05-22 14:52:35 -040012165 /* Pass the cmd_iocb and the rsp state to the upper layer */
12166 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq, &irspiocbq);
12167}
12168
12169/**
12170 * lpfc_sli4_fp_handle_rel_wcqe - Handle fast-path WQ entry consumed event
12171 * @phba: Pointer to HBA context object.
12172 * @cq: Pointer to completion queue.
12173 * @wcqe: Pointer to work-queue completion queue entry.
12174 *
12175 * This routine handles an fast-path WQ entry comsumed event by invoking the
12176 * proper WQ release routine to the slow-path WQ.
12177 **/
12178static void
12179lpfc_sli4_fp_handle_rel_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
12180 struct lpfc_wcqe_release *wcqe)
12181{
12182 struct lpfc_queue *childwq;
12183 bool wqid_matched = false;
12184 uint16_t fcp_wqid;
12185
12186 /* Check for fast-path FCP work queue release */
12187 fcp_wqid = bf_get(lpfc_wcqe_r_wq_id, wcqe);
12188 list_for_each_entry(childwq, &cq->child_list, list) {
12189 if (childwq->queue_id == fcp_wqid) {
12190 lpfc_sli4_wq_release(childwq,
12191 bf_get(lpfc_wcqe_r_wqe_index, wcqe));
12192 wqid_matched = true;
12193 break;
12194 }
12195 }
12196 /* Report warning log message if no match found */
12197 if (wqid_matched != true)
12198 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12199 "2580 Fast-path wqe consume event carries "
12200 "miss-matched qid: wcqe-qid=x%x\n", fcp_wqid);
12201}
12202
12203/**
12204 * lpfc_sli4_fp_handle_wcqe - Process fast-path work queue completion entry
12205 * @cq: Pointer to the completion queue.
12206 * @eqe: Pointer to fast-path completion queue entry.
12207 *
12208 * This routine process a fast-path work queue completion entry from fast-path
12209 * event queue for FCP command response completion.
12210 **/
12211static int
12212lpfc_sli4_fp_handle_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
12213 struct lpfc_cqe *cqe)
12214{
12215 struct lpfc_wcqe_release wcqe;
12216 bool workposted = false;
12217
12218 /* Copy the work queue CQE and convert endian order if needed */
12219 lpfc_sli_pcimem_bcopy(cqe, &wcqe, sizeof(struct lpfc_cqe));
12220
12221 /* Check and process for different type of WCQE and dispatch */
12222 switch (bf_get(lpfc_wcqe_c_code, &wcqe)) {
12223 case CQE_CODE_COMPL_WQE:
James Smartb84daac2012-08-03 12:35:13 -040012224 cq->CQ_wq++;
James Smart4f774512009-05-22 14:52:35 -040012225 /* Process the WQ complete event */
James Smart98fc5dd2010-06-07 15:24:29 -040012226 phba->last_completion_time = jiffies;
James Smart2a76a282012-08-03 12:35:54 -040012227 lpfc_sli4_fp_handle_fcp_wcqe(phba, cq,
James Smart4f774512009-05-22 14:52:35 -040012228 (struct lpfc_wcqe_complete *)&wcqe);
12229 break;
12230 case CQE_CODE_RELEASE_WQE:
James Smartb84daac2012-08-03 12:35:13 -040012231 cq->CQ_release_wqe++;
James Smart4f774512009-05-22 14:52:35 -040012232 /* Process the WQ release event */
12233 lpfc_sli4_fp_handle_rel_wcqe(phba, cq,
12234 (struct lpfc_wcqe_release *)&wcqe);
12235 break;
12236 case CQE_CODE_XRI_ABORTED:
James Smartb84daac2012-08-03 12:35:13 -040012237 cq->CQ_xri_aborted++;
James Smart4f774512009-05-22 14:52:35 -040012238 /* Process the WQ XRI abort event */
James Smartbc739052010-08-04 16:11:18 -040012239 phba->last_completion_time = jiffies;
James Smart4f774512009-05-22 14:52:35 -040012240 workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
12241 (struct sli4_wcqe_xri_aborted *)&wcqe);
12242 break;
12243 default:
12244 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12245 "0144 Not a valid WCQE code: x%x\n",
12246 bf_get(lpfc_wcqe_c_code, &wcqe));
12247 break;
12248 }
12249 return workposted;
12250}
12251
12252/**
James Smart67d12732012-08-03 12:36:13 -040012253 * lpfc_sli4_hba_handle_eqe - Process a fast-path event queue entry
James Smart4f774512009-05-22 14:52:35 -040012254 * @phba: Pointer to HBA context object.
12255 * @eqe: Pointer to fast-path event queue entry.
12256 *
12257 * This routine process a event queue entry from the fast-path event queue.
12258 * It will check the MajorCode and MinorCode to determine this is for a
12259 * completion event on a completion queue, if not, an error shall be logged
12260 * and just return. Otherwise, it will get to the corresponding completion
12261 * queue and process all the entries on the completion queue, rearm the
12262 * completion queue, and then return.
12263 **/
12264static void
James Smart67d12732012-08-03 12:36:13 -040012265lpfc_sli4_hba_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe,
12266 uint32_t qidx)
James Smart4f774512009-05-22 14:52:35 -040012267{
12268 struct lpfc_queue *cq;
12269 struct lpfc_cqe *cqe;
12270 bool workposted = false;
12271 uint16_t cqid;
12272 int ecount = 0;
12273
James Smartcb5172e2010-03-15 11:25:07 -040012274 if (unlikely(bf_get_le32(lpfc_eqe_major_code, eqe) != 0)) {
James Smart4f774512009-05-22 14:52:35 -040012275 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart67d12732012-08-03 12:36:13 -040012276 "0366 Not a valid completion "
James Smart4f774512009-05-22 14:52:35 -040012277 "event: majorcode=x%x, minorcode=x%x\n",
James Smartcb5172e2010-03-15 11:25:07 -040012278 bf_get_le32(lpfc_eqe_major_code, eqe),
12279 bf_get_le32(lpfc_eqe_minor_code, eqe));
James Smart4f774512009-05-22 14:52:35 -040012280 return;
12281 }
12282
James Smart67d12732012-08-03 12:36:13 -040012283 /* Get the reference to the corresponding CQ */
12284 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
12285
12286 /* Check if this is a Slow path event */
12287 if (unlikely(cqid != phba->sli4_hba.fcp_cq_map[qidx])) {
12288 lpfc_sli4_sp_handle_eqe(phba, eqe,
12289 phba->sli4_hba.hba_eq[qidx]);
12290 return;
12291 }
12292
James Smart2e90f4b2011-12-13 13:22:37 -050012293 if (unlikely(!phba->sli4_hba.fcp_cq)) {
12294 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12295 "3146 Fast-path completion queues "
12296 "does not exist\n");
12297 return;
12298 }
James Smart67d12732012-08-03 12:36:13 -040012299 cq = phba->sli4_hba.fcp_cq[qidx];
James Smart4f774512009-05-22 14:52:35 -040012300 if (unlikely(!cq)) {
James Smart75baf692010-06-08 18:31:21 -040012301 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
12302 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12303 "0367 Fast-path completion queue "
James Smart67d12732012-08-03 12:36:13 -040012304 "(%d) does not exist\n", qidx);
James Smart4f774512009-05-22 14:52:35 -040012305 return;
12306 }
12307
James Smart4f774512009-05-22 14:52:35 -040012308 if (unlikely(cqid != cq->queue_id)) {
12309 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12310 "0368 Miss-matched fast-path completion "
12311 "queue identifier: eqcqid=%d, fcpcqid=%d\n",
12312 cqid, cq->queue_id);
12313 return;
12314 }
12315
12316 /* Process all the entries to the CQ */
12317 while ((cqe = lpfc_sli4_cq_get(cq))) {
12318 workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq, cqe);
James Smart73d91e52011-10-10 21:32:10 -040012319 if (!(++ecount % cq->entry_repost))
James Smart4f774512009-05-22 14:52:35 -040012320 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
12321 }
12322
James Smartb84daac2012-08-03 12:35:13 -040012323 /* Track the max number of CQEs processed in 1 EQ */
12324 if (ecount > cq->CQ_max_cqe)
12325 cq->CQ_max_cqe = ecount;
12326
James Smart4f774512009-05-22 14:52:35 -040012327 /* Catch the no cq entry condition */
12328 if (unlikely(ecount == 0))
12329 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12330 "0369 No entry from fast-path completion "
12331 "queue fcpcqid=%d\n", cq->queue_id);
12332
12333 /* In any case, flash and re-arm the CQ */
12334 lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
12335
12336 /* wake up worker thread if there are works to be done */
12337 if (workposted)
12338 lpfc_worker_wake_up(phba);
12339}
12340
12341static void
12342lpfc_sli4_eq_flush(struct lpfc_hba *phba, struct lpfc_queue *eq)
12343{
12344 struct lpfc_eqe *eqe;
12345
12346 /* walk all the EQ entries and drop on the floor */
12347 while ((eqe = lpfc_sli4_eq_get(eq)))
12348 ;
12349
12350 /* Clear and re-arm the EQ */
12351 lpfc_sli4_eq_release(eq, LPFC_QUEUE_REARM);
12352}
12353
James Smart1ba981f2014-02-20 09:56:45 -050012354
12355/**
12356 * lpfc_sli4_fof_handle_eqe - Process a Flash Optimized Fabric event queue
12357 * entry
12358 * @phba: Pointer to HBA context object.
12359 * @eqe: Pointer to fast-path event queue entry.
12360 *
12361 * This routine process a event queue entry from the Flash Optimized Fabric
12362 * event queue. It will check the MajorCode and MinorCode to determine this
12363 * is for a completion event on a completion queue, if not, an error shall be
12364 * logged and just return. Otherwise, it will get to the corresponding
12365 * completion queue and process all the entries on the completion queue, rearm
12366 * the completion queue, and then return.
12367 **/
12368static void
12369lpfc_sli4_fof_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe)
12370{
12371 struct lpfc_queue *cq;
12372 struct lpfc_cqe *cqe;
12373 bool workposted = false;
12374 uint16_t cqid;
12375 int ecount = 0;
12376
12377 if (unlikely(bf_get_le32(lpfc_eqe_major_code, eqe) != 0)) {
12378 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12379 "9147 Not a valid completion "
12380 "event: majorcode=x%x, minorcode=x%x\n",
12381 bf_get_le32(lpfc_eqe_major_code, eqe),
12382 bf_get_le32(lpfc_eqe_minor_code, eqe));
12383 return;
12384 }
12385
12386 /* Get the reference to the corresponding CQ */
12387 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
12388
12389 /* Next check for OAS */
12390 cq = phba->sli4_hba.oas_cq;
12391 if (unlikely(!cq)) {
12392 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
12393 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12394 "9148 OAS completion queue "
12395 "does not exist\n");
12396 return;
12397 }
12398
12399 if (unlikely(cqid != cq->queue_id)) {
12400 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12401 "9149 Miss-matched fast-path compl "
12402 "queue id: eqcqid=%d, fcpcqid=%d\n",
12403 cqid, cq->queue_id);
12404 return;
12405 }
12406
12407 /* Process all the entries to the OAS CQ */
12408 while ((cqe = lpfc_sli4_cq_get(cq))) {
12409 workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq, cqe);
12410 if (!(++ecount % cq->entry_repost))
12411 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
12412 }
12413
12414 /* Track the max number of CQEs processed in 1 EQ */
12415 if (ecount > cq->CQ_max_cqe)
12416 cq->CQ_max_cqe = ecount;
12417
12418 /* Catch the no cq entry condition */
12419 if (unlikely(ecount == 0))
12420 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12421 "9153 No entry from fast-path completion "
12422 "queue fcpcqid=%d\n", cq->queue_id);
12423
12424 /* In any case, flash and re-arm the CQ */
12425 lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
12426
12427 /* wake up worker thread if there are works to be done */
12428 if (workposted)
12429 lpfc_worker_wake_up(phba);
12430}
12431
12432/**
12433 * lpfc_sli4_fof_intr_handler - HBA interrupt handler to SLI-4 device
12434 * @irq: Interrupt number.
12435 * @dev_id: The device context pointer.
12436 *
12437 * This function is directly called from the PCI layer as an interrupt
12438 * service routine when device with SLI-4 interface spec is enabled with
12439 * MSI-X multi-message interrupt mode and there is a Flash Optimized Fabric
12440 * IOCB ring event in the HBA. However, when the device is enabled with either
12441 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
12442 * device-level interrupt handler. When the PCI slot is in error recovery
12443 * or the HBA is undergoing initialization, the interrupt handler will not
12444 * process the interrupt. The Flash Optimized Fabric ring event are handled in
12445 * the intrrupt context. This function is called without any lock held.
12446 * It gets the hbalock to access and update SLI data structures. Note that,
12447 * the EQ to CQ are one-to-one map such that the EQ index is
12448 * equal to that of CQ index.
12449 *
12450 * This function returns IRQ_HANDLED when interrupt is handled else it
12451 * returns IRQ_NONE.
12452 **/
12453irqreturn_t
12454lpfc_sli4_fof_intr_handler(int irq, void *dev_id)
12455{
12456 struct lpfc_hba *phba;
12457 struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
12458 struct lpfc_queue *eq;
12459 struct lpfc_eqe *eqe;
12460 unsigned long iflag;
12461 int ecount = 0;
12462 uint32_t eqidx;
12463
12464 /* Get the driver's phba structure from the dev_id */
12465 fcp_eq_hdl = (struct lpfc_fcp_eq_hdl *)dev_id;
12466 phba = fcp_eq_hdl->phba;
12467 eqidx = fcp_eq_hdl->idx;
12468
12469 if (unlikely(!phba))
12470 return IRQ_NONE;
12471
12472 /* Get to the EQ struct associated with this vector */
12473 eq = phba->sli4_hba.fof_eq;
12474 if (unlikely(!eq))
12475 return IRQ_NONE;
12476
12477 /* Check device state for handling interrupt */
12478 if (unlikely(lpfc_intr_state_check(phba))) {
12479 eq->EQ_badstate++;
12480 /* Check again for link_state with lock held */
12481 spin_lock_irqsave(&phba->hbalock, iflag);
12482 if (phba->link_state < LPFC_LINK_DOWN)
12483 /* Flush, clear interrupt, and rearm the EQ */
12484 lpfc_sli4_eq_flush(phba, eq);
12485 spin_unlock_irqrestore(&phba->hbalock, iflag);
12486 return IRQ_NONE;
12487 }
12488
12489 /*
12490 * Process all the event on FCP fast-path EQ
12491 */
12492 while ((eqe = lpfc_sli4_eq_get(eq))) {
12493 lpfc_sli4_fof_handle_eqe(phba, eqe);
12494 if (!(++ecount % eq->entry_repost))
12495 lpfc_sli4_eq_release(eq, LPFC_QUEUE_NOARM);
12496 eq->EQ_processed++;
12497 }
12498
12499 /* Track the max number of EQEs processed in 1 intr */
12500 if (ecount > eq->EQ_max_eqe)
12501 eq->EQ_max_eqe = ecount;
12502
12503
12504 if (unlikely(ecount == 0)) {
12505 eq->EQ_no_entry++;
12506
12507 if (phba->intr_type == MSIX)
12508 /* MSI-X treated interrupt served as no EQ share INT */
12509 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12510 "9145 MSI-X interrupt with no EQE\n");
12511 else {
12512 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12513 "9146 ISR interrupt with no EQE\n");
12514 /* Non MSI-X treated on interrupt as EQ share INT */
12515 return IRQ_NONE;
12516 }
12517 }
12518 /* Always clear and re-arm the fast-path EQ */
12519 lpfc_sli4_eq_release(eq, LPFC_QUEUE_REARM);
12520 return IRQ_HANDLED;
12521}
12522
James Smart4f774512009-05-22 14:52:35 -040012523/**
James Smart67d12732012-08-03 12:36:13 -040012524 * lpfc_sli4_hba_intr_handler - HBA interrupt handler to SLI-4 device
James Smart4f774512009-05-22 14:52:35 -040012525 * @irq: Interrupt number.
12526 * @dev_id: The device context pointer.
12527 *
12528 * This function is directly called from the PCI layer as an interrupt
12529 * service routine when device with SLI-4 interface spec is enabled with
12530 * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
12531 * ring event in the HBA. However, when the device is enabled with either
12532 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
12533 * device-level interrupt handler. When the PCI slot is in error recovery
12534 * or the HBA is undergoing initialization, the interrupt handler will not
12535 * process the interrupt. The SCSI FCP fast-path ring event are handled in
12536 * the intrrupt context. This function is called without any lock held.
12537 * It gets the hbalock to access and update SLI data structures. Note that,
12538 * the FCP EQ to FCP CQ are one-to-one map such that the FCP EQ index is
12539 * equal to that of FCP CQ index.
12540 *
James Smart67d12732012-08-03 12:36:13 -040012541 * The link attention and ELS ring attention events are handled
12542 * by the worker thread. The interrupt handler signals the worker thread
12543 * and returns for these events. This function is called without any lock
12544 * held. It gets the hbalock to access and update SLI data structures.
12545 *
James Smart4f774512009-05-22 14:52:35 -040012546 * This function returns IRQ_HANDLED when interrupt is handled else it
12547 * returns IRQ_NONE.
12548 **/
12549irqreturn_t
James Smart67d12732012-08-03 12:36:13 -040012550lpfc_sli4_hba_intr_handler(int irq, void *dev_id)
James Smart4f774512009-05-22 14:52:35 -040012551{
12552 struct lpfc_hba *phba;
12553 struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
12554 struct lpfc_queue *fpeq;
12555 struct lpfc_eqe *eqe;
12556 unsigned long iflag;
12557 int ecount = 0;
James Smart962bc512013-01-03 15:44:00 -050012558 int fcp_eqidx;
James Smart4f774512009-05-22 14:52:35 -040012559
12560 /* Get the driver's phba structure from the dev_id */
12561 fcp_eq_hdl = (struct lpfc_fcp_eq_hdl *)dev_id;
12562 phba = fcp_eq_hdl->phba;
12563 fcp_eqidx = fcp_eq_hdl->idx;
12564
12565 if (unlikely(!phba))
12566 return IRQ_NONE;
James Smart67d12732012-08-03 12:36:13 -040012567 if (unlikely(!phba->sli4_hba.hba_eq))
James Smart5350d872011-10-10 21:33:49 -040012568 return IRQ_NONE;
James Smart4f774512009-05-22 14:52:35 -040012569
12570 /* Get to the EQ struct associated with this vector */
James Smart67d12732012-08-03 12:36:13 -040012571 fpeq = phba->sli4_hba.hba_eq[fcp_eqidx];
James Smart2e90f4b2011-12-13 13:22:37 -050012572 if (unlikely(!fpeq))
12573 return IRQ_NONE;
James Smart4f774512009-05-22 14:52:35 -040012574
James Smartba20c852012-08-03 12:36:52 -040012575 if (lpfc_fcp_look_ahead) {
12576 if (atomic_dec_and_test(&fcp_eq_hdl->fcp_eq_in_use))
12577 lpfc_sli4_eq_clr_intr(fpeq);
12578 else {
12579 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
12580 return IRQ_NONE;
12581 }
12582 }
12583
James Smart4f774512009-05-22 14:52:35 -040012584 /* Check device state for handling interrupt */
12585 if (unlikely(lpfc_intr_state_check(phba))) {
James Smartb84daac2012-08-03 12:35:13 -040012586 fpeq->EQ_badstate++;
James Smart4f774512009-05-22 14:52:35 -040012587 /* Check again for link_state with lock held */
12588 spin_lock_irqsave(&phba->hbalock, iflag);
12589 if (phba->link_state < LPFC_LINK_DOWN)
12590 /* Flush, clear interrupt, and rearm the EQ */
12591 lpfc_sli4_eq_flush(phba, fpeq);
12592 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smartba20c852012-08-03 12:36:52 -040012593 if (lpfc_fcp_look_ahead)
12594 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
James Smart4f774512009-05-22 14:52:35 -040012595 return IRQ_NONE;
12596 }
12597
12598 /*
12599 * Process all the event on FCP fast-path EQ
12600 */
12601 while ((eqe = lpfc_sli4_eq_get(fpeq))) {
James Smarteb016562014-09-03 12:58:06 -040012602 if (eqe == NULL)
12603 break;
12604
James Smart67d12732012-08-03 12:36:13 -040012605 lpfc_sli4_hba_handle_eqe(phba, eqe, fcp_eqidx);
James Smart73d91e52011-10-10 21:32:10 -040012606 if (!(++ecount % fpeq->entry_repost))
James Smart4f774512009-05-22 14:52:35 -040012607 lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_NOARM);
James Smartb84daac2012-08-03 12:35:13 -040012608 fpeq->EQ_processed++;
James Smart4f774512009-05-22 14:52:35 -040012609 }
12610
James Smartb84daac2012-08-03 12:35:13 -040012611 /* Track the max number of EQEs processed in 1 intr */
12612 if (ecount > fpeq->EQ_max_eqe)
12613 fpeq->EQ_max_eqe = ecount;
12614
James Smart4f774512009-05-22 14:52:35 -040012615 /* Always clear and re-arm the fast-path EQ */
12616 lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_REARM);
12617
12618 if (unlikely(ecount == 0)) {
James Smartb84daac2012-08-03 12:35:13 -040012619 fpeq->EQ_no_entry++;
James Smartba20c852012-08-03 12:36:52 -040012620
12621 if (lpfc_fcp_look_ahead) {
12622 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
12623 return IRQ_NONE;
12624 }
12625
James Smart4f774512009-05-22 14:52:35 -040012626 if (phba->intr_type == MSIX)
12627 /* MSI-X treated interrupt served as no EQ share INT */
12628 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12629 "0358 MSI-X interrupt with no EQE\n");
12630 else
12631 /* Non MSI-X treated on interrupt as EQ share INT */
12632 return IRQ_NONE;
12633 }
12634
James Smartba20c852012-08-03 12:36:52 -040012635 if (lpfc_fcp_look_ahead)
12636 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
James Smart4f774512009-05-22 14:52:35 -040012637 return IRQ_HANDLED;
12638} /* lpfc_sli4_fp_intr_handler */
12639
12640/**
12641 * lpfc_sli4_intr_handler - Device-level interrupt handler for SLI-4 device
12642 * @irq: Interrupt number.
12643 * @dev_id: The device context pointer.
12644 *
12645 * This function is the device-level interrupt handler to device with SLI-4
12646 * interface spec, called from the PCI layer when either MSI or Pin-IRQ
12647 * interrupt mode is enabled and there is an event in the HBA which requires
12648 * driver attention. This function invokes the slow-path interrupt attention
12649 * handling function and fast-path interrupt attention handling function in
12650 * turn to process the relevant HBA attention events. This function is called
12651 * without any lock held. It gets the hbalock to access and update SLI data
12652 * structures.
12653 *
12654 * This function returns IRQ_HANDLED when interrupt is handled, else it
12655 * returns IRQ_NONE.
12656 **/
12657irqreturn_t
12658lpfc_sli4_intr_handler(int irq, void *dev_id)
12659{
12660 struct lpfc_hba *phba;
James Smart67d12732012-08-03 12:36:13 -040012661 irqreturn_t hba_irq_rc;
12662 bool hba_handled = false;
James Smart962bc512013-01-03 15:44:00 -050012663 int fcp_eqidx;
James Smart4f774512009-05-22 14:52:35 -040012664
12665 /* Get the driver's phba structure from the dev_id */
12666 phba = (struct lpfc_hba *)dev_id;
12667
12668 if (unlikely(!phba))
12669 return IRQ_NONE;
12670
12671 /*
James Smart4f774512009-05-22 14:52:35 -040012672 * Invoke fast-path host attention interrupt handling as appropriate.
12673 */
James Smart67d12732012-08-03 12:36:13 -040012674 for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_io_channel; fcp_eqidx++) {
12675 hba_irq_rc = lpfc_sli4_hba_intr_handler(irq,
James Smart4f774512009-05-22 14:52:35 -040012676 &phba->sli4_hba.fcp_eq_hdl[fcp_eqidx]);
James Smart67d12732012-08-03 12:36:13 -040012677 if (hba_irq_rc == IRQ_HANDLED)
12678 hba_handled |= true;
James Smart4f774512009-05-22 14:52:35 -040012679 }
12680
James Smart1ba981f2014-02-20 09:56:45 -050012681 if (phba->cfg_fof) {
12682 hba_irq_rc = lpfc_sli4_fof_intr_handler(irq,
12683 &phba->sli4_hba.fcp_eq_hdl[0]);
12684 if (hba_irq_rc == IRQ_HANDLED)
12685 hba_handled |= true;
12686 }
12687
James Smart67d12732012-08-03 12:36:13 -040012688 return (hba_handled == true) ? IRQ_HANDLED : IRQ_NONE;
James Smart4f774512009-05-22 14:52:35 -040012689} /* lpfc_sli4_intr_handler */
12690
12691/**
12692 * lpfc_sli4_queue_free - free a queue structure and associated memory
12693 * @queue: The queue structure to free.
12694 *
Uwe Kleine-Königb5950762010-11-01 15:38:34 -040012695 * This function frees a queue structure and the DMAable memory used for
James Smart4f774512009-05-22 14:52:35 -040012696 * the host resident queue. This function must be called after destroying the
12697 * queue on the HBA.
12698 **/
12699void
12700lpfc_sli4_queue_free(struct lpfc_queue *queue)
12701{
12702 struct lpfc_dmabuf *dmabuf;
12703
12704 if (!queue)
12705 return;
12706
12707 while (!list_empty(&queue->page_list)) {
12708 list_remove_head(&queue->page_list, dmabuf, struct lpfc_dmabuf,
12709 list);
James Smart49198b32010-04-06 15:04:33 -040012710 dma_free_coherent(&queue->phba->pcidev->dev, SLI4_PAGE_SIZE,
James Smart4f774512009-05-22 14:52:35 -040012711 dmabuf->virt, dmabuf->phys);
12712 kfree(dmabuf);
12713 }
12714 kfree(queue);
12715 return;
12716}
12717
12718/**
12719 * lpfc_sli4_queue_alloc - Allocate and initialize a queue structure
12720 * @phba: The HBA that this queue is being created on.
12721 * @entry_size: The size of each queue entry for this queue.
12722 * @entry count: The number of entries that this queue will handle.
12723 *
12724 * This function allocates a queue structure and the DMAable memory used for
12725 * the host resident queue. This function must be called before creating the
12726 * queue on the HBA.
12727 **/
12728struct lpfc_queue *
12729lpfc_sli4_queue_alloc(struct lpfc_hba *phba, uint32_t entry_size,
12730 uint32_t entry_count)
12731{
12732 struct lpfc_queue *queue;
12733 struct lpfc_dmabuf *dmabuf;
12734 int x, total_qe_count;
12735 void *dma_pointer;
James Smartcb5172e2010-03-15 11:25:07 -040012736 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
James Smart4f774512009-05-22 14:52:35 -040012737
James Smartcb5172e2010-03-15 11:25:07 -040012738 if (!phba->sli4_hba.pc_sli4_params.supported)
12739 hw_page_size = SLI4_PAGE_SIZE;
12740
James Smart4f774512009-05-22 14:52:35 -040012741 queue = kzalloc(sizeof(struct lpfc_queue) +
12742 (sizeof(union sli4_qe) * entry_count), GFP_KERNEL);
12743 if (!queue)
12744 return NULL;
James Smartcb5172e2010-03-15 11:25:07 -040012745 queue->page_count = (ALIGN(entry_size * entry_count,
12746 hw_page_size))/hw_page_size;
James Smart4f774512009-05-22 14:52:35 -040012747 INIT_LIST_HEAD(&queue->list);
12748 INIT_LIST_HEAD(&queue->page_list);
12749 INIT_LIST_HEAD(&queue->child_list);
12750 for (x = 0, total_qe_count = 0; x < queue->page_count; x++) {
12751 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
12752 if (!dmabuf)
12753 goto out_fail;
Joe Perches1aee3832014-09-03 12:56:12 -040012754 dmabuf->virt = dma_zalloc_coherent(&phba->pcidev->dev,
12755 hw_page_size, &dmabuf->phys,
12756 GFP_KERNEL);
James Smart4f774512009-05-22 14:52:35 -040012757 if (!dmabuf->virt) {
12758 kfree(dmabuf);
12759 goto out_fail;
12760 }
12761 dmabuf->buffer_tag = x;
12762 list_add_tail(&dmabuf->list, &queue->page_list);
12763 /* initialize queue's entry array */
12764 dma_pointer = dmabuf->virt;
12765 for (; total_qe_count < entry_count &&
James Smartcb5172e2010-03-15 11:25:07 -040012766 dma_pointer < (hw_page_size + dmabuf->virt);
James Smart4f774512009-05-22 14:52:35 -040012767 total_qe_count++, dma_pointer += entry_size) {
12768 queue->qe[total_qe_count].address = dma_pointer;
12769 }
12770 }
12771 queue->entry_size = entry_size;
12772 queue->entry_count = entry_count;
James Smart73d91e52011-10-10 21:32:10 -040012773
12774 /*
12775 * entry_repost is calculated based on the number of entries in the
12776 * queue. This works out except for RQs. If buffers are NOT initially
12777 * posted for every RQE, entry_repost should be adjusted accordingly.
12778 */
12779 queue->entry_repost = (entry_count >> 3);
12780 if (queue->entry_repost < LPFC_QUEUE_MIN_REPOST)
12781 queue->entry_repost = LPFC_QUEUE_MIN_REPOST;
James Smart4f774512009-05-22 14:52:35 -040012782 queue->phba = phba;
12783
12784 return queue;
12785out_fail:
12786 lpfc_sli4_queue_free(queue);
12787 return NULL;
12788}
12789
12790/**
James Smart962bc512013-01-03 15:44:00 -050012791 * lpfc_dual_chute_pci_bar_map - Map pci base address register to host memory
12792 * @phba: HBA structure that indicates port to create a queue on.
12793 * @pci_barset: PCI BAR set flag.
12794 *
12795 * This function shall perform iomap of the specified PCI BAR address to host
12796 * memory address if not already done so and return it. The returned host
12797 * memory address can be NULL.
12798 */
12799static void __iomem *
12800lpfc_dual_chute_pci_bar_map(struct lpfc_hba *phba, uint16_t pci_barset)
12801{
12802 struct pci_dev *pdev;
James Smart962bc512013-01-03 15:44:00 -050012803
12804 if (!phba->pcidev)
12805 return NULL;
12806 else
12807 pdev = phba->pcidev;
12808
12809 switch (pci_barset) {
12810 case WQ_PCI_BAR_0_AND_1:
James Smart962bc512013-01-03 15:44:00 -050012811 return phba->pci_bar0_memmap_p;
12812 case WQ_PCI_BAR_2_AND_3:
James Smart962bc512013-01-03 15:44:00 -050012813 return phba->pci_bar2_memmap_p;
12814 case WQ_PCI_BAR_4_AND_5:
James Smart962bc512013-01-03 15:44:00 -050012815 return phba->pci_bar4_memmap_p;
12816 default:
12817 break;
12818 }
12819 return NULL;
12820}
12821
12822/**
James Smart173edbb2012-06-12 13:54:50 -040012823 * lpfc_modify_fcp_eq_delay - Modify Delay Multiplier on FCP EQs
12824 * @phba: HBA structure that indicates port to create a queue on.
12825 * @startq: The starting FCP EQ to modify
12826 *
12827 * This function sends an MODIFY_EQ_DELAY mailbox command to the HBA.
12828 *
12829 * The @phba struct is used to send mailbox command to HBA. The @startq
12830 * is used to get the starting FCP EQ to change.
12831 * This function is asynchronous and will wait for the mailbox
12832 * command to finish before continuing.
12833 *
12834 * On success this function will return a zero. If unable to allocate enough
12835 * memory this function will return -ENOMEM. If the queue create mailbox command
12836 * fails this function will return -ENXIO.
12837 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040012838int
James Smart173edbb2012-06-12 13:54:50 -040012839lpfc_modify_fcp_eq_delay(struct lpfc_hba *phba, uint16_t startq)
12840{
12841 struct lpfc_mbx_modify_eq_delay *eq_delay;
12842 LPFC_MBOXQ_t *mbox;
12843 struct lpfc_queue *eq;
12844 int cnt, rc, length, status = 0;
12845 uint32_t shdr_status, shdr_add_status;
James Smartee020062012-09-29 11:28:52 -040012846 uint32_t result;
James Smart173edbb2012-06-12 13:54:50 -040012847 int fcp_eqidx;
12848 union lpfc_sli4_cfg_shdr *shdr;
12849 uint16_t dmult;
12850
James Smart67d12732012-08-03 12:36:13 -040012851 if (startq >= phba->cfg_fcp_io_channel)
James Smart173edbb2012-06-12 13:54:50 -040012852 return 0;
12853
12854 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
12855 if (!mbox)
12856 return -ENOMEM;
12857 length = (sizeof(struct lpfc_mbx_modify_eq_delay) -
12858 sizeof(struct lpfc_sli4_cfg_mhdr));
12859 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
12860 LPFC_MBOX_OPCODE_MODIFY_EQ_DELAY,
12861 length, LPFC_SLI4_MBX_EMBED);
12862 eq_delay = &mbox->u.mqe.un.eq_delay;
12863
12864 /* Calculate delay multiper from maximum interrupt per second */
James Smartee020062012-09-29 11:28:52 -040012865 result = phba->cfg_fcp_imax / phba->cfg_fcp_io_channel;
12866 if (result > LPFC_DMULT_CONST)
12867 dmult = 0;
12868 else
12869 dmult = LPFC_DMULT_CONST/result - 1;
James Smart173edbb2012-06-12 13:54:50 -040012870
12871 cnt = 0;
James Smart67d12732012-08-03 12:36:13 -040012872 for (fcp_eqidx = startq; fcp_eqidx < phba->cfg_fcp_io_channel;
James Smart173edbb2012-06-12 13:54:50 -040012873 fcp_eqidx++) {
James Smart67d12732012-08-03 12:36:13 -040012874 eq = phba->sli4_hba.hba_eq[fcp_eqidx];
James Smart173edbb2012-06-12 13:54:50 -040012875 if (!eq)
12876 continue;
12877 eq_delay->u.request.eq[cnt].eq_id = eq->queue_id;
12878 eq_delay->u.request.eq[cnt].phase = 0;
12879 eq_delay->u.request.eq[cnt].delay_multi = dmult;
12880 cnt++;
12881 if (cnt >= LPFC_MAX_EQ_DELAY)
12882 break;
12883 }
12884 eq_delay->u.request.num_eq = cnt;
12885
12886 mbox->vport = phba->pport;
12887 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
12888 mbox->context1 = NULL;
12889 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
12890 shdr = (union lpfc_sli4_cfg_shdr *) &eq_delay->header.cfg_shdr;
12891 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12892 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12893 if (shdr_status || shdr_add_status || rc) {
12894 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12895 "2512 MODIFY_EQ_DELAY mailbox failed with "
12896 "status x%x add_status x%x, mbx status x%x\n",
12897 shdr_status, shdr_add_status, rc);
12898 status = -ENXIO;
12899 }
12900 mempool_free(mbox, phba->mbox_mem_pool);
12901 return status;
12902}
12903
12904/**
James Smart4f774512009-05-22 14:52:35 -040012905 * lpfc_eq_create - Create an Event Queue on the HBA
12906 * @phba: HBA structure that indicates port to create a queue on.
12907 * @eq: The queue structure to use to create the event queue.
12908 * @imax: The maximum interrupt per second limit.
12909 *
12910 * This function creates an event queue, as detailed in @eq, on a port,
12911 * described by @phba by sending an EQ_CREATE mailbox command to the HBA.
12912 *
12913 * The @phba struct is used to send mailbox command to HBA. The @eq struct
12914 * is used to get the entry count and entry size that are necessary to
12915 * determine the number of pages to allocate and use for this queue. This
12916 * function will send the EQ_CREATE mailbox command to the HBA to setup the
12917 * event queue. This function is asynchronous and will wait for the mailbox
12918 * command to finish before continuing.
12919 *
12920 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040012921 * memory this function will return -ENOMEM. If the queue create mailbox command
12922 * fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040012923 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040012924int
James Smartee020062012-09-29 11:28:52 -040012925lpfc_eq_create(struct lpfc_hba *phba, struct lpfc_queue *eq, uint32_t imax)
James Smart4f774512009-05-22 14:52:35 -040012926{
12927 struct lpfc_mbx_eq_create *eq_create;
12928 LPFC_MBOXQ_t *mbox;
12929 int rc, length, status = 0;
12930 struct lpfc_dmabuf *dmabuf;
12931 uint32_t shdr_status, shdr_add_status;
12932 union lpfc_sli4_cfg_shdr *shdr;
12933 uint16_t dmult;
James Smart49198b32010-04-06 15:04:33 -040012934 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
12935
James Smart2e90f4b2011-12-13 13:22:37 -050012936 /* sanity check on queue memory */
12937 if (!eq)
12938 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040012939 if (!phba->sli4_hba.pc_sli4_params.supported)
12940 hw_page_size = SLI4_PAGE_SIZE;
James Smart4f774512009-05-22 14:52:35 -040012941
12942 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
12943 if (!mbox)
12944 return -ENOMEM;
12945 length = (sizeof(struct lpfc_mbx_eq_create) -
12946 sizeof(struct lpfc_sli4_cfg_mhdr));
12947 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
12948 LPFC_MBOX_OPCODE_EQ_CREATE,
12949 length, LPFC_SLI4_MBX_EMBED);
12950 eq_create = &mbox->u.mqe.un.eq_create;
12951 bf_set(lpfc_mbx_eq_create_num_pages, &eq_create->u.request,
12952 eq->page_count);
12953 bf_set(lpfc_eq_context_size, &eq_create->u.request.context,
12954 LPFC_EQE_SIZE);
12955 bf_set(lpfc_eq_context_valid, &eq_create->u.request.context, 1);
12956 /* Calculate delay multiper from maximum interrupt per second */
James Smartee020062012-09-29 11:28:52 -040012957 if (imax > LPFC_DMULT_CONST)
12958 dmult = 0;
12959 else
12960 dmult = LPFC_DMULT_CONST/imax - 1;
James Smart4f774512009-05-22 14:52:35 -040012961 bf_set(lpfc_eq_context_delay_multi, &eq_create->u.request.context,
12962 dmult);
12963 switch (eq->entry_count) {
12964 default:
12965 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12966 "0360 Unsupported EQ count. (%d)\n",
12967 eq->entry_count);
12968 if (eq->entry_count < 256)
12969 return -EINVAL;
12970 /* otherwise default to smallest count (drop through) */
12971 case 256:
12972 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
12973 LPFC_EQ_CNT_256);
12974 break;
12975 case 512:
12976 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
12977 LPFC_EQ_CNT_512);
12978 break;
12979 case 1024:
12980 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
12981 LPFC_EQ_CNT_1024);
12982 break;
12983 case 2048:
12984 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
12985 LPFC_EQ_CNT_2048);
12986 break;
12987 case 4096:
12988 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
12989 LPFC_EQ_CNT_4096);
12990 break;
12991 }
12992 list_for_each_entry(dmabuf, &eq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040012993 memset(dmabuf->virt, 0, hw_page_size);
James Smart4f774512009-05-22 14:52:35 -040012994 eq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
12995 putPaddrLow(dmabuf->phys);
12996 eq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
12997 putPaddrHigh(dmabuf->phys);
12998 }
12999 mbox->vport = phba->pport;
13000 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
13001 mbox->context1 = NULL;
13002 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13003 shdr = (union lpfc_sli4_cfg_shdr *) &eq_create->header.cfg_shdr;
13004 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13005 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13006 if (shdr_status || shdr_add_status || rc) {
13007 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13008 "2500 EQ_CREATE mailbox failed with "
13009 "status x%x add_status x%x, mbx status x%x\n",
13010 shdr_status, shdr_add_status, rc);
13011 status = -ENXIO;
13012 }
13013 eq->type = LPFC_EQ;
13014 eq->subtype = LPFC_NONE;
13015 eq->queue_id = bf_get(lpfc_mbx_eq_create_q_id, &eq_create->u.response);
13016 if (eq->queue_id == 0xFFFF)
13017 status = -ENXIO;
13018 eq->host_index = 0;
13019 eq->hba_index = 0;
13020
James Smart8fa38512009-07-19 10:01:03 -040013021 mempool_free(mbox, phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040013022 return status;
13023}
13024
13025/**
13026 * lpfc_cq_create - Create a Completion Queue on the HBA
13027 * @phba: HBA structure that indicates port to create a queue on.
13028 * @cq: The queue structure to use to create the completion queue.
13029 * @eq: The event queue to bind this completion queue to.
13030 *
13031 * This function creates a completion queue, as detailed in @wq, on a port,
13032 * described by @phba by sending a CQ_CREATE mailbox command to the HBA.
13033 *
13034 * The @phba struct is used to send mailbox command to HBA. The @cq struct
13035 * is used to get the entry count and entry size that are necessary to
13036 * determine the number of pages to allocate and use for this queue. The @eq
13037 * is used to indicate which event queue to bind this completion queue to. This
13038 * function will send the CQ_CREATE mailbox command to the HBA to setup the
13039 * completion queue. This function is asynchronous and will wait for the mailbox
13040 * command to finish before continuing.
13041 *
13042 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040013043 * memory this function will return -ENOMEM. If the queue create mailbox command
13044 * fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040013045 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040013046int
James Smart4f774512009-05-22 14:52:35 -040013047lpfc_cq_create(struct lpfc_hba *phba, struct lpfc_queue *cq,
13048 struct lpfc_queue *eq, uint32_t type, uint32_t subtype)
13049{
13050 struct lpfc_mbx_cq_create *cq_create;
13051 struct lpfc_dmabuf *dmabuf;
13052 LPFC_MBOXQ_t *mbox;
13053 int rc, length, status = 0;
13054 uint32_t shdr_status, shdr_add_status;
13055 union lpfc_sli4_cfg_shdr *shdr;
James Smart49198b32010-04-06 15:04:33 -040013056 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
13057
James Smart2e90f4b2011-12-13 13:22:37 -050013058 /* sanity check on queue memory */
13059 if (!cq || !eq)
13060 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040013061 if (!phba->sli4_hba.pc_sli4_params.supported)
13062 hw_page_size = SLI4_PAGE_SIZE;
13063
James Smart4f774512009-05-22 14:52:35 -040013064 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13065 if (!mbox)
13066 return -ENOMEM;
13067 length = (sizeof(struct lpfc_mbx_cq_create) -
13068 sizeof(struct lpfc_sli4_cfg_mhdr));
13069 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13070 LPFC_MBOX_OPCODE_CQ_CREATE,
13071 length, LPFC_SLI4_MBX_EMBED);
13072 cq_create = &mbox->u.mqe.un.cq_create;
James Smart5a6f1332011-03-11 16:05:35 -050013073 shdr = (union lpfc_sli4_cfg_shdr *) &cq_create->header.cfg_shdr;
James Smart4f774512009-05-22 14:52:35 -040013074 bf_set(lpfc_mbx_cq_create_num_pages, &cq_create->u.request,
13075 cq->page_count);
13076 bf_set(lpfc_cq_context_event, &cq_create->u.request.context, 1);
13077 bf_set(lpfc_cq_context_valid, &cq_create->u.request.context, 1);
James Smart5a6f1332011-03-11 16:05:35 -050013078 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13079 phba->sli4_hba.pc_sli4_params.cqv);
13080 if (phba->sli4_hba.pc_sli4_params.cqv == LPFC_Q_CREATE_VERSION_2) {
James Smartc31098c2011-04-16 11:03:33 -040013081 /* FW only supports 1. Should be PAGE_SIZE/SLI4_PAGE_SIZE */
13082 bf_set(lpfc_mbx_cq_create_page_size, &cq_create->u.request, 1);
James Smart5a6f1332011-03-11 16:05:35 -050013083 bf_set(lpfc_cq_eq_id_2, &cq_create->u.request.context,
13084 eq->queue_id);
13085 } else {
13086 bf_set(lpfc_cq_eq_id, &cq_create->u.request.context,
13087 eq->queue_id);
13088 }
James Smart4f774512009-05-22 14:52:35 -040013089 switch (cq->entry_count) {
13090 default:
13091 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13092 "0361 Unsupported CQ count. (%d)\n",
13093 cq->entry_count);
James Smart4f4c1862012-06-12 13:54:02 -040013094 if (cq->entry_count < 256) {
13095 status = -EINVAL;
13096 goto out;
13097 }
James Smart4f774512009-05-22 14:52:35 -040013098 /* otherwise default to smallest count (drop through) */
13099 case 256:
13100 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
13101 LPFC_CQ_CNT_256);
13102 break;
13103 case 512:
13104 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
13105 LPFC_CQ_CNT_512);
13106 break;
13107 case 1024:
13108 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
13109 LPFC_CQ_CNT_1024);
13110 break;
13111 }
13112 list_for_each_entry(dmabuf, &cq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040013113 memset(dmabuf->virt, 0, hw_page_size);
James Smart4f774512009-05-22 14:52:35 -040013114 cq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
13115 putPaddrLow(dmabuf->phys);
13116 cq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
13117 putPaddrHigh(dmabuf->phys);
13118 }
13119 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13120
13121 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart4f774512009-05-22 14:52:35 -040013122 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13123 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13124 if (shdr_status || shdr_add_status || rc) {
13125 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13126 "2501 CQ_CREATE mailbox failed with "
13127 "status x%x add_status x%x, mbx status x%x\n",
13128 shdr_status, shdr_add_status, rc);
13129 status = -ENXIO;
13130 goto out;
13131 }
13132 cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
13133 if (cq->queue_id == 0xFFFF) {
13134 status = -ENXIO;
13135 goto out;
13136 }
13137 /* link the cq onto the parent eq child list */
13138 list_add_tail(&cq->list, &eq->child_list);
13139 /* Set up completion queue's type and subtype */
13140 cq->type = type;
13141 cq->subtype = subtype;
13142 cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
James Smart2a622bf2011-02-16 12:40:06 -050013143 cq->assoc_qid = eq->queue_id;
James Smart4f774512009-05-22 14:52:35 -040013144 cq->host_index = 0;
13145 cq->hba_index = 0;
James Smart4f774512009-05-22 14:52:35 -040013146
James Smart8fa38512009-07-19 10:01:03 -040013147out:
13148 mempool_free(mbox, phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040013149 return status;
13150}
13151
13152/**
James Smartb19a0612010-04-06 14:48:51 -040013153 * lpfc_mq_create_fb_init - Send MCC_CREATE without async events registration
James Smart04c68492009-05-22 14:52:52 -040013154 * @phba: HBA structure that indicates port to create a queue on.
13155 * @mq: The queue structure to use to create the mailbox queue.
James Smartb19a0612010-04-06 14:48:51 -040013156 * @mbox: An allocated pointer to type LPFC_MBOXQ_t
13157 * @cq: The completion queue to associate with this cq.
James Smart04c68492009-05-22 14:52:52 -040013158 *
James Smartb19a0612010-04-06 14:48:51 -040013159 * This function provides failback (fb) functionality when the
13160 * mq_create_ext fails on older FW generations. It's purpose is identical
13161 * to mq_create_ext otherwise.
James Smart04c68492009-05-22 14:52:52 -040013162 *
James Smartb19a0612010-04-06 14:48:51 -040013163 * This routine cannot fail as all attributes were previously accessed and
13164 * initialized in mq_create_ext.
James Smart04c68492009-05-22 14:52:52 -040013165 **/
James Smartb19a0612010-04-06 14:48:51 -040013166static void
13167lpfc_mq_create_fb_init(struct lpfc_hba *phba, struct lpfc_queue *mq,
13168 LPFC_MBOXQ_t *mbox, struct lpfc_queue *cq)
James Smart04c68492009-05-22 14:52:52 -040013169{
13170 struct lpfc_mbx_mq_create *mq_create;
13171 struct lpfc_dmabuf *dmabuf;
James Smartb19a0612010-04-06 14:48:51 -040013172 int length;
James Smart04c68492009-05-22 14:52:52 -040013173
James Smart04c68492009-05-22 14:52:52 -040013174 length = (sizeof(struct lpfc_mbx_mq_create) -
13175 sizeof(struct lpfc_sli4_cfg_mhdr));
13176 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13177 LPFC_MBOX_OPCODE_MQ_CREATE,
13178 length, LPFC_SLI4_MBX_EMBED);
13179 mq_create = &mbox->u.mqe.un.mq_create;
13180 bf_set(lpfc_mbx_mq_create_num_pages, &mq_create->u.request,
James Smartb19a0612010-04-06 14:48:51 -040013181 mq->page_count);
James Smart04c68492009-05-22 14:52:52 -040013182 bf_set(lpfc_mq_context_cq_id, &mq_create->u.request.context,
James Smartb19a0612010-04-06 14:48:51 -040013183 cq->queue_id);
James Smart04c68492009-05-22 14:52:52 -040013184 bf_set(lpfc_mq_context_valid, &mq_create->u.request.context, 1);
13185 switch (mq->entry_count) {
James Smart04c68492009-05-22 14:52:52 -040013186 case 16:
James Smart5a6f1332011-03-11 16:05:35 -050013187 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
13188 LPFC_MQ_RING_SIZE_16);
James Smart04c68492009-05-22 14:52:52 -040013189 break;
13190 case 32:
James Smart5a6f1332011-03-11 16:05:35 -050013191 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
13192 LPFC_MQ_RING_SIZE_32);
James Smart04c68492009-05-22 14:52:52 -040013193 break;
13194 case 64:
James Smart5a6f1332011-03-11 16:05:35 -050013195 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
13196 LPFC_MQ_RING_SIZE_64);
James Smart04c68492009-05-22 14:52:52 -040013197 break;
13198 case 128:
James Smart5a6f1332011-03-11 16:05:35 -050013199 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
13200 LPFC_MQ_RING_SIZE_128);
James Smart04c68492009-05-22 14:52:52 -040013201 break;
13202 }
13203 list_for_each_entry(dmabuf, &mq->page_list, list) {
13204 mq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
James Smartb19a0612010-04-06 14:48:51 -040013205 putPaddrLow(dmabuf->phys);
James Smart04c68492009-05-22 14:52:52 -040013206 mq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
James Smartb19a0612010-04-06 14:48:51 -040013207 putPaddrHigh(dmabuf->phys);
13208 }
13209}
13210
13211/**
13212 * lpfc_mq_create - Create a mailbox Queue on the HBA
13213 * @phba: HBA structure that indicates port to create a queue on.
13214 * @mq: The queue structure to use to create the mailbox queue.
13215 * @cq: The completion queue to associate with this cq.
13216 * @subtype: The queue's subtype.
13217 *
13218 * This function creates a mailbox queue, as detailed in @mq, on a port,
13219 * described by @phba by sending a MQ_CREATE mailbox command to the HBA.
13220 *
13221 * The @phba struct is used to send mailbox command to HBA. The @cq struct
13222 * is used to get the entry count and entry size that are necessary to
13223 * determine the number of pages to allocate and use for this queue. This
13224 * function will send the MQ_CREATE mailbox command to the HBA to setup the
13225 * mailbox queue. This function is asynchronous and will wait for the mailbox
13226 * command to finish before continuing.
13227 *
13228 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040013229 * memory this function will return -ENOMEM. If the queue create mailbox command
13230 * fails this function will return -ENXIO.
James Smartb19a0612010-04-06 14:48:51 -040013231 **/
13232int32_t
13233lpfc_mq_create(struct lpfc_hba *phba, struct lpfc_queue *mq,
13234 struct lpfc_queue *cq, uint32_t subtype)
13235{
13236 struct lpfc_mbx_mq_create *mq_create;
13237 struct lpfc_mbx_mq_create_ext *mq_create_ext;
13238 struct lpfc_dmabuf *dmabuf;
13239 LPFC_MBOXQ_t *mbox;
13240 int rc, length, status = 0;
13241 uint32_t shdr_status, shdr_add_status;
13242 union lpfc_sli4_cfg_shdr *shdr;
James Smart49198b32010-04-06 15:04:33 -040013243 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
James Smartb19a0612010-04-06 14:48:51 -040013244
James Smart2e90f4b2011-12-13 13:22:37 -050013245 /* sanity check on queue memory */
13246 if (!mq || !cq)
13247 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040013248 if (!phba->sli4_hba.pc_sli4_params.supported)
13249 hw_page_size = SLI4_PAGE_SIZE;
James Smartb19a0612010-04-06 14:48:51 -040013250
13251 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13252 if (!mbox)
13253 return -ENOMEM;
13254 length = (sizeof(struct lpfc_mbx_mq_create_ext) -
13255 sizeof(struct lpfc_sli4_cfg_mhdr));
13256 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13257 LPFC_MBOX_OPCODE_MQ_CREATE_EXT,
13258 length, LPFC_SLI4_MBX_EMBED);
13259
13260 mq_create_ext = &mbox->u.mqe.un.mq_create_ext;
James Smart5a6f1332011-03-11 16:05:35 -050013261 shdr = (union lpfc_sli4_cfg_shdr *) &mq_create_ext->header.cfg_shdr;
James Smart70f3c072010-12-15 17:57:33 -050013262 bf_set(lpfc_mbx_mq_create_ext_num_pages,
13263 &mq_create_ext->u.request, mq->page_count);
13264 bf_set(lpfc_mbx_mq_create_ext_async_evt_link,
13265 &mq_create_ext->u.request, 1);
13266 bf_set(lpfc_mbx_mq_create_ext_async_evt_fip,
James Smartb19a0612010-04-06 14:48:51 -040013267 &mq_create_ext->u.request, 1);
13268 bf_set(lpfc_mbx_mq_create_ext_async_evt_group5,
13269 &mq_create_ext->u.request, 1);
James Smart70f3c072010-12-15 17:57:33 -050013270 bf_set(lpfc_mbx_mq_create_ext_async_evt_fc,
13271 &mq_create_ext->u.request, 1);
13272 bf_set(lpfc_mbx_mq_create_ext_async_evt_sli,
13273 &mq_create_ext->u.request, 1);
James Smartb19a0612010-04-06 14:48:51 -040013274 bf_set(lpfc_mq_context_valid, &mq_create_ext->u.request.context, 1);
James Smart5a6f1332011-03-11 16:05:35 -050013275 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13276 phba->sli4_hba.pc_sli4_params.mqv);
13277 if (phba->sli4_hba.pc_sli4_params.mqv == LPFC_Q_CREATE_VERSION_1)
13278 bf_set(lpfc_mbx_mq_create_ext_cq_id, &mq_create_ext->u.request,
13279 cq->queue_id);
13280 else
13281 bf_set(lpfc_mq_context_cq_id, &mq_create_ext->u.request.context,
13282 cq->queue_id);
James Smartb19a0612010-04-06 14:48:51 -040013283 switch (mq->entry_count) {
13284 default:
13285 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13286 "0362 Unsupported MQ count. (%d)\n",
13287 mq->entry_count);
James Smart4f4c1862012-06-12 13:54:02 -040013288 if (mq->entry_count < 16) {
13289 status = -EINVAL;
13290 goto out;
13291 }
James Smartb19a0612010-04-06 14:48:51 -040013292 /* otherwise default to smallest count (drop through) */
13293 case 16:
James Smart5a6f1332011-03-11 16:05:35 -050013294 bf_set(lpfc_mq_context_ring_size,
13295 &mq_create_ext->u.request.context,
13296 LPFC_MQ_RING_SIZE_16);
James Smartb19a0612010-04-06 14:48:51 -040013297 break;
13298 case 32:
James Smart5a6f1332011-03-11 16:05:35 -050013299 bf_set(lpfc_mq_context_ring_size,
13300 &mq_create_ext->u.request.context,
13301 LPFC_MQ_RING_SIZE_32);
James Smartb19a0612010-04-06 14:48:51 -040013302 break;
13303 case 64:
James Smart5a6f1332011-03-11 16:05:35 -050013304 bf_set(lpfc_mq_context_ring_size,
13305 &mq_create_ext->u.request.context,
13306 LPFC_MQ_RING_SIZE_64);
James Smartb19a0612010-04-06 14:48:51 -040013307 break;
13308 case 128:
James Smart5a6f1332011-03-11 16:05:35 -050013309 bf_set(lpfc_mq_context_ring_size,
13310 &mq_create_ext->u.request.context,
13311 LPFC_MQ_RING_SIZE_128);
James Smartb19a0612010-04-06 14:48:51 -040013312 break;
13313 }
13314 list_for_each_entry(dmabuf, &mq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040013315 memset(dmabuf->virt, 0, hw_page_size);
James Smartb19a0612010-04-06 14:48:51 -040013316 mq_create_ext->u.request.page[dmabuf->buffer_tag].addr_lo =
13317 putPaddrLow(dmabuf->phys);
13318 mq_create_ext->u.request.page[dmabuf->buffer_tag].addr_hi =
James Smart04c68492009-05-22 14:52:52 -040013319 putPaddrHigh(dmabuf->phys);
13320 }
13321 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
James Smartb19a0612010-04-06 14:48:51 -040013322 mq->queue_id = bf_get(lpfc_mbx_mq_create_q_id,
13323 &mq_create_ext->u.response);
13324 if (rc != MBX_SUCCESS) {
13325 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
13326 "2795 MQ_CREATE_EXT failed with "
13327 "status x%x. Failback to MQ_CREATE.\n",
13328 rc);
13329 lpfc_mq_create_fb_init(phba, mq, mbox, cq);
13330 mq_create = &mbox->u.mqe.un.mq_create;
13331 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13332 shdr = (union lpfc_sli4_cfg_shdr *) &mq_create->header.cfg_shdr;
13333 mq->queue_id = bf_get(lpfc_mbx_mq_create_q_id,
13334 &mq_create->u.response);
13335 }
13336
James Smart04c68492009-05-22 14:52:52 -040013337 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart04c68492009-05-22 14:52:52 -040013338 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13339 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13340 if (shdr_status || shdr_add_status || rc) {
13341 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13342 "2502 MQ_CREATE mailbox failed with "
13343 "status x%x add_status x%x, mbx status x%x\n",
13344 shdr_status, shdr_add_status, rc);
13345 status = -ENXIO;
13346 goto out;
13347 }
James Smart04c68492009-05-22 14:52:52 -040013348 if (mq->queue_id == 0xFFFF) {
13349 status = -ENXIO;
13350 goto out;
13351 }
13352 mq->type = LPFC_MQ;
James Smart2a622bf2011-02-16 12:40:06 -050013353 mq->assoc_qid = cq->queue_id;
James Smart04c68492009-05-22 14:52:52 -040013354 mq->subtype = subtype;
13355 mq->host_index = 0;
13356 mq->hba_index = 0;
13357
13358 /* link the mq onto the parent cq child list */
13359 list_add_tail(&mq->list, &cq->child_list);
13360out:
James Smart8fa38512009-07-19 10:01:03 -040013361 mempool_free(mbox, phba->mbox_mem_pool);
James Smart04c68492009-05-22 14:52:52 -040013362 return status;
13363}
13364
13365/**
James Smart4f774512009-05-22 14:52:35 -040013366 * lpfc_wq_create - Create a Work Queue on the HBA
13367 * @phba: HBA structure that indicates port to create a queue on.
13368 * @wq: The queue structure to use to create the work queue.
13369 * @cq: The completion queue to bind this work queue to.
13370 * @subtype: The subtype of the work queue indicating its functionality.
13371 *
13372 * This function creates a work queue, as detailed in @wq, on a port, described
13373 * by @phba by sending a WQ_CREATE mailbox command to the HBA.
13374 *
13375 * The @phba struct is used to send mailbox command to HBA. The @wq struct
13376 * is used to get the entry count and entry size that are necessary to
13377 * determine the number of pages to allocate and use for this queue. The @cq
13378 * is used to indicate which completion queue to bind this work queue to. This
13379 * function will send the WQ_CREATE mailbox command to the HBA to setup the
13380 * work queue. This function is asynchronous and will wait for the mailbox
13381 * command to finish before continuing.
13382 *
13383 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040013384 * memory this function will return -ENOMEM. If the queue create mailbox command
13385 * fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040013386 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040013387int
James Smart4f774512009-05-22 14:52:35 -040013388lpfc_wq_create(struct lpfc_hba *phba, struct lpfc_queue *wq,
13389 struct lpfc_queue *cq, uint32_t subtype)
13390{
13391 struct lpfc_mbx_wq_create *wq_create;
13392 struct lpfc_dmabuf *dmabuf;
13393 LPFC_MBOXQ_t *mbox;
13394 int rc, length, status = 0;
13395 uint32_t shdr_status, shdr_add_status;
13396 union lpfc_sli4_cfg_shdr *shdr;
James Smart49198b32010-04-06 15:04:33 -040013397 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
James Smart5a6f1332011-03-11 16:05:35 -050013398 struct dma_address *page;
James Smart962bc512013-01-03 15:44:00 -050013399 void __iomem *bar_memmap_p;
13400 uint32_t db_offset;
13401 uint16_t pci_barset;
James Smart49198b32010-04-06 15:04:33 -040013402
James Smart2e90f4b2011-12-13 13:22:37 -050013403 /* sanity check on queue memory */
13404 if (!wq || !cq)
13405 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040013406 if (!phba->sli4_hba.pc_sli4_params.supported)
13407 hw_page_size = SLI4_PAGE_SIZE;
James Smart4f774512009-05-22 14:52:35 -040013408
13409 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13410 if (!mbox)
13411 return -ENOMEM;
13412 length = (sizeof(struct lpfc_mbx_wq_create) -
13413 sizeof(struct lpfc_sli4_cfg_mhdr));
13414 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13415 LPFC_MBOX_OPCODE_FCOE_WQ_CREATE,
13416 length, LPFC_SLI4_MBX_EMBED);
13417 wq_create = &mbox->u.mqe.un.wq_create;
James Smart5a6f1332011-03-11 16:05:35 -050013418 shdr = (union lpfc_sli4_cfg_shdr *) &wq_create->header.cfg_shdr;
James Smart4f774512009-05-22 14:52:35 -040013419 bf_set(lpfc_mbx_wq_create_num_pages, &wq_create->u.request,
13420 wq->page_count);
13421 bf_set(lpfc_mbx_wq_create_cq_id, &wq_create->u.request,
13422 cq->queue_id);
James Smart0c651872013-07-15 18:33:23 -040013423
13424 /* wqv is the earliest version supported, NOT the latest */
James Smart5a6f1332011-03-11 16:05:35 -050013425 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13426 phba->sli4_hba.pc_sli4_params.wqv);
James Smart962bc512013-01-03 15:44:00 -050013427
James Smart0c651872013-07-15 18:33:23 -040013428 switch (phba->sli4_hba.pc_sli4_params.wqv) {
13429 case LPFC_Q_CREATE_VERSION_0:
13430 switch (wq->entry_size) {
13431 default:
13432 case 64:
13433 /* Nothing to do, version 0 ONLY supports 64 byte */
13434 page = wq_create->u.request.page;
13435 break;
13436 case 128:
13437 if (!(phba->sli4_hba.pc_sli4_params.wqsize &
13438 LPFC_WQ_SZ128_SUPPORT)) {
13439 status = -ERANGE;
13440 goto out;
13441 }
13442 /* If we get here the HBA MUST also support V1 and
13443 * we MUST use it
13444 */
13445 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13446 LPFC_Q_CREATE_VERSION_1);
13447
13448 bf_set(lpfc_mbx_wq_create_wqe_count,
13449 &wq_create->u.request_1, wq->entry_count);
13450 bf_set(lpfc_mbx_wq_create_wqe_size,
13451 &wq_create->u.request_1,
13452 LPFC_WQ_WQE_SIZE_128);
13453 bf_set(lpfc_mbx_wq_create_page_size,
13454 &wq_create->u.request_1,
13455 (PAGE_SIZE/SLI4_PAGE_SIZE));
13456 page = wq_create->u.request_1.page;
13457 break;
13458 }
13459 break;
13460 case LPFC_Q_CREATE_VERSION_1:
James Smart5a6f1332011-03-11 16:05:35 -050013461 bf_set(lpfc_mbx_wq_create_wqe_count, &wq_create->u.request_1,
13462 wq->entry_count);
13463 switch (wq->entry_size) {
13464 default:
13465 case 64:
13466 bf_set(lpfc_mbx_wq_create_wqe_size,
13467 &wq_create->u.request_1,
13468 LPFC_WQ_WQE_SIZE_64);
13469 break;
13470 case 128:
James Smart0c651872013-07-15 18:33:23 -040013471 if (!(phba->sli4_hba.pc_sli4_params.wqsize &
13472 LPFC_WQ_SZ128_SUPPORT)) {
13473 status = -ERANGE;
13474 goto out;
13475 }
James Smart5a6f1332011-03-11 16:05:35 -050013476 bf_set(lpfc_mbx_wq_create_wqe_size,
13477 &wq_create->u.request_1,
13478 LPFC_WQ_WQE_SIZE_128);
13479 break;
13480 }
13481 bf_set(lpfc_mbx_wq_create_page_size, &wq_create->u.request_1,
13482 (PAGE_SIZE/SLI4_PAGE_SIZE));
13483 page = wq_create->u.request_1.page;
James Smart0c651872013-07-15 18:33:23 -040013484 break;
13485 default:
13486 status = -ERANGE;
13487 goto out;
James Smart5a6f1332011-03-11 16:05:35 -050013488 }
James Smart0c651872013-07-15 18:33:23 -040013489
James Smart4f774512009-05-22 14:52:35 -040013490 list_for_each_entry(dmabuf, &wq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040013491 memset(dmabuf->virt, 0, hw_page_size);
James Smart5a6f1332011-03-11 16:05:35 -050013492 page[dmabuf->buffer_tag].addr_lo = putPaddrLow(dmabuf->phys);
13493 page[dmabuf->buffer_tag].addr_hi = putPaddrHigh(dmabuf->phys);
James Smart4f774512009-05-22 14:52:35 -040013494 }
James Smart962bc512013-01-03 15:44:00 -050013495
13496 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
13497 bf_set(lpfc_mbx_wq_create_dua, &wq_create->u.request, 1);
13498
James Smart4f774512009-05-22 14:52:35 -040013499 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13500 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart4f774512009-05-22 14:52:35 -040013501 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13502 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13503 if (shdr_status || shdr_add_status || rc) {
13504 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13505 "2503 WQ_CREATE mailbox failed with "
13506 "status x%x add_status x%x, mbx status x%x\n",
13507 shdr_status, shdr_add_status, rc);
13508 status = -ENXIO;
13509 goto out;
13510 }
13511 wq->queue_id = bf_get(lpfc_mbx_wq_create_q_id, &wq_create->u.response);
13512 if (wq->queue_id == 0xFFFF) {
13513 status = -ENXIO;
13514 goto out;
13515 }
James Smart962bc512013-01-03 15:44:00 -050013516 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE) {
13517 wq->db_format = bf_get(lpfc_mbx_wq_create_db_format,
13518 &wq_create->u.response);
13519 if ((wq->db_format != LPFC_DB_LIST_FORMAT) &&
13520 (wq->db_format != LPFC_DB_RING_FORMAT)) {
13521 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13522 "3265 WQ[%d] doorbell format not "
13523 "supported: x%x\n", wq->queue_id,
13524 wq->db_format);
13525 status = -EINVAL;
13526 goto out;
13527 }
13528 pci_barset = bf_get(lpfc_mbx_wq_create_bar_set,
13529 &wq_create->u.response);
13530 bar_memmap_p = lpfc_dual_chute_pci_bar_map(phba, pci_barset);
13531 if (!bar_memmap_p) {
13532 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13533 "3263 WQ[%d] failed to memmap pci "
13534 "barset:x%x\n", wq->queue_id,
13535 pci_barset);
13536 status = -ENOMEM;
13537 goto out;
13538 }
13539 db_offset = wq_create->u.response.doorbell_offset;
13540 if ((db_offset != LPFC_ULP0_WQ_DOORBELL) &&
13541 (db_offset != LPFC_ULP1_WQ_DOORBELL)) {
13542 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13543 "3252 WQ[%d] doorbell offset not "
13544 "supported: x%x\n", wq->queue_id,
13545 db_offset);
13546 status = -EINVAL;
13547 goto out;
13548 }
13549 wq->db_regaddr = bar_memmap_p + db_offset;
13550 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarta22e7db2013-04-17 20:16:37 -040013551 "3264 WQ[%d]: barset:x%x, offset:x%x, "
13552 "format:x%x\n", wq->queue_id, pci_barset,
13553 db_offset, wq->db_format);
James Smart962bc512013-01-03 15:44:00 -050013554 } else {
13555 wq->db_format = LPFC_DB_LIST_FORMAT;
13556 wq->db_regaddr = phba->sli4_hba.WQDBregaddr;
13557 }
James Smart4f774512009-05-22 14:52:35 -040013558 wq->type = LPFC_WQ;
James Smart2a622bf2011-02-16 12:40:06 -050013559 wq->assoc_qid = cq->queue_id;
James Smart4f774512009-05-22 14:52:35 -040013560 wq->subtype = subtype;
13561 wq->host_index = 0;
13562 wq->hba_index = 0;
James Smartff78d8f2011-12-13 13:21:35 -050013563 wq->entry_repost = LPFC_RELEASE_NOTIFICATION_INTERVAL;
James Smart4f774512009-05-22 14:52:35 -040013564
13565 /* link the wq onto the parent cq child list */
13566 list_add_tail(&wq->list, &cq->child_list);
13567out:
James Smart8fa38512009-07-19 10:01:03 -040013568 mempool_free(mbox, phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040013569 return status;
13570}
13571
13572/**
James Smart73d91e52011-10-10 21:32:10 -040013573 * lpfc_rq_adjust_repost - Adjust entry_repost for an RQ
13574 * @phba: HBA structure that indicates port to create a queue on.
13575 * @rq: The queue structure to use for the receive queue.
13576 * @qno: The associated HBQ number
13577 *
13578 *
13579 * For SLI4 we need to adjust the RQ repost value based on
13580 * the number of buffers that are initially posted to the RQ.
13581 */
13582void
13583lpfc_rq_adjust_repost(struct lpfc_hba *phba, struct lpfc_queue *rq, int qno)
13584{
13585 uint32_t cnt;
13586
James Smart2e90f4b2011-12-13 13:22:37 -050013587 /* sanity check on queue memory */
13588 if (!rq)
13589 return;
James Smart73d91e52011-10-10 21:32:10 -040013590 cnt = lpfc_hbq_defs[qno]->entry_count;
13591
13592 /* Recalc repost for RQs based on buffers initially posted */
13593 cnt = (cnt >> 3);
13594 if (cnt < LPFC_QUEUE_MIN_REPOST)
13595 cnt = LPFC_QUEUE_MIN_REPOST;
13596
13597 rq->entry_repost = cnt;
13598}
13599
13600/**
James Smart4f774512009-05-22 14:52:35 -040013601 * lpfc_rq_create - Create a Receive Queue on the HBA
13602 * @phba: HBA structure that indicates port to create a queue on.
13603 * @hrq: The queue structure to use to create the header receive queue.
13604 * @drq: The queue structure to use to create the data receive queue.
13605 * @cq: The completion queue to bind this work queue to.
13606 *
13607 * This function creates a receive buffer queue pair , as detailed in @hrq and
13608 * @drq, on a port, described by @phba by sending a RQ_CREATE mailbox command
13609 * to the HBA.
13610 *
13611 * The @phba struct is used to send mailbox command to HBA. The @drq and @hrq
13612 * struct is used to get the entry count that is necessary to determine the
13613 * number of pages to use for this queue. The @cq is used to indicate which
13614 * completion queue to bind received buffers that are posted to these queues to.
13615 * This function will send the RQ_CREATE mailbox command to the HBA to setup the
13616 * receive queue pair. This function is asynchronous and will wait for the
13617 * mailbox command to finish before continuing.
13618 *
13619 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040013620 * memory this function will return -ENOMEM. If the queue create mailbox command
13621 * fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040013622 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040013623int
James Smart4f774512009-05-22 14:52:35 -040013624lpfc_rq_create(struct lpfc_hba *phba, struct lpfc_queue *hrq,
13625 struct lpfc_queue *drq, struct lpfc_queue *cq, uint32_t subtype)
13626{
13627 struct lpfc_mbx_rq_create *rq_create;
13628 struct lpfc_dmabuf *dmabuf;
13629 LPFC_MBOXQ_t *mbox;
13630 int rc, length, status = 0;
13631 uint32_t shdr_status, shdr_add_status;
13632 union lpfc_sli4_cfg_shdr *shdr;
James Smart49198b32010-04-06 15:04:33 -040013633 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
James Smart962bc512013-01-03 15:44:00 -050013634 void __iomem *bar_memmap_p;
13635 uint32_t db_offset;
13636 uint16_t pci_barset;
James Smart49198b32010-04-06 15:04:33 -040013637
James Smart2e90f4b2011-12-13 13:22:37 -050013638 /* sanity check on queue memory */
13639 if (!hrq || !drq || !cq)
13640 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040013641 if (!phba->sli4_hba.pc_sli4_params.supported)
13642 hw_page_size = SLI4_PAGE_SIZE;
James Smart4f774512009-05-22 14:52:35 -040013643
13644 if (hrq->entry_count != drq->entry_count)
13645 return -EINVAL;
13646 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13647 if (!mbox)
13648 return -ENOMEM;
13649 length = (sizeof(struct lpfc_mbx_rq_create) -
13650 sizeof(struct lpfc_sli4_cfg_mhdr));
13651 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13652 LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
13653 length, LPFC_SLI4_MBX_EMBED);
13654 rq_create = &mbox->u.mqe.un.rq_create;
James Smart5a6f1332011-03-11 16:05:35 -050013655 shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
13656 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13657 phba->sli4_hba.pc_sli4_params.rqv);
13658 if (phba->sli4_hba.pc_sli4_params.rqv == LPFC_Q_CREATE_VERSION_1) {
13659 bf_set(lpfc_rq_context_rqe_count_1,
13660 &rq_create->u.request.context,
13661 hrq->entry_count);
13662 rq_create->u.request.context.buffer_size = LPFC_HDR_BUF_SIZE;
James Smartc31098c2011-04-16 11:03:33 -040013663 bf_set(lpfc_rq_context_rqe_size,
13664 &rq_create->u.request.context,
13665 LPFC_RQE_SIZE_8);
13666 bf_set(lpfc_rq_context_page_size,
13667 &rq_create->u.request.context,
13668 (PAGE_SIZE/SLI4_PAGE_SIZE));
James Smart5a6f1332011-03-11 16:05:35 -050013669 } else {
13670 switch (hrq->entry_count) {
13671 default:
13672 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13673 "2535 Unsupported RQ count. (%d)\n",
13674 hrq->entry_count);
James Smart4f4c1862012-06-12 13:54:02 -040013675 if (hrq->entry_count < 512) {
13676 status = -EINVAL;
13677 goto out;
13678 }
James Smart5a6f1332011-03-11 16:05:35 -050013679 /* otherwise default to smallest count (drop through) */
13680 case 512:
13681 bf_set(lpfc_rq_context_rqe_count,
13682 &rq_create->u.request.context,
13683 LPFC_RQ_RING_SIZE_512);
13684 break;
13685 case 1024:
13686 bf_set(lpfc_rq_context_rqe_count,
13687 &rq_create->u.request.context,
13688 LPFC_RQ_RING_SIZE_1024);
13689 break;
13690 case 2048:
13691 bf_set(lpfc_rq_context_rqe_count,
13692 &rq_create->u.request.context,
13693 LPFC_RQ_RING_SIZE_2048);
13694 break;
13695 case 4096:
13696 bf_set(lpfc_rq_context_rqe_count,
13697 &rq_create->u.request.context,
13698 LPFC_RQ_RING_SIZE_4096);
13699 break;
13700 }
13701 bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
13702 LPFC_HDR_BUF_SIZE);
James Smart4f774512009-05-22 14:52:35 -040013703 }
13704 bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
13705 cq->queue_id);
13706 bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
13707 hrq->page_count);
James Smart4f774512009-05-22 14:52:35 -040013708 list_for_each_entry(dmabuf, &hrq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040013709 memset(dmabuf->virt, 0, hw_page_size);
James Smart4f774512009-05-22 14:52:35 -040013710 rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
13711 putPaddrLow(dmabuf->phys);
13712 rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
13713 putPaddrHigh(dmabuf->phys);
13714 }
James Smart962bc512013-01-03 15:44:00 -050013715 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
13716 bf_set(lpfc_mbx_rq_create_dua, &rq_create->u.request, 1);
13717
James Smart4f774512009-05-22 14:52:35 -040013718 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13719 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart4f774512009-05-22 14:52:35 -040013720 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13721 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13722 if (shdr_status || shdr_add_status || rc) {
13723 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13724 "2504 RQ_CREATE mailbox failed with "
13725 "status x%x add_status x%x, mbx status x%x\n",
13726 shdr_status, shdr_add_status, rc);
13727 status = -ENXIO;
13728 goto out;
13729 }
13730 hrq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
13731 if (hrq->queue_id == 0xFFFF) {
13732 status = -ENXIO;
13733 goto out;
13734 }
James Smart962bc512013-01-03 15:44:00 -050013735
13736 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE) {
13737 hrq->db_format = bf_get(lpfc_mbx_rq_create_db_format,
13738 &rq_create->u.response);
13739 if ((hrq->db_format != LPFC_DB_LIST_FORMAT) &&
13740 (hrq->db_format != LPFC_DB_RING_FORMAT)) {
13741 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13742 "3262 RQ [%d] doorbell format not "
13743 "supported: x%x\n", hrq->queue_id,
13744 hrq->db_format);
13745 status = -EINVAL;
13746 goto out;
13747 }
13748
13749 pci_barset = bf_get(lpfc_mbx_rq_create_bar_set,
13750 &rq_create->u.response);
13751 bar_memmap_p = lpfc_dual_chute_pci_bar_map(phba, pci_barset);
13752 if (!bar_memmap_p) {
13753 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13754 "3269 RQ[%d] failed to memmap pci "
13755 "barset:x%x\n", hrq->queue_id,
13756 pci_barset);
13757 status = -ENOMEM;
13758 goto out;
13759 }
13760
13761 db_offset = rq_create->u.response.doorbell_offset;
13762 if ((db_offset != LPFC_ULP0_RQ_DOORBELL) &&
13763 (db_offset != LPFC_ULP1_RQ_DOORBELL)) {
13764 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13765 "3270 RQ[%d] doorbell offset not "
13766 "supported: x%x\n", hrq->queue_id,
13767 db_offset);
13768 status = -EINVAL;
13769 goto out;
13770 }
13771 hrq->db_regaddr = bar_memmap_p + db_offset;
13772 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarta22e7db2013-04-17 20:16:37 -040013773 "3266 RQ[qid:%d]: barset:x%x, offset:x%x, "
13774 "format:x%x\n", hrq->queue_id, pci_barset,
13775 db_offset, hrq->db_format);
James Smart962bc512013-01-03 15:44:00 -050013776 } else {
13777 hrq->db_format = LPFC_DB_RING_FORMAT;
13778 hrq->db_regaddr = phba->sli4_hba.RQDBregaddr;
13779 }
James Smart4f774512009-05-22 14:52:35 -040013780 hrq->type = LPFC_HRQ;
James Smart2a622bf2011-02-16 12:40:06 -050013781 hrq->assoc_qid = cq->queue_id;
James Smart4f774512009-05-22 14:52:35 -040013782 hrq->subtype = subtype;
13783 hrq->host_index = 0;
13784 hrq->hba_index = 0;
13785
13786 /* now create the data queue */
13787 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13788 LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
13789 length, LPFC_SLI4_MBX_EMBED);
James Smart5a6f1332011-03-11 16:05:35 -050013790 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13791 phba->sli4_hba.pc_sli4_params.rqv);
13792 if (phba->sli4_hba.pc_sli4_params.rqv == LPFC_Q_CREATE_VERSION_1) {
13793 bf_set(lpfc_rq_context_rqe_count_1,
James Smartc31098c2011-04-16 11:03:33 -040013794 &rq_create->u.request.context, hrq->entry_count);
James Smart5a6f1332011-03-11 16:05:35 -050013795 rq_create->u.request.context.buffer_size = LPFC_DATA_BUF_SIZE;
James Smartc31098c2011-04-16 11:03:33 -040013796 bf_set(lpfc_rq_context_rqe_size, &rq_create->u.request.context,
13797 LPFC_RQE_SIZE_8);
13798 bf_set(lpfc_rq_context_page_size, &rq_create->u.request.context,
13799 (PAGE_SIZE/SLI4_PAGE_SIZE));
James Smart5a6f1332011-03-11 16:05:35 -050013800 } else {
13801 switch (drq->entry_count) {
13802 default:
13803 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13804 "2536 Unsupported RQ count. (%d)\n",
13805 drq->entry_count);
James Smart4f4c1862012-06-12 13:54:02 -040013806 if (drq->entry_count < 512) {
13807 status = -EINVAL;
13808 goto out;
13809 }
James Smart5a6f1332011-03-11 16:05:35 -050013810 /* otherwise default to smallest count (drop through) */
13811 case 512:
13812 bf_set(lpfc_rq_context_rqe_count,
13813 &rq_create->u.request.context,
13814 LPFC_RQ_RING_SIZE_512);
13815 break;
13816 case 1024:
13817 bf_set(lpfc_rq_context_rqe_count,
13818 &rq_create->u.request.context,
13819 LPFC_RQ_RING_SIZE_1024);
13820 break;
13821 case 2048:
13822 bf_set(lpfc_rq_context_rqe_count,
13823 &rq_create->u.request.context,
13824 LPFC_RQ_RING_SIZE_2048);
13825 break;
13826 case 4096:
13827 bf_set(lpfc_rq_context_rqe_count,
13828 &rq_create->u.request.context,
13829 LPFC_RQ_RING_SIZE_4096);
13830 break;
13831 }
13832 bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
13833 LPFC_DATA_BUF_SIZE);
James Smart4f774512009-05-22 14:52:35 -040013834 }
13835 bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
13836 cq->queue_id);
13837 bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
13838 drq->page_count);
James Smart4f774512009-05-22 14:52:35 -040013839 list_for_each_entry(dmabuf, &drq->page_list, list) {
13840 rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
13841 putPaddrLow(dmabuf->phys);
13842 rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
13843 putPaddrHigh(dmabuf->phys);
13844 }
James Smart962bc512013-01-03 15:44:00 -050013845 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
13846 bf_set(lpfc_mbx_rq_create_dua, &rq_create->u.request, 1);
James Smart4f774512009-05-22 14:52:35 -040013847 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13848 /* The IOCTL status is embedded in the mailbox subheader. */
13849 shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
13850 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13851 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13852 if (shdr_status || shdr_add_status || rc) {
13853 status = -ENXIO;
13854 goto out;
13855 }
13856 drq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
13857 if (drq->queue_id == 0xFFFF) {
13858 status = -ENXIO;
13859 goto out;
13860 }
13861 drq->type = LPFC_DRQ;
James Smart2a622bf2011-02-16 12:40:06 -050013862 drq->assoc_qid = cq->queue_id;
James Smart4f774512009-05-22 14:52:35 -040013863 drq->subtype = subtype;
13864 drq->host_index = 0;
13865 drq->hba_index = 0;
13866
13867 /* link the header and data RQs onto the parent cq child list */
13868 list_add_tail(&hrq->list, &cq->child_list);
13869 list_add_tail(&drq->list, &cq->child_list);
13870
13871out:
James Smart8fa38512009-07-19 10:01:03 -040013872 mempool_free(mbox, phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040013873 return status;
13874}
13875
13876/**
13877 * lpfc_eq_destroy - Destroy an event Queue on the HBA
13878 * @eq: The queue structure associated with the queue to destroy.
13879 *
13880 * This function destroys a queue, as detailed in @eq by sending an mailbox
13881 * command, specific to the type of queue, to the HBA.
13882 *
13883 * The @eq struct is used to get the queue ID of the queue to destroy.
13884 *
13885 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040013886 * command fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040013887 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040013888int
James Smart4f774512009-05-22 14:52:35 -040013889lpfc_eq_destroy(struct lpfc_hba *phba, struct lpfc_queue *eq)
13890{
13891 LPFC_MBOXQ_t *mbox;
13892 int rc, length, status = 0;
13893 uint32_t shdr_status, shdr_add_status;
13894 union lpfc_sli4_cfg_shdr *shdr;
13895
James Smart2e90f4b2011-12-13 13:22:37 -050013896 /* sanity check on queue memory */
James Smart4f774512009-05-22 14:52:35 -040013897 if (!eq)
13898 return -ENODEV;
13899 mbox = mempool_alloc(eq->phba->mbox_mem_pool, GFP_KERNEL);
13900 if (!mbox)
13901 return -ENOMEM;
13902 length = (sizeof(struct lpfc_mbx_eq_destroy) -
13903 sizeof(struct lpfc_sli4_cfg_mhdr));
13904 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13905 LPFC_MBOX_OPCODE_EQ_DESTROY,
13906 length, LPFC_SLI4_MBX_EMBED);
13907 bf_set(lpfc_mbx_eq_destroy_q_id, &mbox->u.mqe.un.eq_destroy.u.request,
13908 eq->queue_id);
13909 mbox->vport = eq->phba->pport;
13910 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
13911
13912 rc = lpfc_sli_issue_mbox(eq->phba, mbox, MBX_POLL);
13913 /* The IOCTL status is embedded in the mailbox subheader. */
13914 shdr = (union lpfc_sli4_cfg_shdr *)
13915 &mbox->u.mqe.un.eq_destroy.header.cfg_shdr;
13916 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13917 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13918 if (shdr_status || shdr_add_status || rc) {
13919 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13920 "2505 EQ_DESTROY mailbox failed with "
13921 "status x%x add_status x%x, mbx status x%x\n",
13922 shdr_status, shdr_add_status, rc);
13923 status = -ENXIO;
13924 }
13925
13926 /* Remove eq from any list */
13927 list_del_init(&eq->list);
James Smart8fa38512009-07-19 10:01:03 -040013928 mempool_free(mbox, eq->phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040013929 return status;
13930}
13931
13932/**
13933 * lpfc_cq_destroy - Destroy a Completion Queue on the HBA
13934 * @cq: The queue structure associated with the queue to destroy.
13935 *
13936 * This function destroys a queue, as detailed in @cq by sending an mailbox
13937 * command, specific to the type of queue, to the HBA.
13938 *
13939 * The @cq struct is used to get the queue ID of the queue to destroy.
13940 *
13941 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040013942 * command fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040013943 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040013944int
James Smart4f774512009-05-22 14:52:35 -040013945lpfc_cq_destroy(struct lpfc_hba *phba, struct lpfc_queue *cq)
13946{
13947 LPFC_MBOXQ_t *mbox;
13948 int rc, length, status = 0;
13949 uint32_t shdr_status, shdr_add_status;
13950 union lpfc_sli4_cfg_shdr *shdr;
13951
James Smart2e90f4b2011-12-13 13:22:37 -050013952 /* sanity check on queue memory */
James Smart4f774512009-05-22 14:52:35 -040013953 if (!cq)
13954 return -ENODEV;
13955 mbox = mempool_alloc(cq->phba->mbox_mem_pool, GFP_KERNEL);
13956 if (!mbox)
13957 return -ENOMEM;
13958 length = (sizeof(struct lpfc_mbx_cq_destroy) -
13959 sizeof(struct lpfc_sli4_cfg_mhdr));
13960 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13961 LPFC_MBOX_OPCODE_CQ_DESTROY,
13962 length, LPFC_SLI4_MBX_EMBED);
13963 bf_set(lpfc_mbx_cq_destroy_q_id, &mbox->u.mqe.un.cq_destroy.u.request,
13964 cq->queue_id);
13965 mbox->vport = cq->phba->pport;
13966 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
13967 rc = lpfc_sli_issue_mbox(cq->phba, mbox, MBX_POLL);
13968 /* The IOCTL status is embedded in the mailbox subheader. */
13969 shdr = (union lpfc_sli4_cfg_shdr *)
13970 &mbox->u.mqe.un.wq_create.header.cfg_shdr;
13971 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13972 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13973 if (shdr_status || shdr_add_status || rc) {
13974 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13975 "2506 CQ_DESTROY mailbox failed with "
13976 "status x%x add_status x%x, mbx status x%x\n",
13977 shdr_status, shdr_add_status, rc);
13978 status = -ENXIO;
13979 }
13980 /* Remove cq from any list */
13981 list_del_init(&cq->list);
James Smart8fa38512009-07-19 10:01:03 -040013982 mempool_free(mbox, cq->phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040013983 return status;
13984}
13985
13986/**
James Smart04c68492009-05-22 14:52:52 -040013987 * lpfc_mq_destroy - Destroy a Mailbox Queue on the HBA
13988 * @qm: The queue structure associated with the queue to destroy.
13989 *
13990 * This function destroys a queue, as detailed in @mq by sending an mailbox
13991 * command, specific to the type of queue, to the HBA.
13992 *
13993 * The @mq struct is used to get the queue ID of the queue to destroy.
13994 *
13995 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040013996 * command fails this function will return -ENXIO.
James Smart04c68492009-05-22 14:52:52 -040013997 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040013998int
James Smart04c68492009-05-22 14:52:52 -040013999lpfc_mq_destroy(struct lpfc_hba *phba, struct lpfc_queue *mq)
14000{
14001 LPFC_MBOXQ_t *mbox;
14002 int rc, length, status = 0;
14003 uint32_t shdr_status, shdr_add_status;
14004 union lpfc_sli4_cfg_shdr *shdr;
14005
James Smart2e90f4b2011-12-13 13:22:37 -050014006 /* sanity check on queue memory */
James Smart04c68492009-05-22 14:52:52 -040014007 if (!mq)
14008 return -ENODEV;
14009 mbox = mempool_alloc(mq->phba->mbox_mem_pool, GFP_KERNEL);
14010 if (!mbox)
14011 return -ENOMEM;
14012 length = (sizeof(struct lpfc_mbx_mq_destroy) -
14013 sizeof(struct lpfc_sli4_cfg_mhdr));
14014 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
14015 LPFC_MBOX_OPCODE_MQ_DESTROY,
14016 length, LPFC_SLI4_MBX_EMBED);
14017 bf_set(lpfc_mbx_mq_destroy_q_id, &mbox->u.mqe.un.mq_destroy.u.request,
14018 mq->queue_id);
14019 mbox->vport = mq->phba->pport;
14020 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
14021 rc = lpfc_sli_issue_mbox(mq->phba, mbox, MBX_POLL);
14022 /* The IOCTL status is embedded in the mailbox subheader. */
14023 shdr = (union lpfc_sli4_cfg_shdr *)
14024 &mbox->u.mqe.un.mq_destroy.header.cfg_shdr;
14025 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14026 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14027 if (shdr_status || shdr_add_status || rc) {
14028 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14029 "2507 MQ_DESTROY mailbox failed with "
14030 "status x%x add_status x%x, mbx status x%x\n",
14031 shdr_status, shdr_add_status, rc);
14032 status = -ENXIO;
14033 }
14034 /* Remove mq from any list */
14035 list_del_init(&mq->list);
James Smart8fa38512009-07-19 10:01:03 -040014036 mempool_free(mbox, mq->phba->mbox_mem_pool);
James Smart04c68492009-05-22 14:52:52 -040014037 return status;
14038}
14039
14040/**
James Smart4f774512009-05-22 14:52:35 -040014041 * lpfc_wq_destroy - Destroy a Work Queue on the HBA
14042 * @wq: The queue structure associated with the queue to destroy.
14043 *
14044 * This function destroys a queue, as detailed in @wq by sending an mailbox
14045 * command, specific to the type of queue, to the HBA.
14046 *
14047 * The @wq struct is used to get the queue ID of the queue to destroy.
14048 *
14049 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040014050 * command fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040014051 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040014052int
James Smart4f774512009-05-22 14:52:35 -040014053lpfc_wq_destroy(struct lpfc_hba *phba, struct lpfc_queue *wq)
14054{
14055 LPFC_MBOXQ_t *mbox;
14056 int rc, length, status = 0;
14057 uint32_t shdr_status, shdr_add_status;
14058 union lpfc_sli4_cfg_shdr *shdr;
14059
James Smart2e90f4b2011-12-13 13:22:37 -050014060 /* sanity check on queue memory */
James Smart4f774512009-05-22 14:52:35 -040014061 if (!wq)
14062 return -ENODEV;
14063 mbox = mempool_alloc(wq->phba->mbox_mem_pool, GFP_KERNEL);
14064 if (!mbox)
14065 return -ENOMEM;
14066 length = (sizeof(struct lpfc_mbx_wq_destroy) -
14067 sizeof(struct lpfc_sli4_cfg_mhdr));
14068 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14069 LPFC_MBOX_OPCODE_FCOE_WQ_DESTROY,
14070 length, LPFC_SLI4_MBX_EMBED);
14071 bf_set(lpfc_mbx_wq_destroy_q_id, &mbox->u.mqe.un.wq_destroy.u.request,
14072 wq->queue_id);
14073 mbox->vport = wq->phba->pport;
14074 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
14075 rc = lpfc_sli_issue_mbox(wq->phba, mbox, MBX_POLL);
14076 shdr = (union lpfc_sli4_cfg_shdr *)
14077 &mbox->u.mqe.un.wq_destroy.header.cfg_shdr;
14078 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14079 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14080 if (shdr_status || shdr_add_status || rc) {
14081 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14082 "2508 WQ_DESTROY mailbox failed with "
14083 "status x%x add_status x%x, mbx status x%x\n",
14084 shdr_status, shdr_add_status, rc);
14085 status = -ENXIO;
14086 }
14087 /* Remove wq from any list */
14088 list_del_init(&wq->list);
James Smart8fa38512009-07-19 10:01:03 -040014089 mempool_free(mbox, wq->phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040014090 return status;
14091}
14092
14093/**
14094 * lpfc_rq_destroy - Destroy a Receive Queue on the HBA
14095 * @rq: The queue structure associated with the queue to destroy.
14096 *
14097 * This function destroys a queue, as detailed in @rq by sending an mailbox
14098 * command, specific to the type of queue, to the HBA.
14099 *
14100 * The @rq struct is used to get the queue ID of the queue to destroy.
14101 *
14102 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040014103 * command fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040014104 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040014105int
James Smart4f774512009-05-22 14:52:35 -040014106lpfc_rq_destroy(struct lpfc_hba *phba, struct lpfc_queue *hrq,
14107 struct lpfc_queue *drq)
14108{
14109 LPFC_MBOXQ_t *mbox;
14110 int rc, length, status = 0;
14111 uint32_t shdr_status, shdr_add_status;
14112 union lpfc_sli4_cfg_shdr *shdr;
14113
James Smart2e90f4b2011-12-13 13:22:37 -050014114 /* sanity check on queue memory */
James Smart4f774512009-05-22 14:52:35 -040014115 if (!hrq || !drq)
14116 return -ENODEV;
14117 mbox = mempool_alloc(hrq->phba->mbox_mem_pool, GFP_KERNEL);
14118 if (!mbox)
14119 return -ENOMEM;
14120 length = (sizeof(struct lpfc_mbx_rq_destroy) -
James Smartfedd3b72011-02-16 12:39:24 -050014121 sizeof(struct lpfc_sli4_cfg_mhdr));
James Smart4f774512009-05-22 14:52:35 -040014122 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14123 LPFC_MBOX_OPCODE_FCOE_RQ_DESTROY,
14124 length, LPFC_SLI4_MBX_EMBED);
14125 bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
14126 hrq->queue_id);
14127 mbox->vport = hrq->phba->pport;
14128 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
14129 rc = lpfc_sli_issue_mbox(hrq->phba, mbox, MBX_POLL);
14130 /* The IOCTL status is embedded in the mailbox subheader. */
14131 shdr = (union lpfc_sli4_cfg_shdr *)
14132 &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
14133 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14134 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14135 if (shdr_status || shdr_add_status || rc) {
14136 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14137 "2509 RQ_DESTROY mailbox failed with "
14138 "status x%x add_status x%x, mbx status x%x\n",
14139 shdr_status, shdr_add_status, rc);
14140 if (rc != MBX_TIMEOUT)
14141 mempool_free(mbox, hrq->phba->mbox_mem_pool);
14142 return -ENXIO;
14143 }
14144 bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
14145 drq->queue_id);
14146 rc = lpfc_sli_issue_mbox(drq->phba, mbox, MBX_POLL);
14147 shdr = (union lpfc_sli4_cfg_shdr *)
14148 &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
14149 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14150 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14151 if (shdr_status || shdr_add_status || rc) {
14152 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14153 "2510 RQ_DESTROY mailbox failed with "
14154 "status x%x add_status x%x, mbx status x%x\n",
14155 shdr_status, shdr_add_status, rc);
14156 status = -ENXIO;
14157 }
14158 list_del_init(&hrq->list);
14159 list_del_init(&drq->list);
James Smart8fa38512009-07-19 10:01:03 -040014160 mempool_free(mbox, hrq->phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040014161 return status;
14162}
14163
14164/**
14165 * lpfc_sli4_post_sgl - Post scatter gather list for an XRI to HBA
14166 * @phba: The virtual port for which this call being executed.
14167 * @pdma_phys_addr0: Physical address of the 1st SGL page.
14168 * @pdma_phys_addr1: Physical address of the 2nd SGL page.
14169 * @xritag: the xritag that ties this io to the SGL pages.
14170 *
14171 * This routine will post the sgl pages for the IO that has the xritag
14172 * that is in the iocbq structure. The xritag is assigned during iocbq
14173 * creation and persists for as long as the driver is loaded.
14174 * if the caller has fewer than 256 scatter gather segments to map then
14175 * pdma_phys_addr1 should be 0.
14176 * If the caller needs to map more than 256 scatter gather segment then
14177 * pdma_phys_addr1 should be a valid physical address.
14178 * physical address for SGLs must be 64 byte aligned.
14179 * If you are going to map 2 SGL's then the first one must have 256 entries
14180 * the second sgl can have between 1 and 256 entries.
14181 *
14182 * Return codes:
14183 * 0 - Success
14184 * -ENXIO, -ENOMEM - Failure
14185 **/
14186int
14187lpfc_sli4_post_sgl(struct lpfc_hba *phba,
14188 dma_addr_t pdma_phys_addr0,
14189 dma_addr_t pdma_phys_addr1,
14190 uint16_t xritag)
14191{
14192 struct lpfc_mbx_post_sgl_pages *post_sgl_pages;
14193 LPFC_MBOXQ_t *mbox;
14194 int rc;
14195 uint32_t shdr_status, shdr_add_status;
James Smart6d368e52011-05-24 11:44:12 -040014196 uint32_t mbox_tmo;
James Smart4f774512009-05-22 14:52:35 -040014197 union lpfc_sli4_cfg_shdr *shdr;
14198
14199 if (xritag == NO_XRI) {
14200 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14201 "0364 Invalid param:\n");
14202 return -EINVAL;
14203 }
14204
14205 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
14206 if (!mbox)
14207 return -ENOMEM;
14208
14209 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14210 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES,
14211 sizeof(struct lpfc_mbx_post_sgl_pages) -
James Smartfedd3b72011-02-16 12:39:24 -050014212 sizeof(struct lpfc_sli4_cfg_mhdr), LPFC_SLI4_MBX_EMBED);
James Smart4f774512009-05-22 14:52:35 -040014213
14214 post_sgl_pages = (struct lpfc_mbx_post_sgl_pages *)
14215 &mbox->u.mqe.un.post_sgl_pages;
14216 bf_set(lpfc_post_sgl_pages_xri, post_sgl_pages, xritag);
14217 bf_set(lpfc_post_sgl_pages_xricnt, post_sgl_pages, 1);
14218
14219 post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_lo =
14220 cpu_to_le32(putPaddrLow(pdma_phys_addr0));
14221 post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_hi =
14222 cpu_to_le32(putPaddrHigh(pdma_phys_addr0));
14223
14224 post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_lo =
14225 cpu_to_le32(putPaddrLow(pdma_phys_addr1));
14226 post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_hi =
14227 cpu_to_le32(putPaddrHigh(pdma_phys_addr1));
14228 if (!phba->sli4_hba.intr_enable)
14229 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
James Smart6d368e52011-05-24 11:44:12 -040014230 else {
James Smarta183a152011-10-10 21:32:43 -040014231 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -040014232 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
14233 }
James Smart4f774512009-05-22 14:52:35 -040014234 /* The IOCTL status is embedded in the mailbox subheader. */
14235 shdr = (union lpfc_sli4_cfg_shdr *) &post_sgl_pages->header.cfg_shdr;
14236 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14237 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14238 if (rc != MBX_TIMEOUT)
14239 mempool_free(mbox, phba->mbox_mem_pool);
14240 if (shdr_status || shdr_add_status || rc) {
14241 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14242 "2511 POST_SGL mailbox failed with "
14243 "status x%x add_status x%x, mbx status x%x\n",
14244 shdr_status, shdr_add_status, rc);
James Smart4f774512009-05-22 14:52:35 -040014245 }
14246 return 0;
14247}
James Smart4f774512009-05-22 14:52:35 -040014248
14249/**
James Smart88a2cfb2011-07-22 18:36:33 -040014250 * lpfc_sli4_alloc_xri - Get an available rpi in the device's range
James Smart6d368e52011-05-24 11:44:12 -040014251 * @phba: pointer to lpfc hba data structure.
14252 *
14253 * This routine is invoked to post rpi header templates to the
James Smart88a2cfb2011-07-22 18:36:33 -040014254 * HBA consistent with the SLI-4 interface spec. This routine
14255 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
14256 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
James Smart6d368e52011-05-24 11:44:12 -040014257 *
James Smart88a2cfb2011-07-22 18:36:33 -040014258 * Returns
14259 * A nonzero rpi defined as rpi_base <= rpi < max_rpi if successful
14260 * LPFC_RPI_ALLOC_ERROR if no rpis are available.
14261 **/
Rashika Kheria5d8b8162014-09-03 12:55:04 -040014262static uint16_t
James Smart6d368e52011-05-24 11:44:12 -040014263lpfc_sli4_alloc_xri(struct lpfc_hba *phba)
14264{
14265 unsigned long xri;
14266
14267 /*
14268 * Fetch the next logical xri. Because this index is logical,
14269 * the driver starts at 0 each time.
14270 */
14271 spin_lock_irq(&phba->hbalock);
14272 xri = find_next_zero_bit(phba->sli4_hba.xri_bmask,
14273 phba->sli4_hba.max_cfg_param.max_xri, 0);
14274 if (xri >= phba->sli4_hba.max_cfg_param.max_xri) {
14275 spin_unlock_irq(&phba->hbalock);
14276 return NO_XRI;
14277 } else {
14278 set_bit(xri, phba->sli4_hba.xri_bmask);
14279 phba->sli4_hba.max_cfg_param.xri_used++;
James Smart6d368e52011-05-24 11:44:12 -040014280 }
James Smart6d368e52011-05-24 11:44:12 -040014281 spin_unlock_irq(&phba->hbalock);
14282 return xri;
14283}
14284
14285/**
14286 * lpfc_sli4_free_xri - Release an xri for reuse.
14287 * @phba: pointer to lpfc hba data structure.
14288 *
14289 * This routine is invoked to release an xri to the pool of
14290 * available rpis maintained by the driver.
14291 **/
Rashika Kheria5d8b8162014-09-03 12:55:04 -040014292static void
James Smart6d368e52011-05-24 11:44:12 -040014293__lpfc_sli4_free_xri(struct lpfc_hba *phba, int xri)
14294{
14295 if (test_and_clear_bit(xri, phba->sli4_hba.xri_bmask)) {
James Smart6d368e52011-05-24 11:44:12 -040014296 phba->sli4_hba.max_cfg_param.xri_used--;
14297 }
14298}
14299
14300/**
14301 * lpfc_sli4_free_xri - Release an xri for reuse.
14302 * @phba: pointer to lpfc hba data structure.
14303 *
14304 * This routine is invoked to release an xri to the pool of
14305 * available rpis maintained by the driver.
14306 **/
14307void
14308lpfc_sli4_free_xri(struct lpfc_hba *phba, int xri)
14309{
14310 spin_lock_irq(&phba->hbalock);
14311 __lpfc_sli4_free_xri(phba, xri);
14312 spin_unlock_irq(&phba->hbalock);
14313}
14314
14315/**
James Smart4f774512009-05-22 14:52:35 -040014316 * lpfc_sli4_next_xritag - Get an xritag for the io
14317 * @phba: Pointer to HBA context object.
14318 *
14319 * This function gets an xritag for the iocb. If there is no unused xritag
14320 * it will return 0xffff.
14321 * The function returns the allocated xritag if successful, else returns zero.
14322 * Zero is not a valid xritag.
14323 * The caller is not required to hold any lock.
14324 **/
14325uint16_t
14326lpfc_sli4_next_xritag(struct lpfc_hba *phba)
14327{
James Smart6d368e52011-05-24 11:44:12 -040014328 uint16_t xri_index;
James Smart4f774512009-05-22 14:52:35 -040014329
James Smart6d368e52011-05-24 11:44:12 -040014330 xri_index = lpfc_sli4_alloc_xri(phba);
James Smart81378052012-05-09 21:17:37 -040014331 if (xri_index == NO_XRI)
14332 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
14333 "2004 Failed to allocate XRI.last XRITAG is %d"
14334 " Max XRI is %d, Used XRI is %d\n",
14335 xri_index,
14336 phba->sli4_hba.max_cfg_param.max_xri,
14337 phba->sli4_hba.max_cfg_param.xri_used);
14338 return xri_index;
James Smart4f774512009-05-22 14:52:35 -040014339}
14340
14341/**
James Smart6d368e52011-05-24 11:44:12 -040014342 * lpfc_sli4_post_els_sgl_list - post a block of ELS sgls to the port.
James Smart4f774512009-05-22 14:52:35 -040014343 * @phba: pointer to lpfc hba data structure.
James Smart8a9d2e82012-05-09 21:16:12 -040014344 * @post_sgl_list: pointer to els sgl entry list.
14345 * @count: number of els sgl entries on the list.
James Smart4f774512009-05-22 14:52:35 -040014346 *
14347 * This routine is invoked to post a block of driver's sgl pages to the
14348 * HBA using non-embedded mailbox command. No Lock is held. This routine
14349 * is only called when the driver is loading and after all IO has been
14350 * stopped.
14351 **/
James Smart8a9d2e82012-05-09 21:16:12 -040014352static int
14353lpfc_sli4_post_els_sgl_list(struct lpfc_hba *phba,
14354 struct list_head *post_sgl_list,
14355 int post_cnt)
James Smart4f774512009-05-22 14:52:35 -040014356{
James Smart8a9d2e82012-05-09 21:16:12 -040014357 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
James Smart4f774512009-05-22 14:52:35 -040014358 struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
14359 struct sgl_page_pairs *sgl_pg_pairs;
14360 void *viraddr;
14361 LPFC_MBOXQ_t *mbox;
14362 uint32_t reqlen, alloclen, pg_pairs;
14363 uint32_t mbox_tmo;
James Smart8a9d2e82012-05-09 21:16:12 -040014364 uint16_t xritag_start = 0;
14365 int rc = 0;
James Smart4f774512009-05-22 14:52:35 -040014366 uint32_t shdr_status, shdr_add_status;
14367 union lpfc_sli4_cfg_shdr *shdr;
14368
James Smart8a9d2e82012-05-09 21:16:12 -040014369 reqlen = phba->sli4_hba.els_xri_cnt * sizeof(struct sgl_page_pairs) +
James Smart4f774512009-05-22 14:52:35 -040014370 sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
James Smart49198b32010-04-06 15:04:33 -040014371 if (reqlen > SLI4_PAGE_SIZE) {
James Smart4f774512009-05-22 14:52:35 -040014372 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
14373 "2559 Block sgl registration required DMA "
14374 "size (%d) great than a page\n", reqlen);
14375 return -ENOMEM;
14376 }
14377 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart6d368e52011-05-24 11:44:12 -040014378 if (!mbox)
James Smart4f774512009-05-22 14:52:35 -040014379 return -ENOMEM;
James Smart4f774512009-05-22 14:52:35 -040014380
14381 /* Allocate DMA memory and set up the non-embedded mailbox command */
14382 alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14383 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
14384 LPFC_SLI4_MBX_NEMBED);
14385
14386 if (alloclen < reqlen) {
14387 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14388 "0285 Allocated DMA memory size (%d) is "
14389 "less than the requested DMA memory "
14390 "size (%d)\n", alloclen, reqlen);
14391 lpfc_sli4_mbox_cmd_free(phba, mbox);
14392 return -ENOMEM;
14393 }
James Smart4f774512009-05-22 14:52:35 -040014394 /* Set up the SGL pages in the non-embedded DMA pages */
James Smart6d368e52011-05-24 11:44:12 -040014395 viraddr = mbox->sge_array->addr[0];
James Smart4f774512009-05-22 14:52:35 -040014396 sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
14397 sgl_pg_pairs = &sgl->sgl_pg_pairs;
14398
James Smart8a9d2e82012-05-09 21:16:12 -040014399 pg_pairs = 0;
14400 list_for_each_entry_safe(sglq_entry, sglq_next, post_sgl_list, list) {
James Smart4f774512009-05-22 14:52:35 -040014401 /* Set up the sge entry */
14402 sgl_pg_pairs->sgl_pg0_addr_lo =
14403 cpu_to_le32(putPaddrLow(sglq_entry->phys));
14404 sgl_pg_pairs->sgl_pg0_addr_hi =
14405 cpu_to_le32(putPaddrHigh(sglq_entry->phys));
14406 sgl_pg_pairs->sgl_pg1_addr_lo =
14407 cpu_to_le32(putPaddrLow(0));
14408 sgl_pg_pairs->sgl_pg1_addr_hi =
14409 cpu_to_le32(putPaddrHigh(0));
James Smart6d368e52011-05-24 11:44:12 -040014410
James Smart4f774512009-05-22 14:52:35 -040014411 /* Keep the first xritag on the list */
14412 if (pg_pairs == 0)
14413 xritag_start = sglq_entry->sli4_xritag;
14414 sgl_pg_pairs++;
James Smart8a9d2e82012-05-09 21:16:12 -040014415 pg_pairs++;
James Smart4f774512009-05-22 14:52:35 -040014416 }
James Smart6d368e52011-05-24 11:44:12 -040014417
14418 /* Complete initialization and perform endian conversion. */
James Smart4f774512009-05-22 14:52:35 -040014419 bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
James Smart8a9d2e82012-05-09 21:16:12 -040014420 bf_set(lpfc_post_sgl_pages_xricnt, sgl, phba->sli4_hba.els_xri_cnt);
James Smart4f774512009-05-22 14:52:35 -040014421 sgl->word0 = cpu_to_le32(sgl->word0);
James Smart4f774512009-05-22 14:52:35 -040014422 if (!phba->sli4_hba.intr_enable)
14423 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
14424 else {
James Smarta183a152011-10-10 21:32:43 -040014425 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart4f774512009-05-22 14:52:35 -040014426 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
14427 }
14428 shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
14429 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14430 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14431 if (rc != MBX_TIMEOUT)
14432 lpfc_sli4_mbox_cmd_free(phba, mbox);
14433 if (shdr_status || shdr_add_status || rc) {
14434 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14435 "2513 POST_SGL_BLOCK mailbox command failed "
14436 "status x%x add_status x%x mbx status x%x\n",
14437 shdr_status, shdr_add_status, rc);
14438 rc = -ENXIO;
14439 }
14440 return rc;
14441}
14442
14443/**
14444 * lpfc_sli4_post_scsi_sgl_block - post a block of scsi sgl list to firmware
14445 * @phba: pointer to lpfc hba data structure.
14446 * @sblist: pointer to scsi buffer list.
14447 * @count: number of scsi buffers on the list.
14448 *
14449 * This routine is invoked to post a block of @count scsi sgl pages from a
14450 * SCSI buffer list @sblist to the HBA using non-embedded mailbox command.
14451 * No Lock is held.
14452 *
14453 **/
14454int
James Smart8a9d2e82012-05-09 21:16:12 -040014455lpfc_sli4_post_scsi_sgl_block(struct lpfc_hba *phba,
14456 struct list_head *sblist,
14457 int count)
James Smart4f774512009-05-22 14:52:35 -040014458{
14459 struct lpfc_scsi_buf *psb;
14460 struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
14461 struct sgl_page_pairs *sgl_pg_pairs;
14462 void *viraddr;
14463 LPFC_MBOXQ_t *mbox;
14464 uint32_t reqlen, alloclen, pg_pairs;
14465 uint32_t mbox_tmo;
14466 uint16_t xritag_start = 0;
14467 int rc = 0;
14468 uint32_t shdr_status, shdr_add_status;
14469 dma_addr_t pdma_phys_bpl1;
14470 union lpfc_sli4_cfg_shdr *shdr;
14471
14472 /* Calculate the requested length of the dma memory */
James Smart8a9d2e82012-05-09 21:16:12 -040014473 reqlen = count * sizeof(struct sgl_page_pairs) +
James Smart4f774512009-05-22 14:52:35 -040014474 sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
James Smart49198b32010-04-06 15:04:33 -040014475 if (reqlen > SLI4_PAGE_SIZE) {
James Smart4f774512009-05-22 14:52:35 -040014476 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
14477 "0217 Block sgl registration required DMA "
14478 "size (%d) great than a page\n", reqlen);
14479 return -ENOMEM;
14480 }
14481 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
14482 if (!mbox) {
14483 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14484 "0283 Failed to allocate mbox cmd memory\n");
14485 return -ENOMEM;
14486 }
14487
14488 /* Allocate DMA memory and set up the non-embedded mailbox command */
14489 alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14490 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
14491 LPFC_SLI4_MBX_NEMBED);
14492
14493 if (alloclen < reqlen) {
14494 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14495 "2561 Allocated DMA memory size (%d) is "
14496 "less than the requested DMA memory "
14497 "size (%d)\n", alloclen, reqlen);
14498 lpfc_sli4_mbox_cmd_free(phba, mbox);
14499 return -ENOMEM;
14500 }
James Smart6d368e52011-05-24 11:44:12 -040014501
James Smart4f774512009-05-22 14:52:35 -040014502 /* Get the first SGE entry from the non-embedded DMA memory */
James Smart4f774512009-05-22 14:52:35 -040014503 viraddr = mbox->sge_array->addr[0];
14504
14505 /* Set up the SGL pages in the non-embedded DMA pages */
14506 sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
14507 sgl_pg_pairs = &sgl->sgl_pg_pairs;
14508
14509 pg_pairs = 0;
14510 list_for_each_entry(psb, sblist, list) {
14511 /* Set up the sge entry */
14512 sgl_pg_pairs->sgl_pg0_addr_lo =
14513 cpu_to_le32(putPaddrLow(psb->dma_phys_bpl));
14514 sgl_pg_pairs->sgl_pg0_addr_hi =
14515 cpu_to_le32(putPaddrHigh(psb->dma_phys_bpl));
14516 if (phba->cfg_sg_dma_buf_size > SGL_PAGE_SIZE)
14517 pdma_phys_bpl1 = psb->dma_phys_bpl + SGL_PAGE_SIZE;
14518 else
14519 pdma_phys_bpl1 = 0;
14520 sgl_pg_pairs->sgl_pg1_addr_lo =
14521 cpu_to_le32(putPaddrLow(pdma_phys_bpl1));
14522 sgl_pg_pairs->sgl_pg1_addr_hi =
14523 cpu_to_le32(putPaddrHigh(pdma_phys_bpl1));
14524 /* Keep the first xritag on the list */
14525 if (pg_pairs == 0)
14526 xritag_start = psb->cur_iocbq.sli4_xritag;
14527 sgl_pg_pairs++;
14528 pg_pairs++;
14529 }
14530 bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
14531 bf_set(lpfc_post_sgl_pages_xricnt, sgl, pg_pairs);
14532 /* Perform endian conversion if necessary */
14533 sgl->word0 = cpu_to_le32(sgl->word0);
14534
14535 if (!phba->sli4_hba.intr_enable)
14536 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
14537 else {
James Smarta183a152011-10-10 21:32:43 -040014538 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart4f774512009-05-22 14:52:35 -040014539 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
14540 }
14541 shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
14542 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14543 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14544 if (rc != MBX_TIMEOUT)
14545 lpfc_sli4_mbox_cmd_free(phba, mbox);
14546 if (shdr_status || shdr_add_status || rc) {
14547 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14548 "2564 POST_SGL_BLOCK mailbox command failed "
14549 "status x%x add_status x%x mbx status x%x\n",
14550 shdr_status, shdr_add_status, rc);
14551 rc = -ENXIO;
14552 }
14553 return rc;
14554}
14555
14556/**
14557 * lpfc_fc_frame_check - Check that this frame is a valid frame to handle
14558 * @phba: pointer to lpfc_hba struct that the frame was received on
14559 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
14560 *
14561 * This function checks the fields in the @fc_hdr to see if the FC frame is a
14562 * valid type of frame that the LPFC driver will handle. This function will
14563 * return a zero if the frame is a valid frame or a non zero value when the
14564 * frame does not pass the check.
14565 **/
14566static int
14567lpfc_fc_frame_check(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr)
14568{
Tomas Henzl474ffb72010-12-22 16:52:40 +010014569 /* make rctl_names static to save stack space */
14570 static char *rctl_names[] = FC_RCTL_NAMES_INIT;
James Smart4f774512009-05-22 14:52:35 -040014571 char *type_names[] = FC_TYPE_NAMES_INIT;
14572 struct fc_vft_header *fc_vft_hdr;
James Smart546fc852011-03-11 16:06:29 -050014573 uint32_t *header = (uint32_t *) fc_hdr;
James Smart4f774512009-05-22 14:52:35 -040014574
14575 switch (fc_hdr->fh_r_ctl) {
14576 case FC_RCTL_DD_UNCAT: /* uncategorized information */
14577 case FC_RCTL_DD_SOL_DATA: /* solicited data */
14578 case FC_RCTL_DD_UNSOL_CTL: /* unsolicited control */
14579 case FC_RCTL_DD_SOL_CTL: /* solicited control or reply */
14580 case FC_RCTL_DD_UNSOL_DATA: /* unsolicited data */
14581 case FC_RCTL_DD_DATA_DESC: /* data descriptor */
14582 case FC_RCTL_DD_UNSOL_CMD: /* unsolicited command */
14583 case FC_RCTL_DD_CMD_STATUS: /* command status */
14584 case FC_RCTL_ELS_REQ: /* extended link services request */
14585 case FC_RCTL_ELS_REP: /* extended link services reply */
14586 case FC_RCTL_ELS4_REQ: /* FC-4 ELS request */
14587 case FC_RCTL_ELS4_REP: /* FC-4 ELS reply */
14588 case FC_RCTL_BA_NOP: /* basic link service NOP */
14589 case FC_RCTL_BA_ABTS: /* basic link service abort */
14590 case FC_RCTL_BA_RMC: /* remove connection */
14591 case FC_RCTL_BA_ACC: /* basic accept */
14592 case FC_RCTL_BA_RJT: /* basic reject */
14593 case FC_RCTL_BA_PRMT:
14594 case FC_RCTL_ACK_1: /* acknowledge_1 */
14595 case FC_RCTL_ACK_0: /* acknowledge_0 */
14596 case FC_RCTL_P_RJT: /* port reject */
14597 case FC_RCTL_F_RJT: /* fabric reject */
14598 case FC_RCTL_P_BSY: /* port busy */
14599 case FC_RCTL_F_BSY: /* fabric busy to data frame */
14600 case FC_RCTL_F_BSYL: /* fabric busy to link control frame */
14601 case FC_RCTL_LCR: /* link credit reset */
14602 case FC_RCTL_END: /* end */
14603 break;
14604 case FC_RCTL_VFTH: /* Virtual Fabric tagging Header */
14605 fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
14606 fc_hdr = &((struct fc_frame_header *)fc_vft_hdr)[1];
14607 return lpfc_fc_frame_check(phba, fc_hdr);
14608 default:
14609 goto drop;
14610 }
14611 switch (fc_hdr->fh_type) {
14612 case FC_TYPE_BLS:
14613 case FC_TYPE_ELS:
14614 case FC_TYPE_FCP:
14615 case FC_TYPE_CT:
14616 break;
14617 case FC_TYPE_IP:
14618 case FC_TYPE_ILS:
14619 default:
14620 goto drop;
14621 }
James Smart546fc852011-03-11 16:06:29 -050014622
James Smart4f774512009-05-22 14:52:35 -040014623 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
James Smart88f43a02013-04-17 20:19:44 -040014624 "2538 Received frame rctl:%s (x%x), type:%s (x%x), "
14625 "frame Data:%08x %08x %08x %08x %08x %08x %08x\n",
14626 rctl_names[fc_hdr->fh_r_ctl], fc_hdr->fh_r_ctl,
14627 type_names[fc_hdr->fh_type], fc_hdr->fh_type,
James Smart546fc852011-03-11 16:06:29 -050014628 be32_to_cpu(header[0]), be32_to_cpu(header[1]),
14629 be32_to_cpu(header[2]), be32_to_cpu(header[3]),
James Smart88f43a02013-04-17 20:19:44 -040014630 be32_to_cpu(header[4]), be32_to_cpu(header[5]),
14631 be32_to_cpu(header[6]));
James Smart4f774512009-05-22 14:52:35 -040014632 return 0;
14633drop:
14634 lpfc_printf_log(phba, KERN_WARNING, LOG_ELS,
14635 "2539 Dropped frame rctl:%s type:%s\n",
14636 rctl_names[fc_hdr->fh_r_ctl],
14637 type_names[fc_hdr->fh_type]);
14638 return 1;
14639}
14640
14641/**
14642 * lpfc_fc_hdr_get_vfi - Get the VFI from an FC frame
14643 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
14644 *
14645 * This function processes the FC header to retrieve the VFI from the VF
14646 * header, if one exists. This function will return the VFI if one exists
14647 * or 0 if no VSAN Header exists.
14648 **/
14649static uint32_t
14650lpfc_fc_hdr_get_vfi(struct fc_frame_header *fc_hdr)
14651{
14652 struct fc_vft_header *fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
14653
14654 if (fc_hdr->fh_r_ctl != FC_RCTL_VFTH)
14655 return 0;
14656 return bf_get(fc_vft_hdr_vf_id, fc_vft_hdr);
14657}
14658
14659/**
14660 * lpfc_fc_frame_to_vport - Finds the vport that a frame is destined to
14661 * @phba: Pointer to the HBA structure to search for the vport on
14662 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
14663 * @fcfi: The FC Fabric ID that the frame came from
14664 *
14665 * This function searches the @phba for a vport that matches the content of the
14666 * @fc_hdr passed in and the @fcfi. This function uses the @fc_hdr to fetch the
14667 * VFI, if the Virtual Fabric Tagging Header exists, and the DID. This function
14668 * returns the matching vport pointer or NULL if unable to match frame to a
14669 * vport.
14670 **/
14671static struct lpfc_vport *
14672lpfc_fc_frame_to_vport(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr,
14673 uint16_t fcfi)
14674{
14675 struct lpfc_vport **vports;
14676 struct lpfc_vport *vport = NULL;
14677 int i;
14678 uint32_t did = (fc_hdr->fh_d_id[0] << 16 |
14679 fc_hdr->fh_d_id[1] << 8 |
14680 fc_hdr->fh_d_id[2]);
James Smart939723a2012-05-09 21:19:03 -040014681
James Smartbf086112011-08-21 21:48:13 -040014682 if (did == Fabric_DID)
14683 return phba->pport;
James Smart939723a2012-05-09 21:19:03 -040014684 if ((phba->pport->fc_flag & FC_PT2PT) &&
14685 !(phba->link_state == LPFC_HBA_READY))
14686 return phba->pport;
14687
James Smart4f774512009-05-22 14:52:35 -040014688 vports = lpfc_create_vport_work_array(phba);
14689 if (vports != NULL)
14690 for (i = 0; i <= phba->max_vpi && vports[i] != NULL; i++) {
14691 if (phba->fcf.fcfi == fcfi &&
14692 vports[i]->vfi == lpfc_fc_hdr_get_vfi(fc_hdr) &&
14693 vports[i]->fc_myDID == did) {
14694 vport = vports[i];
14695 break;
14696 }
14697 }
14698 lpfc_destroy_vport_work_array(phba, vports);
14699 return vport;
14700}
14701
14702/**
James Smart45ed1192009-10-02 15:17:02 -040014703 * lpfc_update_rcv_time_stamp - Update vport's rcv seq time stamp
14704 * @vport: The vport to work on.
14705 *
14706 * This function updates the receive sequence time stamp for this vport. The
14707 * receive sequence time stamp indicates the time that the last frame of the
14708 * the sequence that has been idle for the longest amount of time was received.
14709 * the driver uses this time stamp to indicate if any received sequences have
14710 * timed out.
14711 **/
Rashika Kheria5d8b8162014-09-03 12:55:04 -040014712static void
James Smart45ed1192009-10-02 15:17:02 -040014713lpfc_update_rcv_time_stamp(struct lpfc_vport *vport)
14714{
14715 struct lpfc_dmabuf *h_buf;
14716 struct hbq_dmabuf *dmabuf = NULL;
14717
14718 /* get the oldest sequence on the rcv list */
14719 h_buf = list_get_first(&vport->rcv_buffer_list,
14720 struct lpfc_dmabuf, list);
14721 if (!h_buf)
14722 return;
14723 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14724 vport->rcv_buffer_time_stamp = dmabuf->time_stamp;
14725}
14726
14727/**
14728 * lpfc_cleanup_rcv_buffers - Cleans up all outstanding receive sequences.
14729 * @vport: The vport that the received sequences were sent to.
14730 *
14731 * This function cleans up all outstanding received sequences. This is called
14732 * by the driver when a link event or user action invalidates all the received
14733 * sequences.
14734 **/
14735void
14736lpfc_cleanup_rcv_buffers(struct lpfc_vport *vport)
14737{
14738 struct lpfc_dmabuf *h_buf, *hnext;
14739 struct lpfc_dmabuf *d_buf, *dnext;
14740 struct hbq_dmabuf *dmabuf = NULL;
14741
14742 /* start with the oldest sequence on the rcv list */
14743 list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
14744 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14745 list_del_init(&dmabuf->hbuf.list);
14746 list_for_each_entry_safe(d_buf, dnext,
14747 &dmabuf->dbuf.list, list) {
14748 list_del_init(&d_buf->list);
14749 lpfc_in_buf_free(vport->phba, d_buf);
14750 }
14751 lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
14752 }
14753}
14754
14755/**
14756 * lpfc_rcv_seq_check_edtov - Cleans up timed out receive sequences.
14757 * @vport: The vport that the received sequences were sent to.
14758 *
14759 * This function determines whether any received sequences have timed out by
14760 * first checking the vport's rcv_buffer_time_stamp. If this time_stamp
14761 * indicates that there is at least one timed out sequence this routine will
14762 * go through the received sequences one at a time from most inactive to most
14763 * active to determine which ones need to be cleaned up. Once it has determined
14764 * that a sequence needs to be cleaned up it will simply free up the resources
14765 * without sending an abort.
14766 **/
14767void
14768lpfc_rcv_seq_check_edtov(struct lpfc_vport *vport)
14769{
14770 struct lpfc_dmabuf *h_buf, *hnext;
14771 struct lpfc_dmabuf *d_buf, *dnext;
14772 struct hbq_dmabuf *dmabuf = NULL;
14773 unsigned long timeout;
14774 int abort_count = 0;
14775
14776 timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
14777 vport->rcv_buffer_time_stamp);
14778 if (list_empty(&vport->rcv_buffer_list) ||
14779 time_before(jiffies, timeout))
14780 return;
14781 /* start with the oldest sequence on the rcv list */
14782 list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
14783 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14784 timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
14785 dmabuf->time_stamp);
14786 if (time_before(jiffies, timeout))
14787 break;
14788 abort_count++;
14789 list_del_init(&dmabuf->hbuf.list);
14790 list_for_each_entry_safe(d_buf, dnext,
14791 &dmabuf->dbuf.list, list) {
14792 list_del_init(&d_buf->list);
14793 lpfc_in_buf_free(vport->phba, d_buf);
14794 }
14795 lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
14796 }
14797 if (abort_count)
14798 lpfc_update_rcv_time_stamp(vport);
14799}
14800
14801/**
James Smart4f774512009-05-22 14:52:35 -040014802 * lpfc_fc_frame_add - Adds a frame to the vport's list of received sequences
14803 * @dmabuf: pointer to a dmabuf that describes the hdr and data of the FC frame
14804 *
14805 * This function searches through the existing incomplete sequences that have
14806 * been sent to this @vport. If the frame matches one of the incomplete
14807 * sequences then the dbuf in the @dmabuf is added to the list of frames that
14808 * make up that sequence. If no sequence is found that matches this frame then
14809 * the function will add the hbuf in the @dmabuf to the @vport's rcv_buffer_list
14810 * This function returns a pointer to the first dmabuf in the sequence list that
14811 * the frame was linked to.
14812 **/
14813static struct hbq_dmabuf *
14814lpfc_fc_frame_add(struct lpfc_vport *vport, struct hbq_dmabuf *dmabuf)
14815{
14816 struct fc_frame_header *new_hdr;
14817 struct fc_frame_header *temp_hdr;
14818 struct lpfc_dmabuf *d_buf;
14819 struct lpfc_dmabuf *h_buf;
14820 struct hbq_dmabuf *seq_dmabuf = NULL;
14821 struct hbq_dmabuf *temp_dmabuf = NULL;
14822
James Smart4d9ab992009-10-02 15:16:39 -040014823 INIT_LIST_HEAD(&dmabuf->dbuf.list);
James Smart45ed1192009-10-02 15:17:02 -040014824 dmabuf->time_stamp = jiffies;
James Smart4f774512009-05-22 14:52:35 -040014825 new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
14826 /* Use the hdr_buf to find the sequence that this frame belongs to */
14827 list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
14828 temp_hdr = (struct fc_frame_header *)h_buf->virt;
14829 if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
14830 (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
14831 (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
14832 continue;
14833 /* found a pending sequence that matches this frame */
14834 seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14835 break;
14836 }
14837 if (!seq_dmabuf) {
14838 /*
14839 * This indicates first frame received for this sequence.
14840 * Queue the buffer on the vport's rcv_buffer_list.
14841 */
14842 list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
James Smart45ed1192009-10-02 15:17:02 -040014843 lpfc_update_rcv_time_stamp(vport);
James Smart4f774512009-05-22 14:52:35 -040014844 return dmabuf;
14845 }
14846 temp_hdr = seq_dmabuf->hbuf.virt;
James Smarteeead812009-12-21 17:01:23 -050014847 if (be16_to_cpu(new_hdr->fh_seq_cnt) <
14848 be16_to_cpu(temp_hdr->fh_seq_cnt)) {
James Smart4d9ab992009-10-02 15:16:39 -040014849 list_del_init(&seq_dmabuf->hbuf.list);
14850 list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
14851 list_add_tail(&dmabuf->dbuf.list, &seq_dmabuf->dbuf.list);
James Smart45ed1192009-10-02 15:17:02 -040014852 lpfc_update_rcv_time_stamp(vport);
James Smart4f774512009-05-22 14:52:35 -040014853 return dmabuf;
14854 }
James Smart45ed1192009-10-02 15:17:02 -040014855 /* move this sequence to the tail to indicate a young sequence */
14856 list_move_tail(&seq_dmabuf->hbuf.list, &vport->rcv_buffer_list);
14857 seq_dmabuf->time_stamp = jiffies;
14858 lpfc_update_rcv_time_stamp(vport);
James Smarteeead812009-12-21 17:01:23 -050014859 if (list_empty(&seq_dmabuf->dbuf.list)) {
14860 temp_hdr = dmabuf->hbuf.virt;
14861 list_add_tail(&dmabuf->dbuf.list, &seq_dmabuf->dbuf.list);
14862 return seq_dmabuf;
14863 }
James Smart4f774512009-05-22 14:52:35 -040014864 /* find the correct place in the sequence to insert this frame */
14865 list_for_each_entry_reverse(d_buf, &seq_dmabuf->dbuf.list, list) {
14866 temp_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
14867 temp_hdr = (struct fc_frame_header *)temp_dmabuf->hbuf.virt;
14868 /*
14869 * If the frame's sequence count is greater than the frame on
14870 * the list then insert the frame right after this frame
14871 */
James Smarteeead812009-12-21 17:01:23 -050014872 if (be16_to_cpu(new_hdr->fh_seq_cnt) >
14873 be16_to_cpu(temp_hdr->fh_seq_cnt)) {
James Smart4f774512009-05-22 14:52:35 -040014874 list_add(&dmabuf->dbuf.list, &temp_dmabuf->dbuf.list);
14875 return seq_dmabuf;
14876 }
14877 }
14878 return NULL;
14879}
14880
14881/**
James Smart6669f9b2009-10-02 15:16:45 -040014882 * lpfc_sli4_abort_partial_seq - Abort partially assembled unsol sequence
14883 * @vport: pointer to a vitural port
14884 * @dmabuf: pointer to a dmabuf that describes the FC sequence
14885 *
14886 * This function tries to abort from the partially assembed sequence, described
14887 * by the information from basic abbort @dmabuf. It checks to see whether such
14888 * partially assembled sequence held by the driver. If so, it shall free up all
14889 * the frames from the partially assembled sequence.
14890 *
14891 * Return
14892 * true -- if there is matching partially assembled sequence present and all
14893 * the frames freed with the sequence;
14894 * false -- if there is no matching partially assembled sequence present so
14895 * nothing got aborted in the lower layer driver
14896 **/
14897static bool
14898lpfc_sli4_abort_partial_seq(struct lpfc_vport *vport,
14899 struct hbq_dmabuf *dmabuf)
14900{
14901 struct fc_frame_header *new_hdr;
14902 struct fc_frame_header *temp_hdr;
14903 struct lpfc_dmabuf *d_buf, *n_buf, *h_buf;
14904 struct hbq_dmabuf *seq_dmabuf = NULL;
14905
14906 /* Use the hdr_buf to find the sequence that matches this frame */
14907 INIT_LIST_HEAD(&dmabuf->dbuf.list);
14908 INIT_LIST_HEAD(&dmabuf->hbuf.list);
14909 new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
14910 list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
14911 temp_hdr = (struct fc_frame_header *)h_buf->virt;
14912 if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
14913 (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
14914 (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
14915 continue;
14916 /* found a pending sequence that matches this frame */
14917 seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14918 break;
14919 }
14920
14921 /* Free up all the frames from the partially assembled sequence */
14922 if (seq_dmabuf) {
14923 list_for_each_entry_safe(d_buf, n_buf,
14924 &seq_dmabuf->dbuf.list, list) {
14925 list_del_init(&d_buf->list);
14926 lpfc_in_buf_free(vport->phba, d_buf);
14927 }
14928 return true;
14929 }
14930 return false;
14931}
14932
14933/**
James Smart6dd9e312013-01-03 15:43:37 -050014934 * lpfc_sli4_abort_ulp_seq - Abort assembled unsol sequence from ulp
14935 * @vport: pointer to a vitural port
14936 * @dmabuf: pointer to a dmabuf that describes the FC sequence
14937 *
14938 * This function tries to abort from the assembed sequence from upper level
14939 * protocol, described by the information from basic abbort @dmabuf. It
14940 * checks to see whether such pending context exists at upper level protocol.
14941 * If so, it shall clean up the pending context.
14942 *
14943 * Return
14944 * true -- if there is matching pending context of the sequence cleaned
14945 * at ulp;
14946 * false -- if there is no matching pending context of the sequence present
14947 * at ulp.
14948 **/
14949static bool
14950lpfc_sli4_abort_ulp_seq(struct lpfc_vport *vport, struct hbq_dmabuf *dmabuf)
14951{
14952 struct lpfc_hba *phba = vport->phba;
14953 int handled;
14954
14955 /* Accepting abort at ulp with SLI4 only */
14956 if (phba->sli_rev < LPFC_SLI_REV4)
14957 return false;
14958
14959 /* Register all caring upper level protocols to attend abort */
14960 handled = lpfc_ct_handle_unsol_abort(phba, dmabuf);
14961 if (handled)
14962 return true;
14963
14964 return false;
14965}
14966
14967/**
James Smart546fc852011-03-11 16:06:29 -050014968 * lpfc_sli4_seq_abort_rsp_cmpl - BLS ABORT RSP seq abort iocb complete handler
James Smart6669f9b2009-10-02 15:16:45 -040014969 * @phba: Pointer to HBA context object.
14970 * @cmd_iocbq: pointer to the command iocbq structure.
14971 * @rsp_iocbq: pointer to the response iocbq structure.
14972 *
James Smart546fc852011-03-11 16:06:29 -050014973 * This function handles the sequence abort response iocb command complete
James Smart6669f9b2009-10-02 15:16:45 -040014974 * event. It properly releases the memory allocated to the sequence abort
14975 * accept iocb.
14976 **/
14977static void
James Smart546fc852011-03-11 16:06:29 -050014978lpfc_sli4_seq_abort_rsp_cmpl(struct lpfc_hba *phba,
James Smart6669f9b2009-10-02 15:16:45 -040014979 struct lpfc_iocbq *cmd_iocbq,
14980 struct lpfc_iocbq *rsp_iocbq)
14981{
James Smart6dd9e312013-01-03 15:43:37 -050014982 struct lpfc_nodelist *ndlp;
14983
14984 if (cmd_iocbq) {
14985 ndlp = (struct lpfc_nodelist *)cmd_iocbq->context1;
14986 lpfc_nlp_put(ndlp);
14987 lpfc_nlp_not_used(ndlp);
James Smart6669f9b2009-10-02 15:16:45 -040014988 lpfc_sli_release_iocbq(phba, cmd_iocbq);
James Smart6dd9e312013-01-03 15:43:37 -050014989 }
James Smart6b5151f2012-01-18 16:24:06 -050014990
14991 /* Failure means BLS ABORT RSP did not get delivered to remote node*/
14992 if (rsp_iocbq && rsp_iocbq->iocb.ulpStatus)
14993 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14994 "3154 BLS ABORT RSP failed, data: x%x/x%x\n",
14995 rsp_iocbq->iocb.ulpStatus,
14996 rsp_iocbq->iocb.un.ulpWord[4]);
James Smart6669f9b2009-10-02 15:16:45 -040014997}
14998
14999/**
James Smart6d368e52011-05-24 11:44:12 -040015000 * lpfc_sli4_xri_inrange - check xri is in range of xris owned by driver.
15001 * @phba: Pointer to HBA context object.
15002 * @xri: xri id in transaction.
15003 *
15004 * This function validates the xri maps to the known range of XRIs allocated an
15005 * used by the driver.
15006 **/
James Smart7851fe22011-07-22 18:36:52 -040015007uint16_t
James Smart6d368e52011-05-24 11:44:12 -040015008lpfc_sli4_xri_inrange(struct lpfc_hba *phba,
15009 uint16_t xri)
15010{
James Smarta2fc4aef2014-09-03 12:57:55 -040015011 uint16_t i;
James Smart6d368e52011-05-24 11:44:12 -040015012
15013 for (i = 0; i < phba->sli4_hba.max_cfg_param.max_xri; i++) {
15014 if (xri == phba->sli4_hba.xri_ids[i])
15015 return i;
15016 }
15017 return NO_XRI;
15018}
15019
James Smart6d368e52011-05-24 11:44:12 -040015020/**
James Smart546fc852011-03-11 16:06:29 -050015021 * lpfc_sli4_seq_abort_rsp - bls rsp to sequence abort
James Smart6669f9b2009-10-02 15:16:45 -040015022 * @phba: Pointer to HBA context object.
15023 * @fc_hdr: pointer to a FC frame header.
15024 *
James Smart546fc852011-03-11 16:06:29 -050015025 * This function sends a basic response to a previous unsol sequence abort
James Smart6669f9b2009-10-02 15:16:45 -040015026 * event after aborting the sequence handling.
15027 **/
15028static void
James Smart6dd9e312013-01-03 15:43:37 -050015029lpfc_sli4_seq_abort_rsp(struct lpfc_vport *vport,
15030 struct fc_frame_header *fc_hdr, bool aborted)
James Smart6669f9b2009-10-02 15:16:45 -040015031{
James Smart6dd9e312013-01-03 15:43:37 -050015032 struct lpfc_hba *phba = vport->phba;
James Smart6669f9b2009-10-02 15:16:45 -040015033 struct lpfc_iocbq *ctiocb = NULL;
15034 struct lpfc_nodelist *ndlp;
James Smartee0f4fe2012-05-09 21:19:14 -040015035 uint16_t oxid, rxid, xri, lxri;
James Smart5ffc2662009-11-18 15:39:44 -050015036 uint32_t sid, fctl;
James Smart6669f9b2009-10-02 15:16:45 -040015037 IOCB_t *icmd;
James Smart546fc852011-03-11 16:06:29 -050015038 int rc;
James Smart6669f9b2009-10-02 15:16:45 -040015039
15040 if (!lpfc_is_link_up(phba))
15041 return;
15042
15043 sid = sli4_sid_from_fc_hdr(fc_hdr);
15044 oxid = be16_to_cpu(fc_hdr->fh_ox_id);
James Smart5ffc2662009-11-18 15:39:44 -050015045 rxid = be16_to_cpu(fc_hdr->fh_rx_id);
James Smart6669f9b2009-10-02 15:16:45 -040015046
James Smart6dd9e312013-01-03 15:43:37 -050015047 ndlp = lpfc_findnode_did(vport, sid);
James Smart6669f9b2009-10-02 15:16:45 -040015048 if (!ndlp) {
James Smart6dd9e312013-01-03 15:43:37 -050015049 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
15050 if (!ndlp) {
15051 lpfc_printf_vlog(vport, KERN_WARNING, LOG_ELS,
15052 "1268 Failed to allocate ndlp for "
15053 "oxid:x%x SID:x%x\n", oxid, sid);
15054 return;
15055 }
15056 lpfc_nlp_init(vport, ndlp, sid);
15057 /* Put ndlp onto pport node list */
15058 lpfc_enqueue_node(vport, ndlp);
15059 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
15060 /* re-setup ndlp without removing from node list */
15061 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
15062 if (!ndlp) {
15063 lpfc_printf_vlog(vport, KERN_WARNING, LOG_ELS,
15064 "3275 Failed to active ndlp found "
15065 "for oxid:x%x SID:x%x\n", oxid, sid);
15066 return;
15067 }
James Smart6669f9b2009-10-02 15:16:45 -040015068 }
15069
James Smart546fc852011-03-11 16:06:29 -050015070 /* Allocate buffer for rsp iocb */
James Smart6669f9b2009-10-02 15:16:45 -040015071 ctiocb = lpfc_sli_get_iocbq(phba);
15072 if (!ctiocb)
15073 return;
15074
James Smart5ffc2662009-11-18 15:39:44 -050015075 /* Extract the F_CTL field from FC_HDR */
15076 fctl = sli4_fctl_from_fc_hdr(fc_hdr);
15077
James Smart6669f9b2009-10-02 15:16:45 -040015078 icmd = &ctiocb->iocb;
James Smart6669f9b2009-10-02 15:16:45 -040015079 icmd->un.xseq64.bdl.bdeSize = 0;
James Smart5ffc2662009-11-18 15:39:44 -050015080 icmd->un.xseq64.bdl.ulpIoTag32 = 0;
James Smart6669f9b2009-10-02 15:16:45 -040015081 icmd->un.xseq64.w5.hcsw.Dfctl = 0;
15082 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_ACC;
15083 icmd->un.xseq64.w5.hcsw.Type = FC_TYPE_BLS;
15084
15085 /* Fill in the rest of iocb fields */
15086 icmd->ulpCommand = CMD_XMIT_BLS_RSP64_CX;
15087 icmd->ulpBdeCount = 0;
15088 icmd->ulpLe = 1;
15089 icmd->ulpClass = CLASS3;
James Smart6d368e52011-05-24 11:44:12 -040015090 icmd->ulpContext = phba->sli4_hba.rpi_ids[ndlp->nlp_rpi];
James Smart6dd9e312013-01-03 15:43:37 -050015091 ctiocb->context1 = lpfc_nlp_get(ndlp);
James Smart6669f9b2009-10-02 15:16:45 -040015092
James Smart6669f9b2009-10-02 15:16:45 -040015093 ctiocb->iocb_cmpl = NULL;
15094 ctiocb->vport = phba->pport;
James Smart546fc852011-03-11 16:06:29 -050015095 ctiocb->iocb_cmpl = lpfc_sli4_seq_abort_rsp_cmpl;
James Smart6d368e52011-05-24 11:44:12 -040015096 ctiocb->sli4_lxritag = NO_XRI;
James Smart546fc852011-03-11 16:06:29 -050015097 ctiocb->sli4_xritag = NO_XRI;
15098
James Smartee0f4fe2012-05-09 21:19:14 -040015099 if (fctl & FC_FC_EX_CTX)
15100 /* Exchange responder sent the abort so we
15101 * own the oxid.
15102 */
15103 xri = oxid;
15104 else
15105 xri = rxid;
15106 lxri = lpfc_sli4_xri_inrange(phba, xri);
15107 if (lxri != NO_XRI)
15108 lpfc_set_rrq_active(phba, ndlp, lxri,
15109 (xri == oxid) ? rxid : oxid, 0);
James Smart6dd9e312013-01-03 15:43:37 -050015110 /* For BA_ABTS from exchange responder, if the logical xri with
15111 * the oxid maps to the FCP XRI range, the port no longer has
15112 * that exchange context, send a BLS_RJT. Override the IOCB for
15113 * a BA_RJT.
James Smart546fc852011-03-11 16:06:29 -050015114 */
James Smart6dd9e312013-01-03 15:43:37 -050015115 if ((fctl & FC_FC_EX_CTX) &&
15116 (lxri > lpfc_sli4_get_els_iocb_cnt(phba))) {
15117 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_RJT;
15118 bf_set(lpfc_vndr_code, &icmd->un.bls_rsp, 0);
15119 bf_set(lpfc_rsn_expln, &icmd->un.bls_rsp, FC_BA_RJT_INV_XID);
15120 bf_set(lpfc_rsn_code, &icmd->un.bls_rsp, FC_BA_RJT_UNABLE);
15121 }
15122
15123 /* If BA_ABTS failed to abort a partially assembled receive sequence,
15124 * the driver no longer has that exchange, send a BLS_RJT. Override
15125 * the IOCB for a BA_RJT.
15126 */
15127 if (aborted == false) {
James Smart546fc852011-03-11 16:06:29 -050015128 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_RJT;
15129 bf_set(lpfc_vndr_code, &icmd->un.bls_rsp, 0);
15130 bf_set(lpfc_rsn_expln, &icmd->un.bls_rsp, FC_BA_RJT_INV_XID);
15131 bf_set(lpfc_rsn_code, &icmd->un.bls_rsp, FC_BA_RJT_UNABLE);
15132 }
James Smart6669f9b2009-10-02 15:16:45 -040015133
James Smart5ffc2662009-11-18 15:39:44 -050015134 if (fctl & FC_FC_EX_CTX) {
15135 /* ABTS sent by responder to CT exchange, construction
15136 * of BA_ACC will use OX_ID from ABTS for the XRI_TAG
15137 * field and RX_ID from ABTS for RX_ID field.
15138 */
James Smart546fc852011-03-11 16:06:29 -050015139 bf_set(lpfc_abts_orig, &icmd->un.bls_rsp, LPFC_ABTS_UNSOL_RSP);
James Smart5ffc2662009-11-18 15:39:44 -050015140 } else {
15141 /* ABTS sent by initiator to CT exchange, construction
15142 * of BA_ACC will need to allocate a new XRI as for the
James Smartf09c3ac2012-03-01 22:33:29 -050015143 * XRI_TAG field.
James Smart5ffc2662009-11-18 15:39:44 -050015144 */
James Smart546fc852011-03-11 16:06:29 -050015145 bf_set(lpfc_abts_orig, &icmd->un.bls_rsp, LPFC_ABTS_UNSOL_INT);
James Smart5ffc2662009-11-18 15:39:44 -050015146 }
James Smartf09c3ac2012-03-01 22:33:29 -050015147 bf_set(lpfc_abts_rxid, &icmd->un.bls_rsp, rxid);
James Smart546fc852011-03-11 16:06:29 -050015148 bf_set(lpfc_abts_oxid, &icmd->un.bls_rsp, oxid);
James Smart5ffc2662009-11-18 15:39:44 -050015149
James Smart546fc852011-03-11 16:06:29 -050015150 /* Xmit CT abts response on exchange <xid> */
James Smart6dd9e312013-01-03 15:43:37 -050015151 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
15152 "1200 Send BLS cmd x%x on oxid x%x Data: x%x\n",
15153 icmd->un.xseq64.w5.hcsw.Rctl, oxid, phba->link_state);
James Smart546fc852011-03-11 16:06:29 -050015154
15155 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, ctiocb, 0);
15156 if (rc == IOCB_ERROR) {
James Smart6dd9e312013-01-03 15:43:37 -050015157 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
15158 "2925 Failed to issue CT ABTS RSP x%x on "
15159 "xri x%x, Data x%x\n",
15160 icmd->un.xseq64.w5.hcsw.Rctl, oxid,
15161 phba->link_state);
15162 lpfc_nlp_put(ndlp);
15163 ctiocb->context1 = NULL;
James Smart546fc852011-03-11 16:06:29 -050015164 lpfc_sli_release_iocbq(phba, ctiocb);
15165 }
James Smart6669f9b2009-10-02 15:16:45 -040015166}
15167
15168/**
15169 * lpfc_sli4_handle_unsol_abort - Handle sli-4 unsolicited abort event
15170 * @vport: Pointer to the vport on which this sequence was received
15171 * @dmabuf: pointer to a dmabuf that describes the FC sequence
15172 *
15173 * This function handles an SLI-4 unsolicited abort event. If the unsolicited
15174 * receive sequence is only partially assembed by the driver, it shall abort
15175 * the partially assembled frames for the sequence. Otherwise, if the
15176 * unsolicited receive sequence has been completely assembled and passed to
15177 * the Upper Layer Protocol (UPL), it then mark the per oxid status for the
15178 * unsolicited sequence has been aborted. After that, it will issue a basic
15179 * accept to accept the abort.
15180 **/
Rashika Kheria5d8b8162014-09-03 12:55:04 -040015181static void
James Smart6669f9b2009-10-02 15:16:45 -040015182lpfc_sli4_handle_unsol_abort(struct lpfc_vport *vport,
15183 struct hbq_dmabuf *dmabuf)
15184{
15185 struct lpfc_hba *phba = vport->phba;
15186 struct fc_frame_header fc_hdr;
James Smart5ffc2662009-11-18 15:39:44 -050015187 uint32_t fctl;
James Smart6dd9e312013-01-03 15:43:37 -050015188 bool aborted;
James Smart6669f9b2009-10-02 15:16:45 -040015189
James Smart6669f9b2009-10-02 15:16:45 -040015190 /* Make a copy of fc_hdr before the dmabuf being released */
15191 memcpy(&fc_hdr, dmabuf->hbuf.virt, sizeof(struct fc_frame_header));
James Smart5ffc2662009-11-18 15:39:44 -050015192 fctl = sli4_fctl_from_fc_hdr(&fc_hdr);
James Smart6669f9b2009-10-02 15:16:45 -040015193
James Smart5ffc2662009-11-18 15:39:44 -050015194 if (fctl & FC_FC_EX_CTX) {
James Smart6dd9e312013-01-03 15:43:37 -050015195 /* ABTS by responder to exchange, no cleanup needed */
15196 aborted = true;
James Smart5ffc2662009-11-18 15:39:44 -050015197 } else {
James Smart6dd9e312013-01-03 15:43:37 -050015198 /* ABTS by initiator to exchange, need to do cleanup */
15199 aborted = lpfc_sli4_abort_partial_seq(vport, dmabuf);
15200 if (aborted == false)
15201 aborted = lpfc_sli4_abort_ulp_seq(vport, dmabuf);
James Smart5ffc2662009-11-18 15:39:44 -050015202 }
James Smart6dd9e312013-01-03 15:43:37 -050015203 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15204
15205 /* Respond with BA_ACC or BA_RJT accordingly */
15206 lpfc_sli4_seq_abort_rsp(vport, &fc_hdr, aborted);
James Smart6669f9b2009-10-02 15:16:45 -040015207}
15208
15209/**
James Smart4f774512009-05-22 14:52:35 -040015210 * lpfc_seq_complete - Indicates if a sequence is complete
15211 * @dmabuf: pointer to a dmabuf that describes the FC sequence
15212 *
15213 * This function checks the sequence, starting with the frame described by
15214 * @dmabuf, to see if all the frames associated with this sequence are present.
15215 * the frames associated with this sequence are linked to the @dmabuf using the
15216 * dbuf list. This function looks for two major things. 1) That the first frame
15217 * has a sequence count of zero. 2) There is a frame with last frame of sequence
15218 * set. 3) That there are no holes in the sequence count. The function will
15219 * return 1 when the sequence is complete, otherwise it will return 0.
15220 **/
15221static int
15222lpfc_seq_complete(struct hbq_dmabuf *dmabuf)
15223{
15224 struct fc_frame_header *hdr;
15225 struct lpfc_dmabuf *d_buf;
15226 struct hbq_dmabuf *seq_dmabuf;
15227 uint32_t fctl;
15228 int seq_count = 0;
15229
15230 hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
15231 /* make sure first fame of sequence has a sequence count of zero */
15232 if (hdr->fh_seq_cnt != seq_count)
15233 return 0;
15234 fctl = (hdr->fh_f_ctl[0] << 16 |
15235 hdr->fh_f_ctl[1] << 8 |
15236 hdr->fh_f_ctl[2]);
15237 /* If last frame of sequence we can return success. */
15238 if (fctl & FC_FC_END_SEQ)
15239 return 1;
15240 list_for_each_entry(d_buf, &dmabuf->dbuf.list, list) {
15241 seq_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
15242 hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
15243 /* If there is a hole in the sequence count then fail. */
James Smarteeead812009-12-21 17:01:23 -050015244 if (++seq_count != be16_to_cpu(hdr->fh_seq_cnt))
James Smart4f774512009-05-22 14:52:35 -040015245 return 0;
15246 fctl = (hdr->fh_f_ctl[0] << 16 |
15247 hdr->fh_f_ctl[1] << 8 |
15248 hdr->fh_f_ctl[2]);
15249 /* If last frame of sequence we can return success. */
15250 if (fctl & FC_FC_END_SEQ)
15251 return 1;
15252 }
15253 return 0;
15254}
15255
15256/**
15257 * lpfc_prep_seq - Prep sequence for ULP processing
15258 * @vport: Pointer to the vport on which this sequence was received
15259 * @dmabuf: pointer to a dmabuf that describes the FC sequence
15260 *
15261 * This function takes a sequence, described by a list of frames, and creates
15262 * a list of iocbq structures to describe the sequence. This iocbq list will be
15263 * used to issue to the generic unsolicited sequence handler. This routine
15264 * returns a pointer to the first iocbq in the list. If the function is unable
15265 * to allocate an iocbq then it throw out the received frames that were not
15266 * able to be described and return a pointer to the first iocbq. If unable to
15267 * allocate any iocbqs (including the first) this function will return NULL.
15268 **/
15269static struct lpfc_iocbq *
15270lpfc_prep_seq(struct lpfc_vport *vport, struct hbq_dmabuf *seq_dmabuf)
15271{
James Smart7851fe22011-07-22 18:36:52 -040015272 struct hbq_dmabuf *hbq_buf;
James Smart4f774512009-05-22 14:52:35 -040015273 struct lpfc_dmabuf *d_buf, *n_buf;
15274 struct lpfc_iocbq *first_iocbq, *iocbq;
15275 struct fc_frame_header *fc_hdr;
15276 uint32_t sid;
James Smart7851fe22011-07-22 18:36:52 -040015277 uint32_t len, tot_len;
James Smarteeead812009-12-21 17:01:23 -050015278 struct ulp_bde64 *pbde;
James Smart4f774512009-05-22 14:52:35 -040015279
15280 fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
15281 /* remove from receive buffer list */
15282 list_del_init(&seq_dmabuf->hbuf.list);
James Smart45ed1192009-10-02 15:17:02 -040015283 lpfc_update_rcv_time_stamp(vport);
James Smart4f774512009-05-22 14:52:35 -040015284 /* get the Remote Port's SID */
James Smart6669f9b2009-10-02 15:16:45 -040015285 sid = sli4_sid_from_fc_hdr(fc_hdr);
James Smart7851fe22011-07-22 18:36:52 -040015286 tot_len = 0;
James Smart4f774512009-05-22 14:52:35 -040015287 /* Get an iocbq struct to fill in. */
15288 first_iocbq = lpfc_sli_get_iocbq(vport->phba);
15289 if (first_iocbq) {
15290 /* Initialize the first IOCB. */
James Smart8fa38512009-07-19 10:01:03 -040015291 first_iocbq->iocb.unsli3.rcvsli3.acc_len = 0;
James Smart4f774512009-05-22 14:52:35 -040015292 first_iocbq->iocb.ulpStatus = IOSTAT_SUCCESS;
James Smart939723a2012-05-09 21:19:03 -040015293
15294 /* Check FC Header to see what TYPE of frame we are rcv'ing */
15295 if (sli4_type_from_fc_hdr(fc_hdr) == FC_TYPE_ELS) {
15296 first_iocbq->iocb.ulpCommand = CMD_IOCB_RCV_ELS64_CX;
15297 first_iocbq->iocb.un.rcvels.parmRo =
15298 sli4_did_from_fc_hdr(fc_hdr);
15299 first_iocbq->iocb.ulpPU = PARM_NPIV_DID;
15300 } else
15301 first_iocbq->iocb.ulpCommand = CMD_IOCB_RCV_SEQ64_CX;
James Smart7851fe22011-07-22 18:36:52 -040015302 first_iocbq->iocb.ulpContext = NO_XRI;
15303 first_iocbq->iocb.unsli3.rcvsli3.ox_id =
15304 be16_to_cpu(fc_hdr->fh_ox_id);
15305 /* iocbq is prepped for internal consumption. Physical vpi. */
15306 first_iocbq->iocb.unsli3.rcvsli3.vpi =
15307 vport->phba->vpi_ids[vport->vpi];
James Smart4f774512009-05-22 14:52:35 -040015308 /* put the first buffer into the first IOCBq */
James Smart48a5a662013-07-15 18:32:28 -040015309 tot_len = bf_get(lpfc_rcqe_length,
15310 &seq_dmabuf->cq_event.cqe.rcqe_cmpl);
15311
James Smart4f774512009-05-22 14:52:35 -040015312 first_iocbq->context2 = &seq_dmabuf->dbuf;
15313 first_iocbq->context3 = NULL;
15314 first_iocbq->iocb.ulpBdeCount = 1;
James Smart48a5a662013-07-15 18:32:28 -040015315 if (tot_len > LPFC_DATA_BUF_SIZE)
15316 first_iocbq->iocb.un.cont64[0].tus.f.bdeSize =
James Smart4f774512009-05-22 14:52:35 -040015317 LPFC_DATA_BUF_SIZE;
James Smart48a5a662013-07-15 18:32:28 -040015318 else
15319 first_iocbq->iocb.un.cont64[0].tus.f.bdeSize = tot_len;
15320
James Smart4f774512009-05-22 14:52:35 -040015321 first_iocbq->iocb.un.rcvels.remoteID = sid;
James Smart48a5a662013-07-15 18:32:28 -040015322
James Smart7851fe22011-07-22 18:36:52 -040015323 first_iocbq->iocb.unsli3.rcvsli3.acc_len = tot_len;
James Smart4f774512009-05-22 14:52:35 -040015324 }
15325 iocbq = first_iocbq;
15326 /*
15327 * Each IOCBq can have two Buffers assigned, so go through the list
15328 * of buffers for this sequence and save two buffers in each IOCBq
15329 */
15330 list_for_each_entry_safe(d_buf, n_buf, &seq_dmabuf->dbuf.list, list) {
15331 if (!iocbq) {
15332 lpfc_in_buf_free(vport->phba, d_buf);
15333 continue;
15334 }
15335 if (!iocbq->context3) {
15336 iocbq->context3 = d_buf;
15337 iocbq->iocb.ulpBdeCount++;
James Smart7851fe22011-07-22 18:36:52 -040015338 /* We need to get the size out of the right CQE */
15339 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
15340 len = bf_get(lpfc_rcqe_length,
15341 &hbq_buf->cq_event.cqe.rcqe_cmpl);
James Smart48a5a662013-07-15 18:32:28 -040015342 pbde = (struct ulp_bde64 *)
15343 &iocbq->iocb.unsli3.sli3Words[4];
15344 if (len > LPFC_DATA_BUF_SIZE)
15345 pbde->tus.f.bdeSize = LPFC_DATA_BUF_SIZE;
15346 else
15347 pbde->tus.f.bdeSize = len;
15348
James Smart7851fe22011-07-22 18:36:52 -040015349 iocbq->iocb.unsli3.rcvsli3.acc_len += len;
15350 tot_len += len;
James Smart4f774512009-05-22 14:52:35 -040015351 } else {
15352 iocbq = lpfc_sli_get_iocbq(vport->phba);
15353 if (!iocbq) {
15354 if (first_iocbq) {
15355 first_iocbq->iocb.ulpStatus =
15356 IOSTAT_FCP_RSP_ERROR;
15357 first_iocbq->iocb.un.ulpWord[4] =
15358 IOERR_NO_RESOURCES;
15359 }
15360 lpfc_in_buf_free(vport->phba, d_buf);
15361 continue;
15362 }
James Smart7851fe22011-07-22 18:36:52 -040015363 /* We need to get the size out of the right CQE */
15364 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
15365 len = bf_get(lpfc_rcqe_length,
15366 &hbq_buf->cq_event.cqe.rcqe_cmpl);
James Smart48a5a662013-07-15 18:32:28 -040015367 iocbq->context2 = d_buf;
15368 iocbq->context3 = NULL;
15369 iocbq->iocb.ulpBdeCount = 1;
15370 if (len > LPFC_DATA_BUF_SIZE)
15371 iocbq->iocb.un.cont64[0].tus.f.bdeSize =
15372 LPFC_DATA_BUF_SIZE;
15373 else
15374 iocbq->iocb.un.cont64[0].tus.f.bdeSize = len;
15375
James Smart7851fe22011-07-22 18:36:52 -040015376 tot_len += len;
15377 iocbq->iocb.unsli3.rcvsli3.acc_len = tot_len;
15378
James Smart4f774512009-05-22 14:52:35 -040015379 iocbq->iocb.un.rcvels.remoteID = sid;
15380 list_add_tail(&iocbq->list, &first_iocbq->list);
15381 }
15382 }
15383 return first_iocbq;
15384}
15385
James Smart6669f9b2009-10-02 15:16:45 -040015386static void
15387lpfc_sli4_send_seq_to_ulp(struct lpfc_vport *vport,
15388 struct hbq_dmabuf *seq_dmabuf)
15389{
15390 struct fc_frame_header *fc_hdr;
15391 struct lpfc_iocbq *iocbq, *curr_iocb, *next_iocb;
15392 struct lpfc_hba *phba = vport->phba;
15393
15394 fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
15395 iocbq = lpfc_prep_seq(vport, seq_dmabuf);
15396 if (!iocbq) {
15397 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15398 "2707 Ring %d handler: Failed to allocate "
15399 "iocb Rctl x%x Type x%x received\n",
15400 LPFC_ELS_RING,
15401 fc_hdr->fh_r_ctl, fc_hdr->fh_type);
15402 return;
15403 }
15404 if (!lpfc_complete_unsol_iocb(phba,
15405 &phba->sli.ring[LPFC_ELS_RING],
15406 iocbq, fc_hdr->fh_r_ctl,
15407 fc_hdr->fh_type))
James Smart6d368e52011-05-24 11:44:12 -040015408 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart6669f9b2009-10-02 15:16:45 -040015409 "2540 Ring %d handler: unexpected Rctl "
15410 "x%x Type x%x received\n",
15411 LPFC_ELS_RING,
15412 fc_hdr->fh_r_ctl, fc_hdr->fh_type);
15413
15414 /* Free iocb created in lpfc_prep_seq */
15415 list_for_each_entry_safe(curr_iocb, next_iocb,
15416 &iocbq->list, list) {
15417 list_del_init(&curr_iocb->list);
15418 lpfc_sli_release_iocbq(phba, curr_iocb);
15419 }
15420 lpfc_sli_release_iocbq(phba, iocbq);
15421}
15422
James Smart4f774512009-05-22 14:52:35 -040015423/**
15424 * lpfc_sli4_handle_received_buffer - Handle received buffers from firmware
15425 * @phba: Pointer to HBA context object.
15426 *
15427 * This function is called with no lock held. This function processes all
15428 * the received buffers and gives it to upper layers when a received buffer
15429 * indicates that it is the final frame in the sequence. The interrupt
15430 * service routine processes received buffers at interrupt contexts and adds
15431 * received dma buffers to the rb_pend_list queue and signals the worker thread.
15432 * Worker thread calls lpfc_sli4_handle_received_buffer, which will call the
15433 * appropriate receive function when the final frame in a sequence is received.
15434 **/
James Smart4d9ab992009-10-02 15:16:39 -040015435void
15436lpfc_sli4_handle_received_buffer(struct lpfc_hba *phba,
15437 struct hbq_dmabuf *dmabuf)
James Smart4f774512009-05-22 14:52:35 -040015438{
James Smart4d9ab992009-10-02 15:16:39 -040015439 struct hbq_dmabuf *seq_dmabuf;
James Smart4f774512009-05-22 14:52:35 -040015440 struct fc_frame_header *fc_hdr;
15441 struct lpfc_vport *vport;
15442 uint32_t fcfi;
James Smart939723a2012-05-09 21:19:03 -040015443 uint32_t did;
James Smart4f774512009-05-22 14:52:35 -040015444
James Smart4f774512009-05-22 14:52:35 -040015445 /* Process each received buffer */
James Smart4d9ab992009-10-02 15:16:39 -040015446 fc_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
15447 /* check to see if this a valid type of frame */
15448 if (lpfc_fc_frame_check(phba, fc_hdr)) {
15449 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15450 return;
15451 }
James Smart7851fe22011-07-22 18:36:52 -040015452 if ((bf_get(lpfc_cqe_code,
15453 &dmabuf->cq_event.cqe.rcqe_cmpl) == CQE_CODE_RECEIVE_V1))
15454 fcfi = bf_get(lpfc_rcqe_fcf_id_v1,
15455 &dmabuf->cq_event.cqe.rcqe_cmpl);
15456 else
15457 fcfi = bf_get(lpfc_rcqe_fcf_id,
15458 &dmabuf->cq_event.cqe.rcqe_cmpl);
James Smart939723a2012-05-09 21:19:03 -040015459
James Smart4d9ab992009-10-02 15:16:39 -040015460 vport = lpfc_fc_frame_to_vport(phba, fc_hdr, fcfi);
James Smart939723a2012-05-09 21:19:03 -040015461 if (!vport) {
James Smart4d9ab992009-10-02 15:16:39 -040015462 /* throw out the frame */
15463 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15464 return;
15465 }
James Smart939723a2012-05-09 21:19:03 -040015466
15467 /* d_id this frame is directed to */
15468 did = sli4_did_from_fc_hdr(fc_hdr);
15469
15470 /* vport is registered unless we rcv a FLOGI directed to Fabric_DID */
15471 if (!(vport->vpi_state & LPFC_VPI_REGISTERED) &&
15472 (did != Fabric_DID)) {
15473 /*
15474 * Throw out the frame if we are not pt2pt.
15475 * The pt2pt protocol allows for discovery frames
15476 * to be received without a registered VPI.
15477 */
15478 if (!(vport->fc_flag & FC_PT2PT) ||
15479 (phba->link_state == LPFC_HBA_READY)) {
15480 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15481 return;
15482 }
15483 }
15484
James Smart6669f9b2009-10-02 15:16:45 -040015485 /* Handle the basic abort sequence (BA_ABTS) event */
15486 if (fc_hdr->fh_r_ctl == FC_RCTL_BA_ABTS) {
15487 lpfc_sli4_handle_unsol_abort(vport, dmabuf);
15488 return;
15489 }
15490
James Smart4d9ab992009-10-02 15:16:39 -040015491 /* Link this frame */
15492 seq_dmabuf = lpfc_fc_frame_add(vport, dmabuf);
15493 if (!seq_dmabuf) {
15494 /* unable to add frame to vport - throw it out */
15495 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15496 return;
15497 }
15498 /* If not last frame in sequence continue processing frames. */
James Smartdef9c7a2009-12-21 17:02:28 -050015499 if (!lpfc_seq_complete(seq_dmabuf))
James Smart4d9ab992009-10-02 15:16:39 -040015500 return;
James Smartdef9c7a2009-12-21 17:02:28 -050015501
James Smart6669f9b2009-10-02 15:16:45 -040015502 /* Send the complete sequence to the upper layer protocol */
15503 lpfc_sli4_send_seq_to_ulp(vport, seq_dmabuf);
James Smart4f774512009-05-22 14:52:35 -040015504}
James Smart6fb120a2009-05-22 14:52:59 -040015505
15506/**
15507 * lpfc_sli4_post_all_rpi_hdrs - Post the rpi header memory region to the port
15508 * @phba: pointer to lpfc hba data structure.
15509 *
15510 * This routine is invoked to post rpi header templates to the
15511 * HBA consistent with the SLI-4 interface spec. This routine
James Smart49198b32010-04-06 15:04:33 -040015512 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
15513 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
James Smart6fb120a2009-05-22 14:52:59 -040015514 *
15515 * This routine does not require any locks. It's usage is expected
15516 * to be driver load or reset recovery when the driver is
15517 * sequential.
15518 *
15519 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020015520 * 0 - successful
James Smartd439d282010-09-29 11:18:45 -040015521 * -EIO - The mailbox failed to complete successfully.
James Smart6fb120a2009-05-22 14:52:59 -040015522 * When this error occurs, the driver is not guaranteed
15523 * to have any rpi regions posted to the device and
15524 * must either attempt to repost the regions or take a
15525 * fatal error.
15526 **/
15527int
15528lpfc_sli4_post_all_rpi_hdrs(struct lpfc_hba *phba)
15529{
15530 struct lpfc_rpi_hdr *rpi_page;
15531 uint32_t rc = 0;
James Smart6d368e52011-05-24 11:44:12 -040015532 uint16_t lrpi = 0;
James Smart6fb120a2009-05-22 14:52:59 -040015533
James Smart6d368e52011-05-24 11:44:12 -040015534 /* SLI4 ports that support extents do not require RPI headers. */
15535 if (!phba->sli4_hba.rpi_hdrs_in_use)
15536 goto exit;
15537 if (phba->sli4_hba.extents_in_use)
15538 return -EIO;
15539
James Smart6fb120a2009-05-22 14:52:59 -040015540 list_for_each_entry(rpi_page, &phba->sli4_hba.lpfc_rpi_hdr_list, list) {
James Smart6d368e52011-05-24 11:44:12 -040015541 /*
15542 * Assign the rpi headers a physical rpi only if the driver
15543 * has not initialized those resources. A port reset only
15544 * needs the headers posted.
15545 */
15546 if (bf_get(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags) !=
15547 LPFC_RPI_RSRC_RDY)
15548 rpi_page->start_rpi = phba->sli4_hba.rpi_ids[lrpi];
15549
James Smart6fb120a2009-05-22 14:52:59 -040015550 rc = lpfc_sli4_post_rpi_hdr(phba, rpi_page);
15551 if (rc != MBX_SUCCESS) {
15552 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15553 "2008 Error %d posting all rpi "
15554 "headers\n", rc);
15555 rc = -EIO;
15556 break;
15557 }
15558 }
15559
James Smart6d368e52011-05-24 11:44:12 -040015560 exit:
15561 bf_set(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags,
15562 LPFC_RPI_RSRC_RDY);
James Smart6fb120a2009-05-22 14:52:59 -040015563 return rc;
15564}
15565
15566/**
15567 * lpfc_sli4_post_rpi_hdr - Post an rpi header memory region to the port
15568 * @phba: pointer to lpfc hba data structure.
15569 * @rpi_page: pointer to the rpi memory region.
15570 *
15571 * This routine is invoked to post a single rpi header to the
15572 * HBA consistent with the SLI-4 interface spec. This memory region
15573 * maps up to 64 rpi context regions.
15574 *
15575 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020015576 * 0 - successful
James Smartd439d282010-09-29 11:18:45 -040015577 * -ENOMEM - No available memory
15578 * -EIO - The mailbox failed to complete successfully.
James Smart6fb120a2009-05-22 14:52:59 -040015579 **/
15580int
15581lpfc_sli4_post_rpi_hdr(struct lpfc_hba *phba, struct lpfc_rpi_hdr *rpi_page)
15582{
15583 LPFC_MBOXQ_t *mboxq;
15584 struct lpfc_mbx_post_hdr_tmpl *hdr_tmpl;
15585 uint32_t rc = 0;
James Smart6fb120a2009-05-22 14:52:59 -040015586 uint32_t shdr_status, shdr_add_status;
15587 union lpfc_sli4_cfg_shdr *shdr;
15588
James Smart6d368e52011-05-24 11:44:12 -040015589 /* SLI4 ports that support extents do not require RPI headers. */
15590 if (!phba->sli4_hba.rpi_hdrs_in_use)
15591 return rc;
15592 if (phba->sli4_hba.extents_in_use)
15593 return -EIO;
15594
James Smart6fb120a2009-05-22 14:52:59 -040015595 /* The port is notified of the header region via a mailbox command. */
15596 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15597 if (!mboxq) {
15598 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15599 "2001 Unable to allocate memory for issuing "
15600 "SLI_CONFIG_SPECIAL mailbox command\n");
15601 return -ENOMEM;
15602 }
15603
15604 /* Post all rpi memory regions to the port. */
15605 hdr_tmpl = &mboxq->u.mqe.un.hdr_tmpl;
James Smart6fb120a2009-05-22 14:52:59 -040015606 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
15607 LPFC_MBOX_OPCODE_FCOE_POST_HDR_TEMPLATE,
15608 sizeof(struct lpfc_mbx_post_hdr_tmpl) -
James Smartfedd3b72011-02-16 12:39:24 -050015609 sizeof(struct lpfc_sli4_cfg_mhdr),
15610 LPFC_SLI4_MBX_EMBED);
James Smart6d368e52011-05-24 11:44:12 -040015611
15612
15613 /* Post the physical rpi to the port for this rpi header. */
James Smart6fb120a2009-05-22 14:52:59 -040015614 bf_set(lpfc_mbx_post_hdr_tmpl_rpi_offset, hdr_tmpl,
15615 rpi_page->start_rpi);
James Smart6d368e52011-05-24 11:44:12 -040015616 bf_set(lpfc_mbx_post_hdr_tmpl_page_cnt,
15617 hdr_tmpl, rpi_page->page_count);
15618
James Smart6fb120a2009-05-22 14:52:59 -040015619 hdr_tmpl->rpi_paddr_lo = putPaddrLow(rpi_page->dmabuf->phys);
15620 hdr_tmpl->rpi_paddr_hi = putPaddrHigh(rpi_page->dmabuf->phys);
James Smartf1126682009-06-10 17:22:44 -040015621 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
James Smart6fb120a2009-05-22 14:52:59 -040015622 shdr = (union lpfc_sli4_cfg_shdr *) &hdr_tmpl->header.cfg_shdr;
15623 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
15624 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
15625 if (rc != MBX_TIMEOUT)
15626 mempool_free(mboxq, phba->mbox_mem_pool);
15627 if (shdr_status || shdr_add_status || rc) {
15628 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15629 "2514 POST_RPI_HDR mailbox failed with "
15630 "status x%x add_status x%x, mbx status x%x\n",
15631 shdr_status, shdr_add_status, rc);
15632 rc = -ENXIO;
15633 }
15634 return rc;
15635}
15636
15637/**
15638 * lpfc_sli4_alloc_rpi - Get an available rpi in the device's range
15639 * @phba: pointer to lpfc hba data structure.
15640 *
15641 * This routine is invoked to post rpi header templates to the
15642 * HBA consistent with the SLI-4 interface spec. This routine
James Smart49198b32010-04-06 15:04:33 -040015643 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
15644 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
James Smart6fb120a2009-05-22 14:52:59 -040015645 *
15646 * Returns
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020015647 * A nonzero rpi defined as rpi_base <= rpi < max_rpi if successful
James Smart6fb120a2009-05-22 14:52:59 -040015648 * LPFC_RPI_ALLOC_ERROR if no rpis are available.
15649 **/
15650int
15651lpfc_sli4_alloc_rpi(struct lpfc_hba *phba)
15652{
James Smart6d368e52011-05-24 11:44:12 -040015653 unsigned long rpi;
15654 uint16_t max_rpi, rpi_limit;
15655 uint16_t rpi_remaining, lrpi = 0;
James Smart6fb120a2009-05-22 14:52:59 -040015656 struct lpfc_rpi_hdr *rpi_hdr;
James Smart4902b382013-10-10 12:20:35 -040015657 unsigned long iflag;
James Smart6fb120a2009-05-22 14:52:59 -040015658
15659 max_rpi = phba->sli4_hba.max_cfg_param.max_rpi;
James Smart6fb120a2009-05-22 14:52:59 -040015660 rpi_limit = phba->sli4_hba.next_rpi;
15661
15662 /*
James Smart6d368e52011-05-24 11:44:12 -040015663 * Fetch the next logical rpi. Because this index is logical,
15664 * the driver starts at 0 each time.
James Smart6fb120a2009-05-22 14:52:59 -040015665 */
James Smart4902b382013-10-10 12:20:35 -040015666 spin_lock_irqsave(&phba->hbalock, iflag);
James Smart6d368e52011-05-24 11:44:12 -040015667 rpi = find_next_zero_bit(phba->sli4_hba.rpi_bmask, rpi_limit, 0);
15668 if (rpi >= rpi_limit)
James Smart6fb120a2009-05-22 14:52:59 -040015669 rpi = LPFC_RPI_ALLOC_ERROR;
15670 else {
15671 set_bit(rpi, phba->sli4_hba.rpi_bmask);
15672 phba->sli4_hba.max_cfg_param.rpi_used++;
15673 phba->sli4_hba.rpi_count++;
15674 }
15675
15676 /*
15677 * Don't try to allocate more rpi header regions if the device limit
James Smart6d368e52011-05-24 11:44:12 -040015678 * has been exhausted.
James Smart6fb120a2009-05-22 14:52:59 -040015679 */
15680 if ((rpi == LPFC_RPI_ALLOC_ERROR) &&
15681 (phba->sli4_hba.rpi_count >= max_rpi)) {
James Smart4902b382013-10-10 12:20:35 -040015682 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart6fb120a2009-05-22 14:52:59 -040015683 return rpi;
15684 }
15685
15686 /*
James Smart6d368e52011-05-24 11:44:12 -040015687 * RPI header postings are not required for SLI4 ports capable of
15688 * extents.
15689 */
15690 if (!phba->sli4_hba.rpi_hdrs_in_use) {
James Smart4902b382013-10-10 12:20:35 -040015691 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart6d368e52011-05-24 11:44:12 -040015692 return rpi;
15693 }
15694
15695 /*
James Smart6fb120a2009-05-22 14:52:59 -040015696 * If the driver is running low on rpi resources, allocate another
15697 * page now. Note that the next_rpi value is used because
15698 * it represents how many are actually in use whereas max_rpi notes
15699 * how many are supported max by the device.
15700 */
James Smart6d368e52011-05-24 11:44:12 -040015701 rpi_remaining = phba->sli4_hba.next_rpi - phba->sli4_hba.rpi_count;
James Smart4902b382013-10-10 12:20:35 -040015702 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart6fb120a2009-05-22 14:52:59 -040015703 if (rpi_remaining < LPFC_RPI_LOW_WATER_MARK) {
15704 rpi_hdr = lpfc_sli4_create_rpi_hdr(phba);
15705 if (!rpi_hdr) {
15706 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15707 "2002 Error Could not grow rpi "
15708 "count\n");
15709 } else {
James Smart6d368e52011-05-24 11:44:12 -040015710 lrpi = rpi_hdr->start_rpi;
15711 rpi_hdr->start_rpi = phba->sli4_hba.rpi_ids[lrpi];
James Smart6fb120a2009-05-22 14:52:59 -040015712 lpfc_sli4_post_rpi_hdr(phba, rpi_hdr);
15713 }
15714 }
15715
15716 return rpi;
15717}
15718
15719/**
15720 * lpfc_sli4_free_rpi - Release an rpi for reuse.
15721 * @phba: pointer to lpfc hba data structure.
15722 *
15723 * This routine is invoked to release an rpi to the pool of
15724 * available rpis maintained by the driver.
15725 **/
Rashika Kheria5d8b8162014-09-03 12:55:04 -040015726static void
James Smartd7c47992010-06-08 18:31:54 -040015727__lpfc_sli4_free_rpi(struct lpfc_hba *phba, int rpi)
15728{
15729 if (test_and_clear_bit(rpi, phba->sli4_hba.rpi_bmask)) {
15730 phba->sli4_hba.rpi_count--;
15731 phba->sli4_hba.max_cfg_param.rpi_used--;
15732 }
15733}
15734
15735/**
15736 * lpfc_sli4_free_rpi - Release an rpi for reuse.
15737 * @phba: pointer to lpfc hba data structure.
15738 *
15739 * This routine is invoked to release an rpi to the pool of
15740 * available rpis maintained by the driver.
15741 **/
15742void
James Smart6fb120a2009-05-22 14:52:59 -040015743lpfc_sli4_free_rpi(struct lpfc_hba *phba, int rpi)
15744{
15745 spin_lock_irq(&phba->hbalock);
James Smartd7c47992010-06-08 18:31:54 -040015746 __lpfc_sli4_free_rpi(phba, rpi);
James Smart6fb120a2009-05-22 14:52:59 -040015747 spin_unlock_irq(&phba->hbalock);
15748}
15749
15750/**
15751 * lpfc_sli4_remove_rpis - Remove the rpi bitmask region
15752 * @phba: pointer to lpfc hba data structure.
15753 *
15754 * This routine is invoked to remove the memory region that
15755 * provided rpi via a bitmask.
15756 **/
15757void
15758lpfc_sli4_remove_rpis(struct lpfc_hba *phba)
15759{
15760 kfree(phba->sli4_hba.rpi_bmask);
James Smart6d368e52011-05-24 11:44:12 -040015761 kfree(phba->sli4_hba.rpi_ids);
15762 bf_set(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
James Smart6fb120a2009-05-22 14:52:59 -040015763}
15764
15765/**
15766 * lpfc_sli4_resume_rpi - Remove the rpi bitmask region
15767 * @phba: pointer to lpfc hba data structure.
15768 *
15769 * This routine is invoked to remove the memory region that
15770 * provided rpi via a bitmask.
15771 **/
15772int
James Smart6b5151f2012-01-18 16:24:06 -050015773lpfc_sli4_resume_rpi(struct lpfc_nodelist *ndlp,
15774 void (*cmpl)(struct lpfc_hba *, LPFC_MBOXQ_t *), void *arg)
James Smart6fb120a2009-05-22 14:52:59 -040015775{
15776 LPFC_MBOXQ_t *mboxq;
15777 struct lpfc_hba *phba = ndlp->phba;
15778 int rc;
15779
15780 /* The port is notified of the header region via a mailbox command. */
15781 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15782 if (!mboxq)
15783 return -ENOMEM;
15784
15785 /* Post all rpi memory regions to the port. */
15786 lpfc_resume_rpi(mboxq, ndlp);
James Smart6b5151f2012-01-18 16:24:06 -050015787 if (cmpl) {
15788 mboxq->mbox_cmpl = cmpl;
15789 mboxq->context1 = arg;
15790 mboxq->context2 = ndlp;
James Smart72859902012-01-18 16:25:38 -050015791 } else
15792 mboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart6b5151f2012-01-18 16:24:06 -050015793 mboxq->vport = ndlp->vport;
James Smart6fb120a2009-05-22 14:52:59 -040015794 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
15795 if (rc == MBX_NOT_FINISHED) {
15796 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15797 "2010 Resume RPI Mailbox failed "
15798 "status %d, mbxStatus x%x\n", rc,
15799 bf_get(lpfc_mqe_status, &mboxq->u.mqe));
15800 mempool_free(mboxq, phba->mbox_mem_pool);
15801 return -EIO;
15802 }
15803 return 0;
15804}
15805
15806/**
15807 * lpfc_sli4_init_vpi - Initialize a vpi with the port
James Smart76a95d72010-11-20 23:11:48 -050015808 * @vport: Pointer to the vport for which the vpi is being initialized
James Smart6fb120a2009-05-22 14:52:59 -040015809 *
James Smart76a95d72010-11-20 23:11:48 -050015810 * This routine is invoked to activate a vpi with the port.
James Smart6fb120a2009-05-22 14:52:59 -040015811 *
15812 * Returns:
15813 * 0 success
15814 * -Evalue otherwise
15815 **/
15816int
James Smart76a95d72010-11-20 23:11:48 -050015817lpfc_sli4_init_vpi(struct lpfc_vport *vport)
James Smart6fb120a2009-05-22 14:52:59 -040015818{
15819 LPFC_MBOXQ_t *mboxq;
15820 int rc = 0;
James Smart6a9c52c2009-10-02 15:16:51 -040015821 int retval = MBX_SUCCESS;
James Smart6fb120a2009-05-22 14:52:59 -040015822 uint32_t mbox_tmo;
James Smart76a95d72010-11-20 23:11:48 -050015823 struct lpfc_hba *phba = vport->phba;
James Smart6fb120a2009-05-22 14:52:59 -040015824 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15825 if (!mboxq)
15826 return -ENOMEM;
James Smart76a95d72010-11-20 23:11:48 -050015827 lpfc_init_vpi(phba, mboxq, vport->vpi);
James Smarta183a152011-10-10 21:32:43 -040015828 mbox_tmo = lpfc_mbox_tmo_val(phba, mboxq);
James Smart6fb120a2009-05-22 14:52:59 -040015829 rc = lpfc_sli_issue_mbox_wait(phba, mboxq, mbox_tmo);
James Smart6fb120a2009-05-22 14:52:59 -040015830 if (rc != MBX_SUCCESS) {
James Smart76a95d72010-11-20 23:11:48 -050015831 lpfc_printf_vlog(vport, KERN_ERR, LOG_SLI,
James Smart6fb120a2009-05-22 14:52:59 -040015832 "2022 INIT VPI Mailbox failed "
15833 "status %d, mbxStatus x%x\n", rc,
15834 bf_get(lpfc_mqe_status, &mboxq->u.mqe));
James Smart6a9c52c2009-10-02 15:16:51 -040015835 retval = -EIO;
James Smart6fb120a2009-05-22 14:52:59 -040015836 }
James Smart6a9c52c2009-10-02 15:16:51 -040015837 if (rc != MBX_TIMEOUT)
James Smart76a95d72010-11-20 23:11:48 -050015838 mempool_free(mboxq, vport->phba->mbox_mem_pool);
James Smart6a9c52c2009-10-02 15:16:51 -040015839
15840 return retval;
James Smart6fb120a2009-05-22 14:52:59 -040015841}
15842
15843/**
15844 * lpfc_mbx_cmpl_add_fcf_record - add fcf mbox completion handler.
15845 * @phba: pointer to lpfc hba data structure.
15846 * @mboxq: Pointer to mailbox object.
15847 *
15848 * This routine is invoked to manually add a single FCF record. The caller
15849 * must pass a completely initialized FCF_Record. This routine takes
15850 * care of the nonembedded mailbox operations.
15851 **/
15852static void
15853lpfc_mbx_cmpl_add_fcf_record(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
15854{
15855 void *virt_addr;
15856 union lpfc_sli4_cfg_shdr *shdr;
15857 uint32_t shdr_status, shdr_add_status;
15858
15859 virt_addr = mboxq->sge_array->addr[0];
15860 /* The IOCTL status is embedded in the mailbox subheader. */
15861 shdr = (union lpfc_sli4_cfg_shdr *) virt_addr;
15862 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
15863 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
15864
15865 if ((shdr_status || shdr_add_status) &&
15866 (shdr_status != STATUS_FCF_IN_USE))
15867 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15868 "2558 ADD_FCF_RECORD mailbox failed with "
15869 "status x%x add_status x%x\n",
15870 shdr_status, shdr_add_status);
15871
15872 lpfc_sli4_mbox_cmd_free(phba, mboxq);
15873}
15874
15875/**
15876 * lpfc_sli4_add_fcf_record - Manually add an FCF Record.
15877 * @phba: pointer to lpfc hba data structure.
15878 * @fcf_record: pointer to the initialized fcf record to add.
15879 *
15880 * This routine is invoked to manually add a single FCF record. The caller
15881 * must pass a completely initialized FCF_Record. This routine takes
15882 * care of the nonembedded mailbox operations.
15883 **/
15884int
15885lpfc_sli4_add_fcf_record(struct lpfc_hba *phba, struct fcf_record *fcf_record)
15886{
15887 int rc = 0;
15888 LPFC_MBOXQ_t *mboxq;
15889 uint8_t *bytep;
15890 void *virt_addr;
15891 dma_addr_t phys_addr;
15892 struct lpfc_mbx_sge sge;
15893 uint32_t alloc_len, req_len;
15894 uint32_t fcfindex;
15895
15896 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15897 if (!mboxq) {
15898 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15899 "2009 Failed to allocate mbox for ADD_FCF cmd\n");
15900 return -ENOMEM;
15901 }
15902
15903 req_len = sizeof(struct fcf_record) + sizeof(union lpfc_sli4_cfg_shdr) +
15904 sizeof(uint32_t);
15905
15906 /* Allocate DMA memory and set up the non-embedded mailbox command */
15907 alloc_len = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
15908 LPFC_MBOX_OPCODE_FCOE_ADD_FCF,
15909 req_len, LPFC_SLI4_MBX_NEMBED);
15910 if (alloc_len < req_len) {
15911 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15912 "2523 Allocated DMA memory size (x%x) is "
15913 "less than the requested DMA memory "
15914 "size (x%x)\n", alloc_len, req_len);
15915 lpfc_sli4_mbox_cmd_free(phba, mboxq);
15916 return -ENOMEM;
15917 }
15918
15919 /*
15920 * Get the first SGE entry from the non-embedded DMA memory. This
15921 * routine only uses a single SGE.
15922 */
15923 lpfc_sli4_mbx_sge_get(mboxq, 0, &sge);
15924 phys_addr = getPaddr(sge.pa_hi, sge.pa_lo);
James Smart6fb120a2009-05-22 14:52:59 -040015925 virt_addr = mboxq->sge_array->addr[0];
15926 /*
15927 * Configure the FCF record for FCFI 0. This is the driver's
15928 * hardcoded default and gets used in nonFIP mode.
15929 */
15930 fcfindex = bf_get(lpfc_fcf_record_fcf_index, fcf_record);
15931 bytep = virt_addr + sizeof(union lpfc_sli4_cfg_shdr);
15932 lpfc_sli_pcimem_bcopy(&fcfindex, bytep, sizeof(uint32_t));
15933
15934 /*
15935 * Copy the fcf_index and the FCF Record Data. The data starts after
15936 * the FCoE header plus word10. The data copy needs to be endian
15937 * correct.
15938 */
15939 bytep += sizeof(uint32_t);
15940 lpfc_sli_pcimem_bcopy(fcf_record, bytep, sizeof(struct fcf_record));
15941 mboxq->vport = phba->pport;
15942 mboxq->mbox_cmpl = lpfc_mbx_cmpl_add_fcf_record;
15943 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
15944 if (rc == MBX_NOT_FINISHED) {
15945 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15946 "2515 ADD_FCF_RECORD mailbox failed with "
15947 "status 0x%x\n", rc);
15948 lpfc_sli4_mbox_cmd_free(phba, mboxq);
15949 rc = -EIO;
15950 } else
15951 rc = 0;
15952
15953 return rc;
15954}
15955
15956/**
15957 * lpfc_sli4_build_dflt_fcf_record - Build the driver's default FCF Record.
15958 * @phba: pointer to lpfc hba data structure.
15959 * @fcf_record: pointer to the fcf record to write the default data.
15960 * @fcf_index: FCF table entry index.
15961 *
15962 * This routine is invoked to build the driver's default FCF record. The
15963 * values used are hardcoded. This routine handles memory initialization.
15964 *
15965 **/
15966void
15967lpfc_sli4_build_dflt_fcf_record(struct lpfc_hba *phba,
15968 struct fcf_record *fcf_record,
15969 uint16_t fcf_index)
15970{
15971 memset(fcf_record, 0, sizeof(struct fcf_record));
15972 fcf_record->max_rcv_size = LPFC_FCOE_MAX_RCV_SIZE;
15973 fcf_record->fka_adv_period = LPFC_FCOE_FKA_ADV_PER;
15974 fcf_record->fip_priority = LPFC_FCOE_FIP_PRIORITY;
15975 bf_set(lpfc_fcf_record_mac_0, fcf_record, phba->fc_map[0]);
15976 bf_set(lpfc_fcf_record_mac_1, fcf_record, phba->fc_map[1]);
15977 bf_set(lpfc_fcf_record_mac_2, fcf_record, phba->fc_map[2]);
15978 bf_set(lpfc_fcf_record_mac_3, fcf_record, LPFC_FCOE_FCF_MAC3);
15979 bf_set(lpfc_fcf_record_mac_4, fcf_record, LPFC_FCOE_FCF_MAC4);
15980 bf_set(lpfc_fcf_record_mac_5, fcf_record, LPFC_FCOE_FCF_MAC5);
15981 bf_set(lpfc_fcf_record_fc_map_0, fcf_record, phba->fc_map[0]);
15982 bf_set(lpfc_fcf_record_fc_map_1, fcf_record, phba->fc_map[1]);
15983 bf_set(lpfc_fcf_record_fc_map_2, fcf_record, phba->fc_map[2]);
15984 bf_set(lpfc_fcf_record_fcf_valid, fcf_record, 1);
James Smart0c287582009-06-10 17:22:56 -040015985 bf_set(lpfc_fcf_record_fcf_avail, fcf_record, 1);
James Smart6fb120a2009-05-22 14:52:59 -040015986 bf_set(lpfc_fcf_record_fcf_index, fcf_record, fcf_index);
15987 bf_set(lpfc_fcf_record_mac_addr_prov, fcf_record,
15988 LPFC_FCF_FPMA | LPFC_FCF_SPMA);
15989 /* Set the VLAN bit map */
15990 if (phba->valid_vlan) {
15991 fcf_record->vlan_bitmap[phba->vlan_id / 8]
15992 = 1 << (phba->vlan_id % 8);
15993 }
15994}
15995
15996/**
James Smart0c9ab6f2010-02-26 14:15:57 -050015997 * lpfc_sli4_fcf_scan_read_fcf_rec - Read hba fcf record for fcf scan.
James Smart6fb120a2009-05-22 14:52:59 -040015998 * @phba: pointer to lpfc hba data structure.
15999 * @fcf_index: FCF table entry offset.
16000 *
James Smart0c9ab6f2010-02-26 14:15:57 -050016001 * This routine is invoked to scan the entire FCF table by reading FCF
16002 * record and processing it one at a time starting from the @fcf_index
16003 * for initial FCF discovery or fast FCF failover rediscovery.
16004 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030016005 * Return 0 if the mailbox command is submitted successfully, none 0
James Smart0c9ab6f2010-02-26 14:15:57 -050016006 * otherwise.
James Smart6fb120a2009-05-22 14:52:59 -040016007 **/
16008int
James Smart0c9ab6f2010-02-26 14:15:57 -050016009lpfc_sli4_fcf_scan_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
James Smart6fb120a2009-05-22 14:52:59 -040016010{
16011 int rc = 0, error;
16012 LPFC_MBOXQ_t *mboxq;
James Smart6fb120a2009-05-22 14:52:59 -040016013
James Smart32b97932009-07-19 10:01:21 -040016014 phba->fcoe_eventtag_at_fcf_scan = phba->fcoe_eventtag;
James Smart80c17842012-03-01 22:35:45 -050016015 phba->fcoe_cvl_eventtag_attn = phba->fcoe_cvl_eventtag;
James Smart6fb120a2009-05-22 14:52:59 -040016016 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16017 if (!mboxq) {
16018 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16019 "2000 Failed to allocate mbox for "
16020 "READ_FCF cmd\n");
James Smart4d9ab992009-10-02 15:16:39 -040016021 error = -ENOMEM;
James Smart0c9ab6f2010-02-26 14:15:57 -050016022 goto fail_fcf_scan;
James Smart6fb120a2009-05-22 14:52:59 -040016023 }
James Smartecfd03c2010-02-12 14:41:27 -050016024 /* Construct the read FCF record mailbox command */
James Smart0c9ab6f2010-02-26 14:15:57 -050016025 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
James Smartecfd03c2010-02-12 14:41:27 -050016026 if (rc) {
16027 error = -EINVAL;
James Smart0c9ab6f2010-02-26 14:15:57 -050016028 goto fail_fcf_scan;
James Smart6fb120a2009-05-22 14:52:59 -040016029 }
James Smartecfd03c2010-02-12 14:41:27 -050016030 /* Issue the mailbox command asynchronously */
James Smart6fb120a2009-05-22 14:52:59 -040016031 mboxq->vport = phba->pport;
James Smart0c9ab6f2010-02-26 14:15:57 -050016032 mboxq->mbox_cmpl = lpfc_mbx_cmpl_fcf_scan_read_fcf_rec;
James Smarta93ff372010-10-22 11:06:08 -040016033
16034 spin_lock_irq(&phba->hbalock);
16035 phba->hba_flag |= FCF_TS_INPROG;
16036 spin_unlock_irq(&phba->hbalock);
16037
James Smart6fb120a2009-05-22 14:52:59 -040016038 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
James Smartecfd03c2010-02-12 14:41:27 -050016039 if (rc == MBX_NOT_FINISHED)
James Smart6fb120a2009-05-22 14:52:59 -040016040 error = -EIO;
James Smartecfd03c2010-02-12 14:41:27 -050016041 else {
James Smart38b92ef2010-08-04 16:11:39 -040016042 /* Reset eligible FCF count for new scan */
16043 if (fcf_index == LPFC_FCOE_FCF_GET_FIRST)
James Smart999d8132010-03-15 11:24:56 -040016044 phba->fcf.eligible_fcf_cnt = 0;
James Smart6fb120a2009-05-22 14:52:59 -040016045 error = 0;
James Smart32b97932009-07-19 10:01:21 -040016046 }
James Smart0c9ab6f2010-02-26 14:15:57 -050016047fail_fcf_scan:
James Smart4d9ab992009-10-02 15:16:39 -040016048 if (error) {
16049 if (mboxq)
16050 lpfc_sli4_mbox_cmd_free(phba, mboxq);
James Smarta93ff372010-10-22 11:06:08 -040016051 /* FCF scan failed, clear FCF_TS_INPROG flag */
James Smart4d9ab992009-10-02 15:16:39 -040016052 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -040016053 phba->hba_flag &= ~FCF_TS_INPROG;
James Smart4d9ab992009-10-02 15:16:39 -040016054 spin_unlock_irq(&phba->hbalock);
16055 }
James Smart6fb120a2009-05-22 14:52:59 -040016056 return error;
16057}
James Smarta0c87cb2009-07-19 10:01:10 -040016058
16059/**
James Smarta93ff372010-10-22 11:06:08 -040016060 * lpfc_sli4_fcf_rr_read_fcf_rec - Read hba fcf record for roundrobin fcf.
James Smart0c9ab6f2010-02-26 14:15:57 -050016061 * @phba: pointer to lpfc hba data structure.
16062 * @fcf_index: FCF table entry offset.
16063 *
16064 * This routine is invoked to read an FCF record indicated by @fcf_index
James Smarta93ff372010-10-22 11:06:08 -040016065 * and to use it for FLOGI roundrobin FCF failover.
James Smart0c9ab6f2010-02-26 14:15:57 -050016066 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030016067 * Return 0 if the mailbox command is submitted successfully, none 0
James Smart0c9ab6f2010-02-26 14:15:57 -050016068 * otherwise.
16069 **/
16070int
16071lpfc_sli4_fcf_rr_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
16072{
16073 int rc = 0, error;
16074 LPFC_MBOXQ_t *mboxq;
16075
16076 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16077 if (!mboxq) {
16078 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_INIT,
16079 "2763 Failed to allocate mbox for "
16080 "READ_FCF cmd\n");
16081 error = -ENOMEM;
16082 goto fail_fcf_read;
16083 }
16084 /* Construct the read FCF record mailbox command */
16085 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
16086 if (rc) {
16087 error = -EINVAL;
16088 goto fail_fcf_read;
16089 }
16090 /* Issue the mailbox command asynchronously */
16091 mboxq->vport = phba->pport;
16092 mboxq->mbox_cmpl = lpfc_mbx_cmpl_fcf_rr_read_fcf_rec;
16093 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
16094 if (rc == MBX_NOT_FINISHED)
16095 error = -EIO;
16096 else
16097 error = 0;
16098
16099fail_fcf_read:
16100 if (error && mboxq)
16101 lpfc_sli4_mbox_cmd_free(phba, mboxq);
16102 return error;
16103}
16104
16105/**
16106 * lpfc_sli4_read_fcf_rec - Read hba fcf record for update eligible fcf bmask.
16107 * @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 to
James Smarta93ff372010-10-22 11:06:08 -040016111 * determine whether it's eligible for FLOGI roundrobin failover list.
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_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 "2758 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_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/**
James Smart7d791df2011-07-22 18:37:52 -040016152 * lpfc_check_next_fcf_pri
16153 * phba pointer to the lpfc_hba struct for this port.
16154 * This routine is called from the lpfc_sli4_fcf_rr_next_index_get
16155 * routine when the rr_bmask is empty. The FCF indecies are put into the
16156 * rr_bmask based on their priority level. Starting from the highest priority
16157 * to the lowest. The most likely FCF candidate will be in the highest
16158 * priority group. When this routine is called it searches the fcf_pri list for
16159 * next lowest priority group and repopulates the rr_bmask with only those
16160 * fcf_indexes.
16161 * returns:
16162 * 1=success 0=failure
16163 **/
Rashika Kheria5d8b8162014-09-03 12:55:04 -040016164static int
James Smart7d791df2011-07-22 18:37:52 -040016165lpfc_check_next_fcf_pri_level(struct lpfc_hba *phba)
16166{
16167 uint16_t next_fcf_pri;
16168 uint16_t last_index;
16169 struct lpfc_fcf_pri *fcf_pri;
16170 int rc;
16171 int ret = 0;
16172
16173 last_index = find_first_bit(phba->fcf.fcf_rr_bmask,
16174 LPFC_SLI4_FCF_TBL_INDX_MAX);
16175 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
16176 "3060 Last IDX %d\n", last_index);
James Smart25626692013-03-01 16:36:54 -050016177
16178 /* Verify the priority list has 2 or more entries */
16179 spin_lock_irq(&phba->hbalock);
16180 if (list_empty(&phba->fcf.fcf_pri_list) ||
16181 list_is_singular(&phba->fcf.fcf_pri_list)) {
16182 spin_unlock_irq(&phba->hbalock);
James Smart7d791df2011-07-22 18:37:52 -040016183 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
16184 "3061 Last IDX %d\n", last_index);
16185 return 0; /* Empty rr list */
16186 }
James Smart25626692013-03-01 16:36:54 -050016187 spin_unlock_irq(&phba->hbalock);
16188
James Smart7d791df2011-07-22 18:37:52 -040016189 next_fcf_pri = 0;
16190 /*
16191 * Clear the rr_bmask and set all of the bits that are at this
16192 * priority.
16193 */
16194 memset(phba->fcf.fcf_rr_bmask, 0,
16195 sizeof(*phba->fcf.fcf_rr_bmask));
16196 spin_lock_irq(&phba->hbalock);
16197 list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
16198 if (fcf_pri->fcf_rec.flag & LPFC_FCF_FLOGI_FAILED)
16199 continue;
16200 /*
16201 * the 1st priority that has not FLOGI failed
16202 * will be the highest.
16203 */
16204 if (!next_fcf_pri)
16205 next_fcf_pri = fcf_pri->fcf_rec.priority;
16206 spin_unlock_irq(&phba->hbalock);
16207 if (fcf_pri->fcf_rec.priority == next_fcf_pri) {
16208 rc = lpfc_sli4_fcf_rr_index_set(phba,
16209 fcf_pri->fcf_rec.fcf_index);
16210 if (rc)
16211 return 0;
16212 }
16213 spin_lock_irq(&phba->hbalock);
16214 }
16215 /*
16216 * if next_fcf_pri was not set above and the list is not empty then
16217 * we have failed flogis on all of them. So reset flogi failed
Anatol Pomozov4907cb72012-09-01 10:31:09 -070016218 * and start at the beginning.
James Smart7d791df2011-07-22 18:37:52 -040016219 */
16220 if (!next_fcf_pri && !list_empty(&phba->fcf.fcf_pri_list)) {
16221 list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
16222 fcf_pri->fcf_rec.flag &= ~LPFC_FCF_FLOGI_FAILED;
16223 /*
16224 * the 1st priority that has not FLOGI failed
16225 * will be the highest.
16226 */
16227 if (!next_fcf_pri)
16228 next_fcf_pri = fcf_pri->fcf_rec.priority;
16229 spin_unlock_irq(&phba->hbalock);
16230 if (fcf_pri->fcf_rec.priority == next_fcf_pri) {
16231 rc = lpfc_sli4_fcf_rr_index_set(phba,
16232 fcf_pri->fcf_rec.fcf_index);
16233 if (rc)
16234 return 0;
16235 }
16236 spin_lock_irq(&phba->hbalock);
16237 }
16238 } else
16239 ret = 1;
16240 spin_unlock_irq(&phba->hbalock);
16241
16242 return ret;
16243}
16244/**
James Smart0c9ab6f2010-02-26 14:15:57 -050016245 * lpfc_sli4_fcf_rr_next_index_get - Get next eligible fcf record index
16246 * @phba: pointer to lpfc hba data structure.
16247 *
16248 * This routine is to get the next eligible FCF record index in a round
16249 * robin fashion. If the next eligible FCF record index equals to the
James Smarta93ff372010-10-22 11:06:08 -040016250 * initial roundrobin FCF record index, LPFC_FCOE_FCF_NEXT_NONE (0xFFFF)
James Smart0c9ab6f2010-02-26 14:15:57 -050016251 * shall be returned, otherwise, the next eligible FCF record's index
16252 * shall be returned.
16253 **/
16254uint16_t
16255lpfc_sli4_fcf_rr_next_index_get(struct lpfc_hba *phba)
16256{
16257 uint16_t next_fcf_index;
16258
James Smart421c6622013-01-03 15:44:16 -050016259initial_priority:
James Smart3804dc82010-07-14 15:31:37 -040016260 /* Search start from next bit of currently registered FCF index */
James Smart421c6622013-01-03 15:44:16 -050016261 next_fcf_index = phba->fcf.current_rec.fcf_indx;
16262
James Smart7d791df2011-07-22 18:37:52 -040016263next_priority:
James Smart421c6622013-01-03 15:44:16 -050016264 /* Determine the next fcf index to check */
16265 next_fcf_index = (next_fcf_index + 1) % LPFC_SLI4_FCF_TBL_INDX_MAX;
James Smart0c9ab6f2010-02-26 14:15:57 -050016266 next_fcf_index = find_next_bit(phba->fcf.fcf_rr_bmask,
16267 LPFC_SLI4_FCF_TBL_INDX_MAX,
James Smart3804dc82010-07-14 15:31:37 -040016268 next_fcf_index);
16269
James Smart0c9ab6f2010-02-26 14:15:57 -050016270 /* Wrap around condition on phba->fcf.fcf_rr_bmask */
James Smart7d791df2011-07-22 18:37:52 -040016271 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
16272 /*
16273 * If we have wrapped then we need to clear the bits that
16274 * have been tested so that we can detect when we should
16275 * change the priority level.
16276 */
James Smart0c9ab6f2010-02-26 14:15:57 -050016277 next_fcf_index = find_next_bit(phba->fcf.fcf_rr_bmask,
16278 LPFC_SLI4_FCF_TBL_INDX_MAX, 0);
James Smart7d791df2011-07-22 18:37:52 -040016279 }
16280
James Smart0c9ab6f2010-02-26 14:15:57 -050016281
James Smart3804dc82010-07-14 15:31:37 -040016282 /* Check roundrobin failover list empty condition */
James Smart7d791df2011-07-22 18:37:52 -040016283 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX ||
16284 next_fcf_index == phba->fcf.current_rec.fcf_indx) {
16285 /*
16286 * If next fcf index is not found check if there are lower
16287 * Priority level fcf's in the fcf_priority list.
16288 * Set up the rr_bmask with all of the avaiable fcf bits
16289 * at that level and continue the selection process.
16290 */
16291 if (lpfc_check_next_fcf_pri_level(phba))
James Smart421c6622013-01-03 15:44:16 -050016292 goto initial_priority;
James Smart3804dc82010-07-14 15:31:37 -040016293 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
16294 "2844 No roundrobin failover FCF available\n");
James Smart7d791df2011-07-22 18:37:52 -040016295 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX)
16296 return LPFC_FCOE_FCF_NEXT_NONE;
16297 else {
16298 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
16299 "3063 Only FCF available idx %d, flag %x\n",
16300 next_fcf_index,
16301 phba->fcf.fcf_pri[next_fcf_index].fcf_rec.flag);
16302 return next_fcf_index;
16303 }
James Smart3804dc82010-07-14 15:31:37 -040016304 }
16305
James Smart7d791df2011-07-22 18:37:52 -040016306 if (next_fcf_index < LPFC_SLI4_FCF_TBL_INDX_MAX &&
16307 phba->fcf.fcf_pri[next_fcf_index].fcf_rec.flag &
16308 LPFC_FCF_FLOGI_FAILED)
16309 goto next_priority;
16310
James Smart3804dc82010-07-14 15:31:37 -040016311 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040016312 "2845 Get next roundrobin failover FCF (x%x)\n",
16313 next_fcf_index);
16314
James Smart0c9ab6f2010-02-26 14:15:57 -050016315 return next_fcf_index;
16316}
16317
16318/**
16319 * lpfc_sli4_fcf_rr_index_set - Set bmask with eligible fcf record index
16320 * @phba: pointer to lpfc hba data structure.
16321 *
16322 * This routine sets the FCF record index in to the eligible bmask for
James Smarta93ff372010-10-22 11:06:08 -040016323 * roundrobin failover search. It checks to make sure that the index
James Smart0c9ab6f2010-02-26 14:15:57 -050016324 * does not go beyond the range of the driver allocated bmask dimension
16325 * before setting the bit.
16326 *
16327 * Returns 0 if the index bit successfully set, otherwise, it returns
16328 * -EINVAL.
16329 **/
16330int
16331lpfc_sli4_fcf_rr_index_set(struct lpfc_hba *phba, uint16_t fcf_index)
16332{
16333 if (fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
16334 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040016335 "2610 FCF (x%x) reached driver's book "
16336 "keeping dimension:x%x\n",
James Smart0c9ab6f2010-02-26 14:15:57 -050016337 fcf_index, LPFC_SLI4_FCF_TBL_INDX_MAX);
16338 return -EINVAL;
16339 }
16340 /* Set the eligible FCF record index bmask */
16341 set_bit(fcf_index, phba->fcf.fcf_rr_bmask);
16342
James Smart3804dc82010-07-14 15:31:37 -040016343 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040016344 "2790 Set FCF (x%x) to roundrobin FCF failover "
James Smart3804dc82010-07-14 15:31:37 -040016345 "bmask\n", fcf_index);
16346
James Smart0c9ab6f2010-02-26 14:15:57 -050016347 return 0;
16348}
16349
16350/**
James Smart3804dc82010-07-14 15:31:37 -040016351 * lpfc_sli4_fcf_rr_index_clear - Clear bmask from eligible fcf record index
James Smart0c9ab6f2010-02-26 14:15:57 -050016352 * @phba: pointer to lpfc hba data structure.
16353 *
16354 * This routine clears the FCF record index from the eligible bmask for
James Smarta93ff372010-10-22 11:06:08 -040016355 * roundrobin failover search. It checks to make sure that the index
James Smart0c9ab6f2010-02-26 14:15:57 -050016356 * does not go beyond the range of the driver allocated bmask dimension
16357 * before clearing the bit.
16358 **/
16359void
16360lpfc_sli4_fcf_rr_index_clear(struct lpfc_hba *phba, uint16_t fcf_index)
16361{
James Smart9a803a72013-09-06 12:17:56 -040016362 struct lpfc_fcf_pri *fcf_pri, *fcf_pri_next;
James Smart0c9ab6f2010-02-26 14:15:57 -050016363 if (fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
16364 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040016365 "2762 FCF (x%x) reached driver's book "
16366 "keeping dimension:x%x\n",
James Smart0c9ab6f2010-02-26 14:15:57 -050016367 fcf_index, LPFC_SLI4_FCF_TBL_INDX_MAX);
16368 return;
16369 }
16370 /* Clear the eligible FCF record index bmask */
James Smart7d791df2011-07-22 18:37:52 -040016371 spin_lock_irq(&phba->hbalock);
James Smart9a803a72013-09-06 12:17:56 -040016372 list_for_each_entry_safe(fcf_pri, fcf_pri_next, &phba->fcf.fcf_pri_list,
16373 list) {
James Smart7d791df2011-07-22 18:37:52 -040016374 if (fcf_pri->fcf_rec.fcf_index == fcf_index) {
16375 list_del_init(&fcf_pri->list);
16376 break;
16377 }
16378 }
16379 spin_unlock_irq(&phba->hbalock);
James Smart0c9ab6f2010-02-26 14:15:57 -050016380 clear_bit(fcf_index, phba->fcf.fcf_rr_bmask);
James Smart3804dc82010-07-14 15:31:37 -040016381
16382 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040016383 "2791 Clear FCF (x%x) from roundrobin failover "
James Smart3804dc82010-07-14 15:31:37 -040016384 "bmask\n", fcf_index);
James Smart0c9ab6f2010-02-26 14:15:57 -050016385}
16386
16387/**
James Smartecfd03c2010-02-12 14:41:27 -050016388 * lpfc_mbx_cmpl_redisc_fcf_table - completion routine for rediscover FCF table
16389 * @phba: pointer to lpfc hba data structure.
16390 *
16391 * This routine is the completion routine for the rediscover FCF table mailbox
16392 * command. If the mailbox command returned failure, it will try to stop the
16393 * FCF rediscover wait timer.
16394 **/
Rashika Kheria5d8b8162014-09-03 12:55:04 -040016395static void
James Smartecfd03c2010-02-12 14:41:27 -050016396lpfc_mbx_cmpl_redisc_fcf_table(struct lpfc_hba *phba, LPFC_MBOXQ_t *mbox)
16397{
16398 struct lpfc_mbx_redisc_fcf_tbl *redisc_fcf;
16399 uint32_t shdr_status, shdr_add_status;
16400
16401 redisc_fcf = &mbox->u.mqe.un.redisc_fcf_tbl;
16402
16403 shdr_status = bf_get(lpfc_mbox_hdr_status,
16404 &redisc_fcf->header.cfg_shdr.response);
16405 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status,
16406 &redisc_fcf->header.cfg_shdr.response);
16407 if (shdr_status || shdr_add_status) {
James Smart0c9ab6f2010-02-26 14:15:57 -050016408 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smartecfd03c2010-02-12 14:41:27 -050016409 "2746 Requesting for FCF rediscovery failed "
16410 "status x%x add_status x%x\n",
16411 shdr_status, shdr_add_status);
James Smart0c9ab6f2010-02-26 14:15:57 -050016412 if (phba->fcf.fcf_flag & FCF_ACVL_DISC) {
James Smartfc2b9892010-02-26 14:15:29 -050016413 spin_lock_irq(&phba->hbalock);
James Smart0c9ab6f2010-02-26 14:15:57 -050016414 phba->fcf.fcf_flag &= ~FCF_ACVL_DISC;
James Smartfc2b9892010-02-26 14:15:29 -050016415 spin_unlock_irq(&phba->hbalock);
16416 /*
16417 * CVL event triggered FCF rediscover request failed,
16418 * last resort to re-try current registered FCF entry.
16419 */
16420 lpfc_retry_pport_discovery(phba);
16421 } else {
16422 spin_lock_irq(&phba->hbalock);
James Smart0c9ab6f2010-02-26 14:15:57 -050016423 phba->fcf.fcf_flag &= ~FCF_DEAD_DISC;
James Smartfc2b9892010-02-26 14:15:29 -050016424 spin_unlock_irq(&phba->hbalock);
16425 /*
16426 * DEAD FCF event triggered FCF rediscover request
16427 * failed, last resort to fail over as a link down
16428 * to FCF registration.
16429 */
16430 lpfc_sli4_fcf_dead_failthrough(phba);
16431 }
James Smart0c9ab6f2010-02-26 14:15:57 -050016432 } else {
16433 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040016434 "2775 Start FCF rediscover quiescent timer\n");
James Smartecfd03c2010-02-12 14:41:27 -050016435 /*
16436 * Start FCF rediscovery wait timer for pending FCF
16437 * before rescan FCF record table.
16438 */
16439 lpfc_fcf_redisc_wait_start_timer(phba);
James Smart0c9ab6f2010-02-26 14:15:57 -050016440 }
James Smartecfd03c2010-02-12 14:41:27 -050016441
16442 mempool_free(mbox, phba->mbox_mem_pool);
16443}
16444
16445/**
James Smart3804dc82010-07-14 15:31:37 -040016446 * lpfc_sli4_redisc_fcf_table - Request to rediscover entire FCF table by port.
James Smartecfd03c2010-02-12 14:41:27 -050016447 * @phba: pointer to lpfc hba data structure.
16448 *
16449 * This routine is invoked to request for rediscovery of the entire FCF table
16450 * by the port.
16451 **/
16452int
16453lpfc_sli4_redisc_fcf_table(struct lpfc_hba *phba)
16454{
16455 LPFC_MBOXQ_t *mbox;
16456 struct lpfc_mbx_redisc_fcf_tbl *redisc_fcf;
16457 int rc, length;
16458
James Smart0c9ab6f2010-02-26 14:15:57 -050016459 /* Cancel retry delay timers to all vports before FCF rediscover */
16460 lpfc_cancel_all_vport_retry_delay_timer(phba);
16461
James Smartecfd03c2010-02-12 14:41:27 -050016462 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16463 if (!mbox) {
16464 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
16465 "2745 Failed to allocate mbox for "
16466 "requesting FCF rediscover.\n");
16467 return -ENOMEM;
16468 }
16469
16470 length = (sizeof(struct lpfc_mbx_redisc_fcf_tbl) -
16471 sizeof(struct lpfc_sli4_cfg_mhdr));
16472 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
16473 LPFC_MBOX_OPCODE_FCOE_REDISCOVER_FCF,
16474 length, LPFC_SLI4_MBX_EMBED);
16475
16476 redisc_fcf = &mbox->u.mqe.un.redisc_fcf_tbl;
16477 /* Set count to 0 for invalidating the entire FCF database */
16478 bf_set(lpfc_mbx_redisc_fcf_count, redisc_fcf, 0);
16479
16480 /* Issue the mailbox command asynchronously */
16481 mbox->vport = phba->pport;
16482 mbox->mbox_cmpl = lpfc_mbx_cmpl_redisc_fcf_table;
16483 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
16484
16485 if (rc == MBX_NOT_FINISHED) {
16486 mempool_free(mbox, phba->mbox_mem_pool);
16487 return -EIO;
16488 }
16489 return 0;
16490}
16491
16492/**
James Smartfc2b9892010-02-26 14:15:29 -050016493 * lpfc_sli4_fcf_dead_failthrough - Failthrough routine to fcf dead event
16494 * @phba: pointer to lpfc hba data structure.
16495 *
16496 * This function is the failover routine as a last resort to the FCF DEAD
16497 * event when driver failed to perform fast FCF failover.
16498 **/
16499void
16500lpfc_sli4_fcf_dead_failthrough(struct lpfc_hba *phba)
16501{
16502 uint32_t link_state;
16503
16504 /*
16505 * Last resort as FCF DEAD event failover will treat this as
16506 * a link down, but save the link state because we don't want
16507 * it to be changed to Link Down unless it is already down.
16508 */
16509 link_state = phba->link_state;
16510 lpfc_linkdown(phba);
16511 phba->link_state = link_state;
16512
16513 /* Unregister FCF if no devices connected to it */
16514 lpfc_unregister_unused_fcf(phba);
16515}
16516
16517/**
James Smart026abb82011-12-13 13:20:45 -050016518 * lpfc_sli_get_config_region23 - Get sli3 port region 23 data.
James Smarta0c87cb2009-07-19 10:01:10 -040016519 * @phba: pointer to lpfc hba data structure.
James Smart026abb82011-12-13 13:20:45 -050016520 * @rgn23_data: pointer to configure region 23 data.
James Smarta0c87cb2009-07-19 10:01:10 -040016521 *
James Smart026abb82011-12-13 13:20:45 -050016522 * This function gets SLI3 port configure region 23 data through memory dump
16523 * mailbox command. When it successfully retrieves data, the size of the data
16524 * will be returned, otherwise, 0 will be returned.
James Smarta0c87cb2009-07-19 10:01:10 -040016525 **/
James Smart026abb82011-12-13 13:20:45 -050016526static uint32_t
16527lpfc_sli_get_config_region23(struct lpfc_hba *phba, char *rgn23_data)
James Smarta0c87cb2009-07-19 10:01:10 -040016528{
16529 LPFC_MBOXQ_t *pmb = NULL;
16530 MAILBOX_t *mb;
James Smart026abb82011-12-13 13:20:45 -050016531 uint32_t offset = 0;
James Smarta0c87cb2009-07-19 10:01:10 -040016532 int rc;
16533
James Smart026abb82011-12-13 13:20:45 -050016534 if (!rgn23_data)
16535 return 0;
16536
James Smarta0c87cb2009-07-19 10:01:10 -040016537 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16538 if (!pmb) {
16539 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart026abb82011-12-13 13:20:45 -050016540 "2600 failed to allocate mailbox memory\n");
16541 return 0;
James Smarta0c87cb2009-07-19 10:01:10 -040016542 }
16543 mb = &pmb->u.mb;
16544
James Smarta0c87cb2009-07-19 10:01:10 -040016545 do {
16546 lpfc_dump_mem(phba, pmb, offset, DMP_REGION_23);
16547 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
16548
16549 if (rc != MBX_SUCCESS) {
16550 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smart026abb82011-12-13 13:20:45 -050016551 "2601 failed to read config "
16552 "region 23, rc 0x%x Status 0x%x\n",
16553 rc, mb->mbxStatus);
James Smarta0c87cb2009-07-19 10:01:10 -040016554 mb->un.varDmp.word_cnt = 0;
16555 }
16556 /*
16557 * dump mem may return a zero when finished or we got a
16558 * mailbox error, either way we are done.
16559 */
16560 if (mb->un.varDmp.word_cnt == 0)
16561 break;
16562 if (mb->un.varDmp.word_cnt > DMP_RGN23_SIZE - offset)
16563 mb->un.varDmp.word_cnt = DMP_RGN23_SIZE - offset;
16564
16565 lpfc_sli_pcimem_bcopy(((uint8_t *)mb) + DMP_RSP_OFFSET,
James Smart026abb82011-12-13 13:20:45 -050016566 rgn23_data + offset,
16567 mb->un.varDmp.word_cnt);
James Smarta0c87cb2009-07-19 10:01:10 -040016568 offset += mb->un.varDmp.word_cnt;
16569 } while (mb->un.varDmp.word_cnt && offset < DMP_RGN23_SIZE);
16570
James Smart026abb82011-12-13 13:20:45 -050016571 mempool_free(pmb, phba->mbox_mem_pool);
16572 return offset;
16573}
16574
16575/**
16576 * lpfc_sli4_get_config_region23 - Get sli4 port region 23 data.
16577 * @phba: pointer to lpfc hba data structure.
16578 * @rgn23_data: pointer to configure region 23 data.
16579 *
16580 * This function gets SLI4 port configure region 23 data through memory dump
16581 * mailbox command. When it successfully retrieves data, the size of the data
16582 * will be returned, otherwise, 0 will be returned.
16583 **/
16584static uint32_t
16585lpfc_sli4_get_config_region23(struct lpfc_hba *phba, char *rgn23_data)
16586{
16587 LPFC_MBOXQ_t *mboxq = NULL;
16588 struct lpfc_dmabuf *mp = NULL;
16589 struct lpfc_mqe *mqe;
16590 uint32_t data_length = 0;
16591 int rc;
16592
16593 if (!rgn23_data)
16594 return 0;
16595
16596 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16597 if (!mboxq) {
16598 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16599 "3105 failed to allocate mailbox memory\n");
16600 return 0;
16601 }
16602
16603 if (lpfc_sli4_dump_cfg_rg23(phba, mboxq))
16604 goto out;
16605 mqe = &mboxq->u.mqe;
16606 mp = (struct lpfc_dmabuf *) mboxq->context1;
16607 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
16608 if (rc)
16609 goto out;
16610 data_length = mqe->un.mb_words[5];
16611 if (data_length == 0)
16612 goto out;
16613 if (data_length > DMP_RGN23_SIZE) {
16614 data_length = 0;
16615 goto out;
16616 }
16617 lpfc_sli_pcimem_bcopy((char *)mp->virt, rgn23_data, data_length);
16618out:
16619 mempool_free(mboxq, phba->mbox_mem_pool);
16620 if (mp) {
16621 lpfc_mbuf_free(phba, mp->virt, mp->phys);
16622 kfree(mp);
16623 }
16624 return data_length;
16625}
16626
16627/**
16628 * lpfc_sli_read_link_ste - Read region 23 to decide if link is disabled.
16629 * @phba: pointer to lpfc hba data structure.
16630 *
16631 * This function read region 23 and parse TLV for port status to
16632 * decide if the user disaled the port. If the TLV indicates the
16633 * port is disabled, the hba_flag is set accordingly.
16634 **/
16635void
16636lpfc_sli_read_link_ste(struct lpfc_hba *phba)
16637{
16638 uint8_t *rgn23_data = NULL;
16639 uint32_t if_type, data_size, sub_tlv_len, tlv_offset;
16640 uint32_t offset = 0;
16641
16642 /* Get adapter Region 23 data */
16643 rgn23_data = kzalloc(DMP_RGN23_SIZE, GFP_KERNEL);
16644 if (!rgn23_data)
16645 goto out;
16646
16647 if (phba->sli_rev < LPFC_SLI_REV4)
16648 data_size = lpfc_sli_get_config_region23(phba, rgn23_data);
16649 else {
16650 if_type = bf_get(lpfc_sli_intf_if_type,
16651 &phba->sli4_hba.sli_intf);
16652 if (if_type == LPFC_SLI_INTF_IF_TYPE_0)
16653 goto out;
16654 data_size = lpfc_sli4_get_config_region23(phba, rgn23_data);
16655 }
James Smarta0c87cb2009-07-19 10:01:10 -040016656
16657 if (!data_size)
16658 goto out;
16659
16660 /* Check the region signature first */
16661 if (memcmp(&rgn23_data[offset], LPFC_REGION23_SIGNATURE, 4)) {
16662 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16663 "2619 Config region 23 has bad signature\n");
16664 goto out;
16665 }
16666 offset += 4;
16667
16668 /* Check the data structure version */
16669 if (rgn23_data[offset] != LPFC_REGION23_VERSION) {
16670 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16671 "2620 Config region 23 has bad version\n");
16672 goto out;
16673 }
16674 offset += 4;
16675
16676 /* Parse TLV entries in the region */
16677 while (offset < data_size) {
16678 if (rgn23_data[offset] == LPFC_REGION23_LAST_REC)
16679 break;
16680 /*
16681 * If the TLV is not driver specific TLV or driver id is
16682 * not linux driver id, skip the record.
16683 */
16684 if ((rgn23_data[offset] != DRIVER_SPECIFIC_TYPE) ||
16685 (rgn23_data[offset + 2] != LINUX_DRIVER_ID) ||
16686 (rgn23_data[offset + 3] != 0)) {
16687 offset += rgn23_data[offset + 1] * 4 + 4;
16688 continue;
16689 }
16690
16691 /* Driver found a driver specific TLV in the config region */
16692 sub_tlv_len = rgn23_data[offset + 1] * 4;
16693 offset += 4;
16694 tlv_offset = 0;
16695
16696 /*
16697 * Search for configured port state sub-TLV.
16698 */
16699 while ((offset < data_size) &&
16700 (tlv_offset < sub_tlv_len)) {
16701 if (rgn23_data[offset] == LPFC_REGION23_LAST_REC) {
16702 offset += 4;
16703 tlv_offset += 4;
16704 break;
16705 }
16706 if (rgn23_data[offset] != PORT_STE_TYPE) {
16707 offset += rgn23_data[offset + 1] * 4 + 4;
16708 tlv_offset += rgn23_data[offset + 1] * 4 + 4;
16709 continue;
16710 }
16711
16712 /* This HBA contains PORT_STE configured */
16713 if (!rgn23_data[offset + 2])
16714 phba->hba_flag |= LINK_DISABLED;
16715
16716 goto out;
16717 }
16718 }
James Smart026abb82011-12-13 13:20:45 -050016719
James Smarta0c87cb2009-07-19 10:01:10 -040016720out:
James Smarta0c87cb2009-07-19 10:01:10 -040016721 kfree(rgn23_data);
16722 return;
16723}
James Smart695a8142010-01-26 23:08:03 -050016724
16725/**
James Smart52d52442011-05-24 11:42:45 -040016726 * lpfc_wr_object - write an object to the firmware
16727 * @phba: HBA structure that indicates port to create a queue on.
16728 * @dmabuf_list: list of dmabufs to write to the port.
16729 * @size: the total byte value of the objects to write to the port.
16730 * @offset: the current offset to be used to start the transfer.
16731 *
16732 * This routine will create a wr_object mailbox command to send to the port.
16733 * the mailbox command will be constructed using the dma buffers described in
16734 * @dmabuf_list to create a list of BDEs. This routine will fill in as many
16735 * BDEs that the imbedded mailbox can support. The @offset variable will be
16736 * used to indicate the starting offset of the transfer and will also return
16737 * the offset after the write object mailbox has completed. @size is used to
16738 * determine the end of the object and whether the eof bit should be set.
16739 *
16740 * Return 0 is successful and offset will contain the the new offset to use
16741 * for the next write.
16742 * Return negative value for error cases.
16743 **/
16744int
16745lpfc_wr_object(struct lpfc_hba *phba, struct list_head *dmabuf_list,
16746 uint32_t size, uint32_t *offset)
16747{
16748 struct lpfc_mbx_wr_object *wr_object;
16749 LPFC_MBOXQ_t *mbox;
16750 int rc = 0, i = 0;
16751 uint32_t shdr_status, shdr_add_status;
16752 uint32_t mbox_tmo;
16753 union lpfc_sli4_cfg_shdr *shdr;
16754 struct lpfc_dmabuf *dmabuf;
16755 uint32_t written = 0;
16756
16757 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16758 if (!mbox)
16759 return -ENOMEM;
16760
16761 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
16762 LPFC_MBOX_OPCODE_WRITE_OBJECT,
16763 sizeof(struct lpfc_mbx_wr_object) -
16764 sizeof(struct lpfc_sli4_cfg_mhdr), LPFC_SLI4_MBX_EMBED);
16765
16766 wr_object = (struct lpfc_mbx_wr_object *)&mbox->u.mqe.un.wr_object;
16767 wr_object->u.request.write_offset = *offset;
16768 sprintf((uint8_t *)wr_object->u.request.object_name, "/");
16769 wr_object->u.request.object_name[0] =
16770 cpu_to_le32(wr_object->u.request.object_name[0]);
16771 bf_set(lpfc_wr_object_eof, &wr_object->u.request, 0);
16772 list_for_each_entry(dmabuf, dmabuf_list, list) {
16773 if (i >= LPFC_MBX_WR_CONFIG_MAX_BDE || written >= size)
16774 break;
16775 wr_object->u.request.bde[i].addrLow = putPaddrLow(dmabuf->phys);
16776 wr_object->u.request.bde[i].addrHigh =
16777 putPaddrHigh(dmabuf->phys);
16778 if (written + SLI4_PAGE_SIZE >= size) {
16779 wr_object->u.request.bde[i].tus.f.bdeSize =
16780 (size - written);
16781 written += (size - written);
16782 bf_set(lpfc_wr_object_eof, &wr_object->u.request, 1);
16783 } else {
16784 wr_object->u.request.bde[i].tus.f.bdeSize =
16785 SLI4_PAGE_SIZE;
16786 written += SLI4_PAGE_SIZE;
16787 }
16788 i++;
16789 }
16790 wr_object->u.request.bde_count = i;
16791 bf_set(lpfc_wr_object_write_length, &wr_object->u.request, written);
16792 if (!phba->sli4_hba.intr_enable)
16793 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
16794 else {
James Smarta183a152011-10-10 21:32:43 -040016795 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart52d52442011-05-24 11:42:45 -040016796 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
16797 }
16798 /* The IOCTL status is embedded in the mailbox subheader. */
16799 shdr = (union lpfc_sli4_cfg_shdr *) &wr_object->header.cfg_shdr;
16800 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
16801 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
16802 if (rc != MBX_TIMEOUT)
16803 mempool_free(mbox, phba->mbox_mem_pool);
16804 if (shdr_status || shdr_add_status || rc) {
16805 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16806 "3025 Write Object mailbox failed with "
16807 "status x%x add_status x%x, mbx status x%x\n",
16808 shdr_status, shdr_add_status, rc);
16809 rc = -ENXIO;
16810 } else
16811 *offset += wr_object->u.response.actual_write_length;
16812 return rc;
16813}
16814
16815/**
James Smart695a8142010-01-26 23:08:03 -050016816 * lpfc_cleanup_pending_mbox - Free up vport discovery mailbox commands.
16817 * @vport: pointer to vport data structure.
16818 *
16819 * This function iterate through the mailboxq and clean up all REG_LOGIN
16820 * and REG_VPI mailbox commands associated with the vport. This function
16821 * is called when driver want to restart discovery of the vport due to
16822 * a Clear Virtual Link event.
16823 **/
16824void
16825lpfc_cleanup_pending_mbox(struct lpfc_vport *vport)
16826{
16827 struct lpfc_hba *phba = vport->phba;
16828 LPFC_MBOXQ_t *mb, *nextmb;
16829 struct lpfc_dmabuf *mp;
James Smart78730cf2010-04-06 15:06:30 -040016830 struct lpfc_nodelist *ndlp;
James Smartd439d282010-09-29 11:18:45 -040016831 struct lpfc_nodelist *act_mbx_ndlp = NULL;
James Smart589a52d2010-07-14 15:30:54 -040016832 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smartd439d282010-09-29 11:18:45 -040016833 LIST_HEAD(mbox_cmd_list);
James Smart63e801c2010-11-20 23:14:19 -050016834 uint8_t restart_loop;
James Smart695a8142010-01-26 23:08:03 -050016835
James Smartd439d282010-09-29 11:18:45 -040016836 /* Clean up internally queued mailbox commands with the vport */
James Smart695a8142010-01-26 23:08:03 -050016837 spin_lock_irq(&phba->hbalock);
16838 list_for_each_entry_safe(mb, nextmb, &phba->sli.mboxq, list) {
16839 if (mb->vport != vport)
16840 continue;
16841
16842 if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) &&
16843 (mb->u.mb.mbxCommand != MBX_REG_VPI))
16844 continue;
16845
James Smartd439d282010-09-29 11:18:45 -040016846 list_del(&mb->list);
16847 list_add_tail(&mb->list, &mbox_cmd_list);
16848 }
16849 /* Clean up active mailbox command with the vport */
16850 mb = phba->sli.mbox_active;
16851 if (mb && (mb->vport == vport)) {
16852 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) ||
16853 (mb->u.mb.mbxCommand == MBX_REG_VPI))
16854 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
16855 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
16856 act_mbx_ndlp = (struct lpfc_nodelist *)mb->context2;
16857 /* Put reference count for delayed processing */
16858 act_mbx_ndlp = lpfc_nlp_get(act_mbx_ndlp);
16859 /* Unregister the RPI when mailbox complete */
16860 mb->mbox_flag |= LPFC_MBX_IMED_UNREG;
16861 }
16862 }
James Smart63e801c2010-11-20 23:14:19 -050016863 /* Cleanup any mailbox completions which are not yet processed */
16864 do {
16865 restart_loop = 0;
16866 list_for_each_entry(mb, &phba->sli.mboxq_cmpl, list) {
16867 /*
16868 * If this mailox is already processed or it is
16869 * for another vport ignore it.
16870 */
16871 if ((mb->vport != vport) ||
16872 (mb->mbox_flag & LPFC_MBX_IMED_UNREG))
16873 continue;
16874
16875 if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) &&
16876 (mb->u.mb.mbxCommand != MBX_REG_VPI))
16877 continue;
16878
16879 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
16880 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
16881 ndlp = (struct lpfc_nodelist *)mb->context2;
16882 /* Unregister the RPI when mailbox complete */
16883 mb->mbox_flag |= LPFC_MBX_IMED_UNREG;
16884 restart_loop = 1;
16885 spin_unlock_irq(&phba->hbalock);
16886 spin_lock(shost->host_lock);
16887 ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
16888 spin_unlock(shost->host_lock);
16889 spin_lock_irq(&phba->hbalock);
16890 break;
16891 }
16892 }
16893 } while (restart_loop);
16894
James Smartd439d282010-09-29 11:18:45 -040016895 spin_unlock_irq(&phba->hbalock);
16896
16897 /* Release the cleaned-up mailbox commands */
16898 while (!list_empty(&mbox_cmd_list)) {
16899 list_remove_head(&mbox_cmd_list, mb, LPFC_MBOXQ_t, list);
James Smart695a8142010-01-26 23:08:03 -050016900 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
16901 mp = (struct lpfc_dmabuf *) (mb->context1);
16902 if (mp) {
16903 __lpfc_mbuf_free(phba, mp->virt, mp->phys);
16904 kfree(mp);
16905 }
James Smart78730cf2010-04-06 15:06:30 -040016906 ndlp = (struct lpfc_nodelist *) mb->context2;
James Smartd439d282010-09-29 11:18:45 -040016907 mb->context2 = NULL;
James Smart78730cf2010-04-06 15:06:30 -040016908 if (ndlp) {
Dan Carpenterec21b3b2010-08-08 00:15:17 +020016909 spin_lock(shost->host_lock);
James Smart589a52d2010-07-14 15:30:54 -040016910 ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
Dan Carpenterec21b3b2010-08-08 00:15:17 +020016911 spin_unlock(shost->host_lock);
James Smart78730cf2010-04-06 15:06:30 -040016912 lpfc_nlp_put(ndlp);
James Smart78730cf2010-04-06 15:06:30 -040016913 }
James Smart695a8142010-01-26 23:08:03 -050016914 }
James Smart695a8142010-01-26 23:08:03 -050016915 mempool_free(mb, phba->mbox_mem_pool);
16916 }
James Smartd439d282010-09-29 11:18:45 -040016917
16918 /* Release the ndlp with the cleaned-up active mailbox command */
16919 if (act_mbx_ndlp) {
16920 spin_lock(shost->host_lock);
16921 act_mbx_ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
16922 spin_unlock(shost->host_lock);
16923 lpfc_nlp_put(act_mbx_ndlp);
James Smart695a8142010-01-26 23:08:03 -050016924 }
James Smart695a8142010-01-26 23:08:03 -050016925}
16926
James Smart2a9bf3d2010-06-07 15:24:45 -040016927/**
16928 * lpfc_drain_txq - Drain the txq
16929 * @phba: Pointer to HBA context object.
16930 *
16931 * This function attempt to submit IOCBs on the txq
16932 * to the adapter. For SLI4 adapters, the txq contains
16933 * ELS IOCBs that have been deferred because the there
16934 * are no SGLs. This congestion can occur with large
16935 * vport counts during node discovery.
16936 **/
16937
16938uint32_t
16939lpfc_drain_txq(struct lpfc_hba *phba)
16940{
16941 LIST_HEAD(completions);
16942 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
Daeseok Youn2e706372014-02-21 09:03:32 +090016943 struct lpfc_iocbq *piocbq = NULL;
James Smart2a9bf3d2010-06-07 15:24:45 -040016944 unsigned long iflags = 0;
16945 char *fail_msg = NULL;
16946 struct lpfc_sglq *sglq;
16947 union lpfc_wqe wqe;
James Smarta2fc4aef2014-09-03 12:57:55 -040016948 uint32_t txq_cnt = 0;
James Smart2a9bf3d2010-06-07 15:24:45 -040016949
James Smart398d81c2013-05-31 17:04:19 -040016950 spin_lock_irqsave(&pring->ring_lock, iflags);
James Smart0e9bb8d2013-03-01 16:35:12 -050016951 list_for_each_entry(piocbq, &pring->txq, list) {
16952 txq_cnt++;
16953 }
16954
16955 if (txq_cnt > pring->txq_max)
16956 pring->txq_max = txq_cnt;
James Smart2a9bf3d2010-06-07 15:24:45 -040016957
James Smart398d81c2013-05-31 17:04:19 -040016958 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smart2a9bf3d2010-06-07 15:24:45 -040016959
James Smart0e9bb8d2013-03-01 16:35:12 -050016960 while (!list_empty(&pring->txq)) {
James Smart398d81c2013-05-31 17:04:19 -040016961 spin_lock_irqsave(&pring->ring_lock, iflags);
James Smart2a9bf3d2010-06-07 15:24:45 -040016962
James Smart19ca7602010-11-20 23:11:55 -050016963 piocbq = lpfc_sli_ringtx_get(phba, pring);
James Smarta6298522012-06-12 13:54:11 -040016964 if (!piocbq) {
James Smart398d81c2013-05-31 17:04:19 -040016965 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smarta6298522012-06-12 13:54:11 -040016966 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
16967 "2823 txq empty and txq_cnt is %d\n ",
James Smart0e9bb8d2013-03-01 16:35:12 -050016968 txq_cnt);
James Smarta6298522012-06-12 13:54:11 -040016969 break;
16970 }
James Smart19ca7602010-11-20 23:11:55 -050016971 sglq = __lpfc_sli_get_sglq(phba, piocbq);
James Smart2a9bf3d2010-06-07 15:24:45 -040016972 if (!sglq) {
James Smart19ca7602010-11-20 23:11:55 -050016973 __lpfc_sli_ringtx_put(phba, pring, piocbq);
James Smart398d81c2013-05-31 17:04:19 -040016974 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smart2a9bf3d2010-06-07 15:24:45 -040016975 break;
James Smart2a9bf3d2010-06-07 15:24:45 -040016976 }
James Smart0e9bb8d2013-03-01 16:35:12 -050016977 txq_cnt--;
James Smart2a9bf3d2010-06-07 15:24:45 -040016978
16979 /* The xri and iocb resources secured,
16980 * attempt to issue request
16981 */
James Smart6d368e52011-05-24 11:44:12 -040016982 piocbq->sli4_lxritag = sglq->sli4_lxritag;
James Smart2a9bf3d2010-06-07 15:24:45 -040016983 piocbq->sli4_xritag = sglq->sli4_xritag;
16984 if (NO_XRI == lpfc_sli4_bpl2sgl(phba, piocbq, sglq))
16985 fail_msg = "to convert bpl to sgl";
16986 else if (lpfc_sli4_iocb2wqe(phba, piocbq, &wqe))
16987 fail_msg = "to convert iocb to wqe";
16988 else if (lpfc_sli4_wq_put(phba->sli4_hba.els_wq, &wqe))
16989 fail_msg = " - Wq is full";
16990 else
16991 lpfc_sli_ringtxcmpl_put(phba, pring, piocbq);
16992
16993 if (fail_msg) {
16994 /* Failed means we can't issue and need to cancel */
16995 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
16996 "2822 IOCB failed %s iotag 0x%x "
16997 "xri 0x%x\n",
16998 fail_msg,
16999 piocbq->iotag, piocbq->sli4_xritag);
17000 list_add_tail(&piocbq->list, &completions);
17001 }
James Smart398d81c2013-05-31 17:04:19 -040017002 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smart2a9bf3d2010-06-07 15:24:45 -040017003 }
17004
James Smart2a9bf3d2010-06-07 15:24:45 -040017005 /* Cancel all the IOCBs that cannot be issued */
17006 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
17007 IOERR_SLI_ABORTED);
17008
James Smart0e9bb8d2013-03-01 16:35:12 -050017009 return txq_cnt;
James Smart2a9bf3d2010-06-07 15:24:45 -040017010}