blob: b78244a30f2992296d9d4ff7efc8dc8b87df39b6 [file] [log] [blame]
dea31012005-04-17 16:05:31 -05001/*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04003 * Fibre Channel Host Bus Adapters. *
James Smartbdcd2b92012-03-01 22:33:52 -05004 * Copyright (C) 2004-2012 Emulex. All rights reserved. *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04005 * EMULEX and SLI are trademarks of Emulex. *
dea31012005-04-17 16:05:31 -05006 * www.emulex.com *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04007 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
dea31012005-04-17 16:05:31 -05008 * *
9 * This program is free software; you can redistribute it and/or *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -040010 * modify it under the terms of version 2 of the GNU General *
11 * Public License as published by the Free Software Foundation. *
12 * This program is distributed in the hope that it will be useful. *
13 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
14 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
15 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
16 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
17 * TO BE LEGALLY INVALID. See the GNU General Public License for *
18 * more details, a copy of which can be found in the file COPYING *
19 * included with this package. *
dea31012005-04-17 16:05:31 -050020 *******************************************************************/
21
dea31012005-04-17 16:05:31 -050022#include <linux/blkdev.h>
23#include <linux/pci.h>
24#include <linux/interrupt.h>
25#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
dea31012005-04-17 16:05:31 -050027
James.Smart@Emulex.Com91886522005-08-10 15:03:09 -040028#include <scsi/scsi.h>
dea31012005-04-17 16:05:31 -050029#include <scsi/scsi_cmnd.h>
30#include <scsi/scsi_device.h>
31#include <scsi/scsi_host.h>
James.Smart@Emulex.Comf888ba32005-08-10 15:03:01 -040032#include <scsi/scsi_transport_fc.h>
James Smartda0436e2009-05-22 14:51:39 -040033#include <scsi/fc/fc_fs.h>
James Smart0d878412009-10-02 15:16:56 -040034#include <linux/aer.h>
dea31012005-04-17 16:05:31 -050035
James Smartda0436e2009-05-22 14:51:39 -040036#include "lpfc_hw4.h"
dea31012005-04-17 16:05:31 -050037#include "lpfc_hw.h"
38#include "lpfc_sli.h"
James Smartda0436e2009-05-22 14:51:39 -040039#include "lpfc_sli4.h"
James Smartea2151b2008-09-07 11:52:10 -040040#include "lpfc_nl.h"
dea31012005-04-17 16:05:31 -050041#include "lpfc_disc.h"
42#include "lpfc_scsi.h"
43#include "lpfc.h"
44#include "lpfc_crtn.h"
45#include "lpfc_logmsg.h"
46#include "lpfc_compat.h"
James Smart858c9f62007-06-17 19:56:39 -050047#include "lpfc_debugfs.h"
James Smart04c68492009-05-22 14:52:52 -040048#include "lpfc_vport.h"
dea31012005-04-17 16:05:31 -050049
50/* There are only four IOCB completion types. */
51typedef enum _lpfc_iocb_type {
52 LPFC_UNKNOWN_IOCB,
53 LPFC_UNSOL_IOCB,
54 LPFC_SOL_IOCB,
55 LPFC_ABORT_IOCB
56} lpfc_iocb_type;
57
James Smart4f774512009-05-22 14:52:35 -040058
59/* Provide function prototypes local to this module. */
60static int lpfc_sli_issue_mbox_s4(struct lpfc_hba *, LPFC_MBOXQ_t *,
61 uint32_t);
62static int lpfc_sli4_read_rev(struct lpfc_hba *, LPFC_MBOXQ_t *,
James Smart45ed1192009-10-02 15:17:02 -040063 uint8_t *, uint32_t *);
64static struct lpfc_iocbq *lpfc_sli4_els_wcqe_to_rspiocbq(struct lpfc_hba *,
65 struct lpfc_iocbq *);
James Smart6669f9b2009-10-02 15:16:45 -040066static void lpfc_sli4_send_seq_to_ulp(struct lpfc_vport *,
67 struct hbq_dmabuf *);
James Smart05580562011-05-24 11:40:48 -040068static int lpfc_sli4_fp_handle_wcqe(struct lpfc_hba *, struct lpfc_queue *,
69 struct lpfc_cqe *);
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 Smart05580562011-05-24 11:40:48 -040074
James Smart4f774512009-05-22 14:52:35 -040075static IOCB_t *
76lpfc_get_iocb_from_iocbq(struct lpfc_iocbq *iocbq)
77{
78 return &iocbq->iocb;
79}
80
81/**
82 * lpfc_sli4_wq_put - Put a Work Queue Entry on an Work Queue
83 * @q: The Work Queue to operate on.
84 * @wqe: The work Queue Entry to put on the Work queue.
85 *
86 * This routine will copy the contents of @wqe to the next available entry on
87 * the @q. This function will then ring the Work Queue Doorbell to signal the
88 * HBA to start processing the Work Queue Entry. This function returns 0 if
89 * successful. If no entries are available on @q then this function will return
90 * -ENOMEM.
91 * The caller is expected to hold the hbalock when calling this routine.
92 **/
93static uint32_t
94lpfc_sli4_wq_put(struct lpfc_queue *q, union lpfc_wqe *wqe)
95{
James Smart2e90f4b2011-12-13 13:22:37 -050096 union lpfc_wqe *temp_wqe;
James Smart4f774512009-05-22 14:52:35 -040097 struct lpfc_register doorbell;
98 uint32_t host_index;
James Smart027140e2012-08-03 12:35:44 -040099 uint32_t idx;
James Smart4f774512009-05-22 14:52:35 -0400100
James Smart2e90f4b2011-12-13 13:22:37 -0500101 /* sanity check on queue memory */
102 if (unlikely(!q))
103 return -ENOMEM;
104 temp_wqe = q->qe[q->host_index].wqe;
105
James Smart4f774512009-05-22 14:52:35 -0400106 /* If the host has not yet processed the next entry then we are done */
James Smart027140e2012-08-03 12:35:44 -0400107 idx = ((q->host_index + 1) % q->entry_count);
108 if (idx == q->hba_index) {
James Smartb84daac2012-08-03 12:35:13 -0400109 q->WQ_overflow++;
James Smart4f774512009-05-22 14:52:35 -0400110 return -ENOMEM;
James Smartb84daac2012-08-03 12:35:13 -0400111 }
112 q->WQ_posted++;
James Smart4f774512009-05-22 14:52:35 -0400113 /* set consumption flag every once in a while */
James Smartff78d8f2011-12-13 13:21:35 -0500114 if (!((q->host_index + 1) % q->entry_repost))
James Smartf0d9bcc2010-10-22 11:07:09 -0400115 bf_set(wqe_wqec, &wqe->generic.wqe_com, 1);
James Smartfedd3b72011-02-16 12:39:24 -0500116 if (q->phba->sli3_options & LPFC_SLI4_PHWQ_ENABLED)
117 bf_set(wqe_wqid, &wqe->generic.wqe_com, q->queue_id);
James Smart4f774512009-05-22 14:52:35 -0400118 lpfc_sli_pcimem_bcopy(wqe, temp_wqe, q->entry_size);
119
120 /* Update the host index before invoking device */
121 host_index = q->host_index;
James Smart027140e2012-08-03 12:35:44 -0400122
123 q->host_index = idx;
James Smart4f774512009-05-22 14:52:35 -0400124
125 /* Ring Doorbell */
126 doorbell.word0 = 0;
James Smart962bc512013-01-03 15:44:00 -0500127 if (q->db_format == LPFC_DB_LIST_FORMAT) {
128 bf_set(lpfc_wq_db_list_fm_num_posted, &doorbell, 1);
129 bf_set(lpfc_wq_db_list_fm_index, &doorbell, host_index);
130 bf_set(lpfc_wq_db_list_fm_id, &doorbell, q->queue_id);
131 } else if (q->db_format == LPFC_DB_RING_FORMAT) {
132 bf_set(lpfc_wq_db_ring_fm_num_posted, &doorbell, 1);
133 bf_set(lpfc_wq_db_ring_fm_id, &doorbell, q->queue_id);
134 } else {
135 return -EINVAL;
136 }
137 writel(doorbell.word0, q->db_regaddr);
James Smart4f774512009-05-22 14:52:35 -0400138
139 return 0;
140}
141
142/**
143 * lpfc_sli4_wq_release - Updates internal hba index for WQ
144 * @q: The Work Queue to operate on.
145 * @index: The index to advance the hba index to.
146 *
147 * This routine will update the HBA index of a queue to reflect consumption of
148 * Work Queue Entries by the HBA. When the HBA indicates that it has consumed
149 * an entry the host calls this function to update the queue's internal
150 * pointers. This routine returns the number of entries that were consumed by
151 * the HBA.
152 **/
153static uint32_t
154lpfc_sli4_wq_release(struct lpfc_queue *q, uint32_t index)
155{
156 uint32_t released = 0;
157
James Smart2e90f4b2011-12-13 13:22:37 -0500158 /* sanity check on queue memory */
159 if (unlikely(!q))
160 return 0;
161
James Smart4f774512009-05-22 14:52:35 -0400162 if (q->hba_index == index)
163 return 0;
164 do {
165 q->hba_index = ((q->hba_index + 1) % q->entry_count);
166 released++;
167 } while (q->hba_index != index);
168 return released;
169}
170
171/**
172 * lpfc_sli4_mq_put - Put a Mailbox Queue Entry on an Mailbox Queue
173 * @q: The Mailbox Queue to operate on.
174 * @wqe: The Mailbox Queue Entry to put on the Work queue.
175 *
176 * This routine will copy the contents of @mqe to the next available entry on
177 * the @q. This function will then ring the Work Queue Doorbell to signal the
178 * HBA to start processing the Work Queue Entry. This function returns 0 if
179 * successful. If no entries are available on @q then this function will return
180 * -ENOMEM.
181 * The caller is expected to hold the hbalock when calling this routine.
182 **/
183static uint32_t
184lpfc_sli4_mq_put(struct lpfc_queue *q, struct lpfc_mqe *mqe)
185{
James Smart2e90f4b2011-12-13 13:22:37 -0500186 struct lpfc_mqe *temp_mqe;
James Smart4f774512009-05-22 14:52:35 -0400187 struct lpfc_register doorbell;
188 uint32_t host_index;
189
James Smart2e90f4b2011-12-13 13:22:37 -0500190 /* sanity check on queue memory */
191 if (unlikely(!q))
192 return -ENOMEM;
193 temp_mqe = q->qe[q->host_index].mqe;
194
James Smart4f774512009-05-22 14:52:35 -0400195 /* If the host has not yet processed the next entry then we are done */
196 if (((q->host_index + 1) % q->entry_count) == q->hba_index)
197 return -ENOMEM;
198 lpfc_sli_pcimem_bcopy(mqe, temp_mqe, q->entry_size);
199 /* Save off the mailbox pointer for completion */
200 q->phba->mbox = (MAILBOX_t *)temp_mqe;
201
202 /* Update the host index before invoking device */
203 host_index = q->host_index;
204 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 Smart4f774512009-05-22 14:52:35 -0400266 return eqe;
267}
268
269/**
James Smartba20c852012-08-03 12:36:52 -0400270 * lpfc_sli4_eq_clr_intr - Turn off interrupts from this EQ
271 * @q: The Event Queue to disable interrupts
272 *
273 **/
274static inline void
275lpfc_sli4_eq_clr_intr(struct lpfc_queue *q)
276{
277 struct lpfc_register doorbell;
278
279 doorbell.word0 = 0;
280 bf_set(lpfc_eqcq_doorbell_eqci, &doorbell, 1);
281 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_EVENT);
282 bf_set(lpfc_eqcq_doorbell_eqid_hi, &doorbell,
283 (q->queue_id >> LPFC_EQID_HI_FIELD_SHIFT));
284 bf_set(lpfc_eqcq_doorbell_eqid_lo, &doorbell, q->queue_id);
285 writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
286}
287
288/**
James Smart4f774512009-05-22 14:52:35 -0400289 * lpfc_sli4_eq_release - Indicates the host has finished processing an EQ
290 * @q: The Event Queue that the host has completed processing for.
291 * @arm: Indicates whether the host wants to arms this CQ.
292 *
293 * This routine will mark all Event Queue Entries on @q, from the last
294 * known completed entry to the last entry that was processed, as completed
295 * by clearing the valid bit for each completion queue entry. Then it will
296 * notify the HBA, by ringing the doorbell, that the EQEs have been processed.
297 * The internal host index in the @q will be updated by this routine to indicate
298 * that the host has finished processing the entries. The @arm parameter
299 * indicates that the queue should be rearmed when ringing the doorbell.
300 *
301 * This function will return the number of EQEs that were popped.
302 **/
303uint32_t
304lpfc_sli4_eq_release(struct lpfc_queue *q, bool arm)
305{
306 uint32_t released = 0;
307 struct lpfc_eqe *temp_eqe;
308 struct lpfc_register doorbell;
309
James Smart2e90f4b2011-12-13 13:22:37 -0500310 /* sanity check on queue memory */
311 if (unlikely(!q))
312 return 0;
313
James Smart4f774512009-05-22 14:52:35 -0400314 /* while there are valid entries */
315 while (q->hba_index != q->host_index) {
316 temp_eqe = q->qe[q->host_index].eqe;
James Smartcb5172e2010-03-15 11:25:07 -0400317 bf_set_le32(lpfc_eqe_valid, temp_eqe, 0);
James Smart4f774512009-05-22 14:52:35 -0400318 released++;
319 q->host_index = ((q->host_index + 1) % q->entry_count);
320 }
321 if (unlikely(released == 0 && !arm))
322 return 0;
323
324 /* ring doorbell for number popped */
325 doorbell.word0 = 0;
326 if (arm) {
327 bf_set(lpfc_eqcq_doorbell_arm, &doorbell, 1);
328 bf_set(lpfc_eqcq_doorbell_eqci, &doorbell, 1);
329 }
330 bf_set(lpfc_eqcq_doorbell_num_released, &doorbell, released);
331 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_EVENT);
James Smart6b5151f2012-01-18 16:24:06 -0500332 bf_set(lpfc_eqcq_doorbell_eqid_hi, &doorbell,
333 (q->queue_id >> LPFC_EQID_HI_FIELD_SHIFT));
334 bf_set(lpfc_eqcq_doorbell_eqid_lo, &doorbell, q->queue_id);
James Smart4f774512009-05-22 14:52:35 -0400335 writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
James Smarta747c9c2009-11-18 15:41:10 -0500336 /* PCI read to flush PCI pipeline on re-arming for INTx mode */
337 if ((q->phba->intr_type == INTx) && (arm == LPFC_QUEUE_REARM))
338 readl(q->phba->sli4_hba.EQCQDBregaddr);
James Smart4f774512009-05-22 14:52:35 -0400339 return released;
340}
341
342/**
343 * lpfc_sli4_cq_get - Gets the next valid CQE from a CQ
344 * @q: The Completion Queue to get the first valid CQE from
345 *
346 * This routine will get the first valid Completion Queue Entry from @q, update
347 * the queue's internal hba index, and return the CQE. If no valid CQEs are in
348 * the Queue (no more work to do), or the Queue is full of CQEs that have been
349 * processed, but not popped back to the HBA then this routine will return NULL.
350 **/
351static struct lpfc_cqe *
352lpfc_sli4_cq_get(struct lpfc_queue *q)
353{
354 struct lpfc_cqe *cqe;
James Smart027140e2012-08-03 12:35:44 -0400355 uint32_t idx;
James Smart4f774512009-05-22 14:52:35 -0400356
James Smart2e90f4b2011-12-13 13:22:37 -0500357 /* sanity check on queue memory */
358 if (unlikely(!q))
359 return NULL;
360
James Smart4f774512009-05-22 14:52:35 -0400361 /* If the next CQE is not valid then we are done */
James Smartcb5172e2010-03-15 11:25:07 -0400362 if (!bf_get_le32(lpfc_cqe_valid, q->qe[q->hba_index].cqe))
James Smart4f774512009-05-22 14:52:35 -0400363 return NULL;
364 /* If the host has not yet processed the next entry then we are done */
James Smart027140e2012-08-03 12:35:44 -0400365 idx = ((q->hba_index + 1) % q->entry_count);
366 if (idx == q->host_index)
James Smart4f774512009-05-22 14:52:35 -0400367 return NULL;
368
369 cqe = q->qe[q->hba_index].cqe;
James Smart027140e2012-08-03 12:35:44 -0400370 q->hba_index = idx;
James Smart4f774512009-05-22 14:52:35 -0400371 return cqe;
372}
373
374/**
375 * lpfc_sli4_cq_release - Indicates the host has finished processing a CQ
376 * @q: The Completion Queue that the host has completed processing for.
377 * @arm: Indicates whether the host wants to arms this CQ.
378 *
379 * This routine will mark all Completion queue entries on @q, from the last
380 * known completed entry to the last entry that was processed, as completed
381 * by clearing the valid bit for each completion queue entry. Then it will
382 * notify the HBA, by ringing the doorbell, that the CQEs have been processed.
383 * The internal host index in the @q will be updated by this routine to indicate
384 * that the host has finished processing the entries. The @arm parameter
385 * indicates that the queue should be rearmed when ringing the doorbell.
386 *
387 * This function will return the number of CQEs that were released.
388 **/
389uint32_t
390lpfc_sli4_cq_release(struct lpfc_queue *q, bool arm)
391{
392 uint32_t released = 0;
393 struct lpfc_cqe *temp_qe;
394 struct lpfc_register doorbell;
395
James Smart2e90f4b2011-12-13 13:22:37 -0500396 /* sanity check on queue memory */
397 if (unlikely(!q))
398 return 0;
James Smart4f774512009-05-22 14:52:35 -0400399 /* while there are valid entries */
400 while (q->hba_index != q->host_index) {
401 temp_qe = q->qe[q->host_index].cqe;
James Smartcb5172e2010-03-15 11:25:07 -0400402 bf_set_le32(lpfc_cqe_valid, temp_qe, 0);
James Smart4f774512009-05-22 14:52:35 -0400403 released++;
404 q->host_index = ((q->host_index + 1) % q->entry_count);
405 }
406 if (unlikely(released == 0 && !arm))
407 return 0;
408
409 /* ring doorbell for number popped */
410 doorbell.word0 = 0;
411 if (arm)
412 bf_set(lpfc_eqcq_doorbell_arm, &doorbell, 1);
413 bf_set(lpfc_eqcq_doorbell_num_released, &doorbell, released);
414 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_COMPLETION);
James Smart6b5151f2012-01-18 16:24:06 -0500415 bf_set(lpfc_eqcq_doorbell_cqid_hi, &doorbell,
416 (q->queue_id >> LPFC_CQID_HI_FIELD_SHIFT));
417 bf_set(lpfc_eqcq_doorbell_cqid_lo, &doorbell, q->queue_id);
James Smart4f774512009-05-22 14:52:35 -0400418 writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
419 return released;
420}
421
422/**
423 * lpfc_sli4_rq_put - Put a Receive Buffer Queue Entry on a Receive Queue
424 * @q: The Header Receive Queue to operate on.
425 * @wqe: The Receive Queue Entry to put on the Receive queue.
426 *
427 * This routine will copy the contents of @wqe to the next available entry on
428 * the @q. This function will then ring the Receive Queue Doorbell to signal the
429 * HBA to start processing the Receive Queue Entry. This function returns the
430 * index that the rqe was copied to if successful. If no entries are available
431 * on @q then this function will return -ENOMEM.
432 * The caller is expected to hold the hbalock when calling this routine.
433 **/
434static int
435lpfc_sli4_rq_put(struct lpfc_queue *hq, struct lpfc_queue *dq,
436 struct lpfc_rqe *hrqe, struct lpfc_rqe *drqe)
437{
James Smart2e90f4b2011-12-13 13:22:37 -0500438 struct lpfc_rqe *temp_hrqe;
439 struct lpfc_rqe *temp_drqe;
James Smart4f774512009-05-22 14:52:35 -0400440 struct lpfc_register doorbell;
Wei Yongjun5a25bf32012-12-02 08:33:24 -0500441 int put_index;
James Smart4f774512009-05-22 14:52:35 -0400442
James Smart2e90f4b2011-12-13 13:22:37 -0500443 /* sanity check on queue memory */
444 if (unlikely(!hq) || unlikely(!dq))
445 return -ENOMEM;
Wei Yongjun5a25bf32012-12-02 08:33:24 -0500446 put_index = hq->host_index;
James Smart2e90f4b2011-12-13 13:22:37 -0500447 temp_hrqe = hq->qe[hq->host_index].rqe;
448 temp_drqe = dq->qe[dq->host_index].rqe;
449
James Smart4f774512009-05-22 14:52:35 -0400450 if (hq->type != LPFC_HRQ || dq->type != LPFC_DRQ)
451 return -EINVAL;
452 if (hq->host_index != dq->host_index)
453 return -EINVAL;
454 /* If the host has not yet processed the next entry then we are done */
455 if (((hq->host_index + 1) % hq->entry_count) == hq->hba_index)
456 return -EBUSY;
457 lpfc_sli_pcimem_bcopy(hrqe, temp_hrqe, hq->entry_size);
458 lpfc_sli_pcimem_bcopy(drqe, temp_drqe, dq->entry_size);
459
460 /* Update the host index to point to the next slot */
461 hq->host_index = ((hq->host_index + 1) % hq->entry_count);
462 dq->host_index = ((dq->host_index + 1) % dq->entry_count);
463
464 /* Ring The Header Receive Queue Doorbell */
James Smart73d91e52011-10-10 21:32:10 -0400465 if (!(hq->host_index % hq->entry_repost)) {
James Smart4f774512009-05-22 14:52:35 -0400466 doorbell.word0 = 0;
James Smart962bc512013-01-03 15:44:00 -0500467 if (hq->db_format == LPFC_DB_RING_FORMAT) {
468 bf_set(lpfc_rq_db_ring_fm_num_posted, &doorbell,
469 hq->entry_repost);
470 bf_set(lpfc_rq_db_ring_fm_id, &doorbell, hq->queue_id);
471 } else if (hq->db_format == LPFC_DB_LIST_FORMAT) {
472 bf_set(lpfc_rq_db_list_fm_num_posted, &doorbell,
473 hq->entry_repost);
474 bf_set(lpfc_rq_db_list_fm_index, &doorbell,
475 hq->host_index);
476 bf_set(lpfc_rq_db_list_fm_id, &doorbell, hq->queue_id);
477 } else {
478 return -EINVAL;
479 }
480 writel(doorbell.word0, hq->db_regaddr);
James Smart4f774512009-05-22 14:52:35 -0400481 }
482 return put_index;
483}
484
485/**
486 * lpfc_sli4_rq_release - Updates internal hba index for RQ
487 * @q: The Header Receive Queue to operate on.
488 *
489 * This routine will update the HBA index of a queue to reflect consumption of
490 * one Receive Queue Entry by the HBA. When the HBA indicates that it has
491 * consumed an entry the host calls this function to update the queue's
492 * internal pointers. This routine returns the number of entries that were
493 * consumed by the HBA.
494 **/
495static uint32_t
496lpfc_sli4_rq_release(struct lpfc_queue *hq, struct lpfc_queue *dq)
497{
James Smart2e90f4b2011-12-13 13:22:37 -0500498 /* sanity check on queue memory */
499 if (unlikely(!hq) || unlikely(!dq))
500 return 0;
501
James Smart4f774512009-05-22 14:52:35 -0400502 if ((hq->type != LPFC_HRQ) || (dq->type != LPFC_DRQ))
503 return 0;
504 hq->hba_index = ((hq->hba_index + 1) % hq->entry_count);
505 dq->hba_index = ((dq->hba_index + 1) % dq->entry_count);
506 return 1;
507}
508
James Smarte59058c2008-08-24 21:49:00 -0400509/**
James Smart3621a712009-04-06 18:47:14 -0400510 * lpfc_cmd_iocb - Get next command iocb entry in the ring
James Smarte59058c2008-08-24 21:49:00 -0400511 * @phba: Pointer to HBA context object.
512 * @pring: Pointer to driver SLI ring object.
513 *
514 * This function returns pointer to next command iocb entry
515 * in the command ring. The caller must hold hbalock to prevent
516 * other threads consume the next command iocb.
517 * SLI-2/SLI-3 provide different sized iocbs.
518 **/
James Smarted957682007-06-17 19:56:37 -0500519static inline IOCB_t *
520lpfc_cmd_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
521{
James Smart7e56aa22012-08-03 12:35:34 -0400522 return (IOCB_t *) (((char *) pring->sli.sli3.cmdringaddr) +
523 pring->sli.sli3.cmdidx * phba->iocb_cmd_size);
James Smarted957682007-06-17 19:56:37 -0500524}
525
James Smarte59058c2008-08-24 21:49:00 -0400526/**
James Smart3621a712009-04-06 18:47:14 -0400527 * lpfc_resp_iocb - Get next response iocb entry in the ring
James Smarte59058c2008-08-24 21:49:00 -0400528 * @phba: Pointer to HBA context object.
529 * @pring: Pointer to driver SLI ring object.
530 *
531 * This function returns pointer to next response iocb entry
532 * in the response ring. The caller must hold hbalock to make sure
533 * that no other thread consume the next response iocb.
534 * SLI-2/SLI-3 provide different sized iocbs.
535 **/
James Smarted957682007-06-17 19:56:37 -0500536static inline IOCB_t *
537lpfc_resp_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
538{
James Smart7e56aa22012-08-03 12:35:34 -0400539 return (IOCB_t *) (((char *) pring->sli.sli3.rspringaddr) +
540 pring->sli.sli3.rspidx * phba->iocb_rsp_size);
James Smarted957682007-06-17 19:56:37 -0500541}
542
James Smarte59058c2008-08-24 21:49:00 -0400543/**
James Smart3621a712009-04-06 18:47:14 -0400544 * __lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
James Smarte59058c2008-08-24 21:49:00 -0400545 * @phba: Pointer to HBA context object.
546 *
547 * This function is called with hbalock held. This function
548 * allocates a new driver iocb object from the iocb pool. If the
549 * allocation is successful, it returns pointer to the newly
550 * allocated iocb object else it returns NULL.
551 **/
James Smart4f2e66c2012-05-09 21:17:07 -0400552struct lpfc_iocbq *
James Smart2e0fef82007-06-17 19:56:36 -0500553__lpfc_sli_get_iocbq(struct lpfc_hba *phba)
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400554{
555 struct list_head *lpfc_iocb_list = &phba->lpfc_iocb_list;
556 struct lpfc_iocbq * iocbq = NULL;
557
558 list_remove_head(lpfc_iocb_list, iocbq, struct lpfc_iocbq, list);
James Smart2a9bf3d2010-06-07 15:24:45 -0400559 if (iocbq)
560 phba->iocb_cnt++;
561 if (phba->iocb_cnt > phba->iocb_max)
562 phba->iocb_max = phba->iocb_cnt;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400563 return iocbq;
564}
565
James Smarte59058c2008-08-24 21:49:00 -0400566/**
James Smartda0436e2009-05-22 14:51:39 -0400567 * __lpfc_clear_active_sglq - Remove the active sglq for this XRI.
568 * @phba: Pointer to HBA context object.
569 * @xritag: XRI value.
570 *
571 * This function clears the sglq pointer from the array of acive
572 * sglq's. The xritag that is passed in is used to index into the
573 * array. Before the xritag can be used it needs to be adjusted
574 * by subtracting the xribase.
575 *
576 * Returns sglq ponter = success, NULL = Failure.
577 **/
578static struct lpfc_sglq *
579__lpfc_clear_active_sglq(struct lpfc_hba *phba, uint16_t xritag)
580{
James Smartda0436e2009-05-22 14:51:39 -0400581 struct lpfc_sglq *sglq;
James Smart6d368e52011-05-24 11:44:12 -0400582
583 sglq = phba->sli4_hba.lpfc_sglq_active_list[xritag];
584 phba->sli4_hba.lpfc_sglq_active_list[xritag] = NULL;
James Smartda0436e2009-05-22 14:51:39 -0400585 return sglq;
586}
587
588/**
589 * __lpfc_get_active_sglq - Get the active sglq for this XRI.
590 * @phba: Pointer to HBA context object.
591 * @xritag: XRI value.
592 *
593 * This function returns the sglq pointer from the array of acive
594 * sglq's. The xritag that is passed in is used to index into the
595 * array. Before the xritag can be used it needs to be adjusted
596 * by subtracting the xribase.
597 *
598 * Returns sglq ponter = success, NULL = Failure.
599 **/
James Smart0f65ff62010-02-26 14:14:23 -0500600struct lpfc_sglq *
James Smartda0436e2009-05-22 14:51:39 -0400601__lpfc_get_active_sglq(struct lpfc_hba *phba, uint16_t xritag)
602{
James Smartda0436e2009-05-22 14:51:39 -0400603 struct lpfc_sglq *sglq;
James Smart6d368e52011-05-24 11:44:12 -0400604
605 sglq = phba->sli4_hba.lpfc_sglq_active_list[xritag];
James Smartda0436e2009-05-22 14:51:39 -0400606 return sglq;
607}
608
609/**
James Smart1151e3e2011-02-16 12:39:35 -0500610 * lpfc_clr_rrq_active - Clears RRQ active bit in xri_bitmap.
James Smart19ca7602010-11-20 23:11:55 -0500611 * @phba: Pointer to HBA context object.
612 * @xritag: xri used in this exchange.
613 * @rrq: The RRQ to be cleared.
614 *
James Smart19ca7602010-11-20 23:11:55 -0500615 **/
James Smart1151e3e2011-02-16 12:39:35 -0500616void
617lpfc_clr_rrq_active(struct lpfc_hba *phba,
618 uint16_t xritag,
619 struct lpfc_node_rrq *rrq)
James Smart19ca7602010-11-20 23:11:55 -0500620{
James Smart1151e3e2011-02-16 12:39:35 -0500621 struct lpfc_nodelist *ndlp = NULL;
James Smart19ca7602010-11-20 23:11:55 -0500622
James Smart1151e3e2011-02-16 12:39:35 -0500623 if ((rrq->vport) && NLP_CHK_NODE_ACT(rrq->ndlp))
624 ndlp = lpfc_findnode_did(rrq->vport, rrq->nlp_DID);
James Smart19ca7602010-11-20 23:11:55 -0500625
626 /* The target DID could have been swapped (cable swap)
627 * we should use the ndlp from the findnode if it is
628 * available.
629 */
James Smart1151e3e2011-02-16 12:39:35 -0500630 if ((!ndlp) && rrq->ndlp)
James Smart19ca7602010-11-20 23:11:55 -0500631 ndlp = rrq->ndlp;
632
James Smart1151e3e2011-02-16 12:39:35 -0500633 if (!ndlp)
634 goto out;
635
James Smart6d368e52011-05-24 11:44:12 -0400636 if (test_and_clear_bit(xritag, ndlp->active_rrqs.xri_bitmap)) {
James Smart19ca7602010-11-20 23:11:55 -0500637 rrq->send_rrq = 0;
638 rrq->xritag = 0;
639 rrq->rrq_stop_time = 0;
640 }
James Smart1151e3e2011-02-16 12:39:35 -0500641out:
James Smart19ca7602010-11-20 23:11:55 -0500642 mempool_free(rrq, phba->rrq_pool);
643}
644
645/**
646 * lpfc_handle_rrq_active - Checks if RRQ has waithed RATOV.
647 * @phba: Pointer to HBA context object.
648 *
649 * This function is called with hbalock held. This function
650 * Checks if stop_time (ratov from setting rrq active) has
651 * been reached, if it has and the send_rrq flag is set then
652 * it will call lpfc_send_rrq. If the send_rrq flag is not set
653 * then it will just call the routine to clear the rrq and
654 * free the rrq resource.
655 * The timer is set to the next rrq that is going to expire before
656 * leaving the routine.
657 *
658 **/
659void
660lpfc_handle_rrq_active(struct lpfc_hba *phba)
661{
662 struct lpfc_node_rrq *rrq;
663 struct lpfc_node_rrq *nextrrq;
664 unsigned long next_time;
665 unsigned long iflags;
James Smart1151e3e2011-02-16 12:39:35 -0500666 LIST_HEAD(send_rrq);
James Smart19ca7602010-11-20 23:11:55 -0500667
668 spin_lock_irqsave(&phba->hbalock, iflags);
669 phba->hba_flag &= ~HBA_RRQ_ACTIVE;
James Smart256ec0d2013-04-17 20:14:58 -0400670 next_time = jiffies + msecs_to_jiffies(1000 * (phba->fc_ratov + 1));
James Smart19ca7602010-11-20 23:11:55 -0500671 list_for_each_entry_safe(rrq, nextrrq,
James Smart1151e3e2011-02-16 12:39:35 -0500672 &phba->active_rrq_list, list) {
673 if (time_after(jiffies, rrq->rrq_stop_time))
674 list_move(&rrq->list, &send_rrq);
675 else if (time_before(rrq->rrq_stop_time, next_time))
James Smart19ca7602010-11-20 23:11:55 -0500676 next_time = rrq->rrq_stop_time;
677 }
678 spin_unlock_irqrestore(&phba->hbalock, iflags);
679 if (!list_empty(&phba->active_rrq_list))
680 mod_timer(&phba->rrq_tmr, next_time);
James Smart1151e3e2011-02-16 12:39:35 -0500681 list_for_each_entry_safe(rrq, nextrrq, &send_rrq, list) {
682 list_del(&rrq->list);
683 if (!rrq->send_rrq)
684 /* this call will free the rrq */
685 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
686 else if (lpfc_send_rrq(phba, rrq)) {
687 /* if we send the rrq then the completion handler
688 * will clear the bit in the xribitmap.
689 */
690 lpfc_clr_rrq_active(phba, rrq->xritag,
691 rrq);
692 }
693 }
James Smart19ca7602010-11-20 23:11:55 -0500694}
695
696/**
697 * lpfc_get_active_rrq - Get the active RRQ for this exchange.
698 * @vport: Pointer to vport context object.
699 * @xri: The xri used in the exchange.
700 * @did: The targets DID for this exchange.
701 *
702 * returns NULL = rrq not found in the phba->active_rrq_list.
703 * rrq = rrq for this xri and target.
704 **/
705struct lpfc_node_rrq *
706lpfc_get_active_rrq(struct lpfc_vport *vport, uint16_t xri, uint32_t did)
707{
708 struct lpfc_hba *phba = vport->phba;
709 struct lpfc_node_rrq *rrq;
710 struct lpfc_node_rrq *nextrrq;
711 unsigned long iflags;
712
713 if (phba->sli_rev != LPFC_SLI_REV4)
714 return NULL;
715 spin_lock_irqsave(&phba->hbalock, iflags);
716 list_for_each_entry_safe(rrq, nextrrq, &phba->active_rrq_list, list) {
717 if (rrq->vport == vport && rrq->xritag == xri &&
718 rrq->nlp_DID == did){
719 list_del(&rrq->list);
720 spin_unlock_irqrestore(&phba->hbalock, iflags);
721 return rrq;
722 }
723 }
724 spin_unlock_irqrestore(&phba->hbalock, iflags);
725 return NULL;
726}
727
728/**
729 * lpfc_cleanup_vports_rrqs - Remove and clear the active RRQ for this vport.
730 * @vport: Pointer to vport context object.
James Smart1151e3e2011-02-16 12:39:35 -0500731 * @ndlp: Pointer to the lpfc_node_list structure.
732 * If ndlp is NULL Remove all active RRQs for this vport from the
733 * phba->active_rrq_list and clear the rrq.
734 * If ndlp is not NULL then only remove rrqs for this vport & this ndlp.
James Smart19ca7602010-11-20 23:11:55 -0500735 **/
736void
James Smart1151e3e2011-02-16 12:39:35 -0500737lpfc_cleanup_vports_rrqs(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
James Smart19ca7602010-11-20 23:11:55 -0500738
739{
740 struct lpfc_hba *phba = vport->phba;
741 struct lpfc_node_rrq *rrq;
742 struct lpfc_node_rrq *nextrrq;
743 unsigned long iflags;
James Smart1151e3e2011-02-16 12:39:35 -0500744 LIST_HEAD(rrq_list);
James Smart19ca7602010-11-20 23:11:55 -0500745
746 if (phba->sli_rev != LPFC_SLI_REV4)
747 return;
James Smart1151e3e2011-02-16 12:39:35 -0500748 if (!ndlp) {
749 lpfc_sli4_vport_delete_els_xri_aborted(vport);
750 lpfc_sli4_vport_delete_fcp_xri_aborted(vport);
James Smart19ca7602010-11-20 23:11:55 -0500751 }
James Smart1151e3e2011-02-16 12:39:35 -0500752 spin_lock_irqsave(&phba->hbalock, iflags);
753 list_for_each_entry_safe(rrq, nextrrq, &phba->active_rrq_list, list)
754 if ((rrq->vport == vport) && (!ndlp || rrq->ndlp == ndlp))
755 list_move(&rrq->list, &rrq_list);
James Smart19ca7602010-11-20 23:11:55 -0500756 spin_unlock_irqrestore(&phba->hbalock, iflags);
James Smart1151e3e2011-02-16 12:39:35 -0500757
758 list_for_each_entry_safe(rrq, nextrrq, &rrq_list, list) {
759 list_del(&rrq->list);
760 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
761 }
James Smart19ca7602010-11-20 23:11:55 -0500762}
763
764/**
765 * lpfc_cleanup_wt_rrqs - Remove all rrq's from the active list.
766 * @phba: Pointer to HBA context object.
767 *
768 * Remove all rrqs from the phba->active_rrq_list and free them by
769 * calling __lpfc_clr_active_rrq
770 *
771 **/
772void
773lpfc_cleanup_wt_rrqs(struct lpfc_hba *phba)
774{
775 struct lpfc_node_rrq *rrq;
776 struct lpfc_node_rrq *nextrrq;
777 unsigned long next_time;
778 unsigned long iflags;
James Smart1151e3e2011-02-16 12:39:35 -0500779 LIST_HEAD(rrq_list);
James Smart19ca7602010-11-20 23:11:55 -0500780
781 if (phba->sli_rev != LPFC_SLI_REV4)
782 return;
783 spin_lock_irqsave(&phba->hbalock, iflags);
784 phba->hba_flag &= ~HBA_RRQ_ACTIVE;
James Smart256ec0d2013-04-17 20:14:58 -0400785 next_time = jiffies + msecs_to_jiffies(1000 * (phba->fc_ratov * 2));
James Smart1151e3e2011-02-16 12:39:35 -0500786 list_splice_init(&phba->active_rrq_list, &rrq_list);
James Smart19ca7602010-11-20 23:11:55 -0500787 spin_unlock_irqrestore(&phba->hbalock, iflags);
James Smart1151e3e2011-02-16 12:39:35 -0500788
789 list_for_each_entry_safe(rrq, nextrrq, &rrq_list, list) {
790 list_del(&rrq->list);
791 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
792 }
James Smart19ca7602010-11-20 23:11:55 -0500793 if (!list_empty(&phba->active_rrq_list))
794 mod_timer(&phba->rrq_tmr, next_time);
795}
796
797
798/**
James Smart1151e3e2011-02-16 12:39:35 -0500799 * lpfc_test_rrq_active - Test RRQ bit in xri_bitmap.
James Smart19ca7602010-11-20 23:11:55 -0500800 * @phba: Pointer to HBA context object.
801 * @ndlp: Targets nodelist pointer for this exchange.
802 * @xritag the xri in the bitmap to test.
803 *
804 * This function is called with hbalock held. This function
805 * returns 0 = rrq not active for this xri
806 * 1 = rrq is valid for this xri.
807 **/
James Smart1151e3e2011-02-16 12:39:35 -0500808int
809lpfc_test_rrq_active(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp,
James Smart19ca7602010-11-20 23:11:55 -0500810 uint16_t xritag)
811{
James Smart19ca7602010-11-20 23:11:55 -0500812 if (!ndlp)
813 return 0;
James Smart6d368e52011-05-24 11:44:12 -0400814 if (test_bit(xritag, ndlp->active_rrqs.xri_bitmap))
James Smart19ca7602010-11-20 23:11:55 -0500815 return 1;
816 else
817 return 0;
818}
819
820/**
821 * lpfc_set_rrq_active - set RRQ active bit in xri_bitmap.
822 * @phba: Pointer to HBA context object.
823 * @ndlp: nodelist pointer for this target.
824 * @xritag: xri used in this exchange.
825 * @rxid: Remote Exchange ID.
826 * @send_rrq: Flag used to determine if we should send rrq els cmd.
827 *
828 * This function takes the hbalock.
829 * The active bit is always set in the active rrq xri_bitmap even
830 * if there is no slot avaiable for the other rrq information.
831 *
832 * returns 0 rrq actived for this xri
833 * < 0 No memory or invalid ndlp.
834 **/
835int
836lpfc_set_rrq_active(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp,
James Smartb42c07c2012-01-18 16:25:55 -0500837 uint16_t xritag, uint16_t rxid, uint16_t send_rrq)
James Smart19ca7602010-11-20 23:11:55 -0500838{
James Smart19ca7602010-11-20 23:11:55 -0500839 unsigned long iflags;
James Smartb42c07c2012-01-18 16:25:55 -0500840 struct lpfc_node_rrq *rrq;
841 int empty;
842
843 if (!ndlp)
844 return -EINVAL;
845
846 if (!phba->cfg_enable_rrq)
847 return -EINVAL;
James Smart19ca7602010-11-20 23:11:55 -0500848
849 spin_lock_irqsave(&phba->hbalock, iflags);
James Smartb42c07c2012-01-18 16:25:55 -0500850 if (phba->pport->load_flag & FC_UNLOADING) {
851 phba->hba_flag &= ~HBA_RRQ_ACTIVE;
852 goto out;
853 }
854
855 /*
856 * set the active bit even if there is no mem available.
857 */
858 if (NLP_CHK_FREE_REQ(ndlp))
859 goto out;
860
861 if (ndlp->vport && (ndlp->vport->load_flag & FC_UNLOADING))
862 goto out;
863
864 if (test_and_set_bit(xritag, ndlp->active_rrqs.xri_bitmap))
865 goto out;
866
James Smart19ca7602010-11-20 23:11:55 -0500867 spin_unlock_irqrestore(&phba->hbalock, iflags);
James Smartb42c07c2012-01-18 16:25:55 -0500868 rrq = mempool_alloc(phba->rrq_pool, GFP_KERNEL);
869 if (!rrq) {
870 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
871 "3155 Unable to allocate RRQ xri:0x%x rxid:0x%x"
872 " DID:0x%x Send:%d\n",
873 xritag, rxid, ndlp->nlp_DID, send_rrq);
874 return -EINVAL;
875 }
James Smarte5771b42013-03-01 16:37:14 -0500876 if (phba->cfg_enable_rrq == 1)
877 rrq->send_rrq = send_rrq;
878 else
879 rrq->send_rrq = 0;
James Smartb42c07c2012-01-18 16:25:55 -0500880 rrq->xritag = xritag;
James Smart256ec0d2013-04-17 20:14:58 -0400881 rrq->rrq_stop_time = jiffies +
882 msecs_to_jiffies(1000 * (phba->fc_ratov + 1));
James Smartb42c07c2012-01-18 16:25:55 -0500883 rrq->ndlp = ndlp;
884 rrq->nlp_DID = ndlp->nlp_DID;
885 rrq->vport = ndlp->vport;
886 rrq->rxid = rxid;
James Smartb42c07c2012-01-18 16:25:55 -0500887 spin_lock_irqsave(&phba->hbalock, iflags);
888 empty = list_empty(&phba->active_rrq_list);
889 list_add_tail(&rrq->list, &phba->active_rrq_list);
890 phba->hba_flag |= HBA_RRQ_ACTIVE;
891 if (empty)
892 lpfc_worker_wake_up(phba);
893 spin_unlock_irqrestore(&phba->hbalock, iflags);
894 return 0;
895out:
896 spin_unlock_irqrestore(&phba->hbalock, iflags);
897 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
898 "2921 Can't set rrq active xri:0x%x rxid:0x%x"
899 " DID:0x%x Send:%d\n",
900 xritag, rxid, ndlp->nlp_DID, send_rrq);
901 return -EINVAL;
James Smart19ca7602010-11-20 23:11:55 -0500902}
903
904/**
James Smartda0436e2009-05-22 14:51:39 -0400905 * __lpfc_sli_get_sglq - Allocates an iocb object from sgl pool
906 * @phba: Pointer to HBA context object.
James Smart19ca7602010-11-20 23:11:55 -0500907 * @piocb: Pointer to the iocbq.
James Smartda0436e2009-05-22 14:51:39 -0400908 *
909 * This function is called with hbalock held. This function
James Smart6d368e52011-05-24 11:44:12 -0400910 * gets a new driver sglq object from the sglq list. If the
James Smartda0436e2009-05-22 14:51:39 -0400911 * list is not empty then it is successful, it returns pointer to the newly
912 * allocated sglq object else it returns NULL.
913 **/
914static struct lpfc_sglq *
James Smart19ca7602010-11-20 23:11:55 -0500915__lpfc_sli_get_sglq(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq)
James Smartda0436e2009-05-22 14:51:39 -0400916{
917 struct list_head *lpfc_sgl_list = &phba->sli4_hba.lpfc_sgl_list;
918 struct lpfc_sglq *sglq = NULL;
James Smart19ca7602010-11-20 23:11:55 -0500919 struct lpfc_sglq *start_sglq = NULL;
James Smart19ca7602010-11-20 23:11:55 -0500920 struct lpfc_scsi_buf *lpfc_cmd;
921 struct lpfc_nodelist *ndlp;
922 int found = 0;
923
924 if (piocbq->iocb_flag & LPFC_IO_FCP) {
925 lpfc_cmd = (struct lpfc_scsi_buf *) piocbq->context1;
926 ndlp = lpfc_cmd->rdata->pnode;
James Smartbe858b62010-12-15 17:57:20 -0500927 } else if ((piocbq->iocb.ulpCommand == CMD_GEN_REQUEST64_CR) &&
928 !(piocbq->iocb_flag & LPFC_IO_LIBDFC))
James Smart19ca7602010-11-20 23:11:55 -0500929 ndlp = piocbq->context_un.ndlp;
James Smartd5ce53b2013-04-17 20:17:26 -0400930 else if (piocbq->iocb_flag & LPFC_IO_LIBDFC)
James Smart93d1379e2012-05-09 21:19:34 -0400931 ndlp = piocbq->context_un.ndlp;
James Smart19ca7602010-11-20 23:11:55 -0500932 else
933 ndlp = piocbq->context1;
934
James Smartda0436e2009-05-22 14:51:39 -0400935 list_remove_head(lpfc_sgl_list, sglq, struct lpfc_sglq, list);
James Smart19ca7602010-11-20 23:11:55 -0500936 start_sglq = sglq;
937 while (!found) {
938 if (!sglq)
939 return NULL;
James Smartee0f4fe2012-05-09 21:19:14 -0400940 if (lpfc_test_rrq_active(phba, ndlp, sglq->sli4_lxritag)) {
James Smart19ca7602010-11-20 23:11:55 -0500941 /* This xri has an rrq outstanding for this DID.
942 * put it back in the list and get another xri.
943 */
944 list_add_tail(&sglq->list, lpfc_sgl_list);
945 sglq = NULL;
946 list_remove_head(lpfc_sgl_list, sglq,
947 struct lpfc_sglq, list);
948 if (sglq == start_sglq) {
949 sglq = NULL;
950 break;
951 } else
952 continue;
953 }
954 sglq->ndlp = ndlp;
955 found = 1;
James Smart6d368e52011-05-24 11:44:12 -0400956 phba->sli4_hba.lpfc_sglq_active_list[sglq->sli4_lxritag] = sglq;
James Smart19ca7602010-11-20 23:11:55 -0500957 sglq->state = SGL_ALLOCATED;
958 }
James Smartda0436e2009-05-22 14:51:39 -0400959 return sglq;
960}
961
962/**
James Smart3621a712009-04-06 18:47:14 -0400963 * lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
James Smarte59058c2008-08-24 21:49:00 -0400964 * @phba: Pointer to HBA context object.
965 *
966 * This function is called with no lock held. This function
967 * allocates a new driver iocb object from the iocb pool. If the
968 * allocation is successful, it returns pointer to the newly
969 * allocated iocb object else it returns NULL.
970 **/
James Smart2e0fef82007-06-17 19:56:36 -0500971struct lpfc_iocbq *
972lpfc_sli_get_iocbq(struct lpfc_hba *phba)
James Bottomley604a3e32005-10-29 10:28:33 -0500973{
James Smart2e0fef82007-06-17 19:56:36 -0500974 struct lpfc_iocbq * iocbq = NULL;
975 unsigned long iflags;
976
977 spin_lock_irqsave(&phba->hbalock, iflags);
978 iocbq = __lpfc_sli_get_iocbq(phba);
979 spin_unlock_irqrestore(&phba->hbalock, iflags);
980 return iocbq;
981}
982
James Smarte59058c2008-08-24 21:49:00 -0400983/**
James Smart4f774512009-05-22 14:52:35 -0400984 * __lpfc_sli_release_iocbq_s4 - Release iocb to the iocb pool
985 * @phba: Pointer to HBA context object.
986 * @iocbq: Pointer to driver iocb object.
987 *
988 * This function is called with hbalock held to release driver
989 * iocb object to the iocb pool. The iotag in the iocb object
990 * does not change for each use of the iocb object. This function
991 * clears all other fields of the iocb object when it is freed.
992 * The sqlq structure that holds the xritag and phys and virtual
993 * mappings for the scatter gather list is retrieved from the
994 * active array of sglq. The get of the sglq pointer also clears
995 * the entry in the array. If the status of the IO indiactes that
996 * this IO was aborted then the sglq entry it put on the
997 * lpfc_abts_els_sgl_list until the CQ_ABORTED_XRI is received. If the
998 * IO has good status or fails for any other reason then the sglq
999 * entry is added to the free list (lpfc_sgl_list).
1000 **/
1001static void
1002__lpfc_sli_release_iocbq_s4(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1003{
1004 struct lpfc_sglq *sglq;
1005 size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
James Smart2a9bf3d2010-06-07 15:24:45 -04001006 unsigned long iflag = 0;
1007 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
James Smart4f774512009-05-22 14:52:35 -04001008
1009 if (iocbq->sli4_xritag == NO_XRI)
1010 sglq = NULL;
1011 else
James Smart6d368e52011-05-24 11:44:12 -04001012 sglq = __lpfc_clear_active_sglq(phba, iocbq->sli4_lxritag);
1013
James Smart0e9bb8d2013-03-01 16:35:12 -05001014 /*
1015 ** This should have been removed from the txcmplq before calling
1016 ** iocbq_release. The normal completion
1017 ** path should have already done the list_del_init.
1018 */
1019 if (unlikely(!list_empty(&iocbq->list))) {
1020 if (iocbq->iocb_flag & LPFC_IO_ON_TXCMPLQ)
1021 iocbq->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
1022 list_del_init(&iocbq->list);
1023 }
1024
1025
James Smart4f774512009-05-22 14:52:35 -04001026 if (sglq) {
James Smart0f65ff62010-02-26 14:14:23 -05001027 if ((iocbq->iocb_flag & LPFC_EXCHANGE_BUSY) &&
1028 (sglq->state != SGL_XRI_ABORTED)) {
James Smart4f774512009-05-22 14:52:35 -04001029 spin_lock_irqsave(&phba->sli4_hba.abts_sgl_list_lock,
1030 iflag);
1031 list_add(&sglq->list,
1032 &phba->sli4_hba.lpfc_abts_els_sgl_list);
1033 spin_unlock_irqrestore(
1034 &phba->sli4_hba.abts_sgl_list_lock, iflag);
James Smart0f65ff62010-02-26 14:14:23 -05001035 } else {
1036 sglq->state = SGL_FREED;
James Smart19ca7602010-11-20 23:11:55 -05001037 sglq->ndlp = NULL;
James Smartfedd3b72011-02-16 12:39:24 -05001038 list_add_tail(&sglq->list,
1039 &phba->sli4_hba.lpfc_sgl_list);
James Smart2a9bf3d2010-06-07 15:24:45 -04001040
1041 /* Check if TXQ queue needs to be serviced */
James Smart0e9bb8d2013-03-01 16:35:12 -05001042 if (!list_empty(&pring->txq))
James Smart2a9bf3d2010-06-07 15:24:45 -04001043 lpfc_worker_wake_up(phba);
James Smart0f65ff62010-02-26 14:14:23 -05001044 }
James Smart4f774512009-05-22 14:52:35 -04001045 }
1046
1047
1048 /*
1049 * Clean all volatile data fields, preserve iotag and node struct.
1050 */
1051 memset((char *)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
James Smart6d368e52011-05-24 11:44:12 -04001052 iocbq->sli4_lxritag = NO_XRI;
James Smart4f774512009-05-22 14:52:35 -04001053 iocbq->sli4_xritag = NO_XRI;
1054 list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
1055}
1056
James Smart2a9bf3d2010-06-07 15:24:45 -04001057
James Smart4f774512009-05-22 14:52:35 -04001058/**
James Smart3772a992009-05-22 14:50:54 -04001059 * __lpfc_sli_release_iocbq_s3 - Release iocb to the iocb pool
1060 * @phba: Pointer to HBA context object.
1061 * @iocbq: Pointer to driver iocb object.
1062 *
1063 * This function is called with hbalock held to release driver
1064 * iocb object to the iocb pool. The iotag in the iocb object
1065 * does not change for each use of the iocb object. This function
1066 * clears all other fields of the iocb object when it is freed.
1067 **/
1068static void
1069__lpfc_sli_release_iocbq_s3(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1070{
1071 size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
1072
1073 /*
James Smart0e9bb8d2013-03-01 16:35:12 -05001074 ** This should have been removed from the txcmplq before calling
1075 ** iocbq_release. The normal completion
1076 ** path should have already done the list_del_init.
1077 */
1078 if (unlikely(!list_empty(&iocbq->list)))
1079 list_del_init(&iocbq->list);
1080
1081 /*
James Smart3772a992009-05-22 14:50:54 -04001082 * Clean all volatile data fields, preserve iotag and node struct.
1083 */
1084 memset((char*)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
1085 iocbq->sli4_xritag = NO_XRI;
1086 list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
1087}
1088
1089/**
James Smart3621a712009-04-06 18:47:14 -04001090 * __lpfc_sli_release_iocbq - Release iocb to the iocb pool
James Smarte59058c2008-08-24 21:49:00 -04001091 * @phba: Pointer to HBA context object.
1092 * @iocbq: Pointer to driver iocb object.
1093 *
1094 * This function is called with hbalock held to release driver
1095 * iocb object to the iocb pool. The iotag in the iocb object
1096 * does not change for each use of the iocb object. This function
1097 * clears all other fields of the iocb object when it is freed.
1098 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01001099static void
James Smart2e0fef82007-06-17 19:56:36 -05001100__lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1101{
James Smart3772a992009-05-22 14:50:54 -04001102 phba->__lpfc_sli_release_iocbq(phba, iocbq);
James Smart2a9bf3d2010-06-07 15:24:45 -04001103 phba->iocb_cnt--;
James Bottomley604a3e32005-10-29 10:28:33 -05001104}
1105
James Smarte59058c2008-08-24 21:49:00 -04001106/**
James Smart3621a712009-04-06 18:47:14 -04001107 * lpfc_sli_release_iocbq - Release iocb to the iocb pool
James Smarte59058c2008-08-24 21:49:00 -04001108 * @phba: Pointer to HBA context object.
1109 * @iocbq: Pointer to driver iocb object.
1110 *
1111 * This function is called with no lock held to release the iocb to
1112 * iocb pool.
1113 **/
James Smart2e0fef82007-06-17 19:56:36 -05001114void
1115lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1116{
1117 unsigned long iflags;
1118
1119 /*
1120 * Clean all volatile data fields, preserve iotag and node struct.
1121 */
1122 spin_lock_irqsave(&phba->hbalock, iflags);
1123 __lpfc_sli_release_iocbq(phba, iocbq);
1124 spin_unlock_irqrestore(&phba->hbalock, iflags);
1125}
1126
James Smarte59058c2008-08-24 21:49:00 -04001127/**
James Smarta257bf92009-04-06 18:48:10 -04001128 * lpfc_sli_cancel_iocbs - Cancel all iocbs from a list.
1129 * @phba: Pointer to HBA context object.
1130 * @iocblist: List of IOCBs.
1131 * @ulpstatus: ULP status in IOCB command field.
1132 * @ulpWord4: ULP word-4 in IOCB command field.
1133 *
1134 * This function is called with a list of IOCBs to cancel. It cancels the IOCB
1135 * on the list by invoking the complete callback function associated with the
1136 * IOCB with the provided @ulpstatus and @ulpword4 set to the IOCB commond
1137 * fields.
1138 **/
1139void
1140lpfc_sli_cancel_iocbs(struct lpfc_hba *phba, struct list_head *iocblist,
1141 uint32_t ulpstatus, uint32_t ulpWord4)
1142{
1143 struct lpfc_iocbq *piocb;
1144
1145 while (!list_empty(iocblist)) {
1146 list_remove_head(iocblist, piocb, struct lpfc_iocbq, list);
James Smarta257bf92009-04-06 18:48:10 -04001147 if (!piocb->iocb_cmpl)
1148 lpfc_sli_release_iocbq(phba, piocb);
1149 else {
1150 piocb->iocb.ulpStatus = ulpstatus;
1151 piocb->iocb.un.ulpWord[4] = ulpWord4;
1152 (piocb->iocb_cmpl) (phba, piocb, piocb);
1153 }
1154 }
1155 return;
1156}
1157
1158/**
James Smart3621a712009-04-06 18:47:14 -04001159 * lpfc_sli_iocb_cmd_type - Get the iocb type
1160 * @iocb_cmnd: iocb command code.
James Smarte59058c2008-08-24 21:49:00 -04001161 *
1162 * This function is called by ring event handler function to get the iocb type.
1163 * This function translates the iocb command to an iocb command type used to
1164 * decide the final disposition of each completed IOCB.
1165 * The function returns
1166 * LPFC_UNKNOWN_IOCB if it is an unsupported iocb
1167 * LPFC_SOL_IOCB if it is a solicited iocb completion
1168 * LPFC_ABORT_IOCB if it is an abort iocb
1169 * LPFC_UNSOL_IOCB if it is an unsolicited iocb
1170 *
1171 * The caller is not required to hold any lock.
1172 **/
dea31012005-04-17 16:05:31 -05001173static lpfc_iocb_type
1174lpfc_sli_iocb_cmd_type(uint8_t iocb_cmnd)
1175{
1176 lpfc_iocb_type type = LPFC_UNKNOWN_IOCB;
1177
1178 if (iocb_cmnd > CMD_MAX_IOCB_CMD)
1179 return 0;
1180
1181 switch (iocb_cmnd) {
1182 case CMD_XMIT_SEQUENCE_CR:
1183 case CMD_XMIT_SEQUENCE_CX:
1184 case CMD_XMIT_BCAST_CN:
1185 case CMD_XMIT_BCAST_CX:
1186 case CMD_ELS_REQUEST_CR:
1187 case CMD_ELS_REQUEST_CX:
1188 case CMD_CREATE_XRI_CR:
1189 case CMD_CREATE_XRI_CX:
1190 case CMD_GET_RPI_CN:
1191 case CMD_XMIT_ELS_RSP_CX:
1192 case CMD_GET_RPI_CR:
1193 case CMD_FCP_IWRITE_CR:
1194 case CMD_FCP_IWRITE_CX:
1195 case CMD_FCP_IREAD_CR:
1196 case CMD_FCP_IREAD_CX:
1197 case CMD_FCP_ICMND_CR:
1198 case CMD_FCP_ICMND_CX:
James Smartf5603512006-12-02 13:35:43 -05001199 case CMD_FCP_TSEND_CX:
1200 case CMD_FCP_TRSP_CX:
1201 case CMD_FCP_TRECEIVE_CX:
1202 case CMD_FCP_AUTO_TRSP_CX:
dea31012005-04-17 16:05:31 -05001203 case CMD_ADAPTER_MSG:
1204 case CMD_ADAPTER_DUMP:
1205 case CMD_XMIT_SEQUENCE64_CR:
1206 case CMD_XMIT_SEQUENCE64_CX:
1207 case CMD_XMIT_BCAST64_CN:
1208 case CMD_XMIT_BCAST64_CX:
1209 case CMD_ELS_REQUEST64_CR:
1210 case CMD_ELS_REQUEST64_CX:
1211 case CMD_FCP_IWRITE64_CR:
1212 case CMD_FCP_IWRITE64_CX:
1213 case CMD_FCP_IREAD64_CR:
1214 case CMD_FCP_IREAD64_CX:
1215 case CMD_FCP_ICMND64_CR:
1216 case CMD_FCP_ICMND64_CX:
James Smartf5603512006-12-02 13:35:43 -05001217 case CMD_FCP_TSEND64_CX:
1218 case CMD_FCP_TRSP64_CX:
1219 case CMD_FCP_TRECEIVE64_CX:
dea31012005-04-17 16:05:31 -05001220 case CMD_GEN_REQUEST64_CR:
1221 case CMD_GEN_REQUEST64_CX:
1222 case CMD_XMIT_ELS_RSP64_CX:
James Smartda0436e2009-05-22 14:51:39 -04001223 case DSSCMD_IWRITE64_CR:
1224 case DSSCMD_IWRITE64_CX:
1225 case DSSCMD_IREAD64_CR:
1226 case DSSCMD_IREAD64_CX:
dea31012005-04-17 16:05:31 -05001227 type = LPFC_SOL_IOCB;
1228 break;
1229 case CMD_ABORT_XRI_CN:
1230 case CMD_ABORT_XRI_CX:
1231 case CMD_CLOSE_XRI_CN:
1232 case CMD_CLOSE_XRI_CX:
1233 case CMD_XRI_ABORTED_CX:
1234 case CMD_ABORT_MXRI64_CN:
James Smart6669f9b2009-10-02 15:16:45 -04001235 case CMD_XMIT_BLS_RSP64_CX:
dea31012005-04-17 16:05:31 -05001236 type = LPFC_ABORT_IOCB;
1237 break;
1238 case CMD_RCV_SEQUENCE_CX:
1239 case CMD_RCV_ELS_REQ_CX:
1240 case CMD_RCV_SEQUENCE64_CX:
1241 case CMD_RCV_ELS_REQ64_CX:
James Smart57127f12007-10-27 13:37:05 -04001242 case CMD_ASYNC_STATUS:
James Smarted957682007-06-17 19:56:37 -05001243 case CMD_IOCB_RCV_SEQ64_CX:
1244 case CMD_IOCB_RCV_ELS64_CX:
1245 case CMD_IOCB_RCV_CONT64_CX:
James Smart3163f722008-02-08 18:50:25 -05001246 case CMD_IOCB_RET_XRI64_CX:
dea31012005-04-17 16:05:31 -05001247 type = LPFC_UNSOL_IOCB;
1248 break;
James Smart3163f722008-02-08 18:50:25 -05001249 case CMD_IOCB_XMIT_MSEQ64_CR:
1250 case CMD_IOCB_XMIT_MSEQ64_CX:
1251 case CMD_IOCB_RCV_SEQ_LIST64_CX:
1252 case CMD_IOCB_RCV_ELS_LIST64_CX:
1253 case CMD_IOCB_CLOSE_EXTENDED_CN:
1254 case CMD_IOCB_ABORT_EXTENDED_CN:
1255 case CMD_IOCB_RET_HBQE64_CN:
1256 case CMD_IOCB_FCP_IBIDIR64_CR:
1257 case CMD_IOCB_FCP_IBIDIR64_CX:
1258 case CMD_IOCB_FCP_ITASKMGT64_CX:
1259 case CMD_IOCB_LOGENTRY_CN:
1260 case CMD_IOCB_LOGENTRY_ASYNC_CN:
1261 printk("%s - Unhandled SLI-3 Command x%x\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07001262 __func__, iocb_cmnd);
James Smart3163f722008-02-08 18:50:25 -05001263 type = LPFC_UNKNOWN_IOCB;
1264 break;
dea31012005-04-17 16:05:31 -05001265 default:
1266 type = LPFC_UNKNOWN_IOCB;
1267 break;
1268 }
1269
1270 return type;
1271}
1272
James Smarte59058c2008-08-24 21:49:00 -04001273/**
James Smart3621a712009-04-06 18:47:14 -04001274 * lpfc_sli_ring_map - Issue config_ring mbox for all rings
James Smarte59058c2008-08-24 21:49:00 -04001275 * @phba: Pointer to HBA context object.
1276 *
1277 * This function is called from SLI initialization code
1278 * to configure every ring of the HBA's SLI interface. The
1279 * caller is not required to hold any lock. This function issues
1280 * a config_ring mailbox command for each ring.
1281 * This function returns zero if successful else returns a negative
1282 * error code.
1283 **/
dea31012005-04-17 16:05:31 -05001284static int
James Smarted957682007-06-17 19:56:37 -05001285lpfc_sli_ring_map(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05001286{
1287 struct lpfc_sli *psli = &phba->sli;
James Smarted957682007-06-17 19:56:37 -05001288 LPFC_MBOXQ_t *pmb;
1289 MAILBOX_t *pmbox;
1290 int i, rc, ret = 0;
dea31012005-04-17 16:05:31 -05001291
James Smarted957682007-06-17 19:56:37 -05001292 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
1293 if (!pmb)
1294 return -ENOMEM;
James Smart04c68492009-05-22 14:52:52 -04001295 pmbox = &pmb->u.mb;
James Smarted957682007-06-17 19:56:37 -05001296 phba->link_state = LPFC_INIT_MBX_CMDS;
dea31012005-04-17 16:05:31 -05001297 for (i = 0; i < psli->num_rings; i++) {
dea31012005-04-17 16:05:31 -05001298 lpfc_config_ring(phba, i, pmb);
1299 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
1300 if (rc != MBX_SUCCESS) {
James Smart92d7f7b2007-06-17 19:56:38 -05001301 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04001302 "0446 Adapter failed to init (%d), "
dea31012005-04-17 16:05:31 -05001303 "mbxCmd x%x CFG_RING, mbxStatus x%x, "
1304 "ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -04001305 rc, pmbox->mbxCommand,
1306 pmbox->mbxStatus, i);
James Smart2e0fef82007-06-17 19:56:36 -05001307 phba->link_state = LPFC_HBA_ERROR;
James Smarted957682007-06-17 19:56:37 -05001308 ret = -ENXIO;
1309 break;
dea31012005-04-17 16:05:31 -05001310 }
1311 }
James Smarted957682007-06-17 19:56:37 -05001312 mempool_free(pmb, phba->mbox_mem_pool);
1313 return ret;
dea31012005-04-17 16:05:31 -05001314}
1315
James Smarte59058c2008-08-24 21:49:00 -04001316/**
James Smart3621a712009-04-06 18:47:14 -04001317 * lpfc_sli_ringtxcmpl_put - Adds new iocb to the txcmplq
James Smarte59058c2008-08-24 21:49:00 -04001318 * @phba: Pointer to HBA context object.
1319 * @pring: Pointer to driver SLI ring object.
1320 * @piocb: Pointer to the driver iocb object.
1321 *
1322 * This function is called with hbalock held. The function adds the
1323 * new iocb to txcmplq of the given ring. This function always returns
1324 * 0. If this function is called for ELS ring, this function checks if
1325 * there is a vport associated with the ELS command. This function also
1326 * starts els_tmofunc timer if this is an ELS command.
1327 **/
dea31012005-04-17 16:05:31 -05001328static int
James Smart2e0fef82007-06-17 19:56:36 -05001329lpfc_sli_ringtxcmpl_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
1330 struct lpfc_iocbq *piocb)
dea31012005-04-17 16:05:31 -05001331{
dea31012005-04-17 16:05:31 -05001332 list_add_tail(&piocb->list, &pring->txcmplq);
James Smart4f2e66c2012-05-09 21:17:07 -04001333 piocb->iocb_flag |= LPFC_IO_ON_TXCMPLQ;
James Smart2a9bf3d2010-06-07 15:24:45 -04001334
James Smart92d7f7b2007-06-17 19:56:38 -05001335 if ((unlikely(pring->ringno == LPFC_ELS_RING)) &&
1336 (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
1337 (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) {
1338 if (!piocb->vport)
1339 BUG();
1340 else
1341 mod_timer(&piocb->vport->els_tmofunc,
James Smart256ec0d2013-04-17 20:14:58 -04001342 jiffies +
1343 msecs_to_jiffies(1000 * (phba->fc_ratov << 1)));
James Smart92d7f7b2007-06-17 19:56:38 -05001344 }
1345
dea31012005-04-17 16:05:31 -05001346
James Smart2e0fef82007-06-17 19:56:36 -05001347 return 0;
dea31012005-04-17 16:05:31 -05001348}
1349
James Smarte59058c2008-08-24 21:49:00 -04001350/**
James Smart3621a712009-04-06 18:47:14 -04001351 * lpfc_sli_ringtx_get - Get first element of the txq
James Smarte59058c2008-08-24 21:49:00 -04001352 * @phba: Pointer to HBA context object.
1353 * @pring: Pointer to driver SLI ring object.
1354 *
1355 * This function is called with hbalock held to get next
1356 * iocb in txq of the given ring. If there is any iocb in
1357 * the txq, the function returns first iocb in the list after
1358 * removing the iocb from the list, else it returns NULL.
1359 **/
James Smart2a9bf3d2010-06-07 15:24:45 -04001360struct lpfc_iocbq *
James Smart2e0fef82007-06-17 19:56:36 -05001361lpfc_sli_ringtx_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea31012005-04-17 16:05:31 -05001362{
dea31012005-04-17 16:05:31 -05001363 struct lpfc_iocbq *cmd_iocb;
1364
James Smart858c9f62007-06-17 19:56:39 -05001365 list_remove_head((&pring->txq), cmd_iocb, struct lpfc_iocbq, list);
James Smart2e0fef82007-06-17 19:56:36 -05001366 return cmd_iocb;
dea31012005-04-17 16:05:31 -05001367}
1368
James Smarte59058c2008-08-24 21:49:00 -04001369/**
James Smart3621a712009-04-06 18:47:14 -04001370 * lpfc_sli_next_iocb_slot - Get next iocb slot in the ring
James Smarte59058c2008-08-24 21:49:00 -04001371 * @phba: Pointer to HBA context object.
1372 * @pring: Pointer to driver SLI ring object.
1373 *
1374 * This function is called with hbalock held and the caller must post the
1375 * iocb without releasing the lock. If the caller releases the lock,
1376 * iocb slot returned by the function is not guaranteed to be available.
1377 * The function returns pointer to the next available iocb slot if there
1378 * is available slot in the ring, else it returns NULL.
1379 * If the get index of the ring is ahead of the put index, the function
1380 * will post an error attention event to the worker thread to take the
1381 * HBA to offline state.
1382 **/
dea31012005-04-17 16:05:31 -05001383static IOCB_t *
1384lpfc_sli_next_iocb_slot (struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
1385{
James Smart34b02dc2008-08-24 21:49:55 -04001386 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
James Smart7e56aa22012-08-03 12:35:34 -04001387 uint32_t max_cmd_idx = pring->sli.sli3.numCiocb;
1388 if ((pring->sli.sli3.next_cmdidx == pring->sli.sli3.cmdidx) &&
1389 (++pring->sli.sli3.next_cmdidx >= max_cmd_idx))
1390 pring->sli.sli3.next_cmdidx = 0;
dea31012005-04-17 16:05:31 -05001391
James Smart7e56aa22012-08-03 12:35:34 -04001392 if (unlikely(pring->sli.sli3.local_getidx ==
1393 pring->sli.sli3.next_cmdidx)) {
dea31012005-04-17 16:05:31 -05001394
James Smart7e56aa22012-08-03 12:35:34 -04001395 pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
dea31012005-04-17 16:05:31 -05001396
James Smart7e56aa22012-08-03 12:35:34 -04001397 if (unlikely(pring->sli.sli3.local_getidx >= max_cmd_idx)) {
dea31012005-04-17 16:05:31 -05001398 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04001399 "0315 Ring %d issue: portCmdGet %d "
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02001400 "is bigger than cmd ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -04001401 pring->ringno,
James Smart7e56aa22012-08-03 12:35:34 -04001402 pring->sli.sli3.local_getidx,
1403 max_cmd_idx);
dea31012005-04-17 16:05:31 -05001404
James Smart2e0fef82007-06-17 19:56:36 -05001405 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05001406 /*
1407 * All error attention handlers are posted to
1408 * worker thread
1409 */
1410 phba->work_ha |= HA_ERATT;
1411 phba->work_hs = HS_FFER3;
James Smart92d7f7b2007-06-17 19:56:38 -05001412
James Smart5e9d9b82008-06-14 22:52:53 -04001413 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -05001414
1415 return NULL;
1416 }
1417
James Smart7e56aa22012-08-03 12:35:34 -04001418 if (pring->sli.sli3.local_getidx == pring->sli.sli3.next_cmdidx)
dea31012005-04-17 16:05:31 -05001419 return NULL;
1420 }
1421
James Smarted957682007-06-17 19:56:37 -05001422 return lpfc_cmd_iocb(phba, pring);
dea31012005-04-17 16:05:31 -05001423}
1424
James Smarte59058c2008-08-24 21:49:00 -04001425/**
James Smart3621a712009-04-06 18:47:14 -04001426 * lpfc_sli_next_iotag - Get an iotag for the iocb
James Smarte59058c2008-08-24 21:49:00 -04001427 * @phba: Pointer to HBA context object.
1428 * @iocbq: Pointer to driver iocb object.
1429 *
1430 * This function gets an iotag for the iocb. If there is no unused iotag and
1431 * the iocbq_lookup_len < 0xffff, this function allocates a bigger iotag_lookup
1432 * array and assigns a new iotag.
1433 * The function returns the allocated iotag if successful, else returns zero.
1434 * Zero is not a valid iotag.
1435 * The caller is not required to hold any lock.
1436 **/
James Bottomley604a3e32005-10-29 10:28:33 -05001437uint16_t
James Smart2e0fef82007-06-17 19:56:36 -05001438lpfc_sli_next_iotag(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
dea31012005-04-17 16:05:31 -05001439{
James Smart2e0fef82007-06-17 19:56:36 -05001440 struct lpfc_iocbq **new_arr;
1441 struct lpfc_iocbq **old_arr;
James Bottomley604a3e32005-10-29 10:28:33 -05001442 size_t new_len;
1443 struct lpfc_sli *psli = &phba->sli;
1444 uint16_t iotag;
dea31012005-04-17 16:05:31 -05001445
James Smart2e0fef82007-06-17 19:56:36 -05001446 spin_lock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001447 iotag = psli->last_iotag;
1448 if(++iotag < psli->iocbq_lookup_len) {
1449 psli->last_iotag = iotag;
1450 psli->iocbq_lookup[iotag] = iocbq;
James Smart2e0fef82007-06-17 19:56:36 -05001451 spin_unlock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001452 iocbq->iotag = iotag;
1453 return iotag;
James Smart2e0fef82007-06-17 19:56:36 -05001454 } else if (psli->iocbq_lookup_len < (0xffff
James Bottomley604a3e32005-10-29 10:28:33 -05001455 - LPFC_IOCBQ_LOOKUP_INCREMENT)) {
1456 new_len = psli->iocbq_lookup_len + LPFC_IOCBQ_LOOKUP_INCREMENT;
James Smart2e0fef82007-06-17 19:56:36 -05001457 spin_unlock_irq(&phba->hbalock);
1458 new_arr = kzalloc(new_len * sizeof (struct lpfc_iocbq *),
James Bottomley604a3e32005-10-29 10:28:33 -05001459 GFP_KERNEL);
1460 if (new_arr) {
James Smart2e0fef82007-06-17 19:56:36 -05001461 spin_lock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001462 old_arr = psli->iocbq_lookup;
1463 if (new_len <= psli->iocbq_lookup_len) {
1464 /* highly unprobable case */
1465 kfree(new_arr);
1466 iotag = psli->last_iotag;
1467 if(++iotag < psli->iocbq_lookup_len) {
1468 psli->last_iotag = iotag;
1469 psli->iocbq_lookup[iotag] = iocbq;
James Smart2e0fef82007-06-17 19:56:36 -05001470 spin_unlock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001471 iocbq->iotag = iotag;
1472 return iotag;
1473 }
James Smart2e0fef82007-06-17 19:56:36 -05001474 spin_unlock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001475 return 0;
1476 }
1477 if (psli->iocbq_lookup)
1478 memcpy(new_arr, old_arr,
1479 ((psli->last_iotag + 1) *
James Smart311464e2007-08-02 11:10:37 -04001480 sizeof (struct lpfc_iocbq *)));
James Bottomley604a3e32005-10-29 10:28:33 -05001481 psli->iocbq_lookup = new_arr;
1482 psli->iocbq_lookup_len = new_len;
1483 psli->last_iotag = iotag;
1484 psli->iocbq_lookup[iotag] = iocbq;
James Smart2e0fef82007-06-17 19:56:36 -05001485 spin_unlock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001486 iocbq->iotag = iotag;
1487 kfree(old_arr);
1488 return iotag;
1489 }
James Smart8f6d98d2006-08-01 07:34:00 -04001490 } else
James Smart2e0fef82007-06-17 19:56:36 -05001491 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001492
James Smartbc739052010-08-04 16:11:18 -04001493 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04001494 "0318 Failed to allocate IOTAG.last IOTAG is %d\n",
1495 psli->last_iotag);
dea31012005-04-17 16:05:31 -05001496
James Bottomley604a3e32005-10-29 10:28:33 -05001497 return 0;
dea31012005-04-17 16:05:31 -05001498}
1499
James Smarte59058c2008-08-24 21:49:00 -04001500/**
James Smart3621a712009-04-06 18:47:14 -04001501 * lpfc_sli_submit_iocb - Submit an iocb to the firmware
James Smarte59058c2008-08-24 21:49:00 -04001502 * @phba: Pointer to HBA context object.
1503 * @pring: Pointer to driver SLI ring object.
1504 * @iocb: Pointer to iocb slot in the ring.
1505 * @nextiocb: Pointer to driver iocb object which need to be
1506 * posted to firmware.
1507 *
1508 * This function is called with hbalock held to post a new iocb to
1509 * the firmware. This function copies the new iocb to ring iocb slot and
1510 * updates the ring pointers. It adds the new iocb to txcmplq if there is
1511 * a completion call back for this iocb else the function will free the
1512 * iocb object.
1513 **/
dea31012005-04-17 16:05:31 -05001514static void
1515lpfc_sli_submit_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
1516 IOCB_t *iocb, struct lpfc_iocbq *nextiocb)
1517{
1518 /*
James Bottomley604a3e32005-10-29 10:28:33 -05001519 * Set up an iotag
dea31012005-04-17 16:05:31 -05001520 */
James Bottomley604a3e32005-10-29 10:28:33 -05001521 nextiocb->iocb.ulpIoTag = (nextiocb->iocb_cmpl) ? nextiocb->iotag : 0;
dea31012005-04-17 16:05:31 -05001522
James Smarte2a0a9d2008-12-04 22:40:02 -05001523
James Smarta58cbd52007-08-02 11:09:43 -04001524 if (pring->ringno == LPFC_ELS_RING) {
1525 lpfc_debugfs_slow_ring_trc(phba,
1526 "IOCB cmd ring: wd4:x%08x wd6:x%08x wd7:x%08x",
1527 *(((uint32_t *) &nextiocb->iocb) + 4),
1528 *(((uint32_t *) &nextiocb->iocb) + 6),
1529 *(((uint32_t *) &nextiocb->iocb) + 7));
1530 }
1531
dea31012005-04-17 16:05:31 -05001532 /*
1533 * Issue iocb command to adapter
1534 */
James Smart92d7f7b2007-06-17 19:56:38 -05001535 lpfc_sli_pcimem_bcopy(&nextiocb->iocb, iocb, phba->iocb_cmd_size);
dea31012005-04-17 16:05:31 -05001536 wmb();
1537 pring->stats.iocb_cmd++;
1538
1539 /*
1540 * If there is no completion routine to call, we can release the
1541 * IOCB buffer back right now. For IOCBs, like QUE_RING_BUF,
1542 * that have no rsp ring completion, iocb_cmpl MUST be NULL.
1543 */
1544 if (nextiocb->iocb_cmpl)
1545 lpfc_sli_ringtxcmpl_put(phba, pring, nextiocb);
James Bottomley604a3e32005-10-29 10:28:33 -05001546 else
James Smart2e0fef82007-06-17 19:56:36 -05001547 __lpfc_sli_release_iocbq(phba, nextiocb);
dea31012005-04-17 16:05:31 -05001548
1549 /*
1550 * Let the HBA know what IOCB slot will be the next one the
1551 * driver will put a command into.
1552 */
James Smart7e56aa22012-08-03 12:35:34 -04001553 pring->sli.sli3.cmdidx = pring->sli.sli3.next_cmdidx;
1554 writel(pring->sli.sli3.cmdidx, &phba->host_gp[pring->ringno].cmdPutInx);
dea31012005-04-17 16:05:31 -05001555}
1556
James Smarte59058c2008-08-24 21:49:00 -04001557/**
James Smart3621a712009-04-06 18:47:14 -04001558 * lpfc_sli_update_full_ring - Update the chip attention register
James Smarte59058c2008-08-24 21:49:00 -04001559 * @phba: Pointer to HBA context object.
1560 * @pring: Pointer to driver SLI ring object.
1561 *
1562 * The caller is not required to hold any lock for calling this function.
1563 * This function updates the chip attention bits for the ring to inform firmware
1564 * that there are pending work to be done for this ring and requests an
1565 * interrupt when there is space available in the ring. This function is
1566 * called when the driver is unable to post more iocbs to the ring due
1567 * to unavailability of space in the ring.
1568 **/
dea31012005-04-17 16:05:31 -05001569static void
James Smart2e0fef82007-06-17 19:56:36 -05001570lpfc_sli_update_full_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea31012005-04-17 16:05:31 -05001571{
1572 int ringno = pring->ringno;
1573
1574 pring->flag |= LPFC_CALL_RING_AVAILABLE;
1575
1576 wmb();
1577
1578 /*
1579 * Set ring 'ringno' to SET R0CE_REQ in Chip Att register.
1580 * The HBA will tell us when an IOCB entry is available.
1581 */
1582 writel((CA_R0ATT|CA_R0CE_REQ) << (ringno*4), phba->CAregaddr);
1583 readl(phba->CAregaddr); /* flush */
1584
1585 pring->stats.iocb_cmd_full++;
1586}
1587
James Smarte59058c2008-08-24 21:49:00 -04001588/**
James Smart3621a712009-04-06 18:47:14 -04001589 * lpfc_sli_update_ring - Update chip attention register
James Smarte59058c2008-08-24 21:49:00 -04001590 * @phba: Pointer to HBA context object.
1591 * @pring: Pointer to driver SLI ring object.
1592 *
1593 * This function updates the chip attention register bit for the
1594 * given ring to inform HBA that there is more work to be done
1595 * in this ring. The caller is not required to hold any lock.
1596 **/
dea31012005-04-17 16:05:31 -05001597static void
James Smart2e0fef82007-06-17 19:56:36 -05001598lpfc_sli_update_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea31012005-04-17 16:05:31 -05001599{
1600 int ringno = pring->ringno;
1601
1602 /*
1603 * Tell the HBA that there is work to do in this ring.
1604 */
James Smart34b02dc2008-08-24 21:49:55 -04001605 if (!(phba->sli3_options & LPFC_SLI3_CRP_ENABLED)) {
1606 wmb();
1607 writel(CA_R0ATT << (ringno * 4), phba->CAregaddr);
1608 readl(phba->CAregaddr); /* flush */
1609 }
dea31012005-04-17 16:05:31 -05001610}
1611
James Smarte59058c2008-08-24 21:49:00 -04001612/**
James Smart3621a712009-04-06 18:47:14 -04001613 * lpfc_sli_resume_iocb - Process iocbs in the txq
James Smarte59058c2008-08-24 21:49:00 -04001614 * @phba: Pointer to HBA context object.
1615 * @pring: Pointer to driver SLI ring object.
1616 *
1617 * This function is called with hbalock held to post pending iocbs
1618 * in the txq to the firmware. This function is called when driver
1619 * detects space available in the ring.
1620 **/
dea31012005-04-17 16:05:31 -05001621static void
James Smart2e0fef82007-06-17 19:56:36 -05001622lpfc_sli_resume_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea31012005-04-17 16:05:31 -05001623{
1624 IOCB_t *iocb;
1625 struct lpfc_iocbq *nextiocb;
1626
1627 /*
1628 * Check to see if:
1629 * (a) there is anything on the txq to send
1630 * (b) link is up
1631 * (c) link attention events can be processed (fcp ring only)
1632 * (d) IOCB processing is not blocked by the outstanding mbox command.
1633 */
James Smart0e9bb8d2013-03-01 16:35:12 -05001634
1635 if (lpfc_is_link_up(phba) &&
1636 (!list_empty(&pring->txq)) &&
dea31012005-04-17 16:05:31 -05001637 (pring->ringno != phba->sli.fcp_ring ||
James Smart0b727fe2007-10-27 13:37:25 -04001638 phba->sli.sli_flag & LPFC_PROCESS_LA)) {
dea31012005-04-17 16:05:31 -05001639
1640 while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
1641 (nextiocb = lpfc_sli_ringtx_get(phba, pring)))
1642 lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
1643
1644 if (iocb)
1645 lpfc_sli_update_ring(phba, pring);
1646 else
1647 lpfc_sli_update_full_ring(phba, pring);
1648 }
1649
1650 return;
1651}
1652
James Smarte59058c2008-08-24 21:49:00 -04001653/**
James Smart3621a712009-04-06 18:47:14 -04001654 * lpfc_sli_next_hbq_slot - Get next hbq entry for the HBQ
James Smarte59058c2008-08-24 21:49:00 -04001655 * @phba: Pointer to HBA context object.
1656 * @hbqno: HBQ number.
1657 *
1658 * This function is called with hbalock held to get the next
1659 * available slot for the given HBQ. If there is free slot
1660 * available for the HBQ it will return pointer to the next available
1661 * HBQ entry else it will return NULL.
1662 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01001663static struct lpfc_hbq_entry *
James Smarted957682007-06-17 19:56:37 -05001664lpfc_sli_next_hbq_slot(struct lpfc_hba *phba, uint32_t hbqno)
1665{
1666 struct hbq_s *hbqp = &phba->hbqs[hbqno];
1667
1668 if (hbqp->next_hbqPutIdx == hbqp->hbqPutIdx &&
1669 ++hbqp->next_hbqPutIdx >= hbqp->entry_count)
1670 hbqp->next_hbqPutIdx = 0;
1671
1672 if (unlikely(hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)) {
James Smart92d7f7b2007-06-17 19:56:38 -05001673 uint32_t raw_index = phba->hbq_get[hbqno];
James Smarted957682007-06-17 19:56:37 -05001674 uint32_t getidx = le32_to_cpu(raw_index);
1675
1676 hbqp->local_hbqGetIdx = getidx;
1677
1678 if (unlikely(hbqp->local_hbqGetIdx >= hbqp->entry_count)) {
1679 lpfc_printf_log(phba, KERN_ERR,
James Smart92d7f7b2007-06-17 19:56:38 -05001680 LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04001681 "1802 HBQ %d: local_hbqGetIdx "
James Smarted957682007-06-17 19:56:37 -05001682 "%u is > than hbqp->entry_count %u\n",
James Smarte8b62012007-08-02 11:10:09 -04001683 hbqno, hbqp->local_hbqGetIdx,
James Smarted957682007-06-17 19:56:37 -05001684 hbqp->entry_count);
1685
1686 phba->link_state = LPFC_HBA_ERROR;
1687 return NULL;
1688 }
1689
1690 if (hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)
1691 return NULL;
1692 }
1693
James Smart51ef4c22007-08-02 11:10:31 -04001694 return (struct lpfc_hbq_entry *) phba->hbqs[hbqno].hbq_virt +
1695 hbqp->hbqPutIdx;
James Smarted957682007-06-17 19:56:37 -05001696}
1697
James Smarte59058c2008-08-24 21:49:00 -04001698/**
James Smart3621a712009-04-06 18:47:14 -04001699 * lpfc_sli_hbqbuf_free_all - Free all the hbq buffers
James Smarte59058c2008-08-24 21:49:00 -04001700 * @phba: Pointer to HBA context object.
1701 *
1702 * This function is called with no lock held to free all the
1703 * hbq buffers while uninitializing the SLI interface. It also
1704 * frees the HBQ buffers returned by the firmware but not yet
1705 * processed by the upper layers.
1706 **/
James Smarted957682007-06-17 19:56:37 -05001707void
1708lpfc_sli_hbqbuf_free_all(struct lpfc_hba *phba)
1709{
James Smart92d7f7b2007-06-17 19:56:38 -05001710 struct lpfc_dmabuf *dmabuf, *next_dmabuf;
1711 struct hbq_dmabuf *hbq_buf;
James Smart3163f722008-02-08 18:50:25 -05001712 unsigned long flags;
James Smart51ef4c22007-08-02 11:10:31 -04001713 int i, hbq_count;
James Smart3163f722008-02-08 18:50:25 -05001714 uint32_t hbqno;
James Smarted957682007-06-17 19:56:37 -05001715
James Smart51ef4c22007-08-02 11:10:31 -04001716 hbq_count = lpfc_sli_hbq_count();
James Smarted957682007-06-17 19:56:37 -05001717 /* Return all memory used by all HBQs */
James Smart3163f722008-02-08 18:50:25 -05001718 spin_lock_irqsave(&phba->hbalock, flags);
James Smart51ef4c22007-08-02 11:10:31 -04001719 for (i = 0; i < hbq_count; ++i) {
1720 list_for_each_entry_safe(dmabuf, next_dmabuf,
1721 &phba->hbqs[i].hbq_buffer_list, list) {
1722 hbq_buf = container_of(dmabuf, struct hbq_dmabuf, dbuf);
1723 list_del(&hbq_buf->dbuf.list);
1724 (phba->hbqs[i].hbq_free_buffer)(phba, hbq_buf);
1725 }
James Smarta8adb832007-10-27 13:37:53 -04001726 phba->hbqs[i].buffer_count = 0;
James Smarted957682007-06-17 19:56:37 -05001727 }
James Smart3163f722008-02-08 18:50:25 -05001728 /* Return all HBQ buffer that are in-fly */
James Smart3772a992009-05-22 14:50:54 -04001729 list_for_each_entry_safe(dmabuf, next_dmabuf, &phba->rb_pend_list,
1730 list) {
James Smart3163f722008-02-08 18:50:25 -05001731 hbq_buf = container_of(dmabuf, struct hbq_dmabuf, dbuf);
1732 list_del(&hbq_buf->dbuf.list);
1733 if (hbq_buf->tag == -1) {
1734 (phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer)
1735 (phba, hbq_buf);
1736 } else {
1737 hbqno = hbq_buf->tag >> 16;
1738 if (hbqno >= LPFC_MAX_HBQS)
1739 (phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer)
1740 (phba, hbq_buf);
1741 else
1742 (phba->hbqs[hbqno].hbq_free_buffer)(phba,
1743 hbq_buf);
1744 }
1745 }
1746
1747 /* Mark the HBQs not in use */
1748 phba->hbq_in_use = 0;
1749 spin_unlock_irqrestore(&phba->hbalock, flags);
James Smarted957682007-06-17 19:56:37 -05001750}
1751
James Smarte59058c2008-08-24 21:49:00 -04001752/**
James Smart3621a712009-04-06 18:47:14 -04001753 * lpfc_sli_hbq_to_firmware - Post the hbq buffer to firmware
James Smarte59058c2008-08-24 21:49:00 -04001754 * @phba: Pointer to HBA context object.
1755 * @hbqno: HBQ number.
1756 * @hbq_buf: Pointer to HBQ buffer.
1757 *
1758 * This function is called with the hbalock held to post a
1759 * hbq buffer to the firmware. If the function finds an empty
1760 * slot in the HBQ, it will post the buffer. The function will return
1761 * pointer to the hbq entry if it successfully post the buffer
1762 * else it will return NULL.
1763 **/
James Smart3772a992009-05-22 14:50:54 -04001764static int
James Smarted957682007-06-17 19:56:37 -05001765lpfc_sli_hbq_to_firmware(struct lpfc_hba *phba, uint32_t hbqno,
James Smart92d7f7b2007-06-17 19:56:38 -05001766 struct hbq_dmabuf *hbq_buf)
James Smarted957682007-06-17 19:56:37 -05001767{
James Smart3772a992009-05-22 14:50:54 -04001768 return phba->lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buf);
1769}
1770
1771/**
1772 * lpfc_sli_hbq_to_firmware_s3 - Post the hbq buffer to SLI3 firmware
1773 * @phba: Pointer to HBA context object.
1774 * @hbqno: HBQ number.
1775 * @hbq_buf: Pointer to HBQ buffer.
1776 *
1777 * This function is called with the hbalock held to post a hbq buffer to the
1778 * firmware. If the function finds an empty slot in the HBQ, it will post the
1779 * buffer and place it on the hbq_buffer_list. The function will return zero if
1780 * it successfully post the buffer else it will return an error.
1781 **/
1782static int
1783lpfc_sli_hbq_to_firmware_s3(struct lpfc_hba *phba, uint32_t hbqno,
1784 struct hbq_dmabuf *hbq_buf)
1785{
James Smarted957682007-06-17 19:56:37 -05001786 struct lpfc_hbq_entry *hbqe;
James Smart92d7f7b2007-06-17 19:56:38 -05001787 dma_addr_t physaddr = hbq_buf->dbuf.phys;
James Smarted957682007-06-17 19:56:37 -05001788
1789 /* Get next HBQ entry slot to use */
1790 hbqe = lpfc_sli_next_hbq_slot(phba, hbqno);
1791 if (hbqe) {
1792 struct hbq_s *hbqp = &phba->hbqs[hbqno];
1793
James Smart92d7f7b2007-06-17 19:56:38 -05001794 hbqe->bde.addrHigh = le32_to_cpu(putPaddrHigh(physaddr));
1795 hbqe->bde.addrLow = le32_to_cpu(putPaddrLow(physaddr));
James Smart51ef4c22007-08-02 11:10:31 -04001796 hbqe->bde.tus.f.bdeSize = hbq_buf->size;
James Smarted957682007-06-17 19:56:37 -05001797 hbqe->bde.tus.f.bdeFlags = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05001798 hbqe->bde.tus.w = le32_to_cpu(hbqe->bde.tus.w);
1799 hbqe->buffer_tag = le32_to_cpu(hbq_buf->tag);
1800 /* Sync SLIM */
James Smarted957682007-06-17 19:56:37 -05001801 hbqp->hbqPutIdx = hbqp->next_hbqPutIdx;
1802 writel(hbqp->hbqPutIdx, phba->hbq_put + hbqno);
James Smart92d7f7b2007-06-17 19:56:38 -05001803 /* flush */
James Smarted957682007-06-17 19:56:37 -05001804 readl(phba->hbq_put + hbqno);
James Smart51ef4c22007-08-02 11:10:31 -04001805 list_add_tail(&hbq_buf->dbuf.list, &hbqp->hbq_buffer_list);
James Smart3772a992009-05-22 14:50:54 -04001806 return 0;
1807 } else
1808 return -ENOMEM;
James Smarted957682007-06-17 19:56:37 -05001809}
1810
James Smart4f774512009-05-22 14:52:35 -04001811/**
1812 * lpfc_sli_hbq_to_firmware_s4 - Post the hbq buffer to SLI4 firmware
1813 * @phba: Pointer to HBA context object.
1814 * @hbqno: HBQ number.
1815 * @hbq_buf: Pointer to HBQ buffer.
1816 *
1817 * This function is called with the hbalock held to post an RQE to the SLI4
1818 * firmware. If able to post the RQE to the RQ it will queue the hbq entry to
1819 * the hbq_buffer_list and return zero, otherwise it will return an error.
1820 **/
1821static int
1822lpfc_sli_hbq_to_firmware_s4(struct lpfc_hba *phba, uint32_t hbqno,
1823 struct hbq_dmabuf *hbq_buf)
1824{
1825 int rc;
1826 struct lpfc_rqe hrqe;
1827 struct lpfc_rqe drqe;
1828
1829 hrqe.address_lo = putPaddrLow(hbq_buf->hbuf.phys);
1830 hrqe.address_hi = putPaddrHigh(hbq_buf->hbuf.phys);
1831 drqe.address_lo = putPaddrLow(hbq_buf->dbuf.phys);
1832 drqe.address_hi = putPaddrHigh(hbq_buf->dbuf.phys);
1833 rc = lpfc_sli4_rq_put(phba->sli4_hba.hdr_rq, phba->sli4_hba.dat_rq,
1834 &hrqe, &drqe);
1835 if (rc < 0)
1836 return rc;
1837 hbq_buf->tag = rc;
1838 list_add_tail(&hbq_buf->dbuf.list, &phba->hbqs[hbqno].hbq_buffer_list);
1839 return 0;
1840}
1841
James Smarte59058c2008-08-24 21:49:00 -04001842/* HBQ for ELS and CT traffic. */
James Smart92d7f7b2007-06-17 19:56:38 -05001843static struct lpfc_hbq_init lpfc_els_hbq = {
1844 .rn = 1,
James Smartdef9c7a2009-12-21 17:02:28 -05001845 .entry_count = 256,
James Smart92d7f7b2007-06-17 19:56:38 -05001846 .mask_count = 0,
1847 .profile = 0,
James Smart51ef4c22007-08-02 11:10:31 -04001848 .ring_mask = (1 << LPFC_ELS_RING),
James Smart92d7f7b2007-06-17 19:56:38 -05001849 .buffer_count = 0,
James Smarta257bf92009-04-06 18:48:10 -04001850 .init_count = 40,
1851 .add_count = 40,
James Smart92d7f7b2007-06-17 19:56:38 -05001852};
James Smarted957682007-06-17 19:56:37 -05001853
James Smarte59058c2008-08-24 21:49:00 -04001854/* HBQ for the extra ring if needed */
James Smart51ef4c22007-08-02 11:10:31 -04001855static struct lpfc_hbq_init lpfc_extra_hbq = {
1856 .rn = 1,
1857 .entry_count = 200,
1858 .mask_count = 0,
1859 .profile = 0,
1860 .ring_mask = (1 << LPFC_EXTRA_RING),
1861 .buffer_count = 0,
1862 .init_count = 0,
1863 .add_count = 5,
1864};
1865
James Smarte59058c2008-08-24 21:49:00 -04001866/* Array of HBQs */
James Smart78b2d852007-08-02 11:10:21 -04001867struct lpfc_hbq_init *lpfc_hbq_defs[] = {
James Smart92d7f7b2007-06-17 19:56:38 -05001868 &lpfc_els_hbq,
James Smart51ef4c22007-08-02 11:10:31 -04001869 &lpfc_extra_hbq,
James Smart92d7f7b2007-06-17 19:56:38 -05001870};
1871
James Smarte59058c2008-08-24 21:49:00 -04001872/**
James Smart3621a712009-04-06 18:47:14 -04001873 * lpfc_sli_hbqbuf_fill_hbqs - Post more hbq buffers to HBQ
James Smarte59058c2008-08-24 21:49:00 -04001874 * @phba: Pointer to HBA context object.
1875 * @hbqno: HBQ number.
1876 * @count: Number of HBQ buffers to be posted.
1877 *
James Smartd7c255b2008-08-24 21:50:00 -04001878 * This function is called with no lock held to post more hbq buffers to the
1879 * given HBQ. The function returns the number of HBQ buffers successfully
1880 * posted.
James Smarte59058c2008-08-24 21:49:00 -04001881 **/
James Smart311464e2007-08-02 11:10:37 -04001882static int
James Smart92d7f7b2007-06-17 19:56:38 -05001883lpfc_sli_hbqbuf_fill_hbqs(struct lpfc_hba *phba, uint32_t hbqno, uint32_t count)
1884{
James Smartd7c255b2008-08-24 21:50:00 -04001885 uint32_t i, posted = 0;
James Smart3163f722008-02-08 18:50:25 -05001886 unsigned long flags;
James Smart92d7f7b2007-06-17 19:56:38 -05001887 struct hbq_dmabuf *hbq_buffer;
James Smartd7c255b2008-08-24 21:50:00 -04001888 LIST_HEAD(hbq_buf_list);
Matthew Wilcoxeafe1df2008-02-21 05:44:33 -07001889 if (!phba->hbqs[hbqno].hbq_alloc_buffer)
James Smart51ef4c22007-08-02 11:10:31 -04001890 return 0;
James Smart51ef4c22007-08-02 11:10:31 -04001891
James Smartd7c255b2008-08-24 21:50:00 -04001892 if ((phba->hbqs[hbqno].buffer_count + count) >
1893 lpfc_hbq_defs[hbqno]->entry_count)
1894 count = lpfc_hbq_defs[hbqno]->entry_count -
1895 phba->hbqs[hbqno].buffer_count;
1896 if (!count)
1897 return 0;
1898 /* Allocate HBQ entries */
1899 for (i = 0; i < count; i++) {
1900 hbq_buffer = (phba->hbqs[hbqno].hbq_alloc_buffer)(phba);
1901 if (!hbq_buffer)
1902 break;
1903 list_add_tail(&hbq_buffer->dbuf.list, &hbq_buf_list);
1904 }
James Smart3163f722008-02-08 18:50:25 -05001905 /* Check whether HBQ is still in use */
1906 spin_lock_irqsave(&phba->hbalock, flags);
Matthew Wilcoxeafe1df2008-02-21 05:44:33 -07001907 if (!phba->hbq_in_use)
James Smartd7c255b2008-08-24 21:50:00 -04001908 goto err;
1909 while (!list_empty(&hbq_buf_list)) {
1910 list_remove_head(&hbq_buf_list, hbq_buffer, struct hbq_dmabuf,
1911 dbuf.list);
1912 hbq_buffer->tag = (phba->hbqs[hbqno].buffer_count |
1913 (hbqno << 16));
James Smart3772a992009-05-22 14:50:54 -04001914 if (!lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer)) {
James Smarta8adb832007-10-27 13:37:53 -04001915 phba->hbqs[hbqno].buffer_count++;
James Smartd7c255b2008-08-24 21:50:00 -04001916 posted++;
1917 } else
James Smart51ef4c22007-08-02 11:10:31 -04001918 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
James Smart92d7f7b2007-06-17 19:56:38 -05001919 }
James Smart3163f722008-02-08 18:50:25 -05001920 spin_unlock_irqrestore(&phba->hbalock, flags);
James Smartd7c255b2008-08-24 21:50:00 -04001921 return posted;
1922err:
1923 spin_unlock_irqrestore(&phba->hbalock, flags);
1924 while (!list_empty(&hbq_buf_list)) {
1925 list_remove_head(&hbq_buf_list, hbq_buffer, struct hbq_dmabuf,
1926 dbuf.list);
1927 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
1928 }
James Smart92d7f7b2007-06-17 19:56:38 -05001929 return 0;
James Smarted957682007-06-17 19:56:37 -05001930}
1931
James Smarte59058c2008-08-24 21:49:00 -04001932/**
James Smart3621a712009-04-06 18:47:14 -04001933 * lpfc_sli_hbqbuf_add_hbqs - Post more HBQ buffers to firmware
James Smarte59058c2008-08-24 21:49:00 -04001934 * @phba: Pointer to HBA context object.
1935 * @qno: HBQ number.
1936 *
1937 * This function posts more buffers to the HBQ. This function
James Smartd7c255b2008-08-24 21:50:00 -04001938 * is called with no lock held. The function returns the number of HBQ entries
1939 * successfully allocated.
James Smarte59058c2008-08-24 21:49:00 -04001940 **/
James Smarted957682007-06-17 19:56:37 -05001941int
James Smart92d7f7b2007-06-17 19:56:38 -05001942lpfc_sli_hbqbuf_add_hbqs(struct lpfc_hba *phba, uint32_t qno)
James Smarted957682007-06-17 19:56:37 -05001943{
James Smartdef9c7a2009-12-21 17:02:28 -05001944 if (phba->sli_rev == LPFC_SLI_REV4)
1945 return 0;
1946 else
1947 return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
1948 lpfc_hbq_defs[qno]->add_count);
James Smarted957682007-06-17 19:56:37 -05001949}
1950
James Smarte59058c2008-08-24 21:49:00 -04001951/**
James Smart3621a712009-04-06 18:47:14 -04001952 * lpfc_sli_hbqbuf_init_hbqs - Post initial buffers to the HBQ
James Smarte59058c2008-08-24 21:49:00 -04001953 * @phba: Pointer to HBA context object.
1954 * @qno: HBQ queue number.
1955 *
1956 * This function is called from SLI initialization code path with
1957 * no lock held to post initial HBQ buffers to firmware. The
James Smartd7c255b2008-08-24 21:50:00 -04001958 * function returns the number of HBQ entries successfully allocated.
James Smarte59058c2008-08-24 21:49:00 -04001959 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01001960static int
James Smart92d7f7b2007-06-17 19:56:38 -05001961lpfc_sli_hbqbuf_init_hbqs(struct lpfc_hba *phba, uint32_t qno)
James Smarted957682007-06-17 19:56:37 -05001962{
James Smartdef9c7a2009-12-21 17:02:28 -05001963 if (phba->sli_rev == LPFC_SLI_REV4)
1964 return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
James Smart73d91e52011-10-10 21:32:10 -04001965 lpfc_hbq_defs[qno]->entry_count);
James Smartdef9c7a2009-12-21 17:02:28 -05001966 else
1967 return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
1968 lpfc_hbq_defs[qno]->init_count);
James Smarted957682007-06-17 19:56:37 -05001969}
1970
James Smarte59058c2008-08-24 21:49:00 -04001971/**
James Smart3772a992009-05-22 14:50:54 -04001972 * lpfc_sli_hbqbuf_get - Remove the first hbq off of an hbq list
1973 * @phba: Pointer to HBA context object.
1974 * @hbqno: HBQ number.
1975 *
1976 * This function removes the first hbq buffer on an hbq list and returns a
1977 * pointer to that buffer. If it finds no buffers on the list it returns NULL.
1978 **/
1979static struct hbq_dmabuf *
1980lpfc_sli_hbqbuf_get(struct list_head *rb_list)
1981{
1982 struct lpfc_dmabuf *d_buf;
1983
1984 list_remove_head(rb_list, d_buf, struct lpfc_dmabuf, list);
1985 if (!d_buf)
1986 return NULL;
1987 return container_of(d_buf, struct hbq_dmabuf, dbuf);
1988}
1989
1990/**
James Smart3621a712009-04-06 18:47:14 -04001991 * lpfc_sli_hbqbuf_find - Find the hbq buffer associated with a tag
James Smarte59058c2008-08-24 21:49:00 -04001992 * @phba: Pointer to HBA context object.
1993 * @tag: Tag of the hbq buffer.
1994 *
1995 * This function is called with hbalock held. This function searches
1996 * for the hbq buffer associated with the given tag in the hbq buffer
1997 * list. If it finds the hbq buffer, it returns the hbq_buffer other wise
1998 * it returns NULL.
1999 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01002000static struct hbq_dmabuf *
James Smarted957682007-06-17 19:56:37 -05002001lpfc_sli_hbqbuf_find(struct lpfc_hba *phba, uint32_t tag)
2002{
James Smart92d7f7b2007-06-17 19:56:38 -05002003 struct lpfc_dmabuf *d_buf;
2004 struct hbq_dmabuf *hbq_buf;
James Smart51ef4c22007-08-02 11:10:31 -04002005 uint32_t hbqno;
James Smarted957682007-06-17 19:56:37 -05002006
James Smart51ef4c22007-08-02 11:10:31 -04002007 hbqno = tag >> 16;
Jesper Juhla0a74e452007-08-09 20:47:15 +02002008 if (hbqno >= LPFC_MAX_HBQS)
James Smart51ef4c22007-08-02 11:10:31 -04002009 return NULL;
2010
James Smart3772a992009-05-22 14:50:54 -04002011 spin_lock_irq(&phba->hbalock);
James Smart51ef4c22007-08-02 11:10:31 -04002012 list_for_each_entry(d_buf, &phba->hbqs[hbqno].hbq_buffer_list, list) {
James Smart92d7f7b2007-06-17 19:56:38 -05002013 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
James Smart51ef4c22007-08-02 11:10:31 -04002014 if (hbq_buf->tag == tag) {
James Smart3772a992009-05-22 14:50:54 -04002015 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -05002016 return hbq_buf;
James Smarted957682007-06-17 19:56:37 -05002017 }
2018 }
James Smart3772a992009-05-22 14:50:54 -04002019 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -05002020 lpfc_printf_log(phba, KERN_ERR, LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04002021 "1803 Bad hbq tag. Data: x%x x%x\n",
James Smarta8adb832007-10-27 13:37:53 -04002022 tag, phba->hbqs[tag >> 16].buffer_count);
James Smart92d7f7b2007-06-17 19:56:38 -05002023 return NULL;
James Smarted957682007-06-17 19:56:37 -05002024}
2025
James Smarte59058c2008-08-24 21:49:00 -04002026/**
James Smart3621a712009-04-06 18:47:14 -04002027 * lpfc_sli_free_hbq - Give back the hbq buffer to firmware
James Smarte59058c2008-08-24 21:49:00 -04002028 * @phba: Pointer to HBA context object.
2029 * @hbq_buffer: Pointer to HBQ buffer.
2030 *
2031 * This function is called with hbalock. This function gives back
2032 * the hbq buffer to firmware. If the HBQ does not have space to
2033 * post the buffer, it will free the buffer.
2034 **/
James Smarted957682007-06-17 19:56:37 -05002035void
James Smart51ef4c22007-08-02 11:10:31 -04002036lpfc_sli_free_hbq(struct lpfc_hba *phba, struct hbq_dmabuf *hbq_buffer)
James Smarted957682007-06-17 19:56:37 -05002037{
2038 uint32_t hbqno;
2039
James Smart51ef4c22007-08-02 11:10:31 -04002040 if (hbq_buffer) {
2041 hbqno = hbq_buffer->tag >> 16;
James Smart3772a992009-05-22 14:50:54 -04002042 if (lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer))
James Smart51ef4c22007-08-02 11:10:31 -04002043 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
James Smarted957682007-06-17 19:56:37 -05002044 }
2045}
2046
James Smarte59058c2008-08-24 21:49:00 -04002047/**
James Smart3621a712009-04-06 18:47:14 -04002048 * lpfc_sli_chk_mbx_command - Check if the mailbox is a legitimate mailbox
James Smarte59058c2008-08-24 21:49:00 -04002049 * @mbxCommand: mailbox command code.
2050 *
2051 * This function is called by the mailbox event handler function to verify
2052 * that the completed mailbox command is a legitimate mailbox command. If the
2053 * completed mailbox is not known to the function, it will return MBX_SHUTDOWN
2054 * and the mailbox event handler will take the HBA offline.
2055 **/
dea31012005-04-17 16:05:31 -05002056static int
2057lpfc_sli_chk_mbx_command(uint8_t mbxCommand)
2058{
2059 uint8_t ret;
2060
2061 switch (mbxCommand) {
2062 case MBX_LOAD_SM:
2063 case MBX_READ_NV:
2064 case MBX_WRITE_NV:
James Smarta8adb832007-10-27 13:37:53 -04002065 case MBX_WRITE_VPARMS:
dea31012005-04-17 16:05:31 -05002066 case MBX_RUN_BIU_DIAG:
2067 case MBX_INIT_LINK:
2068 case MBX_DOWN_LINK:
2069 case MBX_CONFIG_LINK:
2070 case MBX_CONFIG_RING:
2071 case MBX_RESET_RING:
2072 case MBX_READ_CONFIG:
2073 case MBX_READ_RCONFIG:
2074 case MBX_READ_SPARM:
2075 case MBX_READ_STATUS:
2076 case MBX_READ_RPI:
2077 case MBX_READ_XRI:
2078 case MBX_READ_REV:
2079 case MBX_READ_LNK_STAT:
2080 case MBX_REG_LOGIN:
2081 case MBX_UNREG_LOGIN:
dea31012005-04-17 16:05:31 -05002082 case MBX_CLEAR_LA:
2083 case MBX_DUMP_MEMORY:
2084 case MBX_DUMP_CONTEXT:
2085 case MBX_RUN_DIAGS:
2086 case MBX_RESTART:
2087 case MBX_UPDATE_CFG:
2088 case MBX_DOWN_LOAD:
2089 case MBX_DEL_LD_ENTRY:
2090 case MBX_RUN_PROGRAM:
2091 case MBX_SET_MASK:
James Smart09372822008-01-11 01:52:54 -05002092 case MBX_SET_VARIABLE:
dea31012005-04-17 16:05:31 -05002093 case MBX_UNREG_D_ID:
Jamie Wellnitz41415862006-02-28 19:25:27 -05002094 case MBX_KILL_BOARD:
dea31012005-04-17 16:05:31 -05002095 case MBX_CONFIG_FARP:
Jamie Wellnitz41415862006-02-28 19:25:27 -05002096 case MBX_BEACON:
dea31012005-04-17 16:05:31 -05002097 case MBX_LOAD_AREA:
2098 case MBX_RUN_BIU_DIAG64:
2099 case MBX_CONFIG_PORT:
2100 case MBX_READ_SPARM64:
2101 case MBX_READ_RPI64:
2102 case MBX_REG_LOGIN64:
James Smart76a95d72010-11-20 23:11:48 -05002103 case MBX_READ_TOPOLOGY:
James Smart09372822008-01-11 01:52:54 -05002104 case MBX_WRITE_WWN:
dea31012005-04-17 16:05:31 -05002105 case MBX_SET_DEBUG:
2106 case MBX_LOAD_EXP_ROM:
James Smart57127f12007-10-27 13:37:05 -04002107 case MBX_ASYNCEVT_ENABLE:
James Smart92d7f7b2007-06-17 19:56:38 -05002108 case MBX_REG_VPI:
2109 case MBX_UNREG_VPI:
James Smart858c9f62007-06-17 19:56:39 -05002110 case MBX_HEARTBEAT:
James Smart84774a42008-08-24 21:50:06 -04002111 case MBX_PORT_CAPABILITIES:
2112 case MBX_PORT_IOV_CONTROL:
James Smart04c68492009-05-22 14:52:52 -04002113 case MBX_SLI4_CONFIG:
2114 case MBX_SLI4_REQ_FTRS:
2115 case MBX_REG_FCFI:
2116 case MBX_UNREG_FCFI:
2117 case MBX_REG_VFI:
2118 case MBX_UNREG_VFI:
2119 case MBX_INIT_VPI:
2120 case MBX_INIT_VFI:
2121 case MBX_RESUME_RPI:
James Smartc7495932010-04-06 15:05:28 -04002122 case MBX_READ_EVENT_LOG_STATUS:
2123 case MBX_READ_EVENT_LOG:
James Smartdcf2a4e2010-09-29 11:18:53 -04002124 case MBX_SECURITY_MGMT:
2125 case MBX_AUTH_PORT:
James Smart940eb682012-08-03 12:37:08 -04002126 case MBX_ACCESS_VDATA:
dea31012005-04-17 16:05:31 -05002127 ret = mbxCommand;
2128 break;
2129 default:
2130 ret = MBX_SHUTDOWN;
2131 break;
2132 }
James Smart2e0fef82007-06-17 19:56:36 -05002133 return ret;
dea31012005-04-17 16:05:31 -05002134}
James Smarte59058c2008-08-24 21:49:00 -04002135
2136/**
James Smart3621a712009-04-06 18:47:14 -04002137 * lpfc_sli_wake_mbox_wait - lpfc_sli_issue_mbox_wait mbox completion handler
James Smarte59058c2008-08-24 21:49:00 -04002138 * @phba: Pointer to HBA context object.
2139 * @pmboxq: Pointer to mailbox command.
2140 *
2141 * This is completion handler function for mailbox commands issued from
2142 * lpfc_sli_issue_mbox_wait function. This function is called by the
2143 * mailbox event handler function with no lock held. This function
2144 * will wake up thread waiting on the wait queue pointed by context1
2145 * of the mailbox.
2146 **/
James Smart04c68492009-05-22 14:52:52 -04002147void
James Smart2e0fef82007-06-17 19:56:36 -05002148lpfc_sli_wake_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq)
dea31012005-04-17 16:05:31 -05002149{
2150 wait_queue_head_t *pdone_q;
James Smart858c9f62007-06-17 19:56:39 -05002151 unsigned long drvr_flag;
dea31012005-04-17 16:05:31 -05002152
2153 /*
2154 * If pdone_q is empty, the driver thread gave up waiting and
2155 * continued running.
2156 */
James Smart7054a602007-04-25 09:52:34 -04002157 pmboxq->mbox_flag |= LPFC_MBX_WAKE;
James Smart858c9f62007-06-17 19:56:39 -05002158 spin_lock_irqsave(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05002159 pdone_q = (wait_queue_head_t *) pmboxq->context1;
2160 if (pdone_q)
2161 wake_up_interruptible(pdone_q);
James Smart858c9f62007-06-17 19:56:39 -05002162 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05002163 return;
2164}
2165
James Smarte59058c2008-08-24 21:49:00 -04002166
2167/**
James Smart3621a712009-04-06 18:47:14 -04002168 * lpfc_sli_def_mbox_cmpl - Default mailbox completion handler
James Smarte59058c2008-08-24 21:49:00 -04002169 * @phba: Pointer to HBA context object.
2170 * @pmb: Pointer to mailbox object.
2171 *
2172 * This function is the default mailbox completion handler. It
2173 * frees the memory resources associated with the completed mailbox
2174 * command. If the completed command is a REG_LOGIN mailbox command,
2175 * this function will issue a UREG_LOGIN to re-claim the RPI.
2176 **/
dea31012005-04-17 16:05:31 -05002177void
James Smart2e0fef82007-06-17 19:56:36 -05002178lpfc_sli_def_mbox_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05002179{
James Smartd439d282010-09-29 11:18:45 -04002180 struct lpfc_vport *vport = pmb->vport;
dea31012005-04-17 16:05:31 -05002181 struct lpfc_dmabuf *mp;
James Smartd439d282010-09-29 11:18:45 -04002182 struct lpfc_nodelist *ndlp;
James Smart5af5eee2010-10-22 11:06:38 -04002183 struct Scsi_Host *shost;
James Smart04c68492009-05-22 14:52:52 -04002184 uint16_t rpi, vpi;
James Smart7054a602007-04-25 09:52:34 -04002185 int rc;
2186
dea31012005-04-17 16:05:31 -05002187 mp = (struct lpfc_dmabuf *) (pmb->context1);
James Smart7054a602007-04-25 09:52:34 -04002188
dea31012005-04-17 16:05:31 -05002189 if (mp) {
2190 lpfc_mbuf_free(phba, mp->virt, mp->phys);
2191 kfree(mp);
2192 }
James Smart7054a602007-04-25 09:52:34 -04002193
2194 /*
2195 * If a REG_LOGIN succeeded after node is destroyed or node
2196 * is in re-discovery driver need to cleanup the RPI.
2197 */
James Smart2e0fef82007-06-17 19:56:36 -05002198 if (!(phba->pport->load_flag & FC_UNLOADING) &&
James Smart04c68492009-05-22 14:52:52 -04002199 pmb->u.mb.mbxCommand == MBX_REG_LOGIN64 &&
2200 !pmb->u.mb.mbxStatus) {
2201 rpi = pmb->u.mb.un.varWords[0];
James Smart6d368e52011-05-24 11:44:12 -04002202 vpi = pmb->u.mb.un.varRegLogin.vpi;
James Smart04c68492009-05-22 14:52:52 -04002203 lpfc_unreg_login(phba, vpi, rpi, pmb);
James Smart92d7f7b2007-06-17 19:56:38 -05002204 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart7054a602007-04-25 09:52:34 -04002205 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
2206 if (rc != MBX_NOT_FINISHED)
2207 return;
2208 }
2209
James Smart695a8142010-01-26 23:08:03 -05002210 if ((pmb->u.mb.mbxCommand == MBX_REG_VPI) &&
2211 !(phba->pport->load_flag & FC_UNLOADING) &&
2212 !pmb->u.mb.mbxStatus) {
James Smart5af5eee2010-10-22 11:06:38 -04002213 shost = lpfc_shost_from_vport(vport);
2214 spin_lock_irq(shost->host_lock);
2215 vport->vpi_state |= LPFC_VPI_REGISTERED;
2216 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
2217 spin_unlock_irq(shost->host_lock);
James Smart695a8142010-01-26 23:08:03 -05002218 }
2219
James Smartd439d282010-09-29 11:18:45 -04002220 if (pmb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
2221 ndlp = (struct lpfc_nodelist *)pmb->context2;
2222 lpfc_nlp_put(ndlp);
2223 pmb->context2 = NULL;
2224 }
2225
James Smartdcf2a4e2010-09-29 11:18:53 -04002226 /* Check security permission status on INIT_LINK mailbox command */
2227 if ((pmb->u.mb.mbxCommand == MBX_INIT_LINK) &&
2228 (pmb->u.mb.mbxStatus == MBXERR_SEC_NO_PERMISSION))
2229 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
2230 "2860 SLI authentication is required "
2231 "for INIT_LINK but has not done yet\n");
2232
James Smart04c68492009-05-22 14:52:52 -04002233 if (bf_get(lpfc_mqe_command, &pmb->u.mqe) == MBX_SLI4_CONFIG)
2234 lpfc_sli4_mbox_cmd_free(phba, pmb);
2235 else
2236 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05002237}
2238
James Smarte59058c2008-08-24 21:49:00 -04002239/**
James Smart3621a712009-04-06 18:47:14 -04002240 * lpfc_sli_handle_mb_event - Handle mailbox completions from firmware
James Smarte59058c2008-08-24 21:49:00 -04002241 * @phba: Pointer to HBA context object.
2242 *
2243 * This function is called with no lock held. This function processes all
2244 * the completed mailbox commands and gives it to upper layers. The interrupt
2245 * service routine processes mailbox completion interrupt and adds completed
2246 * mailbox commands to the mboxq_cmpl queue and signals the worker thread.
2247 * Worker thread call lpfc_sli_handle_mb_event, which will return the
2248 * completed mailbox commands in mboxq_cmpl queue to the upper layers. This
2249 * function returns the mailbox commands to the upper layer by calling the
2250 * completion handler function of each mailbox.
2251 **/
dea31012005-04-17 16:05:31 -05002252int
James Smart2e0fef82007-06-17 19:56:36 -05002253lpfc_sli_handle_mb_event(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05002254{
James Smart92d7f7b2007-06-17 19:56:38 -05002255 MAILBOX_t *pmbox;
dea31012005-04-17 16:05:31 -05002256 LPFC_MBOXQ_t *pmb;
James Smart92d7f7b2007-06-17 19:56:38 -05002257 int rc;
2258 LIST_HEAD(cmplq);
dea31012005-04-17 16:05:31 -05002259
2260 phba->sli.slistat.mbox_event++;
2261
James Smart92d7f7b2007-06-17 19:56:38 -05002262 /* Get all completed mailboxe buffers into the cmplq */
2263 spin_lock_irq(&phba->hbalock);
2264 list_splice_init(&phba->sli.mboxq_cmpl, &cmplq);
2265 spin_unlock_irq(&phba->hbalock);
2266
dea31012005-04-17 16:05:31 -05002267 /* Get a Mailbox buffer to setup mailbox commands for callback */
James Smart92d7f7b2007-06-17 19:56:38 -05002268 do {
2269 list_remove_head(&cmplq, pmb, LPFC_MBOXQ_t, list);
2270 if (pmb == NULL)
2271 break;
2272
James Smart04c68492009-05-22 14:52:52 -04002273 pmbox = &pmb->u.mb;
dea31012005-04-17 16:05:31 -05002274
James Smart858c9f62007-06-17 19:56:39 -05002275 if (pmbox->mbxCommand != MBX_HEARTBEAT) {
2276 if (pmb->vport) {
2277 lpfc_debugfs_disc_trc(pmb->vport,
2278 LPFC_DISC_TRC_MBOX_VPORT,
2279 "MBOX cmpl vport: cmd:x%x mb:x%x x%x",
2280 (uint32_t)pmbox->mbxCommand,
2281 pmbox->un.varWords[0],
2282 pmbox->un.varWords[1]);
2283 }
2284 else {
2285 lpfc_debugfs_disc_trc(phba->pport,
2286 LPFC_DISC_TRC_MBOX,
2287 "MBOX cmpl: cmd:x%x mb:x%x x%x",
2288 (uint32_t)pmbox->mbxCommand,
2289 pmbox->un.varWords[0],
2290 pmbox->un.varWords[1]);
2291 }
2292 }
2293
dea31012005-04-17 16:05:31 -05002294 /*
2295 * It is a fatal error if unknown mbox command completion.
2296 */
2297 if (lpfc_sli_chk_mbx_command(pmbox->mbxCommand) ==
2298 MBX_SHUTDOWN) {
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002299 /* Unknown mailbox command compl */
James Smart92d7f7b2007-06-17 19:56:38 -05002300 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002301 "(%d):0323 Unknown Mailbox command "
James Smarta183a152011-10-10 21:32:43 -04002302 "x%x (x%x/x%x) Cmpl\n",
James Smart92d7f7b2007-06-17 19:56:38 -05002303 pmb->vport ? pmb->vport->vpi : 0,
James Smart04c68492009-05-22 14:52:52 -04002304 pmbox->mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04002305 lpfc_sli_config_mbox_subsys_get(phba,
2306 pmb),
2307 lpfc_sli_config_mbox_opcode_get(phba,
2308 pmb));
James Smart2e0fef82007-06-17 19:56:36 -05002309 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05002310 phba->work_hs = HS_FFER3;
2311 lpfc_handle_eratt(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05002312 continue;
dea31012005-04-17 16:05:31 -05002313 }
2314
dea31012005-04-17 16:05:31 -05002315 if (pmbox->mbxStatus) {
2316 phba->sli.slistat.mbox_stat_err++;
2317 if (pmbox->mbxStatus == MBXERR_NO_RESOURCES) {
2318 /* Mbox cmd cmpl error - RETRYing */
James Smart92d7f7b2007-06-17 19:56:38 -05002319 lpfc_printf_log(phba, KERN_INFO,
James Smarta183a152011-10-10 21:32:43 -04002320 LOG_MBOX | LOG_SLI,
2321 "(%d):0305 Mbox cmd cmpl "
2322 "error - RETRYing Data: x%x "
2323 "(x%x/x%x) x%x x%x x%x\n",
2324 pmb->vport ? pmb->vport->vpi : 0,
2325 pmbox->mbxCommand,
2326 lpfc_sli_config_mbox_subsys_get(phba,
2327 pmb),
2328 lpfc_sli_config_mbox_opcode_get(phba,
2329 pmb),
2330 pmbox->mbxStatus,
2331 pmbox->un.varWords[0],
2332 pmb->vport->port_state);
dea31012005-04-17 16:05:31 -05002333 pmbox->mbxStatus = 0;
2334 pmbox->mbxOwner = OWN_HOST;
dea31012005-04-17 16:05:31 -05002335 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
James Smart04c68492009-05-22 14:52:52 -04002336 if (rc != MBX_NOT_FINISHED)
James Smart92d7f7b2007-06-17 19:56:38 -05002337 continue;
dea31012005-04-17 16:05:31 -05002338 }
2339 }
2340
2341 /* Mailbox cmd <cmd> Cmpl <cmpl> */
James Smart92d7f7b2007-06-17 19:56:38 -05002342 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04002343 "(%d):0307 Mailbox cmd x%x (x%x/x%x) Cmpl x%p "
James Smarte74c03c2013-04-17 20:15:19 -04002344 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x "
2345 "x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05002346 pmb->vport ? pmb->vport->vpi : 0,
dea31012005-04-17 16:05:31 -05002347 pmbox->mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04002348 lpfc_sli_config_mbox_subsys_get(phba, pmb),
2349 lpfc_sli_config_mbox_opcode_get(phba, pmb),
dea31012005-04-17 16:05:31 -05002350 pmb->mbox_cmpl,
2351 *((uint32_t *) pmbox),
2352 pmbox->un.varWords[0],
2353 pmbox->un.varWords[1],
2354 pmbox->un.varWords[2],
2355 pmbox->un.varWords[3],
2356 pmbox->un.varWords[4],
2357 pmbox->un.varWords[5],
2358 pmbox->un.varWords[6],
James Smarte74c03c2013-04-17 20:15:19 -04002359 pmbox->un.varWords[7],
2360 pmbox->un.varWords[8],
2361 pmbox->un.varWords[9],
2362 pmbox->un.varWords[10]);
dea31012005-04-17 16:05:31 -05002363
James Smart92d7f7b2007-06-17 19:56:38 -05002364 if (pmb->mbox_cmpl)
dea31012005-04-17 16:05:31 -05002365 pmb->mbox_cmpl(phba,pmb);
James Smart92d7f7b2007-06-17 19:56:38 -05002366 } while (1);
James Smart2e0fef82007-06-17 19:56:36 -05002367 return 0;
dea31012005-04-17 16:05:31 -05002368}
James Smart92d7f7b2007-06-17 19:56:38 -05002369
James Smarte59058c2008-08-24 21:49:00 -04002370/**
James Smart3621a712009-04-06 18:47:14 -04002371 * lpfc_sli_get_buff - Get the buffer associated with the buffer tag
James Smarte59058c2008-08-24 21:49:00 -04002372 * @phba: Pointer to HBA context object.
2373 * @pring: Pointer to driver SLI ring object.
2374 * @tag: buffer tag.
2375 *
2376 * This function is called with no lock held. When QUE_BUFTAG_BIT bit
2377 * is set in the tag the buffer is posted for a particular exchange,
2378 * the function will return the buffer without replacing the buffer.
2379 * If the buffer is for unsolicited ELS or CT traffic, this function
2380 * returns the buffer and also posts another buffer to the firmware.
2381 **/
James Smart76bb24e2007-10-27 13:38:00 -04002382static struct lpfc_dmabuf *
2383lpfc_sli_get_buff(struct lpfc_hba *phba,
James Smart9f1e1b52008-12-04 22:39:40 -05002384 struct lpfc_sli_ring *pring,
2385 uint32_t tag)
James Smart76bb24e2007-10-27 13:38:00 -04002386{
James Smart9f1e1b52008-12-04 22:39:40 -05002387 struct hbq_dmabuf *hbq_entry;
2388
James Smart76bb24e2007-10-27 13:38:00 -04002389 if (tag & QUE_BUFTAG_BIT)
2390 return lpfc_sli_ring_taggedbuf_get(phba, pring, tag);
James Smart9f1e1b52008-12-04 22:39:40 -05002391 hbq_entry = lpfc_sli_hbqbuf_find(phba, tag);
2392 if (!hbq_entry)
2393 return NULL;
2394 return &hbq_entry->dbuf;
James Smart76bb24e2007-10-27 13:38:00 -04002395}
James Smart57127f12007-10-27 13:37:05 -04002396
James Smart3772a992009-05-22 14:50:54 -04002397/**
2398 * lpfc_complete_unsol_iocb - Complete an unsolicited sequence
2399 * @phba: Pointer to HBA context object.
2400 * @pring: Pointer to driver SLI ring object.
2401 * @saveq: Pointer to the iocbq struct representing the sequence starting frame.
2402 * @fch_r_ctl: the r_ctl for the first frame of the sequence.
2403 * @fch_type: the type for the first frame of the sequence.
2404 *
2405 * This function is called with no lock held. This function uses the r_ctl and
2406 * type of the received sequence to find the correct callback function to call
2407 * to process the sequence.
2408 **/
2409static int
2410lpfc_complete_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2411 struct lpfc_iocbq *saveq, uint32_t fch_r_ctl,
2412 uint32_t fch_type)
2413{
2414 int i;
2415
2416 /* unSolicited Responses */
2417 if (pring->prt[0].profile) {
2418 if (pring->prt[0].lpfc_sli_rcv_unsol_event)
2419 (pring->prt[0].lpfc_sli_rcv_unsol_event) (phba, pring,
2420 saveq);
2421 return 1;
2422 }
2423 /* We must search, based on rctl / type
2424 for the right routine */
2425 for (i = 0; i < pring->num_mask; i++) {
2426 if ((pring->prt[i].rctl == fch_r_ctl) &&
2427 (pring->prt[i].type == fch_type)) {
2428 if (pring->prt[i].lpfc_sli_rcv_unsol_event)
2429 (pring->prt[i].lpfc_sli_rcv_unsol_event)
2430 (phba, pring, saveq);
2431 return 1;
2432 }
2433 }
2434 return 0;
2435}
James Smarte59058c2008-08-24 21:49:00 -04002436
2437/**
James Smart3621a712009-04-06 18:47:14 -04002438 * lpfc_sli_process_unsol_iocb - Unsolicited iocb handler
James Smarte59058c2008-08-24 21:49:00 -04002439 * @phba: Pointer to HBA context object.
2440 * @pring: Pointer to driver SLI ring object.
2441 * @saveq: Pointer to the unsolicited iocb.
2442 *
2443 * This function is called with no lock held by the ring event handler
2444 * when there is an unsolicited iocb posted to the response ring by the
2445 * firmware. This function gets the buffer associated with the iocbs
2446 * and calls the event handler for the ring. This function handles both
2447 * qring buffers and hbq buffers.
2448 * When the function returns 1 the caller can free the iocb object otherwise
2449 * upper layer functions will free the iocb objects.
2450 **/
dea31012005-04-17 16:05:31 -05002451static int
2452lpfc_sli_process_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2453 struct lpfc_iocbq *saveq)
2454{
2455 IOCB_t * irsp;
2456 WORD5 * w5p;
2457 uint32_t Rctl, Type;
James Smart3772a992009-05-22 14:50:54 -04002458 uint32_t match;
James Smart76bb24e2007-10-27 13:38:00 -04002459 struct lpfc_iocbq *iocbq;
James Smart3163f722008-02-08 18:50:25 -05002460 struct lpfc_dmabuf *dmzbuf;
dea31012005-04-17 16:05:31 -05002461
2462 match = 0;
2463 irsp = &(saveq->iocb);
James Smart57127f12007-10-27 13:37:05 -04002464
2465 if (irsp->ulpCommand == CMD_ASYNC_STATUS) {
2466 if (pring->lpfc_sli_rcv_async_status)
2467 pring->lpfc_sli_rcv_async_status(phba, pring, saveq);
2468 else
2469 lpfc_printf_log(phba,
2470 KERN_WARNING,
2471 LOG_SLI,
2472 "0316 Ring %d handler: unexpected "
2473 "ASYNC_STATUS iocb received evt_code "
2474 "0x%x\n",
2475 pring->ringno,
2476 irsp->un.asyncstat.evt_code);
2477 return 1;
2478 }
2479
James Smart3163f722008-02-08 18:50:25 -05002480 if ((irsp->ulpCommand == CMD_IOCB_RET_XRI64_CX) &&
2481 (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED)) {
2482 if (irsp->ulpBdeCount > 0) {
2483 dmzbuf = lpfc_sli_get_buff(phba, pring,
2484 irsp->un.ulpWord[3]);
2485 lpfc_in_buf_free(phba, dmzbuf);
2486 }
2487
2488 if (irsp->ulpBdeCount > 1) {
2489 dmzbuf = lpfc_sli_get_buff(phba, pring,
2490 irsp->unsli3.sli3Words[3]);
2491 lpfc_in_buf_free(phba, dmzbuf);
2492 }
2493
2494 if (irsp->ulpBdeCount > 2) {
2495 dmzbuf = lpfc_sli_get_buff(phba, pring,
2496 irsp->unsli3.sli3Words[7]);
2497 lpfc_in_buf_free(phba, dmzbuf);
2498 }
2499
2500 return 1;
2501 }
2502
James Smart92d7f7b2007-06-17 19:56:38 -05002503 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
James Smart76bb24e2007-10-27 13:38:00 -04002504 if (irsp->ulpBdeCount != 0) {
2505 saveq->context2 = lpfc_sli_get_buff(phba, pring,
James Smart92d7f7b2007-06-17 19:56:38 -05002506 irsp->un.ulpWord[3]);
James Smart76bb24e2007-10-27 13:38:00 -04002507 if (!saveq->context2)
2508 lpfc_printf_log(phba,
2509 KERN_ERR,
2510 LOG_SLI,
2511 "0341 Ring %d Cannot find buffer for "
2512 "an unsolicited iocb. tag 0x%x\n",
2513 pring->ringno,
2514 irsp->un.ulpWord[3]);
James Smart76bb24e2007-10-27 13:38:00 -04002515 }
2516 if (irsp->ulpBdeCount == 2) {
2517 saveq->context3 = lpfc_sli_get_buff(phba, pring,
James Smart51ef4c22007-08-02 11:10:31 -04002518 irsp->unsli3.sli3Words[7]);
James Smart76bb24e2007-10-27 13:38:00 -04002519 if (!saveq->context3)
2520 lpfc_printf_log(phba,
2521 KERN_ERR,
2522 LOG_SLI,
2523 "0342 Ring %d Cannot find buffer for an"
2524 " unsolicited iocb. tag 0x%x\n",
2525 pring->ringno,
2526 irsp->unsli3.sli3Words[7]);
2527 }
2528 list_for_each_entry(iocbq, &saveq->list, list) {
James Smart76bb24e2007-10-27 13:38:00 -04002529 irsp = &(iocbq->iocb);
James Smart76bb24e2007-10-27 13:38:00 -04002530 if (irsp->ulpBdeCount != 0) {
2531 iocbq->context2 = lpfc_sli_get_buff(phba, pring,
2532 irsp->un.ulpWord[3]);
James Smart9c2face2008-01-11 01:53:18 -05002533 if (!iocbq->context2)
James Smart76bb24e2007-10-27 13:38:00 -04002534 lpfc_printf_log(phba,
2535 KERN_ERR,
2536 LOG_SLI,
2537 "0343 Ring %d Cannot find "
2538 "buffer for an unsolicited iocb"
2539 ". tag 0x%x\n", pring->ringno,
2540 irsp->un.ulpWord[3]);
2541 }
2542 if (irsp->ulpBdeCount == 2) {
2543 iocbq->context3 = lpfc_sli_get_buff(phba, pring,
2544 irsp->unsli3.sli3Words[7]);
James Smart9c2face2008-01-11 01:53:18 -05002545 if (!iocbq->context3)
James Smart76bb24e2007-10-27 13:38:00 -04002546 lpfc_printf_log(phba,
2547 KERN_ERR,
2548 LOG_SLI,
2549 "0344 Ring %d Cannot find "
2550 "buffer for an unsolicited "
2551 "iocb. tag 0x%x\n",
2552 pring->ringno,
2553 irsp->unsli3.sli3Words[7]);
2554 }
2555 }
James Smart92d7f7b2007-06-17 19:56:38 -05002556 }
James Smart9c2face2008-01-11 01:53:18 -05002557 if (irsp->ulpBdeCount != 0 &&
2558 (irsp->ulpCommand == CMD_IOCB_RCV_CONT64_CX ||
2559 irsp->ulpStatus == IOSTAT_INTERMED_RSP)) {
2560 int found = 0;
2561
2562 /* search continue save q for same XRI */
2563 list_for_each_entry(iocbq, &pring->iocb_continue_saveq, clist) {
James Smart7851fe22011-07-22 18:36:52 -04002564 if (iocbq->iocb.unsli3.rcvsli3.ox_id ==
2565 saveq->iocb.unsli3.rcvsli3.ox_id) {
James Smart9c2face2008-01-11 01:53:18 -05002566 list_add_tail(&saveq->list, &iocbq->list);
2567 found = 1;
2568 break;
2569 }
2570 }
2571 if (!found)
2572 list_add_tail(&saveq->clist,
2573 &pring->iocb_continue_saveq);
2574 if (saveq->iocb.ulpStatus != IOSTAT_INTERMED_RSP) {
2575 list_del_init(&iocbq->clist);
2576 saveq = iocbq;
2577 irsp = &(saveq->iocb);
2578 } else
2579 return 0;
2580 }
2581 if ((irsp->ulpCommand == CMD_RCV_ELS_REQ64_CX) ||
2582 (irsp->ulpCommand == CMD_RCV_ELS_REQ_CX) ||
2583 (irsp->ulpCommand == CMD_IOCB_RCV_ELS64_CX)) {
James Smart6a9c52c2009-10-02 15:16:51 -04002584 Rctl = FC_RCTL_ELS_REQ;
2585 Type = FC_TYPE_ELS;
James Smart9c2face2008-01-11 01:53:18 -05002586 } else {
2587 w5p = (WORD5 *)&(saveq->iocb.un.ulpWord[5]);
2588 Rctl = w5p->hcsw.Rctl;
2589 Type = w5p->hcsw.Type;
2590
2591 /* Firmware Workaround */
2592 if ((Rctl == 0) && (pring->ringno == LPFC_ELS_RING) &&
2593 (irsp->ulpCommand == CMD_RCV_SEQUENCE64_CX ||
2594 irsp->ulpCommand == CMD_IOCB_RCV_SEQ64_CX)) {
James Smart6a9c52c2009-10-02 15:16:51 -04002595 Rctl = FC_RCTL_ELS_REQ;
2596 Type = FC_TYPE_ELS;
James Smart9c2face2008-01-11 01:53:18 -05002597 w5p->hcsw.Rctl = Rctl;
2598 w5p->hcsw.Type = Type;
2599 }
2600 }
James Smart92d7f7b2007-06-17 19:56:38 -05002601
James Smart3772a992009-05-22 14:50:54 -04002602 if (!lpfc_complete_unsol_iocb(phba, pring, saveq, Rctl, Type))
James Smart92d7f7b2007-06-17 19:56:38 -05002603 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002604 "0313 Ring %d handler: unexpected Rctl x%x "
James Smart92d7f7b2007-06-17 19:56:38 -05002605 "Type x%x received\n",
James Smarte8b62012007-08-02 11:10:09 -04002606 pring->ringno, Rctl, Type);
James Smart3772a992009-05-22 14:50:54 -04002607
James Smart92d7f7b2007-06-17 19:56:38 -05002608 return 1;
dea31012005-04-17 16:05:31 -05002609}
2610
James Smarte59058c2008-08-24 21:49:00 -04002611/**
James Smart3621a712009-04-06 18:47:14 -04002612 * lpfc_sli_iocbq_lookup - Find command iocb for the given response iocb
James Smarte59058c2008-08-24 21:49:00 -04002613 * @phba: Pointer to HBA context object.
2614 * @pring: Pointer to driver SLI ring object.
2615 * @prspiocb: Pointer to response iocb object.
2616 *
2617 * This function looks up the iocb_lookup table to get the command iocb
2618 * corresponding to the given response iocb using the iotag of the
2619 * response iocb. This function is called with the hbalock held.
2620 * This function returns the command iocb object if it finds the command
2621 * iocb else returns NULL.
2622 **/
dea31012005-04-17 16:05:31 -05002623static struct lpfc_iocbq *
James Smart2e0fef82007-06-17 19:56:36 -05002624lpfc_sli_iocbq_lookup(struct lpfc_hba *phba,
2625 struct lpfc_sli_ring *pring,
2626 struct lpfc_iocbq *prspiocb)
dea31012005-04-17 16:05:31 -05002627{
dea31012005-04-17 16:05:31 -05002628 struct lpfc_iocbq *cmd_iocb = NULL;
2629 uint16_t iotag;
2630
James Bottomley604a3e32005-10-29 10:28:33 -05002631 iotag = prspiocb->iocb.ulpIoTag;
dea31012005-04-17 16:05:31 -05002632
James Bottomley604a3e32005-10-29 10:28:33 -05002633 if (iotag != 0 && iotag <= phba->sli.last_iotag) {
2634 cmd_iocb = phba->sli.iocbq_lookup[iotag];
James Smart92d7f7b2007-06-17 19:56:38 -05002635 list_del_init(&cmd_iocb->list);
James Smart4f2e66c2012-05-09 21:17:07 -04002636 if (cmd_iocb->iocb_flag & LPFC_IO_ON_TXCMPLQ) {
James Smart4f2e66c2012-05-09 21:17:07 -04002637 cmd_iocb->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
James Smart2a9bf3d2010-06-07 15:24:45 -04002638 }
James Bottomley604a3e32005-10-29 10:28:33 -05002639 return cmd_iocb;
dea31012005-04-17 16:05:31 -05002640 }
2641
dea31012005-04-17 16:05:31 -05002642 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002643 "0317 iotag x%x is out off "
James Bottomley604a3e32005-10-29 10:28:33 -05002644 "range: max iotag x%x wd0 x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04002645 iotag, phba->sli.last_iotag,
James Bottomley604a3e32005-10-29 10:28:33 -05002646 *(((uint32_t *) &prspiocb->iocb) + 7));
dea31012005-04-17 16:05:31 -05002647 return NULL;
2648}
2649
James Smarte59058c2008-08-24 21:49:00 -04002650/**
James Smart3772a992009-05-22 14:50:54 -04002651 * lpfc_sli_iocbq_lookup_by_tag - Find command iocb for the iotag
2652 * @phba: Pointer to HBA context object.
2653 * @pring: Pointer to driver SLI ring object.
2654 * @iotag: IOCB tag.
2655 *
2656 * This function looks up the iocb_lookup table to get the command iocb
2657 * corresponding to the given iotag. This function is called with the
2658 * hbalock held.
2659 * This function returns the command iocb object if it finds the command
2660 * iocb else returns NULL.
2661 **/
2662static struct lpfc_iocbq *
2663lpfc_sli_iocbq_lookup_by_tag(struct lpfc_hba *phba,
2664 struct lpfc_sli_ring *pring, uint16_t iotag)
2665{
2666 struct lpfc_iocbq *cmd_iocb;
2667
2668 if (iotag != 0 && iotag <= phba->sli.last_iotag) {
2669 cmd_iocb = phba->sli.iocbq_lookup[iotag];
James Smart4f2e66c2012-05-09 21:17:07 -04002670 if (cmd_iocb->iocb_flag & LPFC_IO_ON_TXCMPLQ) {
2671 /* remove from txcmpl queue list */
2672 list_del_init(&cmd_iocb->list);
2673 cmd_iocb->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
James Smart4f2e66c2012-05-09 21:17:07 -04002674 return cmd_iocb;
James Smart2a9bf3d2010-06-07 15:24:45 -04002675 }
James Smart3772a992009-05-22 14:50:54 -04002676 }
James Smart3772a992009-05-22 14:50:54 -04002677 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2678 "0372 iotag x%x is out off range: max iotag (x%x)\n",
2679 iotag, phba->sli.last_iotag);
2680 return NULL;
2681}
2682
2683/**
James Smart3621a712009-04-06 18:47:14 -04002684 * lpfc_sli_process_sol_iocb - process solicited iocb completion
James Smarte59058c2008-08-24 21:49:00 -04002685 * @phba: Pointer to HBA context object.
2686 * @pring: Pointer to driver SLI ring object.
2687 * @saveq: Pointer to the response iocb to be processed.
2688 *
2689 * This function is called by the ring event handler for non-fcp
2690 * rings when there is a new response iocb in the response ring.
2691 * The caller is not required to hold any locks. This function
2692 * gets the command iocb associated with the response iocb and
2693 * calls the completion handler for the command iocb. If there
2694 * is no completion handler, the function will free the resources
2695 * associated with command iocb. If the response iocb is for
2696 * an already aborted command iocb, the status of the completion
2697 * is changed to IOSTAT_LOCAL_REJECT/IOERR_SLI_ABORTED.
2698 * This function always returns 1.
2699 **/
dea31012005-04-17 16:05:31 -05002700static int
James Smart2e0fef82007-06-17 19:56:36 -05002701lpfc_sli_process_sol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
dea31012005-04-17 16:05:31 -05002702 struct lpfc_iocbq *saveq)
2703{
James Smart2e0fef82007-06-17 19:56:36 -05002704 struct lpfc_iocbq *cmdiocbp;
dea31012005-04-17 16:05:31 -05002705 int rc = 1;
2706 unsigned long iflag;
2707
2708 /* Based on the iotag field, get the cmd IOCB from the txcmplq */
James Smart2e0fef82007-06-17 19:56:36 -05002709 spin_lock_irqsave(&phba->hbalock, iflag);
James Bottomley604a3e32005-10-29 10:28:33 -05002710 cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring, saveq);
James Smart2e0fef82007-06-17 19:56:36 -05002711 spin_unlock_irqrestore(&phba->hbalock, iflag);
2712
dea31012005-04-17 16:05:31 -05002713 if (cmdiocbp) {
2714 if (cmdiocbp->iocb_cmpl) {
2715 /*
James Smartea2151b2008-09-07 11:52:10 -04002716 * If an ELS command failed send an event to mgmt
2717 * application.
2718 */
2719 if (saveq->iocb.ulpStatus &&
2720 (pring->ringno == LPFC_ELS_RING) &&
2721 (cmdiocbp->iocb.ulpCommand ==
2722 CMD_ELS_REQUEST64_CR))
2723 lpfc_send_els_failure_event(phba,
2724 cmdiocbp, saveq);
2725
2726 /*
dea31012005-04-17 16:05:31 -05002727 * Post all ELS completions to the worker thread.
2728 * All other are passed to the completion callback.
2729 */
2730 if (pring->ringno == LPFC_ELS_RING) {
James Smart341af102010-01-26 23:07:37 -05002731 if ((phba->sli_rev < LPFC_SLI_REV4) &&
2732 (cmdiocbp->iocb_flag &
2733 LPFC_DRIVER_ABORTED)) {
2734 spin_lock_irqsave(&phba->hbalock,
2735 iflag);
James Smart07951072007-04-25 09:51:38 -04002736 cmdiocbp->iocb_flag &=
2737 ~LPFC_DRIVER_ABORTED;
James Smart341af102010-01-26 23:07:37 -05002738 spin_unlock_irqrestore(&phba->hbalock,
2739 iflag);
James Smart07951072007-04-25 09:51:38 -04002740 saveq->iocb.ulpStatus =
2741 IOSTAT_LOCAL_REJECT;
2742 saveq->iocb.un.ulpWord[4] =
2743 IOERR_SLI_ABORTED;
James Smart0ff10d42008-01-11 01:52:36 -05002744
2745 /* Firmware could still be in progress
2746 * of DMAing payload, so don't free data
2747 * buffer till after a hbeat.
2748 */
James Smart341af102010-01-26 23:07:37 -05002749 spin_lock_irqsave(&phba->hbalock,
2750 iflag);
James Smart0ff10d42008-01-11 01:52:36 -05002751 saveq->iocb_flag |= LPFC_DELAY_MEM_FREE;
James Smart341af102010-01-26 23:07:37 -05002752 spin_unlock_irqrestore(&phba->hbalock,
2753 iflag);
2754 }
James Smart0f65ff62010-02-26 14:14:23 -05002755 if (phba->sli_rev == LPFC_SLI_REV4) {
2756 if (saveq->iocb_flag &
2757 LPFC_EXCHANGE_BUSY) {
2758 /* Set cmdiocb flag for the
2759 * exchange busy so sgl (xri)
2760 * will not be released until
2761 * the abort xri is received
2762 * from hba.
2763 */
2764 spin_lock_irqsave(
2765 &phba->hbalock, iflag);
2766 cmdiocbp->iocb_flag |=
2767 LPFC_EXCHANGE_BUSY;
2768 spin_unlock_irqrestore(
2769 &phba->hbalock, iflag);
2770 }
2771 if (cmdiocbp->iocb_flag &
2772 LPFC_DRIVER_ABORTED) {
2773 /*
2774 * Clear LPFC_DRIVER_ABORTED
2775 * bit in case it was driver
2776 * initiated abort.
2777 */
2778 spin_lock_irqsave(
2779 &phba->hbalock, iflag);
2780 cmdiocbp->iocb_flag &=
2781 ~LPFC_DRIVER_ABORTED;
2782 spin_unlock_irqrestore(
2783 &phba->hbalock, iflag);
2784 cmdiocbp->iocb.ulpStatus =
2785 IOSTAT_LOCAL_REJECT;
2786 cmdiocbp->iocb.un.ulpWord[4] =
2787 IOERR_ABORT_REQUESTED;
2788 /*
2789 * For SLI4, irsiocb contains
2790 * NO_XRI in sli_xritag, it
2791 * shall not affect releasing
2792 * sgl (xri) process.
2793 */
2794 saveq->iocb.ulpStatus =
2795 IOSTAT_LOCAL_REJECT;
2796 saveq->iocb.un.ulpWord[4] =
2797 IOERR_SLI_ABORTED;
2798 spin_lock_irqsave(
2799 &phba->hbalock, iflag);
2800 saveq->iocb_flag |=
2801 LPFC_DELAY_MEM_FREE;
2802 spin_unlock_irqrestore(
2803 &phba->hbalock, iflag);
2804 }
James Smart07951072007-04-25 09:51:38 -04002805 }
dea31012005-04-17 16:05:31 -05002806 }
James Smart2e0fef82007-06-17 19:56:36 -05002807 (cmdiocbp->iocb_cmpl) (phba, cmdiocbp, saveq);
James Bottomley604a3e32005-10-29 10:28:33 -05002808 } else
2809 lpfc_sli_release_iocbq(phba, cmdiocbp);
dea31012005-04-17 16:05:31 -05002810 } else {
2811 /*
2812 * Unknown initiating command based on the response iotag.
2813 * This could be the case on the ELS ring because of
2814 * lpfc_els_abort().
2815 */
2816 if (pring->ringno != LPFC_ELS_RING) {
2817 /*
2818 * Ring <ringno> handler: unexpected completion IoTag
2819 * <IoTag>
2820 */
James Smarta257bf92009-04-06 18:48:10 -04002821 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002822 "0322 Ring %d handler: "
2823 "unexpected completion IoTag x%x "
2824 "Data: x%x x%x x%x x%x\n",
2825 pring->ringno,
2826 saveq->iocb.ulpIoTag,
2827 saveq->iocb.ulpStatus,
2828 saveq->iocb.un.ulpWord[4],
2829 saveq->iocb.ulpCommand,
2830 saveq->iocb.ulpContext);
dea31012005-04-17 16:05:31 -05002831 }
2832 }
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04002833
dea31012005-04-17 16:05:31 -05002834 return rc;
2835}
2836
James Smarte59058c2008-08-24 21:49:00 -04002837/**
James Smart3621a712009-04-06 18:47:14 -04002838 * lpfc_sli_rsp_pointers_error - Response ring pointer error handler
James Smarte59058c2008-08-24 21:49:00 -04002839 * @phba: Pointer to HBA context object.
2840 * @pring: Pointer to driver SLI ring object.
2841 *
2842 * This function is called from the iocb ring event handlers when
2843 * put pointer is ahead of the get pointer for a ring. This function signal
2844 * an error attention condition to the worker thread and the worker
2845 * thread will transition the HBA to offline state.
2846 **/
James Smart2e0fef82007-06-17 19:56:36 -05002847static void
2848lpfc_sli_rsp_pointers_error(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002849{
James Smart34b02dc2008-08-24 21:49:55 -04002850 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002851 /*
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02002852 * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002853 * rsp ring <portRspMax>
2854 */
2855 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002856 "0312 Ring %d handler: portRspPut %d "
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02002857 "is bigger than rsp ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -04002858 pring->ringno, le32_to_cpu(pgp->rspPutInx),
James Smart7e56aa22012-08-03 12:35:34 -04002859 pring->sli.sli3.numRiocb);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002860
James Smart2e0fef82007-06-17 19:56:36 -05002861 phba->link_state = LPFC_HBA_ERROR;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002862
2863 /*
2864 * All error attention handlers are posted to
2865 * worker thread
2866 */
2867 phba->work_ha |= HA_ERATT;
2868 phba->work_hs = HS_FFER3;
James Smart92d7f7b2007-06-17 19:56:38 -05002869
James Smart5e9d9b82008-06-14 22:52:53 -04002870 lpfc_worker_wake_up(phba);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002871
2872 return;
2873}
2874
James Smarte59058c2008-08-24 21:49:00 -04002875/**
James Smart3621a712009-04-06 18:47:14 -04002876 * lpfc_poll_eratt - Error attention polling timer timeout handler
James Smart93996272008-08-24 21:50:30 -04002877 * @ptr: Pointer to address of HBA context object.
2878 *
2879 * This function is invoked by the Error Attention polling timer when the
2880 * timer times out. It will check the SLI Error Attention register for
2881 * possible attention events. If so, it will post an Error Attention event
2882 * and wake up worker thread to process it. Otherwise, it will set up the
2883 * Error Attention polling timer for the next poll.
2884 **/
2885void lpfc_poll_eratt(unsigned long ptr)
2886{
2887 struct lpfc_hba *phba;
James Smartaa6fbb72012-08-03 12:36:03 -04002888 uint32_t eratt = 0, rem;
2889 uint64_t sli_intr, cnt;
James Smart93996272008-08-24 21:50:30 -04002890
2891 phba = (struct lpfc_hba *)ptr;
2892
James Smartaa6fbb72012-08-03 12:36:03 -04002893 /* Here we will also keep track of interrupts per sec of the hba */
2894 sli_intr = phba->sli.slistat.sli_intr;
2895
2896 if (phba->sli.slistat.sli_prev_intr > sli_intr)
2897 cnt = (((uint64_t)(-1) - phba->sli.slistat.sli_prev_intr) +
2898 sli_intr);
2899 else
2900 cnt = (sli_intr - phba->sli.slistat.sli_prev_intr);
2901
2902 /* 64-bit integer division not supporte on 32-bit x86 - use do_div */
2903 rem = do_div(cnt, LPFC_ERATT_POLL_INTERVAL);
2904 phba->sli.slistat.sli_ips = cnt;
2905
2906 phba->sli.slistat.sli_prev_intr = sli_intr;
2907
James Smart93996272008-08-24 21:50:30 -04002908 /* Check chip HA register for error event */
2909 eratt = lpfc_sli_check_eratt(phba);
2910
2911 if (eratt)
2912 /* Tell the worker thread there is work to do */
2913 lpfc_worker_wake_up(phba);
2914 else
2915 /* Restart the timer for next eratt poll */
James Smart256ec0d2013-04-17 20:14:58 -04002916 mod_timer(&phba->eratt_poll,
2917 jiffies +
2918 msecs_to_jiffies(1000 * LPFC_ERATT_POLL_INTERVAL));
James Smart93996272008-08-24 21:50:30 -04002919 return;
2920}
2921
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002922
James Smarte59058c2008-08-24 21:49:00 -04002923/**
James Smart3621a712009-04-06 18:47:14 -04002924 * lpfc_sli_handle_fast_ring_event - Handle ring events on FCP ring
James Smarte59058c2008-08-24 21:49:00 -04002925 * @phba: Pointer to HBA context object.
2926 * @pring: Pointer to driver SLI ring object.
2927 * @mask: Host attention register mask for this ring.
2928 *
2929 * This function is called from the interrupt context when there is a ring
2930 * event for the fcp ring. The caller does not hold any lock.
2931 * The function processes each response iocb in the response ring until it
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002932 * finds an iocb with LE bit set and chains all the iocbs up to the iocb with
James Smarte59058c2008-08-24 21:49:00 -04002933 * LE bit set. The function will call the completion handler of the command iocb
2934 * if the response iocb indicates a completion for a command iocb or it is
2935 * an abort completion. The function will call lpfc_sli_process_unsol_iocb
2936 * function if this is an unsolicited iocb.
dea31012005-04-17 16:05:31 -05002937 * This routine presumes LPFC_FCP_RING handling and doesn't bother
James Smart45ed1192009-10-02 15:17:02 -04002938 * to check it explicitly.
2939 */
2940int
James Smart2e0fef82007-06-17 19:56:36 -05002941lpfc_sli_handle_fast_ring_event(struct lpfc_hba *phba,
2942 struct lpfc_sli_ring *pring, uint32_t mask)
dea31012005-04-17 16:05:31 -05002943{
James Smart34b02dc2008-08-24 21:49:55 -04002944 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
dea31012005-04-17 16:05:31 -05002945 IOCB_t *irsp = NULL;
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04002946 IOCB_t *entry = NULL;
dea31012005-04-17 16:05:31 -05002947 struct lpfc_iocbq *cmdiocbq = NULL;
2948 struct lpfc_iocbq rspiocbq;
dea31012005-04-17 16:05:31 -05002949 uint32_t status;
2950 uint32_t portRspPut, portRspMax;
2951 int rc = 1;
2952 lpfc_iocb_type type;
2953 unsigned long iflag;
2954 uint32_t rsp_cmpl = 0;
dea31012005-04-17 16:05:31 -05002955
James Smart2e0fef82007-06-17 19:56:36 -05002956 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05002957 pring->stats.iocb_event++;
2958
dea31012005-04-17 16:05:31 -05002959 /*
2960 * The next available response entry should never exceed the maximum
2961 * entries. If it does, treat it as an adapter hardware error.
2962 */
James Smart7e56aa22012-08-03 12:35:34 -04002963 portRspMax = pring->sli.sli3.numRiocb;
dea31012005-04-17 16:05:31 -05002964 portRspPut = le32_to_cpu(pgp->rspPutInx);
2965 if (unlikely(portRspPut >= portRspMax)) {
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002966 lpfc_sli_rsp_pointers_error(phba, pring);
James Smart2e0fef82007-06-17 19:56:36 -05002967 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05002968 return 1;
2969 }
James Smart45ed1192009-10-02 15:17:02 -04002970 if (phba->fcp_ring_in_use) {
2971 spin_unlock_irqrestore(&phba->hbalock, iflag);
2972 return 1;
2973 } else
2974 phba->fcp_ring_in_use = 1;
dea31012005-04-17 16:05:31 -05002975
2976 rmb();
James Smart7e56aa22012-08-03 12:35:34 -04002977 while (pring->sli.sli3.rspidx != portRspPut) {
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04002978 /*
2979 * Fetch an entry off the ring and copy it into a local data
2980 * structure. The copy involves a byte-swap since the
2981 * network byte order and pci byte orders are different.
2982 */
James Smarted957682007-06-17 19:56:37 -05002983 entry = lpfc_resp_iocb(phba, pring);
James Smart858c9f62007-06-17 19:56:39 -05002984 phba->last_completion_time = jiffies;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002985
James Smart7e56aa22012-08-03 12:35:34 -04002986 if (++pring->sli.sli3.rspidx >= portRspMax)
2987 pring->sli.sli3.rspidx = 0;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002988
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04002989 lpfc_sli_pcimem_bcopy((uint32_t *) entry,
2990 (uint32_t *) &rspiocbq.iocb,
James Smarted957682007-06-17 19:56:37 -05002991 phba->iocb_rsp_size);
James Smarta4bc3372006-12-02 13:34:16 -05002992 INIT_LIST_HEAD(&(rspiocbq.list));
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04002993 irsp = &rspiocbq.iocb;
2994
dea31012005-04-17 16:05:31 -05002995 type = lpfc_sli_iocb_cmd_type(irsp->ulpCommand & CMD_IOCB_MASK);
2996 pring->stats.iocb_rsp++;
2997 rsp_cmpl++;
2998
2999 if (unlikely(irsp->ulpStatus)) {
James Smart92d7f7b2007-06-17 19:56:38 -05003000 /*
3001 * If resource errors reported from HBA, reduce
3002 * queuedepths of the SCSI device.
3003 */
3004 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
James Smarte3d2b802012-08-14 14:25:43 -04003005 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
3006 IOERR_NO_RESOURCES)) {
James Smart92d7f7b2007-06-17 19:56:38 -05003007 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart3772a992009-05-22 14:50:54 -04003008 phba->lpfc_rampdown_queue_depth(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05003009 spin_lock_irqsave(&phba->hbalock, iflag);
3010 }
3011
dea31012005-04-17 16:05:31 -05003012 /* Rsp ring <ringno> error: IOCB */
3013 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003014 "0336 Rsp Ring %d error: IOCB Data: "
James Smart92d7f7b2007-06-17 19:56:38 -05003015 "x%x x%x x%x x%x x%x x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04003016 pring->ringno,
James Smart92d7f7b2007-06-17 19:56:38 -05003017 irsp->un.ulpWord[0],
3018 irsp->un.ulpWord[1],
3019 irsp->un.ulpWord[2],
3020 irsp->un.ulpWord[3],
3021 irsp->un.ulpWord[4],
3022 irsp->un.ulpWord[5],
James Smartd7c255b2008-08-24 21:50:00 -04003023 *(uint32_t *)&irsp->un1,
3024 *((uint32_t *)&irsp->un1 + 1));
dea31012005-04-17 16:05:31 -05003025 }
3026
3027 switch (type) {
3028 case LPFC_ABORT_IOCB:
3029 case LPFC_SOL_IOCB:
3030 /*
3031 * Idle exchange closed via ABTS from port. No iocb
3032 * resources need to be recovered.
3033 */
3034 if (unlikely(irsp->ulpCommand == CMD_XRI_ABORTED_CX)) {
James Smartdca94792006-08-01 07:34:08 -04003035 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003036 "0333 IOCB cmd 0x%x"
James Smartdca94792006-08-01 07:34:08 -04003037 " processed. Skipping"
James Smart92d7f7b2007-06-17 19:56:38 -05003038 " completion\n",
James Smartdca94792006-08-01 07:34:08 -04003039 irsp->ulpCommand);
dea31012005-04-17 16:05:31 -05003040 break;
3041 }
3042
James Bottomley604a3e32005-10-29 10:28:33 -05003043 cmdiocbq = lpfc_sli_iocbq_lookup(phba, pring,
3044 &rspiocbq);
James Smart0f65ff62010-02-26 14:14:23 -05003045 if (unlikely(!cmdiocbq))
3046 break;
3047 if (cmdiocbq->iocb_flag & LPFC_DRIVER_ABORTED)
3048 cmdiocbq->iocb_flag &= ~LPFC_DRIVER_ABORTED;
3049 if (cmdiocbq->iocb_cmpl) {
3050 spin_unlock_irqrestore(&phba->hbalock, iflag);
3051 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq,
3052 &rspiocbq);
3053 spin_lock_irqsave(&phba->hbalock, iflag);
3054 }
dea31012005-04-17 16:05:31 -05003055 break;
James Smarta4bc3372006-12-02 13:34:16 -05003056 case LPFC_UNSOL_IOCB:
James Smart2e0fef82007-06-17 19:56:36 -05003057 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smarta4bc3372006-12-02 13:34:16 -05003058 lpfc_sli_process_unsol_iocb(phba, pring, &rspiocbq);
James Smart2e0fef82007-06-17 19:56:36 -05003059 spin_lock_irqsave(&phba->hbalock, iflag);
James Smarta4bc3372006-12-02 13:34:16 -05003060 break;
dea31012005-04-17 16:05:31 -05003061 default:
3062 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
3063 char adaptermsg[LPFC_MAX_ADPTMSG];
3064 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
3065 memcpy(&adaptermsg[0], (uint8_t *) irsp,
3066 MAX_MSG_DATA);
Joe Perches898eb712007-10-18 03:06:30 -07003067 dev_warn(&((phba->pcidev)->dev),
3068 "lpfc%d: %s\n",
dea31012005-04-17 16:05:31 -05003069 phba->brd_no, adaptermsg);
3070 } else {
3071 /* Unknown IOCB command */
3072 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003073 "0334 Unknown IOCB command "
James Smart92d7f7b2007-06-17 19:56:38 -05003074 "Data: x%x, x%x x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04003075 type, irsp->ulpCommand,
James Smart92d7f7b2007-06-17 19:56:38 -05003076 irsp->ulpStatus,
3077 irsp->ulpIoTag,
3078 irsp->ulpContext);
dea31012005-04-17 16:05:31 -05003079 }
3080 break;
3081 }
3082
3083 /*
3084 * The response IOCB has been processed. Update the ring
3085 * pointer in SLIM. If the port response put pointer has not
3086 * been updated, sync the pgp->rspPutInx and fetch the new port
3087 * response put pointer.
3088 */
James Smart7e56aa22012-08-03 12:35:34 -04003089 writel(pring->sli.sli3.rspidx,
3090 &phba->host_gp[pring->ringno].rspGetInx);
dea31012005-04-17 16:05:31 -05003091
James Smart7e56aa22012-08-03 12:35:34 -04003092 if (pring->sli.sli3.rspidx == portRspPut)
dea31012005-04-17 16:05:31 -05003093 portRspPut = le32_to_cpu(pgp->rspPutInx);
3094 }
3095
3096 if ((rsp_cmpl > 0) && (mask & HA_R0RE_REQ)) {
3097 pring->stats.iocb_rsp_full++;
3098 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
3099 writel(status, phba->CAregaddr);
3100 readl(phba->CAregaddr);
3101 }
3102 if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
3103 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
3104 pring->stats.iocb_cmd_empty++;
3105
3106 /* Force update of the local copy of cmdGetInx */
James Smart7e56aa22012-08-03 12:35:34 -04003107 pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
dea31012005-04-17 16:05:31 -05003108 lpfc_sli_resume_iocb(phba, pring);
3109
3110 if ((pring->lpfc_sli_cmd_available))
3111 (pring->lpfc_sli_cmd_available) (phba, pring);
3112
3113 }
3114
James Smart45ed1192009-10-02 15:17:02 -04003115 phba->fcp_ring_in_use = 0;
James Smart2e0fef82007-06-17 19:56:36 -05003116 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003117 return rc;
3118}
3119
James Smarte59058c2008-08-24 21:49:00 -04003120/**
James Smart3772a992009-05-22 14:50:54 -04003121 * lpfc_sli_sp_handle_rspiocb - Handle slow-path response iocb
3122 * @phba: Pointer to HBA context object.
3123 * @pring: Pointer to driver SLI ring object.
3124 * @rspiocbp: Pointer to driver response IOCB object.
3125 *
3126 * This function is called from the worker thread when there is a slow-path
3127 * response IOCB to process. This function chains all the response iocbs until
3128 * seeing the iocb with the LE bit set. The function will call
3129 * lpfc_sli_process_sol_iocb function if the response iocb indicates a
3130 * completion of a command iocb. The function will call the
3131 * lpfc_sli_process_unsol_iocb function if this is an unsolicited iocb.
3132 * The function frees the resources or calls the completion handler if this
3133 * iocb is an abort completion. The function returns NULL when the response
3134 * iocb has the LE bit set and all the chained iocbs are processed, otherwise
3135 * this function shall chain the iocb on to the iocb_continueq and return the
3136 * response iocb passed in.
3137 **/
3138static struct lpfc_iocbq *
3139lpfc_sli_sp_handle_rspiocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
3140 struct lpfc_iocbq *rspiocbp)
3141{
3142 struct lpfc_iocbq *saveq;
3143 struct lpfc_iocbq *cmdiocbp;
3144 struct lpfc_iocbq *next_iocb;
3145 IOCB_t *irsp = NULL;
3146 uint32_t free_saveq;
3147 uint8_t iocb_cmd_type;
3148 lpfc_iocb_type type;
3149 unsigned long iflag;
3150 int rc;
3151
3152 spin_lock_irqsave(&phba->hbalock, iflag);
3153 /* First add the response iocb to the countinueq list */
3154 list_add_tail(&rspiocbp->list, &(pring->iocb_continueq));
3155 pring->iocb_continueq_cnt++;
3156
Justin P. Mattock70f23fd2011-05-10 10:16:21 +02003157 /* Now, determine whether the list is completed for processing */
James Smart3772a992009-05-22 14:50:54 -04003158 irsp = &rspiocbp->iocb;
3159 if (irsp->ulpLe) {
3160 /*
3161 * By default, the driver expects to free all resources
3162 * associated with this iocb completion.
3163 */
3164 free_saveq = 1;
3165 saveq = list_get_first(&pring->iocb_continueq,
3166 struct lpfc_iocbq, list);
3167 irsp = &(saveq->iocb);
3168 list_del_init(&pring->iocb_continueq);
3169 pring->iocb_continueq_cnt = 0;
3170
3171 pring->stats.iocb_rsp++;
3172
3173 /*
3174 * If resource errors reported from HBA, reduce
3175 * queuedepths of the SCSI device.
3176 */
3177 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
James Smarte3d2b802012-08-14 14:25:43 -04003178 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
3179 IOERR_NO_RESOURCES)) {
James Smart3772a992009-05-22 14:50:54 -04003180 spin_unlock_irqrestore(&phba->hbalock, iflag);
3181 phba->lpfc_rampdown_queue_depth(phba);
3182 spin_lock_irqsave(&phba->hbalock, iflag);
3183 }
3184
3185 if (irsp->ulpStatus) {
3186 /* Rsp ring <ringno> error: IOCB */
3187 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
3188 "0328 Rsp Ring %d error: "
3189 "IOCB Data: "
3190 "x%x x%x x%x x%x "
3191 "x%x x%x x%x x%x "
3192 "x%x x%x x%x x%x "
3193 "x%x x%x x%x x%x\n",
3194 pring->ringno,
3195 irsp->un.ulpWord[0],
3196 irsp->un.ulpWord[1],
3197 irsp->un.ulpWord[2],
3198 irsp->un.ulpWord[3],
3199 irsp->un.ulpWord[4],
3200 irsp->un.ulpWord[5],
3201 *(((uint32_t *) irsp) + 6),
3202 *(((uint32_t *) irsp) + 7),
3203 *(((uint32_t *) irsp) + 8),
3204 *(((uint32_t *) irsp) + 9),
3205 *(((uint32_t *) irsp) + 10),
3206 *(((uint32_t *) irsp) + 11),
3207 *(((uint32_t *) irsp) + 12),
3208 *(((uint32_t *) irsp) + 13),
3209 *(((uint32_t *) irsp) + 14),
3210 *(((uint32_t *) irsp) + 15));
3211 }
3212
3213 /*
3214 * Fetch the IOCB command type and call the correct completion
3215 * routine. Solicited and Unsolicited IOCBs on the ELS ring
3216 * get freed back to the lpfc_iocb_list by the discovery
3217 * kernel thread.
3218 */
3219 iocb_cmd_type = irsp->ulpCommand & CMD_IOCB_MASK;
3220 type = lpfc_sli_iocb_cmd_type(iocb_cmd_type);
3221 switch (type) {
3222 case LPFC_SOL_IOCB:
3223 spin_unlock_irqrestore(&phba->hbalock, iflag);
3224 rc = lpfc_sli_process_sol_iocb(phba, pring, saveq);
3225 spin_lock_irqsave(&phba->hbalock, iflag);
3226 break;
3227
3228 case LPFC_UNSOL_IOCB:
3229 spin_unlock_irqrestore(&phba->hbalock, iflag);
3230 rc = lpfc_sli_process_unsol_iocb(phba, pring, saveq);
3231 spin_lock_irqsave(&phba->hbalock, iflag);
3232 if (!rc)
3233 free_saveq = 0;
3234 break;
3235
3236 case LPFC_ABORT_IOCB:
3237 cmdiocbp = NULL;
3238 if (irsp->ulpCommand != CMD_XRI_ABORTED_CX)
3239 cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring,
3240 saveq);
3241 if (cmdiocbp) {
3242 /* Call the specified completion routine */
3243 if (cmdiocbp->iocb_cmpl) {
3244 spin_unlock_irqrestore(&phba->hbalock,
3245 iflag);
3246 (cmdiocbp->iocb_cmpl)(phba, cmdiocbp,
3247 saveq);
3248 spin_lock_irqsave(&phba->hbalock,
3249 iflag);
3250 } else
3251 __lpfc_sli_release_iocbq(phba,
3252 cmdiocbp);
3253 }
3254 break;
3255
3256 case LPFC_UNKNOWN_IOCB:
3257 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
3258 char adaptermsg[LPFC_MAX_ADPTMSG];
3259 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
3260 memcpy(&adaptermsg[0], (uint8_t *)irsp,
3261 MAX_MSG_DATA);
3262 dev_warn(&((phba->pcidev)->dev),
3263 "lpfc%d: %s\n",
3264 phba->brd_no, adaptermsg);
3265 } else {
3266 /* Unknown IOCB command */
3267 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3268 "0335 Unknown IOCB "
3269 "command Data: x%x "
3270 "x%x x%x x%x\n",
3271 irsp->ulpCommand,
3272 irsp->ulpStatus,
3273 irsp->ulpIoTag,
3274 irsp->ulpContext);
3275 }
3276 break;
3277 }
3278
3279 if (free_saveq) {
3280 list_for_each_entry_safe(rspiocbp, next_iocb,
3281 &saveq->list, list) {
3282 list_del(&rspiocbp->list);
3283 __lpfc_sli_release_iocbq(phba, rspiocbp);
3284 }
3285 __lpfc_sli_release_iocbq(phba, saveq);
3286 }
3287 rspiocbp = NULL;
3288 }
3289 spin_unlock_irqrestore(&phba->hbalock, iflag);
3290 return rspiocbp;
3291}
3292
3293/**
3294 * lpfc_sli_handle_slow_ring_event - Wrapper func for handling slow-path iocbs
James Smarte59058c2008-08-24 21:49:00 -04003295 * @phba: Pointer to HBA context object.
3296 * @pring: Pointer to driver SLI ring object.
3297 * @mask: Host attention register mask for this ring.
3298 *
James Smart3772a992009-05-22 14:50:54 -04003299 * This routine wraps the actual slow_ring event process routine from the
3300 * API jump table function pointer from the lpfc_hba struct.
James Smarte59058c2008-08-24 21:49:00 -04003301 **/
James Smart3772a992009-05-22 14:50:54 -04003302void
James Smart2e0fef82007-06-17 19:56:36 -05003303lpfc_sli_handle_slow_ring_event(struct lpfc_hba *phba,
3304 struct lpfc_sli_ring *pring, uint32_t mask)
dea31012005-04-17 16:05:31 -05003305{
James Smart3772a992009-05-22 14:50:54 -04003306 phba->lpfc_sli_handle_slow_ring_event(phba, pring, mask);
3307}
3308
3309/**
3310 * lpfc_sli_handle_slow_ring_event_s3 - Handle SLI3 ring event for non-FCP rings
3311 * @phba: Pointer to HBA context object.
3312 * @pring: Pointer to driver SLI ring object.
3313 * @mask: Host attention register mask for this ring.
3314 *
3315 * This function is called from the worker thread when there is a ring event
3316 * for non-fcp rings. The caller does not hold any lock. The function will
3317 * remove each response iocb in the response ring and calls the handle
3318 * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
3319 **/
3320static void
3321lpfc_sli_handle_slow_ring_event_s3(struct lpfc_hba *phba,
3322 struct lpfc_sli_ring *pring, uint32_t mask)
3323{
James Smart34b02dc2008-08-24 21:49:55 -04003324 struct lpfc_pgp *pgp;
dea31012005-04-17 16:05:31 -05003325 IOCB_t *entry;
3326 IOCB_t *irsp = NULL;
3327 struct lpfc_iocbq *rspiocbp = NULL;
dea31012005-04-17 16:05:31 -05003328 uint32_t portRspPut, portRspMax;
dea31012005-04-17 16:05:31 -05003329 unsigned long iflag;
James Smart3772a992009-05-22 14:50:54 -04003330 uint32_t status;
dea31012005-04-17 16:05:31 -05003331
James Smart34b02dc2008-08-24 21:49:55 -04003332 pgp = &phba->port_gp[pring->ringno];
James Smart2e0fef82007-06-17 19:56:36 -05003333 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003334 pring->stats.iocb_event++;
3335
dea31012005-04-17 16:05:31 -05003336 /*
3337 * The next available response entry should never exceed the maximum
3338 * entries. If it does, treat it as an adapter hardware error.
3339 */
James Smart7e56aa22012-08-03 12:35:34 -04003340 portRspMax = pring->sli.sli3.numRiocb;
dea31012005-04-17 16:05:31 -05003341 portRspPut = le32_to_cpu(pgp->rspPutInx);
3342 if (portRspPut >= portRspMax) {
3343 /*
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02003344 * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
dea31012005-04-17 16:05:31 -05003345 * rsp ring <portRspMax>
3346 */
James Smarted957682007-06-17 19:56:37 -05003347 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003348 "0303 Ring %d handler: portRspPut %d "
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02003349 "is bigger than rsp ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -04003350 pring->ringno, portRspPut, portRspMax);
dea31012005-04-17 16:05:31 -05003351
James Smart2e0fef82007-06-17 19:56:36 -05003352 phba->link_state = LPFC_HBA_ERROR;
3353 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003354
3355 phba->work_hs = HS_FFER3;
3356 lpfc_handle_eratt(phba);
3357
James Smart3772a992009-05-22 14:50:54 -04003358 return;
dea31012005-04-17 16:05:31 -05003359 }
3360
3361 rmb();
James Smart7e56aa22012-08-03 12:35:34 -04003362 while (pring->sli.sli3.rspidx != portRspPut) {
dea31012005-04-17 16:05:31 -05003363 /*
3364 * Build a completion list and call the appropriate handler.
3365 * The process is to get the next available response iocb, get
3366 * a free iocb from the list, copy the response data into the
3367 * free iocb, insert to the continuation list, and update the
3368 * next response index to slim. This process makes response
3369 * iocb's in the ring available to DMA as fast as possible but
3370 * pays a penalty for a copy operation. Since the iocb is
3371 * only 32 bytes, this penalty is considered small relative to
3372 * the PCI reads for register values and a slim write. When
3373 * the ulpLe field is set, the entire Command has been
3374 * received.
3375 */
James Smarted957682007-06-17 19:56:37 -05003376 entry = lpfc_resp_iocb(phba, pring);
3377
James Smart858c9f62007-06-17 19:56:39 -05003378 phba->last_completion_time = jiffies;
James Smart2e0fef82007-06-17 19:56:36 -05003379 rspiocbp = __lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -05003380 if (rspiocbp == NULL) {
3381 printk(KERN_ERR "%s: out of buffers! Failing "
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07003382 "completion.\n", __func__);
dea31012005-04-17 16:05:31 -05003383 break;
3384 }
3385
James Smarted957682007-06-17 19:56:37 -05003386 lpfc_sli_pcimem_bcopy(entry, &rspiocbp->iocb,
3387 phba->iocb_rsp_size);
dea31012005-04-17 16:05:31 -05003388 irsp = &rspiocbp->iocb;
3389
James Smart7e56aa22012-08-03 12:35:34 -04003390 if (++pring->sli.sli3.rspidx >= portRspMax)
3391 pring->sli.sli3.rspidx = 0;
dea31012005-04-17 16:05:31 -05003392
James Smarta58cbd52007-08-02 11:09:43 -04003393 if (pring->ringno == LPFC_ELS_RING) {
3394 lpfc_debugfs_slow_ring_trc(phba,
3395 "IOCB rsp ring: wd4:x%08x wd6:x%08x wd7:x%08x",
3396 *(((uint32_t *) irsp) + 4),
3397 *(((uint32_t *) irsp) + 6),
3398 *(((uint32_t *) irsp) + 7));
3399 }
3400
James Smart7e56aa22012-08-03 12:35:34 -04003401 writel(pring->sli.sli3.rspidx,
3402 &phba->host_gp[pring->ringno].rspGetInx);
dea31012005-04-17 16:05:31 -05003403
James Smart3772a992009-05-22 14:50:54 -04003404 spin_unlock_irqrestore(&phba->hbalock, iflag);
3405 /* Handle the response IOCB */
3406 rspiocbp = lpfc_sli_sp_handle_rspiocb(phba, pring, rspiocbp);
3407 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003408
3409 /*
3410 * If the port response put pointer has not been updated, sync
3411 * the pgp->rspPutInx in the MAILBOX_tand fetch the new port
3412 * response put pointer.
3413 */
James Smart7e56aa22012-08-03 12:35:34 -04003414 if (pring->sli.sli3.rspidx == portRspPut) {
dea31012005-04-17 16:05:31 -05003415 portRspPut = le32_to_cpu(pgp->rspPutInx);
3416 }
James Smart7e56aa22012-08-03 12:35:34 -04003417 } /* while (pring->sli.sli3.rspidx != portRspPut) */
dea31012005-04-17 16:05:31 -05003418
James Smart92d7f7b2007-06-17 19:56:38 -05003419 if ((rspiocbp != NULL) && (mask & HA_R0RE_REQ)) {
dea31012005-04-17 16:05:31 -05003420 /* At least one response entry has been freed */
3421 pring->stats.iocb_rsp_full++;
3422 /* SET RxRE_RSP in Chip Att register */
3423 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
3424 writel(status, phba->CAregaddr);
3425 readl(phba->CAregaddr); /* flush */
3426 }
3427 if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
3428 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
3429 pring->stats.iocb_cmd_empty++;
3430
3431 /* Force update of the local copy of cmdGetInx */
James Smart7e56aa22012-08-03 12:35:34 -04003432 pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
dea31012005-04-17 16:05:31 -05003433 lpfc_sli_resume_iocb(phba, pring);
3434
3435 if ((pring->lpfc_sli_cmd_available))
3436 (pring->lpfc_sli_cmd_available) (phba, pring);
3437
3438 }
3439
James Smart2e0fef82007-06-17 19:56:36 -05003440 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart3772a992009-05-22 14:50:54 -04003441 return;
dea31012005-04-17 16:05:31 -05003442}
3443
James Smarte59058c2008-08-24 21:49:00 -04003444/**
James Smart4f774512009-05-22 14:52:35 -04003445 * lpfc_sli_handle_slow_ring_event_s4 - Handle SLI4 slow-path els events
3446 * @phba: Pointer to HBA context object.
3447 * @pring: Pointer to driver SLI ring object.
3448 * @mask: Host attention register mask for this ring.
3449 *
3450 * This function is called from the worker thread when there is a pending
3451 * ELS response iocb on the driver internal slow-path response iocb worker
3452 * queue. The caller does not hold any lock. The function will remove each
3453 * response iocb from the response worker queue and calls the handle
3454 * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
3455 **/
3456static void
3457lpfc_sli_handle_slow_ring_event_s4(struct lpfc_hba *phba,
3458 struct lpfc_sli_ring *pring, uint32_t mask)
3459{
3460 struct lpfc_iocbq *irspiocbq;
James Smart4d9ab992009-10-02 15:16:39 -04003461 struct hbq_dmabuf *dmabuf;
3462 struct lpfc_cq_event *cq_event;
James Smart4f774512009-05-22 14:52:35 -04003463 unsigned long iflag;
3464
James Smart45ed1192009-10-02 15:17:02 -04003465 spin_lock_irqsave(&phba->hbalock, iflag);
3466 phba->hba_flag &= ~HBA_SP_QUEUE_EVT;
3467 spin_unlock_irqrestore(&phba->hbalock, iflag);
3468 while (!list_empty(&phba->sli4_hba.sp_queue_event)) {
James Smart4f774512009-05-22 14:52:35 -04003469 /* Get the response iocb from the head of work queue */
3470 spin_lock_irqsave(&phba->hbalock, iflag);
James Smart45ed1192009-10-02 15:17:02 -04003471 list_remove_head(&phba->sli4_hba.sp_queue_event,
James Smart4d9ab992009-10-02 15:16:39 -04003472 cq_event, struct lpfc_cq_event, list);
James Smart4f774512009-05-22 14:52:35 -04003473 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart4d9ab992009-10-02 15:16:39 -04003474
3475 switch (bf_get(lpfc_wcqe_c_code, &cq_event->cqe.wcqe_cmpl)) {
3476 case CQE_CODE_COMPL_WQE:
3477 irspiocbq = container_of(cq_event, struct lpfc_iocbq,
3478 cq_event);
James Smart45ed1192009-10-02 15:17:02 -04003479 /* Translate ELS WCQE to response IOCBQ */
3480 irspiocbq = lpfc_sli4_els_wcqe_to_rspiocbq(phba,
3481 irspiocbq);
3482 if (irspiocbq)
3483 lpfc_sli_sp_handle_rspiocb(phba, pring,
3484 irspiocbq);
James Smart4d9ab992009-10-02 15:16:39 -04003485 break;
3486 case CQE_CODE_RECEIVE:
James Smart7851fe22011-07-22 18:36:52 -04003487 case CQE_CODE_RECEIVE_V1:
James Smart4d9ab992009-10-02 15:16:39 -04003488 dmabuf = container_of(cq_event, struct hbq_dmabuf,
3489 cq_event);
3490 lpfc_sli4_handle_received_buffer(phba, dmabuf);
3491 break;
3492 default:
3493 break;
3494 }
James Smart4f774512009-05-22 14:52:35 -04003495 }
3496}
3497
3498/**
James Smart3621a712009-04-06 18:47:14 -04003499 * lpfc_sli_abort_iocb_ring - Abort all iocbs in the ring
James Smarte59058c2008-08-24 21:49:00 -04003500 * @phba: Pointer to HBA context object.
3501 * @pring: Pointer to driver SLI ring object.
3502 *
3503 * This function aborts all iocbs in the given ring and frees all the iocb
3504 * objects in txq. This function issues an abort iocb for all the iocb commands
3505 * in txcmplq. The iocbs in the txcmplq is not guaranteed to complete before
3506 * the return of this function. The caller is not required to hold any locks.
3507 **/
James Smart2e0fef82007-06-17 19:56:36 -05003508void
dea31012005-04-17 16:05:31 -05003509lpfc_sli_abort_iocb_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
3510{
James Smart2534ba72007-04-25 09:52:20 -04003511 LIST_HEAD(completions);
dea31012005-04-17 16:05:31 -05003512 struct lpfc_iocbq *iocb, *next_iocb;
dea31012005-04-17 16:05:31 -05003513
James Smart92d7f7b2007-06-17 19:56:38 -05003514 if (pring->ringno == LPFC_ELS_RING) {
3515 lpfc_fabric_abort_hba(phba);
3516 }
3517
dea31012005-04-17 16:05:31 -05003518 /* Error everything on txq and txcmplq
3519 * First do the txq.
3520 */
James Smart2e0fef82007-06-17 19:56:36 -05003521 spin_lock_irq(&phba->hbalock);
James Smart2534ba72007-04-25 09:52:20 -04003522 list_splice_init(&pring->txq, &completions);
dea31012005-04-17 16:05:31 -05003523
3524 /* Next issue ABTS for everything on the txcmplq */
James Smart2534ba72007-04-25 09:52:20 -04003525 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
3526 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
3527
James Smart2e0fef82007-06-17 19:56:36 -05003528 spin_unlock_irq(&phba->hbalock);
James Smart2534ba72007-04-25 09:52:20 -04003529
James Smarta257bf92009-04-06 18:48:10 -04003530 /* Cancel all the IOCBs from the completions list */
3531 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
3532 IOERR_SLI_ABORTED);
dea31012005-04-17 16:05:31 -05003533}
3534
James Smarte59058c2008-08-24 21:49:00 -04003535/**
James Smart3621a712009-04-06 18:47:14 -04003536 * lpfc_sli_flush_fcp_rings - flush all iocbs in the fcp ring
James Smarta8e497d2008-08-24 21:50:11 -04003537 * @phba: Pointer to HBA context object.
3538 *
3539 * This function flushes all iocbs in the fcp ring and frees all the iocb
3540 * objects in txq and txcmplq. This function will not issue abort iocbs
3541 * for all the iocb commands in txcmplq, they will just be returned with
3542 * IOERR_SLI_DOWN. This function is invoked with EEH when device's PCI
3543 * slot has been permanently disabled.
3544 **/
3545void
3546lpfc_sli_flush_fcp_rings(struct lpfc_hba *phba)
3547{
3548 LIST_HEAD(txq);
3549 LIST_HEAD(txcmplq);
James Smarta8e497d2008-08-24 21:50:11 -04003550 struct lpfc_sli *psli = &phba->sli;
3551 struct lpfc_sli_ring *pring;
3552
3553 /* Currently, only one fcp ring */
3554 pring = &psli->ring[psli->fcp_ring];
3555
3556 spin_lock_irq(&phba->hbalock);
3557 /* Retrieve everything on txq */
3558 list_splice_init(&pring->txq, &txq);
James Smarta8e497d2008-08-24 21:50:11 -04003559
3560 /* Retrieve everything on the txcmplq */
3561 list_splice_init(&pring->txcmplq, &txcmplq);
James Smart4f2e66c2012-05-09 21:17:07 -04003562
3563 /* Indicate the I/O queues are flushed */
3564 phba->hba_flag |= HBA_FCP_IOQ_FLUSH;
James Smarta8e497d2008-08-24 21:50:11 -04003565 spin_unlock_irq(&phba->hbalock);
3566
3567 /* Flush the txq */
James Smarta257bf92009-04-06 18:48:10 -04003568 lpfc_sli_cancel_iocbs(phba, &txq, IOSTAT_LOCAL_REJECT,
3569 IOERR_SLI_DOWN);
James Smarta8e497d2008-08-24 21:50:11 -04003570
3571 /* Flush the txcmpq */
James Smarta257bf92009-04-06 18:48:10 -04003572 lpfc_sli_cancel_iocbs(phba, &txcmplq, IOSTAT_LOCAL_REJECT,
3573 IOERR_SLI_DOWN);
James Smarta8e497d2008-08-24 21:50:11 -04003574}
3575
3576/**
James Smart3772a992009-05-22 14:50:54 -04003577 * lpfc_sli_brdready_s3 - Check for sli3 host ready status
James Smarte59058c2008-08-24 21:49:00 -04003578 * @phba: Pointer to HBA context object.
3579 * @mask: Bit mask to be checked.
3580 *
3581 * This function reads the host status register and compares
3582 * with the provided bit mask to check if HBA completed
3583 * the restart. This function will wait in a loop for the
3584 * HBA to complete restart. If the HBA does not restart within
3585 * 15 iterations, the function will reset the HBA again. The
3586 * function returns 1 when HBA fail to restart otherwise returns
3587 * zero.
3588 **/
James Smart3772a992009-05-22 14:50:54 -04003589static int
3590lpfc_sli_brdready_s3(struct lpfc_hba *phba, uint32_t mask)
dea31012005-04-17 16:05:31 -05003591{
Jamie Wellnitz41415862006-02-28 19:25:27 -05003592 uint32_t status;
3593 int i = 0;
3594 int retval = 0;
dea31012005-04-17 16:05:31 -05003595
Jamie Wellnitz41415862006-02-28 19:25:27 -05003596 /* Read the HBA Host Status Register */
James Smart9940b972011-03-11 16:06:12 -05003597 if (lpfc_readl(phba->HSregaddr, &status))
3598 return 1;
dea31012005-04-17 16:05:31 -05003599
Jamie Wellnitz41415862006-02-28 19:25:27 -05003600 /*
3601 * Check status register every 100ms for 5 retries, then every
3602 * 500ms for 5, then every 2.5 sec for 5, then reset board and
3603 * every 2.5 sec for 4.
3604 * Break our of the loop if errors occurred during init.
3605 */
3606 while (((status & mask) != mask) &&
3607 !(status & HS_FFERM) &&
3608 i++ < 20) {
dea31012005-04-17 16:05:31 -05003609
Jamie Wellnitz41415862006-02-28 19:25:27 -05003610 if (i <= 5)
3611 msleep(10);
3612 else if (i <= 10)
3613 msleep(500);
3614 else
3615 msleep(2500);
dea31012005-04-17 16:05:31 -05003616
Jamie Wellnitz41415862006-02-28 19:25:27 -05003617 if (i == 15) {
James Smart2e0fef82007-06-17 19:56:36 -05003618 /* Do post */
James Smart92d7f7b2007-06-17 19:56:38 -05003619 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003620 lpfc_sli_brdrestart(phba);
3621 }
3622 /* Read the HBA Host Status Register */
James Smart9940b972011-03-11 16:06:12 -05003623 if (lpfc_readl(phba->HSregaddr, &status)) {
3624 retval = 1;
3625 break;
3626 }
dea31012005-04-17 16:05:31 -05003627 }
dea31012005-04-17 16:05:31 -05003628
Jamie Wellnitz41415862006-02-28 19:25:27 -05003629 /* Check to see if any errors occurred during init */
3630 if ((status & HS_FFERM) || (i >= 20)) {
James Smarte40a02c2010-02-26 14:13:54 -05003631 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3632 "2751 Adapter failed to restart, "
3633 "status reg x%x, FW Data: A8 x%x AC x%x\n",
3634 status,
3635 readl(phba->MBslimaddr + 0xa8),
3636 readl(phba->MBslimaddr + 0xac));
James Smart2e0fef82007-06-17 19:56:36 -05003637 phba->link_state = LPFC_HBA_ERROR;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003638 retval = 1;
3639 }
dea31012005-04-17 16:05:31 -05003640
Jamie Wellnitz41415862006-02-28 19:25:27 -05003641 return retval;
dea31012005-04-17 16:05:31 -05003642}
3643
James Smartda0436e2009-05-22 14:51:39 -04003644/**
3645 * lpfc_sli_brdready_s4 - Check for sli4 host ready status
3646 * @phba: Pointer to HBA context object.
3647 * @mask: Bit mask to be checked.
3648 *
3649 * This function checks the host status register to check if HBA is
3650 * ready. This function will wait in a loop for the HBA to be ready
3651 * If the HBA is not ready , the function will will reset the HBA PCI
3652 * function again. The function returns 1 when HBA fail to be ready
3653 * otherwise returns zero.
3654 **/
3655static int
3656lpfc_sli_brdready_s4(struct lpfc_hba *phba, uint32_t mask)
3657{
3658 uint32_t status;
3659 int retval = 0;
3660
3661 /* Read the HBA Host Status Register */
3662 status = lpfc_sli4_post_status_check(phba);
3663
3664 if (status) {
3665 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
3666 lpfc_sli_brdrestart(phba);
3667 status = lpfc_sli4_post_status_check(phba);
3668 }
3669
3670 /* Check to see if any errors occurred during init */
3671 if (status) {
3672 phba->link_state = LPFC_HBA_ERROR;
3673 retval = 1;
3674 } else
3675 phba->sli4_hba.intr_enable = 0;
3676
3677 return retval;
3678}
3679
3680/**
3681 * lpfc_sli_brdready - Wrapper func for checking the hba readyness
3682 * @phba: Pointer to HBA context object.
3683 * @mask: Bit mask to be checked.
3684 *
3685 * This routine wraps the actual SLI3 or SLI4 hba readyness check routine
3686 * from the API jump table function pointer from the lpfc_hba struct.
3687 **/
3688int
3689lpfc_sli_brdready(struct lpfc_hba *phba, uint32_t mask)
3690{
3691 return phba->lpfc_sli_brdready(phba, mask);
3692}
3693
James Smart92908312006-03-07 15:04:13 -05003694#define BARRIER_TEST_PATTERN (0xdeadbeef)
3695
James Smarte59058c2008-08-24 21:49:00 -04003696/**
James Smart3621a712009-04-06 18:47:14 -04003697 * lpfc_reset_barrier - Make HBA ready for HBA reset
James Smarte59058c2008-08-24 21:49:00 -04003698 * @phba: Pointer to HBA context object.
3699 *
James Smart1b511972011-12-13 13:23:09 -05003700 * This function is called before resetting an HBA. This function is called
3701 * with hbalock held and requests HBA to quiesce DMAs before a reset.
James Smarte59058c2008-08-24 21:49:00 -04003702 **/
James Smart2e0fef82007-06-17 19:56:36 -05003703void lpfc_reset_barrier(struct lpfc_hba *phba)
James Smart92908312006-03-07 15:04:13 -05003704{
James Smart65a29c12006-07-06 15:50:50 -04003705 uint32_t __iomem *resp_buf;
3706 uint32_t __iomem *mbox_buf;
James Smart92908312006-03-07 15:04:13 -05003707 volatile uint32_t mbox;
James Smart9940b972011-03-11 16:06:12 -05003708 uint32_t hc_copy, ha_copy, resp_data;
James Smart92908312006-03-07 15:04:13 -05003709 int i;
3710 uint8_t hdrtype;
3711
3712 pci_read_config_byte(phba->pcidev, PCI_HEADER_TYPE, &hdrtype);
3713 if (hdrtype != 0x80 ||
3714 (FC_JEDEC_ID(phba->vpd.rev.biuRev) != HELIOS_JEDEC_ID &&
3715 FC_JEDEC_ID(phba->vpd.rev.biuRev) != THOR_JEDEC_ID))
3716 return;
3717
3718 /*
3719 * Tell the other part of the chip to suspend temporarily all
3720 * its DMA activity.
3721 */
James Smart65a29c12006-07-06 15:50:50 -04003722 resp_buf = phba->MBslimaddr;
James Smart92908312006-03-07 15:04:13 -05003723
3724 /* Disable the error attention */
James Smart9940b972011-03-11 16:06:12 -05003725 if (lpfc_readl(phba->HCregaddr, &hc_copy))
3726 return;
James Smart92908312006-03-07 15:04:13 -05003727 writel((hc_copy & ~HC_ERINT_ENA), phba->HCregaddr);
3728 readl(phba->HCregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -05003729 phba->link_flag |= LS_IGNORE_ERATT;
James Smart92908312006-03-07 15:04:13 -05003730
James Smart9940b972011-03-11 16:06:12 -05003731 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3732 return;
3733 if (ha_copy & HA_ERATT) {
James Smart92908312006-03-07 15:04:13 -05003734 /* Clear Chip error bit */
3735 writel(HA_ERATT, phba->HAregaddr);
James Smart2e0fef82007-06-17 19:56:36 -05003736 phba->pport->stopped = 1;
James Smart92908312006-03-07 15:04:13 -05003737 }
3738
3739 mbox = 0;
3740 ((MAILBOX_t *)&mbox)->mbxCommand = MBX_KILL_BOARD;
3741 ((MAILBOX_t *)&mbox)->mbxOwner = OWN_CHIP;
3742
3743 writel(BARRIER_TEST_PATTERN, (resp_buf + 1));
James Smart65a29c12006-07-06 15:50:50 -04003744 mbox_buf = phba->MBslimaddr;
James Smart92908312006-03-07 15:04:13 -05003745 writel(mbox, mbox_buf);
3746
James Smart9940b972011-03-11 16:06:12 -05003747 for (i = 0; i < 50; i++) {
3748 if (lpfc_readl((resp_buf + 1), &resp_data))
3749 return;
3750 if (resp_data != ~(BARRIER_TEST_PATTERN))
3751 mdelay(1);
3752 else
3753 break;
3754 }
3755 resp_data = 0;
3756 if (lpfc_readl((resp_buf + 1), &resp_data))
3757 return;
3758 if (resp_data != ~(BARRIER_TEST_PATTERN)) {
James Smartf4b4c682009-05-22 14:53:12 -04003759 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE ||
James Smart2e0fef82007-06-17 19:56:36 -05003760 phba->pport->stopped)
James Smart92908312006-03-07 15:04:13 -05003761 goto restore_hc;
3762 else
3763 goto clear_errat;
3764 }
3765
3766 ((MAILBOX_t *)&mbox)->mbxOwner = OWN_HOST;
James Smart9940b972011-03-11 16:06:12 -05003767 resp_data = 0;
3768 for (i = 0; i < 500; i++) {
3769 if (lpfc_readl(resp_buf, &resp_data))
3770 return;
3771 if (resp_data != mbox)
3772 mdelay(1);
3773 else
3774 break;
3775 }
James Smart92908312006-03-07 15:04:13 -05003776
3777clear_errat:
3778
James Smart9940b972011-03-11 16:06:12 -05003779 while (++i < 500) {
3780 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3781 return;
3782 if (!(ha_copy & HA_ERATT))
3783 mdelay(1);
3784 else
3785 break;
3786 }
James Smart92908312006-03-07 15:04:13 -05003787
3788 if (readl(phba->HAregaddr) & HA_ERATT) {
3789 writel(HA_ERATT, phba->HAregaddr);
James Smart2e0fef82007-06-17 19:56:36 -05003790 phba->pport->stopped = 1;
James Smart92908312006-03-07 15:04:13 -05003791 }
3792
3793restore_hc:
James Smart2e0fef82007-06-17 19:56:36 -05003794 phba->link_flag &= ~LS_IGNORE_ERATT;
James Smart92908312006-03-07 15:04:13 -05003795 writel(hc_copy, phba->HCregaddr);
3796 readl(phba->HCregaddr); /* flush */
3797}
3798
James Smarte59058c2008-08-24 21:49:00 -04003799/**
James Smart3621a712009-04-06 18:47:14 -04003800 * lpfc_sli_brdkill - Issue a kill_board mailbox command
James Smarte59058c2008-08-24 21:49:00 -04003801 * @phba: Pointer to HBA context object.
3802 *
3803 * This function issues a kill_board mailbox command and waits for
3804 * the error attention interrupt. This function is called for stopping
3805 * the firmware processing. The caller is not required to hold any
3806 * locks. This function calls lpfc_hba_down_post function to free
3807 * any pending commands after the kill. The function will return 1 when it
3808 * fails to kill the board else will return 0.
3809 **/
Jamie Wellnitz41415862006-02-28 19:25:27 -05003810int
James Smart2e0fef82007-06-17 19:56:36 -05003811lpfc_sli_brdkill(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05003812{
Jamie Wellnitz41415862006-02-28 19:25:27 -05003813 struct lpfc_sli *psli;
3814 LPFC_MBOXQ_t *pmb;
3815 uint32_t status;
3816 uint32_t ha_copy;
3817 int retval;
3818 int i = 0;
3819
3820 psli = &phba->sli;
3821
3822 /* Kill HBA */
James Smarted957682007-06-17 19:56:37 -05003823 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003824 "0329 Kill HBA Data: x%x x%x\n",
3825 phba->pport->port_state, psli->sli_flag);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003826
James Smart98c9ea52007-10-27 13:37:33 -04003827 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3828 if (!pmb)
Jamie Wellnitz41415862006-02-28 19:25:27 -05003829 return 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003830
3831 /* Disable the error attention */
James Smart2e0fef82007-06-17 19:56:36 -05003832 spin_lock_irq(&phba->hbalock);
James Smart9940b972011-03-11 16:06:12 -05003833 if (lpfc_readl(phba->HCregaddr, &status)) {
3834 spin_unlock_irq(&phba->hbalock);
3835 mempool_free(pmb, phba->mbox_mem_pool);
3836 return 1;
3837 }
Jamie Wellnitz41415862006-02-28 19:25:27 -05003838 status &= ~HC_ERINT_ENA;
3839 writel(status, phba->HCregaddr);
3840 readl(phba->HCregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -05003841 phba->link_flag |= LS_IGNORE_ERATT;
3842 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003843
3844 lpfc_kill_board(phba, pmb);
3845 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
3846 retval = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
3847
3848 if (retval != MBX_SUCCESS) {
3849 if (retval != MBX_BUSY)
3850 mempool_free(pmb, phba->mbox_mem_pool);
James Smarte40a02c2010-02-26 14:13:54 -05003851 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3852 "2752 KILL_BOARD command failed retval %d\n",
3853 retval);
James Smart2e0fef82007-06-17 19:56:36 -05003854 spin_lock_irq(&phba->hbalock);
3855 phba->link_flag &= ~LS_IGNORE_ERATT;
3856 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003857 return 1;
3858 }
3859
James Smartf4b4c682009-05-22 14:53:12 -04003860 spin_lock_irq(&phba->hbalock);
3861 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
3862 spin_unlock_irq(&phba->hbalock);
James Smart92908312006-03-07 15:04:13 -05003863
Jamie Wellnitz41415862006-02-28 19:25:27 -05003864 mempool_free(pmb, phba->mbox_mem_pool);
3865
3866 /* There is no completion for a KILL_BOARD mbox cmd. Check for an error
3867 * attention every 100ms for 3 seconds. If we don't get ERATT after
3868 * 3 seconds we still set HBA_ERROR state because the status of the
3869 * board is now undefined.
3870 */
James Smart9940b972011-03-11 16:06:12 -05003871 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3872 return 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003873 while ((i++ < 30) && !(ha_copy & HA_ERATT)) {
3874 mdelay(100);
James Smart9940b972011-03-11 16:06:12 -05003875 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3876 return 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003877 }
3878
3879 del_timer_sync(&psli->mbox_tmo);
James Smart92908312006-03-07 15:04:13 -05003880 if (ha_copy & HA_ERATT) {
3881 writel(HA_ERATT, phba->HAregaddr);
James Smart2e0fef82007-06-17 19:56:36 -05003882 phba->pport->stopped = 1;
James Smart92908312006-03-07 15:04:13 -05003883 }
James Smart2e0fef82007-06-17 19:56:36 -05003884 spin_lock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05003885 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart04c68492009-05-22 14:52:52 -04003886 psli->mbox_active = NULL;
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
Jamie Wellnitz41415862006-02-28 19:25:27 -05003890 lpfc_hba_down_post(phba);
James Smart2e0fef82007-06-17 19:56:36 -05003891 phba->link_state = LPFC_HBA_ERROR;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003892
James Smart2e0fef82007-06-17 19:56:36 -05003893 return ha_copy & HA_ERATT ? 0 : 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003894}
3895
James Smarte59058c2008-08-24 21:49:00 -04003896/**
James Smart3772a992009-05-22 14:50:54 -04003897 * lpfc_sli_brdreset - Reset a sli-2 or sli-3 HBA
James Smarte59058c2008-08-24 21:49:00 -04003898 * @phba: Pointer to HBA context object.
3899 *
3900 * This function resets the HBA by writing HC_INITFF to the control
3901 * register. After the HBA resets, this function resets all the iocb ring
3902 * indices. This function disables PCI layer parity checking during
3903 * the reset.
3904 * This function returns 0 always.
3905 * The caller is not required to hold any locks.
3906 **/
Jamie Wellnitz41415862006-02-28 19:25:27 -05003907int
James Smart2e0fef82007-06-17 19:56:36 -05003908lpfc_sli_brdreset(struct lpfc_hba *phba)
Jamie Wellnitz41415862006-02-28 19:25:27 -05003909{
3910 struct lpfc_sli *psli;
dea31012005-04-17 16:05:31 -05003911 struct lpfc_sli_ring *pring;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003912 uint16_t cfg_value;
dea31012005-04-17 16:05:31 -05003913 int i;
dea31012005-04-17 16:05:31 -05003914
Jamie Wellnitz41415862006-02-28 19:25:27 -05003915 psli = &phba->sli;
dea31012005-04-17 16:05:31 -05003916
Jamie Wellnitz41415862006-02-28 19:25:27 -05003917 /* Reset HBA */
3918 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003919 "0325 Reset HBA Data: x%x x%x\n",
James Smart2e0fef82007-06-17 19:56:36 -05003920 phba->pport->port_state, psli->sli_flag);
dea31012005-04-17 16:05:31 -05003921
3922 /* perform board reset */
3923 phba->fc_eventTag = 0;
James Smart4d9ab992009-10-02 15:16:39 -04003924 phba->link_events = 0;
James Smart2e0fef82007-06-17 19:56:36 -05003925 phba->pport->fc_myDID = 0;
3926 phba->pport->fc_prevDID = 0;
dea31012005-04-17 16:05:31 -05003927
Jamie Wellnitz41415862006-02-28 19:25:27 -05003928 /* Turn off parity checking and serr during the physical reset */
3929 pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
3930 pci_write_config_word(phba->pcidev, PCI_COMMAND,
3931 (cfg_value &
3932 ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
3933
James Smart3772a992009-05-22 14:50:54 -04003934 psli->sli_flag &= ~(LPFC_SLI_ACTIVE | LPFC_PROCESS_LA);
3935
Jamie Wellnitz41415862006-02-28 19:25:27 -05003936 /* Now toggle INITFF bit in the Host Control Register */
3937 writel(HC_INITFF, phba->HCregaddr);
3938 mdelay(1);
3939 readl(phba->HCregaddr); /* flush */
3940 writel(0, phba->HCregaddr);
3941 readl(phba->HCregaddr); /* flush */
3942
3943 /* Restore PCI cmd register */
3944 pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
dea31012005-04-17 16:05:31 -05003945
3946 /* Initialize relevant SLI info */
Jamie Wellnitz41415862006-02-28 19:25:27 -05003947 for (i = 0; i < psli->num_rings; i++) {
3948 pring = &psli->ring[i];
dea31012005-04-17 16:05:31 -05003949 pring->flag = 0;
James Smart7e56aa22012-08-03 12:35:34 -04003950 pring->sli.sli3.rspidx = 0;
3951 pring->sli.sli3.next_cmdidx = 0;
3952 pring->sli.sli3.local_getidx = 0;
3953 pring->sli.sli3.cmdidx = 0;
dea31012005-04-17 16:05:31 -05003954 pring->missbufcnt = 0;
3955 }
dea31012005-04-17 16:05:31 -05003956
James Smart2e0fef82007-06-17 19:56:36 -05003957 phba->link_state = LPFC_WARM_START;
Jamie Wellnitz41415862006-02-28 19:25:27 -05003958 return 0;
3959}
3960
James Smarte59058c2008-08-24 21:49:00 -04003961/**
James Smartda0436e2009-05-22 14:51:39 -04003962 * lpfc_sli4_brdreset - Reset a sli-4 HBA
3963 * @phba: Pointer to HBA context object.
3964 *
3965 * This function resets a SLI4 HBA. This function disables PCI layer parity
3966 * checking during resets the device. The caller is not required to hold
3967 * any locks.
3968 *
3969 * This function returns 0 always.
3970 **/
3971int
3972lpfc_sli4_brdreset(struct lpfc_hba *phba)
3973{
3974 struct lpfc_sli *psli = &phba->sli;
3975 uint16_t cfg_value;
James Smart27b01b82012-05-09 21:19:44 -04003976 int rc;
James Smartda0436e2009-05-22 14:51:39 -04003977
3978 /* Reset HBA */
3979 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
3980 "0295 Reset HBA Data: x%x x%x\n",
3981 phba->pport->port_state, psli->sli_flag);
3982
3983 /* perform board reset */
3984 phba->fc_eventTag = 0;
James Smart4d9ab992009-10-02 15:16:39 -04003985 phba->link_events = 0;
James Smartda0436e2009-05-22 14:51:39 -04003986 phba->pport->fc_myDID = 0;
3987 phba->pport->fc_prevDID = 0;
3988
James Smartda0436e2009-05-22 14:51:39 -04003989 spin_lock_irq(&phba->hbalock);
3990 psli->sli_flag &= ~(LPFC_PROCESS_LA);
3991 phba->fcf.fcf_flag = 0;
James Smartda0436e2009-05-22 14:51:39 -04003992 spin_unlock_irq(&phba->hbalock);
3993
3994 /* Now physically reset the device */
3995 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3996 "0389 Performing PCI function reset!\n");
James Smartbe858b62010-12-15 17:57:20 -05003997
3998 /* Turn off parity checking and serr during the physical reset */
3999 pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
4000 pci_write_config_word(phba->pcidev, PCI_COMMAND, (cfg_value &
4001 ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
4002
James Smart88318812012-09-29 11:29:29 -04004003 /* Perform FCoE PCI function reset before freeing queue memory */
James Smart27b01b82012-05-09 21:19:44 -04004004 rc = lpfc_pci_function_reset(phba);
James Smart88318812012-09-29 11:29:29 -04004005 lpfc_sli4_queue_destroy(phba);
James Smartda0436e2009-05-22 14:51:39 -04004006
James Smartbe858b62010-12-15 17:57:20 -05004007 /* Restore PCI cmd register */
4008 pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
4009
James Smart27b01b82012-05-09 21:19:44 -04004010 return rc;
James Smartda0436e2009-05-22 14:51:39 -04004011}
4012
4013/**
4014 * lpfc_sli_brdrestart_s3 - Restart a sli-3 hba
James Smarte59058c2008-08-24 21:49:00 -04004015 * @phba: Pointer to HBA context object.
4016 *
4017 * This function is called in the SLI initialization code path to
4018 * restart the HBA. The caller is not required to hold any lock.
4019 * This function writes MBX_RESTART mailbox command to the SLIM and
4020 * resets the HBA. At the end of the function, it calls lpfc_hba_down_post
4021 * function to free any pending commands. The function enables
4022 * POST only during the first initialization. The function returns zero.
4023 * The function does not guarantee completion of MBX_RESTART mailbox
4024 * command before the return of this function.
4025 **/
James Smartda0436e2009-05-22 14:51:39 -04004026static int
4027lpfc_sli_brdrestart_s3(struct lpfc_hba *phba)
Jamie Wellnitz41415862006-02-28 19:25:27 -05004028{
4029 MAILBOX_t *mb;
4030 struct lpfc_sli *psli;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004031 volatile uint32_t word0;
4032 void __iomem *to_slim;
James Smart0d878412009-10-02 15:16:56 -04004033 uint32_t hba_aer_enabled;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004034
James Smart2e0fef82007-06-17 19:56:36 -05004035 spin_lock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004036
James Smart0d878412009-10-02 15:16:56 -04004037 /* Take PCIe device Advanced Error Reporting (AER) state */
4038 hba_aer_enabled = phba->hba_flag & HBA_AER_ENABLED;
4039
Jamie Wellnitz41415862006-02-28 19:25:27 -05004040 psli = &phba->sli;
4041
4042 /* Restart HBA */
4043 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04004044 "0337 Restart HBA Data: x%x x%x\n",
James Smart2e0fef82007-06-17 19:56:36 -05004045 phba->pport->port_state, psli->sli_flag);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004046
4047 word0 = 0;
4048 mb = (MAILBOX_t *) &word0;
4049 mb->mbxCommand = MBX_RESTART;
4050 mb->mbxHc = 1;
4051
James Smart92908312006-03-07 15:04:13 -05004052 lpfc_reset_barrier(phba);
4053
Jamie Wellnitz41415862006-02-28 19:25:27 -05004054 to_slim = phba->MBslimaddr;
4055 writel(*(uint32_t *) mb, to_slim);
4056 readl(to_slim); /* flush */
4057
4058 /* Only skip post after fc_ffinit is completed */
James Smarteaf15d52008-12-04 22:39:29 -05004059 if (phba->pport->port_state)
Jamie Wellnitz41415862006-02-28 19:25:27 -05004060 word0 = 1; /* This is really setting up word1 */
James Smarteaf15d52008-12-04 22:39:29 -05004061 else
Jamie Wellnitz41415862006-02-28 19:25:27 -05004062 word0 = 0; /* This is really setting up word1 */
James Smart65a29c12006-07-06 15:50:50 -04004063 to_slim = phba->MBslimaddr + sizeof (uint32_t);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004064 writel(*(uint32_t *) mb, to_slim);
4065 readl(to_slim); /* flush */
4066
4067 lpfc_sli_brdreset(phba);
James Smart2e0fef82007-06-17 19:56:36 -05004068 phba->pport->stopped = 0;
4069 phba->link_state = LPFC_INIT_START;
James Smartda0436e2009-05-22 14:51:39 -04004070 phba->hba_flag = 0;
James Smart2e0fef82007-06-17 19:56:36 -05004071 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004072
James Smart64ba8812006-08-02 15:24:34 -04004073 memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
4074 psli->stats_start = get_seconds();
4075
James Smarteaf15d52008-12-04 22:39:29 -05004076 /* Give the INITFF and Post time to settle. */
4077 mdelay(100);
dea31012005-04-17 16:05:31 -05004078
James Smart0d878412009-10-02 15:16:56 -04004079 /* Reset HBA AER if it was enabled, note hba_flag was reset above */
4080 if (hba_aer_enabled)
4081 pci_disable_pcie_error_reporting(phba->pcidev);
4082
Jamie Wellnitz41415862006-02-28 19:25:27 -05004083 lpfc_hba_down_post(phba);
dea31012005-04-17 16:05:31 -05004084
4085 return 0;
4086}
4087
James Smarte59058c2008-08-24 21:49:00 -04004088/**
James Smartda0436e2009-05-22 14:51:39 -04004089 * lpfc_sli_brdrestart_s4 - Restart the sli-4 hba
4090 * @phba: Pointer to HBA context object.
4091 *
4092 * This function is called in the SLI initialization code path to restart
4093 * a SLI4 HBA. The caller is not required to hold any lock.
4094 * At the end of the function, it calls lpfc_hba_down_post function to
4095 * free any pending commands.
4096 **/
4097static int
4098lpfc_sli_brdrestart_s4(struct lpfc_hba *phba)
4099{
4100 struct lpfc_sli *psli = &phba->sli;
James Smart75baf692010-06-08 18:31:21 -04004101 uint32_t hba_aer_enabled;
James Smart27b01b82012-05-09 21:19:44 -04004102 int rc;
James Smartda0436e2009-05-22 14:51:39 -04004103
4104 /* Restart HBA */
4105 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4106 "0296 Restart HBA Data: x%x x%x\n",
4107 phba->pport->port_state, psli->sli_flag);
4108
James Smart75baf692010-06-08 18:31:21 -04004109 /* Take PCIe device Advanced Error Reporting (AER) state */
4110 hba_aer_enabled = phba->hba_flag & HBA_AER_ENABLED;
4111
James Smart27b01b82012-05-09 21:19:44 -04004112 rc = lpfc_sli4_brdreset(phba);
James Smartda0436e2009-05-22 14:51:39 -04004113
4114 spin_lock_irq(&phba->hbalock);
4115 phba->pport->stopped = 0;
4116 phba->link_state = LPFC_INIT_START;
4117 phba->hba_flag = 0;
4118 spin_unlock_irq(&phba->hbalock);
4119
4120 memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
4121 psli->stats_start = get_seconds();
4122
James Smart75baf692010-06-08 18:31:21 -04004123 /* Reset HBA AER if it was enabled, note hba_flag was reset above */
4124 if (hba_aer_enabled)
4125 pci_disable_pcie_error_reporting(phba->pcidev);
4126
James Smartda0436e2009-05-22 14:51:39 -04004127 lpfc_hba_down_post(phba);
4128
James Smart27b01b82012-05-09 21:19:44 -04004129 return rc;
James Smartda0436e2009-05-22 14:51:39 -04004130}
4131
4132/**
4133 * lpfc_sli_brdrestart - Wrapper func for restarting hba
4134 * @phba: Pointer to HBA context object.
4135 *
4136 * This routine wraps the actual SLI3 or SLI4 hba restart routine from the
4137 * API jump table function pointer from the lpfc_hba struct.
4138**/
4139int
4140lpfc_sli_brdrestart(struct lpfc_hba *phba)
4141{
4142 return phba->lpfc_sli_brdrestart(phba);
4143}
4144
4145/**
James Smart3621a712009-04-06 18:47:14 -04004146 * lpfc_sli_chipset_init - Wait for the restart of the HBA after a restart
James Smarte59058c2008-08-24 21:49:00 -04004147 * @phba: Pointer to HBA context object.
4148 *
4149 * This function is called after a HBA restart to wait for successful
4150 * restart of the HBA. Successful restart of the HBA is indicated by
4151 * HS_FFRDY and HS_MBRDY bits. If the HBA fails to restart even after 15
4152 * iteration, the function will restart the HBA again. The function returns
4153 * zero if HBA successfully restarted else returns negative error code.
4154 **/
dea31012005-04-17 16:05:31 -05004155static int
4156lpfc_sli_chipset_init(struct lpfc_hba *phba)
4157{
4158 uint32_t status, i = 0;
4159
4160 /* Read the HBA Host Status Register */
James Smart9940b972011-03-11 16:06:12 -05004161 if (lpfc_readl(phba->HSregaddr, &status))
4162 return -EIO;
dea31012005-04-17 16:05:31 -05004163
4164 /* Check status register to see what current state is */
4165 i = 0;
4166 while ((status & (HS_FFRDY | HS_MBRDY)) != (HS_FFRDY | HS_MBRDY)) {
4167
James Smartdcf2a4e2010-09-29 11:18:53 -04004168 /* Check every 10ms for 10 retries, then every 100ms for 90
4169 * retries, then every 1 sec for 50 retires for a total of
4170 * ~60 seconds before reset the board again and check every
4171 * 1 sec for 50 retries. The up to 60 seconds before the
4172 * board ready is required by the Falcon FIPS zeroization
4173 * complete, and any reset the board in between shall cause
4174 * restart of zeroization, further delay the board ready.
dea31012005-04-17 16:05:31 -05004175 */
James Smartdcf2a4e2010-09-29 11:18:53 -04004176 if (i++ >= 200) {
dea31012005-04-17 16:05:31 -05004177 /* Adapter failed to init, timeout, status reg
4178 <status> */
James Smarted957682007-06-17 19:56:37 -05004179 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004180 "0436 Adapter failed to init, "
James Smart09372822008-01-11 01:52:54 -05004181 "timeout, status reg x%x, "
4182 "FW Data: A8 x%x AC x%x\n", status,
4183 readl(phba->MBslimaddr + 0xa8),
4184 readl(phba->MBslimaddr + 0xac));
James Smart2e0fef82007-06-17 19:56:36 -05004185 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004186 return -ETIMEDOUT;
4187 }
4188
4189 /* Check to see if any errors occurred during init */
4190 if (status & HS_FFERM) {
4191 /* ERROR: During chipset initialization */
4192 /* Adapter failed to init, chipset, status reg
4193 <status> */
James Smarted957682007-06-17 19:56:37 -05004194 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004195 "0437 Adapter failed to init, "
James Smart09372822008-01-11 01:52:54 -05004196 "chipset, status reg x%x, "
4197 "FW Data: A8 x%x AC x%x\n", status,
4198 readl(phba->MBslimaddr + 0xa8),
4199 readl(phba->MBslimaddr + 0xac));
James Smart2e0fef82007-06-17 19:56:36 -05004200 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004201 return -EIO;
4202 }
4203
James Smartdcf2a4e2010-09-29 11:18:53 -04004204 if (i <= 10)
dea31012005-04-17 16:05:31 -05004205 msleep(10);
James Smartdcf2a4e2010-09-29 11:18:53 -04004206 else if (i <= 100)
4207 msleep(100);
4208 else
4209 msleep(1000);
dea31012005-04-17 16:05:31 -05004210
James Smartdcf2a4e2010-09-29 11:18:53 -04004211 if (i == 150) {
4212 /* Do post */
James Smart92d7f7b2007-06-17 19:56:38 -05004213 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004214 lpfc_sli_brdrestart(phba);
dea31012005-04-17 16:05:31 -05004215 }
4216 /* Read the HBA Host Status Register */
James Smart9940b972011-03-11 16:06:12 -05004217 if (lpfc_readl(phba->HSregaddr, &status))
4218 return -EIO;
dea31012005-04-17 16:05:31 -05004219 }
4220
4221 /* Check to see if any errors occurred during init */
4222 if (status & HS_FFERM) {
4223 /* ERROR: During chipset initialization */
4224 /* Adapter failed to init, chipset, status reg <status> */
James Smarted957682007-06-17 19:56:37 -05004225 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004226 "0438 Adapter failed to init, chipset, "
James Smart09372822008-01-11 01:52:54 -05004227 "status reg x%x, "
4228 "FW Data: A8 x%x AC x%x\n", status,
4229 readl(phba->MBslimaddr + 0xa8),
4230 readl(phba->MBslimaddr + 0xac));
James Smart2e0fef82007-06-17 19:56:36 -05004231 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004232 return -EIO;
4233 }
4234
4235 /* Clear all interrupt enable conditions */
4236 writel(0, phba->HCregaddr);
4237 readl(phba->HCregaddr); /* flush */
4238
4239 /* setup host attn register */
4240 writel(0xffffffff, phba->HAregaddr);
4241 readl(phba->HAregaddr); /* flush */
4242 return 0;
4243}
4244
James Smarte59058c2008-08-24 21:49:00 -04004245/**
James Smart3621a712009-04-06 18:47:14 -04004246 * lpfc_sli_hbq_count - Get the number of HBQs to be configured
James Smarte59058c2008-08-24 21:49:00 -04004247 *
4248 * This function calculates and returns the number of HBQs required to be
4249 * configured.
4250 **/
James Smart78b2d852007-08-02 11:10:21 -04004251int
James Smarted957682007-06-17 19:56:37 -05004252lpfc_sli_hbq_count(void)
4253{
James Smart92d7f7b2007-06-17 19:56:38 -05004254 return ARRAY_SIZE(lpfc_hbq_defs);
James Smarted957682007-06-17 19:56:37 -05004255}
4256
James Smarte59058c2008-08-24 21:49:00 -04004257/**
James Smart3621a712009-04-06 18:47:14 -04004258 * lpfc_sli_hbq_entry_count - Calculate total number of hbq entries
James Smarte59058c2008-08-24 21:49:00 -04004259 *
4260 * This function adds the number of hbq entries in every HBQ to get
4261 * the total number of hbq entries required for the HBA and returns
4262 * the total count.
4263 **/
James Smarted957682007-06-17 19:56:37 -05004264static int
4265lpfc_sli_hbq_entry_count(void)
4266{
4267 int hbq_count = lpfc_sli_hbq_count();
4268 int count = 0;
4269 int i;
4270
4271 for (i = 0; i < hbq_count; ++i)
James Smart92d7f7b2007-06-17 19:56:38 -05004272 count += lpfc_hbq_defs[i]->entry_count;
James Smarted957682007-06-17 19:56:37 -05004273 return count;
4274}
4275
James Smarte59058c2008-08-24 21:49:00 -04004276/**
James Smart3621a712009-04-06 18:47:14 -04004277 * lpfc_sli_hbq_size - Calculate memory required for all hbq entries
James Smarte59058c2008-08-24 21:49:00 -04004278 *
4279 * This function calculates amount of memory required for all hbq entries
4280 * to be configured and returns the total memory required.
4281 **/
dea31012005-04-17 16:05:31 -05004282int
James Smarted957682007-06-17 19:56:37 -05004283lpfc_sli_hbq_size(void)
4284{
4285 return lpfc_sli_hbq_entry_count() * sizeof(struct lpfc_hbq_entry);
4286}
4287
James Smarte59058c2008-08-24 21:49:00 -04004288/**
James Smart3621a712009-04-06 18:47:14 -04004289 * lpfc_sli_hbq_setup - configure and initialize HBQs
James Smarte59058c2008-08-24 21:49:00 -04004290 * @phba: Pointer to HBA context object.
4291 *
4292 * This function is called during the SLI initialization to configure
4293 * all the HBQs and post buffers to the HBQ. The caller is not
4294 * required to hold any locks. This function will return zero if successful
4295 * else it will return negative error code.
4296 **/
James Smarted957682007-06-17 19:56:37 -05004297static int
4298lpfc_sli_hbq_setup(struct lpfc_hba *phba)
4299{
4300 int hbq_count = lpfc_sli_hbq_count();
4301 LPFC_MBOXQ_t *pmb;
4302 MAILBOX_t *pmbox;
4303 uint32_t hbqno;
4304 uint32_t hbq_entry_index;
James Smarted957682007-06-17 19:56:37 -05004305
James Smart92d7f7b2007-06-17 19:56:38 -05004306 /* Get a Mailbox buffer to setup mailbox
4307 * commands for HBA initialization
4308 */
James Smarted957682007-06-17 19:56:37 -05004309 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4310
4311 if (!pmb)
4312 return -ENOMEM;
4313
James Smart04c68492009-05-22 14:52:52 -04004314 pmbox = &pmb->u.mb;
James Smarted957682007-06-17 19:56:37 -05004315
4316 /* Initialize the struct lpfc_sli_hbq structure for each hbq */
4317 phba->link_state = LPFC_INIT_MBX_CMDS;
James Smart3163f722008-02-08 18:50:25 -05004318 phba->hbq_in_use = 1;
James Smarted957682007-06-17 19:56:37 -05004319
4320 hbq_entry_index = 0;
4321 for (hbqno = 0; hbqno < hbq_count; ++hbqno) {
4322 phba->hbqs[hbqno].next_hbqPutIdx = 0;
4323 phba->hbqs[hbqno].hbqPutIdx = 0;
4324 phba->hbqs[hbqno].local_hbqGetIdx = 0;
4325 phba->hbqs[hbqno].entry_count =
James Smart92d7f7b2007-06-17 19:56:38 -05004326 lpfc_hbq_defs[hbqno]->entry_count;
James Smart51ef4c22007-08-02 11:10:31 -04004327 lpfc_config_hbq(phba, hbqno, lpfc_hbq_defs[hbqno],
4328 hbq_entry_index, pmb);
James Smarted957682007-06-17 19:56:37 -05004329 hbq_entry_index += phba->hbqs[hbqno].entry_count;
4330
4331 if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
4332 /* Adapter failed to init, mbxCmd <cmd> CFG_RING,
4333 mbxStatus <status>, ring <num> */
4334
4335 lpfc_printf_log(phba, KERN_ERR,
James Smart92d7f7b2007-06-17 19:56:38 -05004336 LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04004337 "1805 Adapter failed to init. "
James Smarted957682007-06-17 19:56:37 -05004338 "Data: x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04004339 pmbox->mbxCommand,
James Smarted957682007-06-17 19:56:37 -05004340 pmbox->mbxStatus, hbqno);
4341
4342 phba->link_state = LPFC_HBA_ERROR;
4343 mempool_free(pmb, phba->mbox_mem_pool);
James Smart6e7288d2010-06-07 15:23:35 -04004344 return -ENXIO;
James Smarted957682007-06-17 19:56:37 -05004345 }
4346 }
4347 phba->hbq_count = hbq_count;
4348
James Smarted957682007-06-17 19:56:37 -05004349 mempool_free(pmb, phba->mbox_mem_pool);
4350
James Smart92d7f7b2007-06-17 19:56:38 -05004351 /* Initially populate or replenish the HBQs */
James Smartd7c255b2008-08-24 21:50:00 -04004352 for (hbqno = 0; hbqno < hbq_count; ++hbqno)
4353 lpfc_sli_hbqbuf_init_hbqs(phba, hbqno);
James Smarted957682007-06-17 19:56:37 -05004354 return 0;
4355}
4356
James Smarte59058c2008-08-24 21:49:00 -04004357/**
James Smart4f774512009-05-22 14:52:35 -04004358 * lpfc_sli4_rb_setup - Initialize and post RBs to HBA
4359 * @phba: Pointer to HBA context object.
4360 *
4361 * This function is called during the SLI initialization to configure
4362 * all the HBQs and post buffers to the HBQ. The caller is not
4363 * required to hold any locks. This function will return zero if successful
4364 * else it will return negative error code.
4365 **/
4366static int
4367lpfc_sli4_rb_setup(struct lpfc_hba *phba)
4368{
4369 phba->hbq_in_use = 1;
4370 phba->hbqs[0].entry_count = lpfc_hbq_defs[0]->entry_count;
4371 phba->hbq_count = 1;
4372 /* Initially populate or replenish the HBQs */
4373 lpfc_sli_hbqbuf_init_hbqs(phba, 0);
4374 return 0;
4375}
4376
4377/**
James Smart3621a712009-04-06 18:47:14 -04004378 * lpfc_sli_config_port - Issue config port mailbox command
James Smarte59058c2008-08-24 21:49:00 -04004379 * @phba: Pointer to HBA context object.
4380 * @sli_mode: sli mode - 2/3
4381 *
4382 * This function is called by the sli intialization code path
4383 * to issue config_port mailbox command. This function restarts the
4384 * HBA firmware and issues a config_port mailbox command to configure
4385 * the SLI interface in the sli mode specified by sli_mode
4386 * variable. The caller is not required to hold any locks.
4387 * The function returns 0 if successful, else returns negative error
4388 * code.
4389 **/
James Smart93996272008-08-24 21:50:30 -04004390int
4391lpfc_sli_config_port(struct lpfc_hba *phba, int sli_mode)
dea31012005-04-17 16:05:31 -05004392{
4393 LPFC_MBOXQ_t *pmb;
4394 uint32_t resetcount = 0, rc = 0, done = 0;
4395
4396 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4397 if (!pmb) {
James Smart2e0fef82007-06-17 19:56:36 -05004398 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004399 return -ENOMEM;
4400 }
4401
James Smarted957682007-06-17 19:56:37 -05004402 phba->sli_rev = sli_mode;
dea31012005-04-17 16:05:31 -05004403 while (resetcount < 2 && !done) {
James Smart2e0fef82007-06-17 19:56:36 -05004404 spin_lock_irq(&phba->hbalock);
James Smart1c067a42006-08-01 07:33:52 -04004405 phba->sli.sli_flag |= LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05004406 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -05004407 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004408 lpfc_sli_brdrestart(phba);
dea31012005-04-17 16:05:31 -05004409 rc = lpfc_sli_chipset_init(phba);
4410 if (rc)
4411 break;
4412
James Smart2e0fef82007-06-17 19:56:36 -05004413 spin_lock_irq(&phba->hbalock);
James Smart1c067a42006-08-01 07:33:52 -04004414 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05004415 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004416 resetcount++;
4417
James Smarted957682007-06-17 19:56:37 -05004418 /* Call pre CONFIG_PORT mailbox command initialization. A
4419 * value of 0 means the call was successful. Any other
4420 * nonzero value is a failure, but if ERESTART is returned,
4421 * the driver may reset the HBA and try again.
4422 */
dea31012005-04-17 16:05:31 -05004423 rc = lpfc_config_port_prep(phba);
4424 if (rc == -ERESTART) {
James Smarted957682007-06-17 19:56:37 -05004425 phba->link_state = LPFC_LINK_UNKNOWN;
dea31012005-04-17 16:05:31 -05004426 continue;
James Smart34b02dc2008-08-24 21:49:55 -04004427 } else if (rc)
dea31012005-04-17 16:05:31 -05004428 break;
James Smart6d368e52011-05-24 11:44:12 -04004429
James Smart2e0fef82007-06-17 19:56:36 -05004430 phba->link_state = LPFC_INIT_MBX_CMDS;
dea31012005-04-17 16:05:31 -05004431 lpfc_config_port(phba, pmb);
4432 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
James Smart34b02dc2008-08-24 21:49:55 -04004433 phba->sli3_options &= ~(LPFC_SLI3_NPIV_ENABLED |
4434 LPFC_SLI3_HBQ_ENABLED |
4435 LPFC_SLI3_CRP_ENABLED |
James Smartbc739052010-08-04 16:11:18 -04004436 LPFC_SLI3_BG_ENABLED |
4437 LPFC_SLI3_DSS_ENABLED);
James Smarted957682007-06-17 19:56:37 -05004438 if (rc != MBX_SUCCESS) {
dea31012005-04-17 16:05:31 -05004439 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004440 "0442 Adapter failed to init, mbxCmd x%x "
James Smart92d7f7b2007-06-17 19:56:38 -05004441 "CONFIG_PORT, mbxStatus x%x Data: x%x\n",
James Smart04c68492009-05-22 14:52:52 -04004442 pmb->u.mb.mbxCommand, pmb->u.mb.mbxStatus, 0);
James Smart2e0fef82007-06-17 19:56:36 -05004443 spin_lock_irq(&phba->hbalock);
James Smart04c68492009-05-22 14:52:52 -04004444 phba->sli.sli_flag &= ~LPFC_SLI_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05004445 spin_unlock_irq(&phba->hbalock);
4446 rc = -ENXIO;
James Smart04c68492009-05-22 14:52:52 -04004447 } else {
4448 /* Allow asynchronous mailbox command to go through */
4449 spin_lock_irq(&phba->hbalock);
4450 phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
4451 spin_unlock_irq(&phba->hbalock);
James Smarted957682007-06-17 19:56:37 -05004452 done = 1;
James Smartcb69f7d2011-12-13 13:21:57 -05004453
4454 if ((pmb->u.mb.un.varCfgPort.casabt == 1) &&
4455 (pmb->u.mb.un.varCfgPort.gasabt == 0))
4456 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
4457 "3110 Port did not grant ASABT\n");
James Smart04c68492009-05-22 14:52:52 -04004458 }
dea31012005-04-17 16:05:31 -05004459 }
James Smarted957682007-06-17 19:56:37 -05004460 if (!done) {
4461 rc = -EINVAL;
4462 goto do_prep_failed;
4463 }
James Smart04c68492009-05-22 14:52:52 -04004464 if (pmb->u.mb.un.varCfgPort.sli_mode == 3) {
4465 if (!pmb->u.mb.un.varCfgPort.cMA) {
James Smart34b02dc2008-08-24 21:49:55 -04004466 rc = -ENXIO;
4467 goto do_prep_failed;
4468 }
James Smart04c68492009-05-22 14:52:52 -04004469 if (phba->max_vpi && pmb->u.mb.un.varCfgPort.gmv) {
James Smart34b02dc2008-08-24 21:49:55 -04004470 phba->sli3_options |= LPFC_SLI3_NPIV_ENABLED;
James Smart04c68492009-05-22 14:52:52 -04004471 phba->max_vpi = pmb->u.mb.un.varCfgPort.max_vpi;
4472 phba->max_vports = (phba->max_vpi > phba->max_vports) ?
4473 phba->max_vpi : phba->max_vports;
4474
James Smart34b02dc2008-08-24 21:49:55 -04004475 } else
4476 phba->max_vpi = 0;
James Smartbc739052010-08-04 16:11:18 -04004477 phba->fips_level = 0;
4478 phba->fips_spec_rev = 0;
4479 if (pmb->u.mb.un.varCfgPort.gdss) {
James Smart04c68492009-05-22 14:52:52 -04004480 phba->sli3_options |= LPFC_SLI3_DSS_ENABLED;
James Smartbc739052010-08-04 16:11:18 -04004481 phba->fips_level = pmb->u.mb.un.varCfgPort.fips_level;
4482 phba->fips_spec_rev = pmb->u.mb.un.varCfgPort.fips_rev;
4483 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4484 "2850 Security Crypto Active. FIPS x%d "
4485 "(Spec Rev: x%d)",
4486 phba->fips_level, phba->fips_spec_rev);
4487 }
4488 if (pmb->u.mb.un.varCfgPort.sec_err) {
4489 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4490 "2856 Config Port Security Crypto "
4491 "Error: x%x ",
4492 pmb->u.mb.un.varCfgPort.sec_err);
4493 }
James Smart04c68492009-05-22 14:52:52 -04004494 if (pmb->u.mb.un.varCfgPort.gerbm)
James Smart34b02dc2008-08-24 21:49:55 -04004495 phba->sli3_options |= LPFC_SLI3_HBQ_ENABLED;
James Smart04c68492009-05-22 14:52:52 -04004496 if (pmb->u.mb.un.varCfgPort.gcrp)
James Smart34b02dc2008-08-24 21:49:55 -04004497 phba->sli3_options |= LPFC_SLI3_CRP_ENABLED;
James Smart6e7288d2010-06-07 15:23:35 -04004498
4499 phba->hbq_get = phba->mbox->us.s3_pgp.hbq_get;
4500 phba->port_gp = phba->mbox->us.s3_pgp.port;
James Smarte2a0a9d2008-12-04 22:40:02 -05004501
4502 if (phba->cfg_enable_bg) {
James Smart04c68492009-05-22 14:52:52 -04004503 if (pmb->u.mb.un.varCfgPort.gbg)
James Smarte2a0a9d2008-12-04 22:40:02 -05004504 phba->sli3_options |= LPFC_SLI3_BG_ENABLED;
4505 else
4506 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4507 "0443 Adapter did not grant "
4508 "BlockGuard\n");
4509 }
James Smart34b02dc2008-08-24 21:49:55 -04004510 } else {
James Smart8f34f4c2008-12-04 22:39:23 -05004511 phba->hbq_get = NULL;
James Smart34b02dc2008-08-24 21:49:55 -04004512 phba->port_gp = phba->mbox->us.s2.port;
James Smartd7c255b2008-08-24 21:50:00 -04004513 phba->max_vpi = 0;
James Smarted957682007-06-17 19:56:37 -05004514 }
James Smart92d7f7b2007-06-17 19:56:38 -05004515do_prep_failed:
James Smarted957682007-06-17 19:56:37 -05004516 mempool_free(pmb, phba->mbox_mem_pool);
4517 return rc;
4518}
4519
James Smarte59058c2008-08-24 21:49:00 -04004520
4521/**
James Smart3621a712009-04-06 18:47:14 -04004522 * lpfc_sli_hba_setup - SLI intialization function
James Smarte59058c2008-08-24 21:49:00 -04004523 * @phba: Pointer to HBA context object.
4524 *
4525 * This function is the main SLI intialization function. This function
4526 * is called by the HBA intialization code, HBA reset code and HBA
4527 * error attention handler code. Caller is not required to hold any
4528 * locks. This function issues config_port mailbox command to configure
4529 * the SLI, setup iocb rings and HBQ rings. In the end the function
4530 * calls the config_port_post function to issue init_link mailbox
4531 * command and to start the discovery. The function will return zero
4532 * if successful, else it will return negative error code.
4533 **/
James Smarted957682007-06-17 19:56:37 -05004534int
4535lpfc_sli_hba_setup(struct lpfc_hba *phba)
4536{
4537 uint32_t rc;
James Smart6d368e52011-05-24 11:44:12 -04004538 int mode = 3, i;
4539 int longs;
James Smarted957682007-06-17 19:56:37 -05004540
4541 switch (lpfc_sli_mode) {
4542 case 2:
James Smart78b2d852007-08-02 11:10:21 -04004543 if (phba->cfg_enable_npiv) {
James Smart92d7f7b2007-06-17 19:56:38 -05004544 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04004545 "1824 NPIV enabled: Override lpfc_sli_mode "
James Smart92d7f7b2007-06-17 19:56:38 -05004546 "parameter (%d) to auto (0).\n",
James Smarte8b62012007-08-02 11:10:09 -04004547 lpfc_sli_mode);
James Smart92d7f7b2007-06-17 19:56:38 -05004548 break;
4549 }
James Smarted957682007-06-17 19:56:37 -05004550 mode = 2;
4551 break;
4552 case 0:
4553 case 3:
4554 break;
4555 default:
James Smart92d7f7b2007-06-17 19:56:38 -05004556 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04004557 "1819 Unrecognized lpfc_sli_mode "
4558 "parameter: %d.\n", lpfc_sli_mode);
James Smarted957682007-06-17 19:56:37 -05004559
4560 break;
4561 }
4562
James Smart93996272008-08-24 21:50:30 -04004563 rc = lpfc_sli_config_port(phba, mode);
4564
James Smarted957682007-06-17 19:56:37 -05004565 if (rc && lpfc_sli_mode == 3)
James Smart92d7f7b2007-06-17 19:56:38 -05004566 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04004567 "1820 Unable to select SLI-3. "
4568 "Not supported by adapter.\n");
James Smarted957682007-06-17 19:56:37 -05004569 if (rc && mode != 2)
James Smart93996272008-08-24 21:50:30 -04004570 rc = lpfc_sli_config_port(phba, 2);
James Smarted957682007-06-17 19:56:37 -05004571 if (rc)
dea31012005-04-17 16:05:31 -05004572 goto lpfc_sli_hba_setup_error;
4573
James Smart0d878412009-10-02 15:16:56 -04004574 /* Enable PCIe device Advanced Error Reporting (AER) if configured */
4575 if (phba->cfg_aer_support == 1 && !(phba->hba_flag & HBA_AER_ENABLED)) {
4576 rc = pci_enable_pcie_error_reporting(phba->pcidev);
4577 if (!rc) {
4578 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4579 "2709 This device supports "
4580 "Advanced Error Reporting (AER)\n");
4581 spin_lock_irq(&phba->hbalock);
4582 phba->hba_flag |= HBA_AER_ENABLED;
4583 spin_unlock_irq(&phba->hbalock);
4584 } else {
4585 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4586 "2708 This device does not support "
4587 "Advanced Error Reporting (AER)\n");
4588 phba->cfg_aer_support = 0;
4589 }
4590 }
4591
James Smarted957682007-06-17 19:56:37 -05004592 if (phba->sli_rev == 3) {
4593 phba->iocb_cmd_size = SLI3_IOCB_CMD_SIZE;
4594 phba->iocb_rsp_size = SLI3_IOCB_RSP_SIZE;
James Smarted957682007-06-17 19:56:37 -05004595 } else {
4596 phba->iocb_cmd_size = SLI2_IOCB_CMD_SIZE;
4597 phba->iocb_rsp_size = SLI2_IOCB_RSP_SIZE;
James Smart92d7f7b2007-06-17 19:56:38 -05004598 phba->sli3_options = 0;
James Smarted957682007-06-17 19:56:37 -05004599 }
4600
4601 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004602 "0444 Firmware in SLI %x mode. Max_vpi %d\n",
4603 phba->sli_rev, phba->max_vpi);
James Smarted957682007-06-17 19:56:37 -05004604 rc = lpfc_sli_ring_map(phba);
dea31012005-04-17 16:05:31 -05004605
4606 if (rc)
4607 goto lpfc_sli_hba_setup_error;
4608
James Smart6d368e52011-05-24 11:44:12 -04004609 /* Initialize VPIs. */
4610 if (phba->sli_rev == LPFC_SLI_REV3) {
4611 /*
4612 * The VPI bitmask and physical ID array are allocated
4613 * and initialized once only - at driver load. A port
4614 * reset doesn't need to reinitialize this memory.
4615 */
4616 if ((phba->vpi_bmask == NULL) && (phba->vpi_ids == NULL)) {
4617 longs = (phba->max_vpi + BITS_PER_LONG) / BITS_PER_LONG;
4618 phba->vpi_bmask = kzalloc(longs * sizeof(unsigned long),
4619 GFP_KERNEL);
4620 if (!phba->vpi_bmask) {
4621 rc = -ENOMEM;
4622 goto lpfc_sli_hba_setup_error;
4623 }
4624
4625 phba->vpi_ids = kzalloc(
4626 (phba->max_vpi+1) * sizeof(uint16_t),
4627 GFP_KERNEL);
4628 if (!phba->vpi_ids) {
4629 kfree(phba->vpi_bmask);
4630 rc = -ENOMEM;
4631 goto lpfc_sli_hba_setup_error;
4632 }
4633 for (i = 0; i < phba->max_vpi; i++)
4634 phba->vpi_ids[i] = i;
4635 }
4636 }
4637
James Smart93996272008-08-24 21:50:30 -04004638 /* Init HBQs */
James Smarted957682007-06-17 19:56:37 -05004639 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
4640 rc = lpfc_sli_hbq_setup(phba);
4641 if (rc)
4642 goto lpfc_sli_hba_setup_error;
4643 }
James Smart04c68492009-05-22 14:52:52 -04004644 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004645 phba->sli.sli_flag |= LPFC_PROCESS_LA;
James Smart04c68492009-05-22 14:52:52 -04004646 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004647
4648 rc = lpfc_config_port_post(phba);
4649 if (rc)
4650 goto lpfc_sli_hba_setup_error;
4651
James Smarted957682007-06-17 19:56:37 -05004652 return rc;
4653
James Smart92d7f7b2007-06-17 19:56:38 -05004654lpfc_sli_hba_setup_error:
James Smart2e0fef82007-06-17 19:56:36 -05004655 phba->link_state = LPFC_HBA_ERROR;
James Smarte40a02c2010-02-26 14:13:54 -05004656 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004657 "0445 Firmware initialization failed\n");
dea31012005-04-17 16:05:31 -05004658 return rc;
4659}
4660
James Smartda0436e2009-05-22 14:51:39 -04004661/**
4662 * lpfc_sli4_read_fcoe_params - Read fcoe params from conf region
4663 * @phba: Pointer to HBA context object.
4664 * @mboxq: mailbox pointer.
4665 * This function issue a dump mailbox command to read config region
4666 * 23 and parse the records in the region and populate driver
4667 * data structure.
4668 **/
4669static int
James Smartff78d8f2011-12-13 13:21:35 -05004670lpfc_sli4_read_fcoe_params(struct lpfc_hba *phba)
James Smartda0436e2009-05-22 14:51:39 -04004671{
James Smartff78d8f2011-12-13 13:21:35 -05004672 LPFC_MBOXQ_t *mboxq;
James Smartda0436e2009-05-22 14:51:39 -04004673 struct lpfc_dmabuf *mp;
4674 struct lpfc_mqe *mqe;
4675 uint32_t data_length;
4676 int rc;
4677
4678 /* Program the default value of vlan_id and fc_map */
4679 phba->valid_vlan = 0;
4680 phba->fc_map[0] = LPFC_FCOE_FCF_MAP0;
4681 phba->fc_map[1] = LPFC_FCOE_FCF_MAP1;
4682 phba->fc_map[2] = LPFC_FCOE_FCF_MAP2;
4683
James Smartff78d8f2011-12-13 13:21:35 -05004684 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4685 if (!mboxq)
James Smartda0436e2009-05-22 14:51:39 -04004686 return -ENOMEM;
4687
James Smartff78d8f2011-12-13 13:21:35 -05004688 mqe = &mboxq->u.mqe;
4689 if (lpfc_sli4_dump_cfg_rg23(phba, mboxq)) {
4690 rc = -ENOMEM;
4691 goto out_free_mboxq;
4692 }
4693
James Smartda0436e2009-05-22 14:51:39 -04004694 mp = (struct lpfc_dmabuf *) mboxq->context1;
4695 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4696
4697 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
4698 "(%d):2571 Mailbox cmd x%x Status x%x "
4699 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x "
4700 "x%x x%x x%x x%x x%x x%x x%x x%x x%x "
4701 "CQ: x%x x%x x%x x%x\n",
4702 mboxq->vport ? mboxq->vport->vpi : 0,
4703 bf_get(lpfc_mqe_command, mqe),
4704 bf_get(lpfc_mqe_status, mqe),
4705 mqe->un.mb_words[0], mqe->un.mb_words[1],
4706 mqe->un.mb_words[2], mqe->un.mb_words[3],
4707 mqe->un.mb_words[4], mqe->un.mb_words[5],
4708 mqe->un.mb_words[6], mqe->un.mb_words[7],
4709 mqe->un.mb_words[8], mqe->un.mb_words[9],
4710 mqe->un.mb_words[10], mqe->un.mb_words[11],
4711 mqe->un.mb_words[12], mqe->un.mb_words[13],
4712 mqe->un.mb_words[14], mqe->un.mb_words[15],
4713 mqe->un.mb_words[16], mqe->un.mb_words[50],
4714 mboxq->mcqe.word0,
4715 mboxq->mcqe.mcqe_tag0, mboxq->mcqe.mcqe_tag1,
4716 mboxq->mcqe.trailer);
4717
4718 if (rc) {
4719 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4720 kfree(mp);
James Smartff78d8f2011-12-13 13:21:35 -05004721 rc = -EIO;
4722 goto out_free_mboxq;
James Smartda0436e2009-05-22 14:51:39 -04004723 }
4724 data_length = mqe->un.mb_words[5];
James Smarta0c87cb2009-07-19 10:01:10 -04004725 if (data_length > DMP_RGN23_SIZE) {
James Smartd11e31d2009-06-10 17:23:06 -04004726 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4727 kfree(mp);
James Smartff78d8f2011-12-13 13:21:35 -05004728 rc = -EIO;
4729 goto out_free_mboxq;
James Smartd11e31d2009-06-10 17:23:06 -04004730 }
James Smartda0436e2009-05-22 14:51:39 -04004731
4732 lpfc_parse_fcoe_conf(phba, mp->virt, data_length);
4733 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4734 kfree(mp);
James Smartff78d8f2011-12-13 13:21:35 -05004735 rc = 0;
4736
4737out_free_mboxq:
4738 mempool_free(mboxq, phba->mbox_mem_pool);
4739 return rc;
James Smartda0436e2009-05-22 14:51:39 -04004740}
4741
4742/**
4743 * lpfc_sli4_read_rev - Issue READ_REV and collect vpd data
4744 * @phba: pointer to lpfc hba data structure.
4745 * @mboxq: pointer to the LPFC_MBOXQ_t structure.
4746 * @vpd: pointer to the memory to hold resulting port vpd data.
4747 * @vpd_size: On input, the number of bytes allocated to @vpd.
4748 * On output, the number of data bytes in @vpd.
4749 *
4750 * This routine executes a READ_REV SLI4 mailbox command. In
4751 * addition, this routine gets the port vpd data.
4752 *
4753 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004754 * 0 - successful
James Smartd439d282010-09-29 11:18:45 -04004755 * -ENOMEM - could not allocated memory.
James Smartda0436e2009-05-22 14:51:39 -04004756 **/
4757static int
4758lpfc_sli4_read_rev(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
4759 uint8_t *vpd, uint32_t *vpd_size)
4760{
4761 int rc = 0;
4762 uint32_t dma_size;
4763 struct lpfc_dmabuf *dmabuf;
4764 struct lpfc_mqe *mqe;
4765
4766 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
4767 if (!dmabuf)
4768 return -ENOMEM;
4769
4770 /*
4771 * Get a DMA buffer for the vpd data resulting from the READ_REV
4772 * mailbox command.
4773 */
4774 dma_size = *vpd_size;
4775 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
4776 dma_size,
4777 &dmabuf->phys,
4778 GFP_KERNEL);
4779 if (!dmabuf->virt) {
4780 kfree(dmabuf);
4781 return -ENOMEM;
4782 }
4783 memset(dmabuf->virt, 0, dma_size);
4784
4785 /*
4786 * The SLI4 implementation of READ_REV conflicts at word1,
4787 * bits 31:16 and SLI4 adds vpd functionality not present
4788 * in SLI3. This code corrects the conflicts.
4789 */
4790 lpfc_read_rev(phba, mboxq);
4791 mqe = &mboxq->u.mqe;
4792 mqe->un.read_rev.vpd_paddr_high = putPaddrHigh(dmabuf->phys);
4793 mqe->un.read_rev.vpd_paddr_low = putPaddrLow(dmabuf->phys);
4794 mqe->un.read_rev.word1 &= 0x0000FFFF;
4795 bf_set(lpfc_mbx_rd_rev_vpd, &mqe->un.read_rev, 1);
4796 bf_set(lpfc_mbx_rd_rev_avail_len, &mqe->un.read_rev, dma_size);
4797
4798 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4799 if (rc) {
4800 dma_free_coherent(&phba->pcidev->dev, dma_size,
4801 dmabuf->virt, dmabuf->phys);
James Smartdef9c7a2009-12-21 17:02:28 -05004802 kfree(dmabuf);
James Smartda0436e2009-05-22 14:51:39 -04004803 return -EIO;
4804 }
4805
James Smartda0436e2009-05-22 14:51:39 -04004806 /*
4807 * The available vpd length cannot be bigger than the
4808 * DMA buffer passed to the port. Catch the less than
4809 * case and update the caller's size.
4810 */
4811 if (mqe->un.read_rev.avail_vpd_len < *vpd_size)
4812 *vpd_size = mqe->un.read_rev.avail_vpd_len;
4813
James Smartd7c47992010-06-08 18:31:54 -04004814 memcpy(vpd, dmabuf->virt, *vpd_size);
4815
James Smartda0436e2009-05-22 14:51:39 -04004816 dma_free_coherent(&phba->pcidev->dev, dma_size,
4817 dmabuf->virt, dmabuf->phys);
4818 kfree(dmabuf);
4819 return 0;
4820}
4821
4822/**
James Smartcd1c8302011-10-10 21:33:25 -04004823 * lpfc_sli4_retrieve_pport_name - Retrieve SLI4 device physical port name
4824 * @phba: pointer to lpfc hba data structure.
4825 *
4826 * This routine retrieves SLI4 device physical port name this PCI function
4827 * is attached to.
4828 *
4829 * Return codes
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004830 * 0 - successful
James Smartcd1c8302011-10-10 21:33:25 -04004831 * otherwise - failed to retrieve physical port name
4832 **/
4833static int
4834lpfc_sli4_retrieve_pport_name(struct lpfc_hba *phba)
4835{
4836 LPFC_MBOXQ_t *mboxq;
James Smartcd1c8302011-10-10 21:33:25 -04004837 struct lpfc_mbx_get_cntl_attributes *mbx_cntl_attr;
4838 struct lpfc_controller_attribute *cntl_attr;
4839 struct lpfc_mbx_get_port_name *get_port_name;
4840 void *virtaddr = NULL;
4841 uint32_t alloclen, reqlen;
4842 uint32_t shdr_status, shdr_add_status;
4843 union lpfc_sli4_cfg_shdr *shdr;
4844 char cport_name = 0;
4845 int rc;
4846
4847 /* We assume nothing at this point */
4848 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_INVAL;
4849 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_NON;
4850
4851 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4852 if (!mboxq)
4853 return -ENOMEM;
James Smartcd1c8302011-10-10 21:33:25 -04004854 /* obtain link type and link number via READ_CONFIG */
James Smartff78d8f2011-12-13 13:21:35 -05004855 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_INVAL;
4856 lpfc_sli4_read_config(phba);
4857 if (phba->sli4_hba.lnk_info.lnk_dv == LPFC_LNK_DAT_VAL)
4858 goto retrieve_ppname;
James Smartcd1c8302011-10-10 21:33:25 -04004859
4860 /* obtain link type and link number via COMMON_GET_CNTL_ATTRIBUTES */
4861 reqlen = sizeof(struct lpfc_mbx_get_cntl_attributes);
4862 alloclen = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
4863 LPFC_MBOX_OPCODE_GET_CNTL_ATTRIBUTES, reqlen,
4864 LPFC_SLI4_MBX_NEMBED);
4865 if (alloclen < reqlen) {
4866 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
4867 "3084 Allocated DMA memory size (%d) is "
4868 "less than the requested DMA memory size "
4869 "(%d)\n", alloclen, reqlen);
4870 rc = -ENOMEM;
4871 goto out_free_mboxq;
4872 }
4873 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4874 virtaddr = mboxq->sge_array->addr[0];
4875 mbx_cntl_attr = (struct lpfc_mbx_get_cntl_attributes *)virtaddr;
4876 shdr = &mbx_cntl_attr->cfg_shdr;
4877 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
4878 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
4879 if (shdr_status || shdr_add_status || rc) {
4880 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
4881 "3085 Mailbox x%x (x%x/x%x) failed, "
4882 "rc:x%x, status:x%x, add_status:x%x\n",
4883 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
4884 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
4885 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
4886 rc, shdr_status, shdr_add_status);
4887 rc = -ENXIO;
4888 goto out_free_mboxq;
4889 }
4890 cntl_attr = &mbx_cntl_attr->cntl_attr;
4891 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_VAL;
4892 phba->sli4_hba.lnk_info.lnk_tp =
4893 bf_get(lpfc_cntl_attr_lnk_type, cntl_attr);
4894 phba->sli4_hba.lnk_info.lnk_no =
4895 bf_get(lpfc_cntl_attr_lnk_numb, cntl_attr);
4896 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4897 "3086 lnk_type:%d, lnk_numb:%d\n",
4898 phba->sli4_hba.lnk_info.lnk_tp,
4899 phba->sli4_hba.lnk_info.lnk_no);
4900
4901retrieve_ppname:
4902 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
4903 LPFC_MBOX_OPCODE_GET_PORT_NAME,
4904 sizeof(struct lpfc_mbx_get_port_name) -
4905 sizeof(struct lpfc_sli4_cfg_mhdr),
4906 LPFC_SLI4_MBX_EMBED);
4907 get_port_name = &mboxq->u.mqe.un.get_port_name;
4908 shdr = (union lpfc_sli4_cfg_shdr *)&get_port_name->header.cfg_shdr;
4909 bf_set(lpfc_mbox_hdr_version, &shdr->request, LPFC_OPCODE_VERSION_1);
4910 bf_set(lpfc_mbx_get_port_name_lnk_type, &get_port_name->u.request,
4911 phba->sli4_hba.lnk_info.lnk_tp);
4912 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4913 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
4914 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
4915 if (shdr_status || shdr_add_status || rc) {
4916 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
4917 "3087 Mailbox x%x (x%x/x%x) failed: "
4918 "rc:x%x, status:x%x, add_status:x%x\n",
4919 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
4920 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
4921 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
4922 rc, shdr_status, shdr_add_status);
4923 rc = -ENXIO;
4924 goto out_free_mboxq;
4925 }
4926 switch (phba->sli4_hba.lnk_info.lnk_no) {
4927 case LPFC_LINK_NUMBER_0:
4928 cport_name = bf_get(lpfc_mbx_get_port_name_name0,
4929 &get_port_name->u.response);
4930 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
4931 break;
4932 case LPFC_LINK_NUMBER_1:
4933 cport_name = bf_get(lpfc_mbx_get_port_name_name1,
4934 &get_port_name->u.response);
4935 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
4936 break;
4937 case LPFC_LINK_NUMBER_2:
4938 cport_name = bf_get(lpfc_mbx_get_port_name_name2,
4939 &get_port_name->u.response);
4940 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
4941 break;
4942 case LPFC_LINK_NUMBER_3:
4943 cport_name = bf_get(lpfc_mbx_get_port_name_name3,
4944 &get_port_name->u.response);
4945 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
4946 break;
4947 default:
4948 break;
4949 }
4950
4951 if (phba->sli4_hba.pport_name_sta == LPFC_SLI4_PPNAME_GET) {
4952 phba->Port[0] = cport_name;
4953 phba->Port[1] = '\0';
4954 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4955 "3091 SLI get port name: %s\n", phba->Port);
4956 }
4957
4958out_free_mboxq:
4959 if (rc != MBX_TIMEOUT) {
4960 if (bf_get(lpfc_mqe_command, &mboxq->u.mqe) == MBX_SLI4_CONFIG)
4961 lpfc_sli4_mbox_cmd_free(phba, mboxq);
4962 else
4963 mempool_free(mboxq, phba->mbox_mem_pool);
4964 }
4965 return rc;
4966}
4967
4968/**
James Smartda0436e2009-05-22 14:51:39 -04004969 * lpfc_sli4_arm_cqeq_intr - Arm sli-4 device completion and event queues
4970 * @phba: pointer to lpfc hba data structure.
4971 *
4972 * This routine is called to explicitly arm the SLI4 device's completion and
4973 * event queues
4974 **/
4975static void
4976lpfc_sli4_arm_cqeq_intr(struct lpfc_hba *phba)
4977{
James Smart962bc512013-01-03 15:44:00 -05004978 int fcp_eqidx;
James Smartda0436e2009-05-22 14:51:39 -04004979
4980 lpfc_sli4_cq_release(phba->sli4_hba.mbx_cq, LPFC_QUEUE_REARM);
4981 lpfc_sli4_cq_release(phba->sli4_hba.els_cq, LPFC_QUEUE_REARM);
James Smart05580562011-05-24 11:40:48 -04004982 fcp_eqidx = 0;
James Smart2e90f4b2011-12-13 13:22:37 -05004983 if (phba->sli4_hba.fcp_cq) {
James Smart67d12732012-08-03 12:36:13 -04004984 do {
James Smart2e90f4b2011-12-13 13:22:37 -05004985 lpfc_sli4_cq_release(phba->sli4_hba.fcp_cq[fcp_eqidx],
4986 LPFC_QUEUE_REARM);
James Smart67d12732012-08-03 12:36:13 -04004987 } while (++fcp_eqidx < phba->cfg_fcp_io_channel);
James Smart2e90f4b2011-12-13 13:22:37 -05004988 }
James Smart67d12732012-08-03 12:36:13 -04004989 if (phba->sli4_hba.hba_eq) {
4990 for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_io_channel;
James Smart2e90f4b2011-12-13 13:22:37 -05004991 fcp_eqidx++)
James Smart67d12732012-08-03 12:36:13 -04004992 lpfc_sli4_eq_release(phba->sli4_hba.hba_eq[fcp_eqidx],
James Smart2e90f4b2011-12-13 13:22:37 -05004993 LPFC_QUEUE_REARM);
4994 }
James Smartda0436e2009-05-22 14:51:39 -04004995}
4996
4997/**
James Smart6d368e52011-05-24 11:44:12 -04004998 * lpfc_sli4_get_avail_extnt_rsrc - Get available resource extent count.
4999 * @phba: Pointer to HBA context object.
5000 * @type: The resource extent type.
James Smartb76f2dc2011-07-22 18:37:42 -04005001 * @extnt_count: buffer to hold port available extent count.
5002 * @extnt_size: buffer to hold element count per extent.
James Smart6d368e52011-05-24 11:44:12 -04005003 *
James Smartb76f2dc2011-07-22 18:37:42 -04005004 * This function calls the port and retrievs the number of available
5005 * extents and their size for a particular extent type.
5006 *
5007 * Returns: 0 if successful. Nonzero otherwise.
James Smart6d368e52011-05-24 11:44:12 -04005008 **/
James Smartb76f2dc2011-07-22 18:37:42 -04005009int
James Smart6d368e52011-05-24 11:44:12 -04005010lpfc_sli4_get_avail_extnt_rsrc(struct lpfc_hba *phba, uint16_t type,
5011 uint16_t *extnt_count, uint16_t *extnt_size)
5012{
5013 int rc = 0;
5014 uint32_t length;
5015 uint32_t mbox_tmo;
5016 struct lpfc_mbx_get_rsrc_extent_info *rsrc_info;
5017 LPFC_MBOXQ_t *mbox;
5018
5019 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5020 if (!mbox)
5021 return -ENOMEM;
5022
5023 /* Find out how many extents are available for this resource type */
5024 length = (sizeof(struct lpfc_mbx_get_rsrc_extent_info) -
5025 sizeof(struct lpfc_sli4_cfg_mhdr));
5026 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5027 LPFC_MBOX_OPCODE_GET_RSRC_EXTENT_INFO,
5028 length, LPFC_SLI4_MBX_EMBED);
5029
5030 /* Send an extents count of 0 - the GET doesn't use it. */
5031 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, 0, type,
5032 LPFC_SLI4_MBX_EMBED);
5033 if (unlikely(rc)) {
5034 rc = -EIO;
5035 goto err_exit;
5036 }
5037
5038 if (!phba->sli4_hba.intr_enable)
5039 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5040 else {
James Smarta183a152011-10-10 21:32:43 -04005041 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -04005042 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5043 }
5044 if (unlikely(rc)) {
5045 rc = -EIO;
5046 goto err_exit;
5047 }
5048
5049 rsrc_info = &mbox->u.mqe.un.rsrc_extent_info;
5050 if (bf_get(lpfc_mbox_hdr_status,
5051 &rsrc_info->header.cfg_shdr.response)) {
5052 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5053 "2930 Failed to get resource extents "
5054 "Status 0x%x Add'l Status 0x%x\n",
5055 bf_get(lpfc_mbox_hdr_status,
5056 &rsrc_info->header.cfg_shdr.response),
5057 bf_get(lpfc_mbox_hdr_add_status,
5058 &rsrc_info->header.cfg_shdr.response));
5059 rc = -EIO;
5060 goto err_exit;
5061 }
5062
5063 *extnt_count = bf_get(lpfc_mbx_get_rsrc_extent_info_cnt,
5064 &rsrc_info->u.rsp);
5065 *extnt_size = bf_get(lpfc_mbx_get_rsrc_extent_info_size,
5066 &rsrc_info->u.rsp);
James Smart8a9d2e82012-05-09 21:16:12 -04005067
5068 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
5069 "3162 Retrieved extents type-%d from port: count:%d, "
5070 "size:%d\n", type, *extnt_count, *extnt_size);
5071
5072err_exit:
James Smart6d368e52011-05-24 11:44:12 -04005073 mempool_free(mbox, phba->mbox_mem_pool);
5074 return rc;
5075}
5076
5077/**
5078 * lpfc_sli4_chk_avail_extnt_rsrc - Check for available SLI4 resource extents.
5079 * @phba: Pointer to HBA context object.
5080 * @type: The extent type to check.
5081 *
5082 * This function reads the current available extents from the port and checks
5083 * if the extent count or extent size has changed since the last access.
5084 * Callers use this routine post port reset to understand if there is a
5085 * extent reprovisioning requirement.
5086 *
5087 * Returns:
5088 * -Error: error indicates problem.
5089 * 1: Extent count or size has changed.
5090 * 0: No changes.
5091 **/
5092static int
5093lpfc_sli4_chk_avail_extnt_rsrc(struct lpfc_hba *phba, uint16_t type)
5094{
5095 uint16_t curr_ext_cnt, rsrc_ext_cnt;
5096 uint16_t size_diff, rsrc_ext_size;
5097 int rc = 0;
5098 struct lpfc_rsrc_blks *rsrc_entry;
5099 struct list_head *rsrc_blk_list = NULL;
5100
5101 size_diff = 0;
5102 curr_ext_cnt = 0;
5103 rc = lpfc_sli4_get_avail_extnt_rsrc(phba, type,
5104 &rsrc_ext_cnt,
5105 &rsrc_ext_size);
5106 if (unlikely(rc))
5107 return -EIO;
5108
5109 switch (type) {
5110 case LPFC_RSC_TYPE_FCOE_RPI:
5111 rsrc_blk_list = &phba->sli4_hba.lpfc_rpi_blk_list;
5112 break;
5113 case LPFC_RSC_TYPE_FCOE_VPI:
5114 rsrc_blk_list = &phba->lpfc_vpi_blk_list;
5115 break;
5116 case LPFC_RSC_TYPE_FCOE_XRI:
5117 rsrc_blk_list = &phba->sli4_hba.lpfc_xri_blk_list;
5118 break;
5119 case LPFC_RSC_TYPE_FCOE_VFI:
5120 rsrc_blk_list = &phba->sli4_hba.lpfc_vfi_blk_list;
5121 break;
5122 default:
5123 break;
5124 }
5125
5126 list_for_each_entry(rsrc_entry, rsrc_blk_list, list) {
5127 curr_ext_cnt++;
5128 if (rsrc_entry->rsrc_size != rsrc_ext_size)
5129 size_diff++;
5130 }
5131
5132 if (curr_ext_cnt != rsrc_ext_cnt || size_diff != 0)
5133 rc = 1;
5134
5135 return rc;
5136}
5137
5138/**
5139 * lpfc_sli4_cfg_post_extnts -
5140 * @phba: Pointer to HBA context object.
5141 * @extnt_cnt - number of available extents.
5142 * @type - the extent type (rpi, xri, vfi, vpi).
5143 * @emb - buffer to hold either MBX_EMBED or MBX_NEMBED operation.
5144 * @mbox - pointer to the caller's allocated mailbox structure.
5145 *
5146 * This function executes the extents allocation request. It also
5147 * takes care of the amount of memory needed to allocate or get the
5148 * allocated extents. It is the caller's responsibility to evaluate
5149 * the response.
5150 *
5151 * Returns:
5152 * -Error: Error value describes the condition found.
5153 * 0: if successful
5154 **/
5155static int
James Smart8a9d2e82012-05-09 21:16:12 -04005156lpfc_sli4_cfg_post_extnts(struct lpfc_hba *phba, uint16_t extnt_cnt,
James Smart6d368e52011-05-24 11:44:12 -04005157 uint16_t type, bool *emb, LPFC_MBOXQ_t *mbox)
5158{
5159 int rc = 0;
5160 uint32_t req_len;
5161 uint32_t emb_len;
5162 uint32_t alloc_len, mbox_tmo;
5163
5164 /* Calculate the total requested length of the dma memory */
James Smart8a9d2e82012-05-09 21:16:12 -04005165 req_len = extnt_cnt * sizeof(uint16_t);
James Smart6d368e52011-05-24 11:44:12 -04005166
5167 /*
5168 * Calculate the size of an embedded mailbox. The uint32_t
5169 * accounts for extents-specific word.
5170 */
5171 emb_len = sizeof(MAILBOX_t) - sizeof(struct mbox_header) -
5172 sizeof(uint32_t);
5173
5174 /*
5175 * Presume the allocation and response will fit into an embedded
5176 * mailbox. If not true, reconfigure to a non-embedded mailbox.
5177 */
5178 *emb = LPFC_SLI4_MBX_EMBED;
5179 if (req_len > emb_len) {
James Smart8a9d2e82012-05-09 21:16:12 -04005180 req_len = extnt_cnt * sizeof(uint16_t) +
James Smart6d368e52011-05-24 11:44:12 -04005181 sizeof(union lpfc_sli4_cfg_shdr) +
5182 sizeof(uint32_t);
5183 *emb = LPFC_SLI4_MBX_NEMBED;
5184 }
5185
5186 alloc_len = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5187 LPFC_MBOX_OPCODE_ALLOC_RSRC_EXTENT,
5188 req_len, *emb);
5189 if (alloc_len < req_len) {
5190 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smartb76f2dc2011-07-22 18:37:42 -04005191 "2982 Allocated DMA memory size (x%x) is "
James Smart6d368e52011-05-24 11:44:12 -04005192 "less than the requested DMA memory "
5193 "size (x%x)\n", alloc_len, req_len);
5194 return -ENOMEM;
5195 }
James Smart8a9d2e82012-05-09 21:16:12 -04005196 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, extnt_cnt, type, *emb);
James Smart6d368e52011-05-24 11:44:12 -04005197 if (unlikely(rc))
5198 return -EIO;
5199
5200 if (!phba->sli4_hba.intr_enable)
5201 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5202 else {
James Smarta183a152011-10-10 21:32:43 -04005203 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -04005204 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5205 }
5206
5207 if (unlikely(rc))
5208 rc = -EIO;
5209 return rc;
5210}
5211
5212/**
5213 * lpfc_sli4_alloc_extent - Allocate an SLI4 resource extent.
5214 * @phba: Pointer to HBA context object.
5215 * @type: The resource extent type to allocate.
5216 *
5217 * This function allocates the number of elements for the specified
5218 * resource type.
5219 **/
5220static int
5221lpfc_sli4_alloc_extent(struct lpfc_hba *phba, uint16_t type)
5222{
5223 bool emb = false;
5224 uint16_t rsrc_id_cnt, rsrc_cnt, rsrc_size;
5225 uint16_t rsrc_id, rsrc_start, j, k;
5226 uint16_t *ids;
5227 int i, rc;
5228 unsigned long longs;
5229 unsigned long *bmask;
5230 struct lpfc_rsrc_blks *rsrc_blks;
5231 LPFC_MBOXQ_t *mbox;
5232 uint32_t length;
5233 struct lpfc_id_range *id_array = NULL;
5234 void *virtaddr = NULL;
5235 struct lpfc_mbx_nembed_rsrc_extent *n_rsrc;
5236 struct lpfc_mbx_alloc_rsrc_extents *rsrc_ext;
5237 struct list_head *ext_blk_list;
5238
5239 rc = lpfc_sli4_get_avail_extnt_rsrc(phba, type,
5240 &rsrc_cnt,
5241 &rsrc_size);
5242 if (unlikely(rc))
5243 return -EIO;
5244
5245 if ((rsrc_cnt == 0) || (rsrc_size == 0)) {
5246 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5247 "3009 No available Resource Extents "
5248 "for resource type 0x%x: Count: 0x%x, "
5249 "Size 0x%x\n", type, rsrc_cnt,
5250 rsrc_size);
5251 return -ENOMEM;
5252 }
5253
James Smart8a9d2e82012-05-09 21:16:12 -04005254 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_INIT | LOG_SLI,
5255 "2903 Post resource extents type-0x%x: "
5256 "count:%d, size %d\n", type, rsrc_cnt, rsrc_size);
James Smart6d368e52011-05-24 11:44:12 -04005257
5258 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5259 if (!mbox)
5260 return -ENOMEM;
5261
James Smart8a9d2e82012-05-09 21:16:12 -04005262 rc = lpfc_sli4_cfg_post_extnts(phba, rsrc_cnt, type, &emb, mbox);
James Smart6d368e52011-05-24 11:44:12 -04005263 if (unlikely(rc)) {
5264 rc = -EIO;
5265 goto err_exit;
5266 }
5267
5268 /*
5269 * Figure out where the response is located. Then get local pointers
5270 * to the response data. The port does not guarantee to respond to
5271 * all extents counts request so update the local variable with the
5272 * allocated count from the port.
5273 */
5274 if (emb == LPFC_SLI4_MBX_EMBED) {
5275 rsrc_ext = &mbox->u.mqe.un.alloc_rsrc_extents;
5276 id_array = &rsrc_ext->u.rsp.id[0];
5277 rsrc_cnt = bf_get(lpfc_mbx_rsrc_cnt, &rsrc_ext->u.rsp);
5278 } else {
5279 virtaddr = mbox->sge_array->addr[0];
5280 n_rsrc = (struct lpfc_mbx_nembed_rsrc_extent *) virtaddr;
5281 rsrc_cnt = bf_get(lpfc_mbx_rsrc_cnt, n_rsrc);
5282 id_array = &n_rsrc->id;
5283 }
5284
5285 longs = ((rsrc_cnt * rsrc_size) + BITS_PER_LONG - 1) / BITS_PER_LONG;
5286 rsrc_id_cnt = rsrc_cnt * rsrc_size;
5287
5288 /*
5289 * Based on the resource size and count, correct the base and max
5290 * resource values.
5291 */
5292 length = sizeof(struct lpfc_rsrc_blks);
5293 switch (type) {
5294 case LPFC_RSC_TYPE_FCOE_RPI:
5295 phba->sli4_hba.rpi_bmask = kzalloc(longs *
5296 sizeof(unsigned long),
5297 GFP_KERNEL);
5298 if (unlikely(!phba->sli4_hba.rpi_bmask)) {
5299 rc = -ENOMEM;
5300 goto err_exit;
5301 }
5302 phba->sli4_hba.rpi_ids = kzalloc(rsrc_id_cnt *
5303 sizeof(uint16_t),
5304 GFP_KERNEL);
5305 if (unlikely(!phba->sli4_hba.rpi_ids)) {
5306 kfree(phba->sli4_hba.rpi_bmask);
5307 rc = -ENOMEM;
5308 goto err_exit;
5309 }
5310
5311 /*
5312 * The next_rpi was initialized with the maximum available
5313 * count but the port may allocate a smaller number. Catch
5314 * that case and update the next_rpi.
5315 */
5316 phba->sli4_hba.next_rpi = rsrc_id_cnt;
5317
5318 /* Initialize local ptrs for common extent processing later. */
5319 bmask = phba->sli4_hba.rpi_bmask;
5320 ids = phba->sli4_hba.rpi_ids;
5321 ext_blk_list = &phba->sli4_hba.lpfc_rpi_blk_list;
5322 break;
5323 case LPFC_RSC_TYPE_FCOE_VPI:
5324 phba->vpi_bmask = kzalloc(longs *
5325 sizeof(unsigned long),
5326 GFP_KERNEL);
5327 if (unlikely(!phba->vpi_bmask)) {
5328 rc = -ENOMEM;
5329 goto err_exit;
5330 }
5331 phba->vpi_ids = kzalloc(rsrc_id_cnt *
5332 sizeof(uint16_t),
5333 GFP_KERNEL);
5334 if (unlikely(!phba->vpi_ids)) {
5335 kfree(phba->vpi_bmask);
5336 rc = -ENOMEM;
5337 goto err_exit;
5338 }
5339
5340 /* Initialize local ptrs for common extent processing later. */
5341 bmask = phba->vpi_bmask;
5342 ids = phba->vpi_ids;
5343 ext_blk_list = &phba->lpfc_vpi_blk_list;
5344 break;
5345 case LPFC_RSC_TYPE_FCOE_XRI:
5346 phba->sli4_hba.xri_bmask = kzalloc(longs *
5347 sizeof(unsigned long),
5348 GFP_KERNEL);
5349 if (unlikely(!phba->sli4_hba.xri_bmask)) {
5350 rc = -ENOMEM;
5351 goto err_exit;
5352 }
James Smart8a9d2e82012-05-09 21:16:12 -04005353 phba->sli4_hba.max_cfg_param.xri_used = 0;
James Smart6d368e52011-05-24 11:44:12 -04005354 phba->sli4_hba.xri_ids = kzalloc(rsrc_id_cnt *
5355 sizeof(uint16_t),
5356 GFP_KERNEL);
5357 if (unlikely(!phba->sli4_hba.xri_ids)) {
5358 kfree(phba->sli4_hba.xri_bmask);
5359 rc = -ENOMEM;
5360 goto err_exit;
5361 }
5362
5363 /* Initialize local ptrs for common extent processing later. */
5364 bmask = phba->sli4_hba.xri_bmask;
5365 ids = phba->sli4_hba.xri_ids;
5366 ext_blk_list = &phba->sli4_hba.lpfc_xri_blk_list;
5367 break;
5368 case LPFC_RSC_TYPE_FCOE_VFI:
5369 phba->sli4_hba.vfi_bmask = kzalloc(longs *
5370 sizeof(unsigned long),
5371 GFP_KERNEL);
5372 if (unlikely(!phba->sli4_hba.vfi_bmask)) {
5373 rc = -ENOMEM;
5374 goto err_exit;
5375 }
5376 phba->sli4_hba.vfi_ids = kzalloc(rsrc_id_cnt *
5377 sizeof(uint16_t),
5378 GFP_KERNEL);
5379 if (unlikely(!phba->sli4_hba.vfi_ids)) {
5380 kfree(phba->sli4_hba.vfi_bmask);
5381 rc = -ENOMEM;
5382 goto err_exit;
5383 }
5384
5385 /* Initialize local ptrs for common extent processing later. */
5386 bmask = phba->sli4_hba.vfi_bmask;
5387 ids = phba->sli4_hba.vfi_ids;
5388 ext_blk_list = &phba->sli4_hba.lpfc_vfi_blk_list;
5389 break;
5390 default:
5391 /* Unsupported Opcode. Fail call. */
5392 id_array = NULL;
5393 bmask = NULL;
5394 ids = NULL;
5395 ext_blk_list = NULL;
5396 goto err_exit;
5397 }
5398
5399 /*
5400 * Complete initializing the extent configuration with the
5401 * allocated ids assigned to this function. The bitmask serves
5402 * as an index into the array and manages the available ids. The
5403 * array just stores the ids communicated to the port via the wqes.
5404 */
5405 for (i = 0, j = 0, k = 0; i < rsrc_cnt; i++) {
5406 if ((i % 2) == 0)
5407 rsrc_id = bf_get(lpfc_mbx_rsrc_id_word4_0,
5408 &id_array[k]);
5409 else
5410 rsrc_id = bf_get(lpfc_mbx_rsrc_id_word4_1,
5411 &id_array[k]);
5412
5413 rsrc_blks = kzalloc(length, GFP_KERNEL);
5414 if (unlikely(!rsrc_blks)) {
5415 rc = -ENOMEM;
5416 kfree(bmask);
5417 kfree(ids);
5418 goto err_exit;
5419 }
5420 rsrc_blks->rsrc_start = rsrc_id;
5421 rsrc_blks->rsrc_size = rsrc_size;
5422 list_add_tail(&rsrc_blks->list, ext_blk_list);
5423 rsrc_start = rsrc_id;
5424 if ((type == LPFC_RSC_TYPE_FCOE_XRI) && (j == 0))
5425 phba->sli4_hba.scsi_xri_start = rsrc_start +
5426 lpfc_sli4_get_els_iocb_cnt(phba);
5427
5428 while (rsrc_id < (rsrc_start + rsrc_size)) {
5429 ids[j] = rsrc_id;
5430 rsrc_id++;
5431 j++;
5432 }
5433 /* Entire word processed. Get next word.*/
5434 if ((i % 2) == 1)
5435 k++;
5436 }
5437 err_exit:
5438 lpfc_sli4_mbox_cmd_free(phba, mbox);
5439 return rc;
5440}
5441
5442/**
5443 * lpfc_sli4_dealloc_extent - Deallocate an SLI4 resource extent.
5444 * @phba: Pointer to HBA context object.
5445 * @type: the extent's type.
5446 *
5447 * This function deallocates all extents of a particular resource type.
5448 * SLI4 does not allow for deallocating a particular extent range. It
5449 * is the caller's responsibility to release all kernel memory resources.
5450 **/
5451static int
5452lpfc_sli4_dealloc_extent(struct lpfc_hba *phba, uint16_t type)
5453{
5454 int rc;
5455 uint32_t length, mbox_tmo = 0;
5456 LPFC_MBOXQ_t *mbox;
5457 struct lpfc_mbx_dealloc_rsrc_extents *dealloc_rsrc;
5458 struct lpfc_rsrc_blks *rsrc_blk, *rsrc_blk_next;
5459
5460 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5461 if (!mbox)
5462 return -ENOMEM;
5463
5464 /*
5465 * This function sends an embedded mailbox because it only sends the
5466 * the resource type. All extents of this type are released by the
5467 * port.
5468 */
5469 length = (sizeof(struct lpfc_mbx_dealloc_rsrc_extents) -
5470 sizeof(struct lpfc_sli4_cfg_mhdr));
5471 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5472 LPFC_MBOX_OPCODE_DEALLOC_RSRC_EXTENT,
5473 length, LPFC_SLI4_MBX_EMBED);
5474
5475 /* Send an extents count of 0 - the dealloc doesn't use it. */
5476 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, 0, type,
5477 LPFC_SLI4_MBX_EMBED);
5478 if (unlikely(rc)) {
5479 rc = -EIO;
5480 goto out_free_mbox;
5481 }
5482 if (!phba->sli4_hba.intr_enable)
5483 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5484 else {
James Smarta183a152011-10-10 21:32:43 -04005485 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -04005486 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5487 }
5488 if (unlikely(rc)) {
5489 rc = -EIO;
5490 goto out_free_mbox;
5491 }
5492
5493 dealloc_rsrc = &mbox->u.mqe.un.dealloc_rsrc_extents;
5494 if (bf_get(lpfc_mbox_hdr_status,
5495 &dealloc_rsrc->header.cfg_shdr.response)) {
5496 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5497 "2919 Failed to release resource extents "
5498 "for type %d - Status 0x%x Add'l Status 0x%x. "
5499 "Resource memory not released.\n",
5500 type,
5501 bf_get(lpfc_mbox_hdr_status,
5502 &dealloc_rsrc->header.cfg_shdr.response),
5503 bf_get(lpfc_mbox_hdr_add_status,
5504 &dealloc_rsrc->header.cfg_shdr.response));
5505 rc = -EIO;
5506 goto out_free_mbox;
5507 }
5508
5509 /* Release kernel memory resources for the specific type. */
5510 switch (type) {
5511 case LPFC_RSC_TYPE_FCOE_VPI:
5512 kfree(phba->vpi_bmask);
5513 kfree(phba->vpi_ids);
5514 bf_set(lpfc_vpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5515 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5516 &phba->lpfc_vpi_blk_list, list) {
5517 list_del_init(&rsrc_blk->list);
5518 kfree(rsrc_blk);
5519 }
James Smart16a3a202013-04-17 20:14:38 -04005520 phba->sli4_hba.max_cfg_param.vpi_used = 0;
James Smart6d368e52011-05-24 11:44:12 -04005521 break;
5522 case LPFC_RSC_TYPE_FCOE_XRI:
5523 kfree(phba->sli4_hba.xri_bmask);
5524 kfree(phba->sli4_hba.xri_ids);
James Smart6d368e52011-05-24 11:44:12 -04005525 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5526 &phba->sli4_hba.lpfc_xri_blk_list, list) {
5527 list_del_init(&rsrc_blk->list);
5528 kfree(rsrc_blk);
5529 }
5530 break;
5531 case LPFC_RSC_TYPE_FCOE_VFI:
5532 kfree(phba->sli4_hba.vfi_bmask);
5533 kfree(phba->sli4_hba.vfi_ids);
5534 bf_set(lpfc_vfi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5535 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5536 &phba->sli4_hba.lpfc_vfi_blk_list, list) {
5537 list_del_init(&rsrc_blk->list);
5538 kfree(rsrc_blk);
5539 }
5540 break;
5541 case LPFC_RSC_TYPE_FCOE_RPI:
5542 /* RPI bitmask and physical id array are cleaned up earlier. */
5543 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5544 &phba->sli4_hba.lpfc_rpi_blk_list, list) {
5545 list_del_init(&rsrc_blk->list);
5546 kfree(rsrc_blk);
5547 }
5548 break;
5549 default:
5550 break;
5551 }
5552
5553 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5554
5555 out_free_mbox:
5556 mempool_free(mbox, phba->mbox_mem_pool);
5557 return rc;
5558}
5559
5560/**
5561 * lpfc_sli4_alloc_resource_identifiers - Allocate all SLI4 resource extents.
5562 * @phba: Pointer to HBA context object.
5563 *
5564 * This function allocates all SLI4 resource identifiers.
5565 **/
5566int
5567lpfc_sli4_alloc_resource_identifiers(struct lpfc_hba *phba)
5568{
5569 int i, rc, error = 0;
5570 uint16_t count, base;
5571 unsigned long longs;
5572
James Smartff78d8f2011-12-13 13:21:35 -05005573 if (!phba->sli4_hba.rpi_hdrs_in_use)
5574 phba->sli4_hba.next_rpi = phba->sli4_hba.max_cfg_param.max_rpi;
James Smart6d368e52011-05-24 11:44:12 -04005575 if (phba->sli4_hba.extents_in_use) {
5576 /*
5577 * The port supports resource extents. The XRI, VPI, VFI, RPI
5578 * resource extent count must be read and allocated before
5579 * provisioning the resource id arrays.
5580 */
5581 if (bf_get(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags) ==
5582 LPFC_IDX_RSRC_RDY) {
5583 /*
5584 * Extent-based resources are set - the driver could
5585 * be in a port reset. Figure out if any corrective
5586 * actions need to be taken.
5587 */
5588 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5589 LPFC_RSC_TYPE_FCOE_VFI);
5590 if (rc != 0)
5591 error++;
5592 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5593 LPFC_RSC_TYPE_FCOE_VPI);
5594 if (rc != 0)
5595 error++;
5596 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5597 LPFC_RSC_TYPE_FCOE_XRI);
5598 if (rc != 0)
5599 error++;
5600 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5601 LPFC_RSC_TYPE_FCOE_RPI);
5602 if (rc != 0)
5603 error++;
5604
5605 /*
5606 * It's possible that the number of resources
5607 * provided to this port instance changed between
5608 * resets. Detect this condition and reallocate
5609 * resources. Otherwise, there is no action.
5610 */
5611 if (error) {
5612 lpfc_printf_log(phba, KERN_INFO,
5613 LOG_MBOX | LOG_INIT,
5614 "2931 Detected extent resource "
5615 "change. Reallocating all "
5616 "extents.\n");
5617 rc = lpfc_sli4_dealloc_extent(phba,
5618 LPFC_RSC_TYPE_FCOE_VFI);
5619 rc = lpfc_sli4_dealloc_extent(phba,
5620 LPFC_RSC_TYPE_FCOE_VPI);
5621 rc = lpfc_sli4_dealloc_extent(phba,
5622 LPFC_RSC_TYPE_FCOE_XRI);
5623 rc = lpfc_sli4_dealloc_extent(phba,
5624 LPFC_RSC_TYPE_FCOE_RPI);
5625 } else
5626 return 0;
5627 }
5628
5629 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_VFI);
5630 if (unlikely(rc))
5631 goto err_exit;
5632
5633 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_VPI);
5634 if (unlikely(rc))
5635 goto err_exit;
5636
5637 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_RPI);
5638 if (unlikely(rc))
5639 goto err_exit;
5640
5641 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_XRI);
5642 if (unlikely(rc))
5643 goto err_exit;
5644 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags,
5645 LPFC_IDX_RSRC_RDY);
5646 return rc;
5647 } else {
5648 /*
5649 * The port does not support resource extents. The XRI, VPI,
5650 * VFI, RPI resource ids were determined from READ_CONFIG.
5651 * Just allocate the bitmasks and provision the resource id
5652 * arrays. If a port reset is active, the resources don't
5653 * need any action - just exit.
5654 */
5655 if (bf_get(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags) ==
James Smartff78d8f2011-12-13 13:21:35 -05005656 LPFC_IDX_RSRC_RDY) {
5657 lpfc_sli4_dealloc_resource_identifiers(phba);
5658 lpfc_sli4_remove_rpis(phba);
5659 }
James Smart6d368e52011-05-24 11:44:12 -04005660 /* RPIs. */
5661 count = phba->sli4_hba.max_cfg_param.max_rpi;
James Smart0a630c22013-01-03 15:44:09 -05005662 if (count <= 0) {
5663 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5664 "3279 Invalid provisioning of "
5665 "rpi:%d\n", count);
5666 rc = -EINVAL;
5667 goto err_exit;
5668 }
James Smart6d368e52011-05-24 11:44:12 -04005669 base = phba->sli4_hba.max_cfg_param.rpi_base;
5670 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5671 phba->sli4_hba.rpi_bmask = kzalloc(longs *
5672 sizeof(unsigned long),
5673 GFP_KERNEL);
5674 if (unlikely(!phba->sli4_hba.rpi_bmask)) {
5675 rc = -ENOMEM;
5676 goto err_exit;
5677 }
5678 phba->sli4_hba.rpi_ids = kzalloc(count *
5679 sizeof(uint16_t),
5680 GFP_KERNEL);
5681 if (unlikely(!phba->sli4_hba.rpi_ids)) {
5682 rc = -ENOMEM;
5683 goto free_rpi_bmask;
5684 }
5685
5686 for (i = 0; i < count; i++)
5687 phba->sli4_hba.rpi_ids[i] = base + i;
5688
5689 /* VPIs. */
5690 count = phba->sli4_hba.max_cfg_param.max_vpi;
James Smart0a630c22013-01-03 15:44:09 -05005691 if (count <= 0) {
5692 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5693 "3280 Invalid provisioning of "
5694 "vpi:%d\n", count);
5695 rc = -EINVAL;
5696 goto free_rpi_ids;
5697 }
James Smart6d368e52011-05-24 11:44:12 -04005698 base = phba->sli4_hba.max_cfg_param.vpi_base;
5699 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5700 phba->vpi_bmask = kzalloc(longs *
5701 sizeof(unsigned long),
5702 GFP_KERNEL);
5703 if (unlikely(!phba->vpi_bmask)) {
5704 rc = -ENOMEM;
5705 goto free_rpi_ids;
5706 }
5707 phba->vpi_ids = kzalloc(count *
5708 sizeof(uint16_t),
5709 GFP_KERNEL);
5710 if (unlikely(!phba->vpi_ids)) {
5711 rc = -ENOMEM;
5712 goto free_vpi_bmask;
5713 }
5714
5715 for (i = 0; i < count; i++)
5716 phba->vpi_ids[i] = base + i;
5717
5718 /* XRIs. */
5719 count = phba->sli4_hba.max_cfg_param.max_xri;
James Smart0a630c22013-01-03 15:44:09 -05005720 if (count <= 0) {
5721 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5722 "3281 Invalid provisioning of "
5723 "xri:%d\n", count);
5724 rc = -EINVAL;
5725 goto free_vpi_ids;
5726 }
James Smart6d368e52011-05-24 11:44:12 -04005727 base = phba->sli4_hba.max_cfg_param.xri_base;
5728 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5729 phba->sli4_hba.xri_bmask = kzalloc(longs *
5730 sizeof(unsigned long),
5731 GFP_KERNEL);
5732 if (unlikely(!phba->sli4_hba.xri_bmask)) {
5733 rc = -ENOMEM;
5734 goto free_vpi_ids;
5735 }
James Smart41899be2012-03-01 22:34:19 -05005736 phba->sli4_hba.max_cfg_param.xri_used = 0;
James Smart6d368e52011-05-24 11:44:12 -04005737 phba->sli4_hba.xri_ids = kzalloc(count *
5738 sizeof(uint16_t),
5739 GFP_KERNEL);
5740 if (unlikely(!phba->sli4_hba.xri_ids)) {
5741 rc = -ENOMEM;
5742 goto free_xri_bmask;
5743 }
5744
5745 for (i = 0; i < count; i++)
5746 phba->sli4_hba.xri_ids[i] = base + i;
5747
5748 /* VFIs. */
5749 count = phba->sli4_hba.max_cfg_param.max_vfi;
James Smart0a630c22013-01-03 15:44:09 -05005750 if (count <= 0) {
5751 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5752 "3282 Invalid provisioning of "
5753 "vfi:%d\n", count);
5754 rc = -EINVAL;
5755 goto free_xri_ids;
5756 }
James Smart6d368e52011-05-24 11:44:12 -04005757 base = phba->sli4_hba.max_cfg_param.vfi_base;
5758 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5759 phba->sli4_hba.vfi_bmask = kzalloc(longs *
5760 sizeof(unsigned long),
5761 GFP_KERNEL);
5762 if (unlikely(!phba->sli4_hba.vfi_bmask)) {
5763 rc = -ENOMEM;
5764 goto free_xri_ids;
5765 }
5766 phba->sli4_hba.vfi_ids = kzalloc(count *
5767 sizeof(uint16_t),
5768 GFP_KERNEL);
5769 if (unlikely(!phba->sli4_hba.vfi_ids)) {
5770 rc = -ENOMEM;
5771 goto free_vfi_bmask;
5772 }
5773
5774 for (i = 0; i < count; i++)
5775 phba->sli4_hba.vfi_ids[i] = base + i;
5776
5777 /*
5778 * Mark all resources ready. An HBA reset doesn't need
5779 * to reset the initialization.
5780 */
5781 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags,
5782 LPFC_IDX_RSRC_RDY);
5783 return 0;
5784 }
5785
5786 free_vfi_bmask:
5787 kfree(phba->sli4_hba.vfi_bmask);
5788 free_xri_ids:
5789 kfree(phba->sli4_hba.xri_ids);
5790 free_xri_bmask:
5791 kfree(phba->sli4_hba.xri_bmask);
5792 free_vpi_ids:
5793 kfree(phba->vpi_ids);
5794 free_vpi_bmask:
5795 kfree(phba->vpi_bmask);
5796 free_rpi_ids:
5797 kfree(phba->sli4_hba.rpi_ids);
5798 free_rpi_bmask:
5799 kfree(phba->sli4_hba.rpi_bmask);
5800 err_exit:
5801 return rc;
5802}
5803
5804/**
5805 * lpfc_sli4_dealloc_resource_identifiers - Deallocate all SLI4 resource extents.
5806 * @phba: Pointer to HBA context object.
5807 *
5808 * This function allocates the number of elements for the specified
5809 * resource type.
5810 **/
5811int
5812lpfc_sli4_dealloc_resource_identifiers(struct lpfc_hba *phba)
5813{
5814 if (phba->sli4_hba.extents_in_use) {
5815 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_VPI);
5816 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_RPI);
5817 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_XRI);
5818 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_VFI);
5819 } else {
5820 kfree(phba->vpi_bmask);
James Smart16a3a202013-04-17 20:14:38 -04005821 phba->sli4_hba.max_cfg_param.vpi_used = 0;
James Smart6d368e52011-05-24 11:44:12 -04005822 kfree(phba->vpi_ids);
5823 bf_set(lpfc_vpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5824 kfree(phba->sli4_hba.xri_bmask);
5825 kfree(phba->sli4_hba.xri_ids);
James Smart6d368e52011-05-24 11:44:12 -04005826 kfree(phba->sli4_hba.vfi_bmask);
5827 kfree(phba->sli4_hba.vfi_ids);
5828 bf_set(lpfc_vfi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5829 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5830 }
5831
5832 return 0;
5833}
5834
5835/**
James Smartb76f2dc2011-07-22 18:37:42 -04005836 * lpfc_sli4_get_allocated_extnts - Get the port's allocated extents.
5837 * @phba: Pointer to HBA context object.
5838 * @type: The resource extent type.
5839 * @extnt_count: buffer to hold port extent count response
5840 * @extnt_size: buffer to hold port extent size response.
5841 *
5842 * This function calls the port to read the host allocated extents
5843 * for a particular type.
5844 **/
5845int
5846lpfc_sli4_get_allocated_extnts(struct lpfc_hba *phba, uint16_t type,
5847 uint16_t *extnt_cnt, uint16_t *extnt_size)
5848{
5849 bool emb;
5850 int rc = 0;
5851 uint16_t curr_blks = 0;
5852 uint32_t req_len, emb_len;
5853 uint32_t alloc_len, mbox_tmo;
5854 struct list_head *blk_list_head;
5855 struct lpfc_rsrc_blks *rsrc_blk;
5856 LPFC_MBOXQ_t *mbox;
5857 void *virtaddr = NULL;
5858 struct lpfc_mbx_nembed_rsrc_extent *n_rsrc;
5859 struct lpfc_mbx_alloc_rsrc_extents *rsrc_ext;
5860 union lpfc_sli4_cfg_shdr *shdr;
5861
5862 switch (type) {
5863 case LPFC_RSC_TYPE_FCOE_VPI:
5864 blk_list_head = &phba->lpfc_vpi_blk_list;
5865 break;
5866 case LPFC_RSC_TYPE_FCOE_XRI:
5867 blk_list_head = &phba->sli4_hba.lpfc_xri_blk_list;
5868 break;
5869 case LPFC_RSC_TYPE_FCOE_VFI:
5870 blk_list_head = &phba->sli4_hba.lpfc_vfi_blk_list;
5871 break;
5872 case LPFC_RSC_TYPE_FCOE_RPI:
5873 blk_list_head = &phba->sli4_hba.lpfc_rpi_blk_list;
5874 break;
5875 default:
5876 return -EIO;
5877 }
5878
5879 /* Count the number of extents currently allocatd for this type. */
5880 list_for_each_entry(rsrc_blk, blk_list_head, list) {
5881 if (curr_blks == 0) {
5882 /*
5883 * The GET_ALLOCATED mailbox does not return the size,
5884 * just the count. The size should be just the size
5885 * stored in the current allocated block and all sizes
5886 * for an extent type are the same so set the return
5887 * value now.
5888 */
5889 *extnt_size = rsrc_blk->rsrc_size;
5890 }
5891 curr_blks++;
5892 }
5893
5894 /* Calculate the total requested length of the dma memory. */
5895 req_len = curr_blks * sizeof(uint16_t);
5896
5897 /*
5898 * Calculate the size of an embedded mailbox. The uint32_t
5899 * accounts for extents-specific word.
5900 */
5901 emb_len = sizeof(MAILBOX_t) - sizeof(struct mbox_header) -
5902 sizeof(uint32_t);
5903
5904 /*
5905 * Presume the allocation and response will fit into an embedded
5906 * mailbox. If not true, reconfigure to a non-embedded mailbox.
5907 */
5908 emb = LPFC_SLI4_MBX_EMBED;
5909 req_len = emb_len;
5910 if (req_len > emb_len) {
5911 req_len = curr_blks * sizeof(uint16_t) +
5912 sizeof(union lpfc_sli4_cfg_shdr) +
5913 sizeof(uint32_t);
5914 emb = LPFC_SLI4_MBX_NEMBED;
5915 }
5916
5917 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5918 if (!mbox)
5919 return -ENOMEM;
5920 memset(mbox, 0, sizeof(LPFC_MBOXQ_t));
5921
5922 alloc_len = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5923 LPFC_MBOX_OPCODE_GET_ALLOC_RSRC_EXTENT,
5924 req_len, emb);
5925 if (alloc_len < req_len) {
5926 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5927 "2983 Allocated DMA memory size (x%x) is "
5928 "less than the requested DMA memory "
5929 "size (x%x)\n", alloc_len, req_len);
5930 rc = -ENOMEM;
5931 goto err_exit;
5932 }
5933 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, curr_blks, type, emb);
5934 if (unlikely(rc)) {
5935 rc = -EIO;
5936 goto err_exit;
5937 }
5938
5939 if (!phba->sli4_hba.intr_enable)
5940 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5941 else {
James Smarta183a152011-10-10 21:32:43 -04005942 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smartb76f2dc2011-07-22 18:37:42 -04005943 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5944 }
5945
5946 if (unlikely(rc)) {
5947 rc = -EIO;
5948 goto err_exit;
5949 }
5950
5951 /*
5952 * Figure out where the response is located. Then get local pointers
5953 * to the response data. The port does not guarantee to respond to
5954 * all extents counts request so update the local variable with the
5955 * allocated count from the port.
5956 */
5957 if (emb == LPFC_SLI4_MBX_EMBED) {
5958 rsrc_ext = &mbox->u.mqe.un.alloc_rsrc_extents;
5959 shdr = &rsrc_ext->header.cfg_shdr;
5960 *extnt_cnt = bf_get(lpfc_mbx_rsrc_cnt, &rsrc_ext->u.rsp);
5961 } else {
5962 virtaddr = mbox->sge_array->addr[0];
5963 n_rsrc = (struct lpfc_mbx_nembed_rsrc_extent *) virtaddr;
5964 shdr = &n_rsrc->cfg_shdr;
5965 *extnt_cnt = bf_get(lpfc_mbx_rsrc_cnt, n_rsrc);
5966 }
5967
5968 if (bf_get(lpfc_mbox_hdr_status, &shdr->response)) {
5969 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5970 "2984 Failed to read allocated resources "
5971 "for type %d - Status 0x%x Add'l Status 0x%x.\n",
5972 type,
5973 bf_get(lpfc_mbox_hdr_status, &shdr->response),
5974 bf_get(lpfc_mbox_hdr_add_status, &shdr->response));
5975 rc = -EIO;
5976 goto err_exit;
5977 }
5978 err_exit:
5979 lpfc_sli4_mbox_cmd_free(phba, mbox);
5980 return rc;
5981}
5982
5983/**
James Smart8a9d2e82012-05-09 21:16:12 -04005984 * lpfc_sli4_repost_els_sgl_list - Repsot the els buffers sgl pages as block
5985 * @phba: pointer to lpfc hba data structure.
5986 *
5987 * This routine walks the list of els buffers that have been allocated and
5988 * repost them to the port by using SGL block post. This is needed after a
5989 * pci_function_reset/warm_start or start. It attempts to construct blocks
5990 * of els buffer sgls which contains contiguous xris and uses the non-embedded
5991 * SGL block post mailbox commands to post them to the port. For single els
5992 * buffer sgl with non-contiguous xri, if any, it shall use embedded SGL post
5993 * mailbox command for posting.
5994 *
5995 * Returns: 0 = success, non-zero failure.
5996 **/
5997static int
5998lpfc_sli4_repost_els_sgl_list(struct lpfc_hba *phba)
5999{
6000 struct lpfc_sglq *sglq_entry = NULL;
6001 struct lpfc_sglq *sglq_entry_next = NULL;
6002 struct lpfc_sglq *sglq_entry_first = NULL;
James Smart711ea882013-04-17 20:18:29 -04006003 int status, total_cnt, post_cnt = 0, num_posted = 0, block_cnt = 0;
James Smart8a9d2e82012-05-09 21:16:12 -04006004 int last_xritag = NO_XRI;
6005 LIST_HEAD(prep_sgl_list);
6006 LIST_HEAD(blck_sgl_list);
6007 LIST_HEAD(allc_sgl_list);
6008 LIST_HEAD(post_sgl_list);
6009 LIST_HEAD(free_sgl_list);
6010
James Smart38c20672013-03-01 16:37:44 -05006011 spin_lock_irq(&phba->hbalock);
James Smart8a9d2e82012-05-09 21:16:12 -04006012 list_splice_init(&phba->sli4_hba.lpfc_sgl_list, &allc_sgl_list);
James Smart38c20672013-03-01 16:37:44 -05006013 spin_unlock_irq(&phba->hbalock);
James Smart8a9d2e82012-05-09 21:16:12 -04006014
James Smart711ea882013-04-17 20:18:29 -04006015 total_cnt = phba->sli4_hba.els_xri_cnt;
James Smart8a9d2e82012-05-09 21:16:12 -04006016 list_for_each_entry_safe(sglq_entry, sglq_entry_next,
6017 &allc_sgl_list, list) {
6018 list_del_init(&sglq_entry->list);
6019 block_cnt++;
6020 if ((last_xritag != NO_XRI) &&
6021 (sglq_entry->sli4_xritag != last_xritag + 1)) {
6022 /* a hole in xri block, form a sgl posting block */
6023 list_splice_init(&prep_sgl_list, &blck_sgl_list);
6024 post_cnt = block_cnt - 1;
6025 /* prepare list for next posting block */
6026 list_add_tail(&sglq_entry->list, &prep_sgl_list);
6027 block_cnt = 1;
6028 } else {
6029 /* prepare list for next posting block */
6030 list_add_tail(&sglq_entry->list, &prep_sgl_list);
6031 /* enough sgls for non-embed sgl mbox command */
6032 if (block_cnt == LPFC_NEMBED_MBOX_SGL_CNT) {
6033 list_splice_init(&prep_sgl_list,
6034 &blck_sgl_list);
6035 post_cnt = block_cnt;
6036 block_cnt = 0;
6037 }
6038 }
6039 num_posted++;
6040
6041 /* keep track of last sgl's xritag */
6042 last_xritag = sglq_entry->sli4_xritag;
6043
6044 /* end of repost sgl list condition for els buffers */
6045 if (num_posted == phba->sli4_hba.els_xri_cnt) {
6046 if (post_cnt == 0) {
6047 list_splice_init(&prep_sgl_list,
6048 &blck_sgl_list);
6049 post_cnt = block_cnt;
6050 } else if (block_cnt == 1) {
6051 status = lpfc_sli4_post_sgl(phba,
6052 sglq_entry->phys, 0,
6053 sglq_entry->sli4_xritag);
6054 if (!status) {
6055 /* successful, put sgl to posted list */
6056 list_add_tail(&sglq_entry->list,
6057 &post_sgl_list);
6058 } else {
6059 /* Failure, put sgl to free list */
6060 lpfc_printf_log(phba, KERN_WARNING,
6061 LOG_SLI,
6062 "3159 Failed to post els "
6063 "sgl, xritag:x%x\n",
6064 sglq_entry->sli4_xritag);
6065 list_add_tail(&sglq_entry->list,
6066 &free_sgl_list);
James Smart711ea882013-04-17 20:18:29 -04006067 total_cnt--;
James Smart8a9d2e82012-05-09 21:16:12 -04006068 }
6069 }
6070 }
6071
6072 /* continue until a nembed page worth of sgls */
6073 if (post_cnt == 0)
6074 continue;
6075
6076 /* post the els buffer list sgls as a block */
6077 status = lpfc_sli4_post_els_sgl_list(phba, &blck_sgl_list,
6078 post_cnt);
6079
6080 if (!status) {
6081 /* success, put sgl list to posted sgl list */
6082 list_splice_init(&blck_sgl_list, &post_sgl_list);
6083 } else {
6084 /* Failure, put sgl list to free sgl list */
6085 sglq_entry_first = list_first_entry(&blck_sgl_list,
6086 struct lpfc_sglq,
6087 list);
6088 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
6089 "3160 Failed to post els sgl-list, "
6090 "xritag:x%x-x%x\n",
6091 sglq_entry_first->sli4_xritag,
6092 (sglq_entry_first->sli4_xritag +
6093 post_cnt - 1));
6094 list_splice_init(&blck_sgl_list, &free_sgl_list);
James Smart711ea882013-04-17 20:18:29 -04006095 total_cnt -= post_cnt;
James Smart8a9d2e82012-05-09 21:16:12 -04006096 }
6097
6098 /* don't reset xirtag due to hole in xri block */
6099 if (block_cnt == 0)
6100 last_xritag = NO_XRI;
6101
6102 /* reset els sgl post count for next round of posting */
6103 post_cnt = 0;
6104 }
James Smart711ea882013-04-17 20:18:29 -04006105 /* update the number of XRIs posted for ELS */
6106 phba->sli4_hba.els_xri_cnt = total_cnt;
James Smart8a9d2e82012-05-09 21:16:12 -04006107
6108 /* free the els sgls failed to post */
6109 lpfc_free_sgl_list(phba, &free_sgl_list);
6110
6111 /* push els sgls posted to the availble list */
6112 if (!list_empty(&post_sgl_list)) {
James Smart38c20672013-03-01 16:37:44 -05006113 spin_lock_irq(&phba->hbalock);
James Smart8a9d2e82012-05-09 21:16:12 -04006114 list_splice_init(&post_sgl_list,
6115 &phba->sli4_hba.lpfc_sgl_list);
James Smart38c20672013-03-01 16:37:44 -05006116 spin_unlock_irq(&phba->hbalock);
James Smart8a9d2e82012-05-09 21:16:12 -04006117 } else {
6118 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
6119 "3161 Failure to post els sgl to port.\n");
6120 return -EIO;
6121 }
6122 return 0;
6123}
6124
6125/**
James Smartda0436e2009-05-22 14:51:39 -04006126 * lpfc_sli4_hba_setup - SLI4 device intialization PCI function
6127 * @phba: Pointer to HBA context object.
6128 *
6129 * This function is the main SLI4 device intialization PCI function. This
6130 * function is called by the HBA intialization code, HBA reset code and
6131 * HBA error attention handler code. Caller is not required to hold any
6132 * locks.
6133 **/
6134int
6135lpfc_sli4_hba_setup(struct lpfc_hba *phba)
6136{
6137 int rc;
6138 LPFC_MBOXQ_t *mboxq;
6139 struct lpfc_mqe *mqe;
6140 uint8_t *vpd;
6141 uint32_t vpd_size;
6142 uint32_t ftr_rsp = 0;
6143 struct Scsi_Host *shost = lpfc_shost_from_vport(phba->pport);
6144 struct lpfc_vport *vport = phba->pport;
6145 struct lpfc_dmabuf *mp;
6146
6147 /* Perform a PCI function reset to start from clean */
6148 rc = lpfc_pci_function_reset(phba);
6149 if (unlikely(rc))
6150 return -ENODEV;
6151
6152 /* Check the HBA Host Status Register for readyness */
6153 rc = lpfc_sli4_post_status_check(phba);
6154 if (unlikely(rc))
6155 return -ENODEV;
6156 else {
6157 spin_lock_irq(&phba->hbalock);
6158 phba->sli.sli_flag |= LPFC_SLI_ACTIVE;
6159 spin_unlock_irq(&phba->hbalock);
6160 }
6161
6162 /*
6163 * Allocate a single mailbox container for initializing the
6164 * port.
6165 */
6166 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6167 if (!mboxq)
6168 return -ENOMEM;
6169
James Smartda0436e2009-05-22 14:51:39 -04006170 /* Issue READ_REV to collect vpd and FW information. */
James Smart49198b32010-04-06 15:04:33 -04006171 vpd_size = SLI4_PAGE_SIZE;
James Smartda0436e2009-05-22 14:51:39 -04006172 vpd = kzalloc(vpd_size, GFP_KERNEL);
6173 if (!vpd) {
6174 rc = -ENOMEM;
6175 goto out_free_mbox;
6176 }
6177
6178 rc = lpfc_sli4_read_rev(phba, mboxq, vpd, &vpd_size);
James Smart76a95d72010-11-20 23:11:48 -05006179 if (unlikely(rc)) {
6180 kfree(vpd);
6181 goto out_free_mbox;
6182 }
James Smartda0436e2009-05-22 14:51:39 -04006183 mqe = &mboxq->u.mqe;
James Smartf1126682009-06-10 17:22:44 -04006184 phba->sli_rev = bf_get(lpfc_mbx_rd_rev_sli_lvl, &mqe->un.read_rev);
6185 if (bf_get(lpfc_mbx_rd_rev_fcoe, &mqe->un.read_rev))
James Smart76a95d72010-11-20 23:11:48 -05006186 phba->hba_flag |= HBA_FCOE_MODE;
6187 else
6188 phba->hba_flag &= ~HBA_FCOE_MODE;
James Smart45ed1192009-10-02 15:17:02 -04006189
6190 if (bf_get(lpfc_mbx_rd_rev_cee_ver, &mqe->un.read_rev) ==
6191 LPFC_DCBX_CEE_MODE)
6192 phba->hba_flag |= HBA_FIP_SUPPORT;
6193 else
6194 phba->hba_flag &= ~HBA_FIP_SUPPORT;
6195
James Smart4f2e66c2012-05-09 21:17:07 -04006196 phba->hba_flag &= ~HBA_FCP_IOQ_FLUSH;
6197
James Smartc31098c2011-04-16 11:03:33 -04006198 if (phba->sli_rev != LPFC_SLI_REV4) {
James Smartda0436e2009-05-22 14:51:39 -04006199 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6200 "0376 READ_REV Error. SLI Level %d "
6201 "FCoE enabled %d\n",
James Smart76a95d72010-11-20 23:11:48 -05006202 phba->sli_rev, phba->hba_flag & HBA_FCOE_MODE);
James Smartda0436e2009-05-22 14:51:39 -04006203 rc = -EIO;
James Smart76a95d72010-11-20 23:11:48 -05006204 kfree(vpd);
6205 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006206 }
James Smartcd1c8302011-10-10 21:33:25 -04006207
6208 /*
James Smartff78d8f2011-12-13 13:21:35 -05006209 * Continue initialization with default values even if driver failed
6210 * to read FCoE param config regions, only read parameters if the
6211 * board is FCoE
6212 */
6213 if (phba->hba_flag & HBA_FCOE_MODE &&
6214 lpfc_sli4_read_fcoe_params(phba))
6215 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_INIT,
6216 "2570 Failed to read FCoE parameters\n");
6217
6218 /*
James Smartcd1c8302011-10-10 21:33:25 -04006219 * Retrieve sli4 device physical port name, failure of doing it
6220 * is considered as non-fatal.
6221 */
6222 rc = lpfc_sli4_retrieve_pport_name(phba);
6223 if (!rc)
6224 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
6225 "3080 Successful retrieving SLI4 device "
6226 "physical port name: %s.\n", phba->Port);
6227
James Smartda0436e2009-05-22 14:51:39 -04006228 /*
6229 * Evaluate the read rev and vpd data. Populate the driver
6230 * state with the results. If this routine fails, the failure
6231 * is not fatal as the driver will use generic values.
6232 */
6233 rc = lpfc_parse_vpd(phba, vpd, vpd_size);
6234 if (unlikely(!rc)) {
6235 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6236 "0377 Error %d parsing vpd. "
6237 "Using defaults.\n", rc);
6238 rc = 0;
6239 }
James Smart76a95d72010-11-20 23:11:48 -05006240 kfree(vpd);
James Smartda0436e2009-05-22 14:51:39 -04006241
James Smartf1126682009-06-10 17:22:44 -04006242 /* Save information as VPD data */
6243 phba->vpd.rev.biuRev = mqe->un.read_rev.first_hw_rev;
6244 phba->vpd.rev.smRev = mqe->un.read_rev.second_hw_rev;
6245 phba->vpd.rev.endecRev = mqe->un.read_rev.third_hw_rev;
6246 phba->vpd.rev.fcphHigh = bf_get(lpfc_mbx_rd_rev_fcph_high,
6247 &mqe->un.read_rev);
6248 phba->vpd.rev.fcphLow = bf_get(lpfc_mbx_rd_rev_fcph_low,
6249 &mqe->un.read_rev);
6250 phba->vpd.rev.feaLevelHigh = bf_get(lpfc_mbx_rd_rev_ftr_lvl_high,
6251 &mqe->un.read_rev);
6252 phba->vpd.rev.feaLevelLow = bf_get(lpfc_mbx_rd_rev_ftr_lvl_low,
6253 &mqe->un.read_rev);
6254 phba->vpd.rev.sli1FwRev = mqe->un.read_rev.fw_id_rev;
6255 memcpy(phba->vpd.rev.sli1FwName, mqe->un.read_rev.fw_name, 16);
6256 phba->vpd.rev.sli2FwRev = mqe->un.read_rev.ulp_fw_id_rev;
6257 memcpy(phba->vpd.rev.sli2FwName, mqe->un.read_rev.ulp_fw_name, 16);
6258 phba->vpd.rev.opFwRev = mqe->un.read_rev.fw_id_rev;
6259 memcpy(phba->vpd.rev.opFwName, mqe->un.read_rev.fw_name, 16);
6260 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
6261 "(%d):0380 READ_REV Status x%x "
6262 "fw_rev:%s fcphHi:%x fcphLo:%x flHi:%x flLo:%x\n",
6263 mboxq->vport ? mboxq->vport->vpi : 0,
6264 bf_get(lpfc_mqe_status, mqe),
6265 phba->vpd.rev.opFwName,
6266 phba->vpd.rev.fcphHigh, phba->vpd.rev.fcphLow,
6267 phba->vpd.rev.feaLevelHigh, phba->vpd.rev.feaLevelLow);
James Smartda0436e2009-05-22 14:51:39 -04006268
6269 /*
6270 * Discover the port's supported feature set and match it against the
6271 * hosts requests.
6272 */
6273 lpfc_request_features(phba, mboxq);
6274 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6275 if (unlikely(rc)) {
6276 rc = -EIO;
James Smart76a95d72010-11-20 23:11:48 -05006277 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006278 }
6279
6280 /*
6281 * The port must support FCP initiator mode as this is the
6282 * only mode running in the host.
6283 */
6284 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_fcpi, &mqe->un.req_ftrs))) {
6285 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
6286 "0378 No support for fcpi mode.\n");
6287 ftr_rsp++;
6288 }
James Smartfedd3b72011-02-16 12:39:24 -05006289 if (bf_get(lpfc_mbx_rq_ftr_rsp_perfh, &mqe->un.req_ftrs))
6290 phba->sli3_options |= LPFC_SLI4_PERFH_ENABLED;
6291 else
6292 phba->sli3_options &= ~LPFC_SLI4_PERFH_ENABLED;
James Smartda0436e2009-05-22 14:51:39 -04006293 /*
6294 * If the port cannot support the host's requested features
6295 * then turn off the global config parameters to disable the
6296 * feature in the driver. This is not a fatal error.
6297 */
James Smartbf086112011-08-21 21:48:13 -04006298 phba->sli3_options &= ~LPFC_SLI3_BG_ENABLED;
6299 if (phba->cfg_enable_bg) {
6300 if (bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs))
6301 phba->sli3_options |= LPFC_SLI3_BG_ENABLED;
6302 else
6303 ftr_rsp++;
6304 }
James Smartda0436e2009-05-22 14:51:39 -04006305
6306 if (phba->max_vpi && phba->cfg_enable_npiv &&
6307 !(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
6308 ftr_rsp++;
6309
6310 if (ftr_rsp) {
6311 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
6312 "0379 Feature Mismatch Data: x%08x %08x "
6313 "x%x x%x x%x\n", mqe->un.req_ftrs.word2,
6314 mqe->un.req_ftrs.word3, phba->cfg_enable_bg,
6315 phba->cfg_enable_npiv, phba->max_vpi);
6316 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs)))
6317 phba->cfg_enable_bg = 0;
6318 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
6319 phba->cfg_enable_npiv = 0;
6320 }
6321
6322 /* These SLI3 features are assumed in SLI4 */
6323 spin_lock_irq(&phba->hbalock);
6324 phba->sli3_options |= (LPFC_SLI3_NPIV_ENABLED | LPFC_SLI3_HBQ_ENABLED);
6325 spin_unlock_irq(&phba->hbalock);
6326
James Smart6d368e52011-05-24 11:44:12 -04006327 /*
6328 * Allocate all resources (xri,rpi,vpi,vfi) now. Subsequent
6329 * calls depends on these resources to complete port setup.
6330 */
6331 rc = lpfc_sli4_alloc_resource_identifiers(phba);
6332 if (rc) {
6333 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6334 "2920 Failed to alloc Resource IDs "
6335 "rc = x%x\n", rc);
6336 goto out_free_mbox;
6337 }
6338
James Smartda0436e2009-05-22 14:51:39 -04006339 /* Read the port's service parameters. */
James Smart9f1177a2010-02-26 14:12:57 -05006340 rc = lpfc_read_sparam(phba, mboxq, vport->vpi);
6341 if (rc) {
6342 phba->link_state = LPFC_HBA_ERROR;
6343 rc = -ENOMEM;
James Smart76a95d72010-11-20 23:11:48 -05006344 goto out_free_mbox;
James Smart9f1177a2010-02-26 14:12:57 -05006345 }
6346
James Smartda0436e2009-05-22 14:51:39 -04006347 mboxq->vport = vport;
6348 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6349 mp = (struct lpfc_dmabuf *) mboxq->context1;
6350 if (rc == MBX_SUCCESS) {
6351 memcpy(&vport->fc_sparam, mp->virt, sizeof(struct serv_parm));
6352 rc = 0;
6353 }
6354
6355 /*
6356 * This memory was allocated by the lpfc_read_sparam routine. Release
6357 * it to the mbuf pool.
6358 */
6359 lpfc_mbuf_free(phba, mp->virt, mp->phys);
6360 kfree(mp);
6361 mboxq->context1 = NULL;
6362 if (unlikely(rc)) {
6363 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6364 "0382 READ_SPARAM command failed "
6365 "status %d, mbxStatus x%x\n",
6366 rc, bf_get(lpfc_mqe_status, mqe));
6367 phba->link_state = LPFC_HBA_ERROR;
6368 rc = -EIO;
James Smart76a95d72010-11-20 23:11:48 -05006369 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006370 }
6371
James Smart05580562011-05-24 11:40:48 -04006372 lpfc_update_vport_wwn(vport);
James Smartda0436e2009-05-22 14:51:39 -04006373
6374 /* Update the fc_host data structures with new wwn. */
6375 fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn);
6376 fc_host_port_name(shost) = wwn_to_u64(vport->fc_portname.u.wwn);
6377
James Smart8a9d2e82012-05-09 21:16:12 -04006378 /* update host els and scsi xri-sgl sizes and mappings */
6379 rc = lpfc_sli4_xri_sgl_update(phba);
6380 if (unlikely(rc)) {
6381 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6382 "1400 Failed to update xri-sgl size and "
6383 "mapping: %d\n", rc);
6384 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006385 }
6386
James Smart8a9d2e82012-05-09 21:16:12 -04006387 /* register the els sgl pool to the port */
6388 rc = lpfc_sli4_repost_els_sgl_list(phba);
6389 if (unlikely(rc)) {
6390 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6391 "0582 Error %d during els sgl post "
6392 "operation\n", rc);
6393 rc = -ENODEV;
6394 goto out_free_mbox;
6395 }
6396
6397 /* register the allocated scsi sgl pool to the port */
James Smartda0436e2009-05-22 14:51:39 -04006398 rc = lpfc_sli4_repost_scsi_sgl_list(phba);
6399 if (unlikely(rc)) {
James Smart6d368e52011-05-24 11:44:12 -04006400 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smart6a9c52c2009-10-02 15:16:51 -04006401 "0383 Error %d during scsi sgl post "
6402 "operation\n", rc);
James Smartda0436e2009-05-22 14:51:39 -04006403 /* Some Scsi buffers were moved to the abort scsi list */
6404 /* A pci function reset will repost them */
6405 rc = -ENODEV;
James Smart76a95d72010-11-20 23:11:48 -05006406 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006407 }
6408
6409 /* Post the rpi header region to the device. */
6410 rc = lpfc_sli4_post_all_rpi_hdrs(phba);
6411 if (unlikely(rc)) {
6412 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6413 "0393 Error %d during rpi post operation\n",
6414 rc);
6415 rc = -ENODEV;
James Smart76a95d72010-11-20 23:11:48 -05006416 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04006417 }
James Smart97f2ecf2012-03-01 22:35:23 -05006418 lpfc_sli4_node_prep(phba);
James Smartda0436e2009-05-22 14:51:39 -04006419
James Smart5350d872011-10-10 21:33:49 -04006420 /* Create all the SLI4 queues */
6421 rc = lpfc_sli4_queue_create(phba);
6422 if (rc) {
6423 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6424 "3089 Failed to allocate queues\n");
6425 rc = -ENODEV;
6426 goto out_stop_timers;
6427 }
James Smartda0436e2009-05-22 14:51:39 -04006428 /* Set up all the queues to the device */
6429 rc = lpfc_sli4_queue_setup(phba);
6430 if (unlikely(rc)) {
6431 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6432 "0381 Error %d during queue setup.\n ", rc);
James Smart5350d872011-10-10 21:33:49 -04006433 goto out_destroy_queue;
James Smartda0436e2009-05-22 14:51:39 -04006434 }
6435
6436 /* Arm the CQs and then EQs on device */
6437 lpfc_sli4_arm_cqeq_intr(phba);
6438
6439 /* Indicate device interrupt mode */
6440 phba->sli4_hba.intr_enable = 1;
6441
6442 /* Allow asynchronous mailbox command to go through */
6443 spin_lock_irq(&phba->hbalock);
6444 phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
6445 spin_unlock_irq(&phba->hbalock);
6446
6447 /* Post receive buffers to the device */
6448 lpfc_sli4_rb_setup(phba);
6449
James Smartfc2b9892010-02-26 14:15:29 -05006450 /* Reset HBA FCF states after HBA reset */
6451 phba->fcf.fcf_flag = 0;
6452 phba->fcf.current_rec.flag = 0;
6453
James Smartda0436e2009-05-22 14:51:39 -04006454 /* Start the ELS watchdog timer */
James Smart8fa38512009-07-19 10:01:03 -04006455 mod_timer(&vport->els_tmofunc,
James Smart256ec0d2013-04-17 20:14:58 -04006456 jiffies + msecs_to_jiffies(1000 * (phba->fc_ratov * 2)));
James Smartda0436e2009-05-22 14:51:39 -04006457
6458 /* Start heart beat timer */
6459 mod_timer(&phba->hb_tmofunc,
James Smart256ec0d2013-04-17 20:14:58 -04006460 jiffies + msecs_to_jiffies(1000 * LPFC_HB_MBOX_INTERVAL));
James Smartda0436e2009-05-22 14:51:39 -04006461 phba->hb_outstanding = 0;
6462 phba->last_completion_time = jiffies;
6463
6464 /* Start error attention (ERATT) polling timer */
James Smart256ec0d2013-04-17 20:14:58 -04006465 mod_timer(&phba->eratt_poll,
6466 jiffies + msecs_to_jiffies(1000 * LPFC_ERATT_POLL_INTERVAL));
James Smartda0436e2009-05-22 14:51:39 -04006467
James Smart75baf692010-06-08 18:31:21 -04006468 /* Enable PCIe device Advanced Error Reporting (AER) if configured */
6469 if (phba->cfg_aer_support == 1 && !(phba->hba_flag & HBA_AER_ENABLED)) {
6470 rc = pci_enable_pcie_error_reporting(phba->pcidev);
6471 if (!rc) {
6472 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6473 "2829 This device supports "
6474 "Advanced Error Reporting (AER)\n");
6475 spin_lock_irq(&phba->hbalock);
6476 phba->hba_flag |= HBA_AER_ENABLED;
6477 spin_unlock_irq(&phba->hbalock);
6478 } else {
6479 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6480 "2830 This device does not support "
6481 "Advanced Error Reporting (AER)\n");
6482 phba->cfg_aer_support = 0;
6483 }
James Smart0a96e972011-07-22 18:37:28 -04006484 rc = 0;
James Smart75baf692010-06-08 18:31:21 -04006485 }
6486
James Smart76a95d72010-11-20 23:11:48 -05006487 if (!(phba->hba_flag & HBA_FCOE_MODE)) {
6488 /*
6489 * The FC Port needs to register FCFI (index 0)
6490 */
6491 lpfc_reg_fcfi(phba, mboxq);
6492 mboxq->vport = phba->pport;
6493 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
James Smart9589b0622011-04-16 11:03:17 -04006494 if (rc != MBX_SUCCESS)
James Smart76a95d72010-11-20 23:11:48 -05006495 goto out_unset_queue;
James Smart9589b0622011-04-16 11:03:17 -04006496 rc = 0;
6497 phba->fcf.fcfi = bf_get(lpfc_reg_fcfi_fcfi,
6498 &mboxq->u.mqe.un.reg_fcfi);
James Smart026abb82011-12-13 13:20:45 -05006499
6500 /* Check if the port is configured to be disabled */
6501 lpfc_sli_read_link_ste(phba);
James Smart76a95d72010-11-20 23:11:48 -05006502 }
James Smart026abb82011-12-13 13:20:45 -05006503
James Smartda0436e2009-05-22 14:51:39 -04006504 /*
6505 * The port is ready, set the host's link state to LINK_DOWN
6506 * in preparation for link interrupts.
6507 */
James Smartda0436e2009-05-22 14:51:39 -04006508 spin_lock_irq(&phba->hbalock);
6509 phba->link_state = LPFC_LINK_DOWN;
6510 spin_unlock_irq(&phba->hbalock);
James Smart026abb82011-12-13 13:20:45 -05006511 if (!(phba->hba_flag & HBA_FCOE_MODE) &&
6512 (phba->hba_flag & LINK_DISABLED)) {
6513 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_SLI,
6514 "3103 Adapter Link is disabled.\n");
6515 lpfc_down_link(phba, mboxq);
6516 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6517 if (rc != MBX_SUCCESS) {
6518 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_SLI,
6519 "3104 Adapter failed to issue "
6520 "DOWN_LINK mbox cmd, rc:x%x\n", rc);
6521 goto out_unset_queue;
6522 }
6523 } else if (phba->cfg_suppress_link_up == LPFC_INITIALIZE_LINK) {
James Smart1b511972011-12-13 13:23:09 -05006524 /* don't perform init_link on SLI4 FC port loopback test */
6525 if (!(phba->link_flag & LS_LOOPBACK_MODE)) {
6526 rc = phba->lpfc_hba_init_link(phba, MBX_NOWAIT);
6527 if (rc)
6528 goto out_unset_queue;
6529 }
James Smart5350d872011-10-10 21:33:49 -04006530 }
6531 mempool_free(mboxq, phba->mbox_mem_pool);
6532 return rc;
James Smart76a95d72010-11-20 23:11:48 -05006533out_unset_queue:
James Smartda0436e2009-05-22 14:51:39 -04006534 /* Unset all the queues set up in this routine when error out */
James Smart5350d872011-10-10 21:33:49 -04006535 lpfc_sli4_queue_unset(phba);
6536out_destroy_queue:
6537 lpfc_sli4_queue_destroy(phba);
James Smartda0436e2009-05-22 14:51:39 -04006538out_stop_timers:
James Smart5350d872011-10-10 21:33:49 -04006539 lpfc_stop_hba_timers(phba);
James Smartda0436e2009-05-22 14:51:39 -04006540out_free_mbox:
6541 mempool_free(mboxq, phba->mbox_mem_pool);
6542 return rc;
6543}
James Smarte59058c2008-08-24 21:49:00 -04006544
6545/**
James Smart3621a712009-04-06 18:47:14 -04006546 * lpfc_mbox_timeout - Timeout call back function for mbox timer
James Smarte59058c2008-08-24 21:49:00 -04006547 * @ptr: context object - pointer to hba structure.
dea31012005-04-17 16:05:31 -05006548 *
James Smarte59058c2008-08-24 21:49:00 -04006549 * This is the callback function for mailbox timer. The mailbox
6550 * timer is armed when a new mailbox command is issued and the timer
6551 * is deleted when the mailbox complete. The function is called by
6552 * the kernel timer code when a mailbox does not complete within
6553 * expected time. This function wakes up the worker thread to
6554 * process the mailbox timeout and returns. All the processing is
6555 * done by the worker thread function lpfc_mbox_timeout_handler.
6556 **/
dea31012005-04-17 16:05:31 -05006557void
6558lpfc_mbox_timeout(unsigned long ptr)
6559{
James Smart92d7f7b2007-06-17 19:56:38 -05006560 struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
dea31012005-04-17 16:05:31 -05006561 unsigned long iflag;
James Smart2e0fef82007-06-17 19:56:36 -05006562 uint32_t tmo_posted;
dea31012005-04-17 16:05:31 -05006563
James Smart2e0fef82007-06-17 19:56:36 -05006564 spin_lock_irqsave(&phba->pport->work_port_lock, iflag);
James Smart92d7f7b2007-06-17 19:56:38 -05006565 tmo_posted = phba->pport->work_port_events & WORKER_MBOX_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05006566 if (!tmo_posted)
6567 phba->pport->work_port_events |= WORKER_MBOX_TMO;
6568 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflag);
6569
James Smart5e9d9b82008-06-14 22:52:53 -04006570 if (!tmo_posted)
6571 lpfc_worker_wake_up(phba);
6572 return;
dea31012005-04-17 16:05:31 -05006573}
6574
James Smarte59058c2008-08-24 21:49:00 -04006575
6576/**
James Smart3621a712009-04-06 18:47:14 -04006577 * lpfc_mbox_timeout_handler - Worker thread function to handle mailbox timeout
James Smarte59058c2008-08-24 21:49:00 -04006578 * @phba: Pointer to HBA context object.
6579 *
6580 * This function is called from worker thread when a mailbox command times out.
6581 * The caller is not required to hold any locks. This function will reset the
6582 * HBA and recover all the pending commands.
6583 **/
dea31012005-04-17 16:05:31 -05006584void
6585lpfc_mbox_timeout_handler(struct lpfc_hba *phba)
6586{
James Smart2e0fef82007-06-17 19:56:36 -05006587 LPFC_MBOXQ_t *pmbox = phba->sli.mbox_active;
James Smart04c68492009-05-22 14:52:52 -04006588 MAILBOX_t *mb = &pmbox->u.mb;
James Smart1dcb58e2007-04-25 09:51:30 -04006589 struct lpfc_sli *psli = &phba->sli;
6590 struct lpfc_sli_ring *pring;
dea31012005-04-17 16:05:31 -05006591
James Smarta257bf92009-04-06 18:48:10 -04006592 /* Check the pmbox pointer first. There is a race condition
6593 * between the mbox timeout handler getting executed in the
6594 * worklist and the mailbox actually completing. When this
6595 * race condition occurs, the mbox_active will be NULL.
6596 */
6597 spin_lock_irq(&phba->hbalock);
6598 if (pmbox == NULL) {
6599 lpfc_printf_log(phba, KERN_WARNING,
6600 LOG_MBOX | LOG_SLI,
6601 "0353 Active Mailbox cleared - mailbox timeout "
6602 "exiting\n");
6603 spin_unlock_irq(&phba->hbalock);
6604 return;
6605 }
6606
dea31012005-04-17 16:05:31 -05006607 /* Mbox cmd <mbxCommand> timeout */
James Smarted957682007-06-17 19:56:37 -05006608 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04006609 "0310 Mailbox command x%x timeout Data: x%x x%x x%p\n",
James Smart92d7f7b2007-06-17 19:56:38 -05006610 mb->mbxCommand,
6611 phba->pport->port_state,
6612 phba->sli.sli_flag,
6613 phba->sli.mbox_active);
James Smarta257bf92009-04-06 18:48:10 -04006614 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05006615
James Smart1dcb58e2007-04-25 09:51:30 -04006616 /* Setting state unknown so lpfc_sli_abort_iocb_ring
6617 * would get IOCB_ERROR from lpfc_sli_issue_iocb, allowing
Lucas De Marchi25985ed2011-03-30 22:57:33 -03006618 * it to fail all outstanding SCSI IO.
James Smart1dcb58e2007-04-25 09:51:30 -04006619 */
James Smart2e0fef82007-06-17 19:56:36 -05006620 spin_lock_irq(&phba->pport->work_port_lock);
6621 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
6622 spin_unlock_irq(&phba->pport->work_port_lock);
6623 spin_lock_irq(&phba->hbalock);
6624 phba->link_state = LPFC_LINK_UNKNOWN;
James Smartf4b4c682009-05-22 14:53:12 -04006625 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05006626 spin_unlock_irq(&phba->hbalock);
James Smart1dcb58e2007-04-25 09:51:30 -04006627
6628 pring = &psli->ring[psli->fcp_ring];
6629 lpfc_sli_abort_iocb_ring(phba, pring);
6630
6631 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smart76bb24e2007-10-27 13:38:00 -04006632 "0345 Resetting board due to mailbox timeout\n");
James Smart3772a992009-05-22 14:50:54 -04006633
6634 /* Reset the HBA device */
6635 lpfc_reset_hba(phba);
dea31012005-04-17 16:05:31 -05006636}
6637
James Smarte59058c2008-08-24 21:49:00 -04006638/**
James Smart3772a992009-05-22 14:50:54 -04006639 * lpfc_sli_issue_mbox_s3 - Issue an SLI3 mailbox command to firmware
James Smarte59058c2008-08-24 21:49:00 -04006640 * @phba: Pointer to HBA context object.
6641 * @pmbox: Pointer to mailbox object.
6642 * @flag: Flag indicating how the mailbox need to be processed.
6643 *
6644 * This function is called by discovery code and HBA management code
James Smart3772a992009-05-22 14:50:54 -04006645 * to submit a mailbox command to firmware with SLI-3 interface spec. This
6646 * function gets the hbalock to protect the data structures.
James Smarte59058c2008-08-24 21:49:00 -04006647 * The mailbox command can be submitted in polling mode, in which case
6648 * this function will wait in a polling loop for the completion of the
6649 * mailbox.
6650 * If the mailbox is submitted in no_wait mode (not polling) the
6651 * function will submit the command and returns immediately without waiting
6652 * for the mailbox completion. The no_wait is supported only when HBA
6653 * is in SLI2/SLI3 mode - interrupts are enabled.
6654 * The SLI interface allows only one mailbox pending at a time. If the
6655 * mailbox is issued in polling mode and there is already a mailbox
6656 * pending, then the function will return an error. If the mailbox is issued
6657 * in NO_WAIT mode and there is a mailbox pending already, the function
6658 * will return MBX_BUSY after queuing the mailbox into mailbox queue.
6659 * The sli layer owns the mailbox object until the completion of mailbox
6660 * command if this function return MBX_BUSY or MBX_SUCCESS. For all other
6661 * return codes the caller owns the mailbox command after the return of
6662 * the function.
6663 **/
James Smart3772a992009-05-22 14:50:54 -04006664static int
6665lpfc_sli_issue_mbox_s3(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox,
6666 uint32_t flag)
dea31012005-04-17 16:05:31 -05006667{
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006668 MAILBOX_t *mbx;
James Smart2e0fef82007-06-17 19:56:36 -05006669 struct lpfc_sli *psli = &phba->sli;
dea31012005-04-17 16:05:31 -05006670 uint32_t status, evtctr;
James Smart9940b972011-03-11 16:06:12 -05006671 uint32_t ha_copy, hc_copy;
dea31012005-04-17 16:05:31 -05006672 int i;
James Smart09372822008-01-11 01:52:54 -05006673 unsigned long timeout;
dea31012005-04-17 16:05:31 -05006674 unsigned long drvr_flag = 0;
James Smart34b02dc2008-08-24 21:49:55 -04006675 uint32_t word0, ldata;
dea31012005-04-17 16:05:31 -05006676 void __iomem *to_slim;
James Smart58da1ff2008-04-07 10:15:56 -04006677 int processing_queue = 0;
6678
6679 spin_lock_irqsave(&phba->hbalock, drvr_flag);
6680 if (!pmbox) {
James Smart8568a4d2009-07-19 10:01:16 -04006681 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart58da1ff2008-04-07 10:15:56 -04006682 /* processing mbox queue from intr_handler */
James Smart3772a992009-05-22 14:50:54 -04006683 if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
6684 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6685 return MBX_SUCCESS;
6686 }
James Smart58da1ff2008-04-07 10:15:56 -04006687 processing_queue = 1;
James Smart58da1ff2008-04-07 10:15:56 -04006688 pmbox = lpfc_mbox_get(phba);
6689 if (!pmbox) {
6690 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6691 return MBX_SUCCESS;
6692 }
6693 }
dea31012005-04-17 16:05:31 -05006694
James Smarted957682007-06-17 19:56:37 -05006695 if (pmbox->mbox_cmpl && pmbox->mbox_cmpl != lpfc_sli_def_mbox_cmpl &&
James Smart92d7f7b2007-06-17 19:56:38 -05006696 pmbox->mbox_cmpl != lpfc_sli_wake_mbox_wait) {
James Smarted957682007-06-17 19:56:37 -05006697 if(!pmbox->vport) {
James Smart58da1ff2008-04-07 10:15:56 -04006698 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
James Smarted957682007-06-17 19:56:37 -05006699 lpfc_printf_log(phba, KERN_ERR,
James Smart92d7f7b2007-06-17 19:56:38 -05006700 LOG_MBOX | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04006701 "1806 Mbox x%x failed. No vport\n",
James Smart3772a992009-05-22 14:50:54 -04006702 pmbox->u.mb.mbxCommand);
James Smarted957682007-06-17 19:56:37 -05006703 dump_stack();
James Smart58da1ff2008-04-07 10:15:56 -04006704 goto out_not_finished;
James Smarted957682007-06-17 19:56:37 -05006705 }
6706 }
6707
Linas Vepstas8d63f372007-02-14 14:28:36 -06006708 /* If the PCI channel is in offline state, do not post mbox. */
James Smart58da1ff2008-04-07 10:15:56 -04006709 if (unlikely(pci_channel_offline(phba->pcidev))) {
6710 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6711 goto out_not_finished;
6712 }
Linas Vepstas8d63f372007-02-14 14:28:36 -06006713
James Smarta257bf92009-04-06 18:48:10 -04006714 /* If HBA has a deferred error attention, fail the iocb. */
6715 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
6716 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6717 goto out_not_finished;
6718 }
6719
dea31012005-04-17 16:05:31 -05006720 psli = &phba->sli;
James Smart92d7f7b2007-06-17 19:56:38 -05006721
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006722 mbx = &pmbox->u.mb;
dea31012005-04-17 16:05:31 -05006723 status = MBX_SUCCESS;
6724
James Smart2e0fef82007-06-17 19:56:36 -05006725 if (phba->link_state == LPFC_HBA_ERROR) {
6726 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
Jamie Wellnitz41415862006-02-28 19:25:27 -05006727
6728 /* Mbox command <mbxCommand> cannot issue */
James Smart3772a992009-05-22 14:50:54 -04006729 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6730 "(%d):0311 Mailbox command x%x cannot "
6731 "issue Data: x%x x%x\n",
6732 pmbox->vport ? pmbox->vport->vpi : 0,
6733 pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
James Smart58da1ff2008-04-07 10:15:56 -04006734 goto out_not_finished;
Jamie Wellnitz41415862006-02-28 19:25:27 -05006735 }
6736
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006737 if (mbx->mbxCommand != MBX_KILL_BOARD && flag & MBX_NOWAIT) {
James Smart9940b972011-03-11 16:06:12 -05006738 if (lpfc_readl(phba->HCregaddr, &hc_copy) ||
6739 !(hc_copy & HC_MBINT_ENA)) {
6740 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6741 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smart3772a992009-05-22 14:50:54 -04006742 "(%d):2528 Mailbox command x%x cannot "
6743 "issue Data: x%x x%x\n",
6744 pmbox->vport ? pmbox->vport->vpi : 0,
6745 pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
James Smart9940b972011-03-11 16:06:12 -05006746 goto out_not_finished;
6747 }
James Smart92908312006-03-07 15:04:13 -05006748 }
6749
dea31012005-04-17 16:05:31 -05006750 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
6751 /* Polling for a mbox command when another one is already active
6752 * is not allowed in SLI. Also, the driver must have established
6753 * SLI2 mode to queue and process multiple mbox commands.
6754 */
6755
6756 if (flag & MBX_POLL) {
James Smart2e0fef82007-06-17 19:56:36 -05006757 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05006758
6759 /* Mbox command <mbxCommand> cannot issue */
James Smart3772a992009-05-22 14:50:54 -04006760 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6761 "(%d):2529 Mailbox command x%x "
6762 "cannot issue Data: x%x x%x\n",
6763 pmbox->vport ? pmbox->vport->vpi : 0,
6764 pmbox->u.mb.mbxCommand,
6765 psli->sli_flag, flag);
James Smart58da1ff2008-04-07 10:15:56 -04006766 goto out_not_finished;
dea31012005-04-17 16:05:31 -05006767 }
6768
James Smart3772a992009-05-22 14:50:54 -04006769 if (!(psli->sli_flag & LPFC_SLI_ACTIVE)) {
James Smart2e0fef82007-06-17 19:56:36 -05006770 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05006771 /* Mbox command <mbxCommand> cannot issue */
James Smart3772a992009-05-22 14:50:54 -04006772 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6773 "(%d):2530 Mailbox command x%x "
6774 "cannot issue Data: x%x x%x\n",
6775 pmbox->vport ? pmbox->vport->vpi : 0,
6776 pmbox->u.mb.mbxCommand,
6777 psli->sli_flag, flag);
James Smart58da1ff2008-04-07 10:15:56 -04006778 goto out_not_finished;
dea31012005-04-17 16:05:31 -05006779 }
6780
dea31012005-04-17 16:05:31 -05006781 /* Another mailbox command is still being processed, queue this
6782 * command to be processed later.
6783 */
6784 lpfc_mbox_put(phba, pmbox);
6785
6786 /* Mbox cmd issue - BUSY */
James Smarted957682007-06-17 19:56:37 -05006787 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04006788 "(%d):0308 Mbox cmd issue - BUSY Data: "
James Smart92d7f7b2007-06-17 19:56:38 -05006789 "x%x x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05006790 pmbox->vport ? pmbox->vport->vpi : 0xffffff,
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006791 mbx->mbxCommand, phba->pport->port_state,
James Smart92d7f7b2007-06-17 19:56:38 -05006792 psli->sli_flag, flag);
dea31012005-04-17 16:05:31 -05006793
6794 psli->slistat.mbox_busy++;
James Smart2e0fef82007-06-17 19:56:36 -05006795 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05006796
James Smart858c9f62007-06-17 19:56:39 -05006797 if (pmbox->vport) {
6798 lpfc_debugfs_disc_trc(pmbox->vport,
6799 LPFC_DISC_TRC_MBOX_VPORT,
6800 "MBOX Bsy vport: cmd:x%x mb:x%x x%x",
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006801 (uint32_t)mbx->mbxCommand,
6802 mbx->un.varWords[0], mbx->un.varWords[1]);
James Smart858c9f62007-06-17 19:56:39 -05006803 }
6804 else {
6805 lpfc_debugfs_disc_trc(phba->pport,
6806 LPFC_DISC_TRC_MBOX,
6807 "MBOX Bsy: cmd:x%x mb:x%x x%x",
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006808 (uint32_t)mbx->mbxCommand,
6809 mbx->un.varWords[0], mbx->un.varWords[1]);
James Smart858c9f62007-06-17 19:56:39 -05006810 }
6811
James Smart2e0fef82007-06-17 19:56:36 -05006812 return MBX_BUSY;
dea31012005-04-17 16:05:31 -05006813 }
6814
dea31012005-04-17 16:05:31 -05006815 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
6816
6817 /* If we are not polling, we MUST be in SLI2 mode */
6818 if (flag != MBX_POLL) {
James Smart3772a992009-05-22 14:50:54 -04006819 if (!(psli->sli_flag & LPFC_SLI_ACTIVE) &&
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006820 (mbx->mbxCommand != MBX_KILL_BOARD)) {
dea31012005-04-17 16:05:31 -05006821 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05006822 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05006823 /* Mbox command <mbxCommand> cannot issue */
James Smart3772a992009-05-22 14:50:54 -04006824 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6825 "(%d):2531 Mailbox command x%x "
6826 "cannot issue Data: x%x x%x\n",
6827 pmbox->vport ? pmbox->vport->vpi : 0,
6828 pmbox->u.mb.mbxCommand,
6829 psli->sli_flag, flag);
James Smart58da1ff2008-04-07 10:15:56 -04006830 goto out_not_finished;
dea31012005-04-17 16:05:31 -05006831 }
6832 /* timeout active mbox command */
James Smart256ec0d2013-04-17 20:14:58 -04006833 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, pmbox) *
6834 1000);
6835 mod_timer(&psli->mbox_tmo, jiffies + timeout);
dea31012005-04-17 16:05:31 -05006836 }
6837
6838 /* Mailbox cmd <cmd> issue */
James Smarted957682007-06-17 19:56:37 -05006839 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04006840 "(%d):0309 Mailbox cmd x%x issue Data: x%x x%x "
James Smart92d7f7b2007-06-17 19:56:38 -05006841 "x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04006842 pmbox->vport ? pmbox->vport->vpi : 0,
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006843 mbx->mbxCommand, phba->pport->port_state,
James Smart92d7f7b2007-06-17 19:56:38 -05006844 psli->sli_flag, flag);
dea31012005-04-17 16:05:31 -05006845
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006846 if (mbx->mbxCommand != MBX_HEARTBEAT) {
James Smart858c9f62007-06-17 19:56:39 -05006847 if (pmbox->vport) {
6848 lpfc_debugfs_disc_trc(pmbox->vport,
6849 LPFC_DISC_TRC_MBOX_VPORT,
6850 "MBOX Send vport: cmd:x%x mb:x%x x%x",
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006851 (uint32_t)mbx->mbxCommand,
6852 mbx->un.varWords[0], mbx->un.varWords[1]);
James Smart858c9f62007-06-17 19:56:39 -05006853 }
6854 else {
6855 lpfc_debugfs_disc_trc(phba->pport,
6856 LPFC_DISC_TRC_MBOX,
6857 "MBOX Send: cmd:x%x mb:x%x x%x",
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006858 (uint32_t)mbx->mbxCommand,
6859 mbx->un.varWords[0], mbx->un.varWords[1]);
James Smart858c9f62007-06-17 19:56:39 -05006860 }
6861 }
6862
dea31012005-04-17 16:05:31 -05006863 psli->slistat.mbox_cmd++;
6864 evtctr = psli->slistat.mbox_event;
6865
6866 /* next set own bit for the adapter and copy over command word */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006867 mbx->mbxOwner = OWN_CHIP;
dea31012005-04-17 16:05:31 -05006868
James Smart3772a992009-05-22 14:50:54 -04006869 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
James Smart7a470272010-03-15 11:25:20 -04006870 /* Populate mbox extension offset word. */
6871 if (pmbox->in_ext_byte_len || pmbox->out_ext_byte_len) {
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006872 *(((uint32_t *)mbx) + pmbox->mbox_offset_word)
James Smart7a470272010-03-15 11:25:20 -04006873 = (uint8_t *)phba->mbox_ext
6874 - (uint8_t *)phba->mbox;
6875 }
6876
6877 /* Copy the mailbox extension data */
6878 if (pmbox->in_ext_byte_len && pmbox->context2) {
6879 lpfc_sli_pcimem_bcopy(pmbox->context2,
6880 (uint8_t *)phba->mbox_ext,
6881 pmbox->in_ext_byte_len);
6882 }
6883 /* Copy command data to host SLIM area */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006884 lpfc_sli_pcimem_bcopy(mbx, phba->mbox, MAILBOX_CMD_SIZE);
dea31012005-04-17 16:05:31 -05006885 } else {
James Smart7a470272010-03-15 11:25:20 -04006886 /* Populate mbox extension offset word. */
6887 if (pmbox->in_ext_byte_len || pmbox->out_ext_byte_len)
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006888 *(((uint32_t *)mbx) + pmbox->mbox_offset_word)
James Smart7a470272010-03-15 11:25:20 -04006889 = MAILBOX_HBA_EXT_OFFSET;
6890
6891 /* Copy the mailbox extension data */
6892 if (pmbox->in_ext_byte_len && pmbox->context2) {
6893 lpfc_memcpy_to_slim(phba->MBslimaddr +
6894 MAILBOX_HBA_EXT_OFFSET,
6895 pmbox->context2, pmbox->in_ext_byte_len);
6896
6897 }
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006898 if (mbx->mbxCommand == MBX_CONFIG_PORT) {
dea31012005-04-17 16:05:31 -05006899 /* copy command data into host mbox for cmpl */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006900 lpfc_sli_pcimem_bcopy(mbx, phba->mbox, MAILBOX_CMD_SIZE);
dea31012005-04-17 16:05:31 -05006901 }
6902
6903 /* First copy mbox command data to HBA SLIM, skip past first
6904 word */
6905 to_slim = phba->MBslimaddr + sizeof (uint32_t);
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006906 lpfc_memcpy_to_slim(to_slim, &mbx->un.varWords[0],
dea31012005-04-17 16:05:31 -05006907 MAILBOX_CMD_SIZE - sizeof (uint32_t));
6908
6909 /* Next copy over first word, with mbxOwner set */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006910 ldata = *((uint32_t *)mbx);
dea31012005-04-17 16:05:31 -05006911 to_slim = phba->MBslimaddr;
6912 writel(ldata, to_slim);
6913 readl(to_slim); /* flush */
6914
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006915 if (mbx->mbxCommand == MBX_CONFIG_PORT) {
dea31012005-04-17 16:05:31 -05006916 /* switch over to host mailbox */
James Smart3772a992009-05-22 14:50:54 -04006917 psli->sli_flag |= LPFC_SLI_ACTIVE;
dea31012005-04-17 16:05:31 -05006918 }
6919 }
6920
6921 wmb();
dea31012005-04-17 16:05:31 -05006922
6923 switch (flag) {
6924 case MBX_NOWAIT:
James Smart09372822008-01-11 01:52:54 -05006925 /* Set up reference to mailbox command */
dea31012005-04-17 16:05:31 -05006926 psli->mbox_active = pmbox;
James Smart09372822008-01-11 01:52:54 -05006927 /* Interrupt board to do it */
6928 writel(CA_MBATT, phba->CAregaddr);
6929 readl(phba->CAregaddr); /* flush */
6930 /* Don't wait for it to finish, just return */
dea31012005-04-17 16:05:31 -05006931 break;
6932
6933 case MBX_POLL:
James Smart09372822008-01-11 01:52:54 -05006934 /* Set up null reference to mailbox command */
dea31012005-04-17 16:05:31 -05006935 psli->mbox_active = NULL;
James Smart09372822008-01-11 01:52:54 -05006936 /* Interrupt board to do it */
6937 writel(CA_MBATT, phba->CAregaddr);
6938 readl(phba->CAregaddr); /* flush */
6939
James Smart3772a992009-05-22 14:50:54 -04006940 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea31012005-04-17 16:05:31 -05006941 /* First read mbox status word */
James Smart34b02dc2008-08-24 21:49:55 -04006942 word0 = *((uint32_t *)phba->mbox);
dea31012005-04-17 16:05:31 -05006943 word0 = le32_to_cpu(word0);
6944 } else {
6945 /* First read mbox status word */
James Smart9940b972011-03-11 16:06:12 -05006946 if (lpfc_readl(phba->MBslimaddr, &word0)) {
6947 spin_unlock_irqrestore(&phba->hbalock,
6948 drvr_flag);
6949 goto out_not_finished;
6950 }
dea31012005-04-17 16:05:31 -05006951 }
6952
6953 /* Read the HBA Host Attention Register */
James Smart9940b972011-03-11 16:06:12 -05006954 if (lpfc_readl(phba->HAregaddr, &ha_copy)) {
6955 spin_unlock_irqrestore(&phba->hbalock,
6956 drvr_flag);
6957 goto out_not_finished;
6958 }
James Smarta183a152011-10-10 21:32:43 -04006959 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, pmbox) *
6960 1000) + jiffies;
James Smart09372822008-01-11 01:52:54 -05006961 i = 0;
dea31012005-04-17 16:05:31 -05006962 /* Wait for command to complete */
Jamie Wellnitz41415862006-02-28 19:25:27 -05006963 while (((word0 & OWN_CHIP) == OWN_CHIP) ||
6964 (!(ha_copy & HA_MBATT) &&
James Smart2e0fef82007-06-17 19:56:36 -05006965 (phba->link_state > LPFC_WARM_START))) {
James Smart09372822008-01-11 01:52:54 -05006966 if (time_after(jiffies, timeout)) {
dea31012005-04-17 16:05:31 -05006967 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05006968 spin_unlock_irqrestore(&phba->hbalock,
dea31012005-04-17 16:05:31 -05006969 drvr_flag);
James Smart58da1ff2008-04-07 10:15:56 -04006970 goto out_not_finished;
dea31012005-04-17 16:05:31 -05006971 }
6972
6973 /* Check if we took a mbox interrupt while we were
6974 polling */
6975 if (((word0 & OWN_CHIP) != OWN_CHIP)
6976 && (evtctr != psli->slistat.mbox_event))
6977 break;
6978
James Smart09372822008-01-11 01:52:54 -05006979 if (i++ > 10) {
6980 spin_unlock_irqrestore(&phba->hbalock,
6981 drvr_flag);
6982 msleep(1);
6983 spin_lock_irqsave(&phba->hbalock, drvr_flag);
6984 }
dea31012005-04-17 16:05:31 -05006985
James Smart3772a992009-05-22 14:50:54 -04006986 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea31012005-04-17 16:05:31 -05006987 /* First copy command data */
James Smart34b02dc2008-08-24 21:49:55 -04006988 word0 = *((uint32_t *)phba->mbox);
dea31012005-04-17 16:05:31 -05006989 word0 = le32_to_cpu(word0);
Randy Dunlapbf07bde2013-02-22 10:23:54 -08006990 if (mbx->mbxCommand == MBX_CONFIG_PORT) {
dea31012005-04-17 16:05:31 -05006991 MAILBOX_t *slimmb;
James Smart34b02dc2008-08-24 21:49:55 -04006992 uint32_t slimword0;
dea31012005-04-17 16:05:31 -05006993 /* Check real SLIM for any errors */
6994 slimword0 = readl(phba->MBslimaddr);
6995 slimmb = (MAILBOX_t *) & slimword0;
6996 if (((slimword0 & OWN_CHIP) != OWN_CHIP)
6997 && slimmb->mbxStatus) {
6998 psli->sli_flag &=
James Smart3772a992009-05-22 14:50:54 -04006999 ~LPFC_SLI_ACTIVE;
dea31012005-04-17 16:05:31 -05007000 word0 = slimword0;
7001 }
7002 }
7003 } else {
7004 /* First copy command data */
7005 word0 = readl(phba->MBslimaddr);
7006 }
7007 /* Read the HBA Host Attention Register */
James Smart9940b972011-03-11 16:06:12 -05007008 if (lpfc_readl(phba->HAregaddr, &ha_copy)) {
7009 spin_unlock_irqrestore(&phba->hbalock,
7010 drvr_flag);
7011 goto out_not_finished;
7012 }
dea31012005-04-17 16:05:31 -05007013 }
7014
James Smart3772a992009-05-22 14:50:54 -04007015 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea31012005-04-17 16:05:31 -05007016 /* copy results back to user */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007017 lpfc_sli_pcimem_bcopy(phba->mbox, mbx, MAILBOX_CMD_SIZE);
James Smart7a470272010-03-15 11:25:20 -04007018 /* Copy the mailbox extension data */
7019 if (pmbox->out_ext_byte_len && pmbox->context2) {
7020 lpfc_sli_pcimem_bcopy(phba->mbox_ext,
7021 pmbox->context2,
7022 pmbox->out_ext_byte_len);
7023 }
dea31012005-04-17 16:05:31 -05007024 } else {
7025 /* First copy command data */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007026 lpfc_memcpy_from_slim(mbx, phba->MBslimaddr,
dea31012005-04-17 16:05:31 -05007027 MAILBOX_CMD_SIZE);
James Smart7a470272010-03-15 11:25:20 -04007028 /* Copy the mailbox extension data */
7029 if (pmbox->out_ext_byte_len && pmbox->context2) {
7030 lpfc_memcpy_from_slim(pmbox->context2,
7031 phba->MBslimaddr +
7032 MAILBOX_HBA_EXT_OFFSET,
7033 pmbox->out_ext_byte_len);
dea31012005-04-17 16:05:31 -05007034 }
7035 }
7036
7037 writel(HA_MBATT, phba->HAregaddr);
7038 readl(phba->HAregaddr); /* flush */
7039
7040 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
Randy Dunlapbf07bde2013-02-22 10:23:54 -08007041 status = mbx->mbxStatus;
dea31012005-04-17 16:05:31 -05007042 }
7043
James Smart2e0fef82007-06-17 19:56:36 -05007044 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
7045 return status;
James Smart58da1ff2008-04-07 10:15:56 -04007046
7047out_not_finished:
7048 if (processing_queue) {
James Smartda0436e2009-05-22 14:51:39 -04007049 pmbox->u.mb.mbxStatus = MBX_NOT_FINISHED;
James Smart58da1ff2008-04-07 10:15:56 -04007050 lpfc_mbox_cmpl_put(phba, pmbox);
7051 }
7052 return MBX_NOT_FINISHED;
dea31012005-04-17 16:05:31 -05007053}
7054
James Smarte59058c2008-08-24 21:49:00 -04007055/**
James Smartf1126682009-06-10 17:22:44 -04007056 * lpfc_sli4_async_mbox_block - Block posting SLI4 asynchronous mailbox command
7057 * @phba: Pointer to HBA context object.
7058 *
7059 * The function blocks the posting of SLI4 asynchronous mailbox commands from
7060 * the driver internal pending mailbox queue. It will then try to wait out the
7061 * possible outstanding mailbox command before return.
7062 *
7063 * Returns:
7064 * 0 - the outstanding mailbox command completed; otherwise, the wait for
7065 * the outstanding mailbox command timed out.
7066 **/
7067static int
7068lpfc_sli4_async_mbox_block(struct lpfc_hba *phba)
7069{
7070 struct lpfc_sli *psli = &phba->sli;
James Smartf1126682009-06-10 17:22:44 -04007071 int rc = 0;
James Smarta183a152011-10-10 21:32:43 -04007072 unsigned long timeout = 0;
James Smartf1126682009-06-10 17:22:44 -04007073
7074 /* Mark the asynchronous mailbox command posting as blocked */
7075 spin_lock_irq(&phba->hbalock);
7076 psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
James Smartf1126682009-06-10 17:22:44 -04007077 /* Determine how long we might wait for the active mailbox
7078 * command to be gracefully completed by firmware.
7079 */
James Smarta183a152011-10-10 21:32:43 -04007080 if (phba->sli.mbox_active)
7081 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
7082 phba->sli.mbox_active) *
7083 1000) + jiffies;
7084 spin_unlock_irq(&phba->hbalock);
7085
James Smartf1126682009-06-10 17:22:44 -04007086 /* Wait for the outstnading mailbox command to complete */
7087 while (phba->sli.mbox_active) {
7088 /* Check active mailbox complete status every 2ms */
7089 msleep(2);
7090 if (time_after(jiffies, timeout)) {
7091 /* Timeout, marked the outstanding cmd not complete */
7092 rc = 1;
7093 break;
7094 }
7095 }
7096
7097 /* Can not cleanly block async mailbox command, fails it */
7098 if (rc) {
7099 spin_lock_irq(&phba->hbalock);
7100 psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
7101 spin_unlock_irq(&phba->hbalock);
7102 }
7103 return rc;
7104}
7105
7106/**
7107 * lpfc_sli4_async_mbox_unblock - Block posting SLI4 async mailbox command
7108 * @phba: Pointer to HBA context object.
7109 *
7110 * The function unblocks and resume posting of SLI4 asynchronous mailbox
7111 * commands from the driver internal pending mailbox queue. It makes sure
7112 * that there is no outstanding mailbox command before resuming posting
7113 * asynchronous mailbox commands. If, for any reason, there is outstanding
7114 * mailbox command, it will try to wait it out before resuming asynchronous
7115 * mailbox command posting.
7116 **/
7117static void
7118lpfc_sli4_async_mbox_unblock(struct lpfc_hba *phba)
7119{
7120 struct lpfc_sli *psli = &phba->sli;
7121
7122 spin_lock_irq(&phba->hbalock);
7123 if (!(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
7124 /* Asynchronous mailbox posting is not blocked, do nothing */
7125 spin_unlock_irq(&phba->hbalock);
7126 return;
7127 }
7128
7129 /* Outstanding synchronous mailbox command is guaranteed to be done,
7130 * successful or timeout, after timing-out the outstanding mailbox
7131 * command shall always be removed, so just unblock posting async
7132 * mailbox command and resume
7133 */
7134 psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
7135 spin_unlock_irq(&phba->hbalock);
7136
7137 /* wake up worker thread to post asynchronlous mailbox command */
7138 lpfc_worker_wake_up(phba);
7139}
7140
7141/**
James Smart2d843ed2012-09-29 11:29:06 -04007142 * lpfc_sli4_wait_bmbx_ready - Wait for bootstrap mailbox register ready
7143 * @phba: Pointer to HBA context object.
7144 * @mboxq: Pointer to mailbox object.
7145 *
7146 * The function waits for the bootstrap mailbox register ready bit from
7147 * port for twice the regular mailbox command timeout value.
7148 *
7149 * 0 - no timeout on waiting for bootstrap mailbox register ready.
7150 * MBXERR_ERROR - wait for bootstrap mailbox register timed out.
7151 **/
7152static int
7153lpfc_sli4_wait_bmbx_ready(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
7154{
7155 uint32_t db_ready;
7156 unsigned long timeout;
7157 struct lpfc_register bmbx_reg;
7158
7159 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, mboxq)
7160 * 1000) + jiffies;
7161
7162 do {
7163 bmbx_reg.word0 = readl(phba->sli4_hba.BMBXregaddr);
7164 db_ready = bf_get(lpfc_bmbx_rdy, &bmbx_reg);
7165 if (!db_ready)
7166 msleep(2);
7167
7168 if (time_after(jiffies, timeout))
7169 return MBXERR_ERROR;
7170 } while (!db_ready);
7171
7172 return 0;
7173}
7174
7175/**
James Smartda0436e2009-05-22 14:51:39 -04007176 * lpfc_sli4_post_sync_mbox - Post an SLI4 mailbox to the bootstrap mailbox
7177 * @phba: Pointer to HBA context object.
7178 * @mboxq: Pointer to mailbox object.
7179 *
7180 * The function posts a mailbox to the port. The mailbox is expected
7181 * to be comletely filled in and ready for the port to operate on it.
7182 * This routine executes a synchronous completion operation on the
7183 * mailbox by polling for its completion.
7184 *
7185 * The caller must not be holding any locks when calling this routine.
7186 *
7187 * Returns:
7188 * MBX_SUCCESS - mailbox posted successfully
7189 * Any of the MBX error values.
7190 **/
7191static int
7192lpfc_sli4_post_sync_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
7193{
7194 int rc = MBX_SUCCESS;
7195 unsigned long iflag;
James Smartda0436e2009-05-22 14:51:39 -04007196 uint32_t mcqe_status;
7197 uint32_t mbx_cmnd;
James Smartda0436e2009-05-22 14:51:39 -04007198 struct lpfc_sli *psli = &phba->sli;
7199 struct lpfc_mqe *mb = &mboxq->u.mqe;
7200 struct lpfc_bmbx_create *mbox_rgn;
7201 struct dma_address *dma_address;
James Smartda0436e2009-05-22 14:51:39 -04007202
7203 /*
7204 * Only one mailbox can be active to the bootstrap mailbox region
7205 * at a time and there is no queueing provided.
7206 */
7207 spin_lock_irqsave(&phba->hbalock, iflag);
7208 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
7209 spin_unlock_irqrestore(&phba->hbalock, iflag);
7210 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007211 "(%d):2532 Mailbox command x%x (x%x/x%x) "
James Smartda0436e2009-05-22 14:51:39 -04007212 "cannot issue Data: x%x x%x\n",
7213 mboxq->vport ? mboxq->vport->vpi : 0,
7214 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007215 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7216 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007217 psli->sli_flag, MBX_POLL);
7218 return MBXERR_ERROR;
7219 }
7220 /* The server grabs the token and owns it until release */
7221 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
7222 phba->sli.mbox_active = mboxq;
7223 spin_unlock_irqrestore(&phba->hbalock, iflag);
7224
James Smart2d843ed2012-09-29 11:29:06 -04007225 /* wait for bootstrap mbox register for readyness */
7226 rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
7227 if (rc)
7228 goto exit;
7229
James Smartda0436e2009-05-22 14:51:39 -04007230 /*
7231 * Initialize the bootstrap memory region to avoid stale data areas
7232 * in the mailbox post. Then copy the caller's mailbox contents to
7233 * the bmbx mailbox region.
7234 */
7235 mbx_cmnd = bf_get(lpfc_mqe_command, mb);
7236 memset(phba->sli4_hba.bmbx.avirt, 0, sizeof(struct lpfc_bmbx_create));
7237 lpfc_sli_pcimem_bcopy(mb, phba->sli4_hba.bmbx.avirt,
7238 sizeof(struct lpfc_mqe));
7239
7240 /* Post the high mailbox dma address to the port and wait for ready. */
7241 dma_address = &phba->sli4_hba.bmbx.dma_address;
7242 writel(dma_address->addr_hi, phba->sli4_hba.BMBXregaddr);
7243
James Smart2d843ed2012-09-29 11:29:06 -04007244 /* wait for bootstrap mbox register for hi-address write done */
7245 rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
7246 if (rc)
7247 goto exit;
James Smartda0436e2009-05-22 14:51:39 -04007248
7249 /* Post the low mailbox dma address to the port. */
7250 writel(dma_address->addr_lo, phba->sli4_hba.BMBXregaddr);
James Smartda0436e2009-05-22 14:51:39 -04007251
James Smart2d843ed2012-09-29 11:29:06 -04007252 /* wait for bootstrap mbox register for low address write done */
7253 rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
7254 if (rc)
7255 goto exit;
James Smartda0436e2009-05-22 14:51:39 -04007256
7257 /*
7258 * Read the CQ to ensure the mailbox has completed.
7259 * If so, update the mailbox status so that the upper layers
7260 * can complete the request normally.
7261 */
7262 lpfc_sli_pcimem_bcopy(phba->sli4_hba.bmbx.avirt, mb,
7263 sizeof(struct lpfc_mqe));
7264 mbox_rgn = (struct lpfc_bmbx_create *) phba->sli4_hba.bmbx.avirt;
7265 lpfc_sli_pcimem_bcopy(&mbox_rgn->mcqe, &mboxq->mcqe,
7266 sizeof(struct lpfc_mcqe));
7267 mcqe_status = bf_get(lpfc_mcqe_status, &mbox_rgn->mcqe);
James Smart05580562011-05-24 11:40:48 -04007268 /*
7269 * When the CQE status indicates a failure and the mailbox status
7270 * indicates success then copy the CQE status into the mailbox status
7271 * (and prefix it with x4000).
7272 */
James Smartda0436e2009-05-22 14:51:39 -04007273 if (mcqe_status != MB_CQE_STATUS_SUCCESS) {
James Smart05580562011-05-24 11:40:48 -04007274 if (bf_get(lpfc_mqe_status, mb) == MBX_SUCCESS)
7275 bf_set(lpfc_mqe_status, mb,
7276 (LPFC_MBX_ERROR_RANGE | mcqe_status));
James Smartda0436e2009-05-22 14:51:39 -04007277 rc = MBXERR_ERROR;
James Smartd7c47992010-06-08 18:31:54 -04007278 } else
7279 lpfc_sli4_swap_str(phba, mboxq);
James Smartda0436e2009-05-22 14:51:39 -04007280
7281 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007282 "(%d):0356 Mailbox cmd x%x (x%x/x%x) Status x%x "
James Smartda0436e2009-05-22 14:51:39 -04007283 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x"
7284 " x%x x%x CQ: x%x x%x x%x x%x\n",
James Smarta183a152011-10-10 21:32:43 -04007285 mboxq->vport ? mboxq->vport->vpi : 0, mbx_cmnd,
7286 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7287 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007288 bf_get(lpfc_mqe_status, mb),
7289 mb->un.mb_words[0], mb->un.mb_words[1],
7290 mb->un.mb_words[2], mb->un.mb_words[3],
7291 mb->un.mb_words[4], mb->un.mb_words[5],
7292 mb->un.mb_words[6], mb->un.mb_words[7],
7293 mb->un.mb_words[8], mb->un.mb_words[9],
7294 mb->un.mb_words[10], mb->un.mb_words[11],
7295 mb->un.mb_words[12], mboxq->mcqe.word0,
7296 mboxq->mcqe.mcqe_tag0, mboxq->mcqe.mcqe_tag1,
7297 mboxq->mcqe.trailer);
7298exit:
7299 /* We are holding the token, no needed for lock when release */
7300 spin_lock_irqsave(&phba->hbalock, iflag);
7301 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7302 phba->sli.mbox_active = NULL;
7303 spin_unlock_irqrestore(&phba->hbalock, iflag);
7304 return rc;
7305}
7306
7307/**
7308 * lpfc_sli_issue_mbox_s4 - Issue an SLI4 mailbox command to firmware
7309 * @phba: Pointer to HBA context object.
7310 * @pmbox: Pointer to mailbox object.
7311 * @flag: Flag indicating how the mailbox need to be processed.
7312 *
7313 * This function is called by discovery code and HBA management code to submit
7314 * a mailbox command to firmware with SLI-4 interface spec.
7315 *
7316 * Return codes the caller owns the mailbox command after the return of the
7317 * function.
7318 **/
7319static int
7320lpfc_sli_issue_mbox_s4(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
7321 uint32_t flag)
7322{
7323 struct lpfc_sli *psli = &phba->sli;
7324 unsigned long iflags;
7325 int rc;
7326
James Smartb76f2dc2011-07-22 18:37:42 -04007327 /* dump from issue mailbox command if setup */
7328 lpfc_idiag_mbxacc_dump_issue_mbox(phba, &mboxq->u.mb);
7329
James Smart8fa38512009-07-19 10:01:03 -04007330 rc = lpfc_mbox_dev_check(phba);
7331 if (unlikely(rc)) {
7332 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007333 "(%d):2544 Mailbox command x%x (x%x/x%x) "
James Smart8fa38512009-07-19 10:01:03 -04007334 "cannot issue Data: x%x x%x\n",
7335 mboxq->vport ? mboxq->vport->vpi : 0,
7336 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007337 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7338 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smart8fa38512009-07-19 10:01:03 -04007339 psli->sli_flag, flag);
7340 goto out_not_finished;
7341 }
7342
James Smartda0436e2009-05-22 14:51:39 -04007343 /* Detect polling mode and jump to a handler */
7344 if (!phba->sli4_hba.intr_enable) {
7345 if (flag == MBX_POLL)
7346 rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
7347 else
7348 rc = -EIO;
7349 if (rc != MBX_SUCCESS)
James Smart05580562011-05-24 11:40:48 -04007350 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
James Smartda0436e2009-05-22 14:51:39 -04007351 "(%d):2541 Mailbox command x%x "
James Smartcc459f12012-05-09 21:18:30 -04007352 "(x%x/x%x) failure: "
7353 "mqe_sta: x%x mcqe_sta: x%x/x%x "
7354 "Data: x%x x%x\n,",
James Smartda0436e2009-05-22 14:51:39 -04007355 mboxq->vport ? mboxq->vport->vpi : 0,
7356 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007357 lpfc_sli_config_mbox_subsys_get(phba,
7358 mboxq),
7359 lpfc_sli_config_mbox_opcode_get(phba,
7360 mboxq),
James Smartcc459f12012-05-09 21:18:30 -04007361 bf_get(lpfc_mqe_status, &mboxq->u.mqe),
7362 bf_get(lpfc_mcqe_status, &mboxq->mcqe),
7363 bf_get(lpfc_mcqe_ext_status,
7364 &mboxq->mcqe),
James Smartda0436e2009-05-22 14:51:39 -04007365 psli->sli_flag, flag);
7366 return rc;
7367 } else if (flag == MBX_POLL) {
James Smartf1126682009-06-10 17:22:44 -04007368 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
7369 "(%d):2542 Try to issue mailbox command "
James Smarta183a152011-10-10 21:32:43 -04007370 "x%x (x%x/x%x) synchronously ahead of async"
James Smartf1126682009-06-10 17:22:44 -04007371 "mailbox command queue: x%x x%x\n",
James Smartda0436e2009-05-22 14:51:39 -04007372 mboxq->vport ? mboxq->vport->vpi : 0,
7373 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007374 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7375 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007376 psli->sli_flag, flag);
James Smartf1126682009-06-10 17:22:44 -04007377 /* Try to block the asynchronous mailbox posting */
7378 rc = lpfc_sli4_async_mbox_block(phba);
7379 if (!rc) {
7380 /* Successfully blocked, now issue sync mbox cmd */
7381 rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
7382 if (rc != MBX_SUCCESS)
James Smartcc459f12012-05-09 21:18:30 -04007383 lpfc_printf_log(phba, KERN_WARNING,
James Smarta183a152011-10-10 21:32:43 -04007384 LOG_MBOX | LOG_SLI,
James Smartcc459f12012-05-09 21:18:30 -04007385 "(%d):2597 Sync Mailbox command "
7386 "x%x (x%x/x%x) failure: "
7387 "mqe_sta: x%x mcqe_sta: x%x/x%x "
7388 "Data: x%x x%x\n,",
7389 mboxq->vport ? mboxq->vport->vpi : 0,
James Smarta183a152011-10-10 21:32:43 -04007390 mboxq->u.mb.mbxCommand,
7391 lpfc_sli_config_mbox_subsys_get(phba,
7392 mboxq),
7393 lpfc_sli_config_mbox_opcode_get(phba,
7394 mboxq),
James Smartcc459f12012-05-09 21:18:30 -04007395 bf_get(lpfc_mqe_status, &mboxq->u.mqe),
7396 bf_get(lpfc_mcqe_status, &mboxq->mcqe),
7397 bf_get(lpfc_mcqe_ext_status,
7398 &mboxq->mcqe),
James Smarta183a152011-10-10 21:32:43 -04007399 psli->sli_flag, flag);
James Smartf1126682009-06-10 17:22:44 -04007400 /* Unblock the async mailbox posting afterward */
7401 lpfc_sli4_async_mbox_unblock(phba);
7402 }
7403 return rc;
James Smartda0436e2009-05-22 14:51:39 -04007404 }
7405
7406 /* Now, interrupt mode asynchrous mailbox command */
7407 rc = lpfc_mbox_cmd_check(phba, mboxq);
7408 if (rc) {
7409 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007410 "(%d):2543 Mailbox command x%x (x%x/x%x) "
James Smartda0436e2009-05-22 14:51:39 -04007411 "cannot issue Data: x%x x%x\n",
7412 mboxq->vport ? mboxq->vport->vpi : 0,
7413 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007414 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7415 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007416 psli->sli_flag, flag);
7417 goto out_not_finished;
7418 }
James Smartda0436e2009-05-22 14:51:39 -04007419
7420 /* Put the mailbox command to the driver internal FIFO */
7421 psli->slistat.mbox_busy++;
7422 spin_lock_irqsave(&phba->hbalock, iflags);
7423 lpfc_mbox_put(phba, mboxq);
7424 spin_unlock_irqrestore(&phba->hbalock, iflags);
7425 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
7426 "(%d):0354 Mbox cmd issue - Enqueue Data: "
James Smarta183a152011-10-10 21:32:43 -04007427 "x%x (x%x/x%x) x%x x%x x%x\n",
James Smartda0436e2009-05-22 14:51:39 -04007428 mboxq->vport ? mboxq->vport->vpi : 0xffffff,
7429 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
James Smarta183a152011-10-10 21:32:43 -04007430 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7431 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007432 phba->pport->port_state,
7433 psli->sli_flag, MBX_NOWAIT);
7434 /* Wake up worker thread to transport mailbox command from head */
7435 lpfc_worker_wake_up(phba);
7436
7437 return MBX_BUSY;
7438
7439out_not_finished:
7440 return MBX_NOT_FINISHED;
7441}
7442
7443/**
7444 * lpfc_sli4_post_async_mbox - Post an SLI4 mailbox command to device
7445 * @phba: Pointer to HBA context object.
7446 *
7447 * This function is called by worker thread to send a mailbox command to
7448 * SLI4 HBA firmware.
7449 *
7450 **/
7451int
7452lpfc_sli4_post_async_mbox(struct lpfc_hba *phba)
7453{
7454 struct lpfc_sli *psli = &phba->sli;
7455 LPFC_MBOXQ_t *mboxq;
7456 int rc = MBX_SUCCESS;
7457 unsigned long iflags;
7458 struct lpfc_mqe *mqe;
7459 uint32_t mbx_cmnd;
7460
7461 /* Check interrupt mode before post async mailbox command */
7462 if (unlikely(!phba->sli4_hba.intr_enable))
7463 return MBX_NOT_FINISHED;
7464
7465 /* Check for mailbox command service token */
7466 spin_lock_irqsave(&phba->hbalock, iflags);
7467 if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
7468 spin_unlock_irqrestore(&phba->hbalock, iflags);
7469 return MBX_NOT_FINISHED;
7470 }
7471 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
7472 spin_unlock_irqrestore(&phba->hbalock, iflags);
7473 return MBX_NOT_FINISHED;
7474 }
7475 if (unlikely(phba->sli.mbox_active)) {
7476 spin_unlock_irqrestore(&phba->hbalock, iflags);
7477 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7478 "0384 There is pending active mailbox cmd\n");
7479 return MBX_NOT_FINISHED;
7480 }
7481 /* Take the mailbox command service token */
7482 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
7483
7484 /* Get the next mailbox command from head of queue */
7485 mboxq = lpfc_mbox_get(phba);
7486
7487 /* If no more mailbox command waiting for post, we're done */
7488 if (!mboxq) {
7489 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7490 spin_unlock_irqrestore(&phba->hbalock, iflags);
7491 return MBX_SUCCESS;
7492 }
7493 phba->sli.mbox_active = mboxq;
7494 spin_unlock_irqrestore(&phba->hbalock, iflags);
7495
7496 /* Check device readiness for posting mailbox command */
7497 rc = lpfc_mbox_dev_check(phba);
7498 if (unlikely(rc))
7499 /* Driver clean routine will clean up pending mailbox */
7500 goto out_not_finished;
7501
7502 /* Prepare the mbox command to be posted */
7503 mqe = &mboxq->u.mqe;
7504 mbx_cmnd = bf_get(lpfc_mqe_command, mqe);
7505
7506 /* Start timer for the mbox_tmo and log some mailbox post messages */
7507 mod_timer(&psli->mbox_tmo, (jiffies +
James Smart256ec0d2013-04-17 20:14:58 -04007508 msecs_to_jiffies(1000 * lpfc_mbox_tmo_val(phba, mboxq))));
James Smartda0436e2009-05-22 14:51:39 -04007509
7510 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007511 "(%d):0355 Mailbox cmd x%x (x%x/x%x) issue Data: "
James Smartda0436e2009-05-22 14:51:39 -04007512 "x%x x%x\n",
7513 mboxq->vport ? mboxq->vport->vpi : 0, mbx_cmnd,
James Smarta183a152011-10-10 21:32:43 -04007514 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7515 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007516 phba->pport->port_state, psli->sli_flag);
7517
7518 if (mbx_cmnd != MBX_HEARTBEAT) {
7519 if (mboxq->vport) {
7520 lpfc_debugfs_disc_trc(mboxq->vport,
7521 LPFC_DISC_TRC_MBOX_VPORT,
7522 "MBOX Send vport: cmd:x%x mb:x%x x%x",
7523 mbx_cmnd, mqe->un.mb_words[0],
7524 mqe->un.mb_words[1]);
7525 } else {
7526 lpfc_debugfs_disc_trc(phba->pport,
7527 LPFC_DISC_TRC_MBOX,
7528 "MBOX Send: cmd:x%x mb:x%x x%x",
7529 mbx_cmnd, mqe->un.mb_words[0],
7530 mqe->un.mb_words[1]);
7531 }
7532 }
7533 psli->slistat.mbox_cmd++;
7534
7535 /* Post the mailbox command to the port */
7536 rc = lpfc_sli4_mq_put(phba->sli4_hba.mbx_wq, mqe);
7537 if (rc != MBX_SUCCESS) {
7538 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04007539 "(%d):2533 Mailbox command x%x (x%x/x%x) "
James Smartda0436e2009-05-22 14:51:39 -04007540 "cannot issue Data: x%x x%x\n",
7541 mboxq->vport ? mboxq->vport->vpi : 0,
7542 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04007543 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7544 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04007545 psli->sli_flag, MBX_NOWAIT);
7546 goto out_not_finished;
7547 }
7548
7549 return rc;
7550
7551out_not_finished:
7552 spin_lock_irqsave(&phba->hbalock, iflags);
James Smartd7069f02012-03-01 22:36:29 -05007553 if (phba->sli.mbox_active) {
7554 mboxq->u.mb.mbxStatus = MBX_NOT_FINISHED;
7555 __lpfc_mbox_cmpl_put(phba, mboxq);
7556 /* Release the token */
7557 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7558 phba->sli.mbox_active = NULL;
7559 }
James Smartda0436e2009-05-22 14:51:39 -04007560 spin_unlock_irqrestore(&phba->hbalock, iflags);
7561
7562 return MBX_NOT_FINISHED;
7563}
7564
7565/**
7566 * lpfc_sli_issue_mbox - Wrapper func for issuing mailbox command
7567 * @phba: Pointer to HBA context object.
7568 * @pmbox: Pointer to mailbox object.
7569 * @flag: Flag indicating how the mailbox need to be processed.
7570 *
7571 * This routine wraps the actual SLI3 or SLI4 mailbox issuing routine from
7572 * the API jump table function pointer from the lpfc_hba struct.
7573 *
7574 * Return codes the caller owns the mailbox command after the return of the
7575 * function.
7576 **/
7577int
7578lpfc_sli_issue_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox, uint32_t flag)
7579{
7580 return phba->lpfc_sli_issue_mbox(phba, pmbox, flag);
7581}
7582
7583/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03007584 * lpfc_mbox_api_table_setup - Set up mbox api function jump table
James Smartda0436e2009-05-22 14:51:39 -04007585 * @phba: The hba struct for which this call is being executed.
7586 * @dev_grp: The HBA PCI-Device group number.
7587 *
7588 * This routine sets up the mbox interface API function jump table in @phba
7589 * struct.
7590 * Returns: 0 - success, -ENODEV - failure.
7591 **/
7592int
7593lpfc_mbox_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
7594{
7595
7596 switch (dev_grp) {
7597 case LPFC_PCI_DEV_LP:
7598 phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s3;
7599 phba->lpfc_sli_handle_slow_ring_event =
7600 lpfc_sli_handle_slow_ring_event_s3;
7601 phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s3;
7602 phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s3;
7603 phba->lpfc_sli_brdready = lpfc_sli_brdready_s3;
7604 break;
7605 case LPFC_PCI_DEV_OC:
7606 phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s4;
7607 phba->lpfc_sli_handle_slow_ring_event =
7608 lpfc_sli_handle_slow_ring_event_s4;
7609 phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s4;
7610 phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s4;
7611 phba->lpfc_sli_brdready = lpfc_sli_brdready_s4;
7612 break;
7613 default:
7614 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7615 "1420 Invalid HBA PCI-device group: 0x%x\n",
7616 dev_grp);
7617 return -ENODEV;
7618 break;
7619 }
7620 return 0;
7621}
7622
7623/**
James Smart3621a712009-04-06 18:47:14 -04007624 * __lpfc_sli_ringtx_put - Add an iocb to the txq
James Smarte59058c2008-08-24 21:49:00 -04007625 * @phba: Pointer to HBA context object.
7626 * @pring: Pointer to driver SLI ring object.
7627 * @piocb: Pointer to address of newly added command iocb.
7628 *
7629 * This function is called with hbalock held to add a command
7630 * iocb to the txq when SLI layer cannot submit the command iocb
7631 * to the ring.
7632 **/
James Smart2a9bf3d2010-06-07 15:24:45 -04007633void
James Smart92d7f7b2007-06-17 19:56:38 -05007634__lpfc_sli_ringtx_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart2e0fef82007-06-17 19:56:36 -05007635 struct lpfc_iocbq *piocb)
dea31012005-04-17 16:05:31 -05007636{
7637 /* Insert the caller's iocb in the txq tail for later processing. */
7638 list_add_tail(&piocb->list, &pring->txq);
dea31012005-04-17 16:05:31 -05007639}
7640
James Smarte59058c2008-08-24 21:49:00 -04007641/**
James Smart3621a712009-04-06 18:47:14 -04007642 * lpfc_sli_next_iocb - Get the next iocb in the txq
James Smarte59058c2008-08-24 21:49:00 -04007643 * @phba: Pointer to HBA context object.
7644 * @pring: Pointer to driver SLI ring object.
7645 * @piocb: Pointer to address of newly added command iocb.
7646 *
7647 * This function is called with hbalock held before a new
7648 * iocb is submitted to the firmware. This function checks
7649 * txq to flush the iocbs in txq to Firmware before
7650 * submitting new iocbs to the Firmware.
7651 * If there are iocbs in the txq which need to be submitted
7652 * to firmware, lpfc_sli_next_iocb returns the first element
7653 * of the txq after dequeuing it from txq.
7654 * If there is no iocb in the txq then the function will return
7655 * *piocb and *piocb is set to NULL. Caller needs to check
7656 * *piocb to find if there are more commands in the txq.
7657 **/
dea31012005-04-17 16:05:31 -05007658static struct lpfc_iocbq *
7659lpfc_sli_next_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart2e0fef82007-06-17 19:56:36 -05007660 struct lpfc_iocbq **piocb)
dea31012005-04-17 16:05:31 -05007661{
7662 struct lpfc_iocbq * nextiocb;
7663
7664 nextiocb = lpfc_sli_ringtx_get(phba, pring);
7665 if (!nextiocb) {
7666 nextiocb = *piocb;
7667 *piocb = NULL;
7668 }
7669
7670 return nextiocb;
7671}
7672
James Smarte59058c2008-08-24 21:49:00 -04007673/**
James Smart3772a992009-05-22 14:50:54 -04007674 * __lpfc_sli_issue_iocb_s3 - SLI3 device lockless ver of lpfc_sli_issue_iocb
James Smarte59058c2008-08-24 21:49:00 -04007675 * @phba: Pointer to HBA context object.
James Smart3772a992009-05-22 14:50:54 -04007676 * @ring_number: SLI ring number to issue iocb on.
James Smarte59058c2008-08-24 21:49:00 -04007677 * @piocb: Pointer to command iocb.
7678 * @flag: Flag indicating if this command can be put into txq.
7679 *
James Smart3772a992009-05-22 14:50:54 -04007680 * __lpfc_sli_issue_iocb_s3 is used by other functions in the driver to issue
7681 * an iocb command to an HBA with SLI-3 interface spec. If the PCI slot is
7682 * recovering from error state, if HBA is resetting or if LPFC_STOP_IOCB_EVENT
7683 * flag is turned on, the function returns IOCB_ERROR. When the link is down,
7684 * this function allows only iocbs for posting buffers. This function finds
7685 * next available slot in the command ring and posts the command to the
7686 * available slot and writes the port attention register to request HBA start
7687 * processing new iocb. If there is no slot available in the ring and
7688 * flag & SLI_IOCB_RET_IOCB is set, the new iocb is added to the txq, otherwise
7689 * the function returns IOCB_BUSY.
James Smarte59058c2008-08-24 21:49:00 -04007690 *
James Smart3772a992009-05-22 14:50:54 -04007691 * This function is called with hbalock held. The function will return success
7692 * after it successfully submit the iocb to firmware or after adding to the
7693 * txq.
James Smarte59058c2008-08-24 21:49:00 -04007694 **/
James Smart98c9ea52007-10-27 13:37:33 -04007695static int
James Smart3772a992009-05-22 14:50:54 -04007696__lpfc_sli_issue_iocb_s3(struct lpfc_hba *phba, uint32_t ring_number,
dea31012005-04-17 16:05:31 -05007697 struct lpfc_iocbq *piocb, uint32_t flag)
7698{
7699 struct lpfc_iocbq *nextiocb;
7700 IOCB_t *iocb;
James Smart3772a992009-05-22 14:50:54 -04007701 struct lpfc_sli_ring *pring = &phba->sli.ring[ring_number];
dea31012005-04-17 16:05:31 -05007702
James Smart92d7f7b2007-06-17 19:56:38 -05007703 if (piocb->iocb_cmpl && (!piocb->vport) &&
7704 (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
7705 (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) {
7706 lpfc_printf_log(phba, KERN_ERR,
7707 LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04007708 "1807 IOCB x%x failed. No vport\n",
James Smart92d7f7b2007-06-17 19:56:38 -05007709 piocb->iocb.ulpCommand);
7710 dump_stack();
7711 return IOCB_ERROR;
7712 }
7713
7714
Linas Vepstas8d63f372007-02-14 14:28:36 -06007715 /* If the PCI channel is in offline state, do not post iocbs. */
7716 if (unlikely(pci_channel_offline(phba->pcidev)))
7717 return IOCB_ERROR;
7718
James Smarta257bf92009-04-06 18:48:10 -04007719 /* If HBA has a deferred error attention, fail the iocb. */
7720 if (unlikely(phba->hba_flag & DEFER_ERATT))
7721 return IOCB_ERROR;
7722
dea31012005-04-17 16:05:31 -05007723 /*
7724 * We should never get an IOCB if we are in a < LINK_DOWN state
7725 */
James Smart2e0fef82007-06-17 19:56:36 -05007726 if (unlikely(phba->link_state < LPFC_LINK_DOWN))
dea31012005-04-17 16:05:31 -05007727 return IOCB_ERROR;
7728
7729 /*
7730 * Check to see if we are blocking IOCB processing because of a
James Smart0b727fe2007-10-27 13:37:25 -04007731 * outstanding event.
dea31012005-04-17 16:05:31 -05007732 */
James Smart0b727fe2007-10-27 13:37:25 -04007733 if (unlikely(pring->flag & LPFC_STOP_IOCB_EVENT))
dea31012005-04-17 16:05:31 -05007734 goto iocb_busy;
7735
James Smart2e0fef82007-06-17 19:56:36 -05007736 if (unlikely(phba->link_state == LPFC_LINK_DOWN)) {
dea31012005-04-17 16:05:31 -05007737 /*
James Smart2680eea2007-04-25 09:52:55 -04007738 * Only CREATE_XRI, CLOSE_XRI, and QUE_RING_BUF
dea31012005-04-17 16:05:31 -05007739 * can be issued if the link is not up.
7740 */
7741 switch (piocb->iocb.ulpCommand) {
James Smart84774a42008-08-24 21:50:06 -04007742 case CMD_GEN_REQUEST64_CR:
7743 case CMD_GEN_REQUEST64_CX:
7744 if (!(phba->sli.sli_flag & LPFC_MENLO_MAINT) ||
7745 (piocb->iocb.un.genreq64.w5.hcsw.Rctl !=
James Smart6a9c52c2009-10-02 15:16:51 -04007746 FC_RCTL_DD_UNSOL_CMD) ||
James Smart84774a42008-08-24 21:50:06 -04007747 (piocb->iocb.un.genreq64.w5.hcsw.Type !=
7748 MENLO_TRANSPORT_TYPE))
7749
7750 goto iocb_busy;
7751 break;
dea31012005-04-17 16:05:31 -05007752 case CMD_QUE_RING_BUF_CN:
7753 case CMD_QUE_RING_BUF64_CN:
dea31012005-04-17 16:05:31 -05007754 /*
7755 * For IOCBs, like QUE_RING_BUF, that have no rsp ring
7756 * completion, iocb_cmpl MUST be 0.
7757 */
7758 if (piocb->iocb_cmpl)
7759 piocb->iocb_cmpl = NULL;
7760 /*FALLTHROUGH*/
7761 case CMD_CREATE_XRI_CR:
James Smart2680eea2007-04-25 09:52:55 -04007762 case CMD_CLOSE_XRI_CN:
7763 case CMD_CLOSE_XRI_CX:
dea31012005-04-17 16:05:31 -05007764 break;
7765 default:
7766 goto iocb_busy;
7767 }
7768
7769 /*
7770 * For FCP commands, we must be in a state where we can process link
7771 * attention events.
7772 */
7773 } else if (unlikely(pring->ringno == phba->sli.fcp_ring &&
James Smart92d7f7b2007-06-17 19:56:38 -05007774 !(phba->sli.sli_flag & LPFC_PROCESS_LA))) {
dea31012005-04-17 16:05:31 -05007775 goto iocb_busy;
James Smart92d7f7b2007-06-17 19:56:38 -05007776 }
dea31012005-04-17 16:05:31 -05007777
dea31012005-04-17 16:05:31 -05007778 while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
7779 (nextiocb = lpfc_sli_next_iocb(phba, pring, &piocb)))
7780 lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
7781
7782 if (iocb)
7783 lpfc_sli_update_ring(phba, pring);
7784 else
7785 lpfc_sli_update_full_ring(phba, pring);
7786
7787 if (!piocb)
7788 return IOCB_SUCCESS;
7789
7790 goto out_busy;
7791
7792 iocb_busy:
7793 pring->stats.iocb_cmd_delay++;
7794
7795 out_busy:
7796
7797 if (!(flag & SLI_IOCB_RET_IOCB)) {
James Smart92d7f7b2007-06-17 19:56:38 -05007798 __lpfc_sli_ringtx_put(phba, pring, piocb);
dea31012005-04-17 16:05:31 -05007799 return IOCB_SUCCESS;
7800 }
7801
7802 return IOCB_BUSY;
7803}
7804
James Smart3772a992009-05-22 14:50:54 -04007805/**
James Smart4f774512009-05-22 14:52:35 -04007806 * lpfc_sli4_bpl2sgl - Convert the bpl/bde to a sgl.
7807 * @phba: Pointer to HBA context object.
7808 * @piocb: Pointer to command iocb.
7809 * @sglq: Pointer to the scatter gather queue object.
7810 *
7811 * This routine converts the bpl or bde that is in the IOCB
7812 * to a sgl list for the sli4 hardware. The physical address
7813 * of the bpl/bde is converted back to a virtual address.
7814 * If the IOCB contains a BPL then the list of BDE's is
7815 * converted to sli4_sge's. If the IOCB contains a single
7816 * BDE then it is converted to a single sli_sge.
7817 * The IOCB is still in cpu endianess so the contents of
7818 * the bpl can be used without byte swapping.
7819 *
7820 * Returns valid XRI = Success, NO_XRI = Failure.
7821**/
7822static uint16_t
7823lpfc_sli4_bpl2sgl(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq,
7824 struct lpfc_sglq *sglq)
7825{
7826 uint16_t xritag = NO_XRI;
7827 struct ulp_bde64 *bpl = NULL;
7828 struct ulp_bde64 bde;
7829 struct sli4_sge *sgl = NULL;
James Smart1b511972011-12-13 13:23:09 -05007830 struct lpfc_dmabuf *dmabuf;
James Smart4f774512009-05-22 14:52:35 -04007831 IOCB_t *icmd;
7832 int numBdes = 0;
7833 int i = 0;
James Smart63e801c2010-11-20 23:14:19 -05007834 uint32_t offset = 0; /* accumulated offset in the sg request list */
7835 int inbound = 0; /* number of sg reply entries inbound from firmware */
James Smart4f774512009-05-22 14:52:35 -04007836
7837 if (!piocbq || !sglq)
7838 return xritag;
7839
7840 sgl = (struct sli4_sge *)sglq->sgl;
7841 icmd = &piocbq->iocb;
James Smart6b5151f2012-01-18 16:24:06 -05007842 if (icmd->ulpCommand == CMD_XMIT_BLS_RSP64_CX)
7843 return sglq->sli4_xritag;
James Smart4f774512009-05-22 14:52:35 -04007844 if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
7845 numBdes = icmd->un.genreq64.bdl.bdeSize /
7846 sizeof(struct ulp_bde64);
7847 /* The addrHigh and addrLow fields within the IOCB
7848 * have not been byteswapped yet so there is no
7849 * need to swap them back.
7850 */
James Smart1b511972011-12-13 13:23:09 -05007851 if (piocbq->context3)
7852 dmabuf = (struct lpfc_dmabuf *)piocbq->context3;
7853 else
7854 return xritag;
James Smart4f774512009-05-22 14:52:35 -04007855
James Smart1b511972011-12-13 13:23:09 -05007856 bpl = (struct ulp_bde64 *)dmabuf->virt;
James Smart4f774512009-05-22 14:52:35 -04007857 if (!bpl)
7858 return xritag;
7859
7860 for (i = 0; i < numBdes; i++) {
7861 /* Should already be byte swapped. */
James Smart28baac72010-02-12 14:42:03 -05007862 sgl->addr_hi = bpl->addrHigh;
7863 sgl->addr_lo = bpl->addrLow;
7864
James Smart05580562011-05-24 11:40:48 -04007865 sgl->word2 = le32_to_cpu(sgl->word2);
James Smart4f774512009-05-22 14:52:35 -04007866 if ((i+1) == numBdes)
7867 bf_set(lpfc_sli4_sge_last, sgl, 1);
7868 else
7869 bf_set(lpfc_sli4_sge_last, sgl, 0);
James Smart28baac72010-02-12 14:42:03 -05007870 /* swap the size field back to the cpu so we
7871 * can assign it to the sgl.
7872 */
7873 bde.tus.w = le32_to_cpu(bpl->tus.w);
7874 sgl->sge_len = cpu_to_le32(bde.tus.f.bdeSize);
James Smart63e801c2010-11-20 23:14:19 -05007875 /* The offsets in the sgl need to be accumulated
7876 * separately for the request and reply lists.
7877 * The request is always first, the reply follows.
7878 */
7879 if (piocbq->iocb.ulpCommand == CMD_GEN_REQUEST64_CR) {
7880 /* add up the reply sg entries */
7881 if (bpl->tus.f.bdeFlags == BUFF_TYPE_BDE_64I)
7882 inbound++;
7883 /* first inbound? reset the offset */
7884 if (inbound == 1)
7885 offset = 0;
7886 bf_set(lpfc_sli4_sge_offset, sgl, offset);
James Smartf9bb2da2011-10-10 21:34:11 -04007887 bf_set(lpfc_sli4_sge_type, sgl,
7888 LPFC_SGE_TYPE_DATA);
James Smart63e801c2010-11-20 23:14:19 -05007889 offset += bde.tus.f.bdeSize;
7890 }
James Smart546fc852011-03-11 16:06:29 -05007891 sgl->word2 = cpu_to_le32(sgl->word2);
James Smart4f774512009-05-22 14:52:35 -04007892 bpl++;
7893 sgl++;
7894 }
7895 } else if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BDE_64) {
7896 /* The addrHigh and addrLow fields of the BDE have not
7897 * been byteswapped yet so they need to be swapped
7898 * before putting them in the sgl.
7899 */
7900 sgl->addr_hi =
7901 cpu_to_le32(icmd->un.genreq64.bdl.addrHigh);
7902 sgl->addr_lo =
7903 cpu_to_le32(icmd->un.genreq64.bdl.addrLow);
James Smart05580562011-05-24 11:40:48 -04007904 sgl->word2 = le32_to_cpu(sgl->word2);
James Smart4f774512009-05-22 14:52:35 -04007905 bf_set(lpfc_sli4_sge_last, sgl, 1);
7906 sgl->word2 = cpu_to_le32(sgl->word2);
James Smart28baac72010-02-12 14:42:03 -05007907 sgl->sge_len =
7908 cpu_to_le32(icmd->un.genreq64.bdl.bdeSize);
James Smart4f774512009-05-22 14:52:35 -04007909 }
7910 return sglq->sli4_xritag;
7911}
7912
7913/**
7914 * lpfc_sli4_scmd_to_wqidx_distr - scsi command to SLI4 WQ index distribution
7915 * @phba: Pointer to HBA context object.
James Smart4f774512009-05-22 14:52:35 -04007916 *
James Smarta93ff372010-10-22 11:06:08 -04007917 * This routine performs a roundrobin SCSI command to SLI4 FCP WQ index
James Smart8fa38512009-07-19 10:01:03 -04007918 * distribution. This is called by __lpfc_sli_issue_iocb_s4() with the hbalock
7919 * held.
James Smart4f774512009-05-22 14:52:35 -04007920 *
7921 * Return: index into SLI4 fast-path FCP queue index.
7922 **/
James Smart2a76a282012-08-03 12:35:54 -04007923static inline uint32_t
James Smart8fa38512009-07-19 10:01:03 -04007924lpfc_sli4_scmd_to_wqidx_distr(struct lpfc_hba *phba)
James Smart4f774512009-05-22 14:52:35 -04007925{
James Smart2a76a282012-08-03 12:35:54 -04007926 int i;
James Smart4f774512009-05-22 14:52:35 -04007927
James Smart49aa1432012-08-03 12:36:42 -04007928 if (phba->cfg_fcp_io_sched == LPFC_FCP_SCHED_BY_CPU)
7929 i = smp_processor_id();
7930 else
7931 i = atomic_add_return(1, &phba->fcp_qidx);
7932
James Smart67d12732012-08-03 12:36:13 -04007933 i = (i % phba->cfg_fcp_io_channel);
James Smart2a76a282012-08-03 12:35:54 -04007934 return i;
James Smart4f774512009-05-22 14:52:35 -04007935}
7936
7937/**
7938 * lpfc_sli_iocb2wqe - Convert the IOCB to a work queue entry.
7939 * @phba: Pointer to HBA context object.
7940 * @piocb: Pointer to command iocb.
7941 * @wqe: Pointer to the work queue entry.
7942 *
7943 * This routine converts the iocb command to its Work Queue Entry
7944 * equivalent. The wqe pointer should not have any fields set when
7945 * this routine is called because it will memcpy over them.
7946 * This routine does not set the CQ_ID or the WQEC bits in the
7947 * wqe.
7948 *
7949 * Returns: 0 = Success, IOCB_ERROR = Failure.
7950 **/
7951static int
7952lpfc_sli4_iocb2wqe(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq,
7953 union lpfc_wqe *wqe)
7954{
James Smart5ffc2662009-11-18 15:39:44 -05007955 uint32_t xmit_len = 0, total_len = 0;
James Smart4f774512009-05-22 14:52:35 -04007956 uint8_t ct = 0;
7957 uint32_t fip;
7958 uint32_t abort_tag;
7959 uint8_t command_type = ELS_COMMAND_NON_FIP;
7960 uint8_t cmnd;
7961 uint16_t xritag;
James Smartdcf2a4e2010-09-29 11:18:53 -04007962 uint16_t abrt_iotag;
7963 struct lpfc_iocbq *abrtiocbq;
James Smart4f774512009-05-22 14:52:35 -04007964 struct ulp_bde64 *bpl = NULL;
James Smartf0d9bcc2010-10-22 11:07:09 -04007965 uint32_t els_id = LPFC_ELS_ID_DEFAULT;
James Smart5ffc2662009-11-18 15:39:44 -05007966 int numBdes, i;
7967 struct ulp_bde64 bde;
James Smartc31098c2011-04-16 11:03:33 -04007968 struct lpfc_nodelist *ndlp;
James Smartff78d8f2011-12-13 13:21:35 -05007969 uint32_t *pcmd;
James Smart1b511972011-12-13 13:23:09 -05007970 uint32_t if_type;
James Smart4f774512009-05-22 14:52:35 -04007971
James Smart45ed1192009-10-02 15:17:02 -04007972 fip = phba->hba_flag & HBA_FIP_SUPPORT;
James Smart4f774512009-05-22 14:52:35 -04007973 /* The fcp commands will set command type */
James Smart0c287582009-06-10 17:22:56 -04007974 if (iocbq->iocb_flag & LPFC_IO_FCP)
James Smart4f774512009-05-22 14:52:35 -04007975 command_type = FCP_COMMAND;
James Smartc8685952009-11-18 15:39:16 -05007976 else if (fip && (iocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK))
James Smart0c287582009-06-10 17:22:56 -04007977 command_type = ELS_COMMAND_FIP;
7978 else
7979 command_type = ELS_COMMAND_NON_FIP;
7980
James Smart4f774512009-05-22 14:52:35 -04007981 /* Some of the fields are in the right position already */
7982 memcpy(wqe, &iocbq->iocb, sizeof(union lpfc_wqe));
7983 abort_tag = (uint32_t) iocbq->iotag;
7984 xritag = iocbq->sli4_xritag;
James Smartf0d9bcc2010-10-22 11:07:09 -04007985 wqe->generic.wqe_com.word7 = 0; /* The ct field has moved so reset */
James Smart4f774512009-05-22 14:52:35 -04007986 /* words0-2 bpl convert bde */
7987 if (iocbq->iocb.un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
James Smart5ffc2662009-11-18 15:39:44 -05007988 numBdes = iocbq->iocb.un.genreq64.bdl.bdeSize /
7989 sizeof(struct ulp_bde64);
James Smart4f774512009-05-22 14:52:35 -04007990 bpl = (struct ulp_bde64 *)
7991 ((struct lpfc_dmabuf *)iocbq->context3)->virt;
7992 if (!bpl)
7993 return IOCB_ERROR;
7994
7995 /* Should already be byte swapped. */
7996 wqe->generic.bde.addrHigh = le32_to_cpu(bpl->addrHigh);
7997 wqe->generic.bde.addrLow = le32_to_cpu(bpl->addrLow);
7998 /* swap the size field back to the cpu so we
7999 * can assign it to the sgl.
8000 */
8001 wqe->generic.bde.tus.w = le32_to_cpu(bpl->tus.w);
James Smart5ffc2662009-11-18 15:39:44 -05008002 xmit_len = wqe->generic.bde.tus.f.bdeSize;
8003 total_len = 0;
8004 for (i = 0; i < numBdes; i++) {
8005 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
8006 total_len += bde.tus.f.bdeSize;
8007 }
James Smart4f774512009-05-22 14:52:35 -04008008 } else
James Smart5ffc2662009-11-18 15:39:44 -05008009 xmit_len = iocbq->iocb.un.fcpi64.bdl.bdeSize;
James Smart4f774512009-05-22 14:52:35 -04008010
8011 iocbq->iocb.ulpIoTag = iocbq->iotag;
8012 cmnd = iocbq->iocb.ulpCommand;
8013
8014 switch (iocbq->iocb.ulpCommand) {
8015 case CMD_ELS_REQUEST64_CR:
James Smart93d1379e2012-05-09 21:19:34 -04008016 if (iocbq->iocb_flag & LPFC_IO_LIBDFC)
8017 ndlp = iocbq->context_un.ndlp;
8018 else
8019 ndlp = (struct lpfc_nodelist *)iocbq->context1;
James Smart4f774512009-05-22 14:52:35 -04008020 if (!iocbq->iocb.ulpLe) {
8021 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8022 "2007 Only Limited Edition cmd Format"
8023 " supported 0x%x\n",
8024 iocbq->iocb.ulpCommand);
8025 return IOCB_ERROR;
8026 }
James Smartff78d8f2011-12-13 13:21:35 -05008027
James Smart5ffc2662009-11-18 15:39:44 -05008028 wqe->els_req.payload_len = xmit_len;
James Smart4f774512009-05-22 14:52:35 -04008029 /* Els_reguest64 has a TMO */
8030 bf_set(wqe_tmo, &wqe->els_req.wqe_com,
8031 iocbq->iocb.ulpTimeout);
8032 /* Need a VF for word 4 set the vf bit*/
8033 bf_set(els_req64_vf, &wqe->els_req, 0);
8034 /* And a VFID for word 12 */
8035 bf_set(els_req64_vfid, &wqe->els_req, 0);
James Smart4f774512009-05-22 14:52:35 -04008036 ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
James Smartf0d9bcc2010-10-22 11:07:09 -04008037 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
8038 iocbq->iocb.ulpContext);
8039 bf_set(wqe_ct, &wqe->els_req.wqe_com, ct);
8040 bf_set(wqe_pu, &wqe->els_req.wqe_com, 0);
James Smart4f774512009-05-22 14:52:35 -04008041 /* CCP CCPE PV PRI in word10 were set in the memcpy */
James Smartff78d8f2011-12-13 13:21:35 -05008042 if (command_type == ELS_COMMAND_FIP)
James Smartc8685952009-11-18 15:39:16 -05008043 els_id = ((iocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK)
8044 >> LPFC_FIP_ELS_ID_SHIFT);
James Smartff78d8f2011-12-13 13:21:35 -05008045 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
8046 iocbq->context2)->virt);
James Smart1b511972011-12-13 13:23:09 -05008047 if_type = bf_get(lpfc_sli_intf_if_type,
8048 &phba->sli4_hba.sli_intf);
8049 if (if_type == LPFC_SLI_INTF_IF_TYPE_2) {
James Smartff78d8f2011-12-13 13:21:35 -05008050 if (pcmd && (*pcmd == ELS_CMD_FLOGI ||
James Smartcb69f7d2011-12-13 13:21:57 -05008051 *pcmd == ELS_CMD_SCR ||
James Smart6b5151f2012-01-18 16:24:06 -05008052 *pcmd == ELS_CMD_FDISC ||
James Smartbdcd2b92012-03-01 22:33:52 -05008053 *pcmd == ELS_CMD_LOGO ||
James Smartff78d8f2011-12-13 13:21:35 -05008054 *pcmd == ELS_CMD_PLOGI)) {
8055 bf_set(els_req64_sp, &wqe->els_req, 1);
8056 bf_set(els_req64_sid, &wqe->els_req,
8057 iocbq->vport->fc_myDID);
James Smart939723a2012-05-09 21:19:03 -04008058 if ((*pcmd == ELS_CMD_FLOGI) &&
8059 !(phba->fc_topology ==
8060 LPFC_TOPOLOGY_LOOP))
8061 bf_set(els_req64_sid, &wqe->els_req, 0);
James Smartff78d8f2011-12-13 13:21:35 -05008062 bf_set(wqe_ct, &wqe->els_req.wqe_com, 1);
8063 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
James Smarta7dd9c02012-05-09 21:16:50 -04008064 phba->vpi_ids[iocbq->vport->vpi]);
James Smart3ef6d242012-01-18 16:23:48 -05008065 } else if (pcmd && iocbq->context1) {
James Smartff78d8f2011-12-13 13:21:35 -05008066 bf_set(wqe_ct, &wqe->els_req.wqe_com, 0);
8067 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
8068 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
8069 }
James Smartc8685952009-11-18 15:39:16 -05008070 }
James Smart6d368e52011-05-24 11:44:12 -04008071 bf_set(wqe_temp_rpi, &wqe->els_req.wqe_com,
8072 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
James Smartf0d9bcc2010-10-22 11:07:09 -04008073 bf_set(wqe_els_id, &wqe->els_req.wqe_com, els_id);
8074 bf_set(wqe_dbde, &wqe->els_req.wqe_com, 1);
8075 bf_set(wqe_iod, &wqe->els_req.wqe_com, LPFC_WQE_IOD_READ);
8076 bf_set(wqe_qosd, &wqe->els_req.wqe_com, 1);
8077 bf_set(wqe_lenloc, &wqe->els_req.wqe_com, LPFC_WQE_LENLOC_NONE);
8078 bf_set(wqe_ebde_cnt, &wqe->els_req.wqe_com, 0);
James Smart7851fe22011-07-22 18:36:52 -04008079 break;
James Smart5ffc2662009-11-18 15:39:44 -05008080 case CMD_XMIT_SEQUENCE64_CX:
James Smartf0d9bcc2010-10-22 11:07:09 -04008081 bf_set(wqe_ctxt_tag, &wqe->xmit_sequence.wqe_com,
8082 iocbq->iocb.un.ulpWord[3]);
8083 bf_set(wqe_rcvoxid, &wqe->xmit_sequence.wqe_com,
James Smart7851fe22011-07-22 18:36:52 -04008084 iocbq->iocb.unsli3.rcvsli3.ox_id);
James Smart5ffc2662009-11-18 15:39:44 -05008085 /* The entire sequence is transmitted for this IOCB */
8086 xmit_len = total_len;
8087 cmnd = CMD_XMIT_SEQUENCE64_CR;
James Smart1b511972011-12-13 13:23:09 -05008088 if (phba->link_flag & LS_LOOPBACK_MODE)
8089 bf_set(wqe_xo, &wqe->xmit_sequence.wge_ctl, 1);
James Smart4f774512009-05-22 14:52:35 -04008090 case CMD_XMIT_SEQUENCE64_CR:
James Smartf0d9bcc2010-10-22 11:07:09 -04008091 /* word3 iocb=io_tag32 wqe=reserved */
8092 wqe->xmit_sequence.rsvd3 = 0;
James Smart4f774512009-05-22 14:52:35 -04008093 /* word4 relative_offset memcpy */
8094 /* word5 r_ctl/df_ctl memcpy */
James Smartf0d9bcc2010-10-22 11:07:09 -04008095 bf_set(wqe_pu, &wqe->xmit_sequence.wqe_com, 0);
8096 bf_set(wqe_dbde, &wqe->xmit_sequence.wqe_com, 1);
8097 bf_set(wqe_iod, &wqe->xmit_sequence.wqe_com,
8098 LPFC_WQE_IOD_WRITE);
8099 bf_set(wqe_lenloc, &wqe->xmit_sequence.wqe_com,
8100 LPFC_WQE_LENLOC_WORD12);
8101 bf_set(wqe_ebde_cnt, &wqe->xmit_sequence.wqe_com, 0);
James Smart5ffc2662009-11-18 15:39:44 -05008102 wqe->xmit_sequence.xmit_len = xmit_len;
8103 command_type = OTHER_COMMAND;
James Smart7851fe22011-07-22 18:36:52 -04008104 break;
James Smart4f774512009-05-22 14:52:35 -04008105 case CMD_XMIT_BCAST64_CN:
James Smartf0d9bcc2010-10-22 11:07:09 -04008106 /* word3 iocb=iotag32 wqe=seq_payload_len */
8107 wqe->xmit_bcast64.seq_payload_len = xmit_len;
James Smart4f774512009-05-22 14:52:35 -04008108 /* word4 iocb=rsvd wqe=rsvd */
8109 /* word5 iocb=rctl/type/df_ctl wqe=rctl/type/df_ctl memcpy */
8110 /* word6 iocb=ctxt_tag/io_tag wqe=ctxt_tag/xri */
James Smartf0d9bcc2010-10-22 11:07:09 -04008111 bf_set(wqe_ct, &wqe->xmit_bcast64.wqe_com,
James Smart4f774512009-05-22 14:52:35 -04008112 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
James Smartf0d9bcc2010-10-22 11:07:09 -04008113 bf_set(wqe_dbde, &wqe->xmit_bcast64.wqe_com, 1);
8114 bf_set(wqe_iod, &wqe->xmit_bcast64.wqe_com, LPFC_WQE_IOD_WRITE);
8115 bf_set(wqe_lenloc, &wqe->xmit_bcast64.wqe_com,
8116 LPFC_WQE_LENLOC_WORD3);
8117 bf_set(wqe_ebde_cnt, &wqe->xmit_bcast64.wqe_com, 0);
James Smart7851fe22011-07-22 18:36:52 -04008118 break;
James Smart4f774512009-05-22 14:52:35 -04008119 case CMD_FCP_IWRITE64_CR:
8120 command_type = FCP_COMMAND_DATA_OUT;
James Smartf0d9bcc2010-10-22 11:07:09 -04008121 /* word3 iocb=iotag wqe=payload_offset_len */
8122 /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
8123 wqe->fcp_iwrite.payload_offset_len =
James Smart5ffc2662009-11-18 15:39:44 -05008124 xmit_len + sizeof(struct fcp_rsp);
James Smartf0d9bcc2010-10-22 11:07:09 -04008125 /* word4 iocb=parameter wqe=total_xfer_length memcpy */
8126 /* word5 iocb=initial_xfer_len wqe=initial_xfer_len memcpy */
8127 bf_set(wqe_erp, &wqe->fcp_iwrite.wqe_com,
8128 iocbq->iocb.ulpFCP2Rcvy);
8129 bf_set(wqe_lnk, &wqe->fcp_iwrite.wqe_com, iocbq->iocb.ulpXS);
8130 /* Always open the exchange */
8131 bf_set(wqe_xc, &wqe->fcp_iwrite.wqe_com, 0);
James Smartf0d9bcc2010-10-22 11:07:09 -04008132 bf_set(wqe_iod, &wqe->fcp_iwrite.wqe_com, LPFC_WQE_IOD_WRITE);
8133 bf_set(wqe_lenloc, &wqe->fcp_iwrite.wqe_com,
8134 LPFC_WQE_LENLOC_WORD4);
8135 bf_set(wqe_ebde_cnt, &wqe->fcp_iwrite.wqe_com, 0);
8136 bf_set(wqe_pu, &wqe->fcp_iwrite.wqe_com, iocbq->iocb.ulpPU);
James Smartacd68592012-01-18 16:25:09 -05008137 bf_set(wqe_dbde, &wqe->fcp_iwrite.wqe_com, 1);
James Smart7851fe22011-07-22 18:36:52 -04008138 break;
James Smartf0d9bcc2010-10-22 11:07:09 -04008139 case CMD_FCP_IREAD64_CR:
8140 /* word3 iocb=iotag wqe=payload_offset_len */
8141 /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
8142 wqe->fcp_iread.payload_offset_len =
8143 xmit_len + sizeof(struct fcp_rsp);
8144 /* word4 iocb=parameter wqe=total_xfer_length memcpy */
8145 /* word5 iocb=initial_xfer_len wqe=initial_xfer_len memcpy */
8146 bf_set(wqe_erp, &wqe->fcp_iread.wqe_com,
8147 iocbq->iocb.ulpFCP2Rcvy);
8148 bf_set(wqe_lnk, &wqe->fcp_iread.wqe_com, iocbq->iocb.ulpXS);
James Smart4f774512009-05-22 14:52:35 -04008149 /* Always open the exchange */
8150 bf_set(wqe_xc, &wqe->fcp_iread.wqe_com, 0);
James Smartf0d9bcc2010-10-22 11:07:09 -04008151 bf_set(wqe_iod, &wqe->fcp_iread.wqe_com, LPFC_WQE_IOD_READ);
8152 bf_set(wqe_lenloc, &wqe->fcp_iread.wqe_com,
8153 LPFC_WQE_LENLOC_WORD4);
8154 bf_set(wqe_ebde_cnt, &wqe->fcp_iread.wqe_com, 0);
8155 bf_set(wqe_pu, &wqe->fcp_iread.wqe_com, iocbq->iocb.ulpPU);
James Smartacd68592012-01-18 16:25:09 -05008156 bf_set(wqe_dbde, &wqe->fcp_iread.wqe_com, 1);
James Smart7851fe22011-07-22 18:36:52 -04008157 break;
James Smartf1126682009-06-10 17:22:44 -04008158 case CMD_FCP_ICMND64_CR:
James Smartf0d9bcc2010-10-22 11:07:09 -04008159 /* word3 iocb=IO_TAG wqe=reserved */
8160 wqe->fcp_icmd.rsrvd3 = 0;
8161 bf_set(wqe_pu, &wqe->fcp_icmd.wqe_com, 0);
James Smartf1126682009-06-10 17:22:44 -04008162 /* Always open the exchange */
James Smartf0d9bcc2010-10-22 11:07:09 -04008163 bf_set(wqe_xc, &wqe->fcp_icmd.wqe_com, 0);
8164 bf_set(wqe_dbde, &wqe->fcp_icmd.wqe_com, 1);
8165 bf_set(wqe_iod, &wqe->fcp_icmd.wqe_com, LPFC_WQE_IOD_WRITE);
8166 bf_set(wqe_qosd, &wqe->fcp_icmd.wqe_com, 1);
8167 bf_set(wqe_lenloc, &wqe->fcp_icmd.wqe_com,
8168 LPFC_WQE_LENLOC_NONE);
8169 bf_set(wqe_ebde_cnt, &wqe->fcp_icmd.wqe_com, 0);
James Smart2a94aea2012-09-29 11:30:31 -04008170 bf_set(wqe_erp, &wqe->fcp_icmd.wqe_com,
8171 iocbq->iocb.ulpFCP2Rcvy);
James Smart7851fe22011-07-22 18:36:52 -04008172 break;
James Smart4f774512009-05-22 14:52:35 -04008173 case CMD_GEN_REQUEST64_CR:
James Smart63e801c2010-11-20 23:14:19 -05008174 /* For this command calculate the xmit length of the
8175 * request bde.
8176 */
8177 xmit_len = 0;
8178 numBdes = iocbq->iocb.un.genreq64.bdl.bdeSize /
8179 sizeof(struct ulp_bde64);
8180 for (i = 0; i < numBdes; i++) {
James Smart63e801c2010-11-20 23:14:19 -05008181 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
James Smart546fc852011-03-11 16:06:29 -05008182 if (bde.tus.f.bdeFlags != BUFF_TYPE_BDE_64)
8183 break;
James Smart63e801c2010-11-20 23:14:19 -05008184 xmit_len += bde.tus.f.bdeSize;
8185 }
James Smartf0d9bcc2010-10-22 11:07:09 -04008186 /* word3 iocb=IO_TAG wqe=request_payload_len */
8187 wqe->gen_req.request_payload_len = xmit_len;
8188 /* word4 iocb=parameter wqe=relative_offset memcpy */
8189 /* word5 [rctl, type, df_ctl, la] copied in memcpy */
James Smart4f774512009-05-22 14:52:35 -04008190 /* word6 context tag copied in memcpy */
8191 if (iocbq->iocb.ulpCt_h || iocbq->iocb.ulpCt_l) {
8192 ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
8193 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8194 "2015 Invalid CT %x command 0x%x\n",
8195 ct, iocbq->iocb.ulpCommand);
8196 return IOCB_ERROR;
8197 }
James Smartf0d9bcc2010-10-22 11:07:09 -04008198 bf_set(wqe_ct, &wqe->gen_req.wqe_com, 0);
8199 bf_set(wqe_tmo, &wqe->gen_req.wqe_com, iocbq->iocb.ulpTimeout);
8200 bf_set(wqe_pu, &wqe->gen_req.wqe_com, iocbq->iocb.ulpPU);
8201 bf_set(wqe_dbde, &wqe->gen_req.wqe_com, 1);
8202 bf_set(wqe_iod, &wqe->gen_req.wqe_com, LPFC_WQE_IOD_READ);
8203 bf_set(wqe_qosd, &wqe->gen_req.wqe_com, 1);
8204 bf_set(wqe_lenloc, &wqe->gen_req.wqe_com, LPFC_WQE_LENLOC_NONE);
8205 bf_set(wqe_ebde_cnt, &wqe->gen_req.wqe_com, 0);
James Smart4f774512009-05-22 14:52:35 -04008206 command_type = OTHER_COMMAND;
James Smart7851fe22011-07-22 18:36:52 -04008207 break;
James Smart4f774512009-05-22 14:52:35 -04008208 case CMD_XMIT_ELS_RSP64_CX:
James Smartc31098c2011-04-16 11:03:33 -04008209 ndlp = (struct lpfc_nodelist *)iocbq->context1;
James Smart4f774512009-05-22 14:52:35 -04008210 /* words0-2 BDE memcpy */
James Smartf0d9bcc2010-10-22 11:07:09 -04008211 /* word3 iocb=iotag32 wqe=response_payload_len */
8212 wqe->xmit_els_rsp.response_payload_len = xmit_len;
James Smart939723a2012-05-09 21:19:03 -04008213 /* word4 */
8214 wqe->xmit_els_rsp.word4 = 0;
James Smart4f774512009-05-22 14:52:35 -04008215 /* word5 iocb=rsvd wge=did */
8216 bf_set(wqe_els_did, &wqe->xmit_els_rsp.wqe_dest,
James Smart939723a2012-05-09 21:19:03 -04008217 iocbq->iocb.un.xseq64.xmit_els_remoteID);
8218
8219 if_type = bf_get(lpfc_sli_intf_if_type,
8220 &phba->sli4_hba.sli_intf);
8221 if (if_type == LPFC_SLI_INTF_IF_TYPE_2) {
8222 if (iocbq->vport->fc_flag & FC_PT2PT) {
8223 bf_set(els_rsp64_sp, &wqe->xmit_els_rsp, 1);
8224 bf_set(els_rsp64_sid, &wqe->xmit_els_rsp,
8225 iocbq->vport->fc_myDID);
8226 if (iocbq->vport->fc_myDID == Fabric_DID) {
8227 bf_set(wqe_els_did,
8228 &wqe->xmit_els_rsp.wqe_dest, 0);
8229 }
8230 }
8231 }
James Smartf0d9bcc2010-10-22 11:07:09 -04008232 bf_set(wqe_ct, &wqe->xmit_els_rsp.wqe_com,
8233 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
8234 bf_set(wqe_pu, &wqe->xmit_els_rsp.wqe_com, iocbq->iocb.ulpPU);
8235 bf_set(wqe_rcvoxid, &wqe->xmit_els_rsp.wqe_com,
James Smart7851fe22011-07-22 18:36:52 -04008236 iocbq->iocb.unsli3.rcvsli3.ox_id);
James Smart4f774512009-05-22 14:52:35 -04008237 if (!iocbq->iocb.ulpCt_h && iocbq->iocb.ulpCt_l)
James Smartf0d9bcc2010-10-22 11:07:09 -04008238 bf_set(wqe_ctxt_tag, &wqe->xmit_els_rsp.wqe_com,
James Smart6d368e52011-05-24 11:44:12 -04008239 phba->vpi_ids[iocbq->vport->vpi]);
James Smartf0d9bcc2010-10-22 11:07:09 -04008240 bf_set(wqe_dbde, &wqe->xmit_els_rsp.wqe_com, 1);
8241 bf_set(wqe_iod, &wqe->xmit_els_rsp.wqe_com, LPFC_WQE_IOD_WRITE);
8242 bf_set(wqe_qosd, &wqe->xmit_els_rsp.wqe_com, 1);
8243 bf_set(wqe_lenloc, &wqe->xmit_els_rsp.wqe_com,
8244 LPFC_WQE_LENLOC_WORD3);
8245 bf_set(wqe_ebde_cnt, &wqe->xmit_els_rsp.wqe_com, 0);
James Smart6d368e52011-05-24 11:44:12 -04008246 bf_set(wqe_rsp_temp_rpi, &wqe->xmit_els_rsp,
8247 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
James Smartff78d8f2011-12-13 13:21:35 -05008248 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
8249 iocbq->context2)->virt);
8250 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart939723a2012-05-09 21:19:03 -04008251 bf_set(els_rsp64_sp, &wqe->xmit_els_rsp, 1);
8252 bf_set(els_rsp64_sid, &wqe->xmit_els_rsp,
James Smartff78d8f2011-12-13 13:21:35 -05008253 iocbq->vport->fc_myDID);
James Smart939723a2012-05-09 21:19:03 -04008254 bf_set(wqe_ct, &wqe->xmit_els_rsp.wqe_com, 1);
8255 bf_set(wqe_ctxt_tag, &wqe->xmit_els_rsp.wqe_com,
James Smartff78d8f2011-12-13 13:21:35 -05008256 phba->vpi_ids[phba->pport->vpi]);
8257 }
James Smart4f774512009-05-22 14:52:35 -04008258 command_type = OTHER_COMMAND;
James Smart7851fe22011-07-22 18:36:52 -04008259 break;
James Smart4f774512009-05-22 14:52:35 -04008260 case CMD_CLOSE_XRI_CN:
8261 case CMD_ABORT_XRI_CN:
8262 case CMD_ABORT_XRI_CX:
8263 /* words 0-2 memcpy should be 0 rserved */
8264 /* port will send abts */
James Smartdcf2a4e2010-09-29 11:18:53 -04008265 abrt_iotag = iocbq->iocb.un.acxri.abortContextTag;
8266 if (abrt_iotag != 0 && abrt_iotag <= phba->sli.last_iotag) {
8267 abrtiocbq = phba->sli.iocbq_lookup[abrt_iotag];
8268 fip = abrtiocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK;
8269 } else
8270 fip = 0;
8271
8272 if ((iocbq->iocb.ulpCommand == CMD_CLOSE_XRI_CN) || fip)
James Smart4f774512009-05-22 14:52:35 -04008273 /*
James Smartdcf2a4e2010-09-29 11:18:53 -04008274 * The link is down, or the command was ELS_FIP
8275 * so the fw does not need to send abts
James Smart4f774512009-05-22 14:52:35 -04008276 * on the wire.
8277 */
8278 bf_set(abort_cmd_ia, &wqe->abort_cmd, 1);
8279 else
8280 bf_set(abort_cmd_ia, &wqe->abort_cmd, 0);
8281 bf_set(abort_cmd_criteria, &wqe->abort_cmd, T_XRI_TAG);
James Smartf0d9bcc2010-10-22 11:07:09 -04008282 /* word5 iocb=CONTEXT_TAG|IO_TAG wqe=reserved */
8283 wqe->abort_cmd.rsrvd5 = 0;
8284 bf_set(wqe_ct, &wqe->abort_cmd.wqe_com,
James Smart4f774512009-05-22 14:52:35 -04008285 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
8286 abort_tag = iocbq->iocb.un.acxri.abortIoTag;
James Smart4f774512009-05-22 14:52:35 -04008287 /*
8288 * The abort handler will send us CMD_ABORT_XRI_CN or
8289 * CMD_CLOSE_XRI_CN and the fw only accepts CMD_ABORT_XRI_CX
8290 */
James Smartf0d9bcc2010-10-22 11:07:09 -04008291 bf_set(wqe_cmnd, &wqe->abort_cmd.wqe_com, CMD_ABORT_XRI_CX);
8292 bf_set(wqe_qosd, &wqe->abort_cmd.wqe_com, 1);
8293 bf_set(wqe_lenloc, &wqe->abort_cmd.wqe_com,
8294 LPFC_WQE_LENLOC_NONE);
James Smart4f774512009-05-22 14:52:35 -04008295 cmnd = CMD_ABORT_XRI_CX;
8296 command_type = OTHER_COMMAND;
8297 xritag = 0;
James Smart7851fe22011-07-22 18:36:52 -04008298 break;
James Smart6669f9b2009-10-02 15:16:45 -04008299 case CMD_XMIT_BLS_RSP64_CX:
James Smart6b5151f2012-01-18 16:24:06 -05008300 ndlp = (struct lpfc_nodelist *)iocbq->context1;
James Smart546fc852011-03-11 16:06:29 -05008301 /* As BLS ABTS RSP WQE is very different from other WQEs,
James Smart6669f9b2009-10-02 15:16:45 -04008302 * we re-construct this WQE here based on information in
8303 * iocbq from scratch.
8304 */
8305 memset(wqe, 0, sizeof(union lpfc_wqe));
James Smart5ffc2662009-11-18 15:39:44 -05008306 /* OX_ID is invariable to who sent ABTS to CT exchange */
James Smart6669f9b2009-10-02 15:16:45 -04008307 bf_set(xmit_bls_rsp64_oxid, &wqe->xmit_bls_rsp,
James Smart546fc852011-03-11 16:06:29 -05008308 bf_get(lpfc_abts_oxid, &iocbq->iocb.un.bls_rsp));
8309 if (bf_get(lpfc_abts_orig, &iocbq->iocb.un.bls_rsp) ==
James Smart5ffc2662009-11-18 15:39:44 -05008310 LPFC_ABTS_UNSOL_INT) {
8311 /* ABTS sent by initiator to CT exchange, the
8312 * RX_ID field will be filled with the newly
8313 * allocated responder XRI.
8314 */
8315 bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
8316 iocbq->sli4_xritag);
8317 } else {
8318 /* ABTS sent by responder to CT exchange, the
8319 * RX_ID field will be filled with the responder
8320 * RX_ID from ABTS.
8321 */
8322 bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
James Smart546fc852011-03-11 16:06:29 -05008323 bf_get(lpfc_abts_rxid, &iocbq->iocb.un.bls_rsp));
James Smart5ffc2662009-11-18 15:39:44 -05008324 }
James Smart6669f9b2009-10-02 15:16:45 -04008325 bf_set(xmit_bls_rsp64_seqcnthi, &wqe->xmit_bls_rsp, 0xffff);
8326 bf_set(wqe_xmit_bls_pt, &wqe->xmit_bls_rsp.wqe_dest, 0x1);
James Smart6b5151f2012-01-18 16:24:06 -05008327
8328 /* Use CT=VPI */
8329 bf_set(wqe_els_did, &wqe->xmit_bls_rsp.wqe_dest,
8330 ndlp->nlp_DID);
8331 bf_set(xmit_bls_rsp64_temprpi, &wqe->xmit_bls_rsp,
8332 iocbq->iocb.ulpContext);
8333 bf_set(wqe_ct, &wqe->xmit_bls_rsp.wqe_com, 1);
James Smart6669f9b2009-10-02 15:16:45 -04008334 bf_set(wqe_ctxt_tag, &wqe->xmit_bls_rsp.wqe_com,
James Smart6b5151f2012-01-18 16:24:06 -05008335 phba->vpi_ids[phba->pport->vpi]);
James Smartf0d9bcc2010-10-22 11:07:09 -04008336 bf_set(wqe_qosd, &wqe->xmit_bls_rsp.wqe_com, 1);
8337 bf_set(wqe_lenloc, &wqe->xmit_bls_rsp.wqe_com,
8338 LPFC_WQE_LENLOC_NONE);
James Smart6669f9b2009-10-02 15:16:45 -04008339 /* Overwrite the pre-set comnd type with OTHER_COMMAND */
8340 command_type = OTHER_COMMAND;
James Smart546fc852011-03-11 16:06:29 -05008341 if (iocbq->iocb.un.xseq64.w5.hcsw.Rctl == FC_RCTL_BA_RJT) {
8342 bf_set(xmit_bls_rsp64_rjt_vspec, &wqe->xmit_bls_rsp,
8343 bf_get(lpfc_vndr_code, &iocbq->iocb.un.bls_rsp));
8344 bf_set(xmit_bls_rsp64_rjt_expc, &wqe->xmit_bls_rsp,
8345 bf_get(lpfc_rsn_expln, &iocbq->iocb.un.bls_rsp));
8346 bf_set(xmit_bls_rsp64_rjt_rsnc, &wqe->xmit_bls_rsp,
8347 bf_get(lpfc_rsn_code, &iocbq->iocb.un.bls_rsp));
8348 }
8349
James Smart7851fe22011-07-22 18:36:52 -04008350 break;
James Smart4f774512009-05-22 14:52:35 -04008351 case CMD_XRI_ABORTED_CX:
8352 case CMD_CREATE_XRI_CR: /* Do we expect to use this? */
James Smart4f774512009-05-22 14:52:35 -04008353 case CMD_IOCB_FCP_IBIDIR64_CR: /* bidirectional xfer */
8354 case CMD_FCP_TSEND64_CX: /* Target mode send xfer-ready */
8355 case CMD_FCP_TRSP64_CX: /* Target mode rcv */
8356 case CMD_FCP_AUTO_TRSP_CX: /* Auto target rsp */
8357 default:
8358 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8359 "2014 Invalid command 0x%x\n",
8360 iocbq->iocb.ulpCommand);
8361 return IOCB_ERROR;
James Smart7851fe22011-07-22 18:36:52 -04008362 break;
James Smart4f774512009-05-22 14:52:35 -04008363 }
James Smart6d368e52011-05-24 11:44:12 -04008364
James Smart8012cc32012-10-31 14:44:49 -04008365 if (iocbq->iocb_flag & LPFC_IO_DIF_PASS)
8366 bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_PASSTHRU);
8367 else if (iocbq->iocb_flag & LPFC_IO_DIF_STRIP)
8368 bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_STRIP);
8369 else if (iocbq->iocb_flag & LPFC_IO_DIF_INSERT)
8370 bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_INSERT);
8371 iocbq->iocb_flag &= ~(LPFC_IO_DIF_PASS | LPFC_IO_DIF_STRIP |
8372 LPFC_IO_DIF_INSERT);
James Smartf0d9bcc2010-10-22 11:07:09 -04008373 bf_set(wqe_xri_tag, &wqe->generic.wqe_com, xritag);
8374 bf_set(wqe_reqtag, &wqe->generic.wqe_com, iocbq->iotag);
8375 wqe->generic.wqe_com.abort_tag = abort_tag;
8376 bf_set(wqe_cmd_type, &wqe->generic.wqe_com, command_type);
8377 bf_set(wqe_cmnd, &wqe->generic.wqe_com, cmnd);
8378 bf_set(wqe_class, &wqe->generic.wqe_com, iocbq->iocb.ulpClass);
8379 bf_set(wqe_cqid, &wqe->generic.wqe_com, LPFC_WQE_CQ_ID_DEFAULT);
James Smart4f774512009-05-22 14:52:35 -04008380 return 0;
8381}
8382
8383/**
8384 * __lpfc_sli_issue_iocb_s4 - SLI4 device lockless ver of lpfc_sli_issue_iocb
8385 * @phba: Pointer to HBA context object.
8386 * @ring_number: SLI ring number to issue iocb on.
8387 * @piocb: Pointer to command iocb.
8388 * @flag: Flag indicating if this command can be put into txq.
8389 *
8390 * __lpfc_sli_issue_iocb_s4 is used by other functions in the driver to issue
8391 * an iocb command to an HBA with SLI-4 interface spec.
8392 *
8393 * This function is called with hbalock held. The function will return success
8394 * after it successfully submit the iocb to firmware or after adding to the
8395 * txq.
8396 **/
8397static int
8398__lpfc_sli_issue_iocb_s4(struct lpfc_hba *phba, uint32_t ring_number,
8399 struct lpfc_iocbq *piocb, uint32_t flag)
8400{
8401 struct lpfc_sglq *sglq;
James Smart4f774512009-05-22 14:52:35 -04008402 union lpfc_wqe wqe;
8403 struct lpfc_sli_ring *pring = &phba->sli.ring[ring_number];
James Smart4f774512009-05-22 14:52:35 -04008404
8405 if (piocb->sli4_xritag == NO_XRI) {
8406 if (piocb->iocb.ulpCommand == CMD_ABORT_XRI_CN ||
James Smart6b5151f2012-01-18 16:24:06 -05008407 piocb->iocb.ulpCommand == CMD_CLOSE_XRI_CN)
James Smart4f774512009-05-22 14:52:35 -04008408 sglq = NULL;
8409 else {
James Smart0e9bb8d2013-03-01 16:35:12 -05008410 if (!list_empty(&pring->txq)) {
James Smart2a9bf3d2010-06-07 15:24:45 -04008411 if (!(flag & SLI_IOCB_RET_IOCB)) {
8412 __lpfc_sli_ringtx_put(phba,
8413 pring, piocb);
8414 return IOCB_SUCCESS;
8415 } else {
8416 return IOCB_BUSY;
8417 }
8418 } else {
James Smart6d368e52011-05-24 11:44:12 -04008419 sglq = __lpfc_sli_get_sglq(phba, piocb);
James Smart2a9bf3d2010-06-07 15:24:45 -04008420 if (!sglq) {
8421 if (!(flag & SLI_IOCB_RET_IOCB)) {
8422 __lpfc_sli_ringtx_put(phba,
8423 pring,
8424 piocb);
8425 return IOCB_SUCCESS;
8426 } else
8427 return IOCB_BUSY;
8428 }
8429 }
James Smart4f774512009-05-22 14:52:35 -04008430 }
8431 } else if (piocb->iocb_flag & LPFC_IO_FCP) {
James Smart6d368e52011-05-24 11:44:12 -04008432 /* These IO's already have an XRI and a mapped sgl. */
8433 sglq = NULL;
James Smart4f774512009-05-22 14:52:35 -04008434 } else {
James Smart6d368e52011-05-24 11:44:12 -04008435 /*
8436 * This is a continuation of a commandi,(CX) so this
James Smart4f774512009-05-22 14:52:35 -04008437 * sglq is on the active list
8438 */
James Smartedccdc12013-01-03 15:43:45 -05008439 sglq = __lpfc_get_active_sglq(phba, piocb->sli4_lxritag);
James Smart4f774512009-05-22 14:52:35 -04008440 if (!sglq)
8441 return IOCB_ERROR;
8442 }
8443
8444 if (sglq) {
James Smart6d368e52011-05-24 11:44:12 -04008445 piocb->sli4_lxritag = sglq->sli4_lxritag;
James Smart2a9bf3d2010-06-07 15:24:45 -04008446 piocb->sli4_xritag = sglq->sli4_xritag;
James Smart2a9bf3d2010-06-07 15:24:45 -04008447 if (NO_XRI == lpfc_sli4_bpl2sgl(phba, piocb, sglq))
James Smart4f774512009-05-22 14:52:35 -04008448 return IOCB_ERROR;
8449 }
8450
8451 if (lpfc_sli4_iocb2wqe(phba, piocb, &wqe))
8452 return IOCB_ERROR;
8453
James Smart341af102010-01-26 23:07:37 -05008454 if ((piocb->iocb_flag & LPFC_IO_FCP) ||
8455 (piocb->iocb_flag & LPFC_USE_FCPWQIDX)) {
James Smart5ffc2662009-11-18 15:39:44 -05008456 if (lpfc_sli4_wq_put(phba->sli4_hba.fcp_wq[piocb->fcp_wqidx],
8457 &wqe))
James Smart4f774512009-05-22 14:52:35 -04008458 return IOCB_ERROR;
8459 } else {
8460 if (lpfc_sli4_wq_put(phba->sli4_hba.els_wq, &wqe))
8461 return IOCB_ERROR;
8462 }
8463 lpfc_sli_ringtxcmpl_put(phba, pring, piocb);
8464
8465 return 0;
8466}
8467
8468/**
James Smart3772a992009-05-22 14:50:54 -04008469 * __lpfc_sli_issue_iocb - Wrapper func of lockless version for issuing iocb
8470 *
8471 * This routine wraps the actual lockless version for issusing IOCB function
8472 * pointer from the lpfc_hba struct.
8473 *
8474 * Return codes:
8475 * IOCB_ERROR - Error
8476 * IOCB_SUCCESS - Success
8477 * IOCB_BUSY - Busy
8478 **/
James Smart2a9bf3d2010-06-07 15:24:45 -04008479int
James Smart3772a992009-05-22 14:50:54 -04008480__lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
8481 struct lpfc_iocbq *piocb, uint32_t flag)
8482{
8483 return phba->__lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
8484}
8485
8486/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03008487 * lpfc_sli_api_table_setup - Set up sli api function jump table
James Smart3772a992009-05-22 14:50:54 -04008488 * @phba: The hba struct for which this call is being executed.
8489 * @dev_grp: The HBA PCI-Device group number.
8490 *
8491 * This routine sets up the SLI interface API function jump table in @phba
8492 * struct.
8493 * Returns: 0 - success, -ENODEV - failure.
8494 **/
8495int
8496lpfc_sli_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
8497{
8498
8499 switch (dev_grp) {
8500 case LPFC_PCI_DEV_LP:
8501 phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s3;
8502 phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s3;
8503 break;
James Smart4f774512009-05-22 14:52:35 -04008504 case LPFC_PCI_DEV_OC:
8505 phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s4;
8506 phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s4;
8507 break;
James Smart3772a992009-05-22 14:50:54 -04008508 default:
8509 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8510 "1419 Invalid HBA PCI-device group: 0x%x\n",
8511 dev_grp);
8512 return -ENODEV;
8513 break;
8514 }
8515 phba->lpfc_get_iocb_from_iocbq = lpfc_get_iocb_from_iocbq;
8516 return 0;
8517}
James Smart92d7f7b2007-06-17 19:56:38 -05008518
James Smarte59058c2008-08-24 21:49:00 -04008519/**
James Smart3621a712009-04-06 18:47:14 -04008520 * lpfc_sli_issue_iocb - Wrapper function for __lpfc_sli_issue_iocb
James Smarte59058c2008-08-24 21:49:00 -04008521 * @phba: Pointer to HBA context object.
8522 * @pring: Pointer to driver SLI ring object.
8523 * @piocb: Pointer to command iocb.
8524 * @flag: Flag indicating if this command can be put into txq.
8525 *
8526 * lpfc_sli_issue_iocb is a wrapper around __lpfc_sli_issue_iocb
8527 * function. This function gets the hbalock and calls
8528 * __lpfc_sli_issue_iocb function and will return the error returned
8529 * by __lpfc_sli_issue_iocb function. This wrapper is used by
8530 * functions which do not hold hbalock.
8531 **/
James Smart92d7f7b2007-06-17 19:56:38 -05008532int
James Smart3772a992009-05-22 14:50:54 -04008533lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
James Smart92d7f7b2007-06-17 19:56:38 -05008534 struct lpfc_iocbq *piocb, uint32_t flag)
8535{
James Smartba20c852012-08-03 12:36:52 -04008536 struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
James Smart2a76a282012-08-03 12:35:54 -04008537 struct lpfc_sli_ring *pring;
James Smartba20c852012-08-03 12:36:52 -04008538 struct lpfc_queue *fpeq;
8539 struct lpfc_eqe *eqe;
James Smart92d7f7b2007-06-17 19:56:38 -05008540 unsigned long iflags;
James Smart2a76a282012-08-03 12:35:54 -04008541 int rc, idx;
James Smart92d7f7b2007-06-17 19:56:38 -05008542
James Smart7e56aa22012-08-03 12:35:34 -04008543 if (phba->sli_rev == LPFC_SLI_REV4) {
James Smart2a76a282012-08-03 12:35:54 -04008544 if (piocb->iocb_flag & LPFC_IO_FCP) {
8545 if (unlikely(!phba->sli4_hba.fcp_wq))
8546 return IOCB_ERROR;
8547 idx = lpfc_sli4_scmd_to_wqidx_distr(phba);
8548 piocb->fcp_wqidx = idx;
8549 ring_number = MAX_SLI3_CONFIGURED_RINGS + idx;
James Smart92d7f7b2007-06-17 19:56:38 -05008550
James Smartba20c852012-08-03 12:36:52 -04008551 pring = &phba->sli.ring[ring_number];
8552 spin_lock_irqsave(&pring->ring_lock, iflags);
8553 rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb,
8554 flag);
8555 spin_unlock_irqrestore(&pring->ring_lock, iflags);
8556
8557 if (lpfc_fcp_look_ahead) {
8558 fcp_eq_hdl = &phba->sli4_hba.fcp_eq_hdl[idx];
8559
8560 if (atomic_dec_and_test(&fcp_eq_hdl->
8561 fcp_eq_in_use)) {
8562
8563 /* Get associated EQ with this index */
8564 fpeq = phba->sli4_hba.hba_eq[idx];
8565
8566 /* Turn off interrupts from this EQ */
8567 lpfc_sli4_eq_clr_intr(fpeq);
8568
8569 /*
8570 * Process all the events on FCP EQ
8571 */
8572 while ((eqe = lpfc_sli4_eq_get(fpeq))) {
8573 lpfc_sli4_hba_handle_eqe(phba,
8574 eqe, idx);
8575 fpeq->EQ_processed++;
8576 }
8577
8578 /* Always clear and re-arm the EQ */
8579 lpfc_sli4_eq_release(fpeq,
8580 LPFC_QUEUE_REARM);
8581 }
8582 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
8583 }
8584 } else {
8585 pring = &phba->sli.ring[ring_number];
8586 spin_lock_irqsave(&pring->ring_lock, iflags);
8587 rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb,
8588 flag);
8589 spin_unlock_irqrestore(&pring->ring_lock, iflags);
8590
James Smart2a76a282012-08-03 12:35:54 -04008591 }
James Smart7e56aa22012-08-03 12:35:34 -04008592 } else {
8593 /* For now, SLI2/3 will still use hbalock */
8594 spin_lock_irqsave(&phba->hbalock, iflags);
8595 rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
8596 spin_unlock_irqrestore(&phba->hbalock, iflags);
8597 }
James Smart92d7f7b2007-06-17 19:56:38 -05008598 return rc;
8599}
8600
James Smarte59058c2008-08-24 21:49:00 -04008601/**
James Smart3621a712009-04-06 18:47:14 -04008602 * lpfc_extra_ring_setup - Extra ring setup function
James Smarte59058c2008-08-24 21:49:00 -04008603 * @phba: Pointer to HBA context object.
8604 *
8605 * This function is called while driver attaches with the
8606 * HBA to setup the extra ring. The extra ring is used
8607 * only when driver needs to support target mode functionality
8608 * or IP over FC functionalities.
8609 *
8610 * This function is called with no lock held.
8611 **/
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008612static int
8613lpfc_extra_ring_setup( struct lpfc_hba *phba)
8614{
8615 struct lpfc_sli *psli;
8616 struct lpfc_sli_ring *pring;
8617
8618 psli = &phba->sli;
8619
8620 /* Adjust cmd/rsp ring iocb entries more evenly */
James Smarta4bc3372006-12-02 13:34:16 -05008621
8622 /* Take some away from the FCP ring */
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008623 pring = &psli->ring[psli->fcp_ring];
James Smart7e56aa22012-08-03 12:35:34 -04008624 pring->sli.sli3.numCiocb -= SLI2_IOCB_CMD_R1XTRA_ENTRIES;
8625 pring->sli.sli3.numRiocb -= SLI2_IOCB_RSP_R1XTRA_ENTRIES;
8626 pring->sli.sli3.numCiocb -= SLI2_IOCB_CMD_R3XTRA_ENTRIES;
8627 pring->sli.sli3.numRiocb -= SLI2_IOCB_RSP_R3XTRA_ENTRIES;
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008628
James Smarta4bc3372006-12-02 13:34:16 -05008629 /* and give them to the extra ring */
8630 pring = &psli->ring[psli->extra_ring];
8631
James Smart7e56aa22012-08-03 12:35:34 -04008632 pring->sli.sli3.numCiocb += SLI2_IOCB_CMD_R1XTRA_ENTRIES;
8633 pring->sli.sli3.numRiocb += SLI2_IOCB_RSP_R1XTRA_ENTRIES;
8634 pring->sli.sli3.numCiocb += SLI2_IOCB_CMD_R3XTRA_ENTRIES;
8635 pring->sli.sli3.numRiocb += SLI2_IOCB_RSP_R3XTRA_ENTRIES;
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008636
8637 /* Setup default profile for this ring */
8638 pring->iotag_max = 4096;
8639 pring->num_mask = 1;
8640 pring->prt[0].profile = 0; /* Mask 0 */
James Smarta4bc3372006-12-02 13:34:16 -05008641 pring->prt[0].rctl = phba->cfg_multi_ring_rctl;
8642 pring->prt[0].type = phba->cfg_multi_ring_type;
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008643 pring->prt[0].lpfc_sli_rcv_unsol_event = NULL;
8644 return 0;
8645}
8646
James Smartcb69f7d2011-12-13 13:21:57 -05008647/* lpfc_sli_abts_err_handler - handle a failed ABTS request from an SLI3 port.
8648 * @phba: Pointer to HBA context object.
8649 * @iocbq: Pointer to iocb object.
8650 *
8651 * The async_event handler calls this routine when it receives
8652 * an ASYNC_STATUS_CN event from the port. The port generates
8653 * this event when an Abort Sequence request to an rport fails
8654 * twice in succession. The abort could be originated by the
8655 * driver or by the port. The ABTS could have been for an ELS
8656 * or FCP IO. The port only generates this event when an ABTS
8657 * fails to complete after one retry.
8658 */
8659static void
8660lpfc_sli_abts_err_handler(struct lpfc_hba *phba,
8661 struct lpfc_iocbq *iocbq)
8662{
8663 struct lpfc_nodelist *ndlp = NULL;
8664 uint16_t rpi = 0, vpi = 0;
8665 struct lpfc_vport *vport = NULL;
8666
8667 /* The rpi in the ulpContext is vport-sensitive. */
8668 vpi = iocbq->iocb.un.asyncstat.sub_ctxt_tag;
8669 rpi = iocbq->iocb.ulpContext;
8670
8671 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
8672 "3092 Port generated ABTS async event "
8673 "on vpi %d rpi %d status 0x%x\n",
8674 vpi, rpi, iocbq->iocb.ulpStatus);
8675
8676 vport = lpfc_find_vport_by_vpid(phba, vpi);
8677 if (!vport)
8678 goto err_exit;
8679 ndlp = lpfc_findnode_rpi(vport, rpi);
8680 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
8681 goto err_exit;
8682
8683 if (iocbq->iocb.ulpStatus == IOSTAT_LOCAL_REJECT)
8684 lpfc_sli_abts_recover_port(vport, ndlp);
8685 return;
8686
8687 err_exit:
8688 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
8689 "3095 Event Context not found, no "
8690 "action on vpi %d rpi %d status 0x%x, reason 0x%x\n",
8691 iocbq->iocb.ulpContext, iocbq->iocb.ulpStatus,
8692 vpi, rpi);
8693}
8694
8695/* lpfc_sli4_abts_err_handler - handle a failed ABTS request from an SLI4 port.
8696 * @phba: pointer to HBA context object.
8697 * @ndlp: nodelist pointer for the impacted rport.
8698 * @axri: pointer to the wcqe containing the failed exchange.
8699 *
8700 * The driver calls this routine when it receives an ABORT_XRI_FCP CQE from the
8701 * port. The port generates this event when an abort exchange request to an
8702 * rport fails twice in succession with no reply. The abort could be originated
8703 * by the driver or by the port. The ABTS could have been for an ELS or FCP IO.
8704 */
8705void
8706lpfc_sli4_abts_err_handler(struct lpfc_hba *phba,
8707 struct lpfc_nodelist *ndlp,
8708 struct sli4_wcqe_xri_aborted *axri)
8709{
8710 struct lpfc_vport *vport;
James Smart5c1db2a2012-03-01 22:34:36 -05008711 uint32_t ext_status = 0;
James Smartcb69f7d2011-12-13 13:21:57 -05008712
James Smart6b5151f2012-01-18 16:24:06 -05008713 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
James Smartcb69f7d2011-12-13 13:21:57 -05008714 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
8715 "3115 Node Context not found, driver "
8716 "ignoring abts err event\n");
James Smart6b5151f2012-01-18 16:24:06 -05008717 return;
8718 }
8719
James Smartcb69f7d2011-12-13 13:21:57 -05008720 vport = ndlp->vport;
8721 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
8722 "3116 Port generated FCP XRI ABORT event on "
James Smart5c1db2a2012-03-01 22:34:36 -05008723 "vpi %d rpi %d xri x%x status 0x%x parameter x%x\n",
James Smartcb69f7d2011-12-13 13:21:57 -05008724 ndlp->vport->vpi, ndlp->nlp_rpi,
8725 bf_get(lpfc_wcqe_xa_xri, axri),
James Smart5c1db2a2012-03-01 22:34:36 -05008726 bf_get(lpfc_wcqe_xa_status, axri),
8727 axri->parameter);
James Smartcb69f7d2011-12-13 13:21:57 -05008728
James Smart5c1db2a2012-03-01 22:34:36 -05008729 /*
8730 * Catch the ABTS protocol failure case. Older OCe FW releases returned
8731 * LOCAL_REJECT and 0 for a failed ABTS exchange and later OCe and
8732 * LPe FW releases returned LOCAL_REJECT and SEQUENCE_TIMEOUT.
8733 */
James Smarte3d2b802012-08-14 14:25:43 -04008734 ext_status = axri->parameter & IOERR_PARAM_MASK;
James Smart5c1db2a2012-03-01 22:34:36 -05008735 if ((bf_get(lpfc_wcqe_xa_status, axri) == IOSTAT_LOCAL_REJECT) &&
8736 ((ext_status == IOERR_SEQUENCE_TIMEOUT) || (ext_status == 0)))
James Smartcb69f7d2011-12-13 13:21:57 -05008737 lpfc_sli_abts_recover_port(vport, ndlp);
8738}
8739
James Smarte59058c2008-08-24 21:49:00 -04008740/**
James Smart3621a712009-04-06 18:47:14 -04008741 * lpfc_sli_async_event_handler - ASYNC iocb handler function
James Smarte59058c2008-08-24 21:49:00 -04008742 * @phba: Pointer to HBA context object.
8743 * @pring: Pointer to driver SLI ring object.
8744 * @iocbq: Pointer to iocb object.
8745 *
8746 * This function is called by the slow ring event handler
8747 * function when there is an ASYNC event iocb in the ring.
8748 * This function is called with no lock held.
8749 * Currently this function handles only temperature related
8750 * ASYNC events. The function decodes the temperature sensor
8751 * event message and posts events for the management applications.
8752 **/
James Smart98c9ea52007-10-27 13:37:33 -04008753static void
James Smart57127f12007-10-27 13:37:05 -04008754lpfc_sli_async_event_handler(struct lpfc_hba * phba,
8755 struct lpfc_sli_ring * pring, struct lpfc_iocbq * iocbq)
8756{
8757 IOCB_t *icmd;
8758 uint16_t evt_code;
James Smart57127f12007-10-27 13:37:05 -04008759 struct temp_event temp_event_data;
8760 struct Scsi_Host *shost;
James Smarta257bf92009-04-06 18:48:10 -04008761 uint32_t *iocb_w;
James Smart57127f12007-10-27 13:37:05 -04008762
8763 icmd = &iocbq->iocb;
8764 evt_code = icmd->un.asyncstat.evt_code;
James Smart57127f12007-10-27 13:37:05 -04008765
James Smartcb69f7d2011-12-13 13:21:57 -05008766 switch (evt_code) {
8767 case ASYNC_TEMP_WARN:
8768 case ASYNC_TEMP_SAFE:
8769 temp_event_data.data = (uint32_t) icmd->ulpContext;
8770 temp_event_data.event_type = FC_REG_TEMPERATURE_EVENT;
8771 if (evt_code == ASYNC_TEMP_WARN) {
8772 temp_event_data.event_code = LPFC_THRESHOLD_TEMP;
8773 lpfc_printf_log(phba, KERN_ERR, LOG_TEMP,
8774 "0347 Adapter is very hot, please take "
8775 "corrective action. temperature : %d Celsius\n",
8776 (uint32_t) icmd->ulpContext);
8777 } else {
8778 temp_event_data.event_code = LPFC_NORMAL_TEMP;
8779 lpfc_printf_log(phba, KERN_ERR, LOG_TEMP,
8780 "0340 Adapter temperature is OK now. "
8781 "temperature : %d Celsius\n",
8782 (uint32_t) icmd->ulpContext);
8783 }
8784
8785 /* Send temperature change event to applications */
8786 shost = lpfc_shost_from_vport(phba->pport);
8787 fc_host_post_vendor_event(shost, fc_get_event_number(),
8788 sizeof(temp_event_data), (char *) &temp_event_data,
8789 LPFC_NL_VENDOR_ID);
8790 break;
8791 case ASYNC_STATUS_CN:
8792 lpfc_sli_abts_err_handler(phba, iocbq);
8793 break;
8794 default:
James Smarta257bf92009-04-06 18:48:10 -04008795 iocb_w = (uint32_t *) icmd;
James Smartcb69f7d2011-12-13 13:21:57 -05008796 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart76bb24e2007-10-27 13:38:00 -04008797 "0346 Ring %d handler: unexpected ASYNC_STATUS"
James Smarte4e74272009-07-19 10:01:38 -04008798 " evt_code 0x%x\n"
James Smarta257bf92009-04-06 18:48:10 -04008799 "W0 0x%08x W1 0x%08x W2 0x%08x W3 0x%08x\n"
8800 "W4 0x%08x W5 0x%08x W6 0x%08x W7 0x%08x\n"
8801 "W8 0x%08x W9 0x%08x W10 0x%08x W11 0x%08x\n"
8802 "W12 0x%08x W13 0x%08x W14 0x%08x W15 0x%08x\n",
James Smartcb69f7d2011-12-13 13:21:57 -05008803 pring->ringno, icmd->un.asyncstat.evt_code,
James Smarta257bf92009-04-06 18:48:10 -04008804 iocb_w[0], iocb_w[1], iocb_w[2], iocb_w[3],
8805 iocb_w[4], iocb_w[5], iocb_w[6], iocb_w[7],
8806 iocb_w[8], iocb_w[9], iocb_w[10], iocb_w[11],
8807 iocb_w[12], iocb_w[13], iocb_w[14], iocb_w[15]);
8808
James Smartcb69f7d2011-12-13 13:21:57 -05008809 break;
James Smart57127f12007-10-27 13:37:05 -04008810 }
James Smart57127f12007-10-27 13:37:05 -04008811}
8812
8813
James Smarte59058c2008-08-24 21:49:00 -04008814/**
James Smart3621a712009-04-06 18:47:14 -04008815 * lpfc_sli_setup - SLI ring setup function
James Smarte59058c2008-08-24 21:49:00 -04008816 * @phba: Pointer to HBA context object.
8817 *
8818 * lpfc_sli_setup sets up rings of the SLI interface with
8819 * number of iocbs per ring and iotags. This function is
8820 * called while driver attach to the HBA and before the
8821 * interrupts are enabled. So there is no need for locking.
8822 *
8823 * This function always returns 0.
8824 **/
dea31012005-04-17 16:05:31 -05008825int
8826lpfc_sli_setup(struct lpfc_hba *phba)
8827{
James Smarted957682007-06-17 19:56:37 -05008828 int i, totiocbsize = 0;
dea31012005-04-17 16:05:31 -05008829 struct lpfc_sli *psli = &phba->sli;
8830 struct lpfc_sli_ring *pring;
8831
James Smart2a76a282012-08-03 12:35:54 -04008832 psli->num_rings = MAX_SLI3_CONFIGURED_RINGS;
8833 if (phba->sli_rev == LPFC_SLI_REV4)
James Smart67d12732012-08-03 12:36:13 -04008834 psli->num_rings += phba->cfg_fcp_io_channel;
dea31012005-04-17 16:05:31 -05008835 psli->sli_flag = 0;
8836 psli->fcp_ring = LPFC_FCP_RING;
8837 psli->next_ring = LPFC_FCP_NEXT_RING;
James Smarta4bc3372006-12-02 13:34:16 -05008838 psli->extra_ring = LPFC_EXTRA_RING;
dea31012005-04-17 16:05:31 -05008839
James Bottomley604a3e32005-10-29 10:28:33 -05008840 psli->iocbq_lookup = NULL;
8841 psli->iocbq_lookup_len = 0;
8842 psli->last_iotag = 0;
8843
dea31012005-04-17 16:05:31 -05008844 for (i = 0; i < psli->num_rings; i++) {
8845 pring = &psli->ring[i];
8846 switch (i) {
8847 case LPFC_FCP_RING: /* ring 0 - FCP */
8848 /* numCiocb and numRiocb are used in config_port */
James Smart7e56aa22012-08-03 12:35:34 -04008849 pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R0_ENTRIES;
8850 pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R0_ENTRIES;
8851 pring->sli.sli3.numCiocb +=
8852 SLI2_IOCB_CMD_R1XTRA_ENTRIES;
8853 pring->sli.sli3.numRiocb +=
8854 SLI2_IOCB_RSP_R1XTRA_ENTRIES;
8855 pring->sli.sli3.numCiocb +=
8856 SLI2_IOCB_CMD_R3XTRA_ENTRIES;
8857 pring->sli.sli3.numRiocb +=
8858 SLI2_IOCB_RSP_R3XTRA_ENTRIES;
8859 pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05008860 SLI3_IOCB_CMD_SIZE :
8861 SLI2_IOCB_CMD_SIZE;
James Smart7e56aa22012-08-03 12:35:34 -04008862 pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05008863 SLI3_IOCB_RSP_SIZE :
8864 SLI2_IOCB_RSP_SIZE;
dea31012005-04-17 16:05:31 -05008865 pring->iotag_ctr = 0;
8866 pring->iotag_max =
James Smart92d7f7b2007-06-17 19:56:38 -05008867 (phba->cfg_hba_queue_depth * 2);
dea31012005-04-17 16:05:31 -05008868 pring->fast_iotag = pring->iotag_max;
8869 pring->num_mask = 0;
8870 break;
James Smarta4bc3372006-12-02 13:34:16 -05008871 case LPFC_EXTRA_RING: /* ring 1 - EXTRA */
dea31012005-04-17 16:05:31 -05008872 /* numCiocb and numRiocb are used in config_port */
James Smart7e56aa22012-08-03 12:35:34 -04008873 pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R1_ENTRIES;
8874 pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R1_ENTRIES;
8875 pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05008876 SLI3_IOCB_CMD_SIZE :
8877 SLI2_IOCB_CMD_SIZE;
James Smart7e56aa22012-08-03 12:35:34 -04008878 pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05008879 SLI3_IOCB_RSP_SIZE :
8880 SLI2_IOCB_RSP_SIZE;
James Smart2e0fef82007-06-17 19:56:36 -05008881 pring->iotag_max = phba->cfg_hba_queue_depth;
dea31012005-04-17 16:05:31 -05008882 pring->num_mask = 0;
8883 break;
8884 case LPFC_ELS_RING: /* ring 2 - ELS / CT */
8885 /* numCiocb and numRiocb are used in config_port */
James Smart7e56aa22012-08-03 12:35:34 -04008886 pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R2_ENTRIES;
8887 pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R2_ENTRIES;
8888 pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05008889 SLI3_IOCB_CMD_SIZE :
8890 SLI2_IOCB_CMD_SIZE;
James Smart7e56aa22012-08-03 12:35:34 -04008891 pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -05008892 SLI3_IOCB_RSP_SIZE :
8893 SLI2_IOCB_RSP_SIZE;
dea31012005-04-17 16:05:31 -05008894 pring->fast_iotag = 0;
8895 pring->iotag_ctr = 0;
8896 pring->iotag_max = 4096;
James Smart57127f12007-10-27 13:37:05 -04008897 pring->lpfc_sli_rcv_async_status =
8898 lpfc_sli_async_event_handler;
James Smart6669f9b2009-10-02 15:16:45 -04008899 pring->num_mask = LPFC_MAX_RING_MASK;
dea31012005-04-17 16:05:31 -05008900 pring->prt[0].profile = 0; /* Mask 0 */
James Smart6a9c52c2009-10-02 15:16:51 -04008901 pring->prt[0].rctl = FC_RCTL_ELS_REQ;
8902 pring->prt[0].type = FC_TYPE_ELS;
dea31012005-04-17 16:05:31 -05008903 pring->prt[0].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -05008904 lpfc_els_unsol_event;
dea31012005-04-17 16:05:31 -05008905 pring->prt[1].profile = 0; /* Mask 1 */
James Smart6a9c52c2009-10-02 15:16:51 -04008906 pring->prt[1].rctl = FC_RCTL_ELS_REP;
8907 pring->prt[1].type = FC_TYPE_ELS;
dea31012005-04-17 16:05:31 -05008908 pring->prt[1].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -05008909 lpfc_els_unsol_event;
dea31012005-04-17 16:05:31 -05008910 pring->prt[2].profile = 0; /* Mask 2 */
8911 /* NameServer Inquiry */
James Smart6a9c52c2009-10-02 15:16:51 -04008912 pring->prt[2].rctl = FC_RCTL_DD_UNSOL_CTL;
dea31012005-04-17 16:05:31 -05008913 /* NameServer */
James Smart6a9c52c2009-10-02 15:16:51 -04008914 pring->prt[2].type = FC_TYPE_CT;
dea31012005-04-17 16:05:31 -05008915 pring->prt[2].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -05008916 lpfc_ct_unsol_event;
dea31012005-04-17 16:05:31 -05008917 pring->prt[3].profile = 0; /* Mask 3 */
8918 /* NameServer response */
James Smart6a9c52c2009-10-02 15:16:51 -04008919 pring->prt[3].rctl = FC_RCTL_DD_SOL_CTL;
dea31012005-04-17 16:05:31 -05008920 /* NameServer */
James Smart6a9c52c2009-10-02 15:16:51 -04008921 pring->prt[3].type = FC_TYPE_CT;
dea31012005-04-17 16:05:31 -05008922 pring->prt[3].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -05008923 lpfc_ct_unsol_event;
dea31012005-04-17 16:05:31 -05008924 break;
8925 }
James Smart7e56aa22012-08-03 12:35:34 -04008926 totiocbsize += (pring->sli.sli3.numCiocb *
8927 pring->sli.sli3.sizeCiocb) +
8928 (pring->sli.sli3.numRiocb * pring->sli.sli3.sizeRiocb);
dea31012005-04-17 16:05:31 -05008929 }
James Smarted957682007-06-17 19:56:37 -05008930 if (totiocbsize > MAX_SLIM_IOCB_SIZE) {
dea31012005-04-17 16:05:31 -05008931 /* Too many cmd / rsp ring entries in SLI2 SLIM */
James Smarte8b62012007-08-02 11:10:09 -04008932 printk(KERN_ERR "%d:0462 Too many cmd / rsp ring entries in "
8933 "SLI2 SLIM Data: x%x x%lx\n",
8934 phba->brd_no, totiocbsize,
8935 (unsigned long) MAX_SLIM_IOCB_SIZE);
dea31012005-04-17 16:05:31 -05008936 }
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05008937 if (phba->cfg_multi_ring_support == 2)
8938 lpfc_extra_ring_setup(phba);
dea31012005-04-17 16:05:31 -05008939
8940 return 0;
8941}
8942
James Smarte59058c2008-08-24 21:49:00 -04008943/**
James Smart3621a712009-04-06 18:47:14 -04008944 * lpfc_sli_queue_setup - Queue initialization function
James Smarte59058c2008-08-24 21:49:00 -04008945 * @phba: Pointer to HBA context object.
8946 *
8947 * lpfc_sli_queue_setup sets up mailbox queues and iocb queues for each
8948 * ring. This function also initializes ring indices of each ring.
8949 * This function is called during the initialization of the SLI
8950 * interface of an HBA.
8951 * This function is called with no lock held and always returns
8952 * 1.
8953 **/
dea31012005-04-17 16:05:31 -05008954int
James Smart2e0fef82007-06-17 19:56:36 -05008955lpfc_sli_queue_setup(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05008956{
8957 struct lpfc_sli *psli;
8958 struct lpfc_sli_ring *pring;
James Bottomley604a3e32005-10-29 10:28:33 -05008959 int i;
dea31012005-04-17 16:05:31 -05008960
8961 psli = &phba->sli;
James Smart2e0fef82007-06-17 19:56:36 -05008962 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05008963 INIT_LIST_HEAD(&psli->mboxq);
James Smart92d7f7b2007-06-17 19:56:38 -05008964 INIT_LIST_HEAD(&psli->mboxq_cmpl);
dea31012005-04-17 16:05:31 -05008965 /* Initialize list headers for txq and txcmplq as double linked lists */
8966 for (i = 0; i < psli->num_rings; i++) {
8967 pring = &psli->ring[i];
8968 pring->ringno = i;
James Smart7e56aa22012-08-03 12:35:34 -04008969 pring->sli.sli3.next_cmdidx = 0;
8970 pring->sli.sli3.local_getidx = 0;
8971 pring->sli.sli3.cmdidx = 0;
dea31012005-04-17 16:05:31 -05008972 INIT_LIST_HEAD(&pring->txq);
8973 INIT_LIST_HEAD(&pring->txcmplq);
8974 INIT_LIST_HEAD(&pring->iocb_continueq);
James Smart9c2face2008-01-11 01:53:18 -05008975 INIT_LIST_HEAD(&pring->iocb_continue_saveq);
dea31012005-04-17 16:05:31 -05008976 INIT_LIST_HEAD(&pring->postbufq);
James Smart7e56aa22012-08-03 12:35:34 -04008977 spin_lock_init(&pring->ring_lock);
dea31012005-04-17 16:05:31 -05008978 }
James Smart2e0fef82007-06-17 19:56:36 -05008979 spin_unlock_irq(&phba->hbalock);
8980 return 1;
dea31012005-04-17 16:05:31 -05008981}
8982
James Smarte59058c2008-08-24 21:49:00 -04008983/**
James Smart04c68492009-05-22 14:52:52 -04008984 * lpfc_sli_mbox_sys_flush - Flush mailbox command sub-system
8985 * @phba: Pointer to HBA context object.
8986 *
8987 * This routine flushes the mailbox command subsystem. It will unconditionally
8988 * flush all the mailbox commands in the three possible stages in the mailbox
8989 * command sub-system: pending mailbox command queue; the outstanding mailbox
8990 * command; and completed mailbox command queue. It is caller's responsibility
8991 * to make sure that the driver is in the proper state to flush the mailbox
8992 * command sub-system. Namely, the posting of mailbox commands into the
8993 * pending mailbox command queue from the various clients must be stopped;
8994 * either the HBA is in a state that it will never works on the outstanding
8995 * mailbox command (such as in EEH or ERATT conditions) or the outstanding
8996 * mailbox command has been completed.
8997 **/
8998static void
8999lpfc_sli_mbox_sys_flush(struct lpfc_hba *phba)
9000{
9001 LIST_HEAD(completions);
9002 struct lpfc_sli *psli = &phba->sli;
9003 LPFC_MBOXQ_t *pmb;
9004 unsigned long iflag;
9005
9006 /* Flush all the mailbox commands in the mbox system */
9007 spin_lock_irqsave(&phba->hbalock, iflag);
9008 /* The pending mailbox command queue */
9009 list_splice_init(&phba->sli.mboxq, &completions);
9010 /* The outstanding active mailbox command */
9011 if (psli->mbox_active) {
9012 list_add_tail(&psli->mbox_active->list, &completions);
9013 psli->mbox_active = NULL;
9014 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
9015 }
9016 /* The completed mailbox command queue */
9017 list_splice_init(&phba->sli.mboxq_cmpl, &completions);
9018 spin_unlock_irqrestore(&phba->hbalock, iflag);
9019
9020 /* Return all flushed mailbox commands with MBX_NOT_FINISHED status */
9021 while (!list_empty(&completions)) {
9022 list_remove_head(&completions, pmb, LPFC_MBOXQ_t, list);
9023 pmb->u.mb.mbxStatus = MBX_NOT_FINISHED;
9024 if (pmb->mbox_cmpl)
9025 pmb->mbox_cmpl(phba, pmb);
9026 }
9027}
9028
9029/**
James Smart3621a712009-04-06 18:47:14 -04009030 * lpfc_sli_host_down - Vport cleanup function
James Smarte59058c2008-08-24 21:49:00 -04009031 * @vport: Pointer to virtual port object.
9032 *
9033 * lpfc_sli_host_down is called to clean up the resources
9034 * associated with a vport before destroying virtual
9035 * port data structures.
9036 * This function does following operations:
9037 * - Free discovery resources associated with this virtual
9038 * port.
9039 * - Free iocbs associated with this virtual port in
9040 * the txq.
9041 * - Send abort for all iocb commands associated with this
9042 * vport in txcmplq.
9043 *
9044 * This function is called with no lock held and always returns 1.
9045 **/
dea31012005-04-17 16:05:31 -05009046int
James Smart92d7f7b2007-06-17 19:56:38 -05009047lpfc_sli_host_down(struct lpfc_vport *vport)
9048{
James Smart858c9f62007-06-17 19:56:39 -05009049 LIST_HEAD(completions);
James Smart92d7f7b2007-06-17 19:56:38 -05009050 struct lpfc_hba *phba = vport->phba;
9051 struct lpfc_sli *psli = &phba->sli;
9052 struct lpfc_sli_ring *pring;
9053 struct lpfc_iocbq *iocb, *next_iocb;
James Smart92d7f7b2007-06-17 19:56:38 -05009054 int i;
9055 unsigned long flags = 0;
9056 uint16_t prev_pring_flag;
9057
9058 lpfc_cleanup_discovery_resources(vport);
9059
9060 spin_lock_irqsave(&phba->hbalock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -05009061 for (i = 0; i < psli->num_rings; i++) {
9062 pring = &psli->ring[i];
9063 prev_pring_flag = pring->flag;
James Smart5e9d9b82008-06-14 22:52:53 -04009064 /* Only slow rings */
9065 if (pring->ringno == LPFC_ELS_RING) {
James Smart858c9f62007-06-17 19:56:39 -05009066 pring->flag |= LPFC_DEFERRED_RING_EVENT;
James Smart5e9d9b82008-06-14 22:52:53 -04009067 /* Set the lpfc data pending flag */
9068 set_bit(LPFC_DATA_READY, &phba->data_flags);
9069 }
James Smart92d7f7b2007-06-17 19:56:38 -05009070 /*
9071 * Error everything on the txq since these iocbs have not been
9072 * given to the FW yet.
9073 */
James Smart92d7f7b2007-06-17 19:56:38 -05009074 list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
9075 if (iocb->vport != vport)
9076 continue;
James Smart858c9f62007-06-17 19:56:39 -05009077 list_move_tail(&iocb->list, &completions);
James Smart92d7f7b2007-06-17 19:56:38 -05009078 }
9079
9080 /* Next issue ABTS for everything on the txcmplq */
9081 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq,
9082 list) {
9083 if (iocb->vport != vport)
9084 continue;
9085 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
9086 }
9087
9088 pring->flag = prev_pring_flag;
9089 }
9090
9091 spin_unlock_irqrestore(&phba->hbalock, flags);
9092
James Smarta257bf92009-04-06 18:48:10 -04009093 /* Cancel all the IOCBs from the completions list */
9094 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
9095 IOERR_SLI_DOWN);
James Smart92d7f7b2007-06-17 19:56:38 -05009096 return 1;
9097}
9098
James Smarte59058c2008-08-24 21:49:00 -04009099/**
James Smart3621a712009-04-06 18:47:14 -04009100 * lpfc_sli_hba_down - Resource cleanup function for the HBA
James Smarte59058c2008-08-24 21:49:00 -04009101 * @phba: Pointer to HBA context object.
9102 *
9103 * This function cleans up all iocb, buffers, mailbox commands
9104 * while shutting down the HBA. This function is called with no
9105 * lock held and always returns 1.
9106 * This function does the following to cleanup driver resources:
9107 * - Free discovery resources for each virtual port
9108 * - Cleanup any pending fabric iocbs
9109 * - Iterate through the iocb txq and free each entry
9110 * in the list.
9111 * - Free up any buffer posted to the HBA
9112 * - Free mailbox commands in the mailbox queue.
9113 **/
James Smart92d7f7b2007-06-17 19:56:38 -05009114int
James Smart2e0fef82007-06-17 19:56:36 -05009115lpfc_sli_hba_down(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05009116{
James Smart2534ba72007-04-25 09:52:20 -04009117 LIST_HEAD(completions);
James Smart2e0fef82007-06-17 19:56:36 -05009118 struct lpfc_sli *psli = &phba->sli;
dea31012005-04-17 16:05:31 -05009119 struct lpfc_sli_ring *pring;
James Smart0ff10d42008-01-11 01:52:36 -05009120 struct lpfc_dmabuf *buf_ptr;
dea31012005-04-17 16:05:31 -05009121 unsigned long flags = 0;
James Smart04c68492009-05-22 14:52:52 -04009122 int i;
9123
9124 /* Shutdown the mailbox command sub-system */
James Smart618a5232012-06-12 13:54:36 -04009125 lpfc_sli_mbox_sys_shutdown(phba, LPFC_MBX_WAIT);
dea31012005-04-17 16:05:31 -05009126
dea31012005-04-17 16:05:31 -05009127 lpfc_hba_down_prep(phba);
9128
James Smart92d7f7b2007-06-17 19:56:38 -05009129 lpfc_fabric_abort_hba(phba);
9130
James Smart2e0fef82007-06-17 19:56:36 -05009131 spin_lock_irqsave(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05009132 for (i = 0; i < psli->num_rings; i++) {
9133 pring = &psli->ring[i];
James Smart5e9d9b82008-06-14 22:52:53 -04009134 /* Only slow rings */
9135 if (pring->ringno == LPFC_ELS_RING) {
James Smart858c9f62007-06-17 19:56:39 -05009136 pring->flag |= LPFC_DEFERRED_RING_EVENT;
James Smart5e9d9b82008-06-14 22:52:53 -04009137 /* Set the lpfc data pending flag */
9138 set_bit(LPFC_DATA_READY, &phba->data_flags);
9139 }
dea31012005-04-17 16:05:31 -05009140
9141 /*
9142 * Error everything on the txq since these iocbs have not been
9143 * given to the FW yet.
9144 */
James Smart2534ba72007-04-25 09:52:20 -04009145 list_splice_init(&pring->txq, &completions);
dea31012005-04-17 16:05:31 -05009146 }
James Smart2e0fef82007-06-17 19:56:36 -05009147 spin_unlock_irqrestore(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05009148
James Smarta257bf92009-04-06 18:48:10 -04009149 /* Cancel all the IOCBs from the completions list */
9150 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
9151 IOERR_SLI_DOWN);
James Smart2534ba72007-04-25 09:52:20 -04009152
James Smart0ff10d42008-01-11 01:52:36 -05009153 spin_lock_irqsave(&phba->hbalock, flags);
9154 list_splice_init(&phba->elsbuf, &completions);
9155 phba->elsbuf_cnt = 0;
9156 phba->elsbuf_prev_cnt = 0;
9157 spin_unlock_irqrestore(&phba->hbalock, flags);
9158
9159 while (!list_empty(&completions)) {
9160 list_remove_head(&completions, buf_ptr,
9161 struct lpfc_dmabuf, list);
9162 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
9163 kfree(buf_ptr);
9164 }
9165
dea31012005-04-17 16:05:31 -05009166 /* Return any active mbox cmds */
9167 del_timer_sync(&psli->mbox_tmo);
James Smart92d7f7b2007-06-17 19:56:38 -05009168
James Smartda0436e2009-05-22 14:51:39 -04009169 spin_lock_irqsave(&phba->pport->work_port_lock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -05009170 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
James Smartda0436e2009-05-22 14:51:39 -04009171 spin_unlock_irqrestore(&phba->pport->work_port_lock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -05009172
James Smartda0436e2009-05-22 14:51:39 -04009173 return 1;
9174}
James Smart92d7f7b2007-06-17 19:56:38 -05009175
James Smartda0436e2009-05-22 14:51:39 -04009176/**
James Smart3621a712009-04-06 18:47:14 -04009177 * lpfc_sli_pcimem_bcopy - SLI memory copy function
James Smarte59058c2008-08-24 21:49:00 -04009178 * @srcp: Source memory pointer.
9179 * @destp: Destination memory pointer.
9180 * @cnt: Number of words required to be copied.
9181 *
9182 * This function is used for copying data between driver memory
9183 * and the SLI memory. This function also changes the endianness
9184 * of each word if native endianness is different from SLI
9185 * endianness. This function can be called with or without
9186 * lock.
9187 **/
dea31012005-04-17 16:05:31 -05009188void
9189lpfc_sli_pcimem_bcopy(void *srcp, void *destp, uint32_t cnt)
9190{
9191 uint32_t *src = srcp;
9192 uint32_t *dest = destp;
9193 uint32_t ldata;
9194 int i;
9195
9196 for (i = 0; i < (int)cnt; i += sizeof (uint32_t)) {
9197 ldata = *src;
9198 ldata = le32_to_cpu(ldata);
9199 *dest = ldata;
9200 src++;
9201 dest++;
9202 }
9203}
9204
James Smarte59058c2008-08-24 21:49:00 -04009205
9206/**
James Smarta0c87cb2009-07-19 10:01:10 -04009207 * lpfc_sli_bemem_bcopy - SLI memory copy function
9208 * @srcp: Source memory pointer.
9209 * @destp: Destination memory pointer.
9210 * @cnt: Number of words required to be copied.
9211 *
9212 * This function is used for copying data between a data structure
9213 * with big endian representation to local endianness.
9214 * This function can be called with or without lock.
9215 **/
9216void
9217lpfc_sli_bemem_bcopy(void *srcp, void *destp, uint32_t cnt)
9218{
9219 uint32_t *src = srcp;
9220 uint32_t *dest = destp;
9221 uint32_t ldata;
9222 int i;
9223
9224 for (i = 0; i < (int)cnt; i += sizeof(uint32_t)) {
9225 ldata = *src;
9226 ldata = be32_to_cpu(ldata);
9227 *dest = ldata;
9228 src++;
9229 dest++;
9230 }
9231}
9232
9233/**
James Smart3621a712009-04-06 18:47:14 -04009234 * lpfc_sli_ringpostbuf_put - Function to add a buffer to postbufq
James Smarte59058c2008-08-24 21:49:00 -04009235 * @phba: Pointer to HBA context object.
9236 * @pring: Pointer to driver SLI ring object.
9237 * @mp: Pointer to driver buffer object.
9238 *
9239 * This function is called with no lock held.
9240 * It always return zero after adding the buffer to the postbufq
9241 * buffer list.
9242 **/
dea31012005-04-17 16:05:31 -05009243int
James Smart2e0fef82007-06-17 19:56:36 -05009244lpfc_sli_ringpostbuf_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9245 struct lpfc_dmabuf *mp)
dea31012005-04-17 16:05:31 -05009246{
9247 /* Stick struct lpfc_dmabuf at end of postbufq so driver can look it up
9248 later */
James Smart2e0fef82007-06-17 19:56:36 -05009249 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009250 list_add_tail(&mp->list, &pring->postbufq);
dea31012005-04-17 16:05:31 -05009251 pring->postbufq_cnt++;
James Smart2e0fef82007-06-17 19:56:36 -05009252 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009253 return 0;
9254}
9255
James Smarte59058c2008-08-24 21:49:00 -04009256/**
James Smart3621a712009-04-06 18:47:14 -04009257 * lpfc_sli_get_buffer_tag - allocates a tag for a CMD_QUE_XRI64_CX buffer
James Smarte59058c2008-08-24 21:49:00 -04009258 * @phba: Pointer to HBA context object.
9259 *
9260 * When HBQ is enabled, buffers are searched based on tags. This function
9261 * allocates a tag for buffer posted using CMD_QUE_XRI64_CX iocb. The
9262 * tag is bit wise or-ed with QUE_BUFTAG_BIT to make sure that the tag
9263 * does not conflict with tags of buffer posted for unsolicited events.
9264 * The function returns the allocated tag. The function is called with
9265 * no locks held.
9266 **/
James Smart76bb24e2007-10-27 13:38:00 -04009267uint32_t
9268lpfc_sli_get_buffer_tag(struct lpfc_hba *phba)
9269{
9270 spin_lock_irq(&phba->hbalock);
9271 phba->buffer_tag_count++;
9272 /*
9273 * Always set the QUE_BUFTAG_BIT to distiguish between
9274 * a tag assigned by HBQ.
9275 */
9276 phba->buffer_tag_count |= QUE_BUFTAG_BIT;
9277 spin_unlock_irq(&phba->hbalock);
9278 return phba->buffer_tag_count;
9279}
9280
James Smarte59058c2008-08-24 21:49:00 -04009281/**
James Smart3621a712009-04-06 18:47:14 -04009282 * lpfc_sli_ring_taggedbuf_get - find HBQ buffer associated with given tag
James Smarte59058c2008-08-24 21:49:00 -04009283 * @phba: Pointer to HBA context object.
9284 * @pring: Pointer to driver SLI ring object.
9285 * @tag: Buffer tag.
9286 *
9287 * Buffers posted using CMD_QUE_XRI64_CX iocb are in pring->postbufq
9288 * list. After HBA DMA data to these buffers, CMD_IOCB_RET_XRI64_CX
9289 * iocb is posted to the response ring with the tag of the buffer.
9290 * This function searches the pring->postbufq list using the tag
9291 * to find buffer associated with CMD_IOCB_RET_XRI64_CX
9292 * iocb. If the buffer is found then lpfc_dmabuf object of the
9293 * buffer is returned to the caller else NULL is returned.
9294 * This function is called with no lock held.
9295 **/
James Smart76bb24e2007-10-27 13:38:00 -04009296struct lpfc_dmabuf *
9297lpfc_sli_ring_taggedbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9298 uint32_t tag)
9299{
9300 struct lpfc_dmabuf *mp, *next_mp;
9301 struct list_head *slp = &pring->postbufq;
9302
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009303 /* Search postbufq, from the beginning, looking for a match on tag */
James Smart76bb24e2007-10-27 13:38:00 -04009304 spin_lock_irq(&phba->hbalock);
9305 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
9306 if (mp->buffer_tag == tag) {
9307 list_del_init(&mp->list);
9308 pring->postbufq_cnt--;
9309 spin_unlock_irq(&phba->hbalock);
9310 return mp;
9311 }
9312 }
9313
9314 spin_unlock_irq(&phba->hbalock);
9315 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smartd7c255b2008-08-24 21:50:00 -04009316 "0402 Cannot find virtual addr for buffer tag on "
James Smart76bb24e2007-10-27 13:38:00 -04009317 "ring %d Data x%lx x%p x%p x%x\n",
9318 pring->ringno, (unsigned long) tag,
9319 slp->next, slp->prev, pring->postbufq_cnt);
9320
9321 return NULL;
9322}
dea31012005-04-17 16:05:31 -05009323
James Smarte59058c2008-08-24 21:49:00 -04009324/**
James Smart3621a712009-04-06 18:47:14 -04009325 * lpfc_sli_ringpostbuf_get - search buffers for unsolicited CT and ELS events
James Smarte59058c2008-08-24 21:49:00 -04009326 * @phba: Pointer to HBA context object.
9327 * @pring: Pointer to driver SLI ring object.
9328 * @phys: DMA address of the buffer.
9329 *
9330 * This function searches the buffer list using the dma_address
9331 * of unsolicited event to find the driver's lpfc_dmabuf object
9332 * corresponding to the dma_address. The function returns the
9333 * lpfc_dmabuf object if a buffer is found else it returns NULL.
9334 * This function is called by the ct and els unsolicited event
9335 * handlers to get the buffer associated with the unsolicited
9336 * event.
9337 *
9338 * This function is called with no lock held.
9339 **/
dea31012005-04-17 16:05:31 -05009340struct lpfc_dmabuf *
9341lpfc_sli_ringpostbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9342 dma_addr_t phys)
9343{
9344 struct lpfc_dmabuf *mp, *next_mp;
9345 struct list_head *slp = &pring->postbufq;
9346
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009347 /* Search postbufq, from the beginning, looking for a match on phys */
James Smart2e0fef82007-06-17 19:56:36 -05009348 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009349 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
9350 if (mp->phys == phys) {
9351 list_del_init(&mp->list);
9352 pring->postbufq_cnt--;
James Smart2e0fef82007-06-17 19:56:36 -05009353 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009354 return mp;
9355 }
9356 }
9357
James Smart2e0fef82007-06-17 19:56:36 -05009358 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009359 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04009360 "0410 Cannot find virtual addr for mapped buf on "
dea31012005-04-17 16:05:31 -05009361 "ring %d Data x%llx x%p x%p x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04009362 pring->ringno, (unsigned long long)phys,
dea31012005-04-17 16:05:31 -05009363 slp->next, slp->prev, pring->postbufq_cnt);
9364 return NULL;
9365}
9366
James Smarte59058c2008-08-24 21:49:00 -04009367/**
James Smart3621a712009-04-06 18:47:14 -04009368 * lpfc_sli_abort_els_cmpl - Completion handler for the els abort iocbs
James Smarte59058c2008-08-24 21:49:00 -04009369 * @phba: Pointer to HBA context object.
9370 * @cmdiocb: Pointer to driver command iocb object.
9371 * @rspiocb: Pointer to driver response iocb object.
9372 *
9373 * This function is the completion handler for the abort iocbs for
9374 * ELS commands. This function is called from the ELS ring event
9375 * handler with no lock held. This function frees memory resources
9376 * associated with the abort iocb.
9377 **/
dea31012005-04-17 16:05:31 -05009378static void
James Smart2e0fef82007-06-17 19:56:36 -05009379lpfc_sli_abort_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
9380 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05009381{
James Smart2e0fef82007-06-17 19:56:36 -05009382 IOCB_t *irsp = &rspiocb->iocb;
James Smart2680eea2007-04-25 09:52:55 -04009383 uint16_t abort_iotag, abort_context;
James Smartff78d8f2011-12-13 13:21:35 -05009384 struct lpfc_iocbq *abort_iocb = NULL;
James Smart2680eea2007-04-25 09:52:55 -04009385
9386 if (irsp->ulpStatus) {
James Smartff78d8f2011-12-13 13:21:35 -05009387
9388 /*
9389 * Assume that the port already completed and returned, or
9390 * will return the iocb. Just Log the message.
9391 */
James Smart2680eea2007-04-25 09:52:55 -04009392 abort_context = cmdiocb->iocb.un.acxri.abortContextTag;
9393 abort_iotag = cmdiocb->iocb.un.acxri.abortIoTag;
9394
James Smart2e0fef82007-06-17 19:56:36 -05009395 spin_lock_irq(&phba->hbalock);
James Smart45ed1192009-10-02 15:17:02 -04009396 if (phba->sli_rev < LPFC_SLI_REV4) {
9397 if (abort_iotag != 0 &&
9398 abort_iotag <= phba->sli.last_iotag)
9399 abort_iocb =
9400 phba->sli.iocbq_lookup[abort_iotag];
9401 } else
9402 /* For sli4 the abort_tag is the XRI,
9403 * so the abort routine puts the iotag of the iocb
9404 * being aborted in the context field of the abort
9405 * IOCB.
9406 */
9407 abort_iocb = phba->sli.iocbq_lookup[abort_context];
James Smart2680eea2007-04-25 09:52:55 -04009408
James Smart2a9bf3d2010-06-07 15:24:45 -04009409 lpfc_printf_log(phba, KERN_WARNING, LOG_ELS | LOG_SLI,
9410 "0327 Cannot abort els iocb %p "
9411 "with tag %x context %x, abort status %x, "
9412 "abort code %x\n",
9413 abort_iocb, abort_iotag, abort_context,
9414 irsp->ulpStatus, irsp->un.ulpWord[4]);
James Smart2680eea2007-04-25 09:52:55 -04009415
James Smartff78d8f2011-12-13 13:21:35 -05009416 spin_unlock_irq(&phba->hbalock);
James Smart2680eea2007-04-25 09:52:55 -04009417 }
James Bottomley604a3e32005-10-29 10:28:33 -05009418 lpfc_sli_release_iocbq(phba, cmdiocb);
dea31012005-04-17 16:05:31 -05009419 return;
9420}
9421
James Smarte59058c2008-08-24 21:49:00 -04009422/**
James Smart3621a712009-04-06 18:47:14 -04009423 * lpfc_ignore_els_cmpl - Completion handler for aborted ELS command
James Smarte59058c2008-08-24 21:49:00 -04009424 * @phba: Pointer to HBA context object.
9425 * @cmdiocb: Pointer to driver command iocb object.
9426 * @rspiocb: Pointer to driver response iocb object.
9427 *
9428 * The function is called from SLI ring event handler with no
9429 * lock held. This function is the completion handler for ELS commands
9430 * which are aborted. The function frees memory resources used for
9431 * the aborted ELS commands.
9432 **/
James Smart92d7f7b2007-06-17 19:56:38 -05009433static void
9434lpfc_ignore_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
9435 struct lpfc_iocbq *rspiocb)
9436{
9437 IOCB_t *irsp = &rspiocb->iocb;
9438
9439 /* ELS cmd tag <ulpIoTag> completes */
9440 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
James Smartd7c255b2008-08-24 21:50:00 -04009441 "0139 Ignoring ELS cmd tag x%x completion Data: "
James Smart92d7f7b2007-06-17 19:56:38 -05009442 "x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04009443 irsp->ulpIoTag, irsp->ulpStatus,
James Smart92d7f7b2007-06-17 19:56:38 -05009444 irsp->un.ulpWord[4], irsp->ulpTimeout);
James Smart858c9f62007-06-17 19:56:39 -05009445 if (cmdiocb->iocb.ulpCommand == CMD_GEN_REQUEST64_CR)
9446 lpfc_ct_free_iocb(phba, cmdiocb);
9447 else
9448 lpfc_els_free_iocb(phba, cmdiocb);
James Smart92d7f7b2007-06-17 19:56:38 -05009449 return;
9450}
9451
James Smarte59058c2008-08-24 21:49:00 -04009452/**
James Smart5af5eee2010-10-22 11:06:38 -04009453 * lpfc_sli_abort_iotag_issue - Issue abort for a command iocb
James Smarte59058c2008-08-24 21:49:00 -04009454 * @phba: Pointer to HBA context object.
9455 * @pring: Pointer to driver SLI ring object.
9456 * @cmdiocb: Pointer to driver command iocb object.
9457 *
James Smart5af5eee2010-10-22 11:06:38 -04009458 * This function issues an abort iocb for the provided command iocb down to
9459 * the port. Other than the case the outstanding command iocb is an abort
9460 * request, this function issues abort out unconditionally. This function is
9461 * called with hbalock held. The function returns 0 when it fails due to
9462 * memory allocation failure or when the command iocb is an abort request.
James Smarte59058c2008-08-24 21:49:00 -04009463 **/
James Smart5af5eee2010-10-22 11:06:38 -04009464static int
9465lpfc_sli_abort_iotag_issue(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart2e0fef82007-06-17 19:56:36 -05009466 struct lpfc_iocbq *cmdiocb)
dea31012005-04-17 16:05:31 -05009467{
James Smart2e0fef82007-06-17 19:56:36 -05009468 struct lpfc_vport *vport = cmdiocb->vport;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009469 struct lpfc_iocbq *abtsiocbp;
dea31012005-04-17 16:05:31 -05009470 IOCB_t *icmd = NULL;
9471 IOCB_t *iabt = NULL;
James Smart5af5eee2010-10-22 11:06:38 -04009472 int retval;
James Smart7e56aa22012-08-03 12:35:34 -04009473 unsigned long iflags;
James Smart07951072007-04-25 09:51:38 -04009474
James Smart92d7f7b2007-06-17 19:56:38 -05009475 /*
9476 * There are certain command types we don't want to abort. And we
9477 * don't want to abort commands that are already in the process of
9478 * being aborted.
James Smart07951072007-04-25 09:51:38 -04009479 */
9480 icmd = &cmdiocb->iocb;
James Smart2e0fef82007-06-17 19:56:36 -05009481 if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
James Smart92d7f7b2007-06-17 19:56:38 -05009482 icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
9483 (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
James Smart07951072007-04-25 09:51:38 -04009484 return 0;
9485
dea31012005-04-17 16:05:31 -05009486 /* issue ABTS for this IOCB based on iotag */
James Smart92d7f7b2007-06-17 19:56:38 -05009487 abtsiocbp = __lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -05009488 if (abtsiocbp == NULL)
9489 return 0;
dea31012005-04-17 16:05:31 -05009490
James Smart07951072007-04-25 09:51:38 -04009491 /* This signals the response to set the correct status
James Smart341af102010-01-26 23:07:37 -05009492 * before calling the completion handler
James Smart07951072007-04-25 09:51:38 -04009493 */
9494 cmdiocb->iocb_flag |= LPFC_DRIVER_ABORTED;
9495
dea31012005-04-17 16:05:31 -05009496 iabt = &abtsiocbp->iocb;
James Smart07951072007-04-25 09:51:38 -04009497 iabt->un.acxri.abortType = ABORT_TYPE_ABTS;
9498 iabt->un.acxri.abortContextTag = icmd->ulpContext;
James Smart45ed1192009-10-02 15:17:02 -04009499 if (phba->sli_rev == LPFC_SLI_REV4) {
James Smartda0436e2009-05-22 14:51:39 -04009500 iabt->un.acxri.abortIoTag = cmdiocb->sli4_xritag;
James Smart45ed1192009-10-02 15:17:02 -04009501 iabt->un.acxri.abortContextTag = cmdiocb->iotag;
9502 }
James Smartda0436e2009-05-22 14:51:39 -04009503 else
9504 iabt->un.acxri.abortIoTag = icmd->ulpIoTag;
dea31012005-04-17 16:05:31 -05009505 iabt->ulpLe = 1;
James Smart07951072007-04-25 09:51:38 -04009506 iabt->ulpClass = icmd->ulpClass;
dea31012005-04-17 16:05:31 -05009507
James Smart5ffc2662009-11-18 15:39:44 -05009508 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
9509 abtsiocbp->fcp_wqidx = cmdiocb->fcp_wqidx;
James Smart341af102010-01-26 23:07:37 -05009510 if (cmdiocb->iocb_flag & LPFC_IO_FCP)
9511 abtsiocbp->iocb_flag |= LPFC_USE_FCPWQIDX;
James Smart5ffc2662009-11-18 15:39:44 -05009512
James Smart2e0fef82007-06-17 19:56:36 -05009513 if (phba->link_state >= LPFC_LINK_UP)
James Smart07951072007-04-25 09:51:38 -04009514 iabt->ulpCommand = CMD_ABORT_XRI_CN;
9515 else
9516 iabt->ulpCommand = CMD_CLOSE_XRI_CN;
9517
9518 abtsiocbp->iocb_cmpl = lpfc_sli_abort_els_cmpl;
James Smart5b8bd0c2007-04-25 09:52:49 -04009519
James Smarte8b62012007-08-02 11:10:09 -04009520 lpfc_printf_vlog(vport, KERN_INFO, LOG_SLI,
9521 "0339 Abort xri x%x, original iotag x%x, "
9522 "abort cmd iotag x%x\n",
James Smart2a9bf3d2010-06-07 15:24:45 -04009523 iabt->un.acxri.abortIoTag,
James Smarte8b62012007-08-02 11:10:09 -04009524 iabt->un.acxri.abortContextTag,
James Smart2a9bf3d2010-06-07 15:24:45 -04009525 abtsiocbp->iotag);
James Smart7e56aa22012-08-03 12:35:34 -04009526
9527 if (phba->sli_rev == LPFC_SLI_REV4) {
9528 /* Note: both hbalock and ring_lock need to be set here */
9529 spin_lock_irqsave(&pring->ring_lock, iflags);
9530 retval = __lpfc_sli_issue_iocb(phba, pring->ringno,
9531 abtsiocbp, 0);
9532 spin_unlock_irqrestore(&pring->ring_lock, iflags);
9533 } else {
9534 retval = __lpfc_sli_issue_iocb(phba, pring->ringno,
9535 abtsiocbp, 0);
9536 }
James Smart07951072007-04-25 09:51:38 -04009537
James Smartd7c255b2008-08-24 21:50:00 -04009538 if (retval)
9539 __lpfc_sli_release_iocbq(phba, abtsiocbp);
James Smart5af5eee2010-10-22 11:06:38 -04009540
9541 /*
9542 * Caller to this routine should check for IOCB_ERROR
9543 * and handle it properly. This routine no longer removes
9544 * iocb off txcmplq and call compl in case of IOCB_ERROR.
9545 */
9546 return retval;
9547}
9548
9549/**
9550 * lpfc_sli_issue_abort_iotag - Abort function for a command iocb
9551 * @phba: Pointer to HBA context object.
9552 * @pring: Pointer to driver SLI ring object.
9553 * @cmdiocb: Pointer to driver command iocb object.
9554 *
9555 * This function issues an abort iocb for the provided command iocb. In case
9556 * of unloading, the abort iocb will not be issued to commands on the ELS
9557 * ring. Instead, the callback function shall be changed to those commands
9558 * so that nothing happens when them finishes. This function is called with
9559 * hbalock held. The function returns 0 when the command iocb is an abort
9560 * request.
9561 **/
9562int
9563lpfc_sli_issue_abort_iotag(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9564 struct lpfc_iocbq *cmdiocb)
9565{
9566 struct lpfc_vport *vport = cmdiocb->vport;
9567 int retval = IOCB_ERROR;
9568 IOCB_t *icmd = NULL;
9569
9570 /*
9571 * There are certain command types we don't want to abort. And we
9572 * don't want to abort commands that are already in the process of
9573 * being aborted.
9574 */
9575 icmd = &cmdiocb->iocb;
9576 if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
9577 icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
9578 (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
9579 return 0;
9580
9581 /*
9582 * If we're unloading, don't abort iocb on the ELS ring, but change
9583 * the callback so that nothing happens when it finishes.
9584 */
9585 if ((vport->load_flag & FC_UNLOADING) &&
9586 (pring->ringno == LPFC_ELS_RING)) {
9587 if (cmdiocb->iocb_flag & LPFC_IO_FABRIC)
9588 cmdiocb->fabric_iocb_cmpl = lpfc_ignore_els_cmpl;
9589 else
9590 cmdiocb->iocb_cmpl = lpfc_ignore_els_cmpl;
9591 goto abort_iotag_exit;
9592 }
9593
9594 /* Now, we try to issue the abort to the cmdiocb out */
9595 retval = lpfc_sli_abort_iotag_issue(phba, pring, cmdiocb);
9596
James Smart07951072007-04-25 09:51:38 -04009597abort_iotag_exit:
James Smart2e0fef82007-06-17 19:56:36 -05009598 /*
9599 * Caller to this routine should check for IOCB_ERROR
9600 * and handle it properly. This routine no longer removes
9601 * iocb off txcmplq and call compl in case of IOCB_ERROR.
James Smart07951072007-04-25 09:51:38 -04009602 */
James Smart2e0fef82007-06-17 19:56:36 -05009603 return retval;
dea31012005-04-17 16:05:31 -05009604}
9605
James Smarte59058c2008-08-24 21:49:00 -04009606/**
James Smart5af5eee2010-10-22 11:06:38 -04009607 * lpfc_sli_iocb_ring_abort - Unconditionally abort all iocbs on an iocb ring
9608 * @phba: Pointer to HBA context object.
9609 * @pring: Pointer to driver SLI ring object.
9610 *
9611 * This function aborts all iocbs in the given ring and frees all the iocb
9612 * objects in txq. This function issues abort iocbs unconditionally for all
9613 * the iocb commands in txcmplq. The iocbs in the txcmplq is not guaranteed
9614 * to complete before the return of this function. The caller is not required
9615 * to hold any locks.
9616 **/
9617static void
9618lpfc_sli_iocb_ring_abort(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
9619{
9620 LIST_HEAD(completions);
9621 struct lpfc_iocbq *iocb, *next_iocb;
9622
9623 if (pring->ringno == LPFC_ELS_RING)
9624 lpfc_fabric_abort_hba(phba);
9625
9626 spin_lock_irq(&phba->hbalock);
9627
9628 /* Take off all the iocbs on txq for cancelling */
9629 list_splice_init(&pring->txq, &completions);
9630 pring->txq_cnt = 0;
9631
9632 /* Next issue ABTS for everything on the txcmplq */
9633 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
9634 lpfc_sli_abort_iotag_issue(phba, pring, iocb);
9635
9636 spin_unlock_irq(&phba->hbalock);
9637
9638 /* Cancel all the IOCBs from the completions list */
9639 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
9640 IOERR_SLI_ABORTED);
9641}
9642
9643/**
9644 * lpfc_sli_hba_iocb_abort - Abort all iocbs to an hba.
9645 * @phba: pointer to lpfc HBA data structure.
9646 *
9647 * This routine will abort all pending and outstanding iocbs to an HBA.
9648 **/
9649void
9650lpfc_sli_hba_iocb_abort(struct lpfc_hba *phba)
9651{
9652 struct lpfc_sli *psli = &phba->sli;
9653 struct lpfc_sli_ring *pring;
9654 int i;
9655
9656 for (i = 0; i < psli->num_rings; i++) {
9657 pring = &psli->ring[i];
9658 lpfc_sli_iocb_ring_abort(phba, pring);
9659 }
9660}
9661
9662/**
James Smart3621a712009-04-06 18:47:14 -04009663 * lpfc_sli_validate_fcp_iocb - find commands associated with a vport or LUN
James Smarte59058c2008-08-24 21:49:00 -04009664 * @iocbq: Pointer to driver iocb object.
9665 * @vport: Pointer to driver virtual port object.
9666 * @tgt_id: SCSI ID of the target.
9667 * @lun_id: LUN ID of the scsi device.
9668 * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST
9669 *
James Smart3621a712009-04-06 18:47:14 -04009670 * This function acts as an iocb filter for functions which abort or count
James Smarte59058c2008-08-24 21:49:00 -04009671 * all FCP iocbs pending on a lun/SCSI target/SCSI host. It will return
9672 * 0 if the filtering criteria is met for the given iocb and will return
9673 * 1 if the filtering criteria is not met.
9674 * If ctx_cmd == LPFC_CTX_LUN, the function returns 0 only if the
9675 * given iocb is for the SCSI device specified by vport, tgt_id and
9676 * lun_id parameter.
9677 * If ctx_cmd == LPFC_CTX_TGT, the function returns 0 only if the
9678 * given iocb is for the SCSI target specified by vport and tgt_id
9679 * parameters.
9680 * If ctx_cmd == LPFC_CTX_HOST, the function returns 0 only if the
9681 * given iocb is for the SCSI host associated with the given vport.
9682 * This function is called with no locks held.
9683 **/
dea31012005-04-17 16:05:31 -05009684static int
James Smart51ef4c22007-08-02 11:10:31 -04009685lpfc_sli_validate_fcp_iocb(struct lpfc_iocbq *iocbq, struct lpfc_vport *vport,
9686 uint16_t tgt_id, uint64_t lun_id,
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009687 lpfc_ctx_cmd ctx_cmd)
dea31012005-04-17 16:05:31 -05009688{
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009689 struct lpfc_scsi_buf *lpfc_cmd;
dea31012005-04-17 16:05:31 -05009690 int rc = 1;
9691
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009692 if (!(iocbq->iocb_flag & LPFC_IO_FCP))
9693 return rc;
9694
James Smart51ef4c22007-08-02 11:10:31 -04009695 if (iocbq->vport != vport)
9696 return rc;
9697
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009698 lpfc_cmd = container_of(iocbq, struct lpfc_scsi_buf, cur_iocbq);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009699
James Smart495a7142008-06-14 22:52:59 -04009700 if (lpfc_cmd->pCmd == NULL)
dea31012005-04-17 16:05:31 -05009701 return rc;
9702
9703 switch (ctx_cmd) {
9704 case LPFC_CTX_LUN:
James Smart495a7142008-06-14 22:52:59 -04009705 if ((lpfc_cmd->rdata->pnode) &&
9706 (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id) &&
9707 (scsilun_to_int(&lpfc_cmd->fcp_cmnd->fcp_lun) == lun_id))
dea31012005-04-17 16:05:31 -05009708 rc = 0;
9709 break;
9710 case LPFC_CTX_TGT:
James Smart495a7142008-06-14 22:52:59 -04009711 if ((lpfc_cmd->rdata->pnode) &&
9712 (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id))
dea31012005-04-17 16:05:31 -05009713 rc = 0;
9714 break;
dea31012005-04-17 16:05:31 -05009715 case LPFC_CTX_HOST:
9716 rc = 0;
9717 break;
9718 default:
9719 printk(KERN_ERR "%s: Unknown context cmd type, value %d\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07009720 __func__, ctx_cmd);
dea31012005-04-17 16:05:31 -05009721 break;
9722 }
9723
9724 return rc;
9725}
9726
James Smarte59058c2008-08-24 21:49:00 -04009727/**
James Smart3621a712009-04-06 18:47:14 -04009728 * lpfc_sli_sum_iocb - Function to count the number of FCP iocbs pending
James Smarte59058c2008-08-24 21:49:00 -04009729 * @vport: Pointer to virtual port.
9730 * @tgt_id: SCSI ID of the target.
9731 * @lun_id: LUN ID of the scsi device.
9732 * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
9733 *
9734 * This function returns number of FCP commands pending for the vport.
9735 * When ctx_cmd == LPFC_CTX_LUN, the function returns number of FCP
9736 * commands pending on the vport associated with SCSI device specified
9737 * by tgt_id and lun_id parameters.
9738 * When ctx_cmd == LPFC_CTX_TGT, the function returns number of FCP
9739 * commands pending on the vport associated with SCSI target specified
9740 * by tgt_id parameter.
9741 * When ctx_cmd == LPFC_CTX_HOST, the function returns number of FCP
9742 * commands pending on the vport.
9743 * This function returns the number of iocbs which satisfy the filter.
9744 * This function is called without any lock held.
9745 **/
dea31012005-04-17 16:05:31 -05009746int
James Smart51ef4c22007-08-02 11:10:31 -04009747lpfc_sli_sum_iocb(struct lpfc_vport *vport, uint16_t tgt_id, uint64_t lun_id,
9748 lpfc_ctx_cmd ctx_cmd)
dea31012005-04-17 16:05:31 -05009749{
James Smart51ef4c22007-08-02 11:10:31 -04009750 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009751 struct lpfc_iocbq *iocbq;
9752 int sum, i;
dea31012005-04-17 16:05:31 -05009753
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009754 for (i = 1, sum = 0; i <= phba->sli.last_iotag; i++) {
9755 iocbq = phba->sli.iocbq_lookup[i];
dea31012005-04-17 16:05:31 -05009756
James Smart51ef4c22007-08-02 11:10:31 -04009757 if (lpfc_sli_validate_fcp_iocb (iocbq, vport, tgt_id, lun_id,
9758 ctx_cmd) == 0)
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009759 sum++;
dea31012005-04-17 16:05:31 -05009760 }
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009761
dea31012005-04-17 16:05:31 -05009762 return sum;
9763}
9764
James Smarte59058c2008-08-24 21:49:00 -04009765/**
James Smart3621a712009-04-06 18:47:14 -04009766 * lpfc_sli_abort_fcp_cmpl - Completion handler function for aborted FCP IOCBs
James Smarte59058c2008-08-24 21:49:00 -04009767 * @phba: Pointer to HBA context object
9768 * @cmdiocb: Pointer to command iocb object.
9769 * @rspiocb: Pointer to response iocb object.
9770 *
9771 * This function is called when an aborted FCP iocb completes. This
9772 * function is called by the ring event handler with no lock held.
9773 * This function frees the iocb.
9774 **/
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -04009775void
James Smart2e0fef82007-06-17 19:56:36 -05009776lpfc_sli_abort_fcp_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
9777 struct lpfc_iocbq *rspiocb)
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -04009778{
James Smartcb69f7d2011-12-13 13:21:57 -05009779 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
9780 "3096 ABORT_XRI_CN completing on xri x%x "
9781 "original iotag x%x, abort cmd iotag x%x "
9782 "status 0x%x, reason 0x%x\n",
9783 cmdiocb->iocb.un.acxri.abortContextTag,
9784 cmdiocb->iocb.un.acxri.abortIoTag,
9785 cmdiocb->iotag, rspiocb->iocb.ulpStatus,
9786 rspiocb->iocb.un.ulpWord[4]);
James Bottomley604a3e32005-10-29 10:28:33 -05009787 lpfc_sli_release_iocbq(phba, cmdiocb);
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -04009788 return;
9789}
9790
James Smarte59058c2008-08-24 21:49:00 -04009791/**
James Smart3621a712009-04-06 18:47:14 -04009792 * lpfc_sli_abort_iocb - issue abort for all commands on a host/target/LUN
James Smarte59058c2008-08-24 21:49:00 -04009793 * @vport: Pointer to virtual port.
9794 * @pring: Pointer to driver SLI ring object.
9795 * @tgt_id: SCSI ID of the target.
9796 * @lun_id: LUN ID of the scsi device.
9797 * @abort_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
9798 *
9799 * This function sends an abort command for every SCSI command
9800 * associated with the given virtual port pending on the ring
9801 * filtered by lpfc_sli_validate_fcp_iocb function.
9802 * When abort_cmd == LPFC_CTX_LUN, the function sends abort only to the
9803 * FCP iocbs associated with lun specified by tgt_id and lun_id
9804 * parameters
9805 * When abort_cmd == LPFC_CTX_TGT, the function sends abort only to the
9806 * FCP iocbs associated with SCSI target specified by tgt_id parameter.
9807 * When abort_cmd == LPFC_CTX_HOST, the function sends abort to all
9808 * FCP iocbs associated with virtual port.
9809 * This function returns number of iocbs it failed to abort.
9810 * This function is called with no locks held.
9811 **/
dea31012005-04-17 16:05:31 -05009812int
James Smart51ef4c22007-08-02 11:10:31 -04009813lpfc_sli_abort_iocb(struct lpfc_vport *vport, struct lpfc_sli_ring *pring,
9814 uint16_t tgt_id, uint64_t lun_id, lpfc_ctx_cmd abort_cmd)
dea31012005-04-17 16:05:31 -05009815{
James Smart51ef4c22007-08-02 11:10:31 -04009816 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009817 struct lpfc_iocbq *iocbq;
9818 struct lpfc_iocbq *abtsiocb;
dea31012005-04-17 16:05:31 -05009819 IOCB_t *cmd = NULL;
dea31012005-04-17 16:05:31 -05009820 int errcnt = 0, ret_val = 0;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009821 int i;
dea31012005-04-17 16:05:31 -05009822
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009823 for (i = 1; i <= phba->sli.last_iotag; i++) {
9824 iocbq = phba->sli.iocbq_lookup[i];
dea31012005-04-17 16:05:31 -05009825
James Smart51ef4c22007-08-02 11:10:31 -04009826 if (lpfc_sli_validate_fcp_iocb(iocbq, vport, tgt_id, lun_id,
James Smart2e0fef82007-06-17 19:56:36 -05009827 abort_cmd) != 0)
dea31012005-04-17 16:05:31 -05009828 continue;
9829
9830 /* issue ABTS for this IOCB based on iotag */
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009831 abtsiocb = lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -05009832 if (abtsiocb == NULL) {
9833 errcnt++;
9834 continue;
9835 }
dea31012005-04-17 16:05:31 -05009836
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04009837 cmd = &iocbq->iocb;
dea31012005-04-17 16:05:31 -05009838 abtsiocb->iocb.un.acxri.abortType = ABORT_TYPE_ABTS;
9839 abtsiocb->iocb.un.acxri.abortContextTag = cmd->ulpContext;
James Smartda0436e2009-05-22 14:51:39 -04009840 if (phba->sli_rev == LPFC_SLI_REV4)
9841 abtsiocb->iocb.un.acxri.abortIoTag = iocbq->sli4_xritag;
9842 else
9843 abtsiocb->iocb.un.acxri.abortIoTag = cmd->ulpIoTag;
dea31012005-04-17 16:05:31 -05009844 abtsiocb->iocb.ulpLe = 1;
9845 abtsiocb->iocb.ulpClass = cmd->ulpClass;
James Smart2e0fef82007-06-17 19:56:36 -05009846 abtsiocb->vport = phba->pport;
dea31012005-04-17 16:05:31 -05009847
James Smart5ffc2662009-11-18 15:39:44 -05009848 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
9849 abtsiocb->fcp_wqidx = iocbq->fcp_wqidx;
James Smart341af102010-01-26 23:07:37 -05009850 if (iocbq->iocb_flag & LPFC_IO_FCP)
9851 abtsiocb->iocb_flag |= LPFC_USE_FCPWQIDX;
James Smart5ffc2662009-11-18 15:39:44 -05009852
James Smart2e0fef82007-06-17 19:56:36 -05009853 if (lpfc_is_link_up(phba))
dea31012005-04-17 16:05:31 -05009854 abtsiocb->iocb.ulpCommand = CMD_ABORT_XRI_CN;
9855 else
9856 abtsiocb->iocb.ulpCommand = CMD_CLOSE_XRI_CN;
9857
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -04009858 /* Setup callback routine and issue the command. */
9859 abtsiocb->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
James Smartda0436e2009-05-22 14:51:39 -04009860 ret_val = lpfc_sli_issue_iocb(phba, pring->ringno,
9861 abtsiocb, 0);
dea31012005-04-17 16:05:31 -05009862 if (ret_val == IOCB_ERROR) {
James Bottomley604a3e32005-10-29 10:28:33 -05009863 lpfc_sli_release_iocbq(phba, abtsiocb);
dea31012005-04-17 16:05:31 -05009864 errcnt++;
9865 continue;
9866 }
9867 }
9868
9869 return errcnt;
9870}
9871
James Smarte59058c2008-08-24 21:49:00 -04009872/**
James Smart3621a712009-04-06 18:47:14 -04009873 * lpfc_sli_wake_iocb_wait - lpfc_sli_issue_iocb_wait's completion handler
James Smarte59058c2008-08-24 21:49:00 -04009874 * @phba: Pointer to HBA context object.
9875 * @cmdiocbq: Pointer to command iocb.
9876 * @rspiocbq: Pointer to response iocb.
9877 *
9878 * This function is the completion handler for iocbs issued using
9879 * lpfc_sli_issue_iocb_wait function. This function is called by the
9880 * ring event handler function without any lock held. This function
9881 * can be called from both worker thread context and interrupt
9882 * context. This function also can be called from other thread which
9883 * cleans up the SLI layer objects.
9884 * This function copy the contents of the response iocb to the
9885 * response iocb memory object provided by the caller of
9886 * lpfc_sli_issue_iocb_wait and then wakes up the thread which
9887 * sleeps for the iocb completion.
9888 **/
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009889static void
9890lpfc_sli_wake_iocb_wait(struct lpfc_hba *phba,
9891 struct lpfc_iocbq *cmdiocbq,
9892 struct lpfc_iocbq *rspiocbq)
dea31012005-04-17 16:05:31 -05009893{
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009894 wait_queue_head_t *pdone_q;
9895 unsigned long iflags;
James Smart0f65ff62010-02-26 14:14:23 -05009896 struct lpfc_scsi_buf *lpfc_cmd;
dea31012005-04-17 16:05:31 -05009897
James Smart2e0fef82007-06-17 19:56:36 -05009898 spin_lock_irqsave(&phba->hbalock, iflags);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009899 cmdiocbq->iocb_flag |= LPFC_IO_WAKE;
9900 if (cmdiocbq->context2 && rspiocbq)
9901 memcpy(&((struct lpfc_iocbq *)cmdiocbq->context2)->iocb,
9902 &rspiocbq->iocb, sizeof(IOCB_t));
9903
James Smart0f65ff62010-02-26 14:14:23 -05009904 /* Set the exchange busy flag for task management commands */
9905 if ((cmdiocbq->iocb_flag & LPFC_IO_FCP) &&
9906 !(cmdiocbq->iocb_flag & LPFC_IO_LIBDFC)) {
9907 lpfc_cmd = container_of(cmdiocbq, struct lpfc_scsi_buf,
9908 cur_iocbq);
9909 lpfc_cmd->exch_busy = rspiocbq->iocb_flag & LPFC_EXCHANGE_BUSY;
9910 }
9911
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009912 pdone_q = cmdiocbq->context_un.wait_queue;
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009913 if (pdone_q)
9914 wake_up(pdone_q);
James Smart858c9f62007-06-17 19:56:39 -05009915 spin_unlock_irqrestore(&phba->hbalock, iflags);
dea31012005-04-17 16:05:31 -05009916 return;
9917}
9918
James Smarte59058c2008-08-24 21:49:00 -04009919/**
James Smartd11e31d2009-06-10 17:23:06 -04009920 * lpfc_chk_iocb_flg - Test IOCB flag with lock held.
9921 * @phba: Pointer to HBA context object..
9922 * @piocbq: Pointer to command iocb.
9923 * @flag: Flag to test.
9924 *
9925 * This routine grabs the hbalock and then test the iocb_flag to
9926 * see if the passed in flag is set.
9927 * Returns:
9928 * 1 if flag is set.
9929 * 0 if flag is not set.
9930 **/
9931static int
9932lpfc_chk_iocb_flg(struct lpfc_hba *phba,
9933 struct lpfc_iocbq *piocbq, uint32_t flag)
9934{
9935 unsigned long iflags;
9936 int ret;
9937
9938 spin_lock_irqsave(&phba->hbalock, iflags);
9939 ret = piocbq->iocb_flag & flag;
9940 spin_unlock_irqrestore(&phba->hbalock, iflags);
9941 return ret;
9942
9943}
9944
9945/**
James Smart3621a712009-04-06 18:47:14 -04009946 * lpfc_sli_issue_iocb_wait - Synchronous function to issue iocb commands
James Smarte59058c2008-08-24 21:49:00 -04009947 * @phba: Pointer to HBA context object..
9948 * @pring: Pointer to sli ring.
9949 * @piocb: Pointer to command iocb.
9950 * @prspiocbq: Pointer to response iocb.
9951 * @timeout: Timeout in number of seconds.
9952 *
9953 * This function issues the iocb to firmware and waits for the
9954 * iocb to complete. If the iocb command is not
9955 * completed within timeout seconds, it returns IOCB_TIMEDOUT.
9956 * Caller should not free the iocb resources if this function
9957 * returns IOCB_TIMEDOUT.
9958 * The function waits for the iocb completion using an
9959 * non-interruptible wait.
9960 * This function will sleep while waiting for iocb completion.
9961 * So, this function should not be called from any context which
9962 * does not allow sleeping. Due to the same reason, this function
9963 * cannot be called with interrupt disabled.
9964 * This function assumes that the iocb completions occur while
9965 * this function sleep. So, this function cannot be called from
9966 * the thread which process iocb completion for this ring.
9967 * This function clears the iocb_flag of the iocb object before
9968 * issuing the iocb and the iocb completion handler sets this
9969 * flag and wakes this thread when the iocb completes.
9970 * The contents of the response iocb will be copied to prspiocbq
9971 * by the completion handler when the command completes.
9972 * This function returns IOCB_SUCCESS when success.
9973 * This function is called with no lock held.
9974 **/
dea31012005-04-17 16:05:31 -05009975int
James Smart2e0fef82007-06-17 19:56:36 -05009976lpfc_sli_issue_iocb_wait(struct lpfc_hba *phba,
James Smartda0436e2009-05-22 14:51:39 -04009977 uint32_t ring_number,
James Smart2e0fef82007-06-17 19:56:36 -05009978 struct lpfc_iocbq *piocb,
9979 struct lpfc_iocbq *prspiocbq,
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009980 uint32_t timeout)
dea31012005-04-17 16:05:31 -05009981{
Peter Zijlstra7259f0d2006-10-29 22:46:36 -08009982 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009983 long timeleft, timeout_req = 0;
9984 int retval = IOCB_SUCCESS;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05009985 uint32_t creg_val;
James Smart0e9bb8d2013-03-01 16:35:12 -05009986 struct lpfc_iocbq *iocb;
9987 int txq_cnt = 0;
9988 int txcmplq_cnt = 0;
James Smart2a9bf3d2010-06-07 15:24:45 -04009989 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
dea31012005-04-17 16:05:31 -05009990 /*
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009991 * If the caller has provided a response iocbq buffer, then context2
9992 * is NULL or its an error.
dea31012005-04-17 16:05:31 -05009993 */
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04009994 if (prspiocbq) {
9995 if (piocb->context2)
9996 return IOCB_ERROR;
9997 piocb->context2 = prspiocbq;
dea31012005-04-17 16:05:31 -05009998 }
9999
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010000 piocb->iocb_cmpl = lpfc_sli_wake_iocb_wait;
10001 piocb->context_un.wait_queue = &done_q;
10002 piocb->iocb_flag &= ~LPFC_IO_WAKE;
dea31012005-04-17 16:05:31 -050010003
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050010004 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
James Smart9940b972011-03-11 16:06:12 -050010005 if (lpfc_readl(phba->HCregaddr, &creg_val))
10006 return IOCB_ERROR;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050010007 creg_val |= (HC_R0INT_ENA << LPFC_FCP_RING);
10008 writel(creg_val, phba->HCregaddr);
10009 readl(phba->HCregaddr); /* flush */
10010 }
10011
James Smart2a9bf3d2010-06-07 15:24:45 -040010012 retval = lpfc_sli_issue_iocb(phba, ring_number, piocb,
10013 SLI_IOCB_RET_IOCB);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010014 if (retval == IOCB_SUCCESS) {
James Smart256ec0d2013-04-17 20:14:58 -040010015 timeout_req = msecs_to_jiffies(timeout * 1000);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010016 timeleft = wait_event_timeout(done_q,
James Smartd11e31d2009-06-10 17:23:06 -040010017 lpfc_chk_iocb_flg(phba, piocb, LPFC_IO_WAKE),
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010018 timeout_req);
dea31012005-04-17 16:05:31 -050010019
James Smart7054a602007-04-25 09:52:34 -040010020 if (piocb->iocb_flag & LPFC_IO_WAKE) {
10021 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -040010022 "0331 IOCB wake signaled\n");
James Smart7054a602007-04-25 09:52:34 -040010023 } else if (timeleft == 0) {
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010024 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -040010025 "0338 IOCB wait timeout error - no "
10026 "wake response Data x%x\n", timeout);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010027 retval = IOCB_TIMEDOUT;
James Smart7054a602007-04-25 09:52:34 -040010028 } else {
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010029 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -040010030 "0330 IOCB wake NOT set, "
10031 "Data x%x x%lx\n",
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010032 timeout, (timeleft / jiffies));
10033 retval = IOCB_TIMEDOUT;
dea31012005-04-17 16:05:31 -050010034 }
James Smart2a9bf3d2010-06-07 15:24:45 -040010035 } else if (retval == IOCB_BUSY) {
James Smart0e9bb8d2013-03-01 16:35:12 -050010036 if (phba->cfg_log_verbose & LOG_SLI) {
10037 list_for_each_entry(iocb, &pring->txq, list) {
10038 txq_cnt++;
10039 }
10040 list_for_each_entry(iocb, &pring->txcmplq, list) {
10041 txcmplq_cnt++;
10042 }
10043 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
10044 "2818 Max IOCBs %d txq cnt %d txcmplq cnt %d\n",
10045 phba->iocb_cnt, txq_cnt, txcmplq_cnt);
10046 }
James Smart2a9bf3d2010-06-07 15:24:45 -040010047 return retval;
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010048 } else {
10049 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smartd7c255b2008-08-24 21:50:00 -040010050 "0332 IOCB wait issue failed, Data x%x\n",
James Smarte8b62012007-08-02 11:10:09 -040010051 retval);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010052 retval = IOCB_ERROR;
dea31012005-04-17 16:05:31 -050010053 }
10054
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050010055 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
James Smart9940b972011-03-11 16:06:12 -050010056 if (lpfc_readl(phba->HCregaddr, &creg_val))
10057 return IOCB_ERROR;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050010058 creg_val &= ~(HC_R0INT_ENA << LPFC_FCP_RING);
10059 writel(creg_val, phba->HCregaddr);
10060 readl(phba->HCregaddr); /* flush */
10061 }
10062
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010063 if (prspiocbq)
10064 piocb->context2 = NULL;
10065
10066 piocb->context_un.wait_queue = NULL;
10067 piocb->iocb_cmpl = NULL;
dea31012005-04-17 16:05:31 -050010068 return retval;
10069}
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040010070
James Smarte59058c2008-08-24 21:49:00 -040010071/**
James Smart3621a712009-04-06 18:47:14 -040010072 * lpfc_sli_issue_mbox_wait - Synchronous function to issue mailbox
James Smarte59058c2008-08-24 21:49:00 -040010073 * @phba: Pointer to HBA context object.
10074 * @pmboxq: Pointer to driver mailbox object.
10075 * @timeout: Timeout in number of seconds.
10076 *
10077 * This function issues the mailbox to firmware and waits for the
10078 * mailbox command to complete. If the mailbox command is not
10079 * completed within timeout seconds, it returns MBX_TIMEOUT.
10080 * The function waits for the mailbox completion using an
10081 * interruptible wait. If the thread is woken up due to a
10082 * signal, MBX_TIMEOUT error is returned to the caller. Caller
10083 * should not free the mailbox resources, if this function returns
10084 * MBX_TIMEOUT.
10085 * This function will sleep while waiting for mailbox completion.
10086 * So, this function should not be called from any context which
10087 * does not allow sleeping. Due to the same reason, this function
10088 * cannot be called with interrupt disabled.
10089 * This function assumes that the mailbox completion occurs while
10090 * this function sleep. So, this function cannot be called from
10091 * the worker thread which processes mailbox completion.
10092 * This function is called in the context of HBA management
10093 * applications.
10094 * This function returns MBX_SUCCESS when successful.
10095 * This function is called with no lock held.
10096 **/
dea31012005-04-17 16:05:31 -050010097int
James Smart2e0fef82007-06-17 19:56:36 -050010098lpfc_sli_issue_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq,
dea31012005-04-17 16:05:31 -050010099 uint32_t timeout)
10100{
Peter Zijlstra7259f0d2006-10-29 22:46:36 -080010101 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
dea31012005-04-17 16:05:31 -050010102 int retval;
James Smart858c9f62007-06-17 19:56:39 -050010103 unsigned long flag;
dea31012005-04-17 16:05:31 -050010104
10105 /* The caller must leave context1 empty. */
James Smart98c9ea52007-10-27 13:37:33 -040010106 if (pmboxq->context1)
James Smart2e0fef82007-06-17 19:56:36 -050010107 return MBX_NOT_FINISHED;
dea31012005-04-17 16:05:31 -050010108
James Smart495a7142008-06-14 22:52:59 -040010109 pmboxq->mbox_flag &= ~LPFC_MBX_WAKE;
dea31012005-04-17 16:05:31 -050010110 /* setup wake call as IOCB callback */
10111 pmboxq->mbox_cmpl = lpfc_sli_wake_mbox_wait;
10112 /* setup context field to pass wait_queue pointer to wake function */
10113 pmboxq->context1 = &done_q;
10114
dea31012005-04-17 16:05:31 -050010115 /* now issue the command */
10116 retval = lpfc_sli_issue_mbox(phba, pmboxq, MBX_NOWAIT);
dea31012005-04-17 16:05:31 -050010117 if (retval == MBX_BUSY || retval == MBX_SUCCESS) {
James Smart7054a602007-04-25 09:52:34 -040010118 wait_event_interruptible_timeout(done_q,
10119 pmboxq->mbox_flag & LPFC_MBX_WAKE,
James Smart256ec0d2013-04-17 20:14:58 -040010120 msecs_to_jiffies(timeout * 1000));
James Smart7054a602007-04-25 09:52:34 -040010121
James Smart858c9f62007-06-17 19:56:39 -050010122 spin_lock_irqsave(&phba->hbalock, flag);
dea31012005-04-17 16:05:31 -050010123 pmboxq->context1 = NULL;
James Smart7054a602007-04-25 09:52:34 -040010124 /*
10125 * if LPFC_MBX_WAKE flag is set the mailbox is completed
10126 * else do not free the resources.
10127 */
James Smartd7c47992010-06-08 18:31:54 -040010128 if (pmboxq->mbox_flag & LPFC_MBX_WAKE) {
dea31012005-04-17 16:05:31 -050010129 retval = MBX_SUCCESS;
James Smartd7c47992010-06-08 18:31:54 -040010130 lpfc_sli4_swap_str(phba, pmboxq);
10131 } else {
James Smart7054a602007-04-25 09:52:34 -040010132 retval = MBX_TIMEOUT;
James Smart858c9f62007-06-17 19:56:39 -050010133 pmboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
10134 }
10135 spin_unlock_irqrestore(&phba->hbalock, flag);
dea31012005-04-17 16:05:31 -050010136 }
10137
dea31012005-04-17 16:05:31 -050010138 return retval;
10139}
10140
James Smarte59058c2008-08-24 21:49:00 -040010141/**
James Smart3772a992009-05-22 14:50:54 -040010142 * lpfc_sli_mbox_sys_shutdown - shutdown mailbox command sub-system
James Smarte59058c2008-08-24 21:49:00 -040010143 * @phba: Pointer to HBA context.
10144 *
James Smart3772a992009-05-22 14:50:54 -040010145 * This function is called to shutdown the driver's mailbox sub-system.
10146 * It first marks the mailbox sub-system is in a block state to prevent
10147 * the asynchronous mailbox command from issued off the pending mailbox
10148 * command queue. If the mailbox command sub-system shutdown is due to
10149 * HBA error conditions such as EEH or ERATT, this routine shall invoke
10150 * the mailbox sub-system flush routine to forcefully bring down the
10151 * mailbox sub-system. Otherwise, if it is due to normal condition (such
10152 * as with offline or HBA function reset), this routine will wait for the
10153 * outstanding mailbox command to complete before invoking the mailbox
10154 * sub-system flush routine to gracefully bring down mailbox sub-system.
James Smarte59058c2008-08-24 21:49:00 -040010155 **/
James Smart3772a992009-05-22 14:50:54 -040010156void
James Smart618a5232012-06-12 13:54:36 -040010157lpfc_sli_mbox_sys_shutdown(struct lpfc_hba *phba, int mbx_action)
James Smartb4c02652006-07-06 15:50:43 -040010158{
James Smart3772a992009-05-22 14:50:54 -040010159 struct lpfc_sli *psli = &phba->sli;
James Smart3772a992009-05-22 14:50:54 -040010160 unsigned long timeout;
10161
James Smart618a5232012-06-12 13:54:36 -040010162 if (mbx_action == LPFC_MBX_NO_WAIT) {
10163 /* delay 100ms for port state */
10164 msleep(100);
10165 lpfc_sli_mbox_sys_flush(phba);
10166 return;
10167 }
James Smarta183a152011-10-10 21:32:43 -040010168 timeout = msecs_to_jiffies(LPFC_MBOX_TMO * 1000) + jiffies;
James Smartd7069f02012-03-01 22:36:29 -050010169
James Smart3772a992009-05-22 14:50:54 -040010170 spin_lock_irq(&phba->hbalock);
10171 psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
James Smart3772a992009-05-22 14:50:54 -040010172
10173 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
James Smart3772a992009-05-22 14:50:54 -040010174 /* Determine how long we might wait for the active mailbox
10175 * command to be gracefully completed by firmware.
10176 */
James Smarta183a152011-10-10 21:32:43 -040010177 if (phba->sli.mbox_active)
10178 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
10179 phba->sli.mbox_active) *
10180 1000) + jiffies;
10181 spin_unlock_irq(&phba->hbalock);
10182
James Smart3772a992009-05-22 14:50:54 -040010183 while (phba->sli.mbox_active) {
10184 /* Check active mailbox complete status every 2ms */
10185 msleep(2);
10186 if (time_after(jiffies, timeout))
10187 /* Timeout, let the mailbox flush routine to
10188 * forcefully release active mailbox command
10189 */
10190 break;
10191 }
James Smartd7069f02012-03-01 22:36:29 -050010192 } else
10193 spin_unlock_irq(&phba->hbalock);
10194
James Smart3772a992009-05-22 14:50:54 -040010195 lpfc_sli_mbox_sys_flush(phba);
10196}
10197
10198/**
10199 * lpfc_sli_eratt_read - read sli-3 error attention events
10200 * @phba: Pointer to HBA context.
10201 *
10202 * This function is called to read the SLI3 device error attention registers
10203 * for possible error attention events. The caller must hold the hostlock
10204 * with spin_lock_irq().
10205 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030010206 * This function returns 1 when there is Error Attention in the Host Attention
James Smart3772a992009-05-22 14:50:54 -040010207 * Register and returns 0 otherwise.
10208 **/
10209static int
10210lpfc_sli_eratt_read(struct lpfc_hba *phba)
10211{
James Smarted957682007-06-17 19:56:37 -050010212 uint32_t ha_copy;
James Smartb4c02652006-07-06 15:50:43 -040010213
James Smart3772a992009-05-22 14:50:54 -040010214 /* Read chip Host Attention (HA) register */
James Smart9940b972011-03-11 16:06:12 -050010215 if (lpfc_readl(phba->HAregaddr, &ha_copy))
10216 goto unplug_err;
10217
James Smart3772a992009-05-22 14:50:54 -040010218 if (ha_copy & HA_ERATT) {
10219 /* Read host status register to retrieve error event */
James Smart9940b972011-03-11 16:06:12 -050010220 if (lpfc_sli_read_hs(phba))
10221 goto unplug_err;
James Smartb4c02652006-07-06 15:50:43 -040010222
James Smart3772a992009-05-22 14:50:54 -040010223 /* Check if there is a deferred error condition is active */
10224 if ((HS_FFER1 & phba->work_hs) &&
10225 ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
James Smartdcf2a4e2010-09-29 11:18:53 -040010226 HS_FFER6 | HS_FFER7 | HS_FFER8) & phba->work_hs)) {
James Smart3772a992009-05-22 14:50:54 -040010227 phba->hba_flag |= DEFER_ERATT;
James Smart3772a992009-05-22 14:50:54 -040010228 /* Clear all interrupt enable conditions */
10229 writel(0, phba->HCregaddr);
10230 readl(phba->HCregaddr);
10231 }
10232
10233 /* Set the driver HA work bitmap */
James Smart3772a992009-05-22 14:50:54 -040010234 phba->work_ha |= HA_ERATT;
10235 /* Indicate polling handles this ERATT */
10236 phba->hba_flag |= HBA_ERATT_HANDLED;
James Smart3772a992009-05-22 14:50:54 -040010237 return 1;
James Smartb4c02652006-07-06 15:50:43 -040010238 }
James Smart3772a992009-05-22 14:50:54 -040010239 return 0;
James Smart9940b972011-03-11 16:06:12 -050010240
10241unplug_err:
10242 /* Set the driver HS work bitmap */
10243 phba->work_hs |= UNPLUG_ERR;
10244 /* Set the driver HA work bitmap */
10245 phba->work_ha |= HA_ERATT;
10246 /* Indicate polling handles this ERATT */
10247 phba->hba_flag |= HBA_ERATT_HANDLED;
10248 return 1;
James Smartb4c02652006-07-06 15:50:43 -040010249}
10250
James Smarte59058c2008-08-24 21:49:00 -040010251/**
James Smartda0436e2009-05-22 14:51:39 -040010252 * lpfc_sli4_eratt_read - read sli-4 error attention events
10253 * @phba: Pointer to HBA context.
10254 *
10255 * This function is called to read the SLI4 device error attention registers
10256 * for possible error attention events. The caller must hold the hostlock
10257 * with spin_lock_irq().
10258 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030010259 * This function returns 1 when there is Error Attention in the Host Attention
James Smartda0436e2009-05-22 14:51:39 -040010260 * Register and returns 0 otherwise.
10261 **/
10262static int
10263lpfc_sli4_eratt_read(struct lpfc_hba *phba)
10264{
10265 uint32_t uerr_sta_hi, uerr_sta_lo;
James Smart2fcee4b2010-12-15 17:57:46 -050010266 uint32_t if_type, portsmphr;
10267 struct lpfc_register portstat_reg;
James Smartda0436e2009-05-22 14:51:39 -040010268
James Smart2fcee4b2010-12-15 17:57:46 -050010269 /*
10270 * For now, use the SLI4 device internal unrecoverable error
James Smartda0436e2009-05-22 14:51:39 -040010271 * registers for error attention. This can be changed later.
10272 */
James Smart2fcee4b2010-12-15 17:57:46 -050010273 if_type = bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf);
10274 switch (if_type) {
10275 case LPFC_SLI_INTF_IF_TYPE_0:
James Smart9940b972011-03-11 16:06:12 -050010276 if (lpfc_readl(phba->sli4_hba.u.if_type0.UERRLOregaddr,
10277 &uerr_sta_lo) ||
10278 lpfc_readl(phba->sli4_hba.u.if_type0.UERRHIregaddr,
10279 &uerr_sta_hi)) {
10280 phba->work_hs |= UNPLUG_ERR;
10281 phba->work_ha |= HA_ERATT;
10282 phba->hba_flag |= HBA_ERATT_HANDLED;
10283 return 1;
10284 }
James Smart2fcee4b2010-12-15 17:57:46 -050010285 if ((~phba->sli4_hba.ue_mask_lo & uerr_sta_lo) ||
10286 (~phba->sli4_hba.ue_mask_hi & uerr_sta_hi)) {
10287 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10288 "1423 HBA Unrecoverable error: "
10289 "uerr_lo_reg=0x%x, uerr_hi_reg=0x%x, "
10290 "ue_mask_lo_reg=0x%x, "
10291 "ue_mask_hi_reg=0x%x\n",
10292 uerr_sta_lo, uerr_sta_hi,
10293 phba->sli4_hba.ue_mask_lo,
10294 phba->sli4_hba.ue_mask_hi);
10295 phba->work_status[0] = uerr_sta_lo;
10296 phba->work_status[1] = uerr_sta_hi;
10297 phba->work_ha |= HA_ERATT;
10298 phba->hba_flag |= HBA_ERATT_HANDLED;
10299 return 1;
10300 }
10301 break;
10302 case LPFC_SLI_INTF_IF_TYPE_2:
James Smart9940b972011-03-11 16:06:12 -050010303 if (lpfc_readl(phba->sli4_hba.u.if_type2.STATUSregaddr,
10304 &portstat_reg.word0) ||
10305 lpfc_readl(phba->sli4_hba.PSMPHRregaddr,
10306 &portsmphr)){
10307 phba->work_hs |= UNPLUG_ERR;
10308 phba->work_ha |= HA_ERATT;
10309 phba->hba_flag |= HBA_ERATT_HANDLED;
10310 return 1;
10311 }
James Smart2fcee4b2010-12-15 17:57:46 -050010312 if (bf_get(lpfc_sliport_status_err, &portstat_reg)) {
10313 phba->work_status[0] =
10314 readl(phba->sli4_hba.u.if_type2.ERR1regaddr);
10315 phba->work_status[1] =
10316 readl(phba->sli4_hba.u.if_type2.ERR2regaddr);
10317 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart2e90f4b2011-12-13 13:22:37 -050010318 "2885 Port Status Event: "
James Smart2fcee4b2010-12-15 17:57:46 -050010319 "port status reg 0x%x, "
10320 "port smphr reg 0x%x, "
10321 "error 1=0x%x, error 2=0x%x\n",
10322 portstat_reg.word0,
10323 portsmphr,
10324 phba->work_status[0],
10325 phba->work_status[1]);
10326 phba->work_ha |= HA_ERATT;
10327 phba->hba_flag |= HBA_ERATT_HANDLED;
10328 return 1;
10329 }
10330 break;
10331 case LPFC_SLI_INTF_IF_TYPE_1:
10332 default:
James Smarta747c9c2009-11-18 15:41:10 -050010333 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart2fcee4b2010-12-15 17:57:46 -050010334 "2886 HBA Error Attention on unsupported "
10335 "if type %d.", if_type);
James Smarta747c9c2009-11-18 15:41:10 -050010336 return 1;
James Smartda0436e2009-05-22 14:51:39 -040010337 }
James Smart2fcee4b2010-12-15 17:57:46 -050010338
James Smartda0436e2009-05-22 14:51:39 -040010339 return 0;
10340}
10341
10342/**
James Smart3621a712009-04-06 18:47:14 -040010343 * lpfc_sli_check_eratt - check error attention events
James Smart93996272008-08-24 21:50:30 -040010344 * @phba: Pointer to HBA context.
10345 *
James Smart3772a992009-05-22 14:50:54 -040010346 * This function is called from timer soft interrupt context to check HBA's
James Smart93996272008-08-24 21:50:30 -040010347 * error attention register bit for error attention events.
10348 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030010349 * This function returns 1 when there is Error Attention in the Host Attention
James Smart93996272008-08-24 21:50:30 -040010350 * Register and returns 0 otherwise.
10351 **/
10352int
10353lpfc_sli_check_eratt(struct lpfc_hba *phba)
10354{
10355 uint32_t ha_copy;
10356
10357 /* If somebody is waiting to handle an eratt, don't process it
10358 * here. The brdkill function will do this.
10359 */
10360 if (phba->link_flag & LS_IGNORE_ERATT)
10361 return 0;
10362
10363 /* Check if interrupt handler handles this ERATT */
10364 spin_lock_irq(&phba->hbalock);
10365 if (phba->hba_flag & HBA_ERATT_HANDLED) {
10366 /* Interrupt handler has handled ERATT */
10367 spin_unlock_irq(&phba->hbalock);
10368 return 0;
10369 }
10370
James Smarta257bf92009-04-06 18:48:10 -040010371 /*
10372 * If there is deferred error attention, do not check for error
10373 * attention
10374 */
10375 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
10376 spin_unlock_irq(&phba->hbalock);
10377 return 0;
10378 }
10379
James Smart3772a992009-05-22 14:50:54 -040010380 /* If PCI channel is offline, don't process it */
10381 if (unlikely(pci_channel_offline(phba->pcidev))) {
James Smart93996272008-08-24 21:50:30 -040010382 spin_unlock_irq(&phba->hbalock);
James Smart3772a992009-05-22 14:50:54 -040010383 return 0;
10384 }
10385
10386 switch (phba->sli_rev) {
10387 case LPFC_SLI_REV2:
10388 case LPFC_SLI_REV3:
10389 /* Read chip Host Attention (HA) register */
10390 ha_copy = lpfc_sli_eratt_read(phba);
10391 break;
James Smartda0436e2009-05-22 14:51:39 -040010392 case LPFC_SLI_REV4:
James Smart2fcee4b2010-12-15 17:57:46 -050010393 /* Read device Uncoverable Error (UERR) registers */
James Smartda0436e2009-05-22 14:51:39 -040010394 ha_copy = lpfc_sli4_eratt_read(phba);
10395 break;
James Smart3772a992009-05-22 14:50:54 -040010396 default:
10397 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10398 "0299 Invalid SLI revision (%d)\n",
10399 phba->sli_rev);
10400 ha_copy = 0;
10401 break;
James Smart93996272008-08-24 21:50:30 -040010402 }
10403 spin_unlock_irq(&phba->hbalock);
James Smart3772a992009-05-22 14:50:54 -040010404
10405 return ha_copy;
10406}
10407
10408/**
10409 * lpfc_intr_state_check - Check device state for interrupt handling
10410 * @phba: Pointer to HBA context.
10411 *
10412 * This inline routine checks whether a device or its PCI slot is in a state
10413 * that the interrupt should be handled.
10414 *
10415 * This function returns 0 if the device or the PCI slot is in a state that
10416 * interrupt should be handled, otherwise -EIO.
10417 */
10418static inline int
10419lpfc_intr_state_check(struct lpfc_hba *phba)
10420{
10421 /* If the pci channel is offline, ignore all the interrupts */
10422 if (unlikely(pci_channel_offline(phba->pcidev)))
10423 return -EIO;
10424
10425 /* Update device level interrupt statistics */
10426 phba->sli.slistat.sli_intr++;
10427
10428 /* Ignore all interrupts during initialization. */
10429 if (unlikely(phba->link_state < LPFC_LINK_DOWN))
10430 return -EIO;
10431
James Smart93996272008-08-24 21:50:30 -040010432 return 0;
10433}
10434
10435/**
James Smart3772a992009-05-22 14:50:54 -040010436 * lpfc_sli_sp_intr_handler - Slow-path interrupt handler to SLI-3 device
James Smarte59058c2008-08-24 21:49:00 -040010437 * @irq: Interrupt number.
10438 * @dev_id: The device context pointer.
10439 *
James Smart93996272008-08-24 21:50:30 -040010440 * This function is directly called from the PCI layer as an interrupt
James Smart3772a992009-05-22 14:50:54 -040010441 * service routine when device with SLI-3 interface spec is enabled with
10442 * MSI-X multi-message interrupt mode and there are slow-path events in
10443 * the HBA. However, when the device is enabled with either MSI or Pin-IRQ
10444 * interrupt mode, this function is called as part of the device-level
10445 * interrupt handler. When the PCI slot is in error recovery or the HBA
10446 * is undergoing initialization, the interrupt handler will not process
10447 * the interrupt. The link attention and ELS ring attention events are
10448 * handled by the worker thread. The interrupt handler signals the worker
10449 * thread and returns for these events. This function is called without
10450 * any lock held. It gets the hbalock to access and update SLI data
James Smart93996272008-08-24 21:50:30 -040010451 * structures.
10452 *
10453 * This function returns IRQ_HANDLED when interrupt is handled else it
10454 * returns IRQ_NONE.
James Smarte59058c2008-08-24 21:49:00 -040010455 **/
dea31012005-04-17 16:05:31 -050010456irqreturn_t
James Smart3772a992009-05-22 14:50:54 -040010457lpfc_sli_sp_intr_handler(int irq, void *dev_id)
dea31012005-04-17 16:05:31 -050010458{
James Smart2e0fef82007-06-17 19:56:36 -050010459 struct lpfc_hba *phba;
James Smarta747c9c2009-11-18 15:41:10 -050010460 uint32_t ha_copy, hc_copy;
dea31012005-04-17 16:05:31 -050010461 uint32_t work_ha_copy;
10462 unsigned long status;
James Smart5b75da22008-12-04 22:39:35 -050010463 unsigned long iflag;
dea31012005-04-17 16:05:31 -050010464 uint32_t control;
10465
James Smart92d7f7b2007-06-17 19:56:38 -050010466 MAILBOX_t *mbox, *pmbox;
James Smart858c9f62007-06-17 19:56:39 -050010467 struct lpfc_vport *vport;
10468 struct lpfc_nodelist *ndlp;
10469 struct lpfc_dmabuf *mp;
James Smart92d7f7b2007-06-17 19:56:38 -050010470 LPFC_MBOXQ_t *pmb;
10471 int rc;
10472
dea31012005-04-17 16:05:31 -050010473 /*
10474 * Get the driver's phba structure from the dev_id and
10475 * assume the HBA is not interrupting.
10476 */
James Smart93996272008-08-24 21:50:30 -040010477 phba = (struct lpfc_hba *)dev_id;
dea31012005-04-17 16:05:31 -050010478
10479 if (unlikely(!phba))
10480 return IRQ_NONE;
10481
dea31012005-04-17 16:05:31 -050010482 /*
James Smart93996272008-08-24 21:50:30 -040010483 * Stuff needs to be attented to when this function is invoked as an
10484 * individual interrupt handler in MSI-X multi-message interrupt mode
dea31012005-04-17 16:05:31 -050010485 */
James Smart93996272008-08-24 21:50:30 -040010486 if (phba->intr_type == MSIX) {
James Smart3772a992009-05-22 14:50:54 -040010487 /* Check device state for handling interrupt */
10488 if (lpfc_intr_state_check(phba))
James Smart93996272008-08-24 21:50:30 -040010489 return IRQ_NONE;
10490 /* Need to read HA REG for slow-path events */
James Smart5b75da22008-12-04 22:39:35 -050010491 spin_lock_irqsave(&phba->hbalock, iflag);
James Smart9940b972011-03-11 16:06:12 -050010492 if (lpfc_readl(phba->HAregaddr, &ha_copy))
10493 goto unplug_error;
James Smart93996272008-08-24 21:50:30 -040010494 /* If somebody is waiting to handle an eratt don't process it
10495 * here. The brdkill function will do this.
10496 */
10497 if (phba->link_flag & LS_IGNORE_ERATT)
10498 ha_copy &= ~HA_ERATT;
10499 /* Check the need for handling ERATT in interrupt handler */
10500 if (ha_copy & HA_ERATT) {
10501 if (phba->hba_flag & HBA_ERATT_HANDLED)
10502 /* ERATT polling has handled ERATT */
10503 ha_copy &= ~HA_ERATT;
10504 else
10505 /* Indicate interrupt handler handles ERATT */
10506 phba->hba_flag |= HBA_ERATT_HANDLED;
10507 }
James Smarta257bf92009-04-06 18:48:10 -040010508
10509 /*
10510 * If there is deferred error attention, do not check for any
10511 * interrupt.
10512 */
10513 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
James Smart3772a992009-05-22 14:50:54 -040010514 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smarta257bf92009-04-06 18:48:10 -040010515 return IRQ_NONE;
10516 }
10517
James Smart93996272008-08-24 21:50:30 -040010518 /* Clear up only attention source related to slow-path */
James Smart9940b972011-03-11 16:06:12 -050010519 if (lpfc_readl(phba->HCregaddr, &hc_copy))
10520 goto unplug_error;
10521
James Smarta747c9c2009-11-18 15:41:10 -050010522 writel(hc_copy & ~(HC_MBINT_ENA | HC_R2INT_ENA |
10523 HC_LAINT_ENA | HC_ERINT_ENA),
10524 phba->HCregaddr);
James Smart93996272008-08-24 21:50:30 -040010525 writel((ha_copy & (HA_MBATT | HA_R2_CLR_MSK)),
10526 phba->HAregaddr);
James Smarta747c9c2009-11-18 15:41:10 -050010527 writel(hc_copy, phba->HCregaddr);
James Smart93996272008-08-24 21:50:30 -040010528 readl(phba->HAregaddr); /* flush */
James Smart5b75da22008-12-04 22:39:35 -050010529 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart93996272008-08-24 21:50:30 -040010530 } else
10531 ha_copy = phba->ha_copy;
dea31012005-04-17 16:05:31 -050010532
dea31012005-04-17 16:05:31 -050010533 work_ha_copy = ha_copy & phba->work_ha_mask;
10534
James Smart93996272008-08-24 21:50:30 -040010535 if (work_ha_copy) {
dea31012005-04-17 16:05:31 -050010536 if (work_ha_copy & HA_LATT) {
10537 if (phba->sli.sli_flag & LPFC_PROCESS_LA) {
10538 /*
10539 * Turn off Link Attention interrupts
10540 * until CLEAR_LA done
10541 */
James Smart5b75da22008-12-04 22:39:35 -050010542 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -050010543 phba->sli.sli_flag &= ~LPFC_PROCESS_LA;
James Smart9940b972011-03-11 16:06:12 -050010544 if (lpfc_readl(phba->HCregaddr, &control))
10545 goto unplug_error;
dea31012005-04-17 16:05:31 -050010546 control &= ~HC_LAINT_ENA;
10547 writel(control, phba->HCregaddr);
10548 readl(phba->HCregaddr); /* flush */
James Smart5b75da22008-12-04 22:39:35 -050010549 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -050010550 }
10551 else
10552 work_ha_copy &= ~HA_LATT;
10553 }
10554
James Smart93996272008-08-24 21:50:30 -040010555 if (work_ha_copy & ~(HA_ERATT | HA_MBATT | HA_LATT)) {
James Smart858c9f62007-06-17 19:56:39 -050010556 /*
10557 * Turn off Slow Rings interrupts, LPFC_ELS_RING is
10558 * the only slow ring.
10559 */
10560 status = (work_ha_copy &
10561 (HA_RXMASK << (4*LPFC_ELS_RING)));
10562 status >>= (4*LPFC_ELS_RING);
10563 if (status & HA_RXMASK) {
James Smart5b75da22008-12-04 22:39:35 -050010564 spin_lock_irqsave(&phba->hbalock, iflag);
James Smart9940b972011-03-11 16:06:12 -050010565 if (lpfc_readl(phba->HCregaddr, &control))
10566 goto unplug_error;
James Smarta58cbd52007-08-02 11:09:43 -040010567
10568 lpfc_debugfs_slow_ring_trc(phba,
10569 "ISR slow ring: ctl:x%x stat:x%x isrcnt:x%x",
10570 control, status,
10571 (uint32_t)phba->sli.slistat.sli_intr);
10572
James Smart858c9f62007-06-17 19:56:39 -050010573 if (control & (HC_R0INT_ENA << LPFC_ELS_RING)) {
James Smarta58cbd52007-08-02 11:09:43 -040010574 lpfc_debugfs_slow_ring_trc(phba,
10575 "ISR Disable ring:"
10576 "pwork:x%x hawork:x%x wait:x%x",
10577 phba->work_ha, work_ha_copy,
10578 (uint32_t)((unsigned long)
James Smart5e9d9b82008-06-14 22:52:53 -040010579 &phba->work_waitq));
James Smarta58cbd52007-08-02 11:09:43 -040010580
James Smart858c9f62007-06-17 19:56:39 -050010581 control &=
10582 ~(HC_R0INT_ENA << LPFC_ELS_RING);
dea31012005-04-17 16:05:31 -050010583 writel(control, phba->HCregaddr);
10584 readl(phba->HCregaddr); /* flush */
dea31012005-04-17 16:05:31 -050010585 }
James Smarta58cbd52007-08-02 11:09:43 -040010586 else {
10587 lpfc_debugfs_slow_ring_trc(phba,
10588 "ISR slow ring: pwork:"
10589 "x%x hawork:x%x wait:x%x",
10590 phba->work_ha, work_ha_copy,
10591 (uint32_t)((unsigned long)
James Smart5e9d9b82008-06-14 22:52:53 -040010592 &phba->work_waitq));
James Smarta58cbd52007-08-02 11:09:43 -040010593 }
James Smart5b75da22008-12-04 22:39:35 -050010594 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -050010595 }
10596 }
James Smart5b75da22008-12-04 22:39:35 -050010597 spin_lock_irqsave(&phba->hbalock, iflag);
James Smarta257bf92009-04-06 18:48:10 -040010598 if (work_ha_copy & HA_ERATT) {
James Smart9940b972011-03-11 16:06:12 -050010599 if (lpfc_sli_read_hs(phba))
10600 goto unplug_error;
James Smarta257bf92009-04-06 18:48:10 -040010601 /*
10602 * Check if there is a deferred error condition
10603 * is active
10604 */
10605 if ((HS_FFER1 & phba->work_hs) &&
10606 ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
James Smartdcf2a4e2010-09-29 11:18:53 -040010607 HS_FFER6 | HS_FFER7 | HS_FFER8) &
10608 phba->work_hs)) {
James Smarta257bf92009-04-06 18:48:10 -040010609 phba->hba_flag |= DEFER_ERATT;
10610 /* Clear all interrupt enable conditions */
10611 writel(0, phba->HCregaddr);
10612 readl(phba->HCregaddr);
10613 }
10614 }
10615
James Smart93996272008-08-24 21:50:30 -040010616 if ((work_ha_copy & HA_MBATT) && (phba->sli.mbox_active)) {
James Smart92d7f7b2007-06-17 19:56:38 -050010617 pmb = phba->sli.mbox_active;
James Smart04c68492009-05-22 14:52:52 -040010618 pmbox = &pmb->u.mb;
James Smart34b02dc2008-08-24 21:49:55 -040010619 mbox = phba->mbox;
James Smart858c9f62007-06-17 19:56:39 -050010620 vport = pmb->vport;
James Smart92d7f7b2007-06-17 19:56:38 -050010621
10622 /* First check out the status word */
10623 lpfc_sli_pcimem_bcopy(mbox, pmbox, sizeof(uint32_t));
10624 if (pmbox->mbxOwner != OWN_HOST) {
James Smart5b75da22008-12-04 22:39:35 -050010625 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart92d7f7b2007-06-17 19:56:38 -050010626 /*
10627 * Stray Mailbox Interrupt, mbxCommand <cmd>
10628 * mbxStatus <status>
10629 */
James Smart09372822008-01-11 01:52:54 -050010630 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
James Smart92d7f7b2007-06-17 19:56:38 -050010631 LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -040010632 "(%d):0304 Stray Mailbox "
James Smart92d7f7b2007-06-17 19:56:38 -050010633 "Interrupt mbxCommand x%x "
10634 "mbxStatus x%x\n",
James Smarte8b62012007-08-02 11:10:09 -040010635 (vport ? vport->vpi : 0),
James Smart92d7f7b2007-06-17 19:56:38 -050010636 pmbox->mbxCommand,
10637 pmbox->mbxStatus);
James Smart09372822008-01-11 01:52:54 -050010638 /* clear mailbox attention bit */
10639 work_ha_copy &= ~HA_MBATT;
10640 } else {
James Smart97eab632008-04-07 10:16:05 -040010641 phba->sli.mbox_active = NULL;
James Smart5b75da22008-12-04 22:39:35 -050010642 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart09372822008-01-11 01:52:54 -050010643 phba->last_completion_time = jiffies;
10644 del_timer(&phba->sli.mbox_tmo);
James Smart09372822008-01-11 01:52:54 -050010645 if (pmb->mbox_cmpl) {
10646 lpfc_sli_pcimem_bcopy(mbox, pmbox,
10647 MAILBOX_CMD_SIZE);
James Smart7a470272010-03-15 11:25:20 -040010648 if (pmb->out_ext_byte_len &&
10649 pmb->context2)
10650 lpfc_sli_pcimem_bcopy(
10651 phba->mbox_ext,
10652 pmb->context2,
10653 pmb->out_ext_byte_len);
James Smart858c9f62007-06-17 19:56:39 -050010654 }
James Smart09372822008-01-11 01:52:54 -050010655 if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
10656 pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
10657
10658 lpfc_debugfs_disc_trc(vport,
10659 LPFC_DISC_TRC_MBOX_VPORT,
10660 "MBOX dflt rpi: : "
10661 "status:x%x rpi:x%x",
10662 (uint32_t)pmbox->mbxStatus,
10663 pmbox->un.varWords[0], 0);
10664
10665 if (!pmbox->mbxStatus) {
10666 mp = (struct lpfc_dmabuf *)
10667 (pmb->context1);
10668 ndlp = (struct lpfc_nodelist *)
10669 pmb->context2;
10670
10671 /* Reg_LOGIN of dflt RPI was
10672 * successful. new lets get
10673 * rid of the RPI using the
10674 * same mbox buffer.
10675 */
10676 lpfc_unreg_login(phba,
10677 vport->vpi,
10678 pmbox->un.varWords[0],
10679 pmb);
10680 pmb->mbox_cmpl =
10681 lpfc_mbx_cmpl_dflt_rpi;
10682 pmb->context1 = mp;
10683 pmb->context2 = ndlp;
10684 pmb->vport = vport;
James Smart58da1ff2008-04-07 10:15:56 -040010685 rc = lpfc_sli_issue_mbox(phba,
10686 pmb,
10687 MBX_NOWAIT);
10688 if (rc != MBX_BUSY)
10689 lpfc_printf_log(phba,
10690 KERN_ERR,
10691 LOG_MBOX | LOG_SLI,
James Smartd7c255b2008-08-24 21:50:00 -040010692 "0350 rc should have"
James Smart6a9c52c2009-10-02 15:16:51 -040010693 "been MBX_BUSY\n");
James Smart3772a992009-05-22 14:50:54 -040010694 if (rc != MBX_NOT_FINISHED)
10695 goto send_current_mbox;
James Smart09372822008-01-11 01:52:54 -050010696 }
10697 }
James Smart5b75da22008-12-04 22:39:35 -050010698 spin_lock_irqsave(
10699 &phba->pport->work_port_lock,
10700 iflag);
James Smart09372822008-01-11 01:52:54 -050010701 phba->pport->work_port_events &=
10702 ~WORKER_MBOX_TMO;
James Smart5b75da22008-12-04 22:39:35 -050010703 spin_unlock_irqrestore(
10704 &phba->pport->work_port_lock,
10705 iflag);
James Smart09372822008-01-11 01:52:54 -050010706 lpfc_mbox_cmpl_put(phba, pmb);
James Smart858c9f62007-06-17 19:56:39 -050010707 }
James Smart97eab632008-04-07 10:16:05 -040010708 } else
James Smart5b75da22008-12-04 22:39:35 -050010709 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart93996272008-08-24 21:50:30 -040010710
James Smart92d7f7b2007-06-17 19:56:38 -050010711 if ((work_ha_copy & HA_MBATT) &&
10712 (phba->sli.mbox_active == NULL)) {
James Smart858c9f62007-06-17 19:56:39 -050010713send_current_mbox:
James Smart92d7f7b2007-06-17 19:56:38 -050010714 /* Process next mailbox command if there is one */
James Smart58da1ff2008-04-07 10:15:56 -040010715 do {
10716 rc = lpfc_sli_issue_mbox(phba, NULL,
10717 MBX_NOWAIT);
10718 } while (rc == MBX_NOT_FINISHED);
10719 if (rc != MBX_SUCCESS)
10720 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
10721 LOG_SLI, "0349 rc should be "
James Smart6a9c52c2009-10-02 15:16:51 -040010722 "MBX_SUCCESS\n");
James Smart92d7f7b2007-06-17 19:56:38 -050010723 }
10724
James Smart5b75da22008-12-04 22:39:35 -050010725 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -050010726 phba->work_ha |= work_ha_copy;
James Smart5b75da22008-12-04 22:39:35 -050010727 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart5e9d9b82008-06-14 22:52:53 -040010728 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -050010729 }
James Smart93996272008-08-24 21:50:30 -040010730 return IRQ_HANDLED;
James Smart9940b972011-03-11 16:06:12 -050010731unplug_error:
10732 spin_unlock_irqrestore(&phba->hbalock, iflag);
10733 return IRQ_HANDLED;
dea31012005-04-17 16:05:31 -050010734
James Smart3772a992009-05-22 14:50:54 -040010735} /* lpfc_sli_sp_intr_handler */
James Smart93996272008-08-24 21:50:30 -040010736
10737/**
James Smart3772a992009-05-22 14:50:54 -040010738 * lpfc_sli_fp_intr_handler - Fast-path interrupt handler to SLI-3 device.
James Smart93996272008-08-24 21:50:30 -040010739 * @irq: Interrupt number.
10740 * @dev_id: The device context pointer.
10741 *
10742 * This function is directly called from the PCI layer as an interrupt
James Smart3772a992009-05-22 14:50:54 -040010743 * service routine when device with SLI-3 interface spec is enabled with
10744 * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
10745 * ring event in the HBA. However, when the device is enabled with either
10746 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
10747 * device-level interrupt handler. When the PCI slot is in error recovery
10748 * or the HBA is undergoing initialization, the interrupt handler will not
10749 * process the interrupt. The SCSI FCP fast-path ring event are handled in
10750 * the intrrupt context. This function is called without any lock held.
10751 * It gets the hbalock to access and update SLI data structures.
James Smart93996272008-08-24 21:50:30 -040010752 *
10753 * This function returns IRQ_HANDLED when interrupt is handled else it
10754 * returns IRQ_NONE.
10755 **/
10756irqreturn_t
James Smart3772a992009-05-22 14:50:54 -040010757lpfc_sli_fp_intr_handler(int irq, void *dev_id)
James Smart93996272008-08-24 21:50:30 -040010758{
10759 struct lpfc_hba *phba;
10760 uint32_t ha_copy;
10761 unsigned long status;
James Smart5b75da22008-12-04 22:39:35 -050010762 unsigned long iflag;
James Smart93996272008-08-24 21:50:30 -040010763
10764 /* Get the driver's phba structure from the dev_id and
10765 * assume the HBA is not interrupting.
10766 */
10767 phba = (struct lpfc_hba *) dev_id;
10768
10769 if (unlikely(!phba))
10770 return IRQ_NONE;
dea31012005-04-17 16:05:31 -050010771
10772 /*
James Smart93996272008-08-24 21:50:30 -040010773 * Stuff needs to be attented to when this function is invoked as an
10774 * individual interrupt handler in MSI-X multi-message interrupt mode
dea31012005-04-17 16:05:31 -050010775 */
James Smart93996272008-08-24 21:50:30 -040010776 if (phba->intr_type == MSIX) {
James Smart3772a992009-05-22 14:50:54 -040010777 /* Check device state for handling interrupt */
10778 if (lpfc_intr_state_check(phba))
James Smart93996272008-08-24 21:50:30 -040010779 return IRQ_NONE;
10780 /* Need to read HA REG for FCP ring and other ring events */
James Smart9940b972011-03-11 16:06:12 -050010781 if (lpfc_readl(phba->HAregaddr, &ha_copy))
10782 return IRQ_HANDLED;
James Smart93996272008-08-24 21:50:30 -040010783 /* Clear up only attention source related to fast-path */
James Smart5b75da22008-12-04 22:39:35 -050010784 spin_lock_irqsave(&phba->hbalock, iflag);
James Smarta257bf92009-04-06 18:48:10 -040010785 /*
10786 * If there is deferred error attention, do not check for
10787 * any interrupt.
10788 */
10789 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
James Smart3772a992009-05-22 14:50:54 -040010790 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smarta257bf92009-04-06 18:48:10 -040010791 return IRQ_NONE;
10792 }
James Smart93996272008-08-24 21:50:30 -040010793 writel((ha_copy & (HA_R0_CLR_MSK | HA_R1_CLR_MSK)),
10794 phba->HAregaddr);
10795 readl(phba->HAregaddr); /* flush */
James Smart5b75da22008-12-04 22:39:35 -050010796 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart93996272008-08-24 21:50:30 -040010797 } else
10798 ha_copy = phba->ha_copy;
10799
10800 /*
10801 * Process all events on FCP ring. Take the optimized path for FCP IO.
10802 */
10803 ha_copy &= ~(phba->work_ha_mask);
10804
10805 status = (ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
dea31012005-04-17 16:05:31 -050010806 status >>= (4*LPFC_FCP_RING);
James Smart858c9f62007-06-17 19:56:39 -050010807 if (status & HA_RXMASK)
dea31012005-04-17 16:05:31 -050010808 lpfc_sli_handle_fast_ring_event(phba,
10809 &phba->sli.ring[LPFC_FCP_RING],
10810 status);
James Smarta4bc3372006-12-02 13:34:16 -050010811
10812 if (phba->cfg_multi_ring_support == 2) {
10813 /*
James Smart93996272008-08-24 21:50:30 -040010814 * Process all events on extra ring. Take the optimized path
10815 * for extra ring IO.
James Smarta4bc3372006-12-02 13:34:16 -050010816 */
James Smart93996272008-08-24 21:50:30 -040010817 status = (ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
James Smarta4bc3372006-12-02 13:34:16 -050010818 status >>= (4*LPFC_EXTRA_RING);
James Smart858c9f62007-06-17 19:56:39 -050010819 if (status & HA_RXMASK) {
James Smarta4bc3372006-12-02 13:34:16 -050010820 lpfc_sli_handle_fast_ring_event(phba,
10821 &phba->sli.ring[LPFC_EXTRA_RING],
10822 status);
10823 }
10824 }
dea31012005-04-17 16:05:31 -050010825 return IRQ_HANDLED;
James Smart3772a992009-05-22 14:50:54 -040010826} /* lpfc_sli_fp_intr_handler */
dea31012005-04-17 16:05:31 -050010827
James Smart93996272008-08-24 21:50:30 -040010828/**
James Smart3772a992009-05-22 14:50:54 -040010829 * lpfc_sli_intr_handler - Device-level interrupt handler to SLI-3 device
James Smart93996272008-08-24 21:50:30 -040010830 * @irq: Interrupt number.
10831 * @dev_id: The device context pointer.
10832 *
James Smart3772a992009-05-22 14:50:54 -040010833 * This function is the HBA device-level interrupt handler to device with
10834 * SLI-3 interface spec, called from the PCI layer when either MSI or
10835 * Pin-IRQ interrupt mode is enabled and there is an event in the HBA which
10836 * requires driver attention. This function invokes the slow-path interrupt
10837 * attention handling function and fast-path interrupt attention handling
10838 * function in turn to process the relevant HBA attention events. This
10839 * function is called without any lock held. It gets the hbalock to access
10840 * and update SLI data structures.
James Smart93996272008-08-24 21:50:30 -040010841 *
10842 * This function returns IRQ_HANDLED when interrupt is handled, else it
10843 * returns IRQ_NONE.
10844 **/
10845irqreturn_t
James Smart3772a992009-05-22 14:50:54 -040010846lpfc_sli_intr_handler(int irq, void *dev_id)
James Smart93996272008-08-24 21:50:30 -040010847{
10848 struct lpfc_hba *phba;
10849 irqreturn_t sp_irq_rc, fp_irq_rc;
10850 unsigned long status1, status2;
James Smarta747c9c2009-11-18 15:41:10 -050010851 uint32_t hc_copy;
James Smart93996272008-08-24 21:50:30 -040010852
10853 /*
10854 * Get the driver's phba structure from the dev_id and
10855 * assume the HBA is not interrupting.
10856 */
10857 phba = (struct lpfc_hba *) dev_id;
10858
10859 if (unlikely(!phba))
10860 return IRQ_NONE;
10861
James Smart3772a992009-05-22 14:50:54 -040010862 /* Check device state for handling interrupt */
10863 if (lpfc_intr_state_check(phba))
James Smart93996272008-08-24 21:50:30 -040010864 return IRQ_NONE;
10865
10866 spin_lock(&phba->hbalock);
James Smart9940b972011-03-11 16:06:12 -050010867 if (lpfc_readl(phba->HAregaddr, &phba->ha_copy)) {
10868 spin_unlock(&phba->hbalock);
10869 return IRQ_HANDLED;
10870 }
10871
James Smart93996272008-08-24 21:50:30 -040010872 if (unlikely(!phba->ha_copy)) {
10873 spin_unlock(&phba->hbalock);
10874 return IRQ_NONE;
10875 } else if (phba->ha_copy & HA_ERATT) {
10876 if (phba->hba_flag & HBA_ERATT_HANDLED)
10877 /* ERATT polling has handled ERATT */
10878 phba->ha_copy &= ~HA_ERATT;
10879 else
10880 /* Indicate interrupt handler handles ERATT */
10881 phba->hba_flag |= HBA_ERATT_HANDLED;
10882 }
10883
James Smarta257bf92009-04-06 18:48:10 -040010884 /*
10885 * If there is deferred error attention, do not check for any interrupt.
10886 */
10887 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
Dan Carpenterec21b3b2010-08-08 00:15:17 +020010888 spin_unlock(&phba->hbalock);
James Smarta257bf92009-04-06 18:48:10 -040010889 return IRQ_NONE;
10890 }
10891
James Smart93996272008-08-24 21:50:30 -040010892 /* Clear attention sources except link and error attentions */
James Smart9940b972011-03-11 16:06:12 -050010893 if (lpfc_readl(phba->HCregaddr, &hc_copy)) {
10894 spin_unlock(&phba->hbalock);
10895 return IRQ_HANDLED;
10896 }
James Smarta747c9c2009-11-18 15:41:10 -050010897 writel(hc_copy & ~(HC_MBINT_ENA | HC_R0INT_ENA | HC_R1INT_ENA
10898 | HC_R2INT_ENA | HC_LAINT_ENA | HC_ERINT_ENA),
10899 phba->HCregaddr);
James Smart93996272008-08-24 21:50:30 -040010900 writel((phba->ha_copy & ~(HA_LATT | HA_ERATT)), phba->HAregaddr);
James Smarta747c9c2009-11-18 15:41:10 -050010901 writel(hc_copy, phba->HCregaddr);
James Smart93996272008-08-24 21:50:30 -040010902 readl(phba->HAregaddr); /* flush */
10903 spin_unlock(&phba->hbalock);
10904
10905 /*
10906 * Invokes slow-path host attention interrupt handling as appropriate.
10907 */
10908
10909 /* status of events with mailbox and link attention */
10910 status1 = phba->ha_copy & (HA_MBATT | HA_LATT | HA_ERATT);
10911
10912 /* status of events with ELS ring */
10913 status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_ELS_RING)));
10914 status2 >>= (4*LPFC_ELS_RING);
10915
10916 if (status1 || (status2 & HA_RXMASK))
James Smart3772a992009-05-22 14:50:54 -040010917 sp_irq_rc = lpfc_sli_sp_intr_handler(irq, dev_id);
James Smart93996272008-08-24 21:50:30 -040010918 else
10919 sp_irq_rc = IRQ_NONE;
10920
10921 /*
10922 * Invoke fast-path host attention interrupt handling as appropriate.
10923 */
10924
10925 /* status of events with FCP ring */
10926 status1 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
10927 status1 >>= (4*LPFC_FCP_RING);
10928
10929 /* status of events with extra ring */
10930 if (phba->cfg_multi_ring_support == 2) {
10931 status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
10932 status2 >>= (4*LPFC_EXTRA_RING);
10933 } else
10934 status2 = 0;
10935
10936 if ((status1 & HA_RXMASK) || (status2 & HA_RXMASK))
James Smart3772a992009-05-22 14:50:54 -040010937 fp_irq_rc = lpfc_sli_fp_intr_handler(irq, dev_id);
James Smart93996272008-08-24 21:50:30 -040010938 else
10939 fp_irq_rc = IRQ_NONE;
10940
10941 /* Return device-level interrupt handling status */
10942 return (sp_irq_rc == IRQ_HANDLED) ? sp_irq_rc : fp_irq_rc;
James Smart3772a992009-05-22 14:50:54 -040010943} /* lpfc_sli_intr_handler */
James Smart4f774512009-05-22 14:52:35 -040010944
10945/**
10946 * lpfc_sli4_fcp_xri_abort_event_proc - Process fcp xri abort event
10947 * @phba: pointer to lpfc hba data structure.
10948 *
10949 * This routine is invoked by the worker thread to process all the pending
10950 * SLI4 FCP abort XRI events.
10951 **/
10952void lpfc_sli4_fcp_xri_abort_event_proc(struct lpfc_hba *phba)
10953{
10954 struct lpfc_cq_event *cq_event;
10955
10956 /* First, declare the fcp xri abort event has been handled */
10957 spin_lock_irq(&phba->hbalock);
10958 phba->hba_flag &= ~FCP_XRI_ABORT_EVENT;
10959 spin_unlock_irq(&phba->hbalock);
10960 /* Now, handle all the fcp xri abort events */
10961 while (!list_empty(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue)) {
10962 /* Get the first event from the head of the event queue */
10963 spin_lock_irq(&phba->hbalock);
10964 list_remove_head(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue,
10965 cq_event, struct lpfc_cq_event, list);
10966 spin_unlock_irq(&phba->hbalock);
10967 /* Notify aborted XRI for FCP work queue */
10968 lpfc_sli4_fcp_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
10969 /* Free the event processed back to the free pool */
10970 lpfc_sli4_cq_event_release(phba, cq_event);
10971 }
10972}
10973
10974/**
10975 * lpfc_sli4_els_xri_abort_event_proc - Process els xri abort event
10976 * @phba: pointer to lpfc hba data structure.
10977 *
10978 * This routine is invoked by the worker thread to process all the pending
10979 * SLI4 els abort xri events.
10980 **/
10981void lpfc_sli4_els_xri_abort_event_proc(struct lpfc_hba *phba)
10982{
10983 struct lpfc_cq_event *cq_event;
10984
10985 /* First, declare the els xri abort event has been handled */
10986 spin_lock_irq(&phba->hbalock);
10987 phba->hba_flag &= ~ELS_XRI_ABORT_EVENT;
10988 spin_unlock_irq(&phba->hbalock);
10989 /* Now, handle all the els xri abort events */
10990 while (!list_empty(&phba->sli4_hba.sp_els_xri_aborted_work_queue)) {
10991 /* Get the first event from the head of the event queue */
10992 spin_lock_irq(&phba->hbalock);
10993 list_remove_head(&phba->sli4_hba.sp_els_xri_aborted_work_queue,
10994 cq_event, struct lpfc_cq_event, list);
10995 spin_unlock_irq(&phba->hbalock);
10996 /* Notify aborted XRI for ELS work queue */
10997 lpfc_sli4_els_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
10998 /* Free the event processed back to the free pool */
10999 lpfc_sli4_cq_event_release(phba, cq_event);
11000 }
11001}
11002
James Smart341af102010-01-26 23:07:37 -050011003/**
11004 * lpfc_sli4_iocb_param_transfer - Transfer pIocbOut and cmpl status to pIocbIn
11005 * @phba: pointer to lpfc hba data structure
11006 * @pIocbIn: pointer to the rspiocbq
11007 * @pIocbOut: pointer to the cmdiocbq
11008 * @wcqe: pointer to the complete wcqe
11009 *
11010 * This routine transfers the fields of a command iocbq to a response iocbq
11011 * by copying all the IOCB fields from command iocbq and transferring the
11012 * completion status information from the complete wcqe.
11013 **/
James Smart4f774512009-05-22 14:52:35 -040011014static void
James Smart341af102010-01-26 23:07:37 -050011015lpfc_sli4_iocb_param_transfer(struct lpfc_hba *phba,
11016 struct lpfc_iocbq *pIocbIn,
James Smart4f774512009-05-22 14:52:35 -040011017 struct lpfc_iocbq *pIocbOut,
11018 struct lpfc_wcqe_complete *wcqe)
11019{
James Smart341af102010-01-26 23:07:37 -050011020 unsigned long iflags;
James Smartacd68592012-01-18 16:25:09 -050011021 uint32_t status;
James Smart4f774512009-05-22 14:52:35 -040011022 size_t offset = offsetof(struct lpfc_iocbq, iocb);
11023
11024 memcpy((char *)pIocbIn + offset, (char *)pIocbOut + offset,
11025 sizeof(struct lpfc_iocbq) - offset);
James Smart4f774512009-05-22 14:52:35 -040011026 /* Map WCQE parameters into irspiocb parameters */
James Smartacd68592012-01-18 16:25:09 -050011027 status = bf_get(lpfc_wcqe_c_status, wcqe);
11028 pIocbIn->iocb.ulpStatus = (status & LPFC_IOCB_STATUS_MASK);
James Smart4f774512009-05-22 14:52:35 -040011029 if (pIocbOut->iocb_flag & LPFC_IO_FCP)
11030 if (pIocbIn->iocb.ulpStatus == IOSTAT_FCP_RSP_ERROR)
11031 pIocbIn->iocb.un.fcpi.fcpi_parm =
11032 pIocbOut->iocb.un.fcpi.fcpi_parm -
11033 wcqe->total_data_placed;
11034 else
11035 pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
James Smart695a8142010-01-26 23:08:03 -050011036 else {
James Smart4f774512009-05-22 14:52:35 -040011037 pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
James Smart695a8142010-01-26 23:08:03 -050011038 pIocbIn->iocb.un.genreq64.bdl.bdeSize = wcqe->total_data_placed;
11039 }
James Smart341af102010-01-26 23:07:37 -050011040
James Smartacd68592012-01-18 16:25:09 -050011041 /* Convert BG errors for completion status */
11042 if (status == CQE_STATUS_DI_ERROR) {
11043 pIocbIn->iocb.ulpStatus = IOSTAT_LOCAL_REJECT;
11044
11045 if (bf_get(lpfc_wcqe_c_bg_edir, wcqe))
11046 pIocbIn->iocb.un.ulpWord[4] = IOERR_RX_DMA_FAILED;
11047 else
11048 pIocbIn->iocb.un.ulpWord[4] = IOERR_TX_DMA_FAILED;
11049
11050 pIocbIn->iocb.unsli3.sli3_bg.bgstat = 0;
11051 if (bf_get(lpfc_wcqe_c_bg_ge, wcqe)) /* Guard Check failed */
11052 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11053 BGS_GUARD_ERR_MASK;
11054 if (bf_get(lpfc_wcqe_c_bg_ae, wcqe)) /* App Tag Check failed */
11055 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11056 BGS_APPTAG_ERR_MASK;
11057 if (bf_get(lpfc_wcqe_c_bg_re, wcqe)) /* Ref Tag Check failed */
11058 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11059 BGS_REFTAG_ERR_MASK;
11060
11061 /* Check to see if there was any good data before the error */
11062 if (bf_get(lpfc_wcqe_c_bg_tdpv, wcqe)) {
11063 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11064 BGS_HI_WATER_MARK_PRESENT_MASK;
11065 pIocbIn->iocb.unsli3.sli3_bg.bghm =
11066 wcqe->total_data_placed;
11067 }
11068
11069 /*
11070 * Set ALL the error bits to indicate we don't know what
11071 * type of error it is.
11072 */
11073 if (!pIocbIn->iocb.unsli3.sli3_bg.bgstat)
11074 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11075 (BGS_REFTAG_ERR_MASK | BGS_APPTAG_ERR_MASK |
11076 BGS_GUARD_ERR_MASK);
11077 }
11078
James Smart341af102010-01-26 23:07:37 -050011079 /* Pick up HBA exchange busy condition */
11080 if (bf_get(lpfc_wcqe_c_xb, wcqe)) {
11081 spin_lock_irqsave(&phba->hbalock, iflags);
11082 pIocbIn->iocb_flag |= LPFC_EXCHANGE_BUSY;
11083 spin_unlock_irqrestore(&phba->hbalock, iflags);
11084 }
James Smart4f774512009-05-22 14:52:35 -040011085}
11086
11087/**
James Smart45ed1192009-10-02 15:17:02 -040011088 * lpfc_sli4_els_wcqe_to_rspiocbq - Get response iocbq from els wcqe
11089 * @phba: Pointer to HBA context object.
11090 * @wcqe: Pointer to work-queue completion queue entry.
11091 *
11092 * This routine handles an ELS work-queue completion event and construct
11093 * a pseudo response ELS IODBQ from the SLI4 ELS WCQE for the common
11094 * discovery engine to handle.
11095 *
11096 * Return: Pointer to the receive IOCBQ, NULL otherwise.
11097 **/
11098static struct lpfc_iocbq *
11099lpfc_sli4_els_wcqe_to_rspiocbq(struct lpfc_hba *phba,
11100 struct lpfc_iocbq *irspiocbq)
11101{
11102 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
11103 struct lpfc_iocbq *cmdiocbq;
11104 struct lpfc_wcqe_complete *wcqe;
11105 unsigned long iflags;
11106
11107 wcqe = &irspiocbq->cq_event.cqe.wcqe_cmpl;
James Smart7e56aa22012-08-03 12:35:34 -040011108 spin_lock_irqsave(&pring->ring_lock, iflags);
James Smart45ed1192009-10-02 15:17:02 -040011109 pring->stats.iocb_event++;
11110 /* Look up the ELS command IOCB and create pseudo response IOCB */
11111 cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
11112 bf_get(lpfc_wcqe_c_request_tag, wcqe));
James Smart7e56aa22012-08-03 12:35:34 -040011113 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smart45ed1192009-10-02 15:17:02 -040011114
11115 if (unlikely(!cmdiocbq)) {
11116 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11117 "0386 ELS complete with no corresponding "
11118 "cmdiocb: iotag (%d)\n",
11119 bf_get(lpfc_wcqe_c_request_tag, wcqe));
11120 lpfc_sli_release_iocbq(phba, irspiocbq);
11121 return NULL;
11122 }
11123
11124 /* Fake the irspiocbq and copy necessary response information */
James Smart341af102010-01-26 23:07:37 -050011125 lpfc_sli4_iocb_param_transfer(phba, irspiocbq, cmdiocbq, wcqe);
James Smart45ed1192009-10-02 15:17:02 -040011126
11127 return irspiocbq;
11128}
11129
11130/**
James Smart04c68492009-05-22 14:52:52 -040011131 * lpfc_sli4_sp_handle_async_event - Handle an asynchroous event
11132 * @phba: Pointer to HBA context object.
11133 * @cqe: Pointer to mailbox completion queue entry.
11134 *
11135 * This routine process a mailbox completion queue entry with asynchrous
11136 * event.
11137 *
11138 * Return: true if work posted to worker thread, otherwise false.
11139 **/
11140static bool
11141lpfc_sli4_sp_handle_async_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
11142{
11143 struct lpfc_cq_event *cq_event;
11144 unsigned long iflags;
11145
11146 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
11147 "0392 Async Event: word0:x%x, word1:x%x, "
11148 "word2:x%x, word3:x%x\n", mcqe->word0,
11149 mcqe->mcqe_tag0, mcqe->mcqe_tag1, mcqe->trailer);
11150
11151 /* Allocate a new internal CQ_EVENT entry */
11152 cq_event = lpfc_sli4_cq_event_alloc(phba);
11153 if (!cq_event) {
11154 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11155 "0394 Failed to allocate CQ_EVENT entry\n");
11156 return false;
11157 }
11158
11159 /* Move the CQE into an asynchronous event entry */
11160 memcpy(&cq_event->cqe, mcqe, sizeof(struct lpfc_mcqe));
11161 spin_lock_irqsave(&phba->hbalock, iflags);
11162 list_add_tail(&cq_event->list, &phba->sli4_hba.sp_asynce_work_queue);
11163 /* Set the async event flag */
11164 phba->hba_flag |= ASYNC_EVENT;
11165 spin_unlock_irqrestore(&phba->hbalock, iflags);
11166
11167 return true;
11168}
11169
11170/**
11171 * lpfc_sli4_sp_handle_mbox_event - Handle a mailbox completion event
11172 * @phba: Pointer to HBA context object.
11173 * @cqe: Pointer to mailbox completion queue entry.
11174 *
11175 * This routine process a mailbox completion queue entry with mailbox
11176 * completion event.
11177 *
11178 * Return: true if work posted to worker thread, otherwise false.
11179 **/
11180static bool
11181lpfc_sli4_sp_handle_mbox_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
11182{
11183 uint32_t mcqe_status;
11184 MAILBOX_t *mbox, *pmbox;
11185 struct lpfc_mqe *mqe;
11186 struct lpfc_vport *vport;
11187 struct lpfc_nodelist *ndlp;
11188 struct lpfc_dmabuf *mp;
11189 unsigned long iflags;
11190 LPFC_MBOXQ_t *pmb;
11191 bool workposted = false;
11192 int rc;
11193
11194 /* If not a mailbox complete MCQE, out by checking mailbox consume */
11195 if (!bf_get(lpfc_trailer_completed, mcqe))
11196 goto out_no_mqe_complete;
11197
11198 /* Get the reference to the active mbox command */
11199 spin_lock_irqsave(&phba->hbalock, iflags);
11200 pmb = phba->sli.mbox_active;
11201 if (unlikely(!pmb)) {
11202 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
11203 "1832 No pending MBOX command to handle\n");
11204 spin_unlock_irqrestore(&phba->hbalock, iflags);
11205 goto out_no_mqe_complete;
11206 }
11207 spin_unlock_irqrestore(&phba->hbalock, iflags);
11208 mqe = &pmb->u.mqe;
11209 pmbox = (MAILBOX_t *)&pmb->u.mqe;
11210 mbox = phba->mbox;
11211 vport = pmb->vport;
11212
11213 /* Reset heartbeat timer */
11214 phba->last_completion_time = jiffies;
11215 del_timer(&phba->sli.mbox_tmo);
11216
11217 /* Move mbox data to caller's mailbox region, do endian swapping */
11218 if (pmb->mbox_cmpl && mbox)
11219 lpfc_sli_pcimem_bcopy(mbox, mqe, sizeof(struct lpfc_mqe));
James Smart04c68492009-05-22 14:52:52 -040011220
James Smart73d91e52011-10-10 21:32:10 -040011221 /*
11222 * For mcqe errors, conditionally move a modified error code to
11223 * the mbox so that the error will not be missed.
11224 */
11225 mcqe_status = bf_get(lpfc_mcqe_status, mcqe);
11226 if (mcqe_status != MB_CQE_STATUS_SUCCESS) {
11227 if (bf_get(lpfc_mqe_status, mqe) == MBX_SUCCESS)
11228 bf_set(lpfc_mqe_status, mqe,
11229 (LPFC_MBX_ERROR_RANGE | mcqe_status));
11230 }
James Smart04c68492009-05-22 14:52:52 -040011231 if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
11232 pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
11233 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_MBOX_VPORT,
11234 "MBOX dflt rpi: status:x%x rpi:x%x",
11235 mcqe_status,
11236 pmbox->un.varWords[0], 0);
11237 if (mcqe_status == MB_CQE_STATUS_SUCCESS) {
11238 mp = (struct lpfc_dmabuf *)(pmb->context1);
11239 ndlp = (struct lpfc_nodelist *)pmb->context2;
11240 /* Reg_LOGIN of dflt RPI was successful. Now lets get
11241 * RID of the PPI using the same mbox buffer.
11242 */
11243 lpfc_unreg_login(phba, vport->vpi,
11244 pmbox->un.varWords[0], pmb);
11245 pmb->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
11246 pmb->context1 = mp;
11247 pmb->context2 = ndlp;
11248 pmb->vport = vport;
11249 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
11250 if (rc != MBX_BUSY)
11251 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
11252 LOG_SLI, "0385 rc should "
11253 "have been MBX_BUSY\n");
11254 if (rc != MBX_NOT_FINISHED)
11255 goto send_current_mbox;
11256 }
11257 }
11258 spin_lock_irqsave(&phba->pport->work_port_lock, iflags);
11259 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
11260 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflags);
11261
11262 /* There is mailbox completion work to do */
11263 spin_lock_irqsave(&phba->hbalock, iflags);
11264 __lpfc_mbox_cmpl_put(phba, pmb);
11265 phba->work_ha |= HA_MBATT;
11266 spin_unlock_irqrestore(&phba->hbalock, iflags);
11267 workposted = true;
11268
11269send_current_mbox:
11270 spin_lock_irqsave(&phba->hbalock, iflags);
11271 /* Release the mailbox command posting token */
11272 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
11273 /* Setting active mailbox pointer need to be in sync to flag clear */
11274 phba->sli.mbox_active = NULL;
11275 spin_unlock_irqrestore(&phba->hbalock, iflags);
11276 /* Wake up worker thread to post the next pending mailbox command */
11277 lpfc_worker_wake_up(phba);
11278out_no_mqe_complete:
11279 if (bf_get(lpfc_trailer_consumed, mcqe))
11280 lpfc_sli4_mq_release(phba->sli4_hba.mbx_wq);
11281 return workposted;
11282}
11283
11284/**
11285 * lpfc_sli4_sp_handle_mcqe - Process a mailbox completion queue entry
11286 * @phba: Pointer to HBA context object.
11287 * @cqe: Pointer to mailbox completion queue entry.
11288 *
11289 * This routine process a mailbox completion queue entry, it invokes the
11290 * proper mailbox complete handling or asynchrous event handling routine
11291 * according to the MCQE's async bit.
11292 *
11293 * Return: true if work posted to worker thread, otherwise false.
11294 **/
11295static bool
11296lpfc_sli4_sp_handle_mcqe(struct lpfc_hba *phba, struct lpfc_cqe *cqe)
11297{
11298 struct lpfc_mcqe mcqe;
11299 bool workposted;
11300
11301 /* Copy the mailbox MCQE and convert endian order as needed */
11302 lpfc_sli_pcimem_bcopy(cqe, &mcqe, sizeof(struct lpfc_mcqe));
11303
11304 /* Invoke the proper event handling routine */
11305 if (!bf_get(lpfc_trailer_async, &mcqe))
11306 workposted = lpfc_sli4_sp_handle_mbox_event(phba, &mcqe);
11307 else
11308 workposted = lpfc_sli4_sp_handle_async_event(phba, &mcqe);
11309 return workposted;
11310}
11311
11312/**
James Smart4f774512009-05-22 14:52:35 -040011313 * lpfc_sli4_sp_handle_els_wcqe - Handle els work-queue completion event
11314 * @phba: Pointer to HBA context object.
James Smart2a76a282012-08-03 12:35:54 -040011315 * @cq: Pointer to associated CQ
James Smart4f774512009-05-22 14:52:35 -040011316 * @wcqe: Pointer to work-queue completion queue entry.
11317 *
11318 * This routine handles an ELS work-queue completion event.
11319 *
11320 * Return: true if work posted to worker thread, otherwise false.
11321 **/
11322static bool
James Smart2a76a282012-08-03 12:35:54 -040011323lpfc_sli4_sp_handle_els_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
James Smart4f774512009-05-22 14:52:35 -040011324 struct lpfc_wcqe_complete *wcqe)
11325{
James Smart4f774512009-05-22 14:52:35 -040011326 struct lpfc_iocbq *irspiocbq;
11327 unsigned long iflags;
James Smart2a76a282012-08-03 12:35:54 -040011328 struct lpfc_sli_ring *pring = cq->pring;
James Smart0e9bb8d2013-03-01 16:35:12 -050011329 int txq_cnt = 0;
11330 int txcmplq_cnt = 0;
11331 int fcp_txcmplq_cnt = 0;
James Smart4f774512009-05-22 14:52:35 -040011332
James Smart45ed1192009-10-02 15:17:02 -040011333 /* Get an irspiocbq for later ELS response processing use */
James Smart4f774512009-05-22 14:52:35 -040011334 irspiocbq = lpfc_sli_get_iocbq(phba);
11335 if (!irspiocbq) {
James Smart0e9bb8d2013-03-01 16:35:12 -050011336 if (!list_empty(&pring->txq))
11337 txq_cnt++;
11338 if (!list_empty(&pring->txcmplq))
11339 txcmplq_cnt++;
11340 if (!list_empty(&phba->sli.ring[LPFC_FCP_RING].txcmplq))
11341 fcp_txcmplq_cnt++;
James Smart4f774512009-05-22 14:52:35 -040011342 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart2a9bf3d2010-06-07 15:24:45 -040011343 "0387 NO IOCBQ data: txq_cnt=%d iocb_cnt=%d "
11344 "fcp_txcmplq_cnt=%d, els_txcmplq_cnt=%d\n",
James Smart0e9bb8d2013-03-01 16:35:12 -050011345 txq_cnt, phba->iocb_cnt,
11346 fcp_txcmplq_cnt,
11347 txcmplq_cnt);
James Smart45ed1192009-10-02 15:17:02 -040011348 return false;
James Smart4f774512009-05-22 14:52:35 -040011349 }
James Smart4f774512009-05-22 14:52:35 -040011350
James Smart45ed1192009-10-02 15:17:02 -040011351 /* Save off the slow-path queue event for work thread to process */
11352 memcpy(&irspiocbq->cq_event.cqe.wcqe_cmpl, wcqe, sizeof(*wcqe));
James Smart4f774512009-05-22 14:52:35 -040011353 spin_lock_irqsave(&phba->hbalock, iflags);
James Smart4d9ab992009-10-02 15:16:39 -040011354 list_add_tail(&irspiocbq->cq_event.list,
James Smart45ed1192009-10-02 15:17:02 -040011355 &phba->sli4_hba.sp_queue_event);
11356 phba->hba_flag |= HBA_SP_QUEUE_EVT;
James Smart4f774512009-05-22 14:52:35 -040011357 spin_unlock_irqrestore(&phba->hbalock, iflags);
James Smart4f774512009-05-22 14:52:35 -040011358
James Smart45ed1192009-10-02 15:17:02 -040011359 return true;
James Smart4f774512009-05-22 14:52:35 -040011360}
11361
11362/**
11363 * lpfc_sli4_sp_handle_rel_wcqe - Handle slow-path WQ entry consumed event
11364 * @phba: Pointer to HBA context object.
11365 * @wcqe: Pointer to work-queue completion queue entry.
11366 *
11367 * This routine handles slow-path WQ entry comsumed event by invoking the
11368 * proper WQ release routine to the slow-path WQ.
11369 **/
11370static void
11371lpfc_sli4_sp_handle_rel_wcqe(struct lpfc_hba *phba,
11372 struct lpfc_wcqe_release *wcqe)
11373{
James Smart2e90f4b2011-12-13 13:22:37 -050011374 /* sanity check on queue memory */
11375 if (unlikely(!phba->sli4_hba.els_wq))
11376 return;
James Smart4f774512009-05-22 14:52:35 -040011377 /* Check for the slow-path ELS work queue */
11378 if (bf_get(lpfc_wcqe_r_wq_id, wcqe) == phba->sli4_hba.els_wq->queue_id)
11379 lpfc_sli4_wq_release(phba->sli4_hba.els_wq,
11380 bf_get(lpfc_wcqe_r_wqe_index, wcqe));
11381 else
11382 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11383 "2579 Slow-path wqe consume event carries "
11384 "miss-matched qid: wcqe-qid=x%x, sp-qid=x%x\n",
11385 bf_get(lpfc_wcqe_r_wqe_index, wcqe),
11386 phba->sli4_hba.els_wq->queue_id);
11387}
11388
11389/**
11390 * lpfc_sli4_sp_handle_abort_xri_wcqe - Handle a xri abort event
11391 * @phba: Pointer to HBA context object.
11392 * @cq: Pointer to a WQ completion queue.
11393 * @wcqe: Pointer to work-queue completion queue entry.
11394 *
11395 * This routine handles an XRI abort event.
11396 *
11397 * Return: true if work posted to worker thread, otherwise false.
11398 **/
11399static bool
11400lpfc_sli4_sp_handle_abort_xri_wcqe(struct lpfc_hba *phba,
11401 struct lpfc_queue *cq,
11402 struct sli4_wcqe_xri_aborted *wcqe)
11403{
11404 bool workposted = false;
11405 struct lpfc_cq_event *cq_event;
11406 unsigned long iflags;
11407
11408 /* Allocate a new internal CQ_EVENT entry */
11409 cq_event = lpfc_sli4_cq_event_alloc(phba);
11410 if (!cq_event) {
11411 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11412 "0602 Failed to allocate CQ_EVENT entry\n");
11413 return false;
11414 }
11415
11416 /* Move the CQE into the proper xri abort event list */
11417 memcpy(&cq_event->cqe, wcqe, sizeof(struct sli4_wcqe_xri_aborted));
11418 switch (cq->subtype) {
11419 case LPFC_FCP:
11420 spin_lock_irqsave(&phba->hbalock, iflags);
11421 list_add_tail(&cq_event->list,
11422 &phba->sli4_hba.sp_fcp_xri_aborted_work_queue);
11423 /* Set the fcp xri abort event flag */
11424 phba->hba_flag |= FCP_XRI_ABORT_EVENT;
11425 spin_unlock_irqrestore(&phba->hbalock, iflags);
11426 workposted = true;
11427 break;
11428 case LPFC_ELS:
11429 spin_lock_irqsave(&phba->hbalock, iflags);
11430 list_add_tail(&cq_event->list,
11431 &phba->sli4_hba.sp_els_xri_aborted_work_queue);
11432 /* Set the els xri abort event flag */
11433 phba->hba_flag |= ELS_XRI_ABORT_EVENT;
11434 spin_unlock_irqrestore(&phba->hbalock, iflags);
11435 workposted = true;
11436 break;
11437 default:
11438 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11439 "0603 Invalid work queue CQE subtype (x%x)\n",
11440 cq->subtype);
11441 workposted = false;
11442 break;
11443 }
11444 return workposted;
11445}
11446
11447/**
James Smart4d9ab992009-10-02 15:16:39 -040011448 * lpfc_sli4_sp_handle_rcqe - Process a receive-queue completion queue entry
James Smart4f774512009-05-22 14:52:35 -040011449 * @phba: Pointer to HBA context object.
James Smart4d9ab992009-10-02 15:16:39 -040011450 * @rcqe: Pointer to receive-queue completion queue entry.
James Smart4f774512009-05-22 14:52:35 -040011451 *
James Smart4d9ab992009-10-02 15:16:39 -040011452 * This routine process a receive-queue completion queue entry.
James Smart4f774512009-05-22 14:52:35 -040011453 *
11454 * Return: true if work posted to worker thread, otherwise false.
11455 **/
11456static bool
James Smart4d9ab992009-10-02 15:16:39 -040011457lpfc_sli4_sp_handle_rcqe(struct lpfc_hba *phba, struct lpfc_rcqe *rcqe)
11458{
11459 bool workposted = false;
11460 struct lpfc_queue *hrq = phba->sli4_hba.hdr_rq;
11461 struct lpfc_queue *drq = phba->sli4_hba.dat_rq;
11462 struct hbq_dmabuf *dma_buf;
James Smart7851fe22011-07-22 18:36:52 -040011463 uint32_t status, rq_id;
James Smart4d9ab992009-10-02 15:16:39 -040011464 unsigned long iflags;
11465
James Smart2e90f4b2011-12-13 13:22:37 -050011466 /* sanity check on queue memory */
11467 if (unlikely(!hrq) || unlikely(!drq))
11468 return workposted;
11469
James Smart7851fe22011-07-22 18:36:52 -040011470 if (bf_get(lpfc_cqe_code, rcqe) == CQE_CODE_RECEIVE_V1)
11471 rq_id = bf_get(lpfc_rcqe_rq_id_v1, rcqe);
11472 else
11473 rq_id = bf_get(lpfc_rcqe_rq_id, rcqe);
11474 if (rq_id != hrq->queue_id)
James Smart4d9ab992009-10-02 15:16:39 -040011475 goto out;
11476
11477 status = bf_get(lpfc_rcqe_status, rcqe);
11478 switch (status) {
11479 case FC_STATUS_RQ_BUF_LEN_EXCEEDED:
11480 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11481 "2537 Receive Frame Truncated!!\n");
James Smartb84daac2012-08-03 12:35:13 -040011482 hrq->RQ_buf_trunc++;
James Smart4d9ab992009-10-02 15:16:39 -040011483 case FC_STATUS_RQ_SUCCESS:
James Smart5ffc2662009-11-18 15:39:44 -050011484 lpfc_sli4_rq_release(hrq, drq);
James Smart4d9ab992009-10-02 15:16:39 -040011485 spin_lock_irqsave(&phba->hbalock, iflags);
11486 dma_buf = lpfc_sli_hbqbuf_get(&phba->hbqs[0].hbq_buffer_list);
11487 if (!dma_buf) {
James Smartb84daac2012-08-03 12:35:13 -040011488 hrq->RQ_no_buf_found++;
James Smart4d9ab992009-10-02 15:16:39 -040011489 spin_unlock_irqrestore(&phba->hbalock, iflags);
11490 goto out;
11491 }
James Smartb84daac2012-08-03 12:35:13 -040011492 hrq->RQ_rcv_buf++;
James Smart4d9ab992009-10-02 15:16:39 -040011493 memcpy(&dma_buf->cq_event.cqe.rcqe_cmpl, rcqe, sizeof(*rcqe));
11494 /* save off the frame for the word thread to process */
11495 list_add_tail(&dma_buf->cq_event.list,
James Smart45ed1192009-10-02 15:17:02 -040011496 &phba->sli4_hba.sp_queue_event);
James Smart4d9ab992009-10-02 15:16:39 -040011497 /* Frame received */
James Smart45ed1192009-10-02 15:17:02 -040011498 phba->hba_flag |= HBA_SP_QUEUE_EVT;
James Smart4d9ab992009-10-02 15:16:39 -040011499 spin_unlock_irqrestore(&phba->hbalock, iflags);
11500 workposted = true;
11501 break;
11502 case FC_STATUS_INSUFF_BUF_NEED_BUF:
11503 case FC_STATUS_INSUFF_BUF_FRM_DISC:
James Smartb84daac2012-08-03 12:35:13 -040011504 hrq->RQ_no_posted_buf++;
James Smart4d9ab992009-10-02 15:16:39 -040011505 /* Post more buffers if possible */
11506 spin_lock_irqsave(&phba->hbalock, iflags);
11507 phba->hba_flag |= HBA_POST_RECEIVE_BUFFER;
11508 spin_unlock_irqrestore(&phba->hbalock, iflags);
11509 workposted = true;
11510 break;
11511 }
11512out:
11513 return workposted;
James Smart4d9ab992009-10-02 15:16:39 -040011514}
11515
11516/**
11517 * lpfc_sli4_sp_handle_cqe - Process a slow path completion queue entry
11518 * @phba: Pointer to HBA context object.
11519 * @cq: Pointer to the completion queue.
11520 * @wcqe: Pointer to a completion queue entry.
11521 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030011522 * This routine process a slow-path work-queue or receive queue completion queue
James Smart4d9ab992009-10-02 15:16:39 -040011523 * entry.
11524 *
11525 * Return: true if work posted to worker thread, otherwise false.
11526 **/
11527static bool
11528lpfc_sli4_sp_handle_cqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
James Smart4f774512009-05-22 14:52:35 -040011529 struct lpfc_cqe *cqe)
11530{
James Smart45ed1192009-10-02 15:17:02 -040011531 struct lpfc_cqe cqevt;
James Smart4f774512009-05-22 14:52:35 -040011532 bool workposted = false;
11533
11534 /* Copy the work queue CQE and convert endian order if needed */
James Smart45ed1192009-10-02 15:17:02 -040011535 lpfc_sli_pcimem_bcopy(cqe, &cqevt, sizeof(struct lpfc_cqe));
James Smart4f774512009-05-22 14:52:35 -040011536
11537 /* Check and process for different type of WCQE and dispatch */
James Smart45ed1192009-10-02 15:17:02 -040011538 switch (bf_get(lpfc_cqe_code, &cqevt)) {
James Smart4f774512009-05-22 14:52:35 -040011539 case CQE_CODE_COMPL_WQE:
James Smart45ed1192009-10-02 15:17:02 -040011540 /* Process the WQ/RQ complete event */
James Smartbc739052010-08-04 16:11:18 -040011541 phba->last_completion_time = jiffies;
James Smart2a76a282012-08-03 12:35:54 -040011542 workposted = lpfc_sli4_sp_handle_els_wcqe(phba, cq,
James Smart45ed1192009-10-02 15:17:02 -040011543 (struct lpfc_wcqe_complete *)&cqevt);
James Smart4f774512009-05-22 14:52:35 -040011544 break;
11545 case CQE_CODE_RELEASE_WQE:
11546 /* Process the WQ release event */
11547 lpfc_sli4_sp_handle_rel_wcqe(phba,
James Smart45ed1192009-10-02 15:17:02 -040011548 (struct lpfc_wcqe_release *)&cqevt);
James Smart4f774512009-05-22 14:52:35 -040011549 break;
11550 case CQE_CODE_XRI_ABORTED:
11551 /* Process the WQ XRI abort event */
James Smartbc739052010-08-04 16:11:18 -040011552 phba->last_completion_time = jiffies;
James Smart4f774512009-05-22 14:52:35 -040011553 workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
James Smart45ed1192009-10-02 15:17:02 -040011554 (struct sli4_wcqe_xri_aborted *)&cqevt);
James Smart4f774512009-05-22 14:52:35 -040011555 break;
James Smart4d9ab992009-10-02 15:16:39 -040011556 case CQE_CODE_RECEIVE:
James Smart7851fe22011-07-22 18:36:52 -040011557 case CQE_CODE_RECEIVE_V1:
James Smart4d9ab992009-10-02 15:16:39 -040011558 /* Process the RQ event */
James Smartbc739052010-08-04 16:11:18 -040011559 phba->last_completion_time = jiffies;
James Smart4d9ab992009-10-02 15:16:39 -040011560 workposted = lpfc_sli4_sp_handle_rcqe(phba,
James Smart45ed1192009-10-02 15:17:02 -040011561 (struct lpfc_rcqe *)&cqevt);
James Smart4d9ab992009-10-02 15:16:39 -040011562 break;
James Smart4f774512009-05-22 14:52:35 -040011563 default:
11564 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11565 "0388 Not a valid WCQE code: x%x\n",
James Smart45ed1192009-10-02 15:17:02 -040011566 bf_get(lpfc_cqe_code, &cqevt));
James Smart4f774512009-05-22 14:52:35 -040011567 break;
11568 }
11569 return workposted;
11570}
11571
11572/**
James Smart4f774512009-05-22 14:52:35 -040011573 * lpfc_sli4_sp_handle_eqe - Process a slow-path event queue entry
11574 * @phba: Pointer to HBA context object.
11575 * @eqe: Pointer to fast-path event queue entry.
11576 *
11577 * This routine process a event queue entry from the slow-path event queue.
11578 * It will check the MajorCode and MinorCode to determine this is for a
11579 * completion event on a completion queue, if not, an error shall be logged
11580 * and just return. Otherwise, it will get to the corresponding completion
11581 * queue and process all the entries on that completion queue, rearm the
11582 * completion queue, and then return.
11583 *
11584 **/
11585static void
James Smart67d12732012-08-03 12:36:13 -040011586lpfc_sli4_sp_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe,
11587 struct lpfc_queue *speq)
James Smart4f774512009-05-22 14:52:35 -040011588{
James Smart67d12732012-08-03 12:36:13 -040011589 struct lpfc_queue *cq = NULL, *childq;
James Smart4f774512009-05-22 14:52:35 -040011590 struct lpfc_cqe *cqe;
11591 bool workposted = false;
11592 int ecount = 0;
11593 uint16_t cqid;
11594
James Smart4f774512009-05-22 14:52:35 -040011595 /* Get the reference to the corresponding CQ */
James Smartcb5172e2010-03-15 11:25:07 -040011596 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
James Smart4f774512009-05-22 14:52:35 -040011597
James Smart4f774512009-05-22 14:52:35 -040011598 list_for_each_entry(childq, &speq->child_list, list) {
11599 if (childq->queue_id == cqid) {
11600 cq = childq;
11601 break;
11602 }
11603 }
11604 if (unlikely(!cq)) {
James Smart75baf692010-06-08 18:31:21 -040011605 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
11606 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11607 "0365 Slow-path CQ identifier "
11608 "(%d) does not exist\n", cqid);
James Smart4f774512009-05-22 14:52:35 -040011609 return;
11610 }
11611
11612 /* Process all the entries to the CQ */
11613 switch (cq->type) {
11614 case LPFC_MCQ:
11615 while ((cqe = lpfc_sli4_cq_get(cq))) {
11616 workposted |= lpfc_sli4_sp_handle_mcqe(phba, cqe);
James Smart73d91e52011-10-10 21:32:10 -040011617 if (!(++ecount % cq->entry_repost))
James Smart4f774512009-05-22 14:52:35 -040011618 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
James Smartb84daac2012-08-03 12:35:13 -040011619 cq->CQ_mbox++;
James Smart4f774512009-05-22 14:52:35 -040011620 }
11621 break;
11622 case LPFC_WCQ:
11623 while ((cqe = lpfc_sli4_cq_get(cq))) {
James Smart05580562011-05-24 11:40:48 -040011624 if (cq->subtype == LPFC_FCP)
11625 workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq,
11626 cqe);
11627 else
11628 workposted |= lpfc_sli4_sp_handle_cqe(phba, cq,
11629 cqe);
James Smart73d91e52011-10-10 21:32:10 -040011630 if (!(++ecount % cq->entry_repost))
James Smart4f774512009-05-22 14:52:35 -040011631 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
11632 }
James Smartb84daac2012-08-03 12:35:13 -040011633
11634 /* Track the max number of CQEs processed in 1 EQ */
11635 if (ecount > cq->CQ_max_cqe)
11636 cq->CQ_max_cqe = ecount;
James Smart4f774512009-05-22 14:52:35 -040011637 break;
11638 default:
11639 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11640 "0370 Invalid completion queue type (%d)\n",
11641 cq->type);
11642 return;
11643 }
11644
11645 /* Catch the no cq entry condition, log an error */
11646 if (unlikely(ecount == 0))
11647 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11648 "0371 No entry from the CQ: identifier "
11649 "(x%x), type (%d)\n", cq->queue_id, cq->type);
11650
11651 /* In any case, flash and re-arm the RCQ */
11652 lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
11653
11654 /* wake up worker thread if there are works to be done */
11655 if (workposted)
11656 lpfc_worker_wake_up(phba);
11657}
11658
11659/**
11660 * lpfc_sli4_fp_handle_fcp_wcqe - Process fast-path work queue completion entry
James Smart2a76a282012-08-03 12:35:54 -040011661 * @phba: Pointer to HBA context object.
11662 * @cq: Pointer to associated CQ
11663 * @wcqe: Pointer to work-queue completion queue entry.
James Smart4f774512009-05-22 14:52:35 -040011664 *
11665 * This routine process a fast-path work queue completion entry from fast-path
11666 * event queue for FCP command response completion.
11667 **/
11668static void
James Smart2a76a282012-08-03 12:35:54 -040011669lpfc_sli4_fp_handle_fcp_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
James Smart4f774512009-05-22 14:52:35 -040011670 struct lpfc_wcqe_complete *wcqe)
11671{
James Smart2a76a282012-08-03 12:35:54 -040011672 struct lpfc_sli_ring *pring = cq->pring;
James Smart4f774512009-05-22 14:52:35 -040011673 struct lpfc_iocbq *cmdiocbq;
11674 struct lpfc_iocbq irspiocbq;
11675 unsigned long iflags;
11676
James Smart4f774512009-05-22 14:52:35 -040011677 /* Check for response status */
11678 if (unlikely(bf_get(lpfc_wcqe_c_status, wcqe))) {
11679 /* If resource errors reported from HBA, reduce queue
11680 * depth of the SCSI device.
11681 */
James Smarte3d2b802012-08-14 14:25:43 -040011682 if (((bf_get(lpfc_wcqe_c_status, wcqe) ==
11683 IOSTAT_LOCAL_REJECT)) &&
11684 ((wcqe->parameter & IOERR_PARAM_MASK) ==
11685 IOERR_NO_RESOURCES))
James Smart4f774512009-05-22 14:52:35 -040011686 phba->lpfc_rampdown_queue_depth(phba);
James Smarte3d2b802012-08-14 14:25:43 -040011687
James Smart4f774512009-05-22 14:52:35 -040011688 /* Log the error status */
11689 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11690 "0373 FCP complete error: status=x%x, "
11691 "hw_status=x%x, total_data_specified=%d, "
11692 "parameter=x%x, word3=x%x\n",
11693 bf_get(lpfc_wcqe_c_status, wcqe),
11694 bf_get(lpfc_wcqe_c_hw_status, wcqe),
11695 wcqe->total_data_placed, wcqe->parameter,
11696 wcqe->word3);
11697 }
11698
11699 /* Look up the FCP command IOCB and create pseudo response IOCB */
James Smart7e56aa22012-08-03 12:35:34 -040011700 spin_lock_irqsave(&pring->ring_lock, iflags);
11701 pring->stats.iocb_event++;
James Smart4f774512009-05-22 14:52:35 -040011702 cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
11703 bf_get(lpfc_wcqe_c_request_tag, wcqe));
James Smart7e56aa22012-08-03 12:35:34 -040011704 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smart4f774512009-05-22 14:52:35 -040011705 if (unlikely(!cmdiocbq)) {
11706 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11707 "0374 FCP complete with no corresponding "
11708 "cmdiocb: iotag (%d)\n",
11709 bf_get(lpfc_wcqe_c_request_tag, wcqe));
11710 return;
11711 }
11712 if (unlikely(!cmdiocbq->iocb_cmpl)) {
11713 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11714 "0375 FCP cmdiocb not callback function "
11715 "iotag: (%d)\n",
11716 bf_get(lpfc_wcqe_c_request_tag, wcqe));
11717 return;
11718 }
11719
11720 /* Fake the irspiocb and copy necessary response information */
James Smart341af102010-01-26 23:07:37 -050011721 lpfc_sli4_iocb_param_transfer(phba, &irspiocbq, cmdiocbq, wcqe);
James Smart4f774512009-05-22 14:52:35 -040011722
James Smart0f65ff62010-02-26 14:14:23 -050011723 if (cmdiocbq->iocb_flag & LPFC_DRIVER_ABORTED) {
11724 spin_lock_irqsave(&phba->hbalock, iflags);
11725 cmdiocbq->iocb_flag &= ~LPFC_DRIVER_ABORTED;
11726 spin_unlock_irqrestore(&phba->hbalock, iflags);
11727 }
11728
James Smart4f774512009-05-22 14:52:35 -040011729 /* Pass the cmd_iocb and the rsp state to the upper layer */
11730 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq, &irspiocbq);
11731}
11732
11733/**
11734 * lpfc_sli4_fp_handle_rel_wcqe - Handle fast-path WQ entry consumed event
11735 * @phba: Pointer to HBA context object.
11736 * @cq: Pointer to completion queue.
11737 * @wcqe: Pointer to work-queue completion queue entry.
11738 *
11739 * This routine handles an fast-path WQ entry comsumed event by invoking the
11740 * proper WQ release routine to the slow-path WQ.
11741 **/
11742static void
11743lpfc_sli4_fp_handle_rel_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
11744 struct lpfc_wcqe_release *wcqe)
11745{
11746 struct lpfc_queue *childwq;
11747 bool wqid_matched = false;
11748 uint16_t fcp_wqid;
11749
11750 /* Check for fast-path FCP work queue release */
11751 fcp_wqid = bf_get(lpfc_wcqe_r_wq_id, wcqe);
11752 list_for_each_entry(childwq, &cq->child_list, list) {
11753 if (childwq->queue_id == fcp_wqid) {
11754 lpfc_sli4_wq_release(childwq,
11755 bf_get(lpfc_wcqe_r_wqe_index, wcqe));
11756 wqid_matched = true;
11757 break;
11758 }
11759 }
11760 /* Report warning log message if no match found */
11761 if (wqid_matched != true)
11762 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11763 "2580 Fast-path wqe consume event carries "
11764 "miss-matched qid: wcqe-qid=x%x\n", fcp_wqid);
11765}
11766
11767/**
11768 * lpfc_sli4_fp_handle_wcqe - Process fast-path work queue completion entry
11769 * @cq: Pointer to the completion queue.
11770 * @eqe: Pointer to fast-path completion queue entry.
11771 *
11772 * This routine process a fast-path work queue completion entry from fast-path
11773 * event queue for FCP command response completion.
11774 **/
11775static int
11776lpfc_sli4_fp_handle_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
11777 struct lpfc_cqe *cqe)
11778{
11779 struct lpfc_wcqe_release wcqe;
11780 bool workposted = false;
11781
11782 /* Copy the work queue CQE and convert endian order if needed */
11783 lpfc_sli_pcimem_bcopy(cqe, &wcqe, sizeof(struct lpfc_cqe));
11784
11785 /* Check and process for different type of WCQE and dispatch */
11786 switch (bf_get(lpfc_wcqe_c_code, &wcqe)) {
11787 case CQE_CODE_COMPL_WQE:
James Smartb84daac2012-08-03 12:35:13 -040011788 cq->CQ_wq++;
James Smart4f774512009-05-22 14:52:35 -040011789 /* Process the WQ complete event */
James Smart98fc5dd2010-06-07 15:24:29 -040011790 phba->last_completion_time = jiffies;
James Smart2a76a282012-08-03 12:35:54 -040011791 lpfc_sli4_fp_handle_fcp_wcqe(phba, cq,
James Smart4f774512009-05-22 14:52:35 -040011792 (struct lpfc_wcqe_complete *)&wcqe);
11793 break;
11794 case CQE_CODE_RELEASE_WQE:
James Smartb84daac2012-08-03 12:35:13 -040011795 cq->CQ_release_wqe++;
James Smart4f774512009-05-22 14:52:35 -040011796 /* Process the WQ release event */
11797 lpfc_sli4_fp_handle_rel_wcqe(phba, cq,
11798 (struct lpfc_wcqe_release *)&wcqe);
11799 break;
11800 case CQE_CODE_XRI_ABORTED:
James Smartb84daac2012-08-03 12:35:13 -040011801 cq->CQ_xri_aborted++;
James Smart4f774512009-05-22 14:52:35 -040011802 /* Process the WQ XRI abort event */
James Smartbc739052010-08-04 16:11:18 -040011803 phba->last_completion_time = jiffies;
James Smart4f774512009-05-22 14:52:35 -040011804 workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
11805 (struct sli4_wcqe_xri_aborted *)&wcqe);
11806 break;
11807 default:
11808 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11809 "0144 Not a valid WCQE code: x%x\n",
11810 bf_get(lpfc_wcqe_c_code, &wcqe));
11811 break;
11812 }
11813 return workposted;
11814}
11815
11816/**
James Smart67d12732012-08-03 12:36:13 -040011817 * lpfc_sli4_hba_handle_eqe - Process a fast-path event queue entry
James Smart4f774512009-05-22 14:52:35 -040011818 * @phba: Pointer to HBA context object.
11819 * @eqe: Pointer to fast-path event queue entry.
11820 *
11821 * This routine process a event queue entry from the fast-path event queue.
11822 * It will check the MajorCode and MinorCode to determine this is for a
11823 * completion event on a completion queue, if not, an error shall be logged
11824 * and just return. Otherwise, it will get to the corresponding completion
11825 * queue and process all the entries on the completion queue, rearm the
11826 * completion queue, and then return.
11827 **/
11828static void
James Smart67d12732012-08-03 12:36:13 -040011829lpfc_sli4_hba_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe,
11830 uint32_t qidx)
James Smart4f774512009-05-22 14:52:35 -040011831{
11832 struct lpfc_queue *cq;
11833 struct lpfc_cqe *cqe;
11834 bool workposted = false;
11835 uint16_t cqid;
11836 int ecount = 0;
11837
James Smartcb5172e2010-03-15 11:25:07 -040011838 if (unlikely(bf_get_le32(lpfc_eqe_major_code, eqe) != 0)) {
James Smart4f774512009-05-22 14:52:35 -040011839 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart67d12732012-08-03 12:36:13 -040011840 "0366 Not a valid completion "
James Smart4f774512009-05-22 14:52:35 -040011841 "event: majorcode=x%x, minorcode=x%x\n",
James Smartcb5172e2010-03-15 11:25:07 -040011842 bf_get_le32(lpfc_eqe_major_code, eqe),
11843 bf_get_le32(lpfc_eqe_minor_code, eqe));
James Smart4f774512009-05-22 14:52:35 -040011844 return;
11845 }
11846
James Smart67d12732012-08-03 12:36:13 -040011847 /* Get the reference to the corresponding CQ */
11848 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
11849
11850 /* Check if this is a Slow path event */
11851 if (unlikely(cqid != phba->sli4_hba.fcp_cq_map[qidx])) {
11852 lpfc_sli4_sp_handle_eqe(phba, eqe,
11853 phba->sli4_hba.hba_eq[qidx]);
11854 return;
11855 }
11856
James Smart2e90f4b2011-12-13 13:22:37 -050011857 if (unlikely(!phba->sli4_hba.fcp_cq)) {
11858 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11859 "3146 Fast-path completion queues "
11860 "does not exist\n");
11861 return;
11862 }
James Smart67d12732012-08-03 12:36:13 -040011863 cq = phba->sli4_hba.fcp_cq[qidx];
James Smart4f774512009-05-22 14:52:35 -040011864 if (unlikely(!cq)) {
James Smart75baf692010-06-08 18:31:21 -040011865 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
11866 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11867 "0367 Fast-path completion queue "
James Smart67d12732012-08-03 12:36:13 -040011868 "(%d) does not exist\n", qidx);
James Smart4f774512009-05-22 14:52:35 -040011869 return;
11870 }
11871
James Smart4f774512009-05-22 14:52:35 -040011872 if (unlikely(cqid != cq->queue_id)) {
11873 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11874 "0368 Miss-matched fast-path completion "
11875 "queue identifier: eqcqid=%d, fcpcqid=%d\n",
11876 cqid, cq->queue_id);
11877 return;
11878 }
11879
11880 /* Process all the entries to the CQ */
11881 while ((cqe = lpfc_sli4_cq_get(cq))) {
11882 workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq, cqe);
James Smart73d91e52011-10-10 21:32:10 -040011883 if (!(++ecount % cq->entry_repost))
James Smart4f774512009-05-22 14:52:35 -040011884 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
11885 }
11886
James Smartb84daac2012-08-03 12:35:13 -040011887 /* Track the max number of CQEs processed in 1 EQ */
11888 if (ecount > cq->CQ_max_cqe)
11889 cq->CQ_max_cqe = ecount;
11890
James Smart4f774512009-05-22 14:52:35 -040011891 /* Catch the no cq entry condition */
11892 if (unlikely(ecount == 0))
11893 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11894 "0369 No entry from fast-path completion "
11895 "queue fcpcqid=%d\n", cq->queue_id);
11896
11897 /* In any case, flash and re-arm the CQ */
11898 lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
11899
11900 /* wake up worker thread if there are works to be done */
11901 if (workposted)
11902 lpfc_worker_wake_up(phba);
11903}
11904
11905static void
11906lpfc_sli4_eq_flush(struct lpfc_hba *phba, struct lpfc_queue *eq)
11907{
11908 struct lpfc_eqe *eqe;
11909
11910 /* walk all the EQ entries and drop on the floor */
11911 while ((eqe = lpfc_sli4_eq_get(eq)))
11912 ;
11913
11914 /* Clear and re-arm the EQ */
11915 lpfc_sli4_eq_release(eq, LPFC_QUEUE_REARM);
11916}
11917
11918/**
James Smart67d12732012-08-03 12:36:13 -040011919 * lpfc_sli4_hba_intr_handler - HBA interrupt handler to SLI-4 device
James Smart4f774512009-05-22 14:52:35 -040011920 * @irq: Interrupt number.
11921 * @dev_id: The device context pointer.
11922 *
11923 * This function is directly called from the PCI layer as an interrupt
11924 * service routine when device with SLI-4 interface spec is enabled with
11925 * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
11926 * ring event in the HBA. However, when the device is enabled with either
11927 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
11928 * device-level interrupt handler. When the PCI slot is in error recovery
11929 * or the HBA is undergoing initialization, the interrupt handler will not
11930 * process the interrupt. The SCSI FCP fast-path ring event are handled in
11931 * the intrrupt context. This function is called without any lock held.
11932 * It gets the hbalock to access and update SLI data structures. Note that,
11933 * the FCP EQ to FCP CQ are one-to-one map such that the FCP EQ index is
11934 * equal to that of FCP CQ index.
11935 *
James Smart67d12732012-08-03 12:36:13 -040011936 * The link attention and ELS ring attention events are handled
11937 * by the worker thread. The interrupt handler signals the worker thread
11938 * and returns for these events. This function is called without any lock
11939 * held. It gets the hbalock to access and update SLI data structures.
11940 *
James Smart4f774512009-05-22 14:52:35 -040011941 * This function returns IRQ_HANDLED when interrupt is handled else it
11942 * returns IRQ_NONE.
11943 **/
11944irqreturn_t
James Smart67d12732012-08-03 12:36:13 -040011945lpfc_sli4_hba_intr_handler(int irq, void *dev_id)
James Smart4f774512009-05-22 14:52:35 -040011946{
11947 struct lpfc_hba *phba;
11948 struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
11949 struct lpfc_queue *fpeq;
11950 struct lpfc_eqe *eqe;
11951 unsigned long iflag;
11952 int ecount = 0;
James Smart962bc512013-01-03 15:44:00 -050011953 int fcp_eqidx;
James Smart4f774512009-05-22 14:52:35 -040011954
11955 /* Get the driver's phba structure from the dev_id */
11956 fcp_eq_hdl = (struct lpfc_fcp_eq_hdl *)dev_id;
11957 phba = fcp_eq_hdl->phba;
11958 fcp_eqidx = fcp_eq_hdl->idx;
11959
11960 if (unlikely(!phba))
11961 return IRQ_NONE;
James Smart67d12732012-08-03 12:36:13 -040011962 if (unlikely(!phba->sli4_hba.hba_eq))
James Smart5350d872011-10-10 21:33:49 -040011963 return IRQ_NONE;
James Smart4f774512009-05-22 14:52:35 -040011964
11965 /* Get to the EQ struct associated with this vector */
James Smart67d12732012-08-03 12:36:13 -040011966 fpeq = phba->sli4_hba.hba_eq[fcp_eqidx];
James Smart2e90f4b2011-12-13 13:22:37 -050011967 if (unlikely(!fpeq))
11968 return IRQ_NONE;
James Smart4f774512009-05-22 14:52:35 -040011969
James Smartba20c852012-08-03 12:36:52 -040011970 if (lpfc_fcp_look_ahead) {
11971 if (atomic_dec_and_test(&fcp_eq_hdl->fcp_eq_in_use))
11972 lpfc_sli4_eq_clr_intr(fpeq);
11973 else {
11974 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
11975 return IRQ_NONE;
11976 }
11977 }
11978
James Smart4f774512009-05-22 14:52:35 -040011979 /* Check device state for handling interrupt */
11980 if (unlikely(lpfc_intr_state_check(phba))) {
James Smartb84daac2012-08-03 12:35:13 -040011981 fpeq->EQ_badstate++;
James Smart4f774512009-05-22 14:52:35 -040011982 /* Check again for link_state with lock held */
11983 spin_lock_irqsave(&phba->hbalock, iflag);
11984 if (phba->link_state < LPFC_LINK_DOWN)
11985 /* Flush, clear interrupt, and rearm the EQ */
11986 lpfc_sli4_eq_flush(phba, fpeq);
11987 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smartba20c852012-08-03 12:36:52 -040011988 if (lpfc_fcp_look_ahead)
11989 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
James Smart4f774512009-05-22 14:52:35 -040011990 return IRQ_NONE;
11991 }
11992
11993 /*
11994 * Process all the event on FCP fast-path EQ
11995 */
11996 while ((eqe = lpfc_sli4_eq_get(fpeq))) {
James Smart67d12732012-08-03 12:36:13 -040011997 lpfc_sli4_hba_handle_eqe(phba, eqe, fcp_eqidx);
James Smart73d91e52011-10-10 21:32:10 -040011998 if (!(++ecount % fpeq->entry_repost))
James Smart4f774512009-05-22 14:52:35 -040011999 lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_NOARM);
James Smartb84daac2012-08-03 12:35:13 -040012000 fpeq->EQ_processed++;
James Smart4f774512009-05-22 14:52:35 -040012001 }
12002
James Smartb84daac2012-08-03 12:35:13 -040012003 /* Track the max number of EQEs processed in 1 intr */
12004 if (ecount > fpeq->EQ_max_eqe)
12005 fpeq->EQ_max_eqe = ecount;
12006
James Smart4f774512009-05-22 14:52:35 -040012007 /* Always clear and re-arm the fast-path EQ */
12008 lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_REARM);
12009
12010 if (unlikely(ecount == 0)) {
James Smartb84daac2012-08-03 12:35:13 -040012011 fpeq->EQ_no_entry++;
James Smartba20c852012-08-03 12:36:52 -040012012
12013 if (lpfc_fcp_look_ahead) {
12014 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
12015 return IRQ_NONE;
12016 }
12017
James Smart4f774512009-05-22 14:52:35 -040012018 if (phba->intr_type == MSIX)
12019 /* MSI-X treated interrupt served as no EQ share INT */
12020 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12021 "0358 MSI-X interrupt with no EQE\n");
12022 else
12023 /* Non MSI-X treated on interrupt as EQ share INT */
12024 return IRQ_NONE;
12025 }
12026
James Smartba20c852012-08-03 12:36:52 -040012027 if (lpfc_fcp_look_ahead)
12028 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
James Smart4f774512009-05-22 14:52:35 -040012029 return IRQ_HANDLED;
12030} /* lpfc_sli4_fp_intr_handler */
12031
12032/**
12033 * lpfc_sli4_intr_handler - Device-level interrupt handler for SLI-4 device
12034 * @irq: Interrupt number.
12035 * @dev_id: The device context pointer.
12036 *
12037 * This function is the device-level interrupt handler to device with SLI-4
12038 * interface spec, called from the PCI layer when either MSI or Pin-IRQ
12039 * interrupt mode is enabled and there is an event in the HBA which requires
12040 * driver attention. This function invokes the slow-path interrupt attention
12041 * handling function and fast-path interrupt attention handling function in
12042 * turn to process the relevant HBA attention events. This function is called
12043 * without any lock held. It gets the hbalock to access and update SLI data
12044 * structures.
12045 *
12046 * This function returns IRQ_HANDLED when interrupt is handled, else it
12047 * returns IRQ_NONE.
12048 **/
12049irqreturn_t
12050lpfc_sli4_intr_handler(int irq, void *dev_id)
12051{
12052 struct lpfc_hba *phba;
James Smart67d12732012-08-03 12:36:13 -040012053 irqreturn_t hba_irq_rc;
12054 bool hba_handled = false;
James Smart962bc512013-01-03 15:44:00 -050012055 int fcp_eqidx;
James Smart4f774512009-05-22 14:52:35 -040012056
12057 /* Get the driver's phba structure from the dev_id */
12058 phba = (struct lpfc_hba *)dev_id;
12059
12060 if (unlikely(!phba))
12061 return IRQ_NONE;
12062
12063 /*
James Smart4f774512009-05-22 14:52:35 -040012064 * Invoke fast-path host attention interrupt handling as appropriate.
12065 */
James Smart67d12732012-08-03 12:36:13 -040012066 for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_io_channel; fcp_eqidx++) {
12067 hba_irq_rc = lpfc_sli4_hba_intr_handler(irq,
James Smart4f774512009-05-22 14:52:35 -040012068 &phba->sli4_hba.fcp_eq_hdl[fcp_eqidx]);
James Smart67d12732012-08-03 12:36:13 -040012069 if (hba_irq_rc == IRQ_HANDLED)
12070 hba_handled |= true;
James Smart4f774512009-05-22 14:52:35 -040012071 }
12072
James Smart67d12732012-08-03 12:36:13 -040012073 return (hba_handled == true) ? IRQ_HANDLED : IRQ_NONE;
James Smart4f774512009-05-22 14:52:35 -040012074} /* lpfc_sli4_intr_handler */
12075
12076/**
12077 * lpfc_sli4_queue_free - free a queue structure and associated memory
12078 * @queue: The queue structure to free.
12079 *
Uwe Kleine-Königb5950762010-11-01 15:38:34 -040012080 * This function frees a queue structure and the DMAable memory used for
James Smart4f774512009-05-22 14:52:35 -040012081 * the host resident queue. This function must be called after destroying the
12082 * queue on the HBA.
12083 **/
12084void
12085lpfc_sli4_queue_free(struct lpfc_queue *queue)
12086{
12087 struct lpfc_dmabuf *dmabuf;
12088
12089 if (!queue)
12090 return;
12091
12092 while (!list_empty(&queue->page_list)) {
12093 list_remove_head(&queue->page_list, dmabuf, struct lpfc_dmabuf,
12094 list);
James Smart49198b32010-04-06 15:04:33 -040012095 dma_free_coherent(&queue->phba->pcidev->dev, SLI4_PAGE_SIZE,
James Smart4f774512009-05-22 14:52:35 -040012096 dmabuf->virt, dmabuf->phys);
12097 kfree(dmabuf);
12098 }
12099 kfree(queue);
12100 return;
12101}
12102
12103/**
12104 * lpfc_sli4_queue_alloc - Allocate and initialize a queue structure
12105 * @phba: The HBA that this queue is being created on.
12106 * @entry_size: The size of each queue entry for this queue.
12107 * @entry count: The number of entries that this queue will handle.
12108 *
12109 * This function allocates a queue structure and the DMAable memory used for
12110 * the host resident queue. This function must be called before creating the
12111 * queue on the HBA.
12112 **/
12113struct lpfc_queue *
12114lpfc_sli4_queue_alloc(struct lpfc_hba *phba, uint32_t entry_size,
12115 uint32_t entry_count)
12116{
12117 struct lpfc_queue *queue;
12118 struct lpfc_dmabuf *dmabuf;
12119 int x, total_qe_count;
12120 void *dma_pointer;
James Smartcb5172e2010-03-15 11:25:07 -040012121 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
James Smart4f774512009-05-22 14:52:35 -040012122
James Smartcb5172e2010-03-15 11:25:07 -040012123 if (!phba->sli4_hba.pc_sli4_params.supported)
12124 hw_page_size = SLI4_PAGE_SIZE;
12125
James Smart4f774512009-05-22 14:52:35 -040012126 queue = kzalloc(sizeof(struct lpfc_queue) +
12127 (sizeof(union sli4_qe) * entry_count), GFP_KERNEL);
12128 if (!queue)
12129 return NULL;
James Smartcb5172e2010-03-15 11:25:07 -040012130 queue->page_count = (ALIGN(entry_size * entry_count,
12131 hw_page_size))/hw_page_size;
James Smart4f774512009-05-22 14:52:35 -040012132 INIT_LIST_HEAD(&queue->list);
12133 INIT_LIST_HEAD(&queue->page_list);
12134 INIT_LIST_HEAD(&queue->child_list);
12135 for (x = 0, total_qe_count = 0; x < queue->page_count; x++) {
12136 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
12137 if (!dmabuf)
12138 goto out_fail;
12139 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
James Smartcb5172e2010-03-15 11:25:07 -040012140 hw_page_size, &dmabuf->phys,
James Smart4f774512009-05-22 14:52:35 -040012141 GFP_KERNEL);
12142 if (!dmabuf->virt) {
12143 kfree(dmabuf);
12144 goto out_fail;
12145 }
James Smartcb5172e2010-03-15 11:25:07 -040012146 memset(dmabuf->virt, 0, hw_page_size);
James Smart4f774512009-05-22 14:52:35 -040012147 dmabuf->buffer_tag = x;
12148 list_add_tail(&dmabuf->list, &queue->page_list);
12149 /* initialize queue's entry array */
12150 dma_pointer = dmabuf->virt;
12151 for (; total_qe_count < entry_count &&
James Smartcb5172e2010-03-15 11:25:07 -040012152 dma_pointer < (hw_page_size + dmabuf->virt);
James Smart4f774512009-05-22 14:52:35 -040012153 total_qe_count++, dma_pointer += entry_size) {
12154 queue->qe[total_qe_count].address = dma_pointer;
12155 }
12156 }
12157 queue->entry_size = entry_size;
12158 queue->entry_count = entry_count;
James Smart73d91e52011-10-10 21:32:10 -040012159
12160 /*
12161 * entry_repost is calculated based on the number of entries in the
12162 * queue. This works out except for RQs. If buffers are NOT initially
12163 * posted for every RQE, entry_repost should be adjusted accordingly.
12164 */
12165 queue->entry_repost = (entry_count >> 3);
12166 if (queue->entry_repost < LPFC_QUEUE_MIN_REPOST)
12167 queue->entry_repost = LPFC_QUEUE_MIN_REPOST;
James Smart4f774512009-05-22 14:52:35 -040012168 queue->phba = phba;
12169
12170 return queue;
12171out_fail:
12172 lpfc_sli4_queue_free(queue);
12173 return NULL;
12174}
12175
12176/**
James Smart962bc512013-01-03 15:44:00 -050012177 * lpfc_dual_chute_pci_bar_map - Map pci base address register to host memory
12178 * @phba: HBA structure that indicates port to create a queue on.
12179 * @pci_barset: PCI BAR set flag.
12180 *
12181 * This function shall perform iomap of the specified PCI BAR address to host
12182 * memory address if not already done so and return it. The returned host
12183 * memory address can be NULL.
12184 */
12185static void __iomem *
12186lpfc_dual_chute_pci_bar_map(struct lpfc_hba *phba, uint16_t pci_barset)
12187{
12188 struct pci_dev *pdev;
12189 unsigned long bar_map, bar_map_len;
12190
12191 if (!phba->pcidev)
12192 return NULL;
12193 else
12194 pdev = phba->pcidev;
12195
12196 switch (pci_barset) {
12197 case WQ_PCI_BAR_0_AND_1:
12198 if (!phba->pci_bar0_memmap_p) {
12199 bar_map = pci_resource_start(pdev, PCI_64BIT_BAR0);
12200 bar_map_len = pci_resource_len(pdev, PCI_64BIT_BAR0);
12201 phba->pci_bar0_memmap_p = ioremap(bar_map, bar_map_len);
12202 }
12203 return phba->pci_bar0_memmap_p;
12204 case WQ_PCI_BAR_2_AND_3:
12205 if (!phba->pci_bar2_memmap_p) {
12206 bar_map = pci_resource_start(pdev, PCI_64BIT_BAR2);
12207 bar_map_len = pci_resource_len(pdev, PCI_64BIT_BAR2);
12208 phba->pci_bar2_memmap_p = ioremap(bar_map, bar_map_len);
12209 }
12210 return phba->pci_bar2_memmap_p;
12211 case WQ_PCI_BAR_4_AND_5:
12212 if (!phba->pci_bar4_memmap_p) {
12213 bar_map = pci_resource_start(pdev, PCI_64BIT_BAR4);
12214 bar_map_len = pci_resource_len(pdev, PCI_64BIT_BAR4);
12215 phba->pci_bar4_memmap_p = ioremap(bar_map, bar_map_len);
12216 }
12217 return phba->pci_bar4_memmap_p;
12218 default:
12219 break;
12220 }
12221 return NULL;
12222}
12223
12224/**
James Smart173edbb2012-06-12 13:54:50 -040012225 * lpfc_modify_fcp_eq_delay - Modify Delay Multiplier on FCP EQs
12226 * @phba: HBA structure that indicates port to create a queue on.
12227 * @startq: The starting FCP EQ to modify
12228 *
12229 * This function sends an MODIFY_EQ_DELAY mailbox command to the HBA.
12230 *
12231 * The @phba struct is used to send mailbox command to HBA. The @startq
12232 * is used to get the starting FCP EQ to change.
12233 * This function is asynchronous and will wait for the mailbox
12234 * command to finish before continuing.
12235 *
12236 * On success this function will return a zero. If unable to allocate enough
12237 * memory this function will return -ENOMEM. If the queue create mailbox command
12238 * fails this function will return -ENXIO.
12239 **/
12240uint32_t
12241lpfc_modify_fcp_eq_delay(struct lpfc_hba *phba, uint16_t startq)
12242{
12243 struct lpfc_mbx_modify_eq_delay *eq_delay;
12244 LPFC_MBOXQ_t *mbox;
12245 struct lpfc_queue *eq;
12246 int cnt, rc, length, status = 0;
12247 uint32_t shdr_status, shdr_add_status;
James Smartee020062012-09-29 11:28:52 -040012248 uint32_t result;
James Smart173edbb2012-06-12 13:54:50 -040012249 int fcp_eqidx;
12250 union lpfc_sli4_cfg_shdr *shdr;
12251 uint16_t dmult;
12252
James Smart67d12732012-08-03 12:36:13 -040012253 if (startq >= phba->cfg_fcp_io_channel)
James Smart173edbb2012-06-12 13:54:50 -040012254 return 0;
12255
12256 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
12257 if (!mbox)
12258 return -ENOMEM;
12259 length = (sizeof(struct lpfc_mbx_modify_eq_delay) -
12260 sizeof(struct lpfc_sli4_cfg_mhdr));
12261 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
12262 LPFC_MBOX_OPCODE_MODIFY_EQ_DELAY,
12263 length, LPFC_SLI4_MBX_EMBED);
12264 eq_delay = &mbox->u.mqe.un.eq_delay;
12265
12266 /* Calculate delay multiper from maximum interrupt per second */
James Smartee020062012-09-29 11:28:52 -040012267 result = phba->cfg_fcp_imax / phba->cfg_fcp_io_channel;
12268 if (result > LPFC_DMULT_CONST)
12269 dmult = 0;
12270 else
12271 dmult = LPFC_DMULT_CONST/result - 1;
James Smart173edbb2012-06-12 13:54:50 -040012272
12273 cnt = 0;
James Smart67d12732012-08-03 12:36:13 -040012274 for (fcp_eqidx = startq; fcp_eqidx < phba->cfg_fcp_io_channel;
James Smart173edbb2012-06-12 13:54:50 -040012275 fcp_eqidx++) {
James Smart67d12732012-08-03 12:36:13 -040012276 eq = phba->sli4_hba.hba_eq[fcp_eqidx];
James Smart173edbb2012-06-12 13:54:50 -040012277 if (!eq)
12278 continue;
12279 eq_delay->u.request.eq[cnt].eq_id = eq->queue_id;
12280 eq_delay->u.request.eq[cnt].phase = 0;
12281 eq_delay->u.request.eq[cnt].delay_multi = dmult;
12282 cnt++;
12283 if (cnt >= LPFC_MAX_EQ_DELAY)
12284 break;
12285 }
12286 eq_delay->u.request.num_eq = cnt;
12287
12288 mbox->vport = phba->pport;
12289 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
12290 mbox->context1 = NULL;
12291 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
12292 shdr = (union lpfc_sli4_cfg_shdr *) &eq_delay->header.cfg_shdr;
12293 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12294 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12295 if (shdr_status || shdr_add_status || rc) {
12296 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12297 "2512 MODIFY_EQ_DELAY mailbox failed with "
12298 "status x%x add_status x%x, mbx status x%x\n",
12299 shdr_status, shdr_add_status, rc);
12300 status = -ENXIO;
12301 }
12302 mempool_free(mbox, phba->mbox_mem_pool);
12303 return status;
12304}
12305
12306/**
James Smart4f774512009-05-22 14:52:35 -040012307 * lpfc_eq_create - Create an Event Queue on the HBA
12308 * @phba: HBA structure that indicates port to create a queue on.
12309 * @eq: The queue structure to use to create the event queue.
12310 * @imax: The maximum interrupt per second limit.
12311 *
12312 * This function creates an event queue, as detailed in @eq, on a port,
12313 * described by @phba by sending an EQ_CREATE mailbox command to the HBA.
12314 *
12315 * The @phba struct is used to send mailbox command to HBA. The @eq struct
12316 * is used to get the entry count and entry size that are necessary to
12317 * determine the number of pages to allocate and use for this queue. This
12318 * function will send the EQ_CREATE mailbox command to the HBA to setup the
12319 * event queue. This function is asynchronous and will wait for the mailbox
12320 * command to finish before continuing.
12321 *
12322 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040012323 * memory this function will return -ENOMEM. If the queue create mailbox command
12324 * fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040012325 **/
12326uint32_t
James Smartee020062012-09-29 11:28:52 -040012327lpfc_eq_create(struct lpfc_hba *phba, struct lpfc_queue *eq, uint32_t imax)
James Smart4f774512009-05-22 14:52:35 -040012328{
12329 struct lpfc_mbx_eq_create *eq_create;
12330 LPFC_MBOXQ_t *mbox;
12331 int rc, length, status = 0;
12332 struct lpfc_dmabuf *dmabuf;
12333 uint32_t shdr_status, shdr_add_status;
12334 union lpfc_sli4_cfg_shdr *shdr;
12335 uint16_t dmult;
James Smart49198b32010-04-06 15:04:33 -040012336 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
12337
James Smart2e90f4b2011-12-13 13:22:37 -050012338 /* sanity check on queue memory */
12339 if (!eq)
12340 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040012341 if (!phba->sli4_hba.pc_sli4_params.supported)
12342 hw_page_size = SLI4_PAGE_SIZE;
James Smart4f774512009-05-22 14:52:35 -040012343
12344 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
12345 if (!mbox)
12346 return -ENOMEM;
12347 length = (sizeof(struct lpfc_mbx_eq_create) -
12348 sizeof(struct lpfc_sli4_cfg_mhdr));
12349 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
12350 LPFC_MBOX_OPCODE_EQ_CREATE,
12351 length, LPFC_SLI4_MBX_EMBED);
12352 eq_create = &mbox->u.mqe.un.eq_create;
12353 bf_set(lpfc_mbx_eq_create_num_pages, &eq_create->u.request,
12354 eq->page_count);
12355 bf_set(lpfc_eq_context_size, &eq_create->u.request.context,
12356 LPFC_EQE_SIZE);
12357 bf_set(lpfc_eq_context_valid, &eq_create->u.request.context, 1);
12358 /* Calculate delay multiper from maximum interrupt per second */
James Smartee020062012-09-29 11:28:52 -040012359 if (imax > LPFC_DMULT_CONST)
12360 dmult = 0;
12361 else
12362 dmult = LPFC_DMULT_CONST/imax - 1;
James Smart4f774512009-05-22 14:52:35 -040012363 bf_set(lpfc_eq_context_delay_multi, &eq_create->u.request.context,
12364 dmult);
12365 switch (eq->entry_count) {
12366 default:
12367 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12368 "0360 Unsupported EQ count. (%d)\n",
12369 eq->entry_count);
12370 if (eq->entry_count < 256)
12371 return -EINVAL;
12372 /* otherwise default to smallest count (drop through) */
12373 case 256:
12374 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
12375 LPFC_EQ_CNT_256);
12376 break;
12377 case 512:
12378 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
12379 LPFC_EQ_CNT_512);
12380 break;
12381 case 1024:
12382 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
12383 LPFC_EQ_CNT_1024);
12384 break;
12385 case 2048:
12386 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
12387 LPFC_EQ_CNT_2048);
12388 break;
12389 case 4096:
12390 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
12391 LPFC_EQ_CNT_4096);
12392 break;
12393 }
12394 list_for_each_entry(dmabuf, &eq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040012395 memset(dmabuf->virt, 0, hw_page_size);
James Smart4f774512009-05-22 14:52:35 -040012396 eq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
12397 putPaddrLow(dmabuf->phys);
12398 eq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
12399 putPaddrHigh(dmabuf->phys);
12400 }
12401 mbox->vport = phba->pport;
12402 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
12403 mbox->context1 = NULL;
12404 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
12405 shdr = (union lpfc_sli4_cfg_shdr *) &eq_create->header.cfg_shdr;
12406 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12407 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12408 if (shdr_status || shdr_add_status || rc) {
12409 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12410 "2500 EQ_CREATE mailbox failed with "
12411 "status x%x add_status x%x, mbx status x%x\n",
12412 shdr_status, shdr_add_status, rc);
12413 status = -ENXIO;
12414 }
12415 eq->type = LPFC_EQ;
12416 eq->subtype = LPFC_NONE;
12417 eq->queue_id = bf_get(lpfc_mbx_eq_create_q_id, &eq_create->u.response);
12418 if (eq->queue_id == 0xFFFF)
12419 status = -ENXIO;
12420 eq->host_index = 0;
12421 eq->hba_index = 0;
12422
James Smart8fa38512009-07-19 10:01:03 -040012423 mempool_free(mbox, phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040012424 return status;
12425}
12426
12427/**
12428 * lpfc_cq_create - Create a Completion Queue on the HBA
12429 * @phba: HBA structure that indicates port to create a queue on.
12430 * @cq: The queue structure to use to create the completion queue.
12431 * @eq: The event queue to bind this completion queue to.
12432 *
12433 * This function creates a completion queue, as detailed in @wq, on a port,
12434 * described by @phba by sending a CQ_CREATE mailbox command to the HBA.
12435 *
12436 * The @phba struct is used to send mailbox command to HBA. The @cq struct
12437 * is used to get the entry count and entry size that are necessary to
12438 * determine the number of pages to allocate and use for this queue. The @eq
12439 * is used to indicate which event queue to bind this completion queue to. This
12440 * function will send the CQ_CREATE mailbox command to the HBA to setup the
12441 * completion queue. This function is asynchronous and will wait for the mailbox
12442 * command to finish before continuing.
12443 *
12444 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040012445 * memory this function will return -ENOMEM. If the queue create mailbox command
12446 * fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040012447 **/
12448uint32_t
12449lpfc_cq_create(struct lpfc_hba *phba, struct lpfc_queue *cq,
12450 struct lpfc_queue *eq, uint32_t type, uint32_t subtype)
12451{
12452 struct lpfc_mbx_cq_create *cq_create;
12453 struct lpfc_dmabuf *dmabuf;
12454 LPFC_MBOXQ_t *mbox;
12455 int rc, length, status = 0;
12456 uint32_t shdr_status, shdr_add_status;
12457 union lpfc_sli4_cfg_shdr *shdr;
James Smart49198b32010-04-06 15:04:33 -040012458 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
12459
James Smart2e90f4b2011-12-13 13:22:37 -050012460 /* sanity check on queue memory */
12461 if (!cq || !eq)
12462 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040012463 if (!phba->sli4_hba.pc_sli4_params.supported)
12464 hw_page_size = SLI4_PAGE_SIZE;
12465
James Smart4f774512009-05-22 14:52:35 -040012466 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
12467 if (!mbox)
12468 return -ENOMEM;
12469 length = (sizeof(struct lpfc_mbx_cq_create) -
12470 sizeof(struct lpfc_sli4_cfg_mhdr));
12471 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
12472 LPFC_MBOX_OPCODE_CQ_CREATE,
12473 length, LPFC_SLI4_MBX_EMBED);
12474 cq_create = &mbox->u.mqe.un.cq_create;
James Smart5a6f1332011-03-11 16:05:35 -050012475 shdr = (union lpfc_sli4_cfg_shdr *) &cq_create->header.cfg_shdr;
James Smart4f774512009-05-22 14:52:35 -040012476 bf_set(lpfc_mbx_cq_create_num_pages, &cq_create->u.request,
12477 cq->page_count);
12478 bf_set(lpfc_cq_context_event, &cq_create->u.request.context, 1);
12479 bf_set(lpfc_cq_context_valid, &cq_create->u.request.context, 1);
James Smart5a6f1332011-03-11 16:05:35 -050012480 bf_set(lpfc_mbox_hdr_version, &shdr->request,
12481 phba->sli4_hba.pc_sli4_params.cqv);
12482 if (phba->sli4_hba.pc_sli4_params.cqv == LPFC_Q_CREATE_VERSION_2) {
James Smartc31098c2011-04-16 11:03:33 -040012483 /* FW only supports 1. Should be PAGE_SIZE/SLI4_PAGE_SIZE */
12484 bf_set(lpfc_mbx_cq_create_page_size, &cq_create->u.request, 1);
James Smart5a6f1332011-03-11 16:05:35 -050012485 bf_set(lpfc_cq_eq_id_2, &cq_create->u.request.context,
12486 eq->queue_id);
12487 } else {
12488 bf_set(lpfc_cq_eq_id, &cq_create->u.request.context,
12489 eq->queue_id);
12490 }
James Smart4f774512009-05-22 14:52:35 -040012491 switch (cq->entry_count) {
12492 default:
12493 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12494 "0361 Unsupported CQ count. (%d)\n",
12495 cq->entry_count);
James Smart4f4c1862012-06-12 13:54:02 -040012496 if (cq->entry_count < 256) {
12497 status = -EINVAL;
12498 goto out;
12499 }
James Smart4f774512009-05-22 14:52:35 -040012500 /* otherwise default to smallest count (drop through) */
12501 case 256:
12502 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
12503 LPFC_CQ_CNT_256);
12504 break;
12505 case 512:
12506 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
12507 LPFC_CQ_CNT_512);
12508 break;
12509 case 1024:
12510 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
12511 LPFC_CQ_CNT_1024);
12512 break;
12513 }
12514 list_for_each_entry(dmabuf, &cq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040012515 memset(dmabuf->virt, 0, hw_page_size);
James Smart4f774512009-05-22 14:52:35 -040012516 cq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
12517 putPaddrLow(dmabuf->phys);
12518 cq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
12519 putPaddrHigh(dmabuf->phys);
12520 }
12521 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
12522
12523 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart4f774512009-05-22 14:52:35 -040012524 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12525 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12526 if (shdr_status || shdr_add_status || rc) {
12527 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12528 "2501 CQ_CREATE mailbox failed with "
12529 "status x%x add_status x%x, mbx status x%x\n",
12530 shdr_status, shdr_add_status, rc);
12531 status = -ENXIO;
12532 goto out;
12533 }
12534 cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
12535 if (cq->queue_id == 0xFFFF) {
12536 status = -ENXIO;
12537 goto out;
12538 }
12539 /* link the cq onto the parent eq child list */
12540 list_add_tail(&cq->list, &eq->child_list);
12541 /* Set up completion queue's type and subtype */
12542 cq->type = type;
12543 cq->subtype = subtype;
12544 cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
James Smart2a622bf2011-02-16 12:40:06 -050012545 cq->assoc_qid = eq->queue_id;
James Smart4f774512009-05-22 14:52:35 -040012546 cq->host_index = 0;
12547 cq->hba_index = 0;
James Smart4f774512009-05-22 14:52:35 -040012548
James Smart8fa38512009-07-19 10:01:03 -040012549out:
12550 mempool_free(mbox, phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040012551 return status;
12552}
12553
12554/**
James Smartb19a0612010-04-06 14:48:51 -040012555 * lpfc_mq_create_fb_init - Send MCC_CREATE without async events registration
James Smart04c68492009-05-22 14:52:52 -040012556 * @phba: HBA structure that indicates port to create a queue on.
12557 * @mq: The queue structure to use to create the mailbox queue.
James Smartb19a0612010-04-06 14:48:51 -040012558 * @mbox: An allocated pointer to type LPFC_MBOXQ_t
12559 * @cq: The completion queue to associate with this cq.
James Smart04c68492009-05-22 14:52:52 -040012560 *
James Smartb19a0612010-04-06 14:48:51 -040012561 * This function provides failback (fb) functionality when the
12562 * mq_create_ext fails on older FW generations. It's purpose is identical
12563 * to mq_create_ext otherwise.
James Smart04c68492009-05-22 14:52:52 -040012564 *
James Smartb19a0612010-04-06 14:48:51 -040012565 * This routine cannot fail as all attributes were previously accessed and
12566 * initialized in mq_create_ext.
James Smart04c68492009-05-22 14:52:52 -040012567 **/
James Smartb19a0612010-04-06 14:48:51 -040012568static void
12569lpfc_mq_create_fb_init(struct lpfc_hba *phba, struct lpfc_queue *mq,
12570 LPFC_MBOXQ_t *mbox, struct lpfc_queue *cq)
James Smart04c68492009-05-22 14:52:52 -040012571{
12572 struct lpfc_mbx_mq_create *mq_create;
12573 struct lpfc_dmabuf *dmabuf;
James Smartb19a0612010-04-06 14:48:51 -040012574 int length;
James Smart04c68492009-05-22 14:52:52 -040012575
James Smart04c68492009-05-22 14:52:52 -040012576 length = (sizeof(struct lpfc_mbx_mq_create) -
12577 sizeof(struct lpfc_sli4_cfg_mhdr));
12578 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
12579 LPFC_MBOX_OPCODE_MQ_CREATE,
12580 length, LPFC_SLI4_MBX_EMBED);
12581 mq_create = &mbox->u.mqe.un.mq_create;
12582 bf_set(lpfc_mbx_mq_create_num_pages, &mq_create->u.request,
James Smartb19a0612010-04-06 14:48:51 -040012583 mq->page_count);
James Smart04c68492009-05-22 14:52:52 -040012584 bf_set(lpfc_mq_context_cq_id, &mq_create->u.request.context,
James Smartb19a0612010-04-06 14:48:51 -040012585 cq->queue_id);
James Smart04c68492009-05-22 14:52:52 -040012586 bf_set(lpfc_mq_context_valid, &mq_create->u.request.context, 1);
12587 switch (mq->entry_count) {
James Smart04c68492009-05-22 14:52:52 -040012588 case 16:
James Smart5a6f1332011-03-11 16:05:35 -050012589 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
12590 LPFC_MQ_RING_SIZE_16);
James Smart04c68492009-05-22 14:52:52 -040012591 break;
12592 case 32:
James Smart5a6f1332011-03-11 16:05:35 -050012593 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
12594 LPFC_MQ_RING_SIZE_32);
James Smart04c68492009-05-22 14:52:52 -040012595 break;
12596 case 64:
James Smart5a6f1332011-03-11 16:05:35 -050012597 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
12598 LPFC_MQ_RING_SIZE_64);
James Smart04c68492009-05-22 14:52:52 -040012599 break;
12600 case 128:
James Smart5a6f1332011-03-11 16:05:35 -050012601 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
12602 LPFC_MQ_RING_SIZE_128);
James Smart04c68492009-05-22 14:52:52 -040012603 break;
12604 }
12605 list_for_each_entry(dmabuf, &mq->page_list, list) {
12606 mq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
James Smartb19a0612010-04-06 14:48:51 -040012607 putPaddrLow(dmabuf->phys);
James Smart04c68492009-05-22 14:52:52 -040012608 mq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
James Smartb19a0612010-04-06 14:48:51 -040012609 putPaddrHigh(dmabuf->phys);
12610 }
12611}
12612
12613/**
12614 * lpfc_mq_create - Create a mailbox Queue on the HBA
12615 * @phba: HBA structure that indicates port to create a queue on.
12616 * @mq: The queue structure to use to create the mailbox queue.
12617 * @cq: The completion queue to associate with this cq.
12618 * @subtype: The queue's subtype.
12619 *
12620 * This function creates a mailbox queue, as detailed in @mq, on a port,
12621 * described by @phba by sending a MQ_CREATE mailbox command to the HBA.
12622 *
12623 * The @phba struct is used to send mailbox command to HBA. The @cq struct
12624 * is used to get the entry count and entry size that are necessary to
12625 * determine the number of pages to allocate and use for this queue. This
12626 * function will send the MQ_CREATE mailbox command to the HBA to setup the
12627 * mailbox queue. This function is asynchronous and will wait for the mailbox
12628 * command to finish before continuing.
12629 *
12630 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040012631 * memory this function will return -ENOMEM. If the queue create mailbox command
12632 * fails this function will return -ENXIO.
James Smartb19a0612010-04-06 14:48:51 -040012633 **/
12634int32_t
12635lpfc_mq_create(struct lpfc_hba *phba, struct lpfc_queue *mq,
12636 struct lpfc_queue *cq, uint32_t subtype)
12637{
12638 struct lpfc_mbx_mq_create *mq_create;
12639 struct lpfc_mbx_mq_create_ext *mq_create_ext;
12640 struct lpfc_dmabuf *dmabuf;
12641 LPFC_MBOXQ_t *mbox;
12642 int rc, length, status = 0;
12643 uint32_t shdr_status, shdr_add_status;
12644 union lpfc_sli4_cfg_shdr *shdr;
James Smart49198b32010-04-06 15:04:33 -040012645 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
James Smartb19a0612010-04-06 14:48:51 -040012646
James Smart2e90f4b2011-12-13 13:22:37 -050012647 /* sanity check on queue memory */
12648 if (!mq || !cq)
12649 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040012650 if (!phba->sli4_hba.pc_sli4_params.supported)
12651 hw_page_size = SLI4_PAGE_SIZE;
James Smartb19a0612010-04-06 14:48:51 -040012652
12653 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
12654 if (!mbox)
12655 return -ENOMEM;
12656 length = (sizeof(struct lpfc_mbx_mq_create_ext) -
12657 sizeof(struct lpfc_sli4_cfg_mhdr));
12658 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
12659 LPFC_MBOX_OPCODE_MQ_CREATE_EXT,
12660 length, LPFC_SLI4_MBX_EMBED);
12661
12662 mq_create_ext = &mbox->u.mqe.un.mq_create_ext;
James Smart5a6f1332011-03-11 16:05:35 -050012663 shdr = (union lpfc_sli4_cfg_shdr *) &mq_create_ext->header.cfg_shdr;
James Smart70f3c072010-12-15 17:57:33 -050012664 bf_set(lpfc_mbx_mq_create_ext_num_pages,
12665 &mq_create_ext->u.request, mq->page_count);
12666 bf_set(lpfc_mbx_mq_create_ext_async_evt_link,
12667 &mq_create_ext->u.request, 1);
12668 bf_set(lpfc_mbx_mq_create_ext_async_evt_fip,
James Smartb19a0612010-04-06 14:48:51 -040012669 &mq_create_ext->u.request, 1);
12670 bf_set(lpfc_mbx_mq_create_ext_async_evt_group5,
12671 &mq_create_ext->u.request, 1);
James Smart70f3c072010-12-15 17:57:33 -050012672 bf_set(lpfc_mbx_mq_create_ext_async_evt_fc,
12673 &mq_create_ext->u.request, 1);
12674 bf_set(lpfc_mbx_mq_create_ext_async_evt_sli,
12675 &mq_create_ext->u.request, 1);
James Smartb19a0612010-04-06 14:48:51 -040012676 bf_set(lpfc_mq_context_valid, &mq_create_ext->u.request.context, 1);
James Smart5a6f1332011-03-11 16:05:35 -050012677 bf_set(lpfc_mbox_hdr_version, &shdr->request,
12678 phba->sli4_hba.pc_sli4_params.mqv);
12679 if (phba->sli4_hba.pc_sli4_params.mqv == LPFC_Q_CREATE_VERSION_1)
12680 bf_set(lpfc_mbx_mq_create_ext_cq_id, &mq_create_ext->u.request,
12681 cq->queue_id);
12682 else
12683 bf_set(lpfc_mq_context_cq_id, &mq_create_ext->u.request.context,
12684 cq->queue_id);
James Smartb19a0612010-04-06 14:48:51 -040012685 switch (mq->entry_count) {
12686 default:
12687 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12688 "0362 Unsupported MQ count. (%d)\n",
12689 mq->entry_count);
James Smart4f4c1862012-06-12 13:54:02 -040012690 if (mq->entry_count < 16) {
12691 status = -EINVAL;
12692 goto out;
12693 }
James Smartb19a0612010-04-06 14:48:51 -040012694 /* otherwise default to smallest count (drop through) */
12695 case 16:
James Smart5a6f1332011-03-11 16:05:35 -050012696 bf_set(lpfc_mq_context_ring_size,
12697 &mq_create_ext->u.request.context,
12698 LPFC_MQ_RING_SIZE_16);
James Smartb19a0612010-04-06 14:48:51 -040012699 break;
12700 case 32:
James Smart5a6f1332011-03-11 16:05:35 -050012701 bf_set(lpfc_mq_context_ring_size,
12702 &mq_create_ext->u.request.context,
12703 LPFC_MQ_RING_SIZE_32);
James Smartb19a0612010-04-06 14:48:51 -040012704 break;
12705 case 64:
James Smart5a6f1332011-03-11 16:05:35 -050012706 bf_set(lpfc_mq_context_ring_size,
12707 &mq_create_ext->u.request.context,
12708 LPFC_MQ_RING_SIZE_64);
James Smartb19a0612010-04-06 14:48:51 -040012709 break;
12710 case 128:
James Smart5a6f1332011-03-11 16:05:35 -050012711 bf_set(lpfc_mq_context_ring_size,
12712 &mq_create_ext->u.request.context,
12713 LPFC_MQ_RING_SIZE_128);
James Smartb19a0612010-04-06 14:48:51 -040012714 break;
12715 }
12716 list_for_each_entry(dmabuf, &mq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040012717 memset(dmabuf->virt, 0, hw_page_size);
James Smartb19a0612010-04-06 14:48:51 -040012718 mq_create_ext->u.request.page[dmabuf->buffer_tag].addr_lo =
12719 putPaddrLow(dmabuf->phys);
12720 mq_create_ext->u.request.page[dmabuf->buffer_tag].addr_hi =
James Smart04c68492009-05-22 14:52:52 -040012721 putPaddrHigh(dmabuf->phys);
12722 }
12723 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
James Smartb19a0612010-04-06 14:48:51 -040012724 mq->queue_id = bf_get(lpfc_mbx_mq_create_q_id,
12725 &mq_create_ext->u.response);
12726 if (rc != MBX_SUCCESS) {
12727 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
12728 "2795 MQ_CREATE_EXT failed with "
12729 "status x%x. Failback to MQ_CREATE.\n",
12730 rc);
12731 lpfc_mq_create_fb_init(phba, mq, mbox, cq);
12732 mq_create = &mbox->u.mqe.un.mq_create;
12733 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
12734 shdr = (union lpfc_sli4_cfg_shdr *) &mq_create->header.cfg_shdr;
12735 mq->queue_id = bf_get(lpfc_mbx_mq_create_q_id,
12736 &mq_create->u.response);
12737 }
12738
James Smart04c68492009-05-22 14:52:52 -040012739 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart04c68492009-05-22 14:52:52 -040012740 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12741 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12742 if (shdr_status || shdr_add_status || rc) {
12743 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12744 "2502 MQ_CREATE mailbox failed with "
12745 "status x%x add_status x%x, mbx status x%x\n",
12746 shdr_status, shdr_add_status, rc);
12747 status = -ENXIO;
12748 goto out;
12749 }
James Smart04c68492009-05-22 14:52:52 -040012750 if (mq->queue_id == 0xFFFF) {
12751 status = -ENXIO;
12752 goto out;
12753 }
12754 mq->type = LPFC_MQ;
James Smart2a622bf2011-02-16 12:40:06 -050012755 mq->assoc_qid = cq->queue_id;
James Smart04c68492009-05-22 14:52:52 -040012756 mq->subtype = subtype;
12757 mq->host_index = 0;
12758 mq->hba_index = 0;
12759
12760 /* link the mq onto the parent cq child list */
12761 list_add_tail(&mq->list, &cq->child_list);
12762out:
James Smart8fa38512009-07-19 10:01:03 -040012763 mempool_free(mbox, phba->mbox_mem_pool);
James Smart04c68492009-05-22 14:52:52 -040012764 return status;
12765}
12766
12767/**
James Smart4f774512009-05-22 14:52:35 -040012768 * lpfc_wq_create - Create a Work Queue on the HBA
12769 * @phba: HBA structure that indicates port to create a queue on.
12770 * @wq: The queue structure to use to create the work queue.
12771 * @cq: The completion queue to bind this work queue to.
12772 * @subtype: The subtype of the work queue indicating its functionality.
12773 *
12774 * This function creates a work queue, as detailed in @wq, on a port, described
12775 * by @phba by sending a WQ_CREATE mailbox command to the HBA.
12776 *
12777 * The @phba struct is used to send mailbox command to HBA. The @wq struct
12778 * is used to get the entry count and entry size that are necessary to
12779 * determine the number of pages to allocate and use for this queue. The @cq
12780 * is used to indicate which completion queue to bind this work queue to. This
12781 * function will send the WQ_CREATE mailbox command to the HBA to setup the
12782 * work queue. This function is asynchronous and will wait for the mailbox
12783 * command to finish before continuing.
12784 *
12785 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040012786 * memory this function will return -ENOMEM. If the queue create mailbox command
12787 * fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040012788 **/
12789uint32_t
12790lpfc_wq_create(struct lpfc_hba *phba, struct lpfc_queue *wq,
12791 struct lpfc_queue *cq, uint32_t subtype)
12792{
12793 struct lpfc_mbx_wq_create *wq_create;
12794 struct lpfc_dmabuf *dmabuf;
12795 LPFC_MBOXQ_t *mbox;
12796 int rc, length, status = 0;
12797 uint32_t shdr_status, shdr_add_status;
12798 union lpfc_sli4_cfg_shdr *shdr;
James Smart49198b32010-04-06 15:04:33 -040012799 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
James Smart5a6f1332011-03-11 16:05:35 -050012800 struct dma_address *page;
James Smart962bc512013-01-03 15:44:00 -050012801 void __iomem *bar_memmap_p;
12802 uint32_t db_offset;
12803 uint16_t pci_barset;
James Smart49198b32010-04-06 15:04:33 -040012804
James Smart2e90f4b2011-12-13 13:22:37 -050012805 /* sanity check on queue memory */
12806 if (!wq || !cq)
12807 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040012808 if (!phba->sli4_hba.pc_sli4_params.supported)
12809 hw_page_size = SLI4_PAGE_SIZE;
James Smart4f774512009-05-22 14:52:35 -040012810
12811 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
12812 if (!mbox)
12813 return -ENOMEM;
12814 length = (sizeof(struct lpfc_mbx_wq_create) -
12815 sizeof(struct lpfc_sli4_cfg_mhdr));
12816 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
12817 LPFC_MBOX_OPCODE_FCOE_WQ_CREATE,
12818 length, LPFC_SLI4_MBX_EMBED);
12819 wq_create = &mbox->u.mqe.un.wq_create;
James Smart5a6f1332011-03-11 16:05:35 -050012820 shdr = (union lpfc_sli4_cfg_shdr *) &wq_create->header.cfg_shdr;
James Smart4f774512009-05-22 14:52:35 -040012821 bf_set(lpfc_mbx_wq_create_num_pages, &wq_create->u.request,
12822 wq->page_count);
12823 bf_set(lpfc_mbx_wq_create_cq_id, &wq_create->u.request,
12824 cq->queue_id);
James Smart5a6f1332011-03-11 16:05:35 -050012825 bf_set(lpfc_mbox_hdr_version, &shdr->request,
12826 phba->sli4_hba.pc_sli4_params.wqv);
James Smart962bc512013-01-03 15:44:00 -050012827
James Smart5a6f1332011-03-11 16:05:35 -050012828 if (phba->sli4_hba.pc_sli4_params.wqv == LPFC_Q_CREATE_VERSION_1) {
12829 bf_set(lpfc_mbx_wq_create_wqe_count, &wq_create->u.request_1,
12830 wq->entry_count);
12831 switch (wq->entry_size) {
12832 default:
12833 case 64:
12834 bf_set(lpfc_mbx_wq_create_wqe_size,
12835 &wq_create->u.request_1,
12836 LPFC_WQ_WQE_SIZE_64);
12837 break;
12838 case 128:
12839 bf_set(lpfc_mbx_wq_create_wqe_size,
12840 &wq_create->u.request_1,
12841 LPFC_WQ_WQE_SIZE_128);
12842 break;
12843 }
12844 bf_set(lpfc_mbx_wq_create_page_size, &wq_create->u.request_1,
12845 (PAGE_SIZE/SLI4_PAGE_SIZE));
12846 page = wq_create->u.request_1.page;
12847 } else {
12848 page = wq_create->u.request.page;
12849 }
James Smart4f774512009-05-22 14:52:35 -040012850 list_for_each_entry(dmabuf, &wq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040012851 memset(dmabuf->virt, 0, hw_page_size);
James Smart5a6f1332011-03-11 16:05:35 -050012852 page[dmabuf->buffer_tag].addr_lo = putPaddrLow(dmabuf->phys);
12853 page[dmabuf->buffer_tag].addr_hi = putPaddrHigh(dmabuf->phys);
James Smart4f774512009-05-22 14:52:35 -040012854 }
James Smart962bc512013-01-03 15:44:00 -050012855
12856 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
12857 bf_set(lpfc_mbx_wq_create_dua, &wq_create->u.request, 1);
12858
James Smart4f774512009-05-22 14:52:35 -040012859 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
12860 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart4f774512009-05-22 14:52:35 -040012861 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12862 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12863 if (shdr_status || shdr_add_status || rc) {
12864 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12865 "2503 WQ_CREATE mailbox failed with "
12866 "status x%x add_status x%x, mbx status x%x\n",
12867 shdr_status, shdr_add_status, rc);
12868 status = -ENXIO;
12869 goto out;
12870 }
12871 wq->queue_id = bf_get(lpfc_mbx_wq_create_q_id, &wq_create->u.response);
12872 if (wq->queue_id == 0xFFFF) {
12873 status = -ENXIO;
12874 goto out;
12875 }
James Smart962bc512013-01-03 15:44:00 -050012876 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE) {
12877 wq->db_format = bf_get(lpfc_mbx_wq_create_db_format,
12878 &wq_create->u.response);
12879 if ((wq->db_format != LPFC_DB_LIST_FORMAT) &&
12880 (wq->db_format != LPFC_DB_RING_FORMAT)) {
12881 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12882 "3265 WQ[%d] doorbell format not "
12883 "supported: x%x\n", wq->queue_id,
12884 wq->db_format);
12885 status = -EINVAL;
12886 goto out;
12887 }
12888 pci_barset = bf_get(lpfc_mbx_wq_create_bar_set,
12889 &wq_create->u.response);
12890 bar_memmap_p = lpfc_dual_chute_pci_bar_map(phba, pci_barset);
12891 if (!bar_memmap_p) {
12892 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12893 "3263 WQ[%d] failed to memmap pci "
12894 "barset:x%x\n", wq->queue_id,
12895 pci_barset);
12896 status = -ENOMEM;
12897 goto out;
12898 }
12899 db_offset = wq_create->u.response.doorbell_offset;
12900 if ((db_offset != LPFC_ULP0_WQ_DOORBELL) &&
12901 (db_offset != LPFC_ULP1_WQ_DOORBELL)) {
12902 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12903 "3252 WQ[%d] doorbell offset not "
12904 "supported: x%x\n", wq->queue_id,
12905 db_offset);
12906 status = -EINVAL;
12907 goto out;
12908 }
12909 wq->db_regaddr = bar_memmap_p + db_offset;
12910 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarta22e7db2013-04-17 20:16:37 -040012911 "3264 WQ[%d]: barset:x%x, offset:x%x, "
12912 "format:x%x\n", wq->queue_id, pci_barset,
12913 db_offset, wq->db_format);
James Smart962bc512013-01-03 15:44:00 -050012914 } else {
12915 wq->db_format = LPFC_DB_LIST_FORMAT;
12916 wq->db_regaddr = phba->sli4_hba.WQDBregaddr;
12917 }
James Smart4f774512009-05-22 14:52:35 -040012918 wq->type = LPFC_WQ;
James Smart2a622bf2011-02-16 12:40:06 -050012919 wq->assoc_qid = cq->queue_id;
James Smart4f774512009-05-22 14:52:35 -040012920 wq->subtype = subtype;
12921 wq->host_index = 0;
12922 wq->hba_index = 0;
James Smartff78d8f2011-12-13 13:21:35 -050012923 wq->entry_repost = LPFC_RELEASE_NOTIFICATION_INTERVAL;
James Smart4f774512009-05-22 14:52:35 -040012924
12925 /* link the wq onto the parent cq child list */
12926 list_add_tail(&wq->list, &cq->child_list);
12927out:
James Smart8fa38512009-07-19 10:01:03 -040012928 mempool_free(mbox, phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040012929 return status;
12930}
12931
12932/**
James Smart73d91e52011-10-10 21:32:10 -040012933 * lpfc_rq_adjust_repost - Adjust entry_repost for an RQ
12934 * @phba: HBA structure that indicates port to create a queue on.
12935 * @rq: The queue structure to use for the receive queue.
12936 * @qno: The associated HBQ number
12937 *
12938 *
12939 * For SLI4 we need to adjust the RQ repost value based on
12940 * the number of buffers that are initially posted to the RQ.
12941 */
12942void
12943lpfc_rq_adjust_repost(struct lpfc_hba *phba, struct lpfc_queue *rq, int qno)
12944{
12945 uint32_t cnt;
12946
James Smart2e90f4b2011-12-13 13:22:37 -050012947 /* sanity check on queue memory */
12948 if (!rq)
12949 return;
James Smart73d91e52011-10-10 21:32:10 -040012950 cnt = lpfc_hbq_defs[qno]->entry_count;
12951
12952 /* Recalc repost for RQs based on buffers initially posted */
12953 cnt = (cnt >> 3);
12954 if (cnt < LPFC_QUEUE_MIN_REPOST)
12955 cnt = LPFC_QUEUE_MIN_REPOST;
12956
12957 rq->entry_repost = cnt;
12958}
12959
12960/**
James Smart4f774512009-05-22 14:52:35 -040012961 * lpfc_rq_create - Create a Receive Queue on the HBA
12962 * @phba: HBA structure that indicates port to create a queue on.
12963 * @hrq: The queue structure to use to create the header receive queue.
12964 * @drq: The queue structure to use to create the data receive queue.
12965 * @cq: The completion queue to bind this work queue to.
12966 *
12967 * This function creates a receive buffer queue pair , as detailed in @hrq and
12968 * @drq, on a port, described by @phba by sending a RQ_CREATE mailbox command
12969 * to the HBA.
12970 *
12971 * The @phba struct is used to send mailbox command to HBA. The @drq and @hrq
12972 * struct is used to get the entry count that is necessary to determine the
12973 * number of pages to use for this queue. The @cq is used to indicate which
12974 * completion queue to bind received buffers that are posted to these queues to.
12975 * This function will send the RQ_CREATE mailbox command to the HBA to setup the
12976 * receive queue pair. This function is asynchronous and will wait for the
12977 * mailbox command to finish before continuing.
12978 *
12979 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040012980 * memory this function will return -ENOMEM. If the queue create mailbox command
12981 * fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040012982 **/
12983uint32_t
12984lpfc_rq_create(struct lpfc_hba *phba, struct lpfc_queue *hrq,
12985 struct lpfc_queue *drq, struct lpfc_queue *cq, uint32_t subtype)
12986{
12987 struct lpfc_mbx_rq_create *rq_create;
12988 struct lpfc_dmabuf *dmabuf;
12989 LPFC_MBOXQ_t *mbox;
12990 int rc, length, status = 0;
12991 uint32_t shdr_status, shdr_add_status;
12992 union lpfc_sli4_cfg_shdr *shdr;
James Smart49198b32010-04-06 15:04:33 -040012993 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
James Smart962bc512013-01-03 15:44:00 -050012994 void __iomem *bar_memmap_p;
12995 uint32_t db_offset;
12996 uint16_t pci_barset;
James Smart49198b32010-04-06 15:04:33 -040012997
James Smart2e90f4b2011-12-13 13:22:37 -050012998 /* sanity check on queue memory */
12999 if (!hrq || !drq || !cq)
13000 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040013001 if (!phba->sli4_hba.pc_sli4_params.supported)
13002 hw_page_size = SLI4_PAGE_SIZE;
James Smart4f774512009-05-22 14:52:35 -040013003
13004 if (hrq->entry_count != drq->entry_count)
13005 return -EINVAL;
13006 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13007 if (!mbox)
13008 return -ENOMEM;
13009 length = (sizeof(struct lpfc_mbx_rq_create) -
13010 sizeof(struct lpfc_sli4_cfg_mhdr));
13011 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13012 LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
13013 length, LPFC_SLI4_MBX_EMBED);
13014 rq_create = &mbox->u.mqe.un.rq_create;
James Smart5a6f1332011-03-11 16:05:35 -050013015 shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
13016 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13017 phba->sli4_hba.pc_sli4_params.rqv);
13018 if (phba->sli4_hba.pc_sli4_params.rqv == LPFC_Q_CREATE_VERSION_1) {
13019 bf_set(lpfc_rq_context_rqe_count_1,
13020 &rq_create->u.request.context,
13021 hrq->entry_count);
13022 rq_create->u.request.context.buffer_size = LPFC_HDR_BUF_SIZE;
James Smartc31098c2011-04-16 11:03:33 -040013023 bf_set(lpfc_rq_context_rqe_size,
13024 &rq_create->u.request.context,
13025 LPFC_RQE_SIZE_8);
13026 bf_set(lpfc_rq_context_page_size,
13027 &rq_create->u.request.context,
13028 (PAGE_SIZE/SLI4_PAGE_SIZE));
James Smart5a6f1332011-03-11 16:05:35 -050013029 } else {
13030 switch (hrq->entry_count) {
13031 default:
13032 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13033 "2535 Unsupported RQ count. (%d)\n",
13034 hrq->entry_count);
James Smart4f4c1862012-06-12 13:54:02 -040013035 if (hrq->entry_count < 512) {
13036 status = -EINVAL;
13037 goto out;
13038 }
James Smart5a6f1332011-03-11 16:05:35 -050013039 /* otherwise default to smallest count (drop through) */
13040 case 512:
13041 bf_set(lpfc_rq_context_rqe_count,
13042 &rq_create->u.request.context,
13043 LPFC_RQ_RING_SIZE_512);
13044 break;
13045 case 1024:
13046 bf_set(lpfc_rq_context_rqe_count,
13047 &rq_create->u.request.context,
13048 LPFC_RQ_RING_SIZE_1024);
13049 break;
13050 case 2048:
13051 bf_set(lpfc_rq_context_rqe_count,
13052 &rq_create->u.request.context,
13053 LPFC_RQ_RING_SIZE_2048);
13054 break;
13055 case 4096:
13056 bf_set(lpfc_rq_context_rqe_count,
13057 &rq_create->u.request.context,
13058 LPFC_RQ_RING_SIZE_4096);
13059 break;
13060 }
13061 bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
13062 LPFC_HDR_BUF_SIZE);
James Smart4f774512009-05-22 14:52:35 -040013063 }
13064 bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
13065 cq->queue_id);
13066 bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
13067 hrq->page_count);
James Smart4f774512009-05-22 14:52:35 -040013068 list_for_each_entry(dmabuf, &hrq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040013069 memset(dmabuf->virt, 0, hw_page_size);
James Smart4f774512009-05-22 14:52:35 -040013070 rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
13071 putPaddrLow(dmabuf->phys);
13072 rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
13073 putPaddrHigh(dmabuf->phys);
13074 }
James Smart962bc512013-01-03 15:44:00 -050013075 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
13076 bf_set(lpfc_mbx_rq_create_dua, &rq_create->u.request, 1);
13077
James Smart4f774512009-05-22 14:52:35 -040013078 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13079 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart4f774512009-05-22 14:52:35 -040013080 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13081 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13082 if (shdr_status || shdr_add_status || rc) {
13083 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13084 "2504 RQ_CREATE mailbox failed with "
13085 "status x%x add_status x%x, mbx status x%x\n",
13086 shdr_status, shdr_add_status, rc);
13087 status = -ENXIO;
13088 goto out;
13089 }
13090 hrq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
13091 if (hrq->queue_id == 0xFFFF) {
13092 status = -ENXIO;
13093 goto out;
13094 }
James Smart962bc512013-01-03 15:44:00 -050013095
13096 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE) {
13097 hrq->db_format = bf_get(lpfc_mbx_rq_create_db_format,
13098 &rq_create->u.response);
13099 if ((hrq->db_format != LPFC_DB_LIST_FORMAT) &&
13100 (hrq->db_format != LPFC_DB_RING_FORMAT)) {
13101 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13102 "3262 RQ [%d] doorbell format not "
13103 "supported: x%x\n", hrq->queue_id,
13104 hrq->db_format);
13105 status = -EINVAL;
13106 goto out;
13107 }
13108
13109 pci_barset = bf_get(lpfc_mbx_rq_create_bar_set,
13110 &rq_create->u.response);
13111 bar_memmap_p = lpfc_dual_chute_pci_bar_map(phba, pci_barset);
13112 if (!bar_memmap_p) {
13113 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13114 "3269 RQ[%d] failed to memmap pci "
13115 "barset:x%x\n", hrq->queue_id,
13116 pci_barset);
13117 status = -ENOMEM;
13118 goto out;
13119 }
13120
13121 db_offset = rq_create->u.response.doorbell_offset;
13122 if ((db_offset != LPFC_ULP0_RQ_DOORBELL) &&
13123 (db_offset != LPFC_ULP1_RQ_DOORBELL)) {
13124 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13125 "3270 RQ[%d] doorbell offset not "
13126 "supported: x%x\n", hrq->queue_id,
13127 db_offset);
13128 status = -EINVAL;
13129 goto out;
13130 }
13131 hrq->db_regaddr = bar_memmap_p + db_offset;
13132 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarta22e7db2013-04-17 20:16:37 -040013133 "3266 RQ[qid:%d]: barset:x%x, offset:x%x, "
13134 "format:x%x\n", hrq->queue_id, pci_barset,
13135 db_offset, hrq->db_format);
James Smart962bc512013-01-03 15:44:00 -050013136 } else {
13137 hrq->db_format = LPFC_DB_RING_FORMAT;
13138 hrq->db_regaddr = phba->sli4_hba.RQDBregaddr;
13139 }
James Smart4f774512009-05-22 14:52:35 -040013140 hrq->type = LPFC_HRQ;
James Smart2a622bf2011-02-16 12:40:06 -050013141 hrq->assoc_qid = cq->queue_id;
James Smart4f774512009-05-22 14:52:35 -040013142 hrq->subtype = subtype;
13143 hrq->host_index = 0;
13144 hrq->hba_index = 0;
13145
13146 /* now create the data queue */
13147 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13148 LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
13149 length, LPFC_SLI4_MBX_EMBED);
James Smart5a6f1332011-03-11 16:05:35 -050013150 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13151 phba->sli4_hba.pc_sli4_params.rqv);
13152 if (phba->sli4_hba.pc_sli4_params.rqv == LPFC_Q_CREATE_VERSION_1) {
13153 bf_set(lpfc_rq_context_rqe_count_1,
James Smartc31098c2011-04-16 11:03:33 -040013154 &rq_create->u.request.context, hrq->entry_count);
James Smart5a6f1332011-03-11 16:05:35 -050013155 rq_create->u.request.context.buffer_size = LPFC_DATA_BUF_SIZE;
James Smartc31098c2011-04-16 11:03:33 -040013156 bf_set(lpfc_rq_context_rqe_size, &rq_create->u.request.context,
13157 LPFC_RQE_SIZE_8);
13158 bf_set(lpfc_rq_context_page_size, &rq_create->u.request.context,
13159 (PAGE_SIZE/SLI4_PAGE_SIZE));
James Smart5a6f1332011-03-11 16:05:35 -050013160 } else {
13161 switch (drq->entry_count) {
13162 default:
13163 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13164 "2536 Unsupported RQ count. (%d)\n",
13165 drq->entry_count);
James Smart4f4c1862012-06-12 13:54:02 -040013166 if (drq->entry_count < 512) {
13167 status = -EINVAL;
13168 goto out;
13169 }
James Smart5a6f1332011-03-11 16:05:35 -050013170 /* otherwise default to smallest count (drop through) */
13171 case 512:
13172 bf_set(lpfc_rq_context_rqe_count,
13173 &rq_create->u.request.context,
13174 LPFC_RQ_RING_SIZE_512);
13175 break;
13176 case 1024:
13177 bf_set(lpfc_rq_context_rqe_count,
13178 &rq_create->u.request.context,
13179 LPFC_RQ_RING_SIZE_1024);
13180 break;
13181 case 2048:
13182 bf_set(lpfc_rq_context_rqe_count,
13183 &rq_create->u.request.context,
13184 LPFC_RQ_RING_SIZE_2048);
13185 break;
13186 case 4096:
13187 bf_set(lpfc_rq_context_rqe_count,
13188 &rq_create->u.request.context,
13189 LPFC_RQ_RING_SIZE_4096);
13190 break;
13191 }
13192 bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
13193 LPFC_DATA_BUF_SIZE);
James Smart4f774512009-05-22 14:52:35 -040013194 }
13195 bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
13196 cq->queue_id);
13197 bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
13198 drq->page_count);
James Smart4f774512009-05-22 14:52:35 -040013199 list_for_each_entry(dmabuf, &drq->page_list, list) {
13200 rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
13201 putPaddrLow(dmabuf->phys);
13202 rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
13203 putPaddrHigh(dmabuf->phys);
13204 }
James Smart962bc512013-01-03 15:44:00 -050013205 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
13206 bf_set(lpfc_mbx_rq_create_dua, &rq_create->u.request, 1);
James Smart4f774512009-05-22 14:52:35 -040013207 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13208 /* The IOCTL status is embedded in the mailbox subheader. */
13209 shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
13210 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13211 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13212 if (shdr_status || shdr_add_status || rc) {
13213 status = -ENXIO;
13214 goto out;
13215 }
13216 drq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
13217 if (drq->queue_id == 0xFFFF) {
13218 status = -ENXIO;
13219 goto out;
13220 }
13221 drq->type = LPFC_DRQ;
James Smart2a622bf2011-02-16 12:40:06 -050013222 drq->assoc_qid = cq->queue_id;
James Smart4f774512009-05-22 14:52:35 -040013223 drq->subtype = subtype;
13224 drq->host_index = 0;
13225 drq->hba_index = 0;
13226
13227 /* link the header and data RQs onto the parent cq child list */
13228 list_add_tail(&hrq->list, &cq->child_list);
13229 list_add_tail(&drq->list, &cq->child_list);
13230
13231out:
James Smart8fa38512009-07-19 10:01:03 -040013232 mempool_free(mbox, phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040013233 return status;
13234}
13235
13236/**
13237 * lpfc_eq_destroy - Destroy an event Queue on the HBA
13238 * @eq: The queue structure associated with the queue to destroy.
13239 *
13240 * This function destroys a queue, as detailed in @eq by sending an mailbox
13241 * command, specific to the type of queue, to the HBA.
13242 *
13243 * The @eq struct is used to get the queue ID of the queue to destroy.
13244 *
13245 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040013246 * command fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040013247 **/
13248uint32_t
13249lpfc_eq_destroy(struct lpfc_hba *phba, struct lpfc_queue *eq)
13250{
13251 LPFC_MBOXQ_t *mbox;
13252 int rc, length, status = 0;
13253 uint32_t shdr_status, shdr_add_status;
13254 union lpfc_sli4_cfg_shdr *shdr;
13255
James Smart2e90f4b2011-12-13 13:22:37 -050013256 /* sanity check on queue memory */
James Smart4f774512009-05-22 14:52:35 -040013257 if (!eq)
13258 return -ENODEV;
13259 mbox = mempool_alloc(eq->phba->mbox_mem_pool, GFP_KERNEL);
13260 if (!mbox)
13261 return -ENOMEM;
13262 length = (sizeof(struct lpfc_mbx_eq_destroy) -
13263 sizeof(struct lpfc_sli4_cfg_mhdr));
13264 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13265 LPFC_MBOX_OPCODE_EQ_DESTROY,
13266 length, LPFC_SLI4_MBX_EMBED);
13267 bf_set(lpfc_mbx_eq_destroy_q_id, &mbox->u.mqe.un.eq_destroy.u.request,
13268 eq->queue_id);
13269 mbox->vport = eq->phba->pport;
13270 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
13271
13272 rc = lpfc_sli_issue_mbox(eq->phba, mbox, MBX_POLL);
13273 /* The IOCTL status is embedded in the mailbox subheader. */
13274 shdr = (union lpfc_sli4_cfg_shdr *)
13275 &mbox->u.mqe.un.eq_destroy.header.cfg_shdr;
13276 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13277 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13278 if (shdr_status || shdr_add_status || rc) {
13279 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13280 "2505 EQ_DESTROY mailbox failed with "
13281 "status x%x add_status x%x, mbx status x%x\n",
13282 shdr_status, shdr_add_status, rc);
13283 status = -ENXIO;
13284 }
13285
13286 /* Remove eq from any list */
13287 list_del_init(&eq->list);
James Smart8fa38512009-07-19 10:01:03 -040013288 mempool_free(mbox, eq->phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040013289 return status;
13290}
13291
13292/**
13293 * lpfc_cq_destroy - Destroy a Completion Queue on the HBA
13294 * @cq: The queue structure associated with the queue to destroy.
13295 *
13296 * This function destroys a queue, as detailed in @cq by sending an mailbox
13297 * command, specific to the type of queue, to the HBA.
13298 *
13299 * The @cq struct is used to get the queue ID of the queue to destroy.
13300 *
13301 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040013302 * command fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040013303 **/
13304uint32_t
13305lpfc_cq_destroy(struct lpfc_hba *phba, struct lpfc_queue *cq)
13306{
13307 LPFC_MBOXQ_t *mbox;
13308 int rc, length, status = 0;
13309 uint32_t shdr_status, shdr_add_status;
13310 union lpfc_sli4_cfg_shdr *shdr;
13311
James Smart2e90f4b2011-12-13 13:22:37 -050013312 /* sanity check on queue memory */
James Smart4f774512009-05-22 14:52:35 -040013313 if (!cq)
13314 return -ENODEV;
13315 mbox = mempool_alloc(cq->phba->mbox_mem_pool, GFP_KERNEL);
13316 if (!mbox)
13317 return -ENOMEM;
13318 length = (sizeof(struct lpfc_mbx_cq_destroy) -
13319 sizeof(struct lpfc_sli4_cfg_mhdr));
13320 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13321 LPFC_MBOX_OPCODE_CQ_DESTROY,
13322 length, LPFC_SLI4_MBX_EMBED);
13323 bf_set(lpfc_mbx_cq_destroy_q_id, &mbox->u.mqe.un.cq_destroy.u.request,
13324 cq->queue_id);
13325 mbox->vport = cq->phba->pport;
13326 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
13327 rc = lpfc_sli_issue_mbox(cq->phba, mbox, MBX_POLL);
13328 /* The IOCTL status is embedded in the mailbox subheader. */
13329 shdr = (union lpfc_sli4_cfg_shdr *)
13330 &mbox->u.mqe.un.wq_create.header.cfg_shdr;
13331 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13332 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13333 if (shdr_status || shdr_add_status || rc) {
13334 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13335 "2506 CQ_DESTROY mailbox failed with "
13336 "status x%x add_status x%x, mbx status x%x\n",
13337 shdr_status, shdr_add_status, rc);
13338 status = -ENXIO;
13339 }
13340 /* Remove cq from any list */
13341 list_del_init(&cq->list);
James Smart8fa38512009-07-19 10:01:03 -040013342 mempool_free(mbox, cq->phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040013343 return status;
13344}
13345
13346/**
James Smart04c68492009-05-22 14:52:52 -040013347 * lpfc_mq_destroy - Destroy a Mailbox Queue on the HBA
13348 * @qm: The queue structure associated with the queue to destroy.
13349 *
13350 * This function destroys a queue, as detailed in @mq by sending an mailbox
13351 * command, specific to the type of queue, to the HBA.
13352 *
13353 * The @mq struct is used to get the queue ID of the queue to destroy.
13354 *
13355 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040013356 * command fails this function will return -ENXIO.
James Smart04c68492009-05-22 14:52:52 -040013357 **/
13358uint32_t
13359lpfc_mq_destroy(struct lpfc_hba *phba, struct lpfc_queue *mq)
13360{
13361 LPFC_MBOXQ_t *mbox;
13362 int rc, length, status = 0;
13363 uint32_t shdr_status, shdr_add_status;
13364 union lpfc_sli4_cfg_shdr *shdr;
13365
James Smart2e90f4b2011-12-13 13:22:37 -050013366 /* sanity check on queue memory */
James Smart04c68492009-05-22 14:52:52 -040013367 if (!mq)
13368 return -ENODEV;
13369 mbox = mempool_alloc(mq->phba->mbox_mem_pool, GFP_KERNEL);
13370 if (!mbox)
13371 return -ENOMEM;
13372 length = (sizeof(struct lpfc_mbx_mq_destroy) -
13373 sizeof(struct lpfc_sli4_cfg_mhdr));
13374 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13375 LPFC_MBOX_OPCODE_MQ_DESTROY,
13376 length, LPFC_SLI4_MBX_EMBED);
13377 bf_set(lpfc_mbx_mq_destroy_q_id, &mbox->u.mqe.un.mq_destroy.u.request,
13378 mq->queue_id);
13379 mbox->vport = mq->phba->pport;
13380 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
13381 rc = lpfc_sli_issue_mbox(mq->phba, mbox, MBX_POLL);
13382 /* The IOCTL status is embedded in the mailbox subheader. */
13383 shdr = (union lpfc_sli4_cfg_shdr *)
13384 &mbox->u.mqe.un.mq_destroy.header.cfg_shdr;
13385 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13386 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13387 if (shdr_status || shdr_add_status || rc) {
13388 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13389 "2507 MQ_DESTROY mailbox failed with "
13390 "status x%x add_status x%x, mbx status x%x\n",
13391 shdr_status, shdr_add_status, rc);
13392 status = -ENXIO;
13393 }
13394 /* Remove mq from any list */
13395 list_del_init(&mq->list);
James Smart8fa38512009-07-19 10:01:03 -040013396 mempool_free(mbox, mq->phba->mbox_mem_pool);
James Smart04c68492009-05-22 14:52:52 -040013397 return status;
13398}
13399
13400/**
James Smart4f774512009-05-22 14:52:35 -040013401 * lpfc_wq_destroy - Destroy a Work Queue on the HBA
13402 * @wq: The queue structure associated with the queue to destroy.
13403 *
13404 * This function destroys a queue, as detailed in @wq by sending an mailbox
13405 * command, specific to the type of queue, to the HBA.
13406 *
13407 * The @wq struct is used to get the queue ID of the queue to destroy.
13408 *
13409 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040013410 * command fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040013411 **/
13412uint32_t
13413lpfc_wq_destroy(struct lpfc_hba *phba, struct lpfc_queue *wq)
13414{
13415 LPFC_MBOXQ_t *mbox;
13416 int rc, length, status = 0;
13417 uint32_t shdr_status, shdr_add_status;
13418 union lpfc_sli4_cfg_shdr *shdr;
13419
James Smart2e90f4b2011-12-13 13:22:37 -050013420 /* sanity check on queue memory */
James Smart4f774512009-05-22 14:52:35 -040013421 if (!wq)
13422 return -ENODEV;
13423 mbox = mempool_alloc(wq->phba->mbox_mem_pool, GFP_KERNEL);
13424 if (!mbox)
13425 return -ENOMEM;
13426 length = (sizeof(struct lpfc_mbx_wq_destroy) -
13427 sizeof(struct lpfc_sli4_cfg_mhdr));
13428 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13429 LPFC_MBOX_OPCODE_FCOE_WQ_DESTROY,
13430 length, LPFC_SLI4_MBX_EMBED);
13431 bf_set(lpfc_mbx_wq_destroy_q_id, &mbox->u.mqe.un.wq_destroy.u.request,
13432 wq->queue_id);
13433 mbox->vport = wq->phba->pport;
13434 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
13435 rc = lpfc_sli_issue_mbox(wq->phba, mbox, MBX_POLL);
13436 shdr = (union lpfc_sli4_cfg_shdr *)
13437 &mbox->u.mqe.un.wq_destroy.header.cfg_shdr;
13438 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13439 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13440 if (shdr_status || shdr_add_status || rc) {
13441 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13442 "2508 WQ_DESTROY mailbox failed with "
13443 "status x%x add_status x%x, mbx status x%x\n",
13444 shdr_status, shdr_add_status, rc);
13445 status = -ENXIO;
13446 }
13447 /* Remove wq from any list */
13448 list_del_init(&wq->list);
James Smart8fa38512009-07-19 10:01:03 -040013449 mempool_free(mbox, wq->phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040013450 return status;
13451}
13452
13453/**
13454 * lpfc_rq_destroy - Destroy a Receive Queue on the HBA
13455 * @rq: The queue structure associated with the queue to destroy.
13456 *
13457 * This function destroys a queue, as detailed in @rq by sending an mailbox
13458 * command, specific to the type of queue, to the HBA.
13459 *
13460 * The @rq struct is used to get the queue ID of the queue to destroy.
13461 *
13462 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040013463 * command fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040013464 **/
13465uint32_t
13466lpfc_rq_destroy(struct lpfc_hba *phba, struct lpfc_queue *hrq,
13467 struct lpfc_queue *drq)
13468{
13469 LPFC_MBOXQ_t *mbox;
13470 int rc, length, status = 0;
13471 uint32_t shdr_status, shdr_add_status;
13472 union lpfc_sli4_cfg_shdr *shdr;
13473
James Smart2e90f4b2011-12-13 13:22:37 -050013474 /* sanity check on queue memory */
James Smart4f774512009-05-22 14:52:35 -040013475 if (!hrq || !drq)
13476 return -ENODEV;
13477 mbox = mempool_alloc(hrq->phba->mbox_mem_pool, GFP_KERNEL);
13478 if (!mbox)
13479 return -ENOMEM;
13480 length = (sizeof(struct lpfc_mbx_rq_destroy) -
James Smartfedd3b72011-02-16 12:39:24 -050013481 sizeof(struct lpfc_sli4_cfg_mhdr));
James Smart4f774512009-05-22 14:52:35 -040013482 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13483 LPFC_MBOX_OPCODE_FCOE_RQ_DESTROY,
13484 length, LPFC_SLI4_MBX_EMBED);
13485 bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
13486 hrq->queue_id);
13487 mbox->vport = hrq->phba->pport;
13488 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
13489 rc = lpfc_sli_issue_mbox(hrq->phba, mbox, MBX_POLL);
13490 /* The IOCTL status is embedded in the mailbox subheader. */
13491 shdr = (union lpfc_sli4_cfg_shdr *)
13492 &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
13493 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13494 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13495 if (shdr_status || shdr_add_status || rc) {
13496 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13497 "2509 RQ_DESTROY mailbox failed with "
13498 "status x%x add_status x%x, mbx status x%x\n",
13499 shdr_status, shdr_add_status, rc);
13500 if (rc != MBX_TIMEOUT)
13501 mempool_free(mbox, hrq->phba->mbox_mem_pool);
13502 return -ENXIO;
13503 }
13504 bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
13505 drq->queue_id);
13506 rc = lpfc_sli_issue_mbox(drq->phba, mbox, MBX_POLL);
13507 shdr = (union lpfc_sli4_cfg_shdr *)
13508 &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
13509 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13510 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13511 if (shdr_status || shdr_add_status || rc) {
13512 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13513 "2510 RQ_DESTROY mailbox failed with "
13514 "status x%x add_status x%x, mbx status x%x\n",
13515 shdr_status, shdr_add_status, rc);
13516 status = -ENXIO;
13517 }
13518 list_del_init(&hrq->list);
13519 list_del_init(&drq->list);
James Smart8fa38512009-07-19 10:01:03 -040013520 mempool_free(mbox, hrq->phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040013521 return status;
13522}
13523
13524/**
13525 * lpfc_sli4_post_sgl - Post scatter gather list for an XRI to HBA
13526 * @phba: The virtual port for which this call being executed.
13527 * @pdma_phys_addr0: Physical address of the 1st SGL page.
13528 * @pdma_phys_addr1: Physical address of the 2nd SGL page.
13529 * @xritag: the xritag that ties this io to the SGL pages.
13530 *
13531 * This routine will post the sgl pages for the IO that has the xritag
13532 * that is in the iocbq structure. The xritag is assigned during iocbq
13533 * creation and persists for as long as the driver is loaded.
13534 * if the caller has fewer than 256 scatter gather segments to map then
13535 * pdma_phys_addr1 should be 0.
13536 * If the caller needs to map more than 256 scatter gather segment then
13537 * pdma_phys_addr1 should be a valid physical address.
13538 * physical address for SGLs must be 64 byte aligned.
13539 * If you are going to map 2 SGL's then the first one must have 256 entries
13540 * the second sgl can have between 1 and 256 entries.
13541 *
13542 * Return codes:
13543 * 0 - Success
13544 * -ENXIO, -ENOMEM - Failure
13545 **/
13546int
13547lpfc_sli4_post_sgl(struct lpfc_hba *phba,
13548 dma_addr_t pdma_phys_addr0,
13549 dma_addr_t pdma_phys_addr1,
13550 uint16_t xritag)
13551{
13552 struct lpfc_mbx_post_sgl_pages *post_sgl_pages;
13553 LPFC_MBOXQ_t *mbox;
13554 int rc;
13555 uint32_t shdr_status, shdr_add_status;
James Smart6d368e52011-05-24 11:44:12 -040013556 uint32_t mbox_tmo;
James Smart4f774512009-05-22 14:52:35 -040013557 union lpfc_sli4_cfg_shdr *shdr;
13558
13559 if (xritag == NO_XRI) {
13560 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13561 "0364 Invalid param:\n");
13562 return -EINVAL;
13563 }
13564
13565 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13566 if (!mbox)
13567 return -ENOMEM;
13568
13569 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13570 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES,
13571 sizeof(struct lpfc_mbx_post_sgl_pages) -
James Smartfedd3b72011-02-16 12:39:24 -050013572 sizeof(struct lpfc_sli4_cfg_mhdr), LPFC_SLI4_MBX_EMBED);
James Smart4f774512009-05-22 14:52:35 -040013573
13574 post_sgl_pages = (struct lpfc_mbx_post_sgl_pages *)
13575 &mbox->u.mqe.un.post_sgl_pages;
13576 bf_set(lpfc_post_sgl_pages_xri, post_sgl_pages, xritag);
13577 bf_set(lpfc_post_sgl_pages_xricnt, post_sgl_pages, 1);
13578
13579 post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_lo =
13580 cpu_to_le32(putPaddrLow(pdma_phys_addr0));
13581 post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_hi =
13582 cpu_to_le32(putPaddrHigh(pdma_phys_addr0));
13583
13584 post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_lo =
13585 cpu_to_le32(putPaddrLow(pdma_phys_addr1));
13586 post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_hi =
13587 cpu_to_le32(putPaddrHigh(pdma_phys_addr1));
13588 if (!phba->sli4_hba.intr_enable)
13589 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
James Smart6d368e52011-05-24 11:44:12 -040013590 else {
James Smarta183a152011-10-10 21:32:43 -040013591 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -040013592 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
13593 }
James Smart4f774512009-05-22 14:52:35 -040013594 /* The IOCTL status is embedded in the mailbox subheader. */
13595 shdr = (union lpfc_sli4_cfg_shdr *) &post_sgl_pages->header.cfg_shdr;
13596 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13597 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13598 if (rc != MBX_TIMEOUT)
13599 mempool_free(mbox, phba->mbox_mem_pool);
13600 if (shdr_status || shdr_add_status || rc) {
13601 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13602 "2511 POST_SGL mailbox failed with "
13603 "status x%x add_status x%x, mbx status x%x\n",
13604 shdr_status, shdr_add_status, rc);
13605 rc = -ENXIO;
13606 }
13607 return 0;
13608}
James Smart4f774512009-05-22 14:52:35 -040013609
13610/**
James Smart88a2cfb2011-07-22 18:36:33 -040013611 * lpfc_sli4_alloc_xri - Get an available rpi in the device's range
James Smart6d368e52011-05-24 11:44:12 -040013612 * @phba: pointer to lpfc hba data structure.
13613 *
13614 * This routine is invoked to post rpi header templates to the
James Smart88a2cfb2011-07-22 18:36:33 -040013615 * HBA consistent with the SLI-4 interface spec. This routine
13616 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
13617 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
James Smart6d368e52011-05-24 11:44:12 -040013618 *
James Smart88a2cfb2011-07-22 18:36:33 -040013619 * Returns
13620 * A nonzero rpi defined as rpi_base <= rpi < max_rpi if successful
13621 * LPFC_RPI_ALLOC_ERROR if no rpis are available.
13622 **/
James Smart6d368e52011-05-24 11:44:12 -040013623uint16_t
13624lpfc_sli4_alloc_xri(struct lpfc_hba *phba)
13625{
13626 unsigned long xri;
13627
13628 /*
13629 * Fetch the next logical xri. Because this index is logical,
13630 * the driver starts at 0 each time.
13631 */
13632 spin_lock_irq(&phba->hbalock);
13633 xri = find_next_zero_bit(phba->sli4_hba.xri_bmask,
13634 phba->sli4_hba.max_cfg_param.max_xri, 0);
13635 if (xri >= phba->sli4_hba.max_cfg_param.max_xri) {
13636 spin_unlock_irq(&phba->hbalock);
13637 return NO_XRI;
13638 } else {
13639 set_bit(xri, phba->sli4_hba.xri_bmask);
13640 phba->sli4_hba.max_cfg_param.xri_used++;
James Smart6d368e52011-05-24 11:44:12 -040013641 }
James Smart6d368e52011-05-24 11:44:12 -040013642 spin_unlock_irq(&phba->hbalock);
13643 return xri;
13644}
13645
13646/**
13647 * lpfc_sli4_free_xri - Release an xri for reuse.
13648 * @phba: pointer to lpfc hba data structure.
13649 *
13650 * This routine is invoked to release an xri to the pool of
13651 * available rpis maintained by the driver.
13652 **/
13653void
13654__lpfc_sli4_free_xri(struct lpfc_hba *phba, int xri)
13655{
13656 if (test_and_clear_bit(xri, phba->sli4_hba.xri_bmask)) {
James Smart6d368e52011-05-24 11:44:12 -040013657 phba->sli4_hba.max_cfg_param.xri_used--;
13658 }
13659}
13660
13661/**
13662 * lpfc_sli4_free_xri - Release an xri for reuse.
13663 * @phba: pointer to lpfc hba data structure.
13664 *
13665 * This routine is invoked to release an xri to the pool of
13666 * available rpis maintained by the driver.
13667 **/
13668void
13669lpfc_sli4_free_xri(struct lpfc_hba *phba, int xri)
13670{
13671 spin_lock_irq(&phba->hbalock);
13672 __lpfc_sli4_free_xri(phba, xri);
13673 spin_unlock_irq(&phba->hbalock);
13674}
13675
13676/**
James Smart4f774512009-05-22 14:52:35 -040013677 * lpfc_sli4_next_xritag - Get an xritag for the io
13678 * @phba: Pointer to HBA context object.
13679 *
13680 * This function gets an xritag for the iocb. If there is no unused xritag
13681 * it will return 0xffff.
13682 * The function returns the allocated xritag if successful, else returns zero.
13683 * Zero is not a valid xritag.
13684 * The caller is not required to hold any lock.
13685 **/
13686uint16_t
13687lpfc_sli4_next_xritag(struct lpfc_hba *phba)
13688{
James Smart6d368e52011-05-24 11:44:12 -040013689 uint16_t xri_index;
James Smart4f774512009-05-22 14:52:35 -040013690
James Smart6d368e52011-05-24 11:44:12 -040013691 xri_index = lpfc_sli4_alloc_xri(phba);
James Smart81378052012-05-09 21:17:37 -040013692 if (xri_index == NO_XRI)
13693 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
13694 "2004 Failed to allocate XRI.last XRITAG is %d"
13695 " Max XRI is %d, Used XRI is %d\n",
13696 xri_index,
13697 phba->sli4_hba.max_cfg_param.max_xri,
13698 phba->sli4_hba.max_cfg_param.xri_used);
13699 return xri_index;
James Smart4f774512009-05-22 14:52:35 -040013700}
13701
13702/**
James Smart6d368e52011-05-24 11:44:12 -040013703 * lpfc_sli4_post_els_sgl_list - post a block of ELS sgls to the port.
James Smart4f774512009-05-22 14:52:35 -040013704 * @phba: pointer to lpfc hba data structure.
James Smart8a9d2e82012-05-09 21:16:12 -040013705 * @post_sgl_list: pointer to els sgl entry list.
13706 * @count: number of els sgl entries on the list.
James Smart4f774512009-05-22 14:52:35 -040013707 *
13708 * This routine is invoked to post a block of driver's sgl pages to the
13709 * HBA using non-embedded mailbox command. No Lock is held. This routine
13710 * is only called when the driver is loading and after all IO has been
13711 * stopped.
13712 **/
James Smart8a9d2e82012-05-09 21:16:12 -040013713static int
13714lpfc_sli4_post_els_sgl_list(struct lpfc_hba *phba,
13715 struct list_head *post_sgl_list,
13716 int post_cnt)
James Smart4f774512009-05-22 14:52:35 -040013717{
James Smart8a9d2e82012-05-09 21:16:12 -040013718 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
James Smart4f774512009-05-22 14:52:35 -040013719 struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
13720 struct sgl_page_pairs *sgl_pg_pairs;
13721 void *viraddr;
13722 LPFC_MBOXQ_t *mbox;
13723 uint32_t reqlen, alloclen, pg_pairs;
13724 uint32_t mbox_tmo;
James Smart8a9d2e82012-05-09 21:16:12 -040013725 uint16_t xritag_start = 0;
13726 int rc = 0;
James Smart4f774512009-05-22 14:52:35 -040013727 uint32_t shdr_status, shdr_add_status;
13728 union lpfc_sli4_cfg_shdr *shdr;
13729
James Smart8a9d2e82012-05-09 21:16:12 -040013730 reqlen = phba->sli4_hba.els_xri_cnt * sizeof(struct sgl_page_pairs) +
James Smart4f774512009-05-22 14:52:35 -040013731 sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
James Smart49198b32010-04-06 15:04:33 -040013732 if (reqlen > SLI4_PAGE_SIZE) {
James Smart4f774512009-05-22 14:52:35 -040013733 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
13734 "2559 Block sgl registration required DMA "
13735 "size (%d) great than a page\n", reqlen);
13736 return -ENOMEM;
13737 }
13738 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart6d368e52011-05-24 11:44:12 -040013739 if (!mbox)
James Smart4f774512009-05-22 14:52:35 -040013740 return -ENOMEM;
James Smart4f774512009-05-22 14:52:35 -040013741
13742 /* Allocate DMA memory and set up the non-embedded mailbox command */
13743 alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13744 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
13745 LPFC_SLI4_MBX_NEMBED);
13746
13747 if (alloclen < reqlen) {
13748 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13749 "0285 Allocated DMA memory size (%d) is "
13750 "less than the requested DMA memory "
13751 "size (%d)\n", alloclen, reqlen);
13752 lpfc_sli4_mbox_cmd_free(phba, mbox);
13753 return -ENOMEM;
13754 }
James Smart4f774512009-05-22 14:52:35 -040013755 /* Set up the SGL pages in the non-embedded DMA pages */
James Smart6d368e52011-05-24 11:44:12 -040013756 viraddr = mbox->sge_array->addr[0];
James Smart4f774512009-05-22 14:52:35 -040013757 sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
13758 sgl_pg_pairs = &sgl->sgl_pg_pairs;
13759
James Smart8a9d2e82012-05-09 21:16:12 -040013760 pg_pairs = 0;
13761 list_for_each_entry_safe(sglq_entry, sglq_next, post_sgl_list, list) {
James Smart4f774512009-05-22 14:52:35 -040013762 /* Set up the sge entry */
13763 sgl_pg_pairs->sgl_pg0_addr_lo =
13764 cpu_to_le32(putPaddrLow(sglq_entry->phys));
13765 sgl_pg_pairs->sgl_pg0_addr_hi =
13766 cpu_to_le32(putPaddrHigh(sglq_entry->phys));
13767 sgl_pg_pairs->sgl_pg1_addr_lo =
13768 cpu_to_le32(putPaddrLow(0));
13769 sgl_pg_pairs->sgl_pg1_addr_hi =
13770 cpu_to_le32(putPaddrHigh(0));
James Smart6d368e52011-05-24 11:44:12 -040013771
James Smart4f774512009-05-22 14:52:35 -040013772 /* Keep the first xritag on the list */
13773 if (pg_pairs == 0)
13774 xritag_start = sglq_entry->sli4_xritag;
13775 sgl_pg_pairs++;
James Smart8a9d2e82012-05-09 21:16:12 -040013776 pg_pairs++;
James Smart4f774512009-05-22 14:52:35 -040013777 }
James Smart6d368e52011-05-24 11:44:12 -040013778
13779 /* Complete initialization and perform endian conversion. */
James Smart4f774512009-05-22 14:52:35 -040013780 bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
James Smart8a9d2e82012-05-09 21:16:12 -040013781 bf_set(lpfc_post_sgl_pages_xricnt, sgl, phba->sli4_hba.els_xri_cnt);
James Smart4f774512009-05-22 14:52:35 -040013782 sgl->word0 = cpu_to_le32(sgl->word0);
James Smart4f774512009-05-22 14:52:35 -040013783 if (!phba->sli4_hba.intr_enable)
13784 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13785 else {
James Smarta183a152011-10-10 21:32:43 -040013786 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart4f774512009-05-22 14:52:35 -040013787 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
13788 }
13789 shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
13790 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13791 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13792 if (rc != MBX_TIMEOUT)
13793 lpfc_sli4_mbox_cmd_free(phba, mbox);
13794 if (shdr_status || shdr_add_status || rc) {
13795 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13796 "2513 POST_SGL_BLOCK mailbox command failed "
13797 "status x%x add_status x%x mbx status x%x\n",
13798 shdr_status, shdr_add_status, rc);
13799 rc = -ENXIO;
13800 }
13801 return rc;
13802}
13803
13804/**
13805 * lpfc_sli4_post_scsi_sgl_block - post a block of scsi sgl list to firmware
13806 * @phba: pointer to lpfc hba data structure.
13807 * @sblist: pointer to scsi buffer list.
13808 * @count: number of scsi buffers on the list.
13809 *
13810 * This routine is invoked to post a block of @count scsi sgl pages from a
13811 * SCSI buffer list @sblist to the HBA using non-embedded mailbox command.
13812 * No Lock is held.
13813 *
13814 **/
13815int
James Smart8a9d2e82012-05-09 21:16:12 -040013816lpfc_sli4_post_scsi_sgl_block(struct lpfc_hba *phba,
13817 struct list_head *sblist,
13818 int count)
James Smart4f774512009-05-22 14:52:35 -040013819{
13820 struct lpfc_scsi_buf *psb;
13821 struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
13822 struct sgl_page_pairs *sgl_pg_pairs;
13823 void *viraddr;
13824 LPFC_MBOXQ_t *mbox;
13825 uint32_t reqlen, alloclen, pg_pairs;
13826 uint32_t mbox_tmo;
13827 uint16_t xritag_start = 0;
13828 int rc = 0;
13829 uint32_t shdr_status, shdr_add_status;
13830 dma_addr_t pdma_phys_bpl1;
13831 union lpfc_sli4_cfg_shdr *shdr;
13832
13833 /* Calculate the requested length of the dma memory */
James Smart8a9d2e82012-05-09 21:16:12 -040013834 reqlen = count * sizeof(struct sgl_page_pairs) +
James Smart4f774512009-05-22 14:52:35 -040013835 sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
James Smart49198b32010-04-06 15:04:33 -040013836 if (reqlen > SLI4_PAGE_SIZE) {
James Smart4f774512009-05-22 14:52:35 -040013837 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
13838 "0217 Block sgl registration required DMA "
13839 "size (%d) great than a page\n", reqlen);
13840 return -ENOMEM;
13841 }
13842 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13843 if (!mbox) {
13844 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13845 "0283 Failed to allocate mbox cmd memory\n");
13846 return -ENOMEM;
13847 }
13848
13849 /* Allocate DMA memory and set up the non-embedded mailbox command */
13850 alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13851 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
13852 LPFC_SLI4_MBX_NEMBED);
13853
13854 if (alloclen < reqlen) {
13855 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13856 "2561 Allocated DMA memory size (%d) is "
13857 "less than the requested DMA memory "
13858 "size (%d)\n", alloclen, reqlen);
13859 lpfc_sli4_mbox_cmd_free(phba, mbox);
13860 return -ENOMEM;
13861 }
James Smart6d368e52011-05-24 11:44:12 -040013862
James Smart4f774512009-05-22 14:52:35 -040013863 /* Get the first SGE entry from the non-embedded DMA memory */
James Smart4f774512009-05-22 14:52:35 -040013864 viraddr = mbox->sge_array->addr[0];
13865
13866 /* Set up the SGL pages in the non-embedded DMA pages */
13867 sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
13868 sgl_pg_pairs = &sgl->sgl_pg_pairs;
13869
13870 pg_pairs = 0;
13871 list_for_each_entry(psb, sblist, list) {
13872 /* Set up the sge entry */
13873 sgl_pg_pairs->sgl_pg0_addr_lo =
13874 cpu_to_le32(putPaddrLow(psb->dma_phys_bpl));
13875 sgl_pg_pairs->sgl_pg0_addr_hi =
13876 cpu_to_le32(putPaddrHigh(psb->dma_phys_bpl));
13877 if (phba->cfg_sg_dma_buf_size > SGL_PAGE_SIZE)
13878 pdma_phys_bpl1 = psb->dma_phys_bpl + SGL_PAGE_SIZE;
13879 else
13880 pdma_phys_bpl1 = 0;
13881 sgl_pg_pairs->sgl_pg1_addr_lo =
13882 cpu_to_le32(putPaddrLow(pdma_phys_bpl1));
13883 sgl_pg_pairs->sgl_pg1_addr_hi =
13884 cpu_to_le32(putPaddrHigh(pdma_phys_bpl1));
13885 /* Keep the first xritag on the list */
13886 if (pg_pairs == 0)
13887 xritag_start = psb->cur_iocbq.sli4_xritag;
13888 sgl_pg_pairs++;
13889 pg_pairs++;
13890 }
13891 bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
13892 bf_set(lpfc_post_sgl_pages_xricnt, sgl, pg_pairs);
13893 /* Perform endian conversion if necessary */
13894 sgl->word0 = cpu_to_le32(sgl->word0);
13895
13896 if (!phba->sli4_hba.intr_enable)
13897 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13898 else {
James Smarta183a152011-10-10 21:32:43 -040013899 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart4f774512009-05-22 14:52:35 -040013900 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
13901 }
13902 shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
13903 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13904 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13905 if (rc != MBX_TIMEOUT)
13906 lpfc_sli4_mbox_cmd_free(phba, mbox);
13907 if (shdr_status || shdr_add_status || rc) {
13908 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13909 "2564 POST_SGL_BLOCK mailbox command failed "
13910 "status x%x add_status x%x mbx status x%x\n",
13911 shdr_status, shdr_add_status, rc);
13912 rc = -ENXIO;
13913 }
13914 return rc;
13915}
13916
13917/**
13918 * lpfc_fc_frame_check - Check that this frame is a valid frame to handle
13919 * @phba: pointer to lpfc_hba struct that the frame was received on
13920 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
13921 *
13922 * This function checks the fields in the @fc_hdr to see if the FC frame is a
13923 * valid type of frame that the LPFC driver will handle. This function will
13924 * return a zero if the frame is a valid frame or a non zero value when the
13925 * frame does not pass the check.
13926 **/
13927static int
13928lpfc_fc_frame_check(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr)
13929{
Tomas Henzl474ffb72010-12-22 16:52:40 +010013930 /* make rctl_names static to save stack space */
13931 static char *rctl_names[] = FC_RCTL_NAMES_INIT;
James Smart4f774512009-05-22 14:52:35 -040013932 char *type_names[] = FC_TYPE_NAMES_INIT;
13933 struct fc_vft_header *fc_vft_hdr;
James Smart546fc852011-03-11 16:06:29 -050013934 uint32_t *header = (uint32_t *) fc_hdr;
James Smart4f774512009-05-22 14:52:35 -040013935
13936 switch (fc_hdr->fh_r_ctl) {
13937 case FC_RCTL_DD_UNCAT: /* uncategorized information */
13938 case FC_RCTL_DD_SOL_DATA: /* solicited data */
13939 case FC_RCTL_DD_UNSOL_CTL: /* unsolicited control */
13940 case FC_RCTL_DD_SOL_CTL: /* solicited control or reply */
13941 case FC_RCTL_DD_UNSOL_DATA: /* unsolicited data */
13942 case FC_RCTL_DD_DATA_DESC: /* data descriptor */
13943 case FC_RCTL_DD_UNSOL_CMD: /* unsolicited command */
13944 case FC_RCTL_DD_CMD_STATUS: /* command status */
13945 case FC_RCTL_ELS_REQ: /* extended link services request */
13946 case FC_RCTL_ELS_REP: /* extended link services reply */
13947 case FC_RCTL_ELS4_REQ: /* FC-4 ELS request */
13948 case FC_RCTL_ELS4_REP: /* FC-4 ELS reply */
13949 case FC_RCTL_BA_NOP: /* basic link service NOP */
13950 case FC_RCTL_BA_ABTS: /* basic link service abort */
13951 case FC_RCTL_BA_RMC: /* remove connection */
13952 case FC_RCTL_BA_ACC: /* basic accept */
13953 case FC_RCTL_BA_RJT: /* basic reject */
13954 case FC_RCTL_BA_PRMT:
13955 case FC_RCTL_ACK_1: /* acknowledge_1 */
13956 case FC_RCTL_ACK_0: /* acknowledge_0 */
13957 case FC_RCTL_P_RJT: /* port reject */
13958 case FC_RCTL_F_RJT: /* fabric reject */
13959 case FC_RCTL_P_BSY: /* port busy */
13960 case FC_RCTL_F_BSY: /* fabric busy to data frame */
13961 case FC_RCTL_F_BSYL: /* fabric busy to link control frame */
13962 case FC_RCTL_LCR: /* link credit reset */
13963 case FC_RCTL_END: /* end */
13964 break;
13965 case FC_RCTL_VFTH: /* Virtual Fabric tagging Header */
13966 fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
13967 fc_hdr = &((struct fc_frame_header *)fc_vft_hdr)[1];
13968 return lpfc_fc_frame_check(phba, fc_hdr);
13969 default:
13970 goto drop;
13971 }
13972 switch (fc_hdr->fh_type) {
13973 case FC_TYPE_BLS:
13974 case FC_TYPE_ELS:
13975 case FC_TYPE_FCP:
13976 case FC_TYPE_CT:
13977 break;
13978 case FC_TYPE_IP:
13979 case FC_TYPE_ILS:
13980 default:
13981 goto drop;
13982 }
James Smart546fc852011-03-11 16:06:29 -050013983
James Smart4f774512009-05-22 14:52:35 -040013984 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
James Smart546fc852011-03-11 16:06:29 -050013985 "2538 Received frame rctl:%s type:%s "
13986 "Frame Data:%08x %08x %08x %08x %08x %08x\n",
James Smart4f774512009-05-22 14:52:35 -040013987 rctl_names[fc_hdr->fh_r_ctl],
James Smart546fc852011-03-11 16:06:29 -050013988 type_names[fc_hdr->fh_type],
13989 be32_to_cpu(header[0]), be32_to_cpu(header[1]),
13990 be32_to_cpu(header[2]), be32_to_cpu(header[3]),
13991 be32_to_cpu(header[4]), be32_to_cpu(header[5]));
James Smart4f774512009-05-22 14:52:35 -040013992 return 0;
13993drop:
13994 lpfc_printf_log(phba, KERN_WARNING, LOG_ELS,
13995 "2539 Dropped frame rctl:%s type:%s\n",
13996 rctl_names[fc_hdr->fh_r_ctl],
13997 type_names[fc_hdr->fh_type]);
13998 return 1;
13999}
14000
14001/**
14002 * lpfc_fc_hdr_get_vfi - Get the VFI from an FC frame
14003 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
14004 *
14005 * This function processes the FC header to retrieve the VFI from the VF
14006 * header, if one exists. This function will return the VFI if one exists
14007 * or 0 if no VSAN Header exists.
14008 **/
14009static uint32_t
14010lpfc_fc_hdr_get_vfi(struct fc_frame_header *fc_hdr)
14011{
14012 struct fc_vft_header *fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
14013
14014 if (fc_hdr->fh_r_ctl != FC_RCTL_VFTH)
14015 return 0;
14016 return bf_get(fc_vft_hdr_vf_id, fc_vft_hdr);
14017}
14018
14019/**
14020 * lpfc_fc_frame_to_vport - Finds the vport that a frame is destined to
14021 * @phba: Pointer to the HBA structure to search for the vport on
14022 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
14023 * @fcfi: The FC Fabric ID that the frame came from
14024 *
14025 * This function searches the @phba for a vport that matches the content of the
14026 * @fc_hdr passed in and the @fcfi. This function uses the @fc_hdr to fetch the
14027 * VFI, if the Virtual Fabric Tagging Header exists, and the DID. This function
14028 * returns the matching vport pointer or NULL if unable to match frame to a
14029 * vport.
14030 **/
14031static struct lpfc_vport *
14032lpfc_fc_frame_to_vport(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr,
14033 uint16_t fcfi)
14034{
14035 struct lpfc_vport **vports;
14036 struct lpfc_vport *vport = NULL;
14037 int i;
14038 uint32_t did = (fc_hdr->fh_d_id[0] << 16 |
14039 fc_hdr->fh_d_id[1] << 8 |
14040 fc_hdr->fh_d_id[2]);
James Smart939723a2012-05-09 21:19:03 -040014041
James Smartbf086112011-08-21 21:48:13 -040014042 if (did == Fabric_DID)
14043 return phba->pport;
James Smart939723a2012-05-09 21:19:03 -040014044 if ((phba->pport->fc_flag & FC_PT2PT) &&
14045 !(phba->link_state == LPFC_HBA_READY))
14046 return phba->pport;
14047
James Smart4f774512009-05-22 14:52:35 -040014048 vports = lpfc_create_vport_work_array(phba);
14049 if (vports != NULL)
14050 for (i = 0; i <= phba->max_vpi && vports[i] != NULL; i++) {
14051 if (phba->fcf.fcfi == fcfi &&
14052 vports[i]->vfi == lpfc_fc_hdr_get_vfi(fc_hdr) &&
14053 vports[i]->fc_myDID == did) {
14054 vport = vports[i];
14055 break;
14056 }
14057 }
14058 lpfc_destroy_vport_work_array(phba, vports);
14059 return vport;
14060}
14061
14062/**
James Smart45ed1192009-10-02 15:17:02 -040014063 * lpfc_update_rcv_time_stamp - Update vport's rcv seq time stamp
14064 * @vport: The vport to work on.
14065 *
14066 * This function updates the receive sequence time stamp for this vport. The
14067 * receive sequence time stamp indicates the time that the last frame of the
14068 * the sequence that has been idle for the longest amount of time was received.
14069 * the driver uses this time stamp to indicate if any received sequences have
14070 * timed out.
14071 **/
14072void
14073lpfc_update_rcv_time_stamp(struct lpfc_vport *vport)
14074{
14075 struct lpfc_dmabuf *h_buf;
14076 struct hbq_dmabuf *dmabuf = NULL;
14077
14078 /* get the oldest sequence on the rcv list */
14079 h_buf = list_get_first(&vport->rcv_buffer_list,
14080 struct lpfc_dmabuf, list);
14081 if (!h_buf)
14082 return;
14083 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14084 vport->rcv_buffer_time_stamp = dmabuf->time_stamp;
14085}
14086
14087/**
14088 * lpfc_cleanup_rcv_buffers - Cleans up all outstanding receive sequences.
14089 * @vport: The vport that the received sequences were sent to.
14090 *
14091 * This function cleans up all outstanding received sequences. This is called
14092 * by the driver when a link event or user action invalidates all the received
14093 * sequences.
14094 **/
14095void
14096lpfc_cleanup_rcv_buffers(struct lpfc_vport *vport)
14097{
14098 struct lpfc_dmabuf *h_buf, *hnext;
14099 struct lpfc_dmabuf *d_buf, *dnext;
14100 struct hbq_dmabuf *dmabuf = NULL;
14101
14102 /* start with the oldest sequence on the rcv list */
14103 list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
14104 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14105 list_del_init(&dmabuf->hbuf.list);
14106 list_for_each_entry_safe(d_buf, dnext,
14107 &dmabuf->dbuf.list, list) {
14108 list_del_init(&d_buf->list);
14109 lpfc_in_buf_free(vport->phba, d_buf);
14110 }
14111 lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
14112 }
14113}
14114
14115/**
14116 * lpfc_rcv_seq_check_edtov - Cleans up timed out receive sequences.
14117 * @vport: The vport that the received sequences were sent to.
14118 *
14119 * This function determines whether any received sequences have timed out by
14120 * first checking the vport's rcv_buffer_time_stamp. If this time_stamp
14121 * indicates that there is at least one timed out sequence this routine will
14122 * go through the received sequences one at a time from most inactive to most
14123 * active to determine which ones need to be cleaned up. Once it has determined
14124 * that a sequence needs to be cleaned up it will simply free up the resources
14125 * without sending an abort.
14126 **/
14127void
14128lpfc_rcv_seq_check_edtov(struct lpfc_vport *vport)
14129{
14130 struct lpfc_dmabuf *h_buf, *hnext;
14131 struct lpfc_dmabuf *d_buf, *dnext;
14132 struct hbq_dmabuf *dmabuf = NULL;
14133 unsigned long timeout;
14134 int abort_count = 0;
14135
14136 timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
14137 vport->rcv_buffer_time_stamp);
14138 if (list_empty(&vport->rcv_buffer_list) ||
14139 time_before(jiffies, timeout))
14140 return;
14141 /* start with the oldest sequence on the rcv list */
14142 list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
14143 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14144 timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
14145 dmabuf->time_stamp);
14146 if (time_before(jiffies, timeout))
14147 break;
14148 abort_count++;
14149 list_del_init(&dmabuf->hbuf.list);
14150 list_for_each_entry_safe(d_buf, dnext,
14151 &dmabuf->dbuf.list, list) {
14152 list_del_init(&d_buf->list);
14153 lpfc_in_buf_free(vport->phba, d_buf);
14154 }
14155 lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
14156 }
14157 if (abort_count)
14158 lpfc_update_rcv_time_stamp(vport);
14159}
14160
14161/**
James Smart4f774512009-05-22 14:52:35 -040014162 * lpfc_fc_frame_add - Adds a frame to the vport's list of received sequences
14163 * @dmabuf: pointer to a dmabuf that describes the hdr and data of the FC frame
14164 *
14165 * This function searches through the existing incomplete sequences that have
14166 * been sent to this @vport. If the frame matches one of the incomplete
14167 * sequences then the dbuf in the @dmabuf is added to the list of frames that
14168 * make up that sequence. If no sequence is found that matches this frame then
14169 * the function will add the hbuf in the @dmabuf to the @vport's rcv_buffer_list
14170 * This function returns a pointer to the first dmabuf in the sequence list that
14171 * the frame was linked to.
14172 **/
14173static struct hbq_dmabuf *
14174lpfc_fc_frame_add(struct lpfc_vport *vport, struct hbq_dmabuf *dmabuf)
14175{
14176 struct fc_frame_header *new_hdr;
14177 struct fc_frame_header *temp_hdr;
14178 struct lpfc_dmabuf *d_buf;
14179 struct lpfc_dmabuf *h_buf;
14180 struct hbq_dmabuf *seq_dmabuf = NULL;
14181 struct hbq_dmabuf *temp_dmabuf = NULL;
14182
James Smart4d9ab992009-10-02 15:16:39 -040014183 INIT_LIST_HEAD(&dmabuf->dbuf.list);
James Smart45ed1192009-10-02 15:17:02 -040014184 dmabuf->time_stamp = jiffies;
James Smart4f774512009-05-22 14:52:35 -040014185 new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
14186 /* Use the hdr_buf to find the sequence that this frame belongs to */
14187 list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
14188 temp_hdr = (struct fc_frame_header *)h_buf->virt;
14189 if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
14190 (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
14191 (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
14192 continue;
14193 /* found a pending sequence that matches this frame */
14194 seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14195 break;
14196 }
14197 if (!seq_dmabuf) {
14198 /*
14199 * This indicates first frame received for this sequence.
14200 * Queue the buffer on the vport's rcv_buffer_list.
14201 */
14202 list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
James Smart45ed1192009-10-02 15:17:02 -040014203 lpfc_update_rcv_time_stamp(vport);
James Smart4f774512009-05-22 14:52:35 -040014204 return dmabuf;
14205 }
14206 temp_hdr = seq_dmabuf->hbuf.virt;
James Smarteeead812009-12-21 17:01:23 -050014207 if (be16_to_cpu(new_hdr->fh_seq_cnt) <
14208 be16_to_cpu(temp_hdr->fh_seq_cnt)) {
James Smart4d9ab992009-10-02 15:16:39 -040014209 list_del_init(&seq_dmabuf->hbuf.list);
14210 list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
14211 list_add_tail(&dmabuf->dbuf.list, &seq_dmabuf->dbuf.list);
James Smart45ed1192009-10-02 15:17:02 -040014212 lpfc_update_rcv_time_stamp(vport);
James Smart4f774512009-05-22 14:52:35 -040014213 return dmabuf;
14214 }
James Smart45ed1192009-10-02 15:17:02 -040014215 /* move this sequence to the tail to indicate a young sequence */
14216 list_move_tail(&seq_dmabuf->hbuf.list, &vport->rcv_buffer_list);
14217 seq_dmabuf->time_stamp = jiffies;
14218 lpfc_update_rcv_time_stamp(vport);
James Smarteeead812009-12-21 17:01:23 -050014219 if (list_empty(&seq_dmabuf->dbuf.list)) {
14220 temp_hdr = dmabuf->hbuf.virt;
14221 list_add_tail(&dmabuf->dbuf.list, &seq_dmabuf->dbuf.list);
14222 return seq_dmabuf;
14223 }
James Smart4f774512009-05-22 14:52:35 -040014224 /* find the correct place in the sequence to insert this frame */
14225 list_for_each_entry_reverse(d_buf, &seq_dmabuf->dbuf.list, list) {
14226 temp_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
14227 temp_hdr = (struct fc_frame_header *)temp_dmabuf->hbuf.virt;
14228 /*
14229 * If the frame's sequence count is greater than the frame on
14230 * the list then insert the frame right after this frame
14231 */
James Smarteeead812009-12-21 17:01:23 -050014232 if (be16_to_cpu(new_hdr->fh_seq_cnt) >
14233 be16_to_cpu(temp_hdr->fh_seq_cnt)) {
James Smart4f774512009-05-22 14:52:35 -040014234 list_add(&dmabuf->dbuf.list, &temp_dmabuf->dbuf.list);
14235 return seq_dmabuf;
14236 }
14237 }
14238 return NULL;
14239}
14240
14241/**
James Smart6669f9b2009-10-02 15:16:45 -040014242 * lpfc_sli4_abort_partial_seq - Abort partially assembled unsol sequence
14243 * @vport: pointer to a vitural port
14244 * @dmabuf: pointer to a dmabuf that describes the FC sequence
14245 *
14246 * This function tries to abort from the partially assembed sequence, described
14247 * by the information from basic abbort @dmabuf. It checks to see whether such
14248 * partially assembled sequence held by the driver. If so, it shall free up all
14249 * the frames from the partially assembled sequence.
14250 *
14251 * Return
14252 * true -- if there is matching partially assembled sequence present and all
14253 * the frames freed with the sequence;
14254 * false -- if there is no matching partially assembled sequence present so
14255 * nothing got aborted in the lower layer driver
14256 **/
14257static bool
14258lpfc_sli4_abort_partial_seq(struct lpfc_vport *vport,
14259 struct hbq_dmabuf *dmabuf)
14260{
14261 struct fc_frame_header *new_hdr;
14262 struct fc_frame_header *temp_hdr;
14263 struct lpfc_dmabuf *d_buf, *n_buf, *h_buf;
14264 struct hbq_dmabuf *seq_dmabuf = NULL;
14265
14266 /* Use the hdr_buf to find the sequence that matches this frame */
14267 INIT_LIST_HEAD(&dmabuf->dbuf.list);
14268 INIT_LIST_HEAD(&dmabuf->hbuf.list);
14269 new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
14270 list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
14271 temp_hdr = (struct fc_frame_header *)h_buf->virt;
14272 if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
14273 (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
14274 (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
14275 continue;
14276 /* found a pending sequence that matches this frame */
14277 seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14278 break;
14279 }
14280
14281 /* Free up all the frames from the partially assembled sequence */
14282 if (seq_dmabuf) {
14283 list_for_each_entry_safe(d_buf, n_buf,
14284 &seq_dmabuf->dbuf.list, list) {
14285 list_del_init(&d_buf->list);
14286 lpfc_in_buf_free(vport->phba, d_buf);
14287 }
14288 return true;
14289 }
14290 return false;
14291}
14292
14293/**
James Smart6dd9e312013-01-03 15:43:37 -050014294 * lpfc_sli4_abort_ulp_seq - Abort assembled unsol sequence from ulp
14295 * @vport: pointer to a vitural port
14296 * @dmabuf: pointer to a dmabuf that describes the FC sequence
14297 *
14298 * This function tries to abort from the assembed sequence from upper level
14299 * protocol, described by the information from basic abbort @dmabuf. It
14300 * checks to see whether such pending context exists at upper level protocol.
14301 * If so, it shall clean up the pending context.
14302 *
14303 * Return
14304 * true -- if there is matching pending context of the sequence cleaned
14305 * at ulp;
14306 * false -- if there is no matching pending context of the sequence present
14307 * at ulp.
14308 **/
14309static bool
14310lpfc_sli4_abort_ulp_seq(struct lpfc_vport *vport, struct hbq_dmabuf *dmabuf)
14311{
14312 struct lpfc_hba *phba = vport->phba;
14313 int handled;
14314
14315 /* Accepting abort at ulp with SLI4 only */
14316 if (phba->sli_rev < LPFC_SLI_REV4)
14317 return false;
14318
14319 /* Register all caring upper level protocols to attend abort */
14320 handled = lpfc_ct_handle_unsol_abort(phba, dmabuf);
14321 if (handled)
14322 return true;
14323
14324 return false;
14325}
14326
14327/**
James Smart546fc852011-03-11 16:06:29 -050014328 * lpfc_sli4_seq_abort_rsp_cmpl - BLS ABORT RSP seq abort iocb complete handler
James Smart6669f9b2009-10-02 15:16:45 -040014329 * @phba: Pointer to HBA context object.
14330 * @cmd_iocbq: pointer to the command iocbq structure.
14331 * @rsp_iocbq: pointer to the response iocbq structure.
14332 *
James Smart546fc852011-03-11 16:06:29 -050014333 * This function handles the sequence abort response iocb command complete
James Smart6669f9b2009-10-02 15:16:45 -040014334 * event. It properly releases the memory allocated to the sequence abort
14335 * accept iocb.
14336 **/
14337static void
James Smart546fc852011-03-11 16:06:29 -050014338lpfc_sli4_seq_abort_rsp_cmpl(struct lpfc_hba *phba,
James Smart6669f9b2009-10-02 15:16:45 -040014339 struct lpfc_iocbq *cmd_iocbq,
14340 struct lpfc_iocbq *rsp_iocbq)
14341{
James Smart6dd9e312013-01-03 15:43:37 -050014342 struct lpfc_nodelist *ndlp;
14343
14344 if (cmd_iocbq) {
14345 ndlp = (struct lpfc_nodelist *)cmd_iocbq->context1;
14346 lpfc_nlp_put(ndlp);
14347 lpfc_nlp_not_used(ndlp);
James Smart6669f9b2009-10-02 15:16:45 -040014348 lpfc_sli_release_iocbq(phba, cmd_iocbq);
James Smart6dd9e312013-01-03 15:43:37 -050014349 }
James Smart6b5151f2012-01-18 16:24:06 -050014350
14351 /* Failure means BLS ABORT RSP did not get delivered to remote node*/
14352 if (rsp_iocbq && rsp_iocbq->iocb.ulpStatus)
14353 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14354 "3154 BLS ABORT RSP failed, data: x%x/x%x\n",
14355 rsp_iocbq->iocb.ulpStatus,
14356 rsp_iocbq->iocb.un.ulpWord[4]);
James Smart6669f9b2009-10-02 15:16:45 -040014357}
14358
14359/**
James Smart6d368e52011-05-24 11:44:12 -040014360 * lpfc_sli4_xri_inrange - check xri is in range of xris owned by driver.
14361 * @phba: Pointer to HBA context object.
14362 * @xri: xri id in transaction.
14363 *
14364 * This function validates the xri maps to the known range of XRIs allocated an
14365 * used by the driver.
14366 **/
James Smart7851fe22011-07-22 18:36:52 -040014367uint16_t
James Smart6d368e52011-05-24 11:44:12 -040014368lpfc_sli4_xri_inrange(struct lpfc_hba *phba,
14369 uint16_t xri)
14370{
14371 int i;
14372
14373 for (i = 0; i < phba->sli4_hba.max_cfg_param.max_xri; i++) {
14374 if (xri == phba->sli4_hba.xri_ids[i])
14375 return i;
14376 }
14377 return NO_XRI;
14378}
14379
James Smart6d368e52011-05-24 11:44:12 -040014380/**
James Smart546fc852011-03-11 16:06:29 -050014381 * lpfc_sli4_seq_abort_rsp - bls rsp to sequence abort
James Smart6669f9b2009-10-02 15:16:45 -040014382 * @phba: Pointer to HBA context object.
14383 * @fc_hdr: pointer to a FC frame header.
14384 *
James Smart546fc852011-03-11 16:06:29 -050014385 * This function sends a basic response to a previous unsol sequence abort
James Smart6669f9b2009-10-02 15:16:45 -040014386 * event after aborting the sequence handling.
14387 **/
14388static void
James Smart6dd9e312013-01-03 15:43:37 -050014389lpfc_sli4_seq_abort_rsp(struct lpfc_vport *vport,
14390 struct fc_frame_header *fc_hdr, bool aborted)
James Smart6669f9b2009-10-02 15:16:45 -040014391{
James Smart6dd9e312013-01-03 15:43:37 -050014392 struct lpfc_hba *phba = vport->phba;
James Smart6669f9b2009-10-02 15:16:45 -040014393 struct lpfc_iocbq *ctiocb = NULL;
14394 struct lpfc_nodelist *ndlp;
James Smartee0f4fe2012-05-09 21:19:14 -040014395 uint16_t oxid, rxid, xri, lxri;
James Smart5ffc2662009-11-18 15:39:44 -050014396 uint32_t sid, fctl;
James Smart6669f9b2009-10-02 15:16:45 -040014397 IOCB_t *icmd;
James Smart546fc852011-03-11 16:06:29 -050014398 int rc;
James Smart6669f9b2009-10-02 15:16:45 -040014399
14400 if (!lpfc_is_link_up(phba))
14401 return;
14402
14403 sid = sli4_sid_from_fc_hdr(fc_hdr);
14404 oxid = be16_to_cpu(fc_hdr->fh_ox_id);
James Smart5ffc2662009-11-18 15:39:44 -050014405 rxid = be16_to_cpu(fc_hdr->fh_rx_id);
James Smart6669f9b2009-10-02 15:16:45 -040014406
James Smart6dd9e312013-01-03 15:43:37 -050014407 ndlp = lpfc_findnode_did(vport, sid);
James Smart6669f9b2009-10-02 15:16:45 -040014408 if (!ndlp) {
James Smart6dd9e312013-01-03 15:43:37 -050014409 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
14410 if (!ndlp) {
14411 lpfc_printf_vlog(vport, KERN_WARNING, LOG_ELS,
14412 "1268 Failed to allocate ndlp for "
14413 "oxid:x%x SID:x%x\n", oxid, sid);
14414 return;
14415 }
14416 lpfc_nlp_init(vport, ndlp, sid);
14417 /* Put ndlp onto pport node list */
14418 lpfc_enqueue_node(vport, ndlp);
14419 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
14420 /* re-setup ndlp without removing from node list */
14421 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
14422 if (!ndlp) {
14423 lpfc_printf_vlog(vport, KERN_WARNING, LOG_ELS,
14424 "3275 Failed to active ndlp found "
14425 "for oxid:x%x SID:x%x\n", oxid, sid);
14426 return;
14427 }
James Smart6669f9b2009-10-02 15:16:45 -040014428 }
14429
James Smart546fc852011-03-11 16:06:29 -050014430 /* Allocate buffer for rsp iocb */
James Smart6669f9b2009-10-02 15:16:45 -040014431 ctiocb = lpfc_sli_get_iocbq(phba);
14432 if (!ctiocb)
14433 return;
14434
James Smart5ffc2662009-11-18 15:39:44 -050014435 /* Extract the F_CTL field from FC_HDR */
14436 fctl = sli4_fctl_from_fc_hdr(fc_hdr);
14437
James Smart6669f9b2009-10-02 15:16:45 -040014438 icmd = &ctiocb->iocb;
James Smart6669f9b2009-10-02 15:16:45 -040014439 icmd->un.xseq64.bdl.bdeSize = 0;
James Smart5ffc2662009-11-18 15:39:44 -050014440 icmd->un.xseq64.bdl.ulpIoTag32 = 0;
James Smart6669f9b2009-10-02 15:16:45 -040014441 icmd->un.xseq64.w5.hcsw.Dfctl = 0;
14442 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_ACC;
14443 icmd->un.xseq64.w5.hcsw.Type = FC_TYPE_BLS;
14444
14445 /* Fill in the rest of iocb fields */
14446 icmd->ulpCommand = CMD_XMIT_BLS_RSP64_CX;
14447 icmd->ulpBdeCount = 0;
14448 icmd->ulpLe = 1;
14449 icmd->ulpClass = CLASS3;
James Smart6d368e52011-05-24 11:44:12 -040014450 icmd->ulpContext = phba->sli4_hba.rpi_ids[ndlp->nlp_rpi];
James Smart6dd9e312013-01-03 15:43:37 -050014451 ctiocb->context1 = lpfc_nlp_get(ndlp);
James Smart6669f9b2009-10-02 15:16:45 -040014452
James Smart6669f9b2009-10-02 15:16:45 -040014453 ctiocb->iocb_cmpl = NULL;
14454 ctiocb->vport = phba->pport;
James Smart546fc852011-03-11 16:06:29 -050014455 ctiocb->iocb_cmpl = lpfc_sli4_seq_abort_rsp_cmpl;
James Smart6d368e52011-05-24 11:44:12 -040014456 ctiocb->sli4_lxritag = NO_XRI;
James Smart546fc852011-03-11 16:06:29 -050014457 ctiocb->sli4_xritag = NO_XRI;
14458
James Smartee0f4fe2012-05-09 21:19:14 -040014459 if (fctl & FC_FC_EX_CTX)
14460 /* Exchange responder sent the abort so we
14461 * own the oxid.
14462 */
14463 xri = oxid;
14464 else
14465 xri = rxid;
14466 lxri = lpfc_sli4_xri_inrange(phba, xri);
14467 if (lxri != NO_XRI)
14468 lpfc_set_rrq_active(phba, ndlp, lxri,
14469 (xri == oxid) ? rxid : oxid, 0);
James Smart6dd9e312013-01-03 15:43:37 -050014470 /* For BA_ABTS from exchange responder, if the logical xri with
14471 * the oxid maps to the FCP XRI range, the port no longer has
14472 * that exchange context, send a BLS_RJT. Override the IOCB for
14473 * a BA_RJT.
James Smart546fc852011-03-11 16:06:29 -050014474 */
James Smart6dd9e312013-01-03 15:43:37 -050014475 if ((fctl & FC_FC_EX_CTX) &&
14476 (lxri > lpfc_sli4_get_els_iocb_cnt(phba))) {
14477 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_RJT;
14478 bf_set(lpfc_vndr_code, &icmd->un.bls_rsp, 0);
14479 bf_set(lpfc_rsn_expln, &icmd->un.bls_rsp, FC_BA_RJT_INV_XID);
14480 bf_set(lpfc_rsn_code, &icmd->un.bls_rsp, FC_BA_RJT_UNABLE);
14481 }
14482
14483 /* If BA_ABTS failed to abort a partially assembled receive sequence,
14484 * the driver no longer has that exchange, send a BLS_RJT. Override
14485 * the IOCB for a BA_RJT.
14486 */
14487 if (aborted == false) {
James Smart546fc852011-03-11 16:06:29 -050014488 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_RJT;
14489 bf_set(lpfc_vndr_code, &icmd->un.bls_rsp, 0);
14490 bf_set(lpfc_rsn_expln, &icmd->un.bls_rsp, FC_BA_RJT_INV_XID);
14491 bf_set(lpfc_rsn_code, &icmd->un.bls_rsp, FC_BA_RJT_UNABLE);
14492 }
James Smart6669f9b2009-10-02 15:16:45 -040014493
James Smart5ffc2662009-11-18 15:39:44 -050014494 if (fctl & FC_FC_EX_CTX) {
14495 /* ABTS sent by responder to CT exchange, construction
14496 * of BA_ACC will use OX_ID from ABTS for the XRI_TAG
14497 * field and RX_ID from ABTS for RX_ID field.
14498 */
James Smart546fc852011-03-11 16:06:29 -050014499 bf_set(lpfc_abts_orig, &icmd->un.bls_rsp, LPFC_ABTS_UNSOL_RSP);
James Smart5ffc2662009-11-18 15:39:44 -050014500 } else {
14501 /* ABTS sent by initiator to CT exchange, construction
14502 * of BA_ACC will need to allocate a new XRI as for the
James Smartf09c3ac2012-03-01 22:33:29 -050014503 * XRI_TAG field.
James Smart5ffc2662009-11-18 15:39:44 -050014504 */
James Smart546fc852011-03-11 16:06:29 -050014505 bf_set(lpfc_abts_orig, &icmd->un.bls_rsp, LPFC_ABTS_UNSOL_INT);
James Smart5ffc2662009-11-18 15:39:44 -050014506 }
James Smartf09c3ac2012-03-01 22:33:29 -050014507 bf_set(lpfc_abts_rxid, &icmd->un.bls_rsp, rxid);
James Smart546fc852011-03-11 16:06:29 -050014508 bf_set(lpfc_abts_oxid, &icmd->un.bls_rsp, oxid);
James Smart5ffc2662009-11-18 15:39:44 -050014509
James Smart546fc852011-03-11 16:06:29 -050014510 /* Xmit CT abts response on exchange <xid> */
James Smart6dd9e312013-01-03 15:43:37 -050014511 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
14512 "1200 Send BLS cmd x%x on oxid x%x Data: x%x\n",
14513 icmd->un.xseq64.w5.hcsw.Rctl, oxid, phba->link_state);
James Smart546fc852011-03-11 16:06:29 -050014514
14515 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, ctiocb, 0);
14516 if (rc == IOCB_ERROR) {
James Smart6dd9e312013-01-03 15:43:37 -050014517 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
14518 "2925 Failed to issue CT ABTS RSP x%x on "
14519 "xri x%x, Data x%x\n",
14520 icmd->un.xseq64.w5.hcsw.Rctl, oxid,
14521 phba->link_state);
14522 lpfc_nlp_put(ndlp);
14523 ctiocb->context1 = NULL;
James Smart546fc852011-03-11 16:06:29 -050014524 lpfc_sli_release_iocbq(phba, ctiocb);
14525 }
James Smart6669f9b2009-10-02 15:16:45 -040014526}
14527
14528/**
14529 * lpfc_sli4_handle_unsol_abort - Handle sli-4 unsolicited abort event
14530 * @vport: Pointer to the vport on which this sequence was received
14531 * @dmabuf: pointer to a dmabuf that describes the FC sequence
14532 *
14533 * This function handles an SLI-4 unsolicited abort event. If the unsolicited
14534 * receive sequence is only partially assembed by the driver, it shall abort
14535 * the partially assembled frames for the sequence. Otherwise, if the
14536 * unsolicited receive sequence has been completely assembled and passed to
14537 * the Upper Layer Protocol (UPL), it then mark the per oxid status for the
14538 * unsolicited sequence has been aborted. After that, it will issue a basic
14539 * accept to accept the abort.
14540 **/
14541void
14542lpfc_sli4_handle_unsol_abort(struct lpfc_vport *vport,
14543 struct hbq_dmabuf *dmabuf)
14544{
14545 struct lpfc_hba *phba = vport->phba;
14546 struct fc_frame_header fc_hdr;
James Smart5ffc2662009-11-18 15:39:44 -050014547 uint32_t fctl;
James Smart6dd9e312013-01-03 15:43:37 -050014548 bool aborted;
James Smart6669f9b2009-10-02 15:16:45 -040014549
James Smart6669f9b2009-10-02 15:16:45 -040014550 /* Make a copy of fc_hdr before the dmabuf being released */
14551 memcpy(&fc_hdr, dmabuf->hbuf.virt, sizeof(struct fc_frame_header));
James Smart5ffc2662009-11-18 15:39:44 -050014552 fctl = sli4_fctl_from_fc_hdr(&fc_hdr);
James Smart6669f9b2009-10-02 15:16:45 -040014553
James Smart5ffc2662009-11-18 15:39:44 -050014554 if (fctl & FC_FC_EX_CTX) {
James Smart6dd9e312013-01-03 15:43:37 -050014555 /* ABTS by responder to exchange, no cleanup needed */
14556 aborted = true;
James Smart5ffc2662009-11-18 15:39:44 -050014557 } else {
James Smart6dd9e312013-01-03 15:43:37 -050014558 /* ABTS by initiator to exchange, need to do cleanup */
14559 aborted = lpfc_sli4_abort_partial_seq(vport, dmabuf);
14560 if (aborted == false)
14561 aborted = lpfc_sli4_abort_ulp_seq(vport, dmabuf);
James Smart5ffc2662009-11-18 15:39:44 -050014562 }
James Smart6dd9e312013-01-03 15:43:37 -050014563 lpfc_in_buf_free(phba, &dmabuf->dbuf);
14564
14565 /* Respond with BA_ACC or BA_RJT accordingly */
14566 lpfc_sli4_seq_abort_rsp(vport, &fc_hdr, aborted);
James Smart6669f9b2009-10-02 15:16:45 -040014567}
14568
14569/**
James Smart4f774512009-05-22 14:52:35 -040014570 * lpfc_seq_complete - Indicates if a sequence is complete
14571 * @dmabuf: pointer to a dmabuf that describes the FC sequence
14572 *
14573 * This function checks the sequence, starting with the frame described by
14574 * @dmabuf, to see if all the frames associated with this sequence are present.
14575 * the frames associated with this sequence are linked to the @dmabuf using the
14576 * dbuf list. This function looks for two major things. 1) That the first frame
14577 * has a sequence count of zero. 2) There is a frame with last frame of sequence
14578 * set. 3) That there are no holes in the sequence count. The function will
14579 * return 1 when the sequence is complete, otherwise it will return 0.
14580 **/
14581static int
14582lpfc_seq_complete(struct hbq_dmabuf *dmabuf)
14583{
14584 struct fc_frame_header *hdr;
14585 struct lpfc_dmabuf *d_buf;
14586 struct hbq_dmabuf *seq_dmabuf;
14587 uint32_t fctl;
14588 int seq_count = 0;
14589
14590 hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
14591 /* make sure first fame of sequence has a sequence count of zero */
14592 if (hdr->fh_seq_cnt != seq_count)
14593 return 0;
14594 fctl = (hdr->fh_f_ctl[0] << 16 |
14595 hdr->fh_f_ctl[1] << 8 |
14596 hdr->fh_f_ctl[2]);
14597 /* If last frame of sequence we can return success. */
14598 if (fctl & FC_FC_END_SEQ)
14599 return 1;
14600 list_for_each_entry(d_buf, &dmabuf->dbuf.list, list) {
14601 seq_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
14602 hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
14603 /* If there is a hole in the sequence count then fail. */
James Smarteeead812009-12-21 17:01:23 -050014604 if (++seq_count != be16_to_cpu(hdr->fh_seq_cnt))
James Smart4f774512009-05-22 14:52:35 -040014605 return 0;
14606 fctl = (hdr->fh_f_ctl[0] << 16 |
14607 hdr->fh_f_ctl[1] << 8 |
14608 hdr->fh_f_ctl[2]);
14609 /* If last frame of sequence we can return success. */
14610 if (fctl & FC_FC_END_SEQ)
14611 return 1;
14612 }
14613 return 0;
14614}
14615
14616/**
14617 * lpfc_prep_seq - Prep sequence for ULP processing
14618 * @vport: Pointer to the vport on which this sequence was received
14619 * @dmabuf: pointer to a dmabuf that describes the FC sequence
14620 *
14621 * This function takes a sequence, described by a list of frames, and creates
14622 * a list of iocbq structures to describe the sequence. This iocbq list will be
14623 * used to issue to the generic unsolicited sequence handler. This routine
14624 * returns a pointer to the first iocbq in the list. If the function is unable
14625 * to allocate an iocbq then it throw out the received frames that were not
14626 * able to be described and return a pointer to the first iocbq. If unable to
14627 * allocate any iocbqs (including the first) this function will return NULL.
14628 **/
14629static struct lpfc_iocbq *
14630lpfc_prep_seq(struct lpfc_vport *vport, struct hbq_dmabuf *seq_dmabuf)
14631{
James Smart7851fe22011-07-22 18:36:52 -040014632 struct hbq_dmabuf *hbq_buf;
James Smart4f774512009-05-22 14:52:35 -040014633 struct lpfc_dmabuf *d_buf, *n_buf;
14634 struct lpfc_iocbq *first_iocbq, *iocbq;
14635 struct fc_frame_header *fc_hdr;
14636 uint32_t sid;
James Smart7851fe22011-07-22 18:36:52 -040014637 uint32_t len, tot_len;
James Smarteeead812009-12-21 17:01:23 -050014638 struct ulp_bde64 *pbde;
James Smart4f774512009-05-22 14:52:35 -040014639
14640 fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
14641 /* remove from receive buffer list */
14642 list_del_init(&seq_dmabuf->hbuf.list);
James Smart45ed1192009-10-02 15:17:02 -040014643 lpfc_update_rcv_time_stamp(vport);
James Smart4f774512009-05-22 14:52:35 -040014644 /* get the Remote Port's SID */
James Smart6669f9b2009-10-02 15:16:45 -040014645 sid = sli4_sid_from_fc_hdr(fc_hdr);
James Smart7851fe22011-07-22 18:36:52 -040014646 tot_len = 0;
James Smart4f774512009-05-22 14:52:35 -040014647 /* Get an iocbq struct to fill in. */
14648 first_iocbq = lpfc_sli_get_iocbq(vport->phba);
14649 if (first_iocbq) {
14650 /* Initialize the first IOCB. */
James Smart8fa38512009-07-19 10:01:03 -040014651 first_iocbq->iocb.unsli3.rcvsli3.acc_len = 0;
James Smart4f774512009-05-22 14:52:35 -040014652 first_iocbq->iocb.ulpStatus = IOSTAT_SUCCESS;
James Smart939723a2012-05-09 21:19:03 -040014653
14654 /* Check FC Header to see what TYPE of frame we are rcv'ing */
14655 if (sli4_type_from_fc_hdr(fc_hdr) == FC_TYPE_ELS) {
14656 first_iocbq->iocb.ulpCommand = CMD_IOCB_RCV_ELS64_CX;
14657 first_iocbq->iocb.un.rcvels.parmRo =
14658 sli4_did_from_fc_hdr(fc_hdr);
14659 first_iocbq->iocb.ulpPU = PARM_NPIV_DID;
14660 } else
14661 first_iocbq->iocb.ulpCommand = CMD_IOCB_RCV_SEQ64_CX;
James Smart7851fe22011-07-22 18:36:52 -040014662 first_iocbq->iocb.ulpContext = NO_XRI;
14663 first_iocbq->iocb.unsli3.rcvsli3.ox_id =
14664 be16_to_cpu(fc_hdr->fh_ox_id);
14665 /* iocbq is prepped for internal consumption. Physical vpi. */
14666 first_iocbq->iocb.unsli3.rcvsli3.vpi =
14667 vport->phba->vpi_ids[vport->vpi];
James Smart4f774512009-05-22 14:52:35 -040014668 /* put the first buffer into the first IOCBq */
14669 first_iocbq->context2 = &seq_dmabuf->dbuf;
14670 first_iocbq->context3 = NULL;
14671 first_iocbq->iocb.ulpBdeCount = 1;
14672 first_iocbq->iocb.un.cont64[0].tus.f.bdeSize =
14673 LPFC_DATA_BUF_SIZE;
14674 first_iocbq->iocb.un.rcvels.remoteID = sid;
James Smart7851fe22011-07-22 18:36:52 -040014675 tot_len = bf_get(lpfc_rcqe_length,
James Smart4d9ab992009-10-02 15:16:39 -040014676 &seq_dmabuf->cq_event.cqe.rcqe_cmpl);
James Smart7851fe22011-07-22 18:36:52 -040014677 first_iocbq->iocb.unsli3.rcvsli3.acc_len = tot_len;
James Smart4f774512009-05-22 14:52:35 -040014678 }
14679 iocbq = first_iocbq;
14680 /*
14681 * Each IOCBq can have two Buffers assigned, so go through the list
14682 * of buffers for this sequence and save two buffers in each IOCBq
14683 */
14684 list_for_each_entry_safe(d_buf, n_buf, &seq_dmabuf->dbuf.list, list) {
14685 if (!iocbq) {
14686 lpfc_in_buf_free(vport->phba, d_buf);
14687 continue;
14688 }
14689 if (!iocbq->context3) {
14690 iocbq->context3 = d_buf;
14691 iocbq->iocb.ulpBdeCount++;
James Smarteeead812009-12-21 17:01:23 -050014692 pbde = (struct ulp_bde64 *)
14693 &iocbq->iocb.unsli3.sli3Words[4];
14694 pbde->tus.f.bdeSize = LPFC_DATA_BUF_SIZE;
James Smart7851fe22011-07-22 18:36:52 -040014695
14696 /* We need to get the size out of the right CQE */
14697 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
14698 len = bf_get(lpfc_rcqe_length,
14699 &hbq_buf->cq_event.cqe.rcqe_cmpl);
14700 iocbq->iocb.unsli3.rcvsli3.acc_len += len;
14701 tot_len += len;
James Smart4f774512009-05-22 14:52:35 -040014702 } else {
14703 iocbq = lpfc_sli_get_iocbq(vport->phba);
14704 if (!iocbq) {
14705 if (first_iocbq) {
14706 first_iocbq->iocb.ulpStatus =
14707 IOSTAT_FCP_RSP_ERROR;
14708 first_iocbq->iocb.un.ulpWord[4] =
14709 IOERR_NO_RESOURCES;
14710 }
14711 lpfc_in_buf_free(vport->phba, d_buf);
14712 continue;
14713 }
14714 iocbq->context2 = d_buf;
14715 iocbq->context3 = NULL;
14716 iocbq->iocb.ulpBdeCount = 1;
14717 iocbq->iocb.un.cont64[0].tus.f.bdeSize =
14718 LPFC_DATA_BUF_SIZE;
James Smart7851fe22011-07-22 18:36:52 -040014719
14720 /* We need to get the size out of the right CQE */
14721 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
14722 len = bf_get(lpfc_rcqe_length,
14723 &hbq_buf->cq_event.cqe.rcqe_cmpl);
14724 tot_len += len;
14725 iocbq->iocb.unsli3.rcvsli3.acc_len = tot_len;
14726
James Smart4f774512009-05-22 14:52:35 -040014727 iocbq->iocb.un.rcvels.remoteID = sid;
14728 list_add_tail(&iocbq->list, &first_iocbq->list);
14729 }
14730 }
14731 return first_iocbq;
14732}
14733
James Smart6669f9b2009-10-02 15:16:45 -040014734static void
14735lpfc_sli4_send_seq_to_ulp(struct lpfc_vport *vport,
14736 struct hbq_dmabuf *seq_dmabuf)
14737{
14738 struct fc_frame_header *fc_hdr;
14739 struct lpfc_iocbq *iocbq, *curr_iocb, *next_iocb;
14740 struct lpfc_hba *phba = vport->phba;
14741
14742 fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
14743 iocbq = lpfc_prep_seq(vport, seq_dmabuf);
14744 if (!iocbq) {
14745 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14746 "2707 Ring %d handler: Failed to allocate "
14747 "iocb Rctl x%x Type x%x received\n",
14748 LPFC_ELS_RING,
14749 fc_hdr->fh_r_ctl, fc_hdr->fh_type);
14750 return;
14751 }
14752 if (!lpfc_complete_unsol_iocb(phba,
14753 &phba->sli.ring[LPFC_ELS_RING],
14754 iocbq, fc_hdr->fh_r_ctl,
14755 fc_hdr->fh_type))
James Smart6d368e52011-05-24 11:44:12 -040014756 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart6669f9b2009-10-02 15:16:45 -040014757 "2540 Ring %d handler: unexpected Rctl "
14758 "x%x Type x%x received\n",
14759 LPFC_ELS_RING,
14760 fc_hdr->fh_r_ctl, fc_hdr->fh_type);
14761
14762 /* Free iocb created in lpfc_prep_seq */
14763 list_for_each_entry_safe(curr_iocb, next_iocb,
14764 &iocbq->list, list) {
14765 list_del_init(&curr_iocb->list);
14766 lpfc_sli_release_iocbq(phba, curr_iocb);
14767 }
14768 lpfc_sli_release_iocbq(phba, iocbq);
14769}
14770
James Smart4f774512009-05-22 14:52:35 -040014771/**
14772 * lpfc_sli4_handle_received_buffer - Handle received buffers from firmware
14773 * @phba: Pointer to HBA context object.
14774 *
14775 * This function is called with no lock held. This function processes all
14776 * the received buffers and gives it to upper layers when a received buffer
14777 * indicates that it is the final frame in the sequence. The interrupt
14778 * service routine processes received buffers at interrupt contexts and adds
14779 * received dma buffers to the rb_pend_list queue and signals the worker thread.
14780 * Worker thread calls lpfc_sli4_handle_received_buffer, which will call the
14781 * appropriate receive function when the final frame in a sequence is received.
14782 **/
James Smart4d9ab992009-10-02 15:16:39 -040014783void
14784lpfc_sli4_handle_received_buffer(struct lpfc_hba *phba,
14785 struct hbq_dmabuf *dmabuf)
James Smart4f774512009-05-22 14:52:35 -040014786{
James Smart4d9ab992009-10-02 15:16:39 -040014787 struct hbq_dmabuf *seq_dmabuf;
James Smart4f774512009-05-22 14:52:35 -040014788 struct fc_frame_header *fc_hdr;
14789 struct lpfc_vport *vport;
14790 uint32_t fcfi;
James Smart939723a2012-05-09 21:19:03 -040014791 uint32_t did;
James Smart4f774512009-05-22 14:52:35 -040014792
James Smart4f774512009-05-22 14:52:35 -040014793 /* Process each received buffer */
James Smart4d9ab992009-10-02 15:16:39 -040014794 fc_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
14795 /* check to see if this a valid type of frame */
14796 if (lpfc_fc_frame_check(phba, fc_hdr)) {
14797 lpfc_in_buf_free(phba, &dmabuf->dbuf);
14798 return;
14799 }
James Smart7851fe22011-07-22 18:36:52 -040014800 if ((bf_get(lpfc_cqe_code,
14801 &dmabuf->cq_event.cqe.rcqe_cmpl) == CQE_CODE_RECEIVE_V1))
14802 fcfi = bf_get(lpfc_rcqe_fcf_id_v1,
14803 &dmabuf->cq_event.cqe.rcqe_cmpl);
14804 else
14805 fcfi = bf_get(lpfc_rcqe_fcf_id,
14806 &dmabuf->cq_event.cqe.rcqe_cmpl);
James Smart939723a2012-05-09 21:19:03 -040014807
James Smart4d9ab992009-10-02 15:16:39 -040014808 vport = lpfc_fc_frame_to_vport(phba, fc_hdr, fcfi);
James Smart939723a2012-05-09 21:19:03 -040014809 if (!vport) {
James Smart4d9ab992009-10-02 15:16:39 -040014810 /* throw out the frame */
14811 lpfc_in_buf_free(phba, &dmabuf->dbuf);
14812 return;
14813 }
James Smart939723a2012-05-09 21:19:03 -040014814
14815 /* d_id this frame is directed to */
14816 did = sli4_did_from_fc_hdr(fc_hdr);
14817
14818 /* vport is registered unless we rcv a FLOGI directed to Fabric_DID */
14819 if (!(vport->vpi_state & LPFC_VPI_REGISTERED) &&
14820 (did != Fabric_DID)) {
14821 /*
14822 * Throw out the frame if we are not pt2pt.
14823 * The pt2pt protocol allows for discovery frames
14824 * to be received without a registered VPI.
14825 */
14826 if (!(vport->fc_flag & FC_PT2PT) ||
14827 (phba->link_state == LPFC_HBA_READY)) {
14828 lpfc_in_buf_free(phba, &dmabuf->dbuf);
14829 return;
14830 }
14831 }
14832
James Smart6669f9b2009-10-02 15:16:45 -040014833 /* Handle the basic abort sequence (BA_ABTS) event */
14834 if (fc_hdr->fh_r_ctl == FC_RCTL_BA_ABTS) {
14835 lpfc_sli4_handle_unsol_abort(vport, dmabuf);
14836 return;
14837 }
14838
James Smart4d9ab992009-10-02 15:16:39 -040014839 /* Link this frame */
14840 seq_dmabuf = lpfc_fc_frame_add(vport, dmabuf);
14841 if (!seq_dmabuf) {
14842 /* unable to add frame to vport - throw it out */
14843 lpfc_in_buf_free(phba, &dmabuf->dbuf);
14844 return;
14845 }
14846 /* If not last frame in sequence continue processing frames. */
James Smartdef9c7a2009-12-21 17:02:28 -050014847 if (!lpfc_seq_complete(seq_dmabuf))
James Smart4d9ab992009-10-02 15:16:39 -040014848 return;
James Smartdef9c7a2009-12-21 17:02:28 -050014849
James Smart6669f9b2009-10-02 15:16:45 -040014850 /* Send the complete sequence to the upper layer protocol */
14851 lpfc_sli4_send_seq_to_ulp(vport, seq_dmabuf);
James Smart4f774512009-05-22 14:52:35 -040014852}
James Smart6fb120a2009-05-22 14:52:59 -040014853
14854/**
14855 * lpfc_sli4_post_all_rpi_hdrs - Post the rpi header memory region to the port
14856 * @phba: pointer to lpfc hba data structure.
14857 *
14858 * This routine is invoked to post rpi header templates to the
14859 * HBA consistent with the SLI-4 interface spec. This routine
James Smart49198b32010-04-06 15:04:33 -040014860 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
14861 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
James Smart6fb120a2009-05-22 14:52:59 -040014862 *
14863 * This routine does not require any locks. It's usage is expected
14864 * to be driver load or reset recovery when the driver is
14865 * sequential.
14866 *
14867 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020014868 * 0 - successful
James Smartd439d282010-09-29 11:18:45 -040014869 * -EIO - The mailbox failed to complete successfully.
James Smart6fb120a2009-05-22 14:52:59 -040014870 * When this error occurs, the driver is not guaranteed
14871 * to have any rpi regions posted to the device and
14872 * must either attempt to repost the regions or take a
14873 * fatal error.
14874 **/
14875int
14876lpfc_sli4_post_all_rpi_hdrs(struct lpfc_hba *phba)
14877{
14878 struct lpfc_rpi_hdr *rpi_page;
14879 uint32_t rc = 0;
James Smart6d368e52011-05-24 11:44:12 -040014880 uint16_t lrpi = 0;
James Smart6fb120a2009-05-22 14:52:59 -040014881
James Smart6d368e52011-05-24 11:44:12 -040014882 /* SLI4 ports that support extents do not require RPI headers. */
14883 if (!phba->sli4_hba.rpi_hdrs_in_use)
14884 goto exit;
14885 if (phba->sli4_hba.extents_in_use)
14886 return -EIO;
14887
James Smart6fb120a2009-05-22 14:52:59 -040014888 list_for_each_entry(rpi_page, &phba->sli4_hba.lpfc_rpi_hdr_list, list) {
James Smart6d368e52011-05-24 11:44:12 -040014889 /*
14890 * Assign the rpi headers a physical rpi only if the driver
14891 * has not initialized those resources. A port reset only
14892 * needs the headers posted.
14893 */
14894 if (bf_get(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags) !=
14895 LPFC_RPI_RSRC_RDY)
14896 rpi_page->start_rpi = phba->sli4_hba.rpi_ids[lrpi];
14897
James Smart6fb120a2009-05-22 14:52:59 -040014898 rc = lpfc_sli4_post_rpi_hdr(phba, rpi_page);
14899 if (rc != MBX_SUCCESS) {
14900 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14901 "2008 Error %d posting all rpi "
14902 "headers\n", rc);
14903 rc = -EIO;
14904 break;
14905 }
14906 }
14907
James Smart6d368e52011-05-24 11:44:12 -040014908 exit:
14909 bf_set(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags,
14910 LPFC_RPI_RSRC_RDY);
James Smart6fb120a2009-05-22 14:52:59 -040014911 return rc;
14912}
14913
14914/**
14915 * lpfc_sli4_post_rpi_hdr - Post an rpi header memory region to the port
14916 * @phba: pointer to lpfc hba data structure.
14917 * @rpi_page: pointer to the rpi memory region.
14918 *
14919 * This routine is invoked to post a single rpi header to the
14920 * HBA consistent with the SLI-4 interface spec. This memory region
14921 * maps up to 64 rpi context regions.
14922 *
14923 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020014924 * 0 - successful
James Smartd439d282010-09-29 11:18:45 -040014925 * -ENOMEM - No available memory
14926 * -EIO - The mailbox failed to complete successfully.
James Smart6fb120a2009-05-22 14:52:59 -040014927 **/
14928int
14929lpfc_sli4_post_rpi_hdr(struct lpfc_hba *phba, struct lpfc_rpi_hdr *rpi_page)
14930{
14931 LPFC_MBOXQ_t *mboxq;
14932 struct lpfc_mbx_post_hdr_tmpl *hdr_tmpl;
14933 uint32_t rc = 0;
James Smart6fb120a2009-05-22 14:52:59 -040014934 uint32_t shdr_status, shdr_add_status;
14935 union lpfc_sli4_cfg_shdr *shdr;
14936
James Smart6d368e52011-05-24 11:44:12 -040014937 /* SLI4 ports that support extents do not require RPI headers. */
14938 if (!phba->sli4_hba.rpi_hdrs_in_use)
14939 return rc;
14940 if (phba->sli4_hba.extents_in_use)
14941 return -EIO;
14942
James Smart6fb120a2009-05-22 14:52:59 -040014943 /* The port is notified of the header region via a mailbox command. */
14944 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
14945 if (!mboxq) {
14946 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14947 "2001 Unable to allocate memory for issuing "
14948 "SLI_CONFIG_SPECIAL mailbox command\n");
14949 return -ENOMEM;
14950 }
14951
14952 /* Post all rpi memory regions to the port. */
14953 hdr_tmpl = &mboxq->u.mqe.un.hdr_tmpl;
James Smart6fb120a2009-05-22 14:52:59 -040014954 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
14955 LPFC_MBOX_OPCODE_FCOE_POST_HDR_TEMPLATE,
14956 sizeof(struct lpfc_mbx_post_hdr_tmpl) -
James Smartfedd3b72011-02-16 12:39:24 -050014957 sizeof(struct lpfc_sli4_cfg_mhdr),
14958 LPFC_SLI4_MBX_EMBED);
James Smart6d368e52011-05-24 11:44:12 -040014959
14960
14961 /* Post the physical rpi to the port for this rpi header. */
James Smart6fb120a2009-05-22 14:52:59 -040014962 bf_set(lpfc_mbx_post_hdr_tmpl_rpi_offset, hdr_tmpl,
14963 rpi_page->start_rpi);
James Smart6d368e52011-05-24 11:44:12 -040014964 bf_set(lpfc_mbx_post_hdr_tmpl_page_cnt,
14965 hdr_tmpl, rpi_page->page_count);
14966
James Smart6fb120a2009-05-22 14:52:59 -040014967 hdr_tmpl->rpi_paddr_lo = putPaddrLow(rpi_page->dmabuf->phys);
14968 hdr_tmpl->rpi_paddr_hi = putPaddrHigh(rpi_page->dmabuf->phys);
James Smartf1126682009-06-10 17:22:44 -040014969 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
James Smart6fb120a2009-05-22 14:52:59 -040014970 shdr = (union lpfc_sli4_cfg_shdr *) &hdr_tmpl->header.cfg_shdr;
14971 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14972 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14973 if (rc != MBX_TIMEOUT)
14974 mempool_free(mboxq, phba->mbox_mem_pool);
14975 if (shdr_status || shdr_add_status || rc) {
14976 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14977 "2514 POST_RPI_HDR mailbox failed with "
14978 "status x%x add_status x%x, mbx status x%x\n",
14979 shdr_status, shdr_add_status, rc);
14980 rc = -ENXIO;
14981 }
14982 return rc;
14983}
14984
14985/**
14986 * lpfc_sli4_alloc_rpi - Get an available rpi in the device's range
14987 * @phba: pointer to lpfc hba data structure.
14988 *
14989 * This routine is invoked to post rpi header templates to the
14990 * HBA consistent with the SLI-4 interface spec. This routine
James Smart49198b32010-04-06 15:04:33 -040014991 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
14992 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
James Smart6fb120a2009-05-22 14:52:59 -040014993 *
14994 * Returns
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020014995 * A nonzero rpi defined as rpi_base <= rpi < max_rpi if successful
James Smart6fb120a2009-05-22 14:52:59 -040014996 * LPFC_RPI_ALLOC_ERROR if no rpis are available.
14997 **/
14998int
14999lpfc_sli4_alloc_rpi(struct lpfc_hba *phba)
15000{
James Smart6d368e52011-05-24 11:44:12 -040015001 unsigned long rpi;
15002 uint16_t max_rpi, rpi_limit;
15003 uint16_t rpi_remaining, lrpi = 0;
James Smart6fb120a2009-05-22 14:52:59 -040015004 struct lpfc_rpi_hdr *rpi_hdr;
15005
15006 max_rpi = phba->sli4_hba.max_cfg_param.max_rpi;
James Smart6fb120a2009-05-22 14:52:59 -040015007 rpi_limit = phba->sli4_hba.next_rpi;
15008
15009 /*
James Smart6d368e52011-05-24 11:44:12 -040015010 * Fetch the next logical rpi. Because this index is logical,
15011 * the driver starts at 0 each time.
James Smart6fb120a2009-05-22 14:52:59 -040015012 */
15013 spin_lock_irq(&phba->hbalock);
James Smart6d368e52011-05-24 11:44:12 -040015014 rpi = find_next_zero_bit(phba->sli4_hba.rpi_bmask, rpi_limit, 0);
15015 if (rpi >= rpi_limit)
James Smart6fb120a2009-05-22 14:52:59 -040015016 rpi = LPFC_RPI_ALLOC_ERROR;
15017 else {
15018 set_bit(rpi, phba->sli4_hba.rpi_bmask);
15019 phba->sli4_hba.max_cfg_param.rpi_used++;
15020 phba->sli4_hba.rpi_count++;
15021 }
15022
15023 /*
15024 * Don't try to allocate more rpi header regions if the device limit
James Smart6d368e52011-05-24 11:44:12 -040015025 * has been exhausted.
James Smart6fb120a2009-05-22 14:52:59 -040015026 */
15027 if ((rpi == LPFC_RPI_ALLOC_ERROR) &&
15028 (phba->sli4_hba.rpi_count >= max_rpi)) {
15029 spin_unlock_irq(&phba->hbalock);
15030 return rpi;
15031 }
15032
15033 /*
James Smart6d368e52011-05-24 11:44:12 -040015034 * RPI header postings are not required for SLI4 ports capable of
15035 * extents.
15036 */
15037 if (!phba->sli4_hba.rpi_hdrs_in_use) {
15038 spin_unlock_irq(&phba->hbalock);
15039 return rpi;
15040 }
15041
15042 /*
James Smart6fb120a2009-05-22 14:52:59 -040015043 * If the driver is running low on rpi resources, allocate another
15044 * page now. Note that the next_rpi value is used because
15045 * it represents how many are actually in use whereas max_rpi notes
15046 * how many are supported max by the device.
15047 */
James Smart6d368e52011-05-24 11:44:12 -040015048 rpi_remaining = phba->sli4_hba.next_rpi - phba->sli4_hba.rpi_count;
James Smart6fb120a2009-05-22 14:52:59 -040015049 spin_unlock_irq(&phba->hbalock);
15050 if (rpi_remaining < LPFC_RPI_LOW_WATER_MARK) {
15051 rpi_hdr = lpfc_sli4_create_rpi_hdr(phba);
15052 if (!rpi_hdr) {
15053 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15054 "2002 Error Could not grow rpi "
15055 "count\n");
15056 } else {
James Smart6d368e52011-05-24 11:44:12 -040015057 lrpi = rpi_hdr->start_rpi;
15058 rpi_hdr->start_rpi = phba->sli4_hba.rpi_ids[lrpi];
James Smart6fb120a2009-05-22 14:52:59 -040015059 lpfc_sli4_post_rpi_hdr(phba, rpi_hdr);
15060 }
15061 }
15062
15063 return rpi;
15064}
15065
15066/**
15067 * lpfc_sli4_free_rpi - Release an rpi for reuse.
15068 * @phba: pointer to lpfc hba data structure.
15069 *
15070 * This routine is invoked to release an rpi to the pool of
15071 * available rpis maintained by the driver.
15072 **/
15073void
James Smartd7c47992010-06-08 18:31:54 -040015074__lpfc_sli4_free_rpi(struct lpfc_hba *phba, int rpi)
15075{
15076 if (test_and_clear_bit(rpi, phba->sli4_hba.rpi_bmask)) {
15077 phba->sli4_hba.rpi_count--;
15078 phba->sli4_hba.max_cfg_param.rpi_used--;
15079 }
15080}
15081
15082/**
15083 * lpfc_sli4_free_rpi - Release an rpi for reuse.
15084 * @phba: pointer to lpfc hba data structure.
15085 *
15086 * This routine is invoked to release an rpi to the pool of
15087 * available rpis maintained by the driver.
15088 **/
15089void
James Smart6fb120a2009-05-22 14:52:59 -040015090lpfc_sli4_free_rpi(struct lpfc_hba *phba, int rpi)
15091{
15092 spin_lock_irq(&phba->hbalock);
James Smartd7c47992010-06-08 18:31:54 -040015093 __lpfc_sli4_free_rpi(phba, rpi);
James Smart6fb120a2009-05-22 14:52:59 -040015094 spin_unlock_irq(&phba->hbalock);
15095}
15096
15097/**
15098 * lpfc_sli4_remove_rpis - Remove the rpi bitmask region
15099 * @phba: pointer to lpfc hba data structure.
15100 *
15101 * This routine is invoked to remove the memory region that
15102 * provided rpi via a bitmask.
15103 **/
15104void
15105lpfc_sli4_remove_rpis(struct lpfc_hba *phba)
15106{
15107 kfree(phba->sli4_hba.rpi_bmask);
James Smart6d368e52011-05-24 11:44:12 -040015108 kfree(phba->sli4_hba.rpi_ids);
15109 bf_set(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
James Smart6fb120a2009-05-22 14:52:59 -040015110}
15111
15112/**
15113 * lpfc_sli4_resume_rpi - Remove the rpi bitmask region
15114 * @phba: pointer to lpfc hba data structure.
15115 *
15116 * This routine is invoked to remove the memory region that
15117 * provided rpi via a bitmask.
15118 **/
15119int
James Smart6b5151f2012-01-18 16:24:06 -050015120lpfc_sli4_resume_rpi(struct lpfc_nodelist *ndlp,
15121 void (*cmpl)(struct lpfc_hba *, LPFC_MBOXQ_t *), void *arg)
James Smart6fb120a2009-05-22 14:52:59 -040015122{
15123 LPFC_MBOXQ_t *mboxq;
15124 struct lpfc_hba *phba = ndlp->phba;
15125 int rc;
15126
15127 /* The port is notified of the header region via a mailbox command. */
15128 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15129 if (!mboxq)
15130 return -ENOMEM;
15131
15132 /* Post all rpi memory regions to the port. */
15133 lpfc_resume_rpi(mboxq, ndlp);
James Smart6b5151f2012-01-18 16:24:06 -050015134 if (cmpl) {
15135 mboxq->mbox_cmpl = cmpl;
15136 mboxq->context1 = arg;
15137 mboxq->context2 = ndlp;
James Smart72859902012-01-18 16:25:38 -050015138 } else
15139 mboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart6b5151f2012-01-18 16:24:06 -050015140 mboxq->vport = ndlp->vport;
James Smart6fb120a2009-05-22 14:52:59 -040015141 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
15142 if (rc == MBX_NOT_FINISHED) {
15143 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15144 "2010 Resume RPI Mailbox failed "
15145 "status %d, mbxStatus x%x\n", rc,
15146 bf_get(lpfc_mqe_status, &mboxq->u.mqe));
15147 mempool_free(mboxq, phba->mbox_mem_pool);
15148 return -EIO;
15149 }
15150 return 0;
15151}
15152
15153/**
15154 * lpfc_sli4_init_vpi - Initialize a vpi with the port
James Smart76a95d72010-11-20 23:11:48 -050015155 * @vport: Pointer to the vport for which the vpi is being initialized
James Smart6fb120a2009-05-22 14:52:59 -040015156 *
James Smart76a95d72010-11-20 23:11:48 -050015157 * This routine is invoked to activate a vpi with the port.
James Smart6fb120a2009-05-22 14:52:59 -040015158 *
15159 * Returns:
15160 * 0 success
15161 * -Evalue otherwise
15162 **/
15163int
James Smart76a95d72010-11-20 23:11:48 -050015164lpfc_sli4_init_vpi(struct lpfc_vport *vport)
James Smart6fb120a2009-05-22 14:52:59 -040015165{
15166 LPFC_MBOXQ_t *mboxq;
15167 int rc = 0;
James Smart6a9c52c2009-10-02 15:16:51 -040015168 int retval = MBX_SUCCESS;
James Smart6fb120a2009-05-22 14:52:59 -040015169 uint32_t mbox_tmo;
James Smart76a95d72010-11-20 23:11:48 -050015170 struct lpfc_hba *phba = vport->phba;
James Smart6fb120a2009-05-22 14:52:59 -040015171 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15172 if (!mboxq)
15173 return -ENOMEM;
James Smart76a95d72010-11-20 23:11:48 -050015174 lpfc_init_vpi(phba, mboxq, vport->vpi);
James Smarta183a152011-10-10 21:32:43 -040015175 mbox_tmo = lpfc_mbox_tmo_val(phba, mboxq);
James Smart6fb120a2009-05-22 14:52:59 -040015176 rc = lpfc_sli_issue_mbox_wait(phba, mboxq, mbox_tmo);
James Smart6fb120a2009-05-22 14:52:59 -040015177 if (rc != MBX_SUCCESS) {
James Smart76a95d72010-11-20 23:11:48 -050015178 lpfc_printf_vlog(vport, KERN_ERR, LOG_SLI,
James Smart6fb120a2009-05-22 14:52:59 -040015179 "2022 INIT VPI Mailbox failed "
15180 "status %d, mbxStatus x%x\n", rc,
15181 bf_get(lpfc_mqe_status, &mboxq->u.mqe));
James Smart6a9c52c2009-10-02 15:16:51 -040015182 retval = -EIO;
James Smart6fb120a2009-05-22 14:52:59 -040015183 }
James Smart6a9c52c2009-10-02 15:16:51 -040015184 if (rc != MBX_TIMEOUT)
James Smart76a95d72010-11-20 23:11:48 -050015185 mempool_free(mboxq, vport->phba->mbox_mem_pool);
James Smart6a9c52c2009-10-02 15:16:51 -040015186
15187 return retval;
James Smart6fb120a2009-05-22 14:52:59 -040015188}
15189
15190/**
15191 * lpfc_mbx_cmpl_add_fcf_record - add fcf mbox completion handler.
15192 * @phba: pointer to lpfc hba data structure.
15193 * @mboxq: Pointer to mailbox object.
15194 *
15195 * This routine is invoked to manually add a single FCF record. The caller
15196 * must pass a completely initialized FCF_Record. This routine takes
15197 * care of the nonembedded mailbox operations.
15198 **/
15199static void
15200lpfc_mbx_cmpl_add_fcf_record(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
15201{
15202 void *virt_addr;
15203 union lpfc_sli4_cfg_shdr *shdr;
15204 uint32_t shdr_status, shdr_add_status;
15205
15206 virt_addr = mboxq->sge_array->addr[0];
15207 /* The IOCTL status is embedded in the mailbox subheader. */
15208 shdr = (union lpfc_sli4_cfg_shdr *) virt_addr;
15209 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
15210 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
15211
15212 if ((shdr_status || shdr_add_status) &&
15213 (shdr_status != STATUS_FCF_IN_USE))
15214 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15215 "2558 ADD_FCF_RECORD mailbox failed with "
15216 "status x%x add_status x%x\n",
15217 shdr_status, shdr_add_status);
15218
15219 lpfc_sli4_mbox_cmd_free(phba, mboxq);
15220}
15221
15222/**
15223 * lpfc_sli4_add_fcf_record - Manually add an FCF Record.
15224 * @phba: pointer to lpfc hba data structure.
15225 * @fcf_record: pointer to the initialized fcf record to add.
15226 *
15227 * This routine is invoked to manually add a single FCF record. The caller
15228 * must pass a completely initialized FCF_Record. This routine takes
15229 * care of the nonembedded mailbox operations.
15230 **/
15231int
15232lpfc_sli4_add_fcf_record(struct lpfc_hba *phba, struct fcf_record *fcf_record)
15233{
15234 int rc = 0;
15235 LPFC_MBOXQ_t *mboxq;
15236 uint8_t *bytep;
15237 void *virt_addr;
15238 dma_addr_t phys_addr;
15239 struct lpfc_mbx_sge sge;
15240 uint32_t alloc_len, req_len;
15241 uint32_t fcfindex;
15242
15243 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15244 if (!mboxq) {
15245 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15246 "2009 Failed to allocate mbox for ADD_FCF cmd\n");
15247 return -ENOMEM;
15248 }
15249
15250 req_len = sizeof(struct fcf_record) + sizeof(union lpfc_sli4_cfg_shdr) +
15251 sizeof(uint32_t);
15252
15253 /* Allocate DMA memory and set up the non-embedded mailbox command */
15254 alloc_len = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
15255 LPFC_MBOX_OPCODE_FCOE_ADD_FCF,
15256 req_len, LPFC_SLI4_MBX_NEMBED);
15257 if (alloc_len < req_len) {
15258 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15259 "2523 Allocated DMA memory size (x%x) is "
15260 "less than the requested DMA memory "
15261 "size (x%x)\n", alloc_len, req_len);
15262 lpfc_sli4_mbox_cmd_free(phba, mboxq);
15263 return -ENOMEM;
15264 }
15265
15266 /*
15267 * Get the first SGE entry from the non-embedded DMA memory. This
15268 * routine only uses a single SGE.
15269 */
15270 lpfc_sli4_mbx_sge_get(mboxq, 0, &sge);
15271 phys_addr = getPaddr(sge.pa_hi, sge.pa_lo);
James Smart6fb120a2009-05-22 14:52:59 -040015272 virt_addr = mboxq->sge_array->addr[0];
15273 /*
15274 * Configure the FCF record for FCFI 0. This is the driver's
15275 * hardcoded default and gets used in nonFIP mode.
15276 */
15277 fcfindex = bf_get(lpfc_fcf_record_fcf_index, fcf_record);
15278 bytep = virt_addr + sizeof(union lpfc_sli4_cfg_shdr);
15279 lpfc_sli_pcimem_bcopy(&fcfindex, bytep, sizeof(uint32_t));
15280
15281 /*
15282 * Copy the fcf_index and the FCF Record Data. The data starts after
15283 * the FCoE header plus word10. The data copy needs to be endian
15284 * correct.
15285 */
15286 bytep += sizeof(uint32_t);
15287 lpfc_sli_pcimem_bcopy(fcf_record, bytep, sizeof(struct fcf_record));
15288 mboxq->vport = phba->pport;
15289 mboxq->mbox_cmpl = lpfc_mbx_cmpl_add_fcf_record;
15290 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
15291 if (rc == MBX_NOT_FINISHED) {
15292 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15293 "2515 ADD_FCF_RECORD mailbox failed with "
15294 "status 0x%x\n", rc);
15295 lpfc_sli4_mbox_cmd_free(phba, mboxq);
15296 rc = -EIO;
15297 } else
15298 rc = 0;
15299
15300 return rc;
15301}
15302
15303/**
15304 * lpfc_sli4_build_dflt_fcf_record - Build the driver's default FCF Record.
15305 * @phba: pointer to lpfc hba data structure.
15306 * @fcf_record: pointer to the fcf record to write the default data.
15307 * @fcf_index: FCF table entry index.
15308 *
15309 * This routine is invoked to build the driver's default FCF record. The
15310 * values used are hardcoded. This routine handles memory initialization.
15311 *
15312 **/
15313void
15314lpfc_sli4_build_dflt_fcf_record(struct lpfc_hba *phba,
15315 struct fcf_record *fcf_record,
15316 uint16_t fcf_index)
15317{
15318 memset(fcf_record, 0, sizeof(struct fcf_record));
15319 fcf_record->max_rcv_size = LPFC_FCOE_MAX_RCV_SIZE;
15320 fcf_record->fka_adv_period = LPFC_FCOE_FKA_ADV_PER;
15321 fcf_record->fip_priority = LPFC_FCOE_FIP_PRIORITY;
15322 bf_set(lpfc_fcf_record_mac_0, fcf_record, phba->fc_map[0]);
15323 bf_set(lpfc_fcf_record_mac_1, fcf_record, phba->fc_map[1]);
15324 bf_set(lpfc_fcf_record_mac_2, fcf_record, phba->fc_map[2]);
15325 bf_set(lpfc_fcf_record_mac_3, fcf_record, LPFC_FCOE_FCF_MAC3);
15326 bf_set(lpfc_fcf_record_mac_4, fcf_record, LPFC_FCOE_FCF_MAC4);
15327 bf_set(lpfc_fcf_record_mac_5, fcf_record, LPFC_FCOE_FCF_MAC5);
15328 bf_set(lpfc_fcf_record_fc_map_0, fcf_record, phba->fc_map[0]);
15329 bf_set(lpfc_fcf_record_fc_map_1, fcf_record, phba->fc_map[1]);
15330 bf_set(lpfc_fcf_record_fc_map_2, fcf_record, phba->fc_map[2]);
15331 bf_set(lpfc_fcf_record_fcf_valid, fcf_record, 1);
James Smart0c287582009-06-10 17:22:56 -040015332 bf_set(lpfc_fcf_record_fcf_avail, fcf_record, 1);
James Smart6fb120a2009-05-22 14:52:59 -040015333 bf_set(lpfc_fcf_record_fcf_index, fcf_record, fcf_index);
15334 bf_set(lpfc_fcf_record_mac_addr_prov, fcf_record,
15335 LPFC_FCF_FPMA | LPFC_FCF_SPMA);
15336 /* Set the VLAN bit map */
15337 if (phba->valid_vlan) {
15338 fcf_record->vlan_bitmap[phba->vlan_id / 8]
15339 = 1 << (phba->vlan_id % 8);
15340 }
15341}
15342
15343/**
James Smart0c9ab6f2010-02-26 14:15:57 -050015344 * lpfc_sli4_fcf_scan_read_fcf_rec - Read hba fcf record for fcf scan.
James Smart6fb120a2009-05-22 14:52:59 -040015345 * @phba: pointer to lpfc hba data structure.
15346 * @fcf_index: FCF table entry offset.
15347 *
James Smart0c9ab6f2010-02-26 14:15:57 -050015348 * This routine is invoked to scan the entire FCF table by reading FCF
15349 * record and processing it one at a time starting from the @fcf_index
15350 * for initial FCF discovery or fast FCF failover rediscovery.
15351 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030015352 * Return 0 if the mailbox command is submitted successfully, none 0
James Smart0c9ab6f2010-02-26 14:15:57 -050015353 * otherwise.
James Smart6fb120a2009-05-22 14:52:59 -040015354 **/
15355int
James Smart0c9ab6f2010-02-26 14:15:57 -050015356lpfc_sli4_fcf_scan_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
James Smart6fb120a2009-05-22 14:52:59 -040015357{
15358 int rc = 0, error;
15359 LPFC_MBOXQ_t *mboxq;
James Smart6fb120a2009-05-22 14:52:59 -040015360
James Smart32b97932009-07-19 10:01:21 -040015361 phba->fcoe_eventtag_at_fcf_scan = phba->fcoe_eventtag;
James Smart80c17842012-03-01 22:35:45 -050015362 phba->fcoe_cvl_eventtag_attn = phba->fcoe_cvl_eventtag;
James Smart6fb120a2009-05-22 14:52:59 -040015363 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15364 if (!mboxq) {
15365 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15366 "2000 Failed to allocate mbox for "
15367 "READ_FCF cmd\n");
James Smart4d9ab992009-10-02 15:16:39 -040015368 error = -ENOMEM;
James Smart0c9ab6f2010-02-26 14:15:57 -050015369 goto fail_fcf_scan;
James Smart6fb120a2009-05-22 14:52:59 -040015370 }
James Smartecfd03c2010-02-12 14:41:27 -050015371 /* Construct the read FCF record mailbox command */
James Smart0c9ab6f2010-02-26 14:15:57 -050015372 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
James Smartecfd03c2010-02-12 14:41:27 -050015373 if (rc) {
15374 error = -EINVAL;
James Smart0c9ab6f2010-02-26 14:15:57 -050015375 goto fail_fcf_scan;
James Smart6fb120a2009-05-22 14:52:59 -040015376 }
James Smartecfd03c2010-02-12 14:41:27 -050015377 /* Issue the mailbox command asynchronously */
James Smart6fb120a2009-05-22 14:52:59 -040015378 mboxq->vport = phba->pport;
James Smart0c9ab6f2010-02-26 14:15:57 -050015379 mboxq->mbox_cmpl = lpfc_mbx_cmpl_fcf_scan_read_fcf_rec;
James Smarta93ff372010-10-22 11:06:08 -040015380
15381 spin_lock_irq(&phba->hbalock);
15382 phba->hba_flag |= FCF_TS_INPROG;
15383 spin_unlock_irq(&phba->hbalock);
15384
James Smart6fb120a2009-05-22 14:52:59 -040015385 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
James Smartecfd03c2010-02-12 14:41:27 -050015386 if (rc == MBX_NOT_FINISHED)
James Smart6fb120a2009-05-22 14:52:59 -040015387 error = -EIO;
James Smartecfd03c2010-02-12 14:41:27 -050015388 else {
James Smart38b92ef2010-08-04 16:11:39 -040015389 /* Reset eligible FCF count for new scan */
15390 if (fcf_index == LPFC_FCOE_FCF_GET_FIRST)
James Smart999d8132010-03-15 11:24:56 -040015391 phba->fcf.eligible_fcf_cnt = 0;
James Smart6fb120a2009-05-22 14:52:59 -040015392 error = 0;
James Smart32b97932009-07-19 10:01:21 -040015393 }
James Smart0c9ab6f2010-02-26 14:15:57 -050015394fail_fcf_scan:
James Smart4d9ab992009-10-02 15:16:39 -040015395 if (error) {
15396 if (mboxq)
15397 lpfc_sli4_mbox_cmd_free(phba, mboxq);
James Smarta93ff372010-10-22 11:06:08 -040015398 /* FCF scan failed, clear FCF_TS_INPROG flag */
James Smart4d9ab992009-10-02 15:16:39 -040015399 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -040015400 phba->hba_flag &= ~FCF_TS_INPROG;
James Smart4d9ab992009-10-02 15:16:39 -040015401 spin_unlock_irq(&phba->hbalock);
15402 }
James Smart6fb120a2009-05-22 14:52:59 -040015403 return error;
15404}
James Smarta0c87cb2009-07-19 10:01:10 -040015405
15406/**
James Smarta93ff372010-10-22 11:06:08 -040015407 * lpfc_sli4_fcf_rr_read_fcf_rec - Read hba fcf record for roundrobin fcf.
James Smart0c9ab6f2010-02-26 14:15:57 -050015408 * @phba: pointer to lpfc hba data structure.
15409 * @fcf_index: FCF table entry offset.
15410 *
15411 * This routine is invoked to read an FCF record indicated by @fcf_index
James Smarta93ff372010-10-22 11:06:08 -040015412 * and to use it for FLOGI roundrobin FCF failover.
James Smart0c9ab6f2010-02-26 14:15:57 -050015413 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030015414 * Return 0 if the mailbox command is submitted successfully, none 0
James Smart0c9ab6f2010-02-26 14:15:57 -050015415 * otherwise.
15416 **/
15417int
15418lpfc_sli4_fcf_rr_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
15419{
15420 int rc = 0, error;
15421 LPFC_MBOXQ_t *mboxq;
15422
15423 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15424 if (!mboxq) {
15425 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_INIT,
15426 "2763 Failed to allocate mbox for "
15427 "READ_FCF cmd\n");
15428 error = -ENOMEM;
15429 goto fail_fcf_read;
15430 }
15431 /* Construct the read FCF record mailbox command */
15432 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
15433 if (rc) {
15434 error = -EINVAL;
15435 goto fail_fcf_read;
15436 }
15437 /* Issue the mailbox command asynchronously */
15438 mboxq->vport = phba->pport;
15439 mboxq->mbox_cmpl = lpfc_mbx_cmpl_fcf_rr_read_fcf_rec;
15440 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
15441 if (rc == MBX_NOT_FINISHED)
15442 error = -EIO;
15443 else
15444 error = 0;
15445
15446fail_fcf_read:
15447 if (error && mboxq)
15448 lpfc_sli4_mbox_cmd_free(phba, mboxq);
15449 return error;
15450}
15451
15452/**
15453 * lpfc_sli4_read_fcf_rec - Read hba fcf record for update eligible fcf bmask.
15454 * @phba: pointer to lpfc hba data structure.
15455 * @fcf_index: FCF table entry offset.
15456 *
15457 * This routine is invoked to read an FCF record indicated by @fcf_index to
James Smarta93ff372010-10-22 11:06:08 -040015458 * determine whether it's eligible for FLOGI roundrobin failover list.
James Smart0c9ab6f2010-02-26 14:15:57 -050015459 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030015460 * Return 0 if the mailbox command is submitted successfully, none 0
James Smart0c9ab6f2010-02-26 14:15:57 -050015461 * otherwise.
15462 **/
15463int
15464lpfc_sli4_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
15465{
15466 int rc = 0, error;
15467 LPFC_MBOXQ_t *mboxq;
15468
15469 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15470 if (!mboxq) {
15471 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_INIT,
15472 "2758 Failed to allocate mbox for "
15473 "READ_FCF cmd\n");
15474 error = -ENOMEM;
15475 goto fail_fcf_read;
15476 }
15477 /* Construct the read FCF record mailbox command */
15478 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
15479 if (rc) {
15480 error = -EINVAL;
15481 goto fail_fcf_read;
15482 }
15483 /* Issue the mailbox command asynchronously */
15484 mboxq->vport = phba->pport;
15485 mboxq->mbox_cmpl = lpfc_mbx_cmpl_read_fcf_rec;
15486 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
15487 if (rc == MBX_NOT_FINISHED)
15488 error = -EIO;
15489 else
15490 error = 0;
15491
15492fail_fcf_read:
15493 if (error && mboxq)
15494 lpfc_sli4_mbox_cmd_free(phba, mboxq);
15495 return error;
15496}
15497
15498/**
James Smart7d791df2011-07-22 18:37:52 -040015499 * lpfc_check_next_fcf_pri
15500 * phba pointer to the lpfc_hba struct for this port.
15501 * This routine is called from the lpfc_sli4_fcf_rr_next_index_get
15502 * routine when the rr_bmask is empty. The FCF indecies are put into the
15503 * rr_bmask based on their priority level. Starting from the highest priority
15504 * to the lowest. The most likely FCF candidate will be in the highest
15505 * priority group. When this routine is called it searches the fcf_pri list for
15506 * next lowest priority group and repopulates the rr_bmask with only those
15507 * fcf_indexes.
15508 * returns:
15509 * 1=success 0=failure
15510 **/
15511int
15512lpfc_check_next_fcf_pri_level(struct lpfc_hba *phba)
15513{
15514 uint16_t next_fcf_pri;
15515 uint16_t last_index;
15516 struct lpfc_fcf_pri *fcf_pri;
15517 int rc;
15518 int ret = 0;
15519
15520 last_index = find_first_bit(phba->fcf.fcf_rr_bmask,
15521 LPFC_SLI4_FCF_TBL_INDX_MAX);
15522 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
15523 "3060 Last IDX %d\n", last_index);
James Smart25626692013-03-01 16:36:54 -050015524
15525 /* Verify the priority list has 2 or more entries */
15526 spin_lock_irq(&phba->hbalock);
15527 if (list_empty(&phba->fcf.fcf_pri_list) ||
15528 list_is_singular(&phba->fcf.fcf_pri_list)) {
15529 spin_unlock_irq(&phba->hbalock);
James Smart7d791df2011-07-22 18:37:52 -040015530 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
15531 "3061 Last IDX %d\n", last_index);
15532 return 0; /* Empty rr list */
15533 }
James Smart25626692013-03-01 16:36:54 -050015534 spin_unlock_irq(&phba->hbalock);
15535
James Smart7d791df2011-07-22 18:37:52 -040015536 next_fcf_pri = 0;
15537 /*
15538 * Clear the rr_bmask and set all of the bits that are at this
15539 * priority.
15540 */
15541 memset(phba->fcf.fcf_rr_bmask, 0,
15542 sizeof(*phba->fcf.fcf_rr_bmask));
15543 spin_lock_irq(&phba->hbalock);
15544 list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
15545 if (fcf_pri->fcf_rec.flag & LPFC_FCF_FLOGI_FAILED)
15546 continue;
15547 /*
15548 * the 1st priority that has not FLOGI failed
15549 * will be the highest.
15550 */
15551 if (!next_fcf_pri)
15552 next_fcf_pri = fcf_pri->fcf_rec.priority;
15553 spin_unlock_irq(&phba->hbalock);
15554 if (fcf_pri->fcf_rec.priority == next_fcf_pri) {
15555 rc = lpfc_sli4_fcf_rr_index_set(phba,
15556 fcf_pri->fcf_rec.fcf_index);
15557 if (rc)
15558 return 0;
15559 }
15560 spin_lock_irq(&phba->hbalock);
15561 }
15562 /*
15563 * if next_fcf_pri was not set above and the list is not empty then
15564 * we have failed flogis on all of them. So reset flogi failed
Anatol Pomozov4907cb72012-09-01 10:31:09 -070015565 * and start at the beginning.
James Smart7d791df2011-07-22 18:37:52 -040015566 */
15567 if (!next_fcf_pri && !list_empty(&phba->fcf.fcf_pri_list)) {
15568 list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
15569 fcf_pri->fcf_rec.flag &= ~LPFC_FCF_FLOGI_FAILED;
15570 /*
15571 * the 1st priority that has not FLOGI failed
15572 * will be the highest.
15573 */
15574 if (!next_fcf_pri)
15575 next_fcf_pri = fcf_pri->fcf_rec.priority;
15576 spin_unlock_irq(&phba->hbalock);
15577 if (fcf_pri->fcf_rec.priority == next_fcf_pri) {
15578 rc = lpfc_sli4_fcf_rr_index_set(phba,
15579 fcf_pri->fcf_rec.fcf_index);
15580 if (rc)
15581 return 0;
15582 }
15583 spin_lock_irq(&phba->hbalock);
15584 }
15585 } else
15586 ret = 1;
15587 spin_unlock_irq(&phba->hbalock);
15588
15589 return ret;
15590}
15591/**
James Smart0c9ab6f2010-02-26 14:15:57 -050015592 * lpfc_sli4_fcf_rr_next_index_get - Get next eligible fcf record index
15593 * @phba: pointer to lpfc hba data structure.
15594 *
15595 * This routine is to get the next eligible FCF record index in a round
15596 * robin fashion. If the next eligible FCF record index equals to the
James Smarta93ff372010-10-22 11:06:08 -040015597 * initial roundrobin FCF record index, LPFC_FCOE_FCF_NEXT_NONE (0xFFFF)
James Smart0c9ab6f2010-02-26 14:15:57 -050015598 * shall be returned, otherwise, the next eligible FCF record's index
15599 * shall be returned.
15600 **/
15601uint16_t
15602lpfc_sli4_fcf_rr_next_index_get(struct lpfc_hba *phba)
15603{
15604 uint16_t next_fcf_index;
15605
James Smart421c6622013-01-03 15:44:16 -050015606initial_priority:
James Smart3804dc82010-07-14 15:31:37 -040015607 /* Search start from next bit of currently registered FCF index */
James Smart421c6622013-01-03 15:44:16 -050015608 next_fcf_index = phba->fcf.current_rec.fcf_indx;
15609
James Smart7d791df2011-07-22 18:37:52 -040015610next_priority:
James Smart421c6622013-01-03 15:44:16 -050015611 /* Determine the next fcf index to check */
15612 next_fcf_index = (next_fcf_index + 1) % LPFC_SLI4_FCF_TBL_INDX_MAX;
James Smart0c9ab6f2010-02-26 14:15:57 -050015613 next_fcf_index = find_next_bit(phba->fcf.fcf_rr_bmask,
15614 LPFC_SLI4_FCF_TBL_INDX_MAX,
James Smart3804dc82010-07-14 15:31:37 -040015615 next_fcf_index);
15616
James Smart0c9ab6f2010-02-26 14:15:57 -050015617 /* Wrap around condition on phba->fcf.fcf_rr_bmask */
James Smart7d791df2011-07-22 18:37:52 -040015618 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
15619 /*
15620 * If we have wrapped then we need to clear the bits that
15621 * have been tested so that we can detect when we should
15622 * change the priority level.
15623 */
James Smart0c9ab6f2010-02-26 14:15:57 -050015624 next_fcf_index = find_next_bit(phba->fcf.fcf_rr_bmask,
15625 LPFC_SLI4_FCF_TBL_INDX_MAX, 0);
James Smart7d791df2011-07-22 18:37:52 -040015626 }
15627
James Smart0c9ab6f2010-02-26 14:15:57 -050015628
James Smart3804dc82010-07-14 15:31:37 -040015629 /* Check roundrobin failover list empty condition */
James Smart7d791df2011-07-22 18:37:52 -040015630 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX ||
15631 next_fcf_index == phba->fcf.current_rec.fcf_indx) {
15632 /*
15633 * If next fcf index is not found check if there are lower
15634 * Priority level fcf's in the fcf_priority list.
15635 * Set up the rr_bmask with all of the avaiable fcf bits
15636 * at that level and continue the selection process.
15637 */
15638 if (lpfc_check_next_fcf_pri_level(phba))
James Smart421c6622013-01-03 15:44:16 -050015639 goto initial_priority;
James Smart3804dc82010-07-14 15:31:37 -040015640 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
15641 "2844 No roundrobin failover FCF available\n");
James Smart7d791df2011-07-22 18:37:52 -040015642 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX)
15643 return LPFC_FCOE_FCF_NEXT_NONE;
15644 else {
15645 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
15646 "3063 Only FCF available idx %d, flag %x\n",
15647 next_fcf_index,
15648 phba->fcf.fcf_pri[next_fcf_index].fcf_rec.flag);
15649 return next_fcf_index;
15650 }
James Smart3804dc82010-07-14 15:31:37 -040015651 }
15652
James Smart7d791df2011-07-22 18:37:52 -040015653 if (next_fcf_index < LPFC_SLI4_FCF_TBL_INDX_MAX &&
15654 phba->fcf.fcf_pri[next_fcf_index].fcf_rec.flag &
15655 LPFC_FCF_FLOGI_FAILED)
15656 goto next_priority;
15657
James Smart3804dc82010-07-14 15:31:37 -040015658 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040015659 "2845 Get next roundrobin failover FCF (x%x)\n",
15660 next_fcf_index);
15661
James Smart0c9ab6f2010-02-26 14:15:57 -050015662 return next_fcf_index;
15663}
15664
15665/**
15666 * lpfc_sli4_fcf_rr_index_set - Set bmask with eligible fcf record index
15667 * @phba: pointer to lpfc hba data structure.
15668 *
15669 * This routine sets the FCF record index in to the eligible bmask for
James Smarta93ff372010-10-22 11:06:08 -040015670 * roundrobin failover search. It checks to make sure that the index
James Smart0c9ab6f2010-02-26 14:15:57 -050015671 * does not go beyond the range of the driver allocated bmask dimension
15672 * before setting the bit.
15673 *
15674 * Returns 0 if the index bit successfully set, otherwise, it returns
15675 * -EINVAL.
15676 **/
15677int
15678lpfc_sli4_fcf_rr_index_set(struct lpfc_hba *phba, uint16_t fcf_index)
15679{
15680 if (fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
15681 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040015682 "2610 FCF (x%x) reached driver's book "
15683 "keeping dimension:x%x\n",
James Smart0c9ab6f2010-02-26 14:15:57 -050015684 fcf_index, LPFC_SLI4_FCF_TBL_INDX_MAX);
15685 return -EINVAL;
15686 }
15687 /* Set the eligible FCF record index bmask */
15688 set_bit(fcf_index, phba->fcf.fcf_rr_bmask);
15689
James Smart3804dc82010-07-14 15:31:37 -040015690 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040015691 "2790 Set FCF (x%x) to roundrobin FCF failover "
James Smart3804dc82010-07-14 15:31:37 -040015692 "bmask\n", fcf_index);
15693
James Smart0c9ab6f2010-02-26 14:15:57 -050015694 return 0;
15695}
15696
15697/**
James Smart3804dc82010-07-14 15:31:37 -040015698 * lpfc_sli4_fcf_rr_index_clear - Clear bmask from eligible fcf record index
James Smart0c9ab6f2010-02-26 14:15:57 -050015699 * @phba: pointer to lpfc hba data structure.
15700 *
15701 * This routine clears the FCF record index from the eligible bmask for
James Smarta93ff372010-10-22 11:06:08 -040015702 * roundrobin failover search. It checks to make sure that the index
James Smart0c9ab6f2010-02-26 14:15:57 -050015703 * does not go beyond the range of the driver allocated bmask dimension
15704 * before clearing the bit.
15705 **/
15706void
15707lpfc_sli4_fcf_rr_index_clear(struct lpfc_hba *phba, uint16_t fcf_index)
15708{
James Smart7d791df2011-07-22 18:37:52 -040015709 struct lpfc_fcf_pri *fcf_pri;
James Smart0c9ab6f2010-02-26 14:15:57 -050015710 if (fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
15711 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040015712 "2762 FCF (x%x) reached driver's book "
15713 "keeping dimension:x%x\n",
James Smart0c9ab6f2010-02-26 14:15:57 -050015714 fcf_index, LPFC_SLI4_FCF_TBL_INDX_MAX);
15715 return;
15716 }
15717 /* Clear the eligible FCF record index bmask */
James Smart7d791df2011-07-22 18:37:52 -040015718 spin_lock_irq(&phba->hbalock);
15719 list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
15720 if (fcf_pri->fcf_rec.fcf_index == fcf_index) {
15721 list_del_init(&fcf_pri->list);
15722 break;
15723 }
15724 }
15725 spin_unlock_irq(&phba->hbalock);
James Smart0c9ab6f2010-02-26 14:15:57 -050015726 clear_bit(fcf_index, phba->fcf.fcf_rr_bmask);
James Smart3804dc82010-07-14 15:31:37 -040015727
15728 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040015729 "2791 Clear FCF (x%x) from roundrobin failover "
James Smart3804dc82010-07-14 15:31:37 -040015730 "bmask\n", fcf_index);
James Smart0c9ab6f2010-02-26 14:15:57 -050015731}
15732
15733/**
James Smartecfd03c2010-02-12 14:41:27 -050015734 * lpfc_mbx_cmpl_redisc_fcf_table - completion routine for rediscover FCF table
15735 * @phba: pointer to lpfc hba data structure.
15736 *
15737 * This routine is the completion routine for the rediscover FCF table mailbox
15738 * command. If the mailbox command returned failure, it will try to stop the
15739 * FCF rediscover wait timer.
15740 **/
15741void
15742lpfc_mbx_cmpl_redisc_fcf_table(struct lpfc_hba *phba, LPFC_MBOXQ_t *mbox)
15743{
15744 struct lpfc_mbx_redisc_fcf_tbl *redisc_fcf;
15745 uint32_t shdr_status, shdr_add_status;
15746
15747 redisc_fcf = &mbox->u.mqe.un.redisc_fcf_tbl;
15748
15749 shdr_status = bf_get(lpfc_mbox_hdr_status,
15750 &redisc_fcf->header.cfg_shdr.response);
15751 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status,
15752 &redisc_fcf->header.cfg_shdr.response);
15753 if (shdr_status || shdr_add_status) {
James Smart0c9ab6f2010-02-26 14:15:57 -050015754 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smartecfd03c2010-02-12 14:41:27 -050015755 "2746 Requesting for FCF rediscovery failed "
15756 "status x%x add_status x%x\n",
15757 shdr_status, shdr_add_status);
James Smart0c9ab6f2010-02-26 14:15:57 -050015758 if (phba->fcf.fcf_flag & FCF_ACVL_DISC) {
James Smartfc2b9892010-02-26 14:15:29 -050015759 spin_lock_irq(&phba->hbalock);
James Smart0c9ab6f2010-02-26 14:15:57 -050015760 phba->fcf.fcf_flag &= ~FCF_ACVL_DISC;
James Smartfc2b9892010-02-26 14:15:29 -050015761 spin_unlock_irq(&phba->hbalock);
15762 /*
15763 * CVL event triggered FCF rediscover request failed,
15764 * last resort to re-try current registered FCF entry.
15765 */
15766 lpfc_retry_pport_discovery(phba);
15767 } else {
15768 spin_lock_irq(&phba->hbalock);
James Smart0c9ab6f2010-02-26 14:15:57 -050015769 phba->fcf.fcf_flag &= ~FCF_DEAD_DISC;
James Smartfc2b9892010-02-26 14:15:29 -050015770 spin_unlock_irq(&phba->hbalock);
15771 /*
15772 * DEAD FCF event triggered FCF rediscover request
15773 * failed, last resort to fail over as a link down
15774 * to FCF registration.
15775 */
15776 lpfc_sli4_fcf_dead_failthrough(phba);
15777 }
James Smart0c9ab6f2010-02-26 14:15:57 -050015778 } else {
15779 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040015780 "2775 Start FCF rediscover quiescent timer\n");
James Smartecfd03c2010-02-12 14:41:27 -050015781 /*
15782 * Start FCF rediscovery wait timer for pending FCF
15783 * before rescan FCF record table.
15784 */
15785 lpfc_fcf_redisc_wait_start_timer(phba);
James Smart0c9ab6f2010-02-26 14:15:57 -050015786 }
James Smartecfd03c2010-02-12 14:41:27 -050015787
15788 mempool_free(mbox, phba->mbox_mem_pool);
15789}
15790
15791/**
James Smart3804dc82010-07-14 15:31:37 -040015792 * lpfc_sli4_redisc_fcf_table - Request to rediscover entire FCF table by port.
James Smartecfd03c2010-02-12 14:41:27 -050015793 * @phba: pointer to lpfc hba data structure.
15794 *
15795 * This routine is invoked to request for rediscovery of the entire FCF table
15796 * by the port.
15797 **/
15798int
15799lpfc_sli4_redisc_fcf_table(struct lpfc_hba *phba)
15800{
15801 LPFC_MBOXQ_t *mbox;
15802 struct lpfc_mbx_redisc_fcf_tbl *redisc_fcf;
15803 int rc, length;
15804
James Smart0c9ab6f2010-02-26 14:15:57 -050015805 /* Cancel retry delay timers to all vports before FCF rediscover */
15806 lpfc_cancel_all_vport_retry_delay_timer(phba);
15807
James Smartecfd03c2010-02-12 14:41:27 -050015808 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15809 if (!mbox) {
15810 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15811 "2745 Failed to allocate mbox for "
15812 "requesting FCF rediscover.\n");
15813 return -ENOMEM;
15814 }
15815
15816 length = (sizeof(struct lpfc_mbx_redisc_fcf_tbl) -
15817 sizeof(struct lpfc_sli4_cfg_mhdr));
15818 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
15819 LPFC_MBOX_OPCODE_FCOE_REDISCOVER_FCF,
15820 length, LPFC_SLI4_MBX_EMBED);
15821
15822 redisc_fcf = &mbox->u.mqe.un.redisc_fcf_tbl;
15823 /* Set count to 0 for invalidating the entire FCF database */
15824 bf_set(lpfc_mbx_redisc_fcf_count, redisc_fcf, 0);
15825
15826 /* Issue the mailbox command asynchronously */
15827 mbox->vport = phba->pport;
15828 mbox->mbox_cmpl = lpfc_mbx_cmpl_redisc_fcf_table;
15829 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
15830
15831 if (rc == MBX_NOT_FINISHED) {
15832 mempool_free(mbox, phba->mbox_mem_pool);
15833 return -EIO;
15834 }
15835 return 0;
15836}
15837
15838/**
James Smartfc2b9892010-02-26 14:15:29 -050015839 * lpfc_sli4_fcf_dead_failthrough - Failthrough routine to fcf dead event
15840 * @phba: pointer to lpfc hba data structure.
15841 *
15842 * This function is the failover routine as a last resort to the FCF DEAD
15843 * event when driver failed to perform fast FCF failover.
15844 **/
15845void
15846lpfc_sli4_fcf_dead_failthrough(struct lpfc_hba *phba)
15847{
15848 uint32_t link_state;
15849
15850 /*
15851 * Last resort as FCF DEAD event failover will treat this as
15852 * a link down, but save the link state because we don't want
15853 * it to be changed to Link Down unless it is already down.
15854 */
15855 link_state = phba->link_state;
15856 lpfc_linkdown(phba);
15857 phba->link_state = link_state;
15858
15859 /* Unregister FCF if no devices connected to it */
15860 lpfc_unregister_unused_fcf(phba);
15861}
15862
15863/**
James Smart026abb82011-12-13 13:20:45 -050015864 * lpfc_sli_get_config_region23 - Get sli3 port region 23 data.
James Smarta0c87cb2009-07-19 10:01:10 -040015865 * @phba: pointer to lpfc hba data structure.
James Smart026abb82011-12-13 13:20:45 -050015866 * @rgn23_data: pointer to configure region 23 data.
James Smarta0c87cb2009-07-19 10:01:10 -040015867 *
James Smart026abb82011-12-13 13:20:45 -050015868 * This function gets SLI3 port configure region 23 data through memory dump
15869 * mailbox command. When it successfully retrieves data, the size of the data
15870 * will be returned, otherwise, 0 will be returned.
James Smarta0c87cb2009-07-19 10:01:10 -040015871 **/
James Smart026abb82011-12-13 13:20:45 -050015872static uint32_t
15873lpfc_sli_get_config_region23(struct lpfc_hba *phba, char *rgn23_data)
James Smarta0c87cb2009-07-19 10:01:10 -040015874{
15875 LPFC_MBOXQ_t *pmb = NULL;
15876 MAILBOX_t *mb;
James Smart026abb82011-12-13 13:20:45 -050015877 uint32_t offset = 0;
James Smarta0c87cb2009-07-19 10:01:10 -040015878 int rc;
15879
James Smart026abb82011-12-13 13:20:45 -050015880 if (!rgn23_data)
15881 return 0;
15882
James Smarta0c87cb2009-07-19 10:01:10 -040015883 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15884 if (!pmb) {
15885 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart026abb82011-12-13 13:20:45 -050015886 "2600 failed to allocate mailbox memory\n");
15887 return 0;
James Smarta0c87cb2009-07-19 10:01:10 -040015888 }
15889 mb = &pmb->u.mb;
15890
James Smarta0c87cb2009-07-19 10:01:10 -040015891 do {
15892 lpfc_dump_mem(phba, pmb, offset, DMP_REGION_23);
15893 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
15894
15895 if (rc != MBX_SUCCESS) {
15896 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smart026abb82011-12-13 13:20:45 -050015897 "2601 failed to read config "
15898 "region 23, rc 0x%x Status 0x%x\n",
15899 rc, mb->mbxStatus);
James Smarta0c87cb2009-07-19 10:01:10 -040015900 mb->un.varDmp.word_cnt = 0;
15901 }
15902 /*
15903 * dump mem may return a zero when finished or we got a
15904 * mailbox error, either way we are done.
15905 */
15906 if (mb->un.varDmp.word_cnt == 0)
15907 break;
15908 if (mb->un.varDmp.word_cnt > DMP_RGN23_SIZE - offset)
15909 mb->un.varDmp.word_cnt = DMP_RGN23_SIZE - offset;
15910
15911 lpfc_sli_pcimem_bcopy(((uint8_t *)mb) + DMP_RSP_OFFSET,
James Smart026abb82011-12-13 13:20:45 -050015912 rgn23_data + offset,
15913 mb->un.varDmp.word_cnt);
James Smarta0c87cb2009-07-19 10:01:10 -040015914 offset += mb->un.varDmp.word_cnt;
15915 } while (mb->un.varDmp.word_cnt && offset < DMP_RGN23_SIZE);
15916
James Smart026abb82011-12-13 13:20:45 -050015917 mempool_free(pmb, phba->mbox_mem_pool);
15918 return offset;
15919}
15920
15921/**
15922 * lpfc_sli4_get_config_region23 - Get sli4 port region 23 data.
15923 * @phba: pointer to lpfc hba data structure.
15924 * @rgn23_data: pointer to configure region 23 data.
15925 *
15926 * This function gets SLI4 port configure region 23 data through memory dump
15927 * mailbox command. When it successfully retrieves data, the size of the data
15928 * will be returned, otherwise, 0 will be returned.
15929 **/
15930static uint32_t
15931lpfc_sli4_get_config_region23(struct lpfc_hba *phba, char *rgn23_data)
15932{
15933 LPFC_MBOXQ_t *mboxq = NULL;
15934 struct lpfc_dmabuf *mp = NULL;
15935 struct lpfc_mqe *mqe;
15936 uint32_t data_length = 0;
15937 int rc;
15938
15939 if (!rgn23_data)
15940 return 0;
15941
15942 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15943 if (!mboxq) {
15944 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15945 "3105 failed to allocate mailbox memory\n");
15946 return 0;
15947 }
15948
15949 if (lpfc_sli4_dump_cfg_rg23(phba, mboxq))
15950 goto out;
15951 mqe = &mboxq->u.mqe;
15952 mp = (struct lpfc_dmabuf *) mboxq->context1;
15953 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
15954 if (rc)
15955 goto out;
15956 data_length = mqe->un.mb_words[5];
15957 if (data_length == 0)
15958 goto out;
15959 if (data_length > DMP_RGN23_SIZE) {
15960 data_length = 0;
15961 goto out;
15962 }
15963 lpfc_sli_pcimem_bcopy((char *)mp->virt, rgn23_data, data_length);
15964out:
15965 mempool_free(mboxq, phba->mbox_mem_pool);
15966 if (mp) {
15967 lpfc_mbuf_free(phba, mp->virt, mp->phys);
15968 kfree(mp);
15969 }
15970 return data_length;
15971}
15972
15973/**
15974 * lpfc_sli_read_link_ste - Read region 23 to decide if link is disabled.
15975 * @phba: pointer to lpfc hba data structure.
15976 *
15977 * This function read region 23 and parse TLV for port status to
15978 * decide if the user disaled the port. If the TLV indicates the
15979 * port is disabled, the hba_flag is set accordingly.
15980 **/
15981void
15982lpfc_sli_read_link_ste(struct lpfc_hba *phba)
15983{
15984 uint8_t *rgn23_data = NULL;
15985 uint32_t if_type, data_size, sub_tlv_len, tlv_offset;
15986 uint32_t offset = 0;
15987
15988 /* Get adapter Region 23 data */
15989 rgn23_data = kzalloc(DMP_RGN23_SIZE, GFP_KERNEL);
15990 if (!rgn23_data)
15991 goto out;
15992
15993 if (phba->sli_rev < LPFC_SLI_REV4)
15994 data_size = lpfc_sli_get_config_region23(phba, rgn23_data);
15995 else {
15996 if_type = bf_get(lpfc_sli_intf_if_type,
15997 &phba->sli4_hba.sli_intf);
15998 if (if_type == LPFC_SLI_INTF_IF_TYPE_0)
15999 goto out;
16000 data_size = lpfc_sli4_get_config_region23(phba, rgn23_data);
16001 }
James Smarta0c87cb2009-07-19 10:01:10 -040016002
16003 if (!data_size)
16004 goto out;
16005
16006 /* Check the region signature first */
16007 if (memcmp(&rgn23_data[offset], LPFC_REGION23_SIGNATURE, 4)) {
16008 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16009 "2619 Config region 23 has bad signature\n");
16010 goto out;
16011 }
16012 offset += 4;
16013
16014 /* Check the data structure version */
16015 if (rgn23_data[offset] != LPFC_REGION23_VERSION) {
16016 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16017 "2620 Config region 23 has bad version\n");
16018 goto out;
16019 }
16020 offset += 4;
16021
16022 /* Parse TLV entries in the region */
16023 while (offset < data_size) {
16024 if (rgn23_data[offset] == LPFC_REGION23_LAST_REC)
16025 break;
16026 /*
16027 * If the TLV is not driver specific TLV or driver id is
16028 * not linux driver id, skip the record.
16029 */
16030 if ((rgn23_data[offset] != DRIVER_SPECIFIC_TYPE) ||
16031 (rgn23_data[offset + 2] != LINUX_DRIVER_ID) ||
16032 (rgn23_data[offset + 3] != 0)) {
16033 offset += rgn23_data[offset + 1] * 4 + 4;
16034 continue;
16035 }
16036
16037 /* Driver found a driver specific TLV in the config region */
16038 sub_tlv_len = rgn23_data[offset + 1] * 4;
16039 offset += 4;
16040 tlv_offset = 0;
16041
16042 /*
16043 * Search for configured port state sub-TLV.
16044 */
16045 while ((offset < data_size) &&
16046 (tlv_offset < sub_tlv_len)) {
16047 if (rgn23_data[offset] == LPFC_REGION23_LAST_REC) {
16048 offset += 4;
16049 tlv_offset += 4;
16050 break;
16051 }
16052 if (rgn23_data[offset] != PORT_STE_TYPE) {
16053 offset += rgn23_data[offset + 1] * 4 + 4;
16054 tlv_offset += rgn23_data[offset + 1] * 4 + 4;
16055 continue;
16056 }
16057
16058 /* This HBA contains PORT_STE configured */
16059 if (!rgn23_data[offset + 2])
16060 phba->hba_flag |= LINK_DISABLED;
16061
16062 goto out;
16063 }
16064 }
James Smart026abb82011-12-13 13:20:45 -050016065
James Smarta0c87cb2009-07-19 10:01:10 -040016066out:
James Smarta0c87cb2009-07-19 10:01:10 -040016067 kfree(rgn23_data);
16068 return;
16069}
James Smart695a8142010-01-26 23:08:03 -050016070
16071/**
James Smart52d52442011-05-24 11:42:45 -040016072 * lpfc_wr_object - write an object to the firmware
16073 * @phba: HBA structure that indicates port to create a queue on.
16074 * @dmabuf_list: list of dmabufs to write to the port.
16075 * @size: the total byte value of the objects to write to the port.
16076 * @offset: the current offset to be used to start the transfer.
16077 *
16078 * This routine will create a wr_object mailbox command to send to the port.
16079 * the mailbox command will be constructed using the dma buffers described in
16080 * @dmabuf_list to create a list of BDEs. This routine will fill in as many
16081 * BDEs that the imbedded mailbox can support. The @offset variable will be
16082 * used to indicate the starting offset of the transfer and will also return
16083 * the offset after the write object mailbox has completed. @size is used to
16084 * determine the end of the object and whether the eof bit should be set.
16085 *
16086 * Return 0 is successful and offset will contain the the new offset to use
16087 * for the next write.
16088 * Return negative value for error cases.
16089 **/
16090int
16091lpfc_wr_object(struct lpfc_hba *phba, struct list_head *dmabuf_list,
16092 uint32_t size, uint32_t *offset)
16093{
16094 struct lpfc_mbx_wr_object *wr_object;
16095 LPFC_MBOXQ_t *mbox;
16096 int rc = 0, i = 0;
16097 uint32_t shdr_status, shdr_add_status;
16098 uint32_t mbox_tmo;
16099 union lpfc_sli4_cfg_shdr *shdr;
16100 struct lpfc_dmabuf *dmabuf;
16101 uint32_t written = 0;
16102
16103 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16104 if (!mbox)
16105 return -ENOMEM;
16106
16107 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
16108 LPFC_MBOX_OPCODE_WRITE_OBJECT,
16109 sizeof(struct lpfc_mbx_wr_object) -
16110 sizeof(struct lpfc_sli4_cfg_mhdr), LPFC_SLI4_MBX_EMBED);
16111
16112 wr_object = (struct lpfc_mbx_wr_object *)&mbox->u.mqe.un.wr_object;
16113 wr_object->u.request.write_offset = *offset;
16114 sprintf((uint8_t *)wr_object->u.request.object_name, "/");
16115 wr_object->u.request.object_name[0] =
16116 cpu_to_le32(wr_object->u.request.object_name[0]);
16117 bf_set(lpfc_wr_object_eof, &wr_object->u.request, 0);
16118 list_for_each_entry(dmabuf, dmabuf_list, list) {
16119 if (i >= LPFC_MBX_WR_CONFIG_MAX_BDE || written >= size)
16120 break;
16121 wr_object->u.request.bde[i].addrLow = putPaddrLow(dmabuf->phys);
16122 wr_object->u.request.bde[i].addrHigh =
16123 putPaddrHigh(dmabuf->phys);
16124 if (written + SLI4_PAGE_SIZE >= size) {
16125 wr_object->u.request.bde[i].tus.f.bdeSize =
16126 (size - written);
16127 written += (size - written);
16128 bf_set(lpfc_wr_object_eof, &wr_object->u.request, 1);
16129 } else {
16130 wr_object->u.request.bde[i].tus.f.bdeSize =
16131 SLI4_PAGE_SIZE;
16132 written += SLI4_PAGE_SIZE;
16133 }
16134 i++;
16135 }
16136 wr_object->u.request.bde_count = i;
16137 bf_set(lpfc_wr_object_write_length, &wr_object->u.request, written);
16138 if (!phba->sli4_hba.intr_enable)
16139 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
16140 else {
James Smarta183a152011-10-10 21:32:43 -040016141 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart52d52442011-05-24 11:42:45 -040016142 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
16143 }
16144 /* The IOCTL status is embedded in the mailbox subheader. */
16145 shdr = (union lpfc_sli4_cfg_shdr *) &wr_object->header.cfg_shdr;
16146 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
16147 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
16148 if (rc != MBX_TIMEOUT)
16149 mempool_free(mbox, phba->mbox_mem_pool);
16150 if (shdr_status || shdr_add_status || rc) {
16151 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16152 "3025 Write Object mailbox failed with "
16153 "status x%x add_status x%x, mbx status x%x\n",
16154 shdr_status, shdr_add_status, rc);
16155 rc = -ENXIO;
16156 } else
16157 *offset += wr_object->u.response.actual_write_length;
16158 return rc;
16159}
16160
16161/**
James Smart695a8142010-01-26 23:08:03 -050016162 * lpfc_cleanup_pending_mbox - Free up vport discovery mailbox commands.
16163 * @vport: pointer to vport data structure.
16164 *
16165 * This function iterate through the mailboxq and clean up all REG_LOGIN
16166 * and REG_VPI mailbox commands associated with the vport. This function
16167 * is called when driver want to restart discovery of the vport due to
16168 * a Clear Virtual Link event.
16169 **/
16170void
16171lpfc_cleanup_pending_mbox(struct lpfc_vport *vport)
16172{
16173 struct lpfc_hba *phba = vport->phba;
16174 LPFC_MBOXQ_t *mb, *nextmb;
16175 struct lpfc_dmabuf *mp;
James Smart78730cf2010-04-06 15:06:30 -040016176 struct lpfc_nodelist *ndlp;
James Smartd439d282010-09-29 11:18:45 -040016177 struct lpfc_nodelist *act_mbx_ndlp = NULL;
James Smart589a52d2010-07-14 15:30:54 -040016178 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smartd439d282010-09-29 11:18:45 -040016179 LIST_HEAD(mbox_cmd_list);
James Smart63e801c2010-11-20 23:14:19 -050016180 uint8_t restart_loop;
James Smart695a8142010-01-26 23:08:03 -050016181
James Smartd439d282010-09-29 11:18:45 -040016182 /* Clean up internally queued mailbox commands with the vport */
James Smart695a8142010-01-26 23:08:03 -050016183 spin_lock_irq(&phba->hbalock);
16184 list_for_each_entry_safe(mb, nextmb, &phba->sli.mboxq, list) {
16185 if (mb->vport != vport)
16186 continue;
16187
16188 if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) &&
16189 (mb->u.mb.mbxCommand != MBX_REG_VPI))
16190 continue;
16191
James Smartd439d282010-09-29 11:18:45 -040016192 list_del(&mb->list);
16193 list_add_tail(&mb->list, &mbox_cmd_list);
16194 }
16195 /* Clean up active mailbox command with the vport */
16196 mb = phba->sli.mbox_active;
16197 if (mb && (mb->vport == vport)) {
16198 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) ||
16199 (mb->u.mb.mbxCommand == MBX_REG_VPI))
16200 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
16201 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
16202 act_mbx_ndlp = (struct lpfc_nodelist *)mb->context2;
16203 /* Put reference count for delayed processing */
16204 act_mbx_ndlp = lpfc_nlp_get(act_mbx_ndlp);
16205 /* Unregister the RPI when mailbox complete */
16206 mb->mbox_flag |= LPFC_MBX_IMED_UNREG;
16207 }
16208 }
James Smart63e801c2010-11-20 23:14:19 -050016209 /* Cleanup any mailbox completions which are not yet processed */
16210 do {
16211 restart_loop = 0;
16212 list_for_each_entry(mb, &phba->sli.mboxq_cmpl, list) {
16213 /*
16214 * If this mailox is already processed or it is
16215 * for another vport ignore it.
16216 */
16217 if ((mb->vport != vport) ||
16218 (mb->mbox_flag & LPFC_MBX_IMED_UNREG))
16219 continue;
16220
16221 if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) &&
16222 (mb->u.mb.mbxCommand != MBX_REG_VPI))
16223 continue;
16224
16225 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
16226 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
16227 ndlp = (struct lpfc_nodelist *)mb->context2;
16228 /* Unregister the RPI when mailbox complete */
16229 mb->mbox_flag |= LPFC_MBX_IMED_UNREG;
16230 restart_loop = 1;
16231 spin_unlock_irq(&phba->hbalock);
16232 spin_lock(shost->host_lock);
16233 ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
16234 spin_unlock(shost->host_lock);
16235 spin_lock_irq(&phba->hbalock);
16236 break;
16237 }
16238 }
16239 } while (restart_loop);
16240
James Smartd439d282010-09-29 11:18:45 -040016241 spin_unlock_irq(&phba->hbalock);
16242
16243 /* Release the cleaned-up mailbox commands */
16244 while (!list_empty(&mbox_cmd_list)) {
16245 list_remove_head(&mbox_cmd_list, mb, LPFC_MBOXQ_t, list);
James Smart695a8142010-01-26 23:08:03 -050016246 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
16247 mp = (struct lpfc_dmabuf *) (mb->context1);
16248 if (mp) {
16249 __lpfc_mbuf_free(phba, mp->virt, mp->phys);
16250 kfree(mp);
16251 }
James Smart78730cf2010-04-06 15:06:30 -040016252 ndlp = (struct lpfc_nodelist *) mb->context2;
James Smartd439d282010-09-29 11:18:45 -040016253 mb->context2 = NULL;
James Smart78730cf2010-04-06 15:06:30 -040016254 if (ndlp) {
Dan Carpenterec21b3b2010-08-08 00:15:17 +020016255 spin_lock(shost->host_lock);
James Smart589a52d2010-07-14 15:30:54 -040016256 ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
Dan Carpenterec21b3b2010-08-08 00:15:17 +020016257 spin_unlock(shost->host_lock);
James Smart78730cf2010-04-06 15:06:30 -040016258 lpfc_nlp_put(ndlp);
James Smart78730cf2010-04-06 15:06:30 -040016259 }
James Smart695a8142010-01-26 23:08:03 -050016260 }
James Smart695a8142010-01-26 23:08:03 -050016261 mempool_free(mb, phba->mbox_mem_pool);
16262 }
James Smartd439d282010-09-29 11:18:45 -040016263
16264 /* Release the ndlp with the cleaned-up active mailbox command */
16265 if (act_mbx_ndlp) {
16266 spin_lock(shost->host_lock);
16267 act_mbx_ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
16268 spin_unlock(shost->host_lock);
16269 lpfc_nlp_put(act_mbx_ndlp);
James Smart695a8142010-01-26 23:08:03 -050016270 }
James Smart695a8142010-01-26 23:08:03 -050016271}
16272
James Smart2a9bf3d2010-06-07 15:24:45 -040016273/**
16274 * lpfc_drain_txq - Drain the txq
16275 * @phba: Pointer to HBA context object.
16276 *
16277 * This function attempt to submit IOCBs on the txq
16278 * to the adapter. For SLI4 adapters, the txq contains
16279 * ELS IOCBs that have been deferred because the there
16280 * are no SGLs. This congestion can occur with large
16281 * vport counts during node discovery.
16282 **/
16283
16284uint32_t
16285lpfc_drain_txq(struct lpfc_hba *phba)
16286{
16287 LIST_HEAD(completions);
16288 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
16289 struct lpfc_iocbq *piocbq = 0;
16290 unsigned long iflags = 0;
16291 char *fail_msg = NULL;
16292 struct lpfc_sglq *sglq;
16293 union lpfc_wqe wqe;
James Smart0e9bb8d2013-03-01 16:35:12 -050016294 int txq_cnt = 0;
James Smart2a9bf3d2010-06-07 15:24:45 -040016295
16296 spin_lock_irqsave(&phba->hbalock, iflags);
James Smart0e9bb8d2013-03-01 16:35:12 -050016297 list_for_each_entry(piocbq, &pring->txq, list) {
16298 txq_cnt++;
16299 }
16300
16301 if (txq_cnt > pring->txq_max)
16302 pring->txq_max = txq_cnt;
James Smart2a9bf3d2010-06-07 15:24:45 -040016303
16304 spin_unlock_irqrestore(&phba->hbalock, iflags);
16305
James Smart0e9bb8d2013-03-01 16:35:12 -050016306 while (!list_empty(&pring->txq)) {
James Smart2a9bf3d2010-06-07 15:24:45 -040016307 spin_lock_irqsave(&phba->hbalock, iflags);
16308
James Smart19ca7602010-11-20 23:11:55 -050016309 piocbq = lpfc_sli_ringtx_get(phba, pring);
James Smarta6298522012-06-12 13:54:11 -040016310 if (!piocbq) {
16311 spin_unlock_irqrestore(&phba->hbalock, iflags);
16312 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
16313 "2823 txq empty and txq_cnt is %d\n ",
James Smart0e9bb8d2013-03-01 16:35:12 -050016314 txq_cnt);
James Smarta6298522012-06-12 13:54:11 -040016315 break;
16316 }
James Smart19ca7602010-11-20 23:11:55 -050016317 sglq = __lpfc_sli_get_sglq(phba, piocbq);
James Smart2a9bf3d2010-06-07 15:24:45 -040016318 if (!sglq) {
James Smart19ca7602010-11-20 23:11:55 -050016319 __lpfc_sli_ringtx_put(phba, pring, piocbq);
James Smart2a9bf3d2010-06-07 15:24:45 -040016320 spin_unlock_irqrestore(&phba->hbalock, iflags);
16321 break;
James Smart2a9bf3d2010-06-07 15:24:45 -040016322 }
James Smart0e9bb8d2013-03-01 16:35:12 -050016323 txq_cnt--;
James Smart2a9bf3d2010-06-07 15:24:45 -040016324
16325 /* The xri and iocb resources secured,
16326 * attempt to issue request
16327 */
James Smart6d368e52011-05-24 11:44:12 -040016328 piocbq->sli4_lxritag = sglq->sli4_lxritag;
James Smart2a9bf3d2010-06-07 15:24:45 -040016329 piocbq->sli4_xritag = sglq->sli4_xritag;
16330 if (NO_XRI == lpfc_sli4_bpl2sgl(phba, piocbq, sglq))
16331 fail_msg = "to convert bpl to sgl";
16332 else if (lpfc_sli4_iocb2wqe(phba, piocbq, &wqe))
16333 fail_msg = "to convert iocb to wqe";
16334 else if (lpfc_sli4_wq_put(phba->sli4_hba.els_wq, &wqe))
16335 fail_msg = " - Wq is full";
16336 else
16337 lpfc_sli_ringtxcmpl_put(phba, pring, piocbq);
16338
16339 if (fail_msg) {
16340 /* Failed means we can't issue and need to cancel */
16341 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
16342 "2822 IOCB failed %s iotag 0x%x "
16343 "xri 0x%x\n",
16344 fail_msg,
16345 piocbq->iotag, piocbq->sli4_xritag);
16346 list_add_tail(&piocbq->list, &completions);
16347 }
16348 spin_unlock_irqrestore(&phba->hbalock, iflags);
16349 }
16350
James Smart2a9bf3d2010-06-07 15:24:45 -040016351 /* Cancel all the IOCBs that cannot be issued */
16352 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
16353 IOERR_SLI_ABORTED);
16354
James Smart0e9bb8d2013-03-01 16:35:12 -050016355 return txq_cnt;
James Smart2a9bf3d2010-06-07 15:24:45 -040016356}