]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - drivers/scsi/lpfc/lpfc_sli.c
lpfc: Devices are not discovered during takeaway/giveback testing
[mirror_ubuntu-eoan-kernel.git] / drivers / scsi / lpfc / lpfc_sli.c
CommitLineData
dea3101e
JB
1/*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
c44ce173 3 * Fibre Channel Host Bus Adapters. *
f25e8e79 4 * Copyright (C) 2004-2015 Emulex. All rights reserved. *
c44ce173 5 * EMULEX and SLI are trademarks of Emulex. *
dea3101e 6 * www.emulex.com *
c44ce173 7 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
dea3101e
JB
8 * *
9 * This program is free software; you can redistribute it and/or *
c44ce173
JSEC
10 * 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. *
dea3101e
JB
20 *******************************************************************/
21
dea3101e
JB
22#include <linux/blkdev.h>
23#include <linux/pci.h>
24#include <linux/interrupt.h>
25#include <linux/delay.h>
5a0e3ad6 26#include <linux/slab.h>
dea3101e 27
91886523 28#include <scsi/scsi.h>
dea3101e
JB
29#include <scsi/scsi_cmnd.h>
30#include <scsi/scsi_device.h>
31#include <scsi/scsi_host.h>
f888ba3c 32#include <scsi/scsi_transport_fc.h>
da0436e9 33#include <scsi/fc/fc_fs.h>
0d878419 34#include <linux/aer.h>
dea3101e 35
da0436e9 36#include "lpfc_hw4.h"
dea3101e
JB
37#include "lpfc_hw.h"
38#include "lpfc_sli.h"
da0436e9 39#include "lpfc_sli4.h"
ea2151b4 40#include "lpfc_nl.h"
dea3101e
JB
41#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"
858c9f6c 47#include "lpfc_debugfs.h"
04c68496 48#include "lpfc_vport.h"
dea3101e
JB
49
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
4f774513
JS
58
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 *,
45ed1190
JS
63 uint8_t *, uint32_t *);
64static struct lpfc_iocbq *lpfc_sli4_els_wcqe_to_rspiocbq(struct lpfc_hba *,
65 struct lpfc_iocbq *);
6669f9bb
JS
66static void lpfc_sli4_send_seq_to_ulp(struct lpfc_vport *,
67 struct hbq_dmabuf *);
0558056c
JS
68static int lpfc_sli4_fp_handle_wcqe(struct lpfc_hba *, struct lpfc_queue *,
69 struct lpfc_cqe *);
8a9d2e80
JS
70static int lpfc_sli4_post_els_sgl_list(struct lpfc_hba *, struct list_head *,
71 int);
ba20c853
JS
72static void lpfc_sli4_hba_handle_eqe(struct lpfc_hba *, struct lpfc_eqe *,
73 uint32_t);
e8d3c3b1
JS
74static bool lpfc_sli4_mbox_completions_pending(struct lpfc_hba *phba);
75static bool lpfc_sli4_process_missed_mbox_completions(struct lpfc_hba *phba);
0558056c 76
4f774513
JS
77static IOCB_t *
78lpfc_get_iocb_from_iocbq(struct lpfc_iocbq *iocbq)
79{
80 return &iocbq->iocb;
81}
82
83/**
84 * lpfc_sli4_wq_put - Put a Work Queue Entry on an Work Queue
85 * @q: The Work Queue to operate on.
86 * @wqe: The work Queue Entry to put on the Work queue.
87 *
88 * This routine will copy the contents of @wqe to the next available entry on
89 * the @q. This function will then ring the Work Queue Doorbell to signal the
90 * HBA to start processing the Work Queue Entry. This function returns 0 if
91 * successful. If no entries are available on @q then this function will return
92 * -ENOMEM.
93 * The caller is expected to hold the hbalock when calling this routine.
94 **/
95static uint32_t
96lpfc_sli4_wq_put(struct lpfc_queue *q, union lpfc_wqe *wqe)
97{
2e90f4b5 98 union lpfc_wqe *temp_wqe;
4f774513
JS
99 struct lpfc_register doorbell;
100 uint32_t host_index;
027140ea 101 uint32_t idx;
4f774513 102
2e90f4b5
JS
103 /* sanity check on queue memory */
104 if (unlikely(!q))
105 return -ENOMEM;
106 temp_wqe = q->qe[q->host_index].wqe;
107
4f774513 108 /* If the host has not yet processed the next entry then we are done */
027140ea
JS
109 idx = ((q->host_index + 1) % q->entry_count);
110 if (idx == q->hba_index) {
b84daac9 111 q->WQ_overflow++;
4f774513 112 return -ENOMEM;
b84daac9
JS
113 }
114 q->WQ_posted++;
4f774513 115 /* set consumption flag every once in a while */
ff78d8f9 116 if (!((q->host_index + 1) % q->entry_repost))
f0d9bccc 117 bf_set(wqe_wqec, &wqe->generic.wqe_com, 1);
fedd3b7b
JS
118 if (q->phba->sli3_options & LPFC_SLI4_PHWQ_ENABLED)
119 bf_set(wqe_wqid, &wqe->generic.wqe_com, q->queue_id);
4f774513
JS
120 lpfc_sli_pcimem_bcopy(wqe, temp_wqe, q->entry_size);
121
122 /* Update the host index before invoking device */
123 host_index = q->host_index;
027140ea
JS
124
125 q->host_index = idx;
4f774513
JS
126
127 /* Ring Doorbell */
128 doorbell.word0 = 0;
962bc51b
JS
129 if (q->db_format == LPFC_DB_LIST_FORMAT) {
130 bf_set(lpfc_wq_db_list_fm_num_posted, &doorbell, 1);
131 bf_set(lpfc_wq_db_list_fm_index, &doorbell, host_index);
132 bf_set(lpfc_wq_db_list_fm_id, &doorbell, q->queue_id);
133 } else if (q->db_format == LPFC_DB_RING_FORMAT) {
134 bf_set(lpfc_wq_db_ring_fm_num_posted, &doorbell, 1);
135 bf_set(lpfc_wq_db_ring_fm_id, &doorbell, q->queue_id);
136 } else {
137 return -EINVAL;
138 }
139 writel(doorbell.word0, q->db_regaddr);
4f774513
JS
140
141 return 0;
142}
143
144/**
145 * lpfc_sli4_wq_release - Updates internal hba index for WQ
146 * @q: The Work Queue to operate on.
147 * @index: The index to advance the hba index to.
148 *
149 * This routine will update the HBA index of a queue to reflect consumption of
150 * Work Queue Entries by the HBA. When the HBA indicates that it has consumed
151 * an entry the host calls this function to update the queue's internal
152 * pointers. This routine returns the number of entries that were consumed by
153 * the HBA.
154 **/
155static uint32_t
156lpfc_sli4_wq_release(struct lpfc_queue *q, uint32_t index)
157{
158 uint32_t released = 0;
159
2e90f4b5
JS
160 /* sanity check on queue memory */
161 if (unlikely(!q))
162 return 0;
163
4f774513
JS
164 if (q->hba_index == index)
165 return 0;
166 do {
167 q->hba_index = ((q->hba_index + 1) % q->entry_count);
168 released++;
169 } while (q->hba_index != index);
170 return released;
171}
172
173/**
174 * lpfc_sli4_mq_put - Put a Mailbox Queue Entry on an Mailbox Queue
175 * @q: The Mailbox Queue to operate on.
176 * @wqe: The Mailbox Queue Entry to put on the Work queue.
177 *
178 * This routine will copy the contents of @mqe to the next available entry on
179 * the @q. This function will then ring the Work Queue Doorbell to signal the
180 * HBA to start processing the Work Queue Entry. This function returns 0 if
181 * successful. If no entries are available on @q then this function will return
182 * -ENOMEM.
183 * The caller is expected to hold the hbalock when calling this routine.
184 **/
185static uint32_t
186lpfc_sli4_mq_put(struct lpfc_queue *q, struct lpfc_mqe *mqe)
187{
2e90f4b5 188 struct lpfc_mqe *temp_mqe;
4f774513 189 struct lpfc_register doorbell;
4f774513 190
2e90f4b5
JS
191 /* sanity check on queue memory */
192 if (unlikely(!q))
193 return -ENOMEM;
194 temp_mqe = q->qe[q->host_index].mqe;
195
4f774513
JS
196 /* If the host has not yet processed the next entry then we are done */
197 if (((q->host_index + 1) % q->entry_count) == q->hba_index)
198 return -ENOMEM;
199 lpfc_sli_pcimem_bcopy(mqe, temp_mqe, q->entry_size);
200 /* Save off the mailbox pointer for completion */
201 q->phba->mbox = (MAILBOX_t *)temp_mqe;
202
203 /* Update the host index before invoking device */
4f774513
JS
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);
4f774513
JS
211 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{
2e90f4b5
JS
227 /* sanity check on queue memory */
228 if (unlikely(!q))
229 return 0;
230
4f774513
JS
231 /* 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{
2e90f4b5 249 struct lpfc_eqe *eqe;
027140ea 250 uint32_t idx;
2e90f4b5
JS
251
252 /* sanity check on queue memory */
253 if (unlikely(!q))
254 return NULL;
255 eqe = q->qe[q->hba_index].eqe;
4f774513
JS
256
257 /* If the next EQE is not valid then we are done */
cb5172ea 258 if (!bf_get_le32(lpfc_eqe_valid, eqe))
4f774513
JS
259 return NULL;
260 /* If the host has not yet processed the next entry then we are done */
027140ea
JS
261 idx = ((q->hba_index + 1) % q->entry_count);
262 if (idx == q->host_index)
4f774513
JS
263 return NULL;
264
027140ea 265 q->hba_index = idx;
27f344eb
JS
266
267 /*
268 * insert barrier for instruction interlock : data from the hardware
269 * must have the valid bit checked before it can be copied and acted
270 * upon. Given what was seen in lpfc_sli4_cq_get() of speculative
271 * instructions allowing action on content before valid bit checked,
272 * add barrier here as well. May not be needed as "content" is a
273 * single 32-bit entity here (vs multi word structure for cq's).
274 */
275 mb();
4f774513
JS
276 return eqe;
277}
278
ba20c853
JS
279/**
280 * lpfc_sli4_eq_clr_intr - Turn off interrupts from this EQ
281 * @q: The Event Queue to disable interrupts
282 *
283 **/
284static inline void
285lpfc_sli4_eq_clr_intr(struct lpfc_queue *q)
286{
287 struct lpfc_register doorbell;
288
289 doorbell.word0 = 0;
290 bf_set(lpfc_eqcq_doorbell_eqci, &doorbell, 1);
291 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_EVENT);
292 bf_set(lpfc_eqcq_doorbell_eqid_hi, &doorbell,
293 (q->queue_id >> LPFC_EQID_HI_FIELD_SHIFT));
294 bf_set(lpfc_eqcq_doorbell_eqid_lo, &doorbell, q->queue_id);
295 writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
296}
297
4f774513
JS
298/**
299 * lpfc_sli4_eq_release - Indicates the host has finished processing an EQ
300 * @q: The Event Queue that the host has completed processing for.
301 * @arm: Indicates whether the host wants to arms this CQ.
302 *
303 * This routine will mark all Event Queue Entries on @q, from the last
304 * known completed entry to the last entry that was processed, as completed
305 * by clearing the valid bit for each completion queue entry. Then it will
306 * notify the HBA, by ringing the doorbell, that the EQEs have been processed.
307 * The internal host index in the @q will be updated by this routine to indicate
308 * that the host has finished processing the entries. The @arm parameter
309 * indicates that the queue should be rearmed when ringing the doorbell.
310 *
311 * This function will return the number of EQEs that were popped.
312 **/
313uint32_t
314lpfc_sli4_eq_release(struct lpfc_queue *q, bool arm)
315{
316 uint32_t released = 0;
317 struct lpfc_eqe *temp_eqe;
318 struct lpfc_register doorbell;
319
2e90f4b5
JS
320 /* sanity check on queue memory */
321 if (unlikely(!q))
322 return 0;
323
4f774513
JS
324 /* while there are valid entries */
325 while (q->hba_index != q->host_index) {
326 temp_eqe = q->qe[q->host_index].eqe;
cb5172ea 327 bf_set_le32(lpfc_eqe_valid, temp_eqe, 0);
4f774513
JS
328 released++;
329 q->host_index = ((q->host_index + 1) % q->entry_count);
330 }
331 if (unlikely(released == 0 && !arm))
332 return 0;
333
334 /* ring doorbell for number popped */
335 doorbell.word0 = 0;
336 if (arm) {
337 bf_set(lpfc_eqcq_doorbell_arm, &doorbell, 1);
338 bf_set(lpfc_eqcq_doorbell_eqci, &doorbell, 1);
339 }
340 bf_set(lpfc_eqcq_doorbell_num_released, &doorbell, released);
341 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_EVENT);
6b5151fd
JS
342 bf_set(lpfc_eqcq_doorbell_eqid_hi, &doorbell,
343 (q->queue_id >> LPFC_EQID_HI_FIELD_SHIFT));
344 bf_set(lpfc_eqcq_doorbell_eqid_lo, &doorbell, q->queue_id);
4f774513 345 writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
a747c9ce
JS
346 /* PCI read to flush PCI pipeline on re-arming for INTx mode */
347 if ((q->phba->intr_type == INTx) && (arm == LPFC_QUEUE_REARM))
348 readl(q->phba->sli4_hba.EQCQDBregaddr);
4f774513
JS
349 return released;
350}
351
352/**
353 * lpfc_sli4_cq_get - Gets the next valid CQE from a CQ
354 * @q: The Completion Queue to get the first valid CQE from
355 *
356 * This routine will get the first valid Completion Queue Entry from @q, update
357 * the queue's internal hba index, and return the CQE. If no valid CQEs are in
358 * the Queue (no more work to do), or the Queue is full of CQEs that have been
359 * processed, but not popped back to the HBA then this routine will return NULL.
360 **/
361static struct lpfc_cqe *
362lpfc_sli4_cq_get(struct lpfc_queue *q)
363{
364 struct lpfc_cqe *cqe;
027140ea 365 uint32_t idx;
4f774513 366
2e90f4b5
JS
367 /* sanity check on queue memory */
368 if (unlikely(!q))
369 return NULL;
370
4f774513 371 /* If the next CQE is not valid then we are done */
cb5172ea 372 if (!bf_get_le32(lpfc_cqe_valid, q->qe[q->hba_index].cqe))
4f774513
JS
373 return NULL;
374 /* If the host has not yet processed the next entry then we are done */
027140ea
JS
375 idx = ((q->hba_index + 1) % q->entry_count);
376 if (idx == q->host_index)
4f774513
JS
377 return NULL;
378
379 cqe = q->qe[q->hba_index].cqe;
027140ea 380 q->hba_index = idx;
27f344eb
JS
381
382 /*
383 * insert barrier for instruction interlock : data from the hardware
384 * must have the valid bit checked before it can be copied and acted
385 * upon. Speculative instructions were allowing a bcopy at the start
386 * of lpfc_sli4_fp_handle_wcqe(), which is called immediately
387 * after our return, to copy data before the valid bit check above
388 * was done. As such, some of the copied data was stale. The barrier
389 * ensures the check is before any data is copied.
390 */
391 mb();
4f774513
JS
392 return cqe;
393}
394
395/**
396 * lpfc_sli4_cq_release - Indicates the host has finished processing a CQ
397 * @q: The Completion Queue that the host has completed processing for.
398 * @arm: Indicates whether the host wants to arms this CQ.
399 *
400 * This routine will mark all Completion queue entries on @q, from the last
401 * known completed entry to the last entry that was processed, as completed
402 * by clearing the valid bit for each completion queue entry. Then it will
403 * notify the HBA, by ringing the doorbell, that the CQEs have been processed.
404 * The internal host index in the @q will be updated by this routine to indicate
405 * that the host has finished processing the entries. The @arm parameter
406 * indicates that the queue should be rearmed when ringing the doorbell.
407 *
408 * This function will return the number of CQEs that were released.
409 **/
410uint32_t
411lpfc_sli4_cq_release(struct lpfc_queue *q, bool arm)
412{
413 uint32_t released = 0;
414 struct lpfc_cqe *temp_qe;
415 struct lpfc_register doorbell;
416
2e90f4b5
JS
417 /* sanity check on queue memory */
418 if (unlikely(!q))
419 return 0;
4f774513
JS
420 /* while there are valid entries */
421 while (q->hba_index != q->host_index) {
422 temp_qe = q->qe[q->host_index].cqe;
cb5172ea 423 bf_set_le32(lpfc_cqe_valid, temp_qe, 0);
4f774513
JS
424 released++;
425 q->host_index = ((q->host_index + 1) % q->entry_count);
426 }
427 if (unlikely(released == 0 && !arm))
428 return 0;
429
430 /* ring doorbell for number popped */
431 doorbell.word0 = 0;
432 if (arm)
433 bf_set(lpfc_eqcq_doorbell_arm, &doorbell, 1);
434 bf_set(lpfc_eqcq_doorbell_num_released, &doorbell, released);
435 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_COMPLETION);
6b5151fd
JS
436 bf_set(lpfc_eqcq_doorbell_cqid_hi, &doorbell,
437 (q->queue_id >> LPFC_CQID_HI_FIELD_SHIFT));
438 bf_set(lpfc_eqcq_doorbell_cqid_lo, &doorbell, q->queue_id);
4f774513
JS
439 writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
440 return released;
441}
442
443/**
444 * lpfc_sli4_rq_put - Put a Receive Buffer Queue Entry on a Receive Queue
445 * @q: The Header Receive Queue to operate on.
446 * @wqe: The Receive Queue Entry to put on the Receive queue.
447 *
448 * This routine will copy the contents of @wqe to the next available entry on
449 * the @q. This function will then ring the Receive Queue Doorbell to signal the
450 * HBA to start processing the Receive Queue Entry. This function returns the
451 * index that the rqe was copied to if successful. If no entries are available
452 * on @q then this function will return -ENOMEM.
453 * The caller is expected to hold the hbalock when calling this routine.
454 **/
455static int
456lpfc_sli4_rq_put(struct lpfc_queue *hq, struct lpfc_queue *dq,
457 struct lpfc_rqe *hrqe, struct lpfc_rqe *drqe)
458{
2e90f4b5
JS
459 struct lpfc_rqe *temp_hrqe;
460 struct lpfc_rqe *temp_drqe;
4f774513 461 struct lpfc_register doorbell;
5a25bf36 462 int put_index;
4f774513 463
2e90f4b5
JS
464 /* sanity check on queue memory */
465 if (unlikely(!hq) || unlikely(!dq))
466 return -ENOMEM;
5a25bf36 467 put_index = hq->host_index;
2e90f4b5
JS
468 temp_hrqe = hq->qe[hq->host_index].rqe;
469 temp_drqe = dq->qe[dq->host_index].rqe;
470
4f774513
JS
471 if (hq->type != LPFC_HRQ || dq->type != LPFC_DRQ)
472 return -EINVAL;
473 if (hq->host_index != dq->host_index)
474 return -EINVAL;
475 /* If the host has not yet processed the next entry then we are done */
476 if (((hq->host_index + 1) % hq->entry_count) == hq->hba_index)
477 return -EBUSY;
478 lpfc_sli_pcimem_bcopy(hrqe, temp_hrqe, hq->entry_size);
479 lpfc_sli_pcimem_bcopy(drqe, temp_drqe, dq->entry_size);
480
481 /* Update the host index to point to the next slot */
482 hq->host_index = ((hq->host_index + 1) % hq->entry_count);
483 dq->host_index = ((dq->host_index + 1) % dq->entry_count);
484
485 /* Ring The Header Receive Queue Doorbell */
73d91e50 486 if (!(hq->host_index % hq->entry_repost)) {
4f774513 487 doorbell.word0 = 0;
962bc51b
JS
488 if (hq->db_format == LPFC_DB_RING_FORMAT) {
489 bf_set(lpfc_rq_db_ring_fm_num_posted, &doorbell,
490 hq->entry_repost);
491 bf_set(lpfc_rq_db_ring_fm_id, &doorbell, hq->queue_id);
492 } else if (hq->db_format == LPFC_DB_LIST_FORMAT) {
493 bf_set(lpfc_rq_db_list_fm_num_posted, &doorbell,
494 hq->entry_repost);
495 bf_set(lpfc_rq_db_list_fm_index, &doorbell,
496 hq->host_index);
497 bf_set(lpfc_rq_db_list_fm_id, &doorbell, hq->queue_id);
498 } else {
499 return -EINVAL;
500 }
501 writel(doorbell.word0, hq->db_regaddr);
4f774513
JS
502 }
503 return put_index;
504}
505
506/**
507 * lpfc_sli4_rq_release - Updates internal hba index for RQ
508 * @q: The Header Receive Queue to operate on.
509 *
510 * This routine will update the HBA index of a queue to reflect consumption of
511 * one Receive Queue Entry by the HBA. When the HBA indicates that it has
512 * consumed an entry the host calls this function to update the queue's
513 * internal pointers. This routine returns the number of entries that were
514 * consumed by the HBA.
515 **/
516static uint32_t
517lpfc_sli4_rq_release(struct lpfc_queue *hq, struct lpfc_queue *dq)
518{
2e90f4b5
JS
519 /* sanity check on queue memory */
520 if (unlikely(!hq) || unlikely(!dq))
521 return 0;
522
4f774513
JS
523 if ((hq->type != LPFC_HRQ) || (dq->type != LPFC_DRQ))
524 return 0;
525 hq->hba_index = ((hq->hba_index + 1) % hq->entry_count);
526 dq->hba_index = ((dq->hba_index + 1) % dq->entry_count);
527 return 1;
528}
529
e59058c4 530/**
3621a710 531 * lpfc_cmd_iocb - Get next command iocb entry in the ring
e59058c4
JS
532 * @phba: Pointer to HBA context object.
533 * @pring: Pointer to driver SLI ring object.
534 *
535 * This function returns pointer to next command iocb entry
536 * in the command ring. The caller must hold hbalock to prevent
537 * other threads consume the next command iocb.
538 * SLI-2/SLI-3 provide different sized iocbs.
539 **/
ed957684
JS
540static inline IOCB_t *
541lpfc_cmd_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
542{
7e56aa25
JS
543 return (IOCB_t *) (((char *) pring->sli.sli3.cmdringaddr) +
544 pring->sli.sli3.cmdidx * phba->iocb_cmd_size);
ed957684
JS
545}
546
e59058c4 547/**
3621a710 548 * lpfc_resp_iocb - Get next response iocb entry in the ring
e59058c4
JS
549 * @phba: Pointer to HBA context object.
550 * @pring: Pointer to driver SLI ring object.
551 *
552 * This function returns pointer to next response iocb entry
553 * in the response ring. The caller must hold hbalock to make sure
554 * that no other thread consume the next response iocb.
555 * SLI-2/SLI-3 provide different sized iocbs.
556 **/
ed957684
JS
557static inline IOCB_t *
558lpfc_resp_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
559{
7e56aa25
JS
560 return (IOCB_t *) (((char *) pring->sli.sli3.rspringaddr) +
561 pring->sli.sli3.rspidx * phba->iocb_rsp_size);
ed957684
JS
562}
563
e59058c4 564/**
3621a710 565 * __lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
e59058c4
JS
566 * @phba: Pointer to HBA context object.
567 *
568 * This function is called with hbalock held. This function
569 * allocates a new driver iocb object from the iocb pool. If the
570 * allocation is successful, it returns pointer to the newly
571 * allocated iocb object else it returns NULL.
572 **/
4f2e66c6 573struct lpfc_iocbq *
2e0fef85 574__lpfc_sli_get_iocbq(struct lpfc_hba *phba)
0bd4ca25
JSEC
575{
576 struct list_head *lpfc_iocb_list = &phba->lpfc_iocb_list;
577 struct lpfc_iocbq * iocbq = NULL;
578
579 list_remove_head(lpfc_iocb_list, iocbq, struct lpfc_iocbq, list);
2a9bf3d0
JS
580 if (iocbq)
581 phba->iocb_cnt++;
582 if (phba->iocb_cnt > phba->iocb_max)
583 phba->iocb_max = phba->iocb_cnt;
0bd4ca25
JSEC
584 return iocbq;
585}
586
da0436e9
JS
587/**
588 * __lpfc_clear_active_sglq - Remove the active sglq for this XRI.
589 * @phba: Pointer to HBA context object.
590 * @xritag: XRI value.
591 *
592 * This function clears the sglq pointer from the array of acive
593 * sglq's. The xritag that is passed in is used to index into the
594 * array. Before the xritag can be used it needs to be adjusted
595 * by subtracting the xribase.
596 *
597 * Returns sglq ponter = success, NULL = Failure.
598 **/
599static struct lpfc_sglq *
600__lpfc_clear_active_sglq(struct lpfc_hba *phba, uint16_t xritag)
601{
da0436e9 602 struct lpfc_sglq *sglq;
6d368e53
JS
603
604 sglq = phba->sli4_hba.lpfc_sglq_active_list[xritag];
605 phba->sli4_hba.lpfc_sglq_active_list[xritag] = NULL;
da0436e9
JS
606 return sglq;
607}
608
609/**
610 * __lpfc_get_active_sglq - Get the active sglq for this XRI.
611 * @phba: Pointer to HBA context object.
612 * @xritag: XRI value.
613 *
614 * This function returns the sglq pointer from the array of acive
615 * sglq's. The xritag that is passed in is used to index into the
616 * array. Before the xritag can be used it needs to be adjusted
617 * by subtracting the xribase.
618 *
619 * Returns sglq ponter = success, NULL = Failure.
620 **/
0f65ff68 621struct lpfc_sglq *
da0436e9
JS
622__lpfc_get_active_sglq(struct lpfc_hba *phba, uint16_t xritag)
623{
da0436e9 624 struct lpfc_sglq *sglq;
6d368e53
JS
625
626 sglq = phba->sli4_hba.lpfc_sglq_active_list[xritag];
da0436e9
JS
627 return sglq;
628}
629
19ca7609 630/**
1151e3ec 631 * lpfc_clr_rrq_active - Clears RRQ active bit in xri_bitmap.
19ca7609
JS
632 * @phba: Pointer to HBA context object.
633 * @xritag: xri used in this exchange.
634 * @rrq: The RRQ to be cleared.
635 *
19ca7609 636 **/
1151e3ec
JS
637void
638lpfc_clr_rrq_active(struct lpfc_hba *phba,
639 uint16_t xritag,
640 struct lpfc_node_rrq *rrq)
19ca7609 641{
1151e3ec 642 struct lpfc_nodelist *ndlp = NULL;
19ca7609 643
1151e3ec
JS
644 if ((rrq->vport) && NLP_CHK_NODE_ACT(rrq->ndlp))
645 ndlp = lpfc_findnode_did(rrq->vport, rrq->nlp_DID);
19ca7609
JS
646
647 /* The target DID could have been swapped (cable swap)
648 * we should use the ndlp from the findnode if it is
649 * available.
650 */
1151e3ec 651 if ((!ndlp) && rrq->ndlp)
19ca7609
JS
652 ndlp = rrq->ndlp;
653
1151e3ec
JS
654 if (!ndlp)
655 goto out;
656
cff261f6 657 if (test_and_clear_bit(xritag, ndlp->active_rrqs_xri_bitmap)) {
19ca7609
JS
658 rrq->send_rrq = 0;
659 rrq->xritag = 0;
660 rrq->rrq_stop_time = 0;
661 }
1151e3ec 662out:
19ca7609
JS
663 mempool_free(rrq, phba->rrq_pool);
664}
665
666/**
667 * lpfc_handle_rrq_active - Checks if RRQ has waithed RATOV.
668 * @phba: Pointer to HBA context object.
669 *
670 * This function is called with hbalock held. This function
671 * Checks if stop_time (ratov from setting rrq active) has
672 * been reached, if it has and the send_rrq flag is set then
673 * it will call lpfc_send_rrq. If the send_rrq flag is not set
674 * then it will just call the routine to clear the rrq and
675 * free the rrq resource.
676 * The timer is set to the next rrq that is going to expire before
677 * leaving the routine.
678 *
679 **/
680void
681lpfc_handle_rrq_active(struct lpfc_hba *phba)
682{
683 struct lpfc_node_rrq *rrq;
684 struct lpfc_node_rrq *nextrrq;
685 unsigned long next_time;
686 unsigned long iflags;
1151e3ec 687 LIST_HEAD(send_rrq);
19ca7609
JS
688
689 spin_lock_irqsave(&phba->hbalock, iflags);
690 phba->hba_flag &= ~HBA_RRQ_ACTIVE;
256ec0d0 691 next_time = jiffies + msecs_to_jiffies(1000 * (phba->fc_ratov + 1));
19ca7609 692 list_for_each_entry_safe(rrq, nextrrq,
1151e3ec
JS
693 &phba->active_rrq_list, list) {
694 if (time_after(jiffies, rrq->rrq_stop_time))
695 list_move(&rrq->list, &send_rrq);
696 else if (time_before(rrq->rrq_stop_time, next_time))
19ca7609
JS
697 next_time = rrq->rrq_stop_time;
698 }
699 spin_unlock_irqrestore(&phba->hbalock, iflags);
06918ac5
JS
700 if ((!list_empty(&phba->active_rrq_list)) &&
701 (!(phba->pport->load_flag & FC_UNLOADING)))
19ca7609 702 mod_timer(&phba->rrq_tmr, next_time);
1151e3ec
JS
703 list_for_each_entry_safe(rrq, nextrrq, &send_rrq, list) {
704 list_del(&rrq->list);
705 if (!rrq->send_rrq)
706 /* this call will free the rrq */
707 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
708 else if (lpfc_send_rrq(phba, rrq)) {
709 /* if we send the rrq then the completion handler
710 * will clear the bit in the xribitmap.
711 */
712 lpfc_clr_rrq_active(phba, rrq->xritag,
713 rrq);
714 }
715 }
19ca7609
JS
716}
717
718/**
719 * lpfc_get_active_rrq - Get the active RRQ for this exchange.
720 * @vport: Pointer to vport context object.
721 * @xri: The xri used in the exchange.
722 * @did: The targets DID for this exchange.
723 *
724 * returns NULL = rrq not found in the phba->active_rrq_list.
725 * rrq = rrq for this xri and target.
726 **/
727struct lpfc_node_rrq *
728lpfc_get_active_rrq(struct lpfc_vport *vport, uint16_t xri, uint32_t did)
729{
730 struct lpfc_hba *phba = vport->phba;
731 struct lpfc_node_rrq *rrq;
732 struct lpfc_node_rrq *nextrrq;
733 unsigned long iflags;
734
735 if (phba->sli_rev != LPFC_SLI_REV4)
736 return NULL;
737 spin_lock_irqsave(&phba->hbalock, iflags);
738 list_for_each_entry_safe(rrq, nextrrq, &phba->active_rrq_list, list) {
739 if (rrq->vport == vport && rrq->xritag == xri &&
740 rrq->nlp_DID == did){
741 list_del(&rrq->list);
742 spin_unlock_irqrestore(&phba->hbalock, iflags);
743 return rrq;
744 }
745 }
746 spin_unlock_irqrestore(&phba->hbalock, iflags);
747 return NULL;
748}
749
750/**
751 * lpfc_cleanup_vports_rrqs - Remove and clear the active RRQ for this vport.
752 * @vport: Pointer to vport context object.
1151e3ec
JS
753 * @ndlp: Pointer to the lpfc_node_list structure.
754 * If ndlp is NULL Remove all active RRQs for this vport from the
755 * phba->active_rrq_list and clear the rrq.
756 * If ndlp is not NULL then only remove rrqs for this vport & this ndlp.
19ca7609
JS
757 **/
758void
1151e3ec 759lpfc_cleanup_vports_rrqs(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
19ca7609
JS
760
761{
762 struct lpfc_hba *phba = vport->phba;
763 struct lpfc_node_rrq *rrq;
764 struct lpfc_node_rrq *nextrrq;
765 unsigned long iflags;
1151e3ec 766 LIST_HEAD(rrq_list);
19ca7609
JS
767
768 if (phba->sli_rev != LPFC_SLI_REV4)
769 return;
1151e3ec
JS
770 if (!ndlp) {
771 lpfc_sli4_vport_delete_els_xri_aborted(vport);
772 lpfc_sli4_vport_delete_fcp_xri_aborted(vport);
19ca7609 773 }
1151e3ec
JS
774 spin_lock_irqsave(&phba->hbalock, iflags);
775 list_for_each_entry_safe(rrq, nextrrq, &phba->active_rrq_list, list)
776 if ((rrq->vport == vport) && (!ndlp || rrq->ndlp == ndlp))
777 list_move(&rrq->list, &rrq_list);
19ca7609 778 spin_unlock_irqrestore(&phba->hbalock, iflags);
1151e3ec
JS
779
780 list_for_each_entry_safe(rrq, nextrrq, &rrq_list, list) {
781 list_del(&rrq->list);
782 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
783 }
19ca7609
JS
784}
785
19ca7609 786/**
1151e3ec 787 * lpfc_test_rrq_active - Test RRQ bit in xri_bitmap.
19ca7609
JS
788 * @phba: Pointer to HBA context object.
789 * @ndlp: Targets nodelist pointer for this exchange.
790 * @xritag the xri in the bitmap to test.
791 *
792 * This function is called with hbalock held. This function
793 * returns 0 = rrq not active for this xri
794 * 1 = rrq is valid for this xri.
795 **/
1151e3ec
JS
796int
797lpfc_test_rrq_active(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp,
19ca7609
JS
798 uint16_t xritag)
799{
19ca7609
JS
800 if (!ndlp)
801 return 0;
cff261f6
JS
802 if (!ndlp->active_rrqs_xri_bitmap)
803 return 0;
804 if (test_bit(xritag, ndlp->active_rrqs_xri_bitmap))
19ca7609
JS
805 return 1;
806 else
807 return 0;
808}
809
810/**
811 * lpfc_set_rrq_active - set RRQ active bit in xri_bitmap.
812 * @phba: Pointer to HBA context object.
813 * @ndlp: nodelist pointer for this target.
814 * @xritag: xri used in this exchange.
815 * @rxid: Remote Exchange ID.
816 * @send_rrq: Flag used to determine if we should send rrq els cmd.
817 *
818 * This function takes the hbalock.
819 * The active bit is always set in the active rrq xri_bitmap even
820 * if there is no slot avaiable for the other rrq information.
821 *
822 * returns 0 rrq actived for this xri
823 * < 0 No memory or invalid ndlp.
824 **/
825int
826lpfc_set_rrq_active(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp,
b42c07c8 827 uint16_t xritag, uint16_t rxid, uint16_t send_rrq)
19ca7609 828{
19ca7609 829 unsigned long iflags;
b42c07c8
JS
830 struct lpfc_node_rrq *rrq;
831 int empty;
832
833 if (!ndlp)
834 return -EINVAL;
835
836 if (!phba->cfg_enable_rrq)
837 return -EINVAL;
19ca7609
JS
838
839 spin_lock_irqsave(&phba->hbalock, iflags);
b42c07c8
JS
840 if (phba->pport->load_flag & FC_UNLOADING) {
841 phba->hba_flag &= ~HBA_RRQ_ACTIVE;
842 goto out;
843 }
844
845 /*
846 * set the active bit even if there is no mem available.
847 */
848 if (NLP_CHK_FREE_REQ(ndlp))
849 goto out;
850
851 if (ndlp->vport && (ndlp->vport->load_flag & FC_UNLOADING))
852 goto out;
853
cff261f6
JS
854 if (!ndlp->active_rrqs_xri_bitmap)
855 goto out;
856
857 if (test_and_set_bit(xritag, ndlp->active_rrqs_xri_bitmap))
b42c07c8
JS
858 goto out;
859
19ca7609 860 spin_unlock_irqrestore(&phba->hbalock, iflags);
b42c07c8
JS
861 rrq = mempool_alloc(phba->rrq_pool, GFP_KERNEL);
862 if (!rrq) {
863 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
864 "3155 Unable to allocate RRQ xri:0x%x rxid:0x%x"
865 " DID:0x%x Send:%d\n",
866 xritag, rxid, ndlp->nlp_DID, send_rrq);
867 return -EINVAL;
868 }
e5771b4d
JS
869 if (phba->cfg_enable_rrq == 1)
870 rrq->send_rrq = send_rrq;
871 else
872 rrq->send_rrq = 0;
b42c07c8 873 rrq->xritag = xritag;
256ec0d0
JS
874 rrq->rrq_stop_time = jiffies +
875 msecs_to_jiffies(1000 * (phba->fc_ratov + 1));
b42c07c8
JS
876 rrq->ndlp = ndlp;
877 rrq->nlp_DID = ndlp->nlp_DID;
878 rrq->vport = ndlp->vport;
879 rrq->rxid = rxid;
b42c07c8
JS
880 spin_lock_irqsave(&phba->hbalock, iflags);
881 empty = list_empty(&phba->active_rrq_list);
882 list_add_tail(&rrq->list, &phba->active_rrq_list);
883 phba->hba_flag |= HBA_RRQ_ACTIVE;
884 if (empty)
885 lpfc_worker_wake_up(phba);
886 spin_unlock_irqrestore(&phba->hbalock, iflags);
887 return 0;
888out:
889 spin_unlock_irqrestore(&phba->hbalock, iflags);
890 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
891 "2921 Can't set rrq active xri:0x%x rxid:0x%x"
892 " DID:0x%x Send:%d\n",
893 xritag, rxid, ndlp->nlp_DID, send_rrq);
894 return -EINVAL;
19ca7609
JS
895}
896
da0436e9
JS
897/**
898 * __lpfc_sli_get_sglq - Allocates an iocb object from sgl pool
899 * @phba: Pointer to HBA context object.
19ca7609 900 * @piocb: Pointer to the iocbq.
da0436e9 901 *
dafe8cea 902 * This function is called with the ring lock held. This function
6d368e53 903 * gets a new driver sglq object from the sglq list. If the
da0436e9
JS
904 * list is not empty then it is successful, it returns pointer to the newly
905 * allocated sglq object else it returns NULL.
906 **/
907static struct lpfc_sglq *
19ca7609 908__lpfc_sli_get_sglq(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq)
da0436e9
JS
909{
910 struct list_head *lpfc_sgl_list = &phba->sli4_hba.lpfc_sgl_list;
911 struct lpfc_sglq *sglq = NULL;
19ca7609 912 struct lpfc_sglq *start_sglq = NULL;
19ca7609
JS
913 struct lpfc_scsi_buf *lpfc_cmd;
914 struct lpfc_nodelist *ndlp;
915 int found = 0;
916
917 if (piocbq->iocb_flag & LPFC_IO_FCP) {
918 lpfc_cmd = (struct lpfc_scsi_buf *) piocbq->context1;
919 ndlp = lpfc_cmd->rdata->pnode;
be858b65 920 } else if ((piocbq->iocb.ulpCommand == CMD_GEN_REQUEST64_CR) &&
6c7cf486 921 !(piocbq->iocb_flag & LPFC_IO_LIBDFC)) {
19ca7609 922 ndlp = piocbq->context_un.ndlp;
6c7cf486
JS
923 } else if (piocbq->iocb_flag & LPFC_IO_LIBDFC) {
924 if (piocbq->iocb_flag & LPFC_IO_LOOPBACK)
925 ndlp = NULL;
926 else
927 ndlp = piocbq->context_un.ndlp;
928 } else {
19ca7609 929 ndlp = piocbq->context1;
6c7cf486 930 }
19ca7609 931
da0436e9 932 list_remove_head(lpfc_sgl_list, sglq, struct lpfc_sglq, list);
19ca7609
JS
933 start_sglq = sglq;
934 while (!found) {
935 if (!sglq)
936 return NULL;
ee0f4fe1 937 if (lpfc_test_rrq_active(phba, ndlp, sglq->sli4_lxritag)) {
19ca7609
JS
938 /* This xri has an rrq outstanding for this DID.
939 * put it back in the list and get another xri.
940 */
941 list_add_tail(&sglq->list, lpfc_sgl_list);
942 sglq = NULL;
943 list_remove_head(lpfc_sgl_list, sglq,
944 struct lpfc_sglq, list);
945 if (sglq == start_sglq) {
946 sglq = NULL;
947 break;
948 } else
949 continue;
950 }
951 sglq->ndlp = ndlp;
952 found = 1;
6d368e53 953 phba->sli4_hba.lpfc_sglq_active_list[sglq->sli4_lxritag] = sglq;
19ca7609
JS
954 sglq->state = SGL_ALLOCATED;
955 }
da0436e9
JS
956 return sglq;
957}
958
e59058c4 959/**
3621a710 960 * lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
e59058c4
JS
961 * @phba: Pointer to HBA context object.
962 *
963 * This function is called with no lock held. This function
964 * allocates a new driver iocb object from the iocb pool. If the
965 * allocation is successful, it returns pointer to the newly
966 * allocated iocb object else it returns NULL.
967 **/
2e0fef85
JS
968struct lpfc_iocbq *
969lpfc_sli_get_iocbq(struct lpfc_hba *phba)
970{
971 struct lpfc_iocbq * iocbq = NULL;
972 unsigned long iflags;
973
974 spin_lock_irqsave(&phba->hbalock, iflags);
975 iocbq = __lpfc_sli_get_iocbq(phba);
976 spin_unlock_irqrestore(&phba->hbalock, iflags);
977 return iocbq;
978}
979
4f774513
JS
980/**
981 * __lpfc_sli_release_iocbq_s4 - Release iocb to the iocb pool
982 * @phba: Pointer to HBA context object.
983 * @iocbq: Pointer to driver iocb object.
984 *
985 * This function is called with hbalock held to release driver
986 * iocb object to the iocb pool. The iotag in the iocb object
987 * does not change for each use of the iocb object. This function
988 * clears all other fields of the iocb object when it is freed.
989 * The sqlq structure that holds the xritag and phys and virtual
990 * mappings for the scatter gather list is retrieved from the
991 * active array of sglq. The get of the sglq pointer also clears
992 * the entry in the array. If the status of the IO indiactes that
993 * this IO was aborted then the sglq entry it put on the
994 * lpfc_abts_els_sgl_list until the CQ_ABORTED_XRI is received. If the
995 * IO has good status or fails for any other reason then the sglq
996 * entry is added to the free list (lpfc_sgl_list).
997 **/
998static void
999__lpfc_sli_release_iocbq_s4(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1000{
1001 struct lpfc_sglq *sglq;
1002 size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
2a9bf3d0
JS
1003 unsigned long iflag = 0;
1004 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
4f774513
JS
1005
1006 if (iocbq->sli4_xritag == NO_XRI)
1007 sglq = NULL;
1008 else
6d368e53
JS
1009 sglq = __lpfc_clear_active_sglq(phba, iocbq->sli4_lxritag);
1010
0e9bb8d7 1011
4f774513 1012 if (sglq) {
0f65ff68
JS
1013 if ((iocbq->iocb_flag & LPFC_EXCHANGE_BUSY) &&
1014 (sglq->state != SGL_XRI_ABORTED)) {
4f774513
JS
1015 spin_lock_irqsave(&phba->sli4_hba.abts_sgl_list_lock,
1016 iflag);
1017 list_add(&sglq->list,
1018 &phba->sli4_hba.lpfc_abts_els_sgl_list);
1019 spin_unlock_irqrestore(
1020 &phba->sli4_hba.abts_sgl_list_lock, iflag);
0f65ff68 1021 } else {
dafe8cea 1022 spin_lock_irqsave(&pring->ring_lock, iflag);
0f65ff68 1023 sglq->state = SGL_FREED;
19ca7609 1024 sglq->ndlp = NULL;
fedd3b7b
JS
1025 list_add_tail(&sglq->list,
1026 &phba->sli4_hba.lpfc_sgl_list);
dafe8cea 1027 spin_unlock_irqrestore(&pring->ring_lock, iflag);
2a9bf3d0
JS
1028
1029 /* Check if TXQ queue needs to be serviced */
0e9bb8d7 1030 if (!list_empty(&pring->txq))
2a9bf3d0 1031 lpfc_worker_wake_up(phba);
0f65ff68 1032 }
4f774513
JS
1033 }
1034
1035
1036 /*
1037 * Clean all volatile data fields, preserve iotag and node struct.
1038 */
1039 memset((char *)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
6d368e53 1040 iocbq->sli4_lxritag = NO_XRI;
4f774513
JS
1041 iocbq->sli4_xritag = NO_XRI;
1042 list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
1043}
1044
2a9bf3d0 1045
e59058c4 1046/**
3772a991 1047 * __lpfc_sli_release_iocbq_s3 - Release iocb to the iocb pool
e59058c4
JS
1048 * @phba: Pointer to HBA context object.
1049 * @iocbq: Pointer to driver iocb object.
1050 *
1051 * This function is called with hbalock held to release driver
1052 * iocb object to the iocb pool. The iotag in the iocb object
1053 * does not change for each use of the iocb object. This function
1054 * clears all other fields of the iocb object when it is freed.
1055 **/
a6ababd2 1056static void
3772a991 1057__lpfc_sli_release_iocbq_s3(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
604a3e30 1058{
2e0fef85 1059 size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
604a3e30 1060
0e9bb8d7 1061
604a3e30
JB
1062 /*
1063 * Clean all volatile data fields, preserve iotag and node struct.
1064 */
1065 memset((char*)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
3772a991 1066 iocbq->sli4_xritag = NO_XRI;
604a3e30
JB
1067 list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
1068}
1069
3772a991
JS
1070/**
1071 * __lpfc_sli_release_iocbq - Release iocb to the iocb pool
1072 * @phba: Pointer to HBA context object.
1073 * @iocbq: Pointer to driver iocb object.
1074 *
1075 * This function is called with hbalock held to release driver
1076 * iocb object to the iocb pool. The iotag in the iocb object
1077 * does not change for each use of the iocb object. This function
1078 * clears all other fields of the iocb object when it is freed.
1079 **/
1080static void
1081__lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1082{
1083 phba->__lpfc_sli_release_iocbq(phba, iocbq);
2a9bf3d0 1084 phba->iocb_cnt--;
3772a991
JS
1085}
1086
e59058c4 1087/**
3621a710 1088 * lpfc_sli_release_iocbq - Release iocb to the iocb pool
e59058c4
JS
1089 * @phba: Pointer to HBA context object.
1090 * @iocbq: Pointer to driver iocb object.
1091 *
1092 * This function is called with no lock held to release the iocb to
1093 * iocb pool.
1094 **/
2e0fef85
JS
1095void
1096lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1097{
1098 unsigned long iflags;
1099
1100 /*
1101 * Clean all volatile data fields, preserve iotag and node struct.
1102 */
1103 spin_lock_irqsave(&phba->hbalock, iflags);
1104 __lpfc_sli_release_iocbq(phba, iocbq);
1105 spin_unlock_irqrestore(&phba->hbalock, iflags);
1106}
1107
a257bf90
JS
1108/**
1109 * lpfc_sli_cancel_iocbs - Cancel all iocbs from a list.
1110 * @phba: Pointer to HBA context object.
1111 * @iocblist: List of IOCBs.
1112 * @ulpstatus: ULP status in IOCB command field.
1113 * @ulpWord4: ULP word-4 in IOCB command field.
1114 *
1115 * This function is called with a list of IOCBs to cancel. It cancels the IOCB
1116 * on the list by invoking the complete callback function associated with the
1117 * IOCB with the provided @ulpstatus and @ulpword4 set to the IOCB commond
1118 * fields.
1119 **/
1120void
1121lpfc_sli_cancel_iocbs(struct lpfc_hba *phba, struct list_head *iocblist,
1122 uint32_t ulpstatus, uint32_t ulpWord4)
1123{
1124 struct lpfc_iocbq *piocb;
1125
1126 while (!list_empty(iocblist)) {
1127 list_remove_head(iocblist, piocb, struct lpfc_iocbq, list);
a257bf90
JS
1128 if (!piocb->iocb_cmpl)
1129 lpfc_sli_release_iocbq(phba, piocb);
1130 else {
1131 piocb->iocb.ulpStatus = ulpstatus;
1132 piocb->iocb.un.ulpWord[4] = ulpWord4;
1133 (piocb->iocb_cmpl) (phba, piocb, piocb);
1134 }
1135 }
1136 return;
1137}
1138
e59058c4 1139/**
3621a710
JS
1140 * lpfc_sli_iocb_cmd_type - Get the iocb type
1141 * @iocb_cmnd: iocb command code.
e59058c4
JS
1142 *
1143 * This function is called by ring event handler function to get the iocb type.
1144 * This function translates the iocb command to an iocb command type used to
1145 * decide the final disposition of each completed IOCB.
1146 * The function returns
1147 * LPFC_UNKNOWN_IOCB if it is an unsupported iocb
1148 * LPFC_SOL_IOCB if it is a solicited iocb completion
1149 * LPFC_ABORT_IOCB if it is an abort iocb
1150 * LPFC_UNSOL_IOCB if it is an unsolicited iocb
1151 *
1152 * The caller is not required to hold any lock.
1153 **/
dea3101e
JB
1154static lpfc_iocb_type
1155lpfc_sli_iocb_cmd_type(uint8_t iocb_cmnd)
1156{
1157 lpfc_iocb_type type = LPFC_UNKNOWN_IOCB;
1158
1159 if (iocb_cmnd > CMD_MAX_IOCB_CMD)
1160 return 0;
1161
1162 switch (iocb_cmnd) {
1163 case CMD_XMIT_SEQUENCE_CR:
1164 case CMD_XMIT_SEQUENCE_CX:
1165 case CMD_XMIT_BCAST_CN:
1166 case CMD_XMIT_BCAST_CX:
1167 case CMD_ELS_REQUEST_CR:
1168 case CMD_ELS_REQUEST_CX:
1169 case CMD_CREATE_XRI_CR:
1170 case CMD_CREATE_XRI_CX:
1171 case CMD_GET_RPI_CN:
1172 case CMD_XMIT_ELS_RSP_CX:
1173 case CMD_GET_RPI_CR:
1174 case CMD_FCP_IWRITE_CR:
1175 case CMD_FCP_IWRITE_CX:
1176 case CMD_FCP_IREAD_CR:
1177 case CMD_FCP_IREAD_CX:
1178 case CMD_FCP_ICMND_CR:
1179 case CMD_FCP_ICMND_CX:
f5603511
JS
1180 case CMD_FCP_TSEND_CX:
1181 case CMD_FCP_TRSP_CX:
1182 case CMD_FCP_TRECEIVE_CX:
1183 case CMD_FCP_AUTO_TRSP_CX:
dea3101e
JB
1184 case CMD_ADAPTER_MSG:
1185 case CMD_ADAPTER_DUMP:
1186 case CMD_XMIT_SEQUENCE64_CR:
1187 case CMD_XMIT_SEQUENCE64_CX:
1188 case CMD_XMIT_BCAST64_CN:
1189 case CMD_XMIT_BCAST64_CX:
1190 case CMD_ELS_REQUEST64_CR:
1191 case CMD_ELS_REQUEST64_CX:
1192 case CMD_FCP_IWRITE64_CR:
1193 case CMD_FCP_IWRITE64_CX:
1194 case CMD_FCP_IREAD64_CR:
1195 case CMD_FCP_IREAD64_CX:
1196 case CMD_FCP_ICMND64_CR:
1197 case CMD_FCP_ICMND64_CX:
f5603511
JS
1198 case CMD_FCP_TSEND64_CX:
1199 case CMD_FCP_TRSP64_CX:
1200 case CMD_FCP_TRECEIVE64_CX:
dea3101e
JB
1201 case CMD_GEN_REQUEST64_CR:
1202 case CMD_GEN_REQUEST64_CX:
1203 case CMD_XMIT_ELS_RSP64_CX:
da0436e9
JS
1204 case DSSCMD_IWRITE64_CR:
1205 case DSSCMD_IWRITE64_CX:
1206 case DSSCMD_IREAD64_CR:
1207 case DSSCMD_IREAD64_CX:
dea3101e
JB
1208 type = LPFC_SOL_IOCB;
1209 break;
1210 case CMD_ABORT_XRI_CN:
1211 case CMD_ABORT_XRI_CX:
1212 case CMD_CLOSE_XRI_CN:
1213 case CMD_CLOSE_XRI_CX:
1214 case CMD_XRI_ABORTED_CX:
1215 case CMD_ABORT_MXRI64_CN:
6669f9bb 1216 case CMD_XMIT_BLS_RSP64_CX:
dea3101e
JB
1217 type = LPFC_ABORT_IOCB;
1218 break;
1219 case CMD_RCV_SEQUENCE_CX:
1220 case CMD_RCV_ELS_REQ_CX:
1221 case CMD_RCV_SEQUENCE64_CX:
1222 case CMD_RCV_ELS_REQ64_CX:
57127f15 1223 case CMD_ASYNC_STATUS:
ed957684
JS
1224 case CMD_IOCB_RCV_SEQ64_CX:
1225 case CMD_IOCB_RCV_ELS64_CX:
1226 case CMD_IOCB_RCV_CONT64_CX:
3163f725 1227 case CMD_IOCB_RET_XRI64_CX:
dea3101e
JB
1228 type = LPFC_UNSOL_IOCB;
1229 break;
3163f725
JS
1230 case CMD_IOCB_XMIT_MSEQ64_CR:
1231 case CMD_IOCB_XMIT_MSEQ64_CX:
1232 case CMD_IOCB_RCV_SEQ_LIST64_CX:
1233 case CMD_IOCB_RCV_ELS_LIST64_CX:
1234 case CMD_IOCB_CLOSE_EXTENDED_CN:
1235 case CMD_IOCB_ABORT_EXTENDED_CN:
1236 case CMD_IOCB_RET_HBQE64_CN:
1237 case CMD_IOCB_FCP_IBIDIR64_CR:
1238 case CMD_IOCB_FCP_IBIDIR64_CX:
1239 case CMD_IOCB_FCP_ITASKMGT64_CX:
1240 case CMD_IOCB_LOGENTRY_CN:
1241 case CMD_IOCB_LOGENTRY_ASYNC_CN:
1242 printk("%s - Unhandled SLI-3 Command x%x\n",
cadbd4a5 1243 __func__, iocb_cmnd);
3163f725
JS
1244 type = LPFC_UNKNOWN_IOCB;
1245 break;
dea3101e
JB
1246 default:
1247 type = LPFC_UNKNOWN_IOCB;
1248 break;
1249 }
1250
1251 return type;
1252}
1253
e59058c4 1254/**
3621a710 1255 * lpfc_sli_ring_map - Issue config_ring mbox for all rings
e59058c4
JS
1256 * @phba: Pointer to HBA context object.
1257 *
1258 * This function is called from SLI initialization code
1259 * to configure every ring of the HBA's SLI interface. The
1260 * caller is not required to hold any lock. This function issues
1261 * a config_ring mailbox command for each ring.
1262 * This function returns zero if successful else returns a negative
1263 * error code.
1264 **/
dea3101e 1265static int
ed957684 1266lpfc_sli_ring_map(struct lpfc_hba *phba)
dea3101e
JB
1267{
1268 struct lpfc_sli *psli = &phba->sli;
ed957684
JS
1269 LPFC_MBOXQ_t *pmb;
1270 MAILBOX_t *pmbox;
1271 int i, rc, ret = 0;
dea3101e 1272
ed957684
JS
1273 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
1274 if (!pmb)
1275 return -ENOMEM;
04c68496 1276 pmbox = &pmb->u.mb;
ed957684 1277 phba->link_state = LPFC_INIT_MBX_CMDS;
dea3101e 1278 for (i = 0; i < psli->num_rings; i++) {
dea3101e
JB
1279 lpfc_config_ring(phba, i, pmb);
1280 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
1281 if (rc != MBX_SUCCESS) {
92d7f7b0 1282 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 1283 "0446 Adapter failed to init (%d), "
dea3101e
JB
1284 "mbxCmd x%x CFG_RING, mbxStatus x%x, "
1285 "ring %d\n",
e8b62011
JS
1286 rc, pmbox->mbxCommand,
1287 pmbox->mbxStatus, i);
2e0fef85 1288 phba->link_state = LPFC_HBA_ERROR;
ed957684
JS
1289 ret = -ENXIO;
1290 break;
dea3101e
JB
1291 }
1292 }
ed957684
JS
1293 mempool_free(pmb, phba->mbox_mem_pool);
1294 return ret;
dea3101e
JB
1295}
1296
e59058c4 1297/**
3621a710 1298 * lpfc_sli_ringtxcmpl_put - Adds new iocb to the txcmplq
e59058c4
JS
1299 * @phba: Pointer to HBA context object.
1300 * @pring: Pointer to driver SLI ring object.
1301 * @piocb: Pointer to the driver iocb object.
1302 *
1303 * This function is called with hbalock held. The function adds the
1304 * new iocb to txcmplq of the given ring. This function always returns
1305 * 0. If this function is called for ELS ring, this function checks if
1306 * there is a vport associated with the ELS command. This function also
1307 * starts els_tmofunc timer if this is an ELS command.
1308 **/
dea3101e 1309static int
2e0fef85
JS
1310lpfc_sli_ringtxcmpl_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
1311 struct lpfc_iocbq *piocb)
dea3101e 1312{
dea3101e 1313 list_add_tail(&piocb->list, &pring->txcmplq);
4f2e66c6 1314 piocb->iocb_flag |= LPFC_IO_ON_TXCMPLQ;
2a9bf3d0 1315
92d7f7b0
JS
1316 if ((unlikely(pring->ringno == LPFC_ELS_RING)) &&
1317 (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
06918ac5
JS
1318 (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN) &&
1319 (!(piocb->vport->load_flag & FC_UNLOADING))) {
92d7f7b0
JS
1320 if (!piocb->vport)
1321 BUG();
1322 else
1323 mod_timer(&piocb->vport->els_tmofunc,
256ec0d0
JS
1324 jiffies +
1325 msecs_to_jiffies(1000 * (phba->fc_ratov << 1)));
92d7f7b0
JS
1326 }
1327
dea3101e 1328
2e0fef85 1329 return 0;
dea3101e
JB
1330}
1331
e59058c4 1332/**
3621a710 1333 * lpfc_sli_ringtx_get - Get first element of the txq
e59058c4
JS
1334 * @phba: Pointer to HBA context object.
1335 * @pring: Pointer to driver SLI ring object.
1336 *
1337 * This function is called with hbalock held to get next
1338 * iocb in txq of the given ring. If there is any iocb in
1339 * the txq, the function returns first iocb in the list after
1340 * removing the iocb from the list, else it returns NULL.
1341 **/
2a9bf3d0 1342struct lpfc_iocbq *
2e0fef85 1343lpfc_sli_ringtx_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea3101e 1344{
dea3101e
JB
1345 struct lpfc_iocbq *cmd_iocb;
1346
858c9f6c 1347 list_remove_head((&pring->txq), cmd_iocb, struct lpfc_iocbq, list);
2e0fef85 1348 return cmd_iocb;
dea3101e
JB
1349}
1350
e59058c4 1351/**
3621a710 1352 * lpfc_sli_next_iocb_slot - Get next iocb slot in the ring
e59058c4
JS
1353 * @phba: Pointer to HBA context object.
1354 * @pring: Pointer to driver SLI ring object.
1355 *
1356 * This function is called with hbalock held and the caller must post the
1357 * iocb without releasing the lock. If the caller releases the lock,
1358 * iocb slot returned by the function is not guaranteed to be available.
1359 * The function returns pointer to the next available iocb slot if there
1360 * is available slot in the ring, else it returns NULL.
1361 * If the get index of the ring is ahead of the put index, the function
1362 * will post an error attention event to the worker thread to take the
1363 * HBA to offline state.
1364 **/
dea3101e
JB
1365static IOCB_t *
1366lpfc_sli_next_iocb_slot (struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
1367{
34b02dcd 1368 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
7e56aa25
JS
1369 uint32_t max_cmd_idx = pring->sli.sli3.numCiocb;
1370 if ((pring->sli.sli3.next_cmdidx == pring->sli.sli3.cmdidx) &&
1371 (++pring->sli.sli3.next_cmdidx >= max_cmd_idx))
1372 pring->sli.sli3.next_cmdidx = 0;
dea3101e 1373
7e56aa25
JS
1374 if (unlikely(pring->sli.sli3.local_getidx ==
1375 pring->sli.sli3.next_cmdidx)) {
dea3101e 1376
7e56aa25 1377 pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
dea3101e 1378
7e56aa25 1379 if (unlikely(pring->sli.sli3.local_getidx >= max_cmd_idx)) {
dea3101e 1380 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011 1381 "0315 Ring %d issue: portCmdGet %d "
025dfdaf 1382 "is bigger than cmd ring %d\n",
e8b62011 1383 pring->ringno,
7e56aa25
JS
1384 pring->sli.sli3.local_getidx,
1385 max_cmd_idx);
dea3101e 1386
2e0fef85 1387 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
1388 /*
1389 * All error attention handlers are posted to
1390 * worker thread
1391 */
1392 phba->work_ha |= HA_ERATT;
1393 phba->work_hs = HS_FFER3;
92d7f7b0 1394
5e9d9b82 1395 lpfc_worker_wake_up(phba);
dea3101e
JB
1396
1397 return NULL;
1398 }
1399
7e56aa25 1400 if (pring->sli.sli3.local_getidx == pring->sli.sli3.next_cmdidx)
dea3101e
JB
1401 return NULL;
1402 }
1403
ed957684 1404 return lpfc_cmd_iocb(phba, pring);
dea3101e
JB
1405}
1406
e59058c4 1407/**
3621a710 1408 * lpfc_sli_next_iotag - Get an iotag for the iocb
e59058c4
JS
1409 * @phba: Pointer to HBA context object.
1410 * @iocbq: Pointer to driver iocb object.
1411 *
1412 * This function gets an iotag for the iocb. If there is no unused iotag and
1413 * the iocbq_lookup_len < 0xffff, this function allocates a bigger iotag_lookup
1414 * array and assigns a new iotag.
1415 * The function returns the allocated iotag if successful, else returns zero.
1416 * Zero is not a valid iotag.
1417 * The caller is not required to hold any lock.
1418 **/
604a3e30 1419uint16_t
2e0fef85 1420lpfc_sli_next_iotag(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
dea3101e 1421{
2e0fef85
JS
1422 struct lpfc_iocbq **new_arr;
1423 struct lpfc_iocbq **old_arr;
604a3e30
JB
1424 size_t new_len;
1425 struct lpfc_sli *psli = &phba->sli;
1426 uint16_t iotag;
dea3101e 1427
2e0fef85 1428 spin_lock_irq(&phba->hbalock);
604a3e30
JB
1429 iotag = psli->last_iotag;
1430 if(++iotag < psli->iocbq_lookup_len) {
1431 psli->last_iotag = iotag;
1432 psli->iocbq_lookup[iotag] = iocbq;
2e0fef85 1433 spin_unlock_irq(&phba->hbalock);
604a3e30
JB
1434 iocbq->iotag = iotag;
1435 return iotag;
2e0fef85 1436 } else if (psli->iocbq_lookup_len < (0xffff
604a3e30
JB
1437 - LPFC_IOCBQ_LOOKUP_INCREMENT)) {
1438 new_len = psli->iocbq_lookup_len + LPFC_IOCBQ_LOOKUP_INCREMENT;
2e0fef85
JS
1439 spin_unlock_irq(&phba->hbalock);
1440 new_arr = kzalloc(new_len * sizeof (struct lpfc_iocbq *),
604a3e30
JB
1441 GFP_KERNEL);
1442 if (new_arr) {
2e0fef85 1443 spin_lock_irq(&phba->hbalock);
604a3e30
JB
1444 old_arr = psli->iocbq_lookup;
1445 if (new_len <= psli->iocbq_lookup_len) {
1446 /* highly unprobable case */
1447 kfree(new_arr);
1448 iotag = psli->last_iotag;
1449 if(++iotag < psli->iocbq_lookup_len) {
1450 psli->last_iotag = iotag;
1451 psli->iocbq_lookup[iotag] = iocbq;
2e0fef85 1452 spin_unlock_irq(&phba->hbalock);
604a3e30
JB
1453 iocbq->iotag = iotag;
1454 return iotag;
1455 }
2e0fef85 1456 spin_unlock_irq(&phba->hbalock);
604a3e30
JB
1457 return 0;
1458 }
1459 if (psli->iocbq_lookup)
1460 memcpy(new_arr, old_arr,
1461 ((psli->last_iotag + 1) *
311464ec 1462 sizeof (struct lpfc_iocbq *)));
604a3e30
JB
1463 psli->iocbq_lookup = new_arr;
1464 psli->iocbq_lookup_len = new_len;
1465 psli->last_iotag = iotag;
1466 psli->iocbq_lookup[iotag] = iocbq;
2e0fef85 1467 spin_unlock_irq(&phba->hbalock);
604a3e30
JB
1468 iocbq->iotag = iotag;
1469 kfree(old_arr);
1470 return iotag;
1471 }
8f6d98d2 1472 } else
2e0fef85 1473 spin_unlock_irq(&phba->hbalock);
dea3101e 1474
bc73905a 1475 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
e8b62011
JS
1476 "0318 Failed to allocate IOTAG.last IOTAG is %d\n",
1477 psli->last_iotag);
dea3101e 1478
604a3e30 1479 return 0;
dea3101e
JB
1480}
1481
e59058c4 1482/**
3621a710 1483 * lpfc_sli_submit_iocb - Submit an iocb to the firmware
e59058c4
JS
1484 * @phba: Pointer to HBA context object.
1485 * @pring: Pointer to driver SLI ring object.
1486 * @iocb: Pointer to iocb slot in the ring.
1487 * @nextiocb: Pointer to driver iocb object which need to be
1488 * posted to firmware.
1489 *
1490 * This function is called with hbalock held to post a new iocb to
1491 * the firmware. This function copies the new iocb to ring iocb slot and
1492 * updates the ring pointers. It adds the new iocb to txcmplq if there is
1493 * a completion call back for this iocb else the function will free the
1494 * iocb object.
1495 **/
dea3101e
JB
1496static void
1497lpfc_sli_submit_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
1498 IOCB_t *iocb, struct lpfc_iocbq *nextiocb)
1499{
1500 /*
604a3e30 1501 * Set up an iotag
dea3101e 1502 */
604a3e30 1503 nextiocb->iocb.ulpIoTag = (nextiocb->iocb_cmpl) ? nextiocb->iotag : 0;
dea3101e 1504
e2a0a9d6 1505
a58cbd52
JS
1506 if (pring->ringno == LPFC_ELS_RING) {
1507 lpfc_debugfs_slow_ring_trc(phba,
1508 "IOCB cmd ring: wd4:x%08x wd6:x%08x wd7:x%08x",
1509 *(((uint32_t *) &nextiocb->iocb) + 4),
1510 *(((uint32_t *) &nextiocb->iocb) + 6),
1511 *(((uint32_t *) &nextiocb->iocb) + 7));
1512 }
1513
dea3101e
JB
1514 /*
1515 * Issue iocb command to adapter
1516 */
92d7f7b0 1517 lpfc_sli_pcimem_bcopy(&nextiocb->iocb, iocb, phba->iocb_cmd_size);
dea3101e
JB
1518 wmb();
1519 pring->stats.iocb_cmd++;
1520
1521 /*
1522 * If there is no completion routine to call, we can release the
1523 * IOCB buffer back right now. For IOCBs, like QUE_RING_BUF,
1524 * that have no rsp ring completion, iocb_cmpl MUST be NULL.
1525 */
1526 if (nextiocb->iocb_cmpl)
1527 lpfc_sli_ringtxcmpl_put(phba, pring, nextiocb);
604a3e30 1528 else
2e0fef85 1529 __lpfc_sli_release_iocbq(phba, nextiocb);
dea3101e
JB
1530
1531 /*
1532 * Let the HBA know what IOCB slot will be the next one the
1533 * driver will put a command into.
1534 */
7e56aa25
JS
1535 pring->sli.sli3.cmdidx = pring->sli.sli3.next_cmdidx;
1536 writel(pring->sli.sli3.cmdidx, &phba->host_gp[pring->ringno].cmdPutInx);
dea3101e
JB
1537}
1538
e59058c4 1539/**
3621a710 1540 * lpfc_sli_update_full_ring - Update the chip attention register
e59058c4
JS
1541 * @phba: Pointer to HBA context object.
1542 * @pring: Pointer to driver SLI ring object.
1543 *
1544 * The caller is not required to hold any lock for calling this function.
1545 * This function updates the chip attention bits for the ring to inform firmware
1546 * that there are pending work to be done for this ring and requests an
1547 * interrupt when there is space available in the ring. This function is
1548 * called when the driver is unable to post more iocbs to the ring due
1549 * to unavailability of space in the ring.
1550 **/
dea3101e 1551static void
2e0fef85 1552lpfc_sli_update_full_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea3101e
JB
1553{
1554 int ringno = pring->ringno;
1555
1556 pring->flag |= LPFC_CALL_RING_AVAILABLE;
1557
1558 wmb();
1559
1560 /*
1561 * Set ring 'ringno' to SET R0CE_REQ in Chip Att register.
1562 * The HBA will tell us when an IOCB entry is available.
1563 */
1564 writel((CA_R0ATT|CA_R0CE_REQ) << (ringno*4), phba->CAregaddr);
1565 readl(phba->CAregaddr); /* flush */
1566
1567 pring->stats.iocb_cmd_full++;
1568}
1569
e59058c4 1570/**
3621a710 1571 * lpfc_sli_update_ring - Update chip attention register
e59058c4
JS
1572 * @phba: Pointer to HBA context object.
1573 * @pring: Pointer to driver SLI ring object.
1574 *
1575 * This function updates the chip attention register bit for the
1576 * given ring to inform HBA that there is more work to be done
1577 * in this ring. The caller is not required to hold any lock.
1578 **/
dea3101e 1579static void
2e0fef85 1580lpfc_sli_update_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea3101e
JB
1581{
1582 int ringno = pring->ringno;
1583
1584 /*
1585 * Tell the HBA that there is work to do in this ring.
1586 */
34b02dcd
JS
1587 if (!(phba->sli3_options & LPFC_SLI3_CRP_ENABLED)) {
1588 wmb();
1589 writel(CA_R0ATT << (ringno * 4), phba->CAregaddr);
1590 readl(phba->CAregaddr); /* flush */
1591 }
dea3101e
JB
1592}
1593
e59058c4 1594/**
3621a710 1595 * lpfc_sli_resume_iocb - Process iocbs in the txq
e59058c4
JS
1596 * @phba: Pointer to HBA context object.
1597 * @pring: Pointer to driver SLI ring object.
1598 *
1599 * This function is called with hbalock held to post pending iocbs
1600 * in the txq to the firmware. This function is called when driver
1601 * detects space available in the ring.
1602 **/
dea3101e 1603static void
2e0fef85 1604lpfc_sli_resume_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea3101e
JB
1605{
1606 IOCB_t *iocb;
1607 struct lpfc_iocbq *nextiocb;
1608
1609 /*
1610 * Check to see if:
1611 * (a) there is anything on the txq to send
1612 * (b) link is up
1613 * (c) link attention events can be processed (fcp ring only)
1614 * (d) IOCB processing is not blocked by the outstanding mbox command.
1615 */
0e9bb8d7
JS
1616
1617 if (lpfc_is_link_up(phba) &&
1618 (!list_empty(&pring->txq)) &&
dea3101e 1619 (pring->ringno != phba->sli.fcp_ring ||
0b727fea 1620 phba->sli.sli_flag & LPFC_PROCESS_LA)) {
dea3101e
JB
1621
1622 while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
1623 (nextiocb = lpfc_sli_ringtx_get(phba, pring)))
1624 lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
1625
1626 if (iocb)
1627 lpfc_sli_update_ring(phba, pring);
1628 else
1629 lpfc_sli_update_full_ring(phba, pring);
1630 }
1631
1632 return;
1633}
1634
e59058c4 1635/**
3621a710 1636 * lpfc_sli_next_hbq_slot - Get next hbq entry for the HBQ
e59058c4
JS
1637 * @phba: Pointer to HBA context object.
1638 * @hbqno: HBQ number.
1639 *
1640 * This function is called with hbalock held to get the next
1641 * available slot for the given HBQ. If there is free slot
1642 * available for the HBQ it will return pointer to the next available
1643 * HBQ entry else it will return NULL.
1644 **/
a6ababd2 1645static struct lpfc_hbq_entry *
ed957684
JS
1646lpfc_sli_next_hbq_slot(struct lpfc_hba *phba, uint32_t hbqno)
1647{
1648 struct hbq_s *hbqp = &phba->hbqs[hbqno];
1649
1650 if (hbqp->next_hbqPutIdx == hbqp->hbqPutIdx &&
1651 ++hbqp->next_hbqPutIdx >= hbqp->entry_count)
1652 hbqp->next_hbqPutIdx = 0;
1653
1654 if (unlikely(hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)) {
92d7f7b0 1655 uint32_t raw_index = phba->hbq_get[hbqno];
ed957684
JS
1656 uint32_t getidx = le32_to_cpu(raw_index);
1657
1658 hbqp->local_hbqGetIdx = getidx;
1659
1660 if (unlikely(hbqp->local_hbqGetIdx >= hbqp->entry_count)) {
1661 lpfc_printf_log(phba, KERN_ERR,
92d7f7b0 1662 LOG_SLI | LOG_VPORT,
e8b62011 1663 "1802 HBQ %d: local_hbqGetIdx "
ed957684 1664 "%u is > than hbqp->entry_count %u\n",
e8b62011 1665 hbqno, hbqp->local_hbqGetIdx,
ed957684
JS
1666 hbqp->entry_count);
1667
1668 phba->link_state = LPFC_HBA_ERROR;
1669 return NULL;
1670 }
1671
1672 if (hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)
1673 return NULL;
1674 }
1675
51ef4c26
JS
1676 return (struct lpfc_hbq_entry *) phba->hbqs[hbqno].hbq_virt +
1677 hbqp->hbqPutIdx;
ed957684
JS
1678}
1679
e59058c4 1680/**
3621a710 1681 * lpfc_sli_hbqbuf_free_all - Free all the hbq buffers
e59058c4
JS
1682 * @phba: Pointer to HBA context object.
1683 *
1684 * This function is called with no lock held to free all the
1685 * hbq buffers while uninitializing the SLI interface. It also
1686 * frees the HBQ buffers returned by the firmware but not yet
1687 * processed by the upper layers.
1688 **/
ed957684
JS
1689void
1690lpfc_sli_hbqbuf_free_all(struct lpfc_hba *phba)
1691{
92d7f7b0
JS
1692 struct lpfc_dmabuf *dmabuf, *next_dmabuf;
1693 struct hbq_dmabuf *hbq_buf;
3163f725 1694 unsigned long flags;
51ef4c26 1695 int i, hbq_count;
3163f725 1696 uint32_t hbqno;
ed957684 1697
51ef4c26 1698 hbq_count = lpfc_sli_hbq_count();
ed957684 1699 /* Return all memory used by all HBQs */
3163f725 1700 spin_lock_irqsave(&phba->hbalock, flags);
51ef4c26
JS
1701 for (i = 0; i < hbq_count; ++i) {
1702 list_for_each_entry_safe(dmabuf, next_dmabuf,
1703 &phba->hbqs[i].hbq_buffer_list, list) {
1704 hbq_buf = container_of(dmabuf, struct hbq_dmabuf, dbuf);
1705 list_del(&hbq_buf->dbuf.list);
1706 (phba->hbqs[i].hbq_free_buffer)(phba, hbq_buf);
1707 }
a8adb832 1708 phba->hbqs[i].buffer_count = 0;
ed957684 1709 }
3163f725 1710 /* Return all HBQ buffer that are in-fly */
3772a991
JS
1711 list_for_each_entry_safe(dmabuf, next_dmabuf, &phba->rb_pend_list,
1712 list) {
3163f725
JS
1713 hbq_buf = container_of(dmabuf, struct hbq_dmabuf, dbuf);
1714 list_del(&hbq_buf->dbuf.list);
1715 if (hbq_buf->tag == -1) {
1716 (phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer)
1717 (phba, hbq_buf);
1718 } else {
1719 hbqno = hbq_buf->tag >> 16;
1720 if (hbqno >= LPFC_MAX_HBQS)
1721 (phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer)
1722 (phba, hbq_buf);
1723 else
1724 (phba->hbqs[hbqno].hbq_free_buffer)(phba,
1725 hbq_buf);
1726 }
1727 }
1728
1729 /* Mark the HBQs not in use */
1730 phba->hbq_in_use = 0;
1731 spin_unlock_irqrestore(&phba->hbalock, flags);
ed957684
JS
1732}
1733
e59058c4 1734/**
3621a710 1735 * lpfc_sli_hbq_to_firmware - Post the hbq buffer to firmware
e59058c4
JS
1736 * @phba: Pointer to HBA context object.
1737 * @hbqno: HBQ number.
1738 * @hbq_buf: Pointer to HBQ buffer.
1739 *
1740 * This function is called with the hbalock held to post a
1741 * hbq buffer to the firmware. If the function finds an empty
1742 * slot in the HBQ, it will post the buffer. The function will return
1743 * pointer to the hbq entry if it successfully post the buffer
1744 * else it will return NULL.
1745 **/
3772a991 1746static int
ed957684 1747lpfc_sli_hbq_to_firmware(struct lpfc_hba *phba, uint32_t hbqno,
92d7f7b0 1748 struct hbq_dmabuf *hbq_buf)
3772a991
JS
1749{
1750 return phba->lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buf);
1751}
1752
1753/**
1754 * lpfc_sli_hbq_to_firmware_s3 - Post the hbq buffer to SLI3 firmware
1755 * @phba: Pointer to HBA context object.
1756 * @hbqno: HBQ number.
1757 * @hbq_buf: Pointer to HBQ buffer.
1758 *
1759 * This function is called with the hbalock held to post a hbq buffer to the
1760 * firmware. If the function finds an empty slot in the HBQ, it will post the
1761 * buffer and place it on the hbq_buffer_list. The function will return zero if
1762 * it successfully post the buffer else it will return an error.
1763 **/
1764static int
1765lpfc_sli_hbq_to_firmware_s3(struct lpfc_hba *phba, uint32_t hbqno,
1766 struct hbq_dmabuf *hbq_buf)
ed957684
JS
1767{
1768 struct lpfc_hbq_entry *hbqe;
92d7f7b0 1769 dma_addr_t physaddr = hbq_buf->dbuf.phys;
ed957684
JS
1770
1771 /* Get next HBQ entry slot to use */
1772 hbqe = lpfc_sli_next_hbq_slot(phba, hbqno);
1773 if (hbqe) {
1774 struct hbq_s *hbqp = &phba->hbqs[hbqno];
1775
92d7f7b0
JS
1776 hbqe->bde.addrHigh = le32_to_cpu(putPaddrHigh(physaddr));
1777 hbqe->bde.addrLow = le32_to_cpu(putPaddrLow(physaddr));
51ef4c26 1778 hbqe->bde.tus.f.bdeSize = hbq_buf->size;
ed957684 1779 hbqe->bde.tus.f.bdeFlags = 0;
92d7f7b0
JS
1780 hbqe->bde.tus.w = le32_to_cpu(hbqe->bde.tus.w);
1781 hbqe->buffer_tag = le32_to_cpu(hbq_buf->tag);
1782 /* Sync SLIM */
ed957684
JS
1783 hbqp->hbqPutIdx = hbqp->next_hbqPutIdx;
1784 writel(hbqp->hbqPutIdx, phba->hbq_put + hbqno);
92d7f7b0 1785 /* flush */
ed957684 1786 readl(phba->hbq_put + hbqno);
51ef4c26 1787 list_add_tail(&hbq_buf->dbuf.list, &hbqp->hbq_buffer_list);
3772a991
JS
1788 return 0;
1789 } else
1790 return -ENOMEM;
ed957684
JS
1791}
1792
4f774513
JS
1793/**
1794 * lpfc_sli_hbq_to_firmware_s4 - Post the hbq buffer to SLI4 firmware
1795 * @phba: Pointer to HBA context object.
1796 * @hbqno: HBQ number.
1797 * @hbq_buf: Pointer to HBQ buffer.
1798 *
1799 * This function is called with the hbalock held to post an RQE to the SLI4
1800 * firmware. If able to post the RQE to the RQ it will queue the hbq entry to
1801 * the hbq_buffer_list and return zero, otherwise it will return an error.
1802 **/
1803static int
1804lpfc_sli_hbq_to_firmware_s4(struct lpfc_hba *phba, uint32_t hbqno,
1805 struct hbq_dmabuf *hbq_buf)
1806{
1807 int rc;
1808 struct lpfc_rqe hrqe;
1809 struct lpfc_rqe drqe;
1810
1811 hrqe.address_lo = putPaddrLow(hbq_buf->hbuf.phys);
1812 hrqe.address_hi = putPaddrHigh(hbq_buf->hbuf.phys);
1813 drqe.address_lo = putPaddrLow(hbq_buf->dbuf.phys);
1814 drqe.address_hi = putPaddrHigh(hbq_buf->dbuf.phys);
1815 rc = lpfc_sli4_rq_put(phba->sli4_hba.hdr_rq, phba->sli4_hba.dat_rq,
1816 &hrqe, &drqe);
1817 if (rc < 0)
1818 return rc;
1819 hbq_buf->tag = rc;
1820 list_add_tail(&hbq_buf->dbuf.list, &phba->hbqs[hbqno].hbq_buffer_list);
1821 return 0;
1822}
1823
e59058c4 1824/* HBQ for ELS and CT traffic. */
92d7f7b0
JS
1825static struct lpfc_hbq_init lpfc_els_hbq = {
1826 .rn = 1,
def9c7a9 1827 .entry_count = 256,
92d7f7b0
JS
1828 .mask_count = 0,
1829 .profile = 0,
51ef4c26 1830 .ring_mask = (1 << LPFC_ELS_RING),
92d7f7b0 1831 .buffer_count = 0,
a257bf90
JS
1832 .init_count = 40,
1833 .add_count = 40,
92d7f7b0 1834};
ed957684 1835
e59058c4 1836/* HBQ for the extra ring if needed */
51ef4c26
JS
1837static struct lpfc_hbq_init lpfc_extra_hbq = {
1838 .rn = 1,
1839 .entry_count = 200,
1840 .mask_count = 0,
1841 .profile = 0,
1842 .ring_mask = (1 << LPFC_EXTRA_RING),
1843 .buffer_count = 0,
1844 .init_count = 0,
1845 .add_count = 5,
1846};
1847
e59058c4 1848/* Array of HBQs */
78b2d852 1849struct lpfc_hbq_init *lpfc_hbq_defs[] = {
92d7f7b0 1850 &lpfc_els_hbq,
51ef4c26 1851 &lpfc_extra_hbq,
92d7f7b0 1852};
ed957684 1853
e59058c4 1854/**
3621a710 1855 * lpfc_sli_hbqbuf_fill_hbqs - Post more hbq buffers to HBQ
e59058c4
JS
1856 * @phba: Pointer to HBA context object.
1857 * @hbqno: HBQ number.
1858 * @count: Number of HBQ buffers to be posted.
1859 *
d7c255b2
JS
1860 * This function is called with no lock held to post more hbq buffers to the
1861 * given HBQ. The function returns the number of HBQ buffers successfully
1862 * posted.
e59058c4 1863 **/
311464ec 1864static int
92d7f7b0 1865lpfc_sli_hbqbuf_fill_hbqs(struct lpfc_hba *phba, uint32_t hbqno, uint32_t count)
ed957684 1866{
d7c255b2 1867 uint32_t i, posted = 0;
3163f725 1868 unsigned long flags;
92d7f7b0 1869 struct hbq_dmabuf *hbq_buffer;
d7c255b2 1870 LIST_HEAD(hbq_buf_list);
eafe1df9 1871 if (!phba->hbqs[hbqno].hbq_alloc_buffer)
51ef4c26 1872 return 0;
51ef4c26 1873
d7c255b2
JS
1874 if ((phba->hbqs[hbqno].buffer_count + count) >
1875 lpfc_hbq_defs[hbqno]->entry_count)
1876 count = lpfc_hbq_defs[hbqno]->entry_count -
1877 phba->hbqs[hbqno].buffer_count;
1878 if (!count)
1879 return 0;
1880 /* Allocate HBQ entries */
1881 for (i = 0; i < count; i++) {
1882 hbq_buffer = (phba->hbqs[hbqno].hbq_alloc_buffer)(phba);
1883 if (!hbq_buffer)
1884 break;
1885 list_add_tail(&hbq_buffer->dbuf.list, &hbq_buf_list);
1886 }
3163f725
JS
1887 /* Check whether HBQ is still in use */
1888 spin_lock_irqsave(&phba->hbalock, flags);
eafe1df9 1889 if (!phba->hbq_in_use)
d7c255b2
JS
1890 goto err;
1891 while (!list_empty(&hbq_buf_list)) {
1892 list_remove_head(&hbq_buf_list, hbq_buffer, struct hbq_dmabuf,
1893 dbuf.list);
1894 hbq_buffer->tag = (phba->hbqs[hbqno].buffer_count |
1895 (hbqno << 16));
3772a991 1896 if (!lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer)) {
a8adb832 1897 phba->hbqs[hbqno].buffer_count++;
d7c255b2
JS
1898 posted++;
1899 } else
51ef4c26 1900 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
ed957684 1901 }
3163f725 1902 spin_unlock_irqrestore(&phba->hbalock, flags);
d7c255b2
JS
1903 return posted;
1904err:
eafe1df9 1905 spin_unlock_irqrestore(&phba->hbalock, flags);
d7c255b2
JS
1906 while (!list_empty(&hbq_buf_list)) {
1907 list_remove_head(&hbq_buf_list, hbq_buffer, struct hbq_dmabuf,
1908 dbuf.list);
1909 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
1910 }
1911 return 0;
ed957684
JS
1912}
1913
e59058c4 1914/**
3621a710 1915 * lpfc_sli_hbqbuf_add_hbqs - Post more HBQ buffers to firmware
e59058c4
JS
1916 * @phba: Pointer to HBA context object.
1917 * @qno: HBQ number.
1918 *
1919 * This function posts more buffers to the HBQ. This function
d7c255b2
JS
1920 * is called with no lock held. The function returns the number of HBQ entries
1921 * successfully allocated.
e59058c4 1922 **/
92d7f7b0
JS
1923int
1924lpfc_sli_hbqbuf_add_hbqs(struct lpfc_hba *phba, uint32_t qno)
ed957684 1925{
def9c7a9
JS
1926 if (phba->sli_rev == LPFC_SLI_REV4)
1927 return 0;
1928 else
1929 return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
1930 lpfc_hbq_defs[qno]->add_count);
92d7f7b0 1931}
ed957684 1932
e59058c4 1933/**
3621a710 1934 * lpfc_sli_hbqbuf_init_hbqs - Post initial buffers to the HBQ
e59058c4
JS
1935 * @phba: Pointer to HBA context object.
1936 * @qno: HBQ queue number.
1937 *
1938 * This function is called from SLI initialization code path with
1939 * no lock held to post initial HBQ buffers to firmware. The
d7c255b2 1940 * function returns the number of HBQ entries successfully allocated.
e59058c4 1941 **/
a6ababd2 1942static int
92d7f7b0
JS
1943lpfc_sli_hbqbuf_init_hbqs(struct lpfc_hba *phba, uint32_t qno)
1944{
def9c7a9
JS
1945 if (phba->sli_rev == LPFC_SLI_REV4)
1946 return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
73d91e50 1947 lpfc_hbq_defs[qno]->entry_count);
def9c7a9
JS
1948 else
1949 return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
1950 lpfc_hbq_defs[qno]->init_count);
ed957684
JS
1951}
1952
3772a991
JS
1953/**
1954 * lpfc_sli_hbqbuf_get - Remove the first hbq off of an hbq list
1955 * @phba: Pointer to HBA context object.
1956 * @hbqno: HBQ number.
1957 *
1958 * This function removes the first hbq buffer on an hbq list and returns a
1959 * pointer to that buffer. If it finds no buffers on the list it returns NULL.
1960 **/
1961static struct hbq_dmabuf *
1962lpfc_sli_hbqbuf_get(struct list_head *rb_list)
1963{
1964 struct lpfc_dmabuf *d_buf;
1965
1966 list_remove_head(rb_list, d_buf, struct lpfc_dmabuf, list);
1967 if (!d_buf)
1968 return NULL;
1969 return container_of(d_buf, struct hbq_dmabuf, dbuf);
1970}
1971
e59058c4 1972/**
3621a710 1973 * lpfc_sli_hbqbuf_find - Find the hbq buffer associated with a tag
e59058c4
JS
1974 * @phba: Pointer to HBA context object.
1975 * @tag: Tag of the hbq buffer.
1976 *
1977 * This function is called with hbalock held. This function searches
1978 * for the hbq buffer associated with the given tag in the hbq buffer
1979 * list. If it finds the hbq buffer, it returns the hbq_buffer other wise
1980 * it returns NULL.
1981 **/
a6ababd2 1982static struct hbq_dmabuf *
92d7f7b0 1983lpfc_sli_hbqbuf_find(struct lpfc_hba *phba, uint32_t tag)
ed957684 1984{
92d7f7b0
JS
1985 struct lpfc_dmabuf *d_buf;
1986 struct hbq_dmabuf *hbq_buf;
51ef4c26
JS
1987 uint32_t hbqno;
1988
1989 hbqno = tag >> 16;
a0a74e45 1990 if (hbqno >= LPFC_MAX_HBQS)
51ef4c26 1991 return NULL;
ed957684 1992
3772a991 1993 spin_lock_irq(&phba->hbalock);
51ef4c26 1994 list_for_each_entry(d_buf, &phba->hbqs[hbqno].hbq_buffer_list, list) {
92d7f7b0 1995 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
51ef4c26 1996 if (hbq_buf->tag == tag) {
3772a991 1997 spin_unlock_irq(&phba->hbalock);
92d7f7b0 1998 return hbq_buf;
ed957684
JS
1999 }
2000 }
3772a991 2001 spin_unlock_irq(&phba->hbalock);
92d7f7b0 2002 lpfc_printf_log(phba, KERN_ERR, LOG_SLI | LOG_VPORT,
e8b62011 2003 "1803 Bad hbq tag. Data: x%x x%x\n",
a8adb832 2004 tag, phba->hbqs[tag >> 16].buffer_count);
92d7f7b0 2005 return NULL;
ed957684
JS
2006}
2007
e59058c4 2008/**
3621a710 2009 * lpfc_sli_free_hbq - Give back the hbq buffer to firmware
e59058c4
JS
2010 * @phba: Pointer to HBA context object.
2011 * @hbq_buffer: Pointer to HBQ buffer.
2012 *
2013 * This function is called with hbalock. This function gives back
2014 * the hbq buffer to firmware. If the HBQ does not have space to
2015 * post the buffer, it will free the buffer.
2016 **/
ed957684 2017void
51ef4c26 2018lpfc_sli_free_hbq(struct lpfc_hba *phba, struct hbq_dmabuf *hbq_buffer)
ed957684
JS
2019{
2020 uint32_t hbqno;
2021
51ef4c26
JS
2022 if (hbq_buffer) {
2023 hbqno = hbq_buffer->tag >> 16;
3772a991 2024 if (lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer))
51ef4c26 2025 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
ed957684
JS
2026 }
2027}
2028
e59058c4 2029/**
3621a710 2030 * lpfc_sli_chk_mbx_command - Check if the mailbox is a legitimate mailbox
e59058c4
JS
2031 * @mbxCommand: mailbox command code.
2032 *
2033 * This function is called by the mailbox event handler function to verify
2034 * that the completed mailbox command is a legitimate mailbox command. If the
2035 * completed mailbox is not known to the function, it will return MBX_SHUTDOWN
2036 * and the mailbox event handler will take the HBA offline.
2037 **/
dea3101e
JB
2038static int
2039lpfc_sli_chk_mbx_command(uint8_t mbxCommand)
2040{
2041 uint8_t ret;
2042
2043 switch (mbxCommand) {
2044 case MBX_LOAD_SM:
2045 case MBX_READ_NV:
2046 case MBX_WRITE_NV:
a8adb832 2047 case MBX_WRITE_VPARMS:
dea3101e
JB
2048 case MBX_RUN_BIU_DIAG:
2049 case MBX_INIT_LINK:
2050 case MBX_DOWN_LINK:
2051 case MBX_CONFIG_LINK:
2052 case MBX_CONFIG_RING:
2053 case MBX_RESET_RING:
2054 case MBX_READ_CONFIG:
2055 case MBX_READ_RCONFIG:
2056 case MBX_READ_SPARM:
2057 case MBX_READ_STATUS:
2058 case MBX_READ_RPI:
2059 case MBX_READ_XRI:
2060 case MBX_READ_REV:
2061 case MBX_READ_LNK_STAT:
2062 case MBX_REG_LOGIN:
2063 case MBX_UNREG_LOGIN:
dea3101e
JB
2064 case MBX_CLEAR_LA:
2065 case MBX_DUMP_MEMORY:
2066 case MBX_DUMP_CONTEXT:
2067 case MBX_RUN_DIAGS:
2068 case MBX_RESTART:
2069 case MBX_UPDATE_CFG:
2070 case MBX_DOWN_LOAD:
2071 case MBX_DEL_LD_ENTRY:
2072 case MBX_RUN_PROGRAM:
2073 case MBX_SET_MASK:
09372820 2074 case MBX_SET_VARIABLE:
dea3101e 2075 case MBX_UNREG_D_ID:
41415862 2076 case MBX_KILL_BOARD:
dea3101e 2077 case MBX_CONFIG_FARP:
41415862 2078 case MBX_BEACON:
dea3101e
JB
2079 case MBX_LOAD_AREA:
2080 case MBX_RUN_BIU_DIAG64:
2081 case MBX_CONFIG_PORT:
2082 case MBX_READ_SPARM64:
2083 case MBX_READ_RPI64:
2084 case MBX_REG_LOGIN64:
76a95d75 2085 case MBX_READ_TOPOLOGY:
09372820 2086 case MBX_WRITE_WWN:
dea3101e
JB
2087 case MBX_SET_DEBUG:
2088 case MBX_LOAD_EXP_ROM:
57127f15 2089 case MBX_ASYNCEVT_ENABLE:
92d7f7b0
JS
2090 case MBX_REG_VPI:
2091 case MBX_UNREG_VPI:
858c9f6c 2092 case MBX_HEARTBEAT:
84774a4d
JS
2093 case MBX_PORT_CAPABILITIES:
2094 case MBX_PORT_IOV_CONTROL:
04c68496
JS
2095 case MBX_SLI4_CONFIG:
2096 case MBX_SLI4_REQ_FTRS:
2097 case MBX_REG_FCFI:
2098 case MBX_UNREG_FCFI:
2099 case MBX_REG_VFI:
2100 case MBX_UNREG_VFI:
2101 case MBX_INIT_VPI:
2102 case MBX_INIT_VFI:
2103 case MBX_RESUME_RPI:
c7495937
JS
2104 case MBX_READ_EVENT_LOG_STATUS:
2105 case MBX_READ_EVENT_LOG:
dcf2a4e0
JS
2106 case MBX_SECURITY_MGMT:
2107 case MBX_AUTH_PORT:
940eb687 2108 case MBX_ACCESS_VDATA:
dea3101e
JB
2109 ret = mbxCommand;
2110 break;
2111 default:
2112 ret = MBX_SHUTDOWN;
2113 break;
2114 }
2e0fef85 2115 return ret;
dea3101e 2116}
e59058c4
JS
2117
2118/**
3621a710 2119 * lpfc_sli_wake_mbox_wait - lpfc_sli_issue_mbox_wait mbox completion handler
e59058c4
JS
2120 * @phba: Pointer to HBA context object.
2121 * @pmboxq: Pointer to mailbox command.
2122 *
2123 * This is completion handler function for mailbox commands issued from
2124 * lpfc_sli_issue_mbox_wait function. This function is called by the
2125 * mailbox event handler function with no lock held. This function
2126 * will wake up thread waiting on the wait queue pointed by context1
2127 * of the mailbox.
2128 **/
04c68496 2129void
2e0fef85 2130lpfc_sli_wake_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq)
dea3101e
JB
2131{
2132 wait_queue_head_t *pdone_q;
858c9f6c 2133 unsigned long drvr_flag;
dea3101e
JB
2134
2135 /*
2136 * If pdone_q is empty, the driver thread gave up waiting and
2137 * continued running.
2138 */
7054a606 2139 pmboxq->mbox_flag |= LPFC_MBX_WAKE;
858c9f6c 2140 spin_lock_irqsave(&phba->hbalock, drvr_flag);
dea3101e
JB
2141 pdone_q = (wait_queue_head_t *) pmboxq->context1;
2142 if (pdone_q)
2143 wake_up_interruptible(pdone_q);
858c9f6c 2144 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea3101e
JB
2145 return;
2146}
2147
e59058c4
JS
2148
2149/**
3621a710 2150 * lpfc_sli_def_mbox_cmpl - Default mailbox completion handler
e59058c4
JS
2151 * @phba: Pointer to HBA context object.
2152 * @pmb: Pointer to mailbox object.
2153 *
2154 * This function is the default mailbox completion handler. It
2155 * frees the memory resources associated with the completed mailbox
2156 * command. If the completed command is a REG_LOGIN mailbox command,
2157 * this function will issue a UREG_LOGIN to re-claim the RPI.
2158 **/
dea3101e 2159void
2e0fef85 2160lpfc_sli_def_mbox_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea3101e 2161{
d439d286 2162 struct lpfc_vport *vport = pmb->vport;
dea3101e 2163 struct lpfc_dmabuf *mp;
d439d286 2164 struct lpfc_nodelist *ndlp;
5af5eee7 2165 struct Scsi_Host *shost;
04c68496 2166 uint16_t rpi, vpi;
7054a606
JS
2167 int rc;
2168
dea3101e 2169 mp = (struct lpfc_dmabuf *) (pmb->context1);
7054a606 2170
dea3101e
JB
2171 if (mp) {
2172 lpfc_mbuf_free(phba, mp->virt, mp->phys);
2173 kfree(mp);
2174 }
7054a606
JS
2175
2176 /*
2177 * If a REG_LOGIN succeeded after node is destroyed or node
2178 * is in re-discovery driver need to cleanup the RPI.
2179 */
2e0fef85 2180 if (!(phba->pport->load_flag & FC_UNLOADING) &&
04c68496
JS
2181 pmb->u.mb.mbxCommand == MBX_REG_LOGIN64 &&
2182 !pmb->u.mb.mbxStatus) {
2183 rpi = pmb->u.mb.un.varWords[0];
6d368e53 2184 vpi = pmb->u.mb.un.varRegLogin.vpi;
04c68496 2185 lpfc_unreg_login(phba, vpi, rpi, pmb);
92d7f7b0 2186 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
7054a606
JS
2187 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
2188 if (rc != MBX_NOT_FINISHED)
2189 return;
2190 }
2191
695a814e
JS
2192 if ((pmb->u.mb.mbxCommand == MBX_REG_VPI) &&
2193 !(phba->pport->load_flag & FC_UNLOADING) &&
2194 !pmb->u.mb.mbxStatus) {
5af5eee7
JS
2195 shost = lpfc_shost_from_vport(vport);
2196 spin_lock_irq(shost->host_lock);
2197 vport->vpi_state |= LPFC_VPI_REGISTERED;
2198 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
2199 spin_unlock_irq(shost->host_lock);
695a814e
JS
2200 }
2201
d439d286
JS
2202 if (pmb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
2203 ndlp = (struct lpfc_nodelist *)pmb->context2;
2204 lpfc_nlp_put(ndlp);
2205 pmb->context2 = NULL;
2206 }
2207
dcf2a4e0
JS
2208 /* Check security permission status on INIT_LINK mailbox command */
2209 if ((pmb->u.mb.mbxCommand == MBX_INIT_LINK) &&
2210 (pmb->u.mb.mbxStatus == MBXERR_SEC_NO_PERMISSION))
2211 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
2212 "2860 SLI authentication is required "
2213 "for INIT_LINK but has not done yet\n");
2214
04c68496
JS
2215 if (bf_get(lpfc_mqe_command, &pmb->u.mqe) == MBX_SLI4_CONFIG)
2216 lpfc_sli4_mbox_cmd_free(phba, pmb);
2217 else
2218 mempool_free(pmb, phba->mbox_mem_pool);
dea3101e 2219}
be6bb941
JS
2220 /**
2221 * lpfc_sli4_unreg_rpi_cmpl_clr - mailbox completion handler
2222 * @phba: Pointer to HBA context object.
2223 * @pmb: Pointer to mailbox object.
2224 *
2225 * This function is the unreg rpi mailbox completion handler. It
2226 * frees the memory resources associated with the completed mailbox
2227 * command. An additional refrenece is put on the ndlp to prevent
2228 * lpfc_nlp_release from freeing the rpi bit in the bitmask before
2229 * the unreg mailbox command completes, this routine puts the
2230 * reference back.
2231 *
2232 **/
2233void
2234lpfc_sli4_unreg_rpi_cmpl_clr(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
2235{
2236 struct lpfc_vport *vport = pmb->vport;
2237 struct lpfc_nodelist *ndlp;
2238
2239 ndlp = pmb->context1;
2240 if (pmb->u.mb.mbxCommand == MBX_UNREG_LOGIN) {
2241 if (phba->sli_rev == LPFC_SLI_REV4 &&
2242 (bf_get(lpfc_sli_intf_if_type,
2243 &phba->sli4_hba.sli_intf) ==
2244 LPFC_SLI_INTF_IF_TYPE_2)) {
2245 if (ndlp) {
2246 lpfc_printf_vlog(vport, KERN_INFO, LOG_SLI,
2247 "0010 UNREG_LOGIN vpi:%x "
2248 "rpi:%x DID:%x map:%x %p\n",
2249 vport->vpi, ndlp->nlp_rpi,
2250 ndlp->nlp_DID,
2251 ndlp->nlp_usg_map, ndlp);
2252
2253 lpfc_nlp_put(ndlp);
2254 }
2255 }
2256 }
2257
2258 mempool_free(pmb, phba->mbox_mem_pool);
2259}
dea3101e 2260
e59058c4 2261/**
3621a710 2262 * lpfc_sli_handle_mb_event - Handle mailbox completions from firmware
e59058c4
JS
2263 * @phba: Pointer to HBA context object.
2264 *
2265 * This function is called with no lock held. This function processes all
2266 * the completed mailbox commands and gives it to upper layers. The interrupt
2267 * service routine processes mailbox completion interrupt and adds completed
2268 * mailbox commands to the mboxq_cmpl queue and signals the worker thread.
2269 * Worker thread call lpfc_sli_handle_mb_event, which will return the
2270 * completed mailbox commands in mboxq_cmpl queue to the upper layers. This
2271 * function returns the mailbox commands to the upper layer by calling the
2272 * completion handler function of each mailbox.
2273 **/
dea3101e 2274int
2e0fef85 2275lpfc_sli_handle_mb_event(struct lpfc_hba *phba)
dea3101e 2276{
92d7f7b0 2277 MAILBOX_t *pmbox;
dea3101e 2278 LPFC_MBOXQ_t *pmb;
92d7f7b0
JS
2279 int rc;
2280 LIST_HEAD(cmplq);
dea3101e
JB
2281
2282 phba->sli.slistat.mbox_event++;
2283
92d7f7b0
JS
2284 /* Get all completed mailboxe buffers into the cmplq */
2285 spin_lock_irq(&phba->hbalock);
2286 list_splice_init(&phba->sli.mboxq_cmpl, &cmplq);
2287 spin_unlock_irq(&phba->hbalock);
dea3101e 2288
92d7f7b0
JS
2289 /* Get a Mailbox buffer to setup mailbox commands for callback */
2290 do {
2291 list_remove_head(&cmplq, pmb, LPFC_MBOXQ_t, list);
2292 if (pmb == NULL)
2293 break;
2e0fef85 2294
04c68496 2295 pmbox = &pmb->u.mb;
dea3101e 2296
858c9f6c
JS
2297 if (pmbox->mbxCommand != MBX_HEARTBEAT) {
2298 if (pmb->vport) {
2299 lpfc_debugfs_disc_trc(pmb->vport,
2300 LPFC_DISC_TRC_MBOX_VPORT,
2301 "MBOX cmpl vport: cmd:x%x mb:x%x x%x",
2302 (uint32_t)pmbox->mbxCommand,
2303 pmbox->un.varWords[0],
2304 pmbox->un.varWords[1]);
2305 }
2306 else {
2307 lpfc_debugfs_disc_trc(phba->pport,
2308 LPFC_DISC_TRC_MBOX,
2309 "MBOX cmpl: cmd:x%x mb:x%x x%x",
2310 (uint32_t)pmbox->mbxCommand,
2311 pmbox->un.varWords[0],
2312 pmbox->un.varWords[1]);
2313 }
2314 }
2315
dea3101e
JB
2316 /*
2317 * It is a fatal error if unknown mbox command completion.
2318 */
2319 if (lpfc_sli_chk_mbx_command(pmbox->mbxCommand) ==
2320 MBX_SHUTDOWN) {
af901ca1 2321 /* Unknown mailbox command compl */
92d7f7b0 2322 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
e8b62011 2323 "(%d):0323 Unknown Mailbox command "
a183a15f 2324 "x%x (x%x/x%x) Cmpl\n",
92d7f7b0 2325 pmb->vport ? pmb->vport->vpi : 0,
04c68496 2326 pmbox->mbxCommand,
a183a15f
JS
2327 lpfc_sli_config_mbox_subsys_get(phba,
2328 pmb),
2329 lpfc_sli_config_mbox_opcode_get(phba,
2330 pmb));
2e0fef85 2331 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
2332 phba->work_hs = HS_FFER3;
2333 lpfc_handle_eratt(phba);
92d7f7b0 2334 continue;
dea3101e
JB
2335 }
2336
dea3101e
JB
2337 if (pmbox->mbxStatus) {
2338 phba->sli.slistat.mbox_stat_err++;
2339 if (pmbox->mbxStatus == MBXERR_NO_RESOURCES) {
2340 /* Mbox cmd cmpl error - RETRYing */
92d7f7b0 2341 lpfc_printf_log(phba, KERN_INFO,
a183a15f
JS
2342 LOG_MBOX | LOG_SLI,
2343 "(%d):0305 Mbox cmd cmpl "
2344 "error - RETRYing Data: x%x "
2345 "(x%x/x%x) x%x x%x x%x\n",
2346 pmb->vport ? pmb->vport->vpi : 0,
2347 pmbox->mbxCommand,
2348 lpfc_sli_config_mbox_subsys_get(phba,
2349 pmb),
2350 lpfc_sli_config_mbox_opcode_get(phba,
2351 pmb),
2352 pmbox->mbxStatus,
2353 pmbox->un.varWords[0],
2354 pmb->vport->port_state);
dea3101e
JB
2355 pmbox->mbxStatus = 0;
2356 pmbox->mbxOwner = OWN_HOST;
dea3101e 2357 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
04c68496 2358 if (rc != MBX_NOT_FINISHED)
92d7f7b0 2359 continue;
dea3101e
JB
2360 }
2361 }
2362
2363 /* Mailbox cmd <cmd> Cmpl <cmpl> */
92d7f7b0 2364 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
a183a15f 2365 "(%d):0307 Mailbox cmd x%x (x%x/x%x) Cmpl x%p "
e74c03c8
JS
2366 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x "
2367 "x%x x%x x%x\n",
92d7f7b0 2368 pmb->vport ? pmb->vport->vpi : 0,
dea3101e 2369 pmbox->mbxCommand,
a183a15f
JS
2370 lpfc_sli_config_mbox_subsys_get(phba, pmb),
2371 lpfc_sli_config_mbox_opcode_get(phba, pmb),
dea3101e
JB
2372 pmb->mbox_cmpl,
2373 *((uint32_t *) pmbox),
2374 pmbox->un.varWords[0],
2375 pmbox->un.varWords[1],
2376 pmbox->un.varWords[2],
2377 pmbox->un.varWords[3],
2378 pmbox->un.varWords[4],
2379 pmbox->un.varWords[5],
2380 pmbox->un.varWords[6],
e74c03c8
JS
2381 pmbox->un.varWords[7],
2382 pmbox->un.varWords[8],
2383 pmbox->un.varWords[9],
2384 pmbox->un.varWords[10]);
dea3101e 2385
92d7f7b0 2386 if (pmb->mbox_cmpl)
dea3101e 2387 pmb->mbox_cmpl(phba,pmb);
92d7f7b0
JS
2388 } while (1);
2389 return 0;
2390}
dea3101e 2391
e59058c4 2392/**
3621a710 2393 * lpfc_sli_get_buff - Get the buffer associated with the buffer tag
e59058c4
JS
2394 * @phba: Pointer to HBA context object.
2395 * @pring: Pointer to driver SLI ring object.
2396 * @tag: buffer tag.
2397 *
2398 * This function is called with no lock held. When QUE_BUFTAG_BIT bit
2399 * is set in the tag the buffer is posted for a particular exchange,
2400 * the function will return the buffer without replacing the buffer.
2401 * If the buffer is for unsolicited ELS or CT traffic, this function
2402 * returns the buffer and also posts another buffer to the firmware.
2403 **/
76bb24ef
JS
2404static struct lpfc_dmabuf *
2405lpfc_sli_get_buff(struct lpfc_hba *phba,
9f1e1b50
JS
2406 struct lpfc_sli_ring *pring,
2407 uint32_t tag)
76bb24ef 2408{
9f1e1b50
JS
2409 struct hbq_dmabuf *hbq_entry;
2410
76bb24ef
JS
2411 if (tag & QUE_BUFTAG_BIT)
2412 return lpfc_sli_ring_taggedbuf_get(phba, pring, tag);
9f1e1b50
JS
2413 hbq_entry = lpfc_sli_hbqbuf_find(phba, tag);
2414 if (!hbq_entry)
2415 return NULL;
2416 return &hbq_entry->dbuf;
76bb24ef 2417}
57127f15 2418
3772a991
JS
2419/**
2420 * lpfc_complete_unsol_iocb - Complete an unsolicited sequence
2421 * @phba: Pointer to HBA context object.
2422 * @pring: Pointer to driver SLI ring object.
2423 * @saveq: Pointer to the iocbq struct representing the sequence starting frame.
2424 * @fch_r_ctl: the r_ctl for the first frame of the sequence.
2425 * @fch_type: the type for the first frame of the sequence.
2426 *
2427 * This function is called with no lock held. This function uses the r_ctl and
2428 * type of the received sequence to find the correct callback function to call
2429 * to process the sequence.
2430 **/
2431static int
2432lpfc_complete_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2433 struct lpfc_iocbq *saveq, uint32_t fch_r_ctl,
2434 uint32_t fch_type)
2435{
2436 int i;
2437
2438 /* unSolicited Responses */
2439 if (pring->prt[0].profile) {
2440 if (pring->prt[0].lpfc_sli_rcv_unsol_event)
2441 (pring->prt[0].lpfc_sli_rcv_unsol_event) (phba, pring,
2442 saveq);
2443 return 1;
2444 }
2445 /* We must search, based on rctl / type
2446 for the right routine */
2447 for (i = 0; i < pring->num_mask; i++) {
2448 if ((pring->prt[i].rctl == fch_r_ctl) &&
2449 (pring->prt[i].type == fch_type)) {
2450 if (pring->prt[i].lpfc_sli_rcv_unsol_event)
2451 (pring->prt[i].lpfc_sli_rcv_unsol_event)
2452 (phba, pring, saveq);
2453 return 1;
2454 }
2455 }
2456 return 0;
2457}
e59058c4
JS
2458
2459/**
3621a710 2460 * lpfc_sli_process_unsol_iocb - Unsolicited iocb handler
e59058c4
JS
2461 * @phba: Pointer to HBA context object.
2462 * @pring: Pointer to driver SLI ring object.
2463 * @saveq: Pointer to the unsolicited iocb.
2464 *
2465 * This function is called with no lock held by the ring event handler
2466 * when there is an unsolicited iocb posted to the response ring by the
2467 * firmware. This function gets the buffer associated with the iocbs
2468 * and calls the event handler for the ring. This function handles both
2469 * qring buffers and hbq buffers.
2470 * When the function returns 1 the caller can free the iocb object otherwise
2471 * upper layer functions will free the iocb objects.
2472 **/
dea3101e
JB
2473static int
2474lpfc_sli_process_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2475 struct lpfc_iocbq *saveq)
2476{
2477 IOCB_t * irsp;
2478 WORD5 * w5p;
2479 uint32_t Rctl, Type;
76bb24ef 2480 struct lpfc_iocbq *iocbq;
3163f725 2481 struct lpfc_dmabuf *dmzbuf;
dea3101e 2482
dea3101e 2483 irsp = &(saveq->iocb);
57127f15
JS
2484
2485 if (irsp->ulpCommand == CMD_ASYNC_STATUS) {
2486 if (pring->lpfc_sli_rcv_async_status)
2487 pring->lpfc_sli_rcv_async_status(phba, pring, saveq);
2488 else
2489 lpfc_printf_log(phba,
2490 KERN_WARNING,
2491 LOG_SLI,
2492 "0316 Ring %d handler: unexpected "
2493 "ASYNC_STATUS iocb received evt_code "
2494 "0x%x\n",
2495 pring->ringno,
2496 irsp->un.asyncstat.evt_code);
2497 return 1;
2498 }
2499
3163f725
JS
2500 if ((irsp->ulpCommand == CMD_IOCB_RET_XRI64_CX) &&
2501 (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED)) {
2502 if (irsp->ulpBdeCount > 0) {
2503 dmzbuf = lpfc_sli_get_buff(phba, pring,
2504 irsp->un.ulpWord[3]);
2505 lpfc_in_buf_free(phba, dmzbuf);
2506 }
2507
2508 if (irsp->ulpBdeCount > 1) {
2509 dmzbuf = lpfc_sli_get_buff(phba, pring,
2510 irsp->unsli3.sli3Words[3]);
2511 lpfc_in_buf_free(phba, dmzbuf);
2512 }
2513
2514 if (irsp->ulpBdeCount > 2) {
2515 dmzbuf = lpfc_sli_get_buff(phba, pring,
2516 irsp->unsli3.sli3Words[7]);
2517 lpfc_in_buf_free(phba, dmzbuf);
2518 }
2519
2520 return 1;
2521 }
2522
92d7f7b0 2523 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
76bb24ef
JS
2524 if (irsp->ulpBdeCount != 0) {
2525 saveq->context2 = lpfc_sli_get_buff(phba, pring,
2526 irsp->un.ulpWord[3]);
2527 if (!saveq->context2)
2528 lpfc_printf_log(phba,
2529 KERN_ERR,
2530 LOG_SLI,
2531 "0341 Ring %d Cannot find buffer for "
2532 "an unsolicited iocb. tag 0x%x\n",
2533 pring->ringno,
2534 irsp->un.ulpWord[3]);
76bb24ef
JS
2535 }
2536 if (irsp->ulpBdeCount == 2) {
2537 saveq->context3 = lpfc_sli_get_buff(phba, pring,
2538 irsp->unsli3.sli3Words[7]);
2539 if (!saveq->context3)
2540 lpfc_printf_log(phba,
2541 KERN_ERR,
2542 LOG_SLI,
2543 "0342 Ring %d Cannot find buffer for an"
2544 " unsolicited iocb. tag 0x%x\n",
2545 pring->ringno,
2546 irsp->unsli3.sli3Words[7]);
2547 }
2548 list_for_each_entry(iocbq, &saveq->list, list) {
76bb24ef 2549 irsp = &(iocbq->iocb);
76bb24ef
JS
2550 if (irsp->ulpBdeCount != 0) {
2551 iocbq->context2 = lpfc_sli_get_buff(phba, pring,
2552 irsp->un.ulpWord[3]);
9c2face6 2553 if (!iocbq->context2)
76bb24ef
JS
2554 lpfc_printf_log(phba,
2555 KERN_ERR,
2556 LOG_SLI,
2557 "0343 Ring %d Cannot find "
2558 "buffer for an unsolicited iocb"
2559 ". tag 0x%x\n", pring->ringno,
92d7f7b0 2560 irsp->un.ulpWord[3]);
76bb24ef
JS
2561 }
2562 if (irsp->ulpBdeCount == 2) {
2563 iocbq->context3 = lpfc_sli_get_buff(phba, pring,
51ef4c26 2564 irsp->unsli3.sli3Words[7]);
9c2face6 2565 if (!iocbq->context3)
76bb24ef
JS
2566 lpfc_printf_log(phba,
2567 KERN_ERR,
2568 LOG_SLI,
2569 "0344 Ring %d Cannot find "
2570 "buffer for an unsolicited "
2571 "iocb. tag 0x%x\n",
2572 pring->ringno,
2573 irsp->unsli3.sli3Words[7]);
2574 }
2575 }
92d7f7b0 2576 }
9c2face6
JS
2577 if (irsp->ulpBdeCount != 0 &&
2578 (irsp->ulpCommand == CMD_IOCB_RCV_CONT64_CX ||
2579 irsp->ulpStatus == IOSTAT_INTERMED_RSP)) {
2580 int found = 0;
2581
2582 /* search continue save q for same XRI */
2583 list_for_each_entry(iocbq, &pring->iocb_continue_saveq, clist) {
7851fe2c
JS
2584 if (iocbq->iocb.unsli3.rcvsli3.ox_id ==
2585 saveq->iocb.unsli3.rcvsli3.ox_id) {
9c2face6
JS
2586 list_add_tail(&saveq->list, &iocbq->list);
2587 found = 1;
2588 break;
2589 }
2590 }
2591 if (!found)
2592 list_add_tail(&saveq->clist,
2593 &pring->iocb_continue_saveq);
2594 if (saveq->iocb.ulpStatus != IOSTAT_INTERMED_RSP) {
2595 list_del_init(&iocbq->clist);
2596 saveq = iocbq;
2597 irsp = &(saveq->iocb);
2598 } else
2599 return 0;
2600 }
2601 if ((irsp->ulpCommand == CMD_RCV_ELS_REQ64_CX) ||
2602 (irsp->ulpCommand == CMD_RCV_ELS_REQ_CX) ||
2603 (irsp->ulpCommand == CMD_IOCB_RCV_ELS64_CX)) {
6a9c52cf
JS
2604 Rctl = FC_RCTL_ELS_REQ;
2605 Type = FC_TYPE_ELS;
9c2face6
JS
2606 } else {
2607 w5p = (WORD5 *)&(saveq->iocb.un.ulpWord[5]);
2608 Rctl = w5p->hcsw.Rctl;
2609 Type = w5p->hcsw.Type;
2610
2611 /* Firmware Workaround */
2612 if ((Rctl == 0) && (pring->ringno == LPFC_ELS_RING) &&
2613 (irsp->ulpCommand == CMD_RCV_SEQUENCE64_CX ||
2614 irsp->ulpCommand == CMD_IOCB_RCV_SEQ64_CX)) {
6a9c52cf
JS
2615 Rctl = FC_RCTL_ELS_REQ;
2616 Type = FC_TYPE_ELS;
9c2face6
JS
2617 w5p->hcsw.Rctl = Rctl;
2618 w5p->hcsw.Type = Type;
2619 }
2620 }
92d7f7b0 2621
3772a991 2622 if (!lpfc_complete_unsol_iocb(phba, pring, saveq, Rctl, Type))
92d7f7b0 2623 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
e8b62011 2624 "0313 Ring %d handler: unexpected Rctl x%x "
92d7f7b0 2625 "Type x%x received\n",
e8b62011 2626 pring->ringno, Rctl, Type);
3772a991 2627
92d7f7b0 2628 return 1;
dea3101e
JB
2629}
2630
e59058c4 2631/**
3621a710 2632 * lpfc_sli_iocbq_lookup - Find command iocb for the given response iocb
e59058c4
JS
2633 * @phba: Pointer to HBA context object.
2634 * @pring: Pointer to driver SLI ring object.
2635 * @prspiocb: Pointer to response iocb object.
2636 *
2637 * This function looks up the iocb_lookup table to get the command iocb
2638 * corresponding to the given response iocb using the iotag of the
2639 * response iocb. This function is called with the hbalock held.
2640 * This function returns the command iocb object if it finds the command
2641 * iocb else returns NULL.
2642 **/
dea3101e 2643static struct lpfc_iocbq *
2e0fef85
JS
2644lpfc_sli_iocbq_lookup(struct lpfc_hba *phba,
2645 struct lpfc_sli_ring *pring,
2646 struct lpfc_iocbq *prspiocb)
dea3101e 2647{
dea3101e
JB
2648 struct lpfc_iocbq *cmd_iocb = NULL;
2649 uint16_t iotag;
2650
604a3e30
JB
2651 iotag = prspiocb->iocb.ulpIoTag;
2652
2653 if (iotag != 0 && iotag <= phba->sli.last_iotag) {
2654 cmd_iocb = phba->sli.iocbq_lookup[iotag];
92d7f7b0 2655 list_del_init(&cmd_iocb->list);
4f2e66c6 2656 if (cmd_iocb->iocb_flag & LPFC_IO_ON_TXCMPLQ) {
4f2e66c6 2657 cmd_iocb->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
2a9bf3d0 2658 }
604a3e30 2659 return cmd_iocb;
dea3101e
JB
2660 }
2661
dea3101e 2662 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011 2663 "0317 iotag x%x is out off "
604a3e30 2664 "range: max iotag x%x wd0 x%x\n",
e8b62011 2665 iotag, phba->sli.last_iotag,
604a3e30 2666 *(((uint32_t *) &prspiocb->iocb) + 7));
dea3101e
JB
2667 return NULL;
2668}
2669
3772a991
JS
2670/**
2671 * lpfc_sli_iocbq_lookup_by_tag - Find command iocb for the iotag
2672 * @phba: Pointer to HBA context object.
2673 * @pring: Pointer to driver SLI ring object.
2674 * @iotag: IOCB tag.
2675 *
2676 * This function looks up the iocb_lookup table to get the command iocb
2677 * corresponding to the given iotag. This function is called with the
2678 * hbalock held.
2679 * This function returns the command iocb object if it finds the command
2680 * iocb else returns NULL.
2681 **/
2682static struct lpfc_iocbq *
2683lpfc_sli_iocbq_lookup_by_tag(struct lpfc_hba *phba,
2684 struct lpfc_sli_ring *pring, uint16_t iotag)
2685{
2686 struct lpfc_iocbq *cmd_iocb;
2687
2688 if (iotag != 0 && iotag <= phba->sli.last_iotag) {
2689 cmd_iocb = phba->sli.iocbq_lookup[iotag];
4f2e66c6
JS
2690 if (cmd_iocb->iocb_flag & LPFC_IO_ON_TXCMPLQ) {
2691 /* remove from txcmpl queue list */
2692 list_del_init(&cmd_iocb->list);
2693 cmd_iocb->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
4f2e66c6 2694 return cmd_iocb;
2a9bf3d0 2695 }
3772a991 2696 }
3772a991
JS
2697 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2698 "0372 iotag x%x is out off range: max iotag (x%x)\n",
2699 iotag, phba->sli.last_iotag);
2700 return NULL;
2701}
2702
e59058c4 2703/**
3621a710 2704 * lpfc_sli_process_sol_iocb - process solicited iocb completion
e59058c4
JS
2705 * @phba: Pointer to HBA context object.
2706 * @pring: Pointer to driver SLI ring object.
2707 * @saveq: Pointer to the response iocb to be processed.
2708 *
2709 * This function is called by the ring event handler for non-fcp
2710 * rings when there is a new response iocb in the response ring.
2711 * The caller is not required to hold any locks. This function
2712 * gets the command iocb associated with the response iocb and
2713 * calls the completion handler for the command iocb. If there
2714 * is no completion handler, the function will free the resources
2715 * associated with command iocb. If the response iocb is for
2716 * an already aborted command iocb, the status of the completion
2717 * is changed to IOSTAT_LOCAL_REJECT/IOERR_SLI_ABORTED.
2718 * This function always returns 1.
2719 **/
dea3101e 2720static int
2e0fef85 2721lpfc_sli_process_sol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
dea3101e
JB
2722 struct lpfc_iocbq *saveq)
2723{
2e0fef85 2724 struct lpfc_iocbq *cmdiocbp;
dea3101e
JB
2725 int rc = 1;
2726 unsigned long iflag;
2727
2728 /* Based on the iotag field, get the cmd IOCB from the txcmplq */
2e0fef85 2729 spin_lock_irqsave(&phba->hbalock, iflag);
604a3e30 2730 cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring, saveq);
2e0fef85
JS
2731 spin_unlock_irqrestore(&phba->hbalock, iflag);
2732
dea3101e
JB
2733 if (cmdiocbp) {
2734 if (cmdiocbp->iocb_cmpl) {
ea2151b4
JS
2735 /*
2736 * If an ELS command failed send an event to mgmt
2737 * application.
2738 */
2739 if (saveq->iocb.ulpStatus &&
2740 (pring->ringno == LPFC_ELS_RING) &&
2741 (cmdiocbp->iocb.ulpCommand ==
2742 CMD_ELS_REQUEST64_CR))
2743 lpfc_send_els_failure_event(phba,
2744 cmdiocbp, saveq);
2745
dea3101e
JB
2746 /*
2747 * Post all ELS completions to the worker thread.
2748 * All other are passed to the completion callback.
2749 */
2750 if (pring->ringno == LPFC_ELS_RING) {
341af102
JS
2751 if ((phba->sli_rev < LPFC_SLI_REV4) &&
2752 (cmdiocbp->iocb_flag &
2753 LPFC_DRIVER_ABORTED)) {
2754 spin_lock_irqsave(&phba->hbalock,
2755 iflag);
07951076
JS
2756 cmdiocbp->iocb_flag &=
2757 ~LPFC_DRIVER_ABORTED;
341af102
JS
2758 spin_unlock_irqrestore(&phba->hbalock,
2759 iflag);
07951076
JS
2760 saveq->iocb.ulpStatus =
2761 IOSTAT_LOCAL_REJECT;
2762 saveq->iocb.un.ulpWord[4] =
2763 IOERR_SLI_ABORTED;
0ff10d46
JS
2764
2765 /* Firmware could still be in progress
2766 * of DMAing payload, so don't free data
2767 * buffer till after a hbeat.
2768 */
341af102
JS
2769 spin_lock_irqsave(&phba->hbalock,
2770 iflag);
0ff10d46 2771 saveq->iocb_flag |= LPFC_DELAY_MEM_FREE;
341af102
JS
2772 spin_unlock_irqrestore(&phba->hbalock,
2773 iflag);
2774 }
0f65ff68
JS
2775 if (phba->sli_rev == LPFC_SLI_REV4) {
2776 if (saveq->iocb_flag &
2777 LPFC_EXCHANGE_BUSY) {
2778 /* Set cmdiocb flag for the
2779 * exchange busy so sgl (xri)
2780 * will not be released until
2781 * the abort xri is received
2782 * from hba.
2783 */
2784 spin_lock_irqsave(
2785 &phba->hbalock, iflag);
2786 cmdiocbp->iocb_flag |=
2787 LPFC_EXCHANGE_BUSY;
2788 spin_unlock_irqrestore(
2789 &phba->hbalock, iflag);
2790 }
2791 if (cmdiocbp->iocb_flag &
2792 LPFC_DRIVER_ABORTED) {
2793 /*
2794 * Clear LPFC_DRIVER_ABORTED
2795 * bit in case it was driver
2796 * initiated abort.
2797 */
2798 spin_lock_irqsave(
2799 &phba->hbalock, iflag);
2800 cmdiocbp->iocb_flag &=
2801 ~LPFC_DRIVER_ABORTED;
2802 spin_unlock_irqrestore(
2803 &phba->hbalock, iflag);
2804 cmdiocbp->iocb.ulpStatus =
2805 IOSTAT_LOCAL_REJECT;
2806 cmdiocbp->iocb.un.ulpWord[4] =
2807 IOERR_ABORT_REQUESTED;
2808 /*
2809 * For SLI4, irsiocb contains
2810 * NO_XRI in sli_xritag, it
2811 * shall not affect releasing
2812 * sgl (xri) process.
2813 */
2814 saveq->iocb.ulpStatus =
2815 IOSTAT_LOCAL_REJECT;
2816 saveq->iocb.un.ulpWord[4] =
2817 IOERR_SLI_ABORTED;
2818 spin_lock_irqsave(
2819 &phba->hbalock, iflag);
2820 saveq->iocb_flag |=
2821 LPFC_DELAY_MEM_FREE;
2822 spin_unlock_irqrestore(
2823 &phba->hbalock, iflag);
2824 }
07951076 2825 }
dea3101e 2826 }
2e0fef85 2827 (cmdiocbp->iocb_cmpl) (phba, cmdiocbp, saveq);
604a3e30
JB
2828 } else
2829 lpfc_sli_release_iocbq(phba, cmdiocbp);
dea3101e
JB
2830 } else {
2831 /*
2832 * Unknown initiating command based on the response iotag.
2833 * This could be the case on the ELS ring because of
2834 * lpfc_els_abort().
2835 */
2836 if (pring->ringno != LPFC_ELS_RING) {
2837 /*
2838 * Ring <ringno> handler: unexpected completion IoTag
2839 * <IoTag>
2840 */
a257bf90 2841 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
e8b62011
JS
2842 "0322 Ring %d handler: "
2843 "unexpected completion IoTag x%x "
2844 "Data: x%x x%x x%x x%x\n",
2845 pring->ringno,
2846 saveq->iocb.ulpIoTag,
2847 saveq->iocb.ulpStatus,
2848 saveq->iocb.un.ulpWord[4],
2849 saveq->iocb.ulpCommand,
2850 saveq->iocb.ulpContext);
dea3101e
JB
2851 }
2852 }
68876920 2853
dea3101e
JB
2854 return rc;
2855}
2856
e59058c4 2857/**
3621a710 2858 * lpfc_sli_rsp_pointers_error - Response ring pointer error handler
e59058c4
JS
2859 * @phba: Pointer to HBA context object.
2860 * @pring: Pointer to driver SLI ring object.
2861 *
2862 * This function is called from the iocb ring event handlers when
2863 * put pointer is ahead of the get pointer for a ring. This function signal
2864 * an error attention condition to the worker thread and the worker
2865 * thread will transition the HBA to offline state.
2866 **/
2e0fef85
JS
2867static void
2868lpfc_sli_rsp_pointers_error(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
875fbdfe 2869{
34b02dcd 2870 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
875fbdfe 2871 /*
025dfdaf 2872 * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
875fbdfe
JSEC
2873 * rsp ring <portRspMax>
2874 */
2875 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011 2876 "0312 Ring %d handler: portRspPut %d "
025dfdaf 2877 "is bigger than rsp ring %d\n",
e8b62011 2878 pring->ringno, le32_to_cpu(pgp->rspPutInx),
7e56aa25 2879 pring->sli.sli3.numRiocb);
875fbdfe 2880
2e0fef85 2881 phba->link_state = LPFC_HBA_ERROR;
875fbdfe
JSEC
2882
2883 /*
2884 * All error attention handlers are posted to
2885 * worker thread
2886 */
2887 phba->work_ha |= HA_ERATT;
2888 phba->work_hs = HS_FFER3;
92d7f7b0 2889
5e9d9b82 2890 lpfc_worker_wake_up(phba);
875fbdfe
JSEC
2891
2892 return;
2893}
2894
9399627f 2895/**
3621a710 2896 * lpfc_poll_eratt - Error attention polling timer timeout handler
9399627f
JS
2897 * @ptr: Pointer to address of HBA context object.
2898 *
2899 * This function is invoked by the Error Attention polling timer when the
2900 * timer times out. It will check the SLI Error Attention register for
2901 * possible attention events. If so, it will post an Error Attention event
2902 * and wake up worker thread to process it. Otherwise, it will set up the
2903 * Error Attention polling timer for the next poll.
2904 **/
2905void lpfc_poll_eratt(unsigned long ptr)
2906{
2907 struct lpfc_hba *phba;
eb016566 2908 uint32_t eratt = 0;
aa6fbb75 2909 uint64_t sli_intr, cnt;
9399627f
JS
2910
2911 phba = (struct lpfc_hba *)ptr;
2912
aa6fbb75
JS
2913 /* Here we will also keep track of interrupts per sec of the hba */
2914 sli_intr = phba->sli.slistat.sli_intr;
2915
2916 if (phba->sli.slistat.sli_prev_intr > sli_intr)
2917 cnt = (((uint64_t)(-1) - phba->sli.slistat.sli_prev_intr) +
2918 sli_intr);
2919 else
2920 cnt = (sli_intr - phba->sli.slistat.sli_prev_intr);
2921
2922 /* 64-bit integer division not supporte on 32-bit x86 - use do_div */
eb016566 2923 do_div(cnt, LPFC_ERATT_POLL_INTERVAL);
aa6fbb75
JS
2924 phba->sli.slistat.sli_ips = cnt;
2925
2926 phba->sli.slistat.sli_prev_intr = sli_intr;
2927
9399627f
JS
2928 /* Check chip HA register for error event */
2929 eratt = lpfc_sli_check_eratt(phba);
2930
2931 if (eratt)
2932 /* Tell the worker thread there is work to do */
2933 lpfc_worker_wake_up(phba);
2934 else
2935 /* Restart the timer for next eratt poll */
256ec0d0
JS
2936 mod_timer(&phba->eratt_poll,
2937 jiffies +
2938 msecs_to_jiffies(1000 * LPFC_ERATT_POLL_INTERVAL));
9399627f
JS
2939 return;
2940}
2941
875fbdfe 2942
e59058c4 2943/**
3621a710 2944 * lpfc_sli_handle_fast_ring_event - Handle ring events on FCP ring
e59058c4
JS
2945 * @phba: Pointer to HBA context object.
2946 * @pring: Pointer to driver SLI ring object.
2947 * @mask: Host attention register mask for this ring.
2948 *
2949 * This function is called from the interrupt context when there is a ring
2950 * event for the fcp ring. The caller does not hold any lock.
2951 * The function processes each response iocb in the response ring until it
25985edc 2952 * finds an iocb with LE bit set and chains all the iocbs up to the iocb with
e59058c4
JS
2953 * LE bit set. The function will call the completion handler of the command iocb
2954 * if the response iocb indicates a completion for a command iocb or it is
2955 * an abort completion. The function will call lpfc_sli_process_unsol_iocb
2956 * function if this is an unsolicited iocb.
dea3101e 2957 * This routine presumes LPFC_FCP_RING handling and doesn't bother
45ed1190
JS
2958 * to check it explicitly.
2959 */
2960int
2e0fef85
JS
2961lpfc_sli_handle_fast_ring_event(struct lpfc_hba *phba,
2962 struct lpfc_sli_ring *pring, uint32_t mask)
dea3101e 2963{
34b02dcd 2964 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
dea3101e 2965 IOCB_t *irsp = NULL;
87f6eaff 2966 IOCB_t *entry = NULL;
dea3101e
JB
2967 struct lpfc_iocbq *cmdiocbq = NULL;
2968 struct lpfc_iocbq rspiocbq;
dea3101e
JB
2969 uint32_t status;
2970 uint32_t portRspPut, portRspMax;
2971 int rc = 1;
2972 lpfc_iocb_type type;
2973 unsigned long iflag;
2974 uint32_t rsp_cmpl = 0;
dea3101e 2975
2e0fef85 2976 spin_lock_irqsave(&phba->hbalock, iflag);
dea3101e
JB
2977 pring->stats.iocb_event++;
2978
dea3101e
JB
2979 /*
2980 * The next available response entry should never exceed the maximum
2981 * entries. If it does, treat it as an adapter hardware error.
2982 */
7e56aa25 2983 portRspMax = pring->sli.sli3.numRiocb;
dea3101e
JB
2984 portRspPut = le32_to_cpu(pgp->rspPutInx);
2985 if (unlikely(portRspPut >= portRspMax)) {
875fbdfe 2986 lpfc_sli_rsp_pointers_error(phba, pring);
2e0fef85 2987 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea3101e
JB
2988 return 1;
2989 }
45ed1190
JS
2990 if (phba->fcp_ring_in_use) {
2991 spin_unlock_irqrestore(&phba->hbalock, iflag);
2992 return 1;
2993 } else
2994 phba->fcp_ring_in_use = 1;
dea3101e
JB
2995
2996 rmb();
7e56aa25 2997 while (pring->sli.sli3.rspidx != portRspPut) {
87f6eaff
JSEC
2998 /*
2999 * Fetch an entry off the ring and copy it into a local data
3000 * structure. The copy involves a byte-swap since the
3001 * network byte order and pci byte orders are different.
3002 */
ed957684 3003 entry = lpfc_resp_iocb(phba, pring);
858c9f6c 3004 phba->last_completion_time = jiffies;
875fbdfe 3005
7e56aa25
JS
3006 if (++pring->sli.sli3.rspidx >= portRspMax)
3007 pring->sli.sli3.rspidx = 0;
875fbdfe 3008
87f6eaff
JSEC
3009 lpfc_sli_pcimem_bcopy((uint32_t *) entry,
3010 (uint32_t *) &rspiocbq.iocb,
ed957684 3011 phba->iocb_rsp_size);
a4bc3379 3012 INIT_LIST_HEAD(&(rspiocbq.list));
87f6eaff
JSEC
3013 irsp = &rspiocbq.iocb;
3014
dea3101e
JB
3015 type = lpfc_sli_iocb_cmd_type(irsp->ulpCommand & CMD_IOCB_MASK);
3016 pring->stats.iocb_rsp++;
3017 rsp_cmpl++;
3018
3019 if (unlikely(irsp->ulpStatus)) {
92d7f7b0
JS
3020 /*
3021 * If resource errors reported from HBA, reduce
3022 * queuedepths of the SCSI device.
3023 */
3024 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
e3d2b802
JS
3025 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
3026 IOERR_NO_RESOURCES)) {
92d7f7b0 3027 spin_unlock_irqrestore(&phba->hbalock, iflag);
3772a991 3028 phba->lpfc_rampdown_queue_depth(phba);
92d7f7b0
JS
3029 spin_lock_irqsave(&phba->hbalock, iflag);
3030 }
3031
dea3101e
JB
3032 /* Rsp ring <ringno> error: IOCB */
3033 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
e8b62011 3034 "0336 Rsp Ring %d error: IOCB Data: "
92d7f7b0 3035 "x%x x%x x%x x%x x%x x%x x%x x%x\n",
e8b62011 3036 pring->ringno,
92d7f7b0
JS
3037 irsp->un.ulpWord[0],
3038 irsp->un.ulpWord[1],
3039 irsp->un.ulpWord[2],
3040 irsp->un.ulpWord[3],
3041 irsp->un.ulpWord[4],
3042 irsp->un.ulpWord[5],
d7c255b2
JS
3043 *(uint32_t *)&irsp->un1,
3044 *((uint32_t *)&irsp->un1 + 1));
dea3101e
JB
3045 }
3046
3047 switch (type) {
3048 case LPFC_ABORT_IOCB:
3049 case LPFC_SOL_IOCB:
3050 /*
3051 * Idle exchange closed via ABTS from port. No iocb
3052 * resources need to be recovered.
3053 */
3054 if (unlikely(irsp->ulpCommand == CMD_XRI_ABORTED_CX)) {
dca9479b 3055 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
e8b62011 3056 "0333 IOCB cmd 0x%x"
dca9479b 3057 " processed. Skipping"
92d7f7b0 3058 " completion\n",
dca9479b 3059 irsp->ulpCommand);
dea3101e
JB
3060 break;
3061 }
3062
604a3e30
JB
3063 cmdiocbq = lpfc_sli_iocbq_lookup(phba, pring,
3064 &rspiocbq);
0f65ff68
JS
3065 if (unlikely(!cmdiocbq))
3066 break;
3067 if (cmdiocbq->iocb_flag & LPFC_DRIVER_ABORTED)
3068 cmdiocbq->iocb_flag &= ~LPFC_DRIVER_ABORTED;
3069 if (cmdiocbq->iocb_cmpl) {
3070 spin_unlock_irqrestore(&phba->hbalock, iflag);
3071 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq,
3072 &rspiocbq);
3073 spin_lock_irqsave(&phba->hbalock, iflag);
3074 }
dea3101e 3075 break;
a4bc3379 3076 case LPFC_UNSOL_IOCB:
2e0fef85 3077 spin_unlock_irqrestore(&phba->hbalock, iflag);
a4bc3379 3078 lpfc_sli_process_unsol_iocb(phba, pring, &rspiocbq);
2e0fef85 3079 spin_lock_irqsave(&phba->hbalock, iflag);
a4bc3379 3080 break;
dea3101e
JB
3081 default:
3082 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
3083 char adaptermsg[LPFC_MAX_ADPTMSG];
3084 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
3085 memcpy(&adaptermsg[0], (uint8_t *) irsp,
3086 MAX_MSG_DATA);
898eb71c
JP
3087 dev_warn(&((phba->pcidev)->dev),
3088 "lpfc%d: %s\n",
dea3101e
JB
3089 phba->brd_no, adaptermsg);
3090 } else {
3091 /* Unknown IOCB command */
3092 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011 3093 "0334 Unknown IOCB command "
92d7f7b0 3094 "Data: x%x, x%x x%x x%x x%x\n",
e8b62011 3095 type, irsp->ulpCommand,
92d7f7b0
JS
3096 irsp->ulpStatus,
3097 irsp->ulpIoTag,
3098 irsp->ulpContext);
dea3101e
JB
3099 }
3100 break;
3101 }
3102
3103 /*
3104 * The response IOCB has been processed. Update the ring
3105 * pointer in SLIM. If the port response put pointer has not
3106 * been updated, sync the pgp->rspPutInx and fetch the new port
3107 * response put pointer.
3108 */
7e56aa25
JS
3109 writel(pring->sli.sli3.rspidx,
3110 &phba->host_gp[pring->ringno].rspGetInx);
dea3101e 3111
7e56aa25 3112 if (pring->sli.sli3.rspidx == portRspPut)
dea3101e
JB
3113 portRspPut = le32_to_cpu(pgp->rspPutInx);
3114 }
3115
3116 if ((rsp_cmpl > 0) && (mask & HA_R0RE_REQ)) {
3117 pring->stats.iocb_rsp_full++;
3118 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
3119 writel(status, phba->CAregaddr);
3120 readl(phba->CAregaddr);
3121 }
3122 if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
3123 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
3124 pring->stats.iocb_cmd_empty++;
3125
3126 /* Force update of the local copy of cmdGetInx */
7e56aa25 3127 pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
dea3101e
JB
3128 lpfc_sli_resume_iocb(phba, pring);
3129
3130 if ((pring->lpfc_sli_cmd_available))
3131 (pring->lpfc_sli_cmd_available) (phba, pring);
3132
3133 }
3134
45ed1190 3135 phba->fcp_ring_in_use = 0;
2e0fef85 3136 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea3101e
JB
3137 return rc;
3138}
3139
e59058c4 3140/**
3772a991
JS
3141 * lpfc_sli_sp_handle_rspiocb - Handle slow-path response iocb
3142 * @phba: Pointer to HBA context object.
3143 * @pring: Pointer to driver SLI ring object.
3144 * @rspiocbp: Pointer to driver response IOCB object.
3145 *
3146 * This function is called from the worker thread when there is a slow-path
3147 * response IOCB to process. This function chains all the response iocbs until
3148 * seeing the iocb with the LE bit set. The function will call
3149 * lpfc_sli_process_sol_iocb function if the response iocb indicates a
3150 * completion of a command iocb. The function will call the
3151 * lpfc_sli_process_unsol_iocb function if this is an unsolicited iocb.
3152 * The function frees the resources or calls the completion handler if this
3153 * iocb is an abort completion. The function returns NULL when the response
3154 * iocb has the LE bit set and all the chained iocbs are processed, otherwise
3155 * this function shall chain the iocb on to the iocb_continueq and return the
3156 * response iocb passed in.
3157 **/
3158static struct lpfc_iocbq *
3159lpfc_sli_sp_handle_rspiocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
3160 struct lpfc_iocbq *rspiocbp)
3161{
3162 struct lpfc_iocbq *saveq;
3163 struct lpfc_iocbq *cmdiocbp;
3164 struct lpfc_iocbq *next_iocb;
3165 IOCB_t *irsp = NULL;
3166 uint32_t free_saveq;
3167 uint8_t iocb_cmd_type;
3168 lpfc_iocb_type type;
3169 unsigned long iflag;
3170 int rc;
3171
3172 spin_lock_irqsave(&phba->hbalock, iflag);
3173 /* First add the response iocb to the countinueq list */
3174 list_add_tail(&rspiocbp->list, &(pring->iocb_continueq));
3175 pring->iocb_continueq_cnt++;
3176
70f23fd6 3177 /* Now, determine whether the list is completed for processing */
3772a991
JS
3178 irsp = &rspiocbp->iocb;
3179 if (irsp->ulpLe) {
3180 /*
3181 * By default, the driver expects to free all resources
3182 * associated with this iocb completion.
3183 */
3184 free_saveq = 1;
3185 saveq = list_get_first(&pring->iocb_continueq,
3186 struct lpfc_iocbq, list);
3187 irsp = &(saveq->iocb);
3188 list_del_init(&pring->iocb_continueq);
3189 pring->iocb_continueq_cnt = 0;
3190
3191 pring->stats.iocb_rsp++;
3192
3193 /*
3194 * If resource errors reported from HBA, reduce
3195 * queuedepths of the SCSI device.
3196 */
3197 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
e3d2b802
JS
3198 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
3199 IOERR_NO_RESOURCES)) {
3772a991
JS
3200 spin_unlock_irqrestore(&phba->hbalock, iflag);
3201 phba->lpfc_rampdown_queue_depth(phba);
3202 spin_lock_irqsave(&phba->hbalock, iflag);
3203 }
3204
3205 if (irsp->ulpStatus) {
3206 /* Rsp ring <ringno> error: IOCB */
3207 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
3208 "0328 Rsp Ring %d error: "
3209 "IOCB Data: "
3210 "x%x x%x x%x x%x "
3211 "x%x x%x x%x x%x "
3212 "x%x x%x x%x x%x "
3213 "x%x x%x x%x x%x\n",
3214 pring->ringno,
3215 irsp->un.ulpWord[0],
3216 irsp->un.ulpWord[1],
3217 irsp->un.ulpWord[2],
3218 irsp->un.ulpWord[3],
3219 irsp->un.ulpWord[4],
3220 irsp->un.ulpWord[5],
3221 *(((uint32_t *) irsp) + 6),
3222 *(((uint32_t *) irsp) + 7),
3223 *(((uint32_t *) irsp) + 8),
3224 *(((uint32_t *) irsp) + 9),
3225 *(((uint32_t *) irsp) + 10),
3226 *(((uint32_t *) irsp) + 11),
3227 *(((uint32_t *) irsp) + 12),
3228 *(((uint32_t *) irsp) + 13),
3229 *(((uint32_t *) irsp) + 14),
3230 *(((uint32_t *) irsp) + 15));
3231 }
3232
3233 /*
3234 * Fetch the IOCB command type and call the correct completion
3235 * routine. Solicited and Unsolicited IOCBs on the ELS ring
3236 * get freed back to the lpfc_iocb_list by the discovery
3237 * kernel thread.
3238 */
3239 iocb_cmd_type = irsp->ulpCommand & CMD_IOCB_MASK;
3240 type = lpfc_sli_iocb_cmd_type(iocb_cmd_type);
3241 switch (type) {
3242 case LPFC_SOL_IOCB:
3243 spin_unlock_irqrestore(&phba->hbalock, iflag);
3244 rc = lpfc_sli_process_sol_iocb(phba, pring, saveq);
3245 spin_lock_irqsave(&phba->hbalock, iflag);
3246 break;
3247
3248 case LPFC_UNSOL_IOCB:
3249 spin_unlock_irqrestore(&phba->hbalock, iflag);
3250 rc = lpfc_sli_process_unsol_iocb(phba, pring, saveq);
3251 spin_lock_irqsave(&phba->hbalock, iflag);
3252 if (!rc)
3253 free_saveq = 0;
3254 break;
3255
3256 case LPFC_ABORT_IOCB:
3257 cmdiocbp = NULL;
3258 if (irsp->ulpCommand != CMD_XRI_ABORTED_CX)
3259 cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring,
3260 saveq);
3261 if (cmdiocbp) {
3262 /* Call the specified completion routine */
3263 if (cmdiocbp->iocb_cmpl) {
3264 spin_unlock_irqrestore(&phba->hbalock,
3265 iflag);
3266 (cmdiocbp->iocb_cmpl)(phba, cmdiocbp,
3267 saveq);
3268 spin_lock_irqsave(&phba->hbalock,
3269 iflag);
3270 } else
3271 __lpfc_sli_release_iocbq(phba,
3272 cmdiocbp);
3273 }
3274 break;
3275
3276 case LPFC_UNKNOWN_IOCB:
3277 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
3278 char adaptermsg[LPFC_MAX_ADPTMSG];
3279 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
3280 memcpy(&adaptermsg[0], (uint8_t *)irsp,
3281 MAX_MSG_DATA);
3282 dev_warn(&((phba->pcidev)->dev),
3283 "lpfc%d: %s\n",
3284 phba->brd_no, adaptermsg);
3285 } else {
3286 /* Unknown IOCB command */
3287 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3288 "0335 Unknown IOCB "
3289 "command Data: x%x "
3290 "x%x x%x x%x\n",
3291 irsp->ulpCommand,
3292 irsp->ulpStatus,
3293 irsp->ulpIoTag,
3294 irsp->ulpContext);
3295 }
3296 break;
3297 }
3298
3299 if (free_saveq) {
3300 list_for_each_entry_safe(rspiocbp, next_iocb,
3301 &saveq->list, list) {
61f35bff 3302 list_del_init(&rspiocbp->list);
3772a991
JS
3303 __lpfc_sli_release_iocbq(phba, rspiocbp);
3304 }
3305 __lpfc_sli_release_iocbq(phba, saveq);
3306 }
3307 rspiocbp = NULL;
3308 }
3309 spin_unlock_irqrestore(&phba->hbalock, iflag);
3310 return rspiocbp;
3311}
3312
3313/**
3314 * lpfc_sli_handle_slow_ring_event - Wrapper func for handling slow-path iocbs
e59058c4
JS
3315 * @phba: Pointer to HBA context object.
3316 * @pring: Pointer to driver SLI ring object.
3317 * @mask: Host attention register mask for this ring.
3318 *
3772a991
JS
3319 * This routine wraps the actual slow_ring event process routine from the
3320 * API jump table function pointer from the lpfc_hba struct.
e59058c4 3321 **/
3772a991 3322void
2e0fef85
JS
3323lpfc_sli_handle_slow_ring_event(struct lpfc_hba *phba,
3324 struct lpfc_sli_ring *pring, uint32_t mask)
3772a991
JS
3325{
3326 phba->lpfc_sli_handle_slow_ring_event(phba, pring, mask);
3327}
3328
3329/**
3330 * lpfc_sli_handle_slow_ring_event_s3 - Handle SLI3 ring event for non-FCP rings
3331 * @phba: Pointer to HBA context object.
3332 * @pring: Pointer to driver SLI ring object.
3333 * @mask: Host attention register mask for this ring.
3334 *
3335 * This function is called from the worker thread when there is a ring event
3336 * for non-fcp rings. The caller does not hold any lock. The function will
3337 * remove each response iocb in the response ring and calls the handle
3338 * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
3339 **/
3340static void
3341lpfc_sli_handle_slow_ring_event_s3(struct lpfc_hba *phba,
3342 struct lpfc_sli_ring *pring, uint32_t mask)
dea3101e 3343{
34b02dcd 3344 struct lpfc_pgp *pgp;
dea3101e
JB
3345 IOCB_t *entry;
3346 IOCB_t *irsp = NULL;
3347 struct lpfc_iocbq *rspiocbp = NULL;
dea3101e 3348 uint32_t portRspPut, portRspMax;
dea3101e 3349 unsigned long iflag;
3772a991 3350 uint32_t status;
dea3101e 3351
34b02dcd 3352 pgp = &phba->port_gp[pring->ringno];
2e0fef85 3353 spin_lock_irqsave(&phba->hbalock, iflag);
dea3101e
JB
3354 pring->stats.iocb_event++;
3355
dea3101e
JB
3356 /*
3357 * The next available response entry should never exceed the maximum
3358 * entries. If it does, treat it as an adapter hardware error.
3359 */
7e56aa25 3360 portRspMax = pring->sli.sli3.numRiocb;
dea3101e
JB
3361 portRspPut = le32_to_cpu(pgp->rspPutInx);
3362 if (portRspPut >= portRspMax) {
3363 /*
025dfdaf 3364 * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
dea3101e
JB
3365 * rsp ring <portRspMax>
3366 */
ed957684 3367 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011 3368 "0303 Ring %d handler: portRspPut %d "
025dfdaf 3369 "is bigger than rsp ring %d\n",
e8b62011 3370 pring->ringno, portRspPut, portRspMax);
dea3101e 3371
2e0fef85
JS
3372 phba->link_state = LPFC_HBA_ERROR;
3373 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea3101e
JB
3374
3375 phba->work_hs = HS_FFER3;
3376 lpfc_handle_eratt(phba);
3377
3772a991 3378 return;
dea3101e
JB
3379 }
3380
3381 rmb();
7e56aa25 3382 while (pring->sli.sli3.rspidx != portRspPut) {
dea3101e
JB
3383 /*
3384 * Build a completion list and call the appropriate handler.
3385 * The process is to get the next available response iocb, get
3386 * a free iocb from the list, copy the response data into the
3387 * free iocb, insert to the continuation list, and update the
3388 * next response index to slim. This process makes response
3389 * iocb's in the ring available to DMA as fast as possible but
3390 * pays a penalty for a copy operation. Since the iocb is
3391 * only 32 bytes, this penalty is considered small relative to
3392 * the PCI reads for register values and a slim write. When
3393 * the ulpLe field is set, the entire Command has been
3394 * received.
3395 */
ed957684
JS
3396 entry = lpfc_resp_iocb(phba, pring);
3397
858c9f6c 3398 phba->last_completion_time = jiffies;
2e0fef85 3399 rspiocbp = __lpfc_sli_get_iocbq(phba);
dea3101e
JB
3400 if (rspiocbp == NULL) {
3401 printk(KERN_ERR "%s: out of buffers! Failing "
cadbd4a5 3402 "completion.\n", __func__);
dea3101e
JB
3403 break;
3404 }
3405
ed957684
JS
3406 lpfc_sli_pcimem_bcopy(entry, &rspiocbp->iocb,
3407 phba->iocb_rsp_size);
dea3101e
JB
3408 irsp = &rspiocbp->iocb;
3409
7e56aa25
JS
3410 if (++pring->sli.sli3.rspidx >= portRspMax)
3411 pring->sli.sli3.rspidx = 0;
dea3101e 3412
a58cbd52
JS
3413 if (pring->ringno == LPFC_ELS_RING) {
3414 lpfc_debugfs_slow_ring_trc(phba,
3415 "IOCB rsp ring: wd4:x%08x wd6:x%08x wd7:x%08x",
3416 *(((uint32_t *) irsp) + 4),
3417 *(((uint32_t *) irsp) + 6),
3418 *(((uint32_t *) irsp) + 7));
3419 }
3420
7e56aa25
JS
3421 writel(pring->sli.sli3.rspidx,
3422 &phba->host_gp[pring->ringno].rspGetInx);
dea3101e 3423
3772a991
JS
3424 spin_unlock_irqrestore(&phba->hbalock, iflag);
3425 /* Handle the response IOCB */
3426 rspiocbp = lpfc_sli_sp_handle_rspiocb(phba, pring, rspiocbp);
3427 spin_lock_irqsave(&phba->hbalock, iflag);
dea3101e
JB
3428
3429 /*
3430 * If the port response put pointer has not been updated, sync
3431 * the pgp->rspPutInx in the MAILBOX_tand fetch the new port
3432 * response put pointer.
3433 */
7e56aa25 3434 if (pring->sli.sli3.rspidx == portRspPut) {
dea3101e
JB
3435 portRspPut = le32_to_cpu(pgp->rspPutInx);
3436 }
7e56aa25 3437 } /* while (pring->sli.sli3.rspidx != portRspPut) */
dea3101e 3438
92d7f7b0 3439 if ((rspiocbp != NULL) && (mask & HA_R0RE_REQ)) {
dea3101e
JB
3440 /* At least one response entry has been freed */
3441 pring->stats.iocb_rsp_full++;
3442 /* SET RxRE_RSP in Chip Att register */
3443 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
3444 writel(status, phba->CAregaddr);
3445 readl(phba->CAregaddr); /* flush */
3446 }
3447 if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
3448 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
3449 pring->stats.iocb_cmd_empty++;
3450
3451 /* Force update of the local copy of cmdGetInx */
7e56aa25 3452 pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
dea3101e
JB
3453 lpfc_sli_resume_iocb(phba, pring);
3454
3455 if ((pring->lpfc_sli_cmd_available))
3456 (pring->lpfc_sli_cmd_available) (phba, pring);
3457
3458 }
3459
2e0fef85 3460 spin_unlock_irqrestore(&phba->hbalock, iflag);
3772a991 3461 return;
dea3101e
JB
3462}
3463
4f774513
JS
3464/**
3465 * lpfc_sli_handle_slow_ring_event_s4 - Handle SLI4 slow-path els events
3466 * @phba: Pointer to HBA context object.
3467 * @pring: Pointer to driver SLI ring object.
3468 * @mask: Host attention register mask for this ring.
3469 *
3470 * This function is called from the worker thread when there is a pending
3471 * ELS response iocb on the driver internal slow-path response iocb worker
3472 * queue. The caller does not hold any lock. The function will remove each
3473 * response iocb from the response worker queue and calls the handle
3474 * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
3475 **/
3476static void
3477lpfc_sli_handle_slow_ring_event_s4(struct lpfc_hba *phba,
3478 struct lpfc_sli_ring *pring, uint32_t mask)
3479{
3480 struct lpfc_iocbq *irspiocbq;
4d9ab994
JS
3481 struct hbq_dmabuf *dmabuf;
3482 struct lpfc_cq_event *cq_event;
4f774513
JS
3483 unsigned long iflag;
3484
45ed1190
JS
3485 spin_lock_irqsave(&phba->hbalock, iflag);
3486 phba->hba_flag &= ~HBA_SP_QUEUE_EVT;
3487 spin_unlock_irqrestore(&phba->hbalock, iflag);
3488 while (!list_empty(&phba->sli4_hba.sp_queue_event)) {
4f774513
JS
3489 /* Get the response iocb from the head of work queue */
3490 spin_lock_irqsave(&phba->hbalock, iflag);
45ed1190 3491 list_remove_head(&phba->sli4_hba.sp_queue_event,
4d9ab994 3492 cq_event, struct lpfc_cq_event, list);
4f774513 3493 spin_unlock_irqrestore(&phba->hbalock, iflag);
4d9ab994
JS
3494
3495 switch (bf_get(lpfc_wcqe_c_code, &cq_event->cqe.wcqe_cmpl)) {
3496 case CQE_CODE_COMPL_WQE:
3497 irspiocbq = container_of(cq_event, struct lpfc_iocbq,
3498 cq_event);
45ed1190
JS
3499 /* Translate ELS WCQE to response IOCBQ */
3500 irspiocbq = lpfc_sli4_els_wcqe_to_rspiocbq(phba,
3501 irspiocbq);
3502 if (irspiocbq)
3503 lpfc_sli_sp_handle_rspiocb(phba, pring,
3504 irspiocbq);
4d9ab994
JS
3505 break;
3506 case CQE_CODE_RECEIVE:
7851fe2c 3507 case CQE_CODE_RECEIVE_V1:
4d9ab994
JS
3508 dmabuf = container_of(cq_event, struct hbq_dmabuf,
3509 cq_event);
3510 lpfc_sli4_handle_received_buffer(phba, dmabuf);
3511 break;
3512 default:
3513 break;
3514 }
4f774513
JS
3515 }
3516}
3517
e59058c4 3518/**
3621a710 3519 * lpfc_sli_abort_iocb_ring - Abort all iocbs in the ring
e59058c4
JS
3520 * @phba: Pointer to HBA context object.
3521 * @pring: Pointer to driver SLI ring object.
3522 *
3523 * This function aborts all iocbs in the given ring and frees all the iocb
3524 * objects in txq. This function issues an abort iocb for all the iocb commands
3525 * in txcmplq. The iocbs in the txcmplq is not guaranteed to complete before
3526 * the return of this function. The caller is not required to hold any locks.
3527 **/
2e0fef85 3528void
dea3101e
JB
3529lpfc_sli_abort_iocb_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
3530{
2534ba75 3531 LIST_HEAD(completions);
dea3101e 3532 struct lpfc_iocbq *iocb, *next_iocb;
dea3101e 3533
92d7f7b0
JS
3534 if (pring->ringno == LPFC_ELS_RING) {
3535 lpfc_fabric_abort_hba(phba);
3536 }
3537
dea3101e
JB
3538 /* Error everything on txq and txcmplq
3539 * First do the txq.
3540 */
db55fba8
JS
3541 if (phba->sli_rev >= LPFC_SLI_REV4) {
3542 spin_lock_irq(&pring->ring_lock);
3543 list_splice_init(&pring->txq, &completions);
3544 pring->txq_cnt = 0;
3545 spin_unlock_irq(&pring->ring_lock);
dea3101e 3546
db55fba8
JS
3547 spin_lock_irq(&phba->hbalock);
3548 /* Next issue ABTS for everything on the txcmplq */
3549 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
3550 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
3551 spin_unlock_irq(&phba->hbalock);
3552 } else {
3553 spin_lock_irq(&phba->hbalock);
3554 list_splice_init(&pring->txq, &completions);
3555 pring->txq_cnt = 0;
dea3101e 3556
db55fba8
JS
3557 /* Next issue ABTS for everything on the txcmplq */
3558 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
3559 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
3560 spin_unlock_irq(&phba->hbalock);
3561 }
dea3101e 3562
a257bf90
JS
3563 /* Cancel all the IOCBs from the completions list */
3564 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
3565 IOERR_SLI_ABORTED);
dea3101e
JB
3566}
3567
db55fba8
JS
3568/**
3569 * lpfc_sli_abort_fcp_rings - Abort all iocbs in all FCP rings
3570 * @phba: Pointer to HBA context object.
3571 * @pring: Pointer to driver SLI ring object.
3572 *
3573 * This function aborts all iocbs in FCP rings and frees all the iocb
3574 * objects in txq. This function issues an abort iocb for all the iocb commands
3575 * in txcmplq. The iocbs in the txcmplq is not guaranteed to complete before
3576 * the return of this function. The caller is not required to hold any locks.
3577 **/
3578void
3579lpfc_sli_abort_fcp_rings(struct lpfc_hba *phba)
3580{
3581 struct lpfc_sli *psli = &phba->sli;
3582 struct lpfc_sli_ring *pring;
3583 uint32_t i;
3584
3585 /* Look on all the FCP Rings for the iotag */
3586 if (phba->sli_rev >= LPFC_SLI_REV4) {
3587 for (i = 0; i < phba->cfg_fcp_io_channel; i++) {
3588 pring = &psli->ring[i + MAX_SLI3_CONFIGURED_RINGS];
3589 lpfc_sli_abort_iocb_ring(phba, pring);
3590 }
3591 } else {
3592 pring = &psli->ring[psli->fcp_ring];
3593 lpfc_sli_abort_iocb_ring(phba, pring);
3594 }
3595}
3596
3597
a8e497d5 3598/**
3621a710 3599 * lpfc_sli_flush_fcp_rings - flush all iocbs in the fcp ring
a8e497d5
JS
3600 * @phba: Pointer to HBA context object.
3601 *
3602 * This function flushes all iocbs in the fcp ring and frees all the iocb
3603 * objects in txq and txcmplq. This function will not issue abort iocbs
3604 * for all the iocb commands in txcmplq, they will just be returned with
3605 * IOERR_SLI_DOWN. This function is invoked with EEH when device's PCI
3606 * slot has been permanently disabled.
3607 **/
3608void
3609lpfc_sli_flush_fcp_rings(struct lpfc_hba *phba)
3610{
3611 LIST_HEAD(txq);
3612 LIST_HEAD(txcmplq);
a8e497d5
JS
3613 struct lpfc_sli *psli = &phba->sli;
3614 struct lpfc_sli_ring *pring;
db55fba8 3615 uint32_t i;
a8e497d5
JS
3616
3617 spin_lock_irq(&phba->hbalock);
4f2e66c6
JS
3618 /* Indicate the I/O queues are flushed */
3619 phba->hba_flag |= HBA_FCP_IOQ_FLUSH;
a8e497d5
JS
3620 spin_unlock_irq(&phba->hbalock);
3621
db55fba8
JS
3622 /* Look on all the FCP Rings for the iotag */
3623 if (phba->sli_rev >= LPFC_SLI_REV4) {
3624 for (i = 0; i < phba->cfg_fcp_io_channel; i++) {
3625 pring = &psli->ring[i + MAX_SLI3_CONFIGURED_RINGS];
3626
3627 spin_lock_irq(&pring->ring_lock);
3628 /* Retrieve everything on txq */
3629 list_splice_init(&pring->txq, &txq);
3630 /* Retrieve everything on the txcmplq */
3631 list_splice_init(&pring->txcmplq, &txcmplq);
3632 pring->txq_cnt = 0;
3633 pring->txcmplq_cnt = 0;
3634 spin_unlock_irq(&pring->ring_lock);
3635
3636 /* Flush the txq */
3637 lpfc_sli_cancel_iocbs(phba, &txq,
3638 IOSTAT_LOCAL_REJECT,
3639 IOERR_SLI_DOWN);
3640 /* Flush the txcmpq */
3641 lpfc_sli_cancel_iocbs(phba, &txcmplq,
3642 IOSTAT_LOCAL_REJECT,
3643 IOERR_SLI_DOWN);
3644 }
3645 } else {
3646 pring = &psli->ring[psli->fcp_ring];
a8e497d5 3647
db55fba8
JS
3648 spin_lock_irq(&phba->hbalock);
3649 /* Retrieve everything on txq */
3650 list_splice_init(&pring->txq, &txq);
3651 /* Retrieve everything on the txcmplq */
3652 list_splice_init(&pring->txcmplq, &txcmplq);
3653 pring->txq_cnt = 0;
3654 pring->txcmplq_cnt = 0;
3655 spin_unlock_irq(&phba->hbalock);
3656
3657 /* Flush the txq */
3658 lpfc_sli_cancel_iocbs(phba, &txq, IOSTAT_LOCAL_REJECT,
3659 IOERR_SLI_DOWN);
3660 /* Flush the txcmpq */
3661 lpfc_sli_cancel_iocbs(phba, &txcmplq, IOSTAT_LOCAL_REJECT,
3662 IOERR_SLI_DOWN);
3663 }
a8e497d5
JS
3664}
3665
e59058c4 3666/**
3772a991 3667 * lpfc_sli_brdready_s3 - Check for sli3 host ready status
e59058c4
JS
3668 * @phba: Pointer to HBA context object.
3669 * @mask: Bit mask to be checked.
3670 *
3671 * This function reads the host status register and compares
3672 * with the provided bit mask to check if HBA completed
3673 * the restart. This function will wait in a loop for the
3674 * HBA to complete restart. If the HBA does not restart within
3675 * 15 iterations, the function will reset the HBA again. The
3676 * function returns 1 when HBA fail to restart otherwise returns
3677 * zero.
3678 **/
3772a991
JS
3679static int
3680lpfc_sli_brdready_s3(struct lpfc_hba *phba, uint32_t mask)
dea3101e 3681{
41415862
JW
3682 uint32_t status;
3683 int i = 0;
3684 int retval = 0;
dea3101e 3685
41415862 3686 /* Read the HBA Host Status Register */
9940b97b
JS
3687 if (lpfc_readl(phba->HSregaddr, &status))
3688 return 1;
dea3101e 3689
41415862
JW
3690 /*
3691 * Check status register every 100ms for 5 retries, then every
3692 * 500ms for 5, then every 2.5 sec for 5, then reset board and
3693 * every 2.5 sec for 4.
3694 * Break our of the loop if errors occurred during init.
3695 */
3696 while (((status & mask) != mask) &&
3697 !(status & HS_FFERM) &&
3698 i++ < 20) {
dea3101e 3699
41415862
JW
3700 if (i <= 5)
3701 msleep(10);
3702 else if (i <= 10)
3703 msleep(500);
3704 else
3705 msleep(2500);
dea3101e 3706
41415862 3707 if (i == 15) {
2e0fef85 3708 /* Do post */
92d7f7b0 3709 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
41415862
JW
3710 lpfc_sli_brdrestart(phba);
3711 }
3712 /* Read the HBA Host Status Register */
9940b97b
JS
3713 if (lpfc_readl(phba->HSregaddr, &status)) {
3714 retval = 1;
3715 break;
3716 }
41415862 3717 }
dea3101e 3718
41415862
JW
3719 /* Check to see if any errors occurred during init */
3720 if ((status & HS_FFERM) || (i >= 20)) {
e40a02c1
JS
3721 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3722 "2751 Adapter failed to restart, "
3723 "status reg x%x, FW Data: A8 x%x AC x%x\n",
3724 status,
3725 readl(phba->MBslimaddr + 0xa8),
3726 readl(phba->MBslimaddr + 0xac));
2e0fef85 3727 phba->link_state = LPFC_HBA_ERROR;
41415862 3728 retval = 1;
dea3101e 3729 }
dea3101e 3730
41415862
JW
3731 return retval;
3732}
dea3101e 3733
da0436e9
JS
3734/**
3735 * lpfc_sli_brdready_s4 - Check for sli4 host ready status
3736 * @phba: Pointer to HBA context object.
3737 * @mask: Bit mask to be checked.
3738 *
3739 * This function checks the host status register to check if HBA is
3740 * ready. This function will wait in a loop for the HBA to be ready
3741 * If the HBA is not ready , the function will will reset the HBA PCI
3742 * function again. The function returns 1 when HBA fail to be ready
3743 * otherwise returns zero.
3744 **/
3745static int
3746lpfc_sli_brdready_s4(struct lpfc_hba *phba, uint32_t mask)
3747{
3748 uint32_t status;
3749 int retval = 0;
3750
3751 /* Read the HBA Host Status Register */
3752 status = lpfc_sli4_post_status_check(phba);
3753
3754 if (status) {
3755 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
3756 lpfc_sli_brdrestart(phba);
3757 status = lpfc_sli4_post_status_check(phba);
3758 }
3759
3760 /* Check to see if any errors occurred during init */
3761 if (status) {
3762 phba->link_state = LPFC_HBA_ERROR;
3763 retval = 1;
3764 } else
3765 phba->sli4_hba.intr_enable = 0;
3766
3767 return retval;
3768}
3769
3770/**
3771 * lpfc_sli_brdready - Wrapper func for checking the hba readyness
3772 * @phba: Pointer to HBA context object.
3773 * @mask: Bit mask to be checked.
3774 *
3775 * This routine wraps the actual SLI3 or SLI4 hba readyness check routine
3776 * from the API jump table function pointer from the lpfc_hba struct.
3777 **/
3778int
3779lpfc_sli_brdready(struct lpfc_hba *phba, uint32_t mask)
3780{
3781 return phba->lpfc_sli_brdready(phba, mask);
3782}
3783
9290831f
JS
3784#define BARRIER_TEST_PATTERN (0xdeadbeef)
3785
e59058c4 3786/**
3621a710 3787 * lpfc_reset_barrier - Make HBA ready for HBA reset
e59058c4
JS
3788 * @phba: Pointer to HBA context object.
3789 *
1b51197d
JS
3790 * This function is called before resetting an HBA. This function is called
3791 * with hbalock held and requests HBA to quiesce DMAs before a reset.
e59058c4 3792 **/
2e0fef85 3793void lpfc_reset_barrier(struct lpfc_hba *phba)
9290831f 3794{
65a29c16
JS
3795 uint32_t __iomem *resp_buf;
3796 uint32_t __iomem *mbox_buf;
9290831f 3797 volatile uint32_t mbox;
9940b97b 3798 uint32_t hc_copy, ha_copy, resp_data;
9290831f
JS
3799 int i;
3800 uint8_t hdrtype;
3801
3802 pci_read_config_byte(phba->pcidev, PCI_HEADER_TYPE, &hdrtype);
3803 if (hdrtype != 0x80 ||
3804 (FC_JEDEC_ID(phba->vpd.rev.biuRev) != HELIOS_JEDEC_ID &&
3805 FC_JEDEC_ID(phba->vpd.rev.biuRev) != THOR_JEDEC_ID))
3806 return;
3807
3808 /*
3809 * Tell the other part of the chip to suspend temporarily all
3810 * its DMA activity.
3811 */
65a29c16 3812 resp_buf = phba->MBslimaddr;
9290831f
JS
3813
3814 /* Disable the error attention */
9940b97b
JS
3815 if (lpfc_readl(phba->HCregaddr, &hc_copy))
3816 return;
9290831f
JS
3817 writel((hc_copy & ~HC_ERINT_ENA), phba->HCregaddr);
3818 readl(phba->HCregaddr); /* flush */
2e0fef85 3819 phba->link_flag |= LS_IGNORE_ERATT;
9290831f 3820
9940b97b
JS
3821 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3822 return;
3823 if (ha_copy & HA_ERATT) {
9290831f
JS
3824 /* Clear Chip error bit */
3825 writel(HA_ERATT, phba->HAregaddr);
2e0fef85 3826 phba->pport->stopped = 1;
9290831f
JS
3827 }
3828
3829 mbox = 0;
3830 ((MAILBOX_t *)&mbox)->mbxCommand = MBX_KILL_BOARD;
3831 ((MAILBOX_t *)&mbox)->mbxOwner = OWN_CHIP;
3832
3833 writel(BARRIER_TEST_PATTERN, (resp_buf + 1));
65a29c16 3834 mbox_buf = phba->MBslimaddr;
9290831f
JS
3835 writel(mbox, mbox_buf);
3836
9940b97b
JS
3837 for (i = 0; i < 50; i++) {
3838 if (lpfc_readl((resp_buf + 1), &resp_data))
3839 return;
3840 if (resp_data != ~(BARRIER_TEST_PATTERN))
3841 mdelay(1);
3842 else
3843 break;
3844 }
3845 resp_data = 0;
3846 if (lpfc_readl((resp_buf + 1), &resp_data))
3847 return;
3848 if (resp_data != ~(BARRIER_TEST_PATTERN)) {
f4b4c68f 3849 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE ||
2e0fef85 3850 phba->pport->stopped)
9290831f
JS
3851 goto restore_hc;
3852 else
3853 goto clear_errat;
3854 }
3855
3856 ((MAILBOX_t *)&mbox)->mbxOwner = OWN_HOST;
9940b97b
JS
3857 resp_data = 0;
3858 for (i = 0; i < 500; i++) {
3859 if (lpfc_readl(resp_buf, &resp_data))
3860 return;
3861 if (resp_data != mbox)
3862 mdelay(1);
3863 else
3864 break;
3865 }
9290831f
JS
3866
3867clear_errat:
3868
9940b97b
JS
3869 while (++i < 500) {
3870 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3871 return;
3872 if (!(ha_copy & HA_ERATT))
3873 mdelay(1);
3874 else
3875 break;
3876 }
9290831f
JS
3877
3878 if (readl(phba->HAregaddr) & HA_ERATT) {
3879 writel(HA_ERATT, phba->HAregaddr);
2e0fef85 3880 phba->pport->stopped = 1;
9290831f
JS
3881 }
3882
3883restore_hc:
2e0fef85 3884 phba->link_flag &= ~LS_IGNORE_ERATT;
9290831f
JS
3885 writel(hc_copy, phba->HCregaddr);
3886 readl(phba->HCregaddr); /* flush */
3887}
3888
e59058c4 3889/**
3621a710 3890 * lpfc_sli_brdkill - Issue a kill_board mailbox command
e59058c4
JS
3891 * @phba: Pointer to HBA context object.
3892 *
3893 * This function issues a kill_board mailbox command and waits for
3894 * the error attention interrupt. This function is called for stopping
3895 * the firmware processing. The caller is not required to hold any
3896 * locks. This function calls lpfc_hba_down_post function to free
3897 * any pending commands after the kill. The function will return 1 when it
3898 * fails to kill the board else will return 0.
3899 **/
41415862 3900int
2e0fef85 3901lpfc_sli_brdkill(struct lpfc_hba *phba)
41415862
JW
3902{
3903 struct lpfc_sli *psli;
3904 LPFC_MBOXQ_t *pmb;
3905 uint32_t status;
3906 uint32_t ha_copy;
3907 int retval;
3908 int i = 0;
dea3101e 3909
41415862 3910 psli = &phba->sli;
dea3101e 3911
41415862 3912 /* Kill HBA */
ed957684 3913 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
e8b62011
JS
3914 "0329 Kill HBA Data: x%x x%x\n",
3915 phba->pport->port_state, psli->sli_flag);
41415862 3916
98c9ea5c
JS
3917 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3918 if (!pmb)
41415862 3919 return 1;
41415862
JW
3920
3921 /* Disable the error attention */
2e0fef85 3922 spin_lock_irq(&phba->hbalock);
9940b97b
JS
3923 if (lpfc_readl(phba->HCregaddr, &status)) {
3924 spin_unlock_irq(&phba->hbalock);
3925 mempool_free(pmb, phba->mbox_mem_pool);
3926 return 1;
3927 }
41415862
JW
3928 status &= ~HC_ERINT_ENA;
3929 writel(status, phba->HCregaddr);
3930 readl(phba->HCregaddr); /* flush */
2e0fef85
JS
3931 phba->link_flag |= LS_IGNORE_ERATT;
3932 spin_unlock_irq(&phba->hbalock);
41415862
JW
3933
3934 lpfc_kill_board(phba, pmb);
3935 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
3936 retval = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
3937
3938 if (retval != MBX_SUCCESS) {
3939 if (retval != MBX_BUSY)
3940 mempool_free(pmb, phba->mbox_mem_pool);
e40a02c1
JS
3941 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3942 "2752 KILL_BOARD command failed retval %d\n",
3943 retval);
2e0fef85
JS
3944 spin_lock_irq(&phba->hbalock);
3945 phba->link_flag &= ~LS_IGNORE_ERATT;
3946 spin_unlock_irq(&phba->hbalock);
41415862
JW
3947 return 1;
3948 }
3949
f4b4c68f
JS
3950 spin_lock_irq(&phba->hbalock);
3951 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
3952 spin_unlock_irq(&phba->hbalock);
9290831f 3953
41415862
JW
3954 mempool_free(pmb, phba->mbox_mem_pool);
3955
3956 /* There is no completion for a KILL_BOARD mbox cmd. Check for an error
3957 * attention every 100ms for 3 seconds. If we don't get ERATT after
3958 * 3 seconds we still set HBA_ERROR state because the status of the
3959 * board is now undefined.
3960 */
9940b97b
JS
3961 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3962 return 1;
41415862
JW
3963 while ((i++ < 30) && !(ha_copy & HA_ERATT)) {
3964 mdelay(100);
9940b97b
JS
3965 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3966 return 1;
41415862
JW
3967 }
3968
3969 del_timer_sync(&psli->mbox_tmo);
9290831f
JS
3970 if (ha_copy & HA_ERATT) {
3971 writel(HA_ERATT, phba->HAregaddr);
2e0fef85 3972 phba->pport->stopped = 1;
9290831f 3973 }
2e0fef85 3974 spin_lock_irq(&phba->hbalock);
41415862 3975 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
04c68496 3976 psli->mbox_active = NULL;
2e0fef85
JS
3977 phba->link_flag &= ~LS_IGNORE_ERATT;
3978 spin_unlock_irq(&phba->hbalock);
41415862 3979
41415862 3980 lpfc_hba_down_post(phba);
2e0fef85 3981 phba->link_state = LPFC_HBA_ERROR;
41415862 3982
2e0fef85 3983 return ha_copy & HA_ERATT ? 0 : 1;
dea3101e
JB
3984}
3985
e59058c4 3986/**
3772a991 3987 * lpfc_sli_brdreset - Reset a sli-2 or sli-3 HBA
e59058c4
JS
3988 * @phba: Pointer to HBA context object.
3989 *
3990 * This function resets the HBA by writing HC_INITFF to the control
3991 * register. After the HBA resets, this function resets all the iocb ring
3992 * indices. This function disables PCI layer parity checking during
3993 * the reset.
3994 * This function returns 0 always.
3995 * The caller is not required to hold any locks.
3996 **/
41415862 3997int
2e0fef85 3998lpfc_sli_brdreset(struct lpfc_hba *phba)
dea3101e 3999{
41415862 4000 struct lpfc_sli *psli;
dea3101e 4001 struct lpfc_sli_ring *pring;
41415862 4002 uint16_t cfg_value;
dea3101e 4003 int i;
dea3101e 4004
41415862 4005 psli = &phba->sli;
dea3101e 4006
41415862
JW
4007 /* Reset HBA */
4008 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
e8b62011 4009 "0325 Reset HBA Data: x%x x%x\n",
2e0fef85 4010 phba->pport->port_state, psli->sli_flag);
dea3101e
JB
4011
4012 /* perform board reset */
4013 phba->fc_eventTag = 0;
4d9ab994 4014 phba->link_events = 0;
2e0fef85
JS
4015 phba->pport->fc_myDID = 0;
4016 phba->pport->fc_prevDID = 0;
dea3101e 4017
41415862
JW
4018 /* Turn off parity checking and serr during the physical reset */
4019 pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
4020 pci_write_config_word(phba->pcidev, PCI_COMMAND,
4021 (cfg_value &
4022 ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
4023
3772a991
JS
4024 psli->sli_flag &= ~(LPFC_SLI_ACTIVE | LPFC_PROCESS_LA);
4025
41415862
JW
4026 /* Now toggle INITFF bit in the Host Control Register */
4027 writel(HC_INITFF, phba->HCregaddr);
4028 mdelay(1);
4029 readl(phba->HCregaddr); /* flush */
4030 writel(0, phba->HCregaddr);
4031 readl(phba->HCregaddr); /* flush */
4032
4033 /* Restore PCI cmd register */
4034 pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
dea3101e
JB
4035
4036 /* Initialize relevant SLI info */
41415862
JW
4037 for (i = 0; i < psli->num_rings; i++) {
4038 pring = &psli->ring[i];
dea3101e 4039 pring->flag = 0;
7e56aa25
JS
4040 pring->sli.sli3.rspidx = 0;
4041 pring->sli.sli3.next_cmdidx = 0;
4042 pring->sli.sli3.local_getidx = 0;
4043 pring->sli.sli3.cmdidx = 0;
dea3101e
JB
4044 pring->missbufcnt = 0;
4045 }
dea3101e 4046
2e0fef85 4047 phba->link_state = LPFC_WARM_START;
41415862
JW
4048 return 0;
4049}
4050
e59058c4 4051/**
da0436e9
JS
4052 * lpfc_sli4_brdreset - Reset a sli-4 HBA
4053 * @phba: Pointer to HBA context object.
4054 *
4055 * This function resets a SLI4 HBA. This function disables PCI layer parity
4056 * checking during resets the device. The caller is not required to hold
4057 * any locks.
4058 *
4059 * This function returns 0 always.
4060 **/
4061int
4062lpfc_sli4_brdreset(struct lpfc_hba *phba)
4063{
4064 struct lpfc_sli *psli = &phba->sli;
4065 uint16_t cfg_value;
0293635e 4066 int rc = 0;
da0436e9
JS
4067
4068 /* Reset HBA */
4069 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
0293635e
JS
4070 "0295 Reset HBA Data: x%x x%x x%x\n",
4071 phba->pport->port_state, psli->sli_flag,
4072 phba->hba_flag);
da0436e9
JS
4073
4074 /* perform board reset */
4075 phba->fc_eventTag = 0;
4d9ab994 4076 phba->link_events = 0;
da0436e9
JS
4077 phba->pport->fc_myDID = 0;
4078 phba->pport->fc_prevDID = 0;
4079
da0436e9
JS
4080 spin_lock_irq(&phba->hbalock);
4081 psli->sli_flag &= ~(LPFC_PROCESS_LA);
4082 phba->fcf.fcf_flag = 0;
da0436e9
JS
4083 spin_unlock_irq(&phba->hbalock);
4084
0293635e
JS
4085 /* SLI4 INTF 2: if FW dump is being taken skip INIT_PORT */
4086 if (phba->hba_flag & HBA_FW_DUMP_OP) {
4087 phba->hba_flag &= ~HBA_FW_DUMP_OP;
4088 return rc;
4089 }
4090
da0436e9
JS
4091 /* Now physically reset the device */
4092 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4093 "0389 Performing PCI function reset!\n");
be858b65
JS
4094
4095 /* Turn off parity checking and serr during the physical reset */
4096 pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
4097 pci_write_config_word(phba->pcidev, PCI_COMMAND, (cfg_value &
4098 ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
4099
88318816 4100 /* Perform FCoE PCI function reset before freeing queue memory */
27b01b82 4101 rc = lpfc_pci_function_reset(phba);
88318816 4102 lpfc_sli4_queue_destroy(phba);
da0436e9 4103
be858b65
JS
4104 /* Restore PCI cmd register */
4105 pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
4106
27b01b82 4107 return rc;
da0436e9
JS
4108}
4109
4110/**
4111 * lpfc_sli_brdrestart_s3 - Restart a sli-3 hba
e59058c4
JS
4112 * @phba: Pointer to HBA context object.
4113 *
4114 * This function is called in the SLI initialization code path to
4115 * restart the HBA. The caller is not required to hold any lock.
4116 * This function writes MBX_RESTART mailbox command to the SLIM and
4117 * resets the HBA. At the end of the function, it calls lpfc_hba_down_post
4118 * function to free any pending commands. The function enables
4119 * POST only during the first initialization. The function returns zero.
4120 * The function does not guarantee completion of MBX_RESTART mailbox
4121 * command before the return of this function.
4122 **/
da0436e9
JS
4123static int
4124lpfc_sli_brdrestart_s3(struct lpfc_hba *phba)
41415862
JW
4125{
4126 MAILBOX_t *mb;
4127 struct lpfc_sli *psli;
41415862
JW
4128 volatile uint32_t word0;
4129 void __iomem *to_slim;
0d878419 4130 uint32_t hba_aer_enabled;
41415862 4131
2e0fef85 4132 spin_lock_irq(&phba->hbalock);
41415862 4133
0d878419
JS
4134 /* Take PCIe device Advanced Error Reporting (AER) state */
4135 hba_aer_enabled = phba->hba_flag & HBA_AER_ENABLED;
4136
41415862
JW
4137 psli = &phba->sli;
4138
4139 /* Restart HBA */
4140 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
e8b62011 4141 "0337 Restart HBA Data: x%x x%x\n",
2e0fef85 4142 phba->pport->port_state, psli->sli_flag);
41415862
JW
4143
4144 word0 = 0;
4145 mb = (MAILBOX_t *) &word0;
4146 mb->mbxCommand = MBX_RESTART;
4147 mb->mbxHc = 1;
4148
9290831f
JS
4149 lpfc_reset_barrier(phba);
4150
41415862
JW
4151 to_slim = phba->MBslimaddr;
4152 writel(*(uint32_t *) mb, to_slim);
4153 readl(to_slim); /* flush */
4154
4155 /* Only skip post after fc_ffinit is completed */
eaf15d5b 4156 if (phba->pport->port_state)
41415862 4157 word0 = 1; /* This is really setting up word1 */
eaf15d5b 4158 else
41415862 4159 word0 = 0; /* This is really setting up word1 */
65a29c16 4160 to_slim = phba->MBslimaddr + sizeof (uint32_t);
41415862
JW
4161 writel(*(uint32_t *) mb, to_slim);
4162 readl(to_slim); /* flush */
dea3101e 4163
41415862 4164 lpfc_sli_brdreset(phba);
2e0fef85
JS
4165 phba->pport->stopped = 0;
4166 phba->link_state = LPFC_INIT_START;
da0436e9 4167 phba->hba_flag = 0;
2e0fef85 4168 spin_unlock_irq(&phba->hbalock);
41415862 4169
64ba8818
JS
4170 memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
4171 psli->stats_start = get_seconds();
4172
eaf15d5b
JS
4173 /* Give the INITFF and Post time to settle. */
4174 mdelay(100);
41415862 4175
0d878419
JS
4176 /* Reset HBA AER if it was enabled, note hba_flag was reset above */
4177 if (hba_aer_enabled)
4178 pci_disable_pcie_error_reporting(phba->pcidev);
4179
41415862 4180 lpfc_hba_down_post(phba);
dea3101e
JB
4181
4182 return 0;
4183}
4184
da0436e9
JS
4185/**
4186 * lpfc_sli_brdrestart_s4 - Restart the sli-4 hba
4187 * @phba: Pointer to HBA context object.
4188 *
4189 * This function is called in the SLI initialization code path to restart
4190 * a SLI4 HBA. The caller is not required to hold any lock.
4191 * At the end of the function, it calls lpfc_hba_down_post function to
4192 * free any pending commands.
4193 **/
4194static int
4195lpfc_sli_brdrestart_s4(struct lpfc_hba *phba)
4196{
4197 struct lpfc_sli *psli = &phba->sli;
75baf696 4198 uint32_t hba_aer_enabled;
27b01b82 4199 int rc;
da0436e9
JS
4200
4201 /* Restart HBA */
4202 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4203 "0296 Restart HBA Data: x%x x%x\n",
4204 phba->pport->port_state, psli->sli_flag);
4205
75baf696
JS
4206 /* Take PCIe device Advanced Error Reporting (AER) state */
4207 hba_aer_enabled = phba->hba_flag & HBA_AER_ENABLED;
4208
27b01b82 4209 rc = lpfc_sli4_brdreset(phba);
da0436e9
JS
4210
4211 spin_lock_irq(&phba->hbalock);
4212 phba->pport->stopped = 0;
4213 phba->link_state = LPFC_INIT_START;
4214 phba->hba_flag = 0;
4215 spin_unlock_irq(&phba->hbalock);
4216
4217 memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
4218 psli->stats_start = get_seconds();
4219
75baf696
JS
4220 /* Reset HBA AER if it was enabled, note hba_flag was reset above */
4221 if (hba_aer_enabled)
4222 pci_disable_pcie_error_reporting(phba->pcidev);
4223
da0436e9
JS
4224 lpfc_hba_down_post(phba);
4225
27b01b82 4226 return rc;
da0436e9
JS
4227}
4228
4229/**
4230 * lpfc_sli_brdrestart - Wrapper func for restarting hba
4231 * @phba: Pointer to HBA context object.
4232 *
4233 * This routine wraps the actual SLI3 or SLI4 hba restart routine from the
4234 * API jump table function pointer from the lpfc_hba struct.
4235**/
4236int
4237lpfc_sli_brdrestart(struct lpfc_hba *phba)
4238{
4239 return phba->lpfc_sli_brdrestart(phba);
4240}
4241
e59058c4 4242/**
3621a710 4243 * lpfc_sli_chipset_init - Wait for the restart of the HBA after a restart
e59058c4
JS
4244 * @phba: Pointer to HBA context object.
4245 *
4246 * This function is called after a HBA restart to wait for successful
4247 * restart of the HBA. Successful restart of the HBA is indicated by
4248 * HS_FFRDY and HS_MBRDY bits. If the HBA fails to restart even after 15
4249 * iteration, the function will restart the HBA again. The function returns
4250 * zero if HBA successfully restarted else returns negative error code.
4251 **/
dea3101e
JB
4252static int
4253lpfc_sli_chipset_init(struct lpfc_hba *phba)
4254{
4255 uint32_t status, i = 0;
4256
4257 /* Read the HBA Host Status Register */
9940b97b
JS
4258 if (lpfc_readl(phba->HSregaddr, &status))
4259 return -EIO;
dea3101e
JB
4260
4261 /* Check status register to see what current state is */
4262 i = 0;
4263 while ((status & (HS_FFRDY | HS_MBRDY)) != (HS_FFRDY | HS_MBRDY)) {
4264
dcf2a4e0
JS
4265 /* Check every 10ms for 10 retries, then every 100ms for 90
4266 * retries, then every 1 sec for 50 retires for a total of
4267 * ~60 seconds before reset the board again and check every
4268 * 1 sec for 50 retries. The up to 60 seconds before the
4269 * board ready is required by the Falcon FIPS zeroization
4270 * complete, and any reset the board in between shall cause
4271 * restart of zeroization, further delay the board ready.
dea3101e 4272 */
dcf2a4e0 4273 if (i++ >= 200) {
dea3101e
JB
4274 /* Adapter failed to init, timeout, status reg
4275 <status> */
ed957684 4276 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 4277 "0436 Adapter failed to init, "
09372820
JS
4278 "timeout, status reg x%x, "
4279 "FW Data: A8 x%x AC x%x\n", status,
4280 readl(phba->MBslimaddr + 0xa8),
4281 readl(phba->MBslimaddr + 0xac));
2e0fef85 4282 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
4283 return -ETIMEDOUT;
4284 }
4285
4286 /* Check to see if any errors occurred during init */
4287 if (status & HS_FFERM) {
4288 /* ERROR: During chipset initialization */
4289 /* Adapter failed to init, chipset, status reg
4290 <status> */
ed957684 4291 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 4292 "0437 Adapter failed to init, "
09372820
JS
4293 "chipset, status reg x%x, "
4294 "FW Data: A8 x%x AC x%x\n", status,
4295 readl(phba->MBslimaddr + 0xa8),
4296 readl(phba->MBslimaddr + 0xac));
2e0fef85 4297 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
4298 return -EIO;
4299 }
4300
dcf2a4e0 4301 if (i <= 10)
dea3101e 4302 msleep(10);
dcf2a4e0
JS
4303 else if (i <= 100)
4304 msleep(100);
4305 else
4306 msleep(1000);
dea3101e 4307
dcf2a4e0
JS
4308 if (i == 150) {
4309 /* Do post */
92d7f7b0 4310 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
41415862 4311 lpfc_sli_brdrestart(phba);
dea3101e
JB
4312 }
4313 /* Read the HBA Host Status Register */
9940b97b
JS
4314 if (lpfc_readl(phba->HSregaddr, &status))
4315 return -EIO;
dea3101e
JB
4316 }
4317
4318 /* Check to see if any errors occurred during init */
4319 if (status & HS_FFERM) {
4320 /* ERROR: During chipset initialization */
4321 /* Adapter failed to init, chipset, status reg <status> */
ed957684 4322 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 4323 "0438 Adapter failed to init, chipset, "
09372820
JS
4324 "status reg x%x, "
4325 "FW Data: A8 x%x AC x%x\n", status,
4326 readl(phba->MBslimaddr + 0xa8),
4327 readl(phba->MBslimaddr + 0xac));
2e0fef85 4328 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
4329 return -EIO;
4330 }
4331
4332 /* Clear all interrupt enable conditions */
4333 writel(0, phba->HCregaddr);
4334 readl(phba->HCregaddr); /* flush */
4335
4336 /* setup host attn register */
4337 writel(0xffffffff, phba->HAregaddr);
4338 readl(phba->HAregaddr); /* flush */
4339 return 0;
4340}
4341
e59058c4 4342/**
3621a710 4343 * lpfc_sli_hbq_count - Get the number of HBQs to be configured
e59058c4
JS
4344 *
4345 * This function calculates and returns the number of HBQs required to be
4346 * configured.
4347 **/
78b2d852 4348int
ed957684
JS
4349lpfc_sli_hbq_count(void)
4350{
92d7f7b0 4351 return ARRAY_SIZE(lpfc_hbq_defs);
ed957684
JS
4352}
4353
e59058c4 4354/**
3621a710 4355 * lpfc_sli_hbq_entry_count - Calculate total number of hbq entries
e59058c4
JS
4356 *
4357 * This function adds the number of hbq entries in every HBQ to get
4358 * the total number of hbq entries required for the HBA and returns
4359 * the total count.
4360 **/
ed957684
JS
4361static int
4362lpfc_sli_hbq_entry_count(void)
4363{
4364 int hbq_count = lpfc_sli_hbq_count();
4365 int count = 0;
4366 int i;
4367
4368 for (i = 0; i < hbq_count; ++i)
92d7f7b0 4369 count += lpfc_hbq_defs[i]->entry_count;
ed957684
JS
4370 return count;
4371}
4372
e59058c4 4373/**
3621a710 4374 * lpfc_sli_hbq_size - Calculate memory required for all hbq entries
e59058c4
JS
4375 *
4376 * This function calculates amount of memory required for all hbq entries
4377 * to be configured and returns the total memory required.
4378 **/
dea3101e 4379int
ed957684
JS
4380lpfc_sli_hbq_size(void)
4381{
4382 return lpfc_sli_hbq_entry_count() * sizeof(struct lpfc_hbq_entry);
4383}
4384
e59058c4 4385/**
3621a710 4386 * lpfc_sli_hbq_setup - configure and initialize HBQs
e59058c4
JS
4387 * @phba: Pointer to HBA context object.
4388 *
4389 * This function is called during the SLI initialization to configure
4390 * all the HBQs and post buffers to the HBQ. The caller is not
4391 * required to hold any locks. This function will return zero if successful
4392 * else it will return negative error code.
4393 **/
ed957684
JS
4394static int
4395lpfc_sli_hbq_setup(struct lpfc_hba *phba)
4396{
4397 int hbq_count = lpfc_sli_hbq_count();
4398 LPFC_MBOXQ_t *pmb;
4399 MAILBOX_t *pmbox;
4400 uint32_t hbqno;
4401 uint32_t hbq_entry_index;
ed957684 4402
92d7f7b0
JS
4403 /* Get a Mailbox buffer to setup mailbox
4404 * commands for HBA initialization
4405 */
ed957684
JS
4406 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4407
4408 if (!pmb)
4409 return -ENOMEM;
4410
04c68496 4411 pmbox = &pmb->u.mb;
ed957684
JS
4412
4413 /* Initialize the struct lpfc_sli_hbq structure for each hbq */
4414 phba->link_state = LPFC_INIT_MBX_CMDS;
3163f725 4415 phba->hbq_in_use = 1;
ed957684
JS
4416
4417 hbq_entry_index = 0;
4418 for (hbqno = 0; hbqno < hbq_count; ++hbqno) {
4419 phba->hbqs[hbqno].next_hbqPutIdx = 0;
4420 phba->hbqs[hbqno].hbqPutIdx = 0;
4421 phba->hbqs[hbqno].local_hbqGetIdx = 0;
4422 phba->hbqs[hbqno].entry_count =
92d7f7b0 4423 lpfc_hbq_defs[hbqno]->entry_count;
51ef4c26
JS
4424 lpfc_config_hbq(phba, hbqno, lpfc_hbq_defs[hbqno],
4425 hbq_entry_index, pmb);
ed957684
JS
4426 hbq_entry_index += phba->hbqs[hbqno].entry_count;
4427
4428 if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
4429 /* Adapter failed to init, mbxCmd <cmd> CFG_RING,
4430 mbxStatus <status>, ring <num> */
4431
4432 lpfc_printf_log(phba, KERN_ERR,
92d7f7b0 4433 LOG_SLI | LOG_VPORT,
e8b62011 4434 "1805 Adapter failed to init. "
ed957684 4435 "Data: x%x x%x x%x\n",
e8b62011 4436 pmbox->mbxCommand,
ed957684
JS
4437 pmbox->mbxStatus, hbqno);
4438
4439 phba->link_state = LPFC_HBA_ERROR;
4440 mempool_free(pmb, phba->mbox_mem_pool);
6e7288d9 4441 return -ENXIO;
ed957684
JS
4442 }
4443 }
4444 phba->hbq_count = hbq_count;
4445
ed957684
JS
4446 mempool_free(pmb, phba->mbox_mem_pool);
4447
92d7f7b0 4448 /* Initially populate or replenish the HBQs */
d7c255b2
JS
4449 for (hbqno = 0; hbqno < hbq_count; ++hbqno)
4450 lpfc_sli_hbqbuf_init_hbqs(phba, hbqno);
ed957684
JS
4451 return 0;
4452}
4453
4f774513
JS
4454/**
4455 * lpfc_sli4_rb_setup - Initialize and post RBs to HBA
4456 * @phba: Pointer to HBA context object.
4457 *
4458 * This function is called during the SLI initialization to configure
4459 * all the HBQs and post buffers to the HBQ. The caller is not
4460 * required to hold any locks. This function will return zero if successful
4461 * else it will return negative error code.
4462 **/
4463static int
4464lpfc_sli4_rb_setup(struct lpfc_hba *phba)
4465{
4466 phba->hbq_in_use = 1;
4467 phba->hbqs[0].entry_count = lpfc_hbq_defs[0]->entry_count;
4468 phba->hbq_count = 1;
4469 /* Initially populate or replenish the HBQs */
4470 lpfc_sli_hbqbuf_init_hbqs(phba, 0);
4471 return 0;
4472}
4473
e59058c4 4474/**
3621a710 4475 * lpfc_sli_config_port - Issue config port mailbox command
e59058c4
JS
4476 * @phba: Pointer to HBA context object.
4477 * @sli_mode: sli mode - 2/3
4478 *
4479 * This function is called by the sli intialization code path
4480 * to issue config_port mailbox command. This function restarts the
4481 * HBA firmware and issues a config_port mailbox command to configure
4482 * the SLI interface in the sli mode specified by sli_mode
4483 * variable. The caller is not required to hold any locks.
4484 * The function returns 0 if successful, else returns negative error
4485 * code.
4486 **/
9399627f
JS
4487int
4488lpfc_sli_config_port(struct lpfc_hba *phba, int sli_mode)
dea3101e
JB
4489{
4490 LPFC_MBOXQ_t *pmb;
4491 uint32_t resetcount = 0, rc = 0, done = 0;
4492
4493 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4494 if (!pmb) {
2e0fef85 4495 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
4496 return -ENOMEM;
4497 }
4498
ed957684 4499 phba->sli_rev = sli_mode;
dea3101e 4500 while (resetcount < 2 && !done) {
2e0fef85 4501 spin_lock_irq(&phba->hbalock);
1c067a42 4502 phba->sli.sli_flag |= LPFC_SLI_MBOX_ACTIVE;
2e0fef85 4503 spin_unlock_irq(&phba->hbalock);
92d7f7b0 4504 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
41415862 4505 lpfc_sli_brdrestart(phba);
dea3101e
JB
4506 rc = lpfc_sli_chipset_init(phba);
4507 if (rc)
4508 break;
4509
2e0fef85 4510 spin_lock_irq(&phba->hbalock);
1c067a42 4511 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
2e0fef85 4512 spin_unlock_irq(&phba->hbalock);
dea3101e
JB
4513 resetcount++;
4514
ed957684
JS
4515 /* Call pre CONFIG_PORT mailbox command initialization. A
4516 * value of 0 means the call was successful. Any other
4517 * nonzero value is a failure, but if ERESTART is returned,
4518 * the driver may reset the HBA and try again.
4519 */
dea3101e
JB
4520 rc = lpfc_config_port_prep(phba);
4521 if (rc == -ERESTART) {
ed957684 4522 phba->link_state = LPFC_LINK_UNKNOWN;
dea3101e 4523 continue;
34b02dcd 4524 } else if (rc)
dea3101e 4525 break;
6d368e53 4526
2e0fef85 4527 phba->link_state = LPFC_INIT_MBX_CMDS;
dea3101e
JB
4528 lpfc_config_port(phba, pmb);
4529 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
34b02dcd
JS
4530 phba->sli3_options &= ~(LPFC_SLI3_NPIV_ENABLED |
4531 LPFC_SLI3_HBQ_ENABLED |
4532 LPFC_SLI3_CRP_ENABLED |
bc73905a
JS
4533 LPFC_SLI3_BG_ENABLED |
4534 LPFC_SLI3_DSS_ENABLED);
ed957684 4535 if (rc != MBX_SUCCESS) {
dea3101e 4536 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 4537 "0442 Adapter failed to init, mbxCmd x%x "
92d7f7b0 4538 "CONFIG_PORT, mbxStatus x%x Data: x%x\n",
04c68496 4539 pmb->u.mb.mbxCommand, pmb->u.mb.mbxStatus, 0);
2e0fef85 4540 spin_lock_irq(&phba->hbalock);
04c68496 4541 phba->sli.sli_flag &= ~LPFC_SLI_ACTIVE;
2e0fef85
JS
4542 spin_unlock_irq(&phba->hbalock);
4543 rc = -ENXIO;
04c68496
JS
4544 } else {
4545 /* Allow asynchronous mailbox command to go through */
4546 spin_lock_irq(&phba->hbalock);
4547 phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
4548 spin_unlock_irq(&phba->hbalock);
ed957684 4549 done = 1;
cb69f7de
JS
4550
4551 if ((pmb->u.mb.un.varCfgPort.casabt == 1) &&
4552 (pmb->u.mb.un.varCfgPort.gasabt == 0))
4553 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
4554 "3110 Port did not grant ASABT\n");
04c68496 4555 }
dea3101e 4556 }
ed957684
JS
4557 if (!done) {
4558 rc = -EINVAL;
4559 goto do_prep_failed;
4560 }
04c68496
JS
4561 if (pmb->u.mb.un.varCfgPort.sli_mode == 3) {
4562 if (!pmb->u.mb.un.varCfgPort.cMA) {
34b02dcd
JS
4563 rc = -ENXIO;
4564 goto do_prep_failed;
4565 }
04c68496 4566 if (phba->max_vpi && pmb->u.mb.un.varCfgPort.gmv) {
34b02dcd 4567 phba->sli3_options |= LPFC_SLI3_NPIV_ENABLED;
04c68496
JS
4568 phba->max_vpi = pmb->u.mb.un.varCfgPort.max_vpi;
4569 phba->max_vports = (phba->max_vpi > phba->max_vports) ?
4570 phba->max_vpi : phba->max_vports;
4571
34b02dcd
JS
4572 } else
4573 phba->max_vpi = 0;
bc73905a
JS
4574 phba->fips_level = 0;
4575 phba->fips_spec_rev = 0;
4576 if (pmb->u.mb.un.varCfgPort.gdss) {
04c68496 4577 phba->sli3_options |= LPFC_SLI3_DSS_ENABLED;
bc73905a
JS
4578 phba->fips_level = pmb->u.mb.un.varCfgPort.fips_level;
4579 phba->fips_spec_rev = pmb->u.mb.un.varCfgPort.fips_rev;
4580 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4581 "2850 Security Crypto Active. FIPS x%d "
4582 "(Spec Rev: x%d)",
4583 phba->fips_level, phba->fips_spec_rev);
4584 }
4585 if (pmb->u.mb.un.varCfgPort.sec_err) {
4586 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4587 "2856 Config Port Security Crypto "
4588 "Error: x%x ",
4589 pmb->u.mb.un.varCfgPort.sec_err);
4590 }
04c68496 4591 if (pmb->u.mb.un.varCfgPort.gerbm)
34b02dcd 4592 phba->sli3_options |= LPFC_SLI3_HBQ_ENABLED;
04c68496 4593 if (pmb->u.mb.un.varCfgPort.gcrp)
34b02dcd 4594 phba->sli3_options |= LPFC_SLI3_CRP_ENABLED;
6e7288d9
JS
4595
4596 phba->hbq_get = phba->mbox->us.s3_pgp.hbq_get;
4597 phba->port_gp = phba->mbox->us.s3_pgp.port;
e2a0a9d6
JS
4598
4599 if (phba->cfg_enable_bg) {
04c68496 4600 if (pmb->u.mb.un.varCfgPort.gbg)
e2a0a9d6
JS
4601 phba->sli3_options |= LPFC_SLI3_BG_ENABLED;
4602 else
4603 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4604 "0443 Adapter did not grant "
4605 "BlockGuard\n");
4606 }
34b02dcd 4607 } else {
8f34f4ce 4608 phba->hbq_get = NULL;
34b02dcd 4609 phba->port_gp = phba->mbox->us.s2.port;
d7c255b2 4610 phba->max_vpi = 0;
ed957684 4611 }
92d7f7b0 4612do_prep_failed:
ed957684
JS
4613 mempool_free(pmb, phba->mbox_mem_pool);
4614 return rc;
4615}
4616
e59058c4
JS
4617
4618/**
3621a710 4619 * lpfc_sli_hba_setup - SLI intialization function
e59058c4
JS
4620 * @phba: Pointer to HBA context object.
4621 *
4622 * This function is the main SLI intialization function. This function
4623 * is called by the HBA intialization code, HBA reset code and HBA
4624 * error attention handler code. Caller is not required to hold any
4625 * locks. This function issues config_port mailbox command to configure
4626 * the SLI, setup iocb rings and HBQ rings. In the end the function
4627 * calls the config_port_post function to issue init_link mailbox
4628 * command and to start the discovery. The function will return zero
4629 * if successful, else it will return negative error code.
4630 **/
ed957684
JS
4631int
4632lpfc_sli_hba_setup(struct lpfc_hba *phba)
4633{
4634 uint32_t rc;
6d368e53
JS
4635 int mode = 3, i;
4636 int longs;
ed957684
JS
4637
4638 switch (lpfc_sli_mode) {
4639 case 2:
78b2d852 4640 if (phba->cfg_enable_npiv) {
92d7f7b0 4641 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
e8b62011 4642 "1824 NPIV enabled: Override lpfc_sli_mode "
92d7f7b0 4643 "parameter (%d) to auto (0).\n",
e8b62011 4644 lpfc_sli_mode);
92d7f7b0
JS
4645 break;
4646 }
ed957684
JS
4647 mode = 2;
4648 break;
4649 case 0:
4650 case 3:
4651 break;
4652 default:
92d7f7b0 4653 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
e8b62011
JS
4654 "1819 Unrecognized lpfc_sli_mode "
4655 "parameter: %d.\n", lpfc_sli_mode);
ed957684
JS
4656
4657 break;
4658 }
4659
9399627f
JS
4660 rc = lpfc_sli_config_port(phba, mode);
4661
ed957684 4662 if (rc && lpfc_sli_mode == 3)
92d7f7b0 4663 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
e8b62011
JS
4664 "1820 Unable to select SLI-3. "
4665 "Not supported by adapter.\n");
ed957684 4666 if (rc && mode != 2)
9399627f 4667 rc = lpfc_sli_config_port(phba, 2);
ed957684 4668 if (rc)
dea3101e
JB
4669 goto lpfc_sli_hba_setup_error;
4670
0d878419
JS
4671 /* Enable PCIe device Advanced Error Reporting (AER) if configured */
4672 if (phba->cfg_aer_support == 1 && !(phba->hba_flag & HBA_AER_ENABLED)) {
4673 rc = pci_enable_pcie_error_reporting(phba->pcidev);
4674 if (!rc) {
4675 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4676 "2709 This device supports "
4677 "Advanced Error Reporting (AER)\n");
4678 spin_lock_irq(&phba->hbalock);
4679 phba->hba_flag |= HBA_AER_ENABLED;
4680 spin_unlock_irq(&phba->hbalock);
4681 } else {
4682 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4683 "2708 This device does not support "
b069d7eb
JS
4684 "Advanced Error Reporting (AER): %d\n",
4685 rc);
0d878419
JS
4686 phba->cfg_aer_support = 0;
4687 }
4688 }
4689
ed957684
JS
4690 if (phba->sli_rev == 3) {
4691 phba->iocb_cmd_size = SLI3_IOCB_CMD_SIZE;
4692 phba->iocb_rsp_size = SLI3_IOCB_RSP_SIZE;
ed957684
JS
4693 } else {
4694 phba->iocb_cmd_size = SLI2_IOCB_CMD_SIZE;
4695 phba->iocb_rsp_size = SLI2_IOCB_RSP_SIZE;
92d7f7b0 4696 phba->sli3_options = 0;
ed957684
JS
4697 }
4698
4699 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
e8b62011
JS
4700 "0444 Firmware in SLI %x mode. Max_vpi %d\n",
4701 phba->sli_rev, phba->max_vpi);
ed957684 4702 rc = lpfc_sli_ring_map(phba);
dea3101e
JB
4703
4704 if (rc)
4705 goto lpfc_sli_hba_setup_error;
4706
6d368e53
JS
4707 /* Initialize VPIs. */
4708 if (phba->sli_rev == LPFC_SLI_REV3) {
4709 /*
4710 * The VPI bitmask and physical ID array are allocated
4711 * and initialized once only - at driver load. A port
4712 * reset doesn't need to reinitialize this memory.
4713 */
4714 if ((phba->vpi_bmask == NULL) && (phba->vpi_ids == NULL)) {
4715 longs = (phba->max_vpi + BITS_PER_LONG) / BITS_PER_LONG;
4716 phba->vpi_bmask = kzalloc(longs * sizeof(unsigned long),
4717 GFP_KERNEL);
4718 if (!phba->vpi_bmask) {
4719 rc = -ENOMEM;
4720 goto lpfc_sli_hba_setup_error;
4721 }
4722
4723 phba->vpi_ids = kzalloc(
4724 (phba->max_vpi+1) * sizeof(uint16_t),
4725 GFP_KERNEL);
4726 if (!phba->vpi_ids) {
4727 kfree(phba->vpi_bmask);
4728 rc = -ENOMEM;
4729 goto lpfc_sli_hba_setup_error;
4730 }
4731 for (i = 0; i < phba->max_vpi; i++)
4732 phba->vpi_ids[i] = i;
4733 }
4734 }
4735
9399627f 4736 /* Init HBQs */
ed957684
JS
4737 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
4738 rc = lpfc_sli_hbq_setup(phba);
4739 if (rc)
4740 goto lpfc_sli_hba_setup_error;
4741 }
04c68496 4742 spin_lock_irq(&phba->hbalock);
dea3101e 4743 phba->sli.sli_flag |= LPFC_PROCESS_LA;
04c68496 4744 spin_unlock_irq(&phba->hbalock);
dea3101e
JB
4745
4746 rc = lpfc_config_port_post(phba);
4747 if (rc)
4748 goto lpfc_sli_hba_setup_error;
4749
ed957684
JS
4750 return rc;
4751
92d7f7b0 4752lpfc_sli_hba_setup_error:
2e0fef85 4753 phba->link_state = LPFC_HBA_ERROR;
e40a02c1 4754 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 4755 "0445 Firmware initialization failed\n");
dea3101e
JB
4756 return rc;
4757}
4758
e59058c4 4759/**
da0436e9
JS
4760 * lpfc_sli4_read_fcoe_params - Read fcoe params from conf region
4761 * @phba: Pointer to HBA context object.
4762 * @mboxq: mailbox pointer.
4763 * This function issue a dump mailbox command to read config region
4764 * 23 and parse the records in the region and populate driver
4765 * data structure.
e59058c4 4766 **/
da0436e9 4767static int
ff78d8f9 4768lpfc_sli4_read_fcoe_params(struct lpfc_hba *phba)
dea3101e 4769{
ff78d8f9 4770 LPFC_MBOXQ_t *mboxq;
da0436e9
JS
4771 struct lpfc_dmabuf *mp;
4772 struct lpfc_mqe *mqe;
4773 uint32_t data_length;
4774 int rc;
dea3101e 4775
da0436e9
JS
4776 /* Program the default value of vlan_id and fc_map */
4777 phba->valid_vlan = 0;
4778 phba->fc_map[0] = LPFC_FCOE_FCF_MAP0;
4779 phba->fc_map[1] = LPFC_FCOE_FCF_MAP1;
4780 phba->fc_map[2] = LPFC_FCOE_FCF_MAP2;
2e0fef85 4781
ff78d8f9
JS
4782 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4783 if (!mboxq)
da0436e9
JS
4784 return -ENOMEM;
4785
ff78d8f9
JS
4786 mqe = &mboxq->u.mqe;
4787 if (lpfc_sli4_dump_cfg_rg23(phba, mboxq)) {
4788 rc = -ENOMEM;
4789 goto out_free_mboxq;
4790 }
4791
da0436e9
JS
4792 mp = (struct lpfc_dmabuf *) mboxq->context1;
4793 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4794
4795 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
4796 "(%d):2571 Mailbox cmd x%x Status x%x "
4797 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x "
4798 "x%x x%x x%x x%x x%x x%x x%x x%x x%x "
4799 "CQ: x%x x%x x%x x%x\n",
4800 mboxq->vport ? mboxq->vport->vpi : 0,
4801 bf_get(lpfc_mqe_command, mqe),
4802 bf_get(lpfc_mqe_status, mqe),
4803 mqe->un.mb_words[0], mqe->un.mb_words[1],
4804 mqe->un.mb_words[2], mqe->un.mb_words[3],
4805 mqe->un.mb_words[4], mqe->un.mb_words[5],
4806 mqe->un.mb_words[6], mqe->un.mb_words[7],
4807 mqe->un.mb_words[8], mqe->un.mb_words[9],
4808 mqe->un.mb_words[10], mqe->un.mb_words[11],
4809 mqe->un.mb_words[12], mqe->un.mb_words[13],
4810 mqe->un.mb_words[14], mqe->un.mb_words[15],
4811 mqe->un.mb_words[16], mqe->un.mb_words[50],
4812 mboxq->mcqe.word0,
4813 mboxq->mcqe.mcqe_tag0, mboxq->mcqe.mcqe_tag1,
4814 mboxq->mcqe.trailer);
4815
4816 if (rc) {
4817 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4818 kfree(mp);
ff78d8f9
JS
4819 rc = -EIO;
4820 goto out_free_mboxq;
da0436e9
JS
4821 }
4822 data_length = mqe->un.mb_words[5];
a0c87cbd 4823 if (data_length > DMP_RGN23_SIZE) {
d11e31dd
JS
4824 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4825 kfree(mp);
ff78d8f9
JS
4826 rc = -EIO;
4827 goto out_free_mboxq;
d11e31dd 4828 }
dea3101e 4829
da0436e9
JS
4830 lpfc_parse_fcoe_conf(phba, mp->virt, data_length);
4831 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4832 kfree(mp);
ff78d8f9
JS
4833 rc = 0;
4834
4835out_free_mboxq:
4836 mempool_free(mboxq, phba->mbox_mem_pool);
4837 return rc;
da0436e9 4838}
e59058c4
JS
4839
4840/**
da0436e9
JS
4841 * lpfc_sli4_read_rev - Issue READ_REV and collect vpd data
4842 * @phba: pointer to lpfc hba data structure.
4843 * @mboxq: pointer to the LPFC_MBOXQ_t structure.
4844 * @vpd: pointer to the memory to hold resulting port vpd data.
4845 * @vpd_size: On input, the number of bytes allocated to @vpd.
4846 * On output, the number of data bytes in @vpd.
e59058c4 4847 *
da0436e9
JS
4848 * This routine executes a READ_REV SLI4 mailbox command. In
4849 * addition, this routine gets the port vpd data.
4850 *
4851 * Return codes
af901ca1 4852 * 0 - successful
d439d286 4853 * -ENOMEM - could not allocated memory.
e59058c4 4854 **/
da0436e9
JS
4855static int
4856lpfc_sli4_read_rev(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
4857 uint8_t *vpd, uint32_t *vpd_size)
dea3101e 4858{
da0436e9
JS
4859 int rc = 0;
4860 uint32_t dma_size;
4861 struct lpfc_dmabuf *dmabuf;
4862 struct lpfc_mqe *mqe;
dea3101e 4863
da0436e9
JS
4864 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
4865 if (!dmabuf)
4866 return -ENOMEM;
4867
4868 /*
4869 * Get a DMA buffer for the vpd data resulting from the READ_REV
4870 * mailbox command.
a257bf90 4871 */
da0436e9 4872 dma_size = *vpd_size;
1aee383d
JP
4873 dmabuf->virt = dma_zalloc_coherent(&phba->pcidev->dev, dma_size,
4874 &dmabuf->phys, GFP_KERNEL);
da0436e9
JS
4875 if (!dmabuf->virt) {
4876 kfree(dmabuf);
4877 return -ENOMEM;
a257bf90
JS
4878 }
4879
da0436e9
JS
4880 /*
4881 * The SLI4 implementation of READ_REV conflicts at word1,
4882 * bits 31:16 and SLI4 adds vpd functionality not present
4883 * in SLI3. This code corrects the conflicts.
1dcb58e5 4884 */
da0436e9
JS
4885 lpfc_read_rev(phba, mboxq);
4886 mqe = &mboxq->u.mqe;
4887 mqe->un.read_rev.vpd_paddr_high = putPaddrHigh(dmabuf->phys);
4888 mqe->un.read_rev.vpd_paddr_low = putPaddrLow(dmabuf->phys);
4889 mqe->un.read_rev.word1 &= 0x0000FFFF;
4890 bf_set(lpfc_mbx_rd_rev_vpd, &mqe->un.read_rev, 1);
4891 bf_set(lpfc_mbx_rd_rev_avail_len, &mqe->un.read_rev, dma_size);
4892
4893 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4894 if (rc) {
4895 dma_free_coherent(&phba->pcidev->dev, dma_size,
4896 dmabuf->virt, dmabuf->phys);
def9c7a9 4897 kfree(dmabuf);
da0436e9
JS
4898 return -EIO;
4899 }
1dcb58e5 4900
da0436e9
JS
4901 /*
4902 * The available vpd length cannot be bigger than the
4903 * DMA buffer passed to the port. Catch the less than
4904 * case and update the caller's size.
4905 */
4906 if (mqe->un.read_rev.avail_vpd_len < *vpd_size)
4907 *vpd_size = mqe->un.read_rev.avail_vpd_len;
3772a991 4908
d7c47992
JS
4909 memcpy(vpd, dmabuf->virt, *vpd_size);
4910
da0436e9
JS
4911 dma_free_coherent(&phba->pcidev->dev, dma_size,
4912 dmabuf->virt, dmabuf->phys);
4913 kfree(dmabuf);
4914 return 0;
dea3101e
JB
4915}
4916
cd1c8301
JS
4917/**
4918 * lpfc_sli4_retrieve_pport_name - Retrieve SLI4 device physical port name
4919 * @phba: pointer to lpfc hba data structure.
4920 *
4921 * This routine retrieves SLI4 device physical port name this PCI function
4922 * is attached to.
4923 *
4924 * Return codes
4907cb7b 4925 * 0 - successful
cd1c8301
JS
4926 * otherwise - failed to retrieve physical port name
4927 **/
4928static int
4929lpfc_sli4_retrieve_pport_name(struct lpfc_hba *phba)
4930{
4931 LPFC_MBOXQ_t *mboxq;
cd1c8301
JS
4932 struct lpfc_mbx_get_cntl_attributes *mbx_cntl_attr;
4933 struct lpfc_controller_attribute *cntl_attr;
4934 struct lpfc_mbx_get_port_name *get_port_name;
4935 void *virtaddr = NULL;
4936 uint32_t alloclen, reqlen;
4937 uint32_t shdr_status, shdr_add_status;
4938 union lpfc_sli4_cfg_shdr *shdr;
4939 char cport_name = 0;
4940 int rc;
4941
4942 /* We assume nothing at this point */
4943 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_INVAL;
4944 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_NON;
4945
4946 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4947 if (!mboxq)
4948 return -ENOMEM;
cd1c8301 4949 /* obtain link type and link number via READ_CONFIG */
ff78d8f9
JS
4950 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_INVAL;
4951 lpfc_sli4_read_config(phba);
4952 if (phba->sli4_hba.lnk_info.lnk_dv == LPFC_LNK_DAT_VAL)
4953 goto retrieve_ppname;
cd1c8301
JS
4954
4955 /* obtain link type and link number via COMMON_GET_CNTL_ATTRIBUTES */
4956 reqlen = sizeof(struct lpfc_mbx_get_cntl_attributes);
4957 alloclen = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
4958 LPFC_MBOX_OPCODE_GET_CNTL_ATTRIBUTES, reqlen,
4959 LPFC_SLI4_MBX_NEMBED);
4960 if (alloclen < reqlen) {
4961 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
4962 "3084 Allocated DMA memory size (%d) is "
4963 "less than the requested DMA memory size "
4964 "(%d)\n", alloclen, reqlen);
4965 rc = -ENOMEM;
4966 goto out_free_mboxq;
4967 }
4968 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4969 virtaddr = mboxq->sge_array->addr[0];
4970 mbx_cntl_attr = (struct lpfc_mbx_get_cntl_attributes *)virtaddr;
4971 shdr = &mbx_cntl_attr->cfg_shdr;
4972 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
4973 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
4974 if (shdr_status || shdr_add_status || rc) {
4975 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
4976 "3085 Mailbox x%x (x%x/x%x) failed, "
4977 "rc:x%x, status:x%x, add_status:x%x\n",
4978 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
4979 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
4980 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
4981 rc, shdr_status, shdr_add_status);
4982 rc = -ENXIO;
4983 goto out_free_mboxq;
4984 }
4985 cntl_attr = &mbx_cntl_attr->cntl_attr;
4986 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_VAL;
4987 phba->sli4_hba.lnk_info.lnk_tp =
4988 bf_get(lpfc_cntl_attr_lnk_type, cntl_attr);
4989 phba->sli4_hba.lnk_info.lnk_no =
4990 bf_get(lpfc_cntl_attr_lnk_numb, cntl_attr);
4991 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4992 "3086 lnk_type:%d, lnk_numb:%d\n",
4993 phba->sli4_hba.lnk_info.lnk_tp,
4994 phba->sli4_hba.lnk_info.lnk_no);
4995
4996retrieve_ppname:
4997 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
4998 LPFC_MBOX_OPCODE_GET_PORT_NAME,
4999 sizeof(struct lpfc_mbx_get_port_name) -
5000 sizeof(struct lpfc_sli4_cfg_mhdr),
5001 LPFC_SLI4_MBX_EMBED);
5002 get_port_name = &mboxq->u.mqe.un.get_port_name;
5003 shdr = (union lpfc_sli4_cfg_shdr *)&get_port_name->header.cfg_shdr;
5004 bf_set(lpfc_mbox_hdr_version, &shdr->request, LPFC_OPCODE_VERSION_1);
5005 bf_set(lpfc_mbx_get_port_name_lnk_type, &get_port_name->u.request,
5006 phba->sli4_hba.lnk_info.lnk_tp);
5007 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
5008 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
5009 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
5010 if (shdr_status || shdr_add_status || rc) {
5011 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
5012 "3087 Mailbox x%x (x%x/x%x) failed: "
5013 "rc:x%x, status:x%x, add_status:x%x\n",
5014 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
5015 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
5016 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
5017 rc, shdr_status, shdr_add_status);
5018 rc = -ENXIO;
5019 goto out_free_mboxq;
5020 }
5021 switch (phba->sli4_hba.lnk_info.lnk_no) {
5022 case LPFC_LINK_NUMBER_0:
5023 cport_name = bf_get(lpfc_mbx_get_port_name_name0,
5024 &get_port_name->u.response);
5025 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
5026 break;
5027 case LPFC_LINK_NUMBER_1:
5028 cport_name = bf_get(lpfc_mbx_get_port_name_name1,
5029 &get_port_name->u.response);
5030 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
5031 break;
5032 case LPFC_LINK_NUMBER_2:
5033 cport_name = bf_get(lpfc_mbx_get_port_name_name2,
5034 &get_port_name->u.response);
5035 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
5036 break;
5037 case LPFC_LINK_NUMBER_3:
5038 cport_name = bf_get(lpfc_mbx_get_port_name_name3,
5039 &get_port_name->u.response);
5040 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
5041 break;
5042 default:
5043 break;
5044 }
5045
5046 if (phba->sli4_hba.pport_name_sta == LPFC_SLI4_PPNAME_GET) {
5047 phba->Port[0] = cport_name;
5048 phba->Port[1] = '\0';
5049 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
5050 "3091 SLI get port name: %s\n", phba->Port);
5051 }
5052
5053out_free_mboxq:
5054 if (rc != MBX_TIMEOUT) {
5055 if (bf_get(lpfc_mqe_command, &mboxq->u.mqe) == MBX_SLI4_CONFIG)
5056 lpfc_sli4_mbox_cmd_free(phba, mboxq);
5057 else
5058 mempool_free(mboxq, phba->mbox_mem_pool);
5059 }
5060 return rc;
5061}
5062
e59058c4 5063/**
da0436e9
JS
5064 * lpfc_sli4_arm_cqeq_intr - Arm sli-4 device completion and event queues
5065 * @phba: pointer to lpfc hba data structure.
e59058c4 5066 *
da0436e9
JS
5067 * This routine is called to explicitly arm the SLI4 device's completion and
5068 * event queues
5069 **/
5070static void
5071lpfc_sli4_arm_cqeq_intr(struct lpfc_hba *phba)
5072{
962bc51b 5073 int fcp_eqidx;
da0436e9
JS
5074
5075 lpfc_sli4_cq_release(phba->sli4_hba.mbx_cq, LPFC_QUEUE_REARM);
5076 lpfc_sli4_cq_release(phba->sli4_hba.els_cq, LPFC_QUEUE_REARM);
0558056c 5077 fcp_eqidx = 0;
2e90f4b5 5078 if (phba->sli4_hba.fcp_cq) {
67d12733 5079 do {
2e90f4b5
JS
5080 lpfc_sli4_cq_release(phba->sli4_hba.fcp_cq[fcp_eqidx],
5081 LPFC_QUEUE_REARM);
67d12733 5082 } while (++fcp_eqidx < phba->cfg_fcp_io_channel);
2e90f4b5 5083 }
1ba981fd 5084
f38fa0bb 5085 if (phba->cfg_fof)
1ba981fd
JS
5086 lpfc_sli4_cq_release(phba->sli4_hba.oas_cq, LPFC_QUEUE_REARM);
5087
67d12733
JS
5088 if (phba->sli4_hba.hba_eq) {
5089 for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_io_channel;
2e90f4b5 5090 fcp_eqidx++)
67d12733 5091 lpfc_sli4_eq_release(phba->sli4_hba.hba_eq[fcp_eqidx],
2e90f4b5
JS
5092 LPFC_QUEUE_REARM);
5093 }
1ba981fd
JS
5094
5095 if (phba->cfg_fof)
5096 lpfc_sli4_eq_release(phba->sli4_hba.fof_eq, LPFC_QUEUE_REARM);
da0436e9
JS
5097}
5098
6d368e53
JS
5099/**
5100 * lpfc_sli4_get_avail_extnt_rsrc - Get available resource extent count.
5101 * @phba: Pointer to HBA context object.
5102 * @type: The resource extent type.
b76f2dc9
JS
5103 * @extnt_count: buffer to hold port available extent count.
5104 * @extnt_size: buffer to hold element count per extent.
6d368e53 5105 *
b76f2dc9
JS
5106 * This function calls the port and retrievs the number of available
5107 * extents and their size for a particular extent type.
5108 *
5109 * Returns: 0 if successful. Nonzero otherwise.
6d368e53 5110 **/
b76f2dc9 5111int
6d368e53
JS
5112lpfc_sli4_get_avail_extnt_rsrc(struct lpfc_hba *phba, uint16_t type,
5113 uint16_t *extnt_count, uint16_t *extnt_size)
5114{
5115 int rc = 0;
5116 uint32_t length;
5117 uint32_t mbox_tmo;
5118 struct lpfc_mbx_get_rsrc_extent_info *rsrc_info;
5119 LPFC_MBOXQ_t *mbox;
5120
5121 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5122 if (!mbox)
5123 return -ENOMEM;
5124
5125 /* Find out how many extents are available for this resource type */
5126 length = (sizeof(struct lpfc_mbx_get_rsrc_extent_info) -
5127 sizeof(struct lpfc_sli4_cfg_mhdr));
5128 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5129 LPFC_MBOX_OPCODE_GET_RSRC_EXTENT_INFO,
5130 length, LPFC_SLI4_MBX_EMBED);
5131
5132 /* Send an extents count of 0 - the GET doesn't use it. */
5133 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, 0, type,
5134 LPFC_SLI4_MBX_EMBED);
5135 if (unlikely(rc)) {
5136 rc = -EIO;
5137 goto err_exit;
5138 }
5139
5140 if (!phba->sli4_hba.intr_enable)
5141 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5142 else {
a183a15f 5143 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
6d368e53
JS
5144 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5145 }
5146 if (unlikely(rc)) {
5147 rc = -EIO;
5148 goto err_exit;
5149 }
5150
5151 rsrc_info = &mbox->u.mqe.un.rsrc_extent_info;
5152 if (bf_get(lpfc_mbox_hdr_status,
5153 &rsrc_info->header.cfg_shdr.response)) {
5154 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5155 "2930 Failed to get resource extents "
5156 "Status 0x%x Add'l Status 0x%x\n",
5157 bf_get(lpfc_mbox_hdr_status,
5158 &rsrc_info->header.cfg_shdr.response),
5159 bf_get(lpfc_mbox_hdr_add_status,
5160 &rsrc_info->header.cfg_shdr.response));
5161 rc = -EIO;
5162 goto err_exit;
5163 }
5164
5165 *extnt_count = bf_get(lpfc_mbx_get_rsrc_extent_info_cnt,
5166 &rsrc_info->u.rsp);
5167 *extnt_size = bf_get(lpfc_mbx_get_rsrc_extent_info_size,
5168 &rsrc_info->u.rsp);
8a9d2e80
JS
5169
5170 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
5171 "3162 Retrieved extents type-%d from port: count:%d, "
5172 "size:%d\n", type, *extnt_count, *extnt_size);
5173
5174err_exit:
6d368e53
JS
5175 mempool_free(mbox, phba->mbox_mem_pool);
5176 return rc;
5177}
5178
5179/**
5180 * lpfc_sli4_chk_avail_extnt_rsrc - Check for available SLI4 resource extents.
5181 * @phba: Pointer to HBA context object.
5182 * @type: The extent type to check.
5183 *
5184 * This function reads the current available extents from the port and checks
5185 * if the extent count or extent size has changed since the last access.
5186 * Callers use this routine post port reset to understand if there is a
5187 * extent reprovisioning requirement.
5188 *
5189 * Returns:
5190 * -Error: error indicates problem.
5191 * 1: Extent count or size has changed.
5192 * 0: No changes.
5193 **/
5194static int
5195lpfc_sli4_chk_avail_extnt_rsrc(struct lpfc_hba *phba, uint16_t type)
5196{
5197 uint16_t curr_ext_cnt, rsrc_ext_cnt;
5198 uint16_t size_diff, rsrc_ext_size;
5199 int rc = 0;
5200 struct lpfc_rsrc_blks *rsrc_entry;
5201 struct list_head *rsrc_blk_list = NULL;
5202
5203 size_diff = 0;
5204 curr_ext_cnt = 0;
5205 rc = lpfc_sli4_get_avail_extnt_rsrc(phba, type,
5206 &rsrc_ext_cnt,
5207 &rsrc_ext_size);
5208 if (unlikely(rc))
5209 return -EIO;
5210
5211 switch (type) {
5212 case LPFC_RSC_TYPE_FCOE_RPI:
5213 rsrc_blk_list = &phba->sli4_hba.lpfc_rpi_blk_list;
5214 break;
5215 case LPFC_RSC_TYPE_FCOE_VPI:
5216 rsrc_blk_list = &phba->lpfc_vpi_blk_list;
5217 break;
5218 case LPFC_RSC_TYPE_FCOE_XRI:
5219 rsrc_blk_list = &phba->sli4_hba.lpfc_xri_blk_list;
5220 break;
5221 case LPFC_RSC_TYPE_FCOE_VFI:
5222 rsrc_blk_list = &phba->sli4_hba.lpfc_vfi_blk_list;
5223 break;
5224 default:
5225 break;
5226 }
5227
5228 list_for_each_entry(rsrc_entry, rsrc_blk_list, list) {
5229 curr_ext_cnt++;
5230 if (rsrc_entry->rsrc_size != rsrc_ext_size)
5231 size_diff++;
5232 }
5233
5234 if (curr_ext_cnt != rsrc_ext_cnt || size_diff != 0)
5235 rc = 1;
5236
5237 return rc;
5238}
5239
5240/**
5241 * lpfc_sli4_cfg_post_extnts -
5242 * @phba: Pointer to HBA context object.
5243 * @extnt_cnt - number of available extents.
5244 * @type - the extent type (rpi, xri, vfi, vpi).
5245 * @emb - buffer to hold either MBX_EMBED or MBX_NEMBED operation.
5246 * @mbox - pointer to the caller's allocated mailbox structure.
5247 *
5248 * This function executes the extents allocation request. It also
5249 * takes care of the amount of memory needed to allocate or get the
5250 * allocated extents. It is the caller's responsibility to evaluate
5251 * the response.
5252 *
5253 * Returns:
5254 * -Error: Error value describes the condition found.
5255 * 0: if successful
5256 **/
5257static int
8a9d2e80 5258lpfc_sli4_cfg_post_extnts(struct lpfc_hba *phba, uint16_t extnt_cnt,
6d368e53
JS
5259 uint16_t type, bool *emb, LPFC_MBOXQ_t *mbox)
5260{
5261 int rc = 0;
5262 uint32_t req_len;
5263 uint32_t emb_len;
5264 uint32_t alloc_len, mbox_tmo;
5265
5266 /* Calculate the total requested length of the dma memory */
8a9d2e80 5267 req_len = extnt_cnt * sizeof(uint16_t);
6d368e53
JS
5268
5269 /*
5270 * Calculate the size of an embedded mailbox. The uint32_t
5271 * accounts for extents-specific word.
5272 */
5273 emb_len = sizeof(MAILBOX_t) - sizeof(struct mbox_header) -
5274 sizeof(uint32_t);
5275
5276 /*
5277 * Presume the allocation and response will fit into an embedded
5278 * mailbox. If not true, reconfigure to a non-embedded mailbox.
5279 */
5280 *emb = LPFC_SLI4_MBX_EMBED;
5281 if (req_len > emb_len) {
8a9d2e80 5282 req_len = extnt_cnt * sizeof(uint16_t) +
6d368e53
JS
5283 sizeof(union lpfc_sli4_cfg_shdr) +
5284 sizeof(uint32_t);
5285 *emb = LPFC_SLI4_MBX_NEMBED;
5286 }
5287
5288 alloc_len = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5289 LPFC_MBOX_OPCODE_ALLOC_RSRC_EXTENT,
5290 req_len, *emb);
5291 if (alloc_len < req_len) {
5292 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
b76f2dc9 5293 "2982 Allocated DMA memory size (x%x) is "
6d368e53
JS
5294 "less than the requested DMA memory "
5295 "size (x%x)\n", alloc_len, req_len);
5296 return -ENOMEM;
5297 }
8a9d2e80 5298 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, extnt_cnt, type, *emb);
6d368e53
JS
5299 if (unlikely(rc))
5300 return -EIO;
5301
5302 if (!phba->sli4_hba.intr_enable)
5303 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5304 else {
a183a15f 5305 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
6d368e53
JS
5306 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5307 }
5308
5309 if (unlikely(rc))
5310 rc = -EIO;
5311 return rc;
5312}
5313
5314/**
5315 * lpfc_sli4_alloc_extent - Allocate an SLI4 resource extent.
5316 * @phba: Pointer to HBA context object.
5317 * @type: The resource extent type to allocate.
5318 *
5319 * This function allocates the number of elements for the specified
5320 * resource type.
5321 **/
5322static int
5323lpfc_sli4_alloc_extent(struct lpfc_hba *phba, uint16_t type)
5324{
5325 bool emb = false;
5326 uint16_t rsrc_id_cnt, rsrc_cnt, rsrc_size;
5327 uint16_t rsrc_id, rsrc_start, j, k;
5328 uint16_t *ids;
5329 int i, rc;
5330 unsigned long longs;
5331 unsigned long *bmask;
5332 struct lpfc_rsrc_blks *rsrc_blks;
5333 LPFC_MBOXQ_t *mbox;
5334 uint32_t length;
5335 struct lpfc_id_range *id_array = NULL;
5336 void *virtaddr = NULL;
5337 struct lpfc_mbx_nembed_rsrc_extent *n_rsrc;
5338 struct lpfc_mbx_alloc_rsrc_extents *rsrc_ext;
5339 struct list_head *ext_blk_list;
5340
5341 rc = lpfc_sli4_get_avail_extnt_rsrc(phba, type,
5342 &rsrc_cnt,
5343 &rsrc_size);
5344 if (unlikely(rc))
5345 return -EIO;
5346
5347 if ((rsrc_cnt == 0) || (rsrc_size == 0)) {
5348 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5349 "3009 No available Resource Extents "
5350 "for resource type 0x%x: Count: 0x%x, "
5351 "Size 0x%x\n", type, rsrc_cnt,
5352 rsrc_size);
5353 return -ENOMEM;
5354 }
5355
8a9d2e80
JS
5356 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_INIT | LOG_SLI,
5357 "2903 Post resource extents type-0x%x: "
5358 "count:%d, size %d\n", type, rsrc_cnt, rsrc_size);
6d368e53
JS
5359
5360 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5361 if (!mbox)
5362 return -ENOMEM;
5363
8a9d2e80 5364 rc = lpfc_sli4_cfg_post_extnts(phba, rsrc_cnt, type, &emb, mbox);
6d368e53
JS
5365 if (unlikely(rc)) {
5366 rc = -EIO;
5367 goto err_exit;
5368 }
5369
5370 /*
5371 * Figure out where the response is located. Then get local pointers
5372 * to the response data. The port does not guarantee to respond to
5373 * all extents counts request so update the local variable with the
5374 * allocated count from the port.
5375 */
5376 if (emb == LPFC_SLI4_MBX_EMBED) {
5377 rsrc_ext = &mbox->u.mqe.un.alloc_rsrc_extents;
5378 id_array = &rsrc_ext->u.rsp.id[0];
5379 rsrc_cnt = bf_get(lpfc_mbx_rsrc_cnt, &rsrc_ext->u.rsp);
5380 } else {
5381 virtaddr = mbox->sge_array->addr[0];
5382 n_rsrc = (struct lpfc_mbx_nembed_rsrc_extent *) virtaddr;
5383 rsrc_cnt = bf_get(lpfc_mbx_rsrc_cnt, n_rsrc);
5384 id_array = &n_rsrc->id;
5385 }
5386
5387 longs = ((rsrc_cnt * rsrc_size) + BITS_PER_LONG - 1) / BITS_PER_LONG;
5388 rsrc_id_cnt = rsrc_cnt * rsrc_size;
5389
5390 /*
5391 * Based on the resource size and count, correct the base and max
5392 * resource values.
5393 */
5394 length = sizeof(struct lpfc_rsrc_blks);
5395 switch (type) {
5396 case LPFC_RSC_TYPE_FCOE_RPI:
5397 phba->sli4_hba.rpi_bmask = kzalloc(longs *
5398 sizeof(unsigned long),
5399 GFP_KERNEL);
5400 if (unlikely(!phba->sli4_hba.rpi_bmask)) {
5401 rc = -ENOMEM;
5402 goto err_exit;
5403 }
5404 phba->sli4_hba.rpi_ids = kzalloc(rsrc_id_cnt *
5405 sizeof(uint16_t),
5406 GFP_KERNEL);
5407 if (unlikely(!phba->sli4_hba.rpi_ids)) {
5408 kfree(phba->sli4_hba.rpi_bmask);
5409 rc = -ENOMEM;
5410 goto err_exit;
5411 }
5412
5413 /*
5414 * The next_rpi was initialized with the maximum available
5415 * count but the port may allocate a smaller number. Catch
5416 * that case and update the next_rpi.
5417 */
5418 phba->sli4_hba.next_rpi = rsrc_id_cnt;
5419
5420 /* Initialize local ptrs for common extent processing later. */
5421 bmask = phba->sli4_hba.rpi_bmask;
5422 ids = phba->sli4_hba.rpi_ids;
5423 ext_blk_list = &phba->sli4_hba.lpfc_rpi_blk_list;
5424 break;
5425 case LPFC_RSC_TYPE_FCOE_VPI:
5426 phba->vpi_bmask = kzalloc(longs *
5427 sizeof(unsigned long),
5428 GFP_KERNEL);
5429 if (unlikely(!phba->vpi_bmask)) {
5430 rc = -ENOMEM;
5431 goto err_exit;
5432 }
5433 phba->vpi_ids = kzalloc(rsrc_id_cnt *
5434 sizeof(uint16_t),
5435 GFP_KERNEL);
5436 if (unlikely(!phba->vpi_ids)) {
5437 kfree(phba->vpi_bmask);
5438 rc = -ENOMEM;
5439 goto err_exit;
5440 }
5441
5442 /* Initialize local ptrs for common extent processing later. */
5443 bmask = phba->vpi_bmask;
5444 ids = phba->vpi_ids;
5445 ext_blk_list = &phba->lpfc_vpi_blk_list;
5446 break;
5447 case LPFC_RSC_TYPE_FCOE_XRI:
5448 phba->sli4_hba.xri_bmask = kzalloc(longs *
5449 sizeof(unsigned long),
5450 GFP_KERNEL);
5451 if (unlikely(!phba->sli4_hba.xri_bmask)) {
5452 rc = -ENOMEM;
5453 goto err_exit;
5454 }
8a9d2e80 5455 phba->sli4_hba.max_cfg_param.xri_used = 0;
6d368e53
JS
5456 phba->sli4_hba.xri_ids = kzalloc(rsrc_id_cnt *
5457 sizeof(uint16_t),
5458 GFP_KERNEL);
5459 if (unlikely(!phba->sli4_hba.xri_ids)) {
5460 kfree(phba->sli4_hba.xri_bmask);
5461 rc = -ENOMEM;
5462 goto err_exit;
5463 }
5464
5465 /* Initialize local ptrs for common extent processing later. */
5466 bmask = phba->sli4_hba.xri_bmask;
5467 ids = phba->sli4_hba.xri_ids;
5468 ext_blk_list = &phba->sli4_hba.lpfc_xri_blk_list;
5469 break;
5470 case LPFC_RSC_TYPE_FCOE_VFI:
5471 phba->sli4_hba.vfi_bmask = kzalloc(longs *
5472 sizeof(unsigned long),
5473 GFP_KERNEL);
5474 if (unlikely(!phba->sli4_hba.vfi_bmask)) {
5475 rc = -ENOMEM;
5476 goto err_exit;
5477 }
5478 phba->sli4_hba.vfi_ids = kzalloc(rsrc_id_cnt *
5479 sizeof(uint16_t),
5480 GFP_KERNEL);
5481 if (unlikely(!phba->sli4_hba.vfi_ids)) {
5482 kfree(phba->sli4_hba.vfi_bmask);
5483 rc = -ENOMEM;
5484 goto err_exit;
5485 }
5486
5487 /* Initialize local ptrs for common extent processing later. */
5488 bmask = phba->sli4_hba.vfi_bmask;
5489 ids = phba->sli4_hba.vfi_ids;
5490 ext_blk_list = &phba->sli4_hba.lpfc_vfi_blk_list;
5491 break;
5492 default:
5493 /* Unsupported Opcode. Fail call. */
5494 id_array = NULL;
5495 bmask = NULL;
5496 ids = NULL;
5497 ext_blk_list = NULL;
5498 goto err_exit;
5499 }
5500
5501 /*
5502 * Complete initializing the extent configuration with the
5503 * allocated ids assigned to this function. The bitmask serves
5504 * as an index into the array and manages the available ids. The
5505 * array just stores the ids communicated to the port via the wqes.
5506 */
5507 for (i = 0, j = 0, k = 0; i < rsrc_cnt; i++) {
5508 if ((i % 2) == 0)
5509 rsrc_id = bf_get(lpfc_mbx_rsrc_id_word4_0,
5510 &id_array[k]);
5511 else
5512 rsrc_id = bf_get(lpfc_mbx_rsrc_id_word4_1,
5513 &id_array[k]);
5514
5515 rsrc_blks = kzalloc(length, GFP_KERNEL);
5516 if (unlikely(!rsrc_blks)) {
5517 rc = -ENOMEM;
5518 kfree(bmask);
5519 kfree(ids);
5520 goto err_exit;
5521 }
5522 rsrc_blks->rsrc_start = rsrc_id;
5523 rsrc_blks->rsrc_size = rsrc_size;
5524 list_add_tail(&rsrc_blks->list, ext_blk_list);
5525 rsrc_start = rsrc_id;
5526 if ((type == LPFC_RSC_TYPE_FCOE_XRI) && (j == 0))
5527 phba->sli4_hba.scsi_xri_start = rsrc_start +
5528 lpfc_sli4_get_els_iocb_cnt(phba);
5529
5530 while (rsrc_id < (rsrc_start + rsrc_size)) {
5531 ids[j] = rsrc_id;
5532 rsrc_id++;
5533 j++;
5534 }
5535 /* Entire word processed. Get next word.*/
5536 if ((i % 2) == 1)
5537 k++;
5538 }
5539 err_exit:
5540 lpfc_sli4_mbox_cmd_free(phba, mbox);
5541 return rc;
5542}
5543
5544/**
5545 * lpfc_sli4_dealloc_extent - Deallocate an SLI4 resource extent.
5546 * @phba: Pointer to HBA context object.
5547 * @type: the extent's type.
5548 *
5549 * This function deallocates all extents of a particular resource type.
5550 * SLI4 does not allow for deallocating a particular extent range. It
5551 * is the caller's responsibility to release all kernel memory resources.
5552 **/
5553static int
5554lpfc_sli4_dealloc_extent(struct lpfc_hba *phba, uint16_t type)
5555{
5556 int rc;
5557 uint32_t length, mbox_tmo = 0;
5558 LPFC_MBOXQ_t *mbox;
5559 struct lpfc_mbx_dealloc_rsrc_extents *dealloc_rsrc;
5560 struct lpfc_rsrc_blks *rsrc_blk, *rsrc_blk_next;
5561
5562 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5563 if (!mbox)
5564 return -ENOMEM;
5565
5566 /*
5567 * This function sends an embedded mailbox because it only sends the
5568 * the resource type. All extents of this type are released by the
5569 * port.
5570 */
5571 length = (sizeof(struct lpfc_mbx_dealloc_rsrc_extents) -
5572 sizeof(struct lpfc_sli4_cfg_mhdr));
5573 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5574 LPFC_MBOX_OPCODE_DEALLOC_RSRC_EXTENT,
5575 length, LPFC_SLI4_MBX_EMBED);
5576
5577 /* Send an extents count of 0 - the dealloc doesn't use it. */
5578 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, 0, type,
5579 LPFC_SLI4_MBX_EMBED);
5580 if (unlikely(rc)) {
5581 rc = -EIO;
5582 goto out_free_mbox;
5583 }
5584 if (!phba->sli4_hba.intr_enable)
5585 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5586 else {
a183a15f 5587 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
6d368e53
JS
5588 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5589 }
5590 if (unlikely(rc)) {
5591 rc = -EIO;
5592 goto out_free_mbox;
5593 }
5594
5595 dealloc_rsrc = &mbox->u.mqe.un.dealloc_rsrc_extents;
5596 if (bf_get(lpfc_mbox_hdr_status,
5597 &dealloc_rsrc->header.cfg_shdr.response)) {
5598 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5599 "2919 Failed to release resource extents "
5600 "for type %d - Status 0x%x Add'l Status 0x%x. "
5601 "Resource memory not released.\n",
5602 type,
5603 bf_get(lpfc_mbox_hdr_status,
5604 &dealloc_rsrc->header.cfg_shdr.response),
5605 bf_get(lpfc_mbox_hdr_add_status,
5606 &dealloc_rsrc->header.cfg_shdr.response));
5607 rc = -EIO;
5608 goto out_free_mbox;
5609 }
5610
5611 /* Release kernel memory resources for the specific type. */
5612 switch (type) {
5613 case LPFC_RSC_TYPE_FCOE_VPI:
5614 kfree(phba->vpi_bmask);
5615 kfree(phba->vpi_ids);
5616 bf_set(lpfc_vpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5617 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5618 &phba->lpfc_vpi_blk_list, list) {
5619 list_del_init(&rsrc_blk->list);
5620 kfree(rsrc_blk);
5621 }
16a3a208 5622 phba->sli4_hba.max_cfg_param.vpi_used = 0;
6d368e53
JS
5623 break;
5624 case LPFC_RSC_TYPE_FCOE_XRI:
5625 kfree(phba->sli4_hba.xri_bmask);
5626 kfree(phba->sli4_hba.xri_ids);
6d368e53
JS
5627 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5628 &phba->sli4_hba.lpfc_xri_blk_list, list) {
5629 list_del_init(&rsrc_blk->list);
5630 kfree(rsrc_blk);
5631 }
5632 break;
5633 case LPFC_RSC_TYPE_FCOE_VFI:
5634 kfree(phba->sli4_hba.vfi_bmask);
5635 kfree(phba->sli4_hba.vfi_ids);
5636 bf_set(lpfc_vfi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5637 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5638 &phba->sli4_hba.lpfc_vfi_blk_list, list) {
5639 list_del_init(&rsrc_blk->list);
5640 kfree(rsrc_blk);
5641 }
5642 break;
5643 case LPFC_RSC_TYPE_FCOE_RPI:
5644 /* RPI bitmask and physical id array are cleaned up earlier. */
5645 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5646 &phba->sli4_hba.lpfc_rpi_blk_list, list) {
5647 list_del_init(&rsrc_blk->list);
5648 kfree(rsrc_blk);
5649 }
5650 break;
5651 default:
5652 break;
5653 }
5654
5655 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5656
5657 out_free_mbox:
5658 mempool_free(mbox, phba->mbox_mem_pool);
5659 return rc;
5660}
5661
5662/**
5663 * lpfc_sli4_alloc_resource_identifiers - Allocate all SLI4 resource extents.
5664 * @phba: Pointer to HBA context object.
5665 *
5666 * This function allocates all SLI4 resource identifiers.
5667 **/
5668int
5669lpfc_sli4_alloc_resource_identifiers(struct lpfc_hba *phba)
5670{
5671 int i, rc, error = 0;
5672 uint16_t count, base;
5673 unsigned long longs;
5674
ff78d8f9
JS
5675 if (!phba->sli4_hba.rpi_hdrs_in_use)
5676 phba->sli4_hba.next_rpi = phba->sli4_hba.max_cfg_param.max_rpi;
6d368e53
JS
5677 if (phba->sli4_hba.extents_in_use) {
5678 /*
5679 * The port supports resource extents. The XRI, VPI, VFI, RPI
5680 * resource extent count must be read and allocated before
5681 * provisioning the resource id arrays.
5682 */
5683 if (bf_get(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags) ==
5684 LPFC_IDX_RSRC_RDY) {
5685 /*
5686 * Extent-based resources are set - the driver could
5687 * be in a port reset. Figure out if any corrective
5688 * actions need to be taken.
5689 */
5690 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5691 LPFC_RSC_TYPE_FCOE_VFI);
5692 if (rc != 0)
5693 error++;
5694 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5695 LPFC_RSC_TYPE_FCOE_VPI);
5696 if (rc != 0)
5697 error++;
5698 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5699 LPFC_RSC_TYPE_FCOE_XRI);
5700 if (rc != 0)
5701 error++;
5702 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5703 LPFC_RSC_TYPE_FCOE_RPI);
5704 if (rc != 0)
5705 error++;
5706
5707 /*
5708 * It's possible that the number of resources
5709 * provided to this port instance changed between
5710 * resets. Detect this condition and reallocate
5711 * resources. Otherwise, there is no action.
5712 */
5713 if (error) {
5714 lpfc_printf_log(phba, KERN_INFO,
5715 LOG_MBOX | LOG_INIT,
5716 "2931 Detected extent resource "
5717 "change. Reallocating all "
5718 "extents.\n");
5719 rc = lpfc_sli4_dealloc_extent(phba,
5720 LPFC_RSC_TYPE_FCOE_VFI);
5721 rc = lpfc_sli4_dealloc_extent(phba,
5722 LPFC_RSC_TYPE_FCOE_VPI);
5723 rc = lpfc_sli4_dealloc_extent(phba,
5724 LPFC_RSC_TYPE_FCOE_XRI);
5725 rc = lpfc_sli4_dealloc_extent(phba,
5726 LPFC_RSC_TYPE_FCOE_RPI);
5727 } else
5728 return 0;
5729 }
5730
5731 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_VFI);
5732 if (unlikely(rc))
5733 goto err_exit;
5734
5735 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_VPI);
5736 if (unlikely(rc))
5737 goto err_exit;
5738
5739 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_RPI);
5740 if (unlikely(rc))
5741 goto err_exit;
5742
5743 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_XRI);
5744 if (unlikely(rc))
5745 goto err_exit;
5746 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags,
5747 LPFC_IDX_RSRC_RDY);
5748 return rc;
5749 } else {
5750 /*
5751 * The port does not support resource extents. The XRI, VPI,
5752 * VFI, RPI resource ids were determined from READ_CONFIG.
5753 * Just allocate the bitmasks and provision the resource id
5754 * arrays. If a port reset is active, the resources don't
5755 * need any action - just exit.
5756 */
5757 if (bf_get(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags) ==
ff78d8f9
JS
5758 LPFC_IDX_RSRC_RDY) {
5759 lpfc_sli4_dealloc_resource_identifiers(phba);
5760 lpfc_sli4_remove_rpis(phba);
5761 }
6d368e53
JS
5762 /* RPIs. */
5763 count = phba->sli4_hba.max_cfg_param.max_rpi;
0a630c27
JS
5764 if (count <= 0) {
5765 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5766 "3279 Invalid provisioning of "
5767 "rpi:%d\n", count);
5768 rc = -EINVAL;
5769 goto err_exit;
5770 }
6d368e53
JS
5771 base = phba->sli4_hba.max_cfg_param.rpi_base;
5772 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5773 phba->sli4_hba.rpi_bmask = kzalloc(longs *
5774 sizeof(unsigned long),
5775 GFP_KERNEL);
5776 if (unlikely(!phba->sli4_hba.rpi_bmask)) {
5777 rc = -ENOMEM;
5778 goto err_exit;
5779 }
5780 phba->sli4_hba.rpi_ids = kzalloc(count *
5781 sizeof(uint16_t),
5782 GFP_KERNEL);
5783 if (unlikely(!phba->sli4_hba.rpi_ids)) {
5784 rc = -ENOMEM;
5785 goto free_rpi_bmask;
5786 }
5787
5788 for (i = 0; i < count; i++)
5789 phba->sli4_hba.rpi_ids[i] = base + i;
5790
5791 /* VPIs. */
5792 count = phba->sli4_hba.max_cfg_param.max_vpi;
0a630c27
JS
5793 if (count <= 0) {
5794 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5795 "3280 Invalid provisioning of "
5796 "vpi:%d\n", count);
5797 rc = -EINVAL;
5798 goto free_rpi_ids;
5799 }
6d368e53
JS
5800 base = phba->sli4_hba.max_cfg_param.vpi_base;
5801 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5802 phba->vpi_bmask = kzalloc(longs *
5803 sizeof(unsigned long),
5804 GFP_KERNEL);
5805 if (unlikely(!phba->vpi_bmask)) {
5806 rc = -ENOMEM;
5807 goto free_rpi_ids;
5808 }
5809 phba->vpi_ids = kzalloc(count *
5810 sizeof(uint16_t),
5811 GFP_KERNEL);
5812 if (unlikely(!phba->vpi_ids)) {
5813 rc = -ENOMEM;
5814 goto free_vpi_bmask;
5815 }
5816
5817 for (i = 0; i < count; i++)
5818 phba->vpi_ids[i] = base + i;
5819
5820 /* XRIs. */
5821 count = phba->sli4_hba.max_cfg_param.max_xri;
0a630c27
JS
5822 if (count <= 0) {
5823 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5824 "3281 Invalid provisioning of "
5825 "xri:%d\n", count);
5826 rc = -EINVAL;
5827 goto free_vpi_ids;
5828 }
6d368e53
JS
5829 base = phba->sli4_hba.max_cfg_param.xri_base;
5830 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5831 phba->sli4_hba.xri_bmask = kzalloc(longs *
5832 sizeof(unsigned long),
5833 GFP_KERNEL);
5834 if (unlikely(!phba->sli4_hba.xri_bmask)) {
5835 rc = -ENOMEM;
5836 goto free_vpi_ids;
5837 }
41899be7 5838 phba->sli4_hba.max_cfg_param.xri_used = 0;
6d368e53
JS
5839 phba->sli4_hba.xri_ids = kzalloc(count *
5840 sizeof(uint16_t),
5841 GFP_KERNEL);
5842 if (unlikely(!phba->sli4_hba.xri_ids)) {
5843 rc = -ENOMEM;
5844 goto free_xri_bmask;
5845 }
5846
5847 for (i = 0; i < count; i++)
5848 phba->sli4_hba.xri_ids[i] = base + i;
5849
5850 /* VFIs. */
5851 count = phba->sli4_hba.max_cfg_param.max_vfi;
0a630c27
JS
5852 if (count <= 0) {
5853 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5854 "3282 Invalid provisioning of "
5855 "vfi:%d\n", count);
5856 rc = -EINVAL;
5857 goto free_xri_ids;
5858 }
6d368e53
JS
5859 base = phba->sli4_hba.max_cfg_param.vfi_base;
5860 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5861 phba->sli4_hba.vfi_bmask = kzalloc(longs *
5862 sizeof(unsigned long),
5863 GFP_KERNEL);
5864 if (unlikely(!phba->sli4_hba.vfi_bmask)) {
5865 rc = -ENOMEM;
5866 goto free_xri_ids;
5867 }
5868 phba->sli4_hba.vfi_ids = kzalloc(count *
5869 sizeof(uint16_t),
5870 GFP_KERNEL);
5871 if (unlikely(!phba->sli4_hba.vfi_ids)) {
5872 rc = -ENOMEM;
5873 goto free_vfi_bmask;
5874 }
5875
5876 for (i = 0; i < count; i++)
5877 phba->sli4_hba.vfi_ids[i] = base + i;
5878
5879 /*
5880 * Mark all resources ready. An HBA reset doesn't need
5881 * to reset the initialization.
5882 */
5883 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags,
5884 LPFC_IDX_RSRC_RDY);
5885 return 0;
5886 }
5887
5888 free_vfi_bmask:
5889 kfree(phba->sli4_hba.vfi_bmask);
5890 free_xri_ids:
5891 kfree(phba->sli4_hba.xri_ids);
5892 free_xri_bmask:
5893 kfree(phba->sli4_hba.xri_bmask);
5894 free_vpi_ids:
5895 kfree(phba->vpi_ids);
5896 free_vpi_bmask:
5897 kfree(phba->vpi_bmask);
5898 free_rpi_ids:
5899 kfree(phba->sli4_hba.rpi_ids);
5900 free_rpi_bmask:
5901 kfree(phba->sli4_hba.rpi_bmask);
5902 err_exit:
5903 return rc;
5904}
5905
5906/**
5907 * lpfc_sli4_dealloc_resource_identifiers - Deallocate all SLI4 resource extents.
5908 * @phba: Pointer to HBA context object.
5909 *
5910 * This function allocates the number of elements for the specified
5911 * resource type.
5912 **/
5913int
5914lpfc_sli4_dealloc_resource_identifiers(struct lpfc_hba *phba)
5915{
5916 if (phba->sli4_hba.extents_in_use) {
5917 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_VPI);
5918 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_RPI);
5919 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_XRI);
5920 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_VFI);
5921 } else {
5922 kfree(phba->vpi_bmask);
16a3a208 5923 phba->sli4_hba.max_cfg_param.vpi_used = 0;
6d368e53
JS
5924 kfree(phba->vpi_ids);
5925 bf_set(lpfc_vpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5926 kfree(phba->sli4_hba.xri_bmask);
5927 kfree(phba->sli4_hba.xri_ids);
6d368e53
JS
5928 kfree(phba->sli4_hba.vfi_bmask);
5929 kfree(phba->sli4_hba.vfi_ids);
5930 bf_set(lpfc_vfi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5931 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5932 }
5933
5934 return 0;
5935}
5936
b76f2dc9
JS
5937/**
5938 * lpfc_sli4_get_allocated_extnts - Get the port's allocated extents.
5939 * @phba: Pointer to HBA context object.
5940 * @type: The resource extent type.
5941 * @extnt_count: buffer to hold port extent count response
5942 * @extnt_size: buffer to hold port extent size response.
5943 *
5944 * This function calls the port to read the host allocated extents
5945 * for a particular type.
5946 **/
5947int
5948lpfc_sli4_get_allocated_extnts(struct lpfc_hba *phba, uint16_t type,
5949 uint16_t *extnt_cnt, uint16_t *extnt_size)
5950{
5951 bool emb;
5952 int rc = 0;
5953 uint16_t curr_blks = 0;
5954 uint32_t req_len, emb_len;
5955 uint32_t alloc_len, mbox_tmo;
5956 struct list_head *blk_list_head;
5957 struct lpfc_rsrc_blks *rsrc_blk;
5958 LPFC_MBOXQ_t *mbox;
5959 void *virtaddr = NULL;
5960 struct lpfc_mbx_nembed_rsrc_extent *n_rsrc;
5961 struct lpfc_mbx_alloc_rsrc_extents *rsrc_ext;
5962 union lpfc_sli4_cfg_shdr *shdr;
5963
5964 switch (type) {
5965 case LPFC_RSC_TYPE_FCOE_VPI:
5966 blk_list_head = &phba->lpfc_vpi_blk_list;
5967 break;
5968 case LPFC_RSC_TYPE_FCOE_XRI:
5969 blk_list_head = &phba->sli4_hba.lpfc_xri_blk_list;
5970 break;
5971 case LPFC_RSC_TYPE_FCOE_VFI:
5972 blk_list_head = &phba->sli4_hba.lpfc_vfi_blk_list;
5973 break;
5974 case LPFC_RSC_TYPE_FCOE_RPI:
5975 blk_list_head = &phba->sli4_hba.lpfc_rpi_blk_list;
5976 break;
5977 default:
5978 return -EIO;
5979 }
5980
5981 /* Count the number of extents currently allocatd for this type. */
5982 list_for_each_entry(rsrc_blk, blk_list_head, list) {
5983 if (curr_blks == 0) {
5984 /*
5985 * The GET_ALLOCATED mailbox does not return the size,
5986 * just the count. The size should be just the size
5987 * stored in the current allocated block and all sizes
5988 * for an extent type are the same so set the return
5989 * value now.
5990 */
5991 *extnt_size = rsrc_blk->rsrc_size;
5992 }
5993 curr_blks++;
5994 }
5995
b76f2dc9
JS
5996 /*
5997 * Calculate the size of an embedded mailbox. The uint32_t
5998 * accounts for extents-specific word.
5999 */
6000 emb_len = sizeof(MAILBOX_t) - sizeof(struct mbox_header) -
6001 sizeof(uint32_t);
6002
6003 /*
6004 * Presume the allocation and response will fit into an embedded
6005 * mailbox. If not true, reconfigure to a non-embedded mailbox.
6006 */
6007 emb = LPFC_SLI4_MBX_EMBED;
6008 req_len = emb_len;
6009 if (req_len > emb_len) {
6010 req_len = curr_blks * sizeof(uint16_t) +
6011 sizeof(union lpfc_sli4_cfg_shdr) +
6012 sizeof(uint32_t);
6013 emb = LPFC_SLI4_MBX_NEMBED;
6014 }
6015
6016 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6017 if (!mbox)
6018 return -ENOMEM;
6019 memset(mbox, 0, sizeof(LPFC_MBOXQ_t));
6020
6021 alloc_len = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
6022 LPFC_MBOX_OPCODE_GET_ALLOC_RSRC_EXTENT,
6023 req_len, emb);
6024 if (alloc_len < req_len) {
6025 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6026 "2983 Allocated DMA memory size (x%x) is "
6027 "less than the requested DMA memory "
6028 "size (x%x)\n", alloc_len, req_len);
6029 rc = -ENOMEM;
6030 goto err_exit;
6031 }
6032 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, curr_blks, type, emb);
6033 if (unlikely(rc)) {
6034 rc = -EIO;
6035 goto err_exit;
6036 }
6037
6038 if (!phba->sli4_hba.intr_enable)
6039 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
6040 else {
a183a15f 6041 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
b76f2dc9
JS
6042 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
6043 }
6044
6045 if (unlikely(rc)) {
6046 rc = -EIO;
6047 goto err_exit;
6048 }
6049
6050 /*
6051 * Figure out where the response is located. Then get local pointers
6052 * to the response data. The port does not guarantee to respond to
6053 * all extents counts request so update the local variable with the
6054 * allocated count from the port.
6055 */
6056 if (emb == LPFC_SLI4_MBX_EMBED) {
6057 rsrc_ext = &mbox->u.mqe.un.alloc_rsrc_extents;
6058 shdr = &rsrc_ext->header.cfg_shdr;
6059 *extnt_cnt = bf_get(lpfc_mbx_rsrc_cnt, &rsrc_ext->u.rsp);
6060 } else {
6061 virtaddr = mbox->sge_array->addr[0];
6062 n_rsrc = (struct lpfc_mbx_nembed_rsrc_extent *) virtaddr;
6063 shdr = &n_rsrc->cfg_shdr;
6064 *extnt_cnt = bf_get(lpfc_mbx_rsrc_cnt, n_rsrc);
6065 }
6066
6067 if (bf_get(lpfc_mbox_hdr_status, &shdr->response)) {
6068 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
6069 "2984 Failed to read allocated resources "
6070 "for type %d - Status 0x%x Add'l Status 0x%x.\n",
6071 type,
6072 bf_get(lpfc_mbox_hdr_status, &shdr->response),
6073 bf_get(lpfc_mbox_hdr_add_status, &shdr->response));
6074 rc = -EIO;
6075 goto err_exit;
6076 }
6077 err_exit:
6078 lpfc_sli4_mbox_cmd_free(phba, mbox);
6079 return rc;
6080}
6081
8a9d2e80
JS
6082/**
6083 * lpfc_sli4_repost_els_sgl_list - Repsot the els buffers sgl pages as block
6084 * @phba: pointer to lpfc hba data structure.
6085 *
6086 * This routine walks the list of els buffers that have been allocated and
6087 * repost them to the port by using SGL block post. This is needed after a
6088 * pci_function_reset/warm_start or start. It attempts to construct blocks
6089 * of els buffer sgls which contains contiguous xris and uses the non-embedded
6090 * SGL block post mailbox commands to post them to the port. For single els
6091 * buffer sgl with non-contiguous xri, if any, it shall use embedded SGL post
6092 * mailbox command for posting.
6093 *
6094 * Returns: 0 = success, non-zero failure.
6095 **/
6096static int
6097lpfc_sli4_repost_els_sgl_list(struct lpfc_hba *phba)
6098{
6099 struct lpfc_sglq *sglq_entry = NULL;
6100 struct lpfc_sglq *sglq_entry_next = NULL;
6101 struct lpfc_sglq *sglq_entry_first = NULL;
711ea882 6102 int status, total_cnt, post_cnt = 0, num_posted = 0, block_cnt = 0;
8a9d2e80 6103 int last_xritag = NO_XRI;
dafe8cea 6104 struct lpfc_sli_ring *pring;
8a9d2e80
JS
6105 LIST_HEAD(prep_sgl_list);
6106 LIST_HEAD(blck_sgl_list);
6107 LIST_HEAD(allc_sgl_list);
6108 LIST_HEAD(post_sgl_list);
6109 LIST_HEAD(free_sgl_list);
6110
dafe8cea 6111 pring = &phba->sli.ring[LPFC_ELS_RING];
38c20673 6112 spin_lock_irq(&phba->hbalock);
dafe8cea 6113 spin_lock(&pring->ring_lock);
8a9d2e80 6114 list_splice_init(&phba->sli4_hba.lpfc_sgl_list, &allc_sgl_list);
dafe8cea 6115 spin_unlock(&pring->ring_lock);
38c20673 6116 spin_unlock_irq(&phba->hbalock);
8a9d2e80 6117
711ea882 6118 total_cnt = phba->sli4_hba.els_xri_cnt;
8a9d2e80
JS
6119 list_for_each_entry_safe(sglq_entry, sglq_entry_next,
6120 &allc_sgl_list, list) {
6121 list_del_init(&sglq_entry->list);
6122 block_cnt++;
6123 if ((last_xritag != NO_XRI) &&
6124 (sglq_entry->sli4_xritag != last_xritag + 1)) {
6125 /* a hole in xri block, form a sgl posting block */
6126 list_splice_init(&prep_sgl_list, &blck_sgl_list);
6127 post_cnt = block_cnt - 1;
6128 /* prepare list for next posting block */
6129 list_add_tail(&sglq_entry->list, &prep_sgl_list);
6130 block_cnt = 1;
6131 } else {
6132 /* prepare list for next posting block */
6133 list_add_tail(&sglq_entry->list, &prep_sgl_list);
6134 /* enough sgls for non-embed sgl mbox command */
6135 if (block_cnt == LPFC_NEMBED_MBOX_SGL_CNT) {
6136 list_splice_init(&prep_sgl_list,
6137 &blck_sgl_list);
6138 post_cnt = block_cnt;
6139 block_cnt = 0;
6140 }
6141 }
6142 num_posted++;
6143
6144 /* keep track of last sgl's xritag */
6145 last_xritag = sglq_entry->sli4_xritag;
6146
6147 /* end of repost sgl list condition for els buffers */
6148 if (num_posted == phba->sli4_hba.els_xri_cnt) {
6149 if (post_cnt == 0) {
6150 list_splice_init(&prep_sgl_list,
6151 &blck_sgl_list);
6152 post_cnt = block_cnt;
6153 } else if (block_cnt == 1) {
6154 status = lpfc_sli4_post_sgl(phba,
6155 sglq_entry->phys, 0,
6156 sglq_entry->sli4_xritag);
6157 if (!status) {
6158 /* successful, put sgl to posted list */
6159 list_add_tail(&sglq_entry->list,
6160 &post_sgl_list);
6161 } else {
6162 /* Failure, put sgl to free list */
6163 lpfc_printf_log(phba, KERN_WARNING,
6164 LOG_SLI,
6165 "3159 Failed to post els "
6166 "sgl, xritag:x%x\n",
6167 sglq_entry->sli4_xritag);
6168 list_add_tail(&sglq_entry->list,
6169 &free_sgl_list);
711ea882 6170 total_cnt--;
8a9d2e80
JS
6171 }
6172 }
6173 }
6174
6175 /* continue until a nembed page worth of sgls */
6176 if (post_cnt == 0)
6177 continue;
6178
6179 /* post the els buffer list sgls as a block */
6180 status = lpfc_sli4_post_els_sgl_list(phba, &blck_sgl_list,
6181 post_cnt);
6182
6183 if (!status) {
6184 /* success, put sgl list to posted sgl list */
6185 list_splice_init(&blck_sgl_list, &post_sgl_list);
6186 } else {
6187 /* Failure, put sgl list to free sgl list */
6188 sglq_entry_first = list_first_entry(&blck_sgl_list,
6189 struct lpfc_sglq,
6190 list);
6191 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
6192 "3160 Failed to post els sgl-list, "
6193 "xritag:x%x-x%x\n",
6194 sglq_entry_first->sli4_xritag,
6195 (sglq_entry_first->sli4_xritag +
6196 post_cnt - 1));
6197 list_splice_init(&blck_sgl_list, &free_sgl_list);
711ea882 6198 total_cnt -= post_cnt;
8a9d2e80
JS
6199 }
6200
6201 /* don't reset xirtag due to hole in xri block */
6202 if (block_cnt == 0)
6203 last_xritag = NO_XRI;
6204
6205 /* reset els sgl post count for next round of posting */
6206 post_cnt = 0;
6207 }
711ea882
JS
6208 /* update the number of XRIs posted for ELS */
6209 phba->sli4_hba.els_xri_cnt = total_cnt;
8a9d2e80
JS
6210
6211 /* free the els sgls failed to post */
6212 lpfc_free_sgl_list(phba, &free_sgl_list);
6213
6214 /* push els sgls posted to the availble list */
6215 if (!list_empty(&post_sgl_list)) {
38c20673 6216 spin_lock_irq(&phba->hbalock);
dafe8cea 6217 spin_lock(&pring->ring_lock);
8a9d2e80
JS
6218 list_splice_init(&post_sgl_list,
6219 &phba->sli4_hba.lpfc_sgl_list);
dafe8cea 6220 spin_unlock(&pring->ring_lock);
38c20673 6221 spin_unlock_irq(&phba->hbalock);
8a9d2e80
JS
6222 } else {
6223 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
6224 "3161 Failure to post els sgl to port.\n");
6225 return -EIO;
6226 }
6227 return 0;
6228}
6229
da0436e9
JS
6230/**
6231 * lpfc_sli4_hba_setup - SLI4 device intialization PCI function
6232 * @phba: Pointer to HBA context object.
6233 *
6234 * This function is the main SLI4 device intialization PCI function. This
6235 * function is called by the HBA intialization code, HBA reset code and
6236 * HBA error attention handler code. Caller is not required to hold any
6237 * locks.
6238 **/
6239int
6240lpfc_sli4_hba_setup(struct lpfc_hba *phba)
6241{
6242 int rc;
6243 LPFC_MBOXQ_t *mboxq;
6244 struct lpfc_mqe *mqe;
6245 uint8_t *vpd;
6246 uint32_t vpd_size;
6247 uint32_t ftr_rsp = 0;
6248 struct Scsi_Host *shost = lpfc_shost_from_vport(phba->pport);
6249 struct lpfc_vport *vport = phba->pport;
6250 struct lpfc_dmabuf *mp;
6251
6252 /* Perform a PCI function reset to start from clean */
6253 rc = lpfc_pci_function_reset(phba);
6254 if (unlikely(rc))
6255 return -ENODEV;
6256
6257 /* Check the HBA Host Status Register for readyness */
6258 rc = lpfc_sli4_post_status_check(phba);
6259 if (unlikely(rc))
6260 return -ENODEV;
6261 else {
6262 spin_lock_irq(&phba->hbalock);
6263 phba->sli.sli_flag |= LPFC_SLI_ACTIVE;
6264 spin_unlock_irq(&phba->hbalock);
6265 }
6266
6267 /*
6268 * Allocate a single mailbox container for initializing the
6269 * port.
6270 */
6271 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6272 if (!mboxq)
6273 return -ENOMEM;
6274
da0436e9 6275 /* Issue READ_REV to collect vpd and FW information. */
49198b37 6276 vpd_size = SLI4_PAGE_SIZE;
da0436e9
JS
6277 vpd = kzalloc(vpd_size, GFP_KERNEL);
6278 if (!vpd) {
6279 rc = -ENOMEM;
6280 goto out_free_mbox;
6281 }
6282
6283 rc = lpfc_sli4_read_rev(phba, mboxq, vpd, &vpd_size);
76a95d75
JS
6284 if (unlikely(rc)) {
6285 kfree(vpd);
6286 goto out_free_mbox;
6287 }
572709e2 6288
da0436e9 6289 mqe = &mboxq->u.mqe;
f1126688
JS
6290 phba->sli_rev = bf_get(lpfc_mbx_rd_rev_sli_lvl, &mqe->un.read_rev);
6291 if (bf_get(lpfc_mbx_rd_rev_fcoe, &mqe->un.read_rev))
76a95d75
JS
6292 phba->hba_flag |= HBA_FCOE_MODE;
6293 else
6294 phba->hba_flag &= ~HBA_FCOE_MODE;
45ed1190
JS
6295
6296 if (bf_get(lpfc_mbx_rd_rev_cee_ver, &mqe->un.read_rev) ==
6297 LPFC_DCBX_CEE_MODE)
6298 phba->hba_flag |= HBA_FIP_SUPPORT;
6299 else
6300 phba->hba_flag &= ~HBA_FIP_SUPPORT;
6301
4f2e66c6
JS
6302 phba->hba_flag &= ~HBA_FCP_IOQ_FLUSH;
6303
c31098ce 6304 if (phba->sli_rev != LPFC_SLI_REV4) {
da0436e9
JS
6305 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6306 "0376 READ_REV Error. SLI Level %d "
6307 "FCoE enabled %d\n",
76a95d75 6308 phba->sli_rev, phba->hba_flag & HBA_FCOE_MODE);
da0436e9 6309 rc = -EIO;
76a95d75
JS
6310 kfree(vpd);
6311 goto out_free_mbox;
da0436e9 6312 }
cd1c8301 6313
ff78d8f9
JS
6314 /*
6315 * Continue initialization with default values even if driver failed
6316 * to read FCoE param config regions, only read parameters if the
6317 * board is FCoE
6318 */
6319 if (phba->hba_flag & HBA_FCOE_MODE &&
6320 lpfc_sli4_read_fcoe_params(phba))
6321 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_INIT,
6322 "2570 Failed to read FCoE parameters\n");
6323
cd1c8301
JS
6324 /*
6325 * Retrieve sli4 device physical port name, failure of doing it
6326 * is considered as non-fatal.
6327 */
6328 rc = lpfc_sli4_retrieve_pport_name(phba);
6329 if (!rc)
6330 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
6331 "3080 Successful retrieving SLI4 device "
6332 "physical port name: %s.\n", phba->Port);
6333
da0436e9
JS
6334 /*
6335 * Evaluate the read rev and vpd data. Populate the driver
6336 * state with the results. If this routine fails, the failure
6337 * is not fatal as the driver will use generic values.
6338 */
6339 rc = lpfc_parse_vpd(phba, vpd, vpd_size);
6340 if (unlikely(!rc)) {
6341 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6342 "0377 Error %d parsing vpd. "
6343 "Using defaults.\n", rc);
6344 rc = 0;
6345 }
76a95d75 6346 kfree(vpd);
da0436e9 6347
f1126688
JS
6348 /* Save information as VPD data */
6349 phba->vpd.rev.biuRev = mqe->un.read_rev.first_hw_rev;
6350 phba->vpd.rev.smRev = mqe->un.read_rev.second_hw_rev;
6351 phba->vpd.rev.endecRev = mqe->un.read_rev.third_hw_rev;
6352 phba->vpd.rev.fcphHigh = bf_get(lpfc_mbx_rd_rev_fcph_high,
6353 &mqe->un.read_rev);
6354 phba->vpd.rev.fcphLow = bf_get(lpfc_mbx_rd_rev_fcph_low,
6355 &mqe->un.read_rev);
6356 phba->vpd.rev.feaLevelHigh = bf_get(lpfc_mbx_rd_rev_ftr_lvl_high,
6357 &mqe->un.read_rev);
6358 phba->vpd.rev.feaLevelLow = bf_get(lpfc_mbx_rd_rev_ftr_lvl_low,
6359 &mqe->un.read_rev);
6360 phba->vpd.rev.sli1FwRev = mqe->un.read_rev.fw_id_rev;
6361 memcpy(phba->vpd.rev.sli1FwName, mqe->un.read_rev.fw_name, 16);
6362 phba->vpd.rev.sli2FwRev = mqe->un.read_rev.ulp_fw_id_rev;
6363 memcpy(phba->vpd.rev.sli2FwName, mqe->un.read_rev.ulp_fw_name, 16);
6364 phba->vpd.rev.opFwRev = mqe->un.read_rev.fw_id_rev;
6365 memcpy(phba->vpd.rev.opFwName, mqe->un.read_rev.fw_name, 16);
6366 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
6367 "(%d):0380 READ_REV Status x%x "
6368 "fw_rev:%s fcphHi:%x fcphLo:%x flHi:%x flLo:%x\n",
6369 mboxq->vport ? mboxq->vport->vpi : 0,
6370 bf_get(lpfc_mqe_status, mqe),
6371 phba->vpd.rev.opFwName,
6372 phba->vpd.rev.fcphHigh, phba->vpd.rev.fcphLow,
6373 phba->vpd.rev.feaLevelHigh, phba->vpd.rev.feaLevelLow);
da0436e9 6374
572709e2
JS
6375 /* Reset the DFT_LUN_Q_DEPTH to (max xri >> 3) */
6376 rc = (phba->sli4_hba.max_cfg_param.max_xri >> 3);
6377 if (phba->pport->cfg_lun_queue_depth > rc) {
6378 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
6379 "3362 LUN queue depth changed from %d to %d\n",
6380 phba->pport->cfg_lun_queue_depth, rc);
6381 phba->pport->cfg_lun_queue_depth = rc;
6382 }
6383
6384
da0436e9
JS
6385 /*
6386 * Discover the port's supported feature set and match it against the
6387 * hosts requests.
6388 */
6389 lpfc_request_features(phba, mboxq);
6390 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6391 if (unlikely(rc)) {
6392 rc = -EIO;
76a95d75 6393 goto out_free_mbox;
da0436e9
JS
6394 }
6395
6396 /*
6397 * The port must support FCP initiator mode as this is the
6398 * only mode running in the host.
6399 */
6400 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_fcpi, &mqe->un.req_ftrs))) {
6401 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
6402 "0378 No support for fcpi mode.\n");
6403 ftr_rsp++;
6404 }
fedd3b7b
JS
6405 if (bf_get(lpfc_mbx_rq_ftr_rsp_perfh, &mqe->un.req_ftrs))
6406 phba->sli3_options |= LPFC_SLI4_PERFH_ENABLED;
6407 else
6408 phba->sli3_options &= ~LPFC_SLI4_PERFH_ENABLED;
da0436e9
JS
6409 /*
6410 * If the port cannot support the host's requested features
6411 * then turn off the global config parameters to disable the
6412 * feature in the driver. This is not a fatal error.
6413 */
bf08611b
JS
6414 phba->sli3_options &= ~LPFC_SLI3_BG_ENABLED;
6415 if (phba->cfg_enable_bg) {
6416 if (bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs))
6417 phba->sli3_options |= LPFC_SLI3_BG_ENABLED;
6418 else
6419 ftr_rsp++;
6420 }
da0436e9
JS
6421
6422 if (phba->max_vpi && phba->cfg_enable_npiv &&
6423 !(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
6424 ftr_rsp++;
6425
6426 if (ftr_rsp) {
6427 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
6428 "0379 Feature Mismatch Data: x%08x %08x "
6429 "x%x x%x x%x\n", mqe->un.req_ftrs.word2,
6430 mqe->un.req_ftrs.word3, phba->cfg_enable_bg,
6431 phba->cfg_enable_npiv, phba->max_vpi);
6432 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs)))
6433 phba->cfg_enable_bg = 0;
6434 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
6435 phba->cfg_enable_npiv = 0;
6436 }
6437
6438 /* These SLI3 features are assumed in SLI4 */
6439 spin_lock_irq(&phba->hbalock);
6440 phba->sli3_options |= (LPFC_SLI3_NPIV_ENABLED | LPFC_SLI3_HBQ_ENABLED);
6441 spin_unlock_irq(&phba->hbalock);
6442
6d368e53
JS
6443 /*
6444 * Allocate all resources (xri,rpi,vpi,vfi) now. Subsequent
6445 * calls depends on these resources to complete port setup.
6446 */
6447 rc = lpfc_sli4_alloc_resource_identifiers(phba);
6448 if (rc) {
6449 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6450 "2920 Failed to alloc Resource IDs "
6451 "rc = x%x\n", rc);
6452 goto out_free_mbox;
6453 }
6454
da0436e9 6455 /* Read the port's service parameters. */
9f1177a3
JS
6456 rc = lpfc_read_sparam(phba, mboxq, vport->vpi);
6457 if (rc) {
6458 phba->link_state = LPFC_HBA_ERROR;
6459 rc = -ENOMEM;
76a95d75 6460 goto out_free_mbox;
9f1177a3
JS
6461 }
6462
da0436e9
JS
6463 mboxq->vport = vport;
6464 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6465 mp = (struct lpfc_dmabuf *) mboxq->context1;
6466 if (rc == MBX_SUCCESS) {
6467 memcpy(&vport->fc_sparam, mp->virt, sizeof(struct serv_parm));
6468 rc = 0;
6469 }
6470
6471 /*
6472 * This memory was allocated by the lpfc_read_sparam routine. Release
6473 * it to the mbuf pool.
6474 */
6475 lpfc_mbuf_free(phba, mp->virt, mp->phys);
6476 kfree(mp);
6477 mboxq->context1 = NULL;
6478 if (unlikely(rc)) {
6479 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6480 "0382 READ_SPARAM command failed "
6481 "status %d, mbxStatus x%x\n",
6482 rc, bf_get(lpfc_mqe_status, mqe));
6483 phba->link_state = LPFC_HBA_ERROR;
6484 rc = -EIO;
76a95d75 6485 goto out_free_mbox;
da0436e9
JS
6486 }
6487
0558056c 6488 lpfc_update_vport_wwn(vport);
da0436e9
JS
6489
6490 /* Update the fc_host data structures with new wwn. */
6491 fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn);
6492 fc_host_port_name(shost) = wwn_to_u64(vport->fc_portname.u.wwn);
6493
8a9d2e80
JS
6494 /* update host els and scsi xri-sgl sizes and mappings */
6495 rc = lpfc_sli4_xri_sgl_update(phba);
6496 if (unlikely(rc)) {
6497 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6498 "1400 Failed to update xri-sgl size and "
6499 "mapping: %d\n", rc);
6500 goto out_free_mbox;
da0436e9
JS
6501 }
6502
8a9d2e80
JS
6503 /* register the els sgl pool to the port */
6504 rc = lpfc_sli4_repost_els_sgl_list(phba);
6505 if (unlikely(rc)) {
6506 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6507 "0582 Error %d during els sgl post "
6508 "operation\n", rc);
6509 rc = -ENODEV;
6510 goto out_free_mbox;
6511 }
6512
6513 /* register the allocated scsi sgl pool to the port */
da0436e9
JS
6514 rc = lpfc_sli4_repost_scsi_sgl_list(phba);
6515 if (unlikely(rc)) {
6d368e53 6516 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6a9c52cf
JS
6517 "0383 Error %d during scsi sgl post "
6518 "operation\n", rc);
da0436e9
JS
6519 /* Some Scsi buffers were moved to the abort scsi list */
6520 /* A pci function reset will repost them */
6521 rc = -ENODEV;
76a95d75 6522 goto out_free_mbox;
da0436e9
JS
6523 }
6524
6525 /* Post the rpi header region to the device. */
6526 rc = lpfc_sli4_post_all_rpi_hdrs(phba);
6527 if (unlikely(rc)) {
6528 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6529 "0393 Error %d during rpi post operation\n",
6530 rc);
6531 rc = -ENODEV;
76a95d75 6532 goto out_free_mbox;
da0436e9 6533 }
97f2ecf1 6534 lpfc_sli4_node_prep(phba);
da0436e9 6535
5350d872
JS
6536 /* Create all the SLI4 queues */
6537 rc = lpfc_sli4_queue_create(phba);
6538 if (rc) {
6539 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6540 "3089 Failed to allocate queues\n");
6541 rc = -ENODEV;
6542 goto out_stop_timers;
6543 }
da0436e9
JS
6544 /* Set up all the queues to the device */
6545 rc = lpfc_sli4_queue_setup(phba);
6546 if (unlikely(rc)) {
6547 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6548 "0381 Error %d during queue setup.\n ", rc);
5350d872 6549 goto out_destroy_queue;
da0436e9
JS
6550 }
6551
6552 /* Arm the CQs and then EQs on device */
6553 lpfc_sli4_arm_cqeq_intr(phba);
6554
6555 /* Indicate device interrupt mode */
6556 phba->sli4_hba.intr_enable = 1;
6557
6558 /* Allow asynchronous mailbox command to go through */
6559 spin_lock_irq(&phba->hbalock);
6560 phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
6561 spin_unlock_irq(&phba->hbalock);
6562
6563 /* Post receive buffers to the device */
6564 lpfc_sli4_rb_setup(phba);
6565
fc2b989b
JS
6566 /* Reset HBA FCF states after HBA reset */
6567 phba->fcf.fcf_flag = 0;
6568 phba->fcf.current_rec.flag = 0;
6569
da0436e9 6570 /* Start the ELS watchdog timer */
8fa38513 6571 mod_timer(&vport->els_tmofunc,
256ec0d0 6572 jiffies + msecs_to_jiffies(1000 * (phba->fc_ratov * 2)));
da0436e9
JS
6573
6574 /* Start heart beat timer */
6575 mod_timer(&phba->hb_tmofunc,
256ec0d0 6576 jiffies + msecs_to_jiffies(1000 * LPFC_HB_MBOX_INTERVAL));
da0436e9
JS
6577 phba->hb_outstanding = 0;
6578 phba->last_completion_time = jiffies;
6579
6580 /* Start error attention (ERATT) polling timer */
256ec0d0
JS
6581 mod_timer(&phba->eratt_poll,
6582 jiffies + msecs_to_jiffies(1000 * LPFC_ERATT_POLL_INTERVAL));
da0436e9 6583
75baf696
JS
6584 /* Enable PCIe device Advanced Error Reporting (AER) if configured */
6585 if (phba->cfg_aer_support == 1 && !(phba->hba_flag & HBA_AER_ENABLED)) {
6586 rc = pci_enable_pcie_error_reporting(phba->pcidev);
6587 if (!rc) {
6588 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6589 "2829 This device supports "
6590 "Advanced Error Reporting (AER)\n");
6591 spin_lock_irq(&phba->hbalock);
6592 phba->hba_flag |= HBA_AER_ENABLED;
6593 spin_unlock_irq(&phba->hbalock);
6594 } else {
6595 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6596 "2830 This device does not support "
6597 "Advanced Error Reporting (AER)\n");
6598 phba->cfg_aer_support = 0;
6599 }
0a96e975 6600 rc = 0;
75baf696
JS
6601 }
6602
76a95d75
JS
6603 if (!(phba->hba_flag & HBA_FCOE_MODE)) {
6604 /*
6605 * The FC Port needs to register FCFI (index 0)
6606 */
6607 lpfc_reg_fcfi(phba, mboxq);
6608 mboxq->vport = phba->pport;
6609 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
9589b062 6610 if (rc != MBX_SUCCESS)
76a95d75 6611 goto out_unset_queue;
9589b062
JS
6612 rc = 0;
6613 phba->fcf.fcfi = bf_get(lpfc_reg_fcfi_fcfi,
6614 &mboxq->u.mqe.un.reg_fcfi);
026abb87
JS
6615
6616 /* Check if the port is configured to be disabled */
6617 lpfc_sli_read_link_ste(phba);
76a95d75 6618 }
026abb87 6619
da0436e9
JS
6620 /*
6621 * The port is ready, set the host's link state to LINK_DOWN
6622 * in preparation for link interrupts.
6623 */
da0436e9
JS
6624 spin_lock_irq(&phba->hbalock);
6625 phba->link_state = LPFC_LINK_DOWN;
6626 spin_unlock_irq(&phba->hbalock);
026abb87
JS
6627 if (!(phba->hba_flag & HBA_FCOE_MODE) &&
6628 (phba->hba_flag & LINK_DISABLED)) {
6629 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_SLI,
6630 "3103 Adapter Link is disabled.\n");
6631 lpfc_down_link(phba, mboxq);
6632 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6633 if (rc != MBX_SUCCESS) {
6634 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_SLI,
6635 "3104 Adapter failed to issue "
6636 "DOWN_LINK mbox cmd, rc:x%x\n", rc);
6637 goto out_unset_queue;
6638 }
6639 } else if (phba->cfg_suppress_link_up == LPFC_INITIALIZE_LINK) {
1b51197d
JS
6640 /* don't perform init_link on SLI4 FC port loopback test */
6641 if (!(phba->link_flag & LS_LOOPBACK_MODE)) {
6642 rc = phba->lpfc_hba_init_link(phba, MBX_NOWAIT);
6643 if (rc)
6644 goto out_unset_queue;
6645 }
5350d872
JS
6646 }
6647 mempool_free(mboxq, phba->mbox_mem_pool);
6648 return rc;
76a95d75 6649out_unset_queue:
da0436e9 6650 /* Unset all the queues set up in this routine when error out */
5350d872
JS
6651 lpfc_sli4_queue_unset(phba);
6652out_destroy_queue:
6653 lpfc_sli4_queue_destroy(phba);
da0436e9 6654out_stop_timers:
5350d872 6655 lpfc_stop_hba_timers(phba);
da0436e9
JS
6656out_free_mbox:
6657 mempool_free(mboxq, phba->mbox_mem_pool);
6658 return rc;
6659}
6660
6661/**
6662 * lpfc_mbox_timeout - Timeout call back function for mbox timer
6663 * @ptr: context object - pointer to hba structure.
6664 *
6665 * This is the callback function for mailbox timer. The mailbox
6666 * timer is armed when a new mailbox command is issued and the timer
6667 * is deleted when the mailbox complete. The function is called by
6668 * the kernel timer code when a mailbox does not complete within
6669 * expected time. This function wakes up the worker thread to
6670 * process the mailbox timeout and returns. All the processing is
6671 * done by the worker thread function lpfc_mbox_timeout_handler.
6672 **/
6673void
6674lpfc_mbox_timeout(unsigned long ptr)
6675{
6676 struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
6677 unsigned long iflag;
6678 uint32_t tmo_posted;
6679
6680 spin_lock_irqsave(&phba->pport->work_port_lock, iflag);
6681 tmo_posted = phba->pport->work_port_events & WORKER_MBOX_TMO;
6682 if (!tmo_posted)
6683 phba->pport->work_port_events |= WORKER_MBOX_TMO;
6684 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflag);
6685
6686 if (!tmo_posted)
6687 lpfc_worker_wake_up(phba);
6688 return;
6689}
6690
e8d3c3b1
JS
6691/**
6692 * lpfc_sli4_mbox_completions_pending - check to see if any mailbox completions
6693 * are pending
6694 * @phba: Pointer to HBA context object.
6695 *
6696 * This function checks if any mailbox completions are present on the mailbox
6697 * completion queue.
6698 **/
6699bool
6700lpfc_sli4_mbox_completions_pending(struct lpfc_hba *phba)
6701{
6702
6703 uint32_t idx;
6704 struct lpfc_queue *mcq;
6705 struct lpfc_mcqe *mcqe;
6706 bool pending_completions = false;
6707
6708 if (unlikely(!phba) || (phba->sli_rev != LPFC_SLI_REV4))
6709 return false;
6710
6711 /* Check for completions on mailbox completion queue */
6712
6713 mcq = phba->sli4_hba.mbx_cq;
6714 idx = mcq->hba_index;
6715 while (bf_get_le32(lpfc_cqe_valid, mcq->qe[idx].cqe)) {
6716 mcqe = (struct lpfc_mcqe *)mcq->qe[idx].cqe;
6717 if (bf_get_le32(lpfc_trailer_completed, mcqe) &&
6718 (!bf_get_le32(lpfc_trailer_async, mcqe))) {
6719 pending_completions = true;
6720 break;
6721 }
6722 idx = (idx + 1) % mcq->entry_count;
6723 if (mcq->hba_index == idx)
6724 break;
6725 }
6726 return pending_completions;
6727
6728}
6729
6730/**
6731 * lpfc_sli4_process_missed_mbox_completions - process mbox completions
6732 * that were missed.
6733 * @phba: Pointer to HBA context object.
6734 *
6735 * For sli4, it is possible to miss an interrupt. As such mbox completions
6736 * maybe missed causing erroneous mailbox timeouts to occur. This function
6737 * checks to see if mbox completions are on the mailbox completion queue
6738 * and will process all the completions associated with the eq for the
6739 * mailbox completion queue.
6740 **/
6741bool
6742lpfc_sli4_process_missed_mbox_completions(struct lpfc_hba *phba)
6743{
6744
6745 uint32_t eqidx;
6746 struct lpfc_queue *fpeq = NULL;
6747 struct lpfc_eqe *eqe;
6748 bool mbox_pending;
6749
6750 if (unlikely(!phba) || (phba->sli_rev != LPFC_SLI_REV4))
6751 return false;
6752
6753 /* Find the eq associated with the mcq */
6754
6755 if (phba->sli4_hba.hba_eq)
6756 for (eqidx = 0; eqidx < phba->cfg_fcp_io_channel; eqidx++)
6757 if (phba->sli4_hba.hba_eq[eqidx]->queue_id ==
6758 phba->sli4_hba.mbx_cq->assoc_qid) {
6759 fpeq = phba->sli4_hba.hba_eq[eqidx];
6760 break;
6761 }
6762 if (!fpeq)
6763 return false;
6764
6765 /* Turn off interrupts from this EQ */
6766
6767 lpfc_sli4_eq_clr_intr(fpeq);
6768
6769 /* Check to see if a mbox completion is pending */
6770
6771 mbox_pending = lpfc_sli4_mbox_completions_pending(phba);
6772
6773 /*
6774 * If a mbox completion is pending, process all the events on EQ
6775 * associated with the mbox completion queue (this could include
6776 * mailbox commands, async events, els commands, receive queue data
6777 * and fcp commands)
6778 */
6779
6780 if (mbox_pending)
6781 while ((eqe = lpfc_sli4_eq_get(fpeq))) {
6782 lpfc_sli4_hba_handle_eqe(phba, eqe, eqidx);
6783 fpeq->EQ_processed++;
6784 }
6785
6786 /* Always clear and re-arm the EQ */
6787
6788 lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_REARM);
6789
6790 return mbox_pending;
6791
6792}
da0436e9
JS
6793
6794/**
6795 * lpfc_mbox_timeout_handler - Worker thread function to handle mailbox timeout
6796 * @phba: Pointer to HBA context object.
6797 *
6798 * This function is called from worker thread when a mailbox command times out.
6799 * The caller is not required to hold any locks. This function will reset the
6800 * HBA and recover all the pending commands.
6801 **/
6802void
6803lpfc_mbox_timeout_handler(struct lpfc_hba *phba)
6804{
6805 LPFC_MBOXQ_t *pmbox = phba->sli.mbox_active;
eb016566
JS
6806 MAILBOX_t *mb = NULL;
6807
da0436e9 6808 struct lpfc_sli *psli = &phba->sli;
da0436e9 6809
e8d3c3b1
JS
6810 /* If the mailbox completed, process the completion and return */
6811 if (lpfc_sli4_process_missed_mbox_completions(phba))
6812 return;
6813
eb016566
JS
6814 if (pmbox != NULL)
6815 mb = &pmbox->u.mb;
da0436e9
JS
6816 /* Check the pmbox pointer first. There is a race condition
6817 * between the mbox timeout handler getting executed in the
6818 * worklist and the mailbox actually completing. When this
6819 * race condition occurs, the mbox_active will be NULL.
6820 */
6821 spin_lock_irq(&phba->hbalock);
6822 if (pmbox == NULL) {
6823 lpfc_printf_log(phba, KERN_WARNING,
6824 LOG_MBOX | LOG_SLI,
6825 "0353 Active Mailbox cleared - mailbox timeout "
6826 "exiting\n");
6827 spin_unlock_irq(&phba->hbalock);
6828 return;
6829 }
6830
6831 /* Mbox cmd <mbxCommand> timeout */
6832 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6833 "0310 Mailbox command x%x timeout Data: x%x x%x x%p\n",
6834 mb->mbxCommand,
6835 phba->pport->port_state,
6836 phba->sli.sli_flag,
6837 phba->sli.mbox_active);
6838 spin_unlock_irq(&phba->hbalock);
6839
6840 /* Setting state unknown so lpfc_sli_abort_iocb_ring
6841 * would get IOCB_ERROR from lpfc_sli_issue_iocb, allowing
25985edc 6842 * it to fail all outstanding SCSI IO.
da0436e9
JS
6843 */
6844 spin_lock_irq(&phba->pport->work_port_lock);
6845 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
6846 spin_unlock_irq(&phba->pport->work_port_lock);
6847 spin_lock_irq(&phba->hbalock);
6848 phba->link_state = LPFC_LINK_UNKNOWN;
f4b4c68f 6849 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
da0436e9
JS
6850 spin_unlock_irq(&phba->hbalock);
6851
db55fba8 6852 lpfc_sli_abort_fcp_rings(phba);
da0436e9
JS
6853
6854 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6855 "0345 Resetting board due to mailbox timeout\n");
6856
6857 /* Reset the HBA device */
6858 lpfc_reset_hba(phba);
6859}
6860
6861/**
6862 * lpfc_sli_issue_mbox_s3 - Issue an SLI3 mailbox command to firmware
6863 * @phba: Pointer to HBA context object.
6864 * @pmbox: Pointer to mailbox object.
6865 * @flag: Flag indicating how the mailbox need to be processed.
6866 *
6867 * This function is called by discovery code and HBA management code
6868 * to submit a mailbox command to firmware with SLI-3 interface spec. This
6869 * function gets the hbalock to protect the data structures.
6870 * The mailbox command can be submitted in polling mode, in which case
6871 * this function will wait in a polling loop for the completion of the
6872 * mailbox.
6873 * If the mailbox is submitted in no_wait mode (not polling) the
6874 * function will submit the command and returns immediately without waiting
6875 * for the mailbox completion. The no_wait is supported only when HBA
6876 * is in SLI2/SLI3 mode - interrupts are enabled.
6877 * The SLI interface allows only one mailbox pending at a time. If the
6878 * mailbox is issued in polling mode and there is already a mailbox
6879 * pending, then the function will return an error. If the mailbox is issued
6880 * in NO_WAIT mode and there is a mailbox pending already, the function
6881 * will return MBX_BUSY after queuing the mailbox into mailbox queue.
6882 * The sli layer owns the mailbox object until the completion of mailbox
6883 * command if this function return MBX_BUSY or MBX_SUCCESS. For all other
6884 * return codes the caller owns the mailbox command after the return of
6885 * the function.
e59058c4 6886 **/
3772a991
JS
6887static int
6888lpfc_sli_issue_mbox_s3(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox,
6889 uint32_t flag)
dea3101e 6890{
bf07bdea 6891 MAILBOX_t *mbx;
2e0fef85 6892 struct lpfc_sli *psli = &phba->sli;
dea3101e 6893 uint32_t status, evtctr;
9940b97b 6894 uint32_t ha_copy, hc_copy;
dea3101e 6895 int i;
09372820 6896 unsigned long timeout;
dea3101e 6897 unsigned long drvr_flag = 0;
34b02dcd 6898 uint32_t word0, ldata;
dea3101e 6899 void __iomem *to_slim;
58da1ffb
JS
6900 int processing_queue = 0;
6901
6902 spin_lock_irqsave(&phba->hbalock, drvr_flag);
6903 if (!pmbox) {
8568a4d2 6904 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
58da1ffb 6905 /* processing mbox queue from intr_handler */
3772a991
JS
6906 if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
6907 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6908 return MBX_SUCCESS;
6909 }
58da1ffb 6910 processing_queue = 1;
58da1ffb
JS
6911 pmbox = lpfc_mbox_get(phba);
6912 if (!pmbox) {
6913 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6914 return MBX_SUCCESS;
6915 }
6916 }
dea3101e 6917
ed957684 6918 if (pmbox->mbox_cmpl && pmbox->mbox_cmpl != lpfc_sli_def_mbox_cmpl &&
92d7f7b0 6919 pmbox->mbox_cmpl != lpfc_sli_wake_mbox_wait) {
ed957684 6920 if(!pmbox->vport) {
58da1ffb 6921 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
ed957684 6922 lpfc_printf_log(phba, KERN_ERR,
92d7f7b0 6923 LOG_MBOX | LOG_VPORT,
e8b62011 6924 "1806 Mbox x%x failed. No vport\n",
3772a991 6925 pmbox->u.mb.mbxCommand);
ed957684 6926 dump_stack();
58da1ffb 6927 goto out_not_finished;
ed957684
JS
6928 }
6929 }
6930
8d63f375 6931 /* If the PCI channel is in offline state, do not post mbox. */
58da1ffb
JS
6932 if (unlikely(pci_channel_offline(phba->pcidev))) {
6933 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6934 goto out_not_finished;
6935 }
8d63f375 6936
a257bf90
JS
6937 /* If HBA has a deferred error attention, fail the iocb. */
6938 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
6939 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6940 goto out_not_finished;
6941 }
6942
dea3101e 6943 psli = &phba->sli;
92d7f7b0 6944
bf07bdea 6945 mbx = &pmbox->u.mb;
dea3101e
JB
6946 status = MBX_SUCCESS;
6947
2e0fef85
JS
6948 if (phba->link_state == LPFC_HBA_ERROR) {
6949 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
41415862
JW
6950
6951 /* Mbox command <mbxCommand> cannot issue */
3772a991
JS
6952 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6953 "(%d):0311 Mailbox command x%x cannot "
6954 "issue Data: x%x x%x\n",
6955 pmbox->vport ? pmbox->vport->vpi : 0,
6956 pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
58da1ffb 6957 goto out_not_finished;
41415862
JW
6958 }
6959
bf07bdea 6960 if (mbx->mbxCommand != MBX_KILL_BOARD && flag & MBX_NOWAIT) {
9940b97b
JS
6961 if (lpfc_readl(phba->HCregaddr, &hc_copy) ||
6962 !(hc_copy & HC_MBINT_ENA)) {
6963 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6964 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
3772a991
JS
6965 "(%d):2528 Mailbox command x%x cannot "
6966 "issue Data: x%x x%x\n",
6967 pmbox->vport ? pmbox->vport->vpi : 0,
6968 pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
9940b97b
JS
6969 goto out_not_finished;
6970 }
9290831f
JS
6971 }
6972
dea3101e
JB
6973 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
6974 /* Polling for a mbox command when another one is already active
6975 * is not allowed in SLI. Also, the driver must have established
6976 * SLI2 mode to queue and process multiple mbox commands.
6977 */
6978
6979 if (flag & MBX_POLL) {
2e0fef85 6980 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea3101e
JB
6981
6982 /* Mbox command <mbxCommand> cannot issue */
3772a991
JS
6983 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6984 "(%d):2529 Mailbox command x%x "
6985 "cannot issue Data: x%x x%x\n",
6986 pmbox->vport ? pmbox->vport->vpi : 0,
6987 pmbox->u.mb.mbxCommand,
6988 psli->sli_flag, flag);
58da1ffb 6989 goto out_not_finished;
dea3101e
JB
6990 }
6991
3772a991 6992 if (!(psli->sli_flag & LPFC_SLI_ACTIVE)) {
2e0fef85 6993 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea3101e 6994 /* Mbox command <mbxCommand> cannot issue */
3772a991
JS
6995 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6996 "(%d):2530 Mailbox command x%x "
6997 "cannot issue Data: x%x x%x\n",
6998 pmbox->vport ? pmbox->vport->vpi : 0,
6999 pmbox->u.mb.mbxCommand,
7000 psli->sli_flag, flag);
58da1ffb 7001 goto out_not_finished;
dea3101e
JB
7002 }
7003
dea3101e
JB
7004 /* Another mailbox command is still being processed, queue this
7005 * command to be processed later.
7006 */
7007 lpfc_mbox_put(phba, pmbox);
7008
7009 /* Mbox cmd issue - BUSY */
ed957684 7010 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
e8b62011 7011 "(%d):0308 Mbox cmd issue - BUSY Data: "
92d7f7b0 7012 "x%x x%x x%x x%x\n",
92d7f7b0 7013 pmbox->vport ? pmbox->vport->vpi : 0xffffff,
bf07bdea 7014 mbx->mbxCommand, phba->pport->port_state,
92d7f7b0 7015 psli->sli_flag, flag);
dea3101e
JB
7016
7017 psli->slistat.mbox_busy++;
2e0fef85 7018 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea3101e 7019
858c9f6c
JS
7020 if (pmbox->vport) {
7021 lpfc_debugfs_disc_trc(pmbox->vport,
7022 LPFC_DISC_TRC_MBOX_VPORT,
7023 "MBOX Bsy vport: cmd:x%x mb:x%x x%x",
bf07bdea
RD
7024 (uint32_t)mbx->mbxCommand,
7025 mbx->un.varWords[0], mbx->un.varWords[1]);
858c9f6c
JS
7026 }
7027 else {
7028 lpfc_debugfs_disc_trc(phba->pport,
7029 LPFC_DISC_TRC_MBOX,
7030 "MBOX Bsy: cmd:x%x mb:x%x x%x",
bf07bdea
RD
7031 (uint32_t)mbx->mbxCommand,
7032 mbx->un.varWords[0], mbx->un.varWords[1]);
858c9f6c
JS
7033 }
7034
2e0fef85 7035 return MBX_BUSY;
dea3101e
JB
7036 }
7037
dea3101e
JB
7038 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
7039
7040 /* If we are not polling, we MUST be in SLI2 mode */
7041 if (flag != MBX_POLL) {
3772a991 7042 if (!(psli->sli_flag & LPFC_SLI_ACTIVE) &&
bf07bdea 7043 (mbx->mbxCommand != MBX_KILL_BOARD)) {
dea3101e 7044 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
2e0fef85 7045 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea3101e 7046 /* Mbox command <mbxCommand> cannot issue */
3772a991
JS
7047 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7048 "(%d):2531 Mailbox command x%x "
7049 "cannot issue Data: x%x x%x\n",
7050 pmbox->vport ? pmbox->vport->vpi : 0,
7051 pmbox->u.mb.mbxCommand,
7052 psli->sli_flag, flag);
58da1ffb 7053 goto out_not_finished;
dea3101e
JB
7054 }
7055 /* timeout active mbox command */
256ec0d0
JS
7056 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, pmbox) *
7057 1000);
7058 mod_timer(&psli->mbox_tmo, jiffies + timeout);
dea3101e
JB
7059 }
7060
7061 /* Mailbox cmd <cmd> issue */
ed957684 7062 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
e8b62011 7063 "(%d):0309 Mailbox cmd x%x issue Data: x%x x%x "
92d7f7b0 7064 "x%x\n",
e8b62011 7065 pmbox->vport ? pmbox->vport->vpi : 0,
bf07bdea 7066 mbx->mbxCommand, phba->pport->port_state,
92d7f7b0 7067 psli->sli_flag, flag);
dea3101e 7068
bf07bdea 7069 if (mbx->mbxCommand != MBX_HEARTBEAT) {
858c9f6c
JS
7070 if (pmbox->vport) {
7071 lpfc_debugfs_disc_trc(pmbox->vport,
7072 LPFC_DISC_TRC_MBOX_VPORT,
7073 "MBOX Send vport: cmd:x%x mb:x%x x%x",
bf07bdea
RD
7074 (uint32_t)mbx->mbxCommand,
7075 mbx->un.varWords[0], mbx->un.varWords[1]);
858c9f6c
JS
7076 }
7077 else {
7078 lpfc_debugfs_disc_trc(phba->pport,
7079 LPFC_DISC_TRC_MBOX,
7080 "MBOX Send: cmd:x%x mb:x%x x%x",
bf07bdea
RD
7081 (uint32_t)mbx->mbxCommand,
7082 mbx->un.varWords[0], mbx->un.varWords[1]);
858c9f6c
JS
7083 }
7084 }
7085
dea3101e
JB
7086 psli->slistat.mbox_cmd++;
7087 evtctr = psli->slistat.mbox_event;
7088
7089 /* next set own bit for the adapter and copy over command word */
bf07bdea 7090 mbx->mbxOwner = OWN_CHIP;
dea3101e 7091
3772a991 7092 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
7a470277
JS
7093 /* Populate mbox extension offset word. */
7094 if (pmbox->in_ext_byte_len || pmbox->out_ext_byte_len) {
bf07bdea 7095 *(((uint32_t *)mbx) + pmbox->mbox_offset_word)
7a470277
JS
7096 = (uint8_t *)phba->mbox_ext
7097 - (uint8_t *)phba->mbox;
7098 }
7099
7100 /* Copy the mailbox extension data */
7101 if (pmbox->in_ext_byte_len && pmbox->context2) {
7102 lpfc_sli_pcimem_bcopy(pmbox->context2,
7103 (uint8_t *)phba->mbox_ext,
7104 pmbox->in_ext_byte_len);
7105 }
7106 /* Copy command data to host SLIM area */
bf07bdea 7107 lpfc_sli_pcimem_bcopy(mbx, phba->mbox, MAILBOX_CMD_SIZE);
dea3101e 7108 } else {
7a470277
JS
7109 /* Populate mbox extension offset word. */
7110 if (pmbox->in_ext_byte_len || pmbox->out_ext_byte_len)
bf07bdea 7111 *(((uint32_t *)mbx) + pmbox->mbox_offset_word)
7a470277
JS
7112 = MAILBOX_HBA_EXT_OFFSET;
7113
7114 /* Copy the mailbox extension data */
7115 if (pmbox->in_ext_byte_len && pmbox->context2) {
7116 lpfc_memcpy_to_slim(phba->MBslimaddr +
7117 MAILBOX_HBA_EXT_OFFSET,
7118 pmbox->context2, pmbox->in_ext_byte_len);
7119
7120 }
bf07bdea 7121 if (mbx->mbxCommand == MBX_CONFIG_PORT) {
dea3101e 7122 /* copy command data into host mbox for cmpl */
bf07bdea 7123 lpfc_sli_pcimem_bcopy(mbx, phba->mbox, MAILBOX_CMD_SIZE);
dea3101e
JB
7124 }
7125
7126 /* First copy mbox command data to HBA SLIM, skip past first
7127 word */
7128 to_slim = phba->MBslimaddr + sizeof (uint32_t);
bf07bdea 7129 lpfc_memcpy_to_slim(to_slim, &mbx->un.varWords[0],
dea3101e
JB
7130 MAILBOX_CMD_SIZE - sizeof (uint32_t));
7131
7132 /* Next copy over first word, with mbxOwner set */
bf07bdea 7133 ldata = *((uint32_t *)mbx);
dea3101e
JB
7134 to_slim = phba->MBslimaddr;
7135 writel(ldata, to_slim);
7136 readl(to_slim); /* flush */
7137
bf07bdea 7138 if (mbx->mbxCommand == MBX_CONFIG_PORT) {
dea3101e 7139 /* switch over to host mailbox */
3772a991 7140 psli->sli_flag |= LPFC_SLI_ACTIVE;
dea3101e
JB
7141 }
7142 }
7143
7144 wmb();
dea3101e
JB
7145
7146 switch (flag) {
7147 case MBX_NOWAIT:
09372820 7148 /* Set up reference to mailbox command */
dea3101e 7149 psli->mbox_active = pmbox;
09372820
JS
7150 /* Interrupt board to do it */
7151 writel(CA_MBATT, phba->CAregaddr);
7152 readl(phba->CAregaddr); /* flush */
7153 /* Don't wait for it to finish, just return */
dea3101e
JB
7154 break;
7155
7156 case MBX_POLL:
09372820 7157 /* Set up null reference to mailbox command */
dea3101e 7158 psli->mbox_active = NULL;
09372820
JS
7159 /* Interrupt board to do it */
7160 writel(CA_MBATT, phba->CAregaddr);
7161 readl(phba->CAregaddr); /* flush */
7162
3772a991 7163 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea3101e 7164 /* First read mbox status word */
34b02dcd 7165 word0 = *((uint32_t *)phba->mbox);
dea3101e
JB
7166 word0 = le32_to_cpu(word0);
7167 } else {
7168 /* First read mbox status word */
9940b97b
JS
7169 if (lpfc_readl(phba->MBslimaddr, &word0)) {
7170 spin_unlock_irqrestore(&phba->hbalock,
7171 drvr_flag);
7172 goto out_not_finished;
7173 }
dea3101e
JB
7174 }
7175
7176 /* Read the HBA Host Attention Register */
9940b97b
JS
7177 if (lpfc_readl(phba->HAregaddr, &ha_copy)) {
7178 spin_unlock_irqrestore(&phba->hbalock,
7179 drvr_flag);
7180 goto out_not_finished;
7181 }
a183a15f
JS
7182 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, pmbox) *
7183 1000) + jiffies;
09372820 7184 i = 0;
dea3101e 7185 /* Wait for command to complete */
41415862
JW
7186 while (((word0 & OWN_CHIP) == OWN_CHIP) ||
7187 (!(ha_copy & HA_MBATT) &&
2e0fef85 7188 (phba->link_state > LPFC_WARM_START))) {
09372820 7189 if (time_after(jiffies, timeout)) {
dea3101e 7190 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
2e0fef85 7191 spin_unlock_irqrestore(&phba->hbalock,
dea3101e 7192 drvr_flag);
58da1ffb 7193 goto out_not_finished;
dea3101e
JB
7194 }
7195
7196 /* Check if we took a mbox interrupt while we were
7197 polling */
7198 if (((word0 & OWN_CHIP) != OWN_CHIP)
7199 && (evtctr != psli->slistat.mbox_event))
7200 break;
7201
09372820
JS
7202 if (i++ > 10) {
7203 spin_unlock_irqrestore(&phba->hbalock,
7204 drvr_flag);
7205 msleep(1);
7206 spin_lock_irqsave(&phba->hbalock, drvr_flag);
7207 }
dea3101e 7208
3772a991 7209 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea3101e 7210 /* First copy command data */
34b02dcd 7211 word0 = *((uint32_t *)phba->mbox);
dea3101e 7212 word0 = le32_to_cpu(word0);
bf07bdea 7213 if (mbx->mbxCommand == MBX_CONFIG_PORT) {
dea3101e 7214 MAILBOX_t *slimmb;
34b02dcd 7215 uint32_t slimword0;
dea3101e
JB
7216 /* Check real SLIM for any errors */
7217 slimword0 = readl(phba->MBslimaddr);
7218 slimmb = (MAILBOX_t *) & slimword0;
7219 if (((slimword0 & OWN_CHIP) != OWN_CHIP)
7220 && slimmb->mbxStatus) {
7221 psli->sli_flag &=
3772a991 7222 ~LPFC_SLI_ACTIVE;
dea3101e
JB
7223 word0 = slimword0;
7224 }
7225 }
7226 } else {
7227 /* First copy command data */
7228 word0 = readl(phba->MBslimaddr);
7229 }
7230 /* Read the HBA Host Attention Register */
9940b97b
JS
7231 if (lpfc_readl(phba->HAregaddr, &ha_copy)) {
7232 spin_unlock_irqrestore(&phba->hbalock,
7233 drvr_flag);
7234 goto out_not_finished;
7235 }
dea3101e
JB
7236 }
7237
3772a991 7238 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea3101e 7239 /* copy results back to user */
bf07bdea 7240 lpfc_sli_pcimem_bcopy(phba->mbox, mbx, MAILBOX_CMD_SIZE);
7a470277
JS
7241 /* Copy the mailbox extension data */
7242 if (pmbox->out_ext_byte_len && pmbox->context2) {
7243 lpfc_sli_pcimem_bcopy(phba->mbox_ext,
7244 pmbox->context2,
7245 pmbox->out_ext_byte_len);
7246 }
dea3101e
JB
7247 } else {
7248 /* First copy command data */
bf07bdea 7249 lpfc_memcpy_from_slim(mbx, phba->MBslimaddr,
dea3101e 7250 MAILBOX_CMD_SIZE);
7a470277
JS
7251 /* Copy the mailbox extension data */
7252 if (pmbox->out_ext_byte_len && pmbox->context2) {
7253 lpfc_memcpy_from_slim(pmbox->context2,
7254 phba->MBslimaddr +
7255 MAILBOX_HBA_EXT_OFFSET,
7256 pmbox->out_ext_byte_len);
dea3101e
JB
7257 }
7258 }
7259
7260 writel(HA_MBATT, phba->HAregaddr);
7261 readl(phba->HAregaddr); /* flush */
7262
7263 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
bf07bdea 7264 status = mbx->mbxStatus;
dea3101e
JB
7265 }
7266
2e0fef85
JS
7267 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
7268 return status;
58da1ffb
JS
7269
7270out_not_finished:
7271 if (processing_queue) {
da0436e9 7272 pmbox->u.mb.mbxStatus = MBX_NOT_FINISHED;
58da1ffb
JS
7273 lpfc_mbox_cmpl_put(phba, pmbox);
7274 }
7275 return MBX_NOT_FINISHED;
dea3101e
JB
7276}
7277
f1126688
JS
7278/**
7279 * lpfc_sli4_async_mbox_block - Block posting SLI4 asynchronous mailbox command
7280 * @phba: Pointer to HBA context object.
7281 *
7282 * The function blocks the posting of SLI4 asynchronous mailbox commands from
7283 * the driver internal pending mailbox queue. It will then try to wait out the
7284 * possible outstanding mailbox command before return.
7285 *
7286 * Returns:
7287 * 0 - the outstanding mailbox command completed; otherwise, the wait for
7288 * the outstanding mailbox command timed out.
7289 **/
7290static int
7291lpfc_sli4_async_mbox_block(struct lpfc_hba *phba)
7292{
7293 struct lpfc_sli *psli = &phba->sli;
f1126688 7294 int rc = 0;
a183a15f 7295 unsigned long timeout = 0;
f1126688
JS
7296
7297 /* Mark the asynchronous mailbox command posting as blocked */
7298 spin_lock_irq(&phba->hbalock);
7299 psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
f1126688
JS
7300 /* Determine how long we might wait for the active mailbox
7301 * command to be gracefully completed by firmware.
7302 */
a183a15f
JS
7303 if (phba->sli.mbox_active)
7304 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
7305 phba->sli.mbox_active) *
7306 1000) + jiffies;
7307 spin_unlock_irq(&phba->hbalock);
7308
e8d3c3b1
JS
7309 /* Make sure the mailbox is really active */
7310 if (timeout)
7311 lpfc_sli4_process_missed_mbox_completions(phba);
7312
f1126688
JS
7313 /* Wait for the outstnading mailbox command to complete */
7314 while (phba->sli.mbox_active) {
7315 /* Check active mailbox complete status every 2ms */
7316 msleep(2);
7317 if (time_after(jiffies, timeout)) {
7318 /* Timeout, marked the outstanding cmd not complete */
7319 rc = 1;
7320 break;
7321 }
7322 }
7323
7324 /* Can not cleanly block async mailbox command, fails it */
7325 if (rc) {
7326 spin_lock_irq(&phba->hbalock);
7327 psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
7328 spin_unlock_irq(&phba->hbalock);
7329 }
7330 return rc;
7331}
7332
7333/**
7334 * lpfc_sli4_async_mbox_unblock - Block posting SLI4 async mailbox command
7335 * @phba: Pointer to HBA context object.
7336 *
7337 * The function unblocks and resume posting of SLI4 asynchronous mailbox
7338 * commands from the driver internal pending mailbox queue. It makes sure
7339 * that there is no outstanding mailbox command before resuming posting
7340 * asynchronous mailbox commands. If, for any reason, there is outstanding
7341 * mailbox command, it will try to wait it out before resuming asynchronous
7342 * mailbox command posting.
7343 **/
7344static void
7345lpfc_sli4_async_mbox_unblock(struct lpfc_hba *phba)
7346{
7347 struct lpfc_sli *psli = &phba->sli;
7348
7349 spin_lock_irq(&phba->hbalock);
7350 if (!(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
7351 /* Asynchronous mailbox posting is not blocked, do nothing */
7352 spin_unlock_irq(&phba->hbalock);
7353 return;
7354 }
7355
7356 /* Outstanding synchronous mailbox command is guaranteed to be done,
7357 * successful or timeout, after timing-out the outstanding mailbox
7358 * command shall always be removed, so just unblock posting async
7359 * mailbox command and resume
7360 */
7361 psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
7362 spin_unlock_irq(&phba->hbalock);
7363
7364 /* wake up worker thread to post asynchronlous mailbox command */
7365 lpfc_worker_wake_up(phba);
7366}
7367
2d843edc
JS
7368/**
7369 * lpfc_sli4_wait_bmbx_ready - Wait for bootstrap mailbox register ready
7370 * @phba: Pointer to HBA context object.
7371 * @mboxq: Pointer to mailbox object.
7372 *
7373 * The function waits for the bootstrap mailbox register ready bit from
7374 * port for twice the regular mailbox command timeout value.
7375 *
7376 * 0 - no timeout on waiting for bootstrap mailbox register ready.
7377 * MBXERR_ERROR - wait for bootstrap mailbox register timed out.
7378 **/
7379static int
7380lpfc_sli4_wait_bmbx_ready(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
7381{
7382 uint32_t db_ready;
7383 unsigned long timeout;
7384 struct lpfc_register bmbx_reg;
7385
7386 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, mboxq)
7387 * 1000) + jiffies;
7388
7389 do {
7390 bmbx_reg.word0 = readl(phba->sli4_hba.BMBXregaddr);
7391 db_ready = bf_get(lpfc_bmbx_rdy, &bmbx_reg);
7392 if (!db_ready)
7393 msleep(2);
7394
7395 if (time_after(jiffies, timeout))
7396 return MBXERR_ERROR;
7397 } while (!db_ready);
7398
7399 return 0;
7400}
7401
da0436e9
JS
7402/**
7403 * lpfc_sli4_post_sync_mbox - Post an SLI4 mailbox to the bootstrap mailbox
7404 * @phba: Pointer to HBA context object.
7405 * @mboxq: Pointer to mailbox object.
7406 *
7407 * The function posts a mailbox to the port. The mailbox is expected
7408 * to be comletely filled in and ready for the port to operate on it.
7409 * This routine executes a synchronous completion operation on the
7410 * mailbox by polling for its completion.
7411 *
7412 * The caller must not be holding any locks when calling this routine.
7413 *
7414 * Returns:
7415 * MBX_SUCCESS - mailbox posted successfully
7416 * Any of the MBX error values.
7417 **/
7418static int
7419lpfc_sli4_post_sync_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
7420{
7421 int rc = MBX_SUCCESS;
7422 unsigned long iflag;
da0436e9
JS
7423 uint32_t mcqe_status;
7424 uint32_t mbx_cmnd;
da0436e9
JS
7425 struct lpfc_sli *psli = &phba->sli;
7426 struct lpfc_mqe *mb = &mboxq->u.mqe;
7427 struct lpfc_bmbx_create *mbox_rgn;
7428 struct dma_address *dma_address;
da0436e9
JS
7429
7430 /*
7431 * Only one mailbox can be active to the bootstrap mailbox region
7432 * at a time and there is no queueing provided.
7433 */
7434 spin_lock_irqsave(&phba->hbalock, iflag);
7435 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
7436 spin_unlock_irqrestore(&phba->hbalock, iflag);
7437 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
a183a15f 7438 "(%d):2532 Mailbox command x%x (x%x/x%x) "
da0436e9
JS
7439 "cannot issue Data: x%x x%x\n",
7440 mboxq->vport ? mboxq->vport->vpi : 0,
7441 mboxq->u.mb.mbxCommand,
a183a15f
JS
7442 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7443 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
da0436e9
JS
7444 psli->sli_flag, MBX_POLL);
7445 return MBXERR_ERROR;
7446 }
7447 /* The server grabs the token and owns it until release */
7448 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
7449 phba->sli.mbox_active = mboxq;
7450 spin_unlock_irqrestore(&phba->hbalock, iflag);
7451
2d843edc
JS
7452 /* wait for bootstrap mbox register for readyness */
7453 rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
7454 if (rc)
7455 goto exit;
7456
da0436e9
JS
7457 /*
7458 * Initialize the bootstrap memory region to avoid stale data areas
7459 * in the mailbox post. Then copy the caller's mailbox contents to
7460 * the bmbx mailbox region.
7461 */
7462 mbx_cmnd = bf_get(lpfc_mqe_command, mb);
7463 memset(phba->sli4_hba.bmbx.avirt, 0, sizeof(struct lpfc_bmbx_create));
7464 lpfc_sli_pcimem_bcopy(mb, phba->sli4_hba.bmbx.avirt,
7465 sizeof(struct lpfc_mqe));
7466
7467 /* Post the high mailbox dma address to the port and wait for ready. */
7468 dma_address = &phba->sli4_hba.bmbx.dma_address;
7469 writel(dma_address->addr_hi, phba->sli4_hba.BMBXregaddr);
7470
2d843edc
JS
7471 /* wait for bootstrap mbox register for hi-address write done */
7472 rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
7473 if (rc)
7474 goto exit;
da0436e9
JS
7475
7476 /* Post the low mailbox dma address to the port. */
7477 writel(dma_address->addr_lo, phba->sli4_hba.BMBXregaddr);
da0436e9 7478
2d843edc
JS
7479 /* wait for bootstrap mbox register for low address write done */
7480 rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
7481 if (rc)
7482 goto exit;
da0436e9
JS
7483
7484 /*
7485 * Read the CQ to ensure the mailbox has completed.
7486 * If so, update the mailbox status so that the upper layers
7487 * can complete the request normally.
7488 */
7489 lpfc_sli_pcimem_bcopy(phba->sli4_hba.bmbx.avirt, mb,
7490 sizeof(struct lpfc_mqe));
7491 mbox_rgn = (struct lpfc_bmbx_create *) phba->sli4_hba.bmbx.avirt;
7492 lpfc_sli_pcimem_bcopy(&mbox_rgn->mcqe, &mboxq->mcqe,
7493 sizeof(struct lpfc_mcqe));
7494 mcqe_status = bf_get(lpfc_mcqe_status, &mbox_rgn->mcqe);
0558056c
JS
7495 /*
7496 * When the CQE status indicates a failure and the mailbox status
7497 * indicates success then copy the CQE status into the mailbox status
7498 * (and prefix it with x4000).
7499 */
da0436e9 7500 if (mcqe_status != MB_CQE_STATUS_SUCCESS) {
0558056c
JS
7501 if (bf_get(lpfc_mqe_status, mb) == MBX_SUCCESS)
7502 bf_set(lpfc_mqe_status, mb,
7503 (LPFC_MBX_ERROR_RANGE | mcqe_status));
da0436e9 7504 rc = MBXERR_ERROR;
d7c47992
JS
7505 } else
7506 lpfc_sli4_swap_str(phba, mboxq);
da0436e9
JS
7507
7508 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
a183a15f 7509 "(%d):0356 Mailbox cmd x%x (x%x/x%x) Status x%x "
da0436e9
JS
7510 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x"
7511 " x%x x%x CQ: x%x x%x x%x x%x\n",
a183a15f
JS
7512 mboxq->vport ? mboxq->vport->vpi : 0, mbx_cmnd,
7513 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7514 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
da0436e9
JS
7515 bf_get(lpfc_mqe_status, mb),
7516 mb->un.mb_words[0], mb->un.mb_words[1],
7517 mb->un.mb_words[2], mb->un.mb_words[3],
7518 mb->un.mb_words[4], mb->un.mb_words[5],
7519 mb->un.mb_words[6], mb->un.mb_words[7],
7520 mb->un.mb_words[8], mb->un.mb_words[9],
7521 mb->un.mb_words[10], mb->un.mb_words[11],
7522 mb->un.mb_words[12], mboxq->mcqe.word0,
7523 mboxq->mcqe.mcqe_tag0, mboxq->mcqe.mcqe_tag1,
7524 mboxq->mcqe.trailer);
7525exit:
7526 /* We are holding the token, no needed for lock when release */
7527 spin_lock_irqsave(&phba->hbalock, iflag);
7528 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7529 phba->sli.mbox_active = NULL;
7530 spin_unlock_irqrestore(&phba->hbalock, iflag);
7531 return rc;
7532}
7533
7534/**
7535 * lpfc_sli_issue_mbox_s4 - Issue an SLI4 mailbox command to firmware
7536 * @phba: Pointer to HBA context object.
7537 * @pmbox: Pointer to mailbox object.
7538 * @flag: Flag indicating how the mailbox need to be processed.
7539 *
7540 * This function is called by discovery code and HBA management code to submit
7541 * a mailbox command to firmware with SLI-4 interface spec.
7542 *
7543 * Return codes the caller owns the mailbox command after the return of the
7544 * function.
7545 **/
7546static int
7547lpfc_sli_issue_mbox_s4(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
7548 uint32_t flag)
7549{
7550 struct lpfc_sli *psli = &phba->sli;
7551 unsigned long iflags;
7552 int rc;
7553
b76f2dc9
JS
7554 /* dump from issue mailbox command if setup */
7555 lpfc_idiag_mbxacc_dump_issue_mbox(phba, &mboxq->u.mb);
7556
8fa38513
JS
7557 rc = lpfc_mbox_dev_check(phba);
7558 if (unlikely(rc)) {
7559 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
a183a15f 7560 "(%d):2544 Mailbox command x%x (x%x/x%x) "
8fa38513
JS
7561 "cannot issue Data: x%x x%x\n",
7562 mboxq->vport ? mboxq->vport->vpi : 0,
7563 mboxq->u.mb.mbxCommand,
a183a15f
JS
7564 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7565 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
8fa38513
JS
7566 psli->sli_flag, flag);
7567 goto out_not_finished;
7568 }
7569
da0436e9
JS
7570 /* Detect polling mode and jump to a handler */
7571 if (!phba->sli4_hba.intr_enable) {
7572 if (flag == MBX_POLL)
7573 rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
7574 else
7575 rc = -EIO;
7576 if (rc != MBX_SUCCESS)
0558056c 7577 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
da0436e9 7578 "(%d):2541 Mailbox command x%x "
cc459f19
JS
7579 "(x%x/x%x) failure: "
7580 "mqe_sta: x%x mcqe_sta: x%x/x%x "
7581 "Data: x%x x%x\n,",
da0436e9
JS
7582 mboxq->vport ? mboxq->vport->vpi : 0,
7583 mboxq->u.mb.mbxCommand,
a183a15f
JS
7584 lpfc_sli_config_mbox_subsys_get(phba,
7585 mboxq),
7586 lpfc_sli_config_mbox_opcode_get(phba,
7587 mboxq),
cc459f19
JS
7588 bf_get(lpfc_mqe_status, &mboxq->u.mqe),
7589 bf_get(lpfc_mcqe_status, &mboxq->mcqe),
7590 bf_get(lpfc_mcqe_ext_status,
7591 &mboxq->mcqe),
da0436e9
JS
7592 psli->sli_flag, flag);
7593 return rc;
7594 } else if (flag == MBX_POLL) {
f1126688
JS
7595 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
7596 "(%d):2542 Try to issue mailbox command "
a183a15f 7597 "x%x (x%x/x%x) synchronously ahead of async"
f1126688 7598 "mailbox command queue: x%x x%x\n",
da0436e9
JS
7599 mboxq->vport ? mboxq->vport->vpi : 0,
7600 mboxq->u.mb.mbxCommand,
a183a15f
JS
7601 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7602 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
da0436e9 7603 psli->sli_flag, flag);
f1126688
JS
7604 /* Try to block the asynchronous mailbox posting */
7605 rc = lpfc_sli4_async_mbox_block(phba);
7606 if (!rc) {
7607 /* Successfully blocked, now issue sync mbox cmd */
7608 rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
7609 if (rc != MBX_SUCCESS)
cc459f19 7610 lpfc_printf_log(phba, KERN_WARNING,
a183a15f 7611 LOG_MBOX | LOG_SLI,
cc459f19
JS
7612 "(%d):2597 Sync Mailbox command "
7613 "x%x (x%x/x%x) failure: "
7614 "mqe_sta: x%x mcqe_sta: x%x/x%x "
7615 "Data: x%x x%x\n,",
7616 mboxq->vport ? mboxq->vport->vpi : 0,
a183a15f
JS
7617 mboxq->u.mb.mbxCommand,
7618 lpfc_sli_config_mbox_subsys_get(phba,
7619 mboxq),
7620 lpfc_sli_config_mbox_opcode_get(phba,
7621 mboxq),
cc459f19
JS
7622 bf_get(lpfc_mqe_status, &mboxq->u.mqe),
7623 bf_get(lpfc_mcqe_status, &mboxq->mcqe),
7624 bf_get(lpfc_mcqe_ext_status,
7625 &mboxq->mcqe),
a183a15f 7626 psli->sli_flag, flag);
f1126688
JS
7627 /* Unblock the async mailbox posting afterward */
7628 lpfc_sli4_async_mbox_unblock(phba);
7629 }
7630 return rc;
da0436e9
JS
7631 }
7632
7633 /* Now, interrupt mode asynchrous mailbox command */
7634 rc = lpfc_mbox_cmd_check(phba, mboxq);
7635 if (rc) {
7636 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
a183a15f 7637 "(%d):2543 Mailbox command x%x (x%x/x%x) "
da0436e9
JS
7638 "cannot issue Data: x%x x%x\n",
7639 mboxq->vport ? mboxq->vport->vpi : 0,
7640 mboxq->u.mb.mbxCommand,
a183a15f
JS
7641 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7642 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
da0436e9
JS
7643 psli->sli_flag, flag);
7644 goto out_not_finished;
7645 }
da0436e9
JS
7646
7647 /* Put the mailbox command to the driver internal FIFO */
7648 psli->slistat.mbox_busy++;
7649 spin_lock_irqsave(&phba->hbalock, iflags);
7650 lpfc_mbox_put(phba, mboxq);
7651 spin_unlock_irqrestore(&phba->hbalock, iflags);
7652 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
7653 "(%d):0354 Mbox cmd issue - Enqueue Data: "
a183a15f 7654 "x%x (x%x/x%x) x%x x%x x%x\n",
da0436e9
JS
7655 mboxq->vport ? mboxq->vport->vpi : 0xffffff,
7656 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
a183a15f
JS
7657 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7658 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
da0436e9
JS
7659 phba->pport->port_state,
7660 psli->sli_flag, MBX_NOWAIT);
7661 /* Wake up worker thread to transport mailbox command from head */
7662 lpfc_worker_wake_up(phba);
7663
7664 return MBX_BUSY;
7665
7666out_not_finished:
7667 return MBX_NOT_FINISHED;
7668}
7669
7670/**
7671 * lpfc_sli4_post_async_mbox - Post an SLI4 mailbox command to device
7672 * @phba: Pointer to HBA context object.
7673 *
7674 * This function is called by worker thread to send a mailbox command to
7675 * SLI4 HBA firmware.
7676 *
7677 **/
7678int
7679lpfc_sli4_post_async_mbox(struct lpfc_hba *phba)
7680{
7681 struct lpfc_sli *psli = &phba->sli;
7682 LPFC_MBOXQ_t *mboxq;
7683 int rc = MBX_SUCCESS;
7684 unsigned long iflags;
7685 struct lpfc_mqe *mqe;
7686 uint32_t mbx_cmnd;
7687
7688 /* Check interrupt mode before post async mailbox command */
7689 if (unlikely(!phba->sli4_hba.intr_enable))
7690 return MBX_NOT_FINISHED;
7691
7692 /* Check for mailbox command service token */
7693 spin_lock_irqsave(&phba->hbalock, iflags);
7694 if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
7695 spin_unlock_irqrestore(&phba->hbalock, iflags);
7696 return MBX_NOT_FINISHED;
7697 }
7698 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
7699 spin_unlock_irqrestore(&phba->hbalock, iflags);
7700 return MBX_NOT_FINISHED;
7701 }
7702 if (unlikely(phba->sli.mbox_active)) {
7703 spin_unlock_irqrestore(&phba->hbalock, iflags);
7704 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7705 "0384 There is pending active mailbox cmd\n");
7706 return MBX_NOT_FINISHED;
7707 }
7708 /* Take the mailbox command service token */
7709 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
7710
7711 /* Get the next mailbox command from head of queue */
7712 mboxq = lpfc_mbox_get(phba);
7713
7714 /* If no more mailbox command waiting for post, we're done */
7715 if (!mboxq) {
7716 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7717 spin_unlock_irqrestore(&phba->hbalock, iflags);
7718 return MBX_SUCCESS;
7719 }
7720 phba->sli.mbox_active = mboxq;
7721 spin_unlock_irqrestore(&phba->hbalock, iflags);
7722
7723 /* Check device readiness for posting mailbox command */
7724 rc = lpfc_mbox_dev_check(phba);
7725 if (unlikely(rc))
7726 /* Driver clean routine will clean up pending mailbox */
7727 goto out_not_finished;
7728
7729 /* Prepare the mbox command to be posted */
7730 mqe = &mboxq->u.mqe;
7731 mbx_cmnd = bf_get(lpfc_mqe_command, mqe);
7732
7733 /* Start timer for the mbox_tmo and log some mailbox post messages */
7734 mod_timer(&psli->mbox_tmo, (jiffies +
256ec0d0 7735 msecs_to_jiffies(1000 * lpfc_mbox_tmo_val(phba, mboxq))));
da0436e9
JS
7736
7737 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
a183a15f 7738 "(%d):0355 Mailbox cmd x%x (x%x/x%x) issue Data: "
da0436e9
JS
7739 "x%x x%x\n",
7740 mboxq->vport ? mboxq->vport->vpi : 0, mbx_cmnd,
a183a15f
JS
7741 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7742 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
da0436e9
JS
7743 phba->pport->port_state, psli->sli_flag);
7744
7745 if (mbx_cmnd != MBX_HEARTBEAT) {
7746 if (mboxq->vport) {
7747 lpfc_debugfs_disc_trc(mboxq->vport,
7748 LPFC_DISC_TRC_MBOX_VPORT,
7749 "MBOX Send vport: cmd:x%x mb:x%x x%x",
7750 mbx_cmnd, mqe->un.mb_words[0],
7751 mqe->un.mb_words[1]);
7752 } else {
7753 lpfc_debugfs_disc_trc(phba->pport,
7754 LPFC_DISC_TRC_MBOX,
7755 "MBOX Send: cmd:x%x mb:x%x x%x",
7756 mbx_cmnd, mqe->un.mb_words[0],
7757 mqe->un.mb_words[1]);
7758 }
7759 }
7760 psli->slistat.mbox_cmd++;
7761
7762 /* Post the mailbox command to the port */
7763 rc = lpfc_sli4_mq_put(phba->sli4_hba.mbx_wq, mqe);
7764 if (rc != MBX_SUCCESS) {
7765 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
a183a15f 7766 "(%d):2533 Mailbox command x%x (x%x/x%x) "
da0436e9
JS
7767 "cannot issue Data: x%x x%x\n",
7768 mboxq->vport ? mboxq->vport->vpi : 0,
7769 mboxq->u.mb.mbxCommand,
a183a15f
JS
7770 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7771 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
da0436e9
JS
7772 psli->sli_flag, MBX_NOWAIT);
7773 goto out_not_finished;
7774 }
7775
7776 return rc;
7777
7778out_not_finished:
7779 spin_lock_irqsave(&phba->hbalock, iflags);
d7069f09
JS
7780 if (phba->sli.mbox_active) {
7781 mboxq->u.mb.mbxStatus = MBX_NOT_FINISHED;
7782 __lpfc_mbox_cmpl_put(phba, mboxq);
7783 /* Release the token */
7784 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7785 phba->sli.mbox_active = NULL;
7786 }
da0436e9
JS
7787 spin_unlock_irqrestore(&phba->hbalock, iflags);
7788
7789 return MBX_NOT_FINISHED;
7790}
7791
7792/**
7793 * lpfc_sli_issue_mbox - Wrapper func for issuing mailbox command
7794 * @phba: Pointer to HBA context object.
7795 * @pmbox: Pointer to mailbox object.
7796 * @flag: Flag indicating how the mailbox need to be processed.
7797 *
7798 * This routine wraps the actual SLI3 or SLI4 mailbox issuing routine from
7799 * the API jump table function pointer from the lpfc_hba struct.
7800 *
7801 * Return codes the caller owns the mailbox command after the return of the
7802 * function.
7803 **/
7804int
7805lpfc_sli_issue_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox, uint32_t flag)
7806{
7807 return phba->lpfc_sli_issue_mbox(phba, pmbox, flag);
7808}
7809
7810/**
25985edc 7811 * lpfc_mbox_api_table_setup - Set up mbox api function jump table
da0436e9
JS
7812 * @phba: The hba struct for which this call is being executed.
7813 * @dev_grp: The HBA PCI-Device group number.
7814 *
7815 * This routine sets up the mbox interface API function jump table in @phba
7816 * struct.
7817 * Returns: 0 - success, -ENODEV - failure.
7818 **/
7819int
7820lpfc_mbox_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
7821{
7822
7823 switch (dev_grp) {
7824 case LPFC_PCI_DEV_LP:
7825 phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s3;
7826 phba->lpfc_sli_handle_slow_ring_event =
7827 lpfc_sli_handle_slow_ring_event_s3;
7828 phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s3;
7829 phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s3;
7830 phba->lpfc_sli_brdready = lpfc_sli_brdready_s3;
7831 break;
7832 case LPFC_PCI_DEV_OC:
7833 phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s4;
7834 phba->lpfc_sli_handle_slow_ring_event =
7835 lpfc_sli_handle_slow_ring_event_s4;
7836 phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s4;
7837 phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s4;
7838 phba->lpfc_sli_brdready = lpfc_sli_brdready_s4;
7839 break;
7840 default:
7841 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7842 "1420 Invalid HBA PCI-device group: 0x%x\n",
7843 dev_grp);
7844 return -ENODEV;
7845 break;
7846 }
7847 return 0;
7848}
7849
e59058c4 7850/**
3621a710 7851 * __lpfc_sli_ringtx_put - Add an iocb to the txq
e59058c4
JS
7852 * @phba: Pointer to HBA context object.
7853 * @pring: Pointer to driver SLI ring object.
7854 * @piocb: Pointer to address of newly added command iocb.
7855 *
7856 * This function is called with hbalock held to add a command
7857 * iocb to the txq when SLI layer cannot submit the command iocb
7858 * to the ring.
7859 **/
2a9bf3d0 7860void
92d7f7b0 7861__lpfc_sli_ringtx_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2e0fef85 7862 struct lpfc_iocbq *piocb)
dea3101e
JB
7863{
7864 /* Insert the caller's iocb in the txq tail for later processing. */
7865 list_add_tail(&piocb->list, &pring->txq);
dea3101e
JB
7866}
7867
e59058c4 7868/**
3621a710 7869 * lpfc_sli_next_iocb - Get the next iocb in the txq
e59058c4
JS
7870 * @phba: Pointer to HBA context object.
7871 * @pring: Pointer to driver SLI ring object.
7872 * @piocb: Pointer to address of newly added command iocb.
7873 *
7874 * This function is called with hbalock held before a new
7875 * iocb is submitted to the firmware. This function checks
7876 * txq to flush the iocbs in txq to Firmware before
7877 * submitting new iocbs to the Firmware.
7878 * If there are iocbs in the txq which need to be submitted
7879 * to firmware, lpfc_sli_next_iocb returns the first element
7880 * of the txq after dequeuing it from txq.
7881 * If there is no iocb in the txq then the function will return
7882 * *piocb and *piocb is set to NULL. Caller needs to check
7883 * *piocb to find if there are more commands in the txq.
7884 **/
dea3101e
JB
7885static struct lpfc_iocbq *
7886lpfc_sli_next_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2e0fef85 7887 struct lpfc_iocbq **piocb)
dea3101e
JB
7888{
7889 struct lpfc_iocbq * nextiocb;
7890
7891 nextiocb = lpfc_sli_ringtx_get(phba, pring);
7892 if (!nextiocb) {
7893 nextiocb = *piocb;
7894 *piocb = NULL;
7895 }
7896
7897 return nextiocb;
7898}
7899
e59058c4 7900/**
3772a991 7901 * __lpfc_sli_issue_iocb_s3 - SLI3 device lockless ver of lpfc_sli_issue_iocb
e59058c4 7902 * @phba: Pointer to HBA context object.
3772a991 7903 * @ring_number: SLI ring number to issue iocb on.
e59058c4
JS
7904 * @piocb: Pointer to command iocb.
7905 * @flag: Flag indicating if this command can be put into txq.
7906 *
3772a991
JS
7907 * __lpfc_sli_issue_iocb_s3 is used by other functions in the driver to issue
7908 * an iocb command to an HBA with SLI-3 interface spec. If the PCI slot is
7909 * recovering from error state, if HBA is resetting or if LPFC_STOP_IOCB_EVENT
7910 * flag is turned on, the function returns IOCB_ERROR. When the link is down,
7911 * this function allows only iocbs for posting buffers. This function finds
7912 * next available slot in the command ring and posts the command to the
7913 * available slot and writes the port attention register to request HBA start
7914 * processing new iocb. If there is no slot available in the ring and
7915 * flag & SLI_IOCB_RET_IOCB is set, the new iocb is added to the txq, otherwise
7916 * the function returns IOCB_BUSY.
e59058c4 7917 *
3772a991
JS
7918 * This function is called with hbalock held. The function will return success
7919 * after it successfully submit the iocb to firmware or after adding to the
7920 * txq.
e59058c4 7921 **/
98c9ea5c 7922static int
3772a991 7923__lpfc_sli_issue_iocb_s3(struct lpfc_hba *phba, uint32_t ring_number,
dea3101e
JB
7924 struct lpfc_iocbq *piocb, uint32_t flag)
7925{
7926 struct lpfc_iocbq *nextiocb;
7927 IOCB_t *iocb;
3772a991 7928 struct lpfc_sli_ring *pring = &phba->sli.ring[ring_number];
dea3101e 7929
92d7f7b0
JS
7930 if (piocb->iocb_cmpl && (!piocb->vport) &&
7931 (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
7932 (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) {
7933 lpfc_printf_log(phba, KERN_ERR,
7934 LOG_SLI | LOG_VPORT,
e8b62011 7935 "1807 IOCB x%x failed. No vport\n",
92d7f7b0
JS
7936 piocb->iocb.ulpCommand);
7937 dump_stack();
7938 return IOCB_ERROR;
7939 }
7940
7941
8d63f375
LV
7942 /* If the PCI channel is in offline state, do not post iocbs. */
7943 if (unlikely(pci_channel_offline(phba->pcidev)))
7944 return IOCB_ERROR;
7945
a257bf90
JS
7946 /* If HBA has a deferred error attention, fail the iocb. */
7947 if (unlikely(phba->hba_flag & DEFER_ERATT))
7948 return IOCB_ERROR;
7949
dea3101e
JB
7950 /*
7951 * We should never get an IOCB if we are in a < LINK_DOWN state
7952 */
2e0fef85 7953 if (unlikely(phba->link_state < LPFC_LINK_DOWN))
dea3101e
JB
7954 return IOCB_ERROR;
7955
7956 /*
7957 * Check to see if we are blocking IOCB processing because of a
0b727fea 7958 * outstanding event.
dea3101e 7959 */
0b727fea 7960 if (unlikely(pring->flag & LPFC_STOP_IOCB_EVENT))
dea3101e
JB
7961 goto iocb_busy;
7962
2e0fef85 7963 if (unlikely(phba->link_state == LPFC_LINK_DOWN)) {
dea3101e 7964 /*
2680eeaa 7965 * Only CREATE_XRI, CLOSE_XRI, and QUE_RING_BUF
dea3101e
JB
7966 * can be issued if the link is not up.
7967 */
7968 switch (piocb->iocb.ulpCommand) {
84774a4d
JS
7969 case CMD_GEN_REQUEST64_CR:
7970 case CMD_GEN_REQUEST64_CX:
7971 if (!(phba->sli.sli_flag & LPFC_MENLO_MAINT) ||
7972 (piocb->iocb.un.genreq64.w5.hcsw.Rctl !=
6a9c52cf 7973 FC_RCTL_DD_UNSOL_CMD) ||
84774a4d
JS
7974 (piocb->iocb.un.genreq64.w5.hcsw.Type !=
7975 MENLO_TRANSPORT_TYPE))
7976
7977 goto iocb_busy;
7978 break;
dea3101e
JB
7979 case CMD_QUE_RING_BUF_CN:
7980 case CMD_QUE_RING_BUF64_CN:
dea3101e
JB
7981 /*
7982 * For IOCBs, like QUE_RING_BUF, that have no rsp ring
7983 * completion, iocb_cmpl MUST be 0.
7984 */
7985 if (piocb->iocb_cmpl)
7986 piocb->iocb_cmpl = NULL;
7987 /*FALLTHROUGH*/
7988 case CMD_CREATE_XRI_CR:
2680eeaa
JS
7989 case CMD_CLOSE_XRI_CN:
7990 case CMD_CLOSE_XRI_CX:
dea3101e
JB
7991 break;
7992 default:
7993 goto iocb_busy;
7994 }
7995
7996 /*
7997 * For FCP commands, we must be in a state where we can process link
7998 * attention events.
7999 */
8000 } else if (unlikely(pring->ringno == phba->sli.fcp_ring &&
92d7f7b0 8001 !(phba->sli.sli_flag & LPFC_PROCESS_LA))) {
dea3101e 8002 goto iocb_busy;
92d7f7b0 8003 }
dea3101e 8004
dea3101e
JB
8005 while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
8006 (nextiocb = lpfc_sli_next_iocb(phba, pring, &piocb)))
8007 lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
8008
8009 if (iocb)
8010 lpfc_sli_update_ring(phba, pring);
8011 else
8012 lpfc_sli_update_full_ring(phba, pring);
8013
8014 if (!piocb)
8015 return IOCB_SUCCESS;
8016
8017 goto out_busy;
8018
8019 iocb_busy:
8020 pring->stats.iocb_cmd_delay++;
8021
8022 out_busy:
8023
8024 if (!(flag & SLI_IOCB_RET_IOCB)) {
92d7f7b0 8025 __lpfc_sli_ringtx_put(phba, pring, piocb);
dea3101e
JB
8026 return IOCB_SUCCESS;
8027 }
8028
8029 return IOCB_BUSY;
8030}
8031
3772a991 8032/**
4f774513
JS
8033 * lpfc_sli4_bpl2sgl - Convert the bpl/bde to a sgl.
8034 * @phba: Pointer to HBA context object.
8035 * @piocb: Pointer to command iocb.
8036 * @sglq: Pointer to the scatter gather queue object.
8037 *
8038 * This routine converts the bpl or bde that is in the IOCB
8039 * to a sgl list for the sli4 hardware. The physical address
8040 * of the bpl/bde is converted back to a virtual address.
8041 * If the IOCB contains a BPL then the list of BDE's is
8042 * converted to sli4_sge's. If the IOCB contains a single
8043 * BDE then it is converted to a single sli_sge.
8044 * The IOCB is still in cpu endianess so the contents of
8045 * the bpl can be used without byte swapping.
8046 *
8047 * Returns valid XRI = Success, NO_XRI = Failure.
8048**/
8049static uint16_t
8050lpfc_sli4_bpl2sgl(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq,
8051 struct lpfc_sglq *sglq)
3772a991 8052{
4f774513
JS
8053 uint16_t xritag = NO_XRI;
8054 struct ulp_bde64 *bpl = NULL;
8055 struct ulp_bde64 bde;
8056 struct sli4_sge *sgl = NULL;
1b51197d 8057 struct lpfc_dmabuf *dmabuf;
4f774513
JS
8058 IOCB_t *icmd;
8059 int numBdes = 0;
8060 int i = 0;
63e801ce
JS
8061 uint32_t offset = 0; /* accumulated offset in the sg request list */
8062 int inbound = 0; /* number of sg reply entries inbound from firmware */
3772a991 8063
4f774513
JS
8064 if (!piocbq || !sglq)
8065 return xritag;
8066
8067 sgl = (struct sli4_sge *)sglq->sgl;
8068 icmd = &piocbq->iocb;
6b5151fd
JS
8069 if (icmd->ulpCommand == CMD_XMIT_BLS_RSP64_CX)
8070 return sglq->sli4_xritag;
4f774513
JS
8071 if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
8072 numBdes = icmd->un.genreq64.bdl.bdeSize /
8073 sizeof(struct ulp_bde64);
8074 /* The addrHigh and addrLow fields within the IOCB
8075 * have not been byteswapped yet so there is no
8076 * need to swap them back.
8077 */
1b51197d
JS
8078 if (piocbq->context3)
8079 dmabuf = (struct lpfc_dmabuf *)piocbq->context3;
8080 else
8081 return xritag;
4f774513 8082
1b51197d 8083 bpl = (struct ulp_bde64 *)dmabuf->virt;
4f774513
JS
8084 if (!bpl)
8085 return xritag;
8086
8087 for (i = 0; i < numBdes; i++) {
8088 /* Should already be byte swapped. */
28baac74
JS
8089 sgl->addr_hi = bpl->addrHigh;
8090 sgl->addr_lo = bpl->addrLow;
8091
0558056c 8092 sgl->word2 = le32_to_cpu(sgl->word2);
4f774513
JS
8093 if ((i+1) == numBdes)
8094 bf_set(lpfc_sli4_sge_last, sgl, 1);
8095 else
8096 bf_set(lpfc_sli4_sge_last, sgl, 0);
28baac74
JS
8097 /* swap the size field back to the cpu so we
8098 * can assign it to the sgl.
8099 */
8100 bde.tus.w = le32_to_cpu(bpl->tus.w);
8101 sgl->sge_len = cpu_to_le32(bde.tus.f.bdeSize);
63e801ce
JS
8102 /* The offsets in the sgl need to be accumulated
8103 * separately for the request and reply lists.
8104 * The request is always first, the reply follows.
8105 */
8106 if (piocbq->iocb.ulpCommand == CMD_GEN_REQUEST64_CR) {
8107 /* add up the reply sg entries */
8108 if (bpl->tus.f.bdeFlags == BUFF_TYPE_BDE_64I)
8109 inbound++;
8110 /* first inbound? reset the offset */
8111 if (inbound == 1)
8112 offset = 0;
8113 bf_set(lpfc_sli4_sge_offset, sgl, offset);
f9bb2da1
JS
8114 bf_set(lpfc_sli4_sge_type, sgl,
8115 LPFC_SGE_TYPE_DATA);
63e801ce
JS
8116 offset += bde.tus.f.bdeSize;
8117 }
546fc854 8118 sgl->word2 = cpu_to_le32(sgl->word2);
4f774513
JS
8119 bpl++;
8120 sgl++;
8121 }
8122 } else if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BDE_64) {
8123 /* The addrHigh and addrLow fields of the BDE have not
8124 * been byteswapped yet so they need to be swapped
8125 * before putting them in the sgl.
8126 */
8127 sgl->addr_hi =
8128 cpu_to_le32(icmd->un.genreq64.bdl.addrHigh);
8129 sgl->addr_lo =
8130 cpu_to_le32(icmd->un.genreq64.bdl.addrLow);
0558056c 8131 sgl->word2 = le32_to_cpu(sgl->word2);
4f774513
JS
8132 bf_set(lpfc_sli4_sge_last, sgl, 1);
8133 sgl->word2 = cpu_to_le32(sgl->word2);
28baac74
JS
8134 sgl->sge_len =
8135 cpu_to_le32(icmd->un.genreq64.bdl.bdeSize);
4f774513
JS
8136 }
8137 return sglq->sli4_xritag;
3772a991 8138}
92d7f7b0 8139
e59058c4 8140/**
4f774513 8141 * lpfc_sli4_scmd_to_wqidx_distr - scsi command to SLI4 WQ index distribution
e59058c4 8142 * @phba: Pointer to HBA context object.
e59058c4 8143 *
a93ff37a 8144 * This routine performs a roundrobin SCSI command to SLI4 FCP WQ index
8fa38513
JS
8145 * distribution. This is called by __lpfc_sli_issue_iocb_s4() with the hbalock
8146 * held.
4f774513
JS
8147 *
8148 * Return: index into SLI4 fast-path FCP queue index.
e59058c4 8149 **/
a2fc4aef 8150static inline int
8fa38513 8151lpfc_sli4_scmd_to_wqidx_distr(struct lpfc_hba *phba)
92d7f7b0 8152{
7bb03bbf
JS
8153 struct lpfc_vector_map_info *cpup;
8154 int chann, cpu;
8155
76f96b6d
JS
8156 if (phba->cfg_fcp_io_sched == LPFC_FCP_SCHED_BY_CPU
8157 && phba->cfg_fcp_io_channel > 1) {
7bb03bbf
JS
8158 cpu = smp_processor_id();
8159 if (cpu < phba->sli4_hba.num_present_cpu) {
8160 cpup = phba->sli4_hba.cpu_map;
8161 cpup += cpu;
8162 return cpup->channel_id;
8163 }
7bb03bbf
JS
8164 }
8165 chann = atomic_add_return(1, &phba->fcp_qidx);
8166 chann = (chann % phba->cfg_fcp_io_channel);
8167 return chann;
92d7f7b0
JS
8168}
8169
e59058c4 8170/**
4f774513 8171 * lpfc_sli_iocb2wqe - Convert the IOCB to a work queue entry.
e59058c4 8172 * @phba: Pointer to HBA context object.
4f774513
JS
8173 * @piocb: Pointer to command iocb.
8174 * @wqe: Pointer to the work queue entry.
e59058c4 8175 *
4f774513
JS
8176 * This routine converts the iocb command to its Work Queue Entry
8177 * equivalent. The wqe pointer should not have any fields set when
8178 * this routine is called because it will memcpy over them.
8179 * This routine does not set the CQ_ID or the WQEC bits in the
8180 * wqe.
e59058c4 8181 *
4f774513 8182 * Returns: 0 = Success, IOCB_ERROR = Failure.
e59058c4 8183 **/
cf5bf97e 8184static int
4f774513
JS
8185lpfc_sli4_iocb2wqe(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq,
8186 union lpfc_wqe *wqe)
cf5bf97e 8187{
5ffc266e 8188 uint32_t xmit_len = 0, total_len = 0;
4f774513
JS
8189 uint8_t ct = 0;
8190 uint32_t fip;
8191 uint32_t abort_tag;
8192 uint8_t command_type = ELS_COMMAND_NON_FIP;
8193 uint8_t cmnd;
8194 uint16_t xritag;
dcf2a4e0
JS
8195 uint16_t abrt_iotag;
8196 struct lpfc_iocbq *abrtiocbq;
4f774513 8197 struct ulp_bde64 *bpl = NULL;
f0d9bccc 8198 uint32_t els_id = LPFC_ELS_ID_DEFAULT;
5ffc266e
JS
8199 int numBdes, i;
8200 struct ulp_bde64 bde;
c31098ce 8201 struct lpfc_nodelist *ndlp;
ff78d8f9 8202 uint32_t *pcmd;
1b51197d 8203 uint32_t if_type;
4f774513 8204
45ed1190 8205 fip = phba->hba_flag & HBA_FIP_SUPPORT;
4f774513 8206 /* The fcp commands will set command type */
0c287589 8207 if (iocbq->iocb_flag & LPFC_IO_FCP)
4f774513 8208 command_type = FCP_COMMAND;
c868595d 8209 else if (fip && (iocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK))
0c287589
JS
8210 command_type = ELS_COMMAND_FIP;
8211 else
8212 command_type = ELS_COMMAND_NON_FIP;
8213
4f774513
JS
8214 /* Some of the fields are in the right position already */
8215 memcpy(wqe, &iocbq->iocb, sizeof(union lpfc_wqe));
8216 abort_tag = (uint32_t) iocbq->iotag;
8217 xritag = iocbq->sli4_xritag;
f0d9bccc 8218 wqe->generic.wqe_com.word7 = 0; /* The ct field has moved so reset */
28d7f3df 8219 wqe->generic.wqe_com.word10 = 0;
4f774513
JS
8220 /* words0-2 bpl convert bde */
8221 if (iocbq->iocb.un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
5ffc266e
JS
8222 numBdes = iocbq->iocb.un.genreq64.bdl.bdeSize /
8223 sizeof(struct ulp_bde64);
4f774513
JS
8224 bpl = (struct ulp_bde64 *)
8225 ((struct lpfc_dmabuf *)iocbq->context3)->virt;
8226 if (!bpl)
8227 return IOCB_ERROR;
cf5bf97e 8228
4f774513
JS
8229 /* Should already be byte swapped. */
8230 wqe->generic.bde.addrHigh = le32_to_cpu(bpl->addrHigh);
8231 wqe->generic.bde.addrLow = le32_to_cpu(bpl->addrLow);
8232 /* swap the size field back to the cpu so we
8233 * can assign it to the sgl.
8234 */
8235 wqe->generic.bde.tus.w = le32_to_cpu(bpl->tus.w);
5ffc266e
JS
8236 xmit_len = wqe->generic.bde.tus.f.bdeSize;
8237 total_len = 0;
8238 for (i = 0; i < numBdes; i++) {
8239 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
8240 total_len += bde.tus.f.bdeSize;
8241 }
4f774513 8242 } else
5ffc266e 8243 xmit_len = iocbq->iocb.un.fcpi64.bdl.bdeSize;
cf5bf97e 8244
4f774513
JS
8245 iocbq->iocb.ulpIoTag = iocbq->iotag;
8246 cmnd = iocbq->iocb.ulpCommand;
a4bc3379 8247
4f774513
JS
8248 switch (iocbq->iocb.ulpCommand) {
8249 case CMD_ELS_REQUEST64_CR:
93d1379e
JS
8250 if (iocbq->iocb_flag & LPFC_IO_LIBDFC)
8251 ndlp = iocbq->context_un.ndlp;
8252 else
8253 ndlp = (struct lpfc_nodelist *)iocbq->context1;
4f774513
JS
8254 if (!iocbq->iocb.ulpLe) {
8255 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8256 "2007 Only Limited Edition cmd Format"
8257 " supported 0x%x\n",
8258 iocbq->iocb.ulpCommand);
8259 return IOCB_ERROR;
8260 }
ff78d8f9 8261
5ffc266e 8262 wqe->els_req.payload_len = xmit_len;
4f774513
JS
8263 /* Els_reguest64 has a TMO */
8264 bf_set(wqe_tmo, &wqe->els_req.wqe_com,
8265 iocbq->iocb.ulpTimeout);
8266 /* Need a VF for word 4 set the vf bit*/
8267 bf_set(els_req64_vf, &wqe->els_req, 0);
8268 /* And a VFID for word 12 */
8269 bf_set(els_req64_vfid, &wqe->els_req, 0);
4f774513 8270 ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
f0d9bccc
JS
8271 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
8272 iocbq->iocb.ulpContext);
8273 bf_set(wqe_ct, &wqe->els_req.wqe_com, ct);
8274 bf_set(wqe_pu, &wqe->els_req.wqe_com, 0);
4f774513 8275 /* CCP CCPE PV PRI in word10 were set in the memcpy */
ff78d8f9 8276 if (command_type == ELS_COMMAND_FIP)
c868595d
JS
8277 els_id = ((iocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK)
8278 >> LPFC_FIP_ELS_ID_SHIFT);
ff78d8f9
JS
8279 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
8280 iocbq->context2)->virt);
1b51197d
JS
8281 if_type = bf_get(lpfc_sli_intf_if_type,
8282 &phba->sli4_hba.sli_intf);
8283 if (if_type == LPFC_SLI_INTF_IF_TYPE_2) {
ff78d8f9 8284 if (pcmd && (*pcmd == ELS_CMD_FLOGI ||
cb69f7de 8285 *pcmd == ELS_CMD_SCR ||
6b5151fd 8286 *pcmd == ELS_CMD_FDISC ||
bdcd2b92 8287 *pcmd == ELS_CMD_LOGO ||
ff78d8f9
JS
8288 *pcmd == ELS_CMD_PLOGI)) {
8289 bf_set(els_req64_sp, &wqe->els_req, 1);
8290 bf_set(els_req64_sid, &wqe->els_req,
8291 iocbq->vport->fc_myDID);
939723a4
JS
8292 if ((*pcmd == ELS_CMD_FLOGI) &&
8293 !(phba->fc_topology ==
8294 LPFC_TOPOLOGY_LOOP))
8295 bf_set(els_req64_sid, &wqe->els_req, 0);
ff78d8f9
JS
8296 bf_set(wqe_ct, &wqe->els_req.wqe_com, 1);
8297 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
a7dd9c0f 8298 phba->vpi_ids[iocbq->vport->vpi]);
3ef6d24c 8299 } else if (pcmd && iocbq->context1) {
ff78d8f9
JS
8300 bf_set(wqe_ct, &wqe->els_req.wqe_com, 0);
8301 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
8302 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
8303 }
c868595d 8304 }
6d368e53
JS
8305 bf_set(wqe_temp_rpi, &wqe->els_req.wqe_com,
8306 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
f0d9bccc
JS
8307 bf_set(wqe_els_id, &wqe->els_req.wqe_com, els_id);
8308 bf_set(wqe_dbde, &wqe->els_req.wqe_com, 1);
8309 bf_set(wqe_iod, &wqe->els_req.wqe_com, LPFC_WQE_IOD_READ);
8310 bf_set(wqe_qosd, &wqe->els_req.wqe_com, 1);
8311 bf_set(wqe_lenloc, &wqe->els_req.wqe_com, LPFC_WQE_LENLOC_NONE);
8312 bf_set(wqe_ebde_cnt, &wqe->els_req.wqe_com, 0);
af22741c 8313 wqe->els_req.max_response_payload_len = total_len - xmit_len;
7851fe2c 8314 break;
5ffc266e 8315 case CMD_XMIT_SEQUENCE64_CX:
f0d9bccc
JS
8316 bf_set(wqe_ctxt_tag, &wqe->xmit_sequence.wqe_com,
8317 iocbq->iocb.un.ulpWord[3]);
8318 bf_set(wqe_rcvoxid, &wqe->xmit_sequence.wqe_com,
7851fe2c 8319 iocbq->iocb.unsli3.rcvsli3.ox_id);
5ffc266e
JS
8320 /* The entire sequence is transmitted for this IOCB */
8321 xmit_len = total_len;
8322 cmnd = CMD_XMIT_SEQUENCE64_CR;
1b51197d
JS
8323 if (phba->link_flag & LS_LOOPBACK_MODE)
8324 bf_set(wqe_xo, &wqe->xmit_sequence.wge_ctl, 1);
4f774513 8325 case CMD_XMIT_SEQUENCE64_CR:
f0d9bccc
JS
8326 /* word3 iocb=io_tag32 wqe=reserved */
8327 wqe->xmit_sequence.rsvd3 = 0;
4f774513
JS
8328 /* word4 relative_offset memcpy */
8329 /* word5 r_ctl/df_ctl memcpy */
f0d9bccc
JS
8330 bf_set(wqe_pu, &wqe->xmit_sequence.wqe_com, 0);
8331 bf_set(wqe_dbde, &wqe->xmit_sequence.wqe_com, 1);
8332 bf_set(wqe_iod, &wqe->xmit_sequence.wqe_com,
8333 LPFC_WQE_IOD_WRITE);
8334 bf_set(wqe_lenloc, &wqe->xmit_sequence.wqe_com,
8335 LPFC_WQE_LENLOC_WORD12);
8336 bf_set(wqe_ebde_cnt, &wqe->xmit_sequence.wqe_com, 0);
5ffc266e
JS
8337 wqe->xmit_sequence.xmit_len = xmit_len;
8338 command_type = OTHER_COMMAND;
7851fe2c 8339 break;
4f774513 8340 case CMD_XMIT_BCAST64_CN:
f0d9bccc
JS
8341 /* word3 iocb=iotag32 wqe=seq_payload_len */
8342 wqe->xmit_bcast64.seq_payload_len = xmit_len;
4f774513
JS
8343 /* word4 iocb=rsvd wqe=rsvd */
8344 /* word5 iocb=rctl/type/df_ctl wqe=rctl/type/df_ctl memcpy */
8345 /* word6 iocb=ctxt_tag/io_tag wqe=ctxt_tag/xri */
f0d9bccc 8346 bf_set(wqe_ct, &wqe->xmit_bcast64.wqe_com,
4f774513 8347 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
f0d9bccc
JS
8348 bf_set(wqe_dbde, &wqe->xmit_bcast64.wqe_com, 1);
8349 bf_set(wqe_iod, &wqe->xmit_bcast64.wqe_com, LPFC_WQE_IOD_WRITE);
8350 bf_set(wqe_lenloc, &wqe->xmit_bcast64.wqe_com,
8351 LPFC_WQE_LENLOC_WORD3);
8352 bf_set(wqe_ebde_cnt, &wqe->xmit_bcast64.wqe_com, 0);
7851fe2c 8353 break;
4f774513
JS
8354 case CMD_FCP_IWRITE64_CR:
8355 command_type = FCP_COMMAND_DATA_OUT;
f0d9bccc
JS
8356 /* word3 iocb=iotag wqe=payload_offset_len */
8357 /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
0ba4b219
JS
8358 bf_set(payload_offset_len, &wqe->fcp_iwrite,
8359 xmit_len + sizeof(struct fcp_rsp));
8360 bf_set(cmd_buff_len, &wqe->fcp_iwrite,
8361 0);
f0d9bccc
JS
8362 /* word4 iocb=parameter wqe=total_xfer_length memcpy */
8363 /* word5 iocb=initial_xfer_len wqe=initial_xfer_len memcpy */
8364 bf_set(wqe_erp, &wqe->fcp_iwrite.wqe_com,
8365 iocbq->iocb.ulpFCP2Rcvy);
8366 bf_set(wqe_lnk, &wqe->fcp_iwrite.wqe_com, iocbq->iocb.ulpXS);
8367 /* Always open the exchange */
8368 bf_set(wqe_xc, &wqe->fcp_iwrite.wqe_com, 0);
f0d9bccc
JS
8369 bf_set(wqe_iod, &wqe->fcp_iwrite.wqe_com, LPFC_WQE_IOD_WRITE);
8370 bf_set(wqe_lenloc, &wqe->fcp_iwrite.wqe_com,
8371 LPFC_WQE_LENLOC_WORD4);
8372 bf_set(wqe_ebde_cnt, &wqe->fcp_iwrite.wqe_com, 0);
8373 bf_set(wqe_pu, &wqe->fcp_iwrite.wqe_com, iocbq->iocb.ulpPU);
acd6859b 8374 bf_set(wqe_dbde, &wqe->fcp_iwrite.wqe_com, 1);
1ba981fd
JS
8375 if (iocbq->iocb_flag & LPFC_IO_OAS) {
8376 bf_set(wqe_oas, &wqe->fcp_iwrite.wqe_com, 1);
8377 if (phba->cfg_XLanePriority) {
8378 bf_set(wqe_ccpe, &wqe->fcp_iwrite.wqe_com, 1);
8379 bf_set(wqe_ccp, &wqe->fcp_iwrite.wqe_com,
8380 (phba->cfg_XLanePriority << 1));
8381 }
8382 }
7851fe2c 8383 break;
4f774513 8384 case CMD_FCP_IREAD64_CR:
f0d9bccc
JS
8385 /* word3 iocb=iotag wqe=payload_offset_len */
8386 /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
0ba4b219
JS
8387 bf_set(payload_offset_len, &wqe->fcp_iread,
8388 xmit_len + sizeof(struct fcp_rsp));
8389 bf_set(cmd_buff_len, &wqe->fcp_iread,
8390 0);
f0d9bccc
JS
8391 /* word4 iocb=parameter wqe=total_xfer_length memcpy */
8392 /* word5 iocb=initial_xfer_len wqe=initial_xfer_len memcpy */
8393 bf_set(wqe_erp, &wqe->fcp_iread.wqe_com,
8394 iocbq->iocb.ulpFCP2Rcvy);
8395 bf_set(wqe_lnk, &wqe->fcp_iread.wqe_com, iocbq->iocb.ulpXS);
f1126688
JS
8396 /* Always open the exchange */
8397 bf_set(wqe_xc, &wqe->fcp_iread.wqe_com, 0);
f0d9bccc
JS
8398 bf_set(wqe_iod, &wqe->fcp_iread.wqe_com, LPFC_WQE_IOD_READ);
8399 bf_set(wqe_lenloc, &wqe->fcp_iread.wqe_com,
8400 LPFC_WQE_LENLOC_WORD4);
8401 bf_set(wqe_ebde_cnt, &wqe->fcp_iread.wqe_com, 0);
8402 bf_set(wqe_pu, &wqe->fcp_iread.wqe_com, iocbq->iocb.ulpPU);
acd6859b 8403 bf_set(wqe_dbde, &wqe->fcp_iread.wqe_com, 1);
1ba981fd
JS
8404 if (iocbq->iocb_flag & LPFC_IO_OAS) {
8405 bf_set(wqe_oas, &wqe->fcp_iread.wqe_com, 1);
8406 if (phba->cfg_XLanePriority) {
8407 bf_set(wqe_ccpe, &wqe->fcp_iread.wqe_com, 1);
8408 bf_set(wqe_ccp, &wqe->fcp_iread.wqe_com,
8409 (phba->cfg_XLanePriority << 1));
8410 }
8411 }
7851fe2c 8412 break;
4f774513 8413 case CMD_FCP_ICMND64_CR:
0ba4b219
JS
8414 /* word3 iocb=iotag wqe=payload_offset_len */
8415 /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
8416 bf_set(payload_offset_len, &wqe->fcp_icmd,
8417 xmit_len + sizeof(struct fcp_rsp));
8418 bf_set(cmd_buff_len, &wqe->fcp_icmd,
8419 0);
f0d9bccc 8420 /* word3 iocb=IO_TAG wqe=reserved */
f0d9bccc 8421 bf_set(wqe_pu, &wqe->fcp_icmd.wqe_com, 0);
4f774513 8422 /* Always open the exchange */
f0d9bccc
JS
8423 bf_set(wqe_xc, &wqe->fcp_icmd.wqe_com, 0);
8424 bf_set(wqe_dbde, &wqe->fcp_icmd.wqe_com, 1);
8425 bf_set(wqe_iod, &wqe->fcp_icmd.wqe_com, LPFC_WQE_IOD_WRITE);
8426 bf_set(wqe_qosd, &wqe->fcp_icmd.wqe_com, 1);
8427 bf_set(wqe_lenloc, &wqe->fcp_icmd.wqe_com,
8428 LPFC_WQE_LENLOC_NONE);
8429 bf_set(wqe_ebde_cnt, &wqe->fcp_icmd.wqe_com, 0);
2a94aea4
JS
8430 bf_set(wqe_erp, &wqe->fcp_icmd.wqe_com,
8431 iocbq->iocb.ulpFCP2Rcvy);
1ba981fd
JS
8432 if (iocbq->iocb_flag & LPFC_IO_OAS) {
8433 bf_set(wqe_oas, &wqe->fcp_icmd.wqe_com, 1);
8434 if (phba->cfg_XLanePriority) {
8435 bf_set(wqe_ccpe, &wqe->fcp_icmd.wqe_com, 1);
8436 bf_set(wqe_ccp, &wqe->fcp_icmd.wqe_com,
8437 (phba->cfg_XLanePriority << 1));
8438 }
8439 }
7851fe2c 8440 break;
4f774513 8441 case CMD_GEN_REQUEST64_CR:
63e801ce
JS
8442 /* For this command calculate the xmit length of the
8443 * request bde.
8444 */
8445 xmit_len = 0;
8446 numBdes = iocbq->iocb.un.genreq64.bdl.bdeSize /
8447 sizeof(struct ulp_bde64);
8448 for (i = 0; i < numBdes; i++) {
63e801ce 8449 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
546fc854
JS
8450 if (bde.tus.f.bdeFlags != BUFF_TYPE_BDE_64)
8451 break;
63e801ce
JS
8452 xmit_len += bde.tus.f.bdeSize;
8453 }
f0d9bccc
JS
8454 /* word3 iocb=IO_TAG wqe=request_payload_len */
8455 wqe->gen_req.request_payload_len = xmit_len;
8456 /* word4 iocb=parameter wqe=relative_offset memcpy */
8457 /* word5 [rctl, type, df_ctl, la] copied in memcpy */
4f774513
JS
8458 /* word6 context tag copied in memcpy */
8459 if (iocbq->iocb.ulpCt_h || iocbq->iocb.ulpCt_l) {
8460 ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
8461 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8462 "2015 Invalid CT %x command 0x%x\n",
8463 ct, iocbq->iocb.ulpCommand);
8464 return IOCB_ERROR;
8465 }
f0d9bccc
JS
8466 bf_set(wqe_ct, &wqe->gen_req.wqe_com, 0);
8467 bf_set(wqe_tmo, &wqe->gen_req.wqe_com, iocbq->iocb.ulpTimeout);
8468 bf_set(wqe_pu, &wqe->gen_req.wqe_com, iocbq->iocb.ulpPU);
8469 bf_set(wqe_dbde, &wqe->gen_req.wqe_com, 1);
8470 bf_set(wqe_iod, &wqe->gen_req.wqe_com, LPFC_WQE_IOD_READ);
8471 bf_set(wqe_qosd, &wqe->gen_req.wqe_com, 1);
8472 bf_set(wqe_lenloc, &wqe->gen_req.wqe_com, LPFC_WQE_LENLOC_NONE);
8473 bf_set(wqe_ebde_cnt, &wqe->gen_req.wqe_com, 0);
af22741c 8474 wqe->gen_req.max_response_payload_len = total_len - xmit_len;
4f774513 8475 command_type = OTHER_COMMAND;
7851fe2c 8476 break;
4f774513 8477 case CMD_XMIT_ELS_RSP64_CX:
c31098ce 8478 ndlp = (struct lpfc_nodelist *)iocbq->context1;
4f774513 8479 /* words0-2 BDE memcpy */
f0d9bccc
JS
8480 /* word3 iocb=iotag32 wqe=response_payload_len */
8481 wqe->xmit_els_rsp.response_payload_len = xmit_len;
939723a4
JS
8482 /* word4 */
8483 wqe->xmit_els_rsp.word4 = 0;
4f774513
JS
8484 /* word5 iocb=rsvd wge=did */
8485 bf_set(wqe_els_did, &wqe->xmit_els_rsp.wqe_dest,
939723a4
JS
8486 iocbq->iocb.un.xseq64.xmit_els_remoteID);
8487
8488 if_type = bf_get(lpfc_sli_intf_if_type,
8489 &phba->sli4_hba.sli_intf);
8490 if (if_type == LPFC_SLI_INTF_IF_TYPE_2) {
8491 if (iocbq->vport->fc_flag & FC_PT2PT) {
8492 bf_set(els_rsp64_sp, &wqe->xmit_els_rsp, 1);
8493 bf_set(els_rsp64_sid, &wqe->xmit_els_rsp,
8494 iocbq->vport->fc_myDID);
8495 if (iocbq->vport->fc_myDID == Fabric_DID) {
8496 bf_set(wqe_els_did,
8497 &wqe->xmit_els_rsp.wqe_dest, 0);
8498 }
8499 }
8500 }
f0d9bccc
JS
8501 bf_set(wqe_ct, &wqe->xmit_els_rsp.wqe_com,
8502 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
8503 bf_set(wqe_pu, &wqe->xmit_els_rsp.wqe_com, iocbq->iocb.ulpPU);
8504 bf_set(wqe_rcvoxid, &wqe->xmit_els_rsp.wqe_com,
7851fe2c 8505 iocbq->iocb.unsli3.rcvsli3.ox_id);
4f774513 8506 if (!iocbq->iocb.ulpCt_h && iocbq->iocb.ulpCt_l)
f0d9bccc 8507 bf_set(wqe_ctxt_tag, &wqe->xmit_els_rsp.wqe_com,
6d368e53 8508 phba->vpi_ids[iocbq->vport->vpi]);
f0d9bccc
JS
8509 bf_set(wqe_dbde, &wqe->xmit_els_rsp.wqe_com, 1);
8510 bf_set(wqe_iod, &wqe->xmit_els_rsp.wqe_com, LPFC_WQE_IOD_WRITE);
8511 bf_set(wqe_qosd, &wqe->xmit_els_rsp.wqe_com, 1);
8512 bf_set(wqe_lenloc, &wqe->xmit_els_rsp.wqe_com,
8513 LPFC_WQE_LENLOC_WORD3);
8514 bf_set(wqe_ebde_cnt, &wqe->xmit_els_rsp.wqe_com, 0);
6d368e53
JS
8515 bf_set(wqe_rsp_temp_rpi, &wqe->xmit_els_rsp,
8516 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
ff78d8f9
JS
8517 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
8518 iocbq->context2)->virt);
8519 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
939723a4
JS
8520 bf_set(els_rsp64_sp, &wqe->xmit_els_rsp, 1);
8521 bf_set(els_rsp64_sid, &wqe->xmit_els_rsp,
ff78d8f9 8522 iocbq->vport->fc_myDID);
939723a4
JS
8523 bf_set(wqe_ct, &wqe->xmit_els_rsp.wqe_com, 1);
8524 bf_set(wqe_ctxt_tag, &wqe->xmit_els_rsp.wqe_com,
ff78d8f9
JS
8525 phba->vpi_ids[phba->pport->vpi]);
8526 }
4f774513 8527 command_type = OTHER_COMMAND;
7851fe2c 8528 break;
4f774513
JS
8529 case CMD_CLOSE_XRI_CN:
8530 case CMD_ABORT_XRI_CN:
8531 case CMD_ABORT_XRI_CX:
8532 /* words 0-2 memcpy should be 0 rserved */
8533 /* port will send abts */
dcf2a4e0
JS
8534 abrt_iotag = iocbq->iocb.un.acxri.abortContextTag;
8535 if (abrt_iotag != 0 && abrt_iotag <= phba->sli.last_iotag) {
8536 abrtiocbq = phba->sli.iocbq_lookup[abrt_iotag];
8537 fip = abrtiocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK;
8538 } else
8539 fip = 0;
8540
8541 if ((iocbq->iocb.ulpCommand == CMD_CLOSE_XRI_CN) || fip)
4f774513 8542 /*
dcf2a4e0
JS
8543 * The link is down, or the command was ELS_FIP
8544 * so the fw does not need to send abts
4f774513
JS
8545 * on the wire.
8546 */
8547 bf_set(abort_cmd_ia, &wqe->abort_cmd, 1);
8548 else
8549 bf_set(abort_cmd_ia, &wqe->abort_cmd, 0);
8550 bf_set(abort_cmd_criteria, &wqe->abort_cmd, T_XRI_TAG);
f0d9bccc
JS
8551 /* word5 iocb=CONTEXT_TAG|IO_TAG wqe=reserved */
8552 wqe->abort_cmd.rsrvd5 = 0;
8553 bf_set(wqe_ct, &wqe->abort_cmd.wqe_com,
4f774513
JS
8554 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
8555 abort_tag = iocbq->iocb.un.acxri.abortIoTag;
4f774513
JS
8556 /*
8557 * The abort handler will send us CMD_ABORT_XRI_CN or
8558 * CMD_CLOSE_XRI_CN and the fw only accepts CMD_ABORT_XRI_CX
8559 */
f0d9bccc
JS
8560 bf_set(wqe_cmnd, &wqe->abort_cmd.wqe_com, CMD_ABORT_XRI_CX);
8561 bf_set(wqe_qosd, &wqe->abort_cmd.wqe_com, 1);
8562 bf_set(wqe_lenloc, &wqe->abort_cmd.wqe_com,
8563 LPFC_WQE_LENLOC_NONE);
4f774513
JS
8564 cmnd = CMD_ABORT_XRI_CX;
8565 command_type = OTHER_COMMAND;
8566 xritag = 0;
7851fe2c 8567 break;
6669f9bb 8568 case CMD_XMIT_BLS_RSP64_CX:
6b5151fd 8569 ndlp = (struct lpfc_nodelist *)iocbq->context1;
546fc854 8570 /* As BLS ABTS RSP WQE is very different from other WQEs,
6669f9bb
JS
8571 * we re-construct this WQE here based on information in
8572 * iocbq from scratch.
8573 */
8574 memset(wqe, 0, sizeof(union lpfc_wqe));
5ffc266e 8575 /* OX_ID is invariable to who sent ABTS to CT exchange */
6669f9bb 8576 bf_set(xmit_bls_rsp64_oxid, &wqe->xmit_bls_rsp,
546fc854
JS
8577 bf_get(lpfc_abts_oxid, &iocbq->iocb.un.bls_rsp));
8578 if (bf_get(lpfc_abts_orig, &iocbq->iocb.un.bls_rsp) ==
5ffc266e
JS
8579 LPFC_ABTS_UNSOL_INT) {
8580 /* ABTS sent by initiator to CT exchange, the
8581 * RX_ID field will be filled with the newly
8582 * allocated responder XRI.
8583 */
8584 bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
8585 iocbq->sli4_xritag);
8586 } else {
8587 /* ABTS sent by responder to CT exchange, the
8588 * RX_ID field will be filled with the responder
8589 * RX_ID from ABTS.
8590 */
8591 bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
546fc854 8592 bf_get(lpfc_abts_rxid, &iocbq->iocb.un.bls_rsp));
5ffc266e 8593 }
6669f9bb
JS
8594 bf_set(xmit_bls_rsp64_seqcnthi, &wqe->xmit_bls_rsp, 0xffff);
8595 bf_set(wqe_xmit_bls_pt, &wqe->xmit_bls_rsp.wqe_dest, 0x1);
6b5151fd
JS
8596
8597 /* Use CT=VPI */
8598 bf_set(wqe_els_did, &wqe->xmit_bls_rsp.wqe_dest,
8599 ndlp->nlp_DID);
8600 bf_set(xmit_bls_rsp64_temprpi, &wqe->xmit_bls_rsp,
8601 iocbq->iocb.ulpContext);
8602 bf_set(wqe_ct, &wqe->xmit_bls_rsp.wqe_com, 1);
6669f9bb 8603 bf_set(wqe_ctxt_tag, &wqe->xmit_bls_rsp.wqe_com,
6b5151fd 8604 phba->vpi_ids[phba->pport->vpi]);
f0d9bccc
JS
8605 bf_set(wqe_qosd, &wqe->xmit_bls_rsp.wqe_com, 1);
8606 bf_set(wqe_lenloc, &wqe->xmit_bls_rsp.wqe_com,
8607 LPFC_WQE_LENLOC_NONE);
6669f9bb
JS
8608 /* Overwrite the pre-set comnd type with OTHER_COMMAND */
8609 command_type = OTHER_COMMAND;
546fc854
JS
8610 if (iocbq->iocb.un.xseq64.w5.hcsw.Rctl == FC_RCTL_BA_RJT) {
8611 bf_set(xmit_bls_rsp64_rjt_vspec, &wqe->xmit_bls_rsp,
8612 bf_get(lpfc_vndr_code, &iocbq->iocb.un.bls_rsp));
8613 bf_set(xmit_bls_rsp64_rjt_expc, &wqe->xmit_bls_rsp,
8614 bf_get(lpfc_rsn_expln, &iocbq->iocb.un.bls_rsp));
8615 bf_set(xmit_bls_rsp64_rjt_rsnc, &wqe->xmit_bls_rsp,
8616 bf_get(lpfc_rsn_code, &iocbq->iocb.un.bls_rsp));
8617 }
8618
7851fe2c 8619 break;
4f774513
JS
8620 case CMD_XRI_ABORTED_CX:
8621 case CMD_CREATE_XRI_CR: /* Do we expect to use this? */
4f774513
JS
8622 case CMD_IOCB_FCP_IBIDIR64_CR: /* bidirectional xfer */
8623 case CMD_FCP_TSEND64_CX: /* Target mode send xfer-ready */
8624 case CMD_FCP_TRSP64_CX: /* Target mode rcv */
8625 case CMD_FCP_AUTO_TRSP_CX: /* Auto target rsp */
8626 default:
8627 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8628 "2014 Invalid command 0x%x\n",
8629 iocbq->iocb.ulpCommand);
8630 return IOCB_ERROR;
7851fe2c 8631 break;
4f774513 8632 }
6d368e53 8633
8012cc38
JS
8634 if (iocbq->iocb_flag & LPFC_IO_DIF_PASS)
8635 bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_PASSTHRU);
8636 else if (iocbq->iocb_flag & LPFC_IO_DIF_STRIP)
8637 bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_STRIP);
8638 else if (iocbq->iocb_flag & LPFC_IO_DIF_INSERT)
8639 bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_INSERT);
8640 iocbq->iocb_flag &= ~(LPFC_IO_DIF_PASS | LPFC_IO_DIF_STRIP |
8641 LPFC_IO_DIF_INSERT);
f0d9bccc
JS
8642 bf_set(wqe_xri_tag, &wqe->generic.wqe_com, xritag);
8643 bf_set(wqe_reqtag, &wqe->generic.wqe_com, iocbq->iotag);
8644 wqe->generic.wqe_com.abort_tag = abort_tag;
8645 bf_set(wqe_cmd_type, &wqe->generic.wqe_com, command_type);
8646 bf_set(wqe_cmnd, &wqe->generic.wqe_com, cmnd);
8647 bf_set(wqe_class, &wqe->generic.wqe_com, iocbq->iocb.ulpClass);
8648 bf_set(wqe_cqid, &wqe->generic.wqe_com, LPFC_WQE_CQ_ID_DEFAULT);
4f774513
JS
8649 return 0;
8650}
8651
8652/**
8653 * __lpfc_sli_issue_iocb_s4 - SLI4 device lockless ver of lpfc_sli_issue_iocb
8654 * @phba: Pointer to HBA context object.
8655 * @ring_number: SLI ring number to issue iocb on.
8656 * @piocb: Pointer to command iocb.
8657 * @flag: Flag indicating if this command can be put into txq.
8658 *
8659 * __lpfc_sli_issue_iocb_s4 is used by other functions in the driver to issue
8660 * an iocb command to an HBA with SLI-4 interface spec.
8661 *
8662 * This function is called with hbalock held. The function will return success
8663 * after it successfully submit the iocb to firmware or after adding to the
8664 * txq.
8665 **/
8666static int
8667__lpfc_sli_issue_iocb_s4(struct lpfc_hba *phba, uint32_t ring_number,
8668 struct lpfc_iocbq *piocb, uint32_t flag)
8669{
8670 struct lpfc_sglq *sglq;
4f774513 8671 union lpfc_wqe wqe;
1ba981fd 8672 struct lpfc_queue *wq;
4f774513 8673 struct lpfc_sli_ring *pring = &phba->sli.ring[ring_number];
4f774513
JS
8674
8675 if (piocb->sli4_xritag == NO_XRI) {
8676 if (piocb->iocb.ulpCommand == CMD_ABORT_XRI_CN ||
6b5151fd 8677 piocb->iocb.ulpCommand == CMD_CLOSE_XRI_CN)
4f774513
JS
8678 sglq = NULL;
8679 else {
0e9bb8d7 8680 if (!list_empty(&pring->txq)) {
2a9bf3d0
JS
8681 if (!(flag & SLI_IOCB_RET_IOCB)) {
8682 __lpfc_sli_ringtx_put(phba,
8683 pring, piocb);
8684 return IOCB_SUCCESS;
8685 } else {
8686 return IOCB_BUSY;
8687 }
8688 } else {
6d368e53 8689 sglq = __lpfc_sli_get_sglq(phba, piocb);
2a9bf3d0
JS
8690 if (!sglq) {
8691 if (!(flag & SLI_IOCB_RET_IOCB)) {
8692 __lpfc_sli_ringtx_put(phba,
8693 pring,
8694 piocb);
8695 return IOCB_SUCCESS;
8696 } else
8697 return IOCB_BUSY;
8698 }
8699 }
4f774513
JS
8700 }
8701 } else if (piocb->iocb_flag & LPFC_IO_FCP) {
6d368e53
JS
8702 /* These IO's already have an XRI and a mapped sgl. */
8703 sglq = NULL;
4f774513 8704 } else {
6d368e53
JS
8705 /*
8706 * This is a continuation of a commandi,(CX) so this
4f774513
JS
8707 * sglq is on the active list
8708 */
edccdc17 8709 sglq = __lpfc_get_active_sglq(phba, piocb->sli4_lxritag);
4f774513
JS
8710 if (!sglq)
8711 return IOCB_ERROR;
8712 }
8713
8714 if (sglq) {
6d368e53 8715 piocb->sli4_lxritag = sglq->sli4_lxritag;
2a9bf3d0 8716 piocb->sli4_xritag = sglq->sli4_xritag;
2a9bf3d0 8717 if (NO_XRI == lpfc_sli4_bpl2sgl(phba, piocb, sglq))
4f774513
JS
8718 return IOCB_ERROR;
8719 }
8720
8721 if (lpfc_sli4_iocb2wqe(phba, piocb, &wqe))
8722 return IOCB_ERROR;
8723
341af102 8724 if ((piocb->iocb_flag & LPFC_IO_FCP) ||
1ba981fd 8725 (piocb->iocb_flag & LPFC_USE_FCPWQIDX)) {
f38fa0bb 8726 if (!phba->cfg_fof || (!(piocb->iocb_flag & LPFC_IO_OAS))) {
1ba981fd
JS
8727 wq = phba->sli4_hba.fcp_wq[piocb->fcp_wqidx];
8728 } else {
8729 wq = phba->sli4_hba.oas_wq;
8730 }
8731 if (lpfc_sli4_wq_put(wq, &wqe))
4f774513
JS
8732 return IOCB_ERROR;
8733 } else {
ea714f3d
JS
8734 if (unlikely(!phba->sli4_hba.els_wq))
8735 return IOCB_ERROR;
4f774513
JS
8736 if (lpfc_sli4_wq_put(phba->sli4_hba.els_wq, &wqe))
8737 return IOCB_ERROR;
8738 }
8739 lpfc_sli_ringtxcmpl_put(phba, pring, piocb);
8740
8741 return 0;
8742}
8743
8744/**
8745 * __lpfc_sli_issue_iocb - Wrapper func of lockless version for issuing iocb
8746 *
8747 * This routine wraps the actual lockless version for issusing IOCB function
8748 * pointer from the lpfc_hba struct.
8749 *
8750 * Return codes:
8751 * IOCB_ERROR - Error
8752 * IOCB_SUCCESS - Success
8753 * IOCB_BUSY - Busy
8754 **/
2a9bf3d0 8755int
4f774513
JS
8756__lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
8757 struct lpfc_iocbq *piocb, uint32_t flag)
8758{
8759 return phba->__lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
8760}
8761
8762/**
25985edc 8763 * lpfc_sli_api_table_setup - Set up sli api function jump table
4f774513
JS
8764 * @phba: The hba struct for which this call is being executed.
8765 * @dev_grp: The HBA PCI-Device group number.
8766 *
8767 * This routine sets up the SLI interface API function jump table in @phba
8768 * struct.
8769 * Returns: 0 - success, -ENODEV - failure.
8770 **/
8771int
8772lpfc_sli_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
8773{
8774
8775 switch (dev_grp) {
8776 case LPFC_PCI_DEV_LP:
8777 phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s3;
8778 phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s3;
8779 break;
8780 case LPFC_PCI_DEV_OC:
8781 phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s4;
8782 phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s4;
8783 break;
8784 default:
8785 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8786 "1419 Invalid HBA PCI-device group: 0x%x\n",
8787 dev_grp);
8788 return -ENODEV;
8789 break;
8790 }
8791 phba->lpfc_get_iocb_from_iocbq = lpfc_get_iocb_from_iocbq;
8792 return 0;
8793}
8794
a1efe163
JS
8795/**
8796 * lpfc_sli_calc_ring - Calculates which ring to use
8797 * @phba: Pointer to HBA context object.
8798 * @ring_number: Initial ring
8799 * @piocb: Pointer to command iocb.
8800 *
8801 * For SLI4, FCP IO can deferred to one fo many WQs, based on
8802 * fcp_wqidx, thus we need to calculate the corresponding ring.
8803 * Since ABORTS must go on the same WQ of the command they are
8804 * aborting, we use command's fcp_wqidx.
8805 */
9bd2bff5
JS
8806int
8807lpfc_sli_calc_ring(struct lpfc_hba *phba, uint32_t ring_number,
8808 struct lpfc_iocbq *piocb)
8809{
9bd2bff5
JS
8810 if (phba->sli_rev == LPFC_SLI_REV4) {
8811 if (piocb->iocb_flag & (LPFC_IO_FCP | LPFC_USE_FCPWQIDX)) {
9bd2bff5
JS
8812 if (!(phba->cfg_fof) ||
8813 (!(piocb->iocb_flag & LPFC_IO_FOF))) {
8814 if (unlikely(!phba->sli4_hba.fcp_wq))
8815 return LPFC_HBA_ERROR;
a1efe163
JS
8816 /*
8817 * for abort iocb fcp_wqidx should already
8818 * be setup based on what work queue we used.
8819 */
8820 if (!(piocb->iocb_flag & LPFC_USE_FCPWQIDX))
8821 piocb->fcp_wqidx =
8822 lpfc_sli4_scmd_to_wqidx_distr(phba);
8823 ring_number = MAX_SLI3_CONFIGURED_RINGS +
8824 piocb->fcp_wqidx;
9bd2bff5
JS
8825 } else {
8826 if (unlikely(!phba->sli4_hba.oas_wq))
8827 return LPFC_HBA_ERROR;
a1efe163 8828 piocb->fcp_wqidx = 0;
9bd2bff5
JS
8829 ring_number = LPFC_FCP_OAS_RING;
8830 }
8831 }
8832 }
8833 return ring_number;
8834}
8835
4f774513
JS
8836/**
8837 * lpfc_sli_issue_iocb - Wrapper function for __lpfc_sli_issue_iocb
8838 * @phba: Pointer to HBA context object.
8839 * @pring: Pointer to driver SLI ring object.
8840 * @piocb: Pointer to command iocb.
8841 * @flag: Flag indicating if this command can be put into txq.
8842 *
8843 * lpfc_sli_issue_iocb is a wrapper around __lpfc_sli_issue_iocb
8844 * function. This function gets the hbalock and calls
8845 * __lpfc_sli_issue_iocb function and will return the error returned
8846 * by __lpfc_sli_issue_iocb function. This wrapper is used by
8847 * functions which do not hold hbalock.
8848 **/
8849int
8850lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
8851 struct lpfc_iocbq *piocb, uint32_t flag)
8852{
ba20c853 8853 struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
2a76a283 8854 struct lpfc_sli_ring *pring;
ba20c853
JS
8855 struct lpfc_queue *fpeq;
8856 struct lpfc_eqe *eqe;
4f774513 8857 unsigned long iflags;
2a76a283 8858 int rc, idx;
4f774513 8859
7e56aa25 8860 if (phba->sli_rev == LPFC_SLI_REV4) {
9bd2bff5
JS
8861 ring_number = lpfc_sli_calc_ring(phba, ring_number, piocb);
8862 if (unlikely(ring_number == LPFC_HBA_ERROR))
8863 return IOCB_ERROR;
8864 idx = piocb->fcp_wqidx;
ba20c853 8865
9bd2bff5
JS
8866 pring = &phba->sli.ring[ring_number];
8867 spin_lock_irqsave(&pring->ring_lock, iflags);
8868 rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
8869 spin_unlock_irqrestore(&pring->ring_lock, iflags);
ba20c853 8870
9bd2bff5
JS
8871 if (lpfc_fcp_look_ahead && (piocb->iocb_flag & LPFC_IO_FCP)) {
8872 fcp_eq_hdl = &phba->sli4_hba.fcp_eq_hdl[idx];
4f774513 8873
9bd2bff5
JS
8874 if (atomic_dec_and_test(&fcp_eq_hdl->
8875 fcp_eq_in_use)) {
ba20c853 8876
9bd2bff5
JS
8877 /* Get associated EQ with this index */
8878 fpeq = phba->sli4_hba.hba_eq[idx];
ba20c853 8879
9bd2bff5
JS
8880 /* Turn off interrupts from this EQ */
8881 lpfc_sli4_eq_clr_intr(fpeq);
ba20c853 8882
9bd2bff5
JS
8883 /*
8884 * Process all the events on FCP EQ
8885 */
8886 while ((eqe = lpfc_sli4_eq_get(fpeq))) {
8887 lpfc_sli4_hba_handle_eqe(phba,
8888 eqe, idx);
8889 fpeq->EQ_processed++;
ba20c853 8890 }
ba20c853 8891
9bd2bff5
JS
8892 /* Always clear and re-arm the EQ */
8893 lpfc_sli4_eq_release(fpeq,
8894 LPFC_QUEUE_REARM);
8895 }
8896 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
2a76a283 8897 }
7e56aa25
JS
8898 } else {
8899 /* For now, SLI2/3 will still use hbalock */
8900 spin_lock_irqsave(&phba->hbalock, iflags);
8901 rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
8902 spin_unlock_irqrestore(&phba->hbalock, iflags);
8903 }
4f774513
JS
8904 return rc;
8905}
8906
8907/**
8908 * lpfc_extra_ring_setup - Extra ring setup function
8909 * @phba: Pointer to HBA context object.
8910 *
8911 * This function is called while driver attaches with the
8912 * HBA to setup the extra ring. The extra ring is used
8913 * only when driver needs to support target mode functionality
8914 * or IP over FC functionalities.
8915 *
8916 * This function is called with no lock held.
8917 **/
8918static int
8919lpfc_extra_ring_setup( struct lpfc_hba *phba)
8920{
8921 struct lpfc_sli *psli;
8922 struct lpfc_sli_ring *pring;
8923
8924 psli = &phba->sli;
8925
8926 /* Adjust cmd/rsp ring iocb entries more evenly */
8927
8928 /* Take some away from the FCP ring */
8929 pring = &psli->ring[psli->fcp_ring];
7e56aa25
JS
8930 pring->sli.sli3.numCiocb -= SLI2_IOCB_CMD_R1XTRA_ENTRIES;
8931 pring->sli.sli3.numRiocb -= SLI2_IOCB_RSP_R1XTRA_ENTRIES;
8932 pring->sli.sli3.numCiocb -= SLI2_IOCB_CMD_R3XTRA_ENTRIES;
8933 pring->sli.sli3.numRiocb -= SLI2_IOCB_RSP_R3XTRA_ENTRIES;
cf5bf97e 8934
a4bc3379
JS
8935 /* and give them to the extra ring */
8936 pring = &psli->ring[psli->extra_ring];
8937
7e56aa25
JS
8938 pring->sli.sli3.numCiocb += SLI2_IOCB_CMD_R1XTRA_ENTRIES;
8939 pring->sli.sli3.numRiocb += SLI2_IOCB_RSP_R1XTRA_ENTRIES;
8940 pring->sli.sli3.numCiocb += SLI2_IOCB_CMD_R3XTRA_ENTRIES;
8941 pring->sli.sli3.numRiocb += SLI2_IOCB_RSP_R3XTRA_ENTRIES;
cf5bf97e
JW
8942
8943 /* Setup default profile for this ring */
8944 pring->iotag_max = 4096;
8945 pring->num_mask = 1;
8946 pring->prt[0].profile = 0; /* Mask 0 */
a4bc3379
JS
8947 pring->prt[0].rctl = phba->cfg_multi_ring_rctl;
8948 pring->prt[0].type = phba->cfg_multi_ring_type;
cf5bf97e
JW
8949 pring->prt[0].lpfc_sli_rcv_unsol_event = NULL;
8950 return 0;
8951}
8952
cb69f7de
JS
8953/* lpfc_sli_abts_err_handler - handle a failed ABTS request from an SLI3 port.
8954 * @phba: Pointer to HBA context object.
8955 * @iocbq: Pointer to iocb object.
8956 *
8957 * The async_event handler calls this routine when it receives
8958 * an ASYNC_STATUS_CN event from the port. The port generates
8959 * this event when an Abort Sequence request to an rport fails
8960 * twice in succession. The abort could be originated by the
8961 * driver or by the port. The ABTS could have been for an ELS
8962 * or FCP IO. The port only generates this event when an ABTS
8963 * fails to complete after one retry.
8964 */
8965static void
8966lpfc_sli_abts_err_handler(struct lpfc_hba *phba,
8967 struct lpfc_iocbq *iocbq)
8968{
8969 struct lpfc_nodelist *ndlp = NULL;
8970 uint16_t rpi = 0, vpi = 0;
8971 struct lpfc_vport *vport = NULL;
8972
8973 /* The rpi in the ulpContext is vport-sensitive. */
8974 vpi = iocbq->iocb.un.asyncstat.sub_ctxt_tag;
8975 rpi = iocbq->iocb.ulpContext;
8976
8977 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
8978 "3092 Port generated ABTS async event "
8979 "on vpi %d rpi %d status 0x%x\n",
8980 vpi, rpi, iocbq->iocb.ulpStatus);
8981
8982 vport = lpfc_find_vport_by_vpid(phba, vpi);
8983 if (!vport)
8984 goto err_exit;
8985 ndlp = lpfc_findnode_rpi(vport, rpi);
8986 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
8987 goto err_exit;
8988
8989 if (iocbq->iocb.ulpStatus == IOSTAT_LOCAL_REJECT)
8990 lpfc_sli_abts_recover_port(vport, ndlp);
8991 return;
8992
8993 err_exit:
8994 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
8995 "3095 Event Context not found, no "
8996 "action on vpi %d rpi %d status 0x%x, reason 0x%x\n",
8997 iocbq->iocb.ulpContext, iocbq->iocb.ulpStatus,
8998 vpi, rpi);
8999}
9000
9001/* lpfc_sli4_abts_err_handler - handle a failed ABTS request from an SLI4 port.
9002 * @phba: pointer to HBA context object.
9003 * @ndlp: nodelist pointer for the impacted rport.
9004 * @axri: pointer to the wcqe containing the failed exchange.
9005 *
9006 * The driver calls this routine when it receives an ABORT_XRI_FCP CQE from the
9007 * port. The port generates this event when an abort exchange request to an
9008 * rport fails twice in succession with no reply. The abort could be originated
9009 * by the driver or by the port. The ABTS could have been for an ELS or FCP IO.
9010 */
9011void
9012lpfc_sli4_abts_err_handler(struct lpfc_hba *phba,
9013 struct lpfc_nodelist *ndlp,
9014 struct sli4_wcqe_xri_aborted *axri)
9015{
9016 struct lpfc_vport *vport;
5c1db2ac 9017 uint32_t ext_status = 0;
cb69f7de 9018
6b5151fd 9019 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
cb69f7de
JS
9020 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
9021 "3115 Node Context not found, driver "
9022 "ignoring abts err event\n");
6b5151fd
JS
9023 return;
9024 }
9025
cb69f7de
JS
9026 vport = ndlp->vport;
9027 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
9028 "3116 Port generated FCP XRI ABORT event on "
5c1db2ac 9029 "vpi %d rpi %d xri x%x status 0x%x parameter x%x\n",
8e668af5 9030 ndlp->vport->vpi, phba->sli4_hba.rpi_ids[ndlp->nlp_rpi],
cb69f7de 9031 bf_get(lpfc_wcqe_xa_xri, axri),
5c1db2ac
JS
9032 bf_get(lpfc_wcqe_xa_status, axri),
9033 axri->parameter);
cb69f7de 9034
5c1db2ac
JS
9035 /*
9036 * Catch the ABTS protocol failure case. Older OCe FW releases returned
9037 * LOCAL_REJECT and 0 for a failed ABTS exchange and later OCe and
9038 * LPe FW releases returned LOCAL_REJECT and SEQUENCE_TIMEOUT.
9039 */
e3d2b802 9040 ext_status = axri->parameter & IOERR_PARAM_MASK;
5c1db2ac
JS
9041 if ((bf_get(lpfc_wcqe_xa_status, axri) == IOSTAT_LOCAL_REJECT) &&
9042 ((ext_status == IOERR_SEQUENCE_TIMEOUT) || (ext_status == 0)))
cb69f7de
JS
9043 lpfc_sli_abts_recover_port(vport, ndlp);
9044}
9045
e59058c4 9046/**
3621a710 9047 * lpfc_sli_async_event_handler - ASYNC iocb handler function
e59058c4
JS
9048 * @phba: Pointer to HBA context object.
9049 * @pring: Pointer to driver SLI ring object.
9050 * @iocbq: Pointer to iocb object.
9051 *
9052 * This function is called by the slow ring event handler
9053 * function when there is an ASYNC event iocb in the ring.
9054 * This function is called with no lock held.
9055 * Currently this function handles only temperature related
9056 * ASYNC events. The function decodes the temperature sensor
9057 * event message and posts events for the management applications.
9058 **/
98c9ea5c 9059static void
57127f15
JS
9060lpfc_sli_async_event_handler(struct lpfc_hba * phba,
9061 struct lpfc_sli_ring * pring, struct lpfc_iocbq * iocbq)
9062{
9063 IOCB_t *icmd;
9064 uint16_t evt_code;
57127f15
JS
9065 struct temp_event temp_event_data;
9066 struct Scsi_Host *shost;
a257bf90 9067 uint32_t *iocb_w;
57127f15
JS
9068
9069 icmd = &iocbq->iocb;
9070 evt_code = icmd->un.asyncstat.evt_code;
57127f15 9071
cb69f7de
JS
9072 switch (evt_code) {
9073 case ASYNC_TEMP_WARN:
9074 case ASYNC_TEMP_SAFE:
9075 temp_event_data.data = (uint32_t) icmd->ulpContext;
9076 temp_event_data.event_type = FC_REG_TEMPERATURE_EVENT;
9077 if (evt_code == ASYNC_TEMP_WARN) {
9078 temp_event_data.event_code = LPFC_THRESHOLD_TEMP;
9079 lpfc_printf_log(phba, KERN_ERR, LOG_TEMP,
9080 "0347 Adapter is very hot, please take "
9081 "corrective action. temperature : %d Celsius\n",
9082 (uint32_t) icmd->ulpContext);
9083 } else {
9084 temp_event_data.event_code = LPFC_NORMAL_TEMP;
9085 lpfc_printf_log(phba, KERN_ERR, LOG_TEMP,
9086 "0340 Adapter temperature is OK now. "
9087 "temperature : %d Celsius\n",
9088 (uint32_t) icmd->ulpContext);
9089 }
9090
9091 /* Send temperature change event to applications */
9092 shost = lpfc_shost_from_vport(phba->pport);
9093 fc_host_post_vendor_event(shost, fc_get_event_number(),
9094 sizeof(temp_event_data), (char *) &temp_event_data,
9095 LPFC_NL_VENDOR_ID);
9096 break;
9097 case ASYNC_STATUS_CN:
9098 lpfc_sli_abts_err_handler(phba, iocbq);
9099 break;
9100 default:
a257bf90 9101 iocb_w = (uint32_t *) icmd;
cb69f7de 9102 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
76bb24ef 9103 "0346 Ring %d handler: unexpected ASYNC_STATUS"
e4e74273 9104 " evt_code 0x%x\n"
a257bf90
JS
9105 "W0 0x%08x W1 0x%08x W2 0x%08x W3 0x%08x\n"
9106 "W4 0x%08x W5 0x%08x W6 0x%08x W7 0x%08x\n"
9107 "W8 0x%08x W9 0x%08x W10 0x%08x W11 0x%08x\n"
9108 "W12 0x%08x W13 0x%08x W14 0x%08x W15 0x%08x\n",
cb69f7de 9109 pring->ringno, icmd->un.asyncstat.evt_code,
a257bf90
JS
9110 iocb_w[0], iocb_w[1], iocb_w[2], iocb_w[3],
9111 iocb_w[4], iocb_w[5], iocb_w[6], iocb_w[7],
9112 iocb_w[8], iocb_w[9], iocb_w[10], iocb_w[11],
9113 iocb_w[12], iocb_w[13], iocb_w[14], iocb_w[15]);
9114
cb69f7de 9115 break;
57127f15 9116 }
57127f15
JS
9117}
9118
9119
e59058c4 9120/**
3621a710 9121 * lpfc_sli_setup - SLI ring setup function
e59058c4
JS
9122 * @phba: Pointer to HBA context object.
9123 *
9124 * lpfc_sli_setup sets up rings of the SLI interface with
9125 * number of iocbs per ring and iotags. This function is
9126 * called while driver attach to the HBA and before the
9127 * interrupts are enabled. So there is no need for locking.
9128 *
9129 * This function always returns 0.
9130 **/
dea3101e
JB
9131int
9132lpfc_sli_setup(struct lpfc_hba *phba)
9133{
ed957684 9134 int i, totiocbsize = 0;
dea3101e
JB
9135 struct lpfc_sli *psli = &phba->sli;
9136 struct lpfc_sli_ring *pring;
9137
2a76a283
JS
9138 psli->num_rings = MAX_SLI3_CONFIGURED_RINGS;
9139 if (phba->sli_rev == LPFC_SLI_REV4)
67d12733 9140 psli->num_rings += phba->cfg_fcp_io_channel;
dea3101e
JB
9141 psli->sli_flag = 0;
9142 psli->fcp_ring = LPFC_FCP_RING;
9143 psli->next_ring = LPFC_FCP_NEXT_RING;
a4bc3379 9144 psli->extra_ring = LPFC_EXTRA_RING;
dea3101e 9145
604a3e30
JB
9146 psli->iocbq_lookup = NULL;
9147 psli->iocbq_lookup_len = 0;
9148 psli->last_iotag = 0;
9149
dea3101e
JB
9150 for (i = 0; i < psli->num_rings; i++) {
9151 pring = &psli->ring[i];
9152 switch (i) {
9153 case LPFC_FCP_RING: /* ring 0 - FCP */
9154 /* numCiocb and numRiocb are used in config_port */
7e56aa25
JS
9155 pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R0_ENTRIES;
9156 pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R0_ENTRIES;
9157 pring->sli.sli3.numCiocb +=
9158 SLI2_IOCB_CMD_R1XTRA_ENTRIES;
9159 pring->sli.sli3.numRiocb +=
9160 SLI2_IOCB_RSP_R1XTRA_ENTRIES;
9161 pring->sli.sli3.numCiocb +=
9162 SLI2_IOCB_CMD_R3XTRA_ENTRIES;
9163 pring->sli.sli3.numRiocb +=
9164 SLI2_IOCB_RSP_R3XTRA_ENTRIES;
9165 pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
92d7f7b0
JS
9166 SLI3_IOCB_CMD_SIZE :
9167 SLI2_IOCB_CMD_SIZE;
7e56aa25 9168 pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
92d7f7b0
JS
9169 SLI3_IOCB_RSP_SIZE :
9170 SLI2_IOCB_RSP_SIZE;
dea3101e
JB
9171 pring->iotag_ctr = 0;
9172 pring->iotag_max =
92d7f7b0 9173 (phba->cfg_hba_queue_depth * 2);
dea3101e
JB
9174 pring->fast_iotag = pring->iotag_max;
9175 pring->num_mask = 0;
9176 break;
a4bc3379 9177 case LPFC_EXTRA_RING: /* ring 1 - EXTRA */
dea3101e 9178 /* numCiocb and numRiocb are used in config_port */
7e56aa25
JS
9179 pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R1_ENTRIES;
9180 pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R1_ENTRIES;
9181 pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
92d7f7b0
JS
9182 SLI3_IOCB_CMD_SIZE :
9183 SLI2_IOCB_CMD_SIZE;
7e56aa25 9184 pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
92d7f7b0
JS
9185 SLI3_IOCB_RSP_SIZE :
9186 SLI2_IOCB_RSP_SIZE;
2e0fef85 9187 pring->iotag_max = phba->cfg_hba_queue_depth;
dea3101e
JB
9188 pring->num_mask = 0;
9189 break;
9190 case LPFC_ELS_RING: /* ring 2 - ELS / CT */
9191 /* numCiocb and numRiocb are used in config_port */
7e56aa25
JS
9192 pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R2_ENTRIES;
9193 pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R2_ENTRIES;
9194 pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
92d7f7b0
JS
9195 SLI3_IOCB_CMD_SIZE :
9196 SLI2_IOCB_CMD_SIZE;
7e56aa25 9197 pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
92d7f7b0
JS
9198 SLI3_IOCB_RSP_SIZE :
9199 SLI2_IOCB_RSP_SIZE;
dea3101e
JB
9200 pring->fast_iotag = 0;
9201 pring->iotag_ctr = 0;
9202 pring->iotag_max = 4096;
57127f15
JS
9203 pring->lpfc_sli_rcv_async_status =
9204 lpfc_sli_async_event_handler;
6669f9bb 9205 pring->num_mask = LPFC_MAX_RING_MASK;
dea3101e 9206 pring->prt[0].profile = 0; /* Mask 0 */
6a9c52cf
JS
9207 pring->prt[0].rctl = FC_RCTL_ELS_REQ;
9208 pring->prt[0].type = FC_TYPE_ELS;
dea3101e 9209 pring->prt[0].lpfc_sli_rcv_unsol_event =
92d7f7b0 9210 lpfc_els_unsol_event;
dea3101e 9211 pring->prt[1].profile = 0; /* Mask 1 */
6a9c52cf
JS
9212 pring->prt[1].rctl = FC_RCTL_ELS_REP;
9213 pring->prt[1].type = FC_TYPE_ELS;
dea3101e 9214 pring->prt[1].lpfc_sli_rcv_unsol_event =
92d7f7b0 9215 lpfc_els_unsol_event;
dea3101e
JB
9216 pring->prt[2].profile = 0; /* Mask 2 */
9217 /* NameServer Inquiry */
6a9c52cf 9218 pring->prt[2].rctl = FC_RCTL_DD_UNSOL_CTL;
dea3101e 9219 /* NameServer */
6a9c52cf 9220 pring->prt[2].type = FC_TYPE_CT;
dea3101e 9221 pring->prt[2].lpfc_sli_rcv_unsol_event =
92d7f7b0 9222 lpfc_ct_unsol_event;
dea3101e
JB
9223 pring->prt[3].profile = 0; /* Mask 3 */
9224 /* NameServer response */
6a9c52cf 9225 pring->prt[3].rctl = FC_RCTL_DD_SOL_CTL;
dea3101e 9226 /* NameServer */
6a9c52cf 9227 pring->prt[3].type = FC_TYPE_CT;
dea3101e 9228 pring->prt[3].lpfc_sli_rcv_unsol_event =
92d7f7b0 9229 lpfc_ct_unsol_event;
dea3101e
JB
9230 break;
9231 }
7e56aa25
JS
9232 totiocbsize += (pring->sli.sli3.numCiocb *
9233 pring->sli.sli3.sizeCiocb) +
9234 (pring->sli.sli3.numRiocb * pring->sli.sli3.sizeRiocb);
dea3101e 9235 }
ed957684 9236 if (totiocbsize > MAX_SLIM_IOCB_SIZE) {
dea3101e 9237 /* Too many cmd / rsp ring entries in SLI2 SLIM */
e8b62011
JS
9238 printk(KERN_ERR "%d:0462 Too many cmd / rsp ring entries in "
9239 "SLI2 SLIM Data: x%x x%lx\n",
9240 phba->brd_no, totiocbsize,
9241 (unsigned long) MAX_SLIM_IOCB_SIZE);
dea3101e 9242 }
cf5bf97e
JW
9243 if (phba->cfg_multi_ring_support == 2)
9244 lpfc_extra_ring_setup(phba);
dea3101e
JB
9245
9246 return 0;
9247}
9248
e59058c4 9249/**
3621a710 9250 * lpfc_sli_queue_setup - Queue initialization function
e59058c4
JS
9251 * @phba: Pointer to HBA context object.
9252 *
9253 * lpfc_sli_queue_setup sets up mailbox queues and iocb queues for each
9254 * ring. This function also initializes ring indices of each ring.
9255 * This function is called during the initialization of the SLI
9256 * interface of an HBA.
9257 * This function is called with no lock held and always returns
9258 * 1.
9259 **/
dea3101e 9260int
2e0fef85 9261lpfc_sli_queue_setup(struct lpfc_hba *phba)
dea3101e
JB
9262{
9263 struct lpfc_sli *psli;
9264 struct lpfc_sli_ring *pring;
604a3e30 9265 int i;
dea3101e
JB
9266
9267 psli = &phba->sli;
2e0fef85 9268 spin_lock_irq(&phba->hbalock);
dea3101e 9269 INIT_LIST_HEAD(&psli->mboxq);
92d7f7b0 9270 INIT_LIST_HEAD(&psli->mboxq_cmpl);
dea3101e
JB
9271 /* Initialize list headers for txq and txcmplq as double linked lists */
9272 for (i = 0; i < psli->num_rings; i++) {
9273 pring = &psli->ring[i];
9274 pring->ringno = i;
7e56aa25
JS
9275 pring->sli.sli3.next_cmdidx = 0;
9276 pring->sli.sli3.local_getidx = 0;
9277 pring->sli.sli3.cmdidx = 0;
68e814f5 9278 pring->flag = 0;
dea3101e
JB
9279 INIT_LIST_HEAD(&pring->txq);
9280 INIT_LIST_HEAD(&pring->txcmplq);
9281 INIT_LIST_HEAD(&pring->iocb_continueq);
9c2face6 9282 INIT_LIST_HEAD(&pring->iocb_continue_saveq);
dea3101e 9283 INIT_LIST_HEAD(&pring->postbufq);
7e56aa25 9284 spin_lock_init(&pring->ring_lock);
dea3101e 9285 }
2e0fef85
JS
9286 spin_unlock_irq(&phba->hbalock);
9287 return 1;
dea3101e
JB
9288}
9289
04c68496
JS
9290/**
9291 * lpfc_sli_mbox_sys_flush - Flush mailbox command sub-system
9292 * @phba: Pointer to HBA context object.
9293 *
9294 * This routine flushes the mailbox command subsystem. It will unconditionally
9295 * flush all the mailbox commands in the three possible stages in the mailbox
9296 * command sub-system: pending mailbox command queue; the outstanding mailbox
9297 * command; and completed mailbox command queue. It is caller's responsibility
9298 * to make sure that the driver is in the proper state to flush the mailbox
9299 * command sub-system. Namely, the posting of mailbox commands into the
9300 * pending mailbox command queue from the various clients must be stopped;
9301 * either the HBA is in a state that it will never works on the outstanding
9302 * mailbox command (such as in EEH or ERATT conditions) or the outstanding
9303 * mailbox command has been completed.
9304 **/
9305static void
9306lpfc_sli_mbox_sys_flush(struct lpfc_hba *phba)
9307{
9308 LIST_HEAD(completions);
9309 struct lpfc_sli *psli = &phba->sli;
9310 LPFC_MBOXQ_t *pmb;
9311 unsigned long iflag;
9312
9313 /* Flush all the mailbox commands in the mbox system */
9314 spin_lock_irqsave(&phba->hbalock, iflag);
9315 /* The pending mailbox command queue */
9316 list_splice_init(&phba->sli.mboxq, &completions);
9317 /* The outstanding active mailbox command */
9318 if (psli->mbox_active) {
9319 list_add_tail(&psli->mbox_active->list, &completions);
9320 psli->mbox_active = NULL;
9321 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
9322 }
9323 /* The completed mailbox command queue */
9324 list_splice_init(&phba->sli.mboxq_cmpl, &completions);
9325 spin_unlock_irqrestore(&phba->hbalock, iflag);
9326
9327 /* Return all flushed mailbox commands with MBX_NOT_FINISHED status */
9328 while (!list_empty(&completions)) {
9329 list_remove_head(&completions, pmb, LPFC_MBOXQ_t, list);
9330 pmb->u.mb.mbxStatus = MBX_NOT_FINISHED;
9331 if (pmb->mbox_cmpl)
9332 pmb->mbox_cmpl(phba, pmb);
9333 }
9334}
9335
e59058c4 9336/**
3621a710 9337 * lpfc_sli_host_down - Vport cleanup function
e59058c4
JS
9338 * @vport: Pointer to virtual port object.
9339 *
9340 * lpfc_sli_host_down is called to clean up the resources
9341 * associated with a vport before destroying virtual
9342 * port data structures.
9343 * This function does following operations:
9344 * - Free discovery resources associated with this virtual
9345 * port.
9346 * - Free iocbs associated with this virtual port in
9347 * the txq.
9348 * - Send abort for all iocb commands associated with this
9349 * vport in txcmplq.
9350 *
9351 * This function is called with no lock held and always returns 1.
9352 **/
92d7f7b0
JS
9353int
9354lpfc_sli_host_down(struct lpfc_vport *vport)
9355{
858c9f6c 9356 LIST_HEAD(completions);
92d7f7b0
JS
9357 struct lpfc_hba *phba = vport->phba;
9358 struct lpfc_sli *psli = &phba->sli;
9359 struct lpfc_sli_ring *pring;
9360 struct lpfc_iocbq *iocb, *next_iocb;
92d7f7b0
JS
9361 int i;
9362 unsigned long flags = 0;
9363 uint16_t prev_pring_flag;
9364
9365 lpfc_cleanup_discovery_resources(vport);
9366
9367 spin_lock_irqsave(&phba->hbalock, flags);
92d7f7b0
JS
9368 for (i = 0; i < psli->num_rings; i++) {
9369 pring = &psli->ring[i];
9370 prev_pring_flag = pring->flag;
5e9d9b82
JS
9371 /* Only slow rings */
9372 if (pring->ringno == LPFC_ELS_RING) {
858c9f6c 9373 pring->flag |= LPFC_DEFERRED_RING_EVENT;
5e9d9b82
JS
9374 /* Set the lpfc data pending flag */
9375 set_bit(LPFC_DATA_READY, &phba->data_flags);
9376 }
92d7f7b0
JS
9377 /*
9378 * Error everything on the txq since these iocbs have not been
9379 * given to the FW yet.
9380 */
92d7f7b0
JS
9381 list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
9382 if (iocb->vport != vport)
9383 continue;
858c9f6c 9384 list_move_tail(&iocb->list, &completions);
92d7f7b0
JS
9385 }
9386
9387 /* Next issue ABTS for everything on the txcmplq */
9388 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq,
9389 list) {
9390 if (iocb->vport != vport)
9391 continue;
9392 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
9393 }
9394
9395 pring->flag = prev_pring_flag;
9396 }
9397
9398 spin_unlock_irqrestore(&phba->hbalock, flags);
9399
a257bf90
JS
9400 /* Cancel all the IOCBs from the completions list */
9401 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
9402 IOERR_SLI_DOWN);
92d7f7b0
JS
9403 return 1;
9404}
9405
e59058c4 9406/**
3621a710 9407 * lpfc_sli_hba_down - Resource cleanup function for the HBA
e59058c4
JS
9408 * @phba: Pointer to HBA context object.
9409 *
9410 * This function cleans up all iocb, buffers, mailbox commands
9411 * while shutting down the HBA. This function is called with no
9412 * lock held and always returns 1.
9413 * This function does the following to cleanup driver resources:
9414 * - Free discovery resources for each virtual port
9415 * - Cleanup any pending fabric iocbs
9416 * - Iterate through the iocb txq and free each entry
9417 * in the list.
9418 * - Free up any buffer posted to the HBA
9419 * - Free mailbox commands in the mailbox queue.
9420 **/
dea3101e 9421int
2e0fef85 9422lpfc_sli_hba_down(struct lpfc_hba *phba)
dea3101e 9423{
2534ba75 9424 LIST_HEAD(completions);
2e0fef85 9425 struct lpfc_sli *psli = &phba->sli;
dea3101e 9426 struct lpfc_sli_ring *pring;
0ff10d46 9427 struct lpfc_dmabuf *buf_ptr;
dea3101e 9428 unsigned long flags = 0;
04c68496
JS
9429 int i;
9430
9431 /* Shutdown the mailbox command sub-system */
618a5230 9432 lpfc_sli_mbox_sys_shutdown(phba, LPFC_MBX_WAIT);
dea3101e 9433
dea3101e
JB
9434 lpfc_hba_down_prep(phba);
9435
92d7f7b0
JS
9436 lpfc_fabric_abort_hba(phba);
9437
2e0fef85 9438 spin_lock_irqsave(&phba->hbalock, flags);
dea3101e
JB
9439 for (i = 0; i < psli->num_rings; i++) {
9440 pring = &psli->ring[i];
5e9d9b82
JS
9441 /* Only slow rings */
9442 if (pring->ringno == LPFC_ELS_RING) {
858c9f6c 9443 pring->flag |= LPFC_DEFERRED_RING_EVENT;
5e9d9b82
JS
9444 /* Set the lpfc data pending flag */
9445 set_bit(LPFC_DATA_READY, &phba->data_flags);
9446 }
dea3101e
JB
9447
9448 /*
9449 * Error everything on the txq since these iocbs have not been
9450 * given to the FW yet.
9451 */
2534ba75 9452 list_splice_init(&pring->txq, &completions);
2534ba75 9453 }
2e0fef85 9454 spin_unlock_irqrestore(&phba->hbalock, flags);
dea3101e 9455
a257bf90
JS
9456 /* Cancel all the IOCBs from the completions list */
9457 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
9458 IOERR_SLI_DOWN);
dea3101e 9459
0ff10d46
JS
9460 spin_lock_irqsave(&phba->hbalock, flags);
9461 list_splice_init(&phba->elsbuf, &completions);
9462 phba->elsbuf_cnt = 0;
9463 phba->elsbuf_prev_cnt = 0;
9464 spin_unlock_irqrestore(&phba->hbalock, flags);
9465
9466 while (!list_empty(&completions)) {
9467 list_remove_head(&completions, buf_ptr,
9468 struct lpfc_dmabuf, list);
9469 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
9470 kfree(buf_ptr);
9471 }
9472
dea3101e
JB
9473 /* Return any active mbox cmds */
9474 del_timer_sync(&psli->mbox_tmo);
2e0fef85 9475
da0436e9 9476 spin_lock_irqsave(&phba->pport->work_port_lock, flags);
2e0fef85 9477 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
da0436e9 9478 spin_unlock_irqrestore(&phba->pport->work_port_lock, flags);
2e0fef85 9479
da0436e9
JS
9480 return 1;
9481}
9482
e59058c4 9483/**
3621a710 9484 * lpfc_sli_pcimem_bcopy - SLI memory copy function
e59058c4
JS
9485 * @srcp: Source memory pointer.
9486 * @destp: Destination memory pointer.
9487 * @cnt: Number of words required to be copied.
9488 *
9489 * This function is used for copying data between driver memory
9490 * and the SLI memory. This function also changes the endianness
9491 * of each word if native endianness is different from SLI
9492 * endianness. This function can be called with or without
9493 * lock.
9494 **/
dea3101e
JB
9495void
9496lpfc_sli_pcimem_bcopy(void *srcp, void *destp, uint32_t cnt)
9497{
9498 uint32_t *src = srcp;
9499 uint32_t *dest = destp;
9500 uint32_t ldata;
9501 int i;
9502
9503 for (i = 0; i < (int)cnt; i += sizeof (uint32_t)) {
9504 ldata = *src;
9505 ldata = le32_to_cpu(ldata);
9506 *dest = ldata;
9507 src++;
9508 dest++;
9509 }
9510}
9511
e59058c4 9512
a0c87cbd
JS
9513/**
9514 * lpfc_sli_bemem_bcopy - SLI memory copy function
9515 * @srcp: Source memory pointer.
9516 * @destp: Destination memory pointer.
9517 * @cnt: Number of words required to be copied.
9518 *
9519 * This function is used for copying data between a data structure
9520 * with big endian representation to local endianness.
9521 * This function can be called with or without lock.
9522 **/
9523void
9524lpfc_sli_bemem_bcopy(void *srcp, void *destp, uint32_t cnt)
9525{
9526 uint32_t *src = srcp;
9527 uint32_t *dest = destp;
9528 uint32_t ldata;
9529 int i;
9530
9531 for (i = 0; i < (int)cnt; i += sizeof(uint32_t)) {
9532 ldata = *src;
9533 ldata = be32_to_cpu(ldata);
9534 *dest = ldata;
9535 src++;
9536 dest++;
9537 }
9538}
9539
e59058c4 9540/**
3621a710 9541 * lpfc_sli_ringpostbuf_put - Function to add a buffer to postbufq
e59058c4
JS
9542 * @phba: Pointer to HBA context object.
9543 * @pring: Pointer to driver SLI ring object.
9544 * @mp: Pointer to driver buffer object.
9545 *
9546 * This function is called with no lock held.
9547 * It always return zero after adding the buffer to the postbufq
9548 * buffer list.
9549 **/
dea3101e 9550int
2e0fef85
JS
9551lpfc_sli_ringpostbuf_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9552 struct lpfc_dmabuf *mp)
dea3101e
JB
9553{
9554 /* Stick struct lpfc_dmabuf at end of postbufq so driver can look it up
9555 later */
2e0fef85 9556 spin_lock_irq(&phba->hbalock);
dea3101e 9557 list_add_tail(&mp->list, &pring->postbufq);
dea3101e 9558 pring->postbufq_cnt++;
2e0fef85 9559 spin_unlock_irq(&phba->hbalock);
dea3101e
JB
9560 return 0;
9561}
9562
e59058c4 9563/**
3621a710 9564 * lpfc_sli_get_buffer_tag - allocates a tag for a CMD_QUE_XRI64_CX buffer
e59058c4
JS
9565 * @phba: Pointer to HBA context object.
9566 *
9567 * When HBQ is enabled, buffers are searched based on tags. This function
9568 * allocates a tag for buffer posted using CMD_QUE_XRI64_CX iocb. The
9569 * tag is bit wise or-ed with QUE_BUFTAG_BIT to make sure that the tag
9570 * does not conflict with tags of buffer posted for unsolicited events.
9571 * The function returns the allocated tag. The function is called with
9572 * no locks held.
9573 **/
76bb24ef
JS
9574uint32_t
9575lpfc_sli_get_buffer_tag(struct lpfc_hba *phba)
9576{
9577 spin_lock_irq(&phba->hbalock);
9578 phba->buffer_tag_count++;
9579 /*
9580 * Always set the QUE_BUFTAG_BIT to distiguish between
9581 * a tag assigned by HBQ.
9582 */
9583 phba->buffer_tag_count |= QUE_BUFTAG_BIT;
9584 spin_unlock_irq(&phba->hbalock);
9585 return phba->buffer_tag_count;
9586}
9587
e59058c4 9588/**
3621a710 9589 * lpfc_sli_ring_taggedbuf_get - find HBQ buffer associated with given tag
e59058c4
JS
9590 * @phba: Pointer to HBA context object.
9591 * @pring: Pointer to driver SLI ring object.
9592 * @tag: Buffer tag.
9593 *
9594 * Buffers posted using CMD_QUE_XRI64_CX iocb are in pring->postbufq
9595 * list. After HBA DMA data to these buffers, CMD_IOCB_RET_XRI64_CX
9596 * iocb is posted to the response ring with the tag of the buffer.
9597 * This function searches the pring->postbufq list using the tag
9598 * to find buffer associated with CMD_IOCB_RET_XRI64_CX
9599 * iocb. If the buffer is found then lpfc_dmabuf object of the
9600 * buffer is returned to the caller else NULL is returned.
9601 * This function is called with no lock held.
9602 **/
76bb24ef
JS
9603struct lpfc_dmabuf *
9604lpfc_sli_ring_taggedbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9605 uint32_t tag)
9606{
9607 struct lpfc_dmabuf *mp, *next_mp;
9608 struct list_head *slp = &pring->postbufq;
9609
25985edc 9610 /* Search postbufq, from the beginning, looking for a match on tag */
76bb24ef
JS
9611 spin_lock_irq(&phba->hbalock);
9612 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
9613 if (mp->buffer_tag == tag) {
9614 list_del_init(&mp->list);
9615 pring->postbufq_cnt--;
9616 spin_unlock_irq(&phba->hbalock);
9617 return mp;
9618 }
9619 }
9620
9621 spin_unlock_irq(&phba->hbalock);
9622 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
d7c255b2 9623 "0402 Cannot find virtual addr for buffer tag on "
76bb24ef
JS
9624 "ring %d Data x%lx x%p x%p x%x\n",
9625 pring->ringno, (unsigned long) tag,
9626 slp->next, slp->prev, pring->postbufq_cnt);
9627
9628 return NULL;
9629}
dea3101e 9630
e59058c4 9631/**
3621a710 9632 * lpfc_sli_ringpostbuf_get - search buffers for unsolicited CT and ELS events
e59058c4
JS
9633 * @phba: Pointer to HBA context object.
9634 * @pring: Pointer to driver SLI ring object.
9635 * @phys: DMA address of the buffer.
9636 *
9637 * This function searches the buffer list using the dma_address
9638 * of unsolicited event to find the driver's lpfc_dmabuf object
9639 * corresponding to the dma_address. The function returns the
9640 * lpfc_dmabuf object if a buffer is found else it returns NULL.
9641 * This function is called by the ct and els unsolicited event
9642 * handlers to get the buffer associated with the unsolicited
9643 * event.
9644 *
9645 * This function is called with no lock held.
9646 **/
dea3101e
JB
9647struct lpfc_dmabuf *
9648lpfc_sli_ringpostbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9649 dma_addr_t phys)
9650{
9651 struct lpfc_dmabuf *mp, *next_mp;
9652 struct list_head *slp = &pring->postbufq;
9653
25985edc 9654 /* Search postbufq, from the beginning, looking for a match on phys */
2e0fef85 9655 spin_lock_irq(&phba->hbalock);
dea3101e
JB
9656 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
9657 if (mp->phys == phys) {
9658 list_del_init(&mp->list);
9659 pring->postbufq_cnt--;
2e0fef85 9660 spin_unlock_irq(&phba->hbalock);
dea3101e
JB
9661 return mp;
9662 }
9663 }
9664
2e0fef85 9665 spin_unlock_irq(&phba->hbalock);
dea3101e 9666 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 9667 "0410 Cannot find virtual addr for mapped buf on "
dea3101e 9668 "ring %d Data x%llx x%p x%p x%x\n",
e8b62011 9669 pring->ringno, (unsigned long long)phys,
dea3101e
JB
9670 slp->next, slp->prev, pring->postbufq_cnt);
9671 return NULL;
9672}
9673
e59058c4 9674/**
3621a710 9675 * lpfc_sli_abort_els_cmpl - Completion handler for the els abort iocbs
e59058c4
JS
9676 * @phba: Pointer to HBA context object.
9677 * @cmdiocb: Pointer to driver command iocb object.
9678 * @rspiocb: Pointer to driver response iocb object.
9679 *
9680 * This function is the completion handler for the abort iocbs for
9681 * ELS commands. This function is called from the ELS ring event
9682 * handler with no lock held. This function frees memory resources
9683 * associated with the abort iocb.
9684 **/
dea3101e 9685static void
2e0fef85
JS
9686lpfc_sli_abort_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
9687 struct lpfc_iocbq *rspiocb)
dea3101e 9688{
2e0fef85 9689 IOCB_t *irsp = &rspiocb->iocb;
2680eeaa 9690 uint16_t abort_iotag, abort_context;
ff78d8f9 9691 struct lpfc_iocbq *abort_iocb = NULL;
2680eeaa
JS
9692
9693 if (irsp->ulpStatus) {
ff78d8f9
JS
9694
9695 /*
9696 * Assume that the port already completed and returned, or
9697 * will return the iocb. Just Log the message.
9698 */
2680eeaa
JS
9699 abort_context = cmdiocb->iocb.un.acxri.abortContextTag;
9700 abort_iotag = cmdiocb->iocb.un.acxri.abortIoTag;
9701
2e0fef85 9702 spin_lock_irq(&phba->hbalock);
45ed1190
JS
9703 if (phba->sli_rev < LPFC_SLI_REV4) {
9704 if (abort_iotag != 0 &&
9705 abort_iotag <= phba->sli.last_iotag)
9706 abort_iocb =
9707 phba->sli.iocbq_lookup[abort_iotag];
9708 } else
9709 /* For sli4 the abort_tag is the XRI,
9710 * so the abort routine puts the iotag of the iocb
9711 * being aborted in the context field of the abort
9712 * IOCB.
9713 */
9714 abort_iocb = phba->sli.iocbq_lookup[abort_context];
2680eeaa 9715
2a9bf3d0
JS
9716 lpfc_printf_log(phba, KERN_WARNING, LOG_ELS | LOG_SLI,
9717 "0327 Cannot abort els iocb %p "
9718 "with tag %x context %x, abort status %x, "
9719 "abort code %x\n",
9720 abort_iocb, abort_iotag, abort_context,
9721 irsp->ulpStatus, irsp->un.ulpWord[4]);
341af102 9722
ff78d8f9 9723 spin_unlock_irq(&phba->hbalock);
2680eeaa 9724 }
604a3e30 9725 lpfc_sli_release_iocbq(phba, cmdiocb);
dea3101e
JB
9726 return;
9727}
9728
e59058c4 9729/**
3621a710 9730 * lpfc_ignore_els_cmpl - Completion handler for aborted ELS command
e59058c4
JS
9731 * @phba: Pointer to HBA context object.
9732 * @cmdiocb: Pointer to driver command iocb object.
9733 * @rspiocb: Pointer to driver response iocb object.
9734 *
9735 * The function is called from SLI ring event handler with no
9736 * lock held. This function is the completion handler for ELS commands
9737 * which are aborted. The function frees memory resources used for
9738 * the aborted ELS commands.
9739 **/
92d7f7b0
JS
9740static void
9741lpfc_ignore_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
9742 struct lpfc_iocbq *rspiocb)
9743{
9744 IOCB_t *irsp = &rspiocb->iocb;
9745
9746 /* ELS cmd tag <ulpIoTag> completes */
9747 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
d7c255b2 9748 "0139 Ignoring ELS cmd tag x%x completion Data: "
92d7f7b0 9749 "x%x x%x x%x\n",
e8b62011 9750 irsp->ulpIoTag, irsp->ulpStatus,
92d7f7b0 9751 irsp->un.ulpWord[4], irsp->ulpTimeout);
858c9f6c
JS
9752 if (cmdiocb->iocb.ulpCommand == CMD_GEN_REQUEST64_CR)
9753 lpfc_ct_free_iocb(phba, cmdiocb);
9754 else
9755 lpfc_els_free_iocb(phba, cmdiocb);
92d7f7b0
JS
9756 return;
9757}
9758
e59058c4 9759/**
5af5eee7 9760 * lpfc_sli_abort_iotag_issue - Issue abort for a command iocb
e59058c4
JS
9761 * @phba: Pointer to HBA context object.
9762 * @pring: Pointer to driver SLI ring object.
9763 * @cmdiocb: Pointer to driver command iocb object.
9764 *
5af5eee7
JS
9765 * This function issues an abort iocb for the provided command iocb down to
9766 * the port. Other than the case the outstanding command iocb is an abort
9767 * request, this function issues abort out unconditionally. This function is
9768 * called with hbalock held. The function returns 0 when it fails due to
9769 * memory allocation failure or when the command iocb is an abort request.
e59058c4 9770 **/
5af5eee7
JS
9771static int
9772lpfc_sli_abort_iotag_issue(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2e0fef85 9773 struct lpfc_iocbq *cmdiocb)
dea3101e 9774{
2e0fef85 9775 struct lpfc_vport *vport = cmdiocb->vport;
0bd4ca25 9776 struct lpfc_iocbq *abtsiocbp;
dea3101e
JB
9777 IOCB_t *icmd = NULL;
9778 IOCB_t *iabt = NULL;
9bd2bff5 9779 int ring_number;
5af5eee7 9780 int retval;
7e56aa25 9781 unsigned long iflags;
07951076 9782
92d7f7b0
JS
9783 /*
9784 * There are certain command types we don't want to abort. And we
9785 * don't want to abort commands that are already in the process of
9786 * being aborted.
07951076
JS
9787 */
9788 icmd = &cmdiocb->iocb;
2e0fef85 9789 if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
92d7f7b0
JS
9790 icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
9791 (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
07951076
JS
9792 return 0;
9793
dea3101e 9794 /* issue ABTS for this IOCB based on iotag */
92d7f7b0 9795 abtsiocbp = __lpfc_sli_get_iocbq(phba);
dea3101e
JB
9796 if (abtsiocbp == NULL)
9797 return 0;
dea3101e 9798
07951076 9799 /* This signals the response to set the correct status
341af102 9800 * before calling the completion handler
07951076
JS
9801 */
9802 cmdiocb->iocb_flag |= LPFC_DRIVER_ABORTED;
9803
dea3101e 9804 iabt = &abtsiocbp->iocb;
07951076
JS
9805 iabt->un.acxri.abortType = ABORT_TYPE_ABTS;
9806 iabt->un.acxri.abortContextTag = icmd->ulpContext;
45ed1190 9807 if (phba->sli_rev == LPFC_SLI_REV4) {
da0436e9 9808 iabt->un.acxri.abortIoTag = cmdiocb->sli4_xritag;
45ed1190
JS
9809 iabt->un.acxri.abortContextTag = cmdiocb->iotag;
9810 }
da0436e9
JS
9811 else
9812 iabt->un.acxri.abortIoTag = icmd->ulpIoTag;
07951076
JS
9813 iabt->ulpLe = 1;
9814 iabt->ulpClass = icmd->ulpClass;
dea3101e 9815
5ffc266e
JS
9816 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
9817 abtsiocbp->fcp_wqidx = cmdiocb->fcp_wqidx;
341af102
JS
9818 if (cmdiocb->iocb_flag & LPFC_IO_FCP)
9819 abtsiocbp->iocb_flag |= LPFC_USE_FCPWQIDX;
9bd2bff5
JS
9820 if (cmdiocb->iocb_flag & LPFC_IO_FOF)
9821 abtsiocbp->iocb_flag |= LPFC_IO_FOF;
5ffc266e 9822
2e0fef85 9823 if (phba->link_state >= LPFC_LINK_UP)
07951076
JS
9824 iabt->ulpCommand = CMD_ABORT_XRI_CN;
9825 else
9826 iabt->ulpCommand = CMD_CLOSE_XRI_CN;
dea3101e 9827
07951076 9828 abtsiocbp->iocb_cmpl = lpfc_sli_abort_els_cmpl;
5b8bd0c9 9829
e8b62011
JS
9830 lpfc_printf_vlog(vport, KERN_INFO, LOG_SLI,
9831 "0339 Abort xri x%x, original iotag x%x, "
9832 "abort cmd iotag x%x\n",
2a9bf3d0 9833 iabt->un.acxri.abortIoTag,
e8b62011 9834 iabt->un.acxri.abortContextTag,
2a9bf3d0 9835 abtsiocbp->iotag);
7e56aa25
JS
9836
9837 if (phba->sli_rev == LPFC_SLI_REV4) {
9bd2bff5
JS
9838 ring_number =
9839 lpfc_sli_calc_ring(phba, pring->ringno, abtsiocbp);
9840 if (unlikely(ring_number == LPFC_HBA_ERROR))
9841 return 0;
9842 pring = &phba->sli.ring[ring_number];
7e56aa25
JS
9843 /* Note: both hbalock and ring_lock need to be set here */
9844 spin_lock_irqsave(&pring->ring_lock, iflags);
9845 retval = __lpfc_sli_issue_iocb(phba, pring->ringno,
9846 abtsiocbp, 0);
9847 spin_unlock_irqrestore(&pring->ring_lock, iflags);
9848 } else {
9849 retval = __lpfc_sli_issue_iocb(phba, pring->ringno,
9850 abtsiocbp, 0);
9851 }
dea3101e 9852
d7c255b2
JS
9853 if (retval)
9854 __lpfc_sli_release_iocbq(phba, abtsiocbp);
5af5eee7
JS
9855
9856 /*
9857 * Caller to this routine should check for IOCB_ERROR
9858 * and handle it properly. This routine no longer removes
9859 * iocb off txcmplq and call compl in case of IOCB_ERROR.
9860 */
9861 return retval;
9862}
9863
9864/**
9865 * lpfc_sli_issue_abort_iotag - Abort function for a command iocb
9866 * @phba: Pointer to HBA context object.
9867 * @pring: Pointer to driver SLI ring object.
9868 * @cmdiocb: Pointer to driver command iocb object.
9869 *
9870 * This function issues an abort iocb for the provided command iocb. In case
9871 * of unloading, the abort iocb will not be issued to commands on the ELS
9872 * ring. Instead, the callback function shall be changed to those commands
9873 * so that nothing happens when them finishes. This function is called with
9874 * hbalock held. The function returns 0 when the command iocb is an abort
9875 * request.
9876 **/
9877int
9878lpfc_sli_issue_abort_iotag(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9879 struct lpfc_iocbq *cmdiocb)
9880{
9881 struct lpfc_vport *vport = cmdiocb->vport;
9882 int retval = IOCB_ERROR;
9883 IOCB_t *icmd = NULL;
9884
9885 /*
9886 * There are certain command types we don't want to abort. And we
9887 * don't want to abort commands that are already in the process of
9888 * being aborted.
9889 */
9890 icmd = &cmdiocb->iocb;
9891 if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
9892 icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
9893 (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
9894 return 0;
9895
9896 /*
9897 * If we're unloading, don't abort iocb on the ELS ring, but change
9898 * the callback so that nothing happens when it finishes.
9899 */
9900 if ((vport->load_flag & FC_UNLOADING) &&
9901 (pring->ringno == LPFC_ELS_RING)) {
9902 if (cmdiocb->iocb_flag & LPFC_IO_FABRIC)
9903 cmdiocb->fabric_iocb_cmpl = lpfc_ignore_els_cmpl;
9904 else
9905 cmdiocb->iocb_cmpl = lpfc_ignore_els_cmpl;
9906 goto abort_iotag_exit;
9907 }
9908
9909 /* Now, we try to issue the abort to the cmdiocb out */
9910 retval = lpfc_sli_abort_iotag_issue(phba, pring, cmdiocb);
9911
07951076 9912abort_iotag_exit:
2e0fef85
JS
9913 /*
9914 * Caller to this routine should check for IOCB_ERROR
9915 * and handle it properly. This routine no longer removes
9916 * iocb off txcmplq and call compl in case of IOCB_ERROR.
07951076 9917 */
2e0fef85 9918 return retval;
dea3101e
JB
9919}
9920
5af5eee7
JS
9921/**
9922 * lpfc_sli_hba_iocb_abort - Abort all iocbs to an hba.
9923 * @phba: pointer to lpfc HBA data structure.
9924 *
9925 * This routine will abort all pending and outstanding iocbs to an HBA.
9926 **/
9927void
9928lpfc_sli_hba_iocb_abort(struct lpfc_hba *phba)
9929{
9930 struct lpfc_sli *psli = &phba->sli;
9931 struct lpfc_sli_ring *pring;
9932 int i;
9933
9934 for (i = 0; i < psli->num_rings; i++) {
9935 pring = &psli->ring[i];
db55fba8 9936 lpfc_sli_abort_iocb_ring(phba, pring);
5af5eee7
JS
9937 }
9938}
9939
e59058c4 9940/**
3621a710 9941 * lpfc_sli_validate_fcp_iocb - find commands associated with a vport or LUN
e59058c4
JS
9942 * @iocbq: Pointer to driver iocb object.
9943 * @vport: Pointer to driver virtual port object.
9944 * @tgt_id: SCSI ID of the target.
9945 * @lun_id: LUN ID of the scsi device.
9946 * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST
9947 *
3621a710 9948 * This function acts as an iocb filter for functions which abort or count
e59058c4
JS
9949 * all FCP iocbs pending on a lun/SCSI target/SCSI host. It will return
9950 * 0 if the filtering criteria is met for the given iocb and will return
9951 * 1 if the filtering criteria is not met.
9952 * If ctx_cmd == LPFC_CTX_LUN, the function returns 0 only if the
9953 * given iocb is for the SCSI device specified by vport, tgt_id and
9954 * lun_id parameter.
9955 * If ctx_cmd == LPFC_CTX_TGT, the function returns 0 only if the
9956 * given iocb is for the SCSI target specified by vport and tgt_id
9957 * parameters.
9958 * If ctx_cmd == LPFC_CTX_HOST, the function returns 0 only if the
9959 * given iocb is for the SCSI host associated with the given vport.
9960 * This function is called with no locks held.
9961 **/
dea3101e 9962static int
51ef4c26
JS
9963lpfc_sli_validate_fcp_iocb(struct lpfc_iocbq *iocbq, struct lpfc_vport *vport,
9964 uint16_t tgt_id, uint64_t lun_id,
0bd4ca25 9965 lpfc_ctx_cmd ctx_cmd)
dea3101e 9966{
0bd4ca25 9967 struct lpfc_scsi_buf *lpfc_cmd;
dea3101e
JB
9968 int rc = 1;
9969
0bd4ca25
JSEC
9970 if (!(iocbq->iocb_flag & LPFC_IO_FCP))
9971 return rc;
9972
51ef4c26
JS
9973 if (iocbq->vport != vport)
9974 return rc;
9975
0bd4ca25 9976 lpfc_cmd = container_of(iocbq, struct lpfc_scsi_buf, cur_iocbq);
0bd4ca25 9977
495a714c 9978 if (lpfc_cmd->pCmd == NULL)
dea3101e
JB
9979 return rc;
9980
9981 switch (ctx_cmd) {
9982 case LPFC_CTX_LUN:
495a714c
JS
9983 if ((lpfc_cmd->rdata->pnode) &&
9984 (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id) &&
9985 (scsilun_to_int(&lpfc_cmd->fcp_cmnd->fcp_lun) == lun_id))
dea3101e
JB
9986 rc = 0;
9987 break;
9988 case LPFC_CTX_TGT:
495a714c
JS
9989 if ((lpfc_cmd->rdata->pnode) &&
9990 (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id))
dea3101e
JB
9991 rc = 0;
9992 break;
dea3101e
JB
9993 case LPFC_CTX_HOST:
9994 rc = 0;
9995 break;
9996 default:
9997 printk(KERN_ERR "%s: Unknown context cmd type, value %d\n",
cadbd4a5 9998 __func__, ctx_cmd);
dea3101e
JB
9999 break;
10000 }
10001
10002 return rc;
10003}
10004
e59058c4 10005/**
3621a710 10006 * lpfc_sli_sum_iocb - Function to count the number of FCP iocbs pending
e59058c4
JS
10007 * @vport: Pointer to virtual port.
10008 * @tgt_id: SCSI ID of the target.
10009 * @lun_id: LUN ID of the scsi device.
10010 * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
10011 *
10012 * This function returns number of FCP commands pending for the vport.
10013 * When ctx_cmd == LPFC_CTX_LUN, the function returns number of FCP
10014 * commands pending on the vport associated with SCSI device specified
10015 * by tgt_id and lun_id parameters.
10016 * When ctx_cmd == LPFC_CTX_TGT, the function returns number of FCP
10017 * commands pending on the vport associated with SCSI target specified
10018 * by tgt_id parameter.
10019 * When ctx_cmd == LPFC_CTX_HOST, the function returns number of FCP
10020 * commands pending on the vport.
10021 * This function returns the number of iocbs which satisfy the filter.
10022 * This function is called without any lock held.
10023 **/
dea3101e 10024int
51ef4c26
JS
10025lpfc_sli_sum_iocb(struct lpfc_vport *vport, uint16_t tgt_id, uint64_t lun_id,
10026 lpfc_ctx_cmd ctx_cmd)
dea3101e 10027{
51ef4c26 10028 struct lpfc_hba *phba = vport->phba;
0bd4ca25
JSEC
10029 struct lpfc_iocbq *iocbq;
10030 int sum, i;
dea3101e 10031
0bd4ca25
JSEC
10032 for (i = 1, sum = 0; i <= phba->sli.last_iotag; i++) {
10033 iocbq = phba->sli.iocbq_lookup[i];
dea3101e 10034
51ef4c26
JS
10035 if (lpfc_sli_validate_fcp_iocb (iocbq, vport, tgt_id, lun_id,
10036 ctx_cmd) == 0)
0bd4ca25 10037 sum++;
dea3101e 10038 }
0bd4ca25 10039
dea3101e
JB
10040 return sum;
10041}
10042
e59058c4 10043/**
3621a710 10044 * lpfc_sli_abort_fcp_cmpl - Completion handler function for aborted FCP IOCBs
e59058c4
JS
10045 * @phba: Pointer to HBA context object
10046 * @cmdiocb: Pointer to command iocb object.
10047 * @rspiocb: Pointer to response iocb object.
10048 *
10049 * This function is called when an aborted FCP iocb completes. This
10050 * function is called by the ring event handler with no lock held.
10051 * This function frees the iocb.
10052 **/
5eb95af0 10053void
2e0fef85
JS
10054lpfc_sli_abort_fcp_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
10055 struct lpfc_iocbq *rspiocb)
5eb95af0 10056{
cb69f7de 10057 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
8e668af5 10058 "3096 ABORT_XRI_CN completing on rpi x%x "
cb69f7de
JS
10059 "original iotag x%x, abort cmd iotag x%x "
10060 "status 0x%x, reason 0x%x\n",
10061 cmdiocb->iocb.un.acxri.abortContextTag,
10062 cmdiocb->iocb.un.acxri.abortIoTag,
10063 cmdiocb->iotag, rspiocb->iocb.ulpStatus,
10064 rspiocb->iocb.un.ulpWord[4]);
604a3e30 10065 lpfc_sli_release_iocbq(phba, cmdiocb);
5eb95af0
JSEC
10066 return;
10067}
10068
e59058c4 10069/**
3621a710 10070 * lpfc_sli_abort_iocb - issue abort for all commands on a host/target/LUN
e59058c4
JS
10071 * @vport: Pointer to virtual port.
10072 * @pring: Pointer to driver SLI ring object.
10073 * @tgt_id: SCSI ID of the target.
10074 * @lun_id: LUN ID of the scsi device.
10075 * @abort_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
10076 *
10077 * This function sends an abort command for every SCSI command
10078 * associated with the given virtual port pending on the ring
10079 * filtered by lpfc_sli_validate_fcp_iocb function.
10080 * When abort_cmd == LPFC_CTX_LUN, the function sends abort only to the
10081 * FCP iocbs associated with lun specified by tgt_id and lun_id
10082 * parameters
10083 * When abort_cmd == LPFC_CTX_TGT, the function sends abort only to the
10084 * FCP iocbs associated with SCSI target specified by tgt_id parameter.
10085 * When abort_cmd == LPFC_CTX_HOST, the function sends abort to all
10086 * FCP iocbs associated with virtual port.
10087 * This function returns number of iocbs it failed to abort.
10088 * This function is called with no locks held.
10089 **/
dea3101e 10090int
51ef4c26
JS
10091lpfc_sli_abort_iocb(struct lpfc_vport *vport, struct lpfc_sli_ring *pring,
10092 uint16_t tgt_id, uint64_t lun_id, lpfc_ctx_cmd abort_cmd)
dea3101e 10093{
51ef4c26 10094 struct lpfc_hba *phba = vport->phba;
0bd4ca25
JSEC
10095 struct lpfc_iocbq *iocbq;
10096 struct lpfc_iocbq *abtsiocb;
dea3101e 10097 IOCB_t *cmd = NULL;
dea3101e 10098 int errcnt = 0, ret_val = 0;
0bd4ca25 10099 int i;
dea3101e 10100
0bd4ca25
JSEC
10101 for (i = 1; i <= phba->sli.last_iotag; i++) {
10102 iocbq = phba->sli.iocbq_lookup[i];
dea3101e 10103
51ef4c26 10104 if (lpfc_sli_validate_fcp_iocb(iocbq, vport, tgt_id, lun_id,
2e0fef85 10105 abort_cmd) != 0)
dea3101e
JB
10106 continue;
10107
afbd8d88
JS
10108 /*
10109 * If the iocbq is already being aborted, don't take a second
10110 * action, but do count it.
10111 */
10112 if (iocbq->iocb_flag & LPFC_DRIVER_ABORTED)
10113 continue;
10114
dea3101e 10115 /* issue ABTS for this IOCB based on iotag */
0bd4ca25 10116 abtsiocb = lpfc_sli_get_iocbq(phba);
dea3101e
JB
10117 if (abtsiocb == NULL) {
10118 errcnt++;
10119 continue;
10120 }
dea3101e 10121
afbd8d88
JS
10122 /* indicate the IO is being aborted by the driver. */
10123 iocbq->iocb_flag |= LPFC_DRIVER_ABORTED;
10124
0bd4ca25 10125 cmd = &iocbq->iocb;
dea3101e
JB
10126 abtsiocb->iocb.un.acxri.abortType = ABORT_TYPE_ABTS;
10127 abtsiocb->iocb.un.acxri.abortContextTag = cmd->ulpContext;
da0436e9
JS
10128 if (phba->sli_rev == LPFC_SLI_REV4)
10129 abtsiocb->iocb.un.acxri.abortIoTag = iocbq->sli4_xritag;
10130 else
10131 abtsiocb->iocb.un.acxri.abortIoTag = cmd->ulpIoTag;
dea3101e
JB
10132 abtsiocb->iocb.ulpLe = 1;
10133 abtsiocb->iocb.ulpClass = cmd->ulpClass;
afbd8d88 10134 abtsiocb->vport = vport;
dea3101e 10135
5ffc266e
JS
10136 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
10137 abtsiocb->fcp_wqidx = iocbq->fcp_wqidx;
341af102
JS
10138 if (iocbq->iocb_flag & LPFC_IO_FCP)
10139 abtsiocb->iocb_flag |= LPFC_USE_FCPWQIDX;
9bd2bff5
JS
10140 if (iocbq->iocb_flag & LPFC_IO_FOF)
10141 abtsiocb->iocb_flag |= LPFC_IO_FOF;
5ffc266e 10142
2e0fef85 10143 if (lpfc_is_link_up(phba))
dea3101e
JB
10144 abtsiocb->iocb.ulpCommand = CMD_ABORT_XRI_CN;
10145 else
10146 abtsiocb->iocb.ulpCommand = CMD_CLOSE_XRI_CN;
10147
5eb95af0
JSEC
10148 /* Setup callback routine and issue the command. */
10149 abtsiocb->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
da0436e9
JS
10150 ret_val = lpfc_sli_issue_iocb(phba, pring->ringno,
10151 abtsiocb, 0);
dea3101e 10152 if (ret_val == IOCB_ERROR) {
604a3e30 10153 lpfc_sli_release_iocbq(phba, abtsiocb);
dea3101e
JB
10154 errcnt++;
10155 continue;
10156 }
10157 }
10158
10159 return errcnt;
10160}
10161
98912dda
JS
10162/**
10163 * lpfc_sli_abort_taskmgmt - issue abort for all commands on a host/target/LUN
10164 * @vport: Pointer to virtual port.
10165 * @pring: Pointer to driver SLI ring object.
10166 * @tgt_id: SCSI ID of the target.
10167 * @lun_id: LUN ID of the scsi device.
10168 * @taskmgmt_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
10169 *
10170 * This function sends an abort command for every SCSI command
10171 * associated with the given virtual port pending on the ring
10172 * filtered by lpfc_sli_validate_fcp_iocb function.
10173 * When taskmgmt_cmd == LPFC_CTX_LUN, the function sends abort only to the
10174 * FCP iocbs associated with lun specified by tgt_id and lun_id
10175 * parameters
10176 * When taskmgmt_cmd == LPFC_CTX_TGT, the function sends abort only to the
10177 * FCP iocbs associated with SCSI target specified by tgt_id parameter.
10178 * When taskmgmt_cmd == LPFC_CTX_HOST, the function sends abort to all
10179 * FCP iocbs associated with virtual port.
10180 * This function returns number of iocbs it aborted .
10181 * This function is called with no locks held right after a taskmgmt
10182 * command is sent.
10183 **/
10184int
10185lpfc_sli_abort_taskmgmt(struct lpfc_vport *vport, struct lpfc_sli_ring *pring,
10186 uint16_t tgt_id, uint64_t lun_id, lpfc_ctx_cmd cmd)
10187{
10188 struct lpfc_hba *phba = vport->phba;
8c50d25c 10189 struct lpfc_scsi_buf *lpfc_cmd;
98912dda 10190 struct lpfc_iocbq *abtsiocbq;
8c50d25c 10191 struct lpfc_nodelist *ndlp;
98912dda
JS
10192 struct lpfc_iocbq *iocbq;
10193 IOCB_t *icmd;
10194 int sum, i, ret_val;
10195 unsigned long iflags;
10196 struct lpfc_sli_ring *pring_s4;
10197 uint32_t ring_number;
10198
10199 spin_lock_irq(&phba->hbalock);
10200
10201 /* all I/Os are in process of being flushed */
10202 if (phba->hba_flag & HBA_FCP_IOQ_FLUSH) {
10203 spin_unlock_irq(&phba->hbalock);
10204 return 0;
10205 }
10206 sum = 0;
10207
10208 for (i = 1; i <= phba->sli.last_iotag; i++) {
10209 iocbq = phba->sli.iocbq_lookup[i];
10210
10211 if (lpfc_sli_validate_fcp_iocb(iocbq, vport, tgt_id, lun_id,
10212 cmd) != 0)
10213 continue;
10214
10215 /*
10216 * If the iocbq is already being aborted, don't take a second
10217 * action, but do count it.
10218 */
10219 if (iocbq->iocb_flag & LPFC_DRIVER_ABORTED)
10220 continue;
10221
10222 /* issue ABTS for this IOCB based on iotag */
10223 abtsiocbq = __lpfc_sli_get_iocbq(phba);
10224 if (abtsiocbq == NULL)
10225 continue;
10226
10227 icmd = &iocbq->iocb;
10228 abtsiocbq->iocb.un.acxri.abortType = ABORT_TYPE_ABTS;
10229 abtsiocbq->iocb.un.acxri.abortContextTag = icmd->ulpContext;
10230 if (phba->sli_rev == LPFC_SLI_REV4)
10231 abtsiocbq->iocb.un.acxri.abortIoTag =
10232 iocbq->sli4_xritag;
10233 else
10234 abtsiocbq->iocb.un.acxri.abortIoTag = icmd->ulpIoTag;
10235 abtsiocbq->iocb.ulpLe = 1;
10236 abtsiocbq->iocb.ulpClass = icmd->ulpClass;
10237 abtsiocbq->vport = vport;
10238
10239 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
10240 abtsiocbq->fcp_wqidx = iocbq->fcp_wqidx;
10241 if (iocbq->iocb_flag & LPFC_IO_FCP)
10242 abtsiocbq->iocb_flag |= LPFC_USE_FCPWQIDX;
9bd2bff5
JS
10243 if (iocbq->iocb_flag & LPFC_IO_FOF)
10244 abtsiocbq->iocb_flag |= LPFC_IO_FOF;
98912dda 10245
8c50d25c
JS
10246 lpfc_cmd = container_of(iocbq, struct lpfc_scsi_buf, cur_iocbq);
10247 ndlp = lpfc_cmd->rdata->pnode;
10248
10249 if (lpfc_is_link_up(phba) &&
10250 (ndlp && ndlp->nlp_state == NLP_STE_MAPPED_NODE))
98912dda
JS
10251 abtsiocbq->iocb.ulpCommand = CMD_ABORT_XRI_CN;
10252 else
10253 abtsiocbq->iocb.ulpCommand = CMD_CLOSE_XRI_CN;
10254
10255 /* Setup callback routine and issue the command. */
10256 abtsiocbq->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
10257
10258 /*
10259 * Indicate the IO is being aborted by the driver and set
10260 * the caller's flag into the aborted IO.
10261 */
10262 iocbq->iocb_flag |= LPFC_DRIVER_ABORTED;
10263
10264 if (phba->sli_rev == LPFC_SLI_REV4) {
10265 ring_number = MAX_SLI3_CONFIGURED_RINGS +
10266 iocbq->fcp_wqidx;
10267 pring_s4 = &phba->sli.ring[ring_number];
10268 /* Note: both hbalock and ring_lock must be set here */
10269 spin_lock_irqsave(&pring_s4->ring_lock, iflags);
10270 ret_val = __lpfc_sli_issue_iocb(phba, pring_s4->ringno,
10271 abtsiocbq, 0);
10272 spin_unlock_irqrestore(&pring_s4->ring_lock, iflags);
10273 } else {
10274 ret_val = __lpfc_sli_issue_iocb(phba, pring->ringno,
10275 abtsiocbq, 0);
10276 }
10277
10278
10279 if (ret_val == IOCB_ERROR)
10280 __lpfc_sli_release_iocbq(phba, abtsiocbq);
10281 else
10282 sum++;
10283 }
10284 spin_unlock_irq(&phba->hbalock);
10285 return sum;
10286}
10287
e59058c4 10288/**
3621a710 10289 * lpfc_sli_wake_iocb_wait - lpfc_sli_issue_iocb_wait's completion handler
e59058c4
JS
10290 * @phba: Pointer to HBA context object.
10291 * @cmdiocbq: Pointer to command iocb.
10292 * @rspiocbq: Pointer to response iocb.
10293 *
10294 * This function is the completion handler for iocbs issued using
10295 * lpfc_sli_issue_iocb_wait function. This function is called by the
10296 * ring event handler function without any lock held. This function
10297 * can be called from both worker thread context and interrupt
10298 * context. This function also can be called from other thread which
10299 * cleans up the SLI layer objects.
10300 * This function copy the contents of the response iocb to the
10301 * response iocb memory object provided by the caller of
10302 * lpfc_sli_issue_iocb_wait and then wakes up the thread which
10303 * sleeps for the iocb completion.
10304 **/
68876920
JSEC
10305static void
10306lpfc_sli_wake_iocb_wait(struct lpfc_hba *phba,
10307 struct lpfc_iocbq *cmdiocbq,
10308 struct lpfc_iocbq *rspiocbq)
dea3101e 10309{
68876920
JSEC
10310 wait_queue_head_t *pdone_q;
10311 unsigned long iflags;
0f65ff68 10312 struct lpfc_scsi_buf *lpfc_cmd;
dea3101e 10313
2e0fef85 10314 spin_lock_irqsave(&phba->hbalock, iflags);
5a0916b4
JS
10315 if (cmdiocbq->iocb_flag & LPFC_IO_WAKE_TMO) {
10316
10317 /*
10318 * A time out has occurred for the iocb. If a time out
10319 * completion handler has been supplied, call it. Otherwise,
10320 * just free the iocbq.
10321 */
10322
10323 spin_unlock_irqrestore(&phba->hbalock, iflags);
10324 cmdiocbq->iocb_cmpl = cmdiocbq->wait_iocb_cmpl;
10325 cmdiocbq->wait_iocb_cmpl = NULL;
10326 if (cmdiocbq->iocb_cmpl)
10327 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq, NULL);
10328 else
10329 lpfc_sli_release_iocbq(phba, cmdiocbq);
10330 return;
10331 }
10332
68876920
JSEC
10333 cmdiocbq->iocb_flag |= LPFC_IO_WAKE;
10334 if (cmdiocbq->context2 && rspiocbq)
10335 memcpy(&((struct lpfc_iocbq *)cmdiocbq->context2)->iocb,
10336 &rspiocbq->iocb, sizeof(IOCB_t));
10337
0f65ff68
JS
10338 /* Set the exchange busy flag for task management commands */
10339 if ((cmdiocbq->iocb_flag & LPFC_IO_FCP) &&
10340 !(cmdiocbq->iocb_flag & LPFC_IO_LIBDFC)) {
10341 lpfc_cmd = container_of(cmdiocbq, struct lpfc_scsi_buf,
10342 cur_iocbq);
10343 lpfc_cmd->exch_busy = rspiocbq->iocb_flag & LPFC_EXCHANGE_BUSY;
10344 }
10345
68876920 10346 pdone_q = cmdiocbq->context_un.wait_queue;
68876920
JSEC
10347 if (pdone_q)
10348 wake_up(pdone_q);
858c9f6c 10349 spin_unlock_irqrestore(&phba->hbalock, iflags);
dea3101e
JB
10350 return;
10351}
10352
d11e31dd
JS
10353/**
10354 * lpfc_chk_iocb_flg - Test IOCB flag with lock held.
10355 * @phba: Pointer to HBA context object..
10356 * @piocbq: Pointer to command iocb.
10357 * @flag: Flag to test.
10358 *
10359 * This routine grabs the hbalock and then test the iocb_flag to
10360 * see if the passed in flag is set.
10361 * Returns:
10362 * 1 if flag is set.
10363 * 0 if flag is not set.
10364 **/
10365static int
10366lpfc_chk_iocb_flg(struct lpfc_hba *phba,
10367 struct lpfc_iocbq *piocbq, uint32_t flag)
10368{
10369 unsigned long iflags;
10370 int ret;
10371
10372 spin_lock_irqsave(&phba->hbalock, iflags);
10373 ret = piocbq->iocb_flag & flag;
10374 spin_unlock_irqrestore(&phba->hbalock, iflags);
10375 return ret;
10376
10377}
10378
e59058c4 10379/**
3621a710 10380 * lpfc_sli_issue_iocb_wait - Synchronous function to issue iocb commands
e59058c4
JS
10381 * @phba: Pointer to HBA context object..
10382 * @pring: Pointer to sli ring.
10383 * @piocb: Pointer to command iocb.
10384 * @prspiocbq: Pointer to response iocb.
10385 * @timeout: Timeout in number of seconds.
10386 *
10387 * This function issues the iocb to firmware and waits for the
5a0916b4
JS
10388 * iocb to complete. The iocb_cmpl field of the shall be used
10389 * to handle iocbs which time out. If the field is NULL, the
10390 * function shall free the iocbq structure. If more clean up is
10391 * needed, the caller is expected to provide a completion function
10392 * that will provide the needed clean up. If the iocb command is
10393 * not completed within timeout seconds, the function will either
10394 * free the iocbq structure (if iocb_cmpl == NULL) or execute the
10395 * completion function set in the iocb_cmpl field and then return
10396 * a status of IOCB_TIMEDOUT. The caller should not free the iocb
10397 * resources if this function returns IOCB_TIMEDOUT.
e59058c4
JS
10398 * The function waits for the iocb completion using an
10399 * non-interruptible wait.
10400 * This function will sleep while waiting for iocb completion.
10401 * So, this function should not be called from any context which
10402 * does not allow sleeping. Due to the same reason, this function
10403 * cannot be called with interrupt disabled.
10404 * This function assumes that the iocb completions occur while
10405 * this function sleep. So, this function cannot be called from
10406 * the thread which process iocb completion for this ring.
10407 * This function clears the iocb_flag of the iocb object before
10408 * issuing the iocb and the iocb completion handler sets this
10409 * flag and wakes this thread when the iocb completes.
10410 * The contents of the response iocb will be copied to prspiocbq
10411 * by the completion handler when the command completes.
10412 * This function returns IOCB_SUCCESS when success.
10413 * This function is called with no lock held.
10414 **/
dea3101e 10415int
2e0fef85 10416lpfc_sli_issue_iocb_wait(struct lpfc_hba *phba,
da0436e9 10417 uint32_t ring_number,
2e0fef85
JS
10418 struct lpfc_iocbq *piocb,
10419 struct lpfc_iocbq *prspiocbq,
68876920 10420 uint32_t timeout)
dea3101e 10421{
7259f0d0 10422 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
68876920
JSEC
10423 long timeleft, timeout_req = 0;
10424 int retval = IOCB_SUCCESS;
875fbdfe 10425 uint32_t creg_val;
0e9bb8d7
JS
10426 struct lpfc_iocbq *iocb;
10427 int txq_cnt = 0;
10428 int txcmplq_cnt = 0;
2a9bf3d0 10429 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
5a0916b4
JS
10430 unsigned long iflags;
10431 bool iocb_completed = true;
10432
dea3101e 10433 /*
68876920
JSEC
10434 * If the caller has provided a response iocbq buffer, then context2
10435 * is NULL or its an error.
dea3101e 10436 */
68876920
JSEC
10437 if (prspiocbq) {
10438 if (piocb->context2)
10439 return IOCB_ERROR;
10440 piocb->context2 = prspiocbq;
dea3101e
JB
10441 }
10442
5a0916b4 10443 piocb->wait_iocb_cmpl = piocb->iocb_cmpl;
68876920
JSEC
10444 piocb->iocb_cmpl = lpfc_sli_wake_iocb_wait;
10445 piocb->context_un.wait_queue = &done_q;
5a0916b4 10446 piocb->iocb_flag &= ~(LPFC_IO_WAKE | LPFC_IO_WAKE_TMO);
dea3101e 10447
875fbdfe 10448 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
9940b97b
JS
10449 if (lpfc_readl(phba->HCregaddr, &creg_val))
10450 return IOCB_ERROR;
875fbdfe
JSEC
10451 creg_val |= (HC_R0INT_ENA << LPFC_FCP_RING);
10452 writel(creg_val, phba->HCregaddr);
10453 readl(phba->HCregaddr); /* flush */
10454 }
10455
2a9bf3d0
JS
10456 retval = lpfc_sli_issue_iocb(phba, ring_number, piocb,
10457 SLI_IOCB_RET_IOCB);
68876920 10458 if (retval == IOCB_SUCCESS) {
256ec0d0 10459 timeout_req = msecs_to_jiffies(timeout * 1000);
68876920 10460 timeleft = wait_event_timeout(done_q,
d11e31dd 10461 lpfc_chk_iocb_flg(phba, piocb, LPFC_IO_WAKE),
68876920 10462 timeout_req);
5a0916b4
JS
10463 spin_lock_irqsave(&phba->hbalock, iflags);
10464 if (!(piocb->iocb_flag & LPFC_IO_WAKE)) {
10465
10466 /*
10467 * IOCB timed out. Inform the wake iocb wait
10468 * completion function and set local status
10469 */
dea3101e 10470
5a0916b4
JS
10471 iocb_completed = false;
10472 piocb->iocb_flag |= LPFC_IO_WAKE_TMO;
10473 }
10474 spin_unlock_irqrestore(&phba->hbalock, iflags);
10475 if (iocb_completed) {
7054a606 10476 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
e8b62011 10477 "0331 IOCB wake signaled\n");
53151bbb
JS
10478 /* Note: we are not indicating if the IOCB has a success
10479 * status or not - that's for the caller to check.
10480 * IOCB_SUCCESS means just that the command was sent and
10481 * completed. Not that it completed successfully.
10482 * */
7054a606 10483 } else if (timeleft == 0) {
68876920 10484 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011
JS
10485 "0338 IOCB wait timeout error - no "
10486 "wake response Data x%x\n", timeout);
68876920 10487 retval = IOCB_TIMEDOUT;
7054a606 10488 } else {
68876920 10489 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011
JS
10490 "0330 IOCB wake NOT set, "
10491 "Data x%x x%lx\n",
68876920
JSEC
10492 timeout, (timeleft / jiffies));
10493 retval = IOCB_TIMEDOUT;
dea3101e 10494 }
2a9bf3d0 10495 } else if (retval == IOCB_BUSY) {
0e9bb8d7
JS
10496 if (phba->cfg_log_verbose & LOG_SLI) {
10497 list_for_each_entry(iocb, &pring->txq, list) {
10498 txq_cnt++;
10499 }
10500 list_for_each_entry(iocb, &pring->txcmplq, list) {
10501 txcmplq_cnt++;
10502 }
10503 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
10504 "2818 Max IOCBs %d txq cnt %d txcmplq cnt %d\n",
10505 phba->iocb_cnt, txq_cnt, txcmplq_cnt);
10506 }
2a9bf3d0 10507 return retval;
68876920
JSEC
10508 } else {
10509 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
d7c255b2 10510 "0332 IOCB wait issue failed, Data x%x\n",
e8b62011 10511 retval);
68876920 10512 retval = IOCB_ERROR;
dea3101e
JB
10513 }
10514
875fbdfe 10515 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
9940b97b
JS
10516 if (lpfc_readl(phba->HCregaddr, &creg_val))
10517 return IOCB_ERROR;
875fbdfe
JSEC
10518 creg_val &= ~(HC_R0INT_ENA << LPFC_FCP_RING);
10519 writel(creg_val, phba->HCregaddr);
10520 readl(phba->HCregaddr); /* flush */
10521 }
10522
68876920
JSEC
10523 if (prspiocbq)
10524 piocb->context2 = NULL;
10525
10526 piocb->context_un.wait_queue = NULL;
10527 piocb->iocb_cmpl = NULL;
dea3101e
JB
10528 return retval;
10529}
68876920 10530
e59058c4 10531/**
3621a710 10532 * lpfc_sli_issue_mbox_wait - Synchronous function to issue mailbox
e59058c4
JS
10533 * @phba: Pointer to HBA context object.
10534 * @pmboxq: Pointer to driver mailbox object.
10535 * @timeout: Timeout in number of seconds.
10536 *
10537 * This function issues the mailbox to firmware and waits for the
10538 * mailbox command to complete. If the mailbox command is not
10539 * completed within timeout seconds, it returns MBX_TIMEOUT.
10540 * The function waits for the mailbox completion using an
10541 * interruptible wait. If the thread is woken up due to a
10542 * signal, MBX_TIMEOUT error is returned to the caller. Caller
10543 * should not free the mailbox resources, if this function returns
10544 * MBX_TIMEOUT.
10545 * This function will sleep while waiting for mailbox completion.
10546 * So, this function should not be called from any context which
10547 * does not allow sleeping. Due to the same reason, this function
10548 * cannot be called with interrupt disabled.
10549 * This function assumes that the mailbox completion occurs while
10550 * this function sleep. So, this function cannot be called from
10551 * the worker thread which processes mailbox completion.
10552 * This function is called in the context of HBA management
10553 * applications.
10554 * This function returns MBX_SUCCESS when successful.
10555 * This function is called with no lock held.
10556 **/
dea3101e 10557int
2e0fef85 10558lpfc_sli_issue_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq,
dea3101e
JB
10559 uint32_t timeout)
10560{
7259f0d0 10561 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
b230b8a2 10562 MAILBOX_t *mb = NULL;
dea3101e 10563 int retval;
858c9f6c 10564 unsigned long flag;
dea3101e 10565
b230b8a2 10566 /* The caller might set context1 for extended buffer */
98c9ea5c 10567 if (pmboxq->context1)
b230b8a2 10568 mb = (MAILBOX_t *)pmboxq->context1;
dea3101e 10569
495a714c 10570 pmboxq->mbox_flag &= ~LPFC_MBX_WAKE;
dea3101e
JB
10571 /* setup wake call as IOCB callback */
10572 pmboxq->mbox_cmpl = lpfc_sli_wake_mbox_wait;
10573 /* setup context field to pass wait_queue pointer to wake function */
10574 pmboxq->context1 = &done_q;
10575
dea3101e
JB
10576 /* now issue the command */
10577 retval = lpfc_sli_issue_mbox(phba, pmboxq, MBX_NOWAIT);
dea3101e 10578 if (retval == MBX_BUSY || retval == MBX_SUCCESS) {
7054a606
JS
10579 wait_event_interruptible_timeout(done_q,
10580 pmboxq->mbox_flag & LPFC_MBX_WAKE,
256ec0d0 10581 msecs_to_jiffies(timeout * 1000));
7054a606 10582
858c9f6c 10583 spin_lock_irqsave(&phba->hbalock, flag);
b230b8a2
JS
10584 /* restore the possible extended buffer for free resource */
10585 pmboxq->context1 = (uint8_t *)mb;
7054a606
JS
10586 /*
10587 * if LPFC_MBX_WAKE flag is set the mailbox is completed
10588 * else do not free the resources.
10589 */
d7c47992 10590 if (pmboxq->mbox_flag & LPFC_MBX_WAKE) {
dea3101e 10591 retval = MBX_SUCCESS;
d7c47992 10592 } else {
7054a606 10593 retval = MBX_TIMEOUT;
858c9f6c
JS
10594 pmboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
10595 }
10596 spin_unlock_irqrestore(&phba->hbalock, flag);
b230b8a2
JS
10597 } else {
10598 /* restore the possible extended buffer for free resource */
10599 pmboxq->context1 = (uint8_t *)mb;
dea3101e
JB
10600 }
10601
dea3101e
JB
10602 return retval;
10603}
10604
e59058c4 10605/**
3772a991 10606 * lpfc_sli_mbox_sys_shutdown - shutdown mailbox command sub-system
e59058c4
JS
10607 * @phba: Pointer to HBA context.
10608 *
3772a991
JS
10609 * This function is called to shutdown the driver's mailbox sub-system.
10610 * It first marks the mailbox sub-system is in a block state to prevent
10611 * the asynchronous mailbox command from issued off the pending mailbox
10612 * command queue. If the mailbox command sub-system shutdown is due to
10613 * HBA error conditions such as EEH or ERATT, this routine shall invoke
10614 * the mailbox sub-system flush routine to forcefully bring down the
10615 * mailbox sub-system. Otherwise, if it is due to normal condition (such
10616 * as with offline or HBA function reset), this routine will wait for the
10617 * outstanding mailbox command to complete before invoking the mailbox
10618 * sub-system flush routine to gracefully bring down mailbox sub-system.
e59058c4 10619 **/
3772a991 10620void
618a5230 10621lpfc_sli_mbox_sys_shutdown(struct lpfc_hba *phba, int mbx_action)
b4c02652 10622{
3772a991 10623 struct lpfc_sli *psli = &phba->sli;
3772a991 10624 unsigned long timeout;
b4c02652 10625
618a5230
JS
10626 if (mbx_action == LPFC_MBX_NO_WAIT) {
10627 /* delay 100ms for port state */
10628 msleep(100);
10629 lpfc_sli_mbox_sys_flush(phba);
10630 return;
10631 }
a183a15f 10632 timeout = msecs_to_jiffies(LPFC_MBOX_TMO * 1000) + jiffies;
d7069f09 10633
3772a991
JS
10634 spin_lock_irq(&phba->hbalock);
10635 psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
b4c02652 10636
3772a991 10637 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
3772a991
JS
10638 /* Determine how long we might wait for the active mailbox
10639 * command to be gracefully completed by firmware.
10640 */
a183a15f
JS
10641 if (phba->sli.mbox_active)
10642 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
10643 phba->sli.mbox_active) *
10644 1000) + jiffies;
10645 spin_unlock_irq(&phba->hbalock);
10646
3772a991
JS
10647 while (phba->sli.mbox_active) {
10648 /* Check active mailbox complete status every 2ms */
10649 msleep(2);
10650 if (time_after(jiffies, timeout))
10651 /* Timeout, let the mailbox flush routine to
10652 * forcefully release active mailbox command
10653 */
10654 break;
10655 }
d7069f09
JS
10656 } else
10657 spin_unlock_irq(&phba->hbalock);
10658
3772a991
JS
10659 lpfc_sli_mbox_sys_flush(phba);
10660}
ed957684 10661
3772a991
JS
10662/**
10663 * lpfc_sli_eratt_read - read sli-3 error attention events
10664 * @phba: Pointer to HBA context.
10665 *
10666 * This function is called to read the SLI3 device error attention registers
10667 * for possible error attention events. The caller must hold the hostlock
10668 * with spin_lock_irq().
10669 *
25985edc 10670 * This function returns 1 when there is Error Attention in the Host Attention
3772a991
JS
10671 * Register and returns 0 otherwise.
10672 **/
10673static int
10674lpfc_sli_eratt_read(struct lpfc_hba *phba)
10675{
10676 uint32_t ha_copy;
b4c02652 10677
3772a991 10678 /* Read chip Host Attention (HA) register */
9940b97b
JS
10679 if (lpfc_readl(phba->HAregaddr, &ha_copy))
10680 goto unplug_err;
10681
3772a991
JS
10682 if (ha_copy & HA_ERATT) {
10683 /* Read host status register to retrieve error event */
9940b97b
JS
10684 if (lpfc_sli_read_hs(phba))
10685 goto unplug_err;
b4c02652 10686
3772a991
JS
10687 /* Check if there is a deferred error condition is active */
10688 if ((HS_FFER1 & phba->work_hs) &&
10689 ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
dcf2a4e0 10690 HS_FFER6 | HS_FFER7 | HS_FFER8) & phba->work_hs)) {
3772a991 10691 phba->hba_flag |= DEFER_ERATT;
3772a991
JS
10692 /* Clear all interrupt enable conditions */
10693 writel(0, phba->HCregaddr);
10694 readl(phba->HCregaddr);
10695 }
10696
10697 /* Set the driver HA work bitmap */
3772a991
JS
10698 phba->work_ha |= HA_ERATT;
10699 /* Indicate polling handles this ERATT */
10700 phba->hba_flag |= HBA_ERATT_HANDLED;
3772a991
JS
10701 return 1;
10702 }
10703 return 0;
9940b97b
JS
10704
10705unplug_err:
10706 /* Set the driver HS work bitmap */
10707 phba->work_hs |= UNPLUG_ERR;
10708 /* Set the driver HA work bitmap */
10709 phba->work_ha |= HA_ERATT;
10710 /* Indicate polling handles this ERATT */
10711 phba->hba_flag |= HBA_ERATT_HANDLED;
10712 return 1;
b4c02652
JS
10713}
10714
da0436e9
JS
10715/**
10716 * lpfc_sli4_eratt_read - read sli-4 error attention events
10717 * @phba: Pointer to HBA context.
10718 *
10719 * This function is called to read the SLI4 device error attention registers
10720 * for possible error attention events. The caller must hold the hostlock
10721 * with spin_lock_irq().
10722 *
25985edc 10723 * This function returns 1 when there is Error Attention in the Host Attention
da0436e9
JS
10724 * Register and returns 0 otherwise.
10725 **/
10726static int
10727lpfc_sli4_eratt_read(struct lpfc_hba *phba)
10728{
10729 uint32_t uerr_sta_hi, uerr_sta_lo;
2fcee4bf
JS
10730 uint32_t if_type, portsmphr;
10731 struct lpfc_register portstat_reg;
da0436e9 10732
2fcee4bf
JS
10733 /*
10734 * For now, use the SLI4 device internal unrecoverable error
da0436e9
JS
10735 * registers for error attention. This can be changed later.
10736 */
2fcee4bf
JS
10737 if_type = bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf);
10738 switch (if_type) {
10739 case LPFC_SLI_INTF_IF_TYPE_0:
9940b97b
JS
10740 if (lpfc_readl(phba->sli4_hba.u.if_type0.UERRLOregaddr,
10741 &uerr_sta_lo) ||
10742 lpfc_readl(phba->sli4_hba.u.if_type0.UERRHIregaddr,
10743 &uerr_sta_hi)) {
10744 phba->work_hs |= UNPLUG_ERR;
10745 phba->work_ha |= HA_ERATT;
10746 phba->hba_flag |= HBA_ERATT_HANDLED;
10747 return 1;
10748 }
2fcee4bf
JS
10749 if ((~phba->sli4_hba.ue_mask_lo & uerr_sta_lo) ||
10750 (~phba->sli4_hba.ue_mask_hi & uerr_sta_hi)) {
10751 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10752 "1423 HBA Unrecoverable error: "
10753 "uerr_lo_reg=0x%x, uerr_hi_reg=0x%x, "
10754 "ue_mask_lo_reg=0x%x, "
10755 "ue_mask_hi_reg=0x%x\n",
10756 uerr_sta_lo, uerr_sta_hi,
10757 phba->sli4_hba.ue_mask_lo,
10758 phba->sli4_hba.ue_mask_hi);
10759 phba->work_status[0] = uerr_sta_lo;
10760 phba->work_status[1] = uerr_sta_hi;
10761 phba->work_ha |= HA_ERATT;
10762 phba->hba_flag |= HBA_ERATT_HANDLED;
10763 return 1;
10764 }
10765 break;
10766 case LPFC_SLI_INTF_IF_TYPE_2:
9940b97b
JS
10767 if (lpfc_readl(phba->sli4_hba.u.if_type2.STATUSregaddr,
10768 &portstat_reg.word0) ||
10769 lpfc_readl(phba->sli4_hba.PSMPHRregaddr,
10770 &portsmphr)){
10771 phba->work_hs |= UNPLUG_ERR;
10772 phba->work_ha |= HA_ERATT;
10773 phba->hba_flag |= HBA_ERATT_HANDLED;
10774 return 1;
10775 }
2fcee4bf
JS
10776 if (bf_get(lpfc_sliport_status_err, &portstat_reg)) {
10777 phba->work_status[0] =
10778 readl(phba->sli4_hba.u.if_type2.ERR1regaddr);
10779 phba->work_status[1] =
10780 readl(phba->sli4_hba.u.if_type2.ERR2regaddr);
10781 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2e90f4b5 10782 "2885 Port Status Event: "
2fcee4bf
JS
10783 "port status reg 0x%x, "
10784 "port smphr reg 0x%x, "
10785 "error 1=0x%x, error 2=0x%x\n",
10786 portstat_reg.word0,
10787 portsmphr,
10788 phba->work_status[0],
10789 phba->work_status[1]);
10790 phba->work_ha |= HA_ERATT;
10791 phba->hba_flag |= HBA_ERATT_HANDLED;
10792 return 1;
10793 }
10794 break;
10795 case LPFC_SLI_INTF_IF_TYPE_1:
10796 default:
a747c9ce 10797 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2fcee4bf
JS
10798 "2886 HBA Error Attention on unsupported "
10799 "if type %d.", if_type);
a747c9ce 10800 return 1;
da0436e9 10801 }
2fcee4bf 10802
da0436e9
JS
10803 return 0;
10804}
10805
e59058c4 10806/**
3621a710 10807 * lpfc_sli_check_eratt - check error attention events
9399627f
JS
10808 * @phba: Pointer to HBA context.
10809 *
3772a991 10810 * This function is called from timer soft interrupt context to check HBA's
9399627f
JS
10811 * error attention register bit for error attention events.
10812 *
25985edc 10813 * This function returns 1 when there is Error Attention in the Host Attention
9399627f
JS
10814 * Register and returns 0 otherwise.
10815 **/
10816int
10817lpfc_sli_check_eratt(struct lpfc_hba *phba)
10818{
10819 uint32_t ha_copy;
10820
10821 /* If somebody is waiting to handle an eratt, don't process it
10822 * here. The brdkill function will do this.
10823 */
10824 if (phba->link_flag & LS_IGNORE_ERATT)
10825 return 0;
10826
10827 /* Check if interrupt handler handles this ERATT */
10828 spin_lock_irq(&phba->hbalock);
10829 if (phba->hba_flag & HBA_ERATT_HANDLED) {
10830 /* Interrupt handler has handled ERATT */
10831 spin_unlock_irq(&phba->hbalock);
10832 return 0;
10833 }
10834
a257bf90
JS
10835 /*
10836 * If there is deferred error attention, do not check for error
10837 * attention
10838 */
10839 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
10840 spin_unlock_irq(&phba->hbalock);
10841 return 0;
10842 }
10843
3772a991
JS
10844 /* If PCI channel is offline, don't process it */
10845 if (unlikely(pci_channel_offline(phba->pcidev))) {
9399627f 10846 spin_unlock_irq(&phba->hbalock);
3772a991
JS
10847 return 0;
10848 }
10849
10850 switch (phba->sli_rev) {
10851 case LPFC_SLI_REV2:
10852 case LPFC_SLI_REV3:
10853 /* Read chip Host Attention (HA) register */
10854 ha_copy = lpfc_sli_eratt_read(phba);
10855 break;
da0436e9 10856 case LPFC_SLI_REV4:
2fcee4bf 10857 /* Read device Uncoverable Error (UERR) registers */
da0436e9
JS
10858 ha_copy = lpfc_sli4_eratt_read(phba);
10859 break;
3772a991
JS
10860 default:
10861 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10862 "0299 Invalid SLI revision (%d)\n",
10863 phba->sli_rev);
10864 ha_copy = 0;
10865 break;
9399627f
JS
10866 }
10867 spin_unlock_irq(&phba->hbalock);
3772a991
JS
10868
10869 return ha_copy;
10870}
10871
10872/**
10873 * lpfc_intr_state_check - Check device state for interrupt handling
10874 * @phba: Pointer to HBA context.
10875 *
10876 * This inline routine checks whether a device or its PCI slot is in a state
10877 * that the interrupt should be handled.
10878 *
10879 * This function returns 0 if the device or the PCI slot is in a state that
10880 * interrupt should be handled, otherwise -EIO.
10881 */
10882static inline int
10883lpfc_intr_state_check(struct lpfc_hba *phba)
10884{
10885 /* If the pci channel is offline, ignore all the interrupts */
10886 if (unlikely(pci_channel_offline(phba->pcidev)))
10887 return -EIO;
10888
10889 /* Update device level interrupt statistics */
10890 phba->sli.slistat.sli_intr++;
10891
10892 /* Ignore all interrupts during initialization. */
10893 if (unlikely(phba->link_state < LPFC_LINK_DOWN))
10894 return -EIO;
10895
9399627f
JS
10896 return 0;
10897}
10898
10899/**
3772a991 10900 * lpfc_sli_sp_intr_handler - Slow-path interrupt handler to SLI-3 device
e59058c4
JS
10901 * @irq: Interrupt number.
10902 * @dev_id: The device context pointer.
10903 *
9399627f 10904 * This function is directly called from the PCI layer as an interrupt
3772a991
JS
10905 * service routine when device with SLI-3 interface spec is enabled with
10906 * MSI-X multi-message interrupt mode and there are slow-path events in
10907 * the HBA. However, when the device is enabled with either MSI or Pin-IRQ
10908 * interrupt mode, this function is called as part of the device-level
10909 * interrupt handler. When the PCI slot is in error recovery or the HBA
10910 * is undergoing initialization, the interrupt handler will not process
10911 * the interrupt. The link attention and ELS ring attention events are
10912 * handled by the worker thread. The interrupt handler signals the worker
10913 * thread and returns for these events. This function is called without
10914 * any lock held. It gets the hbalock to access and update SLI data
9399627f
JS
10915 * structures.
10916 *
10917 * This function returns IRQ_HANDLED when interrupt is handled else it
10918 * returns IRQ_NONE.
e59058c4 10919 **/
dea3101e 10920irqreturn_t
3772a991 10921lpfc_sli_sp_intr_handler(int irq, void *dev_id)
dea3101e 10922{
2e0fef85 10923 struct lpfc_hba *phba;
a747c9ce 10924 uint32_t ha_copy, hc_copy;
dea3101e
JB
10925 uint32_t work_ha_copy;
10926 unsigned long status;
5b75da2f 10927 unsigned long iflag;
dea3101e
JB
10928 uint32_t control;
10929
92d7f7b0 10930 MAILBOX_t *mbox, *pmbox;
858c9f6c
JS
10931 struct lpfc_vport *vport;
10932 struct lpfc_nodelist *ndlp;
10933 struct lpfc_dmabuf *mp;
92d7f7b0
JS
10934 LPFC_MBOXQ_t *pmb;
10935 int rc;
10936
dea3101e
JB
10937 /*
10938 * Get the driver's phba structure from the dev_id and
10939 * assume the HBA is not interrupting.
10940 */
9399627f 10941 phba = (struct lpfc_hba *)dev_id;
dea3101e
JB
10942
10943 if (unlikely(!phba))
10944 return IRQ_NONE;
10945
dea3101e 10946 /*
9399627f
JS
10947 * Stuff needs to be attented to when this function is invoked as an
10948 * individual interrupt handler in MSI-X multi-message interrupt mode
dea3101e 10949 */
9399627f 10950 if (phba->intr_type == MSIX) {
3772a991
JS
10951 /* Check device state for handling interrupt */
10952 if (lpfc_intr_state_check(phba))
9399627f
JS
10953 return IRQ_NONE;
10954 /* Need to read HA REG for slow-path events */
5b75da2f 10955 spin_lock_irqsave(&phba->hbalock, iflag);
9940b97b
JS
10956 if (lpfc_readl(phba->HAregaddr, &ha_copy))
10957 goto unplug_error;
9399627f
JS
10958 /* If somebody is waiting to handle an eratt don't process it
10959 * here. The brdkill function will do this.
10960 */
10961 if (phba->link_flag & LS_IGNORE_ERATT)
10962 ha_copy &= ~HA_ERATT;
10963 /* Check the need for handling ERATT in interrupt handler */
10964 if (ha_copy & HA_ERATT) {
10965 if (phba->hba_flag & HBA_ERATT_HANDLED)
10966 /* ERATT polling has handled ERATT */
10967 ha_copy &= ~HA_ERATT;
10968 else
10969 /* Indicate interrupt handler handles ERATT */
10970 phba->hba_flag |= HBA_ERATT_HANDLED;
10971 }
a257bf90
JS
10972
10973 /*
10974 * If there is deferred error attention, do not check for any
10975 * interrupt.
10976 */
10977 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
3772a991 10978 spin_unlock_irqrestore(&phba->hbalock, iflag);
a257bf90
JS
10979 return IRQ_NONE;
10980 }
10981
9399627f 10982 /* Clear up only attention source related to slow-path */
9940b97b
JS
10983 if (lpfc_readl(phba->HCregaddr, &hc_copy))
10984 goto unplug_error;
10985
a747c9ce
JS
10986 writel(hc_copy & ~(HC_MBINT_ENA | HC_R2INT_ENA |
10987 HC_LAINT_ENA | HC_ERINT_ENA),
10988 phba->HCregaddr);
9399627f
JS
10989 writel((ha_copy & (HA_MBATT | HA_R2_CLR_MSK)),
10990 phba->HAregaddr);
a747c9ce 10991 writel(hc_copy, phba->HCregaddr);
9399627f 10992 readl(phba->HAregaddr); /* flush */
5b75da2f 10993 spin_unlock_irqrestore(&phba->hbalock, iflag);
9399627f
JS
10994 } else
10995 ha_copy = phba->ha_copy;
dea3101e 10996
dea3101e
JB
10997 work_ha_copy = ha_copy & phba->work_ha_mask;
10998
9399627f 10999 if (work_ha_copy) {
dea3101e
JB
11000 if (work_ha_copy & HA_LATT) {
11001 if (phba->sli.sli_flag & LPFC_PROCESS_LA) {
11002 /*
11003 * Turn off Link Attention interrupts
11004 * until CLEAR_LA done
11005 */
5b75da2f 11006 spin_lock_irqsave(&phba->hbalock, iflag);
dea3101e 11007 phba->sli.sli_flag &= ~LPFC_PROCESS_LA;
9940b97b
JS
11008 if (lpfc_readl(phba->HCregaddr, &control))
11009 goto unplug_error;
dea3101e
JB
11010 control &= ~HC_LAINT_ENA;
11011 writel(control, phba->HCregaddr);
11012 readl(phba->HCregaddr); /* flush */
5b75da2f 11013 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea3101e
JB
11014 }
11015 else
11016 work_ha_copy &= ~HA_LATT;
11017 }
11018
9399627f 11019 if (work_ha_copy & ~(HA_ERATT | HA_MBATT | HA_LATT)) {
858c9f6c
JS
11020 /*
11021 * Turn off Slow Rings interrupts, LPFC_ELS_RING is
11022 * the only slow ring.
11023 */
11024 status = (work_ha_copy &
11025 (HA_RXMASK << (4*LPFC_ELS_RING)));
11026 status >>= (4*LPFC_ELS_RING);
11027 if (status & HA_RXMASK) {
5b75da2f 11028 spin_lock_irqsave(&phba->hbalock, iflag);
9940b97b
JS
11029 if (lpfc_readl(phba->HCregaddr, &control))
11030 goto unplug_error;
a58cbd52
JS
11031
11032 lpfc_debugfs_slow_ring_trc(phba,
11033 "ISR slow ring: ctl:x%x stat:x%x isrcnt:x%x",
11034 control, status,
11035 (uint32_t)phba->sli.slistat.sli_intr);
11036
858c9f6c 11037 if (control & (HC_R0INT_ENA << LPFC_ELS_RING)) {
a58cbd52
JS
11038 lpfc_debugfs_slow_ring_trc(phba,
11039 "ISR Disable ring:"
11040 "pwork:x%x hawork:x%x wait:x%x",
11041 phba->work_ha, work_ha_copy,
11042 (uint32_t)((unsigned long)
5e9d9b82 11043 &phba->work_waitq));
a58cbd52 11044
858c9f6c
JS
11045 control &=
11046 ~(HC_R0INT_ENA << LPFC_ELS_RING);
dea3101e
JB
11047 writel(control, phba->HCregaddr);
11048 readl(phba->HCregaddr); /* flush */
dea3101e 11049 }
a58cbd52
JS
11050 else {
11051 lpfc_debugfs_slow_ring_trc(phba,
11052 "ISR slow ring: pwork:"
11053 "x%x hawork:x%x wait:x%x",
11054 phba->work_ha, work_ha_copy,
11055 (uint32_t)((unsigned long)
5e9d9b82 11056 &phba->work_waitq));
a58cbd52 11057 }
5b75da2f 11058 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea3101e
JB
11059 }
11060 }
5b75da2f 11061 spin_lock_irqsave(&phba->hbalock, iflag);
a257bf90 11062 if (work_ha_copy & HA_ERATT) {
9940b97b
JS
11063 if (lpfc_sli_read_hs(phba))
11064 goto unplug_error;
a257bf90
JS
11065 /*
11066 * Check if there is a deferred error condition
11067 * is active
11068 */
11069 if ((HS_FFER1 & phba->work_hs) &&
11070 ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
dcf2a4e0
JS
11071 HS_FFER6 | HS_FFER7 | HS_FFER8) &
11072 phba->work_hs)) {
a257bf90
JS
11073 phba->hba_flag |= DEFER_ERATT;
11074 /* Clear all interrupt enable conditions */
11075 writel(0, phba->HCregaddr);
11076 readl(phba->HCregaddr);
11077 }
11078 }
11079
9399627f 11080 if ((work_ha_copy & HA_MBATT) && (phba->sli.mbox_active)) {
92d7f7b0 11081 pmb = phba->sli.mbox_active;
04c68496 11082 pmbox = &pmb->u.mb;
34b02dcd 11083 mbox = phba->mbox;
858c9f6c 11084 vport = pmb->vport;
92d7f7b0
JS
11085
11086 /* First check out the status word */
11087 lpfc_sli_pcimem_bcopy(mbox, pmbox, sizeof(uint32_t));
11088 if (pmbox->mbxOwner != OWN_HOST) {
5b75da2f 11089 spin_unlock_irqrestore(&phba->hbalock, iflag);
92d7f7b0
JS
11090 /*
11091 * Stray Mailbox Interrupt, mbxCommand <cmd>
11092 * mbxStatus <status>
11093 */
09372820 11094 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
92d7f7b0 11095 LOG_SLI,
e8b62011 11096 "(%d):0304 Stray Mailbox "
92d7f7b0
JS
11097 "Interrupt mbxCommand x%x "
11098 "mbxStatus x%x\n",
e8b62011 11099 (vport ? vport->vpi : 0),
92d7f7b0
JS
11100 pmbox->mbxCommand,
11101 pmbox->mbxStatus);
09372820
JS
11102 /* clear mailbox attention bit */
11103 work_ha_copy &= ~HA_MBATT;
11104 } else {
97eab634 11105 phba->sli.mbox_active = NULL;
5b75da2f 11106 spin_unlock_irqrestore(&phba->hbalock, iflag);
09372820
JS
11107 phba->last_completion_time = jiffies;
11108 del_timer(&phba->sli.mbox_tmo);
09372820
JS
11109 if (pmb->mbox_cmpl) {
11110 lpfc_sli_pcimem_bcopy(mbox, pmbox,
11111 MAILBOX_CMD_SIZE);
7a470277
JS
11112 if (pmb->out_ext_byte_len &&
11113 pmb->context2)
11114 lpfc_sli_pcimem_bcopy(
11115 phba->mbox_ext,
11116 pmb->context2,
11117 pmb->out_ext_byte_len);
09372820
JS
11118 }
11119 if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
11120 pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
11121
11122 lpfc_debugfs_disc_trc(vport,
11123 LPFC_DISC_TRC_MBOX_VPORT,
11124 "MBOX dflt rpi: : "
11125 "status:x%x rpi:x%x",
11126 (uint32_t)pmbox->mbxStatus,
11127 pmbox->un.varWords[0], 0);
11128
11129 if (!pmbox->mbxStatus) {
11130 mp = (struct lpfc_dmabuf *)
11131 (pmb->context1);
11132 ndlp = (struct lpfc_nodelist *)
11133 pmb->context2;
11134
11135 /* Reg_LOGIN of dflt RPI was
11136 * successful. new lets get
11137 * rid of the RPI using the
11138 * same mbox buffer.
11139 */
11140 lpfc_unreg_login(phba,
11141 vport->vpi,
11142 pmbox->un.varWords[0],
11143 pmb);
11144 pmb->mbox_cmpl =
11145 lpfc_mbx_cmpl_dflt_rpi;
11146 pmb->context1 = mp;
11147 pmb->context2 = ndlp;
11148 pmb->vport = vport;
58da1ffb
JS
11149 rc = lpfc_sli_issue_mbox(phba,
11150 pmb,
11151 MBX_NOWAIT);
11152 if (rc != MBX_BUSY)
11153 lpfc_printf_log(phba,
11154 KERN_ERR,
11155 LOG_MBOX | LOG_SLI,
d7c255b2 11156 "0350 rc should have"
6a9c52cf 11157 "been MBX_BUSY\n");
3772a991
JS
11158 if (rc != MBX_NOT_FINISHED)
11159 goto send_current_mbox;
09372820 11160 }
858c9f6c 11161 }
5b75da2f
JS
11162 spin_lock_irqsave(
11163 &phba->pport->work_port_lock,
11164 iflag);
09372820
JS
11165 phba->pport->work_port_events &=
11166 ~WORKER_MBOX_TMO;
5b75da2f
JS
11167 spin_unlock_irqrestore(
11168 &phba->pport->work_port_lock,
11169 iflag);
09372820 11170 lpfc_mbox_cmpl_put(phba, pmb);
858c9f6c 11171 }
97eab634 11172 } else
5b75da2f 11173 spin_unlock_irqrestore(&phba->hbalock, iflag);
9399627f 11174
92d7f7b0
JS
11175 if ((work_ha_copy & HA_MBATT) &&
11176 (phba->sli.mbox_active == NULL)) {
858c9f6c 11177send_current_mbox:
92d7f7b0 11178 /* Process next mailbox command if there is one */
58da1ffb
JS
11179 do {
11180 rc = lpfc_sli_issue_mbox(phba, NULL,
11181 MBX_NOWAIT);
11182 } while (rc == MBX_NOT_FINISHED);
11183 if (rc != MBX_SUCCESS)
11184 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
11185 LOG_SLI, "0349 rc should be "
6a9c52cf 11186 "MBX_SUCCESS\n");
92d7f7b0
JS
11187 }
11188
5b75da2f 11189 spin_lock_irqsave(&phba->hbalock, iflag);
dea3101e 11190 phba->work_ha |= work_ha_copy;
5b75da2f 11191 spin_unlock_irqrestore(&phba->hbalock, iflag);
5e9d9b82 11192 lpfc_worker_wake_up(phba);
dea3101e 11193 }
9399627f 11194 return IRQ_HANDLED;
9940b97b
JS
11195unplug_error:
11196 spin_unlock_irqrestore(&phba->hbalock, iflag);
11197 return IRQ_HANDLED;
dea3101e 11198
3772a991 11199} /* lpfc_sli_sp_intr_handler */
9399627f
JS
11200
11201/**
3772a991 11202 * lpfc_sli_fp_intr_handler - Fast-path interrupt handler to SLI-3 device.
9399627f
JS
11203 * @irq: Interrupt number.
11204 * @dev_id: The device context pointer.
11205 *
11206 * This function is directly called from the PCI layer as an interrupt
3772a991
JS
11207 * service routine when device with SLI-3 interface spec is enabled with
11208 * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
11209 * ring event in the HBA. However, when the device is enabled with either
11210 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
11211 * device-level interrupt handler. When the PCI slot is in error recovery
11212 * or the HBA is undergoing initialization, the interrupt handler will not
11213 * process the interrupt. The SCSI FCP fast-path ring event are handled in
11214 * the intrrupt context. This function is called without any lock held.
11215 * It gets the hbalock to access and update SLI data structures.
9399627f
JS
11216 *
11217 * This function returns IRQ_HANDLED when interrupt is handled else it
11218 * returns IRQ_NONE.
11219 **/
11220irqreturn_t
3772a991 11221lpfc_sli_fp_intr_handler(int irq, void *dev_id)
9399627f
JS
11222{
11223 struct lpfc_hba *phba;
11224 uint32_t ha_copy;
11225 unsigned long status;
5b75da2f 11226 unsigned long iflag;
9399627f
JS
11227
11228 /* Get the driver's phba structure from the dev_id and
11229 * assume the HBA is not interrupting.
11230 */
11231 phba = (struct lpfc_hba *) dev_id;
11232
11233 if (unlikely(!phba))
11234 return IRQ_NONE;
11235
11236 /*
11237 * Stuff needs to be attented to when this function is invoked as an
11238 * individual interrupt handler in MSI-X multi-message interrupt mode
11239 */
11240 if (phba->intr_type == MSIX) {
3772a991
JS
11241 /* Check device state for handling interrupt */
11242 if (lpfc_intr_state_check(phba))
9399627f
JS
11243 return IRQ_NONE;
11244 /* Need to read HA REG for FCP ring and other ring events */
9940b97b
JS
11245 if (lpfc_readl(phba->HAregaddr, &ha_copy))
11246 return IRQ_HANDLED;
9399627f 11247 /* Clear up only attention source related to fast-path */
5b75da2f 11248 spin_lock_irqsave(&phba->hbalock, iflag);
a257bf90
JS
11249 /*
11250 * If there is deferred error attention, do not check for
11251 * any interrupt.
11252 */
11253 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
3772a991 11254 spin_unlock_irqrestore(&phba->hbalock, iflag);
a257bf90
JS
11255 return IRQ_NONE;
11256 }
9399627f
JS
11257 writel((ha_copy & (HA_R0_CLR_MSK | HA_R1_CLR_MSK)),
11258 phba->HAregaddr);
11259 readl(phba->HAregaddr); /* flush */
5b75da2f 11260 spin_unlock_irqrestore(&phba->hbalock, iflag);
9399627f
JS
11261 } else
11262 ha_copy = phba->ha_copy;
dea3101e
JB
11263
11264 /*
9399627f 11265 * Process all events on FCP ring. Take the optimized path for FCP IO.
dea3101e 11266 */
9399627f
JS
11267 ha_copy &= ~(phba->work_ha_mask);
11268
11269 status = (ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
dea3101e 11270 status >>= (4*LPFC_FCP_RING);
858c9f6c 11271 if (status & HA_RXMASK)
dea3101e
JB
11272 lpfc_sli_handle_fast_ring_event(phba,
11273 &phba->sli.ring[LPFC_FCP_RING],
11274 status);
a4bc3379
JS
11275
11276 if (phba->cfg_multi_ring_support == 2) {
11277 /*
9399627f
JS
11278 * Process all events on extra ring. Take the optimized path
11279 * for extra ring IO.
a4bc3379 11280 */
9399627f 11281 status = (ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
a4bc3379 11282 status >>= (4*LPFC_EXTRA_RING);
858c9f6c 11283 if (status & HA_RXMASK) {
a4bc3379
JS
11284 lpfc_sli_handle_fast_ring_event(phba,
11285 &phba->sli.ring[LPFC_EXTRA_RING],
11286 status);
11287 }
11288 }
dea3101e 11289 return IRQ_HANDLED;
3772a991 11290} /* lpfc_sli_fp_intr_handler */
9399627f
JS
11291
11292/**
3772a991 11293 * lpfc_sli_intr_handler - Device-level interrupt handler to SLI-3 device
9399627f
JS
11294 * @irq: Interrupt number.
11295 * @dev_id: The device context pointer.
11296 *
3772a991
JS
11297 * This function is the HBA device-level interrupt handler to device with
11298 * SLI-3 interface spec, called from the PCI layer when either MSI or
11299 * Pin-IRQ interrupt mode is enabled and there is an event in the HBA which
11300 * requires driver attention. This function invokes the slow-path interrupt
11301 * attention handling function and fast-path interrupt attention handling
11302 * function in turn to process the relevant HBA attention events. This
11303 * function is called without any lock held. It gets the hbalock to access
11304 * and update SLI data structures.
9399627f
JS
11305 *
11306 * This function returns IRQ_HANDLED when interrupt is handled, else it
11307 * returns IRQ_NONE.
11308 **/
11309irqreturn_t
3772a991 11310lpfc_sli_intr_handler(int irq, void *dev_id)
9399627f
JS
11311{
11312 struct lpfc_hba *phba;
11313 irqreturn_t sp_irq_rc, fp_irq_rc;
11314 unsigned long status1, status2;
a747c9ce 11315 uint32_t hc_copy;
9399627f
JS
11316
11317 /*
11318 * Get the driver's phba structure from the dev_id and
11319 * assume the HBA is not interrupting.
11320 */
11321 phba = (struct lpfc_hba *) dev_id;
11322
11323 if (unlikely(!phba))
11324 return IRQ_NONE;
11325
3772a991
JS
11326 /* Check device state for handling interrupt */
11327 if (lpfc_intr_state_check(phba))
9399627f
JS
11328 return IRQ_NONE;
11329
11330 spin_lock(&phba->hbalock);
9940b97b
JS
11331 if (lpfc_readl(phba->HAregaddr, &phba->ha_copy)) {
11332 spin_unlock(&phba->hbalock);
11333 return IRQ_HANDLED;
11334 }
11335
9399627f
JS
11336 if (unlikely(!phba->ha_copy)) {
11337 spin_unlock(&phba->hbalock);
11338 return IRQ_NONE;
11339 } else if (phba->ha_copy & HA_ERATT) {
11340 if (phba->hba_flag & HBA_ERATT_HANDLED)
11341 /* ERATT polling has handled ERATT */
11342 phba->ha_copy &= ~HA_ERATT;
11343 else
11344 /* Indicate interrupt handler handles ERATT */
11345 phba->hba_flag |= HBA_ERATT_HANDLED;
11346 }
11347
a257bf90
JS
11348 /*
11349 * If there is deferred error attention, do not check for any interrupt.
11350 */
11351 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
ec21b3b0 11352 spin_unlock(&phba->hbalock);
a257bf90
JS
11353 return IRQ_NONE;
11354 }
11355
9399627f 11356 /* Clear attention sources except link and error attentions */
9940b97b
JS
11357 if (lpfc_readl(phba->HCregaddr, &hc_copy)) {
11358 spin_unlock(&phba->hbalock);
11359 return IRQ_HANDLED;
11360 }
a747c9ce
JS
11361 writel(hc_copy & ~(HC_MBINT_ENA | HC_R0INT_ENA | HC_R1INT_ENA
11362 | HC_R2INT_ENA | HC_LAINT_ENA | HC_ERINT_ENA),
11363 phba->HCregaddr);
9399627f 11364 writel((phba->ha_copy & ~(HA_LATT | HA_ERATT)), phba->HAregaddr);
a747c9ce 11365 writel(hc_copy, phba->HCregaddr);
9399627f
JS
11366 readl(phba->HAregaddr); /* flush */
11367 spin_unlock(&phba->hbalock);
11368
11369 /*
11370 * Invokes slow-path host attention interrupt handling as appropriate.
11371 */
11372
11373 /* status of events with mailbox and link attention */
11374 status1 = phba->ha_copy & (HA_MBATT | HA_LATT | HA_ERATT);
11375
11376 /* status of events with ELS ring */
11377 status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_ELS_RING)));
11378 status2 >>= (4*LPFC_ELS_RING);
11379
11380 if (status1 || (status2 & HA_RXMASK))
3772a991 11381 sp_irq_rc = lpfc_sli_sp_intr_handler(irq, dev_id);
9399627f
JS
11382 else
11383 sp_irq_rc = IRQ_NONE;
11384
11385 /*
11386 * Invoke fast-path host attention interrupt handling as appropriate.
11387 */
11388
11389 /* status of events with FCP ring */
11390 status1 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
11391 status1 >>= (4*LPFC_FCP_RING);
11392
11393 /* status of events with extra ring */
11394 if (phba->cfg_multi_ring_support == 2) {
11395 status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
11396 status2 >>= (4*LPFC_EXTRA_RING);
11397 } else
11398 status2 = 0;
11399
11400 if ((status1 & HA_RXMASK) || (status2 & HA_RXMASK))
3772a991 11401 fp_irq_rc = lpfc_sli_fp_intr_handler(irq, dev_id);
9399627f
JS
11402 else
11403 fp_irq_rc = IRQ_NONE;
dea3101e 11404
9399627f
JS
11405 /* Return device-level interrupt handling status */
11406 return (sp_irq_rc == IRQ_HANDLED) ? sp_irq_rc : fp_irq_rc;
3772a991 11407} /* lpfc_sli_intr_handler */
4f774513
JS
11408
11409/**
11410 * lpfc_sli4_fcp_xri_abort_event_proc - Process fcp xri abort event
11411 * @phba: pointer to lpfc hba data structure.
11412 *
11413 * This routine is invoked by the worker thread to process all the pending
11414 * SLI4 FCP abort XRI events.
11415 **/
11416void lpfc_sli4_fcp_xri_abort_event_proc(struct lpfc_hba *phba)
11417{
11418 struct lpfc_cq_event *cq_event;
11419
11420 /* First, declare the fcp xri abort event has been handled */
11421 spin_lock_irq(&phba->hbalock);
11422 phba->hba_flag &= ~FCP_XRI_ABORT_EVENT;
11423 spin_unlock_irq(&phba->hbalock);
11424 /* Now, handle all the fcp xri abort events */
11425 while (!list_empty(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue)) {
11426 /* Get the first event from the head of the event queue */
11427 spin_lock_irq(&phba->hbalock);
11428 list_remove_head(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue,
11429 cq_event, struct lpfc_cq_event, list);
11430 spin_unlock_irq(&phba->hbalock);
11431 /* Notify aborted XRI for FCP work queue */
11432 lpfc_sli4_fcp_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
11433 /* Free the event processed back to the free pool */
11434 lpfc_sli4_cq_event_release(phba, cq_event);
11435 }
11436}
11437
11438/**
11439 * lpfc_sli4_els_xri_abort_event_proc - Process els xri abort event
11440 * @phba: pointer to lpfc hba data structure.
11441 *
11442 * This routine is invoked by the worker thread to process all the pending
11443 * SLI4 els abort xri events.
11444 **/
11445void lpfc_sli4_els_xri_abort_event_proc(struct lpfc_hba *phba)
11446{
11447 struct lpfc_cq_event *cq_event;
11448
11449 /* First, declare the els xri abort event has been handled */
11450 spin_lock_irq(&phba->hbalock);
11451 phba->hba_flag &= ~ELS_XRI_ABORT_EVENT;
11452 spin_unlock_irq(&phba->hbalock);
11453 /* Now, handle all the els xri abort events */
11454 while (!list_empty(&phba->sli4_hba.sp_els_xri_aborted_work_queue)) {
11455 /* Get the first event from the head of the event queue */
11456 spin_lock_irq(&phba->hbalock);
11457 list_remove_head(&phba->sli4_hba.sp_els_xri_aborted_work_queue,
11458 cq_event, struct lpfc_cq_event, list);
11459 spin_unlock_irq(&phba->hbalock);
11460 /* Notify aborted XRI for ELS work queue */
11461 lpfc_sli4_els_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
11462 /* Free the event processed back to the free pool */
11463 lpfc_sli4_cq_event_release(phba, cq_event);
11464 }
11465}
11466
341af102
JS
11467/**
11468 * lpfc_sli4_iocb_param_transfer - Transfer pIocbOut and cmpl status to pIocbIn
11469 * @phba: pointer to lpfc hba data structure
11470 * @pIocbIn: pointer to the rspiocbq
11471 * @pIocbOut: pointer to the cmdiocbq
11472 * @wcqe: pointer to the complete wcqe
11473 *
11474 * This routine transfers the fields of a command iocbq to a response iocbq
11475 * by copying all the IOCB fields from command iocbq and transferring the
11476 * completion status information from the complete wcqe.
11477 **/
4f774513 11478static void
341af102
JS
11479lpfc_sli4_iocb_param_transfer(struct lpfc_hba *phba,
11480 struct lpfc_iocbq *pIocbIn,
4f774513
JS
11481 struct lpfc_iocbq *pIocbOut,
11482 struct lpfc_wcqe_complete *wcqe)
11483{
af22741c 11484 int numBdes, i;
341af102 11485 unsigned long iflags;
af22741c
JS
11486 uint32_t status, max_response;
11487 struct lpfc_dmabuf *dmabuf;
11488 struct ulp_bde64 *bpl, bde;
4f774513
JS
11489 size_t offset = offsetof(struct lpfc_iocbq, iocb);
11490
11491 memcpy((char *)pIocbIn + offset, (char *)pIocbOut + offset,
11492 sizeof(struct lpfc_iocbq) - offset);
4f774513 11493 /* Map WCQE parameters into irspiocb parameters */
acd6859b
JS
11494 status = bf_get(lpfc_wcqe_c_status, wcqe);
11495 pIocbIn->iocb.ulpStatus = (status & LPFC_IOCB_STATUS_MASK);
4f774513
JS
11496 if (pIocbOut->iocb_flag & LPFC_IO_FCP)
11497 if (pIocbIn->iocb.ulpStatus == IOSTAT_FCP_RSP_ERROR)
11498 pIocbIn->iocb.un.fcpi.fcpi_parm =
11499 pIocbOut->iocb.un.fcpi.fcpi_parm -
11500 wcqe->total_data_placed;
11501 else
11502 pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
695a814e 11503 else {
4f774513 11504 pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
af22741c
JS
11505 switch (pIocbOut->iocb.ulpCommand) {
11506 case CMD_ELS_REQUEST64_CR:
11507 dmabuf = (struct lpfc_dmabuf *)pIocbOut->context3;
11508 bpl = (struct ulp_bde64 *)dmabuf->virt;
11509 bde.tus.w = le32_to_cpu(bpl[1].tus.w);
11510 max_response = bde.tus.f.bdeSize;
11511 break;
11512 case CMD_GEN_REQUEST64_CR:
11513 max_response = 0;
11514 if (!pIocbOut->context3)
11515 break;
11516 numBdes = pIocbOut->iocb.un.genreq64.bdl.bdeSize/
11517 sizeof(struct ulp_bde64);
11518 dmabuf = (struct lpfc_dmabuf *)pIocbOut->context3;
11519 bpl = (struct ulp_bde64 *)dmabuf->virt;
11520 for (i = 0; i < numBdes; i++) {
11521 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
11522 if (bde.tus.f.bdeFlags != BUFF_TYPE_BDE_64)
11523 max_response += bde.tus.f.bdeSize;
11524 }
11525 break;
11526 default:
11527 max_response = wcqe->total_data_placed;
11528 break;
11529 }
11530 if (max_response < wcqe->total_data_placed)
11531 pIocbIn->iocb.un.genreq64.bdl.bdeSize = max_response;
11532 else
11533 pIocbIn->iocb.un.genreq64.bdl.bdeSize =
11534 wcqe->total_data_placed;
695a814e 11535 }
341af102 11536
acd6859b
JS
11537 /* Convert BG errors for completion status */
11538 if (status == CQE_STATUS_DI_ERROR) {
11539 pIocbIn->iocb.ulpStatus = IOSTAT_LOCAL_REJECT;
11540
11541 if (bf_get(lpfc_wcqe_c_bg_edir, wcqe))
11542 pIocbIn->iocb.un.ulpWord[4] = IOERR_RX_DMA_FAILED;
11543 else
11544 pIocbIn->iocb.un.ulpWord[4] = IOERR_TX_DMA_FAILED;
11545
11546 pIocbIn->iocb.unsli3.sli3_bg.bgstat = 0;
11547 if (bf_get(lpfc_wcqe_c_bg_ge, wcqe)) /* Guard Check failed */
11548 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11549 BGS_GUARD_ERR_MASK;
11550 if (bf_get(lpfc_wcqe_c_bg_ae, wcqe)) /* App Tag Check failed */
11551 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11552 BGS_APPTAG_ERR_MASK;
11553 if (bf_get(lpfc_wcqe_c_bg_re, wcqe)) /* Ref Tag Check failed */
11554 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11555 BGS_REFTAG_ERR_MASK;
11556
11557 /* Check to see if there was any good data before the error */
11558 if (bf_get(lpfc_wcqe_c_bg_tdpv, wcqe)) {
11559 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11560 BGS_HI_WATER_MARK_PRESENT_MASK;
11561 pIocbIn->iocb.unsli3.sli3_bg.bghm =
11562 wcqe->total_data_placed;
11563 }
11564
11565 /*
11566 * Set ALL the error bits to indicate we don't know what
11567 * type of error it is.
11568 */
11569 if (!pIocbIn->iocb.unsli3.sli3_bg.bgstat)
11570 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11571 (BGS_REFTAG_ERR_MASK | BGS_APPTAG_ERR_MASK |
11572 BGS_GUARD_ERR_MASK);
11573 }
11574
341af102
JS
11575 /* Pick up HBA exchange busy condition */
11576 if (bf_get(lpfc_wcqe_c_xb, wcqe)) {
11577 spin_lock_irqsave(&phba->hbalock, iflags);
11578 pIocbIn->iocb_flag |= LPFC_EXCHANGE_BUSY;
11579 spin_unlock_irqrestore(&phba->hbalock, iflags);
11580 }
4f774513
JS
11581}
11582
45ed1190
JS
11583/**
11584 * lpfc_sli4_els_wcqe_to_rspiocbq - Get response iocbq from els wcqe
11585 * @phba: Pointer to HBA context object.
11586 * @wcqe: Pointer to work-queue completion queue entry.
11587 *
11588 * This routine handles an ELS work-queue completion event and construct
11589 * a pseudo response ELS IODBQ from the SLI4 ELS WCQE for the common
11590 * discovery engine to handle.
11591 *
11592 * Return: Pointer to the receive IOCBQ, NULL otherwise.
11593 **/
11594static struct lpfc_iocbq *
11595lpfc_sli4_els_wcqe_to_rspiocbq(struct lpfc_hba *phba,
11596 struct lpfc_iocbq *irspiocbq)
11597{
11598 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
11599 struct lpfc_iocbq *cmdiocbq;
11600 struct lpfc_wcqe_complete *wcqe;
11601 unsigned long iflags;
11602
11603 wcqe = &irspiocbq->cq_event.cqe.wcqe_cmpl;
7e56aa25 11604 spin_lock_irqsave(&pring->ring_lock, iflags);
45ed1190
JS
11605 pring->stats.iocb_event++;
11606 /* Look up the ELS command IOCB and create pseudo response IOCB */
11607 cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
11608 bf_get(lpfc_wcqe_c_request_tag, wcqe));
7e56aa25 11609 spin_unlock_irqrestore(&pring->ring_lock, iflags);
45ed1190
JS
11610
11611 if (unlikely(!cmdiocbq)) {
11612 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11613 "0386 ELS complete with no corresponding "
11614 "cmdiocb: iotag (%d)\n",
11615 bf_get(lpfc_wcqe_c_request_tag, wcqe));
11616 lpfc_sli_release_iocbq(phba, irspiocbq);
11617 return NULL;
11618 }
11619
11620 /* Fake the irspiocbq and copy necessary response information */
341af102 11621 lpfc_sli4_iocb_param_transfer(phba, irspiocbq, cmdiocbq, wcqe);
45ed1190
JS
11622
11623 return irspiocbq;
11624}
11625
04c68496
JS
11626/**
11627 * lpfc_sli4_sp_handle_async_event - Handle an asynchroous event
11628 * @phba: Pointer to HBA context object.
11629 * @cqe: Pointer to mailbox completion queue entry.
11630 *
11631 * This routine process a mailbox completion queue entry with asynchrous
11632 * event.
11633 *
11634 * Return: true if work posted to worker thread, otherwise false.
11635 **/
11636static bool
11637lpfc_sli4_sp_handle_async_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
11638{
11639 struct lpfc_cq_event *cq_event;
11640 unsigned long iflags;
11641
11642 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
11643 "0392 Async Event: word0:x%x, word1:x%x, "
11644 "word2:x%x, word3:x%x\n", mcqe->word0,
11645 mcqe->mcqe_tag0, mcqe->mcqe_tag1, mcqe->trailer);
11646
11647 /* Allocate a new internal CQ_EVENT entry */
11648 cq_event = lpfc_sli4_cq_event_alloc(phba);
11649 if (!cq_event) {
11650 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11651 "0394 Failed to allocate CQ_EVENT entry\n");
11652 return false;
11653 }
11654
11655 /* Move the CQE into an asynchronous event entry */
11656 memcpy(&cq_event->cqe, mcqe, sizeof(struct lpfc_mcqe));
11657 spin_lock_irqsave(&phba->hbalock, iflags);
11658 list_add_tail(&cq_event->list, &phba->sli4_hba.sp_asynce_work_queue);
11659 /* Set the async event flag */
11660 phba->hba_flag |= ASYNC_EVENT;
11661 spin_unlock_irqrestore(&phba->hbalock, iflags);
11662
11663 return true;
11664}
11665
11666/**
11667 * lpfc_sli4_sp_handle_mbox_event - Handle a mailbox completion event
11668 * @phba: Pointer to HBA context object.
11669 * @cqe: Pointer to mailbox completion queue entry.
11670 *
11671 * This routine process a mailbox completion queue entry with mailbox
11672 * completion event.
11673 *
11674 * Return: true if work posted to worker thread, otherwise false.
11675 **/
11676static bool
11677lpfc_sli4_sp_handle_mbox_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
11678{
11679 uint32_t mcqe_status;
11680 MAILBOX_t *mbox, *pmbox;
11681 struct lpfc_mqe *mqe;
11682 struct lpfc_vport *vport;
11683 struct lpfc_nodelist *ndlp;
11684 struct lpfc_dmabuf *mp;
11685 unsigned long iflags;
11686 LPFC_MBOXQ_t *pmb;
11687 bool workposted = false;
11688 int rc;
11689
11690 /* If not a mailbox complete MCQE, out by checking mailbox consume */
11691 if (!bf_get(lpfc_trailer_completed, mcqe))
11692 goto out_no_mqe_complete;
11693
11694 /* Get the reference to the active mbox command */
11695 spin_lock_irqsave(&phba->hbalock, iflags);
11696 pmb = phba->sli.mbox_active;
11697 if (unlikely(!pmb)) {
11698 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
11699 "1832 No pending MBOX command to handle\n");
11700 spin_unlock_irqrestore(&phba->hbalock, iflags);
11701 goto out_no_mqe_complete;
11702 }
11703 spin_unlock_irqrestore(&phba->hbalock, iflags);
11704 mqe = &pmb->u.mqe;
11705 pmbox = (MAILBOX_t *)&pmb->u.mqe;
11706 mbox = phba->mbox;
11707 vport = pmb->vport;
11708
11709 /* Reset heartbeat timer */
11710 phba->last_completion_time = jiffies;
11711 del_timer(&phba->sli.mbox_tmo);
11712
11713 /* Move mbox data to caller's mailbox region, do endian swapping */
11714 if (pmb->mbox_cmpl && mbox)
11715 lpfc_sli_pcimem_bcopy(mbox, mqe, sizeof(struct lpfc_mqe));
04c68496 11716
73d91e50
JS
11717 /*
11718 * For mcqe errors, conditionally move a modified error code to
11719 * the mbox so that the error will not be missed.
11720 */
11721 mcqe_status = bf_get(lpfc_mcqe_status, mcqe);
11722 if (mcqe_status != MB_CQE_STATUS_SUCCESS) {
11723 if (bf_get(lpfc_mqe_status, mqe) == MBX_SUCCESS)
11724 bf_set(lpfc_mqe_status, mqe,
11725 (LPFC_MBX_ERROR_RANGE | mcqe_status));
11726 }
04c68496
JS
11727 if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
11728 pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
11729 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_MBOX_VPORT,
11730 "MBOX dflt rpi: status:x%x rpi:x%x",
11731 mcqe_status,
11732 pmbox->un.varWords[0], 0);
11733 if (mcqe_status == MB_CQE_STATUS_SUCCESS) {
11734 mp = (struct lpfc_dmabuf *)(pmb->context1);
11735 ndlp = (struct lpfc_nodelist *)pmb->context2;
11736 /* Reg_LOGIN of dflt RPI was successful. Now lets get
11737 * RID of the PPI using the same mbox buffer.
11738 */
11739 lpfc_unreg_login(phba, vport->vpi,
11740 pmbox->un.varWords[0], pmb);
11741 pmb->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
11742 pmb->context1 = mp;
11743 pmb->context2 = ndlp;
11744 pmb->vport = vport;
11745 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
11746 if (rc != MBX_BUSY)
11747 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
11748 LOG_SLI, "0385 rc should "
11749 "have been MBX_BUSY\n");
11750 if (rc != MBX_NOT_FINISHED)
11751 goto send_current_mbox;
11752 }
11753 }
11754 spin_lock_irqsave(&phba->pport->work_port_lock, iflags);
11755 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
11756 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflags);
11757
11758 /* There is mailbox completion work to do */
11759 spin_lock_irqsave(&phba->hbalock, iflags);
11760 __lpfc_mbox_cmpl_put(phba, pmb);
11761 phba->work_ha |= HA_MBATT;
11762 spin_unlock_irqrestore(&phba->hbalock, iflags);
11763 workposted = true;
11764
11765send_current_mbox:
11766 spin_lock_irqsave(&phba->hbalock, iflags);
11767 /* Release the mailbox command posting token */
11768 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
11769 /* Setting active mailbox pointer need to be in sync to flag clear */
11770 phba->sli.mbox_active = NULL;
11771 spin_unlock_irqrestore(&phba->hbalock, iflags);
11772 /* Wake up worker thread to post the next pending mailbox command */
11773 lpfc_worker_wake_up(phba);
11774out_no_mqe_complete:
11775 if (bf_get(lpfc_trailer_consumed, mcqe))
11776 lpfc_sli4_mq_release(phba->sli4_hba.mbx_wq);
11777 return workposted;
11778}
11779
11780/**
11781 * lpfc_sli4_sp_handle_mcqe - Process a mailbox completion queue entry
11782 * @phba: Pointer to HBA context object.
11783 * @cqe: Pointer to mailbox completion queue entry.
11784 *
11785 * This routine process a mailbox completion queue entry, it invokes the
11786 * proper mailbox complete handling or asynchrous event handling routine
11787 * according to the MCQE's async bit.
11788 *
11789 * Return: true if work posted to worker thread, otherwise false.
11790 **/
11791static bool
11792lpfc_sli4_sp_handle_mcqe(struct lpfc_hba *phba, struct lpfc_cqe *cqe)
11793{
11794 struct lpfc_mcqe mcqe;
11795 bool workposted;
11796
11797 /* Copy the mailbox MCQE and convert endian order as needed */
11798 lpfc_sli_pcimem_bcopy(cqe, &mcqe, sizeof(struct lpfc_mcqe));
11799
11800 /* Invoke the proper event handling routine */
11801 if (!bf_get(lpfc_trailer_async, &mcqe))
11802 workposted = lpfc_sli4_sp_handle_mbox_event(phba, &mcqe);
11803 else
11804 workposted = lpfc_sli4_sp_handle_async_event(phba, &mcqe);
11805 return workposted;
11806}
11807
4f774513
JS
11808/**
11809 * lpfc_sli4_sp_handle_els_wcqe - Handle els work-queue completion event
11810 * @phba: Pointer to HBA context object.
2a76a283 11811 * @cq: Pointer to associated CQ
4f774513
JS
11812 * @wcqe: Pointer to work-queue completion queue entry.
11813 *
11814 * This routine handles an ELS work-queue completion event.
11815 *
11816 * Return: true if work posted to worker thread, otherwise false.
11817 **/
11818static bool
2a76a283 11819lpfc_sli4_sp_handle_els_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
4f774513
JS
11820 struct lpfc_wcqe_complete *wcqe)
11821{
4f774513
JS
11822 struct lpfc_iocbq *irspiocbq;
11823 unsigned long iflags;
2a76a283 11824 struct lpfc_sli_ring *pring = cq->pring;
0e9bb8d7
JS
11825 int txq_cnt = 0;
11826 int txcmplq_cnt = 0;
11827 int fcp_txcmplq_cnt = 0;
4f774513 11828
45ed1190 11829 /* Get an irspiocbq for later ELS response processing use */
4f774513
JS
11830 irspiocbq = lpfc_sli_get_iocbq(phba);
11831 if (!irspiocbq) {
0e9bb8d7
JS
11832 if (!list_empty(&pring->txq))
11833 txq_cnt++;
11834 if (!list_empty(&pring->txcmplq))
11835 txcmplq_cnt++;
11836 if (!list_empty(&phba->sli.ring[LPFC_FCP_RING].txcmplq))
11837 fcp_txcmplq_cnt++;
4f774513 11838 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2a9bf3d0
JS
11839 "0387 NO IOCBQ data: txq_cnt=%d iocb_cnt=%d "
11840 "fcp_txcmplq_cnt=%d, els_txcmplq_cnt=%d\n",
0e9bb8d7
JS
11841 txq_cnt, phba->iocb_cnt,
11842 fcp_txcmplq_cnt,
11843 txcmplq_cnt);
45ed1190 11844 return false;
4f774513 11845 }
4f774513 11846
45ed1190
JS
11847 /* Save off the slow-path queue event for work thread to process */
11848 memcpy(&irspiocbq->cq_event.cqe.wcqe_cmpl, wcqe, sizeof(*wcqe));
4f774513 11849 spin_lock_irqsave(&phba->hbalock, iflags);
4d9ab994 11850 list_add_tail(&irspiocbq->cq_event.list,
45ed1190
JS
11851 &phba->sli4_hba.sp_queue_event);
11852 phba->hba_flag |= HBA_SP_QUEUE_EVT;
4f774513 11853 spin_unlock_irqrestore(&phba->hbalock, iflags);
4f774513 11854
45ed1190 11855 return true;
4f774513
JS
11856}
11857
11858/**
11859 * lpfc_sli4_sp_handle_rel_wcqe - Handle slow-path WQ entry consumed event
11860 * @phba: Pointer to HBA context object.
11861 * @wcqe: Pointer to work-queue completion queue entry.
11862 *
11863 * This routine handles slow-path WQ entry comsumed event by invoking the
11864 * proper WQ release routine to the slow-path WQ.
11865 **/
11866static void
11867lpfc_sli4_sp_handle_rel_wcqe(struct lpfc_hba *phba,
11868 struct lpfc_wcqe_release *wcqe)
11869{
2e90f4b5
JS
11870 /* sanity check on queue memory */
11871 if (unlikely(!phba->sli4_hba.els_wq))
11872 return;
4f774513
JS
11873 /* Check for the slow-path ELS work queue */
11874 if (bf_get(lpfc_wcqe_r_wq_id, wcqe) == phba->sli4_hba.els_wq->queue_id)
11875 lpfc_sli4_wq_release(phba->sli4_hba.els_wq,
11876 bf_get(lpfc_wcqe_r_wqe_index, wcqe));
11877 else
11878 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11879 "2579 Slow-path wqe consume event carries "
11880 "miss-matched qid: wcqe-qid=x%x, sp-qid=x%x\n",
11881 bf_get(lpfc_wcqe_r_wqe_index, wcqe),
11882 phba->sli4_hba.els_wq->queue_id);
11883}
11884
11885/**
11886 * lpfc_sli4_sp_handle_abort_xri_wcqe - Handle a xri abort event
11887 * @phba: Pointer to HBA context object.
11888 * @cq: Pointer to a WQ completion queue.
11889 * @wcqe: Pointer to work-queue completion queue entry.
11890 *
11891 * This routine handles an XRI abort event.
11892 *
11893 * Return: true if work posted to worker thread, otherwise false.
11894 **/
11895static bool
11896lpfc_sli4_sp_handle_abort_xri_wcqe(struct lpfc_hba *phba,
11897 struct lpfc_queue *cq,
11898 struct sli4_wcqe_xri_aborted *wcqe)
11899{
11900 bool workposted = false;
11901 struct lpfc_cq_event *cq_event;
11902 unsigned long iflags;
11903
11904 /* Allocate a new internal CQ_EVENT entry */
11905 cq_event = lpfc_sli4_cq_event_alloc(phba);
11906 if (!cq_event) {
11907 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11908 "0602 Failed to allocate CQ_EVENT entry\n");
11909 return false;
11910 }
11911
11912 /* Move the CQE into the proper xri abort event list */
11913 memcpy(&cq_event->cqe, wcqe, sizeof(struct sli4_wcqe_xri_aborted));
11914 switch (cq->subtype) {
11915 case LPFC_FCP:
11916 spin_lock_irqsave(&phba->hbalock, iflags);
11917 list_add_tail(&cq_event->list,
11918 &phba->sli4_hba.sp_fcp_xri_aborted_work_queue);
11919 /* Set the fcp xri abort event flag */
11920 phba->hba_flag |= FCP_XRI_ABORT_EVENT;
11921 spin_unlock_irqrestore(&phba->hbalock, iflags);
11922 workposted = true;
11923 break;
11924 case LPFC_ELS:
11925 spin_lock_irqsave(&phba->hbalock, iflags);
11926 list_add_tail(&cq_event->list,
11927 &phba->sli4_hba.sp_els_xri_aborted_work_queue);
11928 /* Set the els xri abort event flag */
11929 phba->hba_flag |= ELS_XRI_ABORT_EVENT;
11930 spin_unlock_irqrestore(&phba->hbalock, iflags);
11931 workposted = true;
11932 break;
11933 default:
11934 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11935 "0603 Invalid work queue CQE subtype (x%x)\n",
11936 cq->subtype);
11937 workposted = false;
11938 break;
11939 }
11940 return workposted;
11941}
11942
4f774513
JS
11943/**
11944 * lpfc_sli4_sp_handle_rcqe - Process a receive-queue completion queue entry
11945 * @phba: Pointer to HBA context object.
11946 * @rcqe: Pointer to receive-queue completion queue entry.
11947 *
11948 * This routine process a receive-queue completion queue entry.
11949 *
11950 * Return: true if work posted to worker thread, otherwise false.
11951 **/
11952static bool
4d9ab994 11953lpfc_sli4_sp_handle_rcqe(struct lpfc_hba *phba, struct lpfc_rcqe *rcqe)
4f774513 11954{
4f774513
JS
11955 bool workposted = false;
11956 struct lpfc_queue *hrq = phba->sli4_hba.hdr_rq;
11957 struct lpfc_queue *drq = phba->sli4_hba.dat_rq;
11958 struct hbq_dmabuf *dma_buf;
7851fe2c 11959 uint32_t status, rq_id;
4f774513
JS
11960 unsigned long iflags;
11961
2e90f4b5
JS
11962 /* sanity check on queue memory */
11963 if (unlikely(!hrq) || unlikely(!drq))
11964 return workposted;
11965
7851fe2c
JS
11966 if (bf_get(lpfc_cqe_code, rcqe) == CQE_CODE_RECEIVE_V1)
11967 rq_id = bf_get(lpfc_rcqe_rq_id_v1, rcqe);
11968 else
11969 rq_id = bf_get(lpfc_rcqe_rq_id, rcqe);
11970 if (rq_id != hrq->queue_id)
4f774513
JS
11971 goto out;
11972
4d9ab994 11973 status = bf_get(lpfc_rcqe_status, rcqe);
4f774513
JS
11974 switch (status) {
11975 case FC_STATUS_RQ_BUF_LEN_EXCEEDED:
11976 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11977 "2537 Receive Frame Truncated!!\n");
b84daac9 11978 hrq->RQ_buf_trunc++;
4f774513 11979 case FC_STATUS_RQ_SUCCESS:
5ffc266e 11980 lpfc_sli4_rq_release(hrq, drq);
4f774513
JS
11981 spin_lock_irqsave(&phba->hbalock, iflags);
11982 dma_buf = lpfc_sli_hbqbuf_get(&phba->hbqs[0].hbq_buffer_list);
11983 if (!dma_buf) {
b84daac9 11984 hrq->RQ_no_buf_found++;
4f774513
JS
11985 spin_unlock_irqrestore(&phba->hbalock, iflags);
11986 goto out;
11987 }
b84daac9 11988 hrq->RQ_rcv_buf++;
4d9ab994 11989 memcpy(&dma_buf->cq_event.cqe.rcqe_cmpl, rcqe, sizeof(*rcqe));
4f774513 11990 /* save off the frame for the word thread to process */
4d9ab994 11991 list_add_tail(&dma_buf->cq_event.list,
45ed1190 11992 &phba->sli4_hba.sp_queue_event);
4f774513 11993 /* Frame received */
45ed1190 11994 phba->hba_flag |= HBA_SP_QUEUE_EVT;
4f774513
JS
11995 spin_unlock_irqrestore(&phba->hbalock, iflags);
11996 workposted = true;
11997 break;
11998 case FC_STATUS_INSUFF_BUF_NEED_BUF:
11999 case FC_STATUS_INSUFF_BUF_FRM_DISC:
b84daac9 12000 hrq->RQ_no_posted_buf++;
4f774513
JS
12001 /* Post more buffers if possible */
12002 spin_lock_irqsave(&phba->hbalock, iflags);
12003 phba->hba_flag |= HBA_POST_RECEIVE_BUFFER;
12004 spin_unlock_irqrestore(&phba->hbalock, iflags);
12005 workposted = true;
12006 break;
12007 }
12008out:
12009 return workposted;
4f774513
JS
12010}
12011
4d9ab994
JS
12012/**
12013 * lpfc_sli4_sp_handle_cqe - Process a slow path completion queue entry
12014 * @phba: Pointer to HBA context object.
12015 * @cq: Pointer to the completion queue.
12016 * @wcqe: Pointer to a completion queue entry.
12017 *
25985edc 12018 * This routine process a slow-path work-queue or receive queue completion queue
4d9ab994
JS
12019 * entry.
12020 *
12021 * Return: true if work posted to worker thread, otherwise false.
12022 **/
12023static bool
12024lpfc_sli4_sp_handle_cqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
12025 struct lpfc_cqe *cqe)
12026{
45ed1190 12027 struct lpfc_cqe cqevt;
4d9ab994
JS
12028 bool workposted = false;
12029
12030 /* Copy the work queue CQE and convert endian order if needed */
45ed1190 12031 lpfc_sli_pcimem_bcopy(cqe, &cqevt, sizeof(struct lpfc_cqe));
4d9ab994
JS
12032
12033 /* Check and process for different type of WCQE and dispatch */
45ed1190 12034 switch (bf_get(lpfc_cqe_code, &cqevt)) {
4d9ab994 12035 case CQE_CODE_COMPL_WQE:
45ed1190 12036 /* Process the WQ/RQ complete event */
bc73905a 12037 phba->last_completion_time = jiffies;
2a76a283 12038 workposted = lpfc_sli4_sp_handle_els_wcqe(phba, cq,
45ed1190 12039 (struct lpfc_wcqe_complete *)&cqevt);
4d9ab994
JS
12040 break;
12041 case CQE_CODE_RELEASE_WQE:
12042 /* Process the WQ release event */
12043 lpfc_sli4_sp_handle_rel_wcqe(phba,
45ed1190 12044 (struct lpfc_wcqe_release *)&cqevt);
4d9ab994
JS
12045 break;
12046 case CQE_CODE_XRI_ABORTED:
12047 /* Process the WQ XRI abort event */
bc73905a 12048 phba->last_completion_time = jiffies;
4d9ab994 12049 workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
45ed1190 12050 (struct sli4_wcqe_xri_aborted *)&cqevt);
4d9ab994
JS
12051 break;
12052 case CQE_CODE_RECEIVE:
7851fe2c 12053 case CQE_CODE_RECEIVE_V1:
4d9ab994 12054 /* Process the RQ event */
bc73905a 12055 phba->last_completion_time = jiffies;
4d9ab994 12056 workposted = lpfc_sli4_sp_handle_rcqe(phba,
45ed1190 12057 (struct lpfc_rcqe *)&cqevt);
4d9ab994
JS
12058 break;
12059 default:
12060 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12061 "0388 Not a valid WCQE code: x%x\n",
45ed1190 12062 bf_get(lpfc_cqe_code, &cqevt));
4d9ab994
JS
12063 break;
12064 }
12065 return workposted;
12066}
12067
4f774513
JS
12068/**
12069 * lpfc_sli4_sp_handle_eqe - Process a slow-path event queue entry
12070 * @phba: Pointer to HBA context object.
12071 * @eqe: Pointer to fast-path event queue entry.
12072 *
12073 * This routine process a event queue entry from the slow-path event queue.
12074 * It will check the MajorCode and MinorCode to determine this is for a
12075 * completion event on a completion queue, if not, an error shall be logged
12076 * and just return. Otherwise, it will get to the corresponding completion
12077 * queue and process all the entries on that completion queue, rearm the
12078 * completion queue, and then return.
12079 *
12080 **/
12081static void
67d12733
JS
12082lpfc_sli4_sp_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe,
12083 struct lpfc_queue *speq)
4f774513 12084{
67d12733 12085 struct lpfc_queue *cq = NULL, *childq;
4f774513
JS
12086 struct lpfc_cqe *cqe;
12087 bool workposted = false;
12088 int ecount = 0;
12089 uint16_t cqid;
12090
4f774513 12091 /* Get the reference to the corresponding CQ */
cb5172ea 12092 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
4f774513 12093
4f774513
JS
12094 list_for_each_entry(childq, &speq->child_list, list) {
12095 if (childq->queue_id == cqid) {
12096 cq = childq;
12097 break;
12098 }
12099 }
12100 if (unlikely(!cq)) {
75baf696
JS
12101 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
12102 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12103 "0365 Slow-path CQ identifier "
12104 "(%d) does not exist\n", cqid);
4f774513
JS
12105 return;
12106 }
12107
12108 /* Process all the entries to the CQ */
12109 switch (cq->type) {
12110 case LPFC_MCQ:
12111 while ((cqe = lpfc_sli4_cq_get(cq))) {
12112 workposted |= lpfc_sli4_sp_handle_mcqe(phba, cqe);
73d91e50 12113 if (!(++ecount % cq->entry_repost))
4f774513 12114 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
b84daac9 12115 cq->CQ_mbox++;
4f774513
JS
12116 }
12117 break;
12118 case LPFC_WCQ:
12119 while ((cqe = lpfc_sli4_cq_get(cq))) {
0558056c
JS
12120 if (cq->subtype == LPFC_FCP)
12121 workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq,
12122 cqe);
12123 else
12124 workposted |= lpfc_sli4_sp_handle_cqe(phba, cq,
12125 cqe);
73d91e50 12126 if (!(++ecount % cq->entry_repost))
4f774513
JS
12127 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
12128 }
b84daac9
JS
12129
12130 /* Track the max number of CQEs processed in 1 EQ */
12131 if (ecount > cq->CQ_max_cqe)
12132 cq->CQ_max_cqe = ecount;
4f774513
JS
12133 break;
12134 default:
12135 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12136 "0370 Invalid completion queue type (%d)\n",
12137 cq->type);
12138 return;
12139 }
12140
12141 /* Catch the no cq entry condition, log an error */
12142 if (unlikely(ecount == 0))
12143 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12144 "0371 No entry from the CQ: identifier "
12145 "(x%x), type (%d)\n", cq->queue_id, cq->type);
12146
12147 /* In any case, flash and re-arm the RCQ */
12148 lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
12149
12150 /* wake up worker thread if there are works to be done */
12151 if (workposted)
12152 lpfc_worker_wake_up(phba);
12153}
12154
12155/**
12156 * lpfc_sli4_fp_handle_fcp_wcqe - Process fast-path work queue completion entry
2a76a283
JS
12157 * @phba: Pointer to HBA context object.
12158 * @cq: Pointer to associated CQ
12159 * @wcqe: Pointer to work-queue completion queue entry.
4f774513
JS
12160 *
12161 * This routine process a fast-path work queue completion entry from fast-path
12162 * event queue for FCP command response completion.
12163 **/
12164static void
2a76a283 12165lpfc_sli4_fp_handle_fcp_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
4f774513
JS
12166 struct lpfc_wcqe_complete *wcqe)
12167{
2a76a283 12168 struct lpfc_sli_ring *pring = cq->pring;
4f774513
JS
12169 struct lpfc_iocbq *cmdiocbq;
12170 struct lpfc_iocbq irspiocbq;
12171 unsigned long iflags;
12172
4f774513
JS
12173 /* Check for response status */
12174 if (unlikely(bf_get(lpfc_wcqe_c_status, wcqe))) {
12175 /* If resource errors reported from HBA, reduce queue
12176 * depth of the SCSI device.
12177 */
e3d2b802
JS
12178 if (((bf_get(lpfc_wcqe_c_status, wcqe) ==
12179 IOSTAT_LOCAL_REJECT)) &&
12180 ((wcqe->parameter & IOERR_PARAM_MASK) ==
12181 IOERR_NO_RESOURCES))
4f774513 12182 phba->lpfc_rampdown_queue_depth(phba);
e3d2b802 12183
4f774513
JS
12184 /* Log the error status */
12185 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12186 "0373 FCP complete error: status=x%x, "
12187 "hw_status=x%x, total_data_specified=%d, "
12188 "parameter=x%x, word3=x%x\n",
12189 bf_get(lpfc_wcqe_c_status, wcqe),
12190 bf_get(lpfc_wcqe_c_hw_status, wcqe),
12191 wcqe->total_data_placed, wcqe->parameter,
12192 wcqe->word3);
12193 }
12194
12195 /* Look up the FCP command IOCB and create pseudo response IOCB */
7e56aa25
JS
12196 spin_lock_irqsave(&pring->ring_lock, iflags);
12197 pring->stats.iocb_event++;
4f774513
JS
12198 cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
12199 bf_get(lpfc_wcqe_c_request_tag, wcqe));
7e56aa25 12200 spin_unlock_irqrestore(&pring->ring_lock, iflags);
4f774513
JS
12201 if (unlikely(!cmdiocbq)) {
12202 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12203 "0374 FCP complete with no corresponding "
12204 "cmdiocb: iotag (%d)\n",
12205 bf_get(lpfc_wcqe_c_request_tag, wcqe));
12206 return;
12207 }
12208 if (unlikely(!cmdiocbq->iocb_cmpl)) {
12209 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12210 "0375 FCP cmdiocb not callback function "
12211 "iotag: (%d)\n",
12212 bf_get(lpfc_wcqe_c_request_tag, wcqe));
12213 return;
12214 }
12215
12216 /* Fake the irspiocb and copy necessary response information */
341af102 12217 lpfc_sli4_iocb_param_transfer(phba, &irspiocbq, cmdiocbq, wcqe);
4f774513 12218
0f65ff68
JS
12219 if (cmdiocbq->iocb_flag & LPFC_DRIVER_ABORTED) {
12220 spin_lock_irqsave(&phba->hbalock, iflags);
12221 cmdiocbq->iocb_flag &= ~LPFC_DRIVER_ABORTED;
12222 spin_unlock_irqrestore(&phba->hbalock, iflags);
12223 }
12224
4f774513
JS
12225 /* Pass the cmd_iocb and the rsp state to the upper layer */
12226 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq, &irspiocbq);
12227}
12228
12229/**
12230 * lpfc_sli4_fp_handle_rel_wcqe - Handle fast-path WQ entry consumed event
12231 * @phba: Pointer to HBA context object.
12232 * @cq: Pointer to completion queue.
12233 * @wcqe: Pointer to work-queue completion queue entry.
12234 *
12235 * This routine handles an fast-path WQ entry comsumed event by invoking the
12236 * proper WQ release routine to the slow-path WQ.
12237 **/
12238static void
12239lpfc_sli4_fp_handle_rel_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
12240 struct lpfc_wcqe_release *wcqe)
12241{
12242 struct lpfc_queue *childwq;
12243 bool wqid_matched = false;
12244 uint16_t fcp_wqid;
12245
12246 /* Check for fast-path FCP work queue release */
12247 fcp_wqid = bf_get(lpfc_wcqe_r_wq_id, wcqe);
12248 list_for_each_entry(childwq, &cq->child_list, list) {
12249 if (childwq->queue_id == fcp_wqid) {
12250 lpfc_sli4_wq_release(childwq,
12251 bf_get(lpfc_wcqe_r_wqe_index, wcqe));
12252 wqid_matched = true;
12253 break;
12254 }
12255 }
12256 /* Report warning log message if no match found */
12257 if (wqid_matched != true)
12258 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12259 "2580 Fast-path wqe consume event carries "
12260 "miss-matched qid: wcqe-qid=x%x\n", fcp_wqid);
12261}
12262
12263/**
12264 * lpfc_sli4_fp_handle_wcqe - Process fast-path work queue completion entry
12265 * @cq: Pointer to the completion queue.
12266 * @eqe: Pointer to fast-path completion queue entry.
12267 *
12268 * This routine process a fast-path work queue completion entry from fast-path
12269 * event queue for FCP command response completion.
12270 **/
12271static int
12272lpfc_sli4_fp_handle_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
12273 struct lpfc_cqe *cqe)
12274{
12275 struct lpfc_wcqe_release wcqe;
12276 bool workposted = false;
12277
12278 /* Copy the work queue CQE and convert endian order if needed */
12279 lpfc_sli_pcimem_bcopy(cqe, &wcqe, sizeof(struct lpfc_cqe));
12280
12281 /* Check and process for different type of WCQE and dispatch */
12282 switch (bf_get(lpfc_wcqe_c_code, &wcqe)) {
12283 case CQE_CODE_COMPL_WQE:
b84daac9 12284 cq->CQ_wq++;
4f774513 12285 /* Process the WQ complete event */
98fc5dd9 12286 phba->last_completion_time = jiffies;
2a76a283 12287 lpfc_sli4_fp_handle_fcp_wcqe(phba, cq,
4f774513
JS
12288 (struct lpfc_wcqe_complete *)&wcqe);
12289 break;
12290 case CQE_CODE_RELEASE_WQE:
b84daac9 12291 cq->CQ_release_wqe++;
4f774513
JS
12292 /* Process the WQ release event */
12293 lpfc_sli4_fp_handle_rel_wcqe(phba, cq,
12294 (struct lpfc_wcqe_release *)&wcqe);
12295 break;
12296 case CQE_CODE_XRI_ABORTED:
b84daac9 12297 cq->CQ_xri_aborted++;
4f774513 12298 /* Process the WQ XRI abort event */
bc73905a 12299 phba->last_completion_time = jiffies;
4f774513
JS
12300 workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
12301 (struct sli4_wcqe_xri_aborted *)&wcqe);
12302 break;
12303 default:
12304 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12305 "0144 Not a valid WCQE code: x%x\n",
12306 bf_get(lpfc_wcqe_c_code, &wcqe));
12307 break;
12308 }
12309 return workposted;
12310}
12311
12312/**
67d12733 12313 * lpfc_sli4_hba_handle_eqe - Process a fast-path event queue entry
4f774513
JS
12314 * @phba: Pointer to HBA context object.
12315 * @eqe: Pointer to fast-path event queue entry.
12316 *
12317 * This routine process a event queue entry from the fast-path event queue.
12318 * It will check the MajorCode and MinorCode to determine this is for a
12319 * completion event on a completion queue, if not, an error shall be logged
12320 * and just return. Otherwise, it will get to the corresponding completion
12321 * queue and process all the entries on the completion queue, rearm the
12322 * completion queue, and then return.
12323 **/
12324static void
67d12733
JS
12325lpfc_sli4_hba_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe,
12326 uint32_t qidx)
4f774513
JS
12327{
12328 struct lpfc_queue *cq;
12329 struct lpfc_cqe *cqe;
12330 bool workposted = false;
12331 uint16_t cqid;
12332 int ecount = 0;
12333
cb5172ea 12334 if (unlikely(bf_get_le32(lpfc_eqe_major_code, eqe) != 0)) {
4f774513 12335 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
67d12733 12336 "0366 Not a valid completion "
4f774513 12337 "event: majorcode=x%x, minorcode=x%x\n",
cb5172ea
JS
12338 bf_get_le32(lpfc_eqe_major_code, eqe),
12339 bf_get_le32(lpfc_eqe_minor_code, eqe));
4f774513
JS
12340 return;
12341 }
12342
67d12733
JS
12343 /* Get the reference to the corresponding CQ */
12344 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
12345
12346 /* Check if this is a Slow path event */
12347 if (unlikely(cqid != phba->sli4_hba.fcp_cq_map[qidx])) {
12348 lpfc_sli4_sp_handle_eqe(phba, eqe,
12349 phba->sli4_hba.hba_eq[qidx]);
12350 return;
12351 }
12352
2e90f4b5
JS
12353 if (unlikely(!phba->sli4_hba.fcp_cq)) {
12354 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12355 "3146 Fast-path completion queues "
12356 "does not exist\n");
12357 return;
12358 }
67d12733 12359 cq = phba->sli4_hba.fcp_cq[qidx];
4f774513 12360 if (unlikely(!cq)) {
75baf696
JS
12361 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
12362 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12363 "0367 Fast-path completion queue "
67d12733 12364 "(%d) does not exist\n", qidx);
4f774513
JS
12365 return;
12366 }
12367
4f774513
JS
12368 if (unlikely(cqid != cq->queue_id)) {
12369 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12370 "0368 Miss-matched fast-path completion "
12371 "queue identifier: eqcqid=%d, fcpcqid=%d\n",
12372 cqid, cq->queue_id);
12373 return;
12374 }
12375
12376 /* Process all the entries to the CQ */
12377 while ((cqe = lpfc_sli4_cq_get(cq))) {
12378 workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq, cqe);
73d91e50 12379 if (!(++ecount % cq->entry_repost))
4f774513
JS
12380 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
12381 }
12382
b84daac9
JS
12383 /* Track the max number of CQEs processed in 1 EQ */
12384 if (ecount > cq->CQ_max_cqe)
12385 cq->CQ_max_cqe = ecount;
12386
4f774513
JS
12387 /* Catch the no cq entry condition */
12388 if (unlikely(ecount == 0))
12389 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12390 "0369 No entry from fast-path completion "
12391 "queue fcpcqid=%d\n", cq->queue_id);
12392
12393 /* In any case, flash and re-arm the CQ */
12394 lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
12395
12396 /* wake up worker thread if there are works to be done */
12397 if (workposted)
12398 lpfc_worker_wake_up(phba);
12399}
12400
12401static void
12402lpfc_sli4_eq_flush(struct lpfc_hba *phba, struct lpfc_queue *eq)
12403{
12404 struct lpfc_eqe *eqe;
12405
12406 /* walk all the EQ entries and drop on the floor */
12407 while ((eqe = lpfc_sli4_eq_get(eq)))
12408 ;
12409
12410 /* Clear and re-arm the EQ */
12411 lpfc_sli4_eq_release(eq, LPFC_QUEUE_REARM);
12412}
12413
1ba981fd
JS
12414
12415/**
12416 * lpfc_sli4_fof_handle_eqe - Process a Flash Optimized Fabric event queue
12417 * entry
12418 * @phba: Pointer to HBA context object.
12419 * @eqe: Pointer to fast-path event queue entry.
12420 *
12421 * This routine process a event queue entry from the Flash Optimized Fabric
12422 * event queue. It will check the MajorCode and MinorCode to determine this
12423 * is for a completion event on a completion queue, if not, an error shall be
12424 * logged and just return. Otherwise, it will get to the corresponding
12425 * completion queue and process all the entries on the completion queue, rearm
12426 * the completion queue, and then return.
12427 **/
12428static void
12429lpfc_sli4_fof_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe)
12430{
12431 struct lpfc_queue *cq;
12432 struct lpfc_cqe *cqe;
12433 bool workposted = false;
12434 uint16_t cqid;
12435 int ecount = 0;
12436
12437 if (unlikely(bf_get_le32(lpfc_eqe_major_code, eqe) != 0)) {
12438 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12439 "9147 Not a valid completion "
12440 "event: majorcode=x%x, minorcode=x%x\n",
12441 bf_get_le32(lpfc_eqe_major_code, eqe),
12442 bf_get_le32(lpfc_eqe_minor_code, eqe));
12443 return;
12444 }
12445
12446 /* Get the reference to the corresponding CQ */
12447 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
12448
12449 /* Next check for OAS */
12450 cq = phba->sli4_hba.oas_cq;
12451 if (unlikely(!cq)) {
12452 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
12453 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12454 "9148 OAS completion queue "
12455 "does not exist\n");
12456 return;
12457 }
12458
12459 if (unlikely(cqid != cq->queue_id)) {
12460 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12461 "9149 Miss-matched fast-path compl "
12462 "queue id: eqcqid=%d, fcpcqid=%d\n",
12463 cqid, cq->queue_id);
12464 return;
12465 }
12466
12467 /* Process all the entries to the OAS CQ */
12468 while ((cqe = lpfc_sli4_cq_get(cq))) {
12469 workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq, cqe);
12470 if (!(++ecount % cq->entry_repost))
12471 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
12472 }
12473
12474 /* Track the max number of CQEs processed in 1 EQ */
12475 if (ecount > cq->CQ_max_cqe)
12476 cq->CQ_max_cqe = ecount;
12477
12478 /* Catch the no cq entry condition */
12479 if (unlikely(ecount == 0))
12480 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12481 "9153 No entry from fast-path completion "
12482 "queue fcpcqid=%d\n", cq->queue_id);
12483
12484 /* In any case, flash and re-arm the CQ */
12485 lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
12486
12487 /* wake up worker thread if there are works to be done */
12488 if (workposted)
12489 lpfc_worker_wake_up(phba);
12490}
12491
12492/**
12493 * lpfc_sli4_fof_intr_handler - HBA interrupt handler to SLI-4 device
12494 * @irq: Interrupt number.
12495 * @dev_id: The device context pointer.
12496 *
12497 * This function is directly called from the PCI layer as an interrupt
12498 * service routine when device with SLI-4 interface spec is enabled with
12499 * MSI-X multi-message interrupt mode and there is a Flash Optimized Fabric
12500 * IOCB ring event in the HBA. However, when the device is enabled with either
12501 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
12502 * device-level interrupt handler. When the PCI slot is in error recovery
12503 * or the HBA is undergoing initialization, the interrupt handler will not
12504 * process the interrupt. The Flash Optimized Fabric ring event are handled in
12505 * the intrrupt context. This function is called without any lock held.
12506 * It gets the hbalock to access and update SLI data structures. Note that,
12507 * the EQ to CQ are one-to-one map such that the EQ index is
12508 * equal to that of CQ index.
12509 *
12510 * This function returns IRQ_HANDLED when interrupt is handled else it
12511 * returns IRQ_NONE.
12512 **/
12513irqreturn_t
12514lpfc_sli4_fof_intr_handler(int irq, void *dev_id)
12515{
12516 struct lpfc_hba *phba;
12517 struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
12518 struct lpfc_queue *eq;
12519 struct lpfc_eqe *eqe;
12520 unsigned long iflag;
12521 int ecount = 0;
12522 uint32_t eqidx;
12523
12524 /* Get the driver's phba structure from the dev_id */
12525 fcp_eq_hdl = (struct lpfc_fcp_eq_hdl *)dev_id;
12526 phba = fcp_eq_hdl->phba;
12527 eqidx = fcp_eq_hdl->idx;
12528
12529 if (unlikely(!phba))
12530 return IRQ_NONE;
12531
12532 /* Get to the EQ struct associated with this vector */
12533 eq = phba->sli4_hba.fof_eq;
12534 if (unlikely(!eq))
12535 return IRQ_NONE;
12536
12537 /* Check device state for handling interrupt */
12538 if (unlikely(lpfc_intr_state_check(phba))) {
12539 eq->EQ_badstate++;
12540 /* Check again for link_state with lock held */
12541 spin_lock_irqsave(&phba->hbalock, iflag);
12542 if (phba->link_state < LPFC_LINK_DOWN)
12543 /* Flush, clear interrupt, and rearm the EQ */
12544 lpfc_sli4_eq_flush(phba, eq);
12545 spin_unlock_irqrestore(&phba->hbalock, iflag);
12546 return IRQ_NONE;
12547 }
12548
12549 /*
12550 * Process all the event on FCP fast-path EQ
12551 */
12552 while ((eqe = lpfc_sli4_eq_get(eq))) {
12553 lpfc_sli4_fof_handle_eqe(phba, eqe);
12554 if (!(++ecount % eq->entry_repost))
12555 lpfc_sli4_eq_release(eq, LPFC_QUEUE_NOARM);
12556 eq->EQ_processed++;
12557 }
12558
12559 /* Track the max number of EQEs processed in 1 intr */
12560 if (ecount > eq->EQ_max_eqe)
12561 eq->EQ_max_eqe = ecount;
12562
12563
12564 if (unlikely(ecount == 0)) {
12565 eq->EQ_no_entry++;
12566
12567 if (phba->intr_type == MSIX)
12568 /* MSI-X treated interrupt served as no EQ share INT */
12569 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12570 "9145 MSI-X interrupt with no EQE\n");
12571 else {
12572 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12573 "9146 ISR interrupt with no EQE\n");
12574 /* Non MSI-X treated on interrupt as EQ share INT */
12575 return IRQ_NONE;
12576 }
12577 }
12578 /* Always clear and re-arm the fast-path EQ */
12579 lpfc_sli4_eq_release(eq, LPFC_QUEUE_REARM);
12580 return IRQ_HANDLED;
12581}
12582
4f774513 12583/**
67d12733 12584 * lpfc_sli4_hba_intr_handler - HBA interrupt handler to SLI-4 device
4f774513
JS
12585 * @irq: Interrupt number.
12586 * @dev_id: The device context pointer.
12587 *
12588 * This function is directly called from the PCI layer as an interrupt
12589 * service routine when device with SLI-4 interface spec is enabled with
12590 * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
12591 * ring event in the HBA. However, when the device is enabled with either
12592 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
12593 * device-level interrupt handler. When the PCI slot is in error recovery
12594 * or the HBA is undergoing initialization, the interrupt handler will not
12595 * process the interrupt. The SCSI FCP fast-path ring event are handled in
12596 * the intrrupt context. This function is called without any lock held.
12597 * It gets the hbalock to access and update SLI data structures. Note that,
12598 * the FCP EQ to FCP CQ are one-to-one map such that the FCP EQ index is
12599 * equal to that of FCP CQ index.
12600 *
67d12733
JS
12601 * The link attention and ELS ring attention events are handled
12602 * by the worker thread. The interrupt handler signals the worker thread
12603 * and returns for these events. This function is called without any lock
12604 * held. It gets the hbalock to access and update SLI data structures.
12605 *
4f774513
JS
12606 * This function returns IRQ_HANDLED when interrupt is handled else it
12607 * returns IRQ_NONE.
12608 **/
12609irqreturn_t
67d12733 12610lpfc_sli4_hba_intr_handler(int irq, void *dev_id)
4f774513
JS
12611{
12612 struct lpfc_hba *phba;
12613 struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
12614 struct lpfc_queue *fpeq;
12615 struct lpfc_eqe *eqe;
12616 unsigned long iflag;
12617 int ecount = 0;
962bc51b 12618 int fcp_eqidx;
4f774513
JS
12619
12620 /* Get the driver's phba structure from the dev_id */
12621 fcp_eq_hdl = (struct lpfc_fcp_eq_hdl *)dev_id;
12622 phba = fcp_eq_hdl->phba;
12623 fcp_eqidx = fcp_eq_hdl->idx;
12624
12625 if (unlikely(!phba))
12626 return IRQ_NONE;
67d12733 12627 if (unlikely(!phba->sli4_hba.hba_eq))
5350d872 12628 return IRQ_NONE;
4f774513
JS
12629
12630 /* Get to the EQ struct associated with this vector */
67d12733 12631 fpeq = phba->sli4_hba.hba_eq[fcp_eqidx];
2e90f4b5
JS
12632 if (unlikely(!fpeq))
12633 return IRQ_NONE;
4f774513 12634
ba20c853
JS
12635 if (lpfc_fcp_look_ahead) {
12636 if (atomic_dec_and_test(&fcp_eq_hdl->fcp_eq_in_use))
12637 lpfc_sli4_eq_clr_intr(fpeq);
12638 else {
12639 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
12640 return IRQ_NONE;
12641 }
12642 }
12643
4f774513
JS
12644 /* Check device state for handling interrupt */
12645 if (unlikely(lpfc_intr_state_check(phba))) {
b84daac9 12646 fpeq->EQ_badstate++;
4f774513
JS
12647 /* Check again for link_state with lock held */
12648 spin_lock_irqsave(&phba->hbalock, iflag);
12649 if (phba->link_state < LPFC_LINK_DOWN)
12650 /* Flush, clear interrupt, and rearm the EQ */
12651 lpfc_sli4_eq_flush(phba, fpeq);
12652 spin_unlock_irqrestore(&phba->hbalock, iflag);
ba20c853
JS
12653 if (lpfc_fcp_look_ahead)
12654 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
4f774513
JS
12655 return IRQ_NONE;
12656 }
12657
12658 /*
12659 * Process all the event on FCP fast-path EQ
12660 */
12661 while ((eqe = lpfc_sli4_eq_get(fpeq))) {
eb016566
JS
12662 if (eqe == NULL)
12663 break;
12664
67d12733 12665 lpfc_sli4_hba_handle_eqe(phba, eqe, fcp_eqidx);
73d91e50 12666 if (!(++ecount % fpeq->entry_repost))
4f774513 12667 lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_NOARM);
b84daac9 12668 fpeq->EQ_processed++;
4f774513
JS
12669 }
12670
b84daac9
JS
12671 /* Track the max number of EQEs processed in 1 intr */
12672 if (ecount > fpeq->EQ_max_eqe)
12673 fpeq->EQ_max_eqe = ecount;
12674
4f774513
JS
12675 /* Always clear and re-arm the fast-path EQ */
12676 lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_REARM);
12677
12678 if (unlikely(ecount == 0)) {
b84daac9 12679 fpeq->EQ_no_entry++;
ba20c853
JS
12680
12681 if (lpfc_fcp_look_ahead) {
12682 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
12683 return IRQ_NONE;
12684 }
12685
4f774513
JS
12686 if (phba->intr_type == MSIX)
12687 /* MSI-X treated interrupt served as no EQ share INT */
12688 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12689 "0358 MSI-X interrupt with no EQE\n");
12690 else
12691 /* Non MSI-X treated on interrupt as EQ share INT */
12692 return IRQ_NONE;
12693 }
12694
ba20c853
JS
12695 if (lpfc_fcp_look_ahead)
12696 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
4f774513
JS
12697 return IRQ_HANDLED;
12698} /* lpfc_sli4_fp_intr_handler */
12699
12700/**
12701 * lpfc_sli4_intr_handler - Device-level interrupt handler for SLI-4 device
12702 * @irq: Interrupt number.
12703 * @dev_id: The device context pointer.
12704 *
12705 * This function is the device-level interrupt handler to device with SLI-4
12706 * interface spec, called from the PCI layer when either MSI or Pin-IRQ
12707 * interrupt mode is enabled and there is an event in the HBA which requires
12708 * driver attention. This function invokes the slow-path interrupt attention
12709 * handling function and fast-path interrupt attention handling function in
12710 * turn to process the relevant HBA attention events. This function is called
12711 * without any lock held. It gets the hbalock to access and update SLI data
12712 * structures.
12713 *
12714 * This function returns IRQ_HANDLED when interrupt is handled, else it
12715 * returns IRQ_NONE.
12716 **/
12717irqreturn_t
12718lpfc_sli4_intr_handler(int irq, void *dev_id)
12719{
12720 struct lpfc_hba *phba;
67d12733
JS
12721 irqreturn_t hba_irq_rc;
12722 bool hba_handled = false;
962bc51b 12723 int fcp_eqidx;
4f774513
JS
12724
12725 /* Get the driver's phba structure from the dev_id */
12726 phba = (struct lpfc_hba *)dev_id;
12727
12728 if (unlikely(!phba))
12729 return IRQ_NONE;
12730
4f774513
JS
12731 /*
12732 * Invoke fast-path host attention interrupt handling as appropriate.
12733 */
67d12733
JS
12734 for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_io_channel; fcp_eqidx++) {
12735 hba_irq_rc = lpfc_sli4_hba_intr_handler(irq,
4f774513 12736 &phba->sli4_hba.fcp_eq_hdl[fcp_eqidx]);
67d12733
JS
12737 if (hba_irq_rc == IRQ_HANDLED)
12738 hba_handled |= true;
4f774513
JS
12739 }
12740
1ba981fd
JS
12741 if (phba->cfg_fof) {
12742 hba_irq_rc = lpfc_sli4_fof_intr_handler(irq,
12743 &phba->sli4_hba.fcp_eq_hdl[0]);
12744 if (hba_irq_rc == IRQ_HANDLED)
12745 hba_handled |= true;
12746 }
12747
67d12733 12748 return (hba_handled == true) ? IRQ_HANDLED : IRQ_NONE;
4f774513
JS
12749} /* lpfc_sli4_intr_handler */
12750
12751/**
12752 * lpfc_sli4_queue_free - free a queue structure and associated memory
12753 * @queue: The queue structure to free.
12754 *
b595076a 12755 * This function frees a queue structure and the DMAable memory used for
4f774513
JS
12756 * the host resident queue. This function must be called after destroying the
12757 * queue on the HBA.
12758 **/
12759void
12760lpfc_sli4_queue_free(struct lpfc_queue *queue)
12761{
12762 struct lpfc_dmabuf *dmabuf;
12763
12764 if (!queue)
12765 return;
12766
12767 while (!list_empty(&queue->page_list)) {
12768 list_remove_head(&queue->page_list, dmabuf, struct lpfc_dmabuf,
12769 list);
49198b37 12770 dma_free_coherent(&queue->phba->pcidev->dev, SLI4_PAGE_SIZE,
4f774513
JS
12771 dmabuf->virt, dmabuf->phys);
12772 kfree(dmabuf);
12773 }
12774 kfree(queue);
12775 return;
12776}
12777
12778/**
12779 * lpfc_sli4_queue_alloc - Allocate and initialize a queue structure
12780 * @phba: The HBA that this queue is being created on.
12781 * @entry_size: The size of each queue entry for this queue.
12782 * @entry count: The number of entries that this queue will handle.
12783 *
12784 * This function allocates a queue structure and the DMAable memory used for
12785 * the host resident queue. This function must be called before creating the
12786 * queue on the HBA.
12787 **/
12788struct lpfc_queue *
12789lpfc_sli4_queue_alloc(struct lpfc_hba *phba, uint32_t entry_size,
12790 uint32_t entry_count)
12791{
12792 struct lpfc_queue *queue;
12793 struct lpfc_dmabuf *dmabuf;
12794 int x, total_qe_count;
12795 void *dma_pointer;
cb5172ea 12796 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
4f774513 12797
cb5172ea
JS
12798 if (!phba->sli4_hba.pc_sli4_params.supported)
12799 hw_page_size = SLI4_PAGE_SIZE;
12800
4f774513
JS
12801 queue = kzalloc(sizeof(struct lpfc_queue) +
12802 (sizeof(union sli4_qe) * entry_count), GFP_KERNEL);
12803 if (!queue)
12804 return NULL;
cb5172ea
JS
12805 queue->page_count = (ALIGN(entry_size * entry_count,
12806 hw_page_size))/hw_page_size;
4f774513
JS
12807 INIT_LIST_HEAD(&queue->list);
12808 INIT_LIST_HEAD(&queue->page_list);
12809 INIT_LIST_HEAD(&queue->child_list);
12810 for (x = 0, total_qe_count = 0; x < queue->page_count; x++) {
12811 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
12812 if (!dmabuf)
12813 goto out_fail;
1aee383d
JP
12814 dmabuf->virt = dma_zalloc_coherent(&phba->pcidev->dev,
12815 hw_page_size, &dmabuf->phys,
12816 GFP_KERNEL);
4f774513
JS
12817 if (!dmabuf->virt) {
12818 kfree(dmabuf);
12819 goto out_fail;
12820 }
12821 dmabuf->buffer_tag = x;
12822 list_add_tail(&dmabuf->list, &queue->page_list);
12823 /* initialize queue's entry array */
12824 dma_pointer = dmabuf->virt;
12825 for (; total_qe_count < entry_count &&
cb5172ea 12826 dma_pointer < (hw_page_size + dmabuf->virt);
4f774513
JS
12827 total_qe_count++, dma_pointer += entry_size) {
12828 queue->qe[total_qe_count].address = dma_pointer;
12829 }
12830 }
12831 queue->entry_size = entry_size;
12832 queue->entry_count = entry_count;
73d91e50
JS
12833
12834 /*
12835 * entry_repost is calculated based on the number of entries in the
12836 * queue. This works out except for RQs. If buffers are NOT initially
12837 * posted for every RQE, entry_repost should be adjusted accordingly.
12838 */
12839 queue->entry_repost = (entry_count >> 3);
12840 if (queue->entry_repost < LPFC_QUEUE_MIN_REPOST)
12841 queue->entry_repost = LPFC_QUEUE_MIN_REPOST;
4f774513
JS
12842 queue->phba = phba;
12843
12844 return queue;
12845out_fail:
12846 lpfc_sli4_queue_free(queue);
12847 return NULL;
12848}
12849
962bc51b
JS
12850/**
12851 * lpfc_dual_chute_pci_bar_map - Map pci base address register to host memory
12852 * @phba: HBA structure that indicates port to create a queue on.
12853 * @pci_barset: PCI BAR set flag.
12854 *
12855 * This function shall perform iomap of the specified PCI BAR address to host
12856 * memory address if not already done so and return it. The returned host
12857 * memory address can be NULL.
12858 */
12859static void __iomem *
12860lpfc_dual_chute_pci_bar_map(struct lpfc_hba *phba, uint16_t pci_barset)
12861{
12862 struct pci_dev *pdev;
962bc51b
JS
12863
12864 if (!phba->pcidev)
12865 return NULL;
12866 else
12867 pdev = phba->pcidev;
12868
12869 switch (pci_barset) {
12870 case WQ_PCI_BAR_0_AND_1:
962bc51b
JS
12871 return phba->pci_bar0_memmap_p;
12872 case WQ_PCI_BAR_2_AND_3:
962bc51b
JS
12873 return phba->pci_bar2_memmap_p;
12874 case WQ_PCI_BAR_4_AND_5:
962bc51b
JS
12875 return phba->pci_bar4_memmap_p;
12876 default:
12877 break;
12878 }
12879 return NULL;
12880}
12881
173edbb2
JS
12882/**
12883 * lpfc_modify_fcp_eq_delay - Modify Delay Multiplier on FCP EQs
12884 * @phba: HBA structure that indicates port to create a queue on.
12885 * @startq: The starting FCP EQ to modify
12886 *
12887 * This function sends an MODIFY_EQ_DELAY mailbox command to the HBA.
12888 *
12889 * The @phba struct is used to send mailbox command to HBA. The @startq
12890 * is used to get the starting FCP EQ to change.
12891 * This function is asynchronous and will wait for the mailbox
12892 * command to finish before continuing.
12893 *
12894 * On success this function will return a zero. If unable to allocate enough
12895 * memory this function will return -ENOMEM. If the queue create mailbox command
12896 * fails this function will return -ENXIO.
12897 **/
a2fc4aef 12898int
2c9c5a00 12899lpfc_modify_fcp_eq_delay(struct lpfc_hba *phba, uint32_t startq)
173edbb2
JS
12900{
12901 struct lpfc_mbx_modify_eq_delay *eq_delay;
12902 LPFC_MBOXQ_t *mbox;
12903 struct lpfc_queue *eq;
12904 int cnt, rc, length, status = 0;
12905 uint32_t shdr_status, shdr_add_status;
ee02006b 12906 uint32_t result;
173edbb2
JS
12907 int fcp_eqidx;
12908 union lpfc_sli4_cfg_shdr *shdr;
12909 uint16_t dmult;
12910
67d12733 12911 if (startq >= phba->cfg_fcp_io_channel)
173edbb2
JS
12912 return 0;
12913
12914 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
12915 if (!mbox)
12916 return -ENOMEM;
12917 length = (sizeof(struct lpfc_mbx_modify_eq_delay) -
12918 sizeof(struct lpfc_sli4_cfg_mhdr));
12919 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
12920 LPFC_MBOX_OPCODE_MODIFY_EQ_DELAY,
12921 length, LPFC_SLI4_MBX_EMBED);
12922 eq_delay = &mbox->u.mqe.un.eq_delay;
12923
12924 /* Calculate delay multiper from maximum interrupt per second */
ee02006b
JS
12925 result = phba->cfg_fcp_imax / phba->cfg_fcp_io_channel;
12926 if (result > LPFC_DMULT_CONST)
12927 dmult = 0;
12928 else
12929 dmult = LPFC_DMULT_CONST/result - 1;
173edbb2
JS
12930
12931 cnt = 0;
67d12733 12932 for (fcp_eqidx = startq; fcp_eqidx < phba->cfg_fcp_io_channel;
173edbb2 12933 fcp_eqidx++) {
67d12733 12934 eq = phba->sli4_hba.hba_eq[fcp_eqidx];
173edbb2
JS
12935 if (!eq)
12936 continue;
12937 eq_delay->u.request.eq[cnt].eq_id = eq->queue_id;
12938 eq_delay->u.request.eq[cnt].phase = 0;
12939 eq_delay->u.request.eq[cnt].delay_multi = dmult;
12940 cnt++;
12941 if (cnt >= LPFC_MAX_EQ_DELAY)
12942 break;
12943 }
12944 eq_delay->u.request.num_eq = cnt;
12945
12946 mbox->vport = phba->pport;
12947 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
12948 mbox->context1 = NULL;
12949 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
12950 shdr = (union lpfc_sli4_cfg_shdr *) &eq_delay->header.cfg_shdr;
12951 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12952 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12953 if (shdr_status || shdr_add_status || rc) {
12954 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12955 "2512 MODIFY_EQ_DELAY mailbox failed with "
12956 "status x%x add_status x%x, mbx status x%x\n",
12957 shdr_status, shdr_add_status, rc);
12958 status = -ENXIO;
12959 }
12960 mempool_free(mbox, phba->mbox_mem_pool);
12961 return status;
12962}
12963
4f774513
JS
12964/**
12965 * lpfc_eq_create - Create an Event Queue on the HBA
12966 * @phba: HBA structure that indicates port to create a queue on.
12967 * @eq: The queue structure to use to create the event queue.
12968 * @imax: The maximum interrupt per second limit.
12969 *
12970 * This function creates an event queue, as detailed in @eq, on a port,
12971 * described by @phba by sending an EQ_CREATE mailbox command to the HBA.
12972 *
12973 * The @phba struct is used to send mailbox command to HBA. The @eq struct
12974 * is used to get the entry count and entry size that are necessary to
12975 * determine the number of pages to allocate and use for this queue. This
12976 * function will send the EQ_CREATE mailbox command to the HBA to setup the
12977 * event queue. This function is asynchronous and will wait for the mailbox
12978 * command to finish before continuing.
12979 *
12980 * On success this function will return a zero. If unable to allocate enough
d439d286
JS
12981 * memory this function will return -ENOMEM. If the queue create mailbox command
12982 * fails this function will return -ENXIO.
4f774513 12983 **/
a2fc4aef 12984int
ee02006b 12985lpfc_eq_create(struct lpfc_hba *phba, struct lpfc_queue *eq, uint32_t imax)
4f774513
JS
12986{
12987 struct lpfc_mbx_eq_create *eq_create;
12988 LPFC_MBOXQ_t *mbox;
12989 int rc, length, status = 0;
12990 struct lpfc_dmabuf *dmabuf;
12991 uint32_t shdr_status, shdr_add_status;
12992 union lpfc_sli4_cfg_shdr *shdr;
12993 uint16_t dmult;
49198b37
JS
12994 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
12995
2e90f4b5
JS
12996 /* sanity check on queue memory */
12997 if (!eq)
12998 return -ENODEV;
49198b37
JS
12999 if (!phba->sli4_hba.pc_sli4_params.supported)
13000 hw_page_size = SLI4_PAGE_SIZE;
4f774513
JS
13001
13002 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13003 if (!mbox)
13004 return -ENOMEM;
13005 length = (sizeof(struct lpfc_mbx_eq_create) -
13006 sizeof(struct lpfc_sli4_cfg_mhdr));
13007 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13008 LPFC_MBOX_OPCODE_EQ_CREATE,
13009 length, LPFC_SLI4_MBX_EMBED);
13010 eq_create = &mbox->u.mqe.un.eq_create;
13011 bf_set(lpfc_mbx_eq_create_num_pages, &eq_create->u.request,
13012 eq->page_count);
13013 bf_set(lpfc_eq_context_size, &eq_create->u.request.context,
13014 LPFC_EQE_SIZE);
13015 bf_set(lpfc_eq_context_valid, &eq_create->u.request.context, 1);
2c9c5a00
JS
13016 /* don't setup delay multiplier using EQ_CREATE */
13017 dmult = 0;
4f774513
JS
13018 bf_set(lpfc_eq_context_delay_multi, &eq_create->u.request.context,
13019 dmult);
13020 switch (eq->entry_count) {
13021 default:
13022 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13023 "0360 Unsupported EQ count. (%d)\n",
13024 eq->entry_count);
13025 if (eq->entry_count < 256)
13026 return -EINVAL;
13027 /* otherwise default to smallest count (drop through) */
13028 case 256:
13029 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
13030 LPFC_EQ_CNT_256);
13031 break;
13032 case 512:
13033 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
13034 LPFC_EQ_CNT_512);
13035 break;
13036 case 1024:
13037 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
13038 LPFC_EQ_CNT_1024);
13039 break;
13040 case 2048:
13041 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
13042 LPFC_EQ_CNT_2048);
13043 break;
13044 case 4096:
13045 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
13046 LPFC_EQ_CNT_4096);
13047 break;
13048 }
13049 list_for_each_entry(dmabuf, &eq->page_list, list) {
49198b37 13050 memset(dmabuf->virt, 0, hw_page_size);
4f774513
JS
13051 eq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
13052 putPaddrLow(dmabuf->phys);
13053 eq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
13054 putPaddrHigh(dmabuf->phys);
13055 }
13056 mbox->vport = phba->pport;
13057 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
13058 mbox->context1 = NULL;
13059 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13060 shdr = (union lpfc_sli4_cfg_shdr *) &eq_create->header.cfg_shdr;
13061 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13062 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13063 if (shdr_status || shdr_add_status || rc) {
13064 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13065 "2500 EQ_CREATE mailbox failed with "
13066 "status x%x add_status x%x, mbx status x%x\n",
13067 shdr_status, shdr_add_status, rc);
13068 status = -ENXIO;
13069 }
13070 eq->type = LPFC_EQ;
13071 eq->subtype = LPFC_NONE;
13072 eq->queue_id = bf_get(lpfc_mbx_eq_create_q_id, &eq_create->u.response);
13073 if (eq->queue_id == 0xFFFF)
13074 status = -ENXIO;
13075 eq->host_index = 0;
13076 eq->hba_index = 0;
13077
8fa38513 13078 mempool_free(mbox, phba->mbox_mem_pool);
4f774513
JS
13079 return status;
13080}
13081
13082/**
13083 * lpfc_cq_create - Create a Completion Queue on the HBA
13084 * @phba: HBA structure that indicates port to create a queue on.
13085 * @cq: The queue structure to use to create the completion queue.
13086 * @eq: The event queue to bind this completion queue to.
13087 *
13088 * This function creates a completion queue, as detailed in @wq, on a port,
13089 * described by @phba by sending a CQ_CREATE mailbox command to the HBA.
13090 *
13091 * The @phba struct is used to send mailbox command to HBA. The @cq struct
13092 * is used to get the entry count and entry size that are necessary to
13093 * determine the number of pages to allocate and use for this queue. The @eq
13094 * is used to indicate which event queue to bind this completion queue to. This
13095 * function will send the CQ_CREATE mailbox command to the HBA to setup the
13096 * completion queue. This function is asynchronous and will wait for the mailbox
13097 * command to finish before continuing.
13098 *
13099 * On success this function will return a zero. If unable to allocate enough
d439d286
JS
13100 * memory this function will return -ENOMEM. If the queue create mailbox command
13101 * fails this function will return -ENXIO.
4f774513 13102 **/
a2fc4aef 13103int
4f774513
JS
13104lpfc_cq_create(struct lpfc_hba *phba, struct lpfc_queue *cq,
13105 struct lpfc_queue *eq, uint32_t type, uint32_t subtype)
13106{
13107 struct lpfc_mbx_cq_create *cq_create;
13108 struct lpfc_dmabuf *dmabuf;
13109 LPFC_MBOXQ_t *mbox;
13110 int rc, length, status = 0;
13111 uint32_t shdr_status, shdr_add_status;
13112 union lpfc_sli4_cfg_shdr *shdr;
49198b37
JS
13113 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
13114
2e90f4b5
JS
13115 /* sanity check on queue memory */
13116 if (!cq || !eq)
13117 return -ENODEV;
49198b37
JS
13118 if (!phba->sli4_hba.pc_sli4_params.supported)
13119 hw_page_size = SLI4_PAGE_SIZE;
13120
4f774513
JS
13121 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13122 if (!mbox)
13123 return -ENOMEM;
13124 length = (sizeof(struct lpfc_mbx_cq_create) -
13125 sizeof(struct lpfc_sli4_cfg_mhdr));
13126 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13127 LPFC_MBOX_OPCODE_CQ_CREATE,
13128 length, LPFC_SLI4_MBX_EMBED);
13129 cq_create = &mbox->u.mqe.un.cq_create;
5a6f133e 13130 shdr = (union lpfc_sli4_cfg_shdr *) &cq_create->header.cfg_shdr;
4f774513
JS
13131 bf_set(lpfc_mbx_cq_create_num_pages, &cq_create->u.request,
13132 cq->page_count);
13133 bf_set(lpfc_cq_context_event, &cq_create->u.request.context, 1);
13134 bf_set(lpfc_cq_context_valid, &cq_create->u.request.context, 1);
5a6f133e
JS
13135 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13136 phba->sli4_hba.pc_sli4_params.cqv);
13137 if (phba->sli4_hba.pc_sli4_params.cqv == LPFC_Q_CREATE_VERSION_2) {
c31098ce
JS
13138 /* FW only supports 1. Should be PAGE_SIZE/SLI4_PAGE_SIZE */
13139 bf_set(lpfc_mbx_cq_create_page_size, &cq_create->u.request, 1);
5a6f133e
JS
13140 bf_set(lpfc_cq_eq_id_2, &cq_create->u.request.context,
13141 eq->queue_id);
13142 } else {
13143 bf_set(lpfc_cq_eq_id, &cq_create->u.request.context,
13144 eq->queue_id);
13145 }
4f774513
JS
13146 switch (cq->entry_count) {
13147 default:
13148 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13149 "0361 Unsupported CQ count. (%d)\n",
13150 cq->entry_count);
4f4c1863
JS
13151 if (cq->entry_count < 256) {
13152 status = -EINVAL;
13153 goto out;
13154 }
4f774513
JS
13155 /* otherwise default to smallest count (drop through) */
13156 case 256:
13157 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
13158 LPFC_CQ_CNT_256);
13159 break;
13160 case 512:
13161 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
13162 LPFC_CQ_CNT_512);
13163 break;
13164 case 1024:
13165 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
13166 LPFC_CQ_CNT_1024);
13167 break;
13168 }
13169 list_for_each_entry(dmabuf, &cq->page_list, list) {
49198b37 13170 memset(dmabuf->virt, 0, hw_page_size);
4f774513
JS
13171 cq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
13172 putPaddrLow(dmabuf->phys);
13173 cq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
13174 putPaddrHigh(dmabuf->phys);
13175 }
13176 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13177
13178 /* The IOCTL status is embedded in the mailbox subheader. */
4f774513
JS
13179 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13180 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13181 if (shdr_status || shdr_add_status || rc) {
13182 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13183 "2501 CQ_CREATE mailbox failed with "
13184 "status x%x add_status x%x, mbx status x%x\n",
13185 shdr_status, shdr_add_status, rc);
13186 status = -ENXIO;
13187 goto out;
13188 }
13189 cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
13190 if (cq->queue_id == 0xFFFF) {
13191 status = -ENXIO;
13192 goto out;
13193 }
13194 /* link the cq onto the parent eq child list */
13195 list_add_tail(&cq->list, &eq->child_list);
13196 /* Set up completion queue's type and subtype */
13197 cq->type = type;
13198 cq->subtype = subtype;
13199 cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
2a622bfb 13200 cq->assoc_qid = eq->queue_id;
4f774513
JS
13201 cq->host_index = 0;
13202 cq->hba_index = 0;
4f774513 13203
8fa38513
JS
13204out:
13205 mempool_free(mbox, phba->mbox_mem_pool);
4f774513
JS
13206 return status;
13207}
13208
b19a061a
JS
13209/**
13210 * lpfc_mq_create_fb_init - Send MCC_CREATE without async events registration
13211 * @phba: HBA structure that indicates port to create a queue on.
13212 * @mq: The queue structure to use to create the mailbox queue.
13213 * @mbox: An allocated pointer to type LPFC_MBOXQ_t
13214 * @cq: The completion queue to associate with this cq.
13215 *
13216 * This function provides failback (fb) functionality when the
13217 * mq_create_ext fails on older FW generations. It's purpose is identical
13218 * to mq_create_ext otherwise.
13219 *
13220 * This routine cannot fail as all attributes were previously accessed and
13221 * initialized in mq_create_ext.
13222 **/
13223static void
13224lpfc_mq_create_fb_init(struct lpfc_hba *phba, struct lpfc_queue *mq,
13225 LPFC_MBOXQ_t *mbox, struct lpfc_queue *cq)
13226{
13227 struct lpfc_mbx_mq_create *mq_create;
13228 struct lpfc_dmabuf *dmabuf;
13229 int length;
13230
13231 length = (sizeof(struct lpfc_mbx_mq_create) -
13232 sizeof(struct lpfc_sli4_cfg_mhdr));
13233 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13234 LPFC_MBOX_OPCODE_MQ_CREATE,
13235 length, LPFC_SLI4_MBX_EMBED);
13236 mq_create = &mbox->u.mqe.un.mq_create;
13237 bf_set(lpfc_mbx_mq_create_num_pages, &mq_create->u.request,
13238 mq->page_count);
13239 bf_set(lpfc_mq_context_cq_id, &mq_create->u.request.context,
13240 cq->queue_id);
13241 bf_set(lpfc_mq_context_valid, &mq_create->u.request.context, 1);
13242 switch (mq->entry_count) {
13243 case 16:
5a6f133e
JS
13244 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
13245 LPFC_MQ_RING_SIZE_16);
b19a061a
JS
13246 break;
13247 case 32:
5a6f133e
JS
13248 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
13249 LPFC_MQ_RING_SIZE_32);
b19a061a
JS
13250 break;
13251 case 64:
5a6f133e
JS
13252 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
13253 LPFC_MQ_RING_SIZE_64);
b19a061a
JS
13254 break;
13255 case 128:
5a6f133e
JS
13256 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
13257 LPFC_MQ_RING_SIZE_128);
b19a061a
JS
13258 break;
13259 }
13260 list_for_each_entry(dmabuf, &mq->page_list, list) {
13261 mq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
13262 putPaddrLow(dmabuf->phys);
13263 mq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
13264 putPaddrHigh(dmabuf->phys);
13265 }
13266}
13267
04c68496
JS
13268/**
13269 * lpfc_mq_create - Create a mailbox Queue on the HBA
13270 * @phba: HBA structure that indicates port to create a queue on.
13271 * @mq: The queue structure to use to create the mailbox queue.
b19a061a
JS
13272 * @cq: The completion queue to associate with this cq.
13273 * @subtype: The queue's subtype.
04c68496
JS
13274 *
13275 * This function creates a mailbox queue, as detailed in @mq, on a port,
13276 * described by @phba by sending a MQ_CREATE mailbox command to the HBA.
13277 *
13278 * The @phba struct is used to send mailbox command to HBA. The @cq struct
13279 * is used to get the entry count and entry size that are necessary to
13280 * determine the number of pages to allocate and use for this queue. This
13281 * function will send the MQ_CREATE mailbox command to the HBA to setup the
13282 * mailbox queue. This function is asynchronous and will wait for the mailbox
13283 * command to finish before continuing.
13284 *
13285 * On success this function will return a zero. If unable to allocate enough
d439d286
JS
13286 * memory this function will return -ENOMEM. If the queue create mailbox command
13287 * fails this function will return -ENXIO.
04c68496 13288 **/
b19a061a 13289int32_t
04c68496
JS
13290lpfc_mq_create(struct lpfc_hba *phba, struct lpfc_queue *mq,
13291 struct lpfc_queue *cq, uint32_t subtype)
13292{
13293 struct lpfc_mbx_mq_create *mq_create;
b19a061a 13294 struct lpfc_mbx_mq_create_ext *mq_create_ext;
04c68496
JS
13295 struct lpfc_dmabuf *dmabuf;
13296 LPFC_MBOXQ_t *mbox;
13297 int rc, length, status = 0;
13298 uint32_t shdr_status, shdr_add_status;
13299 union lpfc_sli4_cfg_shdr *shdr;
49198b37 13300 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
04c68496 13301
2e90f4b5
JS
13302 /* sanity check on queue memory */
13303 if (!mq || !cq)
13304 return -ENODEV;
49198b37
JS
13305 if (!phba->sli4_hba.pc_sli4_params.supported)
13306 hw_page_size = SLI4_PAGE_SIZE;
b19a061a 13307
04c68496
JS
13308 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13309 if (!mbox)
13310 return -ENOMEM;
b19a061a 13311 length = (sizeof(struct lpfc_mbx_mq_create_ext) -
04c68496
JS
13312 sizeof(struct lpfc_sli4_cfg_mhdr));
13313 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
b19a061a 13314 LPFC_MBOX_OPCODE_MQ_CREATE_EXT,
04c68496 13315 length, LPFC_SLI4_MBX_EMBED);
b19a061a
JS
13316
13317 mq_create_ext = &mbox->u.mqe.un.mq_create_ext;
5a6f133e 13318 shdr = (union lpfc_sli4_cfg_shdr *) &mq_create_ext->header.cfg_shdr;
70f3c073
JS
13319 bf_set(lpfc_mbx_mq_create_ext_num_pages,
13320 &mq_create_ext->u.request, mq->page_count);
13321 bf_set(lpfc_mbx_mq_create_ext_async_evt_link,
13322 &mq_create_ext->u.request, 1);
13323 bf_set(lpfc_mbx_mq_create_ext_async_evt_fip,
b19a061a
JS
13324 &mq_create_ext->u.request, 1);
13325 bf_set(lpfc_mbx_mq_create_ext_async_evt_group5,
13326 &mq_create_ext->u.request, 1);
70f3c073
JS
13327 bf_set(lpfc_mbx_mq_create_ext_async_evt_fc,
13328 &mq_create_ext->u.request, 1);
13329 bf_set(lpfc_mbx_mq_create_ext_async_evt_sli,
13330 &mq_create_ext->u.request, 1);
b19a061a 13331 bf_set(lpfc_mq_context_valid, &mq_create_ext->u.request.context, 1);
5a6f133e
JS
13332 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13333 phba->sli4_hba.pc_sli4_params.mqv);
13334 if (phba->sli4_hba.pc_sli4_params.mqv == LPFC_Q_CREATE_VERSION_1)
13335 bf_set(lpfc_mbx_mq_create_ext_cq_id, &mq_create_ext->u.request,
13336 cq->queue_id);
13337 else
13338 bf_set(lpfc_mq_context_cq_id, &mq_create_ext->u.request.context,
13339 cq->queue_id);
04c68496
JS
13340 switch (mq->entry_count) {
13341 default:
13342 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13343 "0362 Unsupported MQ count. (%d)\n",
13344 mq->entry_count);
4f4c1863
JS
13345 if (mq->entry_count < 16) {
13346 status = -EINVAL;
13347 goto out;
13348 }
04c68496
JS
13349 /* otherwise default to smallest count (drop through) */
13350 case 16:
5a6f133e
JS
13351 bf_set(lpfc_mq_context_ring_size,
13352 &mq_create_ext->u.request.context,
13353 LPFC_MQ_RING_SIZE_16);
04c68496
JS
13354 break;
13355 case 32:
5a6f133e
JS
13356 bf_set(lpfc_mq_context_ring_size,
13357 &mq_create_ext->u.request.context,
13358 LPFC_MQ_RING_SIZE_32);
04c68496
JS
13359 break;
13360 case 64:
5a6f133e
JS
13361 bf_set(lpfc_mq_context_ring_size,
13362 &mq_create_ext->u.request.context,
13363 LPFC_MQ_RING_SIZE_64);
04c68496
JS
13364 break;
13365 case 128:
5a6f133e
JS
13366 bf_set(lpfc_mq_context_ring_size,
13367 &mq_create_ext->u.request.context,
13368 LPFC_MQ_RING_SIZE_128);
04c68496
JS
13369 break;
13370 }
13371 list_for_each_entry(dmabuf, &mq->page_list, list) {
49198b37 13372 memset(dmabuf->virt, 0, hw_page_size);
b19a061a 13373 mq_create_ext->u.request.page[dmabuf->buffer_tag].addr_lo =
04c68496 13374 putPaddrLow(dmabuf->phys);
b19a061a 13375 mq_create_ext->u.request.page[dmabuf->buffer_tag].addr_hi =
04c68496
JS
13376 putPaddrHigh(dmabuf->phys);
13377 }
13378 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
b19a061a
JS
13379 mq->queue_id = bf_get(lpfc_mbx_mq_create_q_id,
13380 &mq_create_ext->u.response);
13381 if (rc != MBX_SUCCESS) {
13382 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
13383 "2795 MQ_CREATE_EXT failed with "
13384 "status x%x. Failback to MQ_CREATE.\n",
13385 rc);
13386 lpfc_mq_create_fb_init(phba, mq, mbox, cq);
13387 mq_create = &mbox->u.mqe.un.mq_create;
13388 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13389 shdr = (union lpfc_sli4_cfg_shdr *) &mq_create->header.cfg_shdr;
13390 mq->queue_id = bf_get(lpfc_mbx_mq_create_q_id,
13391 &mq_create->u.response);
13392 }
13393
04c68496 13394 /* The IOCTL status is embedded in the mailbox subheader. */
04c68496
JS
13395 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13396 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13397 if (shdr_status || shdr_add_status || rc) {
13398 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13399 "2502 MQ_CREATE mailbox failed with "
13400 "status x%x add_status x%x, mbx status x%x\n",
13401 shdr_status, shdr_add_status, rc);
13402 status = -ENXIO;
13403 goto out;
13404 }
04c68496
JS
13405 if (mq->queue_id == 0xFFFF) {
13406 status = -ENXIO;
13407 goto out;
13408 }
13409 mq->type = LPFC_MQ;
2a622bfb 13410 mq->assoc_qid = cq->queue_id;
04c68496
JS
13411 mq->subtype = subtype;
13412 mq->host_index = 0;
13413 mq->hba_index = 0;
13414
13415 /* link the mq onto the parent cq child list */
13416 list_add_tail(&mq->list, &cq->child_list);
13417out:
8fa38513 13418 mempool_free(mbox, phba->mbox_mem_pool);
04c68496
JS
13419 return status;
13420}
13421
4f774513
JS
13422/**
13423 * lpfc_wq_create - Create a Work Queue on the HBA
13424 * @phba: HBA structure that indicates port to create a queue on.
13425 * @wq: The queue structure to use to create the work queue.
13426 * @cq: The completion queue to bind this work queue to.
13427 * @subtype: The subtype of the work queue indicating its functionality.
13428 *
13429 * This function creates a work queue, as detailed in @wq, on a port, described
13430 * by @phba by sending a WQ_CREATE mailbox command to the HBA.
13431 *
13432 * The @phba struct is used to send mailbox command to HBA. The @wq struct
13433 * is used to get the entry count and entry size that are necessary to
13434 * determine the number of pages to allocate and use for this queue. The @cq
13435 * is used to indicate which completion queue to bind this work queue to. This
13436 * function will send the WQ_CREATE mailbox command to the HBA to setup the
13437 * work queue. This function is asynchronous and will wait for the mailbox
13438 * command to finish before continuing.
13439 *
13440 * On success this function will return a zero. If unable to allocate enough
d439d286
JS
13441 * memory this function will return -ENOMEM. If the queue create mailbox command
13442 * fails this function will return -ENXIO.
4f774513 13443 **/
a2fc4aef 13444int
4f774513
JS
13445lpfc_wq_create(struct lpfc_hba *phba, struct lpfc_queue *wq,
13446 struct lpfc_queue *cq, uint32_t subtype)
13447{
13448 struct lpfc_mbx_wq_create *wq_create;
13449 struct lpfc_dmabuf *dmabuf;
13450 LPFC_MBOXQ_t *mbox;
13451 int rc, length, status = 0;
13452 uint32_t shdr_status, shdr_add_status;
13453 union lpfc_sli4_cfg_shdr *shdr;
49198b37 13454 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
5a6f133e 13455 struct dma_address *page;
962bc51b
JS
13456 void __iomem *bar_memmap_p;
13457 uint32_t db_offset;
13458 uint16_t pci_barset;
49198b37 13459
2e90f4b5
JS
13460 /* sanity check on queue memory */
13461 if (!wq || !cq)
13462 return -ENODEV;
49198b37
JS
13463 if (!phba->sli4_hba.pc_sli4_params.supported)
13464 hw_page_size = SLI4_PAGE_SIZE;
4f774513
JS
13465
13466 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13467 if (!mbox)
13468 return -ENOMEM;
13469 length = (sizeof(struct lpfc_mbx_wq_create) -
13470 sizeof(struct lpfc_sli4_cfg_mhdr));
13471 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13472 LPFC_MBOX_OPCODE_FCOE_WQ_CREATE,
13473 length, LPFC_SLI4_MBX_EMBED);
13474 wq_create = &mbox->u.mqe.un.wq_create;
5a6f133e 13475 shdr = (union lpfc_sli4_cfg_shdr *) &wq_create->header.cfg_shdr;
4f774513
JS
13476 bf_set(lpfc_mbx_wq_create_num_pages, &wq_create->u.request,
13477 wq->page_count);
13478 bf_set(lpfc_mbx_wq_create_cq_id, &wq_create->u.request,
13479 cq->queue_id);
0c651878
JS
13480
13481 /* wqv is the earliest version supported, NOT the latest */
5a6f133e
JS
13482 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13483 phba->sli4_hba.pc_sli4_params.wqv);
962bc51b 13484
0c651878
JS
13485 switch (phba->sli4_hba.pc_sli4_params.wqv) {
13486 case LPFC_Q_CREATE_VERSION_0:
13487 switch (wq->entry_size) {
13488 default:
13489 case 64:
13490 /* Nothing to do, version 0 ONLY supports 64 byte */
13491 page = wq_create->u.request.page;
13492 break;
13493 case 128:
13494 if (!(phba->sli4_hba.pc_sli4_params.wqsize &
13495 LPFC_WQ_SZ128_SUPPORT)) {
13496 status = -ERANGE;
13497 goto out;
13498 }
13499 /* If we get here the HBA MUST also support V1 and
13500 * we MUST use it
13501 */
13502 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13503 LPFC_Q_CREATE_VERSION_1);
13504
13505 bf_set(lpfc_mbx_wq_create_wqe_count,
13506 &wq_create->u.request_1, wq->entry_count);
13507 bf_set(lpfc_mbx_wq_create_wqe_size,
13508 &wq_create->u.request_1,
13509 LPFC_WQ_WQE_SIZE_128);
13510 bf_set(lpfc_mbx_wq_create_page_size,
13511 &wq_create->u.request_1,
13512 (PAGE_SIZE/SLI4_PAGE_SIZE));
13513 page = wq_create->u.request_1.page;
13514 break;
13515 }
13516 break;
13517 case LPFC_Q_CREATE_VERSION_1:
5a6f133e
JS
13518 bf_set(lpfc_mbx_wq_create_wqe_count, &wq_create->u.request_1,
13519 wq->entry_count);
13520 switch (wq->entry_size) {
13521 default:
13522 case 64:
13523 bf_set(lpfc_mbx_wq_create_wqe_size,
13524 &wq_create->u.request_1,
13525 LPFC_WQ_WQE_SIZE_64);
13526 break;
13527 case 128:
0c651878
JS
13528 if (!(phba->sli4_hba.pc_sli4_params.wqsize &
13529 LPFC_WQ_SZ128_SUPPORT)) {
13530 status = -ERANGE;
13531 goto out;
13532 }
5a6f133e
JS
13533 bf_set(lpfc_mbx_wq_create_wqe_size,
13534 &wq_create->u.request_1,
13535 LPFC_WQ_WQE_SIZE_128);
13536 break;
13537 }
13538 bf_set(lpfc_mbx_wq_create_page_size, &wq_create->u.request_1,
13539 (PAGE_SIZE/SLI4_PAGE_SIZE));
13540 page = wq_create->u.request_1.page;
0c651878
JS
13541 break;
13542 default:
13543 status = -ERANGE;
13544 goto out;
5a6f133e 13545 }
0c651878 13546
4f774513 13547 list_for_each_entry(dmabuf, &wq->page_list, list) {
49198b37 13548 memset(dmabuf->virt, 0, hw_page_size);
5a6f133e
JS
13549 page[dmabuf->buffer_tag].addr_lo = putPaddrLow(dmabuf->phys);
13550 page[dmabuf->buffer_tag].addr_hi = putPaddrHigh(dmabuf->phys);
4f774513 13551 }
962bc51b
JS
13552
13553 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
13554 bf_set(lpfc_mbx_wq_create_dua, &wq_create->u.request, 1);
13555
4f774513
JS
13556 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13557 /* The IOCTL status is embedded in the mailbox subheader. */
4f774513
JS
13558 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13559 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13560 if (shdr_status || shdr_add_status || rc) {
13561 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13562 "2503 WQ_CREATE mailbox failed with "
13563 "status x%x add_status x%x, mbx status x%x\n",
13564 shdr_status, shdr_add_status, rc);
13565 status = -ENXIO;
13566 goto out;
13567 }
13568 wq->queue_id = bf_get(lpfc_mbx_wq_create_q_id, &wq_create->u.response);
13569 if (wq->queue_id == 0xFFFF) {
13570 status = -ENXIO;
13571 goto out;
13572 }
962bc51b
JS
13573 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE) {
13574 wq->db_format = bf_get(lpfc_mbx_wq_create_db_format,
13575 &wq_create->u.response);
13576 if ((wq->db_format != LPFC_DB_LIST_FORMAT) &&
13577 (wq->db_format != LPFC_DB_RING_FORMAT)) {
13578 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13579 "3265 WQ[%d] doorbell format not "
13580 "supported: x%x\n", wq->queue_id,
13581 wq->db_format);
13582 status = -EINVAL;
13583 goto out;
13584 }
13585 pci_barset = bf_get(lpfc_mbx_wq_create_bar_set,
13586 &wq_create->u.response);
13587 bar_memmap_p = lpfc_dual_chute_pci_bar_map(phba, pci_barset);
13588 if (!bar_memmap_p) {
13589 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13590 "3263 WQ[%d] failed to memmap pci "
13591 "barset:x%x\n", wq->queue_id,
13592 pci_barset);
13593 status = -ENOMEM;
13594 goto out;
13595 }
13596 db_offset = wq_create->u.response.doorbell_offset;
13597 if ((db_offset != LPFC_ULP0_WQ_DOORBELL) &&
13598 (db_offset != LPFC_ULP1_WQ_DOORBELL)) {
13599 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13600 "3252 WQ[%d] doorbell offset not "
13601 "supported: x%x\n", wq->queue_id,
13602 db_offset);
13603 status = -EINVAL;
13604 goto out;
13605 }
13606 wq->db_regaddr = bar_memmap_p + db_offset;
13607 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
a22e7db3
JS
13608 "3264 WQ[%d]: barset:x%x, offset:x%x, "
13609 "format:x%x\n", wq->queue_id, pci_barset,
13610 db_offset, wq->db_format);
962bc51b
JS
13611 } else {
13612 wq->db_format = LPFC_DB_LIST_FORMAT;
13613 wq->db_regaddr = phba->sli4_hba.WQDBregaddr;
13614 }
4f774513 13615 wq->type = LPFC_WQ;
2a622bfb 13616 wq->assoc_qid = cq->queue_id;
4f774513
JS
13617 wq->subtype = subtype;
13618 wq->host_index = 0;
13619 wq->hba_index = 0;
ff78d8f9 13620 wq->entry_repost = LPFC_RELEASE_NOTIFICATION_INTERVAL;
4f774513
JS
13621
13622 /* link the wq onto the parent cq child list */
13623 list_add_tail(&wq->list, &cq->child_list);
13624out:
8fa38513 13625 mempool_free(mbox, phba->mbox_mem_pool);
4f774513
JS
13626 return status;
13627}
13628
73d91e50
JS
13629/**
13630 * lpfc_rq_adjust_repost - Adjust entry_repost for an RQ
13631 * @phba: HBA structure that indicates port to create a queue on.
13632 * @rq: The queue structure to use for the receive queue.
13633 * @qno: The associated HBQ number
13634 *
13635 *
13636 * For SLI4 we need to adjust the RQ repost value based on
13637 * the number of buffers that are initially posted to the RQ.
13638 */
13639void
13640lpfc_rq_adjust_repost(struct lpfc_hba *phba, struct lpfc_queue *rq, int qno)
13641{
13642 uint32_t cnt;
13643
2e90f4b5
JS
13644 /* sanity check on queue memory */
13645 if (!rq)
13646 return;
73d91e50
JS
13647 cnt = lpfc_hbq_defs[qno]->entry_count;
13648
13649 /* Recalc repost for RQs based on buffers initially posted */
13650 cnt = (cnt >> 3);
13651 if (cnt < LPFC_QUEUE_MIN_REPOST)
13652 cnt = LPFC_QUEUE_MIN_REPOST;
13653
13654 rq->entry_repost = cnt;
13655}
13656
4f774513
JS
13657/**
13658 * lpfc_rq_create - Create a Receive Queue on the HBA
13659 * @phba: HBA structure that indicates port to create a queue on.
13660 * @hrq: The queue structure to use to create the header receive queue.
13661 * @drq: The queue structure to use to create the data receive queue.
13662 * @cq: The completion queue to bind this work queue to.
13663 *
13664 * This function creates a receive buffer queue pair , as detailed in @hrq and
13665 * @drq, on a port, described by @phba by sending a RQ_CREATE mailbox command
13666 * to the HBA.
13667 *
13668 * The @phba struct is used to send mailbox command to HBA. The @drq and @hrq
13669 * struct is used to get the entry count that is necessary to determine the
13670 * number of pages to use for this queue. The @cq is used to indicate which
13671 * completion queue to bind received buffers that are posted to these queues to.
13672 * This function will send the RQ_CREATE mailbox command to the HBA to setup the
13673 * receive queue pair. This function is asynchronous and will wait for the
13674 * mailbox command to finish before continuing.
13675 *
13676 * On success this function will return a zero. If unable to allocate enough
d439d286
JS
13677 * memory this function will return -ENOMEM. If the queue create mailbox command
13678 * fails this function will return -ENXIO.
4f774513 13679 **/
a2fc4aef 13680int
4f774513
JS
13681lpfc_rq_create(struct lpfc_hba *phba, struct lpfc_queue *hrq,
13682 struct lpfc_queue *drq, struct lpfc_queue *cq, uint32_t subtype)
13683{
13684 struct lpfc_mbx_rq_create *rq_create;
13685 struct lpfc_dmabuf *dmabuf;
13686 LPFC_MBOXQ_t *mbox;
13687 int rc, length, status = 0;
13688 uint32_t shdr_status, shdr_add_status;
13689 union lpfc_sli4_cfg_shdr *shdr;
49198b37 13690 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
962bc51b
JS
13691 void __iomem *bar_memmap_p;
13692 uint32_t db_offset;
13693 uint16_t pci_barset;
49198b37 13694
2e90f4b5
JS
13695 /* sanity check on queue memory */
13696 if (!hrq || !drq || !cq)
13697 return -ENODEV;
49198b37
JS
13698 if (!phba->sli4_hba.pc_sli4_params.supported)
13699 hw_page_size = SLI4_PAGE_SIZE;
4f774513
JS
13700
13701 if (hrq->entry_count != drq->entry_count)
13702 return -EINVAL;
13703 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13704 if (!mbox)
13705 return -ENOMEM;
13706 length = (sizeof(struct lpfc_mbx_rq_create) -
13707 sizeof(struct lpfc_sli4_cfg_mhdr));
13708 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13709 LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
13710 length, LPFC_SLI4_MBX_EMBED);
13711 rq_create = &mbox->u.mqe.un.rq_create;
5a6f133e
JS
13712 shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
13713 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13714 phba->sli4_hba.pc_sli4_params.rqv);
13715 if (phba->sli4_hba.pc_sli4_params.rqv == LPFC_Q_CREATE_VERSION_1) {
13716 bf_set(lpfc_rq_context_rqe_count_1,
13717 &rq_create->u.request.context,
13718 hrq->entry_count);
13719 rq_create->u.request.context.buffer_size = LPFC_HDR_BUF_SIZE;
c31098ce
JS
13720 bf_set(lpfc_rq_context_rqe_size,
13721 &rq_create->u.request.context,
13722 LPFC_RQE_SIZE_8);
13723 bf_set(lpfc_rq_context_page_size,
13724 &rq_create->u.request.context,
13725 (PAGE_SIZE/SLI4_PAGE_SIZE));
5a6f133e
JS
13726 } else {
13727 switch (hrq->entry_count) {
13728 default:
13729 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13730 "2535 Unsupported RQ count. (%d)\n",
13731 hrq->entry_count);
4f4c1863
JS
13732 if (hrq->entry_count < 512) {
13733 status = -EINVAL;
13734 goto out;
13735 }
5a6f133e
JS
13736 /* otherwise default to smallest count (drop through) */
13737 case 512:
13738 bf_set(lpfc_rq_context_rqe_count,
13739 &rq_create->u.request.context,
13740 LPFC_RQ_RING_SIZE_512);
13741 break;
13742 case 1024:
13743 bf_set(lpfc_rq_context_rqe_count,
13744 &rq_create->u.request.context,
13745 LPFC_RQ_RING_SIZE_1024);
13746 break;
13747 case 2048:
13748 bf_set(lpfc_rq_context_rqe_count,
13749 &rq_create->u.request.context,
13750 LPFC_RQ_RING_SIZE_2048);
13751 break;
13752 case 4096:
13753 bf_set(lpfc_rq_context_rqe_count,
13754 &rq_create->u.request.context,
13755 LPFC_RQ_RING_SIZE_4096);
13756 break;
13757 }
13758 bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
13759 LPFC_HDR_BUF_SIZE);
4f774513
JS
13760 }
13761 bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
13762 cq->queue_id);
13763 bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
13764 hrq->page_count);
4f774513 13765 list_for_each_entry(dmabuf, &hrq->page_list, list) {
49198b37 13766 memset(dmabuf->virt, 0, hw_page_size);
4f774513
JS
13767 rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
13768 putPaddrLow(dmabuf->phys);
13769 rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
13770 putPaddrHigh(dmabuf->phys);
13771 }
962bc51b
JS
13772 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
13773 bf_set(lpfc_mbx_rq_create_dua, &rq_create->u.request, 1);
13774
4f774513
JS
13775 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13776 /* The IOCTL status is embedded in the mailbox subheader. */
4f774513
JS
13777 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13778 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13779 if (shdr_status || shdr_add_status || rc) {
13780 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13781 "2504 RQ_CREATE mailbox failed with "
13782 "status x%x add_status x%x, mbx status x%x\n",
13783 shdr_status, shdr_add_status, rc);
13784 status = -ENXIO;
13785 goto out;
13786 }
13787 hrq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
13788 if (hrq->queue_id == 0xFFFF) {
13789 status = -ENXIO;
13790 goto out;
13791 }
962bc51b
JS
13792
13793 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE) {
13794 hrq->db_format = bf_get(lpfc_mbx_rq_create_db_format,
13795 &rq_create->u.response);
13796 if ((hrq->db_format != LPFC_DB_LIST_FORMAT) &&
13797 (hrq->db_format != LPFC_DB_RING_FORMAT)) {
13798 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13799 "3262 RQ [%d] doorbell format not "
13800 "supported: x%x\n", hrq->queue_id,
13801 hrq->db_format);
13802 status = -EINVAL;
13803 goto out;
13804 }
13805
13806 pci_barset = bf_get(lpfc_mbx_rq_create_bar_set,
13807 &rq_create->u.response);
13808 bar_memmap_p = lpfc_dual_chute_pci_bar_map(phba, pci_barset);
13809 if (!bar_memmap_p) {
13810 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13811 "3269 RQ[%d] failed to memmap pci "
13812 "barset:x%x\n", hrq->queue_id,
13813 pci_barset);
13814 status = -ENOMEM;
13815 goto out;
13816 }
13817
13818 db_offset = rq_create->u.response.doorbell_offset;
13819 if ((db_offset != LPFC_ULP0_RQ_DOORBELL) &&
13820 (db_offset != LPFC_ULP1_RQ_DOORBELL)) {
13821 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13822 "3270 RQ[%d] doorbell offset not "
13823 "supported: x%x\n", hrq->queue_id,
13824 db_offset);
13825 status = -EINVAL;
13826 goto out;
13827 }
13828 hrq->db_regaddr = bar_memmap_p + db_offset;
13829 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
a22e7db3
JS
13830 "3266 RQ[qid:%d]: barset:x%x, offset:x%x, "
13831 "format:x%x\n", hrq->queue_id, pci_barset,
13832 db_offset, hrq->db_format);
962bc51b
JS
13833 } else {
13834 hrq->db_format = LPFC_DB_RING_FORMAT;
13835 hrq->db_regaddr = phba->sli4_hba.RQDBregaddr;
13836 }
4f774513 13837 hrq->type = LPFC_HRQ;
2a622bfb 13838 hrq->assoc_qid = cq->queue_id;
4f774513
JS
13839 hrq->subtype = subtype;
13840 hrq->host_index = 0;
13841 hrq->hba_index = 0;
13842
13843 /* now create the data queue */
13844 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13845 LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
13846 length, LPFC_SLI4_MBX_EMBED);
5a6f133e
JS
13847 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13848 phba->sli4_hba.pc_sli4_params.rqv);
13849 if (phba->sli4_hba.pc_sli4_params.rqv == LPFC_Q_CREATE_VERSION_1) {
13850 bf_set(lpfc_rq_context_rqe_count_1,
c31098ce 13851 &rq_create->u.request.context, hrq->entry_count);
5a6f133e 13852 rq_create->u.request.context.buffer_size = LPFC_DATA_BUF_SIZE;
c31098ce
JS
13853 bf_set(lpfc_rq_context_rqe_size, &rq_create->u.request.context,
13854 LPFC_RQE_SIZE_8);
13855 bf_set(lpfc_rq_context_page_size, &rq_create->u.request.context,
13856 (PAGE_SIZE/SLI4_PAGE_SIZE));
5a6f133e
JS
13857 } else {
13858 switch (drq->entry_count) {
13859 default:
13860 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13861 "2536 Unsupported RQ count. (%d)\n",
13862 drq->entry_count);
4f4c1863
JS
13863 if (drq->entry_count < 512) {
13864 status = -EINVAL;
13865 goto out;
13866 }
5a6f133e
JS
13867 /* otherwise default to smallest count (drop through) */
13868 case 512:
13869 bf_set(lpfc_rq_context_rqe_count,
13870 &rq_create->u.request.context,
13871 LPFC_RQ_RING_SIZE_512);
13872 break;
13873 case 1024:
13874 bf_set(lpfc_rq_context_rqe_count,
13875 &rq_create->u.request.context,
13876 LPFC_RQ_RING_SIZE_1024);
13877 break;
13878 case 2048:
13879 bf_set(lpfc_rq_context_rqe_count,
13880 &rq_create->u.request.context,
13881 LPFC_RQ_RING_SIZE_2048);
13882 break;
13883 case 4096:
13884 bf_set(lpfc_rq_context_rqe_count,
13885 &rq_create->u.request.context,
13886 LPFC_RQ_RING_SIZE_4096);
13887 break;
13888 }
13889 bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
13890 LPFC_DATA_BUF_SIZE);
4f774513
JS
13891 }
13892 bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
13893 cq->queue_id);
13894 bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
13895 drq->page_count);
4f774513
JS
13896 list_for_each_entry(dmabuf, &drq->page_list, list) {
13897 rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
13898 putPaddrLow(dmabuf->phys);
13899 rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
13900 putPaddrHigh(dmabuf->phys);
13901 }
962bc51b
JS
13902 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
13903 bf_set(lpfc_mbx_rq_create_dua, &rq_create->u.request, 1);
4f774513
JS
13904 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13905 /* The IOCTL status is embedded in the mailbox subheader. */
13906 shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
13907 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13908 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13909 if (shdr_status || shdr_add_status || rc) {
13910 status = -ENXIO;
13911 goto out;
13912 }
13913 drq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
13914 if (drq->queue_id == 0xFFFF) {
13915 status = -ENXIO;
13916 goto out;
13917 }
13918 drq->type = LPFC_DRQ;
2a622bfb 13919 drq->assoc_qid = cq->queue_id;
4f774513
JS
13920 drq->subtype = subtype;
13921 drq->host_index = 0;
13922 drq->hba_index = 0;
13923
13924 /* link the header and data RQs onto the parent cq child list */
13925 list_add_tail(&hrq->list, &cq->child_list);
13926 list_add_tail(&drq->list, &cq->child_list);
13927
13928out:
8fa38513 13929 mempool_free(mbox, phba->mbox_mem_pool);
4f774513
JS
13930 return status;
13931}
13932
13933/**
13934 * lpfc_eq_destroy - Destroy an event Queue on the HBA
13935 * @eq: The queue structure associated with the queue to destroy.
13936 *
13937 * This function destroys a queue, as detailed in @eq by sending an mailbox
13938 * command, specific to the type of queue, to the HBA.
13939 *
13940 * The @eq struct is used to get the queue ID of the queue to destroy.
13941 *
13942 * On success this function will return a zero. If the queue destroy mailbox
d439d286 13943 * command fails this function will return -ENXIO.
4f774513 13944 **/
a2fc4aef 13945int
4f774513
JS
13946lpfc_eq_destroy(struct lpfc_hba *phba, struct lpfc_queue *eq)
13947{
13948 LPFC_MBOXQ_t *mbox;
13949 int rc, length, status = 0;
13950 uint32_t shdr_status, shdr_add_status;
13951 union lpfc_sli4_cfg_shdr *shdr;
13952
2e90f4b5 13953 /* sanity check on queue memory */
4f774513
JS
13954 if (!eq)
13955 return -ENODEV;
13956 mbox = mempool_alloc(eq->phba->mbox_mem_pool, GFP_KERNEL);
13957 if (!mbox)
13958 return -ENOMEM;
13959 length = (sizeof(struct lpfc_mbx_eq_destroy) -
13960 sizeof(struct lpfc_sli4_cfg_mhdr));
13961 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13962 LPFC_MBOX_OPCODE_EQ_DESTROY,
13963 length, LPFC_SLI4_MBX_EMBED);
13964 bf_set(lpfc_mbx_eq_destroy_q_id, &mbox->u.mqe.un.eq_destroy.u.request,
13965 eq->queue_id);
13966 mbox->vport = eq->phba->pport;
13967 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
13968
13969 rc = lpfc_sli_issue_mbox(eq->phba, mbox, MBX_POLL);
13970 /* The IOCTL status is embedded in the mailbox subheader. */
13971 shdr = (union lpfc_sli4_cfg_shdr *)
13972 &mbox->u.mqe.un.eq_destroy.header.cfg_shdr;
13973 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13974 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13975 if (shdr_status || shdr_add_status || rc) {
13976 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13977 "2505 EQ_DESTROY mailbox failed with "
13978 "status x%x add_status x%x, mbx status x%x\n",
13979 shdr_status, shdr_add_status, rc);
13980 status = -ENXIO;
13981 }
13982
13983 /* Remove eq from any list */
13984 list_del_init(&eq->list);
8fa38513 13985 mempool_free(mbox, eq->phba->mbox_mem_pool);
4f774513
JS
13986 return status;
13987}
13988
13989/**
13990 * lpfc_cq_destroy - Destroy a Completion Queue on the HBA
13991 * @cq: The queue structure associated with the queue to destroy.
13992 *
13993 * This function destroys a queue, as detailed in @cq by sending an mailbox
13994 * command, specific to the type of queue, to the HBA.
13995 *
13996 * The @cq struct is used to get the queue ID of the queue to destroy.
13997 *
13998 * On success this function will return a zero. If the queue destroy mailbox
d439d286 13999 * command fails this function will return -ENXIO.
4f774513 14000 **/
a2fc4aef 14001int
4f774513
JS
14002lpfc_cq_destroy(struct lpfc_hba *phba, struct lpfc_queue *cq)
14003{
14004 LPFC_MBOXQ_t *mbox;
14005 int rc, length, status = 0;
14006 uint32_t shdr_status, shdr_add_status;
14007 union lpfc_sli4_cfg_shdr *shdr;
14008
2e90f4b5 14009 /* sanity check on queue memory */
4f774513
JS
14010 if (!cq)
14011 return -ENODEV;
14012 mbox = mempool_alloc(cq->phba->mbox_mem_pool, GFP_KERNEL);
14013 if (!mbox)
14014 return -ENOMEM;
14015 length = (sizeof(struct lpfc_mbx_cq_destroy) -
14016 sizeof(struct lpfc_sli4_cfg_mhdr));
14017 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
14018 LPFC_MBOX_OPCODE_CQ_DESTROY,
14019 length, LPFC_SLI4_MBX_EMBED);
14020 bf_set(lpfc_mbx_cq_destroy_q_id, &mbox->u.mqe.un.cq_destroy.u.request,
14021 cq->queue_id);
14022 mbox->vport = cq->phba->pport;
14023 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
14024 rc = lpfc_sli_issue_mbox(cq->phba, mbox, MBX_POLL);
14025 /* The IOCTL status is embedded in the mailbox subheader. */
14026 shdr = (union lpfc_sli4_cfg_shdr *)
14027 &mbox->u.mqe.un.wq_create.header.cfg_shdr;
14028 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14029 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14030 if (shdr_status || shdr_add_status || rc) {
14031 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14032 "2506 CQ_DESTROY mailbox failed with "
14033 "status x%x add_status x%x, mbx status x%x\n",
14034 shdr_status, shdr_add_status, rc);
14035 status = -ENXIO;
14036 }
14037 /* Remove cq from any list */
14038 list_del_init(&cq->list);
8fa38513 14039 mempool_free(mbox, cq->phba->mbox_mem_pool);
4f774513
JS
14040 return status;
14041}
14042
04c68496
JS
14043/**
14044 * lpfc_mq_destroy - Destroy a Mailbox Queue on the HBA
14045 * @qm: The queue structure associated with the queue to destroy.
14046 *
14047 * This function destroys a queue, as detailed in @mq by sending an mailbox
14048 * command, specific to the type of queue, to the HBA.
14049 *
14050 * The @mq struct is used to get the queue ID of the queue to destroy.
14051 *
14052 * On success this function will return a zero. If the queue destroy mailbox
d439d286 14053 * command fails this function will return -ENXIO.
04c68496 14054 **/
a2fc4aef 14055int
04c68496
JS
14056lpfc_mq_destroy(struct lpfc_hba *phba, struct lpfc_queue *mq)
14057{
14058 LPFC_MBOXQ_t *mbox;
14059 int rc, length, status = 0;
14060 uint32_t shdr_status, shdr_add_status;
14061 union lpfc_sli4_cfg_shdr *shdr;
14062
2e90f4b5 14063 /* sanity check on queue memory */
04c68496
JS
14064 if (!mq)
14065 return -ENODEV;
14066 mbox = mempool_alloc(mq->phba->mbox_mem_pool, GFP_KERNEL);
14067 if (!mbox)
14068 return -ENOMEM;
14069 length = (sizeof(struct lpfc_mbx_mq_destroy) -
14070 sizeof(struct lpfc_sli4_cfg_mhdr));
14071 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
14072 LPFC_MBOX_OPCODE_MQ_DESTROY,
14073 length, LPFC_SLI4_MBX_EMBED);
14074 bf_set(lpfc_mbx_mq_destroy_q_id, &mbox->u.mqe.un.mq_destroy.u.request,
14075 mq->queue_id);
14076 mbox->vport = mq->phba->pport;
14077 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
14078 rc = lpfc_sli_issue_mbox(mq->phba, mbox, MBX_POLL);
14079 /* The IOCTL status is embedded in the mailbox subheader. */
14080 shdr = (union lpfc_sli4_cfg_shdr *)
14081 &mbox->u.mqe.un.mq_destroy.header.cfg_shdr;
14082 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14083 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14084 if (shdr_status || shdr_add_status || rc) {
14085 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14086 "2507 MQ_DESTROY mailbox failed with "
14087 "status x%x add_status x%x, mbx status x%x\n",
14088 shdr_status, shdr_add_status, rc);
14089 status = -ENXIO;
14090 }
14091 /* Remove mq from any list */
14092 list_del_init(&mq->list);
8fa38513 14093 mempool_free(mbox, mq->phba->mbox_mem_pool);
04c68496
JS
14094 return status;
14095}
14096
4f774513
JS
14097/**
14098 * lpfc_wq_destroy - Destroy a Work Queue on the HBA
14099 * @wq: The queue structure associated with the queue to destroy.
14100 *
14101 * This function destroys a queue, as detailed in @wq by sending an mailbox
14102 * command, specific to the type of queue, to the HBA.
14103 *
14104 * The @wq struct is used to get the queue ID of the queue to destroy.
14105 *
14106 * On success this function will return a zero. If the queue destroy mailbox
d439d286 14107 * command fails this function will return -ENXIO.
4f774513 14108 **/
a2fc4aef 14109int
4f774513
JS
14110lpfc_wq_destroy(struct lpfc_hba *phba, struct lpfc_queue *wq)
14111{
14112 LPFC_MBOXQ_t *mbox;
14113 int rc, length, status = 0;
14114 uint32_t shdr_status, shdr_add_status;
14115 union lpfc_sli4_cfg_shdr *shdr;
14116
2e90f4b5 14117 /* sanity check on queue memory */
4f774513
JS
14118 if (!wq)
14119 return -ENODEV;
14120 mbox = mempool_alloc(wq->phba->mbox_mem_pool, GFP_KERNEL);
14121 if (!mbox)
14122 return -ENOMEM;
14123 length = (sizeof(struct lpfc_mbx_wq_destroy) -
14124 sizeof(struct lpfc_sli4_cfg_mhdr));
14125 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14126 LPFC_MBOX_OPCODE_FCOE_WQ_DESTROY,
14127 length, LPFC_SLI4_MBX_EMBED);
14128 bf_set(lpfc_mbx_wq_destroy_q_id, &mbox->u.mqe.un.wq_destroy.u.request,
14129 wq->queue_id);
14130 mbox->vport = wq->phba->pport;
14131 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
14132 rc = lpfc_sli_issue_mbox(wq->phba, mbox, MBX_POLL);
14133 shdr = (union lpfc_sli4_cfg_shdr *)
14134 &mbox->u.mqe.un.wq_destroy.header.cfg_shdr;
14135 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14136 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14137 if (shdr_status || shdr_add_status || rc) {
14138 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14139 "2508 WQ_DESTROY mailbox failed with "
14140 "status x%x add_status x%x, mbx status x%x\n",
14141 shdr_status, shdr_add_status, rc);
14142 status = -ENXIO;
14143 }
14144 /* Remove wq from any list */
14145 list_del_init(&wq->list);
8fa38513 14146 mempool_free(mbox, wq->phba->mbox_mem_pool);
4f774513
JS
14147 return status;
14148}
14149
14150/**
14151 * lpfc_rq_destroy - Destroy a Receive Queue on the HBA
14152 * @rq: The queue structure associated with the queue to destroy.
14153 *
14154 * This function destroys a queue, as detailed in @rq by sending an mailbox
14155 * command, specific to the type of queue, to the HBA.
14156 *
14157 * The @rq struct is used to get the queue ID of the queue to destroy.
14158 *
14159 * On success this function will return a zero. If the queue destroy mailbox
d439d286 14160 * command fails this function will return -ENXIO.
4f774513 14161 **/
a2fc4aef 14162int
4f774513
JS
14163lpfc_rq_destroy(struct lpfc_hba *phba, struct lpfc_queue *hrq,
14164 struct lpfc_queue *drq)
14165{
14166 LPFC_MBOXQ_t *mbox;
14167 int rc, length, status = 0;
14168 uint32_t shdr_status, shdr_add_status;
14169 union lpfc_sli4_cfg_shdr *shdr;
14170
2e90f4b5 14171 /* sanity check on queue memory */
4f774513
JS
14172 if (!hrq || !drq)
14173 return -ENODEV;
14174 mbox = mempool_alloc(hrq->phba->mbox_mem_pool, GFP_KERNEL);
14175 if (!mbox)
14176 return -ENOMEM;
14177 length = (sizeof(struct lpfc_mbx_rq_destroy) -
fedd3b7b 14178 sizeof(struct lpfc_sli4_cfg_mhdr));
4f774513
JS
14179 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14180 LPFC_MBOX_OPCODE_FCOE_RQ_DESTROY,
14181 length, LPFC_SLI4_MBX_EMBED);
14182 bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
14183 hrq->queue_id);
14184 mbox->vport = hrq->phba->pport;
14185 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
14186 rc = lpfc_sli_issue_mbox(hrq->phba, mbox, MBX_POLL);
14187 /* The IOCTL status is embedded in the mailbox subheader. */
14188 shdr = (union lpfc_sli4_cfg_shdr *)
14189 &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
14190 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14191 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14192 if (shdr_status || shdr_add_status || rc) {
14193 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14194 "2509 RQ_DESTROY mailbox failed with "
14195 "status x%x add_status x%x, mbx status x%x\n",
14196 shdr_status, shdr_add_status, rc);
14197 if (rc != MBX_TIMEOUT)
14198 mempool_free(mbox, hrq->phba->mbox_mem_pool);
14199 return -ENXIO;
14200 }
14201 bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
14202 drq->queue_id);
14203 rc = lpfc_sli_issue_mbox(drq->phba, mbox, MBX_POLL);
14204 shdr = (union lpfc_sli4_cfg_shdr *)
14205 &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
14206 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14207 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14208 if (shdr_status || shdr_add_status || rc) {
14209 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14210 "2510 RQ_DESTROY mailbox failed with "
14211 "status x%x add_status x%x, mbx status x%x\n",
14212 shdr_status, shdr_add_status, rc);
14213 status = -ENXIO;
14214 }
14215 list_del_init(&hrq->list);
14216 list_del_init(&drq->list);
8fa38513 14217 mempool_free(mbox, hrq->phba->mbox_mem_pool);
4f774513
JS
14218 return status;
14219}
14220
14221/**
14222 * lpfc_sli4_post_sgl - Post scatter gather list for an XRI to HBA
14223 * @phba: The virtual port for which this call being executed.
14224 * @pdma_phys_addr0: Physical address of the 1st SGL page.
14225 * @pdma_phys_addr1: Physical address of the 2nd SGL page.
14226 * @xritag: the xritag that ties this io to the SGL pages.
14227 *
14228 * This routine will post the sgl pages for the IO that has the xritag
14229 * that is in the iocbq structure. The xritag is assigned during iocbq
14230 * creation and persists for as long as the driver is loaded.
14231 * if the caller has fewer than 256 scatter gather segments to map then
14232 * pdma_phys_addr1 should be 0.
14233 * If the caller needs to map more than 256 scatter gather segment then
14234 * pdma_phys_addr1 should be a valid physical address.
14235 * physical address for SGLs must be 64 byte aligned.
14236 * If you are going to map 2 SGL's then the first one must have 256 entries
14237 * the second sgl can have between 1 and 256 entries.
14238 *
14239 * Return codes:
14240 * 0 - Success
14241 * -ENXIO, -ENOMEM - Failure
14242 **/
14243int
14244lpfc_sli4_post_sgl(struct lpfc_hba *phba,
14245 dma_addr_t pdma_phys_addr0,
14246 dma_addr_t pdma_phys_addr1,
14247 uint16_t xritag)
14248{
14249 struct lpfc_mbx_post_sgl_pages *post_sgl_pages;
14250 LPFC_MBOXQ_t *mbox;
14251 int rc;
14252 uint32_t shdr_status, shdr_add_status;
6d368e53 14253 uint32_t mbox_tmo;
4f774513
JS
14254 union lpfc_sli4_cfg_shdr *shdr;
14255
14256 if (xritag == NO_XRI) {
14257 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14258 "0364 Invalid param:\n");
14259 return -EINVAL;
14260 }
14261
14262 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
14263 if (!mbox)
14264 return -ENOMEM;
14265
14266 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14267 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES,
14268 sizeof(struct lpfc_mbx_post_sgl_pages) -
fedd3b7b 14269 sizeof(struct lpfc_sli4_cfg_mhdr), LPFC_SLI4_MBX_EMBED);
4f774513
JS
14270
14271 post_sgl_pages = (struct lpfc_mbx_post_sgl_pages *)
14272 &mbox->u.mqe.un.post_sgl_pages;
14273 bf_set(lpfc_post_sgl_pages_xri, post_sgl_pages, xritag);
14274 bf_set(lpfc_post_sgl_pages_xricnt, post_sgl_pages, 1);
14275
14276 post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_lo =
14277 cpu_to_le32(putPaddrLow(pdma_phys_addr0));
14278 post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_hi =
14279 cpu_to_le32(putPaddrHigh(pdma_phys_addr0));
14280
14281 post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_lo =
14282 cpu_to_le32(putPaddrLow(pdma_phys_addr1));
14283 post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_hi =
14284 cpu_to_le32(putPaddrHigh(pdma_phys_addr1));
14285 if (!phba->sli4_hba.intr_enable)
14286 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
6d368e53 14287 else {
a183a15f 14288 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
6d368e53
JS
14289 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
14290 }
4f774513
JS
14291 /* The IOCTL status is embedded in the mailbox subheader. */
14292 shdr = (union lpfc_sli4_cfg_shdr *) &post_sgl_pages->header.cfg_shdr;
14293 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14294 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14295 if (rc != MBX_TIMEOUT)
14296 mempool_free(mbox, phba->mbox_mem_pool);
14297 if (shdr_status || shdr_add_status || rc) {
14298 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14299 "2511 POST_SGL mailbox failed with "
14300 "status x%x add_status x%x, mbx status x%x\n",
14301 shdr_status, shdr_add_status, rc);
4f774513
JS
14302 }
14303 return 0;
14304}
4f774513 14305
6d368e53 14306/**
88a2cfbb 14307 * lpfc_sli4_alloc_xri - Get an available rpi in the device's range
6d368e53
JS
14308 * @phba: pointer to lpfc hba data structure.
14309 *
14310 * This routine is invoked to post rpi header templates to the
88a2cfbb
JS
14311 * HBA consistent with the SLI-4 interface spec. This routine
14312 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
14313 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
6d368e53 14314 *
88a2cfbb
JS
14315 * Returns
14316 * A nonzero rpi defined as rpi_base <= rpi < max_rpi if successful
14317 * LPFC_RPI_ALLOC_ERROR if no rpis are available.
14318 **/
5d8b8167 14319static uint16_t
6d368e53
JS
14320lpfc_sli4_alloc_xri(struct lpfc_hba *phba)
14321{
14322 unsigned long xri;
14323
14324 /*
14325 * Fetch the next logical xri. Because this index is logical,
14326 * the driver starts at 0 each time.
14327 */
14328 spin_lock_irq(&phba->hbalock);
14329 xri = find_next_zero_bit(phba->sli4_hba.xri_bmask,
14330 phba->sli4_hba.max_cfg_param.max_xri, 0);
14331 if (xri >= phba->sli4_hba.max_cfg_param.max_xri) {
14332 spin_unlock_irq(&phba->hbalock);
14333 return NO_XRI;
14334 } else {
14335 set_bit(xri, phba->sli4_hba.xri_bmask);
14336 phba->sli4_hba.max_cfg_param.xri_used++;
6d368e53 14337 }
6d368e53
JS
14338 spin_unlock_irq(&phba->hbalock);
14339 return xri;
14340}
14341
14342/**
14343 * lpfc_sli4_free_xri - Release an xri for reuse.
14344 * @phba: pointer to lpfc hba data structure.
14345 *
14346 * This routine is invoked to release an xri to the pool of
14347 * available rpis maintained by the driver.
14348 **/
5d8b8167 14349static void
6d368e53
JS
14350__lpfc_sli4_free_xri(struct lpfc_hba *phba, int xri)
14351{
14352 if (test_and_clear_bit(xri, phba->sli4_hba.xri_bmask)) {
6d368e53
JS
14353 phba->sli4_hba.max_cfg_param.xri_used--;
14354 }
14355}
14356
14357/**
14358 * lpfc_sli4_free_xri - Release an xri for reuse.
14359 * @phba: pointer to lpfc hba data structure.
14360 *
14361 * This routine is invoked to release an xri to the pool of
14362 * available rpis maintained by the driver.
14363 **/
14364void
14365lpfc_sli4_free_xri(struct lpfc_hba *phba, int xri)
14366{
14367 spin_lock_irq(&phba->hbalock);
14368 __lpfc_sli4_free_xri(phba, xri);
14369 spin_unlock_irq(&phba->hbalock);
14370}
14371
4f774513
JS
14372/**
14373 * lpfc_sli4_next_xritag - Get an xritag for the io
14374 * @phba: Pointer to HBA context object.
14375 *
14376 * This function gets an xritag for the iocb. If there is no unused xritag
14377 * it will return 0xffff.
14378 * The function returns the allocated xritag if successful, else returns zero.
14379 * Zero is not a valid xritag.
14380 * The caller is not required to hold any lock.
14381 **/
14382uint16_t
14383lpfc_sli4_next_xritag(struct lpfc_hba *phba)
14384{
6d368e53 14385 uint16_t xri_index;
4f774513 14386
6d368e53 14387 xri_index = lpfc_sli4_alloc_xri(phba);
81378052
JS
14388 if (xri_index == NO_XRI)
14389 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
14390 "2004 Failed to allocate XRI.last XRITAG is %d"
14391 " Max XRI is %d, Used XRI is %d\n",
14392 xri_index,
14393 phba->sli4_hba.max_cfg_param.max_xri,
14394 phba->sli4_hba.max_cfg_param.xri_used);
14395 return xri_index;
4f774513
JS
14396}
14397
14398/**
6d368e53 14399 * lpfc_sli4_post_els_sgl_list - post a block of ELS sgls to the port.
4f774513 14400 * @phba: pointer to lpfc hba data structure.
8a9d2e80
JS
14401 * @post_sgl_list: pointer to els sgl entry list.
14402 * @count: number of els sgl entries on the list.
4f774513
JS
14403 *
14404 * This routine is invoked to post a block of driver's sgl pages to the
14405 * HBA using non-embedded mailbox command. No Lock is held. This routine
14406 * is only called when the driver is loading and after all IO has been
14407 * stopped.
14408 **/
8a9d2e80
JS
14409static int
14410lpfc_sli4_post_els_sgl_list(struct lpfc_hba *phba,
14411 struct list_head *post_sgl_list,
14412 int post_cnt)
4f774513 14413{
8a9d2e80 14414 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
4f774513
JS
14415 struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
14416 struct sgl_page_pairs *sgl_pg_pairs;
14417 void *viraddr;
14418 LPFC_MBOXQ_t *mbox;
14419 uint32_t reqlen, alloclen, pg_pairs;
14420 uint32_t mbox_tmo;
8a9d2e80
JS
14421 uint16_t xritag_start = 0;
14422 int rc = 0;
4f774513
JS
14423 uint32_t shdr_status, shdr_add_status;
14424 union lpfc_sli4_cfg_shdr *shdr;
14425
8a9d2e80 14426 reqlen = phba->sli4_hba.els_xri_cnt * sizeof(struct sgl_page_pairs) +
4f774513 14427 sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
49198b37 14428 if (reqlen > SLI4_PAGE_SIZE) {
4f774513
JS
14429 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
14430 "2559 Block sgl registration required DMA "
14431 "size (%d) great than a page\n", reqlen);
14432 return -ENOMEM;
14433 }
14434 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6d368e53 14435 if (!mbox)
4f774513 14436 return -ENOMEM;
4f774513
JS
14437
14438 /* Allocate DMA memory and set up the non-embedded mailbox command */
14439 alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14440 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
14441 LPFC_SLI4_MBX_NEMBED);
14442
14443 if (alloclen < reqlen) {
14444 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14445 "0285 Allocated DMA memory size (%d) is "
14446 "less than the requested DMA memory "
14447 "size (%d)\n", alloclen, reqlen);
14448 lpfc_sli4_mbox_cmd_free(phba, mbox);
14449 return -ENOMEM;
14450 }
4f774513 14451 /* Set up the SGL pages in the non-embedded DMA pages */
6d368e53 14452 viraddr = mbox->sge_array->addr[0];
4f774513
JS
14453 sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
14454 sgl_pg_pairs = &sgl->sgl_pg_pairs;
14455
8a9d2e80
JS
14456 pg_pairs = 0;
14457 list_for_each_entry_safe(sglq_entry, sglq_next, post_sgl_list, list) {
4f774513
JS
14458 /* Set up the sge entry */
14459 sgl_pg_pairs->sgl_pg0_addr_lo =
14460 cpu_to_le32(putPaddrLow(sglq_entry->phys));
14461 sgl_pg_pairs->sgl_pg0_addr_hi =
14462 cpu_to_le32(putPaddrHigh(sglq_entry->phys));
14463 sgl_pg_pairs->sgl_pg1_addr_lo =
14464 cpu_to_le32(putPaddrLow(0));
14465 sgl_pg_pairs->sgl_pg1_addr_hi =
14466 cpu_to_le32(putPaddrHigh(0));
6d368e53 14467
4f774513
JS
14468 /* Keep the first xritag on the list */
14469 if (pg_pairs == 0)
14470 xritag_start = sglq_entry->sli4_xritag;
14471 sgl_pg_pairs++;
8a9d2e80 14472 pg_pairs++;
4f774513 14473 }
6d368e53
JS
14474
14475 /* Complete initialization and perform endian conversion. */
4f774513 14476 bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
8a9d2e80 14477 bf_set(lpfc_post_sgl_pages_xricnt, sgl, phba->sli4_hba.els_xri_cnt);
4f774513 14478 sgl->word0 = cpu_to_le32(sgl->word0);
4f774513
JS
14479 if (!phba->sli4_hba.intr_enable)
14480 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
14481 else {
a183a15f 14482 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
4f774513
JS
14483 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
14484 }
14485 shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
14486 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14487 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14488 if (rc != MBX_TIMEOUT)
14489 lpfc_sli4_mbox_cmd_free(phba, mbox);
14490 if (shdr_status || shdr_add_status || rc) {
14491 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14492 "2513 POST_SGL_BLOCK mailbox command failed "
14493 "status x%x add_status x%x mbx status x%x\n",
14494 shdr_status, shdr_add_status, rc);
14495 rc = -ENXIO;
14496 }
14497 return rc;
14498}
14499
14500/**
14501 * lpfc_sli4_post_scsi_sgl_block - post a block of scsi sgl list to firmware
14502 * @phba: pointer to lpfc hba data structure.
14503 * @sblist: pointer to scsi buffer list.
14504 * @count: number of scsi buffers on the list.
14505 *
14506 * This routine is invoked to post a block of @count scsi sgl pages from a
14507 * SCSI buffer list @sblist to the HBA using non-embedded mailbox command.
14508 * No Lock is held.
14509 *
14510 **/
14511int
8a9d2e80
JS
14512lpfc_sli4_post_scsi_sgl_block(struct lpfc_hba *phba,
14513 struct list_head *sblist,
14514 int count)
4f774513
JS
14515{
14516 struct lpfc_scsi_buf *psb;
14517 struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
14518 struct sgl_page_pairs *sgl_pg_pairs;
14519 void *viraddr;
14520 LPFC_MBOXQ_t *mbox;
14521 uint32_t reqlen, alloclen, pg_pairs;
14522 uint32_t mbox_tmo;
14523 uint16_t xritag_start = 0;
14524 int rc = 0;
14525 uint32_t shdr_status, shdr_add_status;
14526 dma_addr_t pdma_phys_bpl1;
14527 union lpfc_sli4_cfg_shdr *shdr;
14528
14529 /* Calculate the requested length of the dma memory */
8a9d2e80 14530 reqlen = count * sizeof(struct sgl_page_pairs) +
4f774513 14531 sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
49198b37 14532 if (reqlen > SLI4_PAGE_SIZE) {
4f774513
JS
14533 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
14534 "0217 Block sgl registration required DMA "
14535 "size (%d) great than a page\n", reqlen);
14536 return -ENOMEM;
14537 }
14538 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
14539 if (!mbox) {
14540 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14541 "0283 Failed to allocate mbox cmd memory\n");
14542 return -ENOMEM;
14543 }
14544
14545 /* Allocate DMA memory and set up the non-embedded mailbox command */
14546 alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14547 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
14548 LPFC_SLI4_MBX_NEMBED);
14549
14550 if (alloclen < reqlen) {
14551 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14552 "2561 Allocated DMA memory size (%d) is "
14553 "less than the requested DMA memory "
14554 "size (%d)\n", alloclen, reqlen);
14555 lpfc_sli4_mbox_cmd_free(phba, mbox);
14556 return -ENOMEM;
14557 }
6d368e53 14558
4f774513 14559 /* Get the first SGE entry from the non-embedded DMA memory */
4f774513
JS
14560 viraddr = mbox->sge_array->addr[0];
14561
14562 /* Set up the SGL pages in the non-embedded DMA pages */
14563 sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
14564 sgl_pg_pairs = &sgl->sgl_pg_pairs;
14565
14566 pg_pairs = 0;
14567 list_for_each_entry(psb, sblist, list) {
14568 /* Set up the sge entry */
14569 sgl_pg_pairs->sgl_pg0_addr_lo =
14570 cpu_to_le32(putPaddrLow(psb->dma_phys_bpl));
14571 sgl_pg_pairs->sgl_pg0_addr_hi =
14572 cpu_to_le32(putPaddrHigh(psb->dma_phys_bpl));
14573 if (phba->cfg_sg_dma_buf_size > SGL_PAGE_SIZE)
14574 pdma_phys_bpl1 = psb->dma_phys_bpl + SGL_PAGE_SIZE;
14575 else
14576 pdma_phys_bpl1 = 0;
14577 sgl_pg_pairs->sgl_pg1_addr_lo =
14578 cpu_to_le32(putPaddrLow(pdma_phys_bpl1));
14579 sgl_pg_pairs->sgl_pg1_addr_hi =
14580 cpu_to_le32(putPaddrHigh(pdma_phys_bpl1));
14581 /* Keep the first xritag on the list */
14582 if (pg_pairs == 0)
14583 xritag_start = psb->cur_iocbq.sli4_xritag;
14584 sgl_pg_pairs++;
14585 pg_pairs++;
14586 }
14587 bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
14588 bf_set(lpfc_post_sgl_pages_xricnt, sgl, pg_pairs);
14589 /* Perform endian conversion if necessary */
14590 sgl->word0 = cpu_to_le32(sgl->word0);
14591
14592 if (!phba->sli4_hba.intr_enable)
14593 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
14594 else {
a183a15f 14595 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
4f774513
JS
14596 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
14597 }
14598 shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
14599 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14600 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14601 if (rc != MBX_TIMEOUT)
14602 lpfc_sli4_mbox_cmd_free(phba, mbox);
14603 if (shdr_status || shdr_add_status || rc) {
14604 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14605 "2564 POST_SGL_BLOCK mailbox command failed "
14606 "status x%x add_status x%x mbx status x%x\n",
14607 shdr_status, shdr_add_status, rc);
14608 rc = -ENXIO;
14609 }
14610 return rc;
14611}
14612
14613/**
14614 * lpfc_fc_frame_check - Check that this frame is a valid frame to handle
14615 * @phba: pointer to lpfc_hba struct that the frame was received on
14616 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
14617 *
14618 * This function checks the fields in the @fc_hdr to see if the FC frame is a
14619 * valid type of frame that the LPFC driver will handle. This function will
14620 * return a zero if the frame is a valid frame or a non zero value when the
14621 * frame does not pass the check.
14622 **/
14623static int
14624lpfc_fc_frame_check(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr)
14625{
474ffb74
TH
14626 /* make rctl_names static to save stack space */
14627 static char *rctl_names[] = FC_RCTL_NAMES_INIT;
4f774513
JS
14628 char *type_names[] = FC_TYPE_NAMES_INIT;
14629 struct fc_vft_header *fc_vft_hdr;
546fc854 14630 uint32_t *header = (uint32_t *) fc_hdr;
4f774513
JS
14631
14632 switch (fc_hdr->fh_r_ctl) {
14633 case FC_RCTL_DD_UNCAT: /* uncategorized information */
14634 case FC_RCTL_DD_SOL_DATA: /* solicited data */
14635 case FC_RCTL_DD_UNSOL_CTL: /* unsolicited control */
14636 case FC_RCTL_DD_SOL_CTL: /* solicited control or reply */
14637 case FC_RCTL_DD_UNSOL_DATA: /* unsolicited data */
14638 case FC_RCTL_DD_DATA_DESC: /* data descriptor */
14639 case FC_RCTL_DD_UNSOL_CMD: /* unsolicited command */
14640 case FC_RCTL_DD_CMD_STATUS: /* command status */
14641 case FC_RCTL_ELS_REQ: /* extended link services request */
14642 case FC_RCTL_ELS_REP: /* extended link services reply */
14643 case FC_RCTL_ELS4_REQ: /* FC-4 ELS request */
14644 case FC_RCTL_ELS4_REP: /* FC-4 ELS reply */
14645 case FC_RCTL_BA_NOP: /* basic link service NOP */
14646 case FC_RCTL_BA_ABTS: /* basic link service abort */
14647 case FC_RCTL_BA_RMC: /* remove connection */
14648 case FC_RCTL_BA_ACC: /* basic accept */
14649 case FC_RCTL_BA_RJT: /* basic reject */
14650 case FC_RCTL_BA_PRMT:
14651 case FC_RCTL_ACK_1: /* acknowledge_1 */
14652 case FC_RCTL_ACK_0: /* acknowledge_0 */
14653 case FC_RCTL_P_RJT: /* port reject */
14654 case FC_RCTL_F_RJT: /* fabric reject */
14655 case FC_RCTL_P_BSY: /* port busy */
14656 case FC_RCTL_F_BSY: /* fabric busy to data frame */
14657 case FC_RCTL_F_BSYL: /* fabric busy to link control frame */
14658 case FC_RCTL_LCR: /* link credit reset */
14659 case FC_RCTL_END: /* end */
14660 break;
14661 case FC_RCTL_VFTH: /* Virtual Fabric tagging Header */
14662 fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
14663 fc_hdr = &((struct fc_frame_header *)fc_vft_hdr)[1];
14664 return lpfc_fc_frame_check(phba, fc_hdr);
14665 default:
14666 goto drop;
14667 }
14668 switch (fc_hdr->fh_type) {
14669 case FC_TYPE_BLS:
14670 case FC_TYPE_ELS:
14671 case FC_TYPE_FCP:
14672 case FC_TYPE_CT:
14673 break;
14674 case FC_TYPE_IP:
14675 case FC_TYPE_ILS:
14676 default:
14677 goto drop;
14678 }
546fc854 14679
4f774513 14680 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
88f43a08
JS
14681 "2538 Received frame rctl:%s (x%x), type:%s (x%x), "
14682 "frame Data:%08x %08x %08x %08x %08x %08x %08x\n",
14683 rctl_names[fc_hdr->fh_r_ctl], fc_hdr->fh_r_ctl,
14684 type_names[fc_hdr->fh_type], fc_hdr->fh_type,
546fc854
JS
14685 be32_to_cpu(header[0]), be32_to_cpu(header[1]),
14686 be32_to_cpu(header[2]), be32_to_cpu(header[3]),
88f43a08
JS
14687 be32_to_cpu(header[4]), be32_to_cpu(header[5]),
14688 be32_to_cpu(header[6]));
4f774513
JS
14689 return 0;
14690drop:
14691 lpfc_printf_log(phba, KERN_WARNING, LOG_ELS,
14692 "2539 Dropped frame rctl:%s type:%s\n",
14693 rctl_names[fc_hdr->fh_r_ctl],
14694 type_names[fc_hdr->fh_type]);
14695 return 1;
14696}
14697
14698/**
14699 * lpfc_fc_hdr_get_vfi - Get the VFI from an FC frame
14700 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
14701 *
14702 * This function processes the FC header to retrieve the VFI from the VF
14703 * header, if one exists. This function will return the VFI if one exists
14704 * or 0 if no VSAN Header exists.
14705 **/
14706static uint32_t
14707lpfc_fc_hdr_get_vfi(struct fc_frame_header *fc_hdr)
14708{
14709 struct fc_vft_header *fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
14710
14711 if (fc_hdr->fh_r_ctl != FC_RCTL_VFTH)
14712 return 0;
14713 return bf_get(fc_vft_hdr_vf_id, fc_vft_hdr);
14714}
14715
14716/**
14717 * lpfc_fc_frame_to_vport - Finds the vport that a frame is destined to
14718 * @phba: Pointer to the HBA structure to search for the vport on
14719 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
14720 * @fcfi: The FC Fabric ID that the frame came from
14721 *
14722 * This function searches the @phba for a vport that matches the content of the
14723 * @fc_hdr passed in and the @fcfi. This function uses the @fc_hdr to fetch the
14724 * VFI, if the Virtual Fabric Tagging Header exists, and the DID. This function
14725 * returns the matching vport pointer or NULL if unable to match frame to a
14726 * vport.
14727 **/
14728static struct lpfc_vport *
14729lpfc_fc_frame_to_vport(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr,
14730 uint16_t fcfi)
14731{
14732 struct lpfc_vport **vports;
14733 struct lpfc_vport *vport = NULL;
14734 int i;
14735 uint32_t did = (fc_hdr->fh_d_id[0] << 16 |
14736 fc_hdr->fh_d_id[1] << 8 |
14737 fc_hdr->fh_d_id[2]);
939723a4 14738
bf08611b
JS
14739 if (did == Fabric_DID)
14740 return phba->pport;
939723a4
JS
14741 if ((phba->pport->fc_flag & FC_PT2PT) &&
14742 !(phba->link_state == LPFC_HBA_READY))
14743 return phba->pport;
14744
4f774513
JS
14745 vports = lpfc_create_vport_work_array(phba);
14746 if (vports != NULL)
14747 for (i = 0; i <= phba->max_vpi && vports[i] != NULL; i++) {
14748 if (phba->fcf.fcfi == fcfi &&
14749 vports[i]->vfi == lpfc_fc_hdr_get_vfi(fc_hdr) &&
14750 vports[i]->fc_myDID == did) {
14751 vport = vports[i];
14752 break;
14753 }
14754 }
14755 lpfc_destroy_vport_work_array(phba, vports);
14756 return vport;
14757}
14758
45ed1190
JS
14759/**
14760 * lpfc_update_rcv_time_stamp - Update vport's rcv seq time stamp
14761 * @vport: The vport to work on.
14762 *
14763 * This function updates the receive sequence time stamp for this vport. The
14764 * receive sequence time stamp indicates the time that the last frame of the
14765 * the sequence that has been idle for the longest amount of time was received.
14766 * the driver uses this time stamp to indicate if any received sequences have
14767 * timed out.
14768 **/
5d8b8167 14769static void
45ed1190
JS
14770lpfc_update_rcv_time_stamp(struct lpfc_vport *vport)
14771{
14772 struct lpfc_dmabuf *h_buf;
14773 struct hbq_dmabuf *dmabuf = NULL;
14774
14775 /* get the oldest sequence on the rcv list */
14776 h_buf = list_get_first(&vport->rcv_buffer_list,
14777 struct lpfc_dmabuf, list);
14778 if (!h_buf)
14779 return;
14780 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14781 vport->rcv_buffer_time_stamp = dmabuf->time_stamp;
14782}
14783
14784/**
14785 * lpfc_cleanup_rcv_buffers - Cleans up all outstanding receive sequences.
14786 * @vport: The vport that the received sequences were sent to.
14787 *
14788 * This function cleans up all outstanding received sequences. This is called
14789 * by the driver when a link event or user action invalidates all the received
14790 * sequences.
14791 **/
14792void
14793lpfc_cleanup_rcv_buffers(struct lpfc_vport *vport)
14794{
14795 struct lpfc_dmabuf *h_buf, *hnext;
14796 struct lpfc_dmabuf *d_buf, *dnext;
14797 struct hbq_dmabuf *dmabuf = NULL;
14798
14799 /* start with the oldest sequence on the rcv list */
14800 list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
14801 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14802 list_del_init(&dmabuf->hbuf.list);
14803 list_for_each_entry_safe(d_buf, dnext,
14804 &dmabuf->dbuf.list, list) {
14805 list_del_init(&d_buf->list);
14806 lpfc_in_buf_free(vport->phba, d_buf);
14807 }
14808 lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
14809 }
14810}
14811
14812/**
14813 * lpfc_rcv_seq_check_edtov - Cleans up timed out receive sequences.
14814 * @vport: The vport that the received sequences were sent to.
14815 *
14816 * This function determines whether any received sequences have timed out by
14817 * first checking the vport's rcv_buffer_time_stamp. If this time_stamp
14818 * indicates that there is at least one timed out sequence this routine will
14819 * go through the received sequences one at a time from most inactive to most
14820 * active to determine which ones need to be cleaned up. Once it has determined
14821 * that a sequence needs to be cleaned up it will simply free up the resources
14822 * without sending an abort.
14823 **/
14824void
14825lpfc_rcv_seq_check_edtov(struct lpfc_vport *vport)
14826{
14827 struct lpfc_dmabuf *h_buf, *hnext;
14828 struct lpfc_dmabuf *d_buf, *dnext;
14829 struct hbq_dmabuf *dmabuf = NULL;
14830 unsigned long timeout;
14831 int abort_count = 0;
14832
14833 timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
14834 vport->rcv_buffer_time_stamp);
14835 if (list_empty(&vport->rcv_buffer_list) ||
14836 time_before(jiffies, timeout))
14837 return;
14838 /* start with the oldest sequence on the rcv list */
14839 list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
14840 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14841 timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
14842 dmabuf->time_stamp);
14843 if (time_before(jiffies, timeout))
14844 break;
14845 abort_count++;
14846 list_del_init(&dmabuf->hbuf.list);
14847 list_for_each_entry_safe(d_buf, dnext,
14848 &dmabuf->dbuf.list, list) {
14849 list_del_init(&d_buf->list);
14850 lpfc_in_buf_free(vport->phba, d_buf);
14851 }
14852 lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
14853 }
14854 if (abort_count)
14855 lpfc_update_rcv_time_stamp(vport);
14856}
14857
4f774513
JS
14858/**
14859 * lpfc_fc_frame_add - Adds a frame to the vport's list of received sequences
14860 * @dmabuf: pointer to a dmabuf that describes the hdr and data of the FC frame
14861 *
14862 * This function searches through the existing incomplete sequences that have
14863 * been sent to this @vport. If the frame matches one of the incomplete
14864 * sequences then the dbuf in the @dmabuf is added to the list of frames that
14865 * make up that sequence. If no sequence is found that matches this frame then
14866 * the function will add the hbuf in the @dmabuf to the @vport's rcv_buffer_list
14867 * This function returns a pointer to the first dmabuf in the sequence list that
14868 * the frame was linked to.
14869 **/
14870static struct hbq_dmabuf *
14871lpfc_fc_frame_add(struct lpfc_vport *vport, struct hbq_dmabuf *dmabuf)
14872{
14873 struct fc_frame_header *new_hdr;
14874 struct fc_frame_header *temp_hdr;
14875 struct lpfc_dmabuf *d_buf;
14876 struct lpfc_dmabuf *h_buf;
14877 struct hbq_dmabuf *seq_dmabuf = NULL;
14878 struct hbq_dmabuf *temp_dmabuf = NULL;
14879
4d9ab994 14880 INIT_LIST_HEAD(&dmabuf->dbuf.list);
45ed1190 14881 dmabuf->time_stamp = jiffies;
4f774513
JS
14882 new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
14883 /* Use the hdr_buf to find the sequence that this frame belongs to */
14884 list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
14885 temp_hdr = (struct fc_frame_header *)h_buf->virt;
14886 if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
14887 (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
14888 (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
14889 continue;
14890 /* found a pending sequence that matches this frame */
14891 seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14892 break;
14893 }
14894 if (!seq_dmabuf) {
14895 /*
14896 * This indicates first frame received for this sequence.
14897 * Queue the buffer on the vport's rcv_buffer_list.
14898 */
14899 list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
45ed1190 14900 lpfc_update_rcv_time_stamp(vport);
4f774513
JS
14901 return dmabuf;
14902 }
14903 temp_hdr = seq_dmabuf->hbuf.virt;
eeead811
JS
14904 if (be16_to_cpu(new_hdr->fh_seq_cnt) <
14905 be16_to_cpu(temp_hdr->fh_seq_cnt)) {
4d9ab994
JS
14906 list_del_init(&seq_dmabuf->hbuf.list);
14907 list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
14908 list_add_tail(&dmabuf->dbuf.list, &seq_dmabuf->dbuf.list);
45ed1190 14909 lpfc_update_rcv_time_stamp(vport);
4f774513
JS
14910 return dmabuf;
14911 }
45ed1190
JS
14912 /* move this sequence to the tail to indicate a young sequence */
14913 list_move_tail(&seq_dmabuf->hbuf.list, &vport->rcv_buffer_list);
14914 seq_dmabuf->time_stamp = jiffies;
14915 lpfc_update_rcv_time_stamp(vport);
eeead811
JS
14916 if (list_empty(&seq_dmabuf->dbuf.list)) {
14917 temp_hdr = dmabuf->hbuf.virt;
14918 list_add_tail(&dmabuf->dbuf.list, &seq_dmabuf->dbuf.list);
14919 return seq_dmabuf;
14920 }
4f774513
JS
14921 /* find the correct place in the sequence to insert this frame */
14922 list_for_each_entry_reverse(d_buf, &seq_dmabuf->dbuf.list, list) {
14923 temp_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
14924 temp_hdr = (struct fc_frame_header *)temp_dmabuf->hbuf.virt;
14925 /*
14926 * If the frame's sequence count is greater than the frame on
14927 * the list then insert the frame right after this frame
14928 */
eeead811
JS
14929 if (be16_to_cpu(new_hdr->fh_seq_cnt) >
14930 be16_to_cpu(temp_hdr->fh_seq_cnt)) {
4f774513
JS
14931 list_add(&dmabuf->dbuf.list, &temp_dmabuf->dbuf.list);
14932 return seq_dmabuf;
14933 }
14934 }
14935 return NULL;
14936}
14937
6669f9bb
JS
14938/**
14939 * lpfc_sli4_abort_partial_seq - Abort partially assembled unsol sequence
14940 * @vport: pointer to a vitural port
14941 * @dmabuf: pointer to a dmabuf that describes the FC sequence
14942 *
14943 * This function tries to abort from the partially assembed sequence, described
14944 * by the information from basic abbort @dmabuf. It checks to see whether such
14945 * partially assembled sequence held by the driver. If so, it shall free up all
14946 * the frames from the partially assembled sequence.
14947 *
14948 * Return
14949 * true -- if there is matching partially assembled sequence present and all
14950 * the frames freed with the sequence;
14951 * false -- if there is no matching partially assembled sequence present so
14952 * nothing got aborted in the lower layer driver
14953 **/
14954static bool
14955lpfc_sli4_abort_partial_seq(struct lpfc_vport *vport,
14956 struct hbq_dmabuf *dmabuf)
14957{
14958 struct fc_frame_header *new_hdr;
14959 struct fc_frame_header *temp_hdr;
14960 struct lpfc_dmabuf *d_buf, *n_buf, *h_buf;
14961 struct hbq_dmabuf *seq_dmabuf = NULL;
14962
14963 /* Use the hdr_buf to find the sequence that matches this frame */
14964 INIT_LIST_HEAD(&dmabuf->dbuf.list);
14965 INIT_LIST_HEAD(&dmabuf->hbuf.list);
14966 new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
14967 list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
14968 temp_hdr = (struct fc_frame_header *)h_buf->virt;
14969 if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
14970 (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
14971 (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
14972 continue;
14973 /* found a pending sequence that matches this frame */
14974 seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14975 break;
14976 }
14977
14978 /* Free up all the frames from the partially assembled sequence */
14979 if (seq_dmabuf) {
14980 list_for_each_entry_safe(d_buf, n_buf,
14981 &seq_dmabuf->dbuf.list, list) {
14982 list_del_init(&d_buf->list);
14983 lpfc_in_buf_free(vport->phba, d_buf);
14984 }
14985 return true;
14986 }
14987 return false;
14988}
14989
6dd9e31c
JS
14990/**
14991 * lpfc_sli4_abort_ulp_seq - Abort assembled unsol sequence from ulp
14992 * @vport: pointer to a vitural port
14993 * @dmabuf: pointer to a dmabuf that describes the FC sequence
14994 *
14995 * This function tries to abort from the assembed sequence from upper level
14996 * protocol, described by the information from basic abbort @dmabuf. It
14997 * checks to see whether such pending context exists at upper level protocol.
14998 * If so, it shall clean up the pending context.
14999 *
15000 * Return
15001 * true -- if there is matching pending context of the sequence cleaned
15002 * at ulp;
15003 * false -- if there is no matching pending context of the sequence present
15004 * at ulp.
15005 **/
15006static bool
15007lpfc_sli4_abort_ulp_seq(struct lpfc_vport *vport, struct hbq_dmabuf *dmabuf)
15008{
15009 struct lpfc_hba *phba = vport->phba;
15010 int handled;
15011
15012 /* Accepting abort at ulp with SLI4 only */
15013 if (phba->sli_rev < LPFC_SLI_REV4)
15014 return false;
15015
15016 /* Register all caring upper level protocols to attend abort */
15017 handled = lpfc_ct_handle_unsol_abort(phba, dmabuf);
15018 if (handled)
15019 return true;
15020
15021 return false;
15022}
15023
6669f9bb 15024/**
546fc854 15025 * lpfc_sli4_seq_abort_rsp_cmpl - BLS ABORT RSP seq abort iocb complete handler
6669f9bb
JS
15026 * @phba: Pointer to HBA context object.
15027 * @cmd_iocbq: pointer to the command iocbq structure.
15028 * @rsp_iocbq: pointer to the response iocbq structure.
15029 *
546fc854 15030 * This function handles the sequence abort response iocb command complete
6669f9bb
JS
15031 * event. It properly releases the memory allocated to the sequence abort
15032 * accept iocb.
15033 **/
15034static void
546fc854 15035lpfc_sli4_seq_abort_rsp_cmpl(struct lpfc_hba *phba,
6669f9bb
JS
15036 struct lpfc_iocbq *cmd_iocbq,
15037 struct lpfc_iocbq *rsp_iocbq)
15038{
6dd9e31c
JS
15039 struct lpfc_nodelist *ndlp;
15040
15041 if (cmd_iocbq) {
15042 ndlp = (struct lpfc_nodelist *)cmd_iocbq->context1;
15043 lpfc_nlp_put(ndlp);
15044 lpfc_nlp_not_used(ndlp);
6669f9bb 15045 lpfc_sli_release_iocbq(phba, cmd_iocbq);
6dd9e31c 15046 }
6b5151fd
JS
15047
15048 /* Failure means BLS ABORT RSP did not get delivered to remote node*/
15049 if (rsp_iocbq && rsp_iocbq->iocb.ulpStatus)
15050 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15051 "3154 BLS ABORT RSP failed, data: x%x/x%x\n",
15052 rsp_iocbq->iocb.ulpStatus,
15053 rsp_iocbq->iocb.un.ulpWord[4]);
6669f9bb
JS
15054}
15055
6d368e53
JS
15056/**
15057 * lpfc_sli4_xri_inrange - check xri is in range of xris owned by driver.
15058 * @phba: Pointer to HBA context object.
15059 * @xri: xri id in transaction.
15060 *
15061 * This function validates the xri maps to the known range of XRIs allocated an
15062 * used by the driver.
15063 **/
7851fe2c 15064uint16_t
6d368e53
JS
15065lpfc_sli4_xri_inrange(struct lpfc_hba *phba,
15066 uint16_t xri)
15067{
a2fc4aef 15068 uint16_t i;
6d368e53
JS
15069
15070 for (i = 0; i < phba->sli4_hba.max_cfg_param.max_xri; i++) {
15071 if (xri == phba->sli4_hba.xri_ids[i])
15072 return i;
15073 }
15074 return NO_XRI;
15075}
15076
6669f9bb 15077/**
546fc854 15078 * lpfc_sli4_seq_abort_rsp - bls rsp to sequence abort
6669f9bb
JS
15079 * @phba: Pointer to HBA context object.
15080 * @fc_hdr: pointer to a FC frame header.
15081 *
546fc854 15082 * This function sends a basic response to a previous unsol sequence abort
6669f9bb
JS
15083 * event after aborting the sequence handling.
15084 **/
15085static void
6dd9e31c
JS
15086lpfc_sli4_seq_abort_rsp(struct lpfc_vport *vport,
15087 struct fc_frame_header *fc_hdr, bool aborted)
6669f9bb 15088{
6dd9e31c 15089 struct lpfc_hba *phba = vport->phba;
6669f9bb
JS
15090 struct lpfc_iocbq *ctiocb = NULL;
15091 struct lpfc_nodelist *ndlp;
ee0f4fe1 15092 uint16_t oxid, rxid, xri, lxri;
5ffc266e 15093 uint32_t sid, fctl;
6669f9bb 15094 IOCB_t *icmd;
546fc854 15095 int rc;
6669f9bb
JS
15096
15097 if (!lpfc_is_link_up(phba))
15098 return;
15099
15100 sid = sli4_sid_from_fc_hdr(fc_hdr);
15101 oxid = be16_to_cpu(fc_hdr->fh_ox_id);
5ffc266e 15102 rxid = be16_to_cpu(fc_hdr->fh_rx_id);
6669f9bb 15103
6dd9e31c 15104 ndlp = lpfc_findnode_did(vport, sid);
6669f9bb 15105 if (!ndlp) {
6dd9e31c
JS
15106 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
15107 if (!ndlp) {
15108 lpfc_printf_vlog(vport, KERN_WARNING, LOG_ELS,
15109 "1268 Failed to allocate ndlp for "
15110 "oxid:x%x SID:x%x\n", oxid, sid);
15111 return;
15112 }
15113 lpfc_nlp_init(vport, ndlp, sid);
15114 /* Put ndlp onto pport node list */
15115 lpfc_enqueue_node(vport, ndlp);
15116 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
15117 /* re-setup ndlp without removing from node list */
15118 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
15119 if (!ndlp) {
15120 lpfc_printf_vlog(vport, KERN_WARNING, LOG_ELS,
15121 "3275 Failed to active ndlp found "
15122 "for oxid:x%x SID:x%x\n", oxid, sid);
15123 return;
15124 }
6669f9bb
JS
15125 }
15126
546fc854 15127 /* Allocate buffer for rsp iocb */
6669f9bb
JS
15128 ctiocb = lpfc_sli_get_iocbq(phba);
15129 if (!ctiocb)
15130 return;
15131
5ffc266e
JS
15132 /* Extract the F_CTL field from FC_HDR */
15133 fctl = sli4_fctl_from_fc_hdr(fc_hdr);
15134
6669f9bb 15135 icmd = &ctiocb->iocb;
6669f9bb 15136 icmd->un.xseq64.bdl.bdeSize = 0;
5ffc266e 15137 icmd->un.xseq64.bdl.ulpIoTag32 = 0;
6669f9bb
JS
15138 icmd->un.xseq64.w5.hcsw.Dfctl = 0;
15139 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_ACC;
15140 icmd->un.xseq64.w5.hcsw.Type = FC_TYPE_BLS;
15141
15142 /* Fill in the rest of iocb fields */
15143 icmd->ulpCommand = CMD_XMIT_BLS_RSP64_CX;
15144 icmd->ulpBdeCount = 0;
15145 icmd->ulpLe = 1;
15146 icmd->ulpClass = CLASS3;
6d368e53 15147 icmd->ulpContext = phba->sli4_hba.rpi_ids[ndlp->nlp_rpi];
6dd9e31c 15148 ctiocb->context1 = lpfc_nlp_get(ndlp);
6669f9bb 15149
6669f9bb
JS
15150 ctiocb->iocb_cmpl = NULL;
15151 ctiocb->vport = phba->pport;
546fc854 15152 ctiocb->iocb_cmpl = lpfc_sli4_seq_abort_rsp_cmpl;
6d368e53 15153 ctiocb->sli4_lxritag = NO_XRI;
546fc854
JS
15154 ctiocb->sli4_xritag = NO_XRI;
15155
ee0f4fe1
JS
15156 if (fctl & FC_FC_EX_CTX)
15157 /* Exchange responder sent the abort so we
15158 * own the oxid.
15159 */
15160 xri = oxid;
15161 else
15162 xri = rxid;
15163 lxri = lpfc_sli4_xri_inrange(phba, xri);
15164 if (lxri != NO_XRI)
15165 lpfc_set_rrq_active(phba, ndlp, lxri,
15166 (xri == oxid) ? rxid : oxid, 0);
6dd9e31c
JS
15167 /* For BA_ABTS from exchange responder, if the logical xri with
15168 * the oxid maps to the FCP XRI range, the port no longer has
15169 * that exchange context, send a BLS_RJT. Override the IOCB for
15170 * a BA_RJT.
15171 */
15172 if ((fctl & FC_FC_EX_CTX) &&
15173 (lxri > lpfc_sli4_get_els_iocb_cnt(phba))) {
15174 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_RJT;
15175 bf_set(lpfc_vndr_code, &icmd->un.bls_rsp, 0);
15176 bf_set(lpfc_rsn_expln, &icmd->un.bls_rsp, FC_BA_RJT_INV_XID);
15177 bf_set(lpfc_rsn_code, &icmd->un.bls_rsp, FC_BA_RJT_UNABLE);
15178 }
15179
15180 /* If BA_ABTS failed to abort a partially assembled receive sequence,
15181 * the driver no longer has that exchange, send a BLS_RJT. Override
15182 * the IOCB for a BA_RJT.
546fc854 15183 */
6dd9e31c 15184 if (aborted == false) {
546fc854
JS
15185 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_RJT;
15186 bf_set(lpfc_vndr_code, &icmd->un.bls_rsp, 0);
15187 bf_set(lpfc_rsn_expln, &icmd->un.bls_rsp, FC_BA_RJT_INV_XID);
15188 bf_set(lpfc_rsn_code, &icmd->un.bls_rsp, FC_BA_RJT_UNABLE);
15189 }
6669f9bb 15190
5ffc266e
JS
15191 if (fctl & FC_FC_EX_CTX) {
15192 /* ABTS sent by responder to CT exchange, construction
15193 * of BA_ACC will use OX_ID from ABTS for the XRI_TAG
15194 * field and RX_ID from ABTS for RX_ID field.
15195 */
546fc854 15196 bf_set(lpfc_abts_orig, &icmd->un.bls_rsp, LPFC_ABTS_UNSOL_RSP);
5ffc266e
JS
15197 } else {
15198 /* ABTS sent by initiator to CT exchange, construction
15199 * of BA_ACC will need to allocate a new XRI as for the
f09c3acc 15200 * XRI_TAG field.
5ffc266e 15201 */
546fc854 15202 bf_set(lpfc_abts_orig, &icmd->un.bls_rsp, LPFC_ABTS_UNSOL_INT);
5ffc266e 15203 }
f09c3acc 15204 bf_set(lpfc_abts_rxid, &icmd->un.bls_rsp, rxid);
546fc854 15205 bf_set(lpfc_abts_oxid, &icmd->un.bls_rsp, oxid);
5ffc266e 15206
546fc854 15207 /* Xmit CT abts response on exchange <xid> */
6dd9e31c
JS
15208 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
15209 "1200 Send BLS cmd x%x on oxid x%x Data: x%x\n",
15210 icmd->un.xseq64.w5.hcsw.Rctl, oxid, phba->link_state);
546fc854
JS
15211
15212 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, ctiocb, 0);
15213 if (rc == IOCB_ERROR) {
6dd9e31c
JS
15214 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
15215 "2925 Failed to issue CT ABTS RSP x%x on "
15216 "xri x%x, Data x%x\n",
15217 icmd->un.xseq64.w5.hcsw.Rctl, oxid,
15218 phba->link_state);
15219 lpfc_nlp_put(ndlp);
15220 ctiocb->context1 = NULL;
546fc854
JS
15221 lpfc_sli_release_iocbq(phba, ctiocb);
15222 }
6669f9bb
JS
15223}
15224
15225/**
15226 * lpfc_sli4_handle_unsol_abort - Handle sli-4 unsolicited abort event
15227 * @vport: Pointer to the vport on which this sequence was received
15228 * @dmabuf: pointer to a dmabuf that describes the FC sequence
15229 *
15230 * This function handles an SLI-4 unsolicited abort event. If the unsolicited
15231 * receive sequence is only partially assembed by the driver, it shall abort
15232 * the partially assembled frames for the sequence. Otherwise, if the
15233 * unsolicited receive sequence has been completely assembled and passed to
15234 * the Upper Layer Protocol (UPL), it then mark the per oxid status for the
15235 * unsolicited sequence has been aborted. After that, it will issue a basic
15236 * accept to accept the abort.
15237 **/
5d8b8167 15238static void
6669f9bb
JS
15239lpfc_sli4_handle_unsol_abort(struct lpfc_vport *vport,
15240 struct hbq_dmabuf *dmabuf)
15241{
15242 struct lpfc_hba *phba = vport->phba;
15243 struct fc_frame_header fc_hdr;
5ffc266e 15244 uint32_t fctl;
6dd9e31c 15245 bool aborted;
6669f9bb 15246
6669f9bb
JS
15247 /* Make a copy of fc_hdr before the dmabuf being released */
15248 memcpy(&fc_hdr, dmabuf->hbuf.virt, sizeof(struct fc_frame_header));
5ffc266e 15249 fctl = sli4_fctl_from_fc_hdr(&fc_hdr);
6669f9bb 15250
5ffc266e 15251 if (fctl & FC_FC_EX_CTX) {
6dd9e31c
JS
15252 /* ABTS by responder to exchange, no cleanup needed */
15253 aborted = true;
5ffc266e 15254 } else {
6dd9e31c
JS
15255 /* ABTS by initiator to exchange, need to do cleanup */
15256 aborted = lpfc_sli4_abort_partial_seq(vport, dmabuf);
15257 if (aborted == false)
15258 aborted = lpfc_sli4_abort_ulp_seq(vport, dmabuf);
5ffc266e 15259 }
6dd9e31c
JS
15260 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15261
15262 /* Respond with BA_ACC or BA_RJT accordingly */
15263 lpfc_sli4_seq_abort_rsp(vport, &fc_hdr, aborted);
6669f9bb
JS
15264}
15265
4f774513
JS
15266/**
15267 * lpfc_seq_complete - Indicates if a sequence is complete
15268 * @dmabuf: pointer to a dmabuf that describes the FC sequence
15269 *
15270 * This function checks the sequence, starting with the frame described by
15271 * @dmabuf, to see if all the frames associated with this sequence are present.
15272 * the frames associated with this sequence are linked to the @dmabuf using the
15273 * dbuf list. This function looks for two major things. 1) That the first frame
15274 * has a sequence count of zero. 2) There is a frame with last frame of sequence
15275 * set. 3) That there are no holes in the sequence count. The function will
15276 * return 1 when the sequence is complete, otherwise it will return 0.
15277 **/
15278static int
15279lpfc_seq_complete(struct hbq_dmabuf *dmabuf)
15280{
15281 struct fc_frame_header *hdr;
15282 struct lpfc_dmabuf *d_buf;
15283 struct hbq_dmabuf *seq_dmabuf;
15284 uint32_t fctl;
15285 int seq_count = 0;
15286
15287 hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
15288 /* make sure first fame of sequence has a sequence count of zero */
15289 if (hdr->fh_seq_cnt != seq_count)
15290 return 0;
15291 fctl = (hdr->fh_f_ctl[0] << 16 |
15292 hdr->fh_f_ctl[1] << 8 |
15293 hdr->fh_f_ctl[2]);
15294 /* If last frame of sequence we can return success. */
15295 if (fctl & FC_FC_END_SEQ)
15296 return 1;
15297 list_for_each_entry(d_buf, &dmabuf->dbuf.list, list) {
15298 seq_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
15299 hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
15300 /* If there is a hole in the sequence count then fail. */
eeead811 15301 if (++seq_count != be16_to_cpu(hdr->fh_seq_cnt))
4f774513
JS
15302 return 0;
15303 fctl = (hdr->fh_f_ctl[0] << 16 |
15304 hdr->fh_f_ctl[1] << 8 |
15305 hdr->fh_f_ctl[2]);
15306 /* If last frame of sequence we can return success. */
15307 if (fctl & FC_FC_END_SEQ)
15308 return 1;
15309 }
15310 return 0;
15311}
15312
15313/**
15314 * lpfc_prep_seq - Prep sequence for ULP processing
15315 * @vport: Pointer to the vport on which this sequence was received
15316 * @dmabuf: pointer to a dmabuf that describes the FC sequence
15317 *
15318 * This function takes a sequence, described by a list of frames, and creates
15319 * a list of iocbq structures to describe the sequence. This iocbq list will be
15320 * used to issue to the generic unsolicited sequence handler. This routine
15321 * returns a pointer to the first iocbq in the list. If the function is unable
15322 * to allocate an iocbq then it throw out the received frames that were not
15323 * able to be described and return a pointer to the first iocbq. If unable to
15324 * allocate any iocbqs (including the first) this function will return NULL.
15325 **/
15326static struct lpfc_iocbq *
15327lpfc_prep_seq(struct lpfc_vport *vport, struct hbq_dmabuf *seq_dmabuf)
15328{
7851fe2c 15329 struct hbq_dmabuf *hbq_buf;
4f774513
JS
15330 struct lpfc_dmabuf *d_buf, *n_buf;
15331 struct lpfc_iocbq *first_iocbq, *iocbq;
15332 struct fc_frame_header *fc_hdr;
15333 uint32_t sid;
7851fe2c 15334 uint32_t len, tot_len;
eeead811 15335 struct ulp_bde64 *pbde;
4f774513
JS
15336
15337 fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
15338 /* remove from receive buffer list */
15339 list_del_init(&seq_dmabuf->hbuf.list);
45ed1190 15340 lpfc_update_rcv_time_stamp(vport);
4f774513 15341 /* get the Remote Port's SID */
6669f9bb 15342 sid = sli4_sid_from_fc_hdr(fc_hdr);
7851fe2c 15343 tot_len = 0;
4f774513
JS
15344 /* Get an iocbq struct to fill in. */
15345 first_iocbq = lpfc_sli_get_iocbq(vport->phba);
15346 if (first_iocbq) {
15347 /* Initialize the first IOCB. */
8fa38513 15348 first_iocbq->iocb.unsli3.rcvsli3.acc_len = 0;
4f774513 15349 first_iocbq->iocb.ulpStatus = IOSTAT_SUCCESS;
939723a4
JS
15350
15351 /* Check FC Header to see what TYPE of frame we are rcv'ing */
15352 if (sli4_type_from_fc_hdr(fc_hdr) == FC_TYPE_ELS) {
15353 first_iocbq->iocb.ulpCommand = CMD_IOCB_RCV_ELS64_CX;
15354 first_iocbq->iocb.un.rcvels.parmRo =
15355 sli4_did_from_fc_hdr(fc_hdr);
15356 first_iocbq->iocb.ulpPU = PARM_NPIV_DID;
15357 } else
15358 first_iocbq->iocb.ulpCommand = CMD_IOCB_RCV_SEQ64_CX;
7851fe2c
JS
15359 first_iocbq->iocb.ulpContext = NO_XRI;
15360 first_iocbq->iocb.unsli3.rcvsli3.ox_id =
15361 be16_to_cpu(fc_hdr->fh_ox_id);
15362 /* iocbq is prepped for internal consumption. Physical vpi. */
15363 first_iocbq->iocb.unsli3.rcvsli3.vpi =
15364 vport->phba->vpi_ids[vport->vpi];
4f774513 15365 /* put the first buffer into the first IOCBq */
48a5a664
JS
15366 tot_len = bf_get(lpfc_rcqe_length,
15367 &seq_dmabuf->cq_event.cqe.rcqe_cmpl);
15368
4f774513
JS
15369 first_iocbq->context2 = &seq_dmabuf->dbuf;
15370 first_iocbq->context3 = NULL;
15371 first_iocbq->iocb.ulpBdeCount = 1;
48a5a664
JS
15372 if (tot_len > LPFC_DATA_BUF_SIZE)
15373 first_iocbq->iocb.un.cont64[0].tus.f.bdeSize =
4f774513 15374 LPFC_DATA_BUF_SIZE;
48a5a664
JS
15375 else
15376 first_iocbq->iocb.un.cont64[0].tus.f.bdeSize = tot_len;
15377
4f774513 15378 first_iocbq->iocb.un.rcvels.remoteID = sid;
48a5a664 15379
7851fe2c 15380 first_iocbq->iocb.unsli3.rcvsli3.acc_len = tot_len;
4f774513
JS
15381 }
15382 iocbq = first_iocbq;
15383 /*
15384 * Each IOCBq can have two Buffers assigned, so go through the list
15385 * of buffers for this sequence and save two buffers in each IOCBq
15386 */
15387 list_for_each_entry_safe(d_buf, n_buf, &seq_dmabuf->dbuf.list, list) {
15388 if (!iocbq) {
15389 lpfc_in_buf_free(vport->phba, d_buf);
15390 continue;
15391 }
15392 if (!iocbq->context3) {
15393 iocbq->context3 = d_buf;
15394 iocbq->iocb.ulpBdeCount++;
7851fe2c
JS
15395 /* We need to get the size out of the right CQE */
15396 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
15397 len = bf_get(lpfc_rcqe_length,
15398 &hbq_buf->cq_event.cqe.rcqe_cmpl);
48a5a664
JS
15399 pbde = (struct ulp_bde64 *)
15400 &iocbq->iocb.unsli3.sli3Words[4];
15401 if (len > LPFC_DATA_BUF_SIZE)
15402 pbde->tus.f.bdeSize = LPFC_DATA_BUF_SIZE;
15403 else
15404 pbde->tus.f.bdeSize = len;
15405
7851fe2c
JS
15406 iocbq->iocb.unsli3.rcvsli3.acc_len += len;
15407 tot_len += len;
4f774513
JS
15408 } else {
15409 iocbq = lpfc_sli_get_iocbq(vport->phba);
15410 if (!iocbq) {
15411 if (first_iocbq) {
15412 first_iocbq->iocb.ulpStatus =
15413 IOSTAT_FCP_RSP_ERROR;
15414 first_iocbq->iocb.un.ulpWord[4] =
15415 IOERR_NO_RESOURCES;
15416 }
15417 lpfc_in_buf_free(vport->phba, d_buf);
15418 continue;
15419 }
48a5a664
JS
15420 /* We need to get the size out of the right CQE */
15421 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
15422 len = bf_get(lpfc_rcqe_length,
15423 &hbq_buf->cq_event.cqe.rcqe_cmpl);
4f774513
JS
15424 iocbq->context2 = d_buf;
15425 iocbq->context3 = NULL;
15426 iocbq->iocb.ulpBdeCount = 1;
48a5a664
JS
15427 if (len > LPFC_DATA_BUF_SIZE)
15428 iocbq->iocb.un.cont64[0].tus.f.bdeSize =
4f774513 15429 LPFC_DATA_BUF_SIZE;
48a5a664
JS
15430 else
15431 iocbq->iocb.un.cont64[0].tus.f.bdeSize = len;
7851fe2c 15432
7851fe2c
JS
15433 tot_len += len;
15434 iocbq->iocb.unsli3.rcvsli3.acc_len = tot_len;
15435
4f774513
JS
15436 iocbq->iocb.un.rcvels.remoteID = sid;
15437 list_add_tail(&iocbq->list, &first_iocbq->list);
15438 }
15439 }
15440 return first_iocbq;
15441}
15442
6669f9bb
JS
15443static void
15444lpfc_sli4_send_seq_to_ulp(struct lpfc_vport *vport,
15445 struct hbq_dmabuf *seq_dmabuf)
15446{
15447 struct fc_frame_header *fc_hdr;
15448 struct lpfc_iocbq *iocbq, *curr_iocb, *next_iocb;
15449 struct lpfc_hba *phba = vport->phba;
15450
15451 fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
15452 iocbq = lpfc_prep_seq(vport, seq_dmabuf);
15453 if (!iocbq) {
15454 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15455 "2707 Ring %d handler: Failed to allocate "
15456 "iocb Rctl x%x Type x%x received\n",
15457 LPFC_ELS_RING,
15458 fc_hdr->fh_r_ctl, fc_hdr->fh_type);
15459 return;
15460 }
15461 if (!lpfc_complete_unsol_iocb(phba,
15462 &phba->sli.ring[LPFC_ELS_RING],
15463 iocbq, fc_hdr->fh_r_ctl,
15464 fc_hdr->fh_type))
6d368e53 15465 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
6669f9bb
JS
15466 "2540 Ring %d handler: unexpected Rctl "
15467 "x%x Type x%x received\n",
15468 LPFC_ELS_RING,
15469 fc_hdr->fh_r_ctl, fc_hdr->fh_type);
15470
15471 /* Free iocb created in lpfc_prep_seq */
15472 list_for_each_entry_safe(curr_iocb, next_iocb,
15473 &iocbq->list, list) {
15474 list_del_init(&curr_iocb->list);
15475 lpfc_sli_release_iocbq(phba, curr_iocb);
15476 }
15477 lpfc_sli_release_iocbq(phba, iocbq);
15478}
15479
4f774513
JS
15480/**
15481 * lpfc_sli4_handle_received_buffer - Handle received buffers from firmware
15482 * @phba: Pointer to HBA context object.
15483 *
15484 * This function is called with no lock held. This function processes all
15485 * the received buffers and gives it to upper layers when a received buffer
15486 * indicates that it is the final frame in the sequence. The interrupt
15487 * service routine processes received buffers at interrupt contexts and adds
15488 * received dma buffers to the rb_pend_list queue and signals the worker thread.
15489 * Worker thread calls lpfc_sli4_handle_received_buffer, which will call the
15490 * appropriate receive function when the final frame in a sequence is received.
15491 **/
4d9ab994
JS
15492void
15493lpfc_sli4_handle_received_buffer(struct lpfc_hba *phba,
15494 struct hbq_dmabuf *dmabuf)
4f774513 15495{
4d9ab994 15496 struct hbq_dmabuf *seq_dmabuf;
4f774513
JS
15497 struct fc_frame_header *fc_hdr;
15498 struct lpfc_vport *vport;
15499 uint32_t fcfi;
939723a4 15500 uint32_t did;
4f774513 15501
4f774513 15502 /* Process each received buffer */
4d9ab994
JS
15503 fc_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
15504 /* check to see if this a valid type of frame */
15505 if (lpfc_fc_frame_check(phba, fc_hdr)) {
15506 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15507 return;
15508 }
7851fe2c
JS
15509 if ((bf_get(lpfc_cqe_code,
15510 &dmabuf->cq_event.cqe.rcqe_cmpl) == CQE_CODE_RECEIVE_V1))
15511 fcfi = bf_get(lpfc_rcqe_fcf_id_v1,
15512 &dmabuf->cq_event.cqe.rcqe_cmpl);
15513 else
15514 fcfi = bf_get(lpfc_rcqe_fcf_id,
15515 &dmabuf->cq_event.cqe.rcqe_cmpl);
939723a4 15516
4d9ab994 15517 vport = lpfc_fc_frame_to_vport(phba, fc_hdr, fcfi);
939723a4 15518 if (!vport) {
4d9ab994
JS
15519 /* throw out the frame */
15520 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15521 return;
15522 }
939723a4
JS
15523
15524 /* d_id this frame is directed to */
15525 did = sli4_did_from_fc_hdr(fc_hdr);
15526
15527 /* vport is registered unless we rcv a FLOGI directed to Fabric_DID */
15528 if (!(vport->vpi_state & LPFC_VPI_REGISTERED) &&
15529 (did != Fabric_DID)) {
15530 /*
15531 * Throw out the frame if we are not pt2pt.
15532 * The pt2pt protocol allows for discovery frames
15533 * to be received without a registered VPI.
15534 */
15535 if (!(vport->fc_flag & FC_PT2PT) ||
15536 (phba->link_state == LPFC_HBA_READY)) {
15537 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15538 return;
15539 }
15540 }
15541
6669f9bb
JS
15542 /* Handle the basic abort sequence (BA_ABTS) event */
15543 if (fc_hdr->fh_r_ctl == FC_RCTL_BA_ABTS) {
15544 lpfc_sli4_handle_unsol_abort(vport, dmabuf);
15545 return;
15546 }
15547
4d9ab994
JS
15548 /* Link this frame */
15549 seq_dmabuf = lpfc_fc_frame_add(vport, dmabuf);
15550 if (!seq_dmabuf) {
15551 /* unable to add frame to vport - throw it out */
15552 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15553 return;
15554 }
15555 /* If not last frame in sequence continue processing frames. */
def9c7a9 15556 if (!lpfc_seq_complete(seq_dmabuf))
4d9ab994 15557 return;
def9c7a9 15558
6669f9bb
JS
15559 /* Send the complete sequence to the upper layer protocol */
15560 lpfc_sli4_send_seq_to_ulp(vport, seq_dmabuf);
4f774513 15561}
6fb120a7
JS
15562
15563/**
15564 * lpfc_sli4_post_all_rpi_hdrs - Post the rpi header memory region to the port
15565 * @phba: pointer to lpfc hba data structure.
15566 *
15567 * This routine is invoked to post rpi header templates to the
15568 * HBA consistent with the SLI-4 interface spec. This routine
49198b37
JS
15569 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
15570 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
6fb120a7
JS
15571 *
15572 * This routine does not require any locks. It's usage is expected
15573 * to be driver load or reset recovery when the driver is
15574 * sequential.
15575 *
15576 * Return codes
af901ca1 15577 * 0 - successful
d439d286 15578 * -EIO - The mailbox failed to complete successfully.
6fb120a7
JS
15579 * When this error occurs, the driver is not guaranteed
15580 * to have any rpi regions posted to the device and
15581 * must either attempt to repost the regions or take a
15582 * fatal error.
15583 **/
15584int
15585lpfc_sli4_post_all_rpi_hdrs(struct lpfc_hba *phba)
15586{
15587 struct lpfc_rpi_hdr *rpi_page;
15588 uint32_t rc = 0;
6d368e53
JS
15589 uint16_t lrpi = 0;
15590
15591 /* SLI4 ports that support extents do not require RPI headers. */
15592 if (!phba->sli4_hba.rpi_hdrs_in_use)
15593 goto exit;
15594 if (phba->sli4_hba.extents_in_use)
15595 return -EIO;
6fb120a7 15596
6fb120a7 15597 list_for_each_entry(rpi_page, &phba->sli4_hba.lpfc_rpi_hdr_list, list) {
6d368e53
JS
15598 /*
15599 * Assign the rpi headers a physical rpi only if the driver
15600 * has not initialized those resources. A port reset only
15601 * needs the headers posted.
15602 */
15603 if (bf_get(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags) !=
15604 LPFC_RPI_RSRC_RDY)
15605 rpi_page->start_rpi = phba->sli4_hba.rpi_ids[lrpi];
15606
6fb120a7
JS
15607 rc = lpfc_sli4_post_rpi_hdr(phba, rpi_page);
15608 if (rc != MBX_SUCCESS) {
15609 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15610 "2008 Error %d posting all rpi "
15611 "headers\n", rc);
15612 rc = -EIO;
15613 break;
15614 }
15615 }
15616
6d368e53
JS
15617 exit:
15618 bf_set(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags,
15619 LPFC_RPI_RSRC_RDY);
6fb120a7
JS
15620 return rc;
15621}
15622
15623/**
15624 * lpfc_sli4_post_rpi_hdr - Post an rpi header memory region to the port
15625 * @phba: pointer to lpfc hba data structure.
15626 * @rpi_page: pointer to the rpi memory region.
15627 *
15628 * This routine is invoked to post a single rpi header to the
15629 * HBA consistent with the SLI-4 interface spec. This memory region
15630 * maps up to 64 rpi context regions.
15631 *
15632 * Return codes
af901ca1 15633 * 0 - successful
d439d286
JS
15634 * -ENOMEM - No available memory
15635 * -EIO - The mailbox failed to complete successfully.
6fb120a7
JS
15636 **/
15637int
15638lpfc_sli4_post_rpi_hdr(struct lpfc_hba *phba, struct lpfc_rpi_hdr *rpi_page)
15639{
15640 LPFC_MBOXQ_t *mboxq;
15641 struct lpfc_mbx_post_hdr_tmpl *hdr_tmpl;
15642 uint32_t rc = 0;
6fb120a7
JS
15643 uint32_t shdr_status, shdr_add_status;
15644 union lpfc_sli4_cfg_shdr *shdr;
15645
6d368e53
JS
15646 /* SLI4 ports that support extents do not require RPI headers. */
15647 if (!phba->sli4_hba.rpi_hdrs_in_use)
15648 return rc;
15649 if (phba->sli4_hba.extents_in_use)
15650 return -EIO;
15651
6fb120a7
JS
15652 /* The port is notified of the header region via a mailbox command. */
15653 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15654 if (!mboxq) {
15655 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15656 "2001 Unable to allocate memory for issuing "
15657 "SLI_CONFIG_SPECIAL mailbox command\n");
15658 return -ENOMEM;
15659 }
15660
15661 /* Post all rpi memory regions to the port. */
15662 hdr_tmpl = &mboxq->u.mqe.un.hdr_tmpl;
6fb120a7
JS
15663 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
15664 LPFC_MBOX_OPCODE_FCOE_POST_HDR_TEMPLATE,
15665 sizeof(struct lpfc_mbx_post_hdr_tmpl) -
fedd3b7b
JS
15666 sizeof(struct lpfc_sli4_cfg_mhdr),
15667 LPFC_SLI4_MBX_EMBED);
6d368e53
JS
15668
15669
15670 /* Post the physical rpi to the port for this rpi header. */
6fb120a7
JS
15671 bf_set(lpfc_mbx_post_hdr_tmpl_rpi_offset, hdr_tmpl,
15672 rpi_page->start_rpi);
6d368e53
JS
15673 bf_set(lpfc_mbx_post_hdr_tmpl_page_cnt,
15674 hdr_tmpl, rpi_page->page_count);
15675
6fb120a7
JS
15676 hdr_tmpl->rpi_paddr_lo = putPaddrLow(rpi_page->dmabuf->phys);
15677 hdr_tmpl->rpi_paddr_hi = putPaddrHigh(rpi_page->dmabuf->phys);
f1126688 15678 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6fb120a7
JS
15679 shdr = (union lpfc_sli4_cfg_shdr *) &hdr_tmpl->header.cfg_shdr;
15680 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
15681 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
15682 if (rc != MBX_TIMEOUT)
15683 mempool_free(mboxq, phba->mbox_mem_pool);
15684 if (shdr_status || shdr_add_status || rc) {
15685 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15686 "2514 POST_RPI_HDR mailbox failed with "
15687 "status x%x add_status x%x, mbx status x%x\n",
15688 shdr_status, shdr_add_status, rc);
15689 rc = -ENXIO;
15690 }
15691 return rc;
15692}
15693
15694/**
15695 * lpfc_sli4_alloc_rpi - Get an available rpi in the device's range
15696 * @phba: pointer to lpfc hba data structure.
15697 *
15698 * This routine is invoked to post rpi header templates to the
15699 * HBA consistent with the SLI-4 interface spec. This routine
49198b37
JS
15700 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
15701 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
6fb120a7
JS
15702 *
15703 * Returns
af901ca1 15704 * A nonzero rpi defined as rpi_base <= rpi < max_rpi if successful
6fb120a7
JS
15705 * LPFC_RPI_ALLOC_ERROR if no rpis are available.
15706 **/
15707int
15708lpfc_sli4_alloc_rpi(struct lpfc_hba *phba)
15709{
6d368e53
JS
15710 unsigned long rpi;
15711 uint16_t max_rpi, rpi_limit;
15712 uint16_t rpi_remaining, lrpi = 0;
6fb120a7 15713 struct lpfc_rpi_hdr *rpi_hdr;
4902b381 15714 unsigned long iflag;
6fb120a7 15715
6fb120a7 15716 /*
6d368e53
JS
15717 * Fetch the next logical rpi. Because this index is logical,
15718 * the driver starts at 0 each time.
6fb120a7 15719 */
4902b381 15720 spin_lock_irqsave(&phba->hbalock, iflag);
be6bb941
JS
15721 max_rpi = phba->sli4_hba.max_cfg_param.max_rpi;
15722 rpi_limit = phba->sli4_hba.next_rpi;
15723
6d368e53
JS
15724 rpi = find_next_zero_bit(phba->sli4_hba.rpi_bmask, rpi_limit, 0);
15725 if (rpi >= rpi_limit)
6fb120a7
JS
15726 rpi = LPFC_RPI_ALLOC_ERROR;
15727 else {
15728 set_bit(rpi, phba->sli4_hba.rpi_bmask);
15729 phba->sli4_hba.max_cfg_param.rpi_used++;
15730 phba->sli4_hba.rpi_count++;
15731 }
be6bb941
JS
15732 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
15733 "0001 rpi:%x max:%x lim:%x\n",
15734 (int) rpi, max_rpi, rpi_limit);
6fb120a7
JS
15735
15736 /*
15737 * Don't try to allocate more rpi header regions if the device limit
6d368e53 15738 * has been exhausted.
6fb120a7
JS
15739 */
15740 if ((rpi == LPFC_RPI_ALLOC_ERROR) &&
15741 (phba->sli4_hba.rpi_count >= max_rpi)) {
4902b381 15742 spin_unlock_irqrestore(&phba->hbalock, iflag);
6fb120a7
JS
15743 return rpi;
15744 }
15745
6d368e53
JS
15746 /*
15747 * RPI header postings are not required for SLI4 ports capable of
15748 * extents.
15749 */
15750 if (!phba->sli4_hba.rpi_hdrs_in_use) {
4902b381 15751 spin_unlock_irqrestore(&phba->hbalock, iflag);
6d368e53
JS
15752 return rpi;
15753 }
15754
6fb120a7
JS
15755 /*
15756 * If the driver is running low on rpi resources, allocate another
15757 * page now. Note that the next_rpi value is used because
15758 * it represents how many are actually in use whereas max_rpi notes
15759 * how many are supported max by the device.
15760 */
6d368e53 15761 rpi_remaining = phba->sli4_hba.next_rpi - phba->sli4_hba.rpi_count;
4902b381 15762 spin_unlock_irqrestore(&phba->hbalock, iflag);
6fb120a7
JS
15763 if (rpi_remaining < LPFC_RPI_LOW_WATER_MARK) {
15764 rpi_hdr = lpfc_sli4_create_rpi_hdr(phba);
15765 if (!rpi_hdr) {
15766 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15767 "2002 Error Could not grow rpi "
15768 "count\n");
15769 } else {
6d368e53
JS
15770 lrpi = rpi_hdr->start_rpi;
15771 rpi_hdr->start_rpi = phba->sli4_hba.rpi_ids[lrpi];
6fb120a7
JS
15772 lpfc_sli4_post_rpi_hdr(phba, rpi_hdr);
15773 }
15774 }
15775
15776 return rpi;
15777}
15778
d7c47992
JS
15779/**
15780 * lpfc_sli4_free_rpi - Release an rpi for reuse.
15781 * @phba: pointer to lpfc hba data structure.
15782 *
15783 * This routine is invoked to release an rpi to the pool of
15784 * available rpis maintained by the driver.
15785 **/
5d8b8167 15786static void
d7c47992
JS
15787__lpfc_sli4_free_rpi(struct lpfc_hba *phba, int rpi)
15788{
15789 if (test_and_clear_bit(rpi, phba->sli4_hba.rpi_bmask)) {
15790 phba->sli4_hba.rpi_count--;
15791 phba->sli4_hba.max_cfg_param.rpi_used--;
15792 }
15793}
15794
6fb120a7
JS
15795/**
15796 * lpfc_sli4_free_rpi - Release an rpi for reuse.
15797 * @phba: pointer to lpfc hba data structure.
15798 *
15799 * This routine is invoked to release an rpi to the pool of
15800 * available rpis maintained by the driver.
15801 **/
15802void
15803lpfc_sli4_free_rpi(struct lpfc_hba *phba, int rpi)
15804{
15805 spin_lock_irq(&phba->hbalock);
d7c47992 15806 __lpfc_sli4_free_rpi(phba, rpi);
6fb120a7
JS
15807 spin_unlock_irq(&phba->hbalock);
15808}
15809
15810/**
15811 * lpfc_sli4_remove_rpis - Remove the rpi bitmask region
15812 * @phba: pointer to lpfc hba data structure.
15813 *
15814 * This routine is invoked to remove the memory region that
15815 * provided rpi via a bitmask.
15816 **/
15817void
15818lpfc_sli4_remove_rpis(struct lpfc_hba *phba)
15819{
15820 kfree(phba->sli4_hba.rpi_bmask);
6d368e53
JS
15821 kfree(phba->sli4_hba.rpi_ids);
15822 bf_set(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
6fb120a7
JS
15823}
15824
15825/**
15826 * lpfc_sli4_resume_rpi - Remove the rpi bitmask region
15827 * @phba: pointer to lpfc hba data structure.
15828 *
15829 * This routine is invoked to remove the memory region that
15830 * provided rpi via a bitmask.
15831 **/
15832int
6b5151fd
JS
15833lpfc_sli4_resume_rpi(struct lpfc_nodelist *ndlp,
15834 void (*cmpl)(struct lpfc_hba *, LPFC_MBOXQ_t *), void *arg)
6fb120a7
JS
15835{
15836 LPFC_MBOXQ_t *mboxq;
15837 struct lpfc_hba *phba = ndlp->phba;
15838 int rc;
15839
15840 /* The port is notified of the header region via a mailbox command. */
15841 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15842 if (!mboxq)
15843 return -ENOMEM;
15844
15845 /* Post all rpi memory regions to the port. */
15846 lpfc_resume_rpi(mboxq, ndlp);
6b5151fd
JS
15847 if (cmpl) {
15848 mboxq->mbox_cmpl = cmpl;
15849 mboxq->context1 = arg;
15850 mboxq->context2 = ndlp;
72859909
JS
15851 } else
15852 mboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
6b5151fd 15853 mboxq->vport = ndlp->vport;
6fb120a7
JS
15854 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
15855 if (rc == MBX_NOT_FINISHED) {
15856 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15857 "2010 Resume RPI Mailbox failed "
15858 "status %d, mbxStatus x%x\n", rc,
15859 bf_get(lpfc_mqe_status, &mboxq->u.mqe));
15860 mempool_free(mboxq, phba->mbox_mem_pool);
15861 return -EIO;
15862 }
15863 return 0;
15864}
15865
15866/**
15867 * lpfc_sli4_init_vpi - Initialize a vpi with the port
76a95d75 15868 * @vport: Pointer to the vport for which the vpi is being initialized
6fb120a7 15869 *
76a95d75 15870 * This routine is invoked to activate a vpi with the port.
6fb120a7
JS
15871 *
15872 * Returns:
15873 * 0 success
15874 * -Evalue otherwise
15875 **/
15876int
76a95d75 15877lpfc_sli4_init_vpi(struct lpfc_vport *vport)
6fb120a7
JS
15878{
15879 LPFC_MBOXQ_t *mboxq;
15880 int rc = 0;
6a9c52cf 15881 int retval = MBX_SUCCESS;
6fb120a7 15882 uint32_t mbox_tmo;
76a95d75 15883 struct lpfc_hba *phba = vport->phba;
6fb120a7
JS
15884 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15885 if (!mboxq)
15886 return -ENOMEM;
76a95d75 15887 lpfc_init_vpi(phba, mboxq, vport->vpi);
a183a15f 15888 mbox_tmo = lpfc_mbox_tmo_val(phba, mboxq);
6fb120a7 15889 rc = lpfc_sli_issue_mbox_wait(phba, mboxq, mbox_tmo);
6fb120a7 15890 if (rc != MBX_SUCCESS) {
76a95d75 15891 lpfc_printf_vlog(vport, KERN_ERR, LOG_SLI,
6fb120a7
JS
15892 "2022 INIT VPI Mailbox failed "
15893 "status %d, mbxStatus x%x\n", rc,
15894 bf_get(lpfc_mqe_status, &mboxq->u.mqe));
6a9c52cf 15895 retval = -EIO;
6fb120a7 15896 }
6a9c52cf 15897 if (rc != MBX_TIMEOUT)
76a95d75 15898 mempool_free(mboxq, vport->phba->mbox_mem_pool);
6a9c52cf
JS
15899
15900 return retval;
6fb120a7
JS
15901}
15902
15903/**
15904 * lpfc_mbx_cmpl_add_fcf_record - add fcf mbox completion handler.
15905 * @phba: pointer to lpfc hba data structure.
15906 * @mboxq: Pointer to mailbox object.
15907 *
15908 * This routine is invoked to manually add a single FCF record. The caller
15909 * must pass a completely initialized FCF_Record. This routine takes
15910 * care of the nonembedded mailbox operations.
15911 **/
15912static void
15913lpfc_mbx_cmpl_add_fcf_record(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
15914{
15915 void *virt_addr;
15916 union lpfc_sli4_cfg_shdr *shdr;
15917 uint32_t shdr_status, shdr_add_status;
15918
15919 virt_addr = mboxq->sge_array->addr[0];
15920 /* The IOCTL status is embedded in the mailbox subheader. */
15921 shdr = (union lpfc_sli4_cfg_shdr *) virt_addr;
15922 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
15923 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
15924
15925 if ((shdr_status || shdr_add_status) &&
15926 (shdr_status != STATUS_FCF_IN_USE))
15927 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15928 "2558 ADD_FCF_RECORD mailbox failed with "
15929 "status x%x add_status x%x\n",
15930 shdr_status, shdr_add_status);
15931
15932 lpfc_sli4_mbox_cmd_free(phba, mboxq);
15933}
15934
15935/**
15936 * lpfc_sli4_add_fcf_record - Manually add an FCF Record.
15937 * @phba: pointer to lpfc hba data structure.
15938 * @fcf_record: pointer to the initialized fcf record to add.
15939 *
15940 * This routine is invoked to manually add a single FCF record. The caller
15941 * must pass a completely initialized FCF_Record. This routine takes
15942 * care of the nonembedded mailbox operations.
15943 **/
15944int
15945lpfc_sli4_add_fcf_record(struct lpfc_hba *phba, struct fcf_record *fcf_record)
15946{
15947 int rc = 0;
15948 LPFC_MBOXQ_t *mboxq;
15949 uint8_t *bytep;
15950 void *virt_addr;
15951 dma_addr_t phys_addr;
15952 struct lpfc_mbx_sge sge;
15953 uint32_t alloc_len, req_len;
15954 uint32_t fcfindex;
15955
15956 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15957 if (!mboxq) {
15958 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15959 "2009 Failed to allocate mbox for ADD_FCF cmd\n");
15960 return -ENOMEM;
15961 }
15962
15963 req_len = sizeof(struct fcf_record) + sizeof(union lpfc_sli4_cfg_shdr) +
15964 sizeof(uint32_t);
15965
15966 /* Allocate DMA memory and set up the non-embedded mailbox command */
15967 alloc_len = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
15968 LPFC_MBOX_OPCODE_FCOE_ADD_FCF,
15969 req_len, LPFC_SLI4_MBX_NEMBED);
15970 if (alloc_len < req_len) {
15971 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15972 "2523 Allocated DMA memory size (x%x) is "
15973 "less than the requested DMA memory "
15974 "size (x%x)\n", alloc_len, req_len);
15975 lpfc_sli4_mbox_cmd_free(phba, mboxq);
15976 return -ENOMEM;
15977 }
15978
15979 /*
15980 * Get the first SGE entry from the non-embedded DMA memory. This
15981 * routine only uses a single SGE.
15982 */
15983 lpfc_sli4_mbx_sge_get(mboxq, 0, &sge);
15984 phys_addr = getPaddr(sge.pa_hi, sge.pa_lo);
6fb120a7
JS
15985 virt_addr = mboxq->sge_array->addr[0];
15986 /*
15987 * Configure the FCF record for FCFI 0. This is the driver's
15988 * hardcoded default and gets used in nonFIP mode.
15989 */
15990 fcfindex = bf_get(lpfc_fcf_record_fcf_index, fcf_record);
15991 bytep = virt_addr + sizeof(union lpfc_sli4_cfg_shdr);
15992 lpfc_sli_pcimem_bcopy(&fcfindex, bytep, sizeof(uint32_t));
15993
15994 /*
15995 * Copy the fcf_index and the FCF Record Data. The data starts after
15996 * the FCoE header plus word10. The data copy needs to be endian
15997 * correct.
15998 */
15999 bytep += sizeof(uint32_t);
16000 lpfc_sli_pcimem_bcopy(fcf_record, bytep, sizeof(struct fcf_record));
16001 mboxq->vport = phba->pport;
16002 mboxq->mbox_cmpl = lpfc_mbx_cmpl_add_fcf_record;
16003 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
16004 if (rc == MBX_NOT_FINISHED) {
16005 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16006 "2515 ADD_FCF_RECORD mailbox failed with "
16007 "status 0x%x\n", rc);
16008 lpfc_sli4_mbox_cmd_free(phba, mboxq);
16009 rc = -EIO;
16010 } else
16011 rc = 0;
16012
16013 return rc;
16014}
16015
16016/**
16017 * lpfc_sli4_build_dflt_fcf_record - Build the driver's default FCF Record.
16018 * @phba: pointer to lpfc hba data structure.
16019 * @fcf_record: pointer to the fcf record to write the default data.
16020 * @fcf_index: FCF table entry index.
16021 *
16022 * This routine is invoked to build the driver's default FCF record. The
16023 * values used are hardcoded. This routine handles memory initialization.
16024 *
16025 **/
16026void
16027lpfc_sli4_build_dflt_fcf_record(struct lpfc_hba *phba,
16028 struct fcf_record *fcf_record,
16029 uint16_t fcf_index)
16030{
16031 memset(fcf_record, 0, sizeof(struct fcf_record));
16032 fcf_record->max_rcv_size = LPFC_FCOE_MAX_RCV_SIZE;
16033 fcf_record->fka_adv_period = LPFC_FCOE_FKA_ADV_PER;
16034 fcf_record->fip_priority = LPFC_FCOE_FIP_PRIORITY;
16035 bf_set(lpfc_fcf_record_mac_0, fcf_record, phba->fc_map[0]);
16036 bf_set(lpfc_fcf_record_mac_1, fcf_record, phba->fc_map[1]);
16037 bf_set(lpfc_fcf_record_mac_2, fcf_record, phba->fc_map[2]);
16038 bf_set(lpfc_fcf_record_mac_3, fcf_record, LPFC_FCOE_FCF_MAC3);
16039 bf_set(lpfc_fcf_record_mac_4, fcf_record, LPFC_FCOE_FCF_MAC4);
16040 bf_set(lpfc_fcf_record_mac_5, fcf_record, LPFC_FCOE_FCF_MAC5);
16041 bf_set(lpfc_fcf_record_fc_map_0, fcf_record, phba->fc_map[0]);
16042 bf_set(lpfc_fcf_record_fc_map_1, fcf_record, phba->fc_map[1]);
16043 bf_set(lpfc_fcf_record_fc_map_2, fcf_record, phba->fc_map[2]);
16044 bf_set(lpfc_fcf_record_fcf_valid, fcf_record, 1);
0c287589 16045 bf_set(lpfc_fcf_record_fcf_avail, fcf_record, 1);
6fb120a7
JS
16046 bf_set(lpfc_fcf_record_fcf_index, fcf_record, fcf_index);
16047 bf_set(lpfc_fcf_record_mac_addr_prov, fcf_record,
16048 LPFC_FCF_FPMA | LPFC_FCF_SPMA);
16049 /* Set the VLAN bit map */
16050 if (phba->valid_vlan) {
16051 fcf_record->vlan_bitmap[phba->vlan_id / 8]
16052 = 1 << (phba->vlan_id % 8);
16053 }
16054}
16055
16056/**
0c9ab6f5 16057 * lpfc_sli4_fcf_scan_read_fcf_rec - Read hba fcf record for fcf scan.
6fb120a7
JS
16058 * @phba: pointer to lpfc hba data structure.
16059 * @fcf_index: FCF table entry offset.
16060 *
0c9ab6f5
JS
16061 * This routine is invoked to scan the entire FCF table by reading FCF
16062 * record and processing it one at a time starting from the @fcf_index
16063 * for initial FCF discovery or fast FCF failover rediscovery.
16064 *
25985edc 16065 * Return 0 if the mailbox command is submitted successfully, none 0
0c9ab6f5 16066 * otherwise.
6fb120a7
JS
16067 **/
16068int
0c9ab6f5 16069lpfc_sli4_fcf_scan_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
6fb120a7
JS
16070{
16071 int rc = 0, error;
16072 LPFC_MBOXQ_t *mboxq;
6fb120a7 16073
32b9793f 16074 phba->fcoe_eventtag_at_fcf_scan = phba->fcoe_eventtag;
80c17849 16075 phba->fcoe_cvl_eventtag_attn = phba->fcoe_cvl_eventtag;
6fb120a7
JS
16076 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16077 if (!mboxq) {
16078 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16079 "2000 Failed to allocate mbox for "
16080 "READ_FCF cmd\n");
4d9ab994 16081 error = -ENOMEM;
0c9ab6f5 16082 goto fail_fcf_scan;
6fb120a7 16083 }
ecfd03c6 16084 /* Construct the read FCF record mailbox command */
0c9ab6f5 16085 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
ecfd03c6
JS
16086 if (rc) {
16087 error = -EINVAL;
0c9ab6f5 16088 goto fail_fcf_scan;
6fb120a7 16089 }
ecfd03c6 16090 /* Issue the mailbox command asynchronously */
6fb120a7 16091 mboxq->vport = phba->pport;
0c9ab6f5 16092 mboxq->mbox_cmpl = lpfc_mbx_cmpl_fcf_scan_read_fcf_rec;
a93ff37a
JS
16093
16094 spin_lock_irq(&phba->hbalock);
16095 phba->hba_flag |= FCF_TS_INPROG;
16096 spin_unlock_irq(&phba->hbalock);
16097
6fb120a7 16098 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
ecfd03c6 16099 if (rc == MBX_NOT_FINISHED)
6fb120a7 16100 error = -EIO;
ecfd03c6 16101 else {
38b92ef8
JS
16102 /* Reset eligible FCF count for new scan */
16103 if (fcf_index == LPFC_FCOE_FCF_GET_FIRST)
999d813f 16104 phba->fcf.eligible_fcf_cnt = 0;
6fb120a7 16105 error = 0;
32b9793f 16106 }
0c9ab6f5 16107fail_fcf_scan:
4d9ab994
JS
16108 if (error) {
16109 if (mboxq)
16110 lpfc_sli4_mbox_cmd_free(phba, mboxq);
a93ff37a 16111 /* FCF scan failed, clear FCF_TS_INPROG flag */
4d9ab994 16112 spin_lock_irq(&phba->hbalock);
a93ff37a 16113 phba->hba_flag &= ~FCF_TS_INPROG;
4d9ab994
JS
16114 spin_unlock_irq(&phba->hbalock);
16115 }
6fb120a7
JS
16116 return error;
16117}
a0c87cbd 16118
0c9ab6f5 16119/**
a93ff37a 16120 * lpfc_sli4_fcf_rr_read_fcf_rec - Read hba fcf record for roundrobin fcf.
0c9ab6f5
JS
16121 * @phba: pointer to lpfc hba data structure.
16122 * @fcf_index: FCF table entry offset.
16123 *
16124 * This routine is invoked to read an FCF record indicated by @fcf_index
a93ff37a 16125 * and to use it for FLOGI roundrobin FCF failover.
0c9ab6f5 16126 *
25985edc 16127 * Return 0 if the mailbox command is submitted successfully, none 0
0c9ab6f5
JS
16128 * otherwise.
16129 **/
16130int
16131lpfc_sli4_fcf_rr_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
16132{
16133 int rc = 0, error;
16134 LPFC_MBOXQ_t *mboxq;
16135
16136 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16137 if (!mboxq) {
16138 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_INIT,
16139 "2763 Failed to allocate mbox for "
16140 "READ_FCF cmd\n");
16141 error = -ENOMEM;
16142 goto fail_fcf_read;
16143 }
16144 /* Construct the read FCF record mailbox command */
16145 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
16146 if (rc) {
16147 error = -EINVAL;
16148 goto fail_fcf_read;
16149 }
16150 /* Issue the mailbox command asynchronously */
16151 mboxq->vport = phba->pport;
16152 mboxq->mbox_cmpl = lpfc_mbx_cmpl_fcf_rr_read_fcf_rec;
16153 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
16154 if (rc == MBX_NOT_FINISHED)
16155 error = -EIO;
16156 else
16157 error = 0;
16158
16159fail_fcf_read:
16160 if (error && mboxq)
16161 lpfc_sli4_mbox_cmd_free(phba, mboxq);
16162 return error;
16163}
16164
16165/**
16166 * lpfc_sli4_read_fcf_rec - Read hba fcf record for update eligible fcf bmask.
16167 * @phba: pointer to lpfc hba data structure.
16168 * @fcf_index: FCF table entry offset.
16169 *
16170 * This routine is invoked to read an FCF record indicated by @fcf_index to
a93ff37a 16171 * determine whether it's eligible for FLOGI roundrobin failover list.
0c9ab6f5 16172 *
25985edc 16173 * Return 0 if the mailbox command is submitted successfully, none 0
0c9ab6f5
JS
16174 * otherwise.
16175 **/
16176int
16177lpfc_sli4_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
16178{
16179 int rc = 0, error;
16180 LPFC_MBOXQ_t *mboxq;
16181
16182 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16183 if (!mboxq) {
16184 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_INIT,
16185 "2758 Failed to allocate mbox for "
16186 "READ_FCF cmd\n");
16187 error = -ENOMEM;
16188 goto fail_fcf_read;
16189 }
16190 /* Construct the read FCF record mailbox command */
16191 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
16192 if (rc) {
16193 error = -EINVAL;
16194 goto fail_fcf_read;
16195 }
16196 /* Issue the mailbox command asynchronously */
16197 mboxq->vport = phba->pport;
16198 mboxq->mbox_cmpl = lpfc_mbx_cmpl_read_fcf_rec;
16199 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
16200 if (rc == MBX_NOT_FINISHED)
16201 error = -EIO;
16202 else
16203 error = 0;
16204
16205fail_fcf_read:
16206 if (error && mboxq)
16207 lpfc_sli4_mbox_cmd_free(phba, mboxq);
16208 return error;
16209}
16210
7d791df7
JS
16211/**
16212 * lpfc_check_next_fcf_pri
16213 * phba pointer to the lpfc_hba struct for this port.
16214 * This routine is called from the lpfc_sli4_fcf_rr_next_index_get
16215 * routine when the rr_bmask is empty. The FCF indecies are put into the
16216 * rr_bmask based on their priority level. Starting from the highest priority
16217 * to the lowest. The most likely FCF candidate will be in the highest
16218 * priority group. When this routine is called it searches the fcf_pri list for
16219 * next lowest priority group and repopulates the rr_bmask with only those
16220 * fcf_indexes.
16221 * returns:
16222 * 1=success 0=failure
16223 **/
5d8b8167 16224static int
7d791df7
JS
16225lpfc_check_next_fcf_pri_level(struct lpfc_hba *phba)
16226{
16227 uint16_t next_fcf_pri;
16228 uint16_t last_index;
16229 struct lpfc_fcf_pri *fcf_pri;
16230 int rc;
16231 int ret = 0;
16232
16233 last_index = find_first_bit(phba->fcf.fcf_rr_bmask,
16234 LPFC_SLI4_FCF_TBL_INDX_MAX);
16235 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
16236 "3060 Last IDX %d\n", last_index);
2562669c
JS
16237
16238 /* Verify the priority list has 2 or more entries */
16239 spin_lock_irq(&phba->hbalock);
16240 if (list_empty(&phba->fcf.fcf_pri_list) ||
16241 list_is_singular(&phba->fcf.fcf_pri_list)) {
16242 spin_unlock_irq(&phba->hbalock);
7d791df7
JS
16243 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
16244 "3061 Last IDX %d\n", last_index);
16245 return 0; /* Empty rr list */
16246 }
2562669c
JS
16247 spin_unlock_irq(&phba->hbalock);
16248
7d791df7
JS
16249 next_fcf_pri = 0;
16250 /*
16251 * Clear the rr_bmask and set all of the bits that are at this
16252 * priority.
16253 */
16254 memset(phba->fcf.fcf_rr_bmask, 0,
16255 sizeof(*phba->fcf.fcf_rr_bmask));
16256 spin_lock_irq(&phba->hbalock);
16257 list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
16258 if (fcf_pri->fcf_rec.flag & LPFC_FCF_FLOGI_FAILED)
16259 continue;
16260 /*
16261 * the 1st priority that has not FLOGI failed
16262 * will be the highest.
16263 */
16264 if (!next_fcf_pri)
16265 next_fcf_pri = fcf_pri->fcf_rec.priority;
16266 spin_unlock_irq(&phba->hbalock);
16267 if (fcf_pri->fcf_rec.priority == next_fcf_pri) {
16268 rc = lpfc_sli4_fcf_rr_index_set(phba,
16269 fcf_pri->fcf_rec.fcf_index);
16270 if (rc)
16271 return 0;
16272 }
16273 spin_lock_irq(&phba->hbalock);
16274 }
16275 /*
16276 * if next_fcf_pri was not set above and the list is not empty then
16277 * we have failed flogis on all of them. So reset flogi failed
4907cb7b 16278 * and start at the beginning.
7d791df7
JS
16279 */
16280 if (!next_fcf_pri && !list_empty(&phba->fcf.fcf_pri_list)) {
16281 list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
16282 fcf_pri->fcf_rec.flag &= ~LPFC_FCF_FLOGI_FAILED;
16283 /*
16284 * the 1st priority that has not FLOGI failed
16285 * will be the highest.
16286 */
16287 if (!next_fcf_pri)
16288 next_fcf_pri = fcf_pri->fcf_rec.priority;
16289 spin_unlock_irq(&phba->hbalock);
16290 if (fcf_pri->fcf_rec.priority == next_fcf_pri) {
16291 rc = lpfc_sli4_fcf_rr_index_set(phba,
16292 fcf_pri->fcf_rec.fcf_index);
16293 if (rc)
16294 return 0;
16295 }
16296 spin_lock_irq(&phba->hbalock);
16297 }
16298 } else
16299 ret = 1;
16300 spin_unlock_irq(&phba->hbalock);
16301
16302 return ret;
16303}
0c9ab6f5
JS
16304/**
16305 * lpfc_sli4_fcf_rr_next_index_get - Get next eligible fcf record index
16306 * @phba: pointer to lpfc hba data structure.
16307 *
16308 * This routine is to get the next eligible FCF record index in a round
16309 * robin fashion. If the next eligible FCF record index equals to the
a93ff37a 16310 * initial roundrobin FCF record index, LPFC_FCOE_FCF_NEXT_NONE (0xFFFF)
0c9ab6f5
JS
16311 * shall be returned, otherwise, the next eligible FCF record's index
16312 * shall be returned.
16313 **/
16314uint16_t
16315lpfc_sli4_fcf_rr_next_index_get(struct lpfc_hba *phba)
16316{
16317 uint16_t next_fcf_index;
16318
421c6622 16319initial_priority:
3804dc84 16320 /* Search start from next bit of currently registered FCF index */
421c6622
JS
16321 next_fcf_index = phba->fcf.current_rec.fcf_indx;
16322
7d791df7 16323next_priority:
421c6622
JS
16324 /* Determine the next fcf index to check */
16325 next_fcf_index = (next_fcf_index + 1) % LPFC_SLI4_FCF_TBL_INDX_MAX;
0c9ab6f5
JS
16326 next_fcf_index = find_next_bit(phba->fcf.fcf_rr_bmask,
16327 LPFC_SLI4_FCF_TBL_INDX_MAX,
3804dc84
JS
16328 next_fcf_index);
16329
0c9ab6f5 16330 /* Wrap around condition on phba->fcf.fcf_rr_bmask */
7d791df7
JS
16331 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
16332 /*
16333 * If we have wrapped then we need to clear the bits that
16334 * have been tested so that we can detect when we should
16335 * change the priority level.
16336 */
0c9ab6f5
JS
16337 next_fcf_index = find_next_bit(phba->fcf.fcf_rr_bmask,
16338 LPFC_SLI4_FCF_TBL_INDX_MAX, 0);
7d791df7
JS
16339 }
16340
3804dc84
JS
16341
16342 /* Check roundrobin failover list empty condition */
7d791df7
JS
16343 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX ||
16344 next_fcf_index == phba->fcf.current_rec.fcf_indx) {
16345 /*
16346 * If next fcf index is not found check if there are lower
16347 * Priority level fcf's in the fcf_priority list.
16348 * Set up the rr_bmask with all of the avaiable fcf bits
16349 * at that level and continue the selection process.
16350 */
16351 if (lpfc_check_next_fcf_pri_level(phba))
421c6622 16352 goto initial_priority;
3804dc84
JS
16353 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
16354 "2844 No roundrobin failover FCF available\n");
7d791df7
JS
16355 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX)
16356 return LPFC_FCOE_FCF_NEXT_NONE;
16357 else {
16358 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
16359 "3063 Only FCF available idx %d, flag %x\n",
16360 next_fcf_index,
16361 phba->fcf.fcf_pri[next_fcf_index].fcf_rec.flag);
16362 return next_fcf_index;
16363 }
3804dc84
JS
16364 }
16365
7d791df7
JS
16366 if (next_fcf_index < LPFC_SLI4_FCF_TBL_INDX_MAX &&
16367 phba->fcf.fcf_pri[next_fcf_index].fcf_rec.flag &
16368 LPFC_FCF_FLOGI_FAILED)
16369 goto next_priority;
16370
3804dc84 16371 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
a93ff37a
JS
16372 "2845 Get next roundrobin failover FCF (x%x)\n",
16373 next_fcf_index);
16374
0c9ab6f5
JS
16375 return next_fcf_index;
16376}
16377
16378/**
16379 * lpfc_sli4_fcf_rr_index_set - Set bmask with eligible fcf record index
16380 * @phba: pointer to lpfc hba data structure.
16381 *
16382 * This routine sets the FCF record index in to the eligible bmask for
a93ff37a 16383 * roundrobin failover search. It checks to make sure that the index
0c9ab6f5
JS
16384 * does not go beyond the range of the driver allocated bmask dimension
16385 * before setting the bit.
16386 *
16387 * Returns 0 if the index bit successfully set, otherwise, it returns
16388 * -EINVAL.
16389 **/
16390int
16391lpfc_sli4_fcf_rr_index_set(struct lpfc_hba *phba, uint16_t fcf_index)
16392{
16393 if (fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
16394 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
a93ff37a
JS
16395 "2610 FCF (x%x) reached driver's book "
16396 "keeping dimension:x%x\n",
0c9ab6f5
JS
16397 fcf_index, LPFC_SLI4_FCF_TBL_INDX_MAX);
16398 return -EINVAL;
16399 }
16400 /* Set the eligible FCF record index bmask */
16401 set_bit(fcf_index, phba->fcf.fcf_rr_bmask);
16402
3804dc84 16403 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
a93ff37a 16404 "2790 Set FCF (x%x) to roundrobin FCF failover "
3804dc84
JS
16405 "bmask\n", fcf_index);
16406
0c9ab6f5
JS
16407 return 0;
16408}
16409
16410/**
3804dc84 16411 * lpfc_sli4_fcf_rr_index_clear - Clear bmask from eligible fcf record index
0c9ab6f5
JS
16412 * @phba: pointer to lpfc hba data structure.
16413 *
16414 * This routine clears the FCF record index from the eligible bmask for
a93ff37a 16415 * roundrobin failover search. It checks to make sure that the index
0c9ab6f5
JS
16416 * does not go beyond the range of the driver allocated bmask dimension
16417 * before clearing the bit.
16418 **/
16419void
16420lpfc_sli4_fcf_rr_index_clear(struct lpfc_hba *phba, uint16_t fcf_index)
16421{
9a803a74 16422 struct lpfc_fcf_pri *fcf_pri, *fcf_pri_next;
0c9ab6f5
JS
16423 if (fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
16424 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
a93ff37a
JS
16425 "2762 FCF (x%x) reached driver's book "
16426 "keeping dimension:x%x\n",
0c9ab6f5
JS
16427 fcf_index, LPFC_SLI4_FCF_TBL_INDX_MAX);
16428 return;
16429 }
16430 /* Clear the eligible FCF record index bmask */
7d791df7 16431 spin_lock_irq(&phba->hbalock);
9a803a74
JS
16432 list_for_each_entry_safe(fcf_pri, fcf_pri_next, &phba->fcf.fcf_pri_list,
16433 list) {
7d791df7
JS
16434 if (fcf_pri->fcf_rec.fcf_index == fcf_index) {
16435 list_del_init(&fcf_pri->list);
16436 break;
16437 }
16438 }
16439 spin_unlock_irq(&phba->hbalock);
0c9ab6f5 16440 clear_bit(fcf_index, phba->fcf.fcf_rr_bmask);
3804dc84
JS
16441
16442 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
a93ff37a 16443 "2791 Clear FCF (x%x) from roundrobin failover "
3804dc84 16444 "bmask\n", fcf_index);
0c9ab6f5
JS
16445}
16446
ecfd03c6
JS
16447/**
16448 * lpfc_mbx_cmpl_redisc_fcf_table - completion routine for rediscover FCF table
16449 * @phba: pointer to lpfc hba data structure.
16450 *
16451 * This routine is the completion routine for the rediscover FCF table mailbox
16452 * command. If the mailbox command returned failure, it will try to stop the
16453 * FCF rediscover wait timer.
16454 **/
5d8b8167 16455static void
ecfd03c6
JS
16456lpfc_mbx_cmpl_redisc_fcf_table(struct lpfc_hba *phba, LPFC_MBOXQ_t *mbox)
16457{
16458 struct lpfc_mbx_redisc_fcf_tbl *redisc_fcf;
16459 uint32_t shdr_status, shdr_add_status;
16460
16461 redisc_fcf = &mbox->u.mqe.un.redisc_fcf_tbl;
16462
16463 shdr_status = bf_get(lpfc_mbox_hdr_status,
16464 &redisc_fcf->header.cfg_shdr.response);
16465 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status,
16466 &redisc_fcf->header.cfg_shdr.response);
16467 if (shdr_status || shdr_add_status) {
0c9ab6f5 16468 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
ecfd03c6
JS
16469 "2746 Requesting for FCF rediscovery failed "
16470 "status x%x add_status x%x\n",
16471 shdr_status, shdr_add_status);
0c9ab6f5 16472 if (phba->fcf.fcf_flag & FCF_ACVL_DISC) {
fc2b989b 16473 spin_lock_irq(&phba->hbalock);
0c9ab6f5 16474 phba->fcf.fcf_flag &= ~FCF_ACVL_DISC;
fc2b989b
JS
16475 spin_unlock_irq(&phba->hbalock);
16476 /*
16477 * CVL event triggered FCF rediscover request failed,
16478 * last resort to re-try current registered FCF entry.
16479 */
16480 lpfc_retry_pport_discovery(phba);
16481 } else {
16482 spin_lock_irq(&phba->hbalock);
0c9ab6f5 16483 phba->fcf.fcf_flag &= ~FCF_DEAD_DISC;
fc2b989b
JS
16484 spin_unlock_irq(&phba->hbalock);
16485 /*
16486 * DEAD FCF event triggered FCF rediscover request
16487 * failed, last resort to fail over as a link down
16488 * to FCF registration.
16489 */
16490 lpfc_sli4_fcf_dead_failthrough(phba);
16491 }
0c9ab6f5
JS
16492 } else {
16493 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
a93ff37a 16494 "2775 Start FCF rediscover quiescent timer\n");
ecfd03c6
JS
16495 /*
16496 * Start FCF rediscovery wait timer for pending FCF
16497 * before rescan FCF record table.
16498 */
16499 lpfc_fcf_redisc_wait_start_timer(phba);
0c9ab6f5 16500 }
ecfd03c6
JS
16501
16502 mempool_free(mbox, phba->mbox_mem_pool);
16503}
16504
16505/**
3804dc84 16506 * lpfc_sli4_redisc_fcf_table - Request to rediscover entire FCF table by port.
ecfd03c6
JS
16507 * @phba: pointer to lpfc hba data structure.
16508 *
16509 * This routine is invoked to request for rediscovery of the entire FCF table
16510 * by the port.
16511 **/
16512int
16513lpfc_sli4_redisc_fcf_table(struct lpfc_hba *phba)
16514{
16515 LPFC_MBOXQ_t *mbox;
16516 struct lpfc_mbx_redisc_fcf_tbl *redisc_fcf;
16517 int rc, length;
16518
0c9ab6f5
JS
16519 /* Cancel retry delay timers to all vports before FCF rediscover */
16520 lpfc_cancel_all_vport_retry_delay_timer(phba);
16521
ecfd03c6
JS
16522 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16523 if (!mbox) {
16524 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
16525 "2745 Failed to allocate mbox for "
16526 "requesting FCF rediscover.\n");
16527 return -ENOMEM;
16528 }
16529
16530 length = (sizeof(struct lpfc_mbx_redisc_fcf_tbl) -
16531 sizeof(struct lpfc_sli4_cfg_mhdr));
16532 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
16533 LPFC_MBOX_OPCODE_FCOE_REDISCOVER_FCF,
16534 length, LPFC_SLI4_MBX_EMBED);
16535
16536 redisc_fcf = &mbox->u.mqe.un.redisc_fcf_tbl;
16537 /* Set count to 0 for invalidating the entire FCF database */
16538 bf_set(lpfc_mbx_redisc_fcf_count, redisc_fcf, 0);
16539
16540 /* Issue the mailbox command asynchronously */
16541 mbox->vport = phba->pport;
16542 mbox->mbox_cmpl = lpfc_mbx_cmpl_redisc_fcf_table;
16543 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
16544
16545 if (rc == MBX_NOT_FINISHED) {
16546 mempool_free(mbox, phba->mbox_mem_pool);
16547 return -EIO;
16548 }
16549 return 0;
16550}
16551
fc2b989b
JS
16552/**
16553 * lpfc_sli4_fcf_dead_failthrough - Failthrough routine to fcf dead event
16554 * @phba: pointer to lpfc hba data structure.
16555 *
16556 * This function is the failover routine as a last resort to the FCF DEAD
16557 * event when driver failed to perform fast FCF failover.
16558 **/
16559void
16560lpfc_sli4_fcf_dead_failthrough(struct lpfc_hba *phba)
16561{
16562 uint32_t link_state;
16563
16564 /*
16565 * Last resort as FCF DEAD event failover will treat this as
16566 * a link down, but save the link state because we don't want
16567 * it to be changed to Link Down unless it is already down.
16568 */
16569 link_state = phba->link_state;
16570 lpfc_linkdown(phba);
16571 phba->link_state = link_state;
16572
16573 /* Unregister FCF if no devices connected to it */
16574 lpfc_unregister_unused_fcf(phba);
16575}
16576
a0c87cbd 16577/**
026abb87 16578 * lpfc_sli_get_config_region23 - Get sli3 port region 23 data.
a0c87cbd 16579 * @phba: pointer to lpfc hba data structure.
026abb87 16580 * @rgn23_data: pointer to configure region 23 data.
a0c87cbd 16581 *
026abb87
JS
16582 * This function gets SLI3 port configure region 23 data through memory dump
16583 * mailbox command. When it successfully retrieves data, the size of the data
16584 * will be returned, otherwise, 0 will be returned.
a0c87cbd 16585 **/
026abb87
JS
16586static uint32_t
16587lpfc_sli_get_config_region23(struct lpfc_hba *phba, char *rgn23_data)
a0c87cbd
JS
16588{
16589 LPFC_MBOXQ_t *pmb = NULL;
16590 MAILBOX_t *mb;
026abb87 16591 uint32_t offset = 0;
a0c87cbd
JS
16592 int rc;
16593
026abb87
JS
16594 if (!rgn23_data)
16595 return 0;
16596
a0c87cbd
JS
16597 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16598 if (!pmb) {
16599 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
026abb87
JS
16600 "2600 failed to allocate mailbox memory\n");
16601 return 0;
a0c87cbd
JS
16602 }
16603 mb = &pmb->u.mb;
16604
a0c87cbd
JS
16605 do {
16606 lpfc_dump_mem(phba, pmb, offset, DMP_REGION_23);
16607 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
16608
16609 if (rc != MBX_SUCCESS) {
16610 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
026abb87
JS
16611 "2601 failed to read config "
16612 "region 23, rc 0x%x Status 0x%x\n",
16613 rc, mb->mbxStatus);
a0c87cbd
JS
16614 mb->un.varDmp.word_cnt = 0;
16615 }
16616 /*
16617 * dump mem may return a zero when finished or we got a
16618 * mailbox error, either way we are done.
16619 */
16620 if (mb->un.varDmp.word_cnt == 0)
16621 break;
16622 if (mb->un.varDmp.word_cnt > DMP_RGN23_SIZE - offset)
16623 mb->un.varDmp.word_cnt = DMP_RGN23_SIZE - offset;
16624
16625 lpfc_sli_pcimem_bcopy(((uint8_t *)mb) + DMP_RSP_OFFSET,
026abb87
JS
16626 rgn23_data + offset,
16627 mb->un.varDmp.word_cnt);
a0c87cbd
JS
16628 offset += mb->un.varDmp.word_cnt;
16629 } while (mb->un.varDmp.word_cnt && offset < DMP_RGN23_SIZE);
16630
026abb87
JS
16631 mempool_free(pmb, phba->mbox_mem_pool);
16632 return offset;
16633}
16634
16635/**
16636 * lpfc_sli4_get_config_region23 - Get sli4 port region 23 data.
16637 * @phba: pointer to lpfc hba data structure.
16638 * @rgn23_data: pointer to configure region 23 data.
16639 *
16640 * This function gets SLI4 port configure region 23 data through memory dump
16641 * mailbox command. When it successfully retrieves data, the size of the data
16642 * will be returned, otherwise, 0 will be returned.
16643 **/
16644static uint32_t
16645lpfc_sli4_get_config_region23(struct lpfc_hba *phba, char *rgn23_data)
16646{
16647 LPFC_MBOXQ_t *mboxq = NULL;
16648 struct lpfc_dmabuf *mp = NULL;
16649 struct lpfc_mqe *mqe;
16650 uint32_t data_length = 0;
16651 int rc;
16652
16653 if (!rgn23_data)
16654 return 0;
16655
16656 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16657 if (!mboxq) {
16658 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16659 "3105 failed to allocate mailbox memory\n");
16660 return 0;
16661 }
16662
16663 if (lpfc_sli4_dump_cfg_rg23(phba, mboxq))
16664 goto out;
16665 mqe = &mboxq->u.mqe;
16666 mp = (struct lpfc_dmabuf *) mboxq->context1;
16667 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
16668 if (rc)
16669 goto out;
16670 data_length = mqe->un.mb_words[5];
16671 if (data_length == 0)
16672 goto out;
16673 if (data_length > DMP_RGN23_SIZE) {
16674 data_length = 0;
16675 goto out;
16676 }
16677 lpfc_sli_pcimem_bcopy((char *)mp->virt, rgn23_data, data_length);
16678out:
16679 mempool_free(mboxq, phba->mbox_mem_pool);
16680 if (mp) {
16681 lpfc_mbuf_free(phba, mp->virt, mp->phys);
16682 kfree(mp);
16683 }
16684 return data_length;
16685}
16686
16687/**
16688 * lpfc_sli_read_link_ste - Read region 23 to decide if link is disabled.
16689 * @phba: pointer to lpfc hba data structure.
16690 *
16691 * This function read region 23 and parse TLV for port status to
16692 * decide if the user disaled the port. If the TLV indicates the
16693 * port is disabled, the hba_flag is set accordingly.
16694 **/
16695void
16696lpfc_sli_read_link_ste(struct lpfc_hba *phba)
16697{
16698 uint8_t *rgn23_data = NULL;
16699 uint32_t if_type, data_size, sub_tlv_len, tlv_offset;
16700 uint32_t offset = 0;
16701
16702 /* Get adapter Region 23 data */
16703 rgn23_data = kzalloc(DMP_RGN23_SIZE, GFP_KERNEL);
16704 if (!rgn23_data)
16705 goto out;
16706
16707 if (phba->sli_rev < LPFC_SLI_REV4)
16708 data_size = lpfc_sli_get_config_region23(phba, rgn23_data);
16709 else {
16710 if_type = bf_get(lpfc_sli_intf_if_type,
16711 &phba->sli4_hba.sli_intf);
16712 if (if_type == LPFC_SLI_INTF_IF_TYPE_0)
16713 goto out;
16714 data_size = lpfc_sli4_get_config_region23(phba, rgn23_data);
16715 }
a0c87cbd
JS
16716
16717 if (!data_size)
16718 goto out;
16719
16720 /* Check the region signature first */
16721 if (memcmp(&rgn23_data[offset], LPFC_REGION23_SIGNATURE, 4)) {
16722 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16723 "2619 Config region 23 has bad signature\n");
16724 goto out;
16725 }
16726 offset += 4;
16727
16728 /* Check the data structure version */
16729 if (rgn23_data[offset] != LPFC_REGION23_VERSION) {
16730 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16731 "2620 Config region 23 has bad version\n");
16732 goto out;
16733 }
16734 offset += 4;
16735
16736 /* Parse TLV entries in the region */
16737 while (offset < data_size) {
16738 if (rgn23_data[offset] == LPFC_REGION23_LAST_REC)
16739 break;
16740 /*
16741 * If the TLV is not driver specific TLV or driver id is
16742 * not linux driver id, skip the record.
16743 */
16744 if ((rgn23_data[offset] != DRIVER_SPECIFIC_TYPE) ||
16745 (rgn23_data[offset + 2] != LINUX_DRIVER_ID) ||
16746 (rgn23_data[offset + 3] != 0)) {
16747 offset += rgn23_data[offset + 1] * 4 + 4;
16748 continue;
16749 }
16750
16751 /* Driver found a driver specific TLV in the config region */
16752 sub_tlv_len = rgn23_data[offset + 1] * 4;
16753 offset += 4;
16754 tlv_offset = 0;
16755
16756 /*
16757 * Search for configured port state sub-TLV.
16758 */
16759 while ((offset < data_size) &&
16760 (tlv_offset < sub_tlv_len)) {
16761 if (rgn23_data[offset] == LPFC_REGION23_LAST_REC) {
16762 offset += 4;
16763 tlv_offset += 4;
16764 break;
16765 }
16766 if (rgn23_data[offset] != PORT_STE_TYPE) {
16767 offset += rgn23_data[offset + 1] * 4 + 4;
16768 tlv_offset += rgn23_data[offset + 1] * 4 + 4;
16769 continue;
16770 }
16771
16772 /* This HBA contains PORT_STE configured */
16773 if (!rgn23_data[offset + 2])
16774 phba->hba_flag |= LINK_DISABLED;
16775
16776 goto out;
16777 }
16778 }
026abb87 16779
a0c87cbd 16780out:
a0c87cbd
JS
16781 kfree(rgn23_data);
16782 return;
16783}
695a814e 16784
52d52440
JS
16785/**
16786 * lpfc_wr_object - write an object to the firmware
16787 * @phba: HBA structure that indicates port to create a queue on.
16788 * @dmabuf_list: list of dmabufs to write to the port.
16789 * @size: the total byte value of the objects to write to the port.
16790 * @offset: the current offset to be used to start the transfer.
16791 *
16792 * This routine will create a wr_object mailbox command to send to the port.
16793 * the mailbox command will be constructed using the dma buffers described in
16794 * @dmabuf_list to create a list of BDEs. This routine will fill in as many
16795 * BDEs that the imbedded mailbox can support. The @offset variable will be
16796 * used to indicate the starting offset of the transfer and will also return
16797 * the offset after the write object mailbox has completed. @size is used to
16798 * determine the end of the object and whether the eof bit should be set.
16799 *
16800 * Return 0 is successful and offset will contain the the new offset to use
16801 * for the next write.
16802 * Return negative value for error cases.
16803 **/
16804int
16805lpfc_wr_object(struct lpfc_hba *phba, struct list_head *dmabuf_list,
16806 uint32_t size, uint32_t *offset)
16807{
16808 struct lpfc_mbx_wr_object *wr_object;
16809 LPFC_MBOXQ_t *mbox;
16810 int rc = 0, i = 0;
16811 uint32_t shdr_status, shdr_add_status;
16812 uint32_t mbox_tmo;
16813 union lpfc_sli4_cfg_shdr *shdr;
16814 struct lpfc_dmabuf *dmabuf;
16815 uint32_t written = 0;
16816
16817 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16818 if (!mbox)
16819 return -ENOMEM;
16820
16821 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
16822 LPFC_MBOX_OPCODE_WRITE_OBJECT,
16823 sizeof(struct lpfc_mbx_wr_object) -
16824 sizeof(struct lpfc_sli4_cfg_mhdr), LPFC_SLI4_MBX_EMBED);
16825
16826 wr_object = (struct lpfc_mbx_wr_object *)&mbox->u.mqe.un.wr_object;
16827 wr_object->u.request.write_offset = *offset;
16828 sprintf((uint8_t *)wr_object->u.request.object_name, "/");
16829 wr_object->u.request.object_name[0] =
16830 cpu_to_le32(wr_object->u.request.object_name[0]);
16831 bf_set(lpfc_wr_object_eof, &wr_object->u.request, 0);
16832 list_for_each_entry(dmabuf, dmabuf_list, list) {
16833 if (i >= LPFC_MBX_WR_CONFIG_MAX_BDE || written >= size)
16834 break;
16835 wr_object->u.request.bde[i].addrLow = putPaddrLow(dmabuf->phys);
16836 wr_object->u.request.bde[i].addrHigh =
16837 putPaddrHigh(dmabuf->phys);
16838 if (written + SLI4_PAGE_SIZE >= size) {
16839 wr_object->u.request.bde[i].tus.f.bdeSize =
16840 (size - written);
16841 written += (size - written);
16842 bf_set(lpfc_wr_object_eof, &wr_object->u.request, 1);
16843 } else {
16844 wr_object->u.request.bde[i].tus.f.bdeSize =
16845 SLI4_PAGE_SIZE;
16846 written += SLI4_PAGE_SIZE;
16847 }
16848 i++;
16849 }
16850 wr_object->u.request.bde_count = i;
16851 bf_set(lpfc_wr_object_write_length, &wr_object->u.request, written);
16852 if (!phba->sli4_hba.intr_enable)
16853 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
16854 else {
a183a15f 16855 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
52d52440
JS
16856 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
16857 }
16858 /* The IOCTL status is embedded in the mailbox subheader. */
16859 shdr = (union lpfc_sli4_cfg_shdr *) &wr_object->header.cfg_shdr;
16860 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
16861 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
16862 if (rc != MBX_TIMEOUT)
16863 mempool_free(mbox, phba->mbox_mem_pool);
16864 if (shdr_status || shdr_add_status || rc) {
16865 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16866 "3025 Write Object mailbox failed with "
16867 "status x%x add_status x%x, mbx status x%x\n",
16868 shdr_status, shdr_add_status, rc);
16869 rc = -ENXIO;
16870 } else
16871 *offset += wr_object->u.response.actual_write_length;
16872 return rc;
16873}
16874
695a814e
JS
16875/**
16876 * lpfc_cleanup_pending_mbox - Free up vport discovery mailbox commands.
16877 * @vport: pointer to vport data structure.
16878 *
16879 * This function iterate through the mailboxq and clean up all REG_LOGIN
16880 * and REG_VPI mailbox commands associated with the vport. This function
16881 * is called when driver want to restart discovery of the vport due to
16882 * a Clear Virtual Link event.
16883 **/
16884void
16885lpfc_cleanup_pending_mbox(struct lpfc_vport *vport)
16886{
16887 struct lpfc_hba *phba = vport->phba;
16888 LPFC_MBOXQ_t *mb, *nextmb;
16889 struct lpfc_dmabuf *mp;
78730cfe 16890 struct lpfc_nodelist *ndlp;
d439d286 16891 struct lpfc_nodelist *act_mbx_ndlp = NULL;
589a52d6 16892 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
d439d286 16893 LIST_HEAD(mbox_cmd_list);
63e801ce 16894 uint8_t restart_loop;
695a814e 16895
d439d286 16896 /* Clean up internally queued mailbox commands with the vport */
695a814e
JS
16897 spin_lock_irq(&phba->hbalock);
16898 list_for_each_entry_safe(mb, nextmb, &phba->sli.mboxq, list) {
16899 if (mb->vport != vport)
16900 continue;
16901
16902 if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) &&
16903 (mb->u.mb.mbxCommand != MBX_REG_VPI))
16904 continue;
16905
d439d286
JS
16906 list_del(&mb->list);
16907 list_add_tail(&mb->list, &mbox_cmd_list);
16908 }
16909 /* Clean up active mailbox command with the vport */
16910 mb = phba->sli.mbox_active;
16911 if (mb && (mb->vport == vport)) {
16912 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) ||
16913 (mb->u.mb.mbxCommand == MBX_REG_VPI))
16914 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
16915 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
16916 act_mbx_ndlp = (struct lpfc_nodelist *)mb->context2;
16917 /* Put reference count for delayed processing */
16918 act_mbx_ndlp = lpfc_nlp_get(act_mbx_ndlp);
16919 /* Unregister the RPI when mailbox complete */
16920 mb->mbox_flag |= LPFC_MBX_IMED_UNREG;
16921 }
16922 }
63e801ce
JS
16923 /* Cleanup any mailbox completions which are not yet processed */
16924 do {
16925 restart_loop = 0;
16926 list_for_each_entry(mb, &phba->sli.mboxq_cmpl, list) {
16927 /*
16928 * If this mailox is already processed or it is
16929 * for another vport ignore it.
16930 */
16931 if ((mb->vport != vport) ||
16932 (mb->mbox_flag & LPFC_MBX_IMED_UNREG))
16933 continue;
16934
16935 if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) &&
16936 (mb->u.mb.mbxCommand != MBX_REG_VPI))
16937 continue;
16938
16939 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
16940 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
16941 ndlp = (struct lpfc_nodelist *)mb->context2;
16942 /* Unregister the RPI when mailbox complete */
16943 mb->mbox_flag |= LPFC_MBX_IMED_UNREG;
16944 restart_loop = 1;
16945 spin_unlock_irq(&phba->hbalock);
16946 spin_lock(shost->host_lock);
16947 ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
16948 spin_unlock(shost->host_lock);
16949 spin_lock_irq(&phba->hbalock);
16950 break;
16951 }
16952 }
16953 } while (restart_loop);
16954
d439d286
JS
16955 spin_unlock_irq(&phba->hbalock);
16956
16957 /* Release the cleaned-up mailbox commands */
16958 while (!list_empty(&mbox_cmd_list)) {
16959 list_remove_head(&mbox_cmd_list, mb, LPFC_MBOXQ_t, list);
695a814e
JS
16960 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
16961 mp = (struct lpfc_dmabuf *) (mb->context1);
16962 if (mp) {
16963 __lpfc_mbuf_free(phba, mp->virt, mp->phys);
16964 kfree(mp);
16965 }
78730cfe 16966 ndlp = (struct lpfc_nodelist *) mb->context2;
d439d286 16967 mb->context2 = NULL;
78730cfe 16968 if (ndlp) {
ec21b3b0 16969 spin_lock(shost->host_lock);
589a52d6 16970 ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
ec21b3b0 16971 spin_unlock(shost->host_lock);
78730cfe 16972 lpfc_nlp_put(ndlp);
78730cfe 16973 }
695a814e 16974 }
695a814e
JS
16975 mempool_free(mb, phba->mbox_mem_pool);
16976 }
d439d286
JS
16977
16978 /* Release the ndlp with the cleaned-up active mailbox command */
16979 if (act_mbx_ndlp) {
16980 spin_lock(shost->host_lock);
16981 act_mbx_ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
16982 spin_unlock(shost->host_lock);
16983 lpfc_nlp_put(act_mbx_ndlp);
695a814e 16984 }
695a814e
JS
16985}
16986
2a9bf3d0
JS
16987/**
16988 * lpfc_drain_txq - Drain the txq
16989 * @phba: Pointer to HBA context object.
16990 *
16991 * This function attempt to submit IOCBs on the txq
16992 * to the adapter. For SLI4 adapters, the txq contains
16993 * ELS IOCBs that have been deferred because the there
16994 * are no SGLs. This congestion can occur with large
16995 * vport counts during node discovery.
16996 **/
16997
16998uint32_t
16999lpfc_drain_txq(struct lpfc_hba *phba)
17000{
17001 LIST_HEAD(completions);
17002 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
2e706377 17003 struct lpfc_iocbq *piocbq = NULL;
2a9bf3d0
JS
17004 unsigned long iflags = 0;
17005 char *fail_msg = NULL;
17006 struct lpfc_sglq *sglq;
17007 union lpfc_wqe wqe;
a2fc4aef 17008 uint32_t txq_cnt = 0;
2a9bf3d0 17009
398d81c9 17010 spin_lock_irqsave(&pring->ring_lock, iflags);
0e9bb8d7
JS
17011 list_for_each_entry(piocbq, &pring->txq, list) {
17012 txq_cnt++;
17013 }
17014
17015 if (txq_cnt > pring->txq_max)
17016 pring->txq_max = txq_cnt;
2a9bf3d0 17017
398d81c9 17018 spin_unlock_irqrestore(&pring->ring_lock, iflags);
2a9bf3d0 17019
0e9bb8d7 17020 while (!list_empty(&pring->txq)) {
398d81c9 17021 spin_lock_irqsave(&pring->ring_lock, iflags);
2a9bf3d0 17022
19ca7609 17023 piocbq = lpfc_sli_ringtx_get(phba, pring);
a629852a 17024 if (!piocbq) {
398d81c9 17025 spin_unlock_irqrestore(&pring->ring_lock, iflags);
a629852a
JS
17026 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
17027 "2823 txq empty and txq_cnt is %d\n ",
0e9bb8d7 17028 txq_cnt);
a629852a
JS
17029 break;
17030 }
19ca7609 17031 sglq = __lpfc_sli_get_sglq(phba, piocbq);
2a9bf3d0 17032 if (!sglq) {
19ca7609 17033 __lpfc_sli_ringtx_put(phba, pring, piocbq);
398d81c9 17034 spin_unlock_irqrestore(&pring->ring_lock, iflags);
2a9bf3d0 17035 break;
2a9bf3d0 17036 }
0e9bb8d7 17037 txq_cnt--;
2a9bf3d0
JS
17038
17039 /* The xri and iocb resources secured,
17040 * attempt to issue request
17041 */
6d368e53 17042 piocbq->sli4_lxritag = sglq->sli4_lxritag;
2a9bf3d0
JS
17043 piocbq->sli4_xritag = sglq->sli4_xritag;
17044 if (NO_XRI == lpfc_sli4_bpl2sgl(phba, piocbq, sglq))
17045 fail_msg = "to convert bpl to sgl";
17046 else if (lpfc_sli4_iocb2wqe(phba, piocbq, &wqe))
17047 fail_msg = "to convert iocb to wqe";
17048 else if (lpfc_sli4_wq_put(phba->sli4_hba.els_wq, &wqe))
17049 fail_msg = " - Wq is full";
17050 else
17051 lpfc_sli_ringtxcmpl_put(phba, pring, piocbq);
17052
17053 if (fail_msg) {
17054 /* Failed means we can't issue and need to cancel */
17055 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
17056 "2822 IOCB failed %s iotag 0x%x "
17057 "xri 0x%x\n",
17058 fail_msg,
17059 piocbq->iotag, piocbq->sli4_xritag);
17060 list_add_tail(&piocbq->list, &completions);
17061 }
398d81c9 17062 spin_unlock_irqrestore(&pring->ring_lock, iflags);
2a9bf3d0
JS
17063 }
17064
2a9bf3d0
JS
17065 /* Cancel all the IOCBs that cannot be issued */
17066 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
17067 IOERR_SLI_ABORTED);
17068
0e9bb8d7 17069 return txq_cnt;
2a9bf3d0 17070}