]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/scsi/lpfc/lpfc_sli.c
scsi: lpfc: refactor debugfs queue dump routines
[mirror_ubuntu-jammy-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. *
50611577 4 * Copyright (C) 2004-2016 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>
1c2ba475 27#include <linux/lockdep.h>
dea3101e 28
91886523 29#include <scsi/scsi.h>
dea3101e
JB
30#include <scsi/scsi_cmnd.h>
31#include <scsi/scsi_device.h>
32#include <scsi/scsi_host.h>
f888ba3c 33#include <scsi/scsi_transport_fc.h>
da0436e9 34#include <scsi/fc/fc_fs.h>
0d878419 35#include <linux/aer.h>
dea3101e 36
da0436e9 37#include "lpfc_hw4.h"
dea3101e
JB
38#include "lpfc_hw.h"
39#include "lpfc_sli.h"
da0436e9 40#include "lpfc_sli4.h"
ea2151b4 41#include "lpfc_nl.h"
dea3101e
JB
42#include "lpfc_disc.h"
43#include "lpfc_scsi.h"
44#include "lpfc.h"
45#include "lpfc_crtn.h"
46#include "lpfc_logmsg.h"
47#include "lpfc_compat.h"
858c9f6c 48#include "lpfc_debugfs.h"
04c68496 49#include "lpfc_vport.h"
61bda8f7 50#include "lpfc_version.h"
dea3101e
JB
51
52/* There are only four IOCB completion types. */
53typedef enum _lpfc_iocb_type {
54 LPFC_UNKNOWN_IOCB,
55 LPFC_UNSOL_IOCB,
56 LPFC_SOL_IOCB,
57 LPFC_ABORT_IOCB
58} lpfc_iocb_type;
59
4f774513
JS
60
61/* Provide function prototypes local to this module. */
62static int lpfc_sli_issue_mbox_s4(struct lpfc_hba *, LPFC_MBOXQ_t *,
63 uint32_t);
64static int lpfc_sli4_read_rev(struct lpfc_hba *, LPFC_MBOXQ_t *,
45ed1190
JS
65 uint8_t *, uint32_t *);
66static struct lpfc_iocbq *lpfc_sli4_els_wcqe_to_rspiocbq(struct lpfc_hba *,
67 struct lpfc_iocbq *);
6669f9bb
JS
68static void lpfc_sli4_send_seq_to_ulp(struct lpfc_vport *,
69 struct hbq_dmabuf *);
0558056c
JS
70static int lpfc_sli4_fp_handle_wcqe(struct lpfc_hba *, struct lpfc_queue *,
71 struct lpfc_cqe *);
8a9d2e80
JS
72static int lpfc_sli4_post_els_sgl_list(struct lpfc_hba *, struct list_head *,
73 int);
ba20c853
JS
74static void lpfc_sli4_hba_handle_eqe(struct lpfc_hba *, struct lpfc_eqe *,
75 uint32_t);
e8d3c3b1
JS
76static bool lpfc_sli4_mbox_completions_pending(struct lpfc_hba *phba);
77static bool lpfc_sli4_process_missed_mbox_completions(struct lpfc_hba *phba);
0558056c 78
4f774513
JS
79static IOCB_t *
80lpfc_get_iocb_from_iocbq(struct lpfc_iocbq *iocbq)
81{
82 return &iocbq->iocb;
83}
84
85/**
86 * lpfc_sli4_wq_put - Put a Work Queue Entry on an Work Queue
87 * @q: The Work Queue to operate on.
88 * @wqe: The work Queue Entry to put on the Work queue.
89 *
90 * This routine will copy the contents of @wqe to the next available entry on
91 * the @q. This function will then ring the Work Queue Doorbell to signal the
92 * HBA to start processing the Work Queue Entry. This function returns 0 if
93 * successful. If no entries are available on @q then this function will return
94 * -ENOMEM.
95 * The caller is expected to hold the hbalock when calling this routine.
96 **/
97static uint32_t
98lpfc_sli4_wq_put(struct lpfc_queue *q, union lpfc_wqe *wqe)
99{
2e90f4b5 100 union lpfc_wqe *temp_wqe;
4f774513
JS
101 struct lpfc_register doorbell;
102 uint32_t host_index;
027140ea 103 uint32_t idx;
4f774513 104
2e90f4b5
JS
105 /* sanity check on queue memory */
106 if (unlikely(!q))
107 return -ENOMEM;
108 temp_wqe = q->qe[q->host_index].wqe;
109
4f774513 110 /* If the host has not yet processed the next entry then we are done */
027140ea
JS
111 idx = ((q->host_index + 1) % q->entry_count);
112 if (idx == q->hba_index) {
b84daac9 113 q->WQ_overflow++;
4f774513 114 return -ENOMEM;
b84daac9
JS
115 }
116 q->WQ_posted++;
4f774513 117 /* set consumption flag every once in a while */
ff78d8f9 118 if (!((q->host_index + 1) % q->entry_repost))
f0d9bccc 119 bf_set(wqe_wqec, &wqe->generic.wqe_com, 1);
fedd3b7b
JS
120 if (q->phba->sli3_options & LPFC_SLI4_PHWQ_ENABLED)
121 bf_set(wqe_wqid, &wqe->generic.wqe_com, q->queue_id);
4f774513 122 lpfc_sli_pcimem_bcopy(wqe, temp_wqe, q->entry_size);
6b3b3bdb
JS
123 /* ensure WQE bcopy flushed before doorbell write */
124 wmb();
4f774513
JS
125
126 /* Update the host index before invoking device */
127 host_index = q->host_index;
027140ea
JS
128
129 q->host_index = idx;
4f774513
JS
130
131 /* Ring Doorbell */
132 doorbell.word0 = 0;
962bc51b
JS
133 if (q->db_format == LPFC_DB_LIST_FORMAT) {
134 bf_set(lpfc_wq_db_list_fm_num_posted, &doorbell, 1);
135 bf_set(lpfc_wq_db_list_fm_index, &doorbell, host_index);
136 bf_set(lpfc_wq_db_list_fm_id, &doorbell, q->queue_id);
137 } else if (q->db_format == LPFC_DB_RING_FORMAT) {
138 bf_set(lpfc_wq_db_ring_fm_num_posted, &doorbell, 1);
139 bf_set(lpfc_wq_db_ring_fm_id, &doorbell, q->queue_id);
140 } else {
141 return -EINVAL;
142 }
143 writel(doorbell.word0, q->db_regaddr);
4f774513
JS
144
145 return 0;
146}
147
148/**
149 * lpfc_sli4_wq_release - Updates internal hba index for WQ
150 * @q: The Work Queue to operate on.
151 * @index: The index to advance the hba index to.
152 *
153 * This routine will update the HBA index of a queue to reflect consumption of
154 * Work Queue Entries by the HBA. When the HBA indicates that it has consumed
155 * an entry the host calls this function to update the queue's internal
156 * pointers. This routine returns the number of entries that were consumed by
157 * the HBA.
158 **/
159static uint32_t
160lpfc_sli4_wq_release(struct lpfc_queue *q, uint32_t index)
161{
162 uint32_t released = 0;
163
2e90f4b5
JS
164 /* sanity check on queue memory */
165 if (unlikely(!q))
166 return 0;
167
4f774513
JS
168 if (q->hba_index == index)
169 return 0;
170 do {
171 q->hba_index = ((q->hba_index + 1) % q->entry_count);
172 released++;
173 } while (q->hba_index != index);
174 return released;
175}
176
177/**
178 * lpfc_sli4_mq_put - Put a Mailbox Queue Entry on an Mailbox Queue
179 * @q: The Mailbox Queue to operate on.
180 * @wqe: The Mailbox Queue Entry to put on the Work queue.
181 *
182 * This routine will copy the contents of @mqe to the next available entry on
183 * the @q. This function will then ring the Work Queue Doorbell to signal the
184 * HBA to start processing the Work Queue Entry. This function returns 0 if
185 * successful. If no entries are available on @q then this function will return
186 * -ENOMEM.
187 * The caller is expected to hold the hbalock when calling this routine.
188 **/
189static uint32_t
190lpfc_sli4_mq_put(struct lpfc_queue *q, struct lpfc_mqe *mqe)
191{
2e90f4b5 192 struct lpfc_mqe *temp_mqe;
4f774513 193 struct lpfc_register doorbell;
4f774513 194
2e90f4b5
JS
195 /* sanity check on queue memory */
196 if (unlikely(!q))
197 return -ENOMEM;
198 temp_mqe = q->qe[q->host_index].mqe;
199
4f774513
JS
200 /* If the host has not yet processed the next entry then we are done */
201 if (((q->host_index + 1) % q->entry_count) == q->hba_index)
202 return -ENOMEM;
203 lpfc_sli_pcimem_bcopy(mqe, temp_mqe, q->entry_size);
204 /* Save off the mailbox pointer for completion */
205 q->phba->mbox = (MAILBOX_t *)temp_mqe;
206
207 /* Update the host index before invoking device */
4f774513
JS
208 q->host_index = ((q->host_index + 1) % q->entry_count);
209
210 /* Ring Doorbell */
211 doorbell.word0 = 0;
212 bf_set(lpfc_mq_doorbell_num_posted, &doorbell, 1);
213 bf_set(lpfc_mq_doorbell_id, &doorbell, q->queue_id);
214 writel(doorbell.word0, q->phba->sli4_hba.MQDBregaddr);
4f774513
JS
215 return 0;
216}
217
218/**
219 * lpfc_sli4_mq_release - Updates internal hba index for MQ
220 * @q: The Mailbox Queue to operate on.
221 *
222 * This routine will update the HBA index of a queue to reflect consumption of
223 * a Mailbox Queue Entry by the HBA. When the HBA indicates that it has consumed
224 * an entry the host calls this function to update the queue's internal
225 * pointers. This routine returns the number of entries that were consumed by
226 * the HBA.
227 **/
228static uint32_t
229lpfc_sli4_mq_release(struct lpfc_queue *q)
230{
2e90f4b5
JS
231 /* sanity check on queue memory */
232 if (unlikely(!q))
233 return 0;
234
4f774513
JS
235 /* Clear the mailbox pointer for completion */
236 q->phba->mbox = NULL;
237 q->hba_index = ((q->hba_index + 1) % q->entry_count);
238 return 1;
239}
240
241/**
242 * lpfc_sli4_eq_get - Gets the next valid EQE from a EQ
243 * @q: The Event Queue to get the first valid EQE from
244 *
245 * This routine will get the first valid Event Queue Entry from @q, update
246 * the queue's internal hba index, and return the EQE. If no valid EQEs are in
247 * the Queue (no more work to do), or the Queue is full of EQEs that have been
248 * processed, but not popped back to the HBA then this routine will return NULL.
249 **/
250static struct lpfc_eqe *
251lpfc_sli4_eq_get(struct lpfc_queue *q)
252{
2e90f4b5 253 struct lpfc_eqe *eqe;
027140ea 254 uint32_t idx;
2e90f4b5
JS
255
256 /* sanity check on queue memory */
257 if (unlikely(!q))
258 return NULL;
259 eqe = q->qe[q->hba_index].eqe;
4f774513
JS
260
261 /* If the next EQE is not valid then we are done */
cb5172ea 262 if (!bf_get_le32(lpfc_eqe_valid, eqe))
4f774513
JS
263 return NULL;
264 /* If the host has not yet processed the next entry then we are done */
027140ea
JS
265 idx = ((q->hba_index + 1) % q->entry_count);
266 if (idx == q->host_index)
4f774513
JS
267 return NULL;
268
027140ea 269 q->hba_index = idx;
27f344eb
JS
270
271 /*
272 * insert barrier for instruction interlock : data from the hardware
273 * must have the valid bit checked before it can be copied and acted
2ea259ee
JS
274 * upon. Speculative instructions were allowing a bcopy at the start
275 * of lpfc_sli4_fp_handle_wcqe(), which is called immediately
276 * after our return, to copy data before the valid bit check above
277 * was done. As such, some of the copied data was stale. The barrier
278 * ensures the check is before any data is copied.
27f344eb
JS
279 */
280 mb();
4f774513
JS
281 return eqe;
282}
283
ba20c853
JS
284/**
285 * lpfc_sli4_eq_clr_intr - Turn off interrupts from this EQ
286 * @q: The Event Queue to disable interrupts
287 *
288 **/
289static inline void
290lpfc_sli4_eq_clr_intr(struct lpfc_queue *q)
291{
292 struct lpfc_register doorbell;
293
294 doorbell.word0 = 0;
295 bf_set(lpfc_eqcq_doorbell_eqci, &doorbell, 1);
296 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_EVENT);
297 bf_set(lpfc_eqcq_doorbell_eqid_hi, &doorbell,
298 (q->queue_id >> LPFC_EQID_HI_FIELD_SHIFT));
299 bf_set(lpfc_eqcq_doorbell_eqid_lo, &doorbell, q->queue_id);
300 writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
301}
302
4f774513
JS
303/**
304 * lpfc_sli4_eq_release - Indicates the host has finished processing an EQ
305 * @q: The Event Queue that the host has completed processing for.
306 * @arm: Indicates whether the host wants to arms this CQ.
307 *
308 * This routine will mark all Event Queue Entries on @q, from the last
309 * known completed entry to the last entry that was processed, as completed
310 * by clearing the valid bit for each completion queue entry. Then it will
311 * notify the HBA, by ringing the doorbell, that the EQEs have been processed.
312 * The internal host index in the @q will be updated by this routine to indicate
313 * that the host has finished processing the entries. The @arm parameter
314 * indicates that the queue should be rearmed when ringing the doorbell.
315 *
316 * This function will return the number of EQEs that were popped.
317 **/
318uint32_t
319lpfc_sli4_eq_release(struct lpfc_queue *q, bool arm)
320{
321 uint32_t released = 0;
322 struct lpfc_eqe *temp_eqe;
323 struct lpfc_register doorbell;
324
2e90f4b5
JS
325 /* sanity check on queue memory */
326 if (unlikely(!q))
327 return 0;
328
4f774513
JS
329 /* while there are valid entries */
330 while (q->hba_index != q->host_index) {
331 temp_eqe = q->qe[q->host_index].eqe;
cb5172ea 332 bf_set_le32(lpfc_eqe_valid, temp_eqe, 0);
4f774513
JS
333 released++;
334 q->host_index = ((q->host_index + 1) % q->entry_count);
335 }
336 if (unlikely(released == 0 && !arm))
337 return 0;
338
339 /* ring doorbell for number popped */
340 doorbell.word0 = 0;
341 if (arm) {
342 bf_set(lpfc_eqcq_doorbell_arm, &doorbell, 1);
343 bf_set(lpfc_eqcq_doorbell_eqci, &doorbell, 1);
344 }
345 bf_set(lpfc_eqcq_doorbell_num_released, &doorbell, released);
346 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_EVENT);
6b5151fd
JS
347 bf_set(lpfc_eqcq_doorbell_eqid_hi, &doorbell,
348 (q->queue_id >> LPFC_EQID_HI_FIELD_SHIFT));
349 bf_set(lpfc_eqcq_doorbell_eqid_lo, &doorbell, q->queue_id);
4f774513 350 writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
a747c9ce
JS
351 /* PCI read to flush PCI pipeline on re-arming for INTx mode */
352 if ((q->phba->intr_type == INTx) && (arm == LPFC_QUEUE_REARM))
353 readl(q->phba->sli4_hba.EQCQDBregaddr);
4f774513
JS
354 return released;
355}
356
357/**
358 * lpfc_sli4_cq_get - Gets the next valid CQE from a CQ
359 * @q: The Completion Queue to get the first valid CQE from
360 *
361 * This routine will get the first valid Completion Queue Entry from @q, update
362 * the queue's internal hba index, and return the CQE. If no valid CQEs are in
363 * the Queue (no more work to do), or the Queue is full of CQEs that have been
364 * processed, but not popped back to the HBA then this routine will return NULL.
365 **/
366static struct lpfc_cqe *
367lpfc_sli4_cq_get(struct lpfc_queue *q)
368{
369 struct lpfc_cqe *cqe;
027140ea 370 uint32_t idx;
4f774513 371
2e90f4b5
JS
372 /* sanity check on queue memory */
373 if (unlikely(!q))
374 return NULL;
375
4f774513 376 /* If the next CQE is not valid then we are done */
cb5172ea 377 if (!bf_get_le32(lpfc_cqe_valid, q->qe[q->hba_index].cqe))
4f774513
JS
378 return NULL;
379 /* If the host has not yet processed the next entry then we are done */
027140ea
JS
380 idx = ((q->hba_index + 1) % q->entry_count);
381 if (idx == q->host_index)
4f774513
JS
382 return NULL;
383
384 cqe = q->qe[q->hba_index].cqe;
027140ea 385 q->hba_index = idx;
27f344eb
JS
386
387 /*
388 * insert barrier for instruction interlock : data from the hardware
389 * must have the valid bit checked before it can be copied and acted
2ea259ee
JS
390 * upon. Given what was seen in lpfc_sli4_cq_get() of speculative
391 * instructions allowing action on content before valid bit checked,
392 * add barrier here as well. May not be needed as "content" is a
393 * single 32-bit entity here (vs multi word structure for cq's).
27f344eb
JS
394 */
395 mb();
4f774513
JS
396 return cqe;
397}
398
399/**
400 * lpfc_sli4_cq_release - Indicates the host has finished processing a CQ
401 * @q: The Completion Queue that the host has completed processing for.
402 * @arm: Indicates whether the host wants to arms this CQ.
403 *
404 * This routine will mark all Completion queue entries on @q, from the last
405 * known completed entry to the last entry that was processed, as completed
406 * by clearing the valid bit for each completion queue entry. Then it will
407 * notify the HBA, by ringing the doorbell, that the CQEs have been processed.
408 * The internal host index in the @q will be updated by this routine to indicate
409 * that the host has finished processing the entries. The @arm parameter
410 * indicates that the queue should be rearmed when ringing the doorbell.
411 *
412 * This function will return the number of CQEs that were released.
413 **/
414uint32_t
415lpfc_sli4_cq_release(struct lpfc_queue *q, bool arm)
416{
417 uint32_t released = 0;
418 struct lpfc_cqe *temp_qe;
419 struct lpfc_register doorbell;
420
2e90f4b5
JS
421 /* sanity check on queue memory */
422 if (unlikely(!q))
423 return 0;
4f774513
JS
424 /* while there are valid entries */
425 while (q->hba_index != q->host_index) {
426 temp_qe = q->qe[q->host_index].cqe;
cb5172ea 427 bf_set_le32(lpfc_cqe_valid, temp_qe, 0);
4f774513
JS
428 released++;
429 q->host_index = ((q->host_index + 1) % q->entry_count);
430 }
431 if (unlikely(released == 0 && !arm))
432 return 0;
433
434 /* ring doorbell for number popped */
435 doorbell.word0 = 0;
436 if (arm)
437 bf_set(lpfc_eqcq_doorbell_arm, &doorbell, 1);
438 bf_set(lpfc_eqcq_doorbell_num_released, &doorbell, released);
439 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_COMPLETION);
6b5151fd
JS
440 bf_set(lpfc_eqcq_doorbell_cqid_hi, &doorbell,
441 (q->queue_id >> LPFC_CQID_HI_FIELD_SHIFT));
442 bf_set(lpfc_eqcq_doorbell_cqid_lo, &doorbell, q->queue_id);
4f774513
JS
443 writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
444 return released;
445}
446
447/**
448 * lpfc_sli4_rq_put - Put a Receive Buffer Queue Entry on a Receive Queue
449 * @q: The Header Receive Queue to operate on.
450 * @wqe: The Receive Queue Entry to put on the Receive queue.
451 *
452 * This routine will copy the contents of @wqe to the next available entry on
453 * the @q. This function will then ring the Receive Queue Doorbell to signal the
454 * HBA to start processing the Receive Queue Entry. This function returns the
455 * index that the rqe was copied to if successful. If no entries are available
456 * on @q then this function will return -ENOMEM.
457 * The caller is expected to hold the hbalock when calling this routine.
458 **/
459static int
460lpfc_sli4_rq_put(struct lpfc_queue *hq, struct lpfc_queue *dq,
461 struct lpfc_rqe *hrqe, struct lpfc_rqe *drqe)
462{
2e90f4b5
JS
463 struct lpfc_rqe *temp_hrqe;
464 struct lpfc_rqe *temp_drqe;
4f774513 465 struct lpfc_register doorbell;
5a25bf36 466 int put_index;
4f774513 467
2e90f4b5
JS
468 /* sanity check on queue memory */
469 if (unlikely(!hq) || unlikely(!dq))
470 return -ENOMEM;
5a25bf36 471 put_index = hq->host_index;
2e90f4b5
JS
472 temp_hrqe = hq->qe[hq->host_index].rqe;
473 temp_drqe = dq->qe[dq->host_index].rqe;
474
4f774513
JS
475 if (hq->type != LPFC_HRQ || dq->type != LPFC_DRQ)
476 return -EINVAL;
477 if (hq->host_index != dq->host_index)
478 return -EINVAL;
479 /* If the host has not yet processed the next entry then we are done */
480 if (((hq->host_index + 1) % hq->entry_count) == hq->hba_index)
481 return -EBUSY;
482 lpfc_sli_pcimem_bcopy(hrqe, temp_hrqe, hq->entry_size);
483 lpfc_sli_pcimem_bcopy(drqe, temp_drqe, dq->entry_size);
484
485 /* Update the host index to point to the next slot */
486 hq->host_index = ((hq->host_index + 1) % hq->entry_count);
487 dq->host_index = ((dq->host_index + 1) % dq->entry_count);
488
489 /* Ring The Header Receive Queue Doorbell */
73d91e50 490 if (!(hq->host_index % hq->entry_repost)) {
4f774513 491 doorbell.word0 = 0;
962bc51b
JS
492 if (hq->db_format == LPFC_DB_RING_FORMAT) {
493 bf_set(lpfc_rq_db_ring_fm_num_posted, &doorbell,
494 hq->entry_repost);
495 bf_set(lpfc_rq_db_ring_fm_id, &doorbell, hq->queue_id);
496 } else if (hq->db_format == LPFC_DB_LIST_FORMAT) {
497 bf_set(lpfc_rq_db_list_fm_num_posted, &doorbell,
498 hq->entry_repost);
499 bf_set(lpfc_rq_db_list_fm_index, &doorbell,
500 hq->host_index);
501 bf_set(lpfc_rq_db_list_fm_id, &doorbell, hq->queue_id);
502 } else {
503 return -EINVAL;
504 }
505 writel(doorbell.word0, hq->db_regaddr);
4f774513
JS
506 }
507 return put_index;
508}
509
510/**
511 * lpfc_sli4_rq_release - Updates internal hba index for RQ
512 * @q: The Header Receive Queue to operate on.
513 *
514 * This routine will update the HBA index of a queue to reflect consumption of
515 * one Receive Queue Entry by the HBA. When the HBA indicates that it has
516 * consumed an entry the host calls this function to update the queue's
517 * internal pointers. This routine returns the number of entries that were
518 * consumed by the HBA.
519 **/
520static uint32_t
521lpfc_sli4_rq_release(struct lpfc_queue *hq, struct lpfc_queue *dq)
522{
2e90f4b5
JS
523 /* sanity check on queue memory */
524 if (unlikely(!hq) || unlikely(!dq))
525 return 0;
526
4f774513
JS
527 if ((hq->type != LPFC_HRQ) || (dq->type != LPFC_DRQ))
528 return 0;
529 hq->hba_index = ((hq->hba_index + 1) % hq->entry_count);
530 dq->hba_index = ((dq->hba_index + 1) % dq->entry_count);
531 return 1;
532}
533
e59058c4 534/**
3621a710 535 * lpfc_cmd_iocb - Get next command iocb entry in the ring
e59058c4
JS
536 * @phba: Pointer to HBA context object.
537 * @pring: Pointer to driver SLI ring object.
538 *
539 * This function returns pointer to next command iocb entry
540 * in the command ring. The caller must hold hbalock to prevent
541 * other threads consume the next command iocb.
542 * SLI-2/SLI-3 provide different sized iocbs.
543 **/
ed957684
JS
544static inline IOCB_t *
545lpfc_cmd_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
546{
7e56aa25
JS
547 return (IOCB_t *) (((char *) pring->sli.sli3.cmdringaddr) +
548 pring->sli.sli3.cmdidx * phba->iocb_cmd_size);
ed957684
JS
549}
550
e59058c4 551/**
3621a710 552 * lpfc_resp_iocb - Get next response iocb entry in the ring
e59058c4
JS
553 * @phba: Pointer to HBA context object.
554 * @pring: Pointer to driver SLI ring object.
555 *
556 * This function returns pointer to next response iocb entry
557 * in the response ring. The caller must hold hbalock to make sure
558 * that no other thread consume the next response iocb.
559 * SLI-2/SLI-3 provide different sized iocbs.
560 **/
ed957684
JS
561static inline IOCB_t *
562lpfc_resp_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
563{
7e56aa25
JS
564 return (IOCB_t *) (((char *) pring->sli.sli3.rspringaddr) +
565 pring->sli.sli3.rspidx * phba->iocb_rsp_size);
ed957684
JS
566}
567
e59058c4 568/**
3621a710 569 * __lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
e59058c4
JS
570 * @phba: Pointer to HBA context object.
571 *
572 * This function is called with hbalock held. This function
573 * allocates a new driver iocb object from the iocb pool. If the
574 * allocation is successful, it returns pointer to the newly
575 * allocated iocb object else it returns NULL.
576 **/
4f2e66c6 577struct lpfc_iocbq *
2e0fef85 578__lpfc_sli_get_iocbq(struct lpfc_hba *phba)
0bd4ca25
JSEC
579{
580 struct list_head *lpfc_iocb_list = &phba->lpfc_iocb_list;
581 struct lpfc_iocbq * iocbq = NULL;
582
1c2ba475
JT
583 lockdep_assert_held(&phba->hbalock);
584
0bd4ca25 585 list_remove_head(lpfc_iocb_list, iocbq, struct lpfc_iocbq, list);
2a9bf3d0
JS
586 if (iocbq)
587 phba->iocb_cnt++;
588 if (phba->iocb_cnt > phba->iocb_max)
589 phba->iocb_max = phba->iocb_cnt;
0bd4ca25
JSEC
590 return iocbq;
591}
592
da0436e9
JS
593/**
594 * __lpfc_clear_active_sglq - Remove the active sglq for this XRI.
595 * @phba: Pointer to HBA context object.
596 * @xritag: XRI value.
597 *
598 * This function clears the sglq pointer from the array of acive
599 * sglq's. The xritag that is passed in is used to index into the
600 * array. Before the xritag can be used it needs to be adjusted
601 * by subtracting the xribase.
602 *
603 * Returns sglq ponter = success, NULL = Failure.
604 **/
605static struct lpfc_sglq *
606__lpfc_clear_active_sglq(struct lpfc_hba *phba, uint16_t xritag)
607{
da0436e9 608 struct lpfc_sglq *sglq;
6d368e53
JS
609
610 sglq = phba->sli4_hba.lpfc_sglq_active_list[xritag];
611 phba->sli4_hba.lpfc_sglq_active_list[xritag] = NULL;
da0436e9
JS
612 return sglq;
613}
614
615/**
616 * __lpfc_get_active_sglq - Get the active sglq for this XRI.
617 * @phba: Pointer to HBA context object.
618 * @xritag: XRI value.
619 *
620 * This function returns the sglq pointer from the array of acive
621 * sglq's. The xritag that is passed in is used to index into the
622 * array. Before the xritag can be used it needs to be adjusted
623 * by subtracting the xribase.
624 *
625 * Returns sglq ponter = success, NULL = Failure.
626 **/
0f65ff68 627struct lpfc_sglq *
da0436e9
JS
628__lpfc_get_active_sglq(struct lpfc_hba *phba, uint16_t xritag)
629{
da0436e9 630 struct lpfc_sglq *sglq;
6d368e53
JS
631
632 sglq = phba->sli4_hba.lpfc_sglq_active_list[xritag];
da0436e9
JS
633 return sglq;
634}
635
19ca7609 636/**
1151e3ec 637 * lpfc_clr_rrq_active - Clears RRQ active bit in xri_bitmap.
19ca7609
JS
638 * @phba: Pointer to HBA context object.
639 * @xritag: xri used in this exchange.
640 * @rrq: The RRQ to be cleared.
641 *
19ca7609 642 **/
1151e3ec
JS
643void
644lpfc_clr_rrq_active(struct lpfc_hba *phba,
645 uint16_t xritag,
646 struct lpfc_node_rrq *rrq)
19ca7609 647{
1151e3ec 648 struct lpfc_nodelist *ndlp = NULL;
19ca7609 649
1151e3ec
JS
650 if ((rrq->vport) && NLP_CHK_NODE_ACT(rrq->ndlp))
651 ndlp = lpfc_findnode_did(rrq->vport, rrq->nlp_DID);
19ca7609
JS
652
653 /* The target DID could have been swapped (cable swap)
654 * we should use the ndlp from the findnode if it is
655 * available.
656 */
1151e3ec 657 if ((!ndlp) && rrq->ndlp)
19ca7609
JS
658 ndlp = rrq->ndlp;
659
1151e3ec
JS
660 if (!ndlp)
661 goto out;
662
cff261f6 663 if (test_and_clear_bit(xritag, ndlp->active_rrqs_xri_bitmap)) {
19ca7609
JS
664 rrq->send_rrq = 0;
665 rrq->xritag = 0;
666 rrq->rrq_stop_time = 0;
667 }
1151e3ec 668out:
19ca7609
JS
669 mempool_free(rrq, phba->rrq_pool);
670}
671
672/**
673 * lpfc_handle_rrq_active - Checks if RRQ has waithed RATOV.
674 * @phba: Pointer to HBA context object.
675 *
676 * This function is called with hbalock held. This function
677 * Checks if stop_time (ratov from setting rrq active) has
678 * been reached, if it has and the send_rrq flag is set then
679 * it will call lpfc_send_rrq. If the send_rrq flag is not set
680 * then it will just call the routine to clear the rrq and
681 * free the rrq resource.
682 * The timer is set to the next rrq that is going to expire before
683 * leaving the routine.
684 *
685 **/
686void
687lpfc_handle_rrq_active(struct lpfc_hba *phba)
688{
689 struct lpfc_node_rrq *rrq;
690 struct lpfc_node_rrq *nextrrq;
691 unsigned long next_time;
692 unsigned long iflags;
1151e3ec 693 LIST_HEAD(send_rrq);
19ca7609
JS
694
695 spin_lock_irqsave(&phba->hbalock, iflags);
696 phba->hba_flag &= ~HBA_RRQ_ACTIVE;
256ec0d0 697 next_time = jiffies + msecs_to_jiffies(1000 * (phba->fc_ratov + 1));
19ca7609 698 list_for_each_entry_safe(rrq, nextrrq,
1151e3ec
JS
699 &phba->active_rrq_list, list) {
700 if (time_after(jiffies, rrq->rrq_stop_time))
701 list_move(&rrq->list, &send_rrq);
702 else if (time_before(rrq->rrq_stop_time, next_time))
19ca7609
JS
703 next_time = rrq->rrq_stop_time;
704 }
705 spin_unlock_irqrestore(&phba->hbalock, iflags);
06918ac5
JS
706 if ((!list_empty(&phba->active_rrq_list)) &&
707 (!(phba->pport->load_flag & FC_UNLOADING)))
19ca7609 708 mod_timer(&phba->rrq_tmr, next_time);
1151e3ec
JS
709 list_for_each_entry_safe(rrq, nextrrq, &send_rrq, list) {
710 list_del(&rrq->list);
711 if (!rrq->send_rrq)
712 /* this call will free the rrq */
713 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
714 else if (lpfc_send_rrq(phba, rrq)) {
715 /* if we send the rrq then the completion handler
716 * will clear the bit in the xribitmap.
717 */
718 lpfc_clr_rrq_active(phba, rrq->xritag,
719 rrq);
720 }
721 }
19ca7609
JS
722}
723
724/**
725 * lpfc_get_active_rrq - Get the active RRQ for this exchange.
726 * @vport: Pointer to vport context object.
727 * @xri: The xri used in the exchange.
728 * @did: The targets DID for this exchange.
729 *
730 * returns NULL = rrq not found in the phba->active_rrq_list.
731 * rrq = rrq for this xri and target.
732 **/
733struct lpfc_node_rrq *
734lpfc_get_active_rrq(struct lpfc_vport *vport, uint16_t xri, uint32_t did)
735{
736 struct lpfc_hba *phba = vport->phba;
737 struct lpfc_node_rrq *rrq;
738 struct lpfc_node_rrq *nextrrq;
739 unsigned long iflags;
740
741 if (phba->sli_rev != LPFC_SLI_REV4)
742 return NULL;
743 spin_lock_irqsave(&phba->hbalock, iflags);
744 list_for_each_entry_safe(rrq, nextrrq, &phba->active_rrq_list, list) {
745 if (rrq->vport == vport && rrq->xritag == xri &&
746 rrq->nlp_DID == did){
747 list_del(&rrq->list);
748 spin_unlock_irqrestore(&phba->hbalock, iflags);
749 return rrq;
750 }
751 }
752 spin_unlock_irqrestore(&phba->hbalock, iflags);
753 return NULL;
754}
755
756/**
757 * lpfc_cleanup_vports_rrqs - Remove and clear the active RRQ for this vport.
758 * @vport: Pointer to vport context object.
1151e3ec
JS
759 * @ndlp: Pointer to the lpfc_node_list structure.
760 * If ndlp is NULL Remove all active RRQs for this vport from the
761 * phba->active_rrq_list and clear the rrq.
762 * If ndlp is not NULL then only remove rrqs for this vport & this ndlp.
19ca7609
JS
763 **/
764void
1151e3ec 765lpfc_cleanup_vports_rrqs(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
19ca7609
JS
766
767{
768 struct lpfc_hba *phba = vport->phba;
769 struct lpfc_node_rrq *rrq;
770 struct lpfc_node_rrq *nextrrq;
771 unsigned long iflags;
1151e3ec 772 LIST_HEAD(rrq_list);
19ca7609
JS
773
774 if (phba->sli_rev != LPFC_SLI_REV4)
775 return;
1151e3ec
JS
776 if (!ndlp) {
777 lpfc_sli4_vport_delete_els_xri_aborted(vport);
778 lpfc_sli4_vport_delete_fcp_xri_aborted(vport);
19ca7609 779 }
1151e3ec
JS
780 spin_lock_irqsave(&phba->hbalock, iflags);
781 list_for_each_entry_safe(rrq, nextrrq, &phba->active_rrq_list, list)
782 if ((rrq->vport == vport) && (!ndlp || rrq->ndlp == ndlp))
783 list_move(&rrq->list, &rrq_list);
19ca7609 784 spin_unlock_irqrestore(&phba->hbalock, iflags);
1151e3ec
JS
785
786 list_for_each_entry_safe(rrq, nextrrq, &rrq_list, list) {
787 list_del(&rrq->list);
788 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
789 }
19ca7609
JS
790}
791
19ca7609 792/**
1151e3ec 793 * lpfc_test_rrq_active - Test RRQ bit in xri_bitmap.
19ca7609
JS
794 * @phba: Pointer to HBA context object.
795 * @ndlp: Targets nodelist pointer for this exchange.
796 * @xritag the xri in the bitmap to test.
797 *
798 * This function is called with hbalock held. This function
799 * returns 0 = rrq not active for this xri
800 * 1 = rrq is valid for this xri.
801 **/
1151e3ec
JS
802int
803lpfc_test_rrq_active(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp,
19ca7609
JS
804 uint16_t xritag)
805{
1c2ba475 806 lockdep_assert_held(&phba->hbalock);
19ca7609
JS
807 if (!ndlp)
808 return 0;
cff261f6
JS
809 if (!ndlp->active_rrqs_xri_bitmap)
810 return 0;
811 if (test_bit(xritag, ndlp->active_rrqs_xri_bitmap))
19ca7609
JS
812 return 1;
813 else
814 return 0;
815}
816
817/**
818 * lpfc_set_rrq_active - set RRQ active bit in xri_bitmap.
819 * @phba: Pointer to HBA context object.
820 * @ndlp: nodelist pointer for this target.
821 * @xritag: xri used in this exchange.
822 * @rxid: Remote Exchange ID.
823 * @send_rrq: Flag used to determine if we should send rrq els cmd.
824 *
825 * This function takes the hbalock.
826 * The active bit is always set in the active rrq xri_bitmap even
827 * if there is no slot avaiable for the other rrq information.
828 *
829 * returns 0 rrq actived for this xri
830 * < 0 No memory or invalid ndlp.
831 **/
832int
833lpfc_set_rrq_active(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp,
b42c07c8 834 uint16_t xritag, uint16_t rxid, uint16_t send_rrq)
19ca7609 835{
19ca7609 836 unsigned long iflags;
b42c07c8
JS
837 struct lpfc_node_rrq *rrq;
838 int empty;
839
840 if (!ndlp)
841 return -EINVAL;
842
843 if (!phba->cfg_enable_rrq)
844 return -EINVAL;
19ca7609
JS
845
846 spin_lock_irqsave(&phba->hbalock, iflags);
b42c07c8
JS
847 if (phba->pport->load_flag & FC_UNLOADING) {
848 phba->hba_flag &= ~HBA_RRQ_ACTIVE;
849 goto out;
850 }
851
852 /*
853 * set the active bit even if there is no mem available.
854 */
855 if (NLP_CHK_FREE_REQ(ndlp))
856 goto out;
857
858 if (ndlp->vport && (ndlp->vport->load_flag & FC_UNLOADING))
859 goto out;
860
cff261f6
JS
861 if (!ndlp->active_rrqs_xri_bitmap)
862 goto out;
863
864 if (test_and_set_bit(xritag, ndlp->active_rrqs_xri_bitmap))
b42c07c8
JS
865 goto out;
866
19ca7609 867 spin_unlock_irqrestore(&phba->hbalock, iflags);
b42c07c8
JS
868 rrq = mempool_alloc(phba->rrq_pool, GFP_KERNEL);
869 if (!rrq) {
870 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
871 "3155 Unable to allocate RRQ xri:0x%x rxid:0x%x"
872 " DID:0x%x Send:%d\n",
873 xritag, rxid, ndlp->nlp_DID, send_rrq);
874 return -EINVAL;
875 }
e5771b4d
JS
876 if (phba->cfg_enable_rrq == 1)
877 rrq->send_rrq = send_rrq;
878 else
879 rrq->send_rrq = 0;
b42c07c8 880 rrq->xritag = xritag;
256ec0d0
JS
881 rrq->rrq_stop_time = jiffies +
882 msecs_to_jiffies(1000 * (phba->fc_ratov + 1));
b42c07c8
JS
883 rrq->ndlp = ndlp;
884 rrq->nlp_DID = ndlp->nlp_DID;
885 rrq->vport = ndlp->vport;
886 rrq->rxid = rxid;
b42c07c8
JS
887 spin_lock_irqsave(&phba->hbalock, iflags);
888 empty = list_empty(&phba->active_rrq_list);
889 list_add_tail(&rrq->list, &phba->active_rrq_list);
890 phba->hba_flag |= HBA_RRQ_ACTIVE;
891 if (empty)
892 lpfc_worker_wake_up(phba);
893 spin_unlock_irqrestore(&phba->hbalock, iflags);
894 return 0;
895out:
896 spin_unlock_irqrestore(&phba->hbalock, iflags);
897 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
898 "2921 Can't set rrq active xri:0x%x rxid:0x%x"
899 " DID:0x%x Send:%d\n",
900 xritag, rxid, ndlp->nlp_DID, send_rrq);
901 return -EINVAL;
19ca7609
JS
902}
903
da0436e9
JS
904/**
905 * __lpfc_sli_get_sglq - Allocates an iocb object from sgl pool
906 * @phba: Pointer to HBA context object.
19ca7609 907 * @piocb: Pointer to the iocbq.
da0436e9 908 *
dafe8cea 909 * This function is called with the ring lock held. This function
6d368e53 910 * gets a new driver sglq object from the sglq list. If the
da0436e9
JS
911 * list is not empty then it is successful, it returns pointer to the newly
912 * allocated sglq object else it returns NULL.
913 **/
914static struct lpfc_sglq *
19ca7609 915__lpfc_sli_get_sglq(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq)
da0436e9
JS
916{
917 struct list_head *lpfc_sgl_list = &phba->sli4_hba.lpfc_sgl_list;
918 struct lpfc_sglq *sglq = NULL;
19ca7609 919 struct lpfc_sglq *start_sglq = NULL;
19ca7609
JS
920 struct lpfc_scsi_buf *lpfc_cmd;
921 struct lpfc_nodelist *ndlp;
922 int found = 0;
923
1c2ba475
JT
924 lockdep_assert_held(&phba->hbalock);
925
19ca7609
JS
926 if (piocbq->iocb_flag & LPFC_IO_FCP) {
927 lpfc_cmd = (struct lpfc_scsi_buf *) piocbq->context1;
928 ndlp = lpfc_cmd->rdata->pnode;
be858b65 929 } else if ((piocbq->iocb.ulpCommand == CMD_GEN_REQUEST64_CR) &&
6c7cf486 930 !(piocbq->iocb_flag & LPFC_IO_LIBDFC)) {
19ca7609 931 ndlp = piocbq->context_un.ndlp;
6c7cf486
JS
932 } else if (piocbq->iocb_flag & LPFC_IO_LIBDFC) {
933 if (piocbq->iocb_flag & LPFC_IO_LOOPBACK)
934 ndlp = NULL;
935 else
936 ndlp = piocbq->context_un.ndlp;
937 } else {
19ca7609 938 ndlp = piocbq->context1;
6c7cf486 939 }
19ca7609 940
da0436e9 941 list_remove_head(lpfc_sgl_list, sglq, struct lpfc_sglq, list);
19ca7609
JS
942 start_sglq = sglq;
943 while (!found) {
944 if (!sglq)
945 return NULL;
ee0f4fe1 946 if (lpfc_test_rrq_active(phba, ndlp, sglq->sli4_lxritag)) {
19ca7609
JS
947 /* This xri has an rrq outstanding for this DID.
948 * put it back in the list and get another xri.
949 */
950 list_add_tail(&sglq->list, lpfc_sgl_list);
951 sglq = NULL;
952 list_remove_head(lpfc_sgl_list, sglq,
953 struct lpfc_sglq, list);
954 if (sglq == start_sglq) {
955 sglq = NULL;
956 break;
957 } else
958 continue;
959 }
960 sglq->ndlp = ndlp;
961 found = 1;
6d368e53 962 phba->sli4_hba.lpfc_sglq_active_list[sglq->sli4_lxritag] = sglq;
19ca7609
JS
963 sglq->state = SGL_ALLOCATED;
964 }
da0436e9
JS
965 return sglq;
966}
967
e59058c4 968/**
3621a710 969 * lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
e59058c4
JS
970 * @phba: Pointer to HBA context object.
971 *
972 * This function is called with no lock held. This function
973 * allocates a new driver iocb object from the iocb pool. If the
974 * allocation is successful, it returns pointer to the newly
975 * allocated iocb object else it returns NULL.
976 **/
2e0fef85
JS
977struct lpfc_iocbq *
978lpfc_sli_get_iocbq(struct lpfc_hba *phba)
979{
980 struct lpfc_iocbq * iocbq = NULL;
981 unsigned long iflags;
982
983 spin_lock_irqsave(&phba->hbalock, iflags);
984 iocbq = __lpfc_sli_get_iocbq(phba);
985 spin_unlock_irqrestore(&phba->hbalock, iflags);
986 return iocbq;
987}
988
4f774513
JS
989/**
990 * __lpfc_sli_release_iocbq_s4 - Release iocb to the iocb pool
991 * @phba: Pointer to HBA context object.
992 * @iocbq: Pointer to driver iocb object.
993 *
994 * This function is called with hbalock held to release driver
995 * iocb object to the iocb pool. The iotag in the iocb object
996 * does not change for each use of the iocb object. This function
997 * clears all other fields of the iocb object when it is freed.
998 * The sqlq structure that holds the xritag and phys and virtual
999 * mappings for the scatter gather list is retrieved from the
1000 * active array of sglq. The get of the sglq pointer also clears
1001 * the entry in the array. If the status of the IO indiactes that
1002 * this IO was aborted then the sglq entry it put on the
1003 * lpfc_abts_els_sgl_list until the CQ_ABORTED_XRI is received. If the
1004 * IO has good status or fails for any other reason then the sglq
1005 * entry is added to the free list (lpfc_sgl_list).
1006 **/
1007static void
1008__lpfc_sli_release_iocbq_s4(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1009{
1010 struct lpfc_sglq *sglq;
1011 size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
2a9bf3d0
JS
1012 unsigned long iflag = 0;
1013 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
4f774513 1014
1c2ba475
JT
1015 lockdep_assert_held(&phba->hbalock);
1016
4f774513
JS
1017 if (iocbq->sli4_xritag == NO_XRI)
1018 sglq = NULL;
1019 else
6d368e53
JS
1020 sglq = __lpfc_clear_active_sglq(phba, iocbq->sli4_lxritag);
1021
0e9bb8d7 1022
4f774513 1023 if (sglq) {
0f65ff68
JS
1024 if ((iocbq->iocb_flag & LPFC_EXCHANGE_BUSY) &&
1025 (sglq->state != SGL_XRI_ABORTED)) {
4f774513
JS
1026 spin_lock_irqsave(&phba->sli4_hba.abts_sgl_list_lock,
1027 iflag);
1028 list_add(&sglq->list,
1029 &phba->sli4_hba.lpfc_abts_els_sgl_list);
1030 spin_unlock_irqrestore(
1031 &phba->sli4_hba.abts_sgl_list_lock, iflag);
0f65ff68 1032 } else {
dafe8cea 1033 spin_lock_irqsave(&pring->ring_lock, iflag);
0f65ff68 1034 sglq->state = SGL_FREED;
19ca7609 1035 sglq->ndlp = NULL;
fedd3b7b
JS
1036 list_add_tail(&sglq->list,
1037 &phba->sli4_hba.lpfc_sgl_list);
dafe8cea 1038 spin_unlock_irqrestore(&pring->ring_lock, iflag);
2a9bf3d0
JS
1039
1040 /* Check if TXQ queue needs to be serviced */
0e9bb8d7 1041 if (!list_empty(&pring->txq))
2a9bf3d0 1042 lpfc_worker_wake_up(phba);
0f65ff68 1043 }
4f774513
JS
1044 }
1045
1046
1047 /*
1048 * Clean all volatile data fields, preserve iotag and node struct.
1049 */
1050 memset((char *)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
6d368e53 1051 iocbq->sli4_lxritag = NO_XRI;
4f774513
JS
1052 iocbq->sli4_xritag = NO_XRI;
1053 list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
1054}
1055
2a9bf3d0 1056
e59058c4 1057/**
3772a991 1058 * __lpfc_sli_release_iocbq_s3 - Release iocb to the iocb pool
e59058c4
JS
1059 * @phba: Pointer to HBA context object.
1060 * @iocbq: Pointer to driver iocb object.
1061 *
1062 * This function is called with hbalock held to release driver
1063 * iocb object to the iocb pool. The iotag in the iocb object
1064 * does not change for each use of the iocb object. This function
1065 * clears all other fields of the iocb object when it is freed.
1066 **/
a6ababd2 1067static void
3772a991 1068__lpfc_sli_release_iocbq_s3(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
604a3e30 1069{
2e0fef85 1070 size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
604a3e30 1071
1c2ba475 1072 lockdep_assert_held(&phba->hbalock);
0e9bb8d7 1073
604a3e30
JB
1074 /*
1075 * Clean all volatile data fields, preserve iotag and node struct.
1076 */
1077 memset((char*)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
3772a991 1078 iocbq->sli4_xritag = NO_XRI;
604a3e30
JB
1079 list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
1080}
1081
3772a991
JS
1082/**
1083 * __lpfc_sli_release_iocbq - Release iocb to the iocb pool
1084 * @phba: Pointer to HBA context object.
1085 * @iocbq: Pointer to driver iocb object.
1086 *
1087 * This function is called with hbalock held to release driver
1088 * iocb object to the iocb pool. The iotag in the iocb object
1089 * does not change for each use of the iocb object. This function
1090 * clears all other fields of the iocb object when it is freed.
1091 **/
1092static void
1093__lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1094{
1c2ba475
JT
1095 lockdep_assert_held(&phba->hbalock);
1096
3772a991 1097 phba->__lpfc_sli_release_iocbq(phba, iocbq);
2a9bf3d0 1098 phba->iocb_cnt--;
3772a991
JS
1099}
1100
e59058c4 1101/**
3621a710 1102 * lpfc_sli_release_iocbq - Release iocb to the iocb pool
e59058c4
JS
1103 * @phba: Pointer to HBA context object.
1104 * @iocbq: Pointer to driver iocb object.
1105 *
1106 * This function is called with no lock held to release the iocb to
1107 * iocb pool.
1108 **/
2e0fef85
JS
1109void
1110lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1111{
1112 unsigned long iflags;
1113
1114 /*
1115 * Clean all volatile data fields, preserve iotag and node struct.
1116 */
1117 spin_lock_irqsave(&phba->hbalock, iflags);
1118 __lpfc_sli_release_iocbq(phba, iocbq);
1119 spin_unlock_irqrestore(&phba->hbalock, iflags);
1120}
1121
a257bf90
JS
1122/**
1123 * lpfc_sli_cancel_iocbs - Cancel all iocbs from a list.
1124 * @phba: Pointer to HBA context object.
1125 * @iocblist: List of IOCBs.
1126 * @ulpstatus: ULP status in IOCB command field.
1127 * @ulpWord4: ULP word-4 in IOCB command field.
1128 *
1129 * This function is called with a list of IOCBs to cancel. It cancels the IOCB
1130 * on the list by invoking the complete callback function associated with the
1131 * IOCB with the provided @ulpstatus and @ulpword4 set to the IOCB commond
1132 * fields.
1133 **/
1134void
1135lpfc_sli_cancel_iocbs(struct lpfc_hba *phba, struct list_head *iocblist,
1136 uint32_t ulpstatus, uint32_t ulpWord4)
1137{
1138 struct lpfc_iocbq *piocb;
1139
1140 while (!list_empty(iocblist)) {
1141 list_remove_head(iocblist, piocb, struct lpfc_iocbq, list);
a257bf90
JS
1142 if (!piocb->iocb_cmpl)
1143 lpfc_sli_release_iocbq(phba, piocb);
1144 else {
1145 piocb->iocb.ulpStatus = ulpstatus;
1146 piocb->iocb.un.ulpWord[4] = ulpWord4;
1147 (piocb->iocb_cmpl) (phba, piocb, piocb);
1148 }
1149 }
1150 return;
1151}
1152
e59058c4 1153/**
3621a710
JS
1154 * lpfc_sli_iocb_cmd_type - Get the iocb type
1155 * @iocb_cmnd: iocb command code.
e59058c4
JS
1156 *
1157 * This function is called by ring event handler function to get the iocb type.
1158 * This function translates the iocb command to an iocb command type used to
1159 * decide the final disposition of each completed IOCB.
1160 * The function returns
1161 * LPFC_UNKNOWN_IOCB if it is an unsupported iocb
1162 * LPFC_SOL_IOCB if it is a solicited iocb completion
1163 * LPFC_ABORT_IOCB if it is an abort iocb
1164 * LPFC_UNSOL_IOCB if it is an unsolicited iocb
1165 *
1166 * The caller is not required to hold any lock.
1167 **/
dea3101e
JB
1168static lpfc_iocb_type
1169lpfc_sli_iocb_cmd_type(uint8_t iocb_cmnd)
1170{
1171 lpfc_iocb_type type = LPFC_UNKNOWN_IOCB;
1172
1173 if (iocb_cmnd > CMD_MAX_IOCB_CMD)
1174 return 0;
1175
1176 switch (iocb_cmnd) {
1177 case CMD_XMIT_SEQUENCE_CR:
1178 case CMD_XMIT_SEQUENCE_CX:
1179 case CMD_XMIT_BCAST_CN:
1180 case CMD_XMIT_BCAST_CX:
1181 case CMD_ELS_REQUEST_CR:
1182 case CMD_ELS_REQUEST_CX:
1183 case CMD_CREATE_XRI_CR:
1184 case CMD_CREATE_XRI_CX:
1185 case CMD_GET_RPI_CN:
1186 case CMD_XMIT_ELS_RSP_CX:
1187 case CMD_GET_RPI_CR:
1188 case CMD_FCP_IWRITE_CR:
1189 case CMD_FCP_IWRITE_CX:
1190 case CMD_FCP_IREAD_CR:
1191 case CMD_FCP_IREAD_CX:
1192 case CMD_FCP_ICMND_CR:
1193 case CMD_FCP_ICMND_CX:
f5603511
JS
1194 case CMD_FCP_TSEND_CX:
1195 case CMD_FCP_TRSP_CX:
1196 case CMD_FCP_TRECEIVE_CX:
1197 case CMD_FCP_AUTO_TRSP_CX:
dea3101e
JB
1198 case CMD_ADAPTER_MSG:
1199 case CMD_ADAPTER_DUMP:
1200 case CMD_XMIT_SEQUENCE64_CR:
1201 case CMD_XMIT_SEQUENCE64_CX:
1202 case CMD_XMIT_BCAST64_CN:
1203 case CMD_XMIT_BCAST64_CX:
1204 case CMD_ELS_REQUEST64_CR:
1205 case CMD_ELS_REQUEST64_CX:
1206 case CMD_FCP_IWRITE64_CR:
1207 case CMD_FCP_IWRITE64_CX:
1208 case CMD_FCP_IREAD64_CR:
1209 case CMD_FCP_IREAD64_CX:
1210 case CMD_FCP_ICMND64_CR:
1211 case CMD_FCP_ICMND64_CX:
f5603511
JS
1212 case CMD_FCP_TSEND64_CX:
1213 case CMD_FCP_TRSP64_CX:
1214 case CMD_FCP_TRECEIVE64_CX:
dea3101e
JB
1215 case CMD_GEN_REQUEST64_CR:
1216 case CMD_GEN_REQUEST64_CX:
1217 case CMD_XMIT_ELS_RSP64_CX:
da0436e9
JS
1218 case DSSCMD_IWRITE64_CR:
1219 case DSSCMD_IWRITE64_CX:
1220 case DSSCMD_IREAD64_CR:
1221 case DSSCMD_IREAD64_CX:
dea3101e
JB
1222 type = LPFC_SOL_IOCB;
1223 break;
1224 case CMD_ABORT_XRI_CN:
1225 case CMD_ABORT_XRI_CX:
1226 case CMD_CLOSE_XRI_CN:
1227 case CMD_CLOSE_XRI_CX:
1228 case CMD_XRI_ABORTED_CX:
1229 case CMD_ABORT_MXRI64_CN:
6669f9bb 1230 case CMD_XMIT_BLS_RSP64_CX:
dea3101e
JB
1231 type = LPFC_ABORT_IOCB;
1232 break;
1233 case CMD_RCV_SEQUENCE_CX:
1234 case CMD_RCV_ELS_REQ_CX:
1235 case CMD_RCV_SEQUENCE64_CX:
1236 case CMD_RCV_ELS_REQ64_CX:
57127f15 1237 case CMD_ASYNC_STATUS:
ed957684
JS
1238 case CMD_IOCB_RCV_SEQ64_CX:
1239 case CMD_IOCB_RCV_ELS64_CX:
1240 case CMD_IOCB_RCV_CONT64_CX:
3163f725 1241 case CMD_IOCB_RET_XRI64_CX:
dea3101e
JB
1242 type = LPFC_UNSOL_IOCB;
1243 break;
3163f725
JS
1244 case CMD_IOCB_XMIT_MSEQ64_CR:
1245 case CMD_IOCB_XMIT_MSEQ64_CX:
1246 case CMD_IOCB_RCV_SEQ_LIST64_CX:
1247 case CMD_IOCB_RCV_ELS_LIST64_CX:
1248 case CMD_IOCB_CLOSE_EXTENDED_CN:
1249 case CMD_IOCB_ABORT_EXTENDED_CN:
1250 case CMD_IOCB_RET_HBQE64_CN:
1251 case CMD_IOCB_FCP_IBIDIR64_CR:
1252 case CMD_IOCB_FCP_IBIDIR64_CX:
1253 case CMD_IOCB_FCP_ITASKMGT64_CX:
1254 case CMD_IOCB_LOGENTRY_CN:
1255 case CMD_IOCB_LOGENTRY_ASYNC_CN:
1256 printk("%s - Unhandled SLI-3 Command x%x\n",
cadbd4a5 1257 __func__, iocb_cmnd);
3163f725
JS
1258 type = LPFC_UNKNOWN_IOCB;
1259 break;
dea3101e
JB
1260 default:
1261 type = LPFC_UNKNOWN_IOCB;
1262 break;
1263 }
1264
1265 return type;
1266}
1267
e59058c4 1268/**
3621a710 1269 * lpfc_sli_ring_map - Issue config_ring mbox for all rings
e59058c4
JS
1270 * @phba: Pointer to HBA context object.
1271 *
1272 * This function is called from SLI initialization code
1273 * to configure every ring of the HBA's SLI interface. The
1274 * caller is not required to hold any lock. This function issues
1275 * a config_ring mailbox command for each ring.
1276 * This function returns zero if successful else returns a negative
1277 * error code.
1278 **/
dea3101e 1279static int
ed957684 1280lpfc_sli_ring_map(struct lpfc_hba *phba)
dea3101e
JB
1281{
1282 struct lpfc_sli *psli = &phba->sli;
ed957684
JS
1283 LPFC_MBOXQ_t *pmb;
1284 MAILBOX_t *pmbox;
1285 int i, rc, ret = 0;
dea3101e 1286
ed957684
JS
1287 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
1288 if (!pmb)
1289 return -ENOMEM;
04c68496 1290 pmbox = &pmb->u.mb;
ed957684 1291 phba->link_state = LPFC_INIT_MBX_CMDS;
dea3101e 1292 for (i = 0; i < psli->num_rings; i++) {
dea3101e
JB
1293 lpfc_config_ring(phba, i, pmb);
1294 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
1295 if (rc != MBX_SUCCESS) {
92d7f7b0 1296 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 1297 "0446 Adapter failed to init (%d), "
dea3101e
JB
1298 "mbxCmd x%x CFG_RING, mbxStatus x%x, "
1299 "ring %d\n",
e8b62011
JS
1300 rc, pmbox->mbxCommand,
1301 pmbox->mbxStatus, i);
2e0fef85 1302 phba->link_state = LPFC_HBA_ERROR;
ed957684
JS
1303 ret = -ENXIO;
1304 break;
dea3101e
JB
1305 }
1306 }
ed957684
JS
1307 mempool_free(pmb, phba->mbox_mem_pool);
1308 return ret;
dea3101e
JB
1309}
1310
e59058c4 1311/**
3621a710 1312 * lpfc_sli_ringtxcmpl_put - Adds new iocb to the txcmplq
e59058c4
JS
1313 * @phba: Pointer to HBA context object.
1314 * @pring: Pointer to driver SLI ring object.
1315 * @piocb: Pointer to the driver iocb object.
1316 *
1317 * This function is called with hbalock held. The function adds the
1318 * new iocb to txcmplq of the given ring. This function always returns
1319 * 0. If this function is called for ELS ring, this function checks if
1320 * there is a vport associated with the ELS command. This function also
1321 * starts els_tmofunc timer if this is an ELS command.
1322 **/
dea3101e 1323static int
2e0fef85
JS
1324lpfc_sli_ringtxcmpl_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
1325 struct lpfc_iocbq *piocb)
dea3101e 1326{
1c2ba475
JT
1327 lockdep_assert_held(&phba->hbalock);
1328
2319f847 1329 BUG_ON(!piocb);
22466da5 1330
dea3101e 1331 list_add_tail(&piocb->list, &pring->txcmplq);
4f2e66c6 1332 piocb->iocb_flag |= LPFC_IO_ON_TXCMPLQ;
2a9bf3d0 1333
92d7f7b0
JS
1334 if ((unlikely(pring->ringno == LPFC_ELS_RING)) &&
1335 (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
2319f847
MFO
1336 (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) {
1337 BUG_ON(!piocb->vport);
1338 if (!(piocb->vport->load_flag & FC_UNLOADING))
1339 mod_timer(&piocb->vport->els_tmofunc,
1340 jiffies +
1341 msecs_to_jiffies(1000 * (phba->fc_ratov << 1)));
1342 }
dea3101e 1343
2e0fef85 1344 return 0;
dea3101e
JB
1345}
1346
e59058c4 1347/**
3621a710 1348 * lpfc_sli_ringtx_get - Get first element of the txq
e59058c4
JS
1349 * @phba: Pointer to HBA context object.
1350 * @pring: Pointer to driver SLI ring object.
1351 *
1352 * This function is called with hbalock held to get next
1353 * iocb in txq of the given ring. If there is any iocb in
1354 * the txq, the function returns first iocb in the list after
1355 * removing the iocb from the list, else it returns NULL.
1356 **/
2a9bf3d0 1357struct lpfc_iocbq *
2e0fef85 1358lpfc_sli_ringtx_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea3101e 1359{
dea3101e
JB
1360 struct lpfc_iocbq *cmd_iocb;
1361
1c2ba475
JT
1362 lockdep_assert_held(&phba->hbalock);
1363
858c9f6c 1364 list_remove_head((&pring->txq), cmd_iocb, struct lpfc_iocbq, list);
2e0fef85 1365 return cmd_iocb;
dea3101e
JB
1366}
1367
e59058c4 1368/**
3621a710 1369 * lpfc_sli_next_iocb_slot - Get next iocb slot in the ring
e59058c4
JS
1370 * @phba: Pointer to HBA context object.
1371 * @pring: Pointer to driver SLI ring object.
1372 *
1373 * This function is called with hbalock held and the caller must post the
1374 * iocb without releasing the lock. If the caller releases the lock,
1375 * iocb slot returned by the function is not guaranteed to be available.
1376 * The function returns pointer to the next available iocb slot if there
1377 * is available slot in the ring, else it returns NULL.
1378 * If the get index of the ring is ahead of the put index, the function
1379 * will post an error attention event to the worker thread to take the
1380 * HBA to offline state.
1381 **/
dea3101e
JB
1382static IOCB_t *
1383lpfc_sli_next_iocb_slot (struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
1384{
34b02dcd 1385 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
7e56aa25 1386 uint32_t max_cmd_idx = pring->sli.sli3.numCiocb;
1c2ba475
JT
1387
1388 lockdep_assert_held(&phba->hbalock);
1389
7e56aa25
JS
1390 if ((pring->sli.sli3.next_cmdidx == pring->sli.sli3.cmdidx) &&
1391 (++pring->sli.sli3.next_cmdidx >= max_cmd_idx))
1392 pring->sli.sli3.next_cmdidx = 0;
dea3101e 1393
7e56aa25
JS
1394 if (unlikely(pring->sli.sli3.local_getidx ==
1395 pring->sli.sli3.next_cmdidx)) {
dea3101e 1396
7e56aa25 1397 pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
dea3101e 1398
7e56aa25 1399 if (unlikely(pring->sli.sli3.local_getidx >= max_cmd_idx)) {
dea3101e 1400 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011 1401 "0315 Ring %d issue: portCmdGet %d "
025dfdaf 1402 "is bigger than cmd ring %d\n",
e8b62011 1403 pring->ringno,
7e56aa25
JS
1404 pring->sli.sli3.local_getidx,
1405 max_cmd_idx);
dea3101e 1406
2e0fef85 1407 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
1408 /*
1409 * All error attention handlers are posted to
1410 * worker thread
1411 */
1412 phba->work_ha |= HA_ERATT;
1413 phba->work_hs = HS_FFER3;
92d7f7b0 1414
5e9d9b82 1415 lpfc_worker_wake_up(phba);
dea3101e
JB
1416
1417 return NULL;
1418 }
1419
7e56aa25 1420 if (pring->sli.sli3.local_getidx == pring->sli.sli3.next_cmdidx)
dea3101e
JB
1421 return NULL;
1422 }
1423
ed957684 1424 return lpfc_cmd_iocb(phba, pring);
dea3101e
JB
1425}
1426
e59058c4 1427/**
3621a710 1428 * lpfc_sli_next_iotag - Get an iotag for the iocb
e59058c4
JS
1429 * @phba: Pointer to HBA context object.
1430 * @iocbq: Pointer to driver iocb object.
1431 *
1432 * This function gets an iotag for the iocb. If there is no unused iotag and
1433 * the iocbq_lookup_len < 0xffff, this function allocates a bigger iotag_lookup
1434 * array and assigns a new iotag.
1435 * The function returns the allocated iotag if successful, else returns zero.
1436 * Zero is not a valid iotag.
1437 * The caller is not required to hold any lock.
1438 **/
604a3e30 1439uint16_t
2e0fef85 1440lpfc_sli_next_iotag(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
dea3101e 1441{
2e0fef85
JS
1442 struct lpfc_iocbq **new_arr;
1443 struct lpfc_iocbq **old_arr;
604a3e30
JB
1444 size_t new_len;
1445 struct lpfc_sli *psli = &phba->sli;
1446 uint16_t iotag;
dea3101e 1447
2e0fef85 1448 spin_lock_irq(&phba->hbalock);
604a3e30
JB
1449 iotag = psli->last_iotag;
1450 if(++iotag < psli->iocbq_lookup_len) {
1451 psli->last_iotag = iotag;
1452 psli->iocbq_lookup[iotag] = iocbq;
2e0fef85 1453 spin_unlock_irq(&phba->hbalock);
604a3e30
JB
1454 iocbq->iotag = iotag;
1455 return iotag;
2e0fef85 1456 } else if (psli->iocbq_lookup_len < (0xffff
604a3e30
JB
1457 - LPFC_IOCBQ_LOOKUP_INCREMENT)) {
1458 new_len = psli->iocbq_lookup_len + LPFC_IOCBQ_LOOKUP_INCREMENT;
2e0fef85
JS
1459 spin_unlock_irq(&phba->hbalock);
1460 new_arr = kzalloc(new_len * sizeof (struct lpfc_iocbq *),
604a3e30
JB
1461 GFP_KERNEL);
1462 if (new_arr) {
2e0fef85 1463 spin_lock_irq(&phba->hbalock);
604a3e30
JB
1464 old_arr = psli->iocbq_lookup;
1465 if (new_len <= psli->iocbq_lookup_len) {
1466 /* highly unprobable case */
1467 kfree(new_arr);
1468 iotag = psli->last_iotag;
1469 if(++iotag < psli->iocbq_lookup_len) {
1470 psli->last_iotag = iotag;
1471 psli->iocbq_lookup[iotag] = iocbq;
2e0fef85 1472 spin_unlock_irq(&phba->hbalock);
604a3e30
JB
1473 iocbq->iotag = iotag;
1474 return iotag;
1475 }
2e0fef85 1476 spin_unlock_irq(&phba->hbalock);
604a3e30
JB
1477 return 0;
1478 }
1479 if (psli->iocbq_lookup)
1480 memcpy(new_arr, old_arr,
1481 ((psli->last_iotag + 1) *
311464ec 1482 sizeof (struct lpfc_iocbq *)));
604a3e30
JB
1483 psli->iocbq_lookup = new_arr;
1484 psli->iocbq_lookup_len = new_len;
1485 psli->last_iotag = iotag;
1486 psli->iocbq_lookup[iotag] = iocbq;
2e0fef85 1487 spin_unlock_irq(&phba->hbalock);
604a3e30
JB
1488 iocbq->iotag = iotag;
1489 kfree(old_arr);
1490 return iotag;
1491 }
8f6d98d2 1492 } else
2e0fef85 1493 spin_unlock_irq(&phba->hbalock);
dea3101e 1494
bc73905a 1495 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
e8b62011
JS
1496 "0318 Failed to allocate IOTAG.last IOTAG is %d\n",
1497 psli->last_iotag);
dea3101e 1498
604a3e30 1499 return 0;
dea3101e
JB
1500}
1501
e59058c4 1502/**
3621a710 1503 * lpfc_sli_submit_iocb - Submit an iocb to the firmware
e59058c4
JS
1504 * @phba: Pointer to HBA context object.
1505 * @pring: Pointer to driver SLI ring object.
1506 * @iocb: Pointer to iocb slot in the ring.
1507 * @nextiocb: Pointer to driver iocb object which need to be
1508 * posted to firmware.
1509 *
1510 * This function is called with hbalock held to post a new iocb to
1511 * the firmware. This function copies the new iocb to ring iocb slot and
1512 * updates the ring pointers. It adds the new iocb to txcmplq if there is
1513 * a completion call back for this iocb else the function will free the
1514 * iocb object.
1515 **/
dea3101e
JB
1516static void
1517lpfc_sli_submit_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
1518 IOCB_t *iocb, struct lpfc_iocbq *nextiocb)
1519{
1c2ba475 1520 lockdep_assert_held(&phba->hbalock);
dea3101e 1521 /*
604a3e30 1522 * Set up an iotag
dea3101e 1523 */
604a3e30 1524 nextiocb->iocb.ulpIoTag = (nextiocb->iocb_cmpl) ? nextiocb->iotag : 0;
dea3101e 1525
e2a0a9d6 1526
a58cbd52
JS
1527 if (pring->ringno == LPFC_ELS_RING) {
1528 lpfc_debugfs_slow_ring_trc(phba,
1529 "IOCB cmd ring: wd4:x%08x wd6:x%08x wd7:x%08x",
1530 *(((uint32_t *) &nextiocb->iocb) + 4),
1531 *(((uint32_t *) &nextiocb->iocb) + 6),
1532 *(((uint32_t *) &nextiocb->iocb) + 7));
1533 }
1534
dea3101e
JB
1535 /*
1536 * Issue iocb command to adapter
1537 */
92d7f7b0 1538 lpfc_sli_pcimem_bcopy(&nextiocb->iocb, iocb, phba->iocb_cmd_size);
dea3101e
JB
1539 wmb();
1540 pring->stats.iocb_cmd++;
1541
1542 /*
1543 * If there is no completion routine to call, we can release the
1544 * IOCB buffer back right now. For IOCBs, like QUE_RING_BUF,
1545 * that have no rsp ring completion, iocb_cmpl MUST be NULL.
1546 */
1547 if (nextiocb->iocb_cmpl)
1548 lpfc_sli_ringtxcmpl_put(phba, pring, nextiocb);
604a3e30 1549 else
2e0fef85 1550 __lpfc_sli_release_iocbq(phba, nextiocb);
dea3101e
JB
1551
1552 /*
1553 * Let the HBA know what IOCB slot will be the next one the
1554 * driver will put a command into.
1555 */
7e56aa25
JS
1556 pring->sli.sli3.cmdidx = pring->sli.sli3.next_cmdidx;
1557 writel(pring->sli.sli3.cmdidx, &phba->host_gp[pring->ringno].cmdPutInx);
dea3101e
JB
1558}
1559
e59058c4 1560/**
3621a710 1561 * lpfc_sli_update_full_ring - Update the chip attention register
e59058c4
JS
1562 * @phba: Pointer to HBA context object.
1563 * @pring: Pointer to driver SLI ring object.
1564 *
1565 * The caller is not required to hold any lock for calling this function.
1566 * This function updates the chip attention bits for the ring to inform firmware
1567 * that there are pending work to be done for this ring and requests an
1568 * interrupt when there is space available in the ring. This function is
1569 * called when the driver is unable to post more iocbs to the ring due
1570 * to unavailability of space in the ring.
1571 **/
dea3101e 1572static void
2e0fef85 1573lpfc_sli_update_full_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea3101e
JB
1574{
1575 int ringno = pring->ringno;
1576
1577 pring->flag |= LPFC_CALL_RING_AVAILABLE;
1578
1579 wmb();
1580
1581 /*
1582 * Set ring 'ringno' to SET R0CE_REQ in Chip Att register.
1583 * The HBA will tell us when an IOCB entry is available.
1584 */
1585 writel((CA_R0ATT|CA_R0CE_REQ) << (ringno*4), phba->CAregaddr);
1586 readl(phba->CAregaddr); /* flush */
1587
1588 pring->stats.iocb_cmd_full++;
1589}
1590
e59058c4 1591/**
3621a710 1592 * lpfc_sli_update_ring - Update chip attention register
e59058c4
JS
1593 * @phba: Pointer to HBA context object.
1594 * @pring: Pointer to driver SLI ring object.
1595 *
1596 * This function updates the chip attention register bit for the
1597 * given ring to inform HBA that there is more work to be done
1598 * in this ring. The caller is not required to hold any lock.
1599 **/
dea3101e 1600static void
2e0fef85 1601lpfc_sli_update_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea3101e
JB
1602{
1603 int ringno = pring->ringno;
1604
1605 /*
1606 * Tell the HBA that there is work to do in this ring.
1607 */
34b02dcd
JS
1608 if (!(phba->sli3_options & LPFC_SLI3_CRP_ENABLED)) {
1609 wmb();
1610 writel(CA_R0ATT << (ringno * 4), phba->CAregaddr);
1611 readl(phba->CAregaddr); /* flush */
1612 }
dea3101e
JB
1613}
1614
e59058c4 1615/**
3621a710 1616 * lpfc_sli_resume_iocb - Process iocbs in the txq
e59058c4
JS
1617 * @phba: Pointer to HBA context object.
1618 * @pring: Pointer to driver SLI ring object.
1619 *
1620 * This function is called with hbalock held to post pending iocbs
1621 * in the txq to the firmware. This function is called when driver
1622 * detects space available in the ring.
1623 **/
dea3101e 1624static void
2e0fef85 1625lpfc_sli_resume_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea3101e
JB
1626{
1627 IOCB_t *iocb;
1628 struct lpfc_iocbq *nextiocb;
1629
1c2ba475
JT
1630 lockdep_assert_held(&phba->hbalock);
1631
dea3101e
JB
1632 /*
1633 * Check to see if:
1634 * (a) there is anything on the txq to send
1635 * (b) link is up
1636 * (c) link attention events can be processed (fcp ring only)
1637 * (d) IOCB processing is not blocked by the outstanding mbox command.
1638 */
0e9bb8d7
JS
1639
1640 if (lpfc_is_link_up(phba) &&
1641 (!list_empty(&pring->txq)) &&
dea3101e 1642 (pring->ringno != phba->sli.fcp_ring ||
0b727fea 1643 phba->sli.sli_flag & LPFC_PROCESS_LA)) {
dea3101e
JB
1644
1645 while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
1646 (nextiocb = lpfc_sli_ringtx_get(phba, pring)))
1647 lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
1648
1649 if (iocb)
1650 lpfc_sli_update_ring(phba, pring);
1651 else
1652 lpfc_sli_update_full_ring(phba, pring);
1653 }
1654
1655 return;
1656}
1657
e59058c4 1658/**
3621a710 1659 * lpfc_sli_next_hbq_slot - Get next hbq entry for the HBQ
e59058c4
JS
1660 * @phba: Pointer to HBA context object.
1661 * @hbqno: HBQ number.
1662 *
1663 * This function is called with hbalock held to get the next
1664 * available slot for the given HBQ. If there is free slot
1665 * available for the HBQ it will return pointer to the next available
1666 * HBQ entry else it will return NULL.
1667 **/
a6ababd2 1668static struct lpfc_hbq_entry *
ed957684
JS
1669lpfc_sli_next_hbq_slot(struct lpfc_hba *phba, uint32_t hbqno)
1670{
1671 struct hbq_s *hbqp = &phba->hbqs[hbqno];
1672
1c2ba475
JT
1673 lockdep_assert_held(&phba->hbalock);
1674
ed957684
JS
1675 if (hbqp->next_hbqPutIdx == hbqp->hbqPutIdx &&
1676 ++hbqp->next_hbqPutIdx >= hbqp->entry_count)
1677 hbqp->next_hbqPutIdx = 0;
1678
1679 if (unlikely(hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)) {
92d7f7b0 1680 uint32_t raw_index = phba->hbq_get[hbqno];
ed957684
JS
1681 uint32_t getidx = le32_to_cpu(raw_index);
1682
1683 hbqp->local_hbqGetIdx = getidx;
1684
1685 if (unlikely(hbqp->local_hbqGetIdx >= hbqp->entry_count)) {
1686 lpfc_printf_log(phba, KERN_ERR,
92d7f7b0 1687 LOG_SLI | LOG_VPORT,
e8b62011 1688 "1802 HBQ %d: local_hbqGetIdx "
ed957684 1689 "%u is > than hbqp->entry_count %u\n",
e8b62011 1690 hbqno, hbqp->local_hbqGetIdx,
ed957684
JS
1691 hbqp->entry_count);
1692
1693 phba->link_state = LPFC_HBA_ERROR;
1694 return NULL;
1695 }
1696
1697 if (hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)
1698 return NULL;
1699 }
1700
51ef4c26
JS
1701 return (struct lpfc_hbq_entry *) phba->hbqs[hbqno].hbq_virt +
1702 hbqp->hbqPutIdx;
ed957684
JS
1703}
1704
e59058c4 1705/**
3621a710 1706 * lpfc_sli_hbqbuf_free_all - Free all the hbq buffers
e59058c4
JS
1707 * @phba: Pointer to HBA context object.
1708 *
1709 * This function is called with no lock held to free all the
1710 * hbq buffers while uninitializing the SLI interface. It also
1711 * frees the HBQ buffers returned by the firmware but not yet
1712 * processed by the upper layers.
1713 **/
ed957684
JS
1714void
1715lpfc_sli_hbqbuf_free_all(struct lpfc_hba *phba)
1716{
92d7f7b0
JS
1717 struct lpfc_dmabuf *dmabuf, *next_dmabuf;
1718 struct hbq_dmabuf *hbq_buf;
3163f725 1719 unsigned long flags;
51ef4c26 1720 int i, hbq_count;
3163f725 1721 uint32_t hbqno;
ed957684 1722
51ef4c26 1723 hbq_count = lpfc_sli_hbq_count();
ed957684 1724 /* Return all memory used by all HBQs */
3163f725 1725 spin_lock_irqsave(&phba->hbalock, flags);
51ef4c26
JS
1726 for (i = 0; i < hbq_count; ++i) {
1727 list_for_each_entry_safe(dmabuf, next_dmabuf,
1728 &phba->hbqs[i].hbq_buffer_list, list) {
1729 hbq_buf = container_of(dmabuf, struct hbq_dmabuf, dbuf);
1730 list_del(&hbq_buf->dbuf.list);
1731 (phba->hbqs[i].hbq_free_buffer)(phba, hbq_buf);
1732 }
a8adb832 1733 phba->hbqs[i].buffer_count = 0;
ed957684 1734 }
3163f725 1735 /* Return all HBQ buffer that are in-fly */
3772a991
JS
1736 list_for_each_entry_safe(dmabuf, next_dmabuf, &phba->rb_pend_list,
1737 list) {
3163f725
JS
1738 hbq_buf = container_of(dmabuf, struct hbq_dmabuf, dbuf);
1739 list_del(&hbq_buf->dbuf.list);
1740 if (hbq_buf->tag == -1) {
1741 (phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer)
1742 (phba, hbq_buf);
1743 } else {
1744 hbqno = hbq_buf->tag >> 16;
1745 if (hbqno >= LPFC_MAX_HBQS)
1746 (phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer)
1747 (phba, hbq_buf);
1748 else
1749 (phba->hbqs[hbqno].hbq_free_buffer)(phba,
1750 hbq_buf);
1751 }
1752 }
1753
1754 /* Mark the HBQs not in use */
1755 phba->hbq_in_use = 0;
1756 spin_unlock_irqrestore(&phba->hbalock, flags);
ed957684
JS
1757}
1758
e59058c4 1759/**
3621a710 1760 * lpfc_sli_hbq_to_firmware - Post the hbq buffer to firmware
e59058c4
JS
1761 * @phba: Pointer to HBA context object.
1762 * @hbqno: HBQ number.
1763 * @hbq_buf: Pointer to HBQ buffer.
1764 *
1765 * This function is called with the hbalock held to post a
1766 * hbq buffer to the firmware. If the function finds an empty
1767 * slot in the HBQ, it will post the buffer. The function will return
1768 * pointer to the hbq entry if it successfully post the buffer
1769 * else it will return NULL.
1770 **/
3772a991 1771static int
ed957684 1772lpfc_sli_hbq_to_firmware(struct lpfc_hba *phba, uint32_t hbqno,
92d7f7b0 1773 struct hbq_dmabuf *hbq_buf)
3772a991 1774{
1c2ba475 1775 lockdep_assert_held(&phba->hbalock);
3772a991
JS
1776 return phba->lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buf);
1777}
1778
1779/**
1780 * lpfc_sli_hbq_to_firmware_s3 - Post the hbq buffer to SLI3 firmware
1781 * @phba: Pointer to HBA context object.
1782 * @hbqno: HBQ number.
1783 * @hbq_buf: Pointer to HBQ buffer.
1784 *
1785 * This function is called with the hbalock held to post a hbq buffer to the
1786 * firmware. If the function finds an empty slot in the HBQ, it will post the
1787 * buffer and place it on the hbq_buffer_list. The function will return zero if
1788 * it successfully post the buffer else it will return an error.
1789 **/
1790static int
1791lpfc_sli_hbq_to_firmware_s3(struct lpfc_hba *phba, uint32_t hbqno,
1792 struct hbq_dmabuf *hbq_buf)
ed957684
JS
1793{
1794 struct lpfc_hbq_entry *hbqe;
92d7f7b0 1795 dma_addr_t physaddr = hbq_buf->dbuf.phys;
ed957684 1796
1c2ba475 1797 lockdep_assert_held(&phba->hbalock);
ed957684
JS
1798 /* Get next HBQ entry slot to use */
1799 hbqe = lpfc_sli_next_hbq_slot(phba, hbqno);
1800 if (hbqe) {
1801 struct hbq_s *hbqp = &phba->hbqs[hbqno];
1802
92d7f7b0
JS
1803 hbqe->bde.addrHigh = le32_to_cpu(putPaddrHigh(physaddr));
1804 hbqe->bde.addrLow = le32_to_cpu(putPaddrLow(physaddr));
51ef4c26 1805 hbqe->bde.tus.f.bdeSize = hbq_buf->size;
ed957684 1806 hbqe->bde.tus.f.bdeFlags = 0;
92d7f7b0
JS
1807 hbqe->bde.tus.w = le32_to_cpu(hbqe->bde.tus.w);
1808 hbqe->buffer_tag = le32_to_cpu(hbq_buf->tag);
1809 /* Sync SLIM */
ed957684
JS
1810 hbqp->hbqPutIdx = hbqp->next_hbqPutIdx;
1811 writel(hbqp->hbqPutIdx, phba->hbq_put + hbqno);
92d7f7b0 1812 /* flush */
ed957684 1813 readl(phba->hbq_put + hbqno);
51ef4c26 1814 list_add_tail(&hbq_buf->dbuf.list, &hbqp->hbq_buffer_list);
3772a991
JS
1815 return 0;
1816 } else
1817 return -ENOMEM;
ed957684
JS
1818}
1819
4f774513
JS
1820/**
1821 * lpfc_sli_hbq_to_firmware_s4 - Post the hbq buffer to SLI4 firmware
1822 * @phba: Pointer to HBA context object.
1823 * @hbqno: HBQ number.
1824 * @hbq_buf: Pointer to HBQ buffer.
1825 *
1826 * This function is called with the hbalock held to post an RQE to the SLI4
1827 * firmware. If able to post the RQE to the RQ it will queue the hbq entry to
1828 * the hbq_buffer_list and return zero, otherwise it will return an error.
1829 **/
1830static int
1831lpfc_sli_hbq_to_firmware_s4(struct lpfc_hba *phba, uint32_t hbqno,
1832 struct hbq_dmabuf *hbq_buf)
1833{
1834 int rc;
1835 struct lpfc_rqe hrqe;
1836 struct lpfc_rqe drqe;
1837
1c2ba475 1838 lockdep_assert_held(&phba->hbalock);
4f774513
JS
1839 hrqe.address_lo = putPaddrLow(hbq_buf->hbuf.phys);
1840 hrqe.address_hi = putPaddrHigh(hbq_buf->hbuf.phys);
1841 drqe.address_lo = putPaddrLow(hbq_buf->dbuf.phys);
1842 drqe.address_hi = putPaddrHigh(hbq_buf->dbuf.phys);
1843 rc = lpfc_sli4_rq_put(phba->sli4_hba.hdr_rq, phba->sli4_hba.dat_rq,
1844 &hrqe, &drqe);
1845 if (rc < 0)
1846 return rc;
1847 hbq_buf->tag = rc;
1848 list_add_tail(&hbq_buf->dbuf.list, &phba->hbqs[hbqno].hbq_buffer_list);
1849 return 0;
1850}
1851
e59058c4 1852/* HBQ for ELS and CT traffic. */
92d7f7b0
JS
1853static struct lpfc_hbq_init lpfc_els_hbq = {
1854 .rn = 1,
def9c7a9 1855 .entry_count = 256,
92d7f7b0
JS
1856 .mask_count = 0,
1857 .profile = 0,
51ef4c26 1858 .ring_mask = (1 << LPFC_ELS_RING),
92d7f7b0 1859 .buffer_count = 0,
a257bf90
JS
1860 .init_count = 40,
1861 .add_count = 40,
92d7f7b0 1862};
ed957684 1863
e59058c4 1864/* HBQ for the extra ring if needed */
51ef4c26
JS
1865static struct lpfc_hbq_init lpfc_extra_hbq = {
1866 .rn = 1,
1867 .entry_count = 200,
1868 .mask_count = 0,
1869 .profile = 0,
1870 .ring_mask = (1 << LPFC_EXTRA_RING),
1871 .buffer_count = 0,
1872 .init_count = 0,
1873 .add_count = 5,
1874};
1875
e59058c4 1876/* Array of HBQs */
78b2d852 1877struct lpfc_hbq_init *lpfc_hbq_defs[] = {
92d7f7b0 1878 &lpfc_els_hbq,
51ef4c26 1879 &lpfc_extra_hbq,
92d7f7b0 1880};
ed957684 1881
e59058c4 1882/**
3621a710 1883 * lpfc_sli_hbqbuf_fill_hbqs - Post more hbq buffers to HBQ
e59058c4
JS
1884 * @phba: Pointer to HBA context object.
1885 * @hbqno: HBQ number.
1886 * @count: Number of HBQ buffers to be posted.
1887 *
d7c255b2
JS
1888 * This function is called with no lock held to post more hbq buffers to the
1889 * given HBQ. The function returns the number of HBQ buffers successfully
1890 * posted.
e59058c4 1891 **/
311464ec 1892static int
92d7f7b0 1893lpfc_sli_hbqbuf_fill_hbqs(struct lpfc_hba *phba, uint32_t hbqno, uint32_t count)
ed957684 1894{
d7c255b2 1895 uint32_t i, posted = 0;
3163f725 1896 unsigned long flags;
92d7f7b0 1897 struct hbq_dmabuf *hbq_buffer;
d7c255b2 1898 LIST_HEAD(hbq_buf_list);
eafe1df9 1899 if (!phba->hbqs[hbqno].hbq_alloc_buffer)
51ef4c26 1900 return 0;
51ef4c26 1901
d7c255b2
JS
1902 if ((phba->hbqs[hbqno].buffer_count + count) >
1903 lpfc_hbq_defs[hbqno]->entry_count)
1904 count = lpfc_hbq_defs[hbqno]->entry_count -
1905 phba->hbqs[hbqno].buffer_count;
1906 if (!count)
1907 return 0;
1908 /* Allocate HBQ entries */
1909 for (i = 0; i < count; i++) {
1910 hbq_buffer = (phba->hbqs[hbqno].hbq_alloc_buffer)(phba);
1911 if (!hbq_buffer)
1912 break;
1913 list_add_tail(&hbq_buffer->dbuf.list, &hbq_buf_list);
1914 }
3163f725
JS
1915 /* Check whether HBQ is still in use */
1916 spin_lock_irqsave(&phba->hbalock, flags);
eafe1df9 1917 if (!phba->hbq_in_use)
d7c255b2
JS
1918 goto err;
1919 while (!list_empty(&hbq_buf_list)) {
1920 list_remove_head(&hbq_buf_list, hbq_buffer, struct hbq_dmabuf,
1921 dbuf.list);
1922 hbq_buffer->tag = (phba->hbqs[hbqno].buffer_count |
1923 (hbqno << 16));
3772a991 1924 if (!lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer)) {
a8adb832 1925 phba->hbqs[hbqno].buffer_count++;
d7c255b2
JS
1926 posted++;
1927 } else
51ef4c26 1928 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
ed957684 1929 }
3163f725 1930 spin_unlock_irqrestore(&phba->hbalock, flags);
d7c255b2
JS
1931 return posted;
1932err:
eafe1df9 1933 spin_unlock_irqrestore(&phba->hbalock, flags);
d7c255b2
JS
1934 while (!list_empty(&hbq_buf_list)) {
1935 list_remove_head(&hbq_buf_list, hbq_buffer, struct hbq_dmabuf,
1936 dbuf.list);
1937 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
1938 }
1939 return 0;
ed957684
JS
1940}
1941
e59058c4 1942/**
3621a710 1943 * lpfc_sli_hbqbuf_add_hbqs - Post more HBQ buffers to firmware
e59058c4
JS
1944 * @phba: Pointer to HBA context object.
1945 * @qno: HBQ number.
1946 *
1947 * This function posts more buffers to the HBQ. This function
d7c255b2
JS
1948 * is called with no lock held. The function returns the number of HBQ entries
1949 * successfully allocated.
e59058c4 1950 **/
92d7f7b0
JS
1951int
1952lpfc_sli_hbqbuf_add_hbqs(struct lpfc_hba *phba, uint32_t qno)
ed957684 1953{
def9c7a9
JS
1954 if (phba->sli_rev == LPFC_SLI_REV4)
1955 return 0;
1956 else
1957 return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
1958 lpfc_hbq_defs[qno]->add_count);
92d7f7b0 1959}
ed957684 1960
e59058c4 1961/**
3621a710 1962 * lpfc_sli_hbqbuf_init_hbqs - Post initial buffers to the HBQ
e59058c4
JS
1963 * @phba: Pointer to HBA context object.
1964 * @qno: HBQ queue number.
1965 *
1966 * This function is called from SLI initialization code path with
1967 * no lock held to post initial HBQ buffers to firmware. The
d7c255b2 1968 * function returns the number of HBQ entries successfully allocated.
e59058c4 1969 **/
a6ababd2 1970static int
92d7f7b0
JS
1971lpfc_sli_hbqbuf_init_hbqs(struct lpfc_hba *phba, uint32_t qno)
1972{
def9c7a9
JS
1973 if (phba->sli_rev == LPFC_SLI_REV4)
1974 return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
73d91e50 1975 lpfc_hbq_defs[qno]->entry_count);
def9c7a9
JS
1976 else
1977 return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
1978 lpfc_hbq_defs[qno]->init_count);
ed957684
JS
1979}
1980
3772a991
JS
1981/**
1982 * lpfc_sli_hbqbuf_get - Remove the first hbq off of an hbq list
1983 * @phba: Pointer to HBA context object.
1984 * @hbqno: HBQ number.
1985 *
1986 * This function removes the first hbq buffer on an hbq list and returns a
1987 * pointer to that buffer. If it finds no buffers on the list it returns NULL.
1988 **/
1989static struct hbq_dmabuf *
1990lpfc_sli_hbqbuf_get(struct list_head *rb_list)
1991{
1992 struct lpfc_dmabuf *d_buf;
1993
1994 list_remove_head(rb_list, d_buf, struct lpfc_dmabuf, list);
1995 if (!d_buf)
1996 return NULL;
1997 return container_of(d_buf, struct hbq_dmabuf, dbuf);
1998}
1999
e59058c4 2000/**
3621a710 2001 * lpfc_sli_hbqbuf_find - Find the hbq buffer associated with a tag
e59058c4
JS
2002 * @phba: Pointer to HBA context object.
2003 * @tag: Tag of the hbq buffer.
2004 *
71892418
SH
2005 * This function searches for the hbq buffer associated with the given tag in
2006 * the hbq buffer list. If it finds the hbq buffer, it returns the hbq_buffer
2007 * otherwise it returns NULL.
e59058c4 2008 **/
a6ababd2 2009static struct hbq_dmabuf *
92d7f7b0 2010lpfc_sli_hbqbuf_find(struct lpfc_hba *phba, uint32_t tag)
ed957684 2011{
92d7f7b0
JS
2012 struct lpfc_dmabuf *d_buf;
2013 struct hbq_dmabuf *hbq_buf;
51ef4c26
JS
2014 uint32_t hbqno;
2015
2016 hbqno = tag >> 16;
a0a74e45 2017 if (hbqno >= LPFC_MAX_HBQS)
51ef4c26 2018 return NULL;
ed957684 2019
3772a991 2020 spin_lock_irq(&phba->hbalock);
51ef4c26 2021 list_for_each_entry(d_buf, &phba->hbqs[hbqno].hbq_buffer_list, list) {
92d7f7b0 2022 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
51ef4c26 2023 if (hbq_buf->tag == tag) {
3772a991 2024 spin_unlock_irq(&phba->hbalock);
92d7f7b0 2025 return hbq_buf;
ed957684
JS
2026 }
2027 }
3772a991 2028 spin_unlock_irq(&phba->hbalock);
92d7f7b0 2029 lpfc_printf_log(phba, KERN_ERR, LOG_SLI | LOG_VPORT,
e8b62011 2030 "1803 Bad hbq tag. Data: x%x x%x\n",
a8adb832 2031 tag, phba->hbqs[tag >> 16].buffer_count);
92d7f7b0 2032 return NULL;
ed957684
JS
2033}
2034
e59058c4 2035/**
3621a710 2036 * lpfc_sli_free_hbq - Give back the hbq buffer to firmware
e59058c4
JS
2037 * @phba: Pointer to HBA context object.
2038 * @hbq_buffer: Pointer to HBQ buffer.
2039 *
2040 * This function is called with hbalock. This function gives back
2041 * the hbq buffer to firmware. If the HBQ does not have space to
2042 * post the buffer, it will free the buffer.
2043 **/
ed957684 2044void
51ef4c26 2045lpfc_sli_free_hbq(struct lpfc_hba *phba, struct hbq_dmabuf *hbq_buffer)
ed957684
JS
2046{
2047 uint32_t hbqno;
2048
51ef4c26
JS
2049 if (hbq_buffer) {
2050 hbqno = hbq_buffer->tag >> 16;
3772a991 2051 if (lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer))
51ef4c26 2052 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
ed957684
JS
2053 }
2054}
2055
e59058c4 2056/**
3621a710 2057 * lpfc_sli_chk_mbx_command - Check if the mailbox is a legitimate mailbox
e59058c4
JS
2058 * @mbxCommand: mailbox command code.
2059 *
2060 * This function is called by the mailbox event handler function to verify
2061 * that the completed mailbox command is a legitimate mailbox command. If the
2062 * completed mailbox is not known to the function, it will return MBX_SHUTDOWN
2063 * and the mailbox event handler will take the HBA offline.
2064 **/
dea3101e
JB
2065static int
2066lpfc_sli_chk_mbx_command(uint8_t mbxCommand)
2067{
2068 uint8_t ret;
2069
2070 switch (mbxCommand) {
2071 case MBX_LOAD_SM:
2072 case MBX_READ_NV:
2073 case MBX_WRITE_NV:
a8adb832 2074 case MBX_WRITE_VPARMS:
dea3101e
JB
2075 case MBX_RUN_BIU_DIAG:
2076 case MBX_INIT_LINK:
2077 case MBX_DOWN_LINK:
2078 case MBX_CONFIG_LINK:
2079 case MBX_CONFIG_RING:
2080 case MBX_RESET_RING:
2081 case MBX_READ_CONFIG:
2082 case MBX_READ_RCONFIG:
2083 case MBX_READ_SPARM:
2084 case MBX_READ_STATUS:
2085 case MBX_READ_RPI:
2086 case MBX_READ_XRI:
2087 case MBX_READ_REV:
2088 case MBX_READ_LNK_STAT:
2089 case MBX_REG_LOGIN:
2090 case MBX_UNREG_LOGIN:
dea3101e
JB
2091 case MBX_CLEAR_LA:
2092 case MBX_DUMP_MEMORY:
2093 case MBX_DUMP_CONTEXT:
2094 case MBX_RUN_DIAGS:
2095 case MBX_RESTART:
2096 case MBX_UPDATE_CFG:
2097 case MBX_DOWN_LOAD:
2098 case MBX_DEL_LD_ENTRY:
2099 case MBX_RUN_PROGRAM:
2100 case MBX_SET_MASK:
09372820 2101 case MBX_SET_VARIABLE:
dea3101e 2102 case MBX_UNREG_D_ID:
41415862 2103 case MBX_KILL_BOARD:
dea3101e 2104 case MBX_CONFIG_FARP:
41415862 2105 case MBX_BEACON:
dea3101e
JB
2106 case MBX_LOAD_AREA:
2107 case MBX_RUN_BIU_DIAG64:
2108 case MBX_CONFIG_PORT:
2109 case MBX_READ_SPARM64:
2110 case MBX_READ_RPI64:
2111 case MBX_REG_LOGIN64:
76a95d75 2112 case MBX_READ_TOPOLOGY:
09372820 2113 case MBX_WRITE_WWN:
dea3101e
JB
2114 case MBX_SET_DEBUG:
2115 case MBX_LOAD_EXP_ROM:
57127f15 2116 case MBX_ASYNCEVT_ENABLE:
92d7f7b0
JS
2117 case MBX_REG_VPI:
2118 case MBX_UNREG_VPI:
858c9f6c 2119 case MBX_HEARTBEAT:
84774a4d
JS
2120 case MBX_PORT_CAPABILITIES:
2121 case MBX_PORT_IOV_CONTROL:
04c68496
JS
2122 case MBX_SLI4_CONFIG:
2123 case MBX_SLI4_REQ_FTRS:
2124 case MBX_REG_FCFI:
2125 case MBX_UNREG_FCFI:
2126 case MBX_REG_VFI:
2127 case MBX_UNREG_VFI:
2128 case MBX_INIT_VPI:
2129 case MBX_INIT_VFI:
2130 case MBX_RESUME_RPI:
c7495937
JS
2131 case MBX_READ_EVENT_LOG_STATUS:
2132 case MBX_READ_EVENT_LOG:
dcf2a4e0
JS
2133 case MBX_SECURITY_MGMT:
2134 case MBX_AUTH_PORT:
940eb687 2135 case MBX_ACCESS_VDATA:
dea3101e
JB
2136 ret = mbxCommand;
2137 break;
2138 default:
2139 ret = MBX_SHUTDOWN;
2140 break;
2141 }
2e0fef85 2142 return ret;
dea3101e 2143}
e59058c4
JS
2144
2145/**
3621a710 2146 * lpfc_sli_wake_mbox_wait - lpfc_sli_issue_mbox_wait mbox completion handler
e59058c4
JS
2147 * @phba: Pointer to HBA context object.
2148 * @pmboxq: Pointer to mailbox command.
2149 *
2150 * This is completion handler function for mailbox commands issued from
2151 * lpfc_sli_issue_mbox_wait function. This function is called by the
2152 * mailbox event handler function with no lock held. This function
2153 * will wake up thread waiting on the wait queue pointed by context1
2154 * of the mailbox.
2155 **/
04c68496 2156void
2e0fef85 2157lpfc_sli_wake_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq)
dea3101e
JB
2158{
2159 wait_queue_head_t *pdone_q;
858c9f6c 2160 unsigned long drvr_flag;
dea3101e
JB
2161
2162 /*
2163 * If pdone_q is empty, the driver thread gave up waiting and
2164 * continued running.
2165 */
7054a606 2166 pmboxq->mbox_flag |= LPFC_MBX_WAKE;
858c9f6c 2167 spin_lock_irqsave(&phba->hbalock, drvr_flag);
dea3101e
JB
2168 pdone_q = (wait_queue_head_t *) pmboxq->context1;
2169 if (pdone_q)
2170 wake_up_interruptible(pdone_q);
858c9f6c 2171 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea3101e
JB
2172 return;
2173}
2174
e59058c4
JS
2175
2176/**
3621a710 2177 * lpfc_sli_def_mbox_cmpl - Default mailbox completion handler
e59058c4
JS
2178 * @phba: Pointer to HBA context object.
2179 * @pmb: Pointer to mailbox object.
2180 *
2181 * This function is the default mailbox completion handler. It
2182 * frees the memory resources associated with the completed mailbox
2183 * command. If the completed command is a REG_LOGIN mailbox command,
2184 * this function will issue a UREG_LOGIN to re-claim the RPI.
2185 **/
dea3101e 2186void
2e0fef85 2187lpfc_sli_def_mbox_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea3101e 2188{
d439d286 2189 struct lpfc_vport *vport = pmb->vport;
dea3101e 2190 struct lpfc_dmabuf *mp;
d439d286 2191 struct lpfc_nodelist *ndlp;
5af5eee7 2192 struct Scsi_Host *shost;
04c68496 2193 uint16_t rpi, vpi;
7054a606
JS
2194 int rc;
2195
dea3101e 2196 mp = (struct lpfc_dmabuf *) (pmb->context1);
7054a606 2197
dea3101e
JB
2198 if (mp) {
2199 lpfc_mbuf_free(phba, mp->virt, mp->phys);
2200 kfree(mp);
2201 }
7054a606
JS
2202
2203 /*
2204 * If a REG_LOGIN succeeded after node is destroyed or node
2205 * is in re-discovery driver need to cleanup the RPI.
2206 */
2e0fef85 2207 if (!(phba->pport->load_flag & FC_UNLOADING) &&
04c68496
JS
2208 pmb->u.mb.mbxCommand == MBX_REG_LOGIN64 &&
2209 !pmb->u.mb.mbxStatus) {
2210 rpi = pmb->u.mb.un.varWords[0];
6d368e53 2211 vpi = pmb->u.mb.un.varRegLogin.vpi;
04c68496 2212 lpfc_unreg_login(phba, vpi, rpi, pmb);
de96e9c5 2213 pmb->vport = vport;
92d7f7b0 2214 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
7054a606
JS
2215 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
2216 if (rc != MBX_NOT_FINISHED)
2217 return;
2218 }
2219
695a814e
JS
2220 if ((pmb->u.mb.mbxCommand == MBX_REG_VPI) &&
2221 !(phba->pport->load_flag & FC_UNLOADING) &&
2222 !pmb->u.mb.mbxStatus) {
5af5eee7
JS
2223 shost = lpfc_shost_from_vport(vport);
2224 spin_lock_irq(shost->host_lock);
2225 vport->vpi_state |= LPFC_VPI_REGISTERED;
2226 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
2227 spin_unlock_irq(shost->host_lock);
695a814e
JS
2228 }
2229
d439d286
JS
2230 if (pmb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
2231 ndlp = (struct lpfc_nodelist *)pmb->context2;
2232 lpfc_nlp_put(ndlp);
2233 pmb->context2 = NULL;
2234 }
2235
dcf2a4e0
JS
2236 /* Check security permission status on INIT_LINK mailbox command */
2237 if ((pmb->u.mb.mbxCommand == MBX_INIT_LINK) &&
2238 (pmb->u.mb.mbxStatus == MBXERR_SEC_NO_PERMISSION))
2239 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
2240 "2860 SLI authentication is required "
2241 "for INIT_LINK but has not done yet\n");
2242
04c68496
JS
2243 if (bf_get(lpfc_mqe_command, &pmb->u.mqe) == MBX_SLI4_CONFIG)
2244 lpfc_sli4_mbox_cmd_free(phba, pmb);
2245 else
2246 mempool_free(pmb, phba->mbox_mem_pool);
dea3101e 2247}
be6bb941
JS
2248 /**
2249 * lpfc_sli4_unreg_rpi_cmpl_clr - mailbox completion handler
2250 * @phba: Pointer to HBA context object.
2251 * @pmb: Pointer to mailbox object.
2252 *
2253 * This function is the unreg rpi mailbox completion handler. It
2254 * frees the memory resources associated with the completed mailbox
2255 * command. An additional refrenece is put on the ndlp to prevent
2256 * lpfc_nlp_release from freeing the rpi bit in the bitmask before
2257 * the unreg mailbox command completes, this routine puts the
2258 * reference back.
2259 *
2260 **/
2261void
2262lpfc_sli4_unreg_rpi_cmpl_clr(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
2263{
2264 struct lpfc_vport *vport = pmb->vport;
2265 struct lpfc_nodelist *ndlp;
2266
2267 ndlp = pmb->context1;
2268 if (pmb->u.mb.mbxCommand == MBX_UNREG_LOGIN) {
2269 if (phba->sli_rev == LPFC_SLI_REV4 &&
2270 (bf_get(lpfc_sli_intf_if_type,
2271 &phba->sli4_hba.sli_intf) ==
2272 LPFC_SLI_INTF_IF_TYPE_2)) {
2273 if (ndlp) {
2274 lpfc_printf_vlog(vport, KERN_INFO, LOG_SLI,
2275 "0010 UNREG_LOGIN vpi:%x "
2276 "rpi:%x DID:%x map:%x %p\n",
2277 vport->vpi, ndlp->nlp_rpi,
2278 ndlp->nlp_DID,
2279 ndlp->nlp_usg_map, ndlp);
7c5e518c 2280 ndlp->nlp_flag &= ~NLP_LOGO_ACC;
be6bb941
JS
2281 lpfc_nlp_put(ndlp);
2282 }
2283 }
2284 }
2285
2286 mempool_free(pmb, phba->mbox_mem_pool);
2287}
dea3101e 2288
e59058c4 2289/**
3621a710 2290 * lpfc_sli_handle_mb_event - Handle mailbox completions from firmware
e59058c4
JS
2291 * @phba: Pointer to HBA context object.
2292 *
2293 * This function is called with no lock held. This function processes all
2294 * the completed mailbox commands and gives it to upper layers. The interrupt
2295 * service routine processes mailbox completion interrupt and adds completed
2296 * mailbox commands to the mboxq_cmpl queue and signals the worker thread.
2297 * Worker thread call lpfc_sli_handle_mb_event, which will return the
2298 * completed mailbox commands in mboxq_cmpl queue to the upper layers. This
2299 * function returns the mailbox commands to the upper layer by calling the
2300 * completion handler function of each mailbox.
2301 **/
dea3101e 2302int
2e0fef85 2303lpfc_sli_handle_mb_event(struct lpfc_hba *phba)
dea3101e 2304{
92d7f7b0 2305 MAILBOX_t *pmbox;
dea3101e 2306 LPFC_MBOXQ_t *pmb;
92d7f7b0
JS
2307 int rc;
2308 LIST_HEAD(cmplq);
dea3101e
JB
2309
2310 phba->sli.slistat.mbox_event++;
2311
92d7f7b0
JS
2312 /* Get all completed mailboxe buffers into the cmplq */
2313 spin_lock_irq(&phba->hbalock);
2314 list_splice_init(&phba->sli.mboxq_cmpl, &cmplq);
2315 spin_unlock_irq(&phba->hbalock);
dea3101e 2316
92d7f7b0
JS
2317 /* Get a Mailbox buffer to setup mailbox commands for callback */
2318 do {
2319 list_remove_head(&cmplq, pmb, LPFC_MBOXQ_t, list);
2320 if (pmb == NULL)
2321 break;
2e0fef85 2322
04c68496 2323 pmbox = &pmb->u.mb;
dea3101e 2324
858c9f6c
JS
2325 if (pmbox->mbxCommand != MBX_HEARTBEAT) {
2326 if (pmb->vport) {
2327 lpfc_debugfs_disc_trc(pmb->vport,
2328 LPFC_DISC_TRC_MBOX_VPORT,
2329 "MBOX cmpl vport: cmd:x%x mb:x%x x%x",
2330 (uint32_t)pmbox->mbxCommand,
2331 pmbox->un.varWords[0],
2332 pmbox->un.varWords[1]);
2333 }
2334 else {
2335 lpfc_debugfs_disc_trc(phba->pport,
2336 LPFC_DISC_TRC_MBOX,
2337 "MBOX cmpl: cmd:x%x mb:x%x x%x",
2338 (uint32_t)pmbox->mbxCommand,
2339 pmbox->un.varWords[0],
2340 pmbox->un.varWords[1]);
2341 }
2342 }
2343
dea3101e
JB
2344 /*
2345 * It is a fatal error if unknown mbox command completion.
2346 */
2347 if (lpfc_sli_chk_mbx_command(pmbox->mbxCommand) ==
2348 MBX_SHUTDOWN) {
af901ca1 2349 /* Unknown mailbox command compl */
92d7f7b0 2350 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
e8b62011 2351 "(%d):0323 Unknown Mailbox command "
a183a15f 2352 "x%x (x%x/x%x) Cmpl\n",
92d7f7b0 2353 pmb->vport ? pmb->vport->vpi : 0,
04c68496 2354 pmbox->mbxCommand,
a183a15f
JS
2355 lpfc_sli_config_mbox_subsys_get(phba,
2356 pmb),
2357 lpfc_sli_config_mbox_opcode_get(phba,
2358 pmb));
2e0fef85 2359 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
2360 phba->work_hs = HS_FFER3;
2361 lpfc_handle_eratt(phba);
92d7f7b0 2362 continue;
dea3101e
JB
2363 }
2364
dea3101e
JB
2365 if (pmbox->mbxStatus) {
2366 phba->sli.slistat.mbox_stat_err++;
2367 if (pmbox->mbxStatus == MBXERR_NO_RESOURCES) {
2368 /* Mbox cmd cmpl error - RETRYing */
92d7f7b0 2369 lpfc_printf_log(phba, KERN_INFO,
a183a15f
JS
2370 LOG_MBOX | LOG_SLI,
2371 "(%d):0305 Mbox cmd cmpl "
2372 "error - RETRYing Data: x%x "
2373 "(x%x/x%x) x%x x%x x%x\n",
2374 pmb->vport ? pmb->vport->vpi : 0,
2375 pmbox->mbxCommand,
2376 lpfc_sli_config_mbox_subsys_get(phba,
2377 pmb),
2378 lpfc_sli_config_mbox_opcode_get(phba,
2379 pmb),
2380 pmbox->mbxStatus,
2381 pmbox->un.varWords[0],
2382 pmb->vport->port_state);
dea3101e
JB
2383 pmbox->mbxStatus = 0;
2384 pmbox->mbxOwner = OWN_HOST;
dea3101e 2385 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
04c68496 2386 if (rc != MBX_NOT_FINISHED)
92d7f7b0 2387 continue;
dea3101e
JB
2388 }
2389 }
2390
2391 /* Mailbox cmd <cmd> Cmpl <cmpl> */
92d7f7b0 2392 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
a183a15f 2393 "(%d):0307 Mailbox cmd x%x (x%x/x%x) Cmpl x%p "
e74c03c8
JS
2394 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x "
2395 "x%x x%x x%x\n",
92d7f7b0 2396 pmb->vport ? pmb->vport->vpi : 0,
dea3101e 2397 pmbox->mbxCommand,
a183a15f
JS
2398 lpfc_sli_config_mbox_subsys_get(phba, pmb),
2399 lpfc_sli_config_mbox_opcode_get(phba, pmb),
dea3101e
JB
2400 pmb->mbox_cmpl,
2401 *((uint32_t *) pmbox),
2402 pmbox->un.varWords[0],
2403 pmbox->un.varWords[1],
2404 pmbox->un.varWords[2],
2405 pmbox->un.varWords[3],
2406 pmbox->un.varWords[4],
2407 pmbox->un.varWords[5],
2408 pmbox->un.varWords[6],
e74c03c8
JS
2409 pmbox->un.varWords[7],
2410 pmbox->un.varWords[8],
2411 pmbox->un.varWords[9],
2412 pmbox->un.varWords[10]);
dea3101e 2413
92d7f7b0 2414 if (pmb->mbox_cmpl)
dea3101e 2415 pmb->mbox_cmpl(phba,pmb);
92d7f7b0
JS
2416 } while (1);
2417 return 0;
2418}
dea3101e 2419
e59058c4 2420/**
3621a710 2421 * lpfc_sli_get_buff - Get the buffer associated with the buffer tag
e59058c4
JS
2422 * @phba: Pointer to HBA context object.
2423 * @pring: Pointer to driver SLI ring object.
2424 * @tag: buffer tag.
2425 *
2426 * This function is called with no lock held. When QUE_BUFTAG_BIT bit
2427 * is set in the tag the buffer is posted for a particular exchange,
2428 * the function will return the buffer without replacing the buffer.
2429 * If the buffer is for unsolicited ELS or CT traffic, this function
2430 * returns the buffer and also posts another buffer to the firmware.
2431 **/
76bb24ef
JS
2432static struct lpfc_dmabuf *
2433lpfc_sli_get_buff(struct lpfc_hba *phba,
9f1e1b50
JS
2434 struct lpfc_sli_ring *pring,
2435 uint32_t tag)
76bb24ef 2436{
9f1e1b50
JS
2437 struct hbq_dmabuf *hbq_entry;
2438
76bb24ef
JS
2439 if (tag & QUE_BUFTAG_BIT)
2440 return lpfc_sli_ring_taggedbuf_get(phba, pring, tag);
9f1e1b50
JS
2441 hbq_entry = lpfc_sli_hbqbuf_find(phba, tag);
2442 if (!hbq_entry)
2443 return NULL;
2444 return &hbq_entry->dbuf;
76bb24ef 2445}
57127f15 2446
3772a991
JS
2447/**
2448 * lpfc_complete_unsol_iocb - Complete an unsolicited sequence
2449 * @phba: Pointer to HBA context object.
2450 * @pring: Pointer to driver SLI ring object.
2451 * @saveq: Pointer to the iocbq struct representing the sequence starting frame.
2452 * @fch_r_ctl: the r_ctl for the first frame of the sequence.
2453 * @fch_type: the type for the first frame of the sequence.
2454 *
2455 * This function is called with no lock held. This function uses the r_ctl and
2456 * type of the received sequence to find the correct callback function to call
2457 * to process the sequence.
2458 **/
2459static int
2460lpfc_complete_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2461 struct lpfc_iocbq *saveq, uint32_t fch_r_ctl,
2462 uint32_t fch_type)
2463{
2464 int i;
2465
2466 /* unSolicited Responses */
2467 if (pring->prt[0].profile) {
2468 if (pring->prt[0].lpfc_sli_rcv_unsol_event)
2469 (pring->prt[0].lpfc_sli_rcv_unsol_event) (phba, pring,
2470 saveq);
2471 return 1;
2472 }
2473 /* We must search, based on rctl / type
2474 for the right routine */
2475 for (i = 0; i < pring->num_mask; i++) {
2476 if ((pring->prt[i].rctl == fch_r_ctl) &&
2477 (pring->prt[i].type == fch_type)) {
2478 if (pring->prt[i].lpfc_sli_rcv_unsol_event)
2479 (pring->prt[i].lpfc_sli_rcv_unsol_event)
2480 (phba, pring, saveq);
2481 return 1;
2482 }
2483 }
2484 return 0;
2485}
e59058c4
JS
2486
2487/**
3621a710 2488 * lpfc_sli_process_unsol_iocb - Unsolicited iocb handler
e59058c4
JS
2489 * @phba: Pointer to HBA context object.
2490 * @pring: Pointer to driver SLI ring object.
2491 * @saveq: Pointer to the unsolicited iocb.
2492 *
2493 * This function is called with no lock held by the ring event handler
2494 * when there is an unsolicited iocb posted to the response ring by the
2495 * firmware. This function gets the buffer associated with the iocbs
2496 * and calls the event handler for the ring. This function handles both
2497 * qring buffers and hbq buffers.
2498 * When the function returns 1 the caller can free the iocb object otherwise
2499 * upper layer functions will free the iocb objects.
2500 **/
dea3101e
JB
2501static int
2502lpfc_sli_process_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2503 struct lpfc_iocbq *saveq)
2504{
2505 IOCB_t * irsp;
2506 WORD5 * w5p;
2507 uint32_t Rctl, Type;
76bb24ef 2508 struct lpfc_iocbq *iocbq;
3163f725 2509 struct lpfc_dmabuf *dmzbuf;
dea3101e 2510
dea3101e 2511 irsp = &(saveq->iocb);
57127f15
JS
2512
2513 if (irsp->ulpCommand == CMD_ASYNC_STATUS) {
2514 if (pring->lpfc_sli_rcv_async_status)
2515 pring->lpfc_sli_rcv_async_status(phba, pring, saveq);
2516 else
2517 lpfc_printf_log(phba,
2518 KERN_WARNING,
2519 LOG_SLI,
2520 "0316 Ring %d handler: unexpected "
2521 "ASYNC_STATUS iocb received evt_code "
2522 "0x%x\n",
2523 pring->ringno,
2524 irsp->un.asyncstat.evt_code);
2525 return 1;
2526 }
2527
3163f725
JS
2528 if ((irsp->ulpCommand == CMD_IOCB_RET_XRI64_CX) &&
2529 (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED)) {
2530 if (irsp->ulpBdeCount > 0) {
2531 dmzbuf = lpfc_sli_get_buff(phba, pring,
2532 irsp->un.ulpWord[3]);
2533 lpfc_in_buf_free(phba, dmzbuf);
2534 }
2535
2536 if (irsp->ulpBdeCount > 1) {
2537 dmzbuf = lpfc_sli_get_buff(phba, pring,
2538 irsp->unsli3.sli3Words[3]);
2539 lpfc_in_buf_free(phba, dmzbuf);
2540 }
2541
2542 if (irsp->ulpBdeCount > 2) {
2543 dmzbuf = lpfc_sli_get_buff(phba, pring,
2544 irsp->unsli3.sli3Words[7]);
2545 lpfc_in_buf_free(phba, dmzbuf);
2546 }
2547
2548 return 1;
2549 }
2550
92d7f7b0 2551 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
76bb24ef
JS
2552 if (irsp->ulpBdeCount != 0) {
2553 saveq->context2 = lpfc_sli_get_buff(phba, pring,
2554 irsp->un.ulpWord[3]);
2555 if (!saveq->context2)
2556 lpfc_printf_log(phba,
2557 KERN_ERR,
2558 LOG_SLI,
2559 "0341 Ring %d Cannot find buffer for "
2560 "an unsolicited iocb. tag 0x%x\n",
2561 pring->ringno,
2562 irsp->un.ulpWord[3]);
76bb24ef
JS
2563 }
2564 if (irsp->ulpBdeCount == 2) {
2565 saveq->context3 = lpfc_sli_get_buff(phba, pring,
2566 irsp->unsli3.sli3Words[7]);
2567 if (!saveq->context3)
2568 lpfc_printf_log(phba,
2569 KERN_ERR,
2570 LOG_SLI,
2571 "0342 Ring %d Cannot find buffer for an"
2572 " unsolicited iocb. tag 0x%x\n",
2573 pring->ringno,
2574 irsp->unsli3.sli3Words[7]);
2575 }
2576 list_for_each_entry(iocbq, &saveq->list, list) {
76bb24ef 2577 irsp = &(iocbq->iocb);
76bb24ef
JS
2578 if (irsp->ulpBdeCount != 0) {
2579 iocbq->context2 = lpfc_sli_get_buff(phba, pring,
2580 irsp->un.ulpWord[3]);
9c2face6 2581 if (!iocbq->context2)
76bb24ef
JS
2582 lpfc_printf_log(phba,
2583 KERN_ERR,
2584 LOG_SLI,
2585 "0343 Ring %d Cannot find "
2586 "buffer for an unsolicited iocb"
2587 ". tag 0x%x\n", pring->ringno,
92d7f7b0 2588 irsp->un.ulpWord[3]);
76bb24ef
JS
2589 }
2590 if (irsp->ulpBdeCount == 2) {
2591 iocbq->context3 = lpfc_sli_get_buff(phba, pring,
51ef4c26 2592 irsp->unsli3.sli3Words[7]);
9c2face6 2593 if (!iocbq->context3)
76bb24ef
JS
2594 lpfc_printf_log(phba,
2595 KERN_ERR,
2596 LOG_SLI,
2597 "0344 Ring %d Cannot find "
2598 "buffer for an unsolicited "
2599 "iocb. tag 0x%x\n",
2600 pring->ringno,
2601 irsp->unsli3.sli3Words[7]);
2602 }
2603 }
92d7f7b0 2604 }
9c2face6
JS
2605 if (irsp->ulpBdeCount != 0 &&
2606 (irsp->ulpCommand == CMD_IOCB_RCV_CONT64_CX ||
2607 irsp->ulpStatus == IOSTAT_INTERMED_RSP)) {
2608 int found = 0;
2609
2610 /* search continue save q for same XRI */
2611 list_for_each_entry(iocbq, &pring->iocb_continue_saveq, clist) {
7851fe2c
JS
2612 if (iocbq->iocb.unsli3.rcvsli3.ox_id ==
2613 saveq->iocb.unsli3.rcvsli3.ox_id) {
9c2face6
JS
2614 list_add_tail(&saveq->list, &iocbq->list);
2615 found = 1;
2616 break;
2617 }
2618 }
2619 if (!found)
2620 list_add_tail(&saveq->clist,
2621 &pring->iocb_continue_saveq);
2622 if (saveq->iocb.ulpStatus != IOSTAT_INTERMED_RSP) {
2623 list_del_init(&iocbq->clist);
2624 saveq = iocbq;
2625 irsp = &(saveq->iocb);
2626 } else
2627 return 0;
2628 }
2629 if ((irsp->ulpCommand == CMD_RCV_ELS_REQ64_CX) ||
2630 (irsp->ulpCommand == CMD_RCV_ELS_REQ_CX) ||
2631 (irsp->ulpCommand == CMD_IOCB_RCV_ELS64_CX)) {
6a9c52cf
JS
2632 Rctl = FC_RCTL_ELS_REQ;
2633 Type = FC_TYPE_ELS;
9c2face6
JS
2634 } else {
2635 w5p = (WORD5 *)&(saveq->iocb.un.ulpWord[5]);
2636 Rctl = w5p->hcsw.Rctl;
2637 Type = w5p->hcsw.Type;
2638
2639 /* Firmware Workaround */
2640 if ((Rctl == 0) && (pring->ringno == LPFC_ELS_RING) &&
2641 (irsp->ulpCommand == CMD_RCV_SEQUENCE64_CX ||
2642 irsp->ulpCommand == CMD_IOCB_RCV_SEQ64_CX)) {
6a9c52cf
JS
2643 Rctl = FC_RCTL_ELS_REQ;
2644 Type = FC_TYPE_ELS;
9c2face6
JS
2645 w5p->hcsw.Rctl = Rctl;
2646 w5p->hcsw.Type = Type;
2647 }
2648 }
92d7f7b0 2649
3772a991 2650 if (!lpfc_complete_unsol_iocb(phba, pring, saveq, Rctl, Type))
92d7f7b0 2651 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
e8b62011 2652 "0313 Ring %d handler: unexpected Rctl x%x "
92d7f7b0 2653 "Type x%x received\n",
e8b62011 2654 pring->ringno, Rctl, Type);
3772a991 2655
92d7f7b0 2656 return 1;
dea3101e
JB
2657}
2658
e59058c4 2659/**
3621a710 2660 * lpfc_sli_iocbq_lookup - Find command iocb for the given response iocb
e59058c4
JS
2661 * @phba: Pointer to HBA context object.
2662 * @pring: Pointer to driver SLI ring object.
2663 * @prspiocb: Pointer to response iocb object.
2664 *
2665 * This function looks up the iocb_lookup table to get the command iocb
2666 * corresponding to the given response iocb using the iotag of the
2667 * response iocb. This function is called with the hbalock held.
2668 * This function returns the command iocb object if it finds the command
2669 * iocb else returns NULL.
2670 **/
dea3101e 2671static struct lpfc_iocbq *
2e0fef85
JS
2672lpfc_sli_iocbq_lookup(struct lpfc_hba *phba,
2673 struct lpfc_sli_ring *pring,
2674 struct lpfc_iocbq *prspiocb)
dea3101e 2675{
dea3101e
JB
2676 struct lpfc_iocbq *cmd_iocb = NULL;
2677 uint16_t iotag;
1c2ba475 2678 lockdep_assert_held(&phba->hbalock);
dea3101e 2679
604a3e30
JB
2680 iotag = prspiocb->iocb.ulpIoTag;
2681
2682 if (iotag != 0 && iotag <= phba->sli.last_iotag) {
2683 cmd_iocb = phba->sli.iocbq_lookup[iotag];
4f2e66c6 2684 if (cmd_iocb->iocb_flag & LPFC_IO_ON_TXCMPLQ) {
89533e9b
JS
2685 /* remove from txcmpl queue list */
2686 list_del_init(&cmd_iocb->list);
4f2e66c6 2687 cmd_iocb->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
89533e9b 2688 return cmd_iocb;
2a9bf3d0 2689 }
dea3101e
JB
2690 }
2691
dea3101e 2692 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
89533e9b 2693 "0317 iotag x%x is out of "
604a3e30 2694 "range: max iotag x%x wd0 x%x\n",
e8b62011 2695 iotag, phba->sli.last_iotag,
604a3e30 2696 *(((uint32_t *) &prspiocb->iocb) + 7));
dea3101e
JB
2697 return NULL;
2698}
2699
3772a991
JS
2700/**
2701 * lpfc_sli_iocbq_lookup_by_tag - Find command iocb for the iotag
2702 * @phba: Pointer to HBA context object.
2703 * @pring: Pointer to driver SLI ring object.
2704 * @iotag: IOCB tag.
2705 *
2706 * This function looks up the iocb_lookup table to get the command iocb
2707 * corresponding to the given iotag. This function is called with the
2708 * hbalock held.
2709 * This function returns the command iocb object if it finds the command
2710 * iocb else returns NULL.
2711 **/
2712static struct lpfc_iocbq *
2713lpfc_sli_iocbq_lookup_by_tag(struct lpfc_hba *phba,
2714 struct lpfc_sli_ring *pring, uint16_t iotag)
2715{
2716 struct lpfc_iocbq *cmd_iocb;
2717
1c2ba475 2718 lockdep_assert_held(&phba->hbalock);
3772a991
JS
2719 if (iotag != 0 && iotag <= phba->sli.last_iotag) {
2720 cmd_iocb = phba->sli.iocbq_lookup[iotag];
4f2e66c6
JS
2721 if (cmd_iocb->iocb_flag & LPFC_IO_ON_TXCMPLQ) {
2722 /* remove from txcmpl queue list */
2723 list_del_init(&cmd_iocb->list);
2724 cmd_iocb->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
4f2e66c6 2725 return cmd_iocb;
2a9bf3d0 2726 }
3772a991 2727 }
89533e9b 2728
3772a991 2729 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
89533e9b 2730 "0372 iotag x%x is out of range: max iotag (x%x)\n",
3772a991
JS
2731 iotag, phba->sli.last_iotag);
2732 return NULL;
2733}
2734
e59058c4 2735/**
3621a710 2736 * lpfc_sli_process_sol_iocb - process solicited iocb completion
e59058c4
JS
2737 * @phba: Pointer to HBA context object.
2738 * @pring: Pointer to driver SLI ring object.
2739 * @saveq: Pointer to the response iocb to be processed.
2740 *
2741 * This function is called by the ring event handler for non-fcp
2742 * rings when there is a new response iocb in the response ring.
2743 * The caller is not required to hold any locks. This function
2744 * gets the command iocb associated with the response iocb and
2745 * calls the completion handler for the command iocb. If there
2746 * is no completion handler, the function will free the resources
2747 * associated with command iocb. If the response iocb is for
2748 * an already aborted command iocb, the status of the completion
2749 * is changed to IOSTAT_LOCAL_REJECT/IOERR_SLI_ABORTED.
2750 * This function always returns 1.
2751 **/
dea3101e 2752static int
2e0fef85 2753lpfc_sli_process_sol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
dea3101e
JB
2754 struct lpfc_iocbq *saveq)
2755{
2e0fef85 2756 struct lpfc_iocbq *cmdiocbp;
dea3101e
JB
2757 int rc = 1;
2758 unsigned long iflag;
2759
2760 /* Based on the iotag field, get the cmd IOCB from the txcmplq */
2e0fef85 2761 spin_lock_irqsave(&phba->hbalock, iflag);
604a3e30 2762 cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring, saveq);
2e0fef85
JS
2763 spin_unlock_irqrestore(&phba->hbalock, iflag);
2764
dea3101e
JB
2765 if (cmdiocbp) {
2766 if (cmdiocbp->iocb_cmpl) {
ea2151b4
JS
2767 /*
2768 * If an ELS command failed send an event to mgmt
2769 * application.
2770 */
2771 if (saveq->iocb.ulpStatus &&
2772 (pring->ringno == LPFC_ELS_RING) &&
2773 (cmdiocbp->iocb.ulpCommand ==
2774 CMD_ELS_REQUEST64_CR))
2775 lpfc_send_els_failure_event(phba,
2776 cmdiocbp, saveq);
2777
dea3101e
JB
2778 /*
2779 * Post all ELS completions to the worker thread.
2780 * All other are passed to the completion callback.
2781 */
2782 if (pring->ringno == LPFC_ELS_RING) {
341af102
JS
2783 if ((phba->sli_rev < LPFC_SLI_REV4) &&
2784 (cmdiocbp->iocb_flag &
2785 LPFC_DRIVER_ABORTED)) {
2786 spin_lock_irqsave(&phba->hbalock,
2787 iflag);
07951076
JS
2788 cmdiocbp->iocb_flag &=
2789 ~LPFC_DRIVER_ABORTED;
341af102
JS
2790 spin_unlock_irqrestore(&phba->hbalock,
2791 iflag);
07951076
JS
2792 saveq->iocb.ulpStatus =
2793 IOSTAT_LOCAL_REJECT;
2794 saveq->iocb.un.ulpWord[4] =
2795 IOERR_SLI_ABORTED;
0ff10d46
JS
2796
2797 /* Firmware could still be in progress
2798 * of DMAing payload, so don't free data
2799 * buffer till after a hbeat.
2800 */
341af102
JS
2801 spin_lock_irqsave(&phba->hbalock,
2802 iflag);
0ff10d46 2803 saveq->iocb_flag |= LPFC_DELAY_MEM_FREE;
341af102
JS
2804 spin_unlock_irqrestore(&phba->hbalock,
2805 iflag);
2806 }
0f65ff68
JS
2807 if (phba->sli_rev == LPFC_SLI_REV4) {
2808 if (saveq->iocb_flag &
2809 LPFC_EXCHANGE_BUSY) {
2810 /* Set cmdiocb flag for the
2811 * exchange busy so sgl (xri)
2812 * will not be released until
2813 * the abort xri is received
2814 * from hba.
2815 */
2816 spin_lock_irqsave(
2817 &phba->hbalock, iflag);
2818 cmdiocbp->iocb_flag |=
2819 LPFC_EXCHANGE_BUSY;
2820 spin_unlock_irqrestore(
2821 &phba->hbalock, iflag);
2822 }
2823 if (cmdiocbp->iocb_flag &
2824 LPFC_DRIVER_ABORTED) {
2825 /*
2826 * Clear LPFC_DRIVER_ABORTED
2827 * bit in case it was driver
2828 * initiated abort.
2829 */
2830 spin_lock_irqsave(
2831 &phba->hbalock, iflag);
2832 cmdiocbp->iocb_flag &=
2833 ~LPFC_DRIVER_ABORTED;
2834 spin_unlock_irqrestore(
2835 &phba->hbalock, iflag);
2836 cmdiocbp->iocb.ulpStatus =
2837 IOSTAT_LOCAL_REJECT;
2838 cmdiocbp->iocb.un.ulpWord[4] =
2839 IOERR_ABORT_REQUESTED;
2840 /*
2841 * For SLI4, irsiocb contains
2842 * NO_XRI in sli_xritag, it
2843 * shall not affect releasing
2844 * sgl (xri) process.
2845 */
2846 saveq->iocb.ulpStatus =
2847 IOSTAT_LOCAL_REJECT;
2848 saveq->iocb.un.ulpWord[4] =
2849 IOERR_SLI_ABORTED;
2850 spin_lock_irqsave(
2851 &phba->hbalock, iflag);
2852 saveq->iocb_flag |=
2853 LPFC_DELAY_MEM_FREE;
2854 spin_unlock_irqrestore(
2855 &phba->hbalock, iflag);
2856 }
07951076 2857 }
dea3101e 2858 }
2e0fef85 2859 (cmdiocbp->iocb_cmpl) (phba, cmdiocbp, saveq);
604a3e30
JB
2860 } else
2861 lpfc_sli_release_iocbq(phba, cmdiocbp);
dea3101e
JB
2862 } else {
2863 /*
2864 * Unknown initiating command based on the response iotag.
2865 * This could be the case on the ELS ring because of
2866 * lpfc_els_abort().
2867 */
2868 if (pring->ringno != LPFC_ELS_RING) {
2869 /*
2870 * Ring <ringno> handler: unexpected completion IoTag
2871 * <IoTag>
2872 */
a257bf90 2873 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
e8b62011
JS
2874 "0322 Ring %d handler: "
2875 "unexpected completion IoTag x%x "
2876 "Data: x%x x%x x%x x%x\n",
2877 pring->ringno,
2878 saveq->iocb.ulpIoTag,
2879 saveq->iocb.ulpStatus,
2880 saveq->iocb.un.ulpWord[4],
2881 saveq->iocb.ulpCommand,
2882 saveq->iocb.ulpContext);
dea3101e
JB
2883 }
2884 }
68876920 2885
dea3101e
JB
2886 return rc;
2887}
2888
e59058c4 2889/**
3621a710 2890 * lpfc_sli_rsp_pointers_error - Response ring pointer error handler
e59058c4
JS
2891 * @phba: Pointer to HBA context object.
2892 * @pring: Pointer to driver SLI ring object.
2893 *
2894 * This function is called from the iocb ring event handlers when
2895 * put pointer is ahead of the get pointer for a ring. This function signal
2896 * an error attention condition to the worker thread and the worker
2897 * thread will transition the HBA to offline state.
2898 **/
2e0fef85
JS
2899static void
2900lpfc_sli_rsp_pointers_error(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
875fbdfe 2901{
34b02dcd 2902 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
875fbdfe 2903 /*
025dfdaf 2904 * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
875fbdfe
JSEC
2905 * rsp ring <portRspMax>
2906 */
2907 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011 2908 "0312 Ring %d handler: portRspPut %d "
025dfdaf 2909 "is bigger than rsp ring %d\n",
e8b62011 2910 pring->ringno, le32_to_cpu(pgp->rspPutInx),
7e56aa25 2911 pring->sli.sli3.numRiocb);
875fbdfe 2912
2e0fef85 2913 phba->link_state = LPFC_HBA_ERROR;
875fbdfe
JSEC
2914
2915 /*
2916 * All error attention handlers are posted to
2917 * worker thread
2918 */
2919 phba->work_ha |= HA_ERATT;
2920 phba->work_hs = HS_FFER3;
92d7f7b0 2921
5e9d9b82 2922 lpfc_worker_wake_up(phba);
875fbdfe
JSEC
2923
2924 return;
2925}
2926
9399627f 2927/**
3621a710 2928 * lpfc_poll_eratt - Error attention polling timer timeout handler
9399627f
JS
2929 * @ptr: Pointer to address of HBA context object.
2930 *
2931 * This function is invoked by the Error Attention polling timer when the
2932 * timer times out. It will check the SLI Error Attention register for
2933 * possible attention events. If so, it will post an Error Attention event
2934 * and wake up worker thread to process it. Otherwise, it will set up the
2935 * Error Attention polling timer for the next poll.
2936 **/
2937void lpfc_poll_eratt(unsigned long ptr)
2938{
2939 struct lpfc_hba *phba;
eb016566 2940 uint32_t eratt = 0;
aa6fbb75 2941 uint64_t sli_intr, cnt;
9399627f
JS
2942
2943 phba = (struct lpfc_hba *)ptr;
2944
aa6fbb75
JS
2945 /* Here we will also keep track of interrupts per sec of the hba */
2946 sli_intr = phba->sli.slistat.sli_intr;
2947
2948 if (phba->sli.slistat.sli_prev_intr > sli_intr)
2949 cnt = (((uint64_t)(-1) - phba->sli.slistat.sli_prev_intr) +
2950 sli_intr);
2951 else
2952 cnt = (sli_intr - phba->sli.slistat.sli_prev_intr);
2953
65791f1f
JS
2954 /* 64-bit integer division not supported on 32-bit x86 - use do_div */
2955 do_div(cnt, phba->eratt_poll_interval);
aa6fbb75
JS
2956 phba->sli.slistat.sli_ips = cnt;
2957
2958 phba->sli.slistat.sli_prev_intr = sli_intr;
2959
9399627f
JS
2960 /* Check chip HA register for error event */
2961 eratt = lpfc_sli_check_eratt(phba);
2962
2963 if (eratt)
2964 /* Tell the worker thread there is work to do */
2965 lpfc_worker_wake_up(phba);
2966 else
2967 /* Restart the timer for next eratt poll */
256ec0d0
JS
2968 mod_timer(&phba->eratt_poll,
2969 jiffies +
65791f1f 2970 msecs_to_jiffies(1000 * phba->eratt_poll_interval));
9399627f
JS
2971 return;
2972}
2973
875fbdfe 2974
e59058c4 2975/**
3621a710 2976 * lpfc_sli_handle_fast_ring_event - Handle ring events on FCP ring
e59058c4
JS
2977 * @phba: Pointer to HBA context object.
2978 * @pring: Pointer to driver SLI ring object.
2979 * @mask: Host attention register mask for this ring.
2980 *
2981 * This function is called from the interrupt context when there is a ring
2982 * event for the fcp ring. The caller does not hold any lock.
2983 * The function processes each response iocb in the response ring until it
25985edc 2984 * finds an iocb with LE bit set and chains all the iocbs up to the iocb with
e59058c4
JS
2985 * LE bit set. The function will call the completion handler of the command iocb
2986 * if the response iocb indicates a completion for a command iocb or it is
2987 * an abort completion. The function will call lpfc_sli_process_unsol_iocb
2988 * function if this is an unsolicited iocb.
dea3101e 2989 * This routine presumes LPFC_FCP_RING handling and doesn't bother
45ed1190
JS
2990 * to check it explicitly.
2991 */
2992int
2e0fef85
JS
2993lpfc_sli_handle_fast_ring_event(struct lpfc_hba *phba,
2994 struct lpfc_sli_ring *pring, uint32_t mask)
dea3101e 2995{
34b02dcd 2996 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
dea3101e 2997 IOCB_t *irsp = NULL;
87f6eaff 2998 IOCB_t *entry = NULL;
dea3101e
JB
2999 struct lpfc_iocbq *cmdiocbq = NULL;
3000 struct lpfc_iocbq rspiocbq;
dea3101e
JB
3001 uint32_t status;
3002 uint32_t portRspPut, portRspMax;
3003 int rc = 1;
3004 lpfc_iocb_type type;
3005 unsigned long iflag;
3006 uint32_t rsp_cmpl = 0;
dea3101e 3007
2e0fef85 3008 spin_lock_irqsave(&phba->hbalock, iflag);
dea3101e
JB
3009 pring->stats.iocb_event++;
3010
dea3101e
JB
3011 /*
3012 * The next available response entry should never exceed the maximum
3013 * entries. If it does, treat it as an adapter hardware error.
3014 */
7e56aa25 3015 portRspMax = pring->sli.sli3.numRiocb;
dea3101e
JB
3016 portRspPut = le32_to_cpu(pgp->rspPutInx);
3017 if (unlikely(portRspPut >= portRspMax)) {
875fbdfe 3018 lpfc_sli_rsp_pointers_error(phba, pring);
2e0fef85 3019 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea3101e
JB
3020 return 1;
3021 }
45ed1190
JS
3022 if (phba->fcp_ring_in_use) {
3023 spin_unlock_irqrestore(&phba->hbalock, iflag);
3024 return 1;
3025 } else
3026 phba->fcp_ring_in_use = 1;
dea3101e
JB
3027
3028 rmb();
7e56aa25 3029 while (pring->sli.sli3.rspidx != portRspPut) {
87f6eaff
JSEC
3030 /*
3031 * Fetch an entry off the ring and copy it into a local data
3032 * structure. The copy involves a byte-swap since the
3033 * network byte order and pci byte orders are different.
3034 */
ed957684 3035 entry = lpfc_resp_iocb(phba, pring);
858c9f6c 3036 phba->last_completion_time = jiffies;
875fbdfe 3037
7e56aa25
JS
3038 if (++pring->sli.sli3.rspidx >= portRspMax)
3039 pring->sli.sli3.rspidx = 0;
875fbdfe 3040
87f6eaff
JSEC
3041 lpfc_sli_pcimem_bcopy((uint32_t *) entry,
3042 (uint32_t *) &rspiocbq.iocb,
ed957684 3043 phba->iocb_rsp_size);
a4bc3379 3044 INIT_LIST_HEAD(&(rspiocbq.list));
87f6eaff
JSEC
3045 irsp = &rspiocbq.iocb;
3046
dea3101e
JB
3047 type = lpfc_sli_iocb_cmd_type(irsp->ulpCommand & CMD_IOCB_MASK);
3048 pring->stats.iocb_rsp++;
3049 rsp_cmpl++;
3050
3051 if (unlikely(irsp->ulpStatus)) {
92d7f7b0
JS
3052 /*
3053 * If resource errors reported from HBA, reduce
3054 * queuedepths of the SCSI device.
3055 */
3056 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
e3d2b802
JS
3057 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
3058 IOERR_NO_RESOURCES)) {
92d7f7b0 3059 spin_unlock_irqrestore(&phba->hbalock, iflag);
3772a991 3060 phba->lpfc_rampdown_queue_depth(phba);
92d7f7b0
JS
3061 spin_lock_irqsave(&phba->hbalock, iflag);
3062 }
3063
dea3101e
JB
3064 /* Rsp ring <ringno> error: IOCB */
3065 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
e8b62011 3066 "0336 Rsp Ring %d error: IOCB Data: "
92d7f7b0 3067 "x%x x%x x%x x%x x%x x%x x%x x%x\n",
e8b62011 3068 pring->ringno,
92d7f7b0
JS
3069 irsp->un.ulpWord[0],
3070 irsp->un.ulpWord[1],
3071 irsp->un.ulpWord[2],
3072 irsp->un.ulpWord[3],
3073 irsp->un.ulpWord[4],
3074 irsp->un.ulpWord[5],
d7c255b2
JS
3075 *(uint32_t *)&irsp->un1,
3076 *((uint32_t *)&irsp->un1 + 1));
dea3101e
JB
3077 }
3078
3079 switch (type) {
3080 case LPFC_ABORT_IOCB:
3081 case LPFC_SOL_IOCB:
3082 /*
3083 * Idle exchange closed via ABTS from port. No iocb
3084 * resources need to be recovered.
3085 */
3086 if (unlikely(irsp->ulpCommand == CMD_XRI_ABORTED_CX)) {
dca9479b 3087 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
e8b62011 3088 "0333 IOCB cmd 0x%x"
dca9479b 3089 " processed. Skipping"
92d7f7b0 3090 " completion\n",
dca9479b 3091 irsp->ulpCommand);
dea3101e
JB
3092 break;
3093 }
3094
604a3e30
JB
3095 cmdiocbq = lpfc_sli_iocbq_lookup(phba, pring,
3096 &rspiocbq);
0f65ff68
JS
3097 if (unlikely(!cmdiocbq))
3098 break;
3099 if (cmdiocbq->iocb_flag & LPFC_DRIVER_ABORTED)
3100 cmdiocbq->iocb_flag &= ~LPFC_DRIVER_ABORTED;
3101 if (cmdiocbq->iocb_cmpl) {
3102 spin_unlock_irqrestore(&phba->hbalock, iflag);
3103 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq,
3104 &rspiocbq);
3105 spin_lock_irqsave(&phba->hbalock, iflag);
3106 }
dea3101e 3107 break;
a4bc3379 3108 case LPFC_UNSOL_IOCB:
2e0fef85 3109 spin_unlock_irqrestore(&phba->hbalock, iflag);
a4bc3379 3110 lpfc_sli_process_unsol_iocb(phba, pring, &rspiocbq);
2e0fef85 3111 spin_lock_irqsave(&phba->hbalock, iflag);
a4bc3379 3112 break;
dea3101e
JB
3113 default:
3114 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
3115 char adaptermsg[LPFC_MAX_ADPTMSG];
3116 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
3117 memcpy(&adaptermsg[0], (uint8_t *) irsp,
3118 MAX_MSG_DATA);
898eb71c
JP
3119 dev_warn(&((phba->pcidev)->dev),
3120 "lpfc%d: %s\n",
dea3101e
JB
3121 phba->brd_no, adaptermsg);
3122 } else {
3123 /* Unknown IOCB command */
3124 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011 3125 "0334 Unknown IOCB command "
92d7f7b0 3126 "Data: x%x, x%x x%x x%x x%x\n",
e8b62011 3127 type, irsp->ulpCommand,
92d7f7b0
JS
3128 irsp->ulpStatus,
3129 irsp->ulpIoTag,
3130 irsp->ulpContext);
dea3101e
JB
3131 }
3132 break;
3133 }
3134
3135 /*
3136 * The response IOCB has been processed. Update the ring
3137 * pointer in SLIM. If the port response put pointer has not
3138 * been updated, sync the pgp->rspPutInx and fetch the new port
3139 * response put pointer.
3140 */
7e56aa25
JS
3141 writel(pring->sli.sli3.rspidx,
3142 &phba->host_gp[pring->ringno].rspGetInx);
dea3101e 3143
7e56aa25 3144 if (pring->sli.sli3.rspidx == portRspPut)
dea3101e
JB
3145 portRspPut = le32_to_cpu(pgp->rspPutInx);
3146 }
3147
3148 if ((rsp_cmpl > 0) && (mask & HA_R0RE_REQ)) {
3149 pring->stats.iocb_rsp_full++;
3150 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
3151 writel(status, phba->CAregaddr);
3152 readl(phba->CAregaddr);
3153 }
3154 if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
3155 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
3156 pring->stats.iocb_cmd_empty++;
3157
3158 /* Force update of the local copy of cmdGetInx */
7e56aa25 3159 pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
dea3101e
JB
3160 lpfc_sli_resume_iocb(phba, pring);
3161
3162 if ((pring->lpfc_sli_cmd_available))
3163 (pring->lpfc_sli_cmd_available) (phba, pring);
3164
3165 }
3166
45ed1190 3167 phba->fcp_ring_in_use = 0;
2e0fef85 3168 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea3101e
JB
3169 return rc;
3170}
3171
e59058c4 3172/**
3772a991
JS
3173 * lpfc_sli_sp_handle_rspiocb - Handle slow-path response iocb
3174 * @phba: Pointer to HBA context object.
3175 * @pring: Pointer to driver SLI ring object.
3176 * @rspiocbp: Pointer to driver response IOCB object.
3177 *
3178 * This function is called from the worker thread when there is a slow-path
3179 * response IOCB to process. This function chains all the response iocbs until
3180 * seeing the iocb with the LE bit set. The function will call
3181 * lpfc_sli_process_sol_iocb function if the response iocb indicates a
3182 * completion of a command iocb. The function will call the
3183 * lpfc_sli_process_unsol_iocb function if this is an unsolicited iocb.
3184 * The function frees the resources or calls the completion handler if this
3185 * iocb is an abort completion. The function returns NULL when the response
3186 * iocb has the LE bit set and all the chained iocbs are processed, otherwise
3187 * this function shall chain the iocb on to the iocb_continueq and return the
3188 * response iocb passed in.
3189 **/
3190static struct lpfc_iocbq *
3191lpfc_sli_sp_handle_rspiocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
3192 struct lpfc_iocbq *rspiocbp)
3193{
3194 struct lpfc_iocbq *saveq;
3195 struct lpfc_iocbq *cmdiocbp;
3196 struct lpfc_iocbq *next_iocb;
3197 IOCB_t *irsp = NULL;
3198 uint32_t free_saveq;
3199 uint8_t iocb_cmd_type;
3200 lpfc_iocb_type type;
3201 unsigned long iflag;
3202 int rc;
3203
3204 spin_lock_irqsave(&phba->hbalock, iflag);
3205 /* First add the response iocb to the countinueq list */
3206 list_add_tail(&rspiocbp->list, &(pring->iocb_continueq));
3207 pring->iocb_continueq_cnt++;
3208
70f23fd6 3209 /* Now, determine whether the list is completed for processing */
3772a991
JS
3210 irsp = &rspiocbp->iocb;
3211 if (irsp->ulpLe) {
3212 /*
3213 * By default, the driver expects to free all resources
3214 * associated with this iocb completion.
3215 */
3216 free_saveq = 1;
3217 saveq = list_get_first(&pring->iocb_continueq,
3218 struct lpfc_iocbq, list);
3219 irsp = &(saveq->iocb);
3220 list_del_init(&pring->iocb_continueq);
3221 pring->iocb_continueq_cnt = 0;
3222
3223 pring->stats.iocb_rsp++;
3224
3225 /*
3226 * If resource errors reported from HBA, reduce
3227 * queuedepths of the SCSI device.
3228 */
3229 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
e3d2b802
JS
3230 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
3231 IOERR_NO_RESOURCES)) {
3772a991
JS
3232 spin_unlock_irqrestore(&phba->hbalock, iflag);
3233 phba->lpfc_rampdown_queue_depth(phba);
3234 spin_lock_irqsave(&phba->hbalock, iflag);
3235 }
3236
3237 if (irsp->ulpStatus) {
3238 /* Rsp ring <ringno> error: IOCB */
3239 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
3240 "0328 Rsp Ring %d error: "
3241 "IOCB Data: "
3242 "x%x x%x x%x x%x "
3243 "x%x x%x x%x x%x "
3244 "x%x x%x x%x x%x "
3245 "x%x x%x x%x x%x\n",
3246 pring->ringno,
3247 irsp->un.ulpWord[0],
3248 irsp->un.ulpWord[1],
3249 irsp->un.ulpWord[2],
3250 irsp->un.ulpWord[3],
3251 irsp->un.ulpWord[4],
3252 irsp->un.ulpWord[5],
3253 *(((uint32_t *) irsp) + 6),
3254 *(((uint32_t *) irsp) + 7),
3255 *(((uint32_t *) irsp) + 8),
3256 *(((uint32_t *) irsp) + 9),
3257 *(((uint32_t *) irsp) + 10),
3258 *(((uint32_t *) irsp) + 11),
3259 *(((uint32_t *) irsp) + 12),
3260 *(((uint32_t *) irsp) + 13),
3261 *(((uint32_t *) irsp) + 14),
3262 *(((uint32_t *) irsp) + 15));
3263 }
3264
3265 /*
3266 * Fetch the IOCB command type and call the correct completion
3267 * routine. Solicited and Unsolicited IOCBs on the ELS ring
3268 * get freed back to the lpfc_iocb_list by the discovery
3269 * kernel thread.
3270 */
3271 iocb_cmd_type = irsp->ulpCommand & CMD_IOCB_MASK;
3272 type = lpfc_sli_iocb_cmd_type(iocb_cmd_type);
3273 switch (type) {
3274 case LPFC_SOL_IOCB:
3275 spin_unlock_irqrestore(&phba->hbalock, iflag);
3276 rc = lpfc_sli_process_sol_iocb(phba, pring, saveq);
3277 spin_lock_irqsave(&phba->hbalock, iflag);
3278 break;
3279
3280 case LPFC_UNSOL_IOCB:
3281 spin_unlock_irqrestore(&phba->hbalock, iflag);
3282 rc = lpfc_sli_process_unsol_iocb(phba, pring, saveq);
3283 spin_lock_irqsave(&phba->hbalock, iflag);
3284 if (!rc)
3285 free_saveq = 0;
3286 break;
3287
3288 case LPFC_ABORT_IOCB:
3289 cmdiocbp = NULL;
3290 if (irsp->ulpCommand != CMD_XRI_ABORTED_CX)
3291 cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring,
3292 saveq);
3293 if (cmdiocbp) {
3294 /* Call the specified completion routine */
3295 if (cmdiocbp->iocb_cmpl) {
3296 spin_unlock_irqrestore(&phba->hbalock,
3297 iflag);
3298 (cmdiocbp->iocb_cmpl)(phba, cmdiocbp,
3299 saveq);
3300 spin_lock_irqsave(&phba->hbalock,
3301 iflag);
3302 } else
3303 __lpfc_sli_release_iocbq(phba,
3304 cmdiocbp);
3305 }
3306 break;
3307
3308 case LPFC_UNKNOWN_IOCB:
3309 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
3310 char adaptermsg[LPFC_MAX_ADPTMSG];
3311 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
3312 memcpy(&adaptermsg[0], (uint8_t *)irsp,
3313 MAX_MSG_DATA);
3314 dev_warn(&((phba->pcidev)->dev),
3315 "lpfc%d: %s\n",
3316 phba->brd_no, adaptermsg);
3317 } else {
3318 /* Unknown IOCB command */
3319 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3320 "0335 Unknown IOCB "
3321 "command Data: x%x "
3322 "x%x x%x x%x\n",
3323 irsp->ulpCommand,
3324 irsp->ulpStatus,
3325 irsp->ulpIoTag,
3326 irsp->ulpContext);
3327 }
3328 break;
3329 }
3330
3331 if (free_saveq) {
3332 list_for_each_entry_safe(rspiocbp, next_iocb,
3333 &saveq->list, list) {
61f35bff 3334 list_del_init(&rspiocbp->list);
3772a991
JS
3335 __lpfc_sli_release_iocbq(phba, rspiocbp);
3336 }
3337 __lpfc_sli_release_iocbq(phba, saveq);
3338 }
3339 rspiocbp = NULL;
3340 }
3341 spin_unlock_irqrestore(&phba->hbalock, iflag);
3342 return rspiocbp;
3343}
3344
3345/**
3346 * lpfc_sli_handle_slow_ring_event - Wrapper func for handling slow-path iocbs
e59058c4
JS
3347 * @phba: Pointer to HBA context object.
3348 * @pring: Pointer to driver SLI ring object.
3349 * @mask: Host attention register mask for this ring.
3350 *
3772a991
JS
3351 * This routine wraps the actual slow_ring event process routine from the
3352 * API jump table function pointer from the lpfc_hba struct.
e59058c4 3353 **/
3772a991 3354void
2e0fef85
JS
3355lpfc_sli_handle_slow_ring_event(struct lpfc_hba *phba,
3356 struct lpfc_sli_ring *pring, uint32_t mask)
3772a991
JS
3357{
3358 phba->lpfc_sli_handle_slow_ring_event(phba, pring, mask);
3359}
3360
3361/**
3362 * lpfc_sli_handle_slow_ring_event_s3 - Handle SLI3 ring event for non-FCP rings
3363 * @phba: Pointer to HBA context object.
3364 * @pring: Pointer to driver SLI ring object.
3365 * @mask: Host attention register mask for this ring.
3366 *
3367 * This function is called from the worker thread when there is a ring event
3368 * for non-fcp rings. The caller does not hold any lock. The function will
3369 * remove each response iocb in the response ring and calls the handle
3370 * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
3371 **/
3372static void
3373lpfc_sli_handle_slow_ring_event_s3(struct lpfc_hba *phba,
3374 struct lpfc_sli_ring *pring, uint32_t mask)
dea3101e 3375{
34b02dcd 3376 struct lpfc_pgp *pgp;
dea3101e
JB
3377 IOCB_t *entry;
3378 IOCB_t *irsp = NULL;
3379 struct lpfc_iocbq *rspiocbp = NULL;
dea3101e 3380 uint32_t portRspPut, portRspMax;
dea3101e 3381 unsigned long iflag;
3772a991 3382 uint32_t status;
dea3101e 3383
34b02dcd 3384 pgp = &phba->port_gp[pring->ringno];
2e0fef85 3385 spin_lock_irqsave(&phba->hbalock, iflag);
dea3101e
JB
3386 pring->stats.iocb_event++;
3387
dea3101e
JB
3388 /*
3389 * The next available response entry should never exceed the maximum
3390 * entries. If it does, treat it as an adapter hardware error.
3391 */
7e56aa25 3392 portRspMax = pring->sli.sli3.numRiocb;
dea3101e
JB
3393 portRspPut = le32_to_cpu(pgp->rspPutInx);
3394 if (portRspPut >= portRspMax) {
3395 /*
025dfdaf 3396 * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
dea3101e
JB
3397 * rsp ring <portRspMax>
3398 */
ed957684 3399 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011 3400 "0303 Ring %d handler: portRspPut %d "
025dfdaf 3401 "is bigger than rsp ring %d\n",
e8b62011 3402 pring->ringno, portRspPut, portRspMax);
dea3101e 3403
2e0fef85
JS
3404 phba->link_state = LPFC_HBA_ERROR;
3405 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea3101e
JB
3406
3407 phba->work_hs = HS_FFER3;
3408 lpfc_handle_eratt(phba);
3409
3772a991 3410 return;
dea3101e
JB
3411 }
3412
3413 rmb();
7e56aa25 3414 while (pring->sli.sli3.rspidx != portRspPut) {
dea3101e
JB
3415 /*
3416 * Build a completion list and call the appropriate handler.
3417 * The process is to get the next available response iocb, get
3418 * a free iocb from the list, copy the response data into the
3419 * free iocb, insert to the continuation list, and update the
3420 * next response index to slim. This process makes response
3421 * iocb's in the ring available to DMA as fast as possible but
3422 * pays a penalty for a copy operation. Since the iocb is
3423 * only 32 bytes, this penalty is considered small relative to
3424 * the PCI reads for register values and a slim write. When
3425 * the ulpLe field is set, the entire Command has been
3426 * received.
3427 */
ed957684
JS
3428 entry = lpfc_resp_iocb(phba, pring);
3429
858c9f6c 3430 phba->last_completion_time = jiffies;
2e0fef85 3431 rspiocbp = __lpfc_sli_get_iocbq(phba);
dea3101e
JB
3432 if (rspiocbp == NULL) {
3433 printk(KERN_ERR "%s: out of buffers! Failing "
cadbd4a5 3434 "completion.\n", __func__);
dea3101e
JB
3435 break;
3436 }
3437
ed957684
JS
3438 lpfc_sli_pcimem_bcopy(entry, &rspiocbp->iocb,
3439 phba->iocb_rsp_size);
dea3101e
JB
3440 irsp = &rspiocbp->iocb;
3441
7e56aa25
JS
3442 if (++pring->sli.sli3.rspidx >= portRspMax)
3443 pring->sli.sli3.rspidx = 0;
dea3101e 3444
a58cbd52
JS
3445 if (pring->ringno == LPFC_ELS_RING) {
3446 lpfc_debugfs_slow_ring_trc(phba,
3447 "IOCB rsp ring: wd4:x%08x wd6:x%08x wd7:x%08x",
3448 *(((uint32_t *) irsp) + 4),
3449 *(((uint32_t *) irsp) + 6),
3450 *(((uint32_t *) irsp) + 7));
3451 }
3452
7e56aa25
JS
3453 writel(pring->sli.sli3.rspidx,
3454 &phba->host_gp[pring->ringno].rspGetInx);
dea3101e 3455
3772a991
JS
3456 spin_unlock_irqrestore(&phba->hbalock, iflag);
3457 /* Handle the response IOCB */
3458 rspiocbp = lpfc_sli_sp_handle_rspiocb(phba, pring, rspiocbp);
3459 spin_lock_irqsave(&phba->hbalock, iflag);
dea3101e
JB
3460
3461 /*
3462 * If the port response put pointer has not been updated, sync
3463 * the pgp->rspPutInx in the MAILBOX_tand fetch the new port
3464 * response put pointer.
3465 */
7e56aa25 3466 if (pring->sli.sli3.rspidx == portRspPut) {
dea3101e
JB
3467 portRspPut = le32_to_cpu(pgp->rspPutInx);
3468 }
7e56aa25 3469 } /* while (pring->sli.sli3.rspidx != portRspPut) */
dea3101e 3470
92d7f7b0 3471 if ((rspiocbp != NULL) && (mask & HA_R0RE_REQ)) {
dea3101e
JB
3472 /* At least one response entry has been freed */
3473 pring->stats.iocb_rsp_full++;
3474 /* SET RxRE_RSP in Chip Att register */
3475 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
3476 writel(status, phba->CAregaddr);
3477 readl(phba->CAregaddr); /* flush */
3478 }
3479 if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
3480 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
3481 pring->stats.iocb_cmd_empty++;
3482
3483 /* Force update of the local copy of cmdGetInx */
7e56aa25 3484 pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
dea3101e
JB
3485 lpfc_sli_resume_iocb(phba, pring);
3486
3487 if ((pring->lpfc_sli_cmd_available))
3488 (pring->lpfc_sli_cmd_available) (phba, pring);
3489
3490 }
3491
2e0fef85 3492 spin_unlock_irqrestore(&phba->hbalock, iflag);
3772a991 3493 return;
dea3101e
JB
3494}
3495
4f774513
JS
3496/**
3497 * lpfc_sli_handle_slow_ring_event_s4 - Handle SLI4 slow-path els events
3498 * @phba: Pointer to HBA context object.
3499 * @pring: Pointer to driver SLI ring object.
3500 * @mask: Host attention register mask for this ring.
3501 *
3502 * This function is called from the worker thread when there is a pending
3503 * ELS response iocb on the driver internal slow-path response iocb worker
3504 * queue. The caller does not hold any lock. The function will remove each
3505 * response iocb from the response worker queue and calls the handle
3506 * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
3507 **/
3508static void
3509lpfc_sli_handle_slow_ring_event_s4(struct lpfc_hba *phba,
3510 struct lpfc_sli_ring *pring, uint32_t mask)
3511{
3512 struct lpfc_iocbq *irspiocbq;
4d9ab994
JS
3513 struct hbq_dmabuf *dmabuf;
3514 struct lpfc_cq_event *cq_event;
4f774513
JS
3515 unsigned long iflag;
3516
45ed1190
JS
3517 spin_lock_irqsave(&phba->hbalock, iflag);
3518 phba->hba_flag &= ~HBA_SP_QUEUE_EVT;
3519 spin_unlock_irqrestore(&phba->hbalock, iflag);
3520 while (!list_empty(&phba->sli4_hba.sp_queue_event)) {
4f774513
JS
3521 /* Get the response iocb from the head of work queue */
3522 spin_lock_irqsave(&phba->hbalock, iflag);
45ed1190 3523 list_remove_head(&phba->sli4_hba.sp_queue_event,
4d9ab994 3524 cq_event, struct lpfc_cq_event, list);
4f774513 3525 spin_unlock_irqrestore(&phba->hbalock, iflag);
4d9ab994
JS
3526
3527 switch (bf_get(lpfc_wcqe_c_code, &cq_event->cqe.wcqe_cmpl)) {
3528 case CQE_CODE_COMPL_WQE:
3529 irspiocbq = container_of(cq_event, struct lpfc_iocbq,
3530 cq_event);
45ed1190
JS
3531 /* Translate ELS WCQE to response IOCBQ */
3532 irspiocbq = lpfc_sli4_els_wcqe_to_rspiocbq(phba,
3533 irspiocbq);
3534 if (irspiocbq)
3535 lpfc_sli_sp_handle_rspiocb(phba, pring,
3536 irspiocbq);
4d9ab994
JS
3537 break;
3538 case CQE_CODE_RECEIVE:
7851fe2c 3539 case CQE_CODE_RECEIVE_V1:
4d9ab994
JS
3540 dmabuf = container_of(cq_event, struct hbq_dmabuf,
3541 cq_event);
3542 lpfc_sli4_handle_received_buffer(phba, dmabuf);
3543 break;
3544 default:
3545 break;
3546 }
4f774513
JS
3547 }
3548}
3549
e59058c4 3550/**
3621a710 3551 * lpfc_sli_abort_iocb_ring - Abort all iocbs in the ring
e59058c4
JS
3552 * @phba: Pointer to HBA context object.
3553 * @pring: Pointer to driver SLI ring object.
3554 *
3555 * This function aborts all iocbs in the given ring and frees all the iocb
3556 * objects in txq. This function issues an abort iocb for all the iocb commands
3557 * in txcmplq. The iocbs in the txcmplq is not guaranteed to complete before
3558 * the return of this function. The caller is not required to hold any locks.
3559 **/
2e0fef85 3560void
dea3101e
JB
3561lpfc_sli_abort_iocb_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
3562{
2534ba75 3563 LIST_HEAD(completions);
dea3101e 3564 struct lpfc_iocbq *iocb, *next_iocb;
dea3101e 3565
92d7f7b0
JS
3566 if (pring->ringno == LPFC_ELS_RING) {
3567 lpfc_fabric_abort_hba(phba);
3568 }
3569
dea3101e
JB
3570 /* Error everything on txq and txcmplq
3571 * First do the txq.
3572 */
db55fba8
JS
3573 if (phba->sli_rev >= LPFC_SLI_REV4) {
3574 spin_lock_irq(&pring->ring_lock);
3575 list_splice_init(&pring->txq, &completions);
3576 pring->txq_cnt = 0;
3577 spin_unlock_irq(&pring->ring_lock);
dea3101e 3578
db55fba8
JS
3579 spin_lock_irq(&phba->hbalock);
3580 /* Next issue ABTS for everything on the txcmplq */
3581 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
3582 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
3583 spin_unlock_irq(&phba->hbalock);
3584 } else {
3585 spin_lock_irq(&phba->hbalock);
3586 list_splice_init(&pring->txq, &completions);
3587 pring->txq_cnt = 0;
dea3101e 3588
db55fba8
JS
3589 /* Next issue ABTS for everything on the txcmplq */
3590 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
3591 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
3592 spin_unlock_irq(&phba->hbalock);
3593 }
dea3101e 3594
a257bf90
JS
3595 /* Cancel all the IOCBs from the completions list */
3596 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
3597 IOERR_SLI_ABORTED);
dea3101e
JB
3598}
3599
db55fba8
JS
3600/**
3601 * lpfc_sli_abort_fcp_rings - Abort all iocbs in all FCP rings
3602 * @phba: Pointer to HBA context object.
3603 * @pring: Pointer to driver SLI ring object.
3604 *
3605 * This function aborts all iocbs in FCP rings and frees all the iocb
3606 * objects in txq. This function issues an abort iocb for all the iocb commands
3607 * in txcmplq. The iocbs in the txcmplq is not guaranteed to complete before
3608 * the return of this function. The caller is not required to hold any locks.
3609 **/
3610void
3611lpfc_sli_abort_fcp_rings(struct lpfc_hba *phba)
3612{
3613 struct lpfc_sli *psli = &phba->sli;
3614 struct lpfc_sli_ring *pring;
3615 uint32_t i;
3616
3617 /* Look on all the FCP Rings for the iotag */
3618 if (phba->sli_rev >= LPFC_SLI_REV4) {
3619 for (i = 0; i < phba->cfg_fcp_io_channel; i++) {
3620 pring = &psli->ring[i + MAX_SLI3_CONFIGURED_RINGS];
3621 lpfc_sli_abort_iocb_ring(phba, pring);
3622 }
3623 } else {
3624 pring = &psli->ring[psli->fcp_ring];
3625 lpfc_sli_abort_iocb_ring(phba, pring);
3626 }
3627}
3628
3629
a8e497d5 3630/**
3621a710 3631 * lpfc_sli_flush_fcp_rings - flush all iocbs in the fcp ring
a8e497d5
JS
3632 * @phba: Pointer to HBA context object.
3633 *
3634 * This function flushes all iocbs in the fcp ring and frees all the iocb
3635 * objects in txq and txcmplq. This function will not issue abort iocbs
3636 * for all the iocb commands in txcmplq, they will just be returned with
3637 * IOERR_SLI_DOWN. This function is invoked with EEH when device's PCI
3638 * slot has been permanently disabled.
3639 **/
3640void
3641lpfc_sli_flush_fcp_rings(struct lpfc_hba *phba)
3642{
3643 LIST_HEAD(txq);
3644 LIST_HEAD(txcmplq);
a8e497d5
JS
3645 struct lpfc_sli *psli = &phba->sli;
3646 struct lpfc_sli_ring *pring;
db55fba8 3647 uint32_t i;
a8e497d5
JS
3648
3649 spin_lock_irq(&phba->hbalock);
4f2e66c6
JS
3650 /* Indicate the I/O queues are flushed */
3651 phba->hba_flag |= HBA_FCP_IOQ_FLUSH;
a8e497d5
JS
3652 spin_unlock_irq(&phba->hbalock);
3653
db55fba8
JS
3654 /* Look on all the FCP Rings for the iotag */
3655 if (phba->sli_rev >= LPFC_SLI_REV4) {
3656 for (i = 0; i < phba->cfg_fcp_io_channel; i++) {
3657 pring = &psli->ring[i + MAX_SLI3_CONFIGURED_RINGS];
3658
3659 spin_lock_irq(&pring->ring_lock);
3660 /* Retrieve everything on txq */
3661 list_splice_init(&pring->txq, &txq);
3662 /* Retrieve everything on the txcmplq */
3663 list_splice_init(&pring->txcmplq, &txcmplq);
3664 pring->txq_cnt = 0;
3665 pring->txcmplq_cnt = 0;
3666 spin_unlock_irq(&pring->ring_lock);
3667
3668 /* Flush the txq */
3669 lpfc_sli_cancel_iocbs(phba, &txq,
3670 IOSTAT_LOCAL_REJECT,
3671 IOERR_SLI_DOWN);
3672 /* Flush the txcmpq */
3673 lpfc_sli_cancel_iocbs(phba, &txcmplq,
3674 IOSTAT_LOCAL_REJECT,
3675 IOERR_SLI_DOWN);
3676 }
3677 } else {
3678 pring = &psli->ring[psli->fcp_ring];
a8e497d5 3679
db55fba8
JS
3680 spin_lock_irq(&phba->hbalock);
3681 /* Retrieve everything on txq */
3682 list_splice_init(&pring->txq, &txq);
3683 /* Retrieve everything on the txcmplq */
3684 list_splice_init(&pring->txcmplq, &txcmplq);
3685 pring->txq_cnt = 0;
3686 pring->txcmplq_cnt = 0;
3687 spin_unlock_irq(&phba->hbalock);
3688
3689 /* Flush the txq */
3690 lpfc_sli_cancel_iocbs(phba, &txq, IOSTAT_LOCAL_REJECT,
3691 IOERR_SLI_DOWN);
3692 /* Flush the txcmpq */
3693 lpfc_sli_cancel_iocbs(phba, &txcmplq, IOSTAT_LOCAL_REJECT,
3694 IOERR_SLI_DOWN);
3695 }
a8e497d5
JS
3696}
3697
e59058c4 3698/**
3772a991 3699 * lpfc_sli_brdready_s3 - Check for sli3 host ready status
e59058c4
JS
3700 * @phba: Pointer to HBA context object.
3701 * @mask: Bit mask to be checked.
3702 *
3703 * This function reads the host status register and compares
3704 * with the provided bit mask to check if HBA completed
3705 * the restart. This function will wait in a loop for the
3706 * HBA to complete restart. If the HBA does not restart within
3707 * 15 iterations, the function will reset the HBA again. The
3708 * function returns 1 when HBA fail to restart otherwise returns
3709 * zero.
3710 **/
3772a991
JS
3711static int
3712lpfc_sli_brdready_s3(struct lpfc_hba *phba, uint32_t mask)
dea3101e 3713{
41415862
JW
3714 uint32_t status;
3715 int i = 0;
3716 int retval = 0;
dea3101e 3717
41415862 3718 /* Read the HBA Host Status Register */
9940b97b
JS
3719 if (lpfc_readl(phba->HSregaddr, &status))
3720 return 1;
dea3101e 3721
41415862
JW
3722 /*
3723 * Check status register every 100ms for 5 retries, then every
3724 * 500ms for 5, then every 2.5 sec for 5, then reset board and
3725 * every 2.5 sec for 4.
3726 * Break our of the loop if errors occurred during init.
3727 */
3728 while (((status & mask) != mask) &&
3729 !(status & HS_FFERM) &&
3730 i++ < 20) {
dea3101e 3731
41415862
JW
3732 if (i <= 5)
3733 msleep(10);
3734 else if (i <= 10)
3735 msleep(500);
3736 else
3737 msleep(2500);
dea3101e 3738
41415862 3739 if (i == 15) {
2e0fef85 3740 /* Do post */
92d7f7b0 3741 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
41415862
JW
3742 lpfc_sli_brdrestart(phba);
3743 }
3744 /* Read the HBA Host Status Register */
9940b97b
JS
3745 if (lpfc_readl(phba->HSregaddr, &status)) {
3746 retval = 1;
3747 break;
3748 }
41415862 3749 }
dea3101e 3750
41415862
JW
3751 /* Check to see if any errors occurred during init */
3752 if ((status & HS_FFERM) || (i >= 20)) {
e40a02c1
JS
3753 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3754 "2751 Adapter failed to restart, "
3755 "status reg x%x, FW Data: A8 x%x AC x%x\n",
3756 status,
3757 readl(phba->MBslimaddr + 0xa8),
3758 readl(phba->MBslimaddr + 0xac));
2e0fef85 3759 phba->link_state = LPFC_HBA_ERROR;
41415862 3760 retval = 1;
dea3101e 3761 }
dea3101e 3762
41415862
JW
3763 return retval;
3764}
dea3101e 3765
da0436e9
JS
3766/**
3767 * lpfc_sli_brdready_s4 - Check for sli4 host ready status
3768 * @phba: Pointer to HBA context object.
3769 * @mask: Bit mask to be checked.
3770 *
3771 * This function checks the host status register to check if HBA is
3772 * ready. This function will wait in a loop for the HBA to be ready
3773 * If the HBA is not ready , the function will will reset the HBA PCI
3774 * function again. The function returns 1 when HBA fail to be ready
3775 * otherwise returns zero.
3776 **/
3777static int
3778lpfc_sli_brdready_s4(struct lpfc_hba *phba, uint32_t mask)
3779{
3780 uint32_t status;
3781 int retval = 0;
3782
3783 /* Read the HBA Host Status Register */
3784 status = lpfc_sli4_post_status_check(phba);
3785
3786 if (status) {
3787 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
3788 lpfc_sli_brdrestart(phba);
3789 status = lpfc_sli4_post_status_check(phba);
3790 }
3791
3792 /* Check to see if any errors occurred during init */
3793 if (status) {
3794 phba->link_state = LPFC_HBA_ERROR;
3795 retval = 1;
3796 } else
3797 phba->sli4_hba.intr_enable = 0;
3798
3799 return retval;
3800}
3801
3802/**
3803 * lpfc_sli_brdready - Wrapper func for checking the hba readyness
3804 * @phba: Pointer to HBA context object.
3805 * @mask: Bit mask to be checked.
3806 *
3807 * This routine wraps the actual SLI3 or SLI4 hba readyness check routine
3808 * from the API jump table function pointer from the lpfc_hba struct.
3809 **/
3810int
3811lpfc_sli_brdready(struct lpfc_hba *phba, uint32_t mask)
3812{
3813 return phba->lpfc_sli_brdready(phba, mask);
3814}
3815
9290831f
JS
3816#define BARRIER_TEST_PATTERN (0xdeadbeef)
3817
e59058c4 3818/**
3621a710 3819 * lpfc_reset_barrier - Make HBA ready for HBA reset
e59058c4
JS
3820 * @phba: Pointer to HBA context object.
3821 *
1b51197d
JS
3822 * This function is called before resetting an HBA. This function is called
3823 * with hbalock held and requests HBA to quiesce DMAs before a reset.
e59058c4 3824 **/
2e0fef85 3825void lpfc_reset_barrier(struct lpfc_hba *phba)
9290831f 3826{
65a29c16
JS
3827 uint32_t __iomem *resp_buf;
3828 uint32_t __iomem *mbox_buf;
9290831f 3829 volatile uint32_t mbox;
9940b97b 3830 uint32_t hc_copy, ha_copy, resp_data;
9290831f
JS
3831 int i;
3832 uint8_t hdrtype;
3833
1c2ba475
JT
3834 lockdep_assert_held(&phba->hbalock);
3835
9290831f
JS
3836 pci_read_config_byte(phba->pcidev, PCI_HEADER_TYPE, &hdrtype);
3837 if (hdrtype != 0x80 ||
3838 (FC_JEDEC_ID(phba->vpd.rev.biuRev) != HELIOS_JEDEC_ID &&
3839 FC_JEDEC_ID(phba->vpd.rev.biuRev) != THOR_JEDEC_ID))
3840 return;
3841
3842 /*
3843 * Tell the other part of the chip to suspend temporarily all
3844 * its DMA activity.
3845 */
65a29c16 3846 resp_buf = phba->MBslimaddr;
9290831f
JS
3847
3848 /* Disable the error attention */
9940b97b
JS
3849 if (lpfc_readl(phba->HCregaddr, &hc_copy))
3850 return;
9290831f
JS
3851 writel((hc_copy & ~HC_ERINT_ENA), phba->HCregaddr);
3852 readl(phba->HCregaddr); /* flush */
2e0fef85 3853 phba->link_flag |= LS_IGNORE_ERATT;
9290831f 3854
9940b97b
JS
3855 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3856 return;
3857 if (ha_copy & HA_ERATT) {
9290831f
JS
3858 /* Clear Chip error bit */
3859 writel(HA_ERATT, phba->HAregaddr);
2e0fef85 3860 phba->pport->stopped = 1;
9290831f
JS
3861 }
3862
3863 mbox = 0;
3864 ((MAILBOX_t *)&mbox)->mbxCommand = MBX_KILL_BOARD;
3865 ((MAILBOX_t *)&mbox)->mbxOwner = OWN_CHIP;
3866
3867 writel(BARRIER_TEST_PATTERN, (resp_buf + 1));
65a29c16 3868 mbox_buf = phba->MBslimaddr;
9290831f
JS
3869 writel(mbox, mbox_buf);
3870
9940b97b
JS
3871 for (i = 0; i < 50; i++) {
3872 if (lpfc_readl((resp_buf + 1), &resp_data))
3873 return;
3874 if (resp_data != ~(BARRIER_TEST_PATTERN))
3875 mdelay(1);
3876 else
3877 break;
3878 }
3879 resp_data = 0;
3880 if (lpfc_readl((resp_buf + 1), &resp_data))
3881 return;
3882 if (resp_data != ~(BARRIER_TEST_PATTERN)) {
f4b4c68f 3883 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE ||
2e0fef85 3884 phba->pport->stopped)
9290831f
JS
3885 goto restore_hc;
3886 else
3887 goto clear_errat;
3888 }
3889
3890 ((MAILBOX_t *)&mbox)->mbxOwner = OWN_HOST;
9940b97b
JS
3891 resp_data = 0;
3892 for (i = 0; i < 500; i++) {
3893 if (lpfc_readl(resp_buf, &resp_data))
3894 return;
3895 if (resp_data != mbox)
3896 mdelay(1);
3897 else
3898 break;
3899 }
9290831f
JS
3900
3901clear_errat:
3902
9940b97b
JS
3903 while (++i < 500) {
3904 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3905 return;
3906 if (!(ha_copy & HA_ERATT))
3907 mdelay(1);
3908 else
3909 break;
3910 }
9290831f
JS
3911
3912 if (readl(phba->HAregaddr) & HA_ERATT) {
3913 writel(HA_ERATT, phba->HAregaddr);
2e0fef85 3914 phba->pport->stopped = 1;
9290831f
JS
3915 }
3916
3917restore_hc:
2e0fef85 3918 phba->link_flag &= ~LS_IGNORE_ERATT;
9290831f
JS
3919 writel(hc_copy, phba->HCregaddr);
3920 readl(phba->HCregaddr); /* flush */
3921}
3922
e59058c4 3923/**
3621a710 3924 * lpfc_sli_brdkill - Issue a kill_board mailbox command
e59058c4
JS
3925 * @phba: Pointer to HBA context object.
3926 *
3927 * This function issues a kill_board mailbox command and waits for
3928 * the error attention interrupt. This function is called for stopping
3929 * the firmware processing. The caller is not required to hold any
3930 * locks. This function calls lpfc_hba_down_post function to free
3931 * any pending commands after the kill. The function will return 1 when it
3932 * fails to kill the board else will return 0.
3933 **/
41415862 3934int
2e0fef85 3935lpfc_sli_brdkill(struct lpfc_hba *phba)
41415862
JW
3936{
3937 struct lpfc_sli *psli;
3938 LPFC_MBOXQ_t *pmb;
3939 uint32_t status;
3940 uint32_t ha_copy;
3941 int retval;
3942 int i = 0;
dea3101e 3943
41415862 3944 psli = &phba->sli;
dea3101e 3945
41415862 3946 /* Kill HBA */
ed957684 3947 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
e8b62011
JS
3948 "0329 Kill HBA Data: x%x x%x\n",
3949 phba->pport->port_state, psli->sli_flag);
41415862 3950
98c9ea5c
JS
3951 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3952 if (!pmb)
41415862 3953 return 1;
41415862
JW
3954
3955 /* Disable the error attention */
2e0fef85 3956 spin_lock_irq(&phba->hbalock);
9940b97b
JS
3957 if (lpfc_readl(phba->HCregaddr, &status)) {
3958 spin_unlock_irq(&phba->hbalock);
3959 mempool_free(pmb, phba->mbox_mem_pool);
3960 return 1;
3961 }
41415862
JW
3962 status &= ~HC_ERINT_ENA;
3963 writel(status, phba->HCregaddr);
3964 readl(phba->HCregaddr); /* flush */
2e0fef85
JS
3965 phba->link_flag |= LS_IGNORE_ERATT;
3966 spin_unlock_irq(&phba->hbalock);
41415862
JW
3967
3968 lpfc_kill_board(phba, pmb);
3969 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
3970 retval = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
3971
3972 if (retval != MBX_SUCCESS) {
3973 if (retval != MBX_BUSY)
3974 mempool_free(pmb, phba->mbox_mem_pool);
e40a02c1
JS
3975 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3976 "2752 KILL_BOARD command failed retval %d\n",
3977 retval);
2e0fef85
JS
3978 spin_lock_irq(&phba->hbalock);
3979 phba->link_flag &= ~LS_IGNORE_ERATT;
3980 spin_unlock_irq(&phba->hbalock);
41415862
JW
3981 return 1;
3982 }
3983
f4b4c68f
JS
3984 spin_lock_irq(&phba->hbalock);
3985 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
3986 spin_unlock_irq(&phba->hbalock);
9290831f 3987
41415862
JW
3988 mempool_free(pmb, phba->mbox_mem_pool);
3989
3990 /* There is no completion for a KILL_BOARD mbox cmd. Check for an error
3991 * attention every 100ms for 3 seconds. If we don't get ERATT after
3992 * 3 seconds we still set HBA_ERROR state because the status of the
3993 * board is now undefined.
3994 */
9940b97b
JS
3995 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3996 return 1;
41415862
JW
3997 while ((i++ < 30) && !(ha_copy & HA_ERATT)) {
3998 mdelay(100);
9940b97b
JS
3999 if (lpfc_readl(phba->HAregaddr, &ha_copy))
4000 return 1;
41415862
JW
4001 }
4002
4003 del_timer_sync(&psli->mbox_tmo);
9290831f
JS
4004 if (ha_copy & HA_ERATT) {
4005 writel(HA_ERATT, phba->HAregaddr);
2e0fef85 4006 phba->pport->stopped = 1;
9290831f 4007 }
2e0fef85 4008 spin_lock_irq(&phba->hbalock);
41415862 4009 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
04c68496 4010 psli->mbox_active = NULL;
2e0fef85
JS
4011 phba->link_flag &= ~LS_IGNORE_ERATT;
4012 spin_unlock_irq(&phba->hbalock);
41415862 4013
41415862 4014 lpfc_hba_down_post(phba);
2e0fef85 4015 phba->link_state = LPFC_HBA_ERROR;
41415862 4016
2e0fef85 4017 return ha_copy & HA_ERATT ? 0 : 1;
dea3101e
JB
4018}
4019
e59058c4 4020/**
3772a991 4021 * lpfc_sli_brdreset - Reset a sli-2 or sli-3 HBA
e59058c4
JS
4022 * @phba: Pointer to HBA context object.
4023 *
4024 * This function resets the HBA by writing HC_INITFF to the control
4025 * register. After the HBA resets, this function resets all the iocb ring
4026 * indices. This function disables PCI layer parity checking during
4027 * the reset.
4028 * This function returns 0 always.
4029 * The caller is not required to hold any locks.
4030 **/
41415862 4031int
2e0fef85 4032lpfc_sli_brdreset(struct lpfc_hba *phba)
dea3101e 4033{
41415862 4034 struct lpfc_sli *psli;
dea3101e 4035 struct lpfc_sli_ring *pring;
41415862 4036 uint16_t cfg_value;
dea3101e 4037 int i;
dea3101e 4038
41415862 4039 psli = &phba->sli;
dea3101e 4040
41415862
JW
4041 /* Reset HBA */
4042 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
e8b62011 4043 "0325 Reset HBA Data: x%x x%x\n",
2e0fef85 4044 phba->pport->port_state, psli->sli_flag);
dea3101e
JB
4045
4046 /* perform board reset */
4047 phba->fc_eventTag = 0;
4d9ab994 4048 phba->link_events = 0;
2e0fef85
JS
4049 phba->pport->fc_myDID = 0;
4050 phba->pport->fc_prevDID = 0;
dea3101e 4051
41415862
JW
4052 /* Turn off parity checking and serr during the physical reset */
4053 pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
4054 pci_write_config_word(phba->pcidev, PCI_COMMAND,
4055 (cfg_value &
4056 ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
4057
3772a991
JS
4058 psli->sli_flag &= ~(LPFC_SLI_ACTIVE | LPFC_PROCESS_LA);
4059
41415862
JW
4060 /* Now toggle INITFF bit in the Host Control Register */
4061 writel(HC_INITFF, phba->HCregaddr);
4062 mdelay(1);
4063 readl(phba->HCregaddr); /* flush */
4064 writel(0, phba->HCregaddr);
4065 readl(phba->HCregaddr); /* flush */
4066
4067 /* Restore PCI cmd register */
4068 pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
dea3101e
JB
4069
4070 /* Initialize relevant SLI info */
41415862
JW
4071 for (i = 0; i < psli->num_rings; i++) {
4072 pring = &psli->ring[i];
dea3101e 4073 pring->flag = 0;
7e56aa25
JS
4074 pring->sli.sli3.rspidx = 0;
4075 pring->sli.sli3.next_cmdidx = 0;
4076 pring->sli.sli3.local_getidx = 0;
4077 pring->sli.sli3.cmdidx = 0;
dea3101e
JB
4078 pring->missbufcnt = 0;
4079 }
dea3101e 4080
2e0fef85 4081 phba->link_state = LPFC_WARM_START;
41415862
JW
4082 return 0;
4083}
4084
e59058c4 4085/**
da0436e9
JS
4086 * lpfc_sli4_brdreset - Reset a sli-4 HBA
4087 * @phba: Pointer to HBA context object.
4088 *
4089 * This function resets a SLI4 HBA. This function disables PCI layer parity
4090 * checking during resets the device. The caller is not required to hold
4091 * any locks.
4092 *
4093 * This function returns 0 always.
4094 **/
4095int
4096lpfc_sli4_brdreset(struct lpfc_hba *phba)
4097{
4098 struct lpfc_sli *psli = &phba->sli;
4099 uint16_t cfg_value;
0293635e 4100 int rc = 0;
da0436e9
JS
4101
4102 /* Reset HBA */
4103 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
0293635e
JS
4104 "0295 Reset HBA Data: x%x x%x x%x\n",
4105 phba->pport->port_state, psli->sli_flag,
4106 phba->hba_flag);
da0436e9
JS
4107
4108 /* perform board reset */
4109 phba->fc_eventTag = 0;
4d9ab994 4110 phba->link_events = 0;
da0436e9
JS
4111 phba->pport->fc_myDID = 0;
4112 phba->pport->fc_prevDID = 0;
4113
da0436e9
JS
4114 spin_lock_irq(&phba->hbalock);
4115 psli->sli_flag &= ~(LPFC_PROCESS_LA);
4116 phba->fcf.fcf_flag = 0;
da0436e9
JS
4117 spin_unlock_irq(&phba->hbalock);
4118
0293635e
JS
4119 /* SLI4 INTF 2: if FW dump is being taken skip INIT_PORT */
4120 if (phba->hba_flag & HBA_FW_DUMP_OP) {
4121 phba->hba_flag &= ~HBA_FW_DUMP_OP;
4122 return rc;
4123 }
4124
da0436e9
JS
4125 /* Now physically reset the device */
4126 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4127 "0389 Performing PCI function reset!\n");
be858b65
JS
4128
4129 /* Turn off parity checking and serr during the physical reset */
4130 pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
4131 pci_write_config_word(phba->pcidev, PCI_COMMAND, (cfg_value &
4132 ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
4133
88318816 4134 /* Perform FCoE PCI function reset before freeing queue memory */
27b01b82 4135 rc = lpfc_pci_function_reset(phba);
88318816 4136 lpfc_sli4_queue_destroy(phba);
da0436e9 4137
be858b65
JS
4138 /* Restore PCI cmd register */
4139 pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
4140
27b01b82 4141 return rc;
da0436e9
JS
4142}
4143
4144/**
4145 * lpfc_sli_brdrestart_s3 - Restart a sli-3 hba
e59058c4
JS
4146 * @phba: Pointer to HBA context object.
4147 *
4148 * This function is called in the SLI initialization code path to
4149 * restart the HBA. The caller is not required to hold any lock.
4150 * This function writes MBX_RESTART mailbox command to the SLIM and
4151 * resets the HBA. At the end of the function, it calls lpfc_hba_down_post
4152 * function to free any pending commands. The function enables
4153 * POST only during the first initialization. The function returns zero.
4154 * The function does not guarantee completion of MBX_RESTART mailbox
4155 * command before the return of this function.
4156 **/
da0436e9
JS
4157static int
4158lpfc_sli_brdrestart_s3(struct lpfc_hba *phba)
41415862
JW
4159{
4160 MAILBOX_t *mb;
4161 struct lpfc_sli *psli;
41415862
JW
4162 volatile uint32_t word0;
4163 void __iomem *to_slim;
0d878419 4164 uint32_t hba_aer_enabled;
41415862 4165
2e0fef85 4166 spin_lock_irq(&phba->hbalock);
41415862 4167
0d878419
JS
4168 /* Take PCIe device Advanced Error Reporting (AER) state */
4169 hba_aer_enabled = phba->hba_flag & HBA_AER_ENABLED;
4170
41415862
JW
4171 psli = &phba->sli;
4172
4173 /* Restart HBA */
4174 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
e8b62011 4175 "0337 Restart HBA Data: x%x x%x\n",
2e0fef85 4176 phba->pport->port_state, psli->sli_flag);
41415862
JW
4177
4178 word0 = 0;
4179 mb = (MAILBOX_t *) &word0;
4180 mb->mbxCommand = MBX_RESTART;
4181 mb->mbxHc = 1;
4182
9290831f
JS
4183 lpfc_reset_barrier(phba);
4184
41415862
JW
4185 to_slim = phba->MBslimaddr;
4186 writel(*(uint32_t *) mb, to_slim);
4187 readl(to_slim); /* flush */
4188
4189 /* Only skip post after fc_ffinit is completed */
eaf15d5b 4190 if (phba->pport->port_state)
41415862 4191 word0 = 1; /* This is really setting up word1 */
eaf15d5b 4192 else
41415862 4193 word0 = 0; /* This is really setting up word1 */
65a29c16 4194 to_slim = phba->MBslimaddr + sizeof (uint32_t);
41415862
JW
4195 writel(*(uint32_t *) mb, to_slim);
4196 readl(to_slim); /* flush */
dea3101e 4197
41415862 4198 lpfc_sli_brdreset(phba);
2e0fef85
JS
4199 phba->pport->stopped = 0;
4200 phba->link_state = LPFC_INIT_START;
da0436e9 4201 phba->hba_flag = 0;
2e0fef85 4202 spin_unlock_irq(&phba->hbalock);
41415862 4203
64ba8818
JS
4204 memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
4205 psli->stats_start = get_seconds();
4206
eaf15d5b
JS
4207 /* Give the INITFF and Post time to settle. */
4208 mdelay(100);
41415862 4209
0d878419
JS
4210 /* Reset HBA AER if it was enabled, note hba_flag was reset above */
4211 if (hba_aer_enabled)
4212 pci_disable_pcie_error_reporting(phba->pcidev);
4213
41415862 4214 lpfc_hba_down_post(phba);
dea3101e
JB
4215
4216 return 0;
4217}
4218
da0436e9
JS
4219/**
4220 * lpfc_sli_brdrestart_s4 - Restart the sli-4 hba
4221 * @phba: Pointer to HBA context object.
4222 *
4223 * This function is called in the SLI initialization code path to restart
4224 * a SLI4 HBA. The caller is not required to hold any lock.
4225 * At the end of the function, it calls lpfc_hba_down_post function to
4226 * free any pending commands.
4227 **/
4228static int
4229lpfc_sli_brdrestart_s4(struct lpfc_hba *phba)
4230{
4231 struct lpfc_sli *psli = &phba->sli;
75baf696 4232 uint32_t hba_aer_enabled;
27b01b82 4233 int rc;
da0436e9
JS
4234
4235 /* Restart HBA */
4236 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4237 "0296 Restart HBA Data: x%x x%x\n",
4238 phba->pport->port_state, psli->sli_flag);
4239
75baf696
JS
4240 /* Take PCIe device Advanced Error Reporting (AER) state */
4241 hba_aer_enabled = phba->hba_flag & HBA_AER_ENABLED;
4242
27b01b82 4243 rc = lpfc_sli4_brdreset(phba);
da0436e9
JS
4244
4245 spin_lock_irq(&phba->hbalock);
4246 phba->pport->stopped = 0;
4247 phba->link_state = LPFC_INIT_START;
4248 phba->hba_flag = 0;
4249 spin_unlock_irq(&phba->hbalock);
4250
4251 memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
4252 psli->stats_start = get_seconds();
4253
75baf696
JS
4254 /* Reset HBA AER if it was enabled, note hba_flag was reset above */
4255 if (hba_aer_enabled)
4256 pci_disable_pcie_error_reporting(phba->pcidev);
4257
da0436e9
JS
4258 lpfc_hba_down_post(phba);
4259
27b01b82 4260 return rc;
da0436e9
JS
4261}
4262
4263/**
4264 * lpfc_sli_brdrestart - Wrapper func for restarting hba
4265 * @phba: Pointer to HBA context object.
4266 *
4267 * This routine wraps the actual SLI3 or SLI4 hba restart routine from the
4268 * API jump table function pointer from the lpfc_hba struct.
4269**/
4270int
4271lpfc_sli_brdrestart(struct lpfc_hba *phba)
4272{
4273 return phba->lpfc_sli_brdrestart(phba);
4274}
4275
e59058c4 4276/**
3621a710 4277 * lpfc_sli_chipset_init - Wait for the restart of the HBA after a restart
e59058c4
JS
4278 * @phba: Pointer to HBA context object.
4279 *
4280 * This function is called after a HBA restart to wait for successful
4281 * restart of the HBA. Successful restart of the HBA is indicated by
4282 * HS_FFRDY and HS_MBRDY bits. If the HBA fails to restart even after 15
4283 * iteration, the function will restart the HBA again. The function returns
4284 * zero if HBA successfully restarted else returns negative error code.
4285 **/
dea3101e
JB
4286static int
4287lpfc_sli_chipset_init(struct lpfc_hba *phba)
4288{
4289 uint32_t status, i = 0;
4290
4291 /* Read the HBA Host Status Register */
9940b97b
JS
4292 if (lpfc_readl(phba->HSregaddr, &status))
4293 return -EIO;
dea3101e
JB
4294
4295 /* Check status register to see what current state is */
4296 i = 0;
4297 while ((status & (HS_FFRDY | HS_MBRDY)) != (HS_FFRDY | HS_MBRDY)) {
4298
dcf2a4e0
JS
4299 /* Check every 10ms for 10 retries, then every 100ms for 90
4300 * retries, then every 1 sec for 50 retires for a total of
4301 * ~60 seconds before reset the board again and check every
4302 * 1 sec for 50 retries. The up to 60 seconds before the
4303 * board ready is required by the Falcon FIPS zeroization
4304 * complete, and any reset the board in between shall cause
4305 * restart of zeroization, further delay the board ready.
dea3101e 4306 */
dcf2a4e0 4307 if (i++ >= 200) {
dea3101e
JB
4308 /* Adapter failed to init, timeout, status reg
4309 <status> */
ed957684 4310 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 4311 "0436 Adapter failed to init, "
09372820
JS
4312 "timeout, status reg x%x, "
4313 "FW Data: A8 x%x AC x%x\n", status,
4314 readl(phba->MBslimaddr + 0xa8),
4315 readl(phba->MBslimaddr + 0xac));
2e0fef85 4316 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
4317 return -ETIMEDOUT;
4318 }
4319
4320 /* Check to see if any errors occurred during init */
4321 if (status & HS_FFERM) {
4322 /* ERROR: During chipset initialization */
4323 /* Adapter failed to init, chipset, status reg
4324 <status> */
ed957684 4325 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 4326 "0437 Adapter failed to init, "
09372820
JS
4327 "chipset, status reg x%x, "
4328 "FW Data: A8 x%x AC x%x\n", status,
4329 readl(phba->MBslimaddr + 0xa8),
4330 readl(phba->MBslimaddr + 0xac));
2e0fef85 4331 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
4332 return -EIO;
4333 }
4334
dcf2a4e0 4335 if (i <= 10)
dea3101e 4336 msleep(10);
dcf2a4e0
JS
4337 else if (i <= 100)
4338 msleep(100);
4339 else
4340 msleep(1000);
dea3101e 4341
dcf2a4e0
JS
4342 if (i == 150) {
4343 /* Do post */
92d7f7b0 4344 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
41415862 4345 lpfc_sli_brdrestart(phba);
dea3101e
JB
4346 }
4347 /* Read the HBA Host Status Register */
9940b97b
JS
4348 if (lpfc_readl(phba->HSregaddr, &status))
4349 return -EIO;
dea3101e
JB
4350 }
4351
4352 /* Check to see if any errors occurred during init */
4353 if (status & HS_FFERM) {
4354 /* ERROR: During chipset initialization */
4355 /* Adapter failed to init, chipset, status reg <status> */
ed957684 4356 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 4357 "0438 Adapter failed to init, chipset, "
09372820
JS
4358 "status reg x%x, "
4359 "FW Data: A8 x%x AC x%x\n", status,
4360 readl(phba->MBslimaddr + 0xa8),
4361 readl(phba->MBslimaddr + 0xac));
2e0fef85 4362 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
4363 return -EIO;
4364 }
4365
4366 /* Clear all interrupt enable conditions */
4367 writel(0, phba->HCregaddr);
4368 readl(phba->HCregaddr); /* flush */
4369
4370 /* setup host attn register */
4371 writel(0xffffffff, phba->HAregaddr);
4372 readl(phba->HAregaddr); /* flush */
4373 return 0;
4374}
4375
e59058c4 4376/**
3621a710 4377 * lpfc_sli_hbq_count - Get the number of HBQs to be configured
e59058c4
JS
4378 *
4379 * This function calculates and returns the number of HBQs required to be
4380 * configured.
4381 **/
78b2d852 4382int
ed957684
JS
4383lpfc_sli_hbq_count(void)
4384{
92d7f7b0 4385 return ARRAY_SIZE(lpfc_hbq_defs);
ed957684
JS
4386}
4387
e59058c4 4388/**
3621a710 4389 * lpfc_sli_hbq_entry_count - Calculate total number of hbq entries
e59058c4
JS
4390 *
4391 * This function adds the number of hbq entries in every HBQ to get
4392 * the total number of hbq entries required for the HBA and returns
4393 * the total count.
4394 **/
ed957684
JS
4395static int
4396lpfc_sli_hbq_entry_count(void)
4397{
4398 int hbq_count = lpfc_sli_hbq_count();
4399 int count = 0;
4400 int i;
4401
4402 for (i = 0; i < hbq_count; ++i)
92d7f7b0 4403 count += lpfc_hbq_defs[i]->entry_count;
ed957684
JS
4404 return count;
4405}
4406
e59058c4 4407/**
3621a710 4408 * lpfc_sli_hbq_size - Calculate memory required for all hbq entries
e59058c4
JS
4409 *
4410 * This function calculates amount of memory required for all hbq entries
4411 * to be configured and returns the total memory required.
4412 **/
dea3101e 4413int
ed957684
JS
4414lpfc_sli_hbq_size(void)
4415{
4416 return lpfc_sli_hbq_entry_count() * sizeof(struct lpfc_hbq_entry);
4417}
4418
e59058c4 4419/**
3621a710 4420 * lpfc_sli_hbq_setup - configure and initialize HBQs
e59058c4
JS
4421 * @phba: Pointer to HBA context object.
4422 *
4423 * This function is called during the SLI initialization to configure
4424 * all the HBQs and post buffers to the HBQ. The caller is not
4425 * required to hold any locks. This function will return zero if successful
4426 * else it will return negative error code.
4427 **/
ed957684
JS
4428static int
4429lpfc_sli_hbq_setup(struct lpfc_hba *phba)
4430{
4431 int hbq_count = lpfc_sli_hbq_count();
4432 LPFC_MBOXQ_t *pmb;
4433 MAILBOX_t *pmbox;
4434 uint32_t hbqno;
4435 uint32_t hbq_entry_index;
ed957684 4436
92d7f7b0
JS
4437 /* Get a Mailbox buffer to setup mailbox
4438 * commands for HBA initialization
4439 */
ed957684
JS
4440 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4441
4442 if (!pmb)
4443 return -ENOMEM;
4444
04c68496 4445 pmbox = &pmb->u.mb;
ed957684
JS
4446
4447 /* Initialize the struct lpfc_sli_hbq structure for each hbq */
4448 phba->link_state = LPFC_INIT_MBX_CMDS;
3163f725 4449 phba->hbq_in_use = 1;
ed957684
JS
4450
4451 hbq_entry_index = 0;
4452 for (hbqno = 0; hbqno < hbq_count; ++hbqno) {
4453 phba->hbqs[hbqno].next_hbqPutIdx = 0;
4454 phba->hbqs[hbqno].hbqPutIdx = 0;
4455 phba->hbqs[hbqno].local_hbqGetIdx = 0;
4456 phba->hbqs[hbqno].entry_count =
92d7f7b0 4457 lpfc_hbq_defs[hbqno]->entry_count;
51ef4c26
JS
4458 lpfc_config_hbq(phba, hbqno, lpfc_hbq_defs[hbqno],
4459 hbq_entry_index, pmb);
ed957684
JS
4460 hbq_entry_index += phba->hbqs[hbqno].entry_count;
4461
4462 if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
4463 /* Adapter failed to init, mbxCmd <cmd> CFG_RING,
4464 mbxStatus <status>, ring <num> */
4465
4466 lpfc_printf_log(phba, KERN_ERR,
92d7f7b0 4467 LOG_SLI | LOG_VPORT,
e8b62011 4468 "1805 Adapter failed to init. "
ed957684 4469 "Data: x%x x%x x%x\n",
e8b62011 4470 pmbox->mbxCommand,
ed957684
JS
4471 pmbox->mbxStatus, hbqno);
4472
4473 phba->link_state = LPFC_HBA_ERROR;
4474 mempool_free(pmb, phba->mbox_mem_pool);
6e7288d9 4475 return -ENXIO;
ed957684
JS
4476 }
4477 }
4478 phba->hbq_count = hbq_count;
4479
ed957684
JS
4480 mempool_free(pmb, phba->mbox_mem_pool);
4481
92d7f7b0 4482 /* Initially populate or replenish the HBQs */
d7c255b2
JS
4483 for (hbqno = 0; hbqno < hbq_count; ++hbqno)
4484 lpfc_sli_hbqbuf_init_hbqs(phba, hbqno);
ed957684
JS
4485 return 0;
4486}
4487
4f774513
JS
4488/**
4489 * lpfc_sli4_rb_setup - Initialize and post RBs to HBA
4490 * @phba: Pointer to HBA context object.
4491 *
4492 * This function is called during the SLI initialization to configure
4493 * all the HBQs and post buffers to the HBQ. The caller is not
4494 * required to hold any locks. This function will return zero if successful
4495 * else it will return negative error code.
4496 **/
4497static int
4498lpfc_sli4_rb_setup(struct lpfc_hba *phba)
4499{
4500 phba->hbq_in_use = 1;
4501 phba->hbqs[0].entry_count = lpfc_hbq_defs[0]->entry_count;
4502 phba->hbq_count = 1;
4503 /* Initially populate or replenish the HBQs */
4504 lpfc_sli_hbqbuf_init_hbqs(phba, 0);
4505 return 0;
4506}
4507
e59058c4 4508/**
3621a710 4509 * lpfc_sli_config_port - Issue config port mailbox command
e59058c4
JS
4510 * @phba: Pointer to HBA context object.
4511 * @sli_mode: sli mode - 2/3
4512 *
4513 * This function is called by the sli intialization code path
4514 * to issue config_port mailbox command. This function restarts the
4515 * HBA firmware and issues a config_port mailbox command to configure
4516 * the SLI interface in the sli mode specified by sli_mode
4517 * variable. The caller is not required to hold any locks.
4518 * The function returns 0 if successful, else returns negative error
4519 * code.
4520 **/
9399627f
JS
4521int
4522lpfc_sli_config_port(struct lpfc_hba *phba, int sli_mode)
dea3101e
JB
4523{
4524 LPFC_MBOXQ_t *pmb;
4525 uint32_t resetcount = 0, rc = 0, done = 0;
4526
4527 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4528 if (!pmb) {
2e0fef85 4529 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
4530 return -ENOMEM;
4531 }
4532
ed957684 4533 phba->sli_rev = sli_mode;
dea3101e 4534 while (resetcount < 2 && !done) {
2e0fef85 4535 spin_lock_irq(&phba->hbalock);
1c067a42 4536 phba->sli.sli_flag |= LPFC_SLI_MBOX_ACTIVE;
2e0fef85 4537 spin_unlock_irq(&phba->hbalock);
92d7f7b0 4538 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
41415862 4539 lpfc_sli_brdrestart(phba);
dea3101e
JB
4540 rc = lpfc_sli_chipset_init(phba);
4541 if (rc)
4542 break;
4543
2e0fef85 4544 spin_lock_irq(&phba->hbalock);
1c067a42 4545 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
2e0fef85 4546 spin_unlock_irq(&phba->hbalock);
dea3101e
JB
4547 resetcount++;
4548
ed957684
JS
4549 /* Call pre CONFIG_PORT mailbox command initialization. A
4550 * value of 0 means the call was successful. Any other
4551 * nonzero value is a failure, but if ERESTART is returned,
4552 * the driver may reset the HBA and try again.
4553 */
dea3101e
JB
4554 rc = lpfc_config_port_prep(phba);
4555 if (rc == -ERESTART) {
ed957684 4556 phba->link_state = LPFC_LINK_UNKNOWN;
dea3101e 4557 continue;
34b02dcd 4558 } else if (rc)
dea3101e 4559 break;
6d368e53 4560
2e0fef85 4561 phba->link_state = LPFC_INIT_MBX_CMDS;
dea3101e
JB
4562 lpfc_config_port(phba, pmb);
4563 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
34b02dcd
JS
4564 phba->sli3_options &= ~(LPFC_SLI3_NPIV_ENABLED |
4565 LPFC_SLI3_HBQ_ENABLED |
4566 LPFC_SLI3_CRP_ENABLED |
bc73905a
JS
4567 LPFC_SLI3_BG_ENABLED |
4568 LPFC_SLI3_DSS_ENABLED);
ed957684 4569 if (rc != MBX_SUCCESS) {
dea3101e 4570 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 4571 "0442 Adapter failed to init, mbxCmd x%x "
92d7f7b0 4572 "CONFIG_PORT, mbxStatus x%x Data: x%x\n",
04c68496 4573 pmb->u.mb.mbxCommand, pmb->u.mb.mbxStatus, 0);
2e0fef85 4574 spin_lock_irq(&phba->hbalock);
04c68496 4575 phba->sli.sli_flag &= ~LPFC_SLI_ACTIVE;
2e0fef85
JS
4576 spin_unlock_irq(&phba->hbalock);
4577 rc = -ENXIO;
04c68496
JS
4578 } else {
4579 /* Allow asynchronous mailbox command to go through */
4580 spin_lock_irq(&phba->hbalock);
4581 phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
4582 spin_unlock_irq(&phba->hbalock);
ed957684 4583 done = 1;
cb69f7de
JS
4584
4585 if ((pmb->u.mb.un.varCfgPort.casabt == 1) &&
4586 (pmb->u.mb.un.varCfgPort.gasabt == 0))
4587 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
4588 "3110 Port did not grant ASABT\n");
04c68496 4589 }
dea3101e 4590 }
ed957684
JS
4591 if (!done) {
4592 rc = -EINVAL;
4593 goto do_prep_failed;
4594 }
04c68496
JS
4595 if (pmb->u.mb.un.varCfgPort.sli_mode == 3) {
4596 if (!pmb->u.mb.un.varCfgPort.cMA) {
34b02dcd
JS
4597 rc = -ENXIO;
4598 goto do_prep_failed;
4599 }
04c68496 4600 if (phba->max_vpi && pmb->u.mb.un.varCfgPort.gmv) {
34b02dcd 4601 phba->sli3_options |= LPFC_SLI3_NPIV_ENABLED;
04c68496
JS
4602 phba->max_vpi = pmb->u.mb.un.varCfgPort.max_vpi;
4603 phba->max_vports = (phba->max_vpi > phba->max_vports) ?
4604 phba->max_vpi : phba->max_vports;
4605
34b02dcd
JS
4606 } else
4607 phba->max_vpi = 0;
bc73905a
JS
4608 phba->fips_level = 0;
4609 phba->fips_spec_rev = 0;
4610 if (pmb->u.mb.un.varCfgPort.gdss) {
04c68496 4611 phba->sli3_options |= LPFC_SLI3_DSS_ENABLED;
bc73905a
JS
4612 phba->fips_level = pmb->u.mb.un.varCfgPort.fips_level;
4613 phba->fips_spec_rev = pmb->u.mb.un.varCfgPort.fips_rev;
4614 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4615 "2850 Security Crypto Active. FIPS x%d "
4616 "(Spec Rev: x%d)",
4617 phba->fips_level, phba->fips_spec_rev);
4618 }
4619 if (pmb->u.mb.un.varCfgPort.sec_err) {
4620 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4621 "2856 Config Port Security Crypto "
4622 "Error: x%x ",
4623 pmb->u.mb.un.varCfgPort.sec_err);
4624 }
04c68496 4625 if (pmb->u.mb.un.varCfgPort.gerbm)
34b02dcd 4626 phba->sli3_options |= LPFC_SLI3_HBQ_ENABLED;
04c68496 4627 if (pmb->u.mb.un.varCfgPort.gcrp)
34b02dcd 4628 phba->sli3_options |= LPFC_SLI3_CRP_ENABLED;
6e7288d9
JS
4629
4630 phba->hbq_get = phba->mbox->us.s3_pgp.hbq_get;
4631 phba->port_gp = phba->mbox->us.s3_pgp.port;
e2a0a9d6
JS
4632
4633 if (phba->cfg_enable_bg) {
04c68496 4634 if (pmb->u.mb.un.varCfgPort.gbg)
e2a0a9d6
JS
4635 phba->sli3_options |= LPFC_SLI3_BG_ENABLED;
4636 else
4637 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4638 "0443 Adapter did not grant "
4639 "BlockGuard\n");
4640 }
34b02dcd 4641 } else {
8f34f4ce 4642 phba->hbq_get = NULL;
34b02dcd 4643 phba->port_gp = phba->mbox->us.s2.port;
d7c255b2 4644 phba->max_vpi = 0;
ed957684 4645 }
92d7f7b0 4646do_prep_failed:
ed957684
JS
4647 mempool_free(pmb, phba->mbox_mem_pool);
4648 return rc;
4649}
4650
e59058c4
JS
4651
4652/**
3621a710 4653 * lpfc_sli_hba_setup - SLI intialization function
e59058c4
JS
4654 * @phba: Pointer to HBA context object.
4655 *
4656 * This function is the main SLI intialization function. This function
4657 * is called by the HBA intialization code, HBA reset code and HBA
4658 * error attention handler code. Caller is not required to hold any
4659 * locks. This function issues config_port mailbox command to configure
4660 * the SLI, setup iocb rings and HBQ rings. In the end the function
4661 * calls the config_port_post function to issue init_link mailbox
4662 * command and to start the discovery. The function will return zero
4663 * if successful, else it will return negative error code.
4664 **/
ed957684
JS
4665int
4666lpfc_sli_hba_setup(struct lpfc_hba *phba)
4667{
4668 uint32_t rc;
6d368e53
JS
4669 int mode = 3, i;
4670 int longs;
ed957684 4671
12247e81 4672 switch (phba->cfg_sli_mode) {
ed957684 4673 case 2:
78b2d852 4674 if (phba->cfg_enable_npiv) {
92d7f7b0 4675 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
12247e81 4676 "1824 NPIV enabled: Override sli_mode "
92d7f7b0 4677 "parameter (%d) to auto (0).\n",
12247e81 4678 phba->cfg_sli_mode);
92d7f7b0
JS
4679 break;
4680 }
ed957684
JS
4681 mode = 2;
4682 break;
4683 case 0:
4684 case 3:
4685 break;
4686 default:
92d7f7b0 4687 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
12247e81
JS
4688 "1819 Unrecognized sli_mode parameter: %d.\n",
4689 phba->cfg_sli_mode);
ed957684
JS
4690
4691 break;
4692 }
b5c53958 4693 phba->fcp_embed_io = 0; /* SLI4 FC support only */
ed957684 4694
9399627f
JS
4695 rc = lpfc_sli_config_port(phba, mode);
4696
12247e81 4697 if (rc && phba->cfg_sli_mode == 3)
92d7f7b0 4698 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
e8b62011
JS
4699 "1820 Unable to select SLI-3. "
4700 "Not supported by adapter.\n");
ed957684 4701 if (rc && mode != 2)
9399627f 4702 rc = lpfc_sli_config_port(phba, 2);
4597663f
JS
4703 else if (rc && mode == 2)
4704 rc = lpfc_sli_config_port(phba, 3);
ed957684 4705 if (rc)
dea3101e
JB
4706 goto lpfc_sli_hba_setup_error;
4707
0d878419
JS
4708 /* Enable PCIe device Advanced Error Reporting (AER) if configured */
4709 if (phba->cfg_aer_support == 1 && !(phba->hba_flag & HBA_AER_ENABLED)) {
4710 rc = pci_enable_pcie_error_reporting(phba->pcidev);
4711 if (!rc) {
4712 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4713 "2709 This device supports "
4714 "Advanced Error Reporting (AER)\n");
4715 spin_lock_irq(&phba->hbalock);
4716 phba->hba_flag |= HBA_AER_ENABLED;
4717 spin_unlock_irq(&phba->hbalock);
4718 } else {
4719 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4720 "2708 This device does not support "
b069d7eb
JS
4721 "Advanced Error Reporting (AER): %d\n",
4722 rc);
0d878419
JS
4723 phba->cfg_aer_support = 0;
4724 }
4725 }
4726
ed957684
JS
4727 if (phba->sli_rev == 3) {
4728 phba->iocb_cmd_size = SLI3_IOCB_CMD_SIZE;
4729 phba->iocb_rsp_size = SLI3_IOCB_RSP_SIZE;
ed957684
JS
4730 } else {
4731 phba->iocb_cmd_size = SLI2_IOCB_CMD_SIZE;
4732 phba->iocb_rsp_size = SLI2_IOCB_RSP_SIZE;
92d7f7b0 4733 phba->sli3_options = 0;
ed957684
JS
4734 }
4735
4736 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
e8b62011
JS
4737 "0444 Firmware in SLI %x mode. Max_vpi %d\n",
4738 phba->sli_rev, phba->max_vpi);
ed957684 4739 rc = lpfc_sli_ring_map(phba);
dea3101e
JB
4740
4741 if (rc)
4742 goto lpfc_sli_hba_setup_error;
4743
6d368e53
JS
4744 /* Initialize VPIs. */
4745 if (phba->sli_rev == LPFC_SLI_REV3) {
4746 /*
4747 * The VPI bitmask and physical ID array are allocated
4748 * and initialized once only - at driver load. A port
4749 * reset doesn't need to reinitialize this memory.
4750 */
4751 if ((phba->vpi_bmask == NULL) && (phba->vpi_ids == NULL)) {
4752 longs = (phba->max_vpi + BITS_PER_LONG) / BITS_PER_LONG;
4753 phba->vpi_bmask = kzalloc(longs * sizeof(unsigned long),
4754 GFP_KERNEL);
4755 if (!phba->vpi_bmask) {
4756 rc = -ENOMEM;
4757 goto lpfc_sli_hba_setup_error;
4758 }
4759
4760 phba->vpi_ids = kzalloc(
4761 (phba->max_vpi+1) * sizeof(uint16_t),
4762 GFP_KERNEL);
4763 if (!phba->vpi_ids) {
4764 kfree(phba->vpi_bmask);
4765 rc = -ENOMEM;
4766 goto lpfc_sli_hba_setup_error;
4767 }
4768 for (i = 0; i < phba->max_vpi; i++)
4769 phba->vpi_ids[i] = i;
4770 }
4771 }
4772
9399627f 4773 /* Init HBQs */
ed957684
JS
4774 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
4775 rc = lpfc_sli_hbq_setup(phba);
4776 if (rc)
4777 goto lpfc_sli_hba_setup_error;
4778 }
04c68496 4779 spin_lock_irq(&phba->hbalock);
dea3101e 4780 phba->sli.sli_flag |= LPFC_PROCESS_LA;
04c68496 4781 spin_unlock_irq(&phba->hbalock);
dea3101e
JB
4782
4783 rc = lpfc_config_port_post(phba);
4784 if (rc)
4785 goto lpfc_sli_hba_setup_error;
4786
ed957684
JS
4787 return rc;
4788
92d7f7b0 4789lpfc_sli_hba_setup_error:
2e0fef85 4790 phba->link_state = LPFC_HBA_ERROR;
e40a02c1 4791 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 4792 "0445 Firmware initialization failed\n");
dea3101e
JB
4793 return rc;
4794}
4795
e59058c4 4796/**
da0436e9
JS
4797 * lpfc_sli4_read_fcoe_params - Read fcoe params from conf region
4798 * @phba: Pointer to HBA context object.
4799 * @mboxq: mailbox pointer.
4800 * This function issue a dump mailbox command to read config region
4801 * 23 and parse the records in the region and populate driver
4802 * data structure.
e59058c4 4803 **/
da0436e9 4804static int
ff78d8f9 4805lpfc_sli4_read_fcoe_params(struct lpfc_hba *phba)
dea3101e 4806{
ff78d8f9 4807 LPFC_MBOXQ_t *mboxq;
da0436e9
JS
4808 struct lpfc_dmabuf *mp;
4809 struct lpfc_mqe *mqe;
4810 uint32_t data_length;
4811 int rc;
dea3101e 4812
da0436e9
JS
4813 /* Program the default value of vlan_id and fc_map */
4814 phba->valid_vlan = 0;
4815 phba->fc_map[0] = LPFC_FCOE_FCF_MAP0;
4816 phba->fc_map[1] = LPFC_FCOE_FCF_MAP1;
4817 phba->fc_map[2] = LPFC_FCOE_FCF_MAP2;
2e0fef85 4818
ff78d8f9
JS
4819 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4820 if (!mboxq)
da0436e9
JS
4821 return -ENOMEM;
4822
ff78d8f9
JS
4823 mqe = &mboxq->u.mqe;
4824 if (lpfc_sli4_dump_cfg_rg23(phba, mboxq)) {
4825 rc = -ENOMEM;
4826 goto out_free_mboxq;
4827 }
4828
da0436e9
JS
4829 mp = (struct lpfc_dmabuf *) mboxq->context1;
4830 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4831
4832 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
4833 "(%d):2571 Mailbox cmd x%x Status x%x "
4834 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x "
4835 "x%x x%x x%x x%x x%x x%x x%x x%x x%x "
4836 "CQ: x%x x%x x%x x%x\n",
4837 mboxq->vport ? mboxq->vport->vpi : 0,
4838 bf_get(lpfc_mqe_command, mqe),
4839 bf_get(lpfc_mqe_status, mqe),
4840 mqe->un.mb_words[0], mqe->un.mb_words[1],
4841 mqe->un.mb_words[2], mqe->un.mb_words[3],
4842 mqe->un.mb_words[4], mqe->un.mb_words[5],
4843 mqe->un.mb_words[6], mqe->un.mb_words[7],
4844 mqe->un.mb_words[8], mqe->un.mb_words[9],
4845 mqe->un.mb_words[10], mqe->un.mb_words[11],
4846 mqe->un.mb_words[12], mqe->un.mb_words[13],
4847 mqe->un.mb_words[14], mqe->un.mb_words[15],
4848 mqe->un.mb_words[16], mqe->un.mb_words[50],
4849 mboxq->mcqe.word0,
4850 mboxq->mcqe.mcqe_tag0, mboxq->mcqe.mcqe_tag1,
4851 mboxq->mcqe.trailer);
4852
4853 if (rc) {
4854 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4855 kfree(mp);
ff78d8f9
JS
4856 rc = -EIO;
4857 goto out_free_mboxq;
da0436e9
JS
4858 }
4859 data_length = mqe->un.mb_words[5];
a0c87cbd 4860 if (data_length > DMP_RGN23_SIZE) {
d11e31dd
JS
4861 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4862 kfree(mp);
ff78d8f9
JS
4863 rc = -EIO;
4864 goto out_free_mboxq;
d11e31dd 4865 }
dea3101e 4866
da0436e9
JS
4867 lpfc_parse_fcoe_conf(phba, mp->virt, data_length);
4868 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4869 kfree(mp);
ff78d8f9
JS
4870 rc = 0;
4871
4872out_free_mboxq:
4873 mempool_free(mboxq, phba->mbox_mem_pool);
4874 return rc;
da0436e9 4875}
e59058c4
JS
4876
4877/**
da0436e9
JS
4878 * lpfc_sli4_read_rev - Issue READ_REV and collect vpd data
4879 * @phba: pointer to lpfc hba data structure.
4880 * @mboxq: pointer to the LPFC_MBOXQ_t structure.
4881 * @vpd: pointer to the memory to hold resulting port vpd data.
4882 * @vpd_size: On input, the number of bytes allocated to @vpd.
4883 * On output, the number of data bytes in @vpd.
e59058c4 4884 *
da0436e9
JS
4885 * This routine executes a READ_REV SLI4 mailbox command. In
4886 * addition, this routine gets the port vpd data.
4887 *
4888 * Return codes
af901ca1 4889 * 0 - successful
d439d286 4890 * -ENOMEM - could not allocated memory.
e59058c4 4891 **/
da0436e9
JS
4892static int
4893lpfc_sli4_read_rev(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
4894 uint8_t *vpd, uint32_t *vpd_size)
dea3101e 4895{
da0436e9
JS
4896 int rc = 0;
4897 uint32_t dma_size;
4898 struct lpfc_dmabuf *dmabuf;
4899 struct lpfc_mqe *mqe;
dea3101e 4900
da0436e9
JS
4901 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
4902 if (!dmabuf)
4903 return -ENOMEM;
4904
4905 /*
4906 * Get a DMA buffer for the vpd data resulting from the READ_REV
4907 * mailbox command.
a257bf90 4908 */
da0436e9 4909 dma_size = *vpd_size;
1aee383d
JP
4910 dmabuf->virt = dma_zalloc_coherent(&phba->pcidev->dev, dma_size,
4911 &dmabuf->phys, GFP_KERNEL);
da0436e9
JS
4912 if (!dmabuf->virt) {
4913 kfree(dmabuf);
4914 return -ENOMEM;
a257bf90
JS
4915 }
4916
da0436e9
JS
4917 /*
4918 * The SLI4 implementation of READ_REV conflicts at word1,
4919 * bits 31:16 and SLI4 adds vpd functionality not present
4920 * in SLI3. This code corrects the conflicts.
1dcb58e5 4921 */
da0436e9
JS
4922 lpfc_read_rev(phba, mboxq);
4923 mqe = &mboxq->u.mqe;
4924 mqe->un.read_rev.vpd_paddr_high = putPaddrHigh(dmabuf->phys);
4925 mqe->un.read_rev.vpd_paddr_low = putPaddrLow(dmabuf->phys);
4926 mqe->un.read_rev.word1 &= 0x0000FFFF;
4927 bf_set(lpfc_mbx_rd_rev_vpd, &mqe->un.read_rev, 1);
4928 bf_set(lpfc_mbx_rd_rev_avail_len, &mqe->un.read_rev, dma_size);
4929
4930 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4931 if (rc) {
4932 dma_free_coherent(&phba->pcidev->dev, dma_size,
4933 dmabuf->virt, dmabuf->phys);
def9c7a9 4934 kfree(dmabuf);
da0436e9
JS
4935 return -EIO;
4936 }
1dcb58e5 4937
da0436e9
JS
4938 /*
4939 * The available vpd length cannot be bigger than the
4940 * DMA buffer passed to the port. Catch the less than
4941 * case and update the caller's size.
4942 */
4943 if (mqe->un.read_rev.avail_vpd_len < *vpd_size)
4944 *vpd_size = mqe->un.read_rev.avail_vpd_len;
3772a991 4945
d7c47992
JS
4946 memcpy(vpd, dmabuf->virt, *vpd_size);
4947
da0436e9
JS
4948 dma_free_coherent(&phba->pcidev->dev, dma_size,
4949 dmabuf->virt, dmabuf->phys);
4950 kfree(dmabuf);
4951 return 0;
dea3101e
JB
4952}
4953
cd1c8301
JS
4954/**
4955 * lpfc_sli4_retrieve_pport_name - Retrieve SLI4 device physical port name
4956 * @phba: pointer to lpfc hba data structure.
4957 *
4958 * This routine retrieves SLI4 device physical port name this PCI function
4959 * is attached to.
4960 *
4961 * Return codes
4907cb7b 4962 * 0 - successful
cd1c8301
JS
4963 * otherwise - failed to retrieve physical port name
4964 **/
4965static int
4966lpfc_sli4_retrieve_pport_name(struct lpfc_hba *phba)
4967{
4968 LPFC_MBOXQ_t *mboxq;
cd1c8301
JS
4969 struct lpfc_mbx_get_cntl_attributes *mbx_cntl_attr;
4970 struct lpfc_controller_attribute *cntl_attr;
4971 struct lpfc_mbx_get_port_name *get_port_name;
4972 void *virtaddr = NULL;
4973 uint32_t alloclen, reqlen;
4974 uint32_t shdr_status, shdr_add_status;
4975 union lpfc_sli4_cfg_shdr *shdr;
4976 char cport_name = 0;
4977 int rc;
4978
4979 /* We assume nothing at this point */
4980 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_INVAL;
4981 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_NON;
4982
4983 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4984 if (!mboxq)
4985 return -ENOMEM;
cd1c8301 4986 /* obtain link type and link number via READ_CONFIG */
ff78d8f9
JS
4987 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_INVAL;
4988 lpfc_sli4_read_config(phba);
4989 if (phba->sli4_hba.lnk_info.lnk_dv == LPFC_LNK_DAT_VAL)
4990 goto retrieve_ppname;
cd1c8301
JS
4991
4992 /* obtain link type and link number via COMMON_GET_CNTL_ATTRIBUTES */
4993 reqlen = sizeof(struct lpfc_mbx_get_cntl_attributes);
4994 alloclen = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
4995 LPFC_MBOX_OPCODE_GET_CNTL_ATTRIBUTES, reqlen,
4996 LPFC_SLI4_MBX_NEMBED);
4997 if (alloclen < reqlen) {
4998 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
4999 "3084 Allocated DMA memory size (%d) is "
5000 "less than the requested DMA memory size "
5001 "(%d)\n", alloclen, reqlen);
5002 rc = -ENOMEM;
5003 goto out_free_mboxq;
5004 }
5005 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
5006 virtaddr = mboxq->sge_array->addr[0];
5007 mbx_cntl_attr = (struct lpfc_mbx_get_cntl_attributes *)virtaddr;
5008 shdr = &mbx_cntl_attr->cfg_shdr;
5009 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
5010 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
5011 if (shdr_status || shdr_add_status || rc) {
5012 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
5013 "3085 Mailbox x%x (x%x/x%x) failed, "
5014 "rc:x%x, status:x%x, add_status:x%x\n",
5015 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
5016 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
5017 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
5018 rc, shdr_status, shdr_add_status);
5019 rc = -ENXIO;
5020 goto out_free_mboxq;
5021 }
5022 cntl_attr = &mbx_cntl_attr->cntl_attr;
5023 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_VAL;
5024 phba->sli4_hba.lnk_info.lnk_tp =
5025 bf_get(lpfc_cntl_attr_lnk_type, cntl_attr);
5026 phba->sli4_hba.lnk_info.lnk_no =
5027 bf_get(lpfc_cntl_attr_lnk_numb, cntl_attr);
5028 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
5029 "3086 lnk_type:%d, lnk_numb:%d\n",
5030 phba->sli4_hba.lnk_info.lnk_tp,
5031 phba->sli4_hba.lnk_info.lnk_no);
5032
5033retrieve_ppname:
5034 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
5035 LPFC_MBOX_OPCODE_GET_PORT_NAME,
5036 sizeof(struct lpfc_mbx_get_port_name) -
5037 sizeof(struct lpfc_sli4_cfg_mhdr),
5038 LPFC_SLI4_MBX_EMBED);
5039 get_port_name = &mboxq->u.mqe.un.get_port_name;
5040 shdr = (union lpfc_sli4_cfg_shdr *)&get_port_name->header.cfg_shdr;
5041 bf_set(lpfc_mbox_hdr_version, &shdr->request, LPFC_OPCODE_VERSION_1);
5042 bf_set(lpfc_mbx_get_port_name_lnk_type, &get_port_name->u.request,
5043 phba->sli4_hba.lnk_info.lnk_tp);
5044 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
5045 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
5046 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
5047 if (shdr_status || shdr_add_status || rc) {
5048 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
5049 "3087 Mailbox x%x (x%x/x%x) failed: "
5050 "rc:x%x, status:x%x, add_status:x%x\n",
5051 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
5052 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
5053 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
5054 rc, shdr_status, shdr_add_status);
5055 rc = -ENXIO;
5056 goto out_free_mboxq;
5057 }
5058 switch (phba->sli4_hba.lnk_info.lnk_no) {
5059 case LPFC_LINK_NUMBER_0:
5060 cport_name = bf_get(lpfc_mbx_get_port_name_name0,
5061 &get_port_name->u.response);
5062 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
5063 break;
5064 case LPFC_LINK_NUMBER_1:
5065 cport_name = bf_get(lpfc_mbx_get_port_name_name1,
5066 &get_port_name->u.response);
5067 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
5068 break;
5069 case LPFC_LINK_NUMBER_2:
5070 cport_name = bf_get(lpfc_mbx_get_port_name_name2,
5071 &get_port_name->u.response);
5072 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
5073 break;
5074 case LPFC_LINK_NUMBER_3:
5075 cport_name = bf_get(lpfc_mbx_get_port_name_name3,
5076 &get_port_name->u.response);
5077 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
5078 break;
5079 default:
5080 break;
5081 }
5082
5083 if (phba->sli4_hba.pport_name_sta == LPFC_SLI4_PPNAME_GET) {
5084 phba->Port[0] = cport_name;
5085 phba->Port[1] = '\0';
5086 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
5087 "3091 SLI get port name: %s\n", phba->Port);
5088 }
5089
5090out_free_mboxq:
5091 if (rc != MBX_TIMEOUT) {
5092 if (bf_get(lpfc_mqe_command, &mboxq->u.mqe) == MBX_SLI4_CONFIG)
5093 lpfc_sli4_mbox_cmd_free(phba, mboxq);
5094 else
5095 mempool_free(mboxq, phba->mbox_mem_pool);
5096 }
5097 return rc;
5098}
5099
e59058c4 5100/**
da0436e9
JS
5101 * lpfc_sli4_arm_cqeq_intr - Arm sli-4 device completion and event queues
5102 * @phba: pointer to lpfc hba data structure.
e59058c4 5103 *
da0436e9
JS
5104 * This routine is called to explicitly arm the SLI4 device's completion and
5105 * event queues
5106 **/
5107static void
5108lpfc_sli4_arm_cqeq_intr(struct lpfc_hba *phba)
5109{
962bc51b 5110 int fcp_eqidx;
da0436e9
JS
5111
5112 lpfc_sli4_cq_release(phba->sli4_hba.mbx_cq, LPFC_QUEUE_REARM);
5113 lpfc_sli4_cq_release(phba->sli4_hba.els_cq, LPFC_QUEUE_REARM);
0558056c 5114 fcp_eqidx = 0;
2e90f4b5 5115 if (phba->sli4_hba.fcp_cq) {
67d12733 5116 do {
2e90f4b5
JS
5117 lpfc_sli4_cq_release(phba->sli4_hba.fcp_cq[fcp_eqidx],
5118 LPFC_QUEUE_REARM);
67d12733 5119 } while (++fcp_eqidx < phba->cfg_fcp_io_channel);
2e90f4b5 5120 }
1ba981fd 5121
f38fa0bb 5122 if (phba->cfg_fof)
1ba981fd
JS
5123 lpfc_sli4_cq_release(phba->sli4_hba.oas_cq, LPFC_QUEUE_REARM);
5124
67d12733
JS
5125 if (phba->sli4_hba.hba_eq) {
5126 for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_io_channel;
2e90f4b5 5127 fcp_eqidx++)
67d12733 5128 lpfc_sli4_eq_release(phba->sli4_hba.hba_eq[fcp_eqidx],
2e90f4b5
JS
5129 LPFC_QUEUE_REARM);
5130 }
1ba981fd
JS
5131
5132 if (phba->cfg_fof)
5133 lpfc_sli4_eq_release(phba->sli4_hba.fof_eq, LPFC_QUEUE_REARM);
da0436e9
JS
5134}
5135
6d368e53
JS
5136/**
5137 * lpfc_sli4_get_avail_extnt_rsrc - Get available resource extent count.
5138 * @phba: Pointer to HBA context object.
5139 * @type: The resource extent type.
b76f2dc9
JS
5140 * @extnt_count: buffer to hold port available extent count.
5141 * @extnt_size: buffer to hold element count per extent.
6d368e53 5142 *
b76f2dc9
JS
5143 * This function calls the port and retrievs the number of available
5144 * extents and their size for a particular extent type.
5145 *
5146 * Returns: 0 if successful. Nonzero otherwise.
6d368e53 5147 **/
b76f2dc9 5148int
6d368e53
JS
5149lpfc_sli4_get_avail_extnt_rsrc(struct lpfc_hba *phba, uint16_t type,
5150 uint16_t *extnt_count, uint16_t *extnt_size)
5151{
5152 int rc = 0;
5153 uint32_t length;
5154 uint32_t mbox_tmo;
5155 struct lpfc_mbx_get_rsrc_extent_info *rsrc_info;
5156 LPFC_MBOXQ_t *mbox;
5157
5158 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5159 if (!mbox)
5160 return -ENOMEM;
5161
5162 /* Find out how many extents are available for this resource type */
5163 length = (sizeof(struct lpfc_mbx_get_rsrc_extent_info) -
5164 sizeof(struct lpfc_sli4_cfg_mhdr));
5165 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5166 LPFC_MBOX_OPCODE_GET_RSRC_EXTENT_INFO,
5167 length, LPFC_SLI4_MBX_EMBED);
5168
5169 /* Send an extents count of 0 - the GET doesn't use it. */
5170 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, 0, type,
5171 LPFC_SLI4_MBX_EMBED);
5172 if (unlikely(rc)) {
5173 rc = -EIO;
5174 goto err_exit;
5175 }
5176
5177 if (!phba->sli4_hba.intr_enable)
5178 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5179 else {
a183a15f 5180 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
6d368e53
JS
5181 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5182 }
5183 if (unlikely(rc)) {
5184 rc = -EIO;
5185 goto err_exit;
5186 }
5187
5188 rsrc_info = &mbox->u.mqe.un.rsrc_extent_info;
5189 if (bf_get(lpfc_mbox_hdr_status,
5190 &rsrc_info->header.cfg_shdr.response)) {
5191 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5192 "2930 Failed to get resource extents "
5193 "Status 0x%x Add'l Status 0x%x\n",
5194 bf_get(lpfc_mbox_hdr_status,
5195 &rsrc_info->header.cfg_shdr.response),
5196 bf_get(lpfc_mbox_hdr_add_status,
5197 &rsrc_info->header.cfg_shdr.response));
5198 rc = -EIO;
5199 goto err_exit;
5200 }
5201
5202 *extnt_count = bf_get(lpfc_mbx_get_rsrc_extent_info_cnt,
5203 &rsrc_info->u.rsp);
5204 *extnt_size = bf_get(lpfc_mbx_get_rsrc_extent_info_size,
5205 &rsrc_info->u.rsp);
8a9d2e80
JS
5206
5207 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
5208 "3162 Retrieved extents type-%d from port: count:%d, "
5209 "size:%d\n", type, *extnt_count, *extnt_size);
5210
5211err_exit:
6d368e53
JS
5212 mempool_free(mbox, phba->mbox_mem_pool);
5213 return rc;
5214}
5215
5216/**
5217 * lpfc_sli4_chk_avail_extnt_rsrc - Check for available SLI4 resource extents.
5218 * @phba: Pointer to HBA context object.
5219 * @type: The extent type to check.
5220 *
5221 * This function reads the current available extents from the port and checks
5222 * if the extent count or extent size has changed since the last access.
5223 * Callers use this routine post port reset to understand if there is a
5224 * extent reprovisioning requirement.
5225 *
5226 * Returns:
5227 * -Error: error indicates problem.
5228 * 1: Extent count or size has changed.
5229 * 0: No changes.
5230 **/
5231static int
5232lpfc_sli4_chk_avail_extnt_rsrc(struct lpfc_hba *phba, uint16_t type)
5233{
5234 uint16_t curr_ext_cnt, rsrc_ext_cnt;
5235 uint16_t size_diff, rsrc_ext_size;
5236 int rc = 0;
5237 struct lpfc_rsrc_blks *rsrc_entry;
5238 struct list_head *rsrc_blk_list = NULL;
5239
5240 size_diff = 0;
5241 curr_ext_cnt = 0;
5242 rc = lpfc_sli4_get_avail_extnt_rsrc(phba, type,
5243 &rsrc_ext_cnt,
5244 &rsrc_ext_size);
5245 if (unlikely(rc))
5246 return -EIO;
5247
5248 switch (type) {
5249 case LPFC_RSC_TYPE_FCOE_RPI:
5250 rsrc_blk_list = &phba->sli4_hba.lpfc_rpi_blk_list;
5251 break;
5252 case LPFC_RSC_TYPE_FCOE_VPI:
5253 rsrc_blk_list = &phba->lpfc_vpi_blk_list;
5254 break;
5255 case LPFC_RSC_TYPE_FCOE_XRI:
5256 rsrc_blk_list = &phba->sli4_hba.lpfc_xri_blk_list;
5257 break;
5258 case LPFC_RSC_TYPE_FCOE_VFI:
5259 rsrc_blk_list = &phba->sli4_hba.lpfc_vfi_blk_list;
5260 break;
5261 default:
5262 break;
5263 }
5264
5265 list_for_each_entry(rsrc_entry, rsrc_blk_list, list) {
5266 curr_ext_cnt++;
5267 if (rsrc_entry->rsrc_size != rsrc_ext_size)
5268 size_diff++;
5269 }
5270
5271 if (curr_ext_cnt != rsrc_ext_cnt || size_diff != 0)
5272 rc = 1;
5273
5274 return rc;
5275}
5276
5277/**
5278 * lpfc_sli4_cfg_post_extnts -
5279 * @phba: Pointer to HBA context object.
5280 * @extnt_cnt - number of available extents.
5281 * @type - the extent type (rpi, xri, vfi, vpi).
5282 * @emb - buffer to hold either MBX_EMBED or MBX_NEMBED operation.
5283 * @mbox - pointer to the caller's allocated mailbox structure.
5284 *
5285 * This function executes the extents allocation request. It also
5286 * takes care of the amount of memory needed to allocate or get the
5287 * allocated extents. It is the caller's responsibility to evaluate
5288 * the response.
5289 *
5290 * Returns:
5291 * -Error: Error value describes the condition found.
5292 * 0: if successful
5293 **/
5294static int
8a9d2e80 5295lpfc_sli4_cfg_post_extnts(struct lpfc_hba *phba, uint16_t extnt_cnt,
6d368e53
JS
5296 uint16_t type, bool *emb, LPFC_MBOXQ_t *mbox)
5297{
5298 int rc = 0;
5299 uint32_t req_len;
5300 uint32_t emb_len;
5301 uint32_t alloc_len, mbox_tmo;
5302
5303 /* Calculate the total requested length of the dma memory */
8a9d2e80 5304 req_len = extnt_cnt * sizeof(uint16_t);
6d368e53
JS
5305
5306 /*
5307 * Calculate the size of an embedded mailbox. The uint32_t
5308 * accounts for extents-specific word.
5309 */
5310 emb_len = sizeof(MAILBOX_t) - sizeof(struct mbox_header) -
5311 sizeof(uint32_t);
5312
5313 /*
5314 * Presume the allocation and response will fit into an embedded
5315 * mailbox. If not true, reconfigure to a non-embedded mailbox.
5316 */
5317 *emb = LPFC_SLI4_MBX_EMBED;
5318 if (req_len > emb_len) {
8a9d2e80 5319 req_len = extnt_cnt * sizeof(uint16_t) +
6d368e53
JS
5320 sizeof(union lpfc_sli4_cfg_shdr) +
5321 sizeof(uint32_t);
5322 *emb = LPFC_SLI4_MBX_NEMBED;
5323 }
5324
5325 alloc_len = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5326 LPFC_MBOX_OPCODE_ALLOC_RSRC_EXTENT,
5327 req_len, *emb);
5328 if (alloc_len < req_len) {
5329 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
b76f2dc9 5330 "2982 Allocated DMA memory size (x%x) is "
6d368e53
JS
5331 "less than the requested DMA memory "
5332 "size (x%x)\n", alloc_len, req_len);
5333 return -ENOMEM;
5334 }
8a9d2e80 5335 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, extnt_cnt, type, *emb);
6d368e53
JS
5336 if (unlikely(rc))
5337 return -EIO;
5338
5339 if (!phba->sli4_hba.intr_enable)
5340 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5341 else {
a183a15f 5342 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
6d368e53
JS
5343 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5344 }
5345
5346 if (unlikely(rc))
5347 rc = -EIO;
5348 return rc;
5349}
5350
5351/**
5352 * lpfc_sli4_alloc_extent - Allocate an SLI4 resource extent.
5353 * @phba: Pointer to HBA context object.
5354 * @type: The resource extent type to allocate.
5355 *
5356 * This function allocates the number of elements for the specified
5357 * resource type.
5358 **/
5359static int
5360lpfc_sli4_alloc_extent(struct lpfc_hba *phba, uint16_t type)
5361{
5362 bool emb = false;
5363 uint16_t rsrc_id_cnt, rsrc_cnt, rsrc_size;
5364 uint16_t rsrc_id, rsrc_start, j, k;
5365 uint16_t *ids;
5366 int i, rc;
5367 unsigned long longs;
5368 unsigned long *bmask;
5369 struct lpfc_rsrc_blks *rsrc_blks;
5370 LPFC_MBOXQ_t *mbox;
5371 uint32_t length;
5372 struct lpfc_id_range *id_array = NULL;
5373 void *virtaddr = NULL;
5374 struct lpfc_mbx_nembed_rsrc_extent *n_rsrc;
5375 struct lpfc_mbx_alloc_rsrc_extents *rsrc_ext;
5376 struct list_head *ext_blk_list;
5377
5378 rc = lpfc_sli4_get_avail_extnt_rsrc(phba, type,
5379 &rsrc_cnt,
5380 &rsrc_size);
5381 if (unlikely(rc))
5382 return -EIO;
5383
5384 if ((rsrc_cnt == 0) || (rsrc_size == 0)) {
5385 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5386 "3009 No available Resource Extents "
5387 "for resource type 0x%x: Count: 0x%x, "
5388 "Size 0x%x\n", type, rsrc_cnt,
5389 rsrc_size);
5390 return -ENOMEM;
5391 }
5392
8a9d2e80
JS
5393 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_INIT | LOG_SLI,
5394 "2903 Post resource extents type-0x%x: "
5395 "count:%d, size %d\n", type, rsrc_cnt, rsrc_size);
6d368e53
JS
5396
5397 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5398 if (!mbox)
5399 return -ENOMEM;
5400
8a9d2e80 5401 rc = lpfc_sli4_cfg_post_extnts(phba, rsrc_cnt, type, &emb, mbox);
6d368e53
JS
5402 if (unlikely(rc)) {
5403 rc = -EIO;
5404 goto err_exit;
5405 }
5406
5407 /*
5408 * Figure out where the response is located. Then get local pointers
5409 * to the response data. The port does not guarantee to respond to
5410 * all extents counts request so update the local variable with the
5411 * allocated count from the port.
5412 */
5413 if (emb == LPFC_SLI4_MBX_EMBED) {
5414 rsrc_ext = &mbox->u.mqe.un.alloc_rsrc_extents;
5415 id_array = &rsrc_ext->u.rsp.id[0];
5416 rsrc_cnt = bf_get(lpfc_mbx_rsrc_cnt, &rsrc_ext->u.rsp);
5417 } else {
5418 virtaddr = mbox->sge_array->addr[0];
5419 n_rsrc = (struct lpfc_mbx_nembed_rsrc_extent *) virtaddr;
5420 rsrc_cnt = bf_get(lpfc_mbx_rsrc_cnt, n_rsrc);
5421 id_array = &n_rsrc->id;
5422 }
5423
5424 longs = ((rsrc_cnt * rsrc_size) + BITS_PER_LONG - 1) / BITS_PER_LONG;
5425 rsrc_id_cnt = rsrc_cnt * rsrc_size;
5426
5427 /*
5428 * Based on the resource size and count, correct the base and max
5429 * resource values.
5430 */
5431 length = sizeof(struct lpfc_rsrc_blks);
5432 switch (type) {
5433 case LPFC_RSC_TYPE_FCOE_RPI:
5434 phba->sli4_hba.rpi_bmask = kzalloc(longs *
5435 sizeof(unsigned long),
5436 GFP_KERNEL);
5437 if (unlikely(!phba->sli4_hba.rpi_bmask)) {
5438 rc = -ENOMEM;
5439 goto err_exit;
5440 }
5441 phba->sli4_hba.rpi_ids = kzalloc(rsrc_id_cnt *
5442 sizeof(uint16_t),
5443 GFP_KERNEL);
5444 if (unlikely(!phba->sli4_hba.rpi_ids)) {
5445 kfree(phba->sli4_hba.rpi_bmask);
5446 rc = -ENOMEM;
5447 goto err_exit;
5448 }
5449
5450 /*
5451 * The next_rpi was initialized with the maximum available
5452 * count but the port may allocate a smaller number. Catch
5453 * that case and update the next_rpi.
5454 */
5455 phba->sli4_hba.next_rpi = rsrc_id_cnt;
5456
5457 /* Initialize local ptrs for common extent processing later. */
5458 bmask = phba->sli4_hba.rpi_bmask;
5459 ids = phba->sli4_hba.rpi_ids;
5460 ext_blk_list = &phba->sli4_hba.lpfc_rpi_blk_list;
5461 break;
5462 case LPFC_RSC_TYPE_FCOE_VPI:
5463 phba->vpi_bmask = kzalloc(longs *
5464 sizeof(unsigned long),
5465 GFP_KERNEL);
5466 if (unlikely(!phba->vpi_bmask)) {
5467 rc = -ENOMEM;
5468 goto err_exit;
5469 }
5470 phba->vpi_ids = kzalloc(rsrc_id_cnt *
5471 sizeof(uint16_t),
5472 GFP_KERNEL);
5473 if (unlikely(!phba->vpi_ids)) {
5474 kfree(phba->vpi_bmask);
5475 rc = -ENOMEM;
5476 goto err_exit;
5477 }
5478
5479 /* Initialize local ptrs for common extent processing later. */
5480 bmask = phba->vpi_bmask;
5481 ids = phba->vpi_ids;
5482 ext_blk_list = &phba->lpfc_vpi_blk_list;
5483 break;
5484 case LPFC_RSC_TYPE_FCOE_XRI:
5485 phba->sli4_hba.xri_bmask = kzalloc(longs *
5486 sizeof(unsigned long),
5487 GFP_KERNEL);
5488 if (unlikely(!phba->sli4_hba.xri_bmask)) {
5489 rc = -ENOMEM;
5490 goto err_exit;
5491 }
8a9d2e80 5492 phba->sli4_hba.max_cfg_param.xri_used = 0;
6d368e53
JS
5493 phba->sli4_hba.xri_ids = kzalloc(rsrc_id_cnt *
5494 sizeof(uint16_t),
5495 GFP_KERNEL);
5496 if (unlikely(!phba->sli4_hba.xri_ids)) {
5497 kfree(phba->sli4_hba.xri_bmask);
5498 rc = -ENOMEM;
5499 goto err_exit;
5500 }
5501
5502 /* Initialize local ptrs for common extent processing later. */
5503 bmask = phba->sli4_hba.xri_bmask;
5504 ids = phba->sli4_hba.xri_ids;
5505 ext_blk_list = &phba->sli4_hba.lpfc_xri_blk_list;
5506 break;
5507 case LPFC_RSC_TYPE_FCOE_VFI:
5508 phba->sli4_hba.vfi_bmask = kzalloc(longs *
5509 sizeof(unsigned long),
5510 GFP_KERNEL);
5511 if (unlikely(!phba->sli4_hba.vfi_bmask)) {
5512 rc = -ENOMEM;
5513 goto err_exit;
5514 }
5515 phba->sli4_hba.vfi_ids = kzalloc(rsrc_id_cnt *
5516 sizeof(uint16_t),
5517 GFP_KERNEL);
5518 if (unlikely(!phba->sli4_hba.vfi_ids)) {
5519 kfree(phba->sli4_hba.vfi_bmask);
5520 rc = -ENOMEM;
5521 goto err_exit;
5522 }
5523
5524 /* Initialize local ptrs for common extent processing later. */
5525 bmask = phba->sli4_hba.vfi_bmask;
5526 ids = phba->sli4_hba.vfi_ids;
5527 ext_blk_list = &phba->sli4_hba.lpfc_vfi_blk_list;
5528 break;
5529 default:
5530 /* Unsupported Opcode. Fail call. */
5531 id_array = NULL;
5532 bmask = NULL;
5533 ids = NULL;
5534 ext_blk_list = NULL;
5535 goto err_exit;
5536 }
5537
5538 /*
5539 * Complete initializing the extent configuration with the
5540 * allocated ids assigned to this function. The bitmask serves
5541 * as an index into the array and manages the available ids. The
5542 * array just stores the ids communicated to the port via the wqes.
5543 */
5544 for (i = 0, j = 0, k = 0; i < rsrc_cnt; i++) {
5545 if ((i % 2) == 0)
5546 rsrc_id = bf_get(lpfc_mbx_rsrc_id_word4_0,
5547 &id_array[k]);
5548 else
5549 rsrc_id = bf_get(lpfc_mbx_rsrc_id_word4_1,
5550 &id_array[k]);
5551
5552 rsrc_blks = kzalloc(length, GFP_KERNEL);
5553 if (unlikely(!rsrc_blks)) {
5554 rc = -ENOMEM;
5555 kfree(bmask);
5556 kfree(ids);
5557 goto err_exit;
5558 }
5559 rsrc_blks->rsrc_start = rsrc_id;
5560 rsrc_blks->rsrc_size = rsrc_size;
5561 list_add_tail(&rsrc_blks->list, ext_blk_list);
5562 rsrc_start = rsrc_id;
5563 if ((type == LPFC_RSC_TYPE_FCOE_XRI) && (j == 0))
5564 phba->sli4_hba.scsi_xri_start = rsrc_start +
5565 lpfc_sli4_get_els_iocb_cnt(phba);
5566
5567 while (rsrc_id < (rsrc_start + rsrc_size)) {
5568 ids[j] = rsrc_id;
5569 rsrc_id++;
5570 j++;
5571 }
5572 /* Entire word processed. Get next word.*/
5573 if ((i % 2) == 1)
5574 k++;
5575 }
5576 err_exit:
5577 lpfc_sli4_mbox_cmd_free(phba, mbox);
5578 return rc;
5579}
5580
5581/**
5582 * lpfc_sli4_dealloc_extent - Deallocate an SLI4 resource extent.
5583 * @phba: Pointer to HBA context object.
5584 * @type: the extent's type.
5585 *
5586 * This function deallocates all extents of a particular resource type.
5587 * SLI4 does not allow for deallocating a particular extent range. It
5588 * is the caller's responsibility to release all kernel memory resources.
5589 **/
5590static int
5591lpfc_sli4_dealloc_extent(struct lpfc_hba *phba, uint16_t type)
5592{
5593 int rc;
5594 uint32_t length, mbox_tmo = 0;
5595 LPFC_MBOXQ_t *mbox;
5596 struct lpfc_mbx_dealloc_rsrc_extents *dealloc_rsrc;
5597 struct lpfc_rsrc_blks *rsrc_blk, *rsrc_blk_next;
5598
5599 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5600 if (!mbox)
5601 return -ENOMEM;
5602
5603 /*
5604 * This function sends an embedded mailbox because it only sends the
5605 * the resource type. All extents of this type are released by the
5606 * port.
5607 */
5608 length = (sizeof(struct lpfc_mbx_dealloc_rsrc_extents) -
5609 sizeof(struct lpfc_sli4_cfg_mhdr));
5610 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5611 LPFC_MBOX_OPCODE_DEALLOC_RSRC_EXTENT,
5612 length, LPFC_SLI4_MBX_EMBED);
5613
5614 /* Send an extents count of 0 - the dealloc doesn't use it. */
5615 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, 0, type,
5616 LPFC_SLI4_MBX_EMBED);
5617 if (unlikely(rc)) {
5618 rc = -EIO;
5619 goto out_free_mbox;
5620 }
5621 if (!phba->sli4_hba.intr_enable)
5622 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5623 else {
a183a15f 5624 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
6d368e53
JS
5625 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5626 }
5627 if (unlikely(rc)) {
5628 rc = -EIO;
5629 goto out_free_mbox;
5630 }
5631
5632 dealloc_rsrc = &mbox->u.mqe.un.dealloc_rsrc_extents;
5633 if (bf_get(lpfc_mbox_hdr_status,
5634 &dealloc_rsrc->header.cfg_shdr.response)) {
5635 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5636 "2919 Failed to release resource extents "
5637 "for type %d - Status 0x%x Add'l Status 0x%x. "
5638 "Resource memory not released.\n",
5639 type,
5640 bf_get(lpfc_mbox_hdr_status,
5641 &dealloc_rsrc->header.cfg_shdr.response),
5642 bf_get(lpfc_mbox_hdr_add_status,
5643 &dealloc_rsrc->header.cfg_shdr.response));
5644 rc = -EIO;
5645 goto out_free_mbox;
5646 }
5647
5648 /* Release kernel memory resources for the specific type. */
5649 switch (type) {
5650 case LPFC_RSC_TYPE_FCOE_VPI:
5651 kfree(phba->vpi_bmask);
5652 kfree(phba->vpi_ids);
5653 bf_set(lpfc_vpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5654 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5655 &phba->lpfc_vpi_blk_list, list) {
5656 list_del_init(&rsrc_blk->list);
5657 kfree(rsrc_blk);
5658 }
16a3a208 5659 phba->sli4_hba.max_cfg_param.vpi_used = 0;
6d368e53
JS
5660 break;
5661 case LPFC_RSC_TYPE_FCOE_XRI:
5662 kfree(phba->sli4_hba.xri_bmask);
5663 kfree(phba->sli4_hba.xri_ids);
6d368e53
JS
5664 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5665 &phba->sli4_hba.lpfc_xri_blk_list, list) {
5666 list_del_init(&rsrc_blk->list);
5667 kfree(rsrc_blk);
5668 }
5669 break;
5670 case LPFC_RSC_TYPE_FCOE_VFI:
5671 kfree(phba->sli4_hba.vfi_bmask);
5672 kfree(phba->sli4_hba.vfi_ids);
5673 bf_set(lpfc_vfi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5674 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5675 &phba->sli4_hba.lpfc_vfi_blk_list, list) {
5676 list_del_init(&rsrc_blk->list);
5677 kfree(rsrc_blk);
5678 }
5679 break;
5680 case LPFC_RSC_TYPE_FCOE_RPI:
5681 /* RPI bitmask and physical id array are cleaned up earlier. */
5682 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5683 &phba->sli4_hba.lpfc_rpi_blk_list, list) {
5684 list_del_init(&rsrc_blk->list);
5685 kfree(rsrc_blk);
5686 }
5687 break;
5688 default:
5689 break;
5690 }
5691
5692 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5693
5694 out_free_mbox:
5695 mempool_free(mbox, phba->mbox_mem_pool);
5696 return rc;
5697}
5698
bd4b3e5c 5699static void
7bdedb34
JS
5700lpfc_set_features(struct lpfc_hba *phba, LPFC_MBOXQ_t *mbox,
5701 uint32_t feature)
65791f1f 5702{
65791f1f 5703 uint32_t len;
65791f1f 5704
65791f1f
JS
5705 len = sizeof(struct lpfc_mbx_set_feature) -
5706 sizeof(struct lpfc_sli4_cfg_mhdr);
5707 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5708 LPFC_MBOX_OPCODE_SET_FEATURES, len,
5709 LPFC_SLI4_MBX_EMBED);
7bdedb34
JS
5710
5711 switch (feature) {
5712 case LPFC_SET_UE_RECOVERY:
5713 bf_set(lpfc_mbx_set_feature_UER,
5714 &mbox->u.mqe.un.set_feature, 1);
5715 mbox->u.mqe.un.set_feature.feature = LPFC_SET_UE_RECOVERY;
5716 mbox->u.mqe.un.set_feature.param_len = 8;
5717 break;
5718 case LPFC_SET_MDS_DIAGS:
5719 bf_set(lpfc_mbx_set_feature_mds,
5720 &mbox->u.mqe.un.set_feature, 1);
5721 bf_set(lpfc_mbx_set_feature_mds_deep_loopbk,
5722 &mbox->u.mqe.un.set_feature, 0);
5723 mbox->u.mqe.un.set_feature.feature = LPFC_SET_MDS_DIAGS;
5724 mbox->u.mqe.un.set_feature.param_len = 8;
5725 break;
65791f1f 5726 }
7bdedb34
JS
5727
5728 return;
65791f1f
JS
5729}
5730
6d368e53
JS
5731/**
5732 * lpfc_sli4_alloc_resource_identifiers - Allocate all SLI4 resource extents.
5733 * @phba: Pointer to HBA context object.
5734 *
5735 * This function allocates all SLI4 resource identifiers.
5736 **/
5737int
5738lpfc_sli4_alloc_resource_identifiers(struct lpfc_hba *phba)
5739{
5740 int i, rc, error = 0;
5741 uint16_t count, base;
5742 unsigned long longs;
5743
ff78d8f9
JS
5744 if (!phba->sli4_hba.rpi_hdrs_in_use)
5745 phba->sli4_hba.next_rpi = phba->sli4_hba.max_cfg_param.max_rpi;
6d368e53
JS
5746 if (phba->sli4_hba.extents_in_use) {
5747 /*
5748 * The port supports resource extents. The XRI, VPI, VFI, RPI
5749 * resource extent count must be read and allocated before
5750 * provisioning the resource id arrays.
5751 */
5752 if (bf_get(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags) ==
5753 LPFC_IDX_RSRC_RDY) {
5754 /*
5755 * Extent-based resources are set - the driver could
5756 * be in a port reset. Figure out if any corrective
5757 * actions need to be taken.
5758 */
5759 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5760 LPFC_RSC_TYPE_FCOE_VFI);
5761 if (rc != 0)
5762 error++;
5763 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5764 LPFC_RSC_TYPE_FCOE_VPI);
5765 if (rc != 0)
5766 error++;
5767 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5768 LPFC_RSC_TYPE_FCOE_XRI);
5769 if (rc != 0)
5770 error++;
5771 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5772 LPFC_RSC_TYPE_FCOE_RPI);
5773 if (rc != 0)
5774 error++;
5775
5776 /*
5777 * It's possible that the number of resources
5778 * provided to this port instance changed between
5779 * resets. Detect this condition and reallocate
5780 * resources. Otherwise, there is no action.
5781 */
5782 if (error) {
5783 lpfc_printf_log(phba, KERN_INFO,
5784 LOG_MBOX | LOG_INIT,
5785 "2931 Detected extent resource "
5786 "change. Reallocating all "
5787 "extents.\n");
5788 rc = lpfc_sli4_dealloc_extent(phba,
5789 LPFC_RSC_TYPE_FCOE_VFI);
5790 rc = lpfc_sli4_dealloc_extent(phba,
5791 LPFC_RSC_TYPE_FCOE_VPI);
5792 rc = lpfc_sli4_dealloc_extent(phba,
5793 LPFC_RSC_TYPE_FCOE_XRI);
5794 rc = lpfc_sli4_dealloc_extent(phba,
5795 LPFC_RSC_TYPE_FCOE_RPI);
5796 } else
5797 return 0;
5798 }
5799
5800 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_VFI);
5801 if (unlikely(rc))
5802 goto err_exit;
5803
5804 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_VPI);
5805 if (unlikely(rc))
5806 goto err_exit;
5807
5808 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_RPI);
5809 if (unlikely(rc))
5810 goto err_exit;
5811
5812 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_XRI);
5813 if (unlikely(rc))
5814 goto err_exit;
5815 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags,
5816 LPFC_IDX_RSRC_RDY);
5817 return rc;
5818 } else {
5819 /*
5820 * The port does not support resource extents. The XRI, VPI,
5821 * VFI, RPI resource ids were determined from READ_CONFIG.
5822 * Just allocate the bitmasks and provision the resource id
5823 * arrays. If a port reset is active, the resources don't
5824 * need any action - just exit.
5825 */
5826 if (bf_get(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags) ==
ff78d8f9
JS
5827 LPFC_IDX_RSRC_RDY) {
5828 lpfc_sli4_dealloc_resource_identifiers(phba);
5829 lpfc_sli4_remove_rpis(phba);
5830 }
6d368e53
JS
5831 /* RPIs. */
5832 count = phba->sli4_hba.max_cfg_param.max_rpi;
0a630c27
JS
5833 if (count <= 0) {
5834 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5835 "3279 Invalid provisioning of "
5836 "rpi:%d\n", count);
5837 rc = -EINVAL;
5838 goto err_exit;
5839 }
6d368e53
JS
5840 base = phba->sli4_hba.max_cfg_param.rpi_base;
5841 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5842 phba->sli4_hba.rpi_bmask = kzalloc(longs *
5843 sizeof(unsigned long),
5844 GFP_KERNEL);
5845 if (unlikely(!phba->sli4_hba.rpi_bmask)) {
5846 rc = -ENOMEM;
5847 goto err_exit;
5848 }
5849 phba->sli4_hba.rpi_ids = kzalloc(count *
5850 sizeof(uint16_t),
5851 GFP_KERNEL);
5852 if (unlikely(!phba->sli4_hba.rpi_ids)) {
5853 rc = -ENOMEM;
5854 goto free_rpi_bmask;
5855 }
5856
5857 for (i = 0; i < count; i++)
5858 phba->sli4_hba.rpi_ids[i] = base + i;
5859
5860 /* VPIs. */
5861 count = phba->sli4_hba.max_cfg_param.max_vpi;
0a630c27
JS
5862 if (count <= 0) {
5863 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5864 "3280 Invalid provisioning of "
5865 "vpi:%d\n", count);
5866 rc = -EINVAL;
5867 goto free_rpi_ids;
5868 }
6d368e53
JS
5869 base = phba->sli4_hba.max_cfg_param.vpi_base;
5870 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5871 phba->vpi_bmask = kzalloc(longs *
5872 sizeof(unsigned long),
5873 GFP_KERNEL);
5874 if (unlikely(!phba->vpi_bmask)) {
5875 rc = -ENOMEM;
5876 goto free_rpi_ids;
5877 }
5878 phba->vpi_ids = kzalloc(count *
5879 sizeof(uint16_t),
5880 GFP_KERNEL);
5881 if (unlikely(!phba->vpi_ids)) {
5882 rc = -ENOMEM;
5883 goto free_vpi_bmask;
5884 }
5885
5886 for (i = 0; i < count; i++)
5887 phba->vpi_ids[i] = base + i;
5888
5889 /* XRIs. */
5890 count = phba->sli4_hba.max_cfg_param.max_xri;
0a630c27
JS
5891 if (count <= 0) {
5892 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5893 "3281 Invalid provisioning of "
5894 "xri:%d\n", count);
5895 rc = -EINVAL;
5896 goto free_vpi_ids;
5897 }
6d368e53
JS
5898 base = phba->sli4_hba.max_cfg_param.xri_base;
5899 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5900 phba->sli4_hba.xri_bmask = kzalloc(longs *
5901 sizeof(unsigned long),
5902 GFP_KERNEL);
5903 if (unlikely(!phba->sli4_hba.xri_bmask)) {
5904 rc = -ENOMEM;
5905 goto free_vpi_ids;
5906 }
41899be7 5907 phba->sli4_hba.max_cfg_param.xri_used = 0;
6d368e53
JS
5908 phba->sli4_hba.xri_ids = kzalloc(count *
5909 sizeof(uint16_t),
5910 GFP_KERNEL);
5911 if (unlikely(!phba->sli4_hba.xri_ids)) {
5912 rc = -ENOMEM;
5913 goto free_xri_bmask;
5914 }
5915
5916 for (i = 0; i < count; i++)
5917 phba->sli4_hba.xri_ids[i] = base + i;
5918
5919 /* VFIs. */
5920 count = phba->sli4_hba.max_cfg_param.max_vfi;
0a630c27
JS
5921 if (count <= 0) {
5922 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5923 "3282 Invalid provisioning of "
5924 "vfi:%d\n", count);
5925 rc = -EINVAL;
5926 goto free_xri_ids;
5927 }
6d368e53
JS
5928 base = phba->sli4_hba.max_cfg_param.vfi_base;
5929 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5930 phba->sli4_hba.vfi_bmask = kzalloc(longs *
5931 sizeof(unsigned long),
5932 GFP_KERNEL);
5933 if (unlikely(!phba->sli4_hba.vfi_bmask)) {
5934 rc = -ENOMEM;
5935 goto free_xri_ids;
5936 }
5937 phba->sli4_hba.vfi_ids = kzalloc(count *
5938 sizeof(uint16_t),
5939 GFP_KERNEL);
5940 if (unlikely(!phba->sli4_hba.vfi_ids)) {
5941 rc = -ENOMEM;
5942 goto free_vfi_bmask;
5943 }
5944
5945 for (i = 0; i < count; i++)
5946 phba->sli4_hba.vfi_ids[i] = base + i;
5947
5948 /*
5949 * Mark all resources ready. An HBA reset doesn't need
5950 * to reset the initialization.
5951 */
5952 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags,
5953 LPFC_IDX_RSRC_RDY);
5954 return 0;
5955 }
5956
5957 free_vfi_bmask:
5958 kfree(phba->sli4_hba.vfi_bmask);
cd60be49 5959 phba->sli4_hba.vfi_bmask = NULL;
6d368e53
JS
5960 free_xri_ids:
5961 kfree(phba->sli4_hba.xri_ids);
cd60be49 5962 phba->sli4_hba.xri_ids = NULL;
6d368e53
JS
5963 free_xri_bmask:
5964 kfree(phba->sli4_hba.xri_bmask);
cd60be49 5965 phba->sli4_hba.xri_bmask = NULL;
6d368e53
JS
5966 free_vpi_ids:
5967 kfree(phba->vpi_ids);
cd60be49 5968 phba->vpi_ids = NULL;
6d368e53
JS
5969 free_vpi_bmask:
5970 kfree(phba->vpi_bmask);
cd60be49 5971 phba->vpi_bmask = NULL;
6d368e53
JS
5972 free_rpi_ids:
5973 kfree(phba->sli4_hba.rpi_ids);
cd60be49 5974 phba->sli4_hba.rpi_ids = NULL;
6d368e53
JS
5975 free_rpi_bmask:
5976 kfree(phba->sli4_hba.rpi_bmask);
cd60be49 5977 phba->sli4_hba.rpi_bmask = NULL;
6d368e53
JS
5978 err_exit:
5979 return rc;
5980}
5981
5982/**
5983 * lpfc_sli4_dealloc_resource_identifiers - Deallocate all SLI4 resource extents.
5984 * @phba: Pointer to HBA context object.
5985 *
5986 * This function allocates the number of elements for the specified
5987 * resource type.
5988 **/
5989int
5990lpfc_sli4_dealloc_resource_identifiers(struct lpfc_hba *phba)
5991{
5992 if (phba->sli4_hba.extents_in_use) {
5993 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_VPI);
5994 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_RPI);
5995 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_XRI);
5996 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_VFI);
5997 } else {
5998 kfree(phba->vpi_bmask);
16a3a208 5999 phba->sli4_hba.max_cfg_param.vpi_used = 0;
6d368e53
JS
6000 kfree(phba->vpi_ids);
6001 bf_set(lpfc_vpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
6002 kfree(phba->sli4_hba.xri_bmask);
6003 kfree(phba->sli4_hba.xri_ids);
6d368e53
JS
6004 kfree(phba->sli4_hba.vfi_bmask);
6005 kfree(phba->sli4_hba.vfi_ids);
6006 bf_set(lpfc_vfi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
6007 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
6008 }
6009
6010 return 0;
6011}
6012
b76f2dc9
JS
6013/**
6014 * lpfc_sli4_get_allocated_extnts - Get the port's allocated extents.
6015 * @phba: Pointer to HBA context object.
6016 * @type: The resource extent type.
6017 * @extnt_count: buffer to hold port extent count response
6018 * @extnt_size: buffer to hold port extent size response.
6019 *
6020 * This function calls the port to read the host allocated extents
6021 * for a particular type.
6022 **/
6023int
6024lpfc_sli4_get_allocated_extnts(struct lpfc_hba *phba, uint16_t type,
6025 uint16_t *extnt_cnt, uint16_t *extnt_size)
6026{
6027 bool emb;
6028 int rc = 0;
6029 uint16_t curr_blks = 0;
6030 uint32_t req_len, emb_len;
6031 uint32_t alloc_len, mbox_tmo;
6032 struct list_head *blk_list_head;
6033 struct lpfc_rsrc_blks *rsrc_blk;
6034 LPFC_MBOXQ_t *mbox;
6035 void *virtaddr = NULL;
6036 struct lpfc_mbx_nembed_rsrc_extent *n_rsrc;
6037 struct lpfc_mbx_alloc_rsrc_extents *rsrc_ext;
6038 union lpfc_sli4_cfg_shdr *shdr;
6039
6040 switch (type) {
6041 case LPFC_RSC_TYPE_FCOE_VPI:
6042 blk_list_head = &phba->lpfc_vpi_blk_list;
6043 break;
6044 case LPFC_RSC_TYPE_FCOE_XRI:
6045 blk_list_head = &phba->sli4_hba.lpfc_xri_blk_list;
6046 break;
6047 case LPFC_RSC_TYPE_FCOE_VFI:
6048 blk_list_head = &phba->sli4_hba.lpfc_vfi_blk_list;
6049 break;
6050 case LPFC_RSC_TYPE_FCOE_RPI:
6051 blk_list_head = &phba->sli4_hba.lpfc_rpi_blk_list;
6052 break;
6053 default:
6054 return -EIO;
6055 }
6056
6057 /* Count the number of extents currently allocatd for this type. */
6058 list_for_each_entry(rsrc_blk, blk_list_head, list) {
6059 if (curr_blks == 0) {
6060 /*
6061 * The GET_ALLOCATED mailbox does not return the size,
6062 * just the count. The size should be just the size
6063 * stored in the current allocated block and all sizes
6064 * for an extent type are the same so set the return
6065 * value now.
6066 */
6067 *extnt_size = rsrc_blk->rsrc_size;
6068 }
6069 curr_blks++;
6070 }
6071
b76f2dc9
JS
6072 /*
6073 * Calculate the size of an embedded mailbox. The uint32_t
6074 * accounts for extents-specific word.
6075 */
6076 emb_len = sizeof(MAILBOX_t) - sizeof(struct mbox_header) -
6077 sizeof(uint32_t);
6078
6079 /*
6080 * Presume the allocation and response will fit into an embedded
6081 * mailbox. If not true, reconfigure to a non-embedded mailbox.
6082 */
6083 emb = LPFC_SLI4_MBX_EMBED;
6084 req_len = emb_len;
6085 if (req_len > emb_len) {
6086 req_len = curr_blks * sizeof(uint16_t) +
6087 sizeof(union lpfc_sli4_cfg_shdr) +
6088 sizeof(uint32_t);
6089 emb = LPFC_SLI4_MBX_NEMBED;
6090 }
6091
6092 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6093 if (!mbox)
6094 return -ENOMEM;
6095 memset(mbox, 0, sizeof(LPFC_MBOXQ_t));
6096
6097 alloc_len = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
6098 LPFC_MBOX_OPCODE_GET_ALLOC_RSRC_EXTENT,
6099 req_len, emb);
6100 if (alloc_len < req_len) {
6101 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6102 "2983 Allocated DMA memory size (x%x) is "
6103 "less than the requested DMA memory "
6104 "size (x%x)\n", alloc_len, req_len);
6105 rc = -ENOMEM;
6106 goto err_exit;
6107 }
6108 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, curr_blks, type, emb);
6109 if (unlikely(rc)) {
6110 rc = -EIO;
6111 goto err_exit;
6112 }
6113
6114 if (!phba->sli4_hba.intr_enable)
6115 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
6116 else {
a183a15f 6117 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
b76f2dc9
JS
6118 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
6119 }
6120
6121 if (unlikely(rc)) {
6122 rc = -EIO;
6123 goto err_exit;
6124 }
6125
6126 /*
6127 * Figure out where the response is located. Then get local pointers
6128 * to the response data. The port does not guarantee to respond to
6129 * all extents counts request so update the local variable with the
6130 * allocated count from the port.
6131 */
6132 if (emb == LPFC_SLI4_MBX_EMBED) {
6133 rsrc_ext = &mbox->u.mqe.un.alloc_rsrc_extents;
6134 shdr = &rsrc_ext->header.cfg_shdr;
6135 *extnt_cnt = bf_get(lpfc_mbx_rsrc_cnt, &rsrc_ext->u.rsp);
6136 } else {
6137 virtaddr = mbox->sge_array->addr[0];
6138 n_rsrc = (struct lpfc_mbx_nembed_rsrc_extent *) virtaddr;
6139 shdr = &n_rsrc->cfg_shdr;
6140 *extnt_cnt = bf_get(lpfc_mbx_rsrc_cnt, n_rsrc);
6141 }
6142
6143 if (bf_get(lpfc_mbox_hdr_status, &shdr->response)) {
6144 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
6145 "2984 Failed to read allocated resources "
6146 "for type %d - Status 0x%x Add'l Status 0x%x.\n",
6147 type,
6148 bf_get(lpfc_mbox_hdr_status, &shdr->response),
6149 bf_get(lpfc_mbox_hdr_add_status, &shdr->response));
6150 rc = -EIO;
6151 goto err_exit;
6152 }
6153 err_exit:
6154 lpfc_sli4_mbox_cmd_free(phba, mbox);
6155 return rc;
6156}
6157
8a9d2e80
JS
6158/**
6159 * lpfc_sli4_repost_els_sgl_list - Repsot the els buffers sgl pages as block
6160 * @phba: pointer to lpfc hba data structure.
6161 *
6162 * This routine walks the list of els buffers that have been allocated and
6163 * repost them to the port by using SGL block post. This is needed after a
6164 * pci_function_reset/warm_start or start. It attempts to construct blocks
6165 * of els buffer sgls which contains contiguous xris and uses the non-embedded
6166 * SGL block post mailbox commands to post them to the port. For single els
6167 * buffer sgl with non-contiguous xri, if any, it shall use embedded SGL post
6168 * mailbox command for posting.
6169 *
6170 * Returns: 0 = success, non-zero failure.
6171 **/
6172static int
6173lpfc_sli4_repost_els_sgl_list(struct lpfc_hba *phba)
6174{
6175 struct lpfc_sglq *sglq_entry = NULL;
6176 struct lpfc_sglq *sglq_entry_next = NULL;
6177 struct lpfc_sglq *sglq_entry_first = NULL;
711ea882 6178 int status, total_cnt, post_cnt = 0, num_posted = 0, block_cnt = 0;
8a9d2e80 6179 int last_xritag = NO_XRI;
dafe8cea 6180 struct lpfc_sli_ring *pring;
8a9d2e80
JS
6181 LIST_HEAD(prep_sgl_list);
6182 LIST_HEAD(blck_sgl_list);
6183 LIST_HEAD(allc_sgl_list);
6184 LIST_HEAD(post_sgl_list);
6185 LIST_HEAD(free_sgl_list);
6186
dafe8cea 6187 pring = &phba->sli.ring[LPFC_ELS_RING];
38c20673 6188 spin_lock_irq(&phba->hbalock);
dafe8cea 6189 spin_lock(&pring->ring_lock);
8a9d2e80 6190 list_splice_init(&phba->sli4_hba.lpfc_sgl_list, &allc_sgl_list);
dafe8cea 6191 spin_unlock(&pring->ring_lock);
38c20673 6192 spin_unlock_irq(&phba->hbalock);
8a9d2e80 6193
711ea882 6194 total_cnt = phba->sli4_hba.els_xri_cnt;
8a9d2e80
JS
6195 list_for_each_entry_safe(sglq_entry, sglq_entry_next,
6196 &allc_sgl_list, list) {
6197 list_del_init(&sglq_entry->list);
6198 block_cnt++;
6199 if ((last_xritag != NO_XRI) &&
6200 (sglq_entry->sli4_xritag != last_xritag + 1)) {
6201 /* a hole in xri block, form a sgl posting block */
6202 list_splice_init(&prep_sgl_list, &blck_sgl_list);
6203 post_cnt = block_cnt - 1;
6204 /* prepare list for next posting block */
6205 list_add_tail(&sglq_entry->list, &prep_sgl_list);
6206 block_cnt = 1;
6207 } else {
6208 /* prepare list for next posting block */
6209 list_add_tail(&sglq_entry->list, &prep_sgl_list);
6210 /* enough sgls for non-embed sgl mbox command */
6211 if (block_cnt == LPFC_NEMBED_MBOX_SGL_CNT) {
6212 list_splice_init(&prep_sgl_list,
6213 &blck_sgl_list);
6214 post_cnt = block_cnt;
6215 block_cnt = 0;
6216 }
6217 }
6218 num_posted++;
6219
6220 /* keep track of last sgl's xritag */
6221 last_xritag = sglq_entry->sli4_xritag;
6222
6223 /* end of repost sgl list condition for els buffers */
6224 if (num_posted == phba->sli4_hba.els_xri_cnt) {
6225 if (post_cnt == 0) {
6226 list_splice_init(&prep_sgl_list,
6227 &blck_sgl_list);
6228 post_cnt = block_cnt;
6229 } else if (block_cnt == 1) {
6230 status = lpfc_sli4_post_sgl(phba,
6231 sglq_entry->phys, 0,
6232 sglq_entry->sli4_xritag);
6233 if (!status) {
6234 /* successful, put sgl to posted list */
6235 list_add_tail(&sglq_entry->list,
6236 &post_sgl_list);
6237 } else {
6238 /* Failure, put sgl to free list */
6239 lpfc_printf_log(phba, KERN_WARNING,
6240 LOG_SLI,
6241 "3159 Failed to post els "
6242 "sgl, xritag:x%x\n",
6243 sglq_entry->sli4_xritag);
6244 list_add_tail(&sglq_entry->list,
6245 &free_sgl_list);
711ea882 6246 total_cnt--;
8a9d2e80
JS
6247 }
6248 }
6249 }
6250
6251 /* continue until a nembed page worth of sgls */
6252 if (post_cnt == 0)
6253 continue;
6254
6255 /* post the els buffer list sgls as a block */
6256 status = lpfc_sli4_post_els_sgl_list(phba, &blck_sgl_list,
6257 post_cnt);
6258
6259 if (!status) {
6260 /* success, put sgl list to posted sgl list */
6261 list_splice_init(&blck_sgl_list, &post_sgl_list);
6262 } else {
6263 /* Failure, put sgl list to free sgl list */
6264 sglq_entry_first = list_first_entry(&blck_sgl_list,
6265 struct lpfc_sglq,
6266 list);
6267 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
6268 "3160 Failed to post els sgl-list, "
6269 "xritag:x%x-x%x\n",
6270 sglq_entry_first->sli4_xritag,
6271 (sglq_entry_first->sli4_xritag +
6272 post_cnt - 1));
6273 list_splice_init(&blck_sgl_list, &free_sgl_list);
711ea882 6274 total_cnt -= post_cnt;
8a9d2e80
JS
6275 }
6276
6277 /* don't reset xirtag due to hole in xri block */
6278 if (block_cnt == 0)
6279 last_xritag = NO_XRI;
6280
6281 /* reset els sgl post count for next round of posting */
6282 post_cnt = 0;
6283 }
711ea882
JS
6284 /* update the number of XRIs posted for ELS */
6285 phba->sli4_hba.els_xri_cnt = total_cnt;
8a9d2e80
JS
6286
6287 /* free the els sgls failed to post */
6288 lpfc_free_sgl_list(phba, &free_sgl_list);
6289
6290 /* push els sgls posted to the availble list */
6291 if (!list_empty(&post_sgl_list)) {
38c20673 6292 spin_lock_irq(&phba->hbalock);
dafe8cea 6293 spin_lock(&pring->ring_lock);
8a9d2e80
JS
6294 list_splice_init(&post_sgl_list,
6295 &phba->sli4_hba.lpfc_sgl_list);
dafe8cea 6296 spin_unlock(&pring->ring_lock);
38c20673 6297 spin_unlock_irq(&phba->hbalock);
8a9d2e80
JS
6298 } else {
6299 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
6300 "3161 Failure to post els sgl to port.\n");
6301 return -EIO;
6302 }
6303 return 0;
6304}
6305
61bda8f7
JS
6306void
6307lpfc_set_host_data(struct lpfc_hba *phba, LPFC_MBOXQ_t *mbox)
6308{
6309 uint32_t len;
6310
6311 len = sizeof(struct lpfc_mbx_set_host_data) -
6312 sizeof(struct lpfc_sli4_cfg_mhdr);
6313 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
6314 LPFC_MBOX_OPCODE_SET_HOST_DATA, len,
6315 LPFC_SLI4_MBX_EMBED);
6316
6317 mbox->u.mqe.un.set_host_data.param_id = LPFC_SET_HOST_OS_DRIVER_VERSION;
b2fd103b
JS
6318 mbox->u.mqe.un.set_host_data.param_len =
6319 LPFC_HOST_OS_DRIVER_VERSION_SIZE;
61bda8f7
JS
6320 snprintf(mbox->u.mqe.un.set_host_data.data,
6321 LPFC_HOST_OS_DRIVER_VERSION_SIZE,
6322 "Linux %s v"LPFC_DRIVER_VERSION,
6323 (phba->hba_flag & HBA_FCOE_MODE) ? "FCoE" : "FC");
6324}
6325
da0436e9
JS
6326/**
6327 * lpfc_sli4_hba_setup - SLI4 device intialization PCI function
6328 * @phba: Pointer to HBA context object.
6329 *
6330 * This function is the main SLI4 device intialization PCI function. This
6331 * function is called by the HBA intialization code, HBA reset code and
6332 * HBA error attention handler code. Caller is not required to hold any
6333 * locks.
6334 **/
6335int
6336lpfc_sli4_hba_setup(struct lpfc_hba *phba)
6337{
6338 int rc;
6339 LPFC_MBOXQ_t *mboxq;
6340 struct lpfc_mqe *mqe;
6341 uint8_t *vpd;
6342 uint32_t vpd_size;
6343 uint32_t ftr_rsp = 0;
6344 struct Scsi_Host *shost = lpfc_shost_from_vport(phba->pport);
6345 struct lpfc_vport *vport = phba->pport;
6346 struct lpfc_dmabuf *mp;
6347
6348 /* Perform a PCI function reset to start from clean */
6349 rc = lpfc_pci_function_reset(phba);
6350 if (unlikely(rc))
6351 return -ENODEV;
6352
6353 /* Check the HBA Host Status Register for readyness */
6354 rc = lpfc_sli4_post_status_check(phba);
6355 if (unlikely(rc))
6356 return -ENODEV;
6357 else {
6358 spin_lock_irq(&phba->hbalock);
6359 phba->sli.sli_flag |= LPFC_SLI_ACTIVE;
6360 spin_unlock_irq(&phba->hbalock);
6361 }
6362
6363 /*
6364 * Allocate a single mailbox container for initializing the
6365 * port.
6366 */
6367 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6368 if (!mboxq)
6369 return -ENOMEM;
6370
da0436e9 6371 /* Issue READ_REV to collect vpd and FW information. */
49198b37 6372 vpd_size = SLI4_PAGE_SIZE;
da0436e9
JS
6373 vpd = kzalloc(vpd_size, GFP_KERNEL);
6374 if (!vpd) {
6375 rc = -ENOMEM;
6376 goto out_free_mbox;
6377 }
6378
6379 rc = lpfc_sli4_read_rev(phba, mboxq, vpd, &vpd_size);
76a95d75
JS
6380 if (unlikely(rc)) {
6381 kfree(vpd);
6382 goto out_free_mbox;
6383 }
572709e2 6384
da0436e9 6385 mqe = &mboxq->u.mqe;
f1126688 6386 phba->sli_rev = bf_get(lpfc_mbx_rd_rev_sli_lvl, &mqe->un.read_rev);
b5c53958 6387 if (bf_get(lpfc_mbx_rd_rev_fcoe, &mqe->un.read_rev)) {
76a95d75 6388 phba->hba_flag |= HBA_FCOE_MODE;
b5c53958
JS
6389 phba->fcp_embed_io = 0; /* SLI4 FC support only */
6390 } else {
76a95d75 6391 phba->hba_flag &= ~HBA_FCOE_MODE;
b5c53958 6392 }
45ed1190
JS
6393
6394 if (bf_get(lpfc_mbx_rd_rev_cee_ver, &mqe->un.read_rev) ==
6395 LPFC_DCBX_CEE_MODE)
6396 phba->hba_flag |= HBA_FIP_SUPPORT;
6397 else
6398 phba->hba_flag &= ~HBA_FIP_SUPPORT;
6399
4f2e66c6
JS
6400 phba->hba_flag &= ~HBA_FCP_IOQ_FLUSH;
6401
c31098ce 6402 if (phba->sli_rev != LPFC_SLI_REV4) {
da0436e9
JS
6403 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6404 "0376 READ_REV Error. SLI Level %d "
6405 "FCoE enabled %d\n",
76a95d75 6406 phba->sli_rev, phba->hba_flag & HBA_FCOE_MODE);
da0436e9 6407 rc = -EIO;
76a95d75
JS
6408 kfree(vpd);
6409 goto out_free_mbox;
da0436e9 6410 }
cd1c8301 6411
ff78d8f9
JS
6412 /*
6413 * Continue initialization with default values even if driver failed
6414 * to read FCoE param config regions, only read parameters if the
6415 * board is FCoE
6416 */
6417 if (phba->hba_flag & HBA_FCOE_MODE &&
6418 lpfc_sli4_read_fcoe_params(phba))
6419 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_INIT,
6420 "2570 Failed to read FCoE parameters\n");
6421
cd1c8301
JS
6422 /*
6423 * Retrieve sli4 device physical port name, failure of doing it
6424 * is considered as non-fatal.
6425 */
6426 rc = lpfc_sli4_retrieve_pport_name(phba);
6427 if (!rc)
6428 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
6429 "3080 Successful retrieving SLI4 device "
6430 "physical port name: %s.\n", phba->Port);
6431
da0436e9
JS
6432 /*
6433 * Evaluate the read rev and vpd data. Populate the driver
6434 * state with the results. If this routine fails, the failure
6435 * is not fatal as the driver will use generic values.
6436 */
6437 rc = lpfc_parse_vpd(phba, vpd, vpd_size);
6438 if (unlikely(!rc)) {
6439 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6440 "0377 Error %d parsing vpd. "
6441 "Using defaults.\n", rc);
6442 rc = 0;
6443 }
76a95d75 6444 kfree(vpd);
da0436e9 6445
f1126688
JS
6446 /* Save information as VPD data */
6447 phba->vpd.rev.biuRev = mqe->un.read_rev.first_hw_rev;
6448 phba->vpd.rev.smRev = mqe->un.read_rev.second_hw_rev;
6449 phba->vpd.rev.endecRev = mqe->un.read_rev.third_hw_rev;
6450 phba->vpd.rev.fcphHigh = bf_get(lpfc_mbx_rd_rev_fcph_high,
6451 &mqe->un.read_rev);
6452 phba->vpd.rev.fcphLow = bf_get(lpfc_mbx_rd_rev_fcph_low,
6453 &mqe->un.read_rev);
6454 phba->vpd.rev.feaLevelHigh = bf_get(lpfc_mbx_rd_rev_ftr_lvl_high,
6455 &mqe->un.read_rev);
6456 phba->vpd.rev.feaLevelLow = bf_get(lpfc_mbx_rd_rev_ftr_lvl_low,
6457 &mqe->un.read_rev);
6458 phba->vpd.rev.sli1FwRev = mqe->un.read_rev.fw_id_rev;
6459 memcpy(phba->vpd.rev.sli1FwName, mqe->un.read_rev.fw_name, 16);
6460 phba->vpd.rev.sli2FwRev = mqe->un.read_rev.ulp_fw_id_rev;
6461 memcpy(phba->vpd.rev.sli2FwName, mqe->un.read_rev.ulp_fw_name, 16);
6462 phba->vpd.rev.opFwRev = mqe->un.read_rev.fw_id_rev;
6463 memcpy(phba->vpd.rev.opFwName, mqe->un.read_rev.fw_name, 16);
6464 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
6465 "(%d):0380 READ_REV Status x%x "
6466 "fw_rev:%s fcphHi:%x fcphLo:%x flHi:%x flLo:%x\n",
6467 mboxq->vport ? mboxq->vport->vpi : 0,
6468 bf_get(lpfc_mqe_status, mqe),
6469 phba->vpd.rev.opFwName,
6470 phba->vpd.rev.fcphHigh, phba->vpd.rev.fcphLow,
6471 phba->vpd.rev.feaLevelHigh, phba->vpd.rev.feaLevelLow);
da0436e9 6472
572709e2
JS
6473 /* Reset the DFT_LUN_Q_DEPTH to (max xri >> 3) */
6474 rc = (phba->sli4_hba.max_cfg_param.max_xri >> 3);
6475 if (phba->pport->cfg_lun_queue_depth > rc) {
6476 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
6477 "3362 LUN queue depth changed from %d to %d\n",
6478 phba->pport->cfg_lun_queue_depth, rc);
6479 phba->pport->cfg_lun_queue_depth = rc;
6480 }
6481
65791f1f 6482 if (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) ==
7bdedb34
JS
6483 LPFC_SLI_INTF_IF_TYPE_0) {
6484 lpfc_set_features(phba, mboxq, LPFC_SET_UE_RECOVERY);
6485 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6486 if (rc == MBX_SUCCESS) {
6487 phba->hba_flag |= HBA_RECOVERABLE_UE;
6488 /* Set 1Sec interval to detect UE */
6489 phba->eratt_poll_interval = 1;
6490 phba->sli4_hba.ue_to_sr = bf_get(
6491 lpfc_mbx_set_feature_UESR,
6492 &mboxq->u.mqe.un.set_feature);
6493 phba->sli4_hba.ue_to_rp = bf_get(
6494 lpfc_mbx_set_feature_UERP,
6495 &mboxq->u.mqe.un.set_feature);
6496 }
6497 }
6498
6499 if (phba->cfg_enable_mds_diags && phba->mds_diags_support) {
6500 /* Enable MDS Diagnostics only if the SLI Port supports it */
6501 lpfc_set_features(phba, mboxq, LPFC_SET_MDS_DIAGS);
6502 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6503 if (rc != MBX_SUCCESS)
6504 phba->mds_diags_support = 0;
6505 }
572709e2 6506
da0436e9
JS
6507 /*
6508 * Discover the port's supported feature set and match it against the
6509 * hosts requests.
6510 */
6511 lpfc_request_features(phba, mboxq);
6512 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6513 if (unlikely(rc)) {
6514 rc = -EIO;
76a95d75 6515 goto out_free_mbox;
da0436e9
JS
6516 }
6517
6518 /*
6519 * The port must support FCP initiator mode as this is the
6520 * only mode running in the host.
6521 */
6522 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_fcpi, &mqe->un.req_ftrs))) {
6523 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
6524 "0378 No support for fcpi mode.\n");
6525 ftr_rsp++;
6526 }
fedd3b7b
JS
6527 if (bf_get(lpfc_mbx_rq_ftr_rsp_perfh, &mqe->un.req_ftrs))
6528 phba->sli3_options |= LPFC_SLI4_PERFH_ENABLED;
6529 else
6530 phba->sli3_options &= ~LPFC_SLI4_PERFH_ENABLED;
da0436e9
JS
6531 /*
6532 * If the port cannot support the host's requested features
6533 * then turn off the global config parameters to disable the
6534 * feature in the driver. This is not a fatal error.
6535 */
bf08611b
JS
6536 phba->sli3_options &= ~LPFC_SLI3_BG_ENABLED;
6537 if (phba->cfg_enable_bg) {
6538 if (bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs))
6539 phba->sli3_options |= LPFC_SLI3_BG_ENABLED;
6540 else
6541 ftr_rsp++;
6542 }
da0436e9
JS
6543
6544 if (phba->max_vpi && phba->cfg_enable_npiv &&
6545 !(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
6546 ftr_rsp++;
6547
6548 if (ftr_rsp) {
6549 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
6550 "0379 Feature Mismatch Data: x%08x %08x "
6551 "x%x x%x x%x\n", mqe->un.req_ftrs.word2,
6552 mqe->un.req_ftrs.word3, phba->cfg_enable_bg,
6553 phba->cfg_enable_npiv, phba->max_vpi);
6554 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs)))
6555 phba->cfg_enable_bg = 0;
6556 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
6557 phba->cfg_enable_npiv = 0;
6558 }
6559
6560 /* These SLI3 features are assumed in SLI4 */
6561 spin_lock_irq(&phba->hbalock);
6562 phba->sli3_options |= (LPFC_SLI3_NPIV_ENABLED | LPFC_SLI3_HBQ_ENABLED);
6563 spin_unlock_irq(&phba->hbalock);
6564
6d368e53
JS
6565 /*
6566 * Allocate all resources (xri,rpi,vpi,vfi) now. Subsequent
6567 * calls depends on these resources to complete port setup.
6568 */
6569 rc = lpfc_sli4_alloc_resource_identifiers(phba);
6570 if (rc) {
6571 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6572 "2920 Failed to alloc Resource IDs "
6573 "rc = x%x\n", rc);
6574 goto out_free_mbox;
6575 }
6576
61bda8f7
JS
6577 lpfc_set_host_data(phba, mboxq);
6578
6579 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6580 if (rc) {
6581 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
6582 "2134 Failed to set host os driver version %x",
6583 rc);
6584 }
6585
da0436e9 6586 /* Read the port's service parameters. */
9f1177a3
JS
6587 rc = lpfc_read_sparam(phba, mboxq, vport->vpi);
6588 if (rc) {
6589 phba->link_state = LPFC_HBA_ERROR;
6590 rc = -ENOMEM;
76a95d75 6591 goto out_free_mbox;
9f1177a3
JS
6592 }
6593
da0436e9
JS
6594 mboxq->vport = vport;
6595 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6596 mp = (struct lpfc_dmabuf *) mboxq->context1;
6597 if (rc == MBX_SUCCESS) {
6598 memcpy(&vport->fc_sparam, mp->virt, sizeof(struct serv_parm));
6599 rc = 0;
6600 }
6601
6602 /*
6603 * This memory was allocated by the lpfc_read_sparam routine. Release
6604 * it to the mbuf pool.
6605 */
6606 lpfc_mbuf_free(phba, mp->virt, mp->phys);
6607 kfree(mp);
6608 mboxq->context1 = NULL;
6609 if (unlikely(rc)) {
6610 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6611 "0382 READ_SPARAM command failed "
6612 "status %d, mbxStatus x%x\n",
6613 rc, bf_get(lpfc_mqe_status, mqe));
6614 phba->link_state = LPFC_HBA_ERROR;
6615 rc = -EIO;
76a95d75 6616 goto out_free_mbox;
da0436e9
JS
6617 }
6618
0558056c 6619 lpfc_update_vport_wwn(vport);
da0436e9
JS
6620
6621 /* Update the fc_host data structures with new wwn. */
6622 fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn);
6623 fc_host_port_name(shost) = wwn_to_u64(vport->fc_portname.u.wwn);
6624
8a9d2e80
JS
6625 /* update host els and scsi xri-sgl sizes and mappings */
6626 rc = lpfc_sli4_xri_sgl_update(phba);
6627 if (unlikely(rc)) {
6628 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6629 "1400 Failed to update xri-sgl size and "
6630 "mapping: %d\n", rc);
6631 goto out_free_mbox;
da0436e9
JS
6632 }
6633
8a9d2e80
JS
6634 /* register the els sgl pool to the port */
6635 rc = lpfc_sli4_repost_els_sgl_list(phba);
6636 if (unlikely(rc)) {
6637 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6638 "0582 Error %d during els sgl post "
6639 "operation\n", rc);
6640 rc = -ENODEV;
6641 goto out_free_mbox;
6642 }
6643
6644 /* register the allocated scsi sgl pool to the port */
da0436e9
JS
6645 rc = lpfc_sli4_repost_scsi_sgl_list(phba);
6646 if (unlikely(rc)) {
6d368e53 6647 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6a9c52cf
JS
6648 "0383 Error %d during scsi sgl post "
6649 "operation\n", rc);
da0436e9
JS
6650 /* Some Scsi buffers were moved to the abort scsi list */
6651 /* A pci function reset will repost them */
6652 rc = -ENODEV;
76a95d75 6653 goto out_free_mbox;
da0436e9
JS
6654 }
6655
6656 /* Post the rpi header region to the device. */
6657 rc = lpfc_sli4_post_all_rpi_hdrs(phba);
6658 if (unlikely(rc)) {
6659 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6660 "0393 Error %d during rpi post operation\n",
6661 rc);
6662 rc = -ENODEV;
76a95d75 6663 goto out_free_mbox;
da0436e9 6664 }
97f2ecf1 6665 lpfc_sli4_node_prep(phba);
da0436e9 6666
5350d872
JS
6667 /* Create all the SLI4 queues */
6668 rc = lpfc_sli4_queue_create(phba);
6669 if (rc) {
6670 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6671 "3089 Failed to allocate queues\n");
6672 rc = -ENODEV;
6673 goto out_stop_timers;
6674 }
da0436e9
JS
6675 /* Set up all the queues to the device */
6676 rc = lpfc_sli4_queue_setup(phba);
6677 if (unlikely(rc)) {
6678 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6679 "0381 Error %d during queue setup.\n ", rc);
5350d872 6680 goto out_destroy_queue;
da0436e9
JS
6681 }
6682
6683 /* Arm the CQs and then EQs on device */
6684 lpfc_sli4_arm_cqeq_intr(phba);
6685
6686 /* Indicate device interrupt mode */
6687 phba->sli4_hba.intr_enable = 1;
6688
6689 /* Allow asynchronous mailbox command to go through */
6690 spin_lock_irq(&phba->hbalock);
6691 phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
6692 spin_unlock_irq(&phba->hbalock);
6693
6694 /* Post receive buffers to the device */
6695 lpfc_sli4_rb_setup(phba);
6696
fc2b989b
JS
6697 /* Reset HBA FCF states after HBA reset */
6698 phba->fcf.fcf_flag = 0;
6699 phba->fcf.current_rec.flag = 0;
6700
da0436e9 6701 /* Start the ELS watchdog timer */
8fa38513 6702 mod_timer(&vport->els_tmofunc,
256ec0d0 6703 jiffies + msecs_to_jiffies(1000 * (phba->fc_ratov * 2)));
da0436e9
JS
6704
6705 /* Start heart beat timer */
6706 mod_timer(&phba->hb_tmofunc,
256ec0d0 6707 jiffies + msecs_to_jiffies(1000 * LPFC_HB_MBOX_INTERVAL));
da0436e9
JS
6708 phba->hb_outstanding = 0;
6709 phba->last_completion_time = jiffies;
6710
6711 /* Start error attention (ERATT) polling timer */
256ec0d0 6712 mod_timer(&phba->eratt_poll,
65791f1f 6713 jiffies + msecs_to_jiffies(1000 * phba->eratt_poll_interval));
da0436e9 6714
75baf696
JS
6715 /* Enable PCIe device Advanced Error Reporting (AER) if configured */
6716 if (phba->cfg_aer_support == 1 && !(phba->hba_flag & HBA_AER_ENABLED)) {
6717 rc = pci_enable_pcie_error_reporting(phba->pcidev);
6718 if (!rc) {
6719 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6720 "2829 This device supports "
6721 "Advanced Error Reporting (AER)\n");
6722 spin_lock_irq(&phba->hbalock);
6723 phba->hba_flag |= HBA_AER_ENABLED;
6724 spin_unlock_irq(&phba->hbalock);
6725 } else {
6726 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6727 "2830 This device does not support "
6728 "Advanced Error Reporting (AER)\n");
6729 phba->cfg_aer_support = 0;
6730 }
0a96e975 6731 rc = 0;
75baf696
JS
6732 }
6733
76a95d75
JS
6734 if (!(phba->hba_flag & HBA_FCOE_MODE)) {
6735 /*
6736 * The FC Port needs to register FCFI (index 0)
6737 */
6738 lpfc_reg_fcfi(phba, mboxq);
6739 mboxq->vport = phba->pport;
6740 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
9589b062 6741 if (rc != MBX_SUCCESS)
76a95d75 6742 goto out_unset_queue;
9589b062
JS
6743 rc = 0;
6744 phba->fcf.fcfi = bf_get(lpfc_reg_fcfi_fcfi,
6745 &mboxq->u.mqe.un.reg_fcfi);
026abb87
JS
6746
6747 /* Check if the port is configured to be disabled */
6748 lpfc_sli_read_link_ste(phba);
76a95d75 6749 }
026abb87 6750
da0436e9
JS
6751 /*
6752 * The port is ready, set the host's link state to LINK_DOWN
6753 * in preparation for link interrupts.
6754 */
da0436e9
JS
6755 spin_lock_irq(&phba->hbalock);
6756 phba->link_state = LPFC_LINK_DOWN;
6757 spin_unlock_irq(&phba->hbalock);
026abb87
JS
6758 if (!(phba->hba_flag & HBA_FCOE_MODE) &&
6759 (phba->hba_flag & LINK_DISABLED)) {
6760 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_SLI,
6761 "3103 Adapter Link is disabled.\n");
6762 lpfc_down_link(phba, mboxq);
6763 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6764 if (rc != MBX_SUCCESS) {
6765 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_SLI,
6766 "3104 Adapter failed to issue "
6767 "DOWN_LINK mbox cmd, rc:x%x\n", rc);
6768 goto out_unset_queue;
6769 }
6770 } else if (phba->cfg_suppress_link_up == LPFC_INITIALIZE_LINK) {
1b51197d
JS
6771 /* don't perform init_link on SLI4 FC port loopback test */
6772 if (!(phba->link_flag & LS_LOOPBACK_MODE)) {
6773 rc = phba->lpfc_hba_init_link(phba, MBX_NOWAIT);
6774 if (rc)
6775 goto out_unset_queue;
6776 }
5350d872
JS
6777 }
6778 mempool_free(mboxq, phba->mbox_mem_pool);
6779 return rc;
76a95d75 6780out_unset_queue:
da0436e9 6781 /* Unset all the queues set up in this routine when error out */
5350d872
JS
6782 lpfc_sli4_queue_unset(phba);
6783out_destroy_queue:
6784 lpfc_sli4_queue_destroy(phba);
da0436e9 6785out_stop_timers:
5350d872 6786 lpfc_stop_hba_timers(phba);
da0436e9
JS
6787out_free_mbox:
6788 mempool_free(mboxq, phba->mbox_mem_pool);
6789 return rc;
6790}
6791
6792/**
6793 * lpfc_mbox_timeout - Timeout call back function for mbox timer
6794 * @ptr: context object - pointer to hba structure.
6795 *
6796 * This is the callback function for mailbox timer. The mailbox
6797 * timer is armed when a new mailbox command is issued and the timer
6798 * is deleted when the mailbox complete. The function is called by
6799 * the kernel timer code when a mailbox does not complete within
6800 * expected time. This function wakes up the worker thread to
6801 * process the mailbox timeout and returns. All the processing is
6802 * done by the worker thread function lpfc_mbox_timeout_handler.
6803 **/
6804void
6805lpfc_mbox_timeout(unsigned long ptr)
6806{
6807 struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
6808 unsigned long iflag;
6809 uint32_t tmo_posted;
6810
6811 spin_lock_irqsave(&phba->pport->work_port_lock, iflag);
6812 tmo_posted = phba->pport->work_port_events & WORKER_MBOX_TMO;
6813 if (!tmo_posted)
6814 phba->pport->work_port_events |= WORKER_MBOX_TMO;
6815 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflag);
6816
6817 if (!tmo_posted)
6818 lpfc_worker_wake_up(phba);
6819 return;
6820}
6821
e8d3c3b1
JS
6822/**
6823 * lpfc_sli4_mbox_completions_pending - check to see if any mailbox completions
6824 * are pending
6825 * @phba: Pointer to HBA context object.
6826 *
6827 * This function checks if any mailbox completions are present on the mailbox
6828 * completion queue.
6829 **/
3bb11fc5 6830static bool
e8d3c3b1
JS
6831lpfc_sli4_mbox_completions_pending(struct lpfc_hba *phba)
6832{
6833
6834 uint32_t idx;
6835 struct lpfc_queue *mcq;
6836 struct lpfc_mcqe *mcqe;
6837 bool pending_completions = false;
6838
6839 if (unlikely(!phba) || (phba->sli_rev != LPFC_SLI_REV4))
6840 return false;
6841
6842 /* Check for completions on mailbox completion queue */
6843
6844 mcq = phba->sli4_hba.mbx_cq;
6845 idx = mcq->hba_index;
6846 while (bf_get_le32(lpfc_cqe_valid, mcq->qe[idx].cqe)) {
6847 mcqe = (struct lpfc_mcqe *)mcq->qe[idx].cqe;
6848 if (bf_get_le32(lpfc_trailer_completed, mcqe) &&
6849 (!bf_get_le32(lpfc_trailer_async, mcqe))) {
6850 pending_completions = true;
6851 break;
6852 }
6853 idx = (idx + 1) % mcq->entry_count;
6854 if (mcq->hba_index == idx)
6855 break;
6856 }
6857 return pending_completions;
6858
6859}
6860
6861/**
6862 * lpfc_sli4_process_missed_mbox_completions - process mbox completions
6863 * that were missed.
6864 * @phba: Pointer to HBA context object.
6865 *
6866 * For sli4, it is possible to miss an interrupt. As such mbox completions
6867 * maybe missed causing erroneous mailbox timeouts to occur. This function
6868 * checks to see if mbox completions are on the mailbox completion queue
6869 * and will process all the completions associated with the eq for the
6870 * mailbox completion queue.
6871 **/
6872bool
6873lpfc_sli4_process_missed_mbox_completions(struct lpfc_hba *phba)
6874{
6875
6876 uint32_t eqidx;
6877 struct lpfc_queue *fpeq = NULL;
6878 struct lpfc_eqe *eqe;
6879 bool mbox_pending;
6880
6881 if (unlikely(!phba) || (phba->sli_rev != LPFC_SLI_REV4))
6882 return false;
6883
6884 /* Find the eq associated with the mcq */
6885
6886 if (phba->sli4_hba.hba_eq)
6887 for (eqidx = 0; eqidx < phba->cfg_fcp_io_channel; eqidx++)
6888 if (phba->sli4_hba.hba_eq[eqidx]->queue_id ==
6889 phba->sli4_hba.mbx_cq->assoc_qid) {
6890 fpeq = phba->sli4_hba.hba_eq[eqidx];
6891 break;
6892 }
6893 if (!fpeq)
6894 return false;
6895
6896 /* Turn off interrupts from this EQ */
6897
6898 lpfc_sli4_eq_clr_intr(fpeq);
6899
6900 /* Check to see if a mbox completion is pending */
6901
6902 mbox_pending = lpfc_sli4_mbox_completions_pending(phba);
6903
6904 /*
6905 * If a mbox completion is pending, process all the events on EQ
6906 * associated with the mbox completion queue (this could include
6907 * mailbox commands, async events, els commands, receive queue data
6908 * and fcp commands)
6909 */
6910
6911 if (mbox_pending)
6912 while ((eqe = lpfc_sli4_eq_get(fpeq))) {
6913 lpfc_sli4_hba_handle_eqe(phba, eqe, eqidx);
6914 fpeq->EQ_processed++;
6915 }
6916
6917 /* Always clear and re-arm the EQ */
6918
6919 lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_REARM);
6920
6921 return mbox_pending;
6922
6923}
da0436e9
JS
6924
6925/**
6926 * lpfc_mbox_timeout_handler - Worker thread function to handle mailbox timeout
6927 * @phba: Pointer to HBA context object.
6928 *
6929 * This function is called from worker thread when a mailbox command times out.
6930 * The caller is not required to hold any locks. This function will reset the
6931 * HBA and recover all the pending commands.
6932 **/
6933void
6934lpfc_mbox_timeout_handler(struct lpfc_hba *phba)
6935{
6936 LPFC_MBOXQ_t *pmbox = phba->sli.mbox_active;
eb016566
JS
6937 MAILBOX_t *mb = NULL;
6938
da0436e9 6939 struct lpfc_sli *psli = &phba->sli;
da0436e9 6940
e8d3c3b1
JS
6941 /* If the mailbox completed, process the completion and return */
6942 if (lpfc_sli4_process_missed_mbox_completions(phba))
6943 return;
6944
eb016566
JS
6945 if (pmbox != NULL)
6946 mb = &pmbox->u.mb;
da0436e9
JS
6947 /* Check the pmbox pointer first. There is a race condition
6948 * between the mbox timeout handler getting executed in the
6949 * worklist and the mailbox actually completing. When this
6950 * race condition occurs, the mbox_active will be NULL.
6951 */
6952 spin_lock_irq(&phba->hbalock);
6953 if (pmbox == NULL) {
6954 lpfc_printf_log(phba, KERN_WARNING,
6955 LOG_MBOX | LOG_SLI,
6956 "0353 Active Mailbox cleared - mailbox timeout "
6957 "exiting\n");
6958 spin_unlock_irq(&phba->hbalock);
6959 return;
6960 }
6961
6962 /* Mbox cmd <mbxCommand> timeout */
6963 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6964 "0310 Mailbox command x%x timeout Data: x%x x%x x%p\n",
6965 mb->mbxCommand,
6966 phba->pport->port_state,
6967 phba->sli.sli_flag,
6968 phba->sli.mbox_active);
6969 spin_unlock_irq(&phba->hbalock);
6970
6971 /* Setting state unknown so lpfc_sli_abort_iocb_ring
6972 * would get IOCB_ERROR from lpfc_sli_issue_iocb, allowing
25985edc 6973 * it to fail all outstanding SCSI IO.
da0436e9
JS
6974 */
6975 spin_lock_irq(&phba->pport->work_port_lock);
6976 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
6977 spin_unlock_irq(&phba->pport->work_port_lock);
6978 spin_lock_irq(&phba->hbalock);
6979 phba->link_state = LPFC_LINK_UNKNOWN;
f4b4c68f 6980 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
da0436e9
JS
6981 spin_unlock_irq(&phba->hbalock);
6982
db55fba8 6983 lpfc_sli_abort_fcp_rings(phba);
da0436e9
JS
6984
6985 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6986 "0345 Resetting board due to mailbox timeout\n");
6987
6988 /* Reset the HBA device */
6989 lpfc_reset_hba(phba);
6990}
6991
6992/**
6993 * lpfc_sli_issue_mbox_s3 - Issue an SLI3 mailbox command to firmware
6994 * @phba: Pointer to HBA context object.
6995 * @pmbox: Pointer to mailbox object.
6996 * @flag: Flag indicating how the mailbox need to be processed.
6997 *
6998 * This function is called by discovery code and HBA management code
6999 * to submit a mailbox command to firmware with SLI-3 interface spec. This
7000 * function gets the hbalock to protect the data structures.
7001 * The mailbox command can be submitted in polling mode, in which case
7002 * this function will wait in a polling loop for the completion of the
7003 * mailbox.
7004 * If the mailbox is submitted in no_wait mode (not polling) the
7005 * function will submit the command and returns immediately without waiting
7006 * for the mailbox completion. The no_wait is supported only when HBA
7007 * is in SLI2/SLI3 mode - interrupts are enabled.
7008 * The SLI interface allows only one mailbox pending at a time. If the
7009 * mailbox is issued in polling mode and there is already a mailbox
7010 * pending, then the function will return an error. If the mailbox is issued
7011 * in NO_WAIT mode and there is a mailbox pending already, the function
7012 * will return MBX_BUSY after queuing the mailbox into mailbox queue.
7013 * The sli layer owns the mailbox object until the completion of mailbox
7014 * command if this function return MBX_BUSY or MBX_SUCCESS. For all other
7015 * return codes the caller owns the mailbox command after the return of
7016 * the function.
e59058c4 7017 **/
3772a991
JS
7018static int
7019lpfc_sli_issue_mbox_s3(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox,
7020 uint32_t flag)
dea3101e 7021{
bf07bdea 7022 MAILBOX_t *mbx;
2e0fef85 7023 struct lpfc_sli *psli = &phba->sli;
dea3101e 7024 uint32_t status, evtctr;
9940b97b 7025 uint32_t ha_copy, hc_copy;
dea3101e 7026 int i;
09372820 7027 unsigned long timeout;
dea3101e 7028 unsigned long drvr_flag = 0;
34b02dcd 7029 uint32_t word0, ldata;
dea3101e 7030 void __iomem *to_slim;
58da1ffb
JS
7031 int processing_queue = 0;
7032
7033 spin_lock_irqsave(&phba->hbalock, drvr_flag);
7034 if (!pmbox) {
8568a4d2 7035 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
58da1ffb 7036 /* processing mbox queue from intr_handler */
3772a991
JS
7037 if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
7038 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
7039 return MBX_SUCCESS;
7040 }
58da1ffb 7041 processing_queue = 1;
58da1ffb
JS
7042 pmbox = lpfc_mbox_get(phba);
7043 if (!pmbox) {
7044 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
7045 return MBX_SUCCESS;
7046 }
7047 }
dea3101e 7048
ed957684 7049 if (pmbox->mbox_cmpl && pmbox->mbox_cmpl != lpfc_sli_def_mbox_cmpl &&
92d7f7b0 7050 pmbox->mbox_cmpl != lpfc_sli_wake_mbox_wait) {
ed957684 7051 if(!pmbox->vport) {
58da1ffb 7052 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
ed957684 7053 lpfc_printf_log(phba, KERN_ERR,
92d7f7b0 7054 LOG_MBOX | LOG_VPORT,
e8b62011 7055 "1806 Mbox x%x failed. No vport\n",
3772a991 7056 pmbox->u.mb.mbxCommand);
ed957684 7057 dump_stack();
58da1ffb 7058 goto out_not_finished;
ed957684
JS
7059 }
7060 }
7061
8d63f375 7062 /* If the PCI channel is in offline state, do not post mbox. */
58da1ffb
JS
7063 if (unlikely(pci_channel_offline(phba->pcidev))) {
7064 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
7065 goto out_not_finished;
7066 }
8d63f375 7067
a257bf90
JS
7068 /* If HBA has a deferred error attention, fail the iocb. */
7069 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
7070 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
7071 goto out_not_finished;
7072 }
7073
dea3101e 7074 psli = &phba->sli;
92d7f7b0 7075
bf07bdea 7076 mbx = &pmbox->u.mb;
dea3101e
JB
7077 status = MBX_SUCCESS;
7078
2e0fef85
JS
7079 if (phba->link_state == LPFC_HBA_ERROR) {
7080 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
41415862
JW
7081
7082 /* Mbox command <mbxCommand> cannot issue */
3772a991
JS
7083 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7084 "(%d):0311 Mailbox command x%x cannot "
7085 "issue Data: x%x x%x\n",
7086 pmbox->vport ? pmbox->vport->vpi : 0,
7087 pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
58da1ffb 7088 goto out_not_finished;
41415862
JW
7089 }
7090
bf07bdea 7091 if (mbx->mbxCommand != MBX_KILL_BOARD && flag & MBX_NOWAIT) {
9940b97b
JS
7092 if (lpfc_readl(phba->HCregaddr, &hc_copy) ||
7093 !(hc_copy & HC_MBINT_ENA)) {
7094 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
7095 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
3772a991
JS
7096 "(%d):2528 Mailbox command x%x cannot "
7097 "issue Data: x%x x%x\n",
7098 pmbox->vport ? pmbox->vport->vpi : 0,
7099 pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
9940b97b
JS
7100 goto out_not_finished;
7101 }
9290831f
JS
7102 }
7103
dea3101e
JB
7104 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
7105 /* Polling for a mbox command when another one is already active
7106 * is not allowed in SLI. Also, the driver must have established
7107 * SLI2 mode to queue and process multiple mbox commands.
7108 */
7109
7110 if (flag & MBX_POLL) {
2e0fef85 7111 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea3101e
JB
7112
7113 /* Mbox command <mbxCommand> cannot issue */
3772a991
JS
7114 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7115 "(%d):2529 Mailbox command x%x "
7116 "cannot issue Data: x%x x%x\n",
7117 pmbox->vport ? pmbox->vport->vpi : 0,
7118 pmbox->u.mb.mbxCommand,
7119 psli->sli_flag, flag);
58da1ffb 7120 goto out_not_finished;
dea3101e
JB
7121 }
7122
3772a991 7123 if (!(psli->sli_flag & LPFC_SLI_ACTIVE)) {
2e0fef85 7124 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea3101e 7125 /* Mbox command <mbxCommand> cannot issue */
3772a991
JS
7126 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7127 "(%d):2530 Mailbox command x%x "
7128 "cannot issue Data: x%x x%x\n",
7129 pmbox->vport ? pmbox->vport->vpi : 0,
7130 pmbox->u.mb.mbxCommand,
7131 psli->sli_flag, flag);
58da1ffb 7132 goto out_not_finished;
dea3101e
JB
7133 }
7134
dea3101e
JB
7135 /* Another mailbox command is still being processed, queue this
7136 * command to be processed later.
7137 */
7138 lpfc_mbox_put(phba, pmbox);
7139
7140 /* Mbox cmd issue - BUSY */
ed957684 7141 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
e8b62011 7142 "(%d):0308 Mbox cmd issue - BUSY Data: "
92d7f7b0 7143 "x%x x%x x%x x%x\n",
92d7f7b0 7144 pmbox->vport ? pmbox->vport->vpi : 0xffffff,
bf07bdea 7145 mbx->mbxCommand, phba->pport->port_state,
92d7f7b0 7146 psli->sli_flag, flag);
dea3101e
JB
7147
7148 psli->slistat.mbox_busy++;
2e0fef85 7149 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea3101e 7150
858c9f6c
JS
7151 if (pmbox->vport) {
7152 lpfc_debugfs_disc_trc(pmbox->vport,
7153 LPFC_DISC_TRC_MBOX_VPORT,
7154 "MBOX Bsy vport: cmd:x%x mb:x%x x%x",
bf07bdea
RD
7155 (uint32_t)mbx->mbxCommand,
7156 mbx->un.varWords[0], mbx->un.varWords[1]);
858c9f6c
JS
7157 }
7158 else {
7159 lpfc_debugfs_disc_trc(phba->pport,
7160 LPFC_DISC_TRC_MBOX,
7161 "MBOX Bsy: cmd:x%x mb:x%x x%x",
bf07bdea
RD
7162 (uint32_t)mbx->mbxCommand,
7163 mbx->un.varWords[0], mbx->un.varWords[1]);
858c9f6c
JS
7164 }
7165
2e0fef85 7166 return MBX_BUSY;
dea3101e
JB
7167 }
7168
dea3101e
JB
7169 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
7170
7171 /* If we are not polling, we MUST be in SLI2 mode */
7172 if (flag != MBX_POLL) {
3772a991 7173 if (!(psli->sli_flag & LPFC_SLI_ACTIVE) &&
bf07bdea 7174 (mbx->mbxCommand != MBX_KILL_BOARD)) {
dea3101e 7175 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
2e0fef85 7176 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea3101e 7177 /* Mbox command <mbxCommand> cannot issue */
3772a991
JS
7178 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7179 "(%d):2531 Mailbox command x%x "
7180 "cannot issue Data: x%x x%x\n",
7181 pmbox->vport ? pmbox->vport->vpi : 0,
7182 pmbox->u.mb.mbxCommand,
7183 psli->sli_flag, flag);
58da1ffb 7184 goto out_not_finished;
dea3101e
JB
7185 }
7186 /* timeout active mbox command */
256ec0d0
JS
7187 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, pmbox) *
7188 1000);
7189 mod_timer(&psli->mbox_tmo, jiffies + timeout);
dea3101e
JB
7190 }
7191
7192 /* Mailbox cmd <cmd> issue */
ed957684 7193 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
e8b62011 7194 "(%d):0309 Mailbox cmd x%x issue Data: x%x x%x "
92d7f7b0 7195 "x%x\n",
e8b62011 7196 pmbox->vport ? pmbox->vport->vpi : 0,
bf07bdea 7197 mbx->mbxCommand, phba->pport->port_state,
92d7f7b0 7198 psli->sli_flag, flag);
dea3101e 7199
bf07bdea 7200 if (mbx->mbxCommand != MBX_HEARTBEAT) {
858c9f6c
JS
7201 if (pmbox->vport) {
7202 lpfc_debugfs_disc_trc(pmbox->vport,
7203 LPFC_DISC_TRC_MBOX_VPORT,
7204 "MBOX Send vport: cmd:x%x mb:x%x x%x",
bf07bdea
RD
7205 (uint32_t)mbx->mbxCommand,
7206 mbx->un.varWords[0], mbx->un.varWords[1]);
858c9f6c
JS
7207 }
7208 else {
7209 lpfc_debugfs_disc_trc(phba->pport,
7210 LPFC_DISC_TRC_MBOX,
7211 "MBOX Send: cmd:x%x mb:x%x x%x",
bf07bdea
RD
7212 (uint32_t)mbx->mbxCommand,
7213 mbx->un.varWords[0], mbx->un.varWords[1]);
858c9f6c
JS
7214 }
7215 }
7216
dea3101e
JB
7217 psli->slistat.mbox_cmd++;
7218 evtctr = psli->slistat.mbox_event;
7219
7220 /* next set own bit for the adapter and copy over command word */
bf07bdea 7221 mbx->mbxOwner = OWN_CHIP;
dea3101e 7222
3772a991 7223 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
7a470277
JS
7224 /* Populate mbox extension offset word. */
7225 if (pmbox->in_ext_byte_len || pmbox->out_ext_byte_len) {
bf07bdea 7226 *(((uint32_t *)mbx) + pmbox->mbox_offset_word)
7a470277
JS
7227 = (uint8_t *)phba->mbox_ext
7228 - (uint8_t *)phba->mbox;
7229 }
7230
7231 /* Copy the mailbox extension data */
7232 if (pmbox->in_ext_byte_len && pmbox->context2) {
7233 lpfc_sli_pcimem_bcopy(pmbox->context2,
7234 (uint8_t *)phba->mbox_ext,
7235 pmbox->in_ext_byte_len);
7236 }
7237 /* Copy command data to host SLIM area */
bf07bdea 7238 lpfc_sli_pcimem_bcopy(mbx, phba->mbox, MAILBOX_CMD_SIZE);
dea3101e 7239 } else {
7a470277
JS
7240 /* Populate mbox extension offset word. */
7241 if (pmbox->in_ext_byte_len || pmbox->out_ext_byte_len)
bf07bdea 7242 *(((uint32_t *)mbx) + pmbox->mbox_offset_word)
7a470277
JS
7243 = MAILBOX_HBA_EXT_OFFSET;
7244
7245 /* Copy the mailbox extension data */
7246 if (pmbox->in_ext_byte_len && pmbox->context2) {
7247 lpfc_memcpy_to_slim(phba->MBslimaddr +
7248 MAILBOX_HBA_EXT_OFFSET,
7249 pmbox->context2, pmbox->in_ext_byte_len);
7250
7251 }
bf07bdea 7252 if (mbx->mbxCommand == MBX_CONFIG_PORT) {
dea3101e 7253 /* copy command data into host mbox for cmpl */
bf07bdea 7254 lpfc_sli_pcimem_bcopy(mbx, phba->mbox, MAILBOX_CMD_SIZE);
dea3101e
JB
7255 }
7256
7257 /* First copy mbox command data to HBA SLIM, skip past first
7258 word */
7259 to_slim = phba->MBslimaddr + sizeof (uint32_t);
bf07bdea 7260 lpfc_memcpy_to_slim(to_slim, &mbx->un.varWords[0],
dea3101e
JB
7261 MAILBOX_CMD_SIZE - sizeof (uint32_t));
7262
7263 /* Next copy over first word, with mbxOwner set */
bf07bdea 7264 ldata = *((uint32_t *)mbx);
dea3101e
JB
7265 to_slim = phba->MBslimaddr;
7266 writel(ldata, to_slim);
7267 readl(to_slim); /* flush */
7268
bf07bdea 7269 if (mbx->mbxCommand == MBX_CONFIG_PORT) {
dea3101e 7270 /* switch over to host mailbox */
3772a991 7271 psli->sli_flag |= LPFC_SLI_ACTIVE;
dea3101e
JB
7272 }
7273 }
7274
7275 wmb();
dea3101e
JB
7276
7277 switch (flag) {
7278 case MBX_NOWAIT:
09372820 7279 /* Set up reference to mailbox command */
dea3101e 7280 psli->mbox_active = pmbox;
09372820
JS
7281 /* Interrupt board to do it */
7282 writel(CA_MBATT, phba->CAregaddr);
7283 readl(phba->CAregaddr); /* flush */
7284 /* Don't wait for it to finish, just return */
dea3101e
JB
7285 break;
7286
7287 case MBX_POLL:
09372820 7288 /* Set up null reference to mailbox command */
dea3101e 7289 psli->mbox_active = NULL;
09372820
JS
7290 /* Interrupt board to do it */
7291 writel(CA_MBATT, phba->CAregaddr);
7292 readl(phba->CAregaddr); /* flush */
7293
3772a991 7294 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea3101e 7295 /* First read mbox status word */
34b02dcd 7296 word0 = *((uint32_t *)phba->mbox);
dea3101e
JB
7297 word0 = le32_to_cpu(word0);
7298 } else {
7299 /* First read mbox status word */
9940b97b
JS
7300 if (lpfc_readl(phba->MBslimaddr, &word0)) {
7301 spin_unlock_irqrestore(&phba->hbalock,
7302 drvr_flag);
7303 goto out_not_finished;
7304 }
dea3101e
JB
7305 }
7306
7307 /* Read the HBA Host Attention Register */
9940b97b
JS
7308 if (lpfc_readl(phba->HAregaddr, &ha_copy)) {
7309 spin_unlock_irqrestore(&phba->hbalock,
7310 drvr_flag);
7311 goto out_not_finished;
7312 }
a183a15f
JS
7313 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, pmbox) *
7314 1000) + jiffies;
09372820 7315 i = 0;
dea3101e 7316 /* Wait for command to complete */
41415862
JW
7317 while (((word0 & OWN_CHIP) == OWN_CHIP) ||
7318 (!(ha_copy & HA_MBATT) &&
2e0fef85 7319 (phba->link_state > LPFC_WARM_START))) {
09372820 7320 if (time_after(jiffies, timeout)) {
dea3101e 7321 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
2e0fef85 7322 spin_unlock_irqrestore(&phba->hbalock,
dea3101e 7323 drvr_flag);
58da1ffb 7324 goto out_not_finished;
dea3101e
JB
7325 }
7326
7327 /* Check if we took a mbox interrupt while we were
7328 polling */
7329 if (((word0 & OWN_CHIP) != OWN_CHIP)
7330 && (evtctr != psli->slistat.mbox_event))
7331 break;
7332
09372820
JS
7333 if (i++ > 10) {
7334 spin_unlock_irqrestore(&phba->hbalock,
7335 drvr_flag);
7336 msleep(1);
7337 spin_lock_irqsave(&phba->hbalock, drvr_flag);
7338 }
dea3101e 7339
3772a991 7340 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea3101e 7341 /* First copy command data */
34b02dcd 7342 word0 = *((uint32_t *)phba->mbox);
dea3101e 7343 word0 = le32_to_cpu(word0);
bf07bdea 7344 if (mbx->mbxCommand == MBX_CONFIG_PORT) {
dea3101e 7345 MAILBOX_t *slimmb;
34b02dcd 7346 uint32_t slimword0;
dea3101e
JB
7347 /* Check real SLIM for any errors */
7348 slimword0 = readl(phba->MBslimaddr);
7349 slimmb = (MAILBOX_t *) & slimword0;
7350 if (((slimword0 & OWN_CHIP) != OWN_CHIP)
7351 && slimmb->mbxStatus) {
7352 psli->sli_flag &=
3772a991 7353 ~LPFC_SLI_ACTIVE;
dea3101e
JB
7354 word0 = slimword0;
7355 }
7356 }
7357 } else {
7358 /* First copy command data */
7359 word0 = readl(phba->MBslimaddr);
7360 }
7361 /* Read the HBA Host Attention Register */
9940b97b
JS
7362 if (lpfc_readl(phba->HAregaddr, &ha_copy)) {
7363 spin_unlock_irqrestore(&phba->hbalock,
7364 drvr_flag);
7365 goto out_not_finished;
7366 }
dea3101e
JB
7367 }
7368
3772a991 7369 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea3101e 7370 /* copy results back to user */
2ea259ee
JS
7371 lpfc_sli_pcimem_bcopy(phba->mbox, mbx,
7372 MAILBOX_CMD_SIZE);
7a470277
JS
7373 /* Copy the mailbox extension data */
7374 if (pmbox->out_ext_byte_len && pmbox->context2) {
7375 lpfc_sli_pcimem_bcopy(phba->mbox_ext,
7376 pmbox->context2,
7377 pmbox->out_ext_byte_len);
7378 }
dea3101e
JB
7379 } else {
7380 /* First copy command data */
bf07bdea 7381 lpfc_memcpy_from_slim(mbx, phba->MBslimaddr,
2ea259ee 7382 MAILBOX_CMD_SIZE);
7a470277
JS
7383 /* Copy the mailbox extension data */
7384 if (pmbox->out_ext_byte_len && pmbox->context2) {
7385 lpfc_memcpy_from_slim(pmbox->context2,
7386 phba->MBslimaddr +
7387 MAILBOX_HBA_EXT_OFFSET,
7388 pmbox->out_ext_byte_len);
dea3101e
JB
7389 }
7390 }
7391
7392 writel(HA_MBATT, phba->HAregaddr);
7393 readl(phba->HAregaddr); /* flush */
7394
7395 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
bf07bdea 7396 status = mbx->mbxStatus;
dea3101e
JB
7397 }
7398
2e0fef85
JS
7399 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
7400 return status;
58da1ffb
JS
7401
7402out_not_finished:
7403 if (processing_queue) {
da0436e9 7404 pmbox->u.mb.mbxStatus = MBX_NOT_FINISHED;
58da1ffb
JS
7405 lpfc_mbox_cmpl_put(phba, pmbox);
7406 }
7407 return MBX_NOT_FINISHED;
dea3101e
JB
7408}
7409
f1126688
JS
7410/**
7411 * lpfc_sli4_async_mbox_block - Block posting SLI4 asynchronous mailbox command
7412 * @phba: Pointer to HBA context object.
7413 *
7414 * The function blocks the posting of SLI4 asynchronous mailbox commands from
7415 * the driver internal pending mailbox queue. It will then try to wait out the
7416 * possible outstanding mailbox command before return.
7417 *
7418 * Returns:
7419 * 0 - the outstanding mailbox command completed; otherwise, the wait for
7420 * the outstanding mailbox command timed out.
7421 **/
7422static int
7423lpfc_sli4_async_mbox_block(struct lpfc_hba *phba)
7424{
7425 struct lpfc_sli *psli = &phba->sli;
f1126688 7426 int rc = 0;
a183a15f 7427 unsigned long timeout = 0;
f1126688
JS
7428
7429 /* Mark the asynchronous mailbox command posting as blocked */
7430 spin_lock_irq(&phba->hbalock);
7431 psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
f1126688
JS
7432 /* Determine how long we might wait for the active mailbox
7433 * command to be gracefully completed by firmware.
7434 */
a183a15f
JS
7435 if (phba->sli.mbox_active)
7436 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
7437 phba->sli.mbox_active) *
7438 1000) + jiffies;
7439 spin_unlock_irq(&phba->hbalock);
7440
e8d3c3b1
JS
7441 /* Make sure the mailbox is really active */
7442 if (timeout)
7443 lpfc_sli4_process_missed_mbox_completions(phba);
7444
f1126688
JS
7445 /* Wait for the outstnading mailbox command to complete */
7446 while (phba->sli.mbox_active) {
7447 /* Check active mailbox complete status every 2ms */
7448 msleep(2);
7449 if (time_after(jiffies, timeout)) {
7450 /* Timeout, marked the outstanding cmd not complete */
7451 rc = 1;
7452 break;
7453 }
7454 }
7455
7456 /* Can not cleanly block async mailbox command, fails it */
7457 if (rc) {
7458 spin_lock_irq(&phba->hbalock);
7459 psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
7460 spin_unlock_irq(&phba->hbalock);
7461 }
7462 return rc;
7463}
7464
7465/**
7466 * lpfc_sli4_async_mbox_unblock - Block posting SLI4 async mailbox command
7467 * @phba: Pointer to HBA context object.
7468 *
7469 * The function unblocks and resume posting of SLI4 asynchronous mailbox
7470 * commands from the driver internal pending mailbox queue. It makes sure
7471 * that there is no outstanding mailbox command before resuming posting
7472 * asynchronous mailbox commands. If, for any reason, there is outstanding
7473 * mailbox command, it will try to wait it out before resuming asynchronous
7474 * mailbox command posting.
7475 **/
7476static void
7477lpfc_sli4_async_mbox_unblock(struct lpfc_hba *phba)
7478{
7479 struct lpfc_sli *psli = &phba->sli;
7480
7481 spin_lock_irq(&phba->hbalock);
7482 if (!(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
7483 /* Asynchronous mailbox posting is not blocked, do nothing */
7484 spin_unlock_irq(&phba->hbalock);
7485 return;
7486 }
7487
7488 /* Outstanding synchronous mailbox command is guaranteed to be done,
7489 * successful or timeout, after timing-out the outstanding mailbox
7490 * command shall always be removed, so just unblock posting async
7491 * mailbox command and resume
7492 */
7493 psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
7494 spin_unlock_irq(&phba->hbalock);
7495
7496 /* wake up worker thread to post asynchronlous mailbox command */
7497 lpfc_worker_wake_up(phba);
7498}
7499
2d843edc
JS
7500/**
7501 * lpfc_sli4_wait_bmbx_ready - Wait for bootstrap mailbox register ready
7502 * @phba: Pointer to HBA context object.
7503 * @mboxq: Pointer to mailbox object.
7504 *
7505 * The function waits for the bootstrap mailbox register ready bit from
7506 * port for twice the regular mailbox command timeout value.
7507 *
7508 * 0 - no timeout on waiting for bootstrap mailbox register ready.
7509 * MBXERR_ERROR - wait for bootstrap mailbox register timed out.
7510 **/
7511static int
7512lpfc_sli4_wait_bmbx_ready(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
7513{
7514 uint32_t db_ready;
7515 unsigned long timeout;
7516 struct lpfc_register bmbx_reg;
7517
7518 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, mboxq)
7519 * 1000) + jiffies;
7520
7521 do {
7522 bmbx_reg.word0 = readl(phba->sli4_hba.BMBXregaddr);
7523 db_ready = bf_get(lpfc_bmbx_rdy, &bmbx_reg);
7524 if (!db_ready)
7525 msleep(2);
7526
7527 if (time_after(jiffies, timeout))
7528 return MBXERR_ERROR;
7529 } while (!db_ready);
7530
7531 return 0;
7532}
7533
da0436e9
JS
7534/**
7535 * lpfc_sli4_post_sync_mbox - Post an SLI4 mailbox to the bootstrap mailbox
7536 * @phba: Pointer to HBA context object.
7537 * @mboxq: Pointer to mailbox object.
7538 *
7539 * The function posts a mailbox to the port. The mailbox is expected
7540 * to be comletely filled in and ready for the port to operate on it.
7541 * This routine executes a synchronous completion operation on the
7542 * mailbox by polling for its completion.
7543 *
7544 * The caller must not be holding any locks when calling this routine.
7545 *
7546 * Returns:
7547 * MBX_SUCCESS - mailbox posted successfully
7548 * Any of the MBX error values.
7549 **/
7550static int
7551lpfc_sli4_post_sync_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
7552{
7553 int rc = MBX_SUCCESS;
7554 unsigned long iflag;
da0436e9
JS
7555 uint32_t mcqe_status;
7556 uint32_t mbx_cmnd;
da0436e9
JS
7557 struct lpfc_sli *psli = &phba->sli;
7558 struct lpfc_mqe *mb = &mboxq->u.mqe;
7559 struct lpfc_bmbx_create *mbox_rgn;
7560 struct dma_address *dma_address;
da0436e9
JS
7561
7562 /*
7563 * Only one mailbox can be active to the bootstrap mailbox region
7564 * at a time and there is no queueing provided.
7565 */
7566 spin_lock_irqsave(&phba->hbalock, iflag);
7567 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
7568 spin_unlock_irqrestore(&phba->hbalock, iflag);
7569 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
a183a15f 7570 "(%d):2532 Mailbox command x%x (x%x/x%x) "
da0436e9
JS
7571 "cannot issue Data: x%x x%x\n",
7572 mboxq->vport ? mboxq->vport->vpi : 0,
7573 mboxq->u.mb.mbxCommand,
a183a15f
JS
7574 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7575 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
da0436e9
JS
7576 psli->sli_flag, MBX_POLL);
7577 return MBXERR_ERROR;
7578 }
7579 /* The server grabs the token and owns it until release */
7580 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
7581 phba->sli.mbox_active = mboxq;
7582 spin_unlock_irqrestore(&phba->hbalock, iflag);
7583
2d843edc
JS
7584 /* wait for bootstrap mbox register for readyness */
7585 rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
7586 if (rc)
7587 goto exit;
7588
da0436e9
JS
7589 /*
7590 * Initialize the bootstrap memory region to avoid stale data areas
7591 * in the mailbox post. Then copy the caller's mailbox contents to
7592 * the bmbx mailbox region.
7593 */
7594 mbx_cmnd = bf_get(lpfc_mqe_command, mb);
7595 memset(phba->sli4_hba.bmbx.avirt, 0, sizeof(struct lpfc_bmbx_create));
7596 lpfc_sli_pcimem_bcopy(mb, phba->sli4_hba.bmbx.avirt,
7597 sizeof(struct lpfc_mqe));
7598
7599 /* Post the high mailbox dma address to the port and wait for ready. */
7600 dma_address = &phba->sli4_hba.bmbx.dma_address;
7601 writel(dma_address->addr_hi, phba->sli4_hba.BMBXregaddr);
7602
2d843edc
JS
7603 /* wait for bootstrap mbox register for hi-address write done */
7604 rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
7605 if (rc)
7606 goto exit;
da0436e9
JS
7607
7608 /* Post the low mailbox dma address to the port. */
7609 writel(dma_address->addr_lo, phba->sli4_hba.BMBXregaddr);
da0436e9 7610
2d843edc
JS
7611 /* wait for bootstrap mbox register for low address write done */
7612 rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
7613 if (rc)
7614 goto exit;
da0436e9
JS
7615
7616 /*
7617 * Read the CQ to ensure the mailbox has completed.
7618 * If so, update the mailbox status so that the upper layers
7619 * can complete the request normally.
7620 */
7621 lpfc_sli_pcimem_bcopy(phba->sli4_hba.bmbx.avirt, mb,
7622 sizeof(struct lpfc_mqe));
7623 mbox_rgn = (struct lpfc_bmbx_create *) phba->sli4_hba.bmbx.avirt;
7624 lpfc_sli_pcimem_bcopy(&mbox_rgn->mcqe, &mboxq->mcqe,
7625 sizeof(struct lpfc_mcqe));
7626 mcqe_status = bf_get(lpfc_mcqe_status, &mbox_rgn->mcqe);
0558056c
JS
7627 /*
7628 * When the CQE status indicates a failure and the mailbox status
7629 * indicates success then copy the CQE status into the mailbox status
7630 * (and prefix it with x4000).
7631 */
da0436e9 7632 if (mcqe_status != MB_CQE_STATUS_SUCCESS) {
0558056c
JS
7633 if (bf_get(lpfc_mqe_status, mb) == MBX_SUCCESS)
7634 bf_set(lpfc_mqe_status, mb,
7635 (LPFC_MBX_ERROR_RANGE | mcqe_status));
da0436e9 7636 rc = MBXERR_ERROR;
d7c47992
JS
7637 } else
7638 lpfc_sli4_swap_str(phba, mboxq);
da0436e9
JS
7639
7640 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
a183a15f 7641 "(%d):0356 Mailbox cmd x%x (x%x/x%x) Status x%x "
da0436e9
JS
7642 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x"
7643 " x%x x%x CQ: x%x x%x x%x x%x\n",
a183a15f
JS
7644 mboxq->vport ? mboxq->vport->vpi : 0, mbx_cmnd,
7645 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7646 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
da0436e9
JS
7647 bf_get(lpfc_mqe_status, mb),
7648 mb->un.mb_words[0], mb->un.mb_words[1],
7649 mb->un.mb_words[2], mb->un.mb_words[3],
7650 mb->un.mb_words[4], mb->un.mb_words[5],
7651 mb->un.mb_words[6], mb->un.mb_words[7],
7652 mb->un.mb_words[8], mb->un.mb_words[9],
7653 mb->un.mb_words[10], mb->un.mb_words[11],
7654 mb->un.mb_words[12], mboxq->mcqe.word0,
7655 mboxq->mcqe.mcqe_tag0, mboxq->mcqe.mcqe_tag1,
7656 mboxq->mcqe.trailer);
7657exit:
7658 /* We are holding the token, no needed for lock when release */
7659 spin_lock_irqsave(&phba->hbalock, iflag);
7660 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7661 phba->sli.mbox_active = NULL;
7662 spin_unlock_irqrestore(&phba->hbalock, iflag);
7663 return rc;
7664}
7665
7666/**
7667 * lpfc_sli_issue_mbox_s4 - Issue an SLI4 mailbox command to firmware
7668 * @phba: Pointer to HBA context object.
7669 * @pmbox: Pointer to mailbox object.
7670 * @flag: Flag indicating how the mailbox need to be processed.
7671 *
7672 * This function is called by discovery code and HBA management code to submit
7673 * a mailbox command to firmware with SLI-4 interface spec.
7674 *
7675 * Return codes the caller owns the mailbox command after the return of the
7676 * function.
7677 **/
7678static int
7679lpfc_sli_issue_mbox_s4(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
7680 uint32_t flag)
7681{
7682 struct lpfc_sli *psli = &phba->sli;
7683 unsigned long iflags;
7684 int rc;
7685
b76f2dc9
JS
7686 /* dump from issue mailbox command if setup */
7687 lpfc_idiag_mbxacc_dump_issue_mbox(phba, &mboxq->u.mb);
7688
8fa38513
JS
7689 rc = lpfc_mbox_dev_check(phba);
7690 if (unlikely(rc)) {
7691 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
a183a15f 7692 "(%d):2544 Mailbox command x%x (x%x/x%x) "
8fa38513
JS
7693 "cannot issue Data: x%x x%x\n",
7694 mboxq->vport ? mboxq->vport->vpi : 0,
7695 mboxq->u.mb.mbxCommand,
a183a15f
JS
7696 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7697 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
8fa38513
JS
7698 psli->sli_flag, flag);
7699 goto out_not_finished;
7700 }
7701
da0436e9
JS
7702 /* Detect polling mode and jump to a handler */
7703 if (!phba->sli4_hba.intr_enable) {
7704 if (flag == MBX_POLL)
7705 rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
7706 else
7707 rc = -EIO;
7708 if (rc != MBX_SUCCESS)
0558056c 7709 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
da0436e9 7710 "(%d):2541 Mailbox command x%x "
cc459f19
JS
7711 "(x%x/x%x) failure: "
7712 "mqe_sta: x%x mcqe_sta: x%x/x%x "
7713 "Data: x%x x%x\n,",
da0436e9
JS
7714 mboxq->vport ? mboxq->vport->vpi : 0,
7715 mboxq->u.mb.mbxCommand,
a183a15f
JS
7716 lpfc_sli_config_mbox_subsys_get(phba,
7717 mboxq),
7718 lpfc_sli_config_mbox_opcode_get(phba,
7719 mboxq),
cc459f19
JS
7720 bf_get(lpfc_mqe_status, &mboxq->u.mqe),
7721 bf_get(lpfc_mcqe_status, &mboxq->mcqe),
7722 bf_get(lpfc_mcqe_ext_status,
7723 &mboxq->mcqe),
da0436e9
JS
7724 psli->sli_flag, flag);
7725 return rc;
7726 } else if (flag == MBX_POLL) {
f1126688
JS
7727 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
7728 "(%d):2542 Try to issue mailbox command "
a183a15f 7729 "x%x (x%x/x%x) synchronously ahead of async"
f1126688 7730 "mailbox command queue: x%x x%x\n",
da0436e9
JS
7731 mboxq->vport ? mboxq->vport->vpi : 0,
7732 mboxq->u.mb.mbxCommand,
a183a15f
JS
7733 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7734 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
da0436e9 7735 psli->sli_flag, flag);
f1126688
JS
7736 /* Try to block the asynchronous mailbox posting */
7737 rc = lpfc_sli4_async_mbox_block(phba);
7738 if (!rc) {
7739 /* Successfully blocked, now issue sync mbox cmd */
7740 rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
7741 if (rc != MBX_SUCCESS)
cc459f19 7742 lpfc_printf_log(phba, KERN_WARNING,
a183a15f 7743 LOG_MBOX | LOG_SLI,
cc459f19
JS
7744 "(%d):2597 Sync Mailbox command "
7745 "x%x (x%x/x%x) failure: "
7746 "mqe_sta: x%x mcqe_sta: x%x/x%x "
7747 "Data: x%x x%x\n,",
7748 mboxq->vport ? mboxq->vport->vpi : 0,
a183a15f
JS
7749 mboxq->u.mb.mbxCommand,
7750 lpfc_sli_config_mbox_subsys_get(phba,
7751 mboxq),
7752 lpfc_sli_config_mbox_opcode_get(phba,
7753 mboxq),
cc459f19
JS
7754 bf_get(lpfc_mqe_status, &mboxq->u.mqe),
7755 bf_get(lpfc_mcqe_status, &mboxq->mcqe),
7756 bf_get(lpfc_mcqe_ext_status,
7757 &mboxq->mcqe),
a183a15f 7758 psli->sli_flag, flag);
f1126688
JS
7759 /* Unblock the async mailbox posting afterward */
7760 lpfc_sli4_async_mbox_unblock(phba);
7761 }
7762 return rc;
da0436e9
JS
7763 }
7764
7765 /* Now, interrupt mode asynchrous mailbox command */
7766 rc = lpfc_mbox_cmd_check(phba, mboxq);
7767 if (rc) {
7768 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
a183a15f 7769 "(%d):2543 Mailbox command x%x (x%x/x%x) "
da0436e9
JS
7770 "cannot issue Data: x%x x%x\n",
7771 mboxq->vport ? mboxq->vport->vpi : 0,
7772 mboxq->u.mb.mbxCommand,
a183a15f
JS
7773 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7774 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
da0436e9
JS
7775 psli->sli_flag, flag);
7776 goto out_not_finished;
7777 }
da0436e9
JS
7778
7779 /* Put the mailbox command to the driver internal FIFO */
7780 psli->slistat.mbox_busy++;
7781 spin_lock_irqsave(&phba->hbalock, iflags);
7782 lpfc_mbox_put(phba, mboxq);
7783 spin_unlock_irqrestore(&phba->hbalock, iflags);
7784 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
7785 "(%d):0354 Mbox cmd issue - Enqueue Data: "
a183a15f 7786 "x%x (x%x/x%x) x%x x%x x%x\n",
da0436e9
JS
7787 mboxq->vport ? mboxq->vport->vpi : 0xffffff,
7788 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
a183a15f
JS
7789 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7790 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
da0436e9
JS
7791 phba->pport->port_state,
7792 psli->sli_flag, MBX_NOWAIT);
7793 /* Wake up worker thread to transport mailbox command from head */
7794 lpfc_worker_wake_up(phba);
7795
7796 return MBX_BUSY;
7797
7798out_not_finished:
7799 return MBX_NOT_FINISHED;
7800}
7801
7802/**
7803 * lpfc_sli4_post_async_mbox - Post an SLI4 mailbox command to device
7804 * @phba: Pointer to HBA context object.
7805 *
7806 * This function is called by worker thread to send a mailbox command to
7807 * SLI4 HBA firmware.
7808 *
7809 **/
7810int
7811lpfc_sli4_post_async_mbox(struct lpfc_hba *phba)
7812{
7813 struct lpfc_sli *psli = &phba->sli;
7814 LPFC_MBOXQ_t *mboxq;
7815 int rc = MBX_SUCCESS;
7816 unsigned long iflags;
7817 struct lpfc_mqe *mqe;
7818 uint32_t mbx_cmnd;
7819
7820 /* Check interrupt mode before post async mailbox command */
7821 if (unlikely(!phba->sli4_hba.intr_enable))
7822 return MBX_NOT_FINISHED;
7823
7824 /* Check for mailbox command service token */
7825 spin_lock_irqsave(&phba->hbalock, iflags);
7826 if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
7827 spin_unlock_irqrestore(&phba->hbalock, iflags);
7828 return MBX_NOT_FINISHED;
7829 }
7830 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
7831 spin_unlock_irqrestore(&phba->hbalock, iflags);
7832 return MBX_NOT_FINISHED;
7833 }
7834 if (unlikely(phba->sli.mbox_active)) {
7835 spin_unlock_irqrestore(&phba->hbalock, iflags);
7836 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7837 "0384 There is pending active mailbox cmd\n");
7838 return MBX_NOT_FINISHED;
7839 }
7840 /* Take the mailbox command service token */
7841 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
7842
7843 /* Get the next mailbox command from head of queue */
7844 mboxq = lpfc_mbox_get(phba);
7845
7846 /* If no more mailbox command waiting for post, we're done */
7847 if (!mboxq) {
7848 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7849 spin_unlock_irqrestore(&phba->hbalock, iflags);
7850 return MBX_SUCCESS;
7851 }
7852 phba->sli.mbox_active = mboxq;
7853 spin_unlock_irqrestore(&phba->hbalock, iflags);
7854
7855 /* Check device readiness for posting mailbox command */
7856 rc = lpfc_mbox_dev_check(phba);
7857 if (unlikely(rc))
7858 /* Driver clean routine will clean up pending mailbox */
7859 goto out_not_finished;
7860
7861 /* Prepare the mbox command to be posted */
7862 mqe = &mboxq->u.mqe;
7863 mbx_cmnd = bf_get(lpfc_mqe_command, mqe);
7864
7865 /* Start timer for the mbox_tmo and log some mailbox post messages */
7866 mod_timer(&psli->mbox_tmo, (jiffies +
256ec0d0 7867 msecs_to_jiffies(1000 * lpfc_mbox_tmo_val(phba, mboxq))));
da0436e9
JS
7868
7869 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
a183a15f 7870 "(%d):0355 Mailbox cmd x%x (x%x/x%x) issue Data: "
da0436e9
JS
7871 "x%x x%x\n",
7872 mboxq->vport ? mboxq->vport->vpi : 0, mbx_cmnd,
a183a15f
JS
7873 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7874 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
da0436e9
JS
7875 phba->pport->port_state, psli->sli_flag);
7876
7877 if (mbx_cmnd != MBX_HEARTBEAT) {
7878 if (mboxq->vport) {
7879 lpfc_debugfs_disc_trc(mboxq->vport,
7880 LPFC_DISC_TRC_MBOX_VPORT,
7881 "MBOX Send vport: cmd:x%x mb:x%x x%x",
7882 mbx_cmnd, mqe->un.mb_words[0],
7883 mqe->un.mb_words[1]);
7884 } else {
7885 lpfc_debugfs_disc_trc(phba->pport,
7886 LPFC_DISC_TRC_MBOX,
7887 "MBOX Send: cmd:x%x mb:x%x x%x",
7888 mbx_cmnd, mqe->un.mb_words[0],
7889 mqe->un.mb_words[1]);
7890 }
7891 }
7892 psli->slistat.mbox_cmd++;
7893
7894 /* Post the mailbox command to the port */
7895 rc = lpfc_sli4_mq_put(phba->sli4_hba.mbx_wq, mqe);
7896 if (rc != MBX_SUCCESS) {
7897 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
a183a15f 7898 "(%d):2533 Mailbox command x%x (x%x/x%x) "
da0436e9
JS
7899 "cannot issue Data: x%x x%x\n",
7900 mboxq->vport ? mboxq->vport->vpi : 0,
7901 mboxq->u.mb.mbxCommand,
a183a15f
JS
7902 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7903 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
da0436e9
JS
7904 psli->sli_flag, MBX_NOWAIT);
7905 goto out_not_finished;
7906 }
7907
7908 return rc;
7909
7910out_not_finished:
7911 spin_lock_irqsave(&phba->hbalock, iflags);
d7069f09
JS
7912 if (phba->sli.mbox_active) {
7913 mboxq->u.mb.mbxStatus = MBX_NOT_FINISHED;
7914 __lpfc_mbox_cmpl_put(phba, mboxq);
7915 /* Release the token */
7916 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7917 phba->sli.mbox_active = NULL;
7918 }
da0436e9
JS
7919 spin_unlock_irqrestore(&phba->hbalock, iflags);
7920
7921 return MBX_NOT_FINISHED;
7922}
7923
7924/**
7925 * lpfc_sli_issue_mbox - Wrapper func for issuing mailbox command
7926 * @phba: Pointer to HBA context object.
7927 * @pmbox: Pointer to mailbox object.
7928 * @flag: Flag indicating how the mailbox need to be processed.
7929 *
7930 * This routine wraps the actual SLI3 or SLI4 mailbox issuing routine from
7931 * the API jump table function pointer from the lpfc_hba struct.
7932 *
7933 * Return codes the caller owns the mailbox command after the return of the
7934 * function.
7935 **/
7936int
7937lpfc_sli_issue_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox, uint32_t flag)
7938{
7939 return phba->lpfc_sli_issue_mbox(phba, pmbox, flag);
7940}
7941
7942/**
25985edc 7943 * lpfc_mbox_api_table_setup - Set up mbox api function jump table
da0436e9
JS
7944 * @phba: The hba struct for which this call is being executed.
7945 * @dev_grp: The HBA PCI-Device group number.
7946 *
7947 * This routine sets up the mbox interface API function jump table in @phba
7948 * struct.
7949 * Returns: 0 - success, -ENODEV - failure.
7950 **/
7951int
7952lpfc_mbox_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
7953{
7954
7955 switch (dev_grp) {
7956 case LPFC_PCI_DEV_LP:
7957 phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s3;
7958 phba->lpfc_sli_handle_slow_ring_event =
7959 lpfc_sli_handle_slow_ring_event_s3;
7960 phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s3;
7961 phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s3;
7962 phba->lpfc_sli_brdready = lpfc_sli_brdready_s3;
7963 break;
7964 case LPFC_PCI_DEV_OC:
7965 phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s4;
7966 phba->lpfc_sli_handle_slow_ring_event =
7967 lpfc_sli_handle_slow_ring_event_s4;
7968 phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s4;
7969 phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s4;
7970 phba->lpfc_sli_brdready = lpfc_sli_brdready_s4;
7971 break;
7972 default:
7973 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7974 "1420 Invalid HBA PCI-device group: 0x%x\n",
7975 dev_grp);
7976 return -ENODEV;
7977 break;
7978 }
7979 return 0;
7980}
7981
e59058c4 7982/**
3621a710 7983 * __lpfc_sli_ringtx_put - Add an iocb to the txq
e59058c4
JS
7984 * @phba: Pointer to HBA context object.
7985 * @pring: Pointer to driver SLI ring object.
7986 * @piocb: Pointer to address of newly added command iocb.
7987 *
7988 * This function is called with hbalock held to add a command
7989 * iocb to the txq when SLI layer cannot submit the command iocb
7990 * to the ring.
7991 **/
2a9bf3d0 7992void
92d7f7b0 7993__lpfc_sli_ringtx_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2e0fef85 7994 struct lpfc_iocbq *piocb)
dea3101e 7995{
1c2ba475 7996 lockdep_assert_held(&phba->hbalock);
dea3101e
JB
7997 /* Insert the caller's iocb in the txq tail for later processing. */
7998 list_add_tail(&piocb->list, &pring->txq);
dea3101e
JB
7999}
8000
e59058c4 8001/**
3621a710 8002 * lpfc_sli_next_iocb - Get the next iocb in the txq
e59058c4
JS
8003 * @phba: Pointer to HBA context object.
8004 * @pring: Pointer to driver SLI ring object.
8005 * @piocb: Pointer to address of newly added command iocb.
8006 *
8007 * This function is called with hbalock held before a new
8008 * iocb is submitted to the firmware. This function checks
8009 * txq to flush the iocbs in txq to Firmware before
8010 * submitting new iocbs to the Firmware.
8011 * If there are iocbs in the txq which need to be submitted
8012 * to firmware, lpfc_sli_next_iocb returns the first element
8013 * of the txq after dequeuing it from txq.
8014 * If there is no iocb in the txq then the function will return
8015 * *piocb and *piocb is set to NULL. Caller needs to check
8016 * *piocb to find if there are more commands in the txq.
8017 **/
dea3101e
JB
8018static struct lpfc_iocbq *
8019lpfc_sli_next_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2e0fef85 8020 struct lpfc_iocbq **piocb)
dea3101e
JB
8021{
8022 struct lpfc_iocbq * nextiocb;
8023
1c2ba475
JT
8024 lockdep_assert_held(&phba->hbalock);
8025
dea3101e
JB
8026 nextiocb = lpfc_sli_ringtx_get(phba, pring);
8027 if (!nextiocb) {
8028 nextiocb = *piocb;
8029 *piocb = NULL;
8030 }
8031
8032 return nextiocb;
8033}
8034
e59058c4 8035/**
3772a991 8036 * __lpfc_sli_issue_iocb_s3 - SLI3 device lockless ver of lpfc_sli_issue_iocb
e59058c4 8037 * @phba: Pointer to HBA context object.
3772a991 8038 * @ring_number: SLI ring number to issue iocb on.
e59058c4
JS
8039 * @piocb: Pointer to command iocb.
8040 * @flag: Flag indicating if this command can be put into txq.
8041 *
3772a991
JS
8042 * __lpfc_sli_issue_iocb_s3 is used by other functions in the driver to issue
8043 * an iocb command to an HBA with SLI-3 interface spec. If the PCI slot is
8044 * recovering from error state, if HBA is resetting or if LPFC_STOP_IOCB_EVENT
8045 * flag is turned on, the function returns IOCB_ERROR. When the link is down,
8046 * this function allows only iocbs for posting buffers. This function finds
8047 * next available slot in the command ring and posts the command to the
8048 * available slot and writes the port attention register to request HBA start
8049 * processing new iocb. If there is no slot available in the ring and
8050 * flag & SLI_IOCB_RET_IOCB is set, the new iocb is added to the txq, otherwise
8051 * the function returns IOCB_BUSY.
e59058c4 8052 *
3772a991
JS
8053 * This function is called with hbalock held. The function will return success
8054 * after it successfully submit the iocb to firmware or after adding to the
8055 * txq.
e59058c4 8056 **/
98c9ea5c 8057static int
3772a991 8058__lpfc_sli_issue_iocb_s3(struct lpfc_hba *phba, uint32_t ring_number,
dea3101e
JB
8059 struct lpfc_iocbq *piocb, uint32_t flag)
8060{
8061 struct lpfc_iocbq *nextiocb;
8062 IOCB_t *iocb;
3772a991 8063 struct lpfc_sli_ring *pring = &phba->sli.ring[ring_number];
dea3101e 8064
1c2ba475
JT
8065 lockdep_assert_held(&phba->hbalock);
8066
92d7f7b0
JS
8067 if (piocb->iocb_cmpl && (!piocb->vport) &&
8068 (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
8069 (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) {
8070 lpfc_printf_log(phba, KERN_ERR,
8071 LOG_SLI | LOG_VPORT,
e8b62011 8072 "1807 IOCB x%x failed. No vport\n",
92d7f7b0
JS
8073 piocb->iocb.ulpCommand);
8074 dump_stack();
8075 return IOCB_ERROR;
8076 }
8077
8078
8d63f375
LV
8079 /* If the PCI channel is in offline state, do not post iocbs. */
8080 if (unlikely(pci_channel_offline(phba->pcidev)))
8081 return IOCB_ERROR;
8082
a257bf90
JS
8083 /* If HBA has a deferred error attention, fail the iocb. */
8084 if (unlikely(phba->hba_flag & DEFER_ERATT))
8085 return IOCB_ERROR;
8086
dea3101e
JB
8087 /*
8088 * We should never get an IOCB if we are in a < LINK_DOWN state
8089 */
2e0fef85 8090 if (unlikely(phba->link_state < LPFC_LINK_DOWN))
dea3101e
JB
8091 return IOCB_ERROR;
8092
8093 /*
8094 * Check to see if we are blocking IOCB processing because of a
0b727fea 8095 * outstanding event.
dea3101e 8096 */
0b727fea 8097 if (unlikely(pring->flag & LPFC_STOP_IOCB_EVENT))
dea3101e
JB
8098 goto iocb_busy;
8099
2e0fef85 8100 if (unlikely(phba->link_state == LPFC_LINK_DOWN)) {
dea3101e 8101 /*
2680eeaa 8102 * Only CREATE_XRI, CLOSE_XRI, and QUE_RING_BUF
dea3101e
JB
8103 * can be issued if the link is not up.
8104 */
8105 switch (piocb->iocb.ulpCommand) {
84774a4d
JS
8106 case CMD_GEN_REQUEST64_CR:
8107 case CMD_GEN_REQUEST64_CX:
8108 if (!(phba->sli.sli_flag & LPFC_MENLO_MAINT) ||
8109 (piocb->iocb.un.genreq64.w5.hcsw.Rctl !=
6a9c52cf 8110 FC_RCTL_DD_UNSOL_CMD) ||
84774a4d
JS
8111 (piocb->iocb.un.genreq64.w5.hcsw.Type !=
8112 MENLO_TRANSPORT_TYPE))
8113
8114 goto iocb_busy;
8115 break;
dea3101e
JB
8116 case CMD_QUE_RING_BUF_CN:
8117 case CMD_QUE_RING_BUF64_CN:
dea3101e
JB
8118 /*
8119 * For IOCBs, like QUE_RING_BUF, that have no rsp ring
8120 * completion, iocb_cmpl MUST be 0.
8121 */
8122 if (piocb->iocb_cmpl)
8123 piocb->iocb_cmpl = NULL;
8124 /*FALLTHROUGH*/
8125 case CMD_CREATE_XRI_CR:
2680eeaa
JS
8126 case CMD_CLOSE_XRI_CN:
8127 case CMD_CLOSE_XRI_CX:
dea3101e
JB
8128 break;
8129 default:
8130 goto iocb_busy;
8131 }
8132
8133 /*
8134 * For FCP commands, we must be in a state where we can process link
8135 * attention events.
8136 */
8137 } else if (unlikely(pring->ringno == phba->sli.fcp_ring &&
92d7f7b0 8138 !(phba->sli.sli_flag & LPFC_PROCESS_LA))) {
dea3101e 8139 goto iocb_busy;
92d7f7b0 8140 }
dea3101e 8141
dea3101e
JB
8142 while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
8143 (nextiocb = lpfc_sli_next_iocb(phba, pring, &piocb)))
8144 lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
8145
8146 if (iocb)
8147 lpfc_sli_update_ring(phba, pring);
8148 else
8149 lpfc_sli_update_full_ring(phba, pring);
8150
8151 if (!piocb)
8152 return IOCB_SUCCESS;
8153
8154 goto out_busy;
8155
8156 iocb_busy:
8157 pring->stats.iocb_cmd_delay++;
8158
8159 out_busy:
8160
8161 if (!(flag & SLI_IOCB_RET_IOCB)) {
92d7f7b0 8162 __lpfc_sli_ringtx_put(phba, pring, piocb);
dea3101e
JB
8163 return IOCB_SUCCESS;
8164 }
8165
8166 return IOCB_BUSY;
8167}
8168
3772a991 8169/**
4f774513
JS
8170 * lpfc_sli4_bpl2sgl - Convert the bpl/bde to a sgl.
8171 * @phba: Pointer to HBA context object.
8172 * @piocb: Pointer to command iocb.
8173 * @sglq: Pointer to the scatter gather queue object.
8174 *
8175 * This routine converts the bpl or bde that is in the IOCB
8176 * to a sgl list for the sli4 hardware. The physical address
8177 * of the bpl/bde is converted back to a virtual address.
8178 * If the IOCB contains a BPL then the list of BDE's is
8179 * converted to sli4_sge's. If the IOCB contains a single
8180 * BDE then it is converted to a single sli_sge.
8181 * The IOCB is still in cpu endianess so the contents of
8182 * the bpl can be used without byte swapping.
8183 *
8184 * Returns valid XRI = Success, NO_XRI = Failure.
8185**/
8186static uint16_t
8187lpfc_sli4_bpl2sgl(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq,
8188 struct lpfc_sglq *sglq)
3772a991 8189{
4f774513
JS
8190 uint16_t xritag = NO_XRI;
8191 struct ulp_bde64 *bpl = NULL;
8192 struct ulp_bde64 bde;
8193 struct sli4_sge *sgl = NULL;
1b51197d 8194 struct lpfc_dmabuf *dmabuf;
4f774513
JS
8195 IOCB_t *icmd;
8196 int numBdes = 0;
8197 int i = 0;
63e801ce
JS
8198 uint32_t offset = 0; /* accumulated offset in the sg request list */
8199 int inbound = 0; /* number of sg reply entries inbound from firmware */
3772a991 8200
4f774513
JS
8201 if (!piocbq || !sglq)
8202 return xritag;
8203
8204 sgl = (struct sli4_sge *)sglq->sgl;
8205 icmd = &piocbq->iocb;
6b5151fd
JS
8206 if (icmd->ulpCommand == CMD_XMIT_BLS_RSP64_CX)
8207 return sglq->sli4_xritag;
4f774513
JS
8208 if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
8209 numBdes = icmd->un.genreq64.bdl.bdeSize /
8210 sizeof(struct ulp_bde64);
8211 /* The addrHigh and addrLow fields within the IOCB
8212 * have not been byteswapped yet so there is no
8213 * need to swap them back.
8214 */
1b51197d
JS
8215 if (piocbq->context3)
8216 dmabuf = (struct lpfc_dmabuf *)piocbq->context3;
8217 else
8218 return xritag;
4f774513 8219
1b51197d 8220 bpl = (struct ulp_bde64 *)dmabuf->virt;
4f774513
JS
8221 if (!bpl)
8222 return xritag;
8223
8224 for (i = 0; i < numBdes; i++) {
8225 /* Should already be byte swapped. */
28baac74
JS
8226 sgl->addr_hi = bpl->addrHigh;
8227 sgl->addr_lo = bpl->addrLow;
8228
0558056c 8229 sgl->word2 = le32_to_cpu(sgl->word2);
4f774513
JS
8230 if ((i+1) == numBdes)
8231 bf_set(lpfc_sli4_sge_last, sgl, 1);
8232 else
8233 bf_set(lpfc_sli4_sge_last, sgl, 0);
28baac74
JS
8234 /* swap the size field back to the cpu so we
8235 * can assign it to the sgl.
8236 */
8237 bde.tus.w = le32_to_cpu(bpl->tus.w);
8238 sgl->sge_len = cpu_to_le32(bde.tus.f.bdeSize);
63e801ce
JS
8239 /* The offsets in the sgl need to be accumulated
8240 * separately for the request and reply lists.
8241 * The request is always first, the reply follows.
8242 */
8243 if (piocbq->iocb.ulpCommand == CMD_GEN_REQUEST64_CR) {
8244 /* add up the reply sg entries */
8245 if (bpl->tus.f.bdeFlags == BUFF_TYPE_BDE_64I)
8246 inbound++;
8247 /* first inbound? reset the offset */
8248 if (inbound == 1)
8249 offset = 0;
8250 bf_set(lpfc_sli4_sge_offset, sgl, offset);
f9bb2da1
JS
8251 bf_set(lpfc_sli4_sge_type, sgl,
8252 LPFC_SGE_TYPE_DATA);
63e801ce
JS
8253 offset += bde.tus.f.bdeSize;
8254 }
546fc854 8255 sgl->word2 = cpu_to_le32(sgl->word2);
4f774513
JS
8256 bpl++;
8257 sgl++;
8258 }
8259 } else if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BDE_64) {
8260 /* The addrHigh and addrLow fields of the BDE have not
8261 * been byteswapped yet so they need to be swapped
8262 * before putting them in the sgl.
8263 */
8264 sgl->addr_hi =
8265 cpu_to_le32(icmd->un.genreq64.bdl.addrHigh);
8266 sgl->addr_lo =
8267 cpu_to_le32(icmd->un.genreq64.bdl.addrLow);
0558056c 8268 sgl->word2 = le32_to_cpu(sgl->word2);
4f774513
JS
8269 bf_set(lpfc_sli4_sge_last, sgl, 1);
8270 sgl->word2 = cpu_to_le32(sgl->word2);
28baac74
JS
8271 sgl->sge_len =
8272 cpu_to_le32(icmd->un.genreq64.bdl.bdeSize);
4f774513
JS
8273 }
8274 return sglq->sli4_xritag;
3772a991 8275}
92d7f7b0 8276
e59058c4 8277/**
4f774513 8278 * lpfc_sli_iocb2wqe - Convert the IOCB to a work queue entry.
e59058c4 8279 * @phba: Pointer to HBA context object.
4f774513
JS
8280 * @piocb: Pointer to command iocb.
8281 * @wqe: Pointer to the work queue entry.
e59058c4 8282 *
4f774513
JS
8283 * This routine converts the iocb command to its Work Queue Entry
8284 * equivalent. The wqe pointer should not have any fields set when
8285 * this routine is called because it will memcpy over them.
8286 * This routine does not set the CQ_ID or the WQEC bits in the
8287 * wqe.
e59058c4 8288 *
4f774513 8289 * Returns: 0 = Success, IOCB_ERROR = Failure.
e59058c4 8290 **/
cf5bf97e 8291static int
4f774513
JS
8292lpfc_sli4_iocb2wqe(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq,
8293 union lpfc_wqe *wqe)
cf5bf97e 8294{
5ffc266e 8295 uint32_t xmit_len = 0, total_len = 0;
4f774513
JS
8296 uint8_t ct = 0;
8297 uint32_t fip;
8298 uint32_t abort_tag;
8299 uint8_t command_type = ELS_COMMAND_NON_FIP;
8300 uint8_t cmnd;
8301 uint16_t xritag;
dcf2a4e0
JS
8302 uint16_t abrt_iotag;
8303 struct lpfc_iocbq *abrtiocbq;
4f774513 8304 struct ulp_bde64 *bpl = NULL;
f0d9bccc 8305 uint32_t els_id = LPFC_ELS_ID_DEFAULT;
5ffc266e
JS
8306 int numBdes, i;
8307 struct ulp_bde64 bde;
c31098ce 8308 struct lpfc_nodelist *ndlp;
ff78d8f9 8309 uint32_t *pcmd;
1b51197d 8310 uint32_t if_type;
4f774513 8311
45ed1190 8312 fip = phba->hba_flag & HBA_FIP_SUPPORT;
4f774513 8313 /* The fcp commands will set command type */
0c287589 8314 if (iocbq->iocb_flag & LPFC_IO_FCP)
4f774513 8315 command_type = FCP_COMMAND;
c868595d 8316 else if (fip && (iocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK))
0c287589
JS
8317 command_type = ELS_COMMAND_FIP;
8318 else
8319 command_type = ELS_COMMAND_NON_FIP;
8320
b5c53958
JS
8321 if (phba->fcp_embed_io)
8322 memset(wqe, 0, sizeof(union lpfc_wqe128));
4f774513
JS
8323 /* Some of the fields are in the right position already */
8324 memcpy(wqe, &iocbq->iocb, sizeof(union lpfc_wqe));
f0d9bccc 8325 wqe->generic.wqe_com.word7 = 0; /* The ct field has moved so reset */
28d7f3df 8326 wqe->generic.wqe_com.word10 = 0;
b5c53958
JS
8327
8328 abort_tag = (uint32_t) iocbq->iotag;
8329 xritag = iocbq->sli4_xritag;
4f774513
JS
8330 /* words0-2 bpl convert bde */
8331 if (iocbq->iocb.un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
5ffc266e
JS
8332 numBdes = iocbq->iocb.un.genreq64.bdl.bdeSize /
8333 sizeof(struct ulp_bde64);
4f774513
JS
8334 bpl = (struct ulp_bde64 *)
8335 ((struct lpfc_dmabuf *)iocbq->context3)->virt;
8336 if (!bpl)
8337 return IOCB_ERROR;
cf5bf97e 8338
4f774513
JS
8339 /* Should already be byte swapped. */
8340 wqe->generic.bde.addrHigh = le32_to_cpu(bpl->addrHigh);
8341 wqe->generic.bde.addrLow = le32_to_cpu(bpl->addrLow);
8342 /* swap the size field back to the cpu so we
8343 * can assign it to the sgl.
8344 */
8345 wqe->generic.bde.tus.w = le32_to_cpu(bpl->tus.w);
5ffc266e
JS
8346 xmit_len = wqe->generic.bde.tus.f.bdeSize;
8347 total_len = 0;
8348 for (i = 0; i < numBdes; i++) {
8349 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
8350 total_len += bde.tus.f.bdeSize;
8351 }
4f774513 8352 } else
5ffc266e 8353 xmit_len = iocbq->iocb.un.fcpi64.bdl.bdeSize;
cf5bf97e 8354
4f774513
JS
8355 iocbq->iocb.ulpIoTag = iocbq->iotag;
8356 cmnd = iocbq->iocb.ulpCommand;
a4bc3379 8357
4f774513
JS
8358 switch (iocbq->iocb.ulpCommand) {
8359 case CMD_ELS_REQUEST64_CR:
93d1379e
JS
8360 if (iocbq->iocb_flag & LPFC_IO_LIBDFC)
8361 ndlp = iocbq->context_un.ndlp;
8362 else
8363 ndlp = (struct lpfc_nodelist *)iocbq->context1;
4f774513
JS
8364 if (!iocbq->iocb.ulpLe) {
8365 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8366 "2007 Only Limited Edition cmd Format"
8367 " supported 0x%x\n",
8368 iocbq->iocb.ulpCommand);
8369 return IOCB_ERROR;
8370 }
ff78d8f9 8371
5ffc266e 8372 wqe->els_req.payload_len = xmit_len;
4f774513
JS
8373 /* Els_reguest64 has a TMO */
8374 bf_set(wqe_tmo, &wqe->els_req.wqe_com,
8375 iocbq->iocb.ulpTimeout);
8376 /* Need a VF for word 4 set the vf bit*/
8377 bf_set(els_req64_vf, &wqe->els_req, 0);
8378 /* And a VFID for word 12 */
8379 bf_set(els_req64_vfid, &wqe->els_req, 0);
4f774513 8380 ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
f0d9bccc
JS
8381 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
8382 iocbq->iocb.ulpContext);
8383 bf_set(wqe_ct, &wqe->els_req.wqe_com, ct);
8384 bf_set(wqe_pu, &wqe->els_req.wqe_com, 0);
4f774513 8385 /* CCP CCPE PV PRI in word10 were set in the memcpy */
ff78d8f9 8386 if (command_type == ELS_COMMAND_FIP)
c868595d
JS
8387 els_id = ((iocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK)
8388 >> LPFC_FIP_ELS_ID_SHIFT);
ff78d8f9
JS
8389 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
8390 iocbq->context2)->virt);
1b51197d
JS
8391 if_type = bf_get(lpfc_sli_intf_if_type,
8392 &phba->sli4_hba.sli_intf);
8393 if (if_type == LPFC_SLI_INTF_IF_TYPE_2) {
ff78d8f9 8394 if (pcmd && (*pcmd == ELS_CMD_FLOGI ||
cb69f7de 8395 *pcmd == ELS_CMD_SCR ||
6b5151fd 8396 *pcmd == ELS_CMD_FDISC ||
bdcd2b92 8397 *pcmd == ELS_CMD_LOGO ||
ff78d8f9
JS
8398 *pcmd == ELS_CMD_PLOGI)) {
8399 bf_set(els_req64_sp, &wqe->els_req, 1);
8400 bf_set(els_req64_sid, &wqe->els_req,
8401 iocbq->vport->fc_myDID);
939723a4
JS
8402 if ((*pcmd == ELS_CMD_FLOGI) &&
8403 !(phba->fc_topology ==
8404 LPFC_TOPOLOGY_LOOP))
8405 bf_set(els_req64_sid, &wqe->els_req, 0);
ff78d8f9
JS
8406 bf_set(wqe_ct, &wqe->els_req.wqe_com, 1);
8407 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
a7dd9c0f 8408 phba->vpi_ids[iocbq->vport->vpi]);
3ef6d24c 8409 } else if (pcmd && iocbq->context1) {
ff78d8f9
JS
8410 bf_set(wqe_ct, &wqe->els_req.wqe_com, 0);
8411 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
8412 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
8413 }
c868595d 8414 }
6d368e53
JS
8415 bf_set(wqe_temp_rpi, &wqe->els_req.wqe_com,
8416 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
f0d9bccc
JS
8417 bf_set(wqe_els_id, &wqe->els_req.wqe_com, els_id);
8418 bf_set(wqe_dbde, &wqe->els_req.wqe_com, 1);
8419 bf_set(wqe_iod, &wqe->els_req.wqe_com, LPFC_WQE_IOD_READ);
8420 bf_set(wqe_qosd, &wqe->els_req.wqe_com, 1);
8421 bf_set(wqe_lenloc, &wqe->els_req.wqe_com, LPFC_WQE_LENLOC_NONE);
8422 bf_set(wqe_ebde_cnt, &wqe->els_req.wqe_com, 0);
af22741c 8423 wqe->els_req.max_response_payload_len = total_len - xmit_len;
7851fe2c 8424 break;
5ffc266e 8425 case CMD_XMIT_SEQUENCE64_CX:
f0d9bccc
JS
8426 bf_set(wqe_ctxt_tag, &wqe->xmit_sequence.wqe_com,
8427 iocbq->iocb.un.ulpWord[3]);
8428 bf_set(wqe_rcvoxid, &wqe->xmit_sequence.wqe_com,
7851fe2c 8429 iocbq->iocb.unsli3.rcvsli3.ox_id);
5ffc266e
JS
8430 /* The entire sequence is transmitted for this IOCB */
8431 xmit_len = total_len;
8432 cmnd = CMD_XMIT_SEQUENCE64_CR;
1b51197d
JS
8433 if (phba->link_flag & LS_LOOPBACK_MODE)
8434 bf_set(wqe_xo, &wqe->xmit_sequence.wge_ctl, 1);
4f774513 8435 case CMD_XMIT_SEQUENCE64_CR:
f0d9bccc
JS
8436 /* word3 iocb=io_tag32 wqe=reserved */
8437 wqe->xmit_sequence.rsvd3 = 0;
4f774513
JS
8438 /* word4 relative_offset memcpy */
8439 /* word5 r_ctl/df_ctl memcpy */
f0d9bccc
JS
8440 bf_set(wqe_pu, &wqe->xmit_sequence.wqe_com, 0);
8441 bf_set(wqe_dbde, &wqe->xmit_sequence.wqe_com, 1);
8442 bf_set(wqe_iod, &wqe->xmit_sequence.wqe_com,
8443 LPFC_WQE_IOD_WRITE);
8444 bf_set(wqe_lenloc, &wqe->xmit_sequence.wqe_com,
8445 LPFC_WQE_LENLOC_WORD12);
8446 bf_set(wqe_ebde_cnt, &wqe->xmit_sequence.wqe_com, 0);
5ffc266e
JS
8447 wqe->xmit_sequence.xmit_len = xmit_len;
8448 command_type = OTHER_COMMAND;
7851fe2c 8449 break;
4f774513 8450 case CMD_XMIT_BCAST64_CN:
f0d9bccc
JS
8451 /* word3 iocb=iotag32 wqe=seq_payload_len */
8452 wqe->xmit_bcast64.seq_payload_len = xmit_len;
4f774513
JS
8453 /* word4 iocb=rsvd wqe=rsvd */
8454 /* word5 iocb=rctl/type/df_ctl wqe=rctl/type/df_ctl memcpy */
8455 /* word6 iocb=ctxt_tag/io_tag wqe=ctxt_tag/xri */
f0d9bccc 8456 bf_set(wqe_ct, &wqe->xmit_bcast64.wqe_com,
4f774513 8457 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
f0d9bccc
JS
8458 bf_set(wqe_dbde, &wqe->xmit_bcast64.wqe_com, 1);
8459 bf_set(wqe_iod, &wqe->xmit_bcast64.wqe_com, LPFC_WQE_IOD_WRITE);
8460 bf_set(wqe_lenloc, &wqe->xmit_bcast64.wqe_com,
8461 LPFC_WQE_LENLOC_WORD3);
8462 bf_set(wqe_ebde_cnt, &wqe->xmit_bcast64.wqe_com, 0);
7851fe2c 8463 break;
4f774513
JS
8464 case CMD_FCP_IWRITE64_CR:
8465 command_type = FCP_COMMAND_DATA_OUT;
f0d9bccc
JS
8466 /* word3 iocb=iotag wqe=payload_offset_len */
8467 /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
0ba4b219
JS
8468 bf_set(payload_offset_len, &wqe->fcp_iwrite,
8469 xmit_len + sizeof(struct fcp_rsp));
8470 bf_set(cmd_buff_len, &wqe->fcp_iwrite,
8471 0);
f0d9bccc
JS
8472 /* word4 iocb=parameter wqe=total_xfer_length memcpy */
8473 /* word5 iocb=initial_xfer_len wqe=initial_xfer_len memcpy */
8474 bf_set(wqe_erp, &wqe->fcp_iwrite.wqe_com,
8475 iocbq->iocb.ulpFCP2Rcvy);
8476 bf_set(wqe_lnk, &wqe->fcp_iwrite.wqe_com, iocbq->iocb.ulpXS);
8477 /* Always open the exchange */
f0d9bccc
JS
8478 bf_set(wqe_iod, &wqe->fcp_iwrite.wqe_com, LPFC_WQE_IOD_WRITE);
8479 bf_set(wqe_lenloc, &wqe->fcp_iwrite.wqe_com,
8480 LPFC_WQE_LENLOC_WORD4);
f0d9bccc 8481 bf_set(wqe_pu, &wqe->fcp_iwrite.wqe_com, iocbq->iocb.ulpPU);
acd6859b 8482 bf_set(wqe_dbde, &wqe->fcp_iwrite.wqe_com, 1);
1ba981fd
JS
8483 if (iocbq->iocb_flag & LPFC_IO_OAS) {
8484 bf_set(wqe_oas, &wqe->fcp_iwrite.wqe_com, 1);
c92c841c
JS
8485 bf_set(wqe_ccpe, &wqe->fcp_iwrite.wqe_com, 1);
8486 if (iocbq->priority) {
8487 bf_set(wqe_ccp, &wqe->fcp_iwrite.wqe_com,
8488 (iocbq->priority << 1));
8489 } else {
1ba981fd
JS
8490 bf_set(wqe_ccp, &wqe->fcp_iwrite.wqe_com,
8491 (phba->cfg_XLanePriority << 1));
8492 }
8493 }
b5c53958
JS
8494 /* Note, word 10 is already initialized to 0 */
8495
8496 if (phba->fcp_embed_io) {
8497 struct lpfc_scsi_buf *lpfc_cmd;
8498 struct sli4_sge *sgl;
8499 union lpfc_wqe128 *wqe128;
8500 struct fcp_cmnd *fcp_cmnd;
8501 uint32_t *ptr;
8502
8503 /* 128 byte wqe support here */
8504 wqe128 = (union lpfc_wqe128 *)wqe;
8505
8506 lpfc_cmd = iocbq->context1;
8507 sgl = (struct sli4_sge *)lpfc_cmd->fcp_bpl;
8508 fcp_cmnd = lpfc_cmd->fcp_cmnd;
8509
8510 /* Word 0-2 - FCP_CMND */
8511 wqe128->generic.bde.tus.f.bdeFlags =
8512 BUFF_TYPE_BDE_IMMED;
8513 wqe128->generic.bde.tus.f.bdeSize = sgl->sge_len;
8514 wqe128->generic.bde.addrHigh = 0;
8515 wqe128->generic.bde.addrLow = 88; /* Word 22 */
8516
8517 bf_set(wqe_wqes, &wqe128->fcp_iwrite.wqe_com, 1);
8518
8519 /* Word 22-29 FCP CMND Payload */
8520 ptr = &wqe128->words[22];
8521 memcpy(ptr, fcp_cmnd, sizeof(struct fcp_cmnd));
8522 }
7851fe2c 8523 break;
4f774513 8524 case CMD_FCP_IREAD64_CR:
f0d9bccc
JS
8525 /* word3 iocb=iotag wqe=payload_offset_len */
8526 /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
0ba4b219
JS
8527 bf_set(payload_offset_len, &wqe->fcp_iread,
8528 xmit_len + sizeof(struct fcp_rsp));
8529 bf_set(cmd_buff_len, &wqe->fcp_iread,
8530 0);
f0d9bccc
JS
8531 /* word4 iocb=parameter wqe=total_xfer_length memcpy */
8532 /* word5 iocb=initial_xfer_len wqe=initial_xfer_len memcpy */
8533 bf_set(wqe_erp, &wqe->fcp_iread.wqe_com,
8534 iocbq->iocb.ulpFCP2Rcvy);
8535 bf_set(wqe_lnk, &wqe->fcp_iread.wqe_com, iocbq->iocb.ulpXS);
f1126688 8536 /* Always open the exchange */
f0d9bccc
JS
8537 bf_set(wqe_iod, &wqe->fcp_iread.wqe_com, LPFC_WQE_IOD_READ);
8538 bf_set(wqe_lenloc, &wqe->fcp_iread.wqe_com,
8539 LPFC_WQE_LENLOC_WORD4);
f0d9bccc 8540 bf_set(wqe_pu, &wqe->fcp_iread.wqe_com, iocbq->iocb.ulpPU);
acd6859b 8541 bf_set(wqe_dbde, &wqe->fcp_iread.wqe_com, 1);
1ba981fd
JS
8542 if (iocbq->iocb_flag & LPFC_IO_OAS) {
8543 bf_set(wqe_oas, &wqe->fcp_iread.wqe_com, 1);
c92c841c
JS
8544 bf_set(wqe_ccpe, &wqe->fcp_iread.wqe_com, 1);
8545 if (iocbq->priority) {
8546 bf_set(wqe_ccp, &wqe->fcp_iread.wqe_com,
8547 (iocbq->priority << 1));
8548 } else {
1ba981fd
JS
8549 bf_set(wqe_ccp, &wqe->fcp_iread.wqe_com,
8550 (phba->cfg_XLanePriority << 1));
8551 }
8552 }
b5c53958
JS
8553 /* Note, word 10 is already initialized to 0 */
8554
8555 if (phba->fcp_embed_io) {
8556 struct lpfc_scsi_buf *lpfc_cmd;
8557 struct sli4_sge *sgl;
8558 union lpfc_wqe128 *wqe128;
8559 struct fcp_cmnd *fcp_cmnd;
8560 uint32_t *ptr;
8561
8562 /* 128 byte wqe support here */
8563 wqe128 = (union lpfc_wqe128 *)wqe;
8564
8565 lpfc_cmd = iocbq->context1;
8566 sgl = (struct sli4_sge *)lpfc_cmd->fcp_bpl;
8567 fcp_cmnd = lpfc_cmd->fcp_cmnd;
8568
8569 /* Word 0-2 - FCP_CMND */
8570 wqe128->generic.bde.tus.f.bdeFlags =
8571 BUFF_TYPE_BDE_IMMED;
8572 wqe128->generic.bde.tus.f.bdeSize = sgl->sge_len;
8573 wqe128->generic.bde.addrHigh = 0;
8574 wqe128->generic.bde.addrLow = 88; /* Word 22 */
8575
8576 bf_set(wqe_wqes, &wqe128->fcp_iread.wqe_com, 1);
8577
8578 /* Word 22-29 FCP CMND Payload */
8579 ptr = &wqe128->words[22];
8580 memcpy(ptr, fcp_cmnd, sizeof(struct fcp_cmnd));
8581 }
7851fe2c 8582 break;
4f774513 8583 case CMD_FCP_ICMND64_CR:
0ba4b219
JS
8584 /* word3 iocb=iotag wqe=payload_offset_len */
8585 /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
8586 bf_set(payload_offset_len, &wqe->fcp_icmd,
8587 xmit_len + sizeof(struct fcp_rsp));
8588 bf_set(cmd_buff_len, &wqe->fcp_icmd,
8589 0);
f0d9bccc 8590 /* word3 iocb=IO_TAG wqe=reserved */
f0d9bccc 8591 bf_set(wqe_pu, &wqe->fcp_icmd.wqe_com, 0);
4f774513 8592 /* Always open the exchange */
f0d9bccc
JS
8593 bf_set(wqe_dbde, &wqe->fcp_icmd.wqe_com, 1);
8594 bf_set(wqe_iod, &wqe->fcp_icmd.wqe_com, LPFC_WQE_IOD_WRITE);
8595 bf_set(wqe_qosd, &wqe->fcp_icmd.wqe_com, 1);
8596 bf_set(wqe_lenloc, &wqe->fcp_icmd.wqe_com,
8597 LPFC_WQE_LENLOC_NONE);
2a94aea4
JS
8598 bf_set(wqe_erp, &wqe->fcp_icmd.wqe_com,
8599 iocbq->iocb.ulpFCP2Rcvy);
1ba981fd
JS
8600 if (iocbq->iocb_flag & LPFC_IO_OAS) {
8601 bf_set(wqe_oas, &wqe->fcp_icmd.wqe_com, 1);
c92c841c
JS
8602 bf_set(wqe_ccpe, &wqe->fcp_icmd.wqe_com, 1);
8603 if (iocbq->priority) {
8604 bf_set(wqe_ccp, &wqe->fcp_icmd.wqe_com,
8605 (iocbq->priority << 1));
8606 } else {
1ba981fd
JS
8607 bf_set(wqe_ccp, &wqe->fcp_icmd.wqe_com,
8608 (phba->cfg_XLanePriority << 1));
8609 }
8610 }
b5c53958
JS
8611 /* Note, word 10 is already initialized to 0 */
8612
8613 if (phba->fcp_embed_io) {
8614 struct lpfc_scsi_buf *lpfc_cmd;
8615 struct sli4_sge *sgl;
8616 union lpfc_wqe128 *wqe128;
8617 struct fcp_cmnd *fcp_cmnd;
8618 uint32_t *ptr;
8619
8620 /* 128 byte wqe support here */
8621 wqe128 = (union lpfc_wqe128 *)wqe;
8622
8623 lpfc_cmd = iocbq->context1;
8624 sgl = (struct sli4_sge *)lpfc_cmd->fcp_bpl;
8625 fcp_cmnd = lpfc_cmd->fcp_cmnd;
8626
8627 /* Word 0-2 - FCP_CMND */
8628 wqe128->generic.bde.tus.f.bdeFlags =
8629 BUFF_TYPE_BDE_IMMED;
8630 wqe128->generic.bde.tus.f.bdeSize = sgl->sge_len;
8631 wqe128->generic.bde.addrHigh = 0;
8632 wqe128->generic.bde.addrLow = 88; /* Word 22 */
8633
8634 bf_set(wqe_wqes, &wqe128->fcp_icmd.wqe_com, 1);
8635
8636 /* Word 22-29 FCP CMND Payload */
8637 ptr = &wqe128->words[22];
8638 memcpy(ptr, fcp_cmnd, sizeof(struct fcp_cmnd));
8639 }
7851fe2c 8640 break;
4f774513 8641 case CMD_GEN_REQUEST64_CR:
63e801ce
JS
8642 /* For this command calculate the xmit length of the
8643 * request bde.
8644 */
8645 xmit_len = 0;
8646 numBdes = iocbq->iocb.un.genreq64.bdl.bdeSize /
8647 sizeof(struct ulp_bde64);
8648 for (i = 0; i < numBdes; i++) {
63e801ce 8649 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
546fc854
JS
8650 if (bde.tus.f.bdeFlags != BUFF_TYPE_BDE_64)
8651 break;
63e801ce
JS
8652 xmit_len += bde.tus.f.bdeSize;
8653 }
f0d9bccc
JS
8654 /* word3 iocb=IO_TAG wqe=request_payload_len */
8655 wqe->gen_req.request_payload_len = xmit_len;
8656 /* word4 iocb=parameter wqe=relative_offset memcpy */
8657 /* word5 [rctl, type, df_ctl, la] copied in memcpy */
4f774513
JS
8658 /* word6 context tag copied in memcpy */
8659 if (iocbq->iocb.ulpCt_h || iocbq->iocb.ulpCt_l) {
8660 ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
8661 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8662 "2015 Invalid CT %x command 0x%x\n",
8663 ct, iocbq->iocb.ulpCommand);
8664 return IOCB_ERROR;
8665 }
f0d9bccc
JS
8666 bf_set(wqe_ct, &wqe->gen_req.wqe_com, 0);
8667 bf_set(wqe_tmo, &wqe->gen_req.wqe_com, iocbq->iocb.ulpTimeout);
8668 bf_set(wqe_pu, &wqe->gen_req.wqe_com, iocbq->iocb.ulpPU);
8669 bf_set(wqe_dbde, &wqe->gen_req.wqe_com, 1);
8670 bf_set(wqe_iod, &wqe->gen_req.wqe_com, LPFC_WQE_IOD_READ);
8671 bf_set(wqe_qosd, &wqe->gen_req.wqe_com, 1);
8672 bf_set(wqe_lenloc, &wqe->gen_req.wqe_com, LPFC_WQE_LENLOC_NONE);
8673 bf_set(wqe_ebde_cnt, &wqe->gen_req.wqe_com, 0);
af22741c 8674 wqe->gen_req.max_response_payload_len = total_len - xmit_len;
4f774513 8675 command_type = OTHER_COMMAND;
7851fe2c 8676 break;
4f774513 8677 case CMD_XMIT_ELS_RSP64_CX:
c31098ce 8678 ndlp = (struct lpfc_nodelist *)iocbq->context1;
4f774513 8679 /* words0-2 BDE memcpy */
f0d9bccc
JS
8680 /* word3 iocb=iotag32 wqe=response_payload_len */
8681 wqe->xmit_els_rsp.response_payload_len = xmit_len;
939723a4
JS
8682 /* word4 */
8683 wqe->xmit_els_rsp.word4 = 0;
4f774513
JS
8684 /* word5 iocb=rsvd wge=did */
8685 bf_set(wqe_els_did, &wqe->xmit_els_rsp.wqe_dest,
939723a4
JS
8686 iocbq->iocb.un.xseq64.xmit_els_remoteID);
8687
8688 if_type = bf_get(lpfc_sli_intf_if_type,
8689 &phba->sli4_hba.sli_intf);
8690 if (if_type == LPFC_SLI_INTF_IF_TYPE_2) {
8691 if (iocbq->vport->fc_flag & FC_PT2PT) {
8692 bf_set(els_rsp64_sp, &wqe->xmit_els_rsp, 1);
8693 bf_set(els_rsp64_sid, &wqe->xmit_els_rsp,
8694 iocbq->vport->fc_myDID);
8695 if (iocbq->vport->fc_myDID == Fabric_DID) {
8696 bf_set(wqe_els_did,
8697 &wqe->xmit_els_rsp.wqe_dest, 0);
8698 }
8699 }
8700 }
f0d9bccc
JS
8701 bf_set(wqe_ct, &wqe->xmit_els_rsp.wqe_com,
8702 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
8703 bf_set(wqe_pu, &wqe->xmit_els_rsp.wqe_com, iocbq->iocb.ulpPU);
8704 bf_set(wqe_rcvoxid, &wqe->xmit_els_rsp.wqe_com,
7851fe2c 8705 iocbq->iocb.unsli3.rcvsli3.ox_id);
4f774513 8706 if (!iocbq->iocb.ulpCt_h && iocbq->iocb.ulpCt_l)
f0d9bccc 8707 bf_set(wqe_ctxt_tag, &wqe->xmit_els_rsp.wqe_com,
6d368e53 8708 phba->vpi_ids[iocbq->vport->vpi]);
f0d9bccc
JS
8709 bf_set(wqe_dbde, &wqe->xmit_els_rsp.wqe_com, 1);
8710 bf_set(wqe_iod, &wqe->xmit_els_rsp.wqe_com, LPFC_WQE_IOD_WRITE);
8711 bf_set(wqe_qosd, &wqe->xmit_els_rsp.wqe_com, 1);
8712 bf_set(wqe_lenloc, &wqe->xmit_els_rsp.wqe_com,
8713 LPFC_WQE_LENLOC_WORD3);
8714 bf_set(wqe_ebde_cnt, &wqe->xmit_els_rsp.wqe_com, 0);
6d368e53
JS
8715 bf_set(wqe_rsp_temp_rpi, &wqe->xmit_els_rsp,
8716 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
ff78d8f9
JS
8717 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
8718 iocbq->context2)->virt);
8719 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
939723a4
JS
8720 bf_set(els_rsp64_sp, &wqe->xmit_els_rsp, 1);
8721 bf_set(els_rsp64_sid, &wqe->xmit_els_rsp,
ff78d8f9 8722 iocbq->vport->fc_myDID);
939723a4
JS
8723 bf_set(wqe_ct, &wqe->xmit_els_rsp.wqe_com, 1);
8724 bf_set(wqe_ctxt_tag, &wqe->xmit_els_rsp.wqe_com,
ff78d8f9
JS
8725 phba->vpi_ids[phba->pport->vpi]);
8726 }
4f774513 8727 command_type = OTHER_COMMAND;
7851fe2c 8728 break;
4f774513
JS
8729 case CMD_CLOSE_XRI_CN:
8730 case CMD_ABORT_XRI_CN:
8731 case CMD_ABORT_XRI_CX:
8732 /* words 0-2 memcpy should be 0 rserved */
8733 /* port will send abts */
dcf2a4e0
JS
8734 abrt_iotag = iocbq->iocb.un.acxri.abortContextTag;
8735 if (abrt_iotag != 0 && abrt_iotag <= phba->sli.last_iotag) {
8736 abrtiocbq = phba->sli.iocbq_lookup[abrt_iotag];
8737 fip = abrtiocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK;
8738 } else
8739 fip = 0;
8740
8741 if ((iocbq->iocb.ulpCommand == CMD_CLOSE_XRI_CN) || fip)
4f774513 8742 /*
dcf2a4e0
JS
8743 * The link is down, or the command was ELS_FIP
8744 * so the fw does not need to send abts
4f774513
JS
8745 * on the wire.
8746 */
8747 bf_set(abort_cmd_ia, &wqe->abort_cmd, 1);
8748 else
8749 bf_set(abort_cmd_ia, &wqe->abort_cmd, 0);
8750 bf_set(abort_cmd_criteria, &wqe->abort_cmd, T_XRI_TAG);
f0d9bccc
JS
8751 /* word5 iocb=CONTEXT_TAG|IO_TAG wqe=reserved */
8752 wqe->abort_cmd.rsrvd5 = 0;
8753 bf_set(wqe_ct, &wqe->abort_cmd.wqe_com,
4f774513
JS
8754 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
8755 abort_tag = iocbq->iocb.un.acxri.abortIoTag;
4f774513
JS
8756 /*
8757 * The abort handler will send us CMD_ABORT_XRI_CN or
8758 * CMD_CLOSE_XRI_CN and the fw only accepts CMD_ABORT_XRI_CX
8759 */
f0d9bccc
JS
8760 bf_set(wqe_cmnd, &wqe->abort_cmd.wqe_com, CMD_ABORT_XRI_CX);
8761 bf_set(wqe_qosd, &wqe->abort_cmd.wqe_com, 1);
8762 bf_set(wqe_lenloc, &wqe->abort_cmd.wqe_com,
8763 LPFC_WQE_LENLOC_NONE);
4f774513
JS
8764 cmnd = CMD_ABORT_XRI_CX;
8765 command_type = OTHER_COMMAND;
8766 xritag = 0;
7851fe2c 8767 break;
6669f9bb 8768 case CMD_XMIT_BLS_RSP64_CX:
6b5151fd 8769 ndlp = (struct lpfc_nodelist *)iocbq->context1;
546fc854 8770 /* As BLS ABTS RSP WQE is very different from other WQEs,
6669f9bb
JS
8771 * we re-construct this WQE here based on information in
8772 * iocbq from scratch.
8773 */
8774 memset(wqe, 0, sizeof(union lpfc_wqe));
5ffc266e 8775 /* OX_ID is invariable to who sent ABTS to CT exchange */
6669f9bb 8776 bf_set(xmit_bls_rsp64_oxid, &wqe->xmit_bls_rsp,
546fc854
JS
8777 bf_get(lpfc_abts_oxid, &iocbq->iocb.un.bls_rsp));
8778 if (bf_get(lpfc_abts_orig, &iocbq->iocb.un.bls_rsp) ==
5ffc266e
JS
8779 LPFC_ABTS_UNSOL_INT) {
8780 /* ABTS sent by initiator to CT exchange, the
8781 * RX_ID field will be filled with the newly
8782 * allocated responder XRI.
8783 */
8784 bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
8785 iocbq->sli4_xritag);
8786 } else {
8787 /* ABTS sent by responder to CT exchange, the
8788 * RX_ID field will be filled with the responder
8789 * RX_ID from ABTS.
8790 */
8791 bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
546fc854 8792 bf_get(lpfc_abts_rxid, &iocbq->iocb.un.bls_rsp));
5ffc266e 8793 }
6669f9bb
JS
8794 bf_set(xmit_bls_rsp64_seqcnthi, &wqe->xmit_bls_rsp, 0xffff);
8795 bf_set(wqe_xmit_bls_pt, &wqe->xmit_bls_rsp.wqe_dest, 0x1);
6b5151fd
JS
8796
8797 /* Use CT=VPI */
8798 bf_set(wqe_els_did, &wqe->xmit_bls_rsp.wqe_dest,
8799 ndlp->nlp_DID);
8800 bf_set(xmit_bls_rsp64_temprpi, &wqe->xmit_bls_rsp,
8801 iocbq->iocb.ulpContext);
8802 bf_set(wqe_ct, &wqe->xmit_bls_rsp.wqe_com, 1);
6669f9bb 8803 bf_set(wqe_ctxt_tag, &wqe->xmit_bls_rsp.wqe_com,
6b5151fd 8804 phba->vpi_ids[phba->pport->vpi]);
f0d9bccc
JS
8805 bf_set(wqe_qosd, &wqe->xmit_bls_rsp.wqe_com, 1);
8806 bf_set(wqe_lenloc, &wqe->xmit_bls_rsp.wqe_com,
8807 LPFC_WQE_LENLOC_NONE);
6669f9bb
JS
8808 /* Overwrite the pre-set comnd type with OTHER_COMMAND */
8809 command_type = OTHER_COMMAND;
546fc854
JS
8810 if (iocbq->iocb.un.xseq64.w5.hcsw.Rctl == FC_RCTL_BA_RJT) {
8811 bf_set(xmit_bls_rsp64_rjt_vspec, &wqe->xmit_bls_rsp,
8812 bf_get(lpfc_vndr_code, &iocbq->iocb.un.bls_rsp));
8813 bf_set(xmit_bls_rsp64_rjt_expc, &wqe->xmit_bls_rsp,
8814 bf_get(lpfc_rsn_expln, &iocbq->iocb.un.bls_rsp));
8815 bf_set(xmit_bls_rsp64_rjt_rsnc, &wqe->xmit_bls_rsp,
8816 bf_get(lpfc_rsn_code, &iocbq->iocb.un.bls_rsp));
8817 }
8818
7851fe2c 8819 break;
4f774513
JS
8820 case CMD_XRI_ABORTED_CX:
8821 case CMD_CREATE_XRI_CR: /* Do we expect to use this? */
4f774513
JS
8822 case CMD_IOCB_FCP_IBIDIR64_CR: /* bidirectional xfer */
8823 case CMD_FCP_TSEND64_CX: /* Target mode send xfer-ready */
8824 case CMD_FCP_TRSP64_CX: /* Target mode rcv */
8825 case CMD_FCP_AUTO_TRSP_CX: /* Auto target rsp */
8826 default:
8827 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8828 "2014 Invalid command 0x%x\n",
8829 iocbq->iocb.ulpCommand);
8830 return IOCB_ERROR;
7851fe2c 8831 break;
4f774513 8832 }
6d368e53 8833
8012cc38
JS
8834 if (iocbq->iocb_flag & LPFC_IO_DIF_PASS)
8835 bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_PASSTHRU);
8836 else if (iocbq->iocb_flag & LPFC_IO_DIF_STRIP)
8837 bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_STRIP);
8838 else if (iocbq->iocb_flag & LPFC_IO_DIF_INSERT)
8839 bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_INSERT);
8840 iocbq->iocb_flag &= ~(LPFC_IO_DIF_PASS | LPFC_IO_DIF_STRIP |
8841 LPFC_IO_DIF_INSERT);
f0d9bccc
JS
8842 bf_set(wqe_xri_tag, &wqe->generic.wqe_com, xritag);
8843 bf_set(wqe_reqtag, &wqe->generic.wqe_com, iocbq->iotag);
8844 wqe->generic.wqe_com.abort_tag = abort_tag;
8845 bf_set(wqe_cmd_type, &wqe->generic.wqe_com, command_type);
8846 bf_set(wqe_cmnd, &wqe->generic.wqe_com, cmnd);
8847 bf_set(wqe_class, &wqe->generic.wqe_com, iocbq->iocb.ulpClass);
8848 bf_set(wqe_cqid, &wqe->generic.wqe_com, LPFC_WQE_CQ_ID_DEFAULT);
4f774513
JS
8849 return 0;
8850}
8851
8852/**
8853 * __lpfc_sli_issue_iocb_s4 - SLI4 device lockless ver of lpfc_sli_issue_iocb
8854 * @phba: Pointer to HBA context object.
8855 * @ring_number: SLI ring number to issue iocb on.
8856 * @piocb: Pointer to command iocb.
8857 * @flag: Flag indicating if this command can be put into txq.
8858 *
8859 * __lpfc_sli_issue_iocb_s4 is used by other functions in the driver to issue
8860 * an iocb command to an HBA with SLI-4 interface spec.
8861 *
8862 * This function is called with hbalock held. The function will return success
8863 * after it successfully submit the iocb to firmware or after adding to the
8864 * txq.
8865 **/
8866static int
8867__lpfc_sli_issue_iocb_s4(struct lpfc_hba *phba, uint32_t ring_number,
8868 struct lpfc_iocbq *piocb, uint32_t flag)
8869{
8870 struct lpfc_sglq *sglq;
b5c53958
JS
8871 union lpfc_wqe *wqe;
8872 union lpfc_wqe128 wqe128;
1ba981fd 8873 struct lpfc_queue *wq;
4f774513 8874 struct lpfc_sli_ring *pring = &phba->sli.ring[ring_number];
4f774513 8875
1c2ba475
JT
8876 lockdep_assert_held(&phba->hbalock);
8877
b5c53958
JS
8878 /*
8879 * The WQE can be either 64 or 128 bytes,
8880 * so allocate space on the stack assuming the largest.
8881 */
8882 wqe = (union lpfc_wqe *)&wqe128;
8883
4f774513
JS
8884 if (piocb->sli4_xritag == NO_XRI) {
8885 if (piocb->iocb.ulpCommand == CMD_ABORT_XRI_CN ||
6b5151fd 8886 piocb->iocb.ulpCommand == CMD_CLOSE_XRI_CN)
4f774513
JS
8887 sglq = NULL;
8888 else {
0e9bb8d7 8889 if (!list_empty(&pring->txq)) {
2a9bf3d0
JS
8890 if (!(flag & SLI_IOCB_RET_IOCB)) {
8891 __lpfc_sli_ringtx_put(phba,
8892 pring, piocb);
8893 return IOCB_SUCCESS;
8894 } else {
8895 return IOCB_BUSY;
8896 }
8897 } else {
6d368e53 8898 sglq = __lpfc_sli_get_sglq(phba, piocb);
2a9bf3d0
JS
8899 if (!sglq) {
8900 if (!(flag & SLI_IOCB_RET_IOCB)) {
8901 __lpfc_sli_ringtx_put(phba,
8902 pring,
8903 piocb);
8904 return IOCB_SUCCESS;
8905 } else
8906 return IOCB_BUSY;
8907 }
8908 }
4f774513 8909 }
2ea259ee 8910 } else if (piocb->iocb_flag & LPFC_IO_FCP)
6d368e53
JS
8911 /* These IO's already have an XRI and a mapped sgl. */
8912 sglq = NULL;
2ea259ee 8913 else {
6d368e53
JS
8914 /*
8915 * This is a continuation of a commandi,(CX) so this
4f774513
JS
8916 * sglq is on the active list
8917 */
edccdc17 8918 sglq = __lpfc_get_active_sglq(phba, piocb->sli4_lxritag);
4f774513
JS
8919 if (!sglq)
8920 return IOCB_ERROR;
8921 }
8922
8923 if (sglq) {
6d368e53 8924 piocb->sli4_lxritag = sglq->sli4_lxritag;
2a9bf3d0 8925 piocb->sli4_xritag = sglq->sli4_xritag;
2a9bf3d0 8926 if (NO_XRI == lpfc_sli4_bpl2sgl(phba, piocb, sglq))
4f774513
JS
8927 return IOCB_ERROR;
8928 }
8929
b5c53958 8930 if (lpfc_sli4_iocb2wqe(phba, piocb, wqe))
4f774513
JS
8931 return IOCB_ERROR;
8932
341af102 8933 if ((piocb->iocb_flag & LPFC_IO_FCP) ||
1ba981fd 8934 (piocb->iocb_flag & LPFC_USE_FCPWQIDX)) {
f38fa0bb 8935 if (!phba->cfg_fof || (!(piocb->iocb_flag & LPFC_IO_OAS))) {
1ba981fd
JS
8936 wq = phba->sli4_hba.fcp_wq[piocb->fcp_wqidx];
8937 } else {
8938 wq = phba->sli4_hba.oas_wq;
8939 }
b5c53958 8940 if (lpfc_sli4_wq_put(wq, wqe))
4f774513
JS
8941 return IOCB_ERROR;
8942 } else {
ea714f3d
JS
8943 if (unlikely(!phba->sli4_hba.els_wq))
8944 return IOCB_ERROR;
b5c53958 8945 if (lpfc_sli4_wq_put(phba->sli4_hba.els_wq, wqe))
4f774513
JS
8946 return IOCB_ERROR;
8947 }
8948 lpfc_sli_ringtxcmpl_put(phba, pring, piocb);
8949
8950 return 0;
8951}
8952
8953/**
8954 * __lpfc_sli_issue_iocb - Wrapper func of lockless version for issuing iocb
8955 *
8956 * This routine wraps the actual lockless version for issusing IOCB function
8957 * pointer from the lpfc_hba struct.
8958 *
8959 * Return codes:
b5c53958
JS
8960 * IOCB_ERROR - Error
8961 * IOCB_SUCCESS - Success
8962 * IOCB_BUSY - Busy
4f774513 8963 **/
2a9bf3d0 8964int
4f774513
JS
8965__lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
8966 struct lpfc_iocbq *piocb, uint32_t flag)
8967{
8968 return phba->__lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
8969}
8970
8971/**
25985edc 8972 * lpfc_sli_api_table_setup - Set up sli api function jump table
4f774513
JS
8973 * @phba: The hba struct for which this call is being executed.
8974 * @dev_grp: The HBA PCI-Device group number.
8975 *
8976 * This routine sets up the SLI interface API function jump table in @phba
8977 * struct.
8978 * Returns: 0 - success, -ENODEV - failure.
8979 **/
8980int
8981lpfc_sli_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
8982{
8983
8984 switch (dev_grp) {
8985 case LPFC_PCI_DEV_LP:
8986 phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s3;
8987 phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s3;
8988 break;
8989 case LPFC_PCI_DEV_OC:
8990 phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s4;
8991 phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s4;
8992 break;
8993 default:
8994 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8995 "1419 Invalid HBA PCI-device group: 0x%x\n",
8996 dev_grp);
8997 return -ENODEV;
8998 break;
8999 }
9000 phba->lpfc_get_iocb_from_iocbq = lpfc_get_iocb_from_iocbq;
9001 return 0;
9002}
9003
a1efe163
JS
9004/**
9005 * lpfc_sli_calc_ring - Calculates which ring to use
9006 * @phba: Pointer to HBA context object.
9007 * @ring_number: Initial ring
9008 * @piocb: Pointer to command iocb.
9009 *
9010 * For SLI4, FCP IO can deferred to one fo many WQs, based on
9011 * fcp_wqidx, thus we need to calculate the corresponding ring.
9012 * Since ABORTS must go on the same WQ of the command they are
9013 * aborting, we use command's fcp_wqidx.
9014 */
bd4b3e5c 9015static int
9bd2bff5
JS
9016lpfc_sli_calc_ring(struct lpfc_hba *phba, uint32_t ring_number,
9017 struct lpfc_iocbq *piocb)
9018{
8b0dff14
JS
9019 if (phba->sli_rev < LPFC_SLI_REV4)
9020 return ring_number;
9021
9022 if (piocb->iocb_flag & (LPFC_IO_FCP | LPFC_USE_FCPWQIDX)) {
9023 if (!(phba->cfg_fof) ||
9024 (!(piocb->iocb_flag & LPFC_IO_FOF))) {
9025 if (unlikely(!phba->sli4_hba.fcp_wq))
9026 return LPFC_HBA_ERROR;
9027 /*
9028 * for abort iocb fcp_wqidx should already
9029 * be setup based on what work queue we used.
9030 */
9031 if (!(piocb->iocb_flag & LPFC_USE_FCPWQIDX))
9032 piocb->fcp_wqidx =
9033 lpfc_sli4_scmd_to_wqidx_distr(phba,
9034 piocb->context1);
9035 ring_number = MAX_SLI3_CONFIGURED_RINGS +
9036 piocb->fcp_wqidx;
9037 } else {
9038 if (unlikely(!phba->sli4_hba.oas_wq))
9039 return LPFC_HBA_ERROR;
9040 piocb->fcp_wqidx = 0;
9041 ring_number = LPFC_FCP_OAS_RING;
9bd2bff5
JS
9042 }
9043 }
9044 return ring_number;
9045}
9046
4f774513
JS
9047/**
9048 * lpfc_sli_issue_iocb - Wrapper function for __lpfc_sli_issue_iocb
9049 * @phba: Pointer to HBA context object.
9050 * @pring: Pointer to driver SLI ring object.
9051 * @piocb: Pointer to command iocb.
9052 * @flag: Flag indicating if this command can be put into txq.
9053 *
9054 * lpfc_sli_issue_iocb is a wrapper around __lpfc_sli_issue_iocb
9055 * function. This function gets the hbalock and calls
9056 * __lpfc_sli_issue_iocb function and will return the error returned
9057 * by __lpfc_sli_issue_iocb function. This wrapper is used by
9058 * functions which do not hold hbalock.
9059 **/
9060int
9061lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
9062 struct lpfc_iocbq *piocb, uint32_t flag)
9063{
ba20c853 9064 struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
2a76a283 9065 struct lpfc_sli_ring *pring;
ba20c853
JS
9066 struct lpfc_queue *fpeq;
9067 struct lpfc_eqe *eqe;
4f774513 9068 unsigned long iflags;
2a76a283 9069 int rc, idx;
4f774513 9070
7e56aa25 9071 if (phba->sli_rev == LPFC_SLI_REV4) {
9bd2bff5
JS
9072 ring_number = lpfc_sli_calc_ring(phba, ring_number, piocb);
9073 if (unlikely(ring_number == LPFC_HBA_ERROR))
9074 return IOCB_ERROR;
9075 idx = piocb->fcp_wqidx;
ba20c853 9076
9bd2bff5
JS
9077 pring = &phba->sli.ring[ring_number];
9078 spin_lock_irqsave(&pring->ring_lock, iflags);
9079 rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
9080 spin_unlock_irqrestore(&pring->ring_lock, iflags);
ba20c853 9081
9bd2bff5
JS
9082 if (lpfc_fcp_look_ahead && (piocb->iocb_flag & LPFC_IO_FCP)) {
9083 fcp_eq_hdl = &phba->sli4_hba.fcp_eq_hdl[idx];
4f774513 9084
9bd2bff5
JS
9085 if (atomic_dec_and_test(&fcp_eq_hdl->
9086 fcp_eq_in_use)) {
ba20c853 9087
9bd2bff5
JS
9088 /* Get associated EQ with this index */
9089 fpeq = phba->sli4_hba.hba_eq[idx];
ba20c853 9090
9bd2bff5
JS
9091 /* Turn off interrupts from this EQ */
9092 lpfc_sli4_eq_clr_intr(fpeq);
ba20c853 9093
9bd2bff5
JS
9094 /*
9095 * Process all the events on FCP EQ
9096 */
9097 while ((eqe = lpfc_sli4_eq_get(fpeq))) {
9098 lpfc_sli4_hba_handle_eqe(phba,
9099 eqe, idx);
9100 fpeq->EQ_processed++;
ba20c853 9101 }
ba20c853 9102
9bd2bff5
JS
9103 /* Always clear and re-arm the EQ */
9104 lpfc_sli4_eq_release(fpeq,
9105 LPFC_QUEUE_REARM);
9106 }
9107 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
2a76a283 9108 }
7e56aa25
JS
9109 } else {
9110 /* For now, SLI2/3 will still use hbalock */
9111 spin_lock_irqsave(&phba->hbalock, iflags);
9112 rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
9113 spin_unlock_irqrestore(&phba->hbalock, iflags);
9114 }
4f774513
JS
9115 return rc;
9116}
9117
9118/**
9119 * lpfc_extra_ring_setup - Extra ring setup function
9120 * @phba: Pointer to HBA context object.
9121 *
9122 * This function is called while driver attaches with the
9123 * HBA to setup the extra ring. The extra ring is used
9124 * only when driver needs to support target mode functionality
9125 * or IP over FC functionalities.
9126 *
9127 * This function is called with no lock held.
9128 **/
9129static int
9130lpfc_extra_ring_setup( struct lpfc_hba *phba)
9131{
9132 struct lpfc_sli *psli;
9133 struct lpfc_sli_ring *pring;
9134
9135 psli = &phba->sli;
9136
9137 /* Adjust cmd/rsp ring iocb entries more evenly */
9138
9139 /* Take some away from the FCP ring */
9140 pring = &psli->ring[psli->fcp_ring];
7e56aa25
JS
9141 pring->sli.sli3.numCiocb -= SLI2_IOCB_CMD_R1XTRA_ENTRIES;
9142 pring->sli.sli3.numRiocb -= SLI2_IOCB_RSP_R1XTRA_ENTRIES;
9143 pring->sli.sli3.numCiocb -= SLI2_IOCB_CMD_R3XTRA_ENTRIES;
9144 pring->sli.sli3.numRiocb -= SLI2_IOCB_RSP_R3XTRA_ENTRIES;
cf5bf97e 9145
a4bc3379
JS
9146 /* and give them to the extra ring */
9147 pring = &psli->ring[psli->extra_ring];
9148
7e56aa25
JS
9149 pring->sli.sli3.numCiocb += SLI2_IOCB_CMD_R1XTRA_ENTRIES;
9150 pring->sli.sli3.numRiocb += SLI2_IOCB_RSP_R1XTRA_ENTRIES;
9151 pring->sli.sli3.numCiocb += SLI2_IOCB_CMD_R3XTRA_ENTRIES;
9152 pring->sli.sli3.numRiocb += SLI2_IOCB_RSP_R3XTRA_ENTRIES;
cf5bf97e
JW
9153
9154 /* Setup default profile for this ring */
9155 pring->iotag_max = 4096;
9156 pring->num_mask = 1;
9157 pring->prt[0].profile = 0; /* Mask 0 */
a4bc3379
JS
9158 pring->prt[0].rctl = phba->cfg_multi_ring_rctl;
9159 pring->prt[0].type = phba->cfg_multi_ring_type;
cf5bf97e
JW
9160 pring->prt[0].lpfc_sli_rcv_unsol_event = NULL;
9161 return 0;
9162}
9163
cb69f7de
JS
9164/* lpfc_sli_abts_err_handler - handle a failed ABTS request from an SLI3 port.
9165 * @phba: Pointer to HBA context object.
9166 * @iocbq: Pointer to iocb object.
9167 *
9168 * The async_event handler calls this routine when it receives
9169 * an ASYNC_STATUS_CN event from the port. The port generates
9170 * this event when an Abort Sequence request to an rport fails
9171 * twice in succession. The abort could be originated by the
9172 * driver or by the port. The ABTS could have been for an ELS
9173 * or FCP IO. The port only generates this event when an ABTS
9174 * fails to complete after one retry.
9175 */
9176static void
9177lpfc_sli_abts_err_handler(struct lpfc_hba *phba,
9178 struct lpfc_iocbq *iocbq)
9179{
9180 struct lpfc_nodelist *ndlp = NULL;
9181 uint16_t rpi = 0, vpi = 0;
9182 struct lpfc_vport *vport = NULL;
9183
9184 /* The rpi in the ulpContext is vport-sensitive. */
9185 vpi = iocbq->iocb.un.asyncstat.sub_ctxt_tag;
9186 rpi = iocbq->iocb.ulpContext;
9187
9188 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
9189 "3092 Port generated ABTS async event "
9190 "on vpi %d rpi %d status 0x%x\n",
9191 vpi, rpi, iocbq->iocb.ulpStatus);
9192
9193 vport = lpfc_find_vport_by_vpid(phba, vpi);
9194 if (!vport)
9195 goto err_exit;
9196 ndlp = lpfc_findnode_rpi(vport, rpi);
9197 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
9198 goto err_exit;
9199
9200 if (iocbq->iocb.ulpStatus == IOSTAT_LOCAL_REJECT)
9201 lpfc_sli_abts_recover_port(vport, ndlp);
9202 return;
9203
9204 err_exit:
9205 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
9206 "3095 Event Context not found, no "
9207 "action on vpi %d rpi %d status 0x%x, reason 0x%x\n",
9208 iocbq->iocb.ulpContext, iocbq->iocb.ulpStatus,
9209 vpi, rpi);
9210}
9211
9212/* lpfc_sli4_abts_err_handler - handle a failed ABTS request from an SLI4 port.
9213 * @phba: pointer to HBA context object.
9214 * @ndlp: nodelist pointer for the impacted rport.
9215 * @axri: pointer to the wcqe containing the failed exchange.
9216 *
9217 * The driver calls this routine when it receives an ABORT_XRI_FCP CQE from the
9218 * port. The port generates this event when an abort exchange request to an
9219 * rport fails twice in succession with no reply. The abort could be originated
9220 * by the driver or by the port. The ABTS could have been for an ELS or FCP IO.
9221 */
9222void
9223lpfc_sli4_abts_err_handler(struct lpfc_hba *phba,
9224 struct lpfc_nodelist *ndlp,
9225 struct sli4_wcqe_xri_aborted *axri)
9226{
9227 struct lpfc_vport *vport;
5c1db2ac 9228 uint32_t ext_status = 0;
cb69f7de 9229
6b5151fd 9230 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
cb69f7de
JS
9231 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
9232 "3115 Node Context not found, driver "
9233 "ignoring abts err event\n");
6b5151fd
JS
9234 return;
9235 }
9236
cb69f7de
JS
9237 vport = ndlp->vport;
9238 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
9239 "3116 Port generated FCP XRI ABORT event on "
5c1db2ac 9240 "vpi %d rpi %d xri x%x status 0x%x parameter x%x\n",
8e668af5 9241 ndlp->vport->vpi, phba->sli4_hba.rpi_ids[ndlp->nlp_rpi],
cb69f7de 9242 bf_get(lpfc_wcqe_xa_xri, axri),
5c1db2ac
JS
9243 bf_get(lpfc_wcqe_xa_status, axri),
9244 axri->parameter);
cb69f7de 9245
5c1db2ac
JS
9246 /*
9247 * Catch the ABTS protocol failure case. Older OCe FW releases returned
9248 * LOCAL_REJECT and 0 for a failed ABTS exchange and later OCe and
9249 * LPe FW releases returned LOCAL_REJECT and SEQUENCE_TIMEOUT.
9250 */
e3d2b802 9251 ext_status = axri->parameter & IOERR_PARAM_MASK;
5c1db2ac
JS
9252 if ((bf_get(lpfc_wcqe_xa_status, axri) == IOSTAT_LOCAL_REJECT) &&
9253 ((ext_status == IOERR_SEQUENCE_TIMEOUT) || (ext_status == 0)))
cb69f7de
JS
9254 lpfc_sli_abts_recover_port(vport, ndlp);
9255}
9256
e59058c4 9257/**
3621a710 9258 * lpfc_sli_async_event_handler - ASYNC iocb handler function
e59058c4
JS
9259 * @phba: Pointer to HBA context object.
9260 * @pring: Pointer to driver SLI ring object.
9261 * @iocbq: Pointer to iocb object.
9262 *
9263 * This function is called by the slow ring event handler
9264 * function when there is an ASYNC event iocb in the ring.
9265 * This function is called with no lock held.
9266 * Currently this function handles only temperature related
9267 * ASYNC events. The function decodes the temperature sensor
9268 * event message and posts events for the management applications.
9269 **/
98c9ea5c 9270static void
57127f15
JS
9271lpfc_sli_async_event_handler(struct lpfc_hba * phba,
9272 struct lpfc_sli_ring * pring, struct lpfc_iocbq * iocbq)
9273{
9274 IOCB_t *icmd;
9275 uint16_t evt_code;
57127f15
JS
9276 struct temp_event temp_event_data;
9277 struct Scsi_Host *shost;
a257bf90 9278 uint32_t *iocb_w;
57127f15
JS
9279
9280 icmd = &iocbq->iocb;
9281 evt_code = icmd->un.asyncstat.evt_code;
57127f15 9282
cb69f7de
JS
9283 switch (evt_code) {
9284 case ASYNC_TEMP_WARN:
9285 case ASYNC_TEMP_SAFE:
9286 temp_event_data.data = (uint32_t) icmd->ulpContext;
9287 temp_event_data.event_type = FC_REG_TEMPERATURE_EVENT;
9288 if (evt_code == ASYNC_TEMP_WARN) {
9289 temp_event_data.event_code = LPFC_THRESHOLD_TEMP;
9290 lpfc_printf_log(phba, KERN_ERR, LOG_TEMP,
9291 "0347 Adapter is very hot, please take "
9292 "corrective action. temperature : %d Celsius\n",
9293 (uint32_t) icmd->ulpContext);
9294 } else {
9295 temp_event_data.event_code = LPFC_NORMAL_TEMP;
9296 lpfc_printf_log(phba, KERN_ERR, LOG_TEMP,
9297 "0340 Adapter temperature is OK now. "
9298 "temperature : %d Celsius\n",
9299 (uint32_t) icmd->ulpContext);
9300 }
9301
9302 /* Send temperature change event to applications */
9303 shost = lpfc_shost_from_vport(phba->pport);
9304 fc_host_post_vendor_event(shost, fc_get_event_number(),
9305 sizeof(temp_event_data), (char *) &temp_event_data,
9306 LPFC_NL_VENDOR_ID);
9307 break;
9308 case ASYNC_STATUS_CN:
9309 lpfc_sli_abts_err_handler(phba, iocbq);
9310 break;
9311 default:
a257bf90 9312 iocb_w = (uint32_t *) icmd;
cb69f7de 9313 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
76bb24ef 9314 "0346 Ring %d handler: unexpected ASYNC_STATUS"
e4e74273 9315 " evt_code 0x%x\n"
a257bf90
JS
9316 "W0 0x%08x W1 0x%08x W2 0x%08x W3 0x%08x\n"
9317 "W4 0x%08x W5 0x%08x W6 0x%08x W7 0x%08x\n"
9318 "W8 0x%08x W9 0x%08x W10 0x%08x W11 0x%08x\n"
9319 "W12 0x%08x W13 0x%08x W14 0x%08x W15 0x%08x\n",
cb69f7de 9320 pring->ringno, icmd->un.asyncstat.evt_code,
a257bf90
JS
9321 iocb_w[0], iocb_w[1], iocb_w[2], iocb_w[3],
9322 iocb_w[4], iocb_w[5], iocb_w[6], iocb_w[7],
9323 iocb_w[8], iocb_w[9], iocb_w[10], iocb_w[11],
9324 iocb_w[12], iocb_w[13], iocb_w[14], iocb_w[15]);
9325
cb69f7de 9326 break;
57127f15 9327 }
57127f15
JS
9328}
9329
9330
e59058c4 9331/**
3621a710 9332 * lpfc_sli_setup - SLI ring setup function
e59058c4
JS
9333 * @phba: Pointer to HBA context object.
9334 *
9335 * lpfc_sli_setup sets up rings of the SLI interface with
9336 * number of iocbs per ring and iotags. This function is
9337 * called while driver attach to the HBA and before the
9338 * interrupts are enabled. So there is no need for locking.
9339 *
9340 * This function always returns 0.
9341 **/
dea3101e
JB
9342int
9343lpfc_sli_setup(struct lpfc_hba *phba)
9344{
ed957684 9345 int i, totiocbsize = 0;
dea3101e
JB
9346 struct lpfc_sli *psli = &phba->sli;
9347 struct lpfc_sli_ring *pring;
9348
2a76a283
JS
9349 psli->num_rings = MAX_SLI3_CONFIGURED_RINGS;
9350 if (phba->sli_rev == LPFC_SLI_REV4)
67d12733 9351 psli->num_rings += phba->cfg_fcp_io_channel;
dea3101e
JB
9352 psli->sli_flag = 0;
9353 psli->fcp_ring = LPFC_FCP_RING;
9354 psli->next_ring = LPFC_FCP_NEXT_RING;
a4bc3379 9355 psli->extra_ring = LPFC_EXTRA_RING;
dea3101e 9356
604a3e30
JB
9357 psli->iocbq_lookup = NULL;
9358 psli->iocbq_lookup_len = 0;
9359 psli->last_iotag = 0;
9360
dea3101e
JB
9361 for (i = 0; i < psli->num_rings; i++) {
9362 pring = &psli->ring[i];
9363 switch (i) {
9364 case LPFC_FCP_RING: /* ring 0 - FCP */
9365 /* numCiocb and numRiocb are used in config_port */
7e56aa25
JS
9366 pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R0_ENTRIES;
9367 pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R0_ENTRIES;
9368 pring->sli.sli3.numCiocb +=
9369 SLI2_IOCB_CMD_R1XTRA_ENTRIES;
9370 pring->sli.sli3.numRiocb +=
9371 SLI2_IOCB_RSP_R1XTRA_ENTRIES;
9372 pring->sli.sli3.numCiocb +=
9373 SLI2_IOCB_CMD_R3XTRA_ENTRIES;
9374 pring->sli.sli3.numRiocb +=
9375 SLI2_IOCB_RSP_R3XTRA_ENTRIES;
9376 pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
92d7f7b0
JS
9377 SLI3_IOCB_CMD_SIZE :
9378 SLI2_IOCB_CMD_SIZE;
7e56aa25 9379 pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
92d7f7b0
JS
9380 SLI3_IOCB_RSP_SIZE :
9381 SLI2_IOCB_RSP_SIZE;
dea3101e
JB
9382 pring->iotag_ctr = 0;
9383 pring->iotag_max =
92d7f7b0 9384 (phba->cfg_hba_queue_depth * 2);
dea3101e
JB
9385 pring->fast_iotag = pring->iotag_max;
9386 pring->num_mask = 0;
9387 break;
a4bc3379 9388 case LPFC_EXTRA_RING: /* ring 1 - EXTRA */
dea3101e 9389 /* numCiocb and numRiocb are used in config_port */
7e56aa25
JS
9390 pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R1_ENTRIES;
9391 pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R1_ENTRIES;
9392 pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
92d7f7b0
JS
9393 SLI3_IOCB_CMD_SIZE :
9394 SLI2_IOCB_CMD_SIZE;
7e56aa25 9395 pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
92d7f7b0
JS
9396 SLI3_IOCB_RSP_SIZE :
9397 SLI2_IOCB_RSP_SIZE;
2e0fef85 9398 pring->iotag_max = phba->cfg_hba_queue_depth;
dea3101e
JB
9399 pring->num_mask = 0;
9400 break;
9401 case LPFC_ELS_RING: /* ring 2 - ELS / CT */
9402 /* numCiocb and numRiocb are used in config_port */
7e56aa25
JS
9403 pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R2_ENTRIES;
9404 pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R2_ENTRIES;
9405 pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
92d7f7b0
JS
9406 SLI3_IOCB_CMD_SIZE :
9407 SLI2_IOCB_CMD_SIZE;
7e56aa25 9408 pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
92d7f7b0
JS
9409 SLI3_IOCB_RSP_SIZE :
9410 SLI2_IOCB_RSP_SIZE;
dea3101e
JB
9411 pring->fast_iotag = 0;
9412 pring->iotag_ctr = 0;
9413 pring->iotag_max = 4096;
57127f15
JS
9414 pring->lpfc_sli_rcv_async_status =
9415 lpfc_sli_async_event_handler;
6669f9bb 9416 pring->num_mask = LPFC_MAX_RING_MASK;
dea3101e 9417 pring->prt[0].profile = 0; /* Mask 0 */
6a9c52cf
JS
9418 pring->prt[0].rctl = FC_RCTL_ELS_REQ;
9419 pring->prt[0].type = FC_TYPE_ELS;
dea3101e 9420 pring->prt[0].lpfc_sli_rcv_unsol_event =
92d7f7b0 9421 lpfc_els_unsol_event;
dea3101e 9422 pring->prt[1].profile = 0; /* Mask 1 */
6a9c52cf
JS
9423 pring->prt[1].rctl = FC_RCTL_ELS_REP;
9424 pring->prt[1].type = FC_TYPE_ELS;
dea3101e 9425 pring->prt[1].lpfc_sli_rcv_unsol_event =
92d7f7b0 9426 lpfc_els_unsol_event;
dea3101e
JB
9427 pring->prt[2].profile = 0; /* Mask 2 */
9428 /* NameServer Inquiry */
6a9c52cf 9429 pring->prt[2].rctl = FC_RCTL_DD_UNSOL_CTL;
dea3101e 9430 /* NameServer */
6a9c52cf 9431 pring->prt[2].type = FC_TYPE_CT;
dea3101e 9432 pring->prt[2].lpfc_sli_rcv_unsol_event =
92d7f7b0 9433 lpfc_ct_unsol_event;
dea3101e
JB
9434 pring->prt[3].profile = 0; /* Mask 3 */
9435 /* NameServer response */
6a9c52cf 9436 pring->prt[3].rctl = FC_RCTL_DD_SOL_CTL;
dea3101e 9437 /* NameServer */
6a9c52cf 9438 pring->prt[3].type = FC_TYPE_CT;
dea3101e 9439 pring->prt[3].lpfc_sli_rcv_unsol_event =
92d7f7b0 9440 lpfc_ct_unsol_event;
dea3101e
JB
9441 break;
9442 }
7e56aa25
JS
9443 totiocbsize += (pring->sli.sli3.numCiocb *
9444 pring->sli.sli3.sizeCiocb) +
9445 (pring->sli.sli3.numRiocb * pring->sli.sli3.sizeRiocb);
dea3101e 9446 }
ed957684 9447 if (totiocbsize > MAX_SLIM_IOCB_SIZE) {
dea3101e 9448 /* Too many cmd / rsp ring entries in SLI2 SLIM */
e8b62011
JS
9449 printk(KERN_ERR "%d:0462 Too many cmd / rsp ring entries in "
9450 "SLI2 SLIM Data: x%x x%lx\n",
9451 phba->brd_no, totiocbsize,
9452 (unsigned long) MAX_SLIM_IOCB_SIZE);
dea3101e 9453 }
cf5bf97e
JW
9454 if (phba->cfg_multi_ring_support == 2)
9455 lpfc_extra_ring_setup(phba);
dea3101e
JB
9456
9457 return 0;
9458}
9459
e59058c4 9460/**
3621a710 9461 * lpfc_sli_queue_setup - Queue initialization function
e59058c4
JS
9462 * @phba: Pointer to HBA context object.
9463 *
9464 * lpfc_sli_queue_setup sets up mailbox queues and iocb queues for each
9465 * ring. This function also initializes ring indices of each ring.
9466 * This function is called during the initialization of the SLI
9467 * interface of an HBA.
9468 * This function is called with no lock held and always returns
9469 * 1.
9470 **/
dea3101e 9471int
2e0fef85 9472lpfc_sli_queue_setup(struct lpfc_hba *phba)
dea3101e
JB
9473{
9474 struct lpfc_sli *psli;
9475 struct lpfc_sli_ring *pring;
604a3e30 9476 int i;
dea3101e
JB
9477
9478 psli = &phba->sli;
2e0fef85 9479 spin_lock_irq(&phba->hbalock);
dea3101e 9480 INIT_LIST_HEAD(&psli->mboxq);
92d7f7b0 9481 INIT_LIST_HEAD(&psli->mboxq_cmpl);
dea3101e
JB
9482 /* Initialize list headers for txq and txcmplq as double linked lists */
9483 for (i = 0; i < psli->num_rings; i++) {
9484 pring = &psli->ring[i];
9485 pring->ringno = i;
7e56aa25
JS
9486 pring->sli.sli3.next_cmdidx = 0;
9487 pring->sli.sli3.local_getidx = 0;
9488 pring->sli.sli3.cmdidx = 0;
68e814f5 9489 pring->flag = 0;
dea3101e
JB
9490 INIT_LIST_HEAD(&pring->txq);
9491 INIT_LIST_HEAD(&pring->txcmplq);
9492 INIT_LIST_HEAD(&pring->iocb_continueq);
9c2face6 9493 INIT_LIST_HEAD(&pring->iocb_continue_saveq);
dea3101e 9494 INIT_LIST_HEAD(&pring->postbufq);
7e56aa25 9495 spin_lock_init(&pring->ring_lock);
dea3101e 9496 }
2e0fef85
JS
9497 spin_unlock_irq(&phba->hbalock);
9498 return 1;
dea3101e
JB
9499}
9500
04c68496
JS
9501/**
9502 * lpfc_sli_mbox_sys_flush - Flush mailbox command sub-system
9503 * @phba: Pointer to HBA context object.
9504 *
9505 * This routine flushes the mailbox command subsystem. It will unconditionally
9506 * flush all the mailbox commands in the three possible stages in the mailbox
9507 * command sub-system: pending mailbox command queue; the outstanding mailbox
9508 * command; and completed mailbox command queue. It is caller's responsibility
9509 * to make sure that the driver is in the proper state to flush the mailbox
9510 * command sub-system. Namely, the posting of mailbox commands into the
9511 * pending mailbox command queue from the various clients must be stopped;
9512 * either the HBA is in a state that it will never works on the outstanding
9513 * mailbox command (such as in EEH or ERATT conditions) or the outstanding
9514 * mailbox command has been completed.
9515 **/
9516static void
9517lpfc_sli_mbox_sys_flush(struct lpfc_hba *phba)
9518{
9519 LIST_HEAD(completions);
9520 struct lpfc_sli *psli = &phba->sli;
9521 LPFC_MBOXQ_t *pmb;
9522 unsigned long iflag;
9523
9524 /* Flush all the mailbox commands in the mbox system */
9525 spin_lock_irqsave(&phba->hbalock, iflag);
9526 /* The pending mailbox command queue */
9527 list_splice_init(&phba->sli.mboxq, &completions);
9528 /* The outstanding active mailbox command */
9529 if (psli->mbox_active) {
9530 list_add_tail(&psli->mbox_active->list, &completions);
9531 psli->mbox_active = NULL;
9532 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
9533 }
9534 /* The completed mailbox command queue */
9535 list_splice_init(&phba->sli.mboxq_cmpl, &completions);
9536 spin_unlock_irqrestore(&phba->hbalock, iflag);
9537
9538 /* Return all flushed mailbox commands with MBX_NOT_FINISHED status */
9539 while (!list_empty(&completions)) {
9540 list_remove_head(&completions, pmb, LPFC_MBOXQ_t, list);
9541 pmb->u.mb.mbxStatus = MBX_NOT_FINISHED;
9542 if (pmb->mbox_cmpl)
9543 pmb->mbox_cmpl(phba, pmb);
9544 }
9545}
9546
e59058c4 9547/**
3621a710 9548 * lpfc_sli_host_down - Vport cleanup function
e59058c4
JS
9549 * @vport: Pointer to virtual port object.
9550 *
9551 * lpfc_sli_host_down is called to clean up the resources
9552 * associated with a vport before destroying virtual
9553 * port data structures.
9554 * This function does following operations:
9555 * - Free discovery resources associated with this virtual
9556 * port.
9557 * - Free iocbs associated with this virtual port in
9558 * the txq.
9559 * - Send abort for all iocb commands associated with this
9560 * vport in txcmplq.
9561 *
9562 * This function is called with no lock held and always returns 1.
9563 **/
92d7f7b0
JS
9564int
9565lpfc_sli_host_down(struct lpfc_vport *vport)
9566{
858c9f6c 9567 LIST_HEAD(completions);
92d7f7b0
JS
9568 struct lpfc_hba *phba = vport->phba;
9569 struct lpfc_sli *psli = &phba->sli;
9570 struct lpfc_sli_ring *pring;
9571 struct lpfc_iocbq *iocb, *next_iocb;
92d7f7b0
JS
9572 int i;
9573 unsigned long flags = 0;
9574 uint16_t prev_pring_flag;
9575
9576 lpfc_cleanup_discovery_resources(vport);
9577
9578 spin_lock_irqsave(&phba->hbalock, flags);
92d7f7b0
JS
9579 for (i = 0; i < psli->num_rings; i++) {
9580 pring = &psli->ring[i];
9581 prev_pring_flag = pring->flag;
5e9d9b82
JS
9582 /* Only slow rings */
9583 if (pring->ringno == LPFC_ELS_RING) {
858c9f6c 9584 pring->flag |= LPFC_DEFERRED_RING_EVENT;
5e9d9b82
JS
9585 /* Set the lpfc data pending flag */
9586 set_bit(LPFC_DATA_READY, &phba->data_flags);
9587 }
92d7f7b0
JS
9588 /*
9589 * Error everything on the txq since these iocbs have not been
9590 * given to the FW yet.
9591 */
92d7f7b0
JS
9592 list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
9593 if (iocb->vport != vport)
9594 continue;
858c9f6c 9595 list_move_tail(&iocb->list, &completions);
92d7f7b0
JS
9596 }
9597
9598 /* Next issue ABTS for everything on the txcmplq */
9599 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq,
9600 list) {
9601 if (iocb->vport != vport)
9602 continue;
9603 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
9604 }
9605
9606 pring->flag = prev_pring_flag;
9607 }
9608
9609 spin_unlock_irqrestore(&phba->hbalock, flags);
9610
a257bf90
JS
9611 /* Cancel all the IOCBs from the completions list */
9612 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
9613 IOERR_SLI_DOWN);
92d7f7b0
JS
9614 return 1;
9615}
9616
e59058c4 9617/**
3621a710 9618 * lpfc_sli_hba_down - Resource cleanup function for the HBA
e59058c4
JS
9619 * @phba: Pointer to HBA context object.
9620 *
9621 * This function cleans up all iocb, buffers, mailbox commands
9622 * while shutting down the HBA. This function is called with no
9623 * lock held and always returns 1.
9624 * This function does the following to cleanup driver resources:
9625 * - Free discovery resources for each virtual port
9626 * - Cleanup any pending fabric iocbs
9627 * - Iterate through the iocb txq and free each entry
9628 * in the list.
9629 * - Free up any buffer posted to the HBA
9630 * - Free mailbox commands in the mailbox queue.
9631 **/
dea3101e 9632int
2e0fef85 9633lpfc_sli_hba_down(struct lpfc_hba *phba)
dea3101e 9634{
2534ba75 9635 LIST_HEAD(completions);
2e0fef85 9636 struct lpfc_sli *psli = &phba->sli;
dea3101e 9637 struct lpfc_sli_ring *pring;
0ff10d46 9638 struct lpfc_dmabuf *buf_ptr;
dea3101e 9639 unsigned long flags = 0;
04c68496
JS
9640 int i;
9641
9642 /* Shutdown the mailbox command sub-system */
618a5230 9643 lpfc_sli_mbox_sys_shutdown(phba, LPFC_MBX_WAIT);
dea3101e 9644
dea3101e
JB
9645 lpfc_hba_down_prep(phba);
9646
92d7f7b0
JS
9647 lpfc_fabric_abort_hba(phba);
9648
2e0fef85 9649 spin_lock_irqsave(&phba->hbalock, flags);
dea3101e
JB
9650 for (i = 0; i < psli->num_rings; i++) {
9651 pring = &psli->ring[i];
5e9d9b82
JS
9652 /* Only slow rings */
9653 if (pring->ringno == LPFC_ELS_RING) {
858c9f6c 9654 pring->flag |= LPFC_DEFERRED_RING_EVENT;
5e9d9b82
JS
9655 /* Set the lpfc data pending flag */
9656 set_bit(LPFC_DATA_READY, &phba->data_flags);
9657 }
dea3101e
JB
9658
9659 /*
9660 * Error everything on the txq since these iocbs have not been
9661 * given to the FW yet.
9662 */
2534ba75 9663 list_splice_init(&pring->txq, &completions);
2534ba75 9664 }
2e0fef85 9665 spin_unlock_irqrestore(&phba->hbalock, flags);
dea3101e 9666
a257bf90
JS
9667 /* Cancel all the IOCBs from the completions list */
9668 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
9669 IOERR_SLI_DOWN);
dea3101e 9670
0ff10d46
JS
9671 spin_lock_irqsave(&phba->hbalock, flags);
9672 list_splice_init(&phba->elsbuf, &completions);
9673 phba->elsbuf_cnt = 0;
9674 phba->elsbuf_prev_cnt = 0;
9675 spin_unlock_irqrestore(&phba->hbalock, flags);
9676
9677 while (!list_empty(&completions)) {
9678 list_remove_head(&completions, buf_ptr,
9679 struct lpfc_dmabuf, list);
9680 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
9681 kfree(buf_ptr);
9682 }
9683
dea3101e
JB
9684 /* Return any active mbox cmds */
9685 del_timer_sync(&psli->mbox_tmo);
2e0fef85 9686
da0436e9 9687 spin_lock_irqsave(&phba->pport->work_port_lock, flags);
2e0fef85 9688 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
da0436e9 9689 spin_unlock_irqrestore(&phba->pport->work_port_lock, flags);
2e0fef85 9690
da0436e9
JS
9691 return 1;
9692}
9693
e59058c4 9694/**
3621a710 9695 * lpfc_sli_pcimem_bcopy - SLI memory copy function
e59058c4
JS
9696 * @srcp: Source memory pointer.
9697 * @destp: Destination memory pointer.
9698 * @cnt: Number of words required to be copied.
9699 *
9700 * This function is used for copying data between driver memory
9701 * and the SLI memory. This function also changes the endianness
9702 * of each word if native endianness is different from SLI
9703 * endianness. This function can be called with or without
9704 * lock.
9705 **/
dea3101e
JB
9706void
9707lpfc_sli_pcimem_bcopy(void *srcp, void *destp, uint32_t cnt)
9708{
9709 uint32_t *src = srcp;
9710 uint32_t *dest = destp;
9711 uint32_t ldata;
9712 int i;
9713
9714 for (i = 0; i < (int)cnt; i += sizeof (uint32_t)) {
9715 ldata = *src;
9716 ldata = le32_to_cpu(ldata);
9717 *dest = ldata;
9718 src++;
9719 dest++;
9720 }
9721}
9722
e59058c4 9723
a0c87cbd
JS
9724/**
9725 * lpfc_sli_bemem_bcopy - SLI memory copy function
9726 * @srcp: Source memory pointer.
9727 * @destp: Destination memory pointer.
9728 * @cnt: Number of words required to be copied.
9729 *
9730 * This function is used for copying data between a data structure
9731 * with big endian representation to local endianness.
9732 * This function can be called with or without lock.
9733 **/
9734void
9735lpfc_sli_bemem_bcopy(void *srcp, void *destp, uint32_t cnt)
9736{
9737 uint32_t *src = srcp;
9738 uint32_t *dest = destp;
9739 uint32_t ldata;
9740 int i;
9741
9742 for (i = 0; i < (int)cnt; i += sizeof(uint32_t)) {
9743 ldata = *src;
9744 ldata = be32_to_cpu(ldata);
9745 *dest = ldata;
9746 src++;
9747 dest++;
9748 }
9749}
9750
e59058c4 9751/**
3621a710 9752 * lpfc_sli_ringpostbuf_put - Function to add a buffer to postbufq
e59058c4
JS
9753 * @phba: Pointer to HBA context object.
9754 * @pring: Pointer to driver SLI ring object.
9755 * @mp: Pointer to driver buffer object.
9756 *
9757 * This function is called with no lock held.
9758 * It always return zero after adding the buffer to the postbufq
9759 * buffer list.
9760 **/
dea3101e 9761int
2e0fef85
JS
9762lpfc_sli_ringpostbuf_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9763 struct lpfc_dmabuf *mp)
dea3101e
JB
9764{
9765 /* Stick struct lpfc_dmabuf at end of postbufq so driver can look it up
9766 later */
2e0fef85 9767 spin_lock_irq(&phba->hbalock);
dea3101e 9768 list_add_tail(&mp->list, &pring->postbufq);
dea3101e 9769 pring->postbufq_cnt++;
2e0fef85 9770 spin_unlock_irq(&phba->hbalock);
dea3101e
JB
9771 return 0;
9772}
9773
e59058c4 9774/**
3621a710 9775 * lpfc_sli_get_buffer_tag - allocates a tag for a CMD_QUE_XRI64_CX buffer
e59058c4
JS
9776 * @phba: Pointer to HBA context object.
9777 *
9778 * When HBQ is enabled, buffers are searched based on tags. This function
9779 * allocates a tag for buffer posted using CMD_QUE_XRI64_CX iocb. The
9780 * tag is bit wise or-ed with QUE_BUFTAG_BIT to make sure that the tag
9781 * does not conflict with tags of buffer posted for unsolicited events.
9782 * The function returns the allocated tag. The function is called with
9783 * no locks held.
9784 **/
76bb24ef
JS
9785uint32_t
9786lpfc_sli_get_buffer_tag(struct lpfc_hba *phba)
9787{
9788 spin_lock_irq(&phba->hbalock);
9789 phba->buffer_tag_count++;
9790 /*
9791 * Always set the QUE_BUFTAG_BIT to distiguish between
9792 * a tag assigned by HBQ.
9793 */
9794 phba->buffer_tag_count |= QUE_BUFTAG_BIT;
9795 spin_unlock_irq(&phba->hbalock);
9796 return phba->buffer_tag_count;
9797}
9798
e59058c4 9799/**
3621a710 9800 * lpfc_sli_ring_taggedbuf_get - find HBQ buffer associated with given tag
e59058c4
JS
9801 * @phba: Pointer to HBA context object.
9802 * @pring: Pointer to driver SLI ring object.
9803 * @tag: Buffer tag.
9804 *
9805 * Buffers posted using CMD_QUE_XRI64_CX iocb are in pring->postbufq
9806 * list. After HBA DMA data to these buffers, CMD_IOCB_RET_XRI64_CX
9807 * iocb is posted to the response ring with the tag of the buffer.
9808 * This function searches the pring->postbufq list using the tag
9809 * to find buffer associated with CMD_IOCB_RET_XRI64_CX
9810 * iocb. If the buffer is found then lpfc_dmabuf object of the
9811 * buffer is returned to the caller else NULL is returned.
9812 * This function is called with no lock held.
9813 **/
76bb24ef
JS
9814struct lpfc_dmabuf *
9815lpfc_sli_ring_taggedbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9816 uint32_t tag)
9817{
9818 struct lpfc_dmabuf *mp, *next_mp;
9819 struct list_head *slp = &pring->postbufq;
9820
25985edc 9821 /* Search postbufq, from the beginning, looking for a match on tag */
76bb24ef
JS
9822 spin_lock_irq(&phba->hbalock);
9823 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
9824 if (mp->buffer_tag == tag) {
9825 list_del_init(&mp->list);
9826 pring->postbufq_cnt--;
9827 spin_unlock_irq(&phba->hbalock);
9828 return mp;
9829 }
9830 }
9831
9832 spin_unlock_irq(&phba->hbalock);
9833 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
d7c255b2 9834 "0402 Cannot find virtual addr for buffer tag on "
76bb24ef
JS
9835 "ring %d Data x%lx x%p x%p x%x\n",
9836 pring->ringno, (unsigned long) tag,
9837 slp->next, slp->prev, pring->postbufq_cnt);
9838
9839 return NULL;
9840}
dea3101e 9841
e59058c4 9842/**
3621a710 9843 * lpfc_sli_ringpostbuf_get - search buffers for unsolicited CT and ELS events
e59058c4
JS
9844 * @phba: Pointer to HBA context object.
9845 * @pring: Pointer to driver SLI ring object.
9846 * @phys: DMA address of the buffer.
9847 *
9848 * This function searches the buffer list using the dma_address
9849 * of unsolicited event to find the driver's lpfc_dmabuf object
9850 * corresponding to the dma_address. The function returns the
9851 * lpfc_dmabuf object if a buffer is found else it returns NULL.
9852 * This function is called by the ct and els unsolicited event
9853 * handlers to get the buffer associated with the unsolicited
9854 * event.
9855 *
9856 * This function is called with no lock held.
9857 **/
dea3101e
JB
9858struct lpfc_dmabuf *
9859lpfc_sli_ringpostbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9860 dma_addr_t phys)
9861{
9862 struct lpfc_dmabuf *mp, *next_mp;
9863 struct list_head *slp = &pring->postbufq;
9864
25985edc 9865 /* Search postbufq, from the beginning, looking for a match on phys */
2e0fef85 9866 spin_lock_irq(&phba->hbalock);
dea3101e
JB
9867 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
9868 if (mp->phys == phys) {
9869 list_del_init(&mp->list);
9870 pring->postbufq_cnt--;
2e0fef85 9871 spin_unlock_irq(&phba->hbalock);
dea3101e
JB
9872 return mp;
9873 }
9874 }
9875
2e0fef85 9876 spin_unlock_irq(&phba->hbalock);
dea3101e 9877 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 9878 "0410 Cannot find virtual addr for mapped buf on "
dea3101e 9879 "ring %d Data x%llx x%p x%p x%x\n",
e8b62011 9880 pring->ringno, (unsigned long long)phys,
dea3101e
JB
9881 slp->next, slp->prev, pring->postbufq_cnt);
9882 return NULL;
9883}
9884
e59058c4 9885/**
3621a710 9886 * lpfc_sli_abort_els_cmpl - Completion handler for the els abort iocbs
e59058c4
JS
9887 * @phba: Pointer to HBA context object.
9888 * @cmdiocb: Pointer to driver command iocb object.
9889 * @rspiocb: Pointer to driver response iocb object.
9890 *
9891 * This function is the completion handler for the abort iocbs for
9892 * ELS commands. This function is called from the ELS ring event
9893 * handler with no lock held. This function frees memory resources
9894 * associated with the abort iocb.
9895 **/
dea3101e 9896static void
2e0fef85
JS
9897lpfc_sli_abort_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
9898 struct lpfc_iocbq *rspiocb)
dea3101e 9899{
2e0fef85 9900 IOCB_t *irsp = &rspiocb->iocb;
2680eeaa 9901 uint16_t abort_iotag, abort_context;
ff78d8f9 9902 struct lpfc_iocbq *abort_iocb = NULL;
2680eeaa
JS
9903
9904 if (irsp->ulpStatus) {
ff78d8f9
JS
9905
9906 /*
9907 * Assume that the port already completed and returned, or
9908 * will return the iocb. Just Log the message.
9909 */
2680eeaa
JS
9910 abort_context = cmdiocb->iocb.un.acxri.abortContextTag;
9911 abort_iotag = cmdiocb->iocb.un.acxri.abortIoTag;
9912
2e0fef85 9913 spin_lock_irq(&phba->hbalock);
45ed1190
JS
9914 if (phba->sli_rev < LPFC_SLI_REV4) {
9915 if (abort_iotag != 0 &&
9916 abort_iotag <= phba->sli.last_iotag)
9917 abort_iocb =
9918 phba->sli.iocbq_lookup[abort_iotag];
9919 } else
9920 /* For sli4 the abort_tag is the XRI,
9921 * so the abort routine puts the iotag of the iocb
9922 * being aborted in the context field of the abort
9923 * IOCB.
9924 */
9925 abort_iocb = phba->sli.iocbq_lookup[abort_context];
2680eeaa 9926
2a9bf3d0
JS
9927 lpfc_printf_log(phba, KERN_WARNING, LOG_ELS | LOG_SLI,
9928 "0327 Cannot abort els iocb %p "
9929 "with tag %x context %x, abort status %x, "
9930 "abort code %x\n",
9931 abort_iocb, abort_iotag, abort_context,
9932 irsp->ulpStatus, irsp->un.ulpWord[4]);
341af102 9933
ff78d8f9 9934 spin_unlock_irq(&phba->hbalock);
2680eeaa 9935 }
604a3e30 9936 lpfc_sli_release_iocbq(phba, cmdiocb);
dea3101e
JB
9937 return;
9938}
9939
e59058c4 9940/**
3621a710 9941 * lpfc_ignore_els_cmpl - Completion handler for aborted ELS command
e59058c4
JS
9942 * @phba: Pointer to HBA context object.
9943 * @cmdiocb: Pointer to driver command iocb object.
9944 * @rspiocb: Pointer to driver response iocb object.
9945 *
9946 * The function is called from SLI ring event handler with no
9947 * lock held. This function is the completion handler for ELS commands
9948 * which are aborted. The function frees memory resources used for
9949 * the aborted ELS commands.
9950 **/
92d7f7b0
JS
9951static void
9952lpfc_ignore_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
9953 struct lpfc_iocbq *rspiocb)
9954{
9955 IOCB_t *irsp = &rspiocb->iocb;
9956
9957 /* ELS cmd tag <ulpIoTag> completes */
9958 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
d7c255b2 9959 "0139 Ignoring ELS cmd tag x%x completion Data: "
92d7f7b0 9960 "x%x x%x x%x\n",
e8b62011 9961 irsp->ulpIoTag, irsp->ulpStatus,
92d7f7b0 9962 irsp->un.ulpWord[4], irsp->ulpTimeout);
858c9f6c
JS
9963 if (cmdiocb->iocb.ulpCommand == CMD_GEN_REQUEST64_CR)
9964 lpfc_ct_free_iocb(phba, cmdiocb);
9965 else
9966 lpfc_els_free_iocb(phba, cmdiocb);
92d7f7b0
JS
9967 return;
9968}
9969
e59058c4 9970/**
5af5eee7 9971 * lpfc_sli_abort_iotag_issue - Issue abort for a command iocb
e59058c4
JS
9972 * @phba: Pointer to HBA context object.
9973 * @pring: Pointer to driver SLI ring object.
9974 * @cmdiocb: Pointer to driver command iocb object.
9975 *
5af5eee7
JS
9976 * This function issues an abort iocb for the provided command iocb down to
9977 * the port. Other than the case the outstanding command iocb is an abort
9978 * request, this function issues abort out unconditionally. This function is
9979 * called with hbalock held. The function returns 0 when it fails due to
9980 * memory allocation failure or when the command iocb is an abort request.
e59058c4 9981 **/
5af5eee7
JS
9982static int
9983lpfc_sli_abort_iotag_issue(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2e0fef85 9984 struct lpfc_iocbq *cmdiocb)
dea3101e 9985{
2e0fef85 9986 struct lpfc_vport *vport = cmdiocb->vport;
0bd4ca25 9987 struct lpfc_iocbq *abtsiocbp;
dea3101e
JB
9988 IOCB_t *icmd = NULL;
9989 IOCB_t *iabt = NULL;
9bd2bff5 9990 int ring_number;
5af5eee7 9991 int retval;
7e56aa25 9992 unsigned long iflags;
07951076 9993
1c2ba475
JT
9994 lockdep_assert_held(&phba->hbalock);
9995
92d7f7b0
JS
9996 /*
9997 * There are certain command types we don't want to abort. And we
9998 * don't want to abort commands that are already in the process of
9999 * being aborted.
07951076
JS
10000 */
10001 icmd = &cmdiocb->iocb;
2e0fef85 10002 if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
92d7f7b0
JS
10003 icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
10004 (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
07951076
JS
10005 return 0;
10006
dea3101e 10007 /* issue ABTS for this IOCB based on iotag */
92d7f7b0 10008 abtsiocbp = __lpfc_sli_get_iocbq(phba);
dea3101e
JB
10009 if (abtsiocbp == NULL)
10010 return 0;
dea3101e 10011
07951076 10012 /* This signals the response to set the correct status
341af102 10013 * before calling the completion handler
07951076
JS
10014 */
10015 cmdiocb->iocb_flag |= LPFC_DRIVER_ABORTED;
10016
dea3101e 10017 iabt = &abtsiocbp->iocb;
07951076
JS
10018 iabt->un.acxri.abortType = ABORT_TYPE_ABTS;
10019 iabt->un.acxri.abortContextTag = icmd->ulpContext;
45ed1190 10020 if (phba->sli_rev == LPFC_SLI_REV4) {
da0436e9 10021 iabt->un.acxri.abortIoTag = cmdiocb->sli4_xritag;
45ed1190
JS
10022 iabt->un.acxri.abortContextTag = cmdiocb->iotag;
10023 }
da0436e9
JS
10024 else
10025 iabt->un.acxri.abortIoTag = icmd->ulpIoTag;
07951076
JS
10026 iabt->ulpLe = 1;
10027 iabt->ulpClass = icmd->ulpClass;
dea3101e 10028
5ffc266e
JS
10029 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
10030 abtsiocbp->fcp_wqidx = cmdiocb->fcp_wqidx;
341af102
JS
10031 if (cmdiocb->iocb_flag & LPFC_IO_FCP)
10032 abtsiocbp->iocb_flag |= LPFC_USE_FCPWQIDX;
9bd2bff5
JS
10033 if (cmdiocb->iocb_flag & LPFC_IO_FOF)
10034 abtsiocbp->iocb_flag |= LPFC_IO_FOF;
5ffc266e 10035
2e0fef85 10036 if (phba->link_state >= LPFC_LINK_UP)
07951076
JS
10037 iabt->ulpCommand = CMD_ABORT_XRI_CN;
10038 else
10039 iabt->ulpCommand = CMD_CLOSE_XRI_CN;
dea3101e 10040
07951076 10041 abtsiocbp->iocb_cmpl = lpfc_sli_abort_els_cmpl;
e6c6acc0 10042 abtsiocbp->vport = vport;
5b8bd0c9 10043
e8b62011
JS
10044 lpfc_printf_vlog(vport, KERN_INFO, LOG_SLI,
10045 "0339 Abort xri x%x, original iotag x%x, "
10046 "abort cmd iotag x%x\n",
2a9bf3d0 10047 iabt->un.acxri.abortIoTag,
e8b62011 10048 iabt->un.acxri.abortContextTag,
2a9bf3d0 10049 abtsiocbp->iotag);
7e56aa25
JS
10050
10051 if (phba->sli_rev == LPFC_SLI_REV4) {
9bd2bff5
JS
10052 ring_number =
10053 lpfc_sli_calc_ring(phba, pring->ringno, abtsiocbp);
10054 if (unlikely(ring_number == LPFC_HBA_ERROR))
10055 return 0;
10056 pring = &phba->sli.ring[ring_number];
7e56aa25
JS
10057 /* Note: both hbalock and ring_lock need to be set here */
10058 spin_lock_irqsave(&pring->ring_lock, iflags);
10059 retval = __lpfc_sli_issue_iocb(phba, pring->ringno,
10060 abtsiocbp, 0);
10061 spin_unlock_irqrestore(&pring->ring_lock, iflags);
10062 } else {
10063 retval = __lpfc_sli_issue_iocb(phba, pring->ringno,
10064 abtsiocbp, 0);
10065 }
dea3101e 10066
d7c255b2
JS
10067 if (retval)
10068 __lpfc_sli_release_iocbq(phba, abtsiocbp);
5af5eee7
JS
10069
10070 /*
10071 * Caller to this routine should check for IOCB_ERROR
10072 * and handle it properly. This routine no longer removes
10073 * iocb off txcmplq and call compl in case of IOCB_ERROR.
10074 */
10075 return retval;
10076}
10077
10078/**
10079 * lpfc_sli_issue_abort_iotag - Abort function for a command iocb
10080 * @phba: Pointer to HBA context object.
10081 * @pring: Pointer to driver SLI ring object.
10082 * @cmdiocb: Pointer to driver command iocb object.
10083 *
10084 * This function issues an abort iocb for the provided command iocb. In case
10085 * of unloading, the abort iocb will not be issued to commands on the ELS
10086 * ring. Instead, the callback function shall be changed to those commands
10087 * so that nothing happens when them finishes. This function is called with
10088 * hbalock held. The function returns 0 when the command iocb is an abort
10089 * request.
10090 **/
10091int
10092lpfc_sli_issue_abort_iotag(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
10093 struct lpfc_iocbq *cmdiocb)
10094{
10095 struct lpfc_vport *vport = cmdiocb->vport;
10096 int retval = IOCB_ERROR;
10097 IOCB_t *icmd = NULL;
10098
1c2ba475
JT
10099 lockdep_assert_held(&phba->hbalock);
10100
5af5eee7
JS
10101 /*
10102 * There are certain command types we don't want to abort. And we
10103 * don't want to abort commands that are already in the process of
10104 * being aborted.
10105 */
10106 icmd = &cmdiocb->iocb;
10107 if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
10108 icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
10109 (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
10110 return 0;
10111
10112 /*
10113 * If we're unloading, don't abort iocb on the ELS ring, but change
10114 * the callback so that nothing happens when it finishes.
10115 */
10116 if ((vport->load_flag & FC_UNLOADING) &&
10117 (pring->ringno == LPFC_ELS_RING)) {
10118 if (cmdiocb->iocb_flag & LPFC_IO_FABRIC)
10119 cmdiocb->fabric_iocb_cmpl = lpfc_ignore_els_cmpl;
10120 else
10121 cmdiocb->iocb_cmpl = lpfc_ignore_els_cmpl;
10122 goto abort_iotag_exit;
10123 }
10124
10125 /* Now, we try to issue the abort to the cmdiocb out */
10126 retval = lpfc_sli_abort_iotag_issue(phba, pring, cmdiocb);
10127
07951076 10128abort_iotag_exit:
2e0fef85
JS
10129 /*
10130 * Caller to this routine should check for IOCB_ERROR
10131 * and handle it properly. This routine no longer removes
10132 * iocb off txcmplq and call compl in case of IOCB_ERROR.
07951076 10133 */
2e0fef85 10134 return retval;
dea3101e
JB
10135}
10136
5af5eee7
JS
10137/**
10138 * lpfc_sli_hba_iocb_abort - Abort all iocbs to an hba.
10139 * @phba: pointer to lpfc HBA data structure.
10140 *
10141 * This routine will abort all pending and outstanding iocbs to an HBA.
10142 **/
10143void
10144lpfc_sli_hba_iocb_abort(struct lpfc_hba *phba)
10145{
10146 struct lpfc_sli *psli = &phba->sli;
10147 struct lpfc_sli_ring *pring;
10148 int i;
10149
10150 for (i = 0; i < psli->num_rings; i++) {
10151 pring = &psli->ring[i];
db55fba8 10152 lpfc_sli_abort_iocb_ring(phba, pring);
5af5eee7
JS
10153 }
10154}
10155
e59058c4 10156/**
3621a710 10157 * lpfc_sli_validate_fcp_iocb - find commands associated with a vport or LUN
e59058c4
JS
10158 * @iocbq: Pointer to driver iocb object.
10159 * @vport: Pointer to driver virtual port object.
10160 * @tgt_id: SCSI ID of the target.
10161 * @lun_id: LUN ID of the scsi device.
10162 * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST
10163 *
3621a710 10164 * This function acts as an iocb filter for functions which abort or count
e59058c4
JS
10165 * all FCP iocbs pending on a lun/SCSI target/SCSI host. It will return
10166 * 0 if the filtering criteria is met for the given iocb and will return
10167 * 1 if the filtering criteria is not met.
10168 * If ctx_cmd == LPFC_CTX_LUN, the function returns 0 only if the
10169 * given iocb is for the SCSI device specified by vport, tgt_id and
10170 * lun_id parameter.
10171 * If ctx_cmd == LPFC_CTX_TGT, the function returns 0 only if the
10172 * given iocb is for the SCSI target specified by vport and tgt_id
10173 * parameters.
10174 * If ctx_cmd == LPFC_CTX_HOST, the function returns 0 only if the
10175 * given iocb is for the SCSI host associated with the given vport.
10176 * This function is called with no locks held.
10177 **/
dea3101e 10178static int
51ef4c26
JS
10179lpfc_sli_validate_fcp_iocb(struct lpfc_iocbq *iocbq, struct lpfc_vport *vport,
10180 uint16_t tgt_id, uint64_t lun_id,
0bd4ca25 10181 lpfc_ctx_cmd ctx_cmd)
dea3101e 10182{
0bd4ca25 10183 struct lpfc_scsi_buf *lpfc_cmd;
dea3101e
JB
10184 int rc = 1;
10185
0bd4ca25
JSEC
10186 if (!(iocbq->iocb_flag & LPFC_IO_FCP))
10187 return rc;
10188
51ef4c26
JS
10189 if (iocbq->vport != vport)
10190 return rc;
10191
0bd4ca25 10192 lpfc_cmd = container_of(iocbq, struct lpfc_scsi_buf, cur_iocbq);
0bd4ca25 10193
495a714c 10194 if (lpfc_cmd->pCmd == NULL)
dea3101e
JB
10195 return rc;
10196
10197 switch (ctx_cmd) {
10198 case LPFC_CTX_LUN:
495a714c
JS
10199 if ((lpfc_cmd->rdata->pnode) &&
10200 (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id) &&
10201 (scsilun_to_int(&lpfc_cmd->fcp_cmnd->fcp_lun) == lun_id))
dea3101e
JB
10202 rc = 0;
10203 break;
10204 case LPFC_CTX_TGT:
495a714c
JS
10205 if ((lpfc_cmd->rdata->pnode) &&
10206 (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id))
dea3101e
JB
10207 rc = 0;
10208 break;
dea3101e
JB
10209 case LPFC_CTX_HOST:
10210 rc = 0;
10211 break;
10212 default:
10213 printk(KERN_ERR "%s: Unknown context cmd type, value %d\n",
cadbd4a5 10214 __func__, ctx_cmd);
dea3101e
JB
10215 break;
10216 }
10217
10218 return rc;
10219}
10220
e59058c4 10221/**
3621a710 10222 * lpfc_sli_sum_iocb - Function to count the number of FCP iocbs pending
e59058c4
JS
10223 * @vport: Pointer to virtual port.
10224 * @tgt_id: SCSI ID of the target.
10225 * @lun_id: LUN ID of the scsi device.
10226 * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
10227 *
10228 * This function returns number of FCP commands pending for the vport.
10229 * When ctx_cmd == LPFC_CTX_LUN, the function returns number of FCP
10230 * commands pending on the vport associated with SCSI device specified
10231 * by tgt_id and lun_id parameters.
10232 * When ctx_cmd == LPFC_CTX_TGT, the function returns number of FCP
10233 * commands pending on the vport associated with SCSI target specified
10234 * by tgt_id parameter.
10235 * When ctx_cmd == LPFC_CTX_HOST, the function returns number of FCP
10236 * commands pending on the vport.
10237 * This function returns the number of iocbs which satisfy the filter.
10238 * This function is called without any lock held.
10239 **/
dea3101e 10240int
51ef4c26
JS
10241lpfc_sli_sum_iocb(struct lpfc_vport *vport, uint16_t tgt_id, uint64_t lun_id,
10242 lpfc_ctx_cmd ctx_cmd)
dea3101e 10243{
51ef4c26 10244 struct lpfc_hba *phba = vport->phba;
0bd4ca25
JSEC
10245 struct lpfc_iocbq *iocbq;
10246 int sum, i;
dea3101e 10247
31979008 10248 spin_lock_irq(&phba->hbalock);
0bd4ca25
JSEC
10249 for (i = 1, sum = 0; i <= phba->sli.last_iotag; i++) {
10250 iocbq = phba->sli.iocbq_lookup[i];
dea3101e 10251
51ef4c26
JS
10252 if (lpfc_sli_validate_fcp_iocb (iocbq, vport, tgt_id, lun_id,
10253 ctx_cmd) == 0)
0bd4ca25 10254 sum++;
dea3101e 10255 }
31979008 10256 spin_unlock_irq(&phba->hbalock);
0bd4ca25 10257
dea3101e
JB
10258 return sum;
10259}
10260
e59058c4 10261/**
3621a710 10262 * lpfc_sli_abort_fcp_cmpl - Completion handler function for aborted FCP IOCBs
e59058c4
JS
10263 * @phba: Pointer to HBA context object
10264 * @cmdiocb: Pointer to command iocb object.
10265 * @rspiocb: Pointer to response iocb object.
10266 *
10267 * This function is called when an aborted FCP iocb completes. This
10268 * function is called by the ring event handler with no lock held.
10269 * This function frees the iocb.
10270 **/
5eb95af0 10271void
2e0fef85
JS
10272lpfc_sli_abort_fcp_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
10273 struct lpfc_iocbq *rspiocb)
5eb95af0 10274{
cb69f7de 10275 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
8e668af5 10276 "3096 ABORT_XRI_CN completing on rpi x%x "
cb69f7de
JS
10277 "original iotag x%x, abort cmd iotag x%x "
10278 "status 0x%x, reason 0x%x\n",
10279 cmdiocb->iocb.un.acxri.abortContextTag,
10280 cmdiocb->iocb.un.acxri.abortIoTag,
10281 cmdiocb->iotag, rspiocb->iocb.ulpStatus,
10282 rspiocb->iocb.un.ulpWord[4]);
604a3e30 10283 lpfc_sli_release_iocbq(phba, cmdiocb);
5eb95af0
JSEC
10284 return;
10285}
10286
e59058c4 10287/**
3621a710 10288 * lpfc_sli_abort_iocb - issue abort for all commands on a host/target/LUN
e59058c4
JS
10289 * @vport: Pointer to virtual port.
10290 * @pring: Pointer to driver SLI ring object.
10291 * @tgt_id: SCSI ID of the target.
10292 * @lun_id: LUN ID of the scsi device.
10293 * @abort_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
10294 *
10295 * This function sends an abort command for every SCSI command
10296 * associated with the given virtual port pending on the ring
10297 * filtered by lpfc_sli_validate_fcp_iocb function.
10298 * When abort_cmd == LPFC_CTX_LUN, the function sends abort only to the
10299 * FCP iocbs associated with lun specified by tgt_id and lun_id
10300 * parameters
10301 * When abort_cmd == LPFC_CTX_TGT, the function sends abort only to the
10302 * FCP iocbs associated with SCSI target specified by tgt_id parameter.
10303 * When abort_cmd == LPFC_CTX_HOST, the function sends abort to all
10304 * FCP iocbs associated with virtual port.
10305 * This function returns number of iocbs it failed to abort.
10306 * This function is called with no locks held.
10307 **/
dea3101e 10308int
51ef4c26
JS
10309lpfc_sli_abort_iocb(struct lpfc_vport *vport, struct lpfc_sli_ring *pring,
10310 uint16_t tgt_id, uint64_t lun_id, lpfc_ctx_cmd abort_cmd)
dea3101e 10311{
51ef4c26 10312 struct lpfc_hba *phba = vport->phba;
0bd4ca25
JSEC
10313 struct lpfc_iocbq *iocbq;
10314 struct lpfc_iocbq *abtsiocb;
dea3101e 10315 IOCB_t *cmd = NULL;
dea3101e 10316 int errcnt = 0, ret_val = 0;
0bd4ca25 10317 int i;
dea3101e 10318
0bd4ca25
JSEC
10319 for (i = 1; i <= phba->sli.last_iotag; i++) {
10320 iocbq = phba->sli.iocbq_lookup[i];
dea3101e 10321
51ef4c26 10322 if (lpfc_sli_validate_fcp_iocb(iocbq, vport, tgt_id, lun_id,
2e0fef85 10323 abort_cmd) != 0)
dea3101e
JB
10324 continue;
10325
afbd8d88
JS
10326 /*
10327 * If the iocbq is already being aborted, don't take a second
10328 * action, but do count it.
10329 */
10330 if (iocbq->iocb_flag & LPFC_DRIVER_ABORTED)
10331 continue;
10332
dea3101e 10333 /* issue ABTS for this IOCB based on iotag */
0bd4ca25 10334 abtsiocb = lpfc_sli_get_iocbq(phba);
dea3101e
JB
10335 if (abtsiocb == NULL) {
10336 errcnt++;
10337 continue;
10338 }
dea3101e 10339
afbd8d88
JS
10340 /* indicate the IO is being aborted by the driver. */
10341 iocbq->iocb_flag |= LPFC_DRIVER_ABORTED;
10342
0bd4ca25 10343 cmd = &iocbq->iocb;
dea3101e
JB
10344 abtsiocb->iocb.un.acxri.abortType = ABORT_TYPE_ABTS;
10345 abtsiocb->iocb.un.acxri.abortContextTag = cmd->ulpContext;
da0436e9
JS
10346 if (phba->sli_rev == LPFC_SLI_REV4)
10347 abtsiocb->iocb.un.acxri.abortIoTag = iocbq->sli4_xritag;
10348 else
10349 abtsiocb->iocb.un.acxri.abortIoTag = cmd->ulpIoTag;
dea3101e
JB
10350 abtsiocb->iocb.ulpLe = 1;
10351 abtsiocb->iocb.ulpClass = cmd->ulpClass;
afbd8d88 10352 abtsiocb->vport = vport;
dea3101e 10353
5ffc266e
JS
10354 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
10355 abtsiocb->fcp_wqidx = iocbq->fcp_wqidx;
341af102
JS
10356 if (iocbq->iocb_flag & LPFC_IO_FCP)
10357 abtsiocb->iocb_flag |= LPFC_USE_FCPWQIDX;
9bd2bff5
JS
10358 if (iocbq->iocb_flag & LPFC_IO_FOF)
10359 abtsiocb->iocb_flag |= LPFC_IO_FOF;
5ffc266e 10360
2e0fef85 10361 if (lpfc_is_link_up(phba))
dea3101e
JB
10362 abtsiocb->iocb.ulpCommand = CMD_ABORT_XRI_CN;
10363 else
10364 abtsiocb->iocb.ulpCommand = CMD_CLOSE_XRI_CN;
10365
5eb95af0
JSEC
10366 /* Setup callback routine and issue the command. */
10367 abtsiocb->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
da0436e9
JS
10368 ret_val = lpfc_sli_issue_iocb(phba, pring->ringno,
10369 abtsiocb, 0);
dea3101e 10370 if (ret_val == IOCB_ERROR) {
604a3e30 10371 lpfc_sli_release_iocbq(phba, abtsiocb);
dea3101e
JB
10372 errcnt++;
10373 continue;
10374 }
10375 }
10376
10377 return errcnt;
10378}
10379
98912dda
JS
10380/**
10381 * lpfc_sli_abort_taskmgmt - issue abort for all commands on a host/target/LUN
10382 * @vport: Pointer to virtual port.
10383 * @pring: Pointer to driver SLI ring object.
10384 * @tgt_id: SCSI ID of the target.
10385 * @lun_id: LUN ID of the scsi device.
10386 * @taskmgmt_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
10387 *
10388 * This function sends an abort command for every SCSI command
10389 * associated with the given virtual port pending on the ring
10390 * filtered by lpfc_sli_validate_fcp_iocb function.
10391 * When taskmgmt_cmd == LPFC_CTX_LUN, the function sends abort only to the
10392 * FCP iocbs associated with lun specified by tgt_id and lun_id
10393 * parameters
10394 * When taskmgmt_cmd == LPFC_CTX_TGT, the function sends abort only to the
10395 * FCP iocbs associated with SCSI target specified by tgt_id parameter.
10396 * When taskmgmt_cmd == LPFC_CTX_HOST, the function sends abort to all
10397 * FCP iocbs associated with virtual port.
10398 * This function returns number of iocbs it aborted .
10399 * This function is called with no locks held right after a taskmgmt
10400 * command is sent.
10401 **/
10402int
10403lpfc_sli_abort_taskmgmt(struct lpfc_vport *vport, struct lpfc_sli_ring *pring,
10404 uint16_t tgt_id, uint64_t lun_id, lpfc_ctx_cmd cmd)
10405{
10406 struct lpfc_hba *phba = vport->phba;
8c50d25c 10407 struct lpfc_scsi_buf *lpfc_cmd;
98912dda 10408 struct lpfc_iocbq *abtsiocbq;
8c50d25c 10409 struct lpfc_nodelist *ndlp;
98912dda
JS
10410 struct lpfc_iocbq *iocbq;
10411 IOCB_t *icmd;
10412 int sum, i, ret_val;
10413 unsigned long iflags;
10414 struct lpfc_sli_ring *pring_s4;
10415 uint32_t ring_number;
10416
10417 spin_lock_irq(&phba->hbalock);
10418
10419 /* all I/Os are in process of being flushed */
10420 if (phba->hba_flag & HBA_FCP_IOQ_FLUSH) {
10421 spin_unlock_irq(&phba->hbalock);
10422 return 0;
10423 }
10424 sum = 0;
10425
10426 for (i = 1; i <= phba->sli.last_iotag; i++) {
10427 iocbq = phba->sli.iocbq_lookup[i];
10428
10429 if (lpfc_sli_validate_fcp_iocb(iocbq, vport, tgt_id, lun_id,
10430 cmd) != 0)
10431 continue;
10432
10433 /*
10434 * If the iocbq is already being aborted, don't take a second
10435 * action, but do count it.
10436 */
10437 if (iocbq->iocb_flag & LPFC_DRIVER_ABORTED)
10438 continue;
10439
10440 /* issue ABTS for this IOCB based on iotag */
10441 abtsiocbq = __lpfc_sli_get_iocbq(phba);
10442 if (abtsiocbq == NULL)
10443 continue;
10444
10445 icmd = &iocbq->iocb;
10446 abtsiocbq->iocb.un.acxri.abortType = ABORT_TYPE_ABTS;
10447 abtsiocbq->iocb.un.acxri.abortContextTag = icmd->ulpContext;
10448 if (phba->sli_rev == LPFC_SLI_REV4)
10449 abtsiocbq->iocb.un.acxri.abortIoTag =
10450 iocbq->sli4_xritag;
10451 else
10452 abtsiocbq->iocb.un.acxri.abortIoTag = icmd->ulpIoTag;
10453 abtsiocbq->iocb.ulpLe = 1;
10454 abtsiocbq->iocb.ulpClass = icmd->ulpClass;
10455 abtsiocbq->vport = vport;
10456
10457 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
10458 abtsiocbq->fcp_wqidx = iocbq->fcp_wqidx;
10459 if (iocbq->iocb_flag & LPFC_IO_FCP)
10460 abtsiocbq->iocb_flag |= LPFC_USE_FCPWQIDX;
9bd2bff5
JS
10461 if (iocbq->iocb_flag & LPFC_IO_FOF)
10462 abtsiocbq->iocb_flag |= LPFC_IO_FOF;
98912dda 10463
8c50d25c
JS
10464 lpfc_cmd = container_of(iocbq, struct lpfc_scsi_buf, cur_iocbq);
10465 ndlp = lpfc_cmd->rdata->pnode;
10466
10467 if (lpfc_is_link_up(phba) &&
10468 (ndlp && ndlp->nlp_state == NLP_STE_MAPPED_NODE))
98912dda
JS
10469 abtsiocbq->iocb.ulpCommand = CMD_ABORT_XRI_CN;
10470 else
10471 abtsiocbq->iocb.ulpCommand = CMD_CLOSE_XRI_CN;
10472
10473 /* Setup callback routine and issue the command. */
10474 abtsiocbq->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
10475
10476 /*
10477 * Indicate the IO is being aborted by the driver and set
10478 * the caller's flag into the aborted IO.
10479 */
10480 iocbq->iocb_flag |= LPFC_DRIVER_ABORTED;
10481
10482 if (phba->sli_rev == LPFC_SLI_REV4) {
10483 ring_number = MAX_SLI3_CONFIGURED_RINGS +
10484 iocbq->fcp_wqidx;
10485 pring_s4 = &phba->sli.ring[ring_number];
10486 /* Note: both hbalock and ring_lock must be set here */
10487 spin_lock_irqsave(&pring_s4->ring_lock, iflags);
10488 ret_val = __lpfc_sli_issue_iocb(phba, pring_s4->ringno,
10489 abtsiocbq, 0);
10490 spin_unlock_irqrestore(&pring_s4->ring_lock, iflags);
10491 } else {
10492 ret_val = __lpfc_sli_issue_iocb(phba, pring->ringno,
10493 abtsiocbq, 0);
10494 }
10495
10496
10497 if (ret_val == IOCB_ERROR)
10498 __lpfc_sli_release_iocbq(phba, abtsiocbq);
10499 else
10500 sum++;
10501 }
10502 spin_unlock_irq(&phba->hbalock);
10503 return sum;
10504}
10505
e59058c4 10506/**
3621a710 10507 * lpfc_sli_wake_iocb_wait - lpfc_sli_issue_iocb_wait's completion handler
e59058c4
JS
10508 * @phba: Pointer to HBA context object.
10509 * @cmdiocbq: Pointer to command iocb.
10510 * @rspiocbq: Pointer to response iocb.
10511 *
10512 * This function is the completion handler for iocbs issued using
10513 * lpfc_sli_issue_iocb_wait function. This function is called by the
10514 * ring event handler function without any lock held. This function
10515 * can be called from both worker thread context and interrupt
10516 * context. This function also can be called from other thread which
10517 * cleans up the SLI layer objects.
10518 * This function copy the contents of the response iocb to the
10519 * response iocb memory object provided by the caller of
10520 * lpfc_sli_issue_iocb_wait and then wakes up the thread which
10521 * sleeps for the iocb completion.
10522 **/
68876920
JSEC
10523static void
10524lpfc_sli_wake_iocb_wait(struct lpfc_hba *phba,
10525 struct lpfc_iocbq *cmdiocbq,
10526 struct lpfc_iocbq *rspiocbq)
dea3101e 10527{
68876920
JSEC
10528 wait_queue_head_t *pdone_q;
10529 unsigned long iflags;
0f65ff68 10530 struct lpfc_scsi_buf *lpfc_cmd;
dea3101e 10531
2e0fef85 10532 spin_lock_irqsave(&phba->hbalock, iflags);
5a0916b4
JS
10533 if (cmdiocbq->iocb_flag & LPFC_IO_WAKE_TMO) {
10534
10535 /*
10536 * A time out has occurred for the iocb. If a time out
10537 * completion handler has been supplied, call it. Otherwise,
10538 * just free the iocbq.
10539 */
10540
10541 spin_unlock_irqrestore(&phba->hbalock, iflags);
10542 cmdiocbq->iocb_cmpl = cmdiocbq->wait_iocb_cmpl;
10543 cmdiocbq->wait_iocb_cmpl = NULL;
10544 if (cmdiocbq->iocb_cmpl)
10545 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq, NULL);
10546 else
10547 lpfc_sli_release_iocbq(phba, cmdiocbq);
10548 return;
10549 }
10550
68876920
JSEC
10551 cmdiocbq->iocb_flag |= LPFC_IO_WAKE;
10552 if (cmdiocbq->context2 && rspiocbq)
10553 memcpy(&((struct lpfc_iocbq *)cmdiocbq->context2)->iocb,
10554 &rspiocbq->iocb, sizeof(IOCB_t));
10555
0f65ff68
JS
10556 /* Set the exchange busy flag for task management commands */
10557 if ((cmdiocbq->iocb_flag & LPFC_IO_FCP) &&
10558 !(cmdiocbq->iocb_flag & LPFC_IO_LIBDFC)) {
10559 lpfc_cmd = container_of(cmdiocbq, struct lpfc_scsi_buf,
10560 cur_iocbq);
10561 lpfc_cmd->exch_busy = rspiocbq->iocb_flag & LPFC_EXCHANGE_BUSY;
10562 }
10563
68876920 10564 pdone_q = cmdiocbq->context_un.wait_queue;
68876920
JSEC
10565 if (pdone_q)
10566 wake_up(pdone_q);
858c9f6c 10567 spin_unlock_irqrestore(&phba->hbalock, iflags);
dea3101e
JB
10568 return;
10569}
10570
d11e31dd
JS
10571/**
10572 * lpfc_chk_iocb_flg - Test IOCB flag with lock held.
10573 * @phba: Pointer to HBA context object..
10574 * @piocbq: Pointer to command iocb.
10575 * @flag: Flag to test.
10576 *
10577 * This routine grabs the hbalock and then test the iocb_flag to
10578 * see if the passed in flag is set.
10579 * Returns:
10580 * 1 if flag is set.
10581 * 0 if flag is not set.
10582 **/
10583static int
10584lpfc_chk_iocb_flg(struct lpfc_hba *phba,
10585 struct lpfc_iocbq *piocbq, uint32_t flag)
10586{
10587 unsigned long iflags;
10588 int ret;
10589
10590 spin_lock_irqsave(&phba->hbalock, iflags);
10591 ret = piocbq->iocb_flag & flag;
10592 spin_unlock_irqrestore(&phba->hbalock, iflags);
10593 return ret;
10594
10595}
10596
e59058c4 10597/**
3621a710 10598 * lpfc_sli_issue_iocb_wait - Synchronous function to issue iocb commands
e59058c4
JS
10599 * @phba: Pointer to HBA context object..
10600 * @pring: Pointer to sli ring.
10601 * @piocb: Pointer to command iocb.
10602 * @prspiocbq: Pointer to response iocb.
10603 * @timeout: Timeout in number of seconds.
10604 *
10605 * This function issues the iocb to firmware and waits for the
5a0916b4
JS
10606 * iocb to complete. The iocb_cmpl field of the shall be used
10607 * to handle iocbs which time out. If the field is NULL, the
10608 * function shall free the iocbq structure. If more clean up is
10609 * needed, the caller is expected to provide a completion function
10610 * that will provide the needed clean up. If the iocb command is
10611 * not completed within timeout seconds, the function will either
10612 * free the iocbq structure (if iocb_cmpl == NULL) or execute the
10613 * completion function set in the iocb_cmpl field and then return
10614 * a status of IOCB_TIMEDOUT. The caller should not free the iocb
10615 * resources if this function returns IOCB_TIMEDOUT.
e59058c4
JS
10616 * The function waits for the iocb completion using an
10617 * non-interruptible wait.
10618 * This function will sleep while waiting for iocb completion.
10619 * So, this function should not be called from any context which
10620 * does not allow sleeping. Due to the same reason, this function
10621 * cannot be called with interrupt disabled.
10622 * This function assumes that the iocb completions occur while
10623 * this function sleep. So, this function cannot be called from
10624 * the thread which process iocb completion for this ring.
10625 * This function clears the iocb_flag of the iocb object before
10626 * issuing the iocb and the iocb completion handler sets this
10627 * flag and wakes this thread when the iocb completes.
10628 * The contents of the response iocb will be copied to prspiocbq
10629 * by the completion handler when the command completes.
10630 * This function returns IOCB_SUCCESS when success.
10631 * This function is called with no lock held.
10632 **/
dea3101e 10633int
2e0fef85 10634lpfc_sli_issue_iocb_wait(struct lpfc_hba *phba,
da0436e9 10635 uint32_t ring_number,
2e0fef85
JS
10636 struct lpfc_iocbq *piocb,
10637 struct lpfc_iocbq *prspiocbq,
68876920 10638 uint32_t timeout)
dea3101e 10639{
7259f0d0 10640 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
68876920
JSEC
10641 long timeleft, timeout_req = 0;
10642 int retval = IOCB_SUCCESS;
875fbdfe 10643 uint32_t creg_val;
0e9bb8d7
JS
10644 struct lpfc_iocbq *iocb;
10645 int txq_cnt = 0;
10646 int txcmplq_cnt = 0;
2a9bf3d0 10647 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
5a0916b4
JS
10648 unsigned long iflags;
10649 bool iocb_completed = true;
10650
dea3101e 10651 /*
68876920
JSEC
10652 * If the caller has provided a response iocbq buffer, then context2
10653 * is NULL or its an error.
dea3101e 10654 */
68876920
JSEC
10655 if (prspiocbq) {
10656 if (piocb->context2)
10657 return IOCB_ERROR;
10658 piocb->context2 = prspiocbq;
dea3101e
JB
10659 }
10660
5a0916b4 10661 piocb->wait_iocb_cmpl = piocb->iocb_cmpl;
68876920
JSEC
10662 piocb->iocb_cmpl = lpfc_sli_wake_iocb_wait;
10663 piocb->context_un.wait_queue = &done_q;
5a0916b4 10664 piocb->iocb_flag &= ~(LPFC_IO_WAKE | LPFC_IO_WAKE_TMO);
dea3101e 10665
875fbdfe 10666 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
9940b97b
JS
10667 if (lpfc_readl(phba->HCregaddr, &creg_val))
10668 return IOCB_ERROR;
875fbdfe
JSEC
10669 creg_val |= (HC_R0INT_ENA << LPFC_FCP_RING);
10670 writel(creg_val, phba->HCregaddr);
10671 readl(phba->HCregaddr); /* flush */
10672 }
10673
2a9bf3d0
JS
10674 retval = lpfc_sli_issue_iocb(phba, ring_number, piocb,
10675 SLI_IOCB_RET_IOCB);
68876920 10676 if (retval == IOCB_SUCCESS) {
256ec0d0 10677 timeout_req = msecs_to_jiffies(timeout * 1000);
68876920 10678 timeleft = wait_event_timeout(done_q,
d11e31dd 10679 lpfc_chk_iocb_flg(phba, piocb, LPFC_IO_WAKE),
68876920 10680 timeout_req);
5a0916b4
JS
10681 spin_lock_irqsave(&phba->hbalock, iflags);
10682 if (!(piocb->iocb_flag & LPFC_IO_WAKE)) {
10683
10684 /*
10685 * IOCB timed out. Inform the wake iocb wait
10686 * completion function and set local status
10687 */
dea3101e 10688
5a0916b4
JS
10689 iocb_completed = false;
10690 piocb->iocb_flag |= LPFC_IO_WAKE_TMO;
10691 }
10692 spin_unlock_irqrestore(&phba->hbalock, iflags);
10693 if (iocb_completed) {
7054a606 10694 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
e8b62011 10695 "0331 IOCB wake signaled\n");
53151bbb
JS
10696 /* Note: we are not indicating if the IOCB has a success
10697 * status or not - that's for the caller to check.
10698 * IOCB_SUCCESS means just that the command was sent and
10699 * completed. Not that it completed successfully.
10700 * */
7054a606 10701 } else if (timeleft == 0) {
68876920 10702 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011
JS
10703 "0338 IOCB wait timeout error - no "
10704 "wake response Data x%x\n", timeout);
68876920 10705 retval = IOCB_TIMEDOUT;
7054a606 10706 } else {
68876920 10707 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011
JS
10708 "0330 IOCB wake NOT set, "
10709 "Data x%x x%lx\n",
68876920
JSEC
10710 timeout, (timeleft / jiffies));
10711 retval = IOCB_TIMEDOUT;
dea3101e 10712 }
2a9bf3d0 10713 } else if (retval == IOCB_BUSY) {
0e9bb8d7
JS
10714 if (phba->cfg_log_verbose & LOG_SLI) {
10715 list_for_each_entry(iocb, &pring->txq, list) {
10716 txq_cnt++;
10717 }
10718 list_for_each_entry(iocb, &pring->txcmplq, list) {
10719 txcmplq_cnt++;
10720 }
10721 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
10722 "2818 Max IOCBs %d txq cnt %d txcmplq cnt %d\n",
10723 phba->iocb_cnt, txq_cnt, txcmplq_cnt);
10724 }
2a9bf3d0 10725 return retval;
68876920
JSEC
10726 } else {
10727 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
d7c255b2 10728 "0332 IOCB wait issue failed, Data x%x\n",
e8b62011 10729 retval);
68876920 10730 retval = IOCB_ERROR;
dea3101e
JB
10731 }
10732
875fbdfe 10733 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
9940b97b
JS
10734 if (lpfc_readl(phba->HCregaddr, &creg_val))
10735 return IOCB_ERROR;
875fbdfe
JSEC
10736 creg_val &= ~(HC_R0INT_ENA << LPFC_FCP_RING);
10737 writel(creg_val, phba->HCregaddr);
10738 readl(phba->HCregaddr); /* flush */
10739 }
10740
68876920
JSEC
10741 if (prspiocbq)
10742 piocb->context2 = NULL;
10743
10744 piocb->context_un.wait_queue = NULL;
10745 piocb->iocb_cmpl = NULL;
dea3101e
JB
10746 return retval;
10747}
68876920 10748
e59058c4 10749/**
3621a710 10750 * lpfc_sli_issue_mbox_wait - Synchronous function to issue mailbox
e59058c4
JS
10751 * @phba: Pointer to HBA context object.
10752 * @pmboxq: Pointer to driver mailbox object.
10753 * @timeout: Timeout in number of seconds.
10754 *
10755 * This function issues the mailbox to firmware and waits for the
10756 * mailbox command to complete. If the mailbox command is not
10757 * completed within timeout seconds, it returns MBX_TIMEOUT.
10758 * The function waits for the mailbox completion using an
10759 * interruptible wait. If the thread is woken up due to a
10760 * signal, MBX_TIMEOUT error is returned to the caller. Caller
10761 * should not free the mailbox resources, if this function returns
10762 * MBX_TIMEOUT.
10763 * This function will sleep while waiting for mailbox completion.
10764 * So, this function should not be called from any context which
10765 * does not allow sleeping. Due to the same reason, this function
10766 * cannot be called with interrupt disabled.
10767 * This function assumes that the mailbox completion occurs while
10768 * this function sleep. So, this function cannot be called from
10769 * the worker thread which processes mailbox completion.
10770 * This function is called in the context of HBA management
10771 * applications.
10772 * This function returns MBX_SUCCESS when successful.
10773 * This function is called with no lock held.
10774 **/
dea3101e 10775int
2e0fef85 10776lpfc_sli_issue_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq,
dea3101e
JB
10777 uint32_t timeout)
10778{
7259f0d0 10779 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
b230b8a2 10780 MAILBOX_t *mb = NULL;
dea3101e 10781 int retval;
858c9f6c 10782 unsigned long flag;
dea3101e 10783
b230b8a2 10784 /* The caller might set context1 for extended buffer */
98c9ea5c 10785 if (pmboxq->context1)
b230b8a2 10786 mb = (MAILBOX_t *)pmboxq->context1;
dea3101e 10787
495a714c 10788 pmboxq->mbox_flag &= ~LPFC_MBX_WAKE;
dea3101e
JB
10789 /* setup wake call as IOCB callback */
10790 pmboxq->mbox_cmpl = lpfc_sli_wake_mbox_wait;
10791 /* setup context field to pass wait_queue pointer to wake function */
10792 pmboxq->context1 = &done_q;
10793
dea3101e
JB
10794 /* now issue the command */
10795 retval = lpfc_sli_issue_mbox(phba, pmboxq, MBX_NOWAIT);
dea3101e 10796 if (retval == MBX_BUSY || retval == MBX_SUCCESS) {
7054a606
JS
10797 wait_event_interruptible_timeout(done_q,
10798 pmboxq->mbox_flag & LPFC_MBX_WAKE,
256ec0d0 10799 msecs_to_jiffies(timeout * 1000));
7054a606 10800
858c9f6c 10801 spin_lock_irqsave(&phba->hbalock, flag);
b230b8a2
JS
10802 /* restore the possible extended buffer for free resource */
10803 pmboxq->context1 = (uint8_t *)mb;
7054a606
JS
10804 /*
10805 * if LPFC_MBX_WAKE flag is set the mailbox is completed
10806 * else do not free the resources.
10807 */
d7c47992 10808 if (pmboxq->mbox_flag & LPFC_MBX_WAKE) {
dea3101e 10809 retval = MBX_SUCCESS;
d7c47992 10810 } else {
7054a606 10811 retval = MBX_TIMEOUT;
858c9f6c
JS
10812 pmboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
10813 }
10814 spin_unlock_irqrestore(&phba->hbalock, flag);
b230b8a2
JS
10815 } else {
10816 /* restore the possible extended buffer for free resource */
10817 pmboxq->context1 = (uint8_t *)mb;
dea3101e
JB
10818 }
10819
dea3101e
JB
10820 return retval;
10821}
10822
e59058c4 10823/**
3772a991 10824 * lpfc_sli_mbox_sys_shutdown - shutdown mailbox command sub-system
e59058c4
JS
10825 * @phba: Pointer to HBA context.
10826 *
3772a991
JS
10827 * This function is called to shutdown the driver's mailbox sub-system.
10828 * It first marks the mailbox sub-system is in a block state to prevent
10829 * the asynchronous mailbox command from issued off the pending mailbox
10830 * command queue. If the mailbox command sub-system shutdown is due to
10831 * HBA error conditions such as EEH or ERATT, this routine shall invoke
10832 * the mailbox sub-system flush routine to forcefully bring down the
10833 * mailbox sub-system. Otherwise, if it is due to normal condition (such
10834 * as with offline or HBA function reset), this routine will wait for the
10835 * outstanding mailbox command to complete before invoking the mailbox
10836 * sub-system flush routine to gracefully bring down mailbox sub-system.
e59058c4 10837 **/
3772a991 10838void
618a5230 10839lpfc_sli_mbox_sys_shutdown(struct lpfc_hba *phba, int mbx_action)
b4c02652 10840{
3772a991 10841 struct lpfc_sli *psli = &phba->sli;
3772a991 10842 unsigned long timeout;
b4c02652 10843
618a5230
JS
10844 if (mbx_action == LPFC_MBX_NO_WAIT) {
10845 /* delay 100ms for port state */
10846 msleep(100);
10847 lpfc_sli_mbox_sys_flush(phba);
10848 return;
10849 }
a183a15f 10850 timeout = msecs_to_jiffies(LPFC_MBOX_TMO * 1000) + jiffies;
d7069f09 10851
3772a991
JS
10852 spin_lock_irq(&phba->hbalock);
10853 psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
b4c02652 10854
3772a991 10855 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
3772a991
JS
10856 /* Determine how long we might wait for the active mailbox
10857 * command to be gracefully completed by firmware.
10858 */
a183a15f
JS
10859 if (phba->sli.mbox_active)
10860 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
10861 phba->sli.mbox_active) *
10862 1000) + jiffies;
10863 spin_unlock_irq(&phba->hbalock);
10864
3772a991
JS
10865 while (phba->sli.mbox_active) {
10866 /* Check active mailbox complete status every 2ms */
10867 msleep(2);
10868 if (time_after(jiffies, timeout))
10869 /* Timeout, let the mailbox flush routine to
10870 * forcefully release active mailbox command
10871 */
10872 break;
10873 }
d7069f09
JS
10874 } else
10875 spin_unlock_irq(&phba->hbalock);
10876
3772a991
JS
10877 lpfc_sli_mbox_sys_flush(phba);
10878}
ed957684 10879
3772a991
JS
10880/**
10881 * lpfc_sli_eratt_read - read sli-3 error attention events
10882 * @phba: Pointer to HBA context.
10883 *
10884 * This function is called to read the SLI3 device error attention registers
10885 * for possible error attention events. The caller must hold the hostlock
10886 * with spin_lock_irq().
10887 *
25985edc 10888 * This function returns 1 when there is Error Attention in the Host Attention
3772a991
JS
10889 * Register and returns 0 otherwise.
10890 **/
10891static int
10892lpfc_sli_eratt_read(struct lpfc_hba *phba)
10893{
10894 uint32_t ha_copy;
b4c02652 10895
3772a991 10896 /* Read chip Host Attention (HA) register */
9940b97b
JS
10897 if (lpfc_readl(phba->HAregaddr, &ha_copy))
10898 goto unplug_err;
10899
3772a991
JS
10900 if (ha_copy & HA_ERATT) {
10901 /* Read host status register to retrieve error event */
9940b97b
JS
10902 if (lpfc_sli_read_hs(phba))
10903 goto unplug_err;
b4c02652 10904
3772a991
JS
10905 /* Check if there is a deferred error condition is active */
10906 if ((HS_FFER1 & phba->work_hs) &&
10907 ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
dcf2a4e0 10908 HS_FFER6 | HS_FFER7 | HS_FFER8) & phba->work_hs)) {
3772a991 10909 phba->hba_flag |= DEFER_ERATT;
3772a991
JS
10910 /* Clear all interrupt enable conditions */
10911 writel(0, phba->HCregaddr);
10912 readl(phba->HCregaddr);
10913 }
10914
10915 /* Set the driver HA work bitmap */
3772a991
JS
10916 phba->work_ha |= HA_ERATT;
10917 /* Indicate polling handles this ERATT */
10918 phba->hba_flag |= HBA_ERATT_HANDLED;
3772a991
JS
10919 return 1;
10920 }
10921 return 0;
9940b97b
JS
10922
10923unplug_err:
10924 /* Set the driver HS work bitmap */
10925 phba->work_hs |= UNPLUG_ERR;
10926 /* Set the driver HA work bitmap */
10927 phba->work_ha |= HA_ERATT;
10928 /* Indicate polling handles this ERATT */
10929 phba->hba_flag |= HBA_ERATT_HANDLED;
10930 return 1;
b4c02652
JS
10931}
10932
da0436e9
JS
10933/**
10934 * lpfc_sli4_eratt_read - read sli-4 error attention events
10935 * @phba: Pointer to HBA context.
10936 *
10937 * This function is called to read the SLI4 device error attention registers
10938 * for possible error attention events. The caller must hold the hostlock
10939 * with spin_lock_irq().
10940 *
25985edc 10941 * This function returns 1 when there is Error Attention in the Host Attention
da0436e9
JS
10942 * Register and returns 0 otherwise.
10943 **/
10944static int
10945lpfc_sli4_eratt_read(struct lpfc_hba *phba)
10946{
10947 uint32_t uerr_sta_hi, uerr_sta_lo;
2fcee4bf
JS
10948 uint32_t if_type, portsmphr;
10949 struct lpfc_register portstat_reg;
da0436e9 10950
2fcee4bf
JS
10951 /*
10952 * For now, use the SLI4 device internal unrecoverable error
da0436e9
JS
10953 * registers for error attention. This can be changed later.
10954 */
2fcee4bf
JS
10955 if_type = bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf);
10956 switch (if_type) {
10957 case LPFC_SLI_INTF_IF_TYPE_0:
9940b97b
JS
10958 if (lpfc_readl(phba->sli4_hba.u.if_type0.UERRLOregaddr,
10959 &uerr_sta_lo) ||
10960 lpfc_readl(phba->sli4_hba.u.if_type0.UERRHIregaddr,
10961 &uerr_sta_hi)) {
10962 phba->work_hs |= UNPLUG_ERR;
10963 phba->work_ha |= HA_ERATT;
10964 phba->hba_flag |= HBA_ERATT_HANDLED;
10965 return 1;
10966 }
2fcee4bf
JS
10967 if ((~phba->sli4_hba.ue_mask_lo & uerr_sta_lo) ||
10968 (~phba->sli4_hba.ue_mask_hi & uerr_sta_hi)) {
10969 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10970 "1423 HBA Unrecoverable error: "
10971 "uerr_lo_reg=0x%x, uerr_hi_reg=0x%x, "
10972 "ue_mask_lo_reg=0x%x, "
10973 "ue_mask_hi_reg=0x%x\n",
10974 uerr_sta_lo, uerr_sta_hi,
10975 phba->sli4_hba.ue_mask_lo,
10976 phba->sli4_hba.ue_mask_hi);
10977 phba->work_status[0] = uerr_sta_lo;
10978 phba->work_status[1] = uerr_sta_hi;
10979 phba->work_ha |= HA_ERATT;
10980 phba->hba_flag |= HBA_ERATT_HANDLED;
10981 return 1;
10982 }
10983 break;
10984 case LPFC_SLI_INTF_IF_TYPE_2:
9940b97b
JS
10985 if (lpfc_readl(phba->sli4_hba.u.if_type2.STATUSregaddr,
10986 &portstat_reg.word0) ||
10987 lpfc_readl(phba->sli4_hba.PSMPHRregaddr,
10988 &portsmphr)){
10989 phba->work_hs |= UNPLUG_ERR;
10990 phba->work_ha |= HA_ERATT;
10991 phba->hba_flag |= HBA_ERATT_HANDLED;
10992 return 1;
10993 }
2fcee4bf
JS
10994 if (bf_get(lpfc_sliport_status_err, &portstat_reg)) {
10995 phba->work_status[0] =
10996 readl(phba->sli4_hba.u.if_type2.ERR1regaddr);
10997 phba->work_status[1] =
10998 readl(phba->sli4_hba.u.if_type2.ERR2regaddr);
10999 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2e90f4b5 11000 "2885 Port Status Event: "
2fcee4bf
JS
11001 "port status reg 0x%x, "
11002 "port smphr reg 0x%x, "
11003 "error 1=0x%x, error 2=0x%x\n",
11004 portstat_reg.word0,
11005 portsmphr,
11006 phba->work_status[0],
11007 phba->work_status[1]);
11008 phba->work_ha |= HA_ERATT;
11009 phba->hba_flag |= HBA_ERATT_HANDLED;
11010 return 1;
11011 }
11012 break;
11013 case LPFC_SLI_INTF_IF_TYPE_1:
11014 default:
a747c9ce 11015 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2fcee4bf
JS
11016 "2886 HBA Error Attention on unsupported "
11017 "if type %d.", if_type);
a747c9ce 11018 return 1;
da0436e9 11019 }
2fcee4bf 11020
da0436e9
JS
11021 return 0;
11022}
11023
e59058c4 11024/**
3621a710 11025 * lpfc_sli_check_eratt - check error attention events
9399627f
JS
11026 * @phba: Pointer to HBA context.
11027 *
3772a991 11028 * This function is called from timer soft interrupt context to check HBA's
9399627f
JS
11029 * error attention register bit for error attention events.
11030 *
25985edc 11031 * This function returns 1 when there is Error Attention in the Host Attention
9399627f
JS
11032 * Register and returns 0 otherwise.
11033 **/
11034int
11035lpfc_sli_check_eratt(struct lpfc_hba *phba)
11036{
11037 uint32_t ha_copy;
11038
11039 /* If somebody is waiting to handle an eratt, don't process it
11040 * here. The brdkill function will do this.
11041 */
11042 if (phba->link_flag & LS_IGNORE_ERATT)
11043 return 0;
11044
11045 /* Check if interrupt handler handles this ERATT */
11046 spin_lock_irq(&phba->hbalock);
11047 if (phba->hba_flag & HBA_ERATT_HANDLED) {
11048 /* Interrupt handler has handled ERATT */
11049 spin_unlock_irq(&phba->hbalock);
11050 return 0;
11051 }
11052
a257bf90
JS
11053 /*
11054 * If there is deferred error attention, do not check for error
11055 * attention
11056 */
11057 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
11058 spin_unlock_irq(&phba->hbalock);
11059 return 0;
11060 }
11061
3772a991
JS
11062 /* If PCI channel is offline, don't process it */
11063 if (unlikely(pci_channel_offline(phba->pcidev))) {
9399627f 11064 spin_unlock_irq(&phba->hbalock);
3772a991
JS
11065 return 0;
11066 }
11067
11068 switch (phba->sli_rev) {
11069 case LPFC_SLI_REV2:
11070 case LPFC_SLI_REV3:
11071 /* Read chip Host Attention (HA) register */
11072 ha_copy = lpfc_sli_eratt_read(phba);
11073 break;
da0436e9 11074 case LPFC_SLI_REV4:
2fcee4bf 11075 /* Read device Uncoverable Error (UERR) registers */
da0436e9
JS
11076 ha_copy = lpfc_sli4_eratt_read(phba);
11077 break;
3772a991
JS
11078 default:
11079 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
11080 "0299 Invalid SLI revision (%d)\n",
11081 phba->sli_rev);
11082 ha_copy = 0;
11083 break;
9399627f
JS
11084 }
11085 spin_unlock_irq(&phba->hbalock);
3772a991
JS
11086
11087 return ha_copy;
11088}
11089
11090/**
11091 * lpfc_intr_state_check - Check device state for interrupt handling
11092 * @phba: Pointer to HBA context.
11093 *
11094 * This inline routine checks whether a device or its PCI slot is in a state
11095 * that the interrupt should be handled.
11096 *
11097 * This function returns 0 if the device or the PCI slot is in a state that
11098 * interrupt should be handled, otherwise -EIO.
11099 */
11100static inline int
11101lpfc_intr_state_check(struct lpfc_hba *phba)
11102{
11103 /* If the pci channel is offline, ignore all the interrupts */
11104 if (unlikely(pci_channel_offline(phba->pcidev)))
11105 return -EIO;
11106
11107 /* Update device level interrupt statistics */
11108 phba->sli.slistat.sli_intr++;
11109
11110 /* Ignore all interrupts during initialization. */
11111 if (unlikely(phba->link_state < LPFC_LINK_DOWN))
11112 return -EIO;
11113
9399627f
JS
11114 return 0;
11115}
11116
11117/**
3772a991 11118 * lpfc_sli_sp_intr_handler - Slow-path interrupt handler to SLI-3 device
e59058c4
JS
11119 * @irq: Interrupt number.
11120 * @dev_id: The device context pointer.
11121 *
9399627f 11122 * This function is directly called from the PCI layer as an interrupt
3772a991
JS
11123 * service routine when device with SLI-3 interface spec is enabled with
11124 * MSI-X multi-message interrupt mode and there are slow-path events in
11125 * the HBA. However, when the device is enabled with either MSI or Pin-IRQ
11126 * interrupt mode, this function is called as part of the device-level
11127 * interrupt handler. When the PCI slot is in error recovery or the HBA
11128 * is undergoing initialization, the interrupt handler will not process
11129 * the interrupt. The link attention and ELS ring attention events are
11130 * handled by the worker thread. The interrupt handler signals the worker
11131 * thread and returns for these events. This function is called without
11132 * any lock held. It gets the hbalock to access and update SLI data
9399627f
JS
11133 * structures.
11134 *
11135 * This function returns IRQ_HANDLED when interrupt is handled else it
11136 * returns IRQ_NONE.
e59058c4 11137 **/
dea3101e 11138irqreturn_t
3772a991 11139lpfc_sli_sp_intr_handler(int irq, void *dev_id)
dea3101e 11140{
2e0fef85 11141 struct lpfc_hba *phba;
a747c9ce 11142 uint32_t ha_copy, hc_copy;
dea3101e
JB
11143 uint32_t work_ha_copy;
11144 unsigned long status;
5b75da2f 11145 unsigned long iflag;
dea3101e
JB
11146 uint32_t control;
11147
92d7f7b0 11148 MAILBOX_t *mbox, *pmbox;
858c9f6c
JS
11149 struct lpfc_vport *vport;
11150 struct lpfc_nodelist *ndlp;
11151 struct lpfc_dmabuf *mp;
92d7f7b0
JS
11152 LPFC_MBOXQ_t *pmb;
11153 int rc;
11154
dea3101e
JB
11155 /*
11156 * Get the driver's phba structure from the dev_id and
11157 * assume the HBA is not interrupting.
11158 */
9399627f 11159 phba = (struct lpfc_hba *)dev_id;
dea3101e
JB
11160
11161 if (unlikely(!phba))
11162 return IRQ_NONE;
11163
dea3101e 11164 /*
9399627f
JS
11165 * Stuff needs to be attented to when this function is invoked as an
11166 * individual interrupt handler in MSI-X multi-message interrupt mode
dea3101e 11167 */
9399627f 11168 if (phba->intr_type == MSIX) {
3772a991
JS
11169 /* Check device state for handling interrupt */
11170 if (lpfc_intr_state_check(phba))
9399627f
JS
11171 return IRQ_NONE;
11172 /* Need to read HA REG for slow-path events */
5b75da2f 11173 spin_lock_irqsave(&phba->hbalock, iflag);
9940b97b
JS
11174 if (lpfc_readl(phba->HAregaddr, &ha_copy))
11175 goto unplug_error;
9399627f
JS
11176 /* If somebody is waiting to handle an eratt don't process it
11177 * here. The brdkill function will do this.
11178 */
11179 if (phba->link_flag & LS_IGNORE_ERATT)
11180 ha_copy &= ~HA_ERATT;
11181 /* Check the need for handling ERATT in interrupt handler */
11182 if (ha_copy & HA_ERATT) {
11183 if (phba->hba_flag & HBA_ERATT_HANDLED)
11184 /* ERATT polling has handled ERATT */
11185 ha_copy &= ~HA_ERATT;
11186 else
11187 /* Indicate interrupt handler handles ERATT */
11188 phba->hba_flag |= HBA_ERATT_HANDLED;
11189 }
a257bf90
JS
11190
11191 /*
11192 * If there is deferred error attention, do not check for any
11193 * interrupt.
11194 */
11195 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
3772a991 11196 spin_unlock_irqrestore(&phba->hbalock, iflag);
a257bf90
JS
11197 return IRQ_NONE;
11198 }
11199
9399627f 11200 /* Clear up only attention source related to slow-path */
9940b97b
JS
11201 if (lpfc_readl(phba->HCregaddr, &hc_copy))
11202 goto unplug_error;
11203
a747c9ce
JS
11204 writel(hc_copy & ~(HC_MBINT_ENA | HC_R2INT_ENA |
11205 HC_LAINT_ENA | HC_ERINT_ENA),
11206 phba->HCregaddr);
9399627f
JS
11207 writel((ha_copy & (HA_MBATT | HA_R2_CLR_MSK)),
11208 phba->HAregaddr);
a747c9ce 11209 writel(hc_copy, phba->HCregaddr);
9399627f 11210 readl(phba->HAregaddr); /* flush */
5b75da2f 11211 spin_unlock_irqrestore(&phba->hbalock, iflag);
9399627f
JS
11212 } else
11213 ha_copy = phba->ha_copy;
dea3101e 11214
dea3101e
JB
11215 work_ha_copy = ha_copy & phba->work_ha_mask;
11216
9399627f 11217 if (work_ha_copy) {
dea3101e
JB
11218 if (work_ha_copy & HA_LATT) {
11219 if (phba->sli.sli_flag & LPFC_PROCESS_LA) {
11220 /*
11221 * Turn off Link Attention interrupts
11222 * until CLEAR_LA done
11223 */
5b75da2f 11224 spin_lock_irqsave(&phba->hbalock, iflag);
dea3101e 11225 phba->sli.sli_flag &= ~LPFC_PROCESS_LA;
9940b97b
JS
11226 if (lpfc_readl(phba->HCregaddr, &control))
11227 goto unplug_error;
dea3101e
JB
11228 control &= ~HC_LAINT_ENA;
11229 writel(control, phba->HCregaddr);
11230 readl(phba->HCregaddr); /* flush */
5b75da2f 11231 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea3101e
JB
11232 }
11233 else
11234 work_ha_copy &= ~HA_LATT;
11235 }
11236
9399627f 11237 if (work_ha_copy & ~(HA_ERATT | HA_MBATT | HA_LATT)) {
858c9f6c
JS
11238 /*
11239 * Turn off Slow Rings interrupts, LPFC_ELS_RING is
11240 * the only slow ring.
11241 */
11242 status = (work_ha_copy &
11243 (HA_RXMASK << (4*LPFC_ELS_RING)));
11244 status >>= (4*LPFC_ELS_RING);
11245 if (status & HA_RXMASK) {
5b75da2f 11246 spin_lock_irqsave(&phba->hbalock, iflag);
9940b97b
JS
11247 if (lpfc_readl(phba->HCregaddr, &control))
11248 goto unplug_error;
a58cbd52
JS
11249
11250 lpfc_debugfs_slow_ring_trc(phba,
11251 "ISR slow ring: ctl:x%x stat:x%x isrcnt:x%x",
11252 control, status,
11253 (uint32_t)phba->sli.slistat.sli_intr);
11254
858c9f6c 11255 if (control & (HC_R0INT_ENA << LPFC_ELS_RING)) {
a58cbd52
JS
11256 lpfc_debugfs_slow_ring_trc(phba,
11257 "ISR Disable ring:"
11258 "pwork:x%x hawork:x%x wait:x%x",
11259 phba->work_ha, work_ha_copy,
11260 (uint32_t)((unsigned long)
5e9d9b82 11261 &phba->work_waitq));
a58cbd52 11262
858c9f6c
JS
11263 control &=
11264 ~(HC_R0INT_ENA << LPFC_ELS_RING);
dea3101e
JB
11265 writel(control, phba->HCregaddr);
11266 readl(phba->HCregaddr); /* flush */
dea3101e 11267 }
a58cbd52
JS
11268 else {
11269 lpfc_debugfs_slow_ring_trc(phba,
11270 "ISR slow ring: pwork:"
11271 "x%x hawork:x%x wait:x%x",
11272 phba->work_ha, work_ha_copy,
11273 (uint32_t)((unsigned long)
5e9d9b82 11274 &phba->work_waitq));
a58cbd52 11275 }
5b75da2f 11276 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea3101e
JB
11277 }
11278 }
5b75da2f 11279 spin_lock_irqsave(&phba->hbalock, iflag);
a257bf90 11280 if (work_ha_copy & HA_ERATT) {
9940b97b
JS
11281 if (lpfc_sli_read_hs(phba))
11282 goto unplug_error;
a257bf90
JS
11283 /*
11284 * Check if there is a deferred error condition
11285 * is active
11286 */
11287 if ((HS_FFER1 & phba->work_hs) &&
11288 ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
dcf2a4e0
JS
11289 HS_FFER6 | HS_FFER7 | HS_FFER8) &
11290 phba->work_hs)) {
a257bf90
JS
11291 phba->hba_flag |= DEFER_ERATT;
11292 /* Clear all interrupt enable conditions */
11293 writel(0, phba->HCregaddr);
11294 readl(phba->HCregaddr);
11295 }
11296 }
11297
9399627f 11298 if ((work_ha_copy & HA_MBATT) && (phba->sli.mbox_active)) {
92d7f7b0 11299 pmb = phba->sli.mbox_active;
04c68496 11300 pmbox = &pmb->u.mb;
34b02dcd 11301 mbox = phba->mbox;
858c9f6c 11302 vport = pmb->vport;
92d7f7b0
JS
11303
11304 /* First check out the status word */
11305 lpfc_sli_pcimem_bcopy(mbox, pmbox, sizeof(uint32_t));
11306 if (pmbox->mbxOwner != OWN_HOST) {
5b75da2f 11307 spin_unlock_irqrestore(&phba->hbalock, iflag);
92d7f7b0
JS
11308 /*
11309 * Stray Mailbox Interrupt, mbxCommand <cmd>
11310 * mbxStatus <status>
11311 */
09372820 11312 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
92d7f7b0 11313 LOG_SLI,
e8b62011 11314 "(%d):0304 Stray Mailbox "
92d7f7b0
JS
11315 "Interrupt mbxCommand x%x "
11316 "mbxStatus x%x\n",
e8b62011 11317 (vport ? vport->vpi : 0),
92d7f7b0
JS
11318 pmbox->mbxCommand,
11319 pmbox->mbxStatus);
09372820
JS
11320 /* clear mailbox attention bit */
11321 work_ha_copy &= ~HA_MBATT;
11322 } else {
97eab634 11323 phba->sli.mbox_active = NULL;
5b75da2f 11324 spin_unlock_irqrestore(&phba->hbalock, iflag);
09372820
JS
11325 phba->last_completion_time = jiffies;
11326 del_timer(&phba->sli.mbox_tmo);
09372820
JS
11327 if (pmb->mbox_cmpl) {
11328 lpfc_sli_pcimem_bcopy(mbox, pmbox,
11329 MAILBOX_CMD_SIZE);
7a470277
JS
11330 if (pmb->out_ext_byte_len &&
11331 pmb->context2)
11332 lpfc_sli_pcimem_bcopy(
11333 phba->mbox_ext,
11334 pmb->context2,
11335 pmb->out_ext_byte_len);
09372820
JS
11336 }
11337 if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
11338 pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
11339
11340 lpfc_debugfs_disc_trc(vport,
11341 LPFC_DISC_TRC_MBOX_VPORT,
11342 "MBOX dflt rpi: : "
11343 "status:x%x rpi:x%x",
11344 (uint32_t)pmbox->mbxStatus,
11345 pmbox->un.varWords[0], 0);
11346
11347 if (!pmbox->mbxStatus) {
11348 mp = (struct lpfc_dmabuf *)
11349 (pmb->context1);
11350 ndlp = (struct lpfc_nodelist *)
11351 pmb->context2;
11352
11353 /* Reg_LOGIN of dflt RPI was
11354 * successful. new lets get
11355 * rid of the RPI using the
11356 * same mbox buffer.
11357 */
11358 lpfc_unreg_login(phba,
11359 vport->vpi,
11360 pmbox->un.varWords[0],
11361 pmb);
11362 pmb->mbox_cmpl =
11363 lpfc_mbx_cmpl_dflt_rpi;
11364 pmb->context1 = mp;
11365 pmb->context2 = ndlp;
11366 pmb->vport = vport;
58da1ffb
JS
11367 rc = lpfc_sli_issue_mbox(phba,
11368 pmb,
11369 MBX_NOWAIT);
11370 if (rc != MBX_BUSY)
11371 lpfc_printf_log(phba,
11372 KERN_ERR,
11373 LOG_MBOX | LOG_SLI,
d7c255b2 11374 "0350 rc should have"
6a9c52cf 11375 "been MBX_BUSY\n");
3772a991
JS
11376 if (rc != MBX_NOT_FINISHED)
11377 goto send_current_mbox;
09372820 11378 }
858c9f6c 11379 }
5b75da2f
JS
11380 spin_lock_irqsave(
11381 &phba->pport->work_port_lock,
11382 iflag);
09372820
JS
11383 phba->pport->work_port_events &=
11384 ~WORKER_MBOX_TMO;
5b75da2f
JS
11385 spin_unlock_irqrestore(
11386 &phba->pport->work_port_lock,
11387 iflag);
09372820 11388 lpfc_mbox_cmpl_put(phba, pmb);
858c9f6c 11389 }
97eab634 11390 } else
5b75da2f 11391 spin_unlock_irqrestore(&phba->hbalock, iflag);
9399627f 11392
92d7f7b0
JS
11393 if ((work_ha_copy & HA_MBATT) &&
11394 (phba->sli.mbox_active == NULL)) {
858c9f6c 11395send_current_mbox:
92d7f7b0 11396 /* Process next mailbox command if there is one */
58da1ffb
JS
11397 do {
11398 rc = lpfc_sli_issue_mbox(phba, NULL,
11399 MBX_NOWAIT);
11400 } while (rc == MBX_NOT_FINISHED);
11401 if (rc != MBX_SUCCESS)
11402 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
11403 LOG_SLI, "0349 rc should be "
6a9c52cf 11404 "MBX_SUCCESS\n");
92d7f7b0
JS
11405 }
11406
5b75da2f 11407 spin_lock_irqsave(&phba->hbalock, iflag);
dea3101e 11408 phba->work_ha |= work_ha_copy;
5b75da2f 11409 spin_unlock_irqrestore(&phba->hbalock, iflag);
5e9d9b82 11410 lpfc_worker_wake_up(phba);
dea3101e 11411 }
9399627f 11412 return IRQ_HANDLED;
9940b97b
JS
11413unplug_error:
11414 spin_unlock_irqrestore(&phba->hbalock, iflag);
11415 return IRQ_HANDLED;
dea3101e 11416
3772a991 11417} /* lpfc_sli_sp_intr_handler */
9399627f
JS
11418
11419/**
3772a991 11420 * lpfc_sli_fp_intr_handler - Fast-path interrupt handler to SLI-3 device.
9399627f
JS
11421 * @irq: Interrupt number.
11422 * @dev_id: The device context pointer.
11423 *
11424 * This function is directly called from the PCI layer as an interrupt
3772a991
JS
11425 * service routine when device with SLI-3 interface spec is enabled with
11426 * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
11427 * ring event in the HBA. However, when the device is enabled with either
11428 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
11429 * device-level interrupt handler. When the PCI slot is in error recovery
11430 * or the HBA is undergoing initialization, the interrupt handler will not
11431 * process the interrupt. The SCSI FCP fast-path ring event are handled in
11432 * the intrrupt context. This function is called without any lock held.
11433 * It gets the hbalock to access and update SLI data structures.
9399627f
JS
11434 *
11435 * This function returns IRQ_HANDLED when interrupt is handled else it
11436 * returns IRQ_NONE.
11437 **/
11438irqreturn_t
3772a991 11439lpfc_sli_fp_intr_handler(int irq, void *dev_id)
9399627f
JS
11440{
11441 struct lpfc_hba *phba;
11442 uint32_t ha_copy;
11443 unsigned long status;
5b75da2f 11444 unsigned long iflag;
9399627f
JS
11445
11446 /* Get the driver's phba structure from the dev_id and
11447 * assume the HBA is not interrupting.
11448 */
11449 phba = (struct lpfc_hba *) dev_id;
11450
11451 if (unlikely(!phba))
11452 return IRQ_NONE;
11453
11454 /*
11455 * Stuff needs to be attented to when this function is invoked as an
11456 * individual interrupt handler in MSI-X multi-message interrupt mode
11457 */
11458 if (phba->intr_type == MSIX) {
3772a991
JS
11459 /* Check device state for handling interrupt */
11460 if (lpfc_intr_state_check(phba))
9399627f
JS
11461 return IRQ_NONE;
11462 /* Need to read HA REG for FCP ring and other ring events */
9940b97b
JS
11463 if (lpfc_readl(phba->HAregaddr, &ha_copy))
11464 return IRQ_HANDLED;
9399627f 11465 /* Clear up only attention source related to fast-path */
5b75da2f 11466 spin_lock_irqsave(&phba->hbalock, iflag);
a257bf90
JS
11467 /*
11468 * If there is deferred error attention, do not check for
11469 * any interrupt.
11470 */
11471 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
3772a991 11472 spin_unlock_irqrestore(&phba->hbalock, iflag);
a257bf90
JS
11473 return IRQ_NONE;
11474 }
9399627f
JS
11475 writel((ha_copy & (HA_R0_CLR_MSK | HA_R1_CLR_MSK)),
11476 phba->HAregaddr);
11477 readl(phba->HAregaddr); /* flush */
5b75da2f 11478 spin_unlock_irqrestore(&phba->hbalock, iflag);
9399627f
JS
11479 } else
11480 ha_copy = phba->ha_copy;
dea3101e
JB
11481
11482 /*
9399627f 11483 * Process all events on FCP ring. Take the optimized path for FCP IO.
dea3101e 11484 */
9399627f
JS
11485 ha_copy &= ~(phba->work_ha_mask);
11486
11487 status = (ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
dea3101e 11488 status >>= (4*LPFC_FCP_RING);
858c9f6c 11489 if (status & HA_RXMASK)
dea3101e
JB
11490 lpfc_sli_handle_fast_ring_event(phba,
11491 &phba->sli.ring[LPFC_FCP_RING],
11492 status);
a4bc3379
JS
11493
11494 if (phba->cfg_multi_ring_support == 2) {
11495 /*
9399627f
JS
11496 * Process all events on extra ring. Take the optimized path
11497 * for extra ring IO.
a4bc3379 11498 */
9399627f 11499 status = (ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
a4bc3379 11500 status >>= (4*LPFC_EXTRA_RING);
858c9f6c 11501 if (status & HA_RXMASK) {
a4bc3379
JS
11502 lpfc_sli_handle_fast_ring_event(phba,
11503 &phba->sli.ring[LPFC_EXTRA_RING],
11504 status);
11505 }
11506 }
dea3101e 11507 return IRQ_HANDLED;
3772a991 11508} /* lpfc_sli_fp_intr_handler */
9399627f
JS
11509
11510/**
3772a991 11511 * lpfc_sli_intr_handler - Device-level interrupt handler to SLI-3 device
9399627f
JS
11512 * @irq: Interrupt number.
11513 * @dev_id: The device context pointer.
11514 *
3772a991
JS
11515 * This function is the HBA device-level interrupt handler to device with
11516 * SLI-3 interface spec, called from the PCI layer when either MSI or
11517 * Pin-IRQ interrupt mode is enabled and there is an event in the HBA which
11518 * requires driver attention. This function invokes the slow-path interrupt
11519 * attention handling function and fast-path interrupt attention handling
11520 * function in turn to process the relevant HBA attention events. This
11521 * function is called without any lock held. It gets the hbalock to access
11522 * and update SLI data structures.
9399627f
JS
11523 *
11524 * This function returns IRQ_HANDLED when interrupt is handled, else it
11525 * returns IRQ_NONE.
11526 **/
11527irqreturn_t
3772a991 11528lpfc_sli_intr_handler(int irq, void *dev_id)
9399627f
JS
11529{
11530 struct lpfc_hba *phba;
11531 irqreturn_t sp_irq_rc, fp_irq_rc;
11532 unsigned long status1, status2;
a747c9ce 11533 uint32_t hc_copy;
9399627f
JS
11534
11535 /*
11536 * Get the driver's phba structure from the dev_id and
11537 * assume the HBA is not interrupting.
11538 */
11539 phba = (struct lpfc_hba *) dev_id;
11540
11541 if (unlikely(!phba))
11542 return IRQ_NONE;
11543
3772a991
JS
11544 /* Check device state for handling interrupt */
11545 if (lpfc_intr_state_check(phba))
9399627f
JS
11546 return IRQ_NONE;
11547
11548 spin_lock(&phba->hbalock);
9940b97b
JS
11549 if (lpfc_readl(phba->HAregaddr, &phba->ha_copy)) {
11550 spin_unlock(&phba->hbalock);
11551 return IRQ_HANDLED;
11552 }
11553
9399627f
JS
11554 if (unlikely(!phba->ha_copy)) {
11555 spin_unlock(&phba->hbalock);
11556 return IRQ_NONE;
11557 } else if (phba->ha_copy & HA_ERATT) {
11558 if (phba->hba_flag & HBA_ERATT_HANDLED)
11559 /* ERATT polling has handled ERATT */
11560 phba->ha_copy &= ~HA_ERATT;
11561 else
11562 /* Indicate interrupt handler handles ERATT */
11563 phba->hba_flag |= HBA_ERATT_HANDLED;
11564 }
11565
a257bf90
JS
11566 /*
11567 * If there is deferred error attention, do not check for any interrupt.
11568 */
11569 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
ec21b3b0 11570 spin_unlock(&phba->hbalock);
a257bf90
JS
11571 return IRQ_NONE;
11572 }
11573
9399627f 11574 /* Clear attention sources except link and error attentions */
9940b97b
JS
11575 if (lpfc_readl(phba->HCregaddr, &hc_copy)) {
11576 spin_unlock(&phba->hbalock);
11577 return IRQ_HANDLED;
11578 }
a747c9ce
JS
11579 writel(hc_copy & ~(HC_MBINT_ENA | HC_R0INT_ENA | HC_R1INT_ENA
11580 | HC_R2INT_ENA | HC_LAINT_ENA | HC_ERINT_ENA),
11581 phba->HCregaddr);
9399627f 11582 writel((phba->ha_copy & ~(HA_LATT | HA_ERATT)), phba->HAregaddr);
a747c9ce 11583 writel(hc_copy, phba->HCregaddr);
9399627f
JS
11584 readl(phba->HAregaddr); /* flush */
11585 spin_unlock(&phba->hbalock);
11586
11587 /*
11588 * Invokes slow-path host attention interrupt handling as appropriate.
11589 */
11590
11591 /* status of events with mailbox and link attention */
11592 status1 = phba->ha_copy & (HA_MBATT | HA_LATT | HA_ERATT);
11593
11594 /* status of events with ELS ring */
11595 status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_ELS_RING)));
11596 status2 >>= (4*LPFC_ELS_RING);
11597
11598 if (status1 || (status2 & HA_RXMASK))
3772a991 11599 sp_irq_rc = lpfc_sli_sp_intr_handler(irq, dev_id);
9399627f
JS
11600 else
11601 sp_irq_rc = IRQ_NONE;
11602
11603 /*
11604 * Invoke fast-path host attention interrupt handling as appropriate.
11605 */
11606
11607 /* status of events with FCP ring */
11608 status1 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
11609 status1 >>= (4*LPFC_FCP_RING);
11610
11611 /* status of events with extra ring */
11612 if (phba->cfg_multi_ring_support == 2) {
11613 status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
11614 status2 >>= (4*LPFC_EXTRA_RING);
11615 } else
11616 status2 = 0;
11617
11618 if ((status1 & HA_RXMASK) || (status2 & HA_RXMASK))
3772a991 11619 fp_irq_rc = lpfc_sli_fp_intr_handler(irq, dev_id);
9399627f
JS
11620 else
11621 fp_irq_rc = IRQ_NONE;
dea3101e 11622
9399627f
JS
11623 /* Return device-level interrupt handling status */
11624 return (sp_irq_rc == IRQ_HANDLED) ? sp_irq_rc : fp_irq_rc;
3772a991 11625} /* lpfc_sli_intr_handler */
4f774513
JS
11626
11627/**
11628 * lpfc_sli4_fcp_xri_abort_event_proc - Process fcp xri abort event
11629 * @phba: pointer to lpfc hba data structure.
11630 *
11631 * This routine is invoked by the worker thread to process all the pending
11632 * SLI4 FCP abort XRI events.
11633 **/
11634void lpfc_sli4_fcp_xri_abort_event_proc(struct lpfc_hba *phba)
11635{
11636 struct lpfc_cq_event *cq_event;
11637
11638 /* First, declare the fcp xri abort event has been handled */
11639 spin_lock_irq(&phba->hbalock);
11640 phba->hba_flag &= ~FCP_XRI_ABORT_EVENT;
11641 spin_unlock_irq(&phba->hbalock);
11642 /* Now, handle all the fcp xri abort events */
11643 while (!list_empty(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue)) {
11644 /* Get the first event from the head of the event queue */
11645 spin_lock_irq(&phba->hbalock);
11646 list_remove_head(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue,
11647 cq_event, struct lpfc_cq_event, list);
11648 spin_unlock_irq(&phba->hbalock);
11649 /* Notify aborted XRI for FCP work queue */
11650 lpfc_sli4_fcp_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
11651 /* Free the event processed back to the free pool */
11652 lpfc_sli4_cq_event_release(phba, cq_event);
11653 }
11654}
11655
11656/**
11657 * lpfc_sli4_els_xri_abort_event_proc - Process els xri abort event
11658 * @phba: pointer to lpfc hba data structure.
11659 *
11660 * This routine is invoked by the worker thread to process all the pending
11661 * SLI4 els abort xri events.
11662 **/
11663void lpfc_sli4_els_xri_abort_event_proc(struct lpfc_hba *phba)
11664{
11665 struct lpfc_cq_event *cq_event;
11666
11667 /* First, declare the els xri abort event has been handled */
11668 spin_lock_irq(&phba->hbalock);
11669 phba->hba_flag &= ~ELS_XRI_ABORT_EVENT;
11670 spin_unlock_irq(&phba->hbalock);
11671 /* Now, handle all the els xri abort events */
11672 while (!list_empty(&phba->sli4_hba.sp_els_xri_aborted_work_queue)) {
11673 /* Get the first event from the head of the event queue */
11674 spin_lock_irq(&phba->hbalock);
11675 list_remove_head(&phba->sli4_hba.sp_els_xri_aborted_work_queue,
11676 cq_event, struct lpfc_cq_event, list);
11677 spin_unlock_irq(&phba->hbalock);
11678 /* Notify aborted XRI for ELS work queue */
11679 lpfc_sli4_els_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
11680 /* Free the event processed back to the free pool */
11681 lpfc_sli4_cq_event_release(phba, cq_event);
11682 }
11683}
11684
341af102
JS
11685/**
11686 * lpfc_sli4_iocb_param_transfer - Transfer pIocbOut and cmpl status to pIocbIn
11687 * @phba: pointer to lpfc hba data structure
11688 * @pIocbIn: pointer to the rspiocbq
11689 * @pIocbOut: pointer to the cmdiocbq
11690 * @wcqe: pointer to the complete wcqe
11691 *
11692 * This routine transfers the fields of a command iocbq to a response iocbq
11693 * by copying all the IOCB fields from command iocbq and transferring the
11694 * completion status information from the complete wcqe.
11695 **/
4f774513 11696static void
341af102
JS
11697lpfc_sli4_iocb_param_transfer(struct lpfc_hba *phba,
11698 struct lpfc_iocbq *pIocbIn,
4f774513
JS
11699 struct lpfc_iocbq *pIocbOut,
11700 struct lpfc_wcqe_complete *wcqe)
11701{
af22741c 11702 int numBdes, i;
341af102 11703 unsigned long iflags;
af22741c
JS
11704 uint32_t status, max_response;
11705 struct lpfc_dmabuf *dmabuf;
11706 struct ulp_bde64 *bpl, bde;
4f774513
JS
11707 size_t offset = offsetof(struct lpfc_iocbq, iocb);
11708
11709 memcpy((char *)pIocbIn + offset, (char *)pIocbOut + offset,
11710 sizeof(struct lpfc_iocbq) - offset);
4f774513 11711 /* Map WCQE parameters into irspiocb parameters */
acd6859b
JS
11712 status = bf_get(lpfc_wcqe_c_status, wcqe);
11713 pIocbIn->iocb.ulpStatus = (status & LPFC_IOCB_STATUS_MASK);
4f774513
JS
11714 if (pIocbOut->iocb_flag & LPFC_IO_FCP)
11715 if (pIocbIn->iocb.ulpStatus == IOSTAT_FCP_RSP_ERROR)
11716 pIocbIn->iocb.un.fcpi.fcpi_parm =
11717 pIocbOut->iocb.un.fcpi.fcpi_parm -
11718 wcqe->total_data_placed;
11719 else
11720 pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
695a814e 11721 else {
4f774513 11722 pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
af22741c
JS
11723 switch (pIocbOut->iocb.ulpCommand) {
11724 case CMD_ELS_REQUEST64_CR:
11725 dmabuf = (struct lpfc_dmabuf *)pIocbOut->context3;
11726 bpl = (struct ulp_bde64 *)dmabuf->virt;
11727 bde.tus.w = le32_to_cpu(bpl[1].tus.w);
11728 max_response = bde.tus.f.bdeSize;
11729 break;
11730 case CMD_GEN_REQUEST64_CR:
11731 max_response = 0;
11732 if (!pIocbOut->context3)
11733 break;
11734 numBdes = pIocbOut->iocb.un.genreq64.bdl.bdeSize/
11735 sizeof(struct ulp_bde64);
11736 dmabuf = (struct lpfc_dmabuf *)pIocbOut->context3;
11737 bpl = (struct ulp_bde64 *)dmabuf->virt;
11738 for (i = 0; i < numBdes; i++) {
11739 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
11740 if (bde.tus.f.bdeFlags != BUFF_TYPE_BDE_64)
11741 max_response += bde.tus.f.bdeSize;
11742 }
11743 break;
11744 default:
11745 max_response = wcqe->total_data_placed;
11746 break;
11747 }
11748 if (max_response < wcqe->total_data_placed)
11749 pIocbIn->iocb.un.genreq64.bdl.bdeSize = max_response;
11750 else
11751 pIocbIn->iocb.un.genreq64.bdl.bdeSize =
11752 wcqe->total_data_placed;
695a814e 11753 }
341af102 11754
acd6859b
JS
11755 /* Convert BG errors for completion status */
11756 if (status == CQE_STATUS_DI_ERROR) {
11757 pIocbIn->iocb.ulpStatus = IOSTAT_LOCAL_REJECT;
11758
11759 if (bf_get(lpfc_wcqe_c_bg_edir, wcqe))
11760 pIocbIn->iocb.un.ulpWord[4] = IOERR_RX_DMA_FAILED;
11761 else
11762 pIocbIn->iocb.un.ulpWord[4] = IOERR_TX_DMA_FAILED;
11763
11764 pIocbIn->iocb.unsli3.sli3_bg.bgstat = 0;
11765 if (bf_get(lpfc_wcqe_c_bg_ge, wcqe)) /* Guard Check failed */
11766 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11767 BGS_GUARD_ERR_MASK;
11768 if (bf_get(lpfc_wcqe_c_bg_ae, wcqe)) /* App Tag Check failed */
11769 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11770 BGS_APPTAG_ERR_MASK;
11771 if (bf_get(lpfc_wcqe_c_bg_re, wcqe)) /* Ref Tag Check failed */
11772 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11773 BGS_REFTAG_ERR_MASK;
11774
11775 /* Check to see if there was any good data before the error */
11776 if (bf_get(lpfc_wcqe_c_bg_tdpv, wcqe)) {
11777 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11778 BGS_HI_WATER_MARK_PRESENT_MASK;
11779 pIocbIn->iocb.unsli3.sli3_bg.bghm =
11780 wcqe->total_data_placed;
11781 }
11782
11783 /*
11784 * Set ALL the error bits to indicate we don't know what
11785 * type of error it is.
11786 */
11787 if (!pIocbIn->iocb.unsli3.sli3_bg.bgstat)
11788 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11789 (BGS_REFTAG_ERR_MASK | BGS_APPTAG_ERR_MASK |
11790 BGS_GUARD_ERR_MASK);
11791 }
11792
341af102
JS
11793 /* Pick up HBA exchange busy condition */
11794 if (bf_get(lpfc_wcqe_c_xb, wcqe)) {
11795 spin_lock_irqsave(&phba->hbalock, iflags);
11796 pIocbIn->iocb_flag |= LPFC_EXCHANGE_BUSY;
11797 spin_unlock_irqrestore(&phba->hbalock, iflags);
11798 }
4f774513
JS
11799}
11800
45ed1190
JS
11801/**
11802 * lpfc_sli4_els_wcqe_to_rspiocbq - Get response iocbq from els wcqe
11803 * @phba: Pointer to HBA context object.
11804 * @wcqe: Pointer to work-queue completion queue entry.
11805 *
11806 * This routine handles an ELS work-queue completion event and construct
11807 * a pseudo response ELS IODBQ from the SLI4 ELS WCQE for the common
11808 * discovery engine to handle.
11809 *
11810 * Return: Pointer to the receive IOCBQ, NULL otherwise.
11811 **/
11812static struct lpfc_iocbq *
11813lpfc_sli4_els_wcqe_to_rspiocbq(struct lpfc_hba *phba,
11814 struct lpfc_iocbq *irspiocbq)
11815{
11816 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
11817 struct lpfc_iocbq *cmdiocbq;
11818 struct lpfc_wcqe_complete *wcqe;
11819 unsigned long iflags;
11820
11821 wcqe = &irspiocbq->cq_event.cqe.wcqe_cmpl;
7e56aa25 11822 spin_lock_irqsave(&pring->ring_lock, iflags);
45ed1190
JS
11823 pring->stats.iocb_event++;
11824 /* Look up the ELS command IOCB and create pseudo response IOCB */
11825 cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
11826 bf_get(lpfc_wcqe_c_request_tag, wcqe));
89533e9b
JS
11827 /* Put the iocb back on the txcmplq */
11828 lpfc_sli_ringtxcmpl_put(phba, pring, cmdiocbq);
7e56aa25 11829 spin_unlock_irqrestore(&pring->ring_lock, iflags);
45ed1190
JS
11830
11831 if (unlikely(!cmdiocbq)) {
11832 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11833 "0386 ELS complete with no corresponding "
11834 "cmdiocb: iotag (%d)\n",
11835 bf_get(lpfc_wcqe_c_request_tag, wcqe));
11836 lpfc_sli_release_iocbq(phba, irspiocbq);
11837 return NULL;
11838 }
11839
11840 /* Fake the irspiocbq and copy necessary response information */
341af102 11841 lpfc_sli4_iocb_param_transfer(phba, irspiocbq, cmdiocbq, wcqe);
45ed1190
JS
11842
11843 return irspiocbq;
11844}
11845
04c68496
JS
11846/**
11847 * lpfc_sli4_sp_handle_async_event - Handle an asynchroous event
11848 * @phba: Pointer to HBA context object.
11849 * @cqe: Pointer to mailbox completion queue entry.
11850 *
11851 * This routine process a mailbox completion queue entry with asynchrous
11852 * event.
11853 *
11854 * Return: true if work posted to worker thread, otherwise false.
11855 **/
11856static bool
11857lpfc_sli4_sp_handle_async_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
11858{
11859 struct lpfc_cq_event *cq_event;
11860 unsigned long iflags;
11861
11862 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
11863 "0392 Async Event: word0:x%x, word1:x%x, "
11864 "word2:x%x, word3:x%x\n", mcqe->word0,
11865 mcqe->mcqe_tag0, mcqe->mcqe_tag1, mcqe->trailer);
11866
11867 /* Allocate a new internal CQ_EVENT entry */
11868 cq_event = lpfc_sli4_cq_event_alloc(phba);
11869 if (!cq_event) {
11870 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11871 "0394 Failed to allocate CQ_EVENT entry\n");
11872 return false;
11873 }
11874
11875 /* Move the CQE into an asynchronous event entry */
11876 memcpy(&cq_event->cqe, mcqe, sizeof(struct lpfc_mcqe));
11877 spin_lock_irqsave(&phba->hbalock, iflags);
11878 list_add_tail(&cq_event->list, &phba->sli4_hba.sp_asynce_work_queue);
11879 /* Set the async event flag */
11880 phba->hba_flag |= ASYNC_EVENT;
11881 spin_unlock_irqrestore(&phba->hbalock, iflags);
11882
11883 return true;
11884}
11885
11886/**
11887 * lpfc_sli4_sp_handle_mbox_event - Handle a mailbox completion event
11888 * @phba: Pointer to HBA context object.
11889 * @cqe: Pointer to mailbox completion queue entry.
11890 *
11891 * This routine process a mailbox completion queue entry with mailbox
11892 * completion event.
11893 *
11894 * Return: true if work posted to worker thread, otherwise false.
11895 **/
11896static bool
11897lpfc_sli4_sp_handle_mbox_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
11898{
11899 uint32_t mcqe_status;
11900 MAILBOX_t *mbox, *pmbox;
11901 struct lpfc_mqe *mqe;
11902 struct lpfc_vport *vport;
11903 struct lpfc_nodelist *ndlp;
11904 struct lpfc_dmabuf *mp;
11905 unsigned long iflags;
11906 LPFC_MBOXQ_t *pmb;
11907 bool workposted = false;
11908 int rc;
11909
11910 /* If not a mailbox complete MCQE, out by checking mailbox consume */
11911 if (!bf_get(lpfc_trailer_completed, mcqe))
11912 goto out_no_mqe_complete;
11913
11914 /* Get the reference to the active mbox command */
11915 spin_lock_irqsave(&phba->hbalock, iflags);
11916 pmb = phba->sli.mbox_active;
11917 if (unlikely(!pmb)) {
11918 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
11919 "1832 No pending MBOX command to handle\n");
11920 spin_unlock_irqrestore(&phba->hbalock, iflags);
11921 goto out_no_mqe_complete;
11922 }
11923 spin_unlock_irqrestore(&phba->hbalock, iflags);
11924 mqe = &pmb->u.mqe;
11925 pmbox = (MAILBOX_t *)&pmb->u.mqe;
11926 mbox = phba->mbox;
11927 vport = pmb->vport;
11928
11929 /* Reset heartbeat timer */
11930 phba->last_completion_time = jiffies;
11931 del_timer(&phba->sli.mbox_tmo);
11932
11933 /* Move mbox data to caller's mailbox region, do endian swapping */
11934 if (pmb->mbox_cmpl && mbox)
11935 lpfc_sli_pcimem_bcopy(mbox, mqe, sizeof(struct lpfc_mqe));
04c68496 11936
73d91e50
JS
11937 /*
11938 * For mcqe errors, conditionally move a modified error code to
11939 * the mbox so that the error will not be missed.
11940 */
11941 mcqe_status = bf_get(lpfc_mcqe_status, mcqe);
11942 if (mcqe_status != MB_CQE_STATUS_SUCCESS) {
11943 if (bf_get(lpfc_mqe_status, mqe) == MBX_SUCCESS)
11944 bf_set(lpfc_mqe_status, mqe,
11945 (LPFC_MBX_ERROR_RANGE | mcqe_status));
11946 }
04c68496
JS
11947 if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
11948 pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
11949 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_MBOX_VPORT,
11950 "MBOX dflt rpi: status:x%x rpi:x%x",
11951 mcqe_status,
11952 pmbox->un.varWords[0], 0);
11953 if (mcqe_status == MB_CQE_STATUS_SUCCESS) {
11954 mp = (struct lpfc_dmabuf *)(pmb->context1);
11955 ndlp = (struct lpfc_nodelist *)pmb->context2;
11956 /* Reg_LOGIN of dflt RPI was successful. Now lets get
11957 * RID of the PPI using the same mbox buffer.
11958 */
11959 lpfc_unreg_login(phba, vport->vpi,
11960 pmbox->un.varWords[0], pmb);
11961 pmb->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
11962 pmb->context1 = mp;
11963 pmb->context2 = ndlp;
11964 pmb->vport = vport;
11965 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
11966 if (rc != MBX_BUSY)
11967 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
11968 LOG_SLI, "0385 rc should "
11969 "have been MBX_BUSY\n");
11970 if (rc != MBX_NOT_FINISHED)
11971 goto send_current_mbox;
11972 }
11973 }
11974 spin_lock_irqsave(&phba->pport->work_port_lock, iflags);
11975 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
11976 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflags);
11977
11978 /* There is mailbox completion work to do */
11979 spin_lock_irqsave(&phba->hbalock, iflags);
11980 __lpfc_mbox_cmpl_put(phba, pmb);
11981 phba->work_ha |= HA_MBATT;
11982 spin_unlock_irqrestore(&phba->hbalock, iflags);
11983 workposted = true;
11984
11985send_current_mbox:
11986 spin_lock_irqsave(&phba->hbalock, iflags);
11987 /* Release the mailbox command posting token */
11988 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
11989 /* Setting active mailbox pointer need to be in sync to flag clear */
11990 phba->sli.mbox_active = NULL;
11991 spin_unlock_irqrestore(&phba->hbalock, iflags);
11992 /* Wake up worker thread to post the next pending mailbox command */
11993 lpfc_worker_wake_up(phba);
11994out_no_mqe_complete:
11995 if (bf_get(lpfc_trailer_consumed, mcqe))
11996 lpfc_sli4_mq_release(phba->sli4_hba.mbx_wq);
11997 return workposted;
11998}
11999
12000/**
12001 * lpfc_sli4_sp_handle_mcqe - Process a mailbox completion queue entry
12002 * @phba: Pointer to HBA context object.
12003 * @cqe: Pointer to mailbox completion queue entry.
12004 *
12005 * This routine process a mailbox completion queue entry, it invokes the
12006 * proper mailbox complete handling or asynchrous event handling routine
12007 * according to the MCQE's async bit.
12008 *
12009 * Return: true if work posted to worker thread, otherwise false.
12010 **/
12011static bool
12012lpfc_sli4_sp_handle_mcqe(struct lpfc_hba *phba, struct lpfc_cqe *cqe)
12013{
12014 struct lpfc_mcqe mcqe;
12015 bool workposted;
12016
12017 /* Copy the mailbox MCQE and convert endian order as needed */
12018 lpfc_sli_pcimem_bcopy(cqe, &mcqe, sizeof(struct lpfc_mcqe));
12019
12020 /* Invoke the proper event handling routine */
12021 if (!bf_get(lpfc_trailer_async, &mcqe))
12022 workposted = lpfc_sli4_sp_handle_mbox_event(phba, &mcqe);
12023 else
12024 workposted = lpfc_sli4_sp_handle_async_event(phba, &mcqe);
12025 return workposted;
12026}
12027
4f774513
JS
12028/**
12029 * lpfc_sli4_sp_handle_els_wcqe - Handle els work-queue completion event
12030 * @phba: Pointer to HBA context object.
2a76a283 12031 * @cq: Pointer to associated CQ
4f774513
JS
12032 * @wcqe: Pointer to work-queue completion queue entry.
12033 *
12034 * This routine handles an ELS work-queue completion event.
12035 *
12036 * Return: true if work posted to worker thread, otherwise false.
12037 **/
12038static bool
2a76a283 12039lpfc_sli4_sp_handle_els_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
4f774513
JS
12040 struct lpfc_wcqe_complete *wcqe)
12041{
4f774513
JS
12042 struct lpfc_iocbq *irspiocbq;
12043 unsigned long iflags;
2a76a283 12044 struct lpfc_sli_ring *pring = cq->pring;
0e9bb8d7
JS
12045 int txq_cnt = 0;
12046 int txcmplq_cnt = 0;
12047 int fcp_txcmplq_cnt = 0;
4f774513 12048
45ed1190 12049 /* Get an irspiocbq for later ELS response processing use */
4f774513
JS
12050 irspiocbq = lpfc_sli_get_iocbq(phba);
12051 if (!irspiocbq) {
0e9bb8d7
JS
12052 if (!list_empty(&pring->txq))
12053 txq_cnt++;
12054 if (!list_empty(&pring->txcmplq))
12055 txcmplq_cnt++;
12056 if (!list_empty(&phba->sli.ring[LPFC_FCP_RING].txcmplq))
12057 fcp_txcmplq_cnt++;
4f774513 12058 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2a9bf3d0
JS
12059 "0387 NO IOCBQ data: txq_cnt=%d iocb_cnt=%d "
12060 "fcp_txcmplq_cnt=%d, els_txcmplq_cnt=%d\n",
0e9bb8d7
JS
12061 txq_cnt, phba->iocb_cnt,
12062 fcp_txcmplq_cnt,
12063 txcmplq_cnt);
45ed1190 12064 return false;
4f774513 12065 }
4f774513 12066
45ed1190
JS
12067 /* Save off the slow-path queue event for work thread to process */
12068 memcpy(&irspiocbq->cq_event.cqe.wcqe_cmpl, wcqe, sizeof(*wcqe));
4f774513 12069 spin_lock_irqsave(&phba->hbalock, iflags);
4d9ab994 12070 list_add_tail(&irspiocbq->cq_event.list,
45ed1190
JS
12071 &phba->sli4_hba.sp_queue_event);
12072 phba->hba_flag |= HBA_SP_QUEUE_EVT;
4f774513 12073 spin_unlock_irqrestore(&phba->hbalock, iflags);
4f774513 12074
45ed1190 12075 return true;
4f774513
JS
12076}
12077
12078/**
12079 * lpfc_sli4_sp_handle_rel_wcqe - Handle slow-path WQ entry consumed event
12080 * @phba: Pointer to HBA context object.
12081 * @wcqe: Pointer to work-queue completion queue entry.
12082 *
12083 * This routine handles slow-path WQ entry comsumed event by invoking the
12084 * proper WQ release routine to the slow-path WQ.
12085 **/
12086static void
12087lpfc_sli4_sp_handle_rel_wcqe(struct lpfc_hba *phba,
12088 struct lpfc_wcqe_release *wcqe)
12089{
2e90f4b5
JS
12090 /* sanity check on queue memory */
12091 if (unlikely(!phba->sli4_hba.els_wq))
12092 return;
4f774513
JS
12093 /* Check for the slow-path ELS work queue */
12094 if (bf_get(lpfc_wcqe_r_wq_id, wcqe) == phba->sli4_hba.els_wq->queue_id)
12095 lpfc_sli4_wq_release(phba->sli4_hba.els_wq,
12096 bf_get(lpfc_wcqe_r_wqe_index, wcqe));
12097 else
12098 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12099 "2579 Slow-path wqe consume event carries "
12100 "miss-matched qid: wcqe-qid=x%x, sp-qid=x%x\n",
12101 bf_get(lpfc_wcqe_r_wqe_index, wcqe),
12102 phba->sli4_hba.els_wq->queue_id);
12103}
12104
12105/**
12106 * lpfc_sli4_sp_handle_abort_xri_wcqe - Handle a xri abort event
12107 * @phba: Pointer to HBA context object.
12108 * @cq: Pointer to a WQ completion queue.
12109 * @wcqe: Pointer to work-queue completion queue entry.
12110 *
12111 * This routine handles an XRI abort event.
12112 *
12113 * Return: true if work posted to worker thread, otherwise false.
12114 **/
12115static bool
12116lpfc_sli4_sp_handle_abort_xri_wcqe(struct lpfc_hba *phba,
12117 struct lpfc_queue *cq,
12118 struct sli4_wcqe_xri_aborted *wcqe)
12119{
12120 bool workposted = false;
12121 struct lpfc_cq_event *cq_event;
12122 unsigned long iflags;
12123
12124 /* Allocate a new internal CQ_EVENT entry */
12125 cq_event = lpfc_sli4_cq_event_alloc(phba);
12126 if (!cq_event) {
12127 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12128 "0602 Failed to allocate CQ_EVENT entry\n");
12129 return false;
12130 }
12131
12132 /* Move the CQE into the proper xri abort event list */
12133 memcpy(&cq_event->cqe, wcqe, sizeof(struct sli4_wcqe_xri_aborted));
12134 switch (cq->subtype) {
12135 case LPFC_FCP:
12136 spin_lock_irqsave(&phba->hbalock, iflags);
12137 list_add_tail(&cq_event->list,
12138 &phba->sli4_hba.sp_fcp_xri_aborted_work_queue);
12139 /* Set the fcp xri abort event flag */
12140 phba->hba_flag |= FCP_XRI_ABORT_EVENT;
12141 spin_unlock_irqrestore(&phba->hbalock, iflags);
12142 workposted = true;
12143 break;
12144 case LPFC_ELS:
12145 spin_lock_irqsave(&phba->hbalock, iflags);
12146 list_add_tail(&cq_event->list,
12147 &phba->sli4_hba.sp_els_xri_aborted_work_queue);
12148 /* Set the els xri abort event flag */
12149 phba->hba_flag |= ELS_XRI_ABORT_EVENT;
12150 spin_unlock_irqrestore(&phba->hbalock, iflags);
12151 workposted = true;
12152 break;
12153 default:
12154 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12155 "0603 Invalid work queue CQE subtype (x%x)\n",
12156 cq->subtype);
12157 workposted = false;
12158 break;
12159 }
12160 return workposted;
12161}
12162
4f774513
JS
12163/**
12164 * lpfc_sli4_sp_handle_rcqe - Process a receive-queue completion queue entry
12165 * @phba: Pointer to HBA context object.
12166 * @rcqe: Pointer to receive-queue completion queue entry.
12167 *
12168 * This routine process a receive-queue completion queue entry.
12169 *
12170 * Return: true if work posted to worker thread, otherwise false.
12171 **/
12172static bool
4d9ab994 12173lpfc_sli4_sp_handle_rcqe(struct lpfc_hba *phba, struct lpfc_rcqe *rcqe)
4f774513 12174{
4f774513
JS
12175 bool workposted = false;
12176 struct lpfc_queue *hrq = phba->sli4_hba.hdr_rq;
12177 struct lpfc_queue *drq = phba->sli4_hba.dat_rq;
12178 struct hbq_dmabuf *dma_buf;
7851fe2c 12179 uint32_t status, rq_id;
4f774513
JS
12180 unsigned long iflags;
12181
2e90f4b5
JS
12182 /* sanity check on queue memory */
12183 if (unlikely(!hrq) || unlikely(!drq))
12184 return workposted;
12185
7851fe2c
JS
12186 if (bf_get(lpfc_cqe_code, rcqe) == CQE_CODE_RECEIVE_V1)
12187 rq_id = bf_get(lpfc_rcqe_rq_id_v1, rcqe);
12188 else
12189 rq_id = bf_get(lpfc_rcqe_rq_id, rcqe);
12190 if (rq_id != hrq->queue_id)
4f774513
JS
12191 goto out;
12192
4d9ab994 12193 status = bf_get(lpfc_rcqe_status, rcqe);
4f774513
JS
12194 switch (status) {
12195 case FC_STATUS_RQ_BUF_LEN_EXCEEDED:
12196 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12197 "2537 Receive Frame Truncated!!\n");
b84daac9 12198 hrq->RQ_buf_trunc++;
4f774513 12199 case FC_STATUS_RQ_SUCCESS:
5ffc266e 12200 lpfc_sli4_rq_release(hrq, drq);
4f774513
JS
12201 spin_lock_irqsave(&phba->hbalock, iflags);
12202 dma_buf = lpfc_sli_hbqbuf_get(&phba->hbqs[0].hbq_buffer_list);
12203 if (!dma_buf) {
b84daac9 12204 hrq->RQ_no_buf_found++;
4f774513
JS
12205 spin_unlock_irqrestore(&phba->hbalock, iflags);
12206 goto out;
12207 }
b84daac9 12208 hrq->RQ_rcv_buf++;
4d9ab994 12209 memcpy(&dma_buf->cq_event.cqe.rcqe_cmpl, rcqe, sizeof(*rcqe));
4f774513 12210 /* save off the frame for the word thread to process */
4d9ab994 12211 list_add_tail(&dma_buf->cq_event.list,
45ed1190 12212 &phba->sli4_hba.sp_queue_event);
4f774513 12213 /* Frame received */
45ed1190 12214 phba->hba_flag |= HBA_SP_QUEUE_EVT;
4f774513
JS
12215 spin_unlock_irqrestore(&phba->hbalock, iflags);
12216 workposted = true;
12217 break;
12218 case FC_STATUS_INSUFF_BUF_NEED_BUF:
12219 case FC_STATUS_INSUFF_BUF_FRM_DISC:
b84daac9 12220 hrq->RQ_no_posted_buf++;
4f774513
JS
12221 /* Post more buffers if possible */
12222 spin_lock_irqsave(&phba->hbalock, iflags);
12223 phba->hba_flag |= HBA_POST_RECEIVE_BUFFER;
12224 spin_unlock_irqrestore(&phba->hbalock, iflags);
12225 workposted = true;
12226 break;
12227 }
12228out:
12229 return workposted;
4f774513
JS
12230}
12231
4d9ab994
JS
12232/**
12233 * lpfc_sli4_sp_handle_cqe - Process a slow path completion queue entry
12234 * @phba: Pointer to HBA context object.
12235 * @cq: Pointer to the completion queue.
12236 * @wcqe: Pointer to a completion queue entry.
12237 *
25985edc 12238 * This routine process a slow-path work-queue or receive queue completion queue
4d9ab994
JS
12239 * entry.
12240 *
12241 * Return: true if work posted to worker thread, otherwise false.
12242 **/
12243static bool
12244lpfc_sli4_sp_handle_cqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
12245 struct lpfc_cqe *cqe)
12246{
45ed1190 12247 struct lpfc_cqe cqevt;
4d9ab994
JS
12248 bool workposted = false;
12249
12250 /* Copy the work queue CQE and convert endian order if needed */
45ed1190 12251 lpfc_sli_pcimem_bcopy(cqe, &cqevt, sizeof(struct lpfc_cqe));
4d9ab994
JS
12252
12253 /* Check and process for different type of WCQE and dispatch */
45ed1190 12254 switch (bf_get(lpfc_cqe_code, &cqevt)) {
4d9ab994 12255 case CQE_CODE_COMPL_WQE:
45ed1190 12256 /* Process the WQ/RQ complete event */
bc73905a 12257 phba->last_completion_time = jiffies;
2a76a283 12258 workposted = lpfc_sli4_sp_handle_els_wcqe(phba, cq,
45ed1190 12259 (struct lpfc_wcqe_complete *)&cqevt);
4d9ab994
JS
12260 break;
12261 case CQE_CODE_RELEASE_WQE:
12262 /* Process the WQ release event */
12263 lpfc_sli4_sp_handle_rel_wcqe(phba,
45ed1190 12264 (struct lpfc_wcqe_release *)&cqevt);
4d9ab994
JS
12265 break;
12266 case CQE_CODE_XRI_ABORTED:
12267 /* Process the WQ XRI abort event */
bc73905a 12268 phba->last_completion_time = jiffies;
4d9ab994 12269 workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
45ed1190 12270 (struct sli4_wcqe_xri_aborted *)&cqevt);
4d9ab994
JS
12271 break;
12272 case CQE_CODE_RECEIVE:
7851fe2c 12273 case CQE_CODE_RECEIVE_V1:
4d9ab994 12274 /* Process the RQ event */
bc73905a 12275 phba->last_completion_time = jiffies;
4d9ab994 12276 workposted = lpfc_sli4_sp_handle_rcqe(phba,
45ed1190 12277 (struct lpfc_rcqe *)&cqevt);
4d9ab994
JS
12278 break;
12279 default:
12280 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12281 "0388 Not a valid WCQE code: x%x\n",
45ed1190 12282 bf_get(lpfc_cqe_code, &cqevt));
4d9ab994
JS
12283 break;
12284 }
12285 return workposted;
12286}
12287
4f774513
JS
12288/**
12289 * lpfc_sli4_sp_handle_eqe - Process a slow-path event queue entry
12290 * @phba: Pointer to HBA context object.
12291 * @eqe: Pointer to fast-path event queue entry.
12292 *
12293 * This routine process a event queue entry from the slow-path event queue.
12294 * It will check the MajorCode and MinorCode to determine this is for a
12295 * completion event on a completion queue, if not, an error shall be logged
12296 * and just return. Otherwise, it will get to the corresponding completion
12297 * queue and process all the entries on that completion queue, rearm the
12298 * completion queue, and then return.
12299 *
12300 **/
12301static void
67d12733
JS
12302lpfc_sli4_sp_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe,
12303 struct lpfc_queue *speq)
4f774513 12304{
67d12733 12305 struct lpfc_queue *cq = NULL, *childq;
4f774513
JS
12306 struct lpfc_cqe *cqe;
12307 bool workposted = false;
12308 int ecount = 0;
12309 uint16_t cqid;
12310
4f774513 12311 /* Get the reference to the corresponding CQ */
cb5172ea 12312 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
4f774513 12313
4f774513
JS
12314 list_for_each_entry(childq, &speq->child_list, list) {
12315 if (childq->queue_id == cqid) {
12316 cq = childq;
12317 break;
12318 }
12319 }
12320 if (unlikely(!cq)) {
75baf696
JS
12321 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
12322 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12323 "0365 Slow-path CQ identifier "
12324 "(%d) does not exist\n", cqid);
4f774513
JS
12325 return;
12326 }
12327
12328 /* Process all the entries to the CQ */
12329 switch (cq->type) {
12330 case LPFC_MCQ:
12331 while ((cqe = lpfc_sli4_cq_get(cq))) {
12332 workposted |= lpfc_sli4_sp_handle_mcqe(phba, cqe);
73d91e50 12333 if (!(++ecount % cq->entry_repost))
4f774513 12334 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
b84daac9 12335 cq->CQ_mbox++;
4f774513
JS
12336 }
12337 break;
12338 case LPFC_WCQ:
12339 while ((cqe = lpfc_sli4_cq_get(cq))) {
0558056c
JS
12340 if (cq->subtype == LPFC_FCP)
12341 workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq,
12342 cqe);
12343 else
12344 workposted |= lpfc_sli4_sp_handle_cqe(phba, cq,
12345 cqe);
73d91e50 12346 if (!(++ecount % cq->entry_repost))
4f774513
JS
12347 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
12348 }
b84daac9
JS
12349
12350 /* Track the max number of CQEs processed in 1 EQ */
12351 if (ecount > cq->CQ_max_cqe)
12352 cq->CQ_max_cqe = ecount;
4f774513
JS
12353 break;
12354 default:
12355 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12356 "0370 Invalid completion queue type (%d)\n",
12357 cq->type);
12358 return;
12359 }
12360
12361 /* Catch the no cq entry condition, log an error */
12362 if (unlikely(ecount == 0))
12363 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12364 "0371 No entry from the CQ: identifier "
12365 "(x%x), type (%d)\n", cq->queue_id, cq->type);
12366
12367 /* In any case, flash and re-arm the RCQ */
12368 lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
12369
12370 /* wake up worker thread if there are works to be done */
12371 if (workposted)
12372 lpfc_worker_wake_up(phba);
12373}
12374
12375/**
12376 * lpfc_sli4_fp_handle_fcp_wcqe - Process fast-path work queue completion entry
2a76a283
JS
12377 * @phba: Pointer to HBA context object.
12378 * @cq: Pointer to associated CQ
12379 * @wcqe: Pointer to work-queue completion queue entry.
4f774513
JS
12380 *
12381 * This routine process a fast-path work queue completion entry from fast-path
12382 * event queue for FCP command response completion.
12383 **/
12384static void
2a76a283 12385lpfc_sli4_fp_handle_fcp_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
4f774513
JS
12386 struct lpfc_wcqe_complete *wcqe)
12387{
2a76a283 12388 struct lpfc_sli_ring *pring = cq->pring;
4f774513
JS
12389 struct lpfc_iocbq *cmdiocbq;
12390 struct lpfc_iocbq irspiocbq;
12391 unsigned long iflags;
12392
4f774513
JS
12393 /* Check for response status */
12394 if (unlikely(bf_get(lpfc_wcqe_c_status, wcqe))) {
12395 /* If resource errors reported from HBA, reduce queue
12396 * depth of the SCSI device.
12397 */
e3d2b802
JS
12398 if (((bf_get(lpfc_wcqe_c_status, wcqe) ==
12399 IOSTAT_LOCAL_REJECT)) &&
12400 ((wcqe->parameter & IOERR_PARAM_MASK) ==
12401 IOERR_NO_RESOURCES))
4f774513 12402 phba->lpfc_rampdown_queue_depth(phba);
e3d2b802 12403
4f774513
JS
12404 /* Log the error status */
12405 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12406 "0373 FCP complete error: status=x%x, "
12407 "hw_status=x%x, total_data_specified=%d, "
12408 "parameter=x%x, word3=x%x\n",
12409 bf_get(lpfc_wcqe_c_status, wcqe),
12410 bf_get(lpfc_wcqe_c_hw_status, wcqe),
12411 wcqe->total_data_placed, wcqe->parameter,
12412 wcqe->word3);
12413 }
12414
12415 /* Look up the FCP command IOCB and create pseudo response IOCB */
7e56aa25
JS
12416 spin_lock_irqsave(&pring->ring_lock, iflags);
12417 pring->stats.iocb_event++;
4f774513
JS
12418 cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
12419 bf_get(lpfc_wcqe_c_request_tag, wcqe));
7e56aa25 12420 spin_unlock_irqrestore(&pring->ring_lock, iflags);
4f774513
JS
12421 if (unlikely(!cmdiocbq)) {
12422 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12423 "0374 FCP complete with no corresponding "
12424 "cmdiocb: iotag (%d)\n",
12425 bf_get(lpfc_wcqe_c_request_tag, wcqe));
12426 return;
12427 }
12428 if (unlikely(!cmdiocbq->iocb_cmpl)) {
12429 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12430 "0375 FCP cmdiocb not callback function "
12431 "iotag: (%d)\n",
12432 bf_get(lpfc_wcqe_c_request_tag, wcqe));
12433 return;
12434 }
12435
12436 /* Fake the irspiocb and copy necessary response information */
341af102 12437 lpfc_sli4_iocb_param_transfer(phba, &irspiocbq, cmdiocbq, wcqe);
4f774513 12438
0f65ff68
JS
12439 if (cmdiocbq->iocb_flag & LPFC_DRIVER_ABORTED) {
12440 spin_lock_irqsave(&phba->hbalock, iflags);
12441 cmdiocbq->iocb_flag &= ~LPFC_DRIVER_ABORTED;
12442 spin_unlock_irqrestore(&phba->hbalock, iflags);
12443 }
12444
4f774513
JS
12445 /* Pass the cmd_iocb and the rsp state to the upper layer */
12446 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq, &irspiocbq);
12447}
12448
12449/**
12450 * lpfc_sli4_fp_handle_rel_wcqe - Handle fast-path WQ entry consumed event
12451 * @phba: Pointer to HBA context object.
12452 * @cq: Pointer to completion queue.
12453 * @wcqe: Pointer to work-queue completion queue entry.
12454 *
12455 * This routine handles an fast-path WQ entry comsumed event by invoking the
12456 * proper WQ release routine to the slow-path WQ.
12457 **/
12458static void
12459lpfc_sli4_fp_handle_rel_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
12460 struct lpfc_wcqe_release *wcqe)
12461{
12462 struct lpfc_queue *childwq;
12463 bool wqid_matched = false;
12464 uint16_t fcp_wqid;
12465
12466 /* Check for fast-path FCP work queue release */
12467 fcp_wqid = bf_get(lpfc_wcqe_r_wq_id, wcqe);
12468 list_for_each_entry(childwq, &cq->child_list, list) {
12469 if (childwq->queue_id == fcp_wqid) {
12470 lpfc_sli4_wq_release(childwq,
12471 bf_get(lpfc_wcqe_r_wqe_index, wcqe));
12472 wqid_matched = true;
12473 break;
12474 }
12475 }
12476 /* Report warning log message if no match found */
12477 if (wqid_matched != true)
12478 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12479 "2580 Fast-path wqe consume event carries "
12480 "miss-matched qid: wcqe-qid=x%x\n", fcp_wqid);
12481}
12482
12483/**
12484 * lpfc_sli4_fp_handle_wcqe - Process fast-path work queue completion entry
12485 * @cq: Pointer to the completion queue.
12486 * @eqe: Pointer to fast-path completion queue entry.
12487 *
12488 * This routine process a fast-path work queue completion entry from fast-path
12489 * event queue for FCP command response completion.
12490 **/
12491static int
12492lpfc_sli4_fp_handle_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
12493 struct lpfc_cqe *cqe)
12494{
12495 struct lpfc_wcqe_release wcqe;
12496 bool workposted = false;
12497
12498 /* Copy the work queue CQE and convert endian order if needed */
12499 lpfc_sli_pcimem_bcopy(cqe, &wcqe, sizeof(struct lpfc_cqe));
12500
12501 /* Check and process for different type of WCQE and dispatch */
12502 switch (bf_get(lpfc_wcqe_c_code, &wcqe)) {
12503 case CQE_CODE_COMPL_WQE:
b84daac9 12504 cq->CQ_wq++;
4f774513 12505 /* Process the WQ complete event */
98fc5dd9 12506 phba->last_completion_time = jiffies;
2a76a283 12507 lpfc_sli4_fp_handle_fcp_wcqe(phba, cq,
4f774513
JS
12508 (struct lpfc_wcqe_complete *)&wcqe);
12509 break;
12510 case CQE_CODE_RELEASE_WQE:
b84daac9 12511 cq->CQ_release_wqe++;
4f774513
JS
12512 /* Process the WQ release event */
12513 lpfc_sli4_fp_handle_rel_wcqe(phba, cq,
12514 (struct lpfc_wcqe_release *)&wcqe);
12515 break;
12516 case CQE_CODE_XRI_ABORTED:
b84daac9 12517 cq->CQ_xri_aborted++;
4f774513 12518 /* Process the WQ XRI abort event */
bc73905a 12519 phba->last_completion_time = jiffies;
4f774513
JS
12520 workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
12521 (struct sli4_wcqe_xri_aborted *)&wcqe);
12522 break;
12523 default:
12524 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12525 "0144 Not a valid WCQE code: x%x\n",
12526 bf_get(lpfc_wcqe_c_code, &wcqe));
12527 break;
12528 }
12529 return workposted;
12530}
12531
12532/**
67d12733 12533 * lpfc_sli4_hba_handle_eqe - Process a fast-path event queue entry
4f774513
JS
12534 * @phba: Pointer to HBA context object.
12535 * @eqe: Pointer to fast-path event queue entry.
12536 *
12537 * This routine process a event queue entry from the fast-path event queue.
12538 * It will check the MajorCode and MinorCode to determine this is for a
12539 * completion event on a completion queue, if not, an error shall be logged
12540 * and just return. Otherwise, it will get to the corresponding completion
12541 * queue and process all the entries on the completion queue, rearm the
12542 * completion queue, and then return.
12543 **/
12544static void
67d12733
JS
12545lpfc_sli4_hba_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe,
12546 uint32_t qidx)
4f774513
JS
12547{
12548 struct lpfc_queue *cq;
12549 struct lpfc_cqe *cqe;
12550 bool workposted = false;
12551 uint16_t cqid;
12552 int ecount = 0;
12553
cb5172ea 12554 if (unlikely(bf_get_le32(lpfc_eqe_major_code, eqe) != 0)) {
4f774513 12555 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
67d12733 12556 "0366 Not a valid completion "
4f774513 12557 "event: majorcode=x%x, minorcode=x%x\n",
cb5172ea
JS
12558 bf_get_le32(lpfc_eqe_major_code, eqe),
12559 bf_get_le32(lpfc_eqe_minor_code, eqe));
4f774513
JS
12560 return;
12561 }
12562
67d12733
JS
12563 /* Get the reference to the corresponding CQ */
12564 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
12565
12566 /* Check if this is a Slow path event */
12567 if (unlikely(cqid != phba->sli4_hba.fcp_cq_map[qidx])) {
12568 lpfc_sli4_sp_handle_eqe(phba, eqe,
12569 phba->sli4_hba.hba_eq[qidx]);
12570 return;
12571 }
12572
2e90f4b5
JS
12573 if (unlikely(!phba->sli4_hba.fcp_cq)) {
12574 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12575 "3146 Fast-path completion queues "
12576 "does not exist\n");
12577 return;
12578 }
67d12733 12579 cq = phba->sli4_hba.fcp_cq[qidx];
4f774513 12580 if (unlikely(!cq)) {
75baf696
JS
12581 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
12582 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12583 "0367 Fast-path completion queue "
67d12733 12584 "(%d) does not exist\n", qidx);
4f774513
JS
12585 return;
12586 }
12587
4f774513
JS
12588 if (unlikely(cqid != cq->queue_id)) {
12589 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12590 "0368 Miss-matched fast-path completion "
12591 "queue identifier: eqcqid=%d, fcpcqid=%d\n",
12592 cqid, cq->queue_id);
12593 return;
12594 }
12595
12596 /* Process all the entries to the CQ */
12597 while ((cqe = lpfc_sli4_cq_get(cq))) {
12598 workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq, cqe);
73d91e50 12599 if (!(++ecount % cq->entry_repost))
4f774513
JS
12600 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
12601 }
12602
b84daac9
JS
12603 /* Track the max number of CQEs processed in 1 EQ */
12604 if (ecount > cq->CQ_max_cqe)
12605 cq->CQ_max_cqe = ecount;
12606
4f774513
JS
12607 /* Catch the no cq entry condition */
12608 if (unlikely(ecount == 0))
12609 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12610 "0369 No entry from fast-path completion "
12611 "queue fcpcqid=%d\n", cq->queue_id);
12612
12613 /* In any case, flash and re-arm the CQ */
12614 lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
12615
12616 /* wake up worker thread if there are works to be done */
12617 if (workposted)
12618 lpfc_worker_wake_up(phba);
12619}
12620
12621static void
12622lpfc_sli4_eq_flush(struct lpfc_hba *phba, struct lpfc_queue *eq)
12623{
12624 struct lpfc_eqe *eqe;
12625
12626 /* walk all the EQ entries and drop on the floor */
12627 while ((eqe = lpfc_sli4_eq_get(eq)))
12628 ;
12629
12630 /* Clear and re-arm the EQ */
12631 lpfc_sli4_eq_release(eq, LPFC_QUEUE_REARM);
12632}
12633
1ba981fd
JS
12634
12635/**
12636 * lpfc_sli4_fof_handle_eqe - Process a Flash Optimized Fabric event queue
12637 * entry
12638 * @phba: Pointer to HBA context object.
12639 * @eqe: Pointer to fast-path event queue entry.
12640 *
12641 * This routine process a event queue entry from the Flash Optimized Fabric
12642 * event queue. It will check the MajorCode and MinorCode to determine this
12643 * is for a completion event on a completion queue, if not, an error shall be
12644 * logged and just return. Otherwise, it will get to the corresponding
12645 * completion queue and process all the entries on the completion queue, rearm
12646 * the completion queue, and then return.
12647 **/
12648static void
12649lpfc_sli4_fof_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe)
12650{
12651 struct lpfc_queue *cq;
12652 struct lpfc_cqe *cqe;
12653 bool workposted = false;
12654 uint16_t cqid;
12655 int ecount = 0;
12656
12657 if (unlikely(bf_get_le32(lpfc_eqe_major_code, eqe) != 0)) {
12658 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12659 "9147 Not a valid completion "
12660 "event: majorcode=x%x, minorcode=x%x\n",
12661 bf_get_le32(lpfc_eqe_major_code, eqe),
12662 bf_get_le32(lpfc_eqe_minor_code, eqe));
12663 return;
12664 }
12665
12666 /* Get the reference to the corresponding CQ */
12667 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
12668
12669 /* Next check for OAS */
12670 cq = phba->sli4_hba.oas_cq;
12671 if (unlikely(!cq)) {
12672 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
12673 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12674 "9148 OAS completion queue "
12675 "does not exist\n");
12676 return;
12677 }
12678
12679 if (unlikely(cqid != cq->queue_id)) {
12680 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12681 "9149 Miss-matched fast-path compl "
12682 "queue id: eqcqid=%d, fcpcqid=%d\n",
12683 cqid, cq->queue_id);
12684 return;
12685 }
12686
12687 /* Process all the entries to the OAS CQ */
12688 while ((cqe = lpfc_sli4_cq_get(cq))) {
12689 workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq, cqe);
12690 if (!(++ecount % cq->entry_repost))
12691 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
12692 }
12693
12694 /* Track the max number of CQEs processed in 1 EQ */
12695 if (ecount > cq->CQ_max_cqe)
12696 cq->CQ_max_cqe = ecount;
12697
12698 /* Catch the no cq entry condition */
12699 if (unlikely(ecount == 0))
12700 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12701 "9153 No entry from fast-path completion "
12702 "queue fcpcqid=%d\n", cq->queue_id);
12703
12704 /* In any case, flash and re-arm the CQ */
12705 lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
12706
12707 /* wake up worker thread if there are works to be done */
12708 if (workposted)
12709 lpfc_worker_wake_up(phba);
12710}
12711
12712/**
12713 * lpfc_sli4_fof_intr_handler - HBA interrupt handler to SLI-4 device
12714 * @irq: Interrupt number.
12715 * @dev_id: The device context pointer.
12716 *
12717 * This function is directly called from the PCI layer as an interrupt
12718 * service routine when device with SLI-4 interface spec is enabled with
12719 * MSI-X multi-message interrupt mode and there is a Flash Optimized Fabric
12720 * IOCB ring event in the HBA. However, when the device is enabled with either
12721 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
12722 * device-level interrupt handler. When the PCI slot is in error recovery
12723 * or the HBA is undergoing initialization, the interrupt handler will not
12724 * process the interrupt. The Flash Optimized Fabric ring event are handled in
12725 * the intrrupt context. This function is called without any lock held.
12726 * It gets the hbalock to access and update SLI data structures. Note that,
12727 * the EQ to CQ are one-to-one map such that the EQ index is
12728 * equal to that of CQ index.
12729 *
12730 * This function returns IRQ_HANDLED when interrupt is handled else it
12731 * returns IRQ_NONE.
12732 **/
12733irqreturn_t
12734lpfc_sli4_fof_intr_handler(int irq, void *dev_id)
12735{
12736 struct lpfc_hba *phba;
12737 struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
12738 struct lpfc_queue *eq;
12739 struct lpfc_eqe *eqe;
12740 unsigned long iflag;
12741 int ecount = 0;
1ba981fd
JS
12742
12743 /* Get the driver's phba structure from the dev_id */
12744 fcp_eq_hdl = (struct lpfc_fcp_eq_hdl *)dev_id;
12745 phba = fcp_eq_hdl->phba;
1ba981fd
JS
12746
12747 if (unlikely(!phba))
12748 return IRQ_NONE;
12749
12750 /* Get to the EQ struct associated with this vector */
12751 eq = phba->sli4_hba.fof_eq;
12752 if (unlikely(!eq))
12753 return IRQ_NONE;
12754
12755 /* Check device state for handling interrupt */
12756 if (unlikely(lpfc_intr_state_check(phba))) {
12757 eq->EQ_badstate++;
12758 /* Check again for link_state with lock held */
12759 spin_lock_irqsave(&phba->hbalock, iflag);
12760 if (phba->link_state < LPFC_LINK_DOWN)
12761 /* Flush, clear interrupt, and rearm the EQ */
12762 lpfc_sli4_eq_flush(phba, eq);
12763 spin_unlock_irqrestore(&phba->hbalock, iflag);
12764 return IRQ_NONE;
12765 }
12766
12767 /*
12768 * Process all the event on FCP fast-path EQ
12769 */
12770 while ((eqe = lpfc_sli4_eq_get(eq))) {
12771 lpfc_sli4_fof_handle_eqe(phba, eqe);
12772 if (!(++ecount % eq->entry_repost))
12773 lpfc_sli4_eq_release(eq, LPFC_QUEUE_NOARM);
12774 eq->EQ_processed++;
12775 }
12776
12777 /* Track the max number of EQEs processed in 1 intr */
12778 if (ecount > eq->EQ_max_eqe)
12779 eq->EQ_max_eqe = ecount;
12780
12781
12782 if (unlikely(ecount == 0)) {
12783 eq->EQ_no_entry++;
12784
12785 if (phba->intr_type == MSIX)
12786 /* MSI-X treated interrupt served as no EQ share INT */
12787 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12788 "9145 MSI-X interrupt with no EQE\n");
12789 else {
12790 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12791 "9146 ISR interrupt with no EQE\n");
12792 /* Non MSI-X treated on interrupt as EQ share INT */
12793 return IRQ_NONE;
12794 }
12795 }
12796 /* Always clear and re-arm the fast-path EQ */
12797 lpfc_sli4_eq_release(eq, LPFC_QUEUE_REARM);
12798 return IRQ_HANDLED;
12799}
12800
4f774513 12801/**
67d12733 12802 * lpfc_sli4_hba_intr_handler - HBA interrupt handler to SLI-4 device
4f774513
JS
12803 * @irq: Interrupt number.
12804 * @dev_id: The device context pointer.
12805 *
12806 * This function is directly called from the PCI layer as an interrupt
12807 * service routine when device with SLI-4 interface spec is enabled with
12808 * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
12809 * ring event in the HBA. However, when the device is enabled with either
12810 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
12811 * device-level interrupt handler. When the PCI slot is in error recovery
12812 * or the HBA is undergoing initialization, the interrupt handler will not
12813 * process the interrupt. The SCSI FCP fast-path ring event are handled in
12814 * the intrrupt context. This function is called without any lock held.
12815 * It gets the hbalock to access and update SLI data structures. Note that,
12816 * the FCP EQ to FCP CQ are one-to-one map such that the FCP EQ index is
12817 * equal to that of FCP CQ index.
12818 *
67d12733
JS
12819 * The link attention and ELS ring attention events are handled
12820 * by the worker thread. The interrupt handler signals the worker thread
12821 * and returns for these events. This function is called without any lock
12822 * held. It gets the hbalock to access and update SLI data structures.
12823 *
4f774513
JS
12824 * This function returns IRQ_HANDLED when interrupt is handled else it
12825 * returns IRQ_NONE.
12826 **/
12827irqreturn_t
67d12733 12828lpfc_sli4_hba_intr_handler(int irq, void *dev_id)
4f774513
JS
12829{
12830 struct lpfc_hba *phba;
12831 struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
12832 struct lpfc_queue *fpeq;
12833 struct lpfc_eqe *eqe;
12834 unsigned long iflag;
12835 int ecount = 0;
962bc51b 12836 int fcp_eqidx;
4f774513
JS
12837
12838 /* Get the driver's phba structure from the dev_id */
12839 fcp_eq_hdl = (struct lpfc_fcp_eq_hdl *)dev_id;
12840 phba = fcp_eq_hdl->phba;
12841 fcp_eqidx = fcp_eq_hdl->idx;
12842
12843 if (unlikely(!phba))
12844 return IRQ_NONE;
67d12733 12845 if (unlikely(!phba->sli4_hba.hba_eq))
5350d872 12846 return IRQ_NONE;
4f774513
JS
12847
12848 /* Get to the EQ struct associated with this vector */
67d12733 12849 fpeq = phba->sli4_hba.hba_eq[fcp_eqidx];
2e90f4b5
JS
12850 if (unlikely(!fpeq))
12851 return IRQ_NONE;
4f774513 12852
ba20c853
JS
12853 if (lpfc_fcp_look_ahead) {
12854 if (atomic_dec_and_test(&fcp_eq_hdl->fcp_eq_in_use))
12855 lpfc_sli4_eq_clr_intr(fpeq);
12856 else {
12857 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
12858 return IRQ_NONE;
12859 }
12860 }
12861
4f774513
JS
12862 /* Check device state for handling interrupt */
12863 if (unlikely(lpfc_intr_state_check(phba))) {
b84daac9 12864 fpeq->EQ_badstate++;
4f774513
JS
12865 /* Check again for link_state with lock held */
12866 spin_lock_irqsave(&phba->hbalock, iflag);
12867 if (phba->link_state < LPFC_LINK_DOWN)
12868 /* Flush, clear interrupt, and rearm the EQ */
12869 lpfc_sli4_eq_flush(phba, fpeq);
12870 spin_unlock_irqrestore(&phba->hbalock, iflag);
ba20c853
JS
12871 if (lpfc_fcp_look_ahead)
12872 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
4f774513
JS
12873 return IRQ_NONE;
12874 }
12875
12876 /*
12877 * Process all the event on FCP fast-path EQ
12878 */
12879 while ((eqe = lpfc_sli4_eq_get(fpeq))) {
eb016566
JS
12880 if (eqe == NULL)
12881 break;
12882
67d12733 12883 lpfc_sli4_hba_handle_eqe(phba, eqe, fcp_eqidx);
73d91e50 12884 if (!(++ecount % fpeq->entry_repost))
4f774513 12885 lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_NOARM);
b84daac9 12886 fpeq->EQ_processed++;
4f774513
JS
12887 }
12888
b84daac9
JS
12889 /* Track the max number of EQEs processed in 1 intr */
12890 if (ecount > fpeq->EQ_max_eqe)
12891 fpeq->EQ_max_eqe = ecount;
12892
4f774513
JS
12893 /* Always clear and re-arm the fast-path EQ */
12894 lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_REARM);
12895
12896 if (unlikely(ecount == 0)) {
b84daac9 12897 fpeq->EQ_no_entry++;
ba20c853
JS
12898
12899 if (lpfc_fcp_look_ahead) {
12900 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
12901 return IRQ_NONE;
12902 }
12903
4f774513
JS
12904 if (phba->intr_type == MSIX)
12905 /* MSI-X treated interrupt served as no EQ share INT */
12906 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12907 "0358 MSI-X interrupt with no EQE\n");
12908 else
12909 /* Non MSI-X treated on interrupt as EQ share INT */
12910 return IRQ_NONE;
12911 }
12912
ba20c853
JS
12913 if (lpfc_fcp_look_ahead)
12914 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
4f774513
JS
12915 return IRQ_HANDLED;
12916} /* lpfc_sli4_fp_intr_handler */
12917
12918/**
12919 * lpfc_sli4_intr_handler - Device-level interrupt handler for SLI-4 device
12920 * @irq: Interrupt number.
12921 * @dev_id: The device context pointer.
12922 *
12923 * This function is the device-level interrupt handler to device with SLI-4
12924 * interface spec, called from the PCI layer when either MSI or Pin-IRQ
12925 * interrupt mode is enabled and there is an event in the HBA which requires
12926 * driver attention. This function invokes the slow-path interrupt attention
12927 * handling function and fast-path interrupt attention handling function in
12928 * turn to process the relevant HBA attention events. This function is called
12929 * without any lock held. It gets the hbalock to access and update SLI data
12930 * structures.
12931 *
12932 * This function returns IRQ_HANDLED when interrupt is handled, else it
12933 * returns IRQ_NONE.
12934 **/
12935irqreturn_t
12936lpfc_sli4_intr_handler(int irq, void *dev_id)
12937{
12938 struct lpfc_hba *phba;
67d12733
JS
12939 irqreturn_t hba_irq_rc;
12940 bool hba_handled = false;
962bc51b 12941 int fcp_eqidx;
4f774513
JS
12942
12943 /* Get the driver's phba structure from the dev_id */
12944 phba = (struct lpfc_hba *)dev_id;
12945
12946 if (unlikely(!phba))
12947 return IRQ_NONE;
12948
4f774513
JS
12949 /*
12950 * Invoke fast-path host attention interrupt handling as appropriate.
12951 */
67d12733
JS
12952 for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_io_channel; fcp_eqidx++) {
12953 hba_irq_rc = lpfc_sli4_hba_intr_handler(irq,
4f774513 12954 &phba->sli4_hba.fcp_eq_hdl[fcp_eqidx]);
67d12733
JS
12955 if (hba_irq_rc == IRQ_HANDLED)
12956 hba_handled |= true;
4f774513
JS
12957 }
12958
1ba981fd
JS
12959 if (phba->cfg_fof) {
12960 hba_irq_rc = lpfc_sli4_fof_intr_handler(irq,
12961 &phba->sli4_hba.fcp_eq_hdl[0]);
12962 if (hba_irq_rc == IRQ_HANDLED)
12963 hba_handled |= true;
12964 }
12965
67d12733 12966 return (hba_handled == true) ? IRQ_HANDLED : IRQ_NONE;
4f774513
JS
12967} /* lpfc_sli4_intr_handler */
12968
12969/**
12970 * lpfc_sli4_queue_free - free a queue structure and associated memory
12971 * @queue: The queue structure to free.
12972 *
b595076a 12973 * This function frees a queue structure and the DMAable memory used for
4f774513
JS
12974 * the host resident queue. This function must be called after destroying the
12975 * queue on the HBA.
12976 **/
12977void
12978lpfc_sli4_queue_free(struct lpfc_queue *queue)
12979{
12980 struct lpfc_dmabuf *dmabuf;
12981
12982 if (!queue)
12983 return;
12984
12985 while (!list_empty(&queue->page_list)) {
12986 list_remove_head(&queue->page_list, dmabuf, struct lpfc_dmabuf,
12987 list);
49198b37 12988 dma_free_coherent(&queue->phba->pcidev->dev, SLI4_PAGE_SIZE,
4f774513
JS
12989 dmabuf->virt, dmabuf->phys);
12990 kfree(dmabuf);
12991 }
12992 kfree(queue);
12993 return;
12994}
12995
12996/**
12997 * lpfc_sli4_queue_alloc - Allocate and initialize a queue structure
12998 * @phba: The HBA that this queue is being created on.
12999 * @entry_size: The size of each queue entry for this queue.
13000 * @entry count: The number of entries that this queue will handle.
13001 *
13002 * This function allocates a queue structure and the DMAable memory used for
13003 * the host resident queue. This function must be called before creating the
13004 * queue on the HBA.
13005 **/
13006struct lpfc_queue *
13007lpfc_sli4_queue_alloc(struct lpfc_hba *phba, uint32_t entry_size,
13008 uint32_t entry_count)
13009{
13010 struct lpfc_queue *queue;
13011 struct lpfc_dmabuf *dmabuf;
13012 int x, total_qe_count;
13013 void *dma_pointer;
cb5172ea 13014 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
4f774513 13015
cb5172ea
JS
13016 if (!phba->sli4_hba.pc_sli4_params.supported)
13017 hw_page_size = SLI4_PAGE_SIZE;
13018
4f774513
JS
13019 queue = kzalloc(sizeof(struct lpfc_queue) +
13020 (sizeof(union sli4_qe) * entry_count), GFP_KERNEL);
13021 if (!queue)
13022 return NULL;
cb5172ea
JS
13023 queue->page_count = (ALIGN(entry_size * entry_count,
13024 hw_page_size))/hw_page_size;
4f774513
JS
13025 INIT_LIST_HEAD(&queue->list);
13026 INIT_LIST_HEAD(&queue->page_list);
13027 INIT_LIST_HEAD(&queue->child_list);
13028 for (x = 0, total_qe_count = 0; x < queue->page_count; x++) {
13029 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
13030 if (!dmabuf)
13031 goto out_fail;
1aee383d
JP
13032 dmabuf->virt = dma_zalloc_coherent(&phba->pcidev->dev,
13033 hw_page_size, &dmabuf->phys,
13034 GFP_KERNEL);
4f774513
JS
13035 if (!dmabuf->virt) {
13036 kfree(dmabuf);
13037 goto out_fail;
13038 }
13039 dmabuf->buffer_tag = x;
13040 list_add_tail(&dmabuf->list, &queue->page_list);
13041 /* initialize queue's entry array */
13042 dma_pointer = dmabuf->virt;
13043 for (; total_qe_count < entry_count &&
cb5172ea 13044 dma_pointer < (hw_page_size + dmabuf->virt);
4f774513
JS
13045 total_qe_count++, dma_pointer += entry_size) {
13046 queue->qe[total_qe_count].address = dma_pointer;
13047 }
13048 }
13049 queue->entry_size = entry_size;
13050 queue->entry_count = entry_count;
73d91e50
JS
13051
13052 /*
13053 * entry_repost is calculated based on the number of entries in the
13054 * queue. This works out except for RQs. If buffers are NOT initially
13055 * posted for every RQE, entry_repost should be adjusted accordingly.
13056 */
13057 queue->entry_repost = (entry_count >> 3);
13058 if (queue->entry_repost < LPFC_QUEUE_MIN_REPOST)
13059 queue->entry_repost = LPFC_QUEUE_MIN_REPOST;
4f774513
JS
13060 queue->phba = phba;
13061
13062 return queue;
13063out_fail:
13064 lpfc_sli4_queue_free(queue);
13065 return NULL;
13066}
13067
962bc51b
JS
13068/**
13069 * lpfc_dual_chute_pci_bar_map - Map pci base address register to host memory
13070 * @phba: HBA structure that indicates port to create a queue on.
13071 * @pci_barset: PCI BAR set flag.
13072 *
13073 * This function shall perform iomap of the specified PCI BAR address to host
13074 * memory address if not already done so and return it. The returned host
13075 * memory address can be NULL.
13076 */
13077static void __iomem *
13078lpfc_dual_chute_pci_bar_map(struct lpfc_hba *phba, uint16_t pci_barset)
13079{
962bc51b
JS
13080 if (!phba->pcidev)
13081 return NULL;
962bc51b
JS
13082
13083 switch (pci_barset) {
13084 case WQ_PCI_BAR_0_AND_1:
962bc51b
JS
13085 return phba->pci_bar0_memmap_p;
13086 case WQ_PCI_BAR_2_AND_3:
962bc51b
JS
13087 return phba->pci_bar2_memmap_p;
13088 case WQ_PCI_BAR_4_AND_5:
962bc51b
JS
13089 return phba->pci_bar4_memmap_p;
13090 default:
13091 break;
13092 }
13093 return NULL;
13094}
13095
173edbb2
JS
13096/**
13097 * lpfc_modify_fcp_eq_delay - Modify Delay Multiplier on FCP EQs
13098 * @phba: HBA structure that indicates port to create a queue on.
13099 * @startq: The starting FCP EQ to modify
13100 *
13101 * This function sends an MODIFY_EQ_DELAY mailbox command to the HBA.
13102 *
13103 * The @phba struct is used to send mailbox command to HBA. The @startq
13104 * is used to get the starting FCP EQ to change.
13105 * This function is asynchronous and will wait for the mailbox
13106 * command to finish before continuing.
13107 *
13108 * On success this function will return a zero. If unable to allocate enough
13109 * memory this function will return -ENOMEM. If the queue create mailbox command
13110 * fails this function will return -ENXIO.
13111 **/
a2fc4aef 13112int
2c9c5a00 13113lpfc_modify_fcp_eq_delay(struct lpfc_hba *phba, uint32_t startq)
173edbb2
JS
13114{
13115 struct lpfc_mbx_modify_eq_delay *eq_delay;
13116 LPFC_MBOXQ_t *mbox;
13117 struct lpfc_queue *eq;
13118 int cnt, rc, length, status = 0;
13119 uint32_t shdr_status, shdr_add_status;
ee02006b 13120 uint32_t result;
173edbb2
JS
13121 int fcp_eqidx;
13122 union lpfc_sli4_cfg_shdr *shdr;
13123 uint16_t dmult;
13124
67d12733 13125 if (startq >= phba->cfg_fcp_io_channel)
173edbb2
JS
13126 return 0;
13127
13128 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13129 if (!mbox)
13130 return -ENOMEM;
13131 length = (sizeof(struct lpfc_mbx_modify_eq_delay) -
13132 sizeof(struct lpfc_sli4_cfg_mhdr));
13133 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13134 LPFC_MBOX_OPCODE_MODIFY_EQ_DELAY,
13135 length, LPFC_SLI4_MBX_EMBED);
13136 eq_delay = &mbox->u.mqe.un.eq_delay;
13137
13138 /* Calculate delay multiper from maximum interrupt per second */
ee02006b
JS
13139 result = phba->cfg_fcp_imax / phba->cfg_fcp_io_channel;
13140 if (result > LPFC_DMULT_CONST)
13141 dmult = 0;
13142 else
13143 dmult = LPFC_DMULT_CONST/result - 1;
173edbb2
JS
13144
13145 cnt = 0;
67d12733 13146 for (fcp_eqidx = startq; fcp_eqidx < phba->cfg_fcp_io_channel;
173edbb2 13147 fcp_eqidx++) {
67d12733 13148 eq = phba->sli4_hba.hba_eq[fcp_eqidx];
173edbb2
JS
13149 if (!eq)
13150 continue;
13151 eq_delay->u.request.eq[cnt].eq_id = eq->queue_id;
13152 eq_delay->u.request.eq[cnt].phase = 0;
13153 eq_delay->u.request.eq[cnt].delay_multi = dmult;
13154 cnt++;
13155 if (cnt >= LPFC_MAX_EQ_DELAY)
13156 break;
13157 }
13158 eq_delay->u.request.num_eq = cnt;
13159
13160 mbox->vport = phba->pport;
13161 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
13162 mbox->context1 = NULL;
13163 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13164 shdr = (union lpfc_sli4_cfg_shdr *) &eq_delay->header.cfg_shdr;
13165 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13166 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13167 if (shdr_status || shdr_add_status || rc) {
13168 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13169 "2512 MODIFY_EQ_DELAY mailbox failed with "
13170 "status x%x add_status x%x, mbx status x%x\n",
13171 shdr_status, shdr_add_status, rc);
13172 status = -ENXIO;
13173 }
13174 mempool_free(mbox, phba->mbox_mem_pool);
13175 return status;
13176}
13177
4f774513
JS
13178/**
13179 * lpfc_eq_create - Create an Event Queue on the HBA
13180 * @phba: HBA structure that indicates port to create a queue on.
13181 * @eq: The queue structure to use to create the event queue.
13182 * @imax: The maximum interrupt per second limit.
13183 *
13184 * This function creates an event queue, as detailed in @eq, on a port,
13185 * described by @phba by sending an EQ_CREATE mailbox command to the HBA.
13186 *
13187 * The @phba struct is used to send mailbox command to HBA. The @eq struct
13188 * is used to get the entry count and entry size that are necessary to
13189 * determine the number of pages to allocate and use for this queue. This
13190 * function will send the EQ_CREATE mailbox command to the HBA to setup the
13191 * event queue. This function is asynchronous and will wait for the mailbox
13192 * command to finish before continuing.
13193 *
13194 * On success this function will return a zero. If unable to allocate enough
d439d286
JS
13195 * memory this function will return -ENOMEM. If the queue create mailbox command
13196 * fails this function will return -ENXIO.
4f774513 13197 **/
a2fc4aef 13198int
ee02006b 13199lpfc_eq_create(struct lpfc_hba *phba, struct lpfc_queue *eq, uint32_t imax)
4f774513
JS
13200{
13201 struct lpfc_mbx_eq_create *eq_create;
13202 LPFC_MBOXQ_t *mbox;
13203 int rc, length, status = 0;
13204 struct lpfc_dmabuf *dmabuf;
13205 uint32_t shdr_status, shdr_add_status;
13206 union lpfc_sli4_cfg_shdr *shdr;
13207 uint16_t dmult;
49198b37
JS
13208 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
13209
2e90f4b5
JS
13210 /* sanity check on queue memory */
13211 if (!eq)
13212 return -ENODEV;
49198b37
JS
13213 if (!phba->sli4_hba.pc_sli4_params.supported)
13214 hw_page_size = SLI4_PAGE_SIZE;
4f774513
JS
13215
13216 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13217 if (!mbox)
13218 return -ENOMEM;
13219 length = (sizeof(struct lpfc_mbx_eq_create) -
13220 sizeof(struct lpfc_sli4_cfg_mhdr));
13221 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13222 LPFC_MBOX_OPCODE_EQ_CREATE,
13223 length, LPFC_SLI4_MBX_EMBED);
13224 eq_create = &mbox->u.mqe.un.eq_create;
13225 bf_set(lpfc_mbx_eq_create_num_pages, &eq_create->u.request,
13226 eq->page_count);
13227 bf_set(lpfc_eq_context_size, &eq_create->u.request.context,
13228 LPFC_EQE_SIZE);
13229 bf_set(lpfc_eq_context_valid, &eq_create->u.request.context, 1);
2c9c5a00
JS
13230 /* don't setup delay multiplier using EQ_CREATE */
13231 dmult = 0;
4f774513
JS
13232 bf_set(lpfc_eq_context_delay_multi, &eq_create->u.request.context,
13233 dmult);
13234 switch (eq->entry_count) {
13235 default:
13236 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13237 "0360 Unsupported EQ count. (%d)\n",
13238 eq->entry_count);
13239 if (eq->entry_count < 256)
13240 return -EINVAL;
13241 /* otherwise default to smallest count (drop through) */
13242 case 256:
13243 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
13244 LPFC_EQ_CNT_256);
13245 break;
13246 case 512:
13247 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
13248 LPFC_EQ_CNT_512);
13249 break;
13250 case 1024:
13251 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
13252 LPFC_EQ_CNT_1024);
13253 break;
13254 case 2048:
13255 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
13256 LPFC_EQ_CNT_2048);
13257 break;
13258 case 4096:
13259 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
13260 LPFC_EQ_CNT_4096);
13261 break;
13262 }
13263 list_for_each_entry(dmabuf, &eq->page_list, list) {
49198b37 13264 memset(dmabuf->virt, 0, hw_page_size);
4f774513
JS
13265 eq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
13266 putPaddrLow(dmabuf->phys);
13267 eq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
13268 putPaddrHigh(dmabuf->phys);
13269 }
13270 mbox->vport = phba->pport;
13271 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
13272 mbox->context1 = NULL;
13273 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13274 shdr = (union lpfc_sli4_cfg_shdr *) &eq_create->header.cfg_shdr;
13275 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13276 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13277 if (shdr_status || shdr_add_status || rc) {
13278 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13279 "2500 EQ_CREATE mailbox failed with "
13280 "status x%x add_status x%x, mbx status x%x\n",
13281 shdr_status, shdr_add_status, rc);
13282 status = -ENXIO;
13283 }
13284 eq->type = LPFC_EQ;
13285 eq->subtype = LPFC_NONE;
13286 eq->queue_id = bf_get(lpfc_mbx_eq_create_q_id, &eq_create->u.response);
13287 if (eq->queue_id == 0xFFFF)
13288 status = -ENXIO;
13289 eq->host_index = 0;
13290 eq->hba_index = 0;
13291
8fa38513 13292 mempool_free(mbox, phba->mbox_mem_pool);
4f774513
JS
13293 return status;
13294}
13295
13296/**
13297 * lpfc_cq_create - Create a Completion Queue on the HBA
13298 * @phba: HBA structure that indicates port to create a queue on.
13299 * @cq: The queue structure to use to create the completion queue.
13300 * @eq: The event queue to bind this completion queue to.
13301 *
13302 * This function creates a completion queue, as detailed in @wq, on a port,
13303 * described by @phba by sending a CQ_CREATE mailbox command to the HBA.
13304 *
13305 * The @phba struct is used to send mailbox command to HBA. The @cq struct
13306 * is used to get the entry count and entry size that are necessary to
13307 * determine the number of pages to allocate and use for this queue. The @eq
13308 * is used to indicate which event queue to bind this completion queue to. This
13309 * function will send the CQ_CREATE mailbox command to the HBA to setup the
13310 * completion queue. This function is asynchronous and will wait for the mailbox
13311 * command to finish before continuing.
13312 *
13313 * On success this function will return a zero. If unable to allocate enough
d439d286
JS
13314 * memory this function will return -ENOMEM. If the queue create mailbox command
13315 * fails this function will return -ENXIO.
4f774513 13316 **/
a2fc4aef 13317int
4f774513
JS
13318lpfc_cq_create(struct lpfc_hba *phba, struct lpfc_queue *cq,
13319 struct lpfc_queue *eq, uint32_t type, uint32_t subtype)
13320{
13321 struct lpfc_mbx_cq_create *cq_create;
13322 struct lpfc_dmabuf *dmabuf;
13323 LPFC_MBOXQ_t *mbox;
13324 int rc, length, status = 0;
13325 uint32_t shdr_status, shdr_add_status;
13326 union lpfc_sli4_cfg_shdr *shdr;
49198b37
JS
13327 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
13328
2e90f4b5
JS
13329 /* sanity check on queue memory */
13330 if (!cq || !eq)
13331 return -ENODEV;
49198b37
JS
13332 if (!phba->sli4_hba.pc_sli4_params.supported)
13333 hw_page_size = SLI4_PAGE_SIZE;
13334
4f774513
JS
13335 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13336 if (!mbox)
13337 return -ENOMEM;
13338 length = (sizeof(struct lpfc_mbx_cq_create) -
13339 sizeof(struct lpfc_sli4_cfg_mhdr));
13340 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13341 LPFC_MBOX_OPCODE_CQ_CREATE,
13342 length, LPFC_SLI4_MBX_EMBED);
13343 cq_create = &mbox->u.mqe.un.cq_create;
5a6f133e 13344 shdr = (union lpfc_sli4_cfg_shdr *) &cq_create->header.cfg_shdr;
4f774513
JS
13345 bf_set(lpfc_mbx_cq_create_num_pages, &cq_create->u.request,
13346 cq->page_count);
13347 bf_set(lpfc_cq_context_event, &cq_create->u.request.context, 1);
13348 bf_set(lpfc_cq_context_valid, &cq_create->u.request.context, 1);
5a6f133e
JS
13349 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13350 phba->sli4_hba.pc_sli4_params.cqv);
13351 if (phba->sli4_hba.pc_sli4_params.cqv == LPFC_Q_CREATE_VERSION_2) {
c31098ce
JS
13352 /* FW only supports 1. Should be PAGE_SIZE/SLI4_PAGE_SIZE */
13353 bf_set(lpfc_mbx_cq_create_page_size, &cq_create->u.request, 1);
5a6f133e
JS
13354 bf_set(lpfc_cq_eq_id_2, &cq_create->u.request.context,
13355 eq->queue_id);
13356 } else {
13357 bf_set(lpfc_cq_eq_id, &cq_create->u.request.context,
13358 eq->queue_id);
13359 }
4f774513
JS
13360 switch (cq->entry_count) {
13361 default:
13362 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2ea259ee
JS
13363 "0361 Unsupported CQ count: "
13364 "entry cnt %d sz %d pg cnt %d repost %d\n",
13365 cq->entry_count, cq->entry_size,
13366 cq->page_count, cq->entry_repost);
4f4c1863
JS
13367 if (cq->entry_count < 256) {
13368 status = -EINVAL;
13369 goto out;
13370 }
4f774513
JS
13371 /* otherwise default to smallest count (drop through) */
13372 case 256:
13373 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
13374 LPFC_CQ_CNT_256);
13375 break;
13376 case 512:
13377 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
13378 LPFC_CQ_CNT_512);
13379 break;
13380 case 1024:
13381 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
13382 LPFC_CQ_CNT_1024);
13383 break;
13384 }
13385 list_for_each_entry(dmabuf, &cq->page_list, list) {
49198b37 13386 memset(dmabuf->virt, 0, hw_page_size);
4f774513
JS
13387 cq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
13388 putPaddrLow(dmabuf->phys);
13389 cq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
13390 putPaddrHigh(dmabuf->phys);
13391 }
13392 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13393
13394 /* The IOCTL status is embedded in the mailbox subheader. */
4f774513
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 "2501 CQ_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 }
13405 cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
13406 if (cq->queue_id == 0xFFFF) {
13407 status = -ENXIO;
13408 goto out;
13409 }
13410 /* link the cq onto the parent eq child list */
13411 list_add_tail(&cq->list, &eq->child_list);
13412 /* Set up completion queue's type and subtype */
13413 cq->type = type;
13414 cq->subtype = subtype;
13415 cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
2a622bfb 13416 cq->assoc_qid = eq->queue_id;
4f774513
JS
13417 cq->host_index = 0;
13418 cq->hba_index = 0;
4f774513 13419
8fa38513
JS
13420out:
13421 mempool_free(mbox, phba->mbox_mem_pool);
4f774513
JS
13422 return status;
13423}
13424
b19a061a
JS
13425/**
13426 * lpfc_mq_create_fb_init - Send MCC_CREATE without async events registration
13427 * @phba: HBA structure that indicates port to create a queue on.
13428 * @mq: The queue structure to use to create the mailbox queue.
13429 * @mbox: An allocated pointer to type LPFC_MBOXQ_t
13430 * @cq: The completion queue to associate with this cq.
13431 *
13432 * This function provides failback (fb) functionality when the
13433 * mq_create_ext fails on older FW generations. It's purpose is identical
13434 * to mq_create_ext otherwise.
13435 *
13436 * This routine cannot fail as all attributes were previously accessed and
13437 * initialized in mq_create_ext.
13438 **/
13439static void
13440lpfc_mq_create_fb_init(struct lpfc_hba *phba, struct lpfc_queue *mq,
13441 LPFC_MBOXQ_t *mbox, struct lpfc_queue *cq)
13442{
13443 struct lpfc_mbx_mq_create *mq_create;
13444 struct lpfc_dmabuf *dmabuf;
13445 int length;
13446
13447 length = (sizeof(struct lpfc_mbx_mq_create) -
13448 sizeof(struct lpfc_sli4_cfg_mhdr));
13449 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13450 LPFC_MBOX_OPCODE_MQ_CREATE,
13451 length, LPFC_SLI4_MBX_EMBED);
13452 mq_create = &mbox->u.mqe.un.mq_create;
13453 bf_set(lpfc_mbx_mq_create_num_pages, &mq_create->u.request,
13454 mq->page_count);
13455 bf_set(lpfc_mq_context_cq_id, &mq_create->u.request.context,
13456 cq->queue_id);
13457 bf_set(lpfc_mq_context_valid, &mq_create->u.request.context, 1);
13458 switch (mq->entry_count) {
13459 case 16:
5a6f133e
JS
13460 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
13461 LPFC_MQ_RING_SIZE_16);
b19a061a
JS
13462 break;
13463 case 32:
5a6f133e
JS
13464 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
13465 LPFC_MQ_RING_SIZE_32);
b19a061a
JS
13466 break;
13467 case 64:
5a6f133e
JS
13468 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
13469 LPFC_MQ_RING_SIZE_64);
b19a061a
JS
13470 break;
13471 case 128:
5a6f133e
JS
13472 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
13473 LPFC_MQ_RING_SIZE_128);
b19a061a
JS
13474 break;
13475 }
13476 list_for_each_entry(dmabuf, &mq->page_list, list) {
13477 mq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
13478 putPaddrLow(dmabuf->phys);
13479 mq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
13480 putPaddrHigh(dmabuf->phys);
13481 }
13482}
13483
04c68496
JS
13484/**
13485 * lpfc_mq_create - Create a mailbox Queue on the HBA
13486 * @phba: HBA structure that indicates port to create a queue on.
13487 * @mq: The queue structure to use to create the mailbox queue.
b19a061a
JS
13488 * @cq: The completion queue to associate with this cq.
13489 * @subtype: The queue's subtype.
04c68496
JS
13490 *
13491 * This function creates a mailbox queue, as detailed in @mq, on a port,
13492 * described by @phba by sending a MQ_CREATE mailbox command to the HBA.
13493 *
13494 * The @phba struct is used to send mailbox command to HBA. The @cq struct
13495 * is used to get the entry count and entry size that are necessary to
13496 * determine the number of pages to allocate and use for this queue. This
13497 * function will send the MQ_CREATE mailbox command to the HBA to setup the
13498 * mailbox queue. This function is asynchronous and will wait for the mailbox
13499 * command to finish before continuing.
13500 *
13501 * On success this function will return a zero. If unable to allocate enough
d439d286
JS
13502 * memory this function will return -ENOMEM. If the queue create mailbox command
13503 * fails this function will return -ENXIO.
04c68496 13504 **/
b19a061a 13505int32_t
04c68496
JS
13506lpfc_mq_create(struct lpfc_hba *phba, struct lpfc_queue *mq,
13507 struct lpfc_queue *cq, uint32_t subtype)
13508{
13509 struct lpfc_mbx_mq_create *mq_create;
b19a061a 13510 struct lpfc_mbx_mq_create_ext *mq_create_ext;
04c68496
JS
13511 struct lpfc_dmabuf *dmabuf;
13512 LPFC_MBOXQ_t *mbox;
13513 int rc, length, status = 0;
13514 uint32_t shdr_status, shdr_add_status;
13515 union lpfc_sli4_cfg_shdr *shdr;
49198b37 13516 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
04c68496 13517
2e90f4b5
JS
13518 /* sanity check on queue memory */
13519 if (!mq || !cq)
13520 return -ENODEV;
49198b37
JS
13521 if (!phba->sli4_hba.pc_sli4_params.supported)
13522 hw_page_size = SLI4_PAGE_SIZE;
b19a061a 13523
04c68496
JS
13524 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13525 if (!mbox)
13526 return -ENOMEM;
b19a061a 13527 length = (sizeof(struct lpfc_mbx_mq_create_ext) -
04c68496
JS
13528 sizeof(struct lpfc_sli4_cfg_mhdr));
13529 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
b19a061a 13530 LPFC_MBOX_OPCODE_MQ_CREATE_EXT,
04c68496 13531 length, LPFC_SLI4_MBX_EMBED);
b19a061a
JS
13532
13533 mq_create_ext = &mbox->u.mqe.un.mq_create_ext;
5a6f133e 13534 shdr = (union lpfc_sli4_cfg_shdr *) &mq_create_ext->header.cfg_shdr;
70f3c073
JS
13535 bf_set(lpfc_mbx_mq_create_ext_num_pages,
13536 &mq_create_ext->u.request, mq->page_count);
13537 bf_set(lpfc_mbx_mq_create_ext_async_evt_link,
13538 &mq_create_ext->u.request, 1);
13539 bf_set(lpfc_mbx_mq_create_ext_async_evt_fip,
b19a061a
JS
13540 &mq_create_ext->u.request, 1);
13541 bf_set(lpfc_mbx_mq_create_ext_async_evt_group5,
13542 &mq_create_ext->u.request, 1);
70f3c073
JS
13543 bf_set(lpfc_mbx_mq_create_ext_async_evt_fc,
13544 &mq_create_ext->u.request, 1);
13545 bf_set(lpfc_mbx_mq_create_ext_async_evt_sli,
13546 &mq_create_ext->u.request, 1);
b19a061a 13547 bf_set(lpfc_mq_context_valid, &mq_create_ext->u.request.context, 1);
5a6f133e
JS
13548 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13549 phba->sli4_hba.pc_sli4_params.mqv);
13550 if (phba->sli4_hba.pc_sli4_params.mqv == LPFC_Q_CREATE_VERSION_1)
13551 bf_set(lpfc_mbx_mq_create_ext_cq_id, &mq_create_ext->u.request,
13552 cq->queue_id);
13553 else
13554 bf_set(lpfc_mq_context_cq_id, &mq_create_ext->u.request.context,
13555 cq->queue_id);
04c68496
JS
13556 switch (mq->entry_count) {
13557 default:
13558 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13559 "0362 Unsupported MQ count. (%d)\n",
13560 mq->entry_count);
4f4c1863
JS
13561 if (mq->entry_count < 16) {
13562 status = -EINVAL;
13563 goto out;
13564 }
04c68496
JS
13565 /* otherwise default to smallest count (drop through) */
13566 case 16:
5a6f133e
JS
13567 bf_set(lpfc_mq_context_ring_size,
13568 &mq_create_ext->u.request.context,
13569 LPFC_MQ_RING_SIZE_16);
04c68496
JS
13570 break;
13571 case 32:
5a6f133e
JS
13572 bf_set(lpfc_mq_context_ring_size,
13573 &mq_create_ext->u.request.context,
13574 LPFC_MQ_RING_SIZE_32);
04c68496
JS
13575 break;
13576 case 64:
5a6f133e
JS
13577 bf_set(lpfc_mq_context_ring_size,
13578 &mq_create_ext->u.request.context,
13579 LPFC_MQ_RING_SIZE_64);
04c68496
JS
13580 break;
13581 case 128:
5a6f133e
JS
13582 bf_set(lpfc_mq_context_ring_size,
13583 &mq_create_ext->u.request.context,
13584 LPFC_MQ_RING_SIZE_128);
04c68496
JS
13585 break;
13586 }
13587 list_for_each_entry(dmabuf, &mq->page_list, list) {
49198b37 13588 memset(dmabuf->virt, 0, hw_page_size);
b19a061a 13589 mq_create_ext->u.request.page[dmabuf->buffer_tag].addr_lo =
04c68496 13590 putPaddrLow(dmabuf->phys);
b19a061a 13591 mq_create_ext->u.request.page[dmabuf->buffer_tag].addr_hi =
04c68496
JS
13592 putPaddrHigh(dmabuf->phys);
13593 }
13594 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
b19a061a
JS
13595 mq->queue_id = bf_get(lpfc_mbx_mq_create_q_id,
13596 &mq_create_ext->u.response);
13597 if (rc != MBX_SUCCESS) {
13598 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
13599 "2795 MQ_CREATE_EXT failed with "
13600 "status x%x. Failback to MQ_CREATE.\n",
13601 rc);
13602 lpfc_mq_create_fb_init(phba, mq, mbox, cq);
13603 mq_create = &mbox->u.mqe.un.mq_create;
13604 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13605 shdr = (union lpfc_sli4_cfg_shdr *) &mq_create->header.cfg_shdr;
13606 mq->queue_id = bf_get(lpfc_mbx_mq_create_q_id,
13607 &mq_create->u.response);
13608 }
13609
04c68496 13610 /* The IOCTL status is embedded in the mailbox subheader. */
04c68496
JS
13611 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13612 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13613 if (shdr_status || shdr_add_status || rc) {
13614 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13615 "2502 MQ_CREATE mailbox failed with "
13616 "status x%x add_status x%x, mbx status x%x\n",
13617 shdr_status, shdr_add_status, rc);
13618 status = -ENXIO;
13619 goto out;
13620 }
04c68496
JS
13621 if (mq->queue_id == 0xFFFF) {
13622 status = -ENXIO;
13623 goto out;
13624 }
13625 mq->type = LPFC_MQ;
2a622bfb 13626 mq->assoc_qid = cq->queue_id;
04c68496
JS
13627 mq->subtype = subtype;
13628 mq->host_index = 0;
13629 mq->hba_index = 0;
13630
13631 /* link the mq onto the parent cq child list */
13632 list_add_tail(&mq->list, &cq->child_list);
13633out:
8fa38513 13634 mempool_free(mbox, phba->mbox_mem_pool);
04c68496
JS
13635 return status;
13636}
13637
4f774513
JS
13638/**
13639 * lpfc_wq_create - Create a Work Queue on the HBA
13640 * @phba: HBA structure that indicates port to create a queue on.
13641 * @wq: The queue structure to use to create the work queue.
13642 * @cq: The completion queue to bind this work queue to.
13643 * @subtype: The subtype of the work queue indicating its functionality.
13644 *
13645 * This function creates a work queue, as detailed in @wq, on a port, described
13646 * by @phba by sending a WQ_CREATE mailbox command to the HBA.
13647 *
13648 * The @phba struct is used to send mailbox command to HBA. The @wq struct
13649 * is used to get the entry count and entry size that are necessary to
13650 * determine the number of pages to allocate and use for this queue. The @cq
13651 * is used to indicate which completion queue to bind this work queue to. This
13652 * function will send the WQ_CREATE mailbox command to the HBA to setup the
13653 * work queue. This function is asynchronous and will wait for the mailbox
13654 * command to finish before continuing.
13655 *
13656 * On success this function will return a zero. If unable to allocate enough
d439d286
JS
13657 * memory this function will return -ENOMEM. If the queue create mailbox command
13658 * fails this function will return -ENXIO.
4f774513 13659 **/
a2fc4aef 13660int
4f774513
JS
13661lpfc_wq_create(struct lpfc_hba *phba, struct lpfc_queue *wq,
13662 struct lpfc_queue *cq, uint32_t subtype)
13663{
13664 struct lpfc_mbx_wq_create *wq_create;
13665 struct lpfc_dmabuf *dmabuf;
13666 LPFC_MBOXQ_t *mbox;
13667 int rc, length, status = 0;
13668 uint32_t shdr_status, shdr_add_status;
13669 union lpfc_sli4_cfg_shdr *shdr;
49198b37 13670 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
5a6f133e 13671 struct dma_address *page;
962bc51b
JS
13672 void __iomem *bar_memmap_p;
13673 uint32_t db_offset;
13674 uint16_t pci_barset;
49198b37 13675
2e90f4b5
JS
13676 /* sanity check on queue memory */
13677 if (!wq || !cq)
13678 return -ENODEV;
49198b37
JS
13679 if (!phba->sli4_hba.pc_sli4_params.supported)
13680 hw_page_size = SLI4_PAGE_SIZE;
4f774513
JS
13681
13682 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13683 if (!mbox)
13684 return -ENOMEM;
13685 length = (sizeof(struct lpfc_mbx_wq_create) -
13686 sizeof(struct lpfc_sli4_cfg_mhdr));
13687 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13688 LPFC_MBOX_OPCODE_FCOE_WQ_CREATE,
13689 length, LPFC_SLI4_MBX_EMBED);
13690 wq_create = &mbox->u.mqe.un.wq_create;
5a6f133e 13691 shdr = (union lpfc_sli4_cfg_shdr *) &wq_create->header.cfg_shdr;
4f774513
JS
13692 bf_set(lpfc_mbx_wq_create_num_pages, &wq_create->u.request,
13693 wq->page_count);
13694 bf_set(lpfc_mbx_wq_create_cq_id, &wq_create->u.request,
13695 cq->queue_id);
0c651878
JS
13696
13697 /* wqv is the earliest version supported, NOT the latest */
5a6f133e
JS
13698 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13699 phba->sli4_hba.pc_sli4_params.wqv);
962bc51b 13700
0c651878
JS
13701 switch (phba->sli4_hba.pc_sli4_params.wqv) {
13702 case LPFC_Q_CREATE_VERSION_0:
13703 switch (wq->entry_size) {
13704 default:
13705 case 64:
13706 /* Nothing to do, version 0 ONLY supports 64 byte */
13707 page = wq_create->u.request.page;
13708 break;
13709 case 128:
13710 if (!(phba->sli4_hba.pc_sli4_params.wqsize &
13711 LPFC_WQ_SZ128_SUPPORT)) {
13712 status = -ERANGE;
13713 goto out;
13714 }
13715 /* If we get here the HBA MUST also support V1 and
13716 * we MUST use it
13717 */
13718 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13719 LPFC_Q_CREATE_VERSION_1);
13720
13721 bf_set(lpfc_mbx_wq_create_wqe_count,
13722 &wq_create->u.request_1, wq->entry_count);
13723 bf_set(lpfc_mbx_wq_create_wqe_size,
13724 &wq_create->u.request_1,
13725 LPFC_WQ_WQE_SIZE_128);
13726 bf_set(lpfc_mbx_wq_create_page_size,
13727 &wq_create->u.request_1,
8ea73db4 13728 LPFC_WQ_PAGE_SIZE_4096);
0c651878
JS
13729 page = wq_create->u.request_1.page;
13730 break;
13731 }
13732 break;
13733 case LPFC_Q_CREATE_VERSION_1:
5a6f133e
JS
13734 bf_set(lpfc_mbx_wq_create_wqe_count, &wq_create->u.request_1,
13735 wq->entry_count);
13736 switch (wq->entry_size) {
13737 default:
13738 case 64:
13739 bf_set(lpfc_mbx_wq_create_wqe_size,
13740 &wq_create->u.request_1,
13741 LPFC_WQ_WQE_SIZE_64);
13742 break;
13743 case 128:
0c651878
JS
13744 if (!(phba->sli4_hba.pc_sli4_params.wqsize &
13745 LPFC_WQ_SZ128_SUPPORT)) {
13746 status = -ERANGE;
13747 goto out;
13748 }
5a6f133e
JS
13749 bf_set(lpfc_mbx_wq_create_wqe_size,
13750 &wq_create->u.request_1,
13751 LPFC_WQ_WQE_SIZE_128);
13752 break;
13753 }
8ea73db4
JS
13754 bf_set(lpfc_mbx_wq_create_page_size,
13755 &wq_create->u.request_1,
13756 LPFC_WQ_PAGE_SIZE_4096);
5a6f133e 13757 page = wq_create->u.request_1.page;
0c651878
JS
13758 break;
13759 default:
13760 status = -ERANGE;
13761 goto out;
5a6f133e 13762 }
0c651878 13763
4f774513 13764 list_for_each_entry(dmabuf, &wq->page_list, list) {
49198b37 13765 memset(dmabuf->virt, 0, hw_page_size);
5a6f133e
JS
13766 page[dmabuf->buffer_tag].addr_lo = putPaddrLow(dmabuf->phys);
13767 page[dmabuf->buffer_tag].addr_hi = putPaddrHigh(dmabuf->phys);
4f774513 13768 }
962bc51b
JS
13769
13770 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
13771 bf_set(lpfc_mbx_wq_create_dua, &wq_create->u.request, 1);
13772
4f774513
JS
13773 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13774 /* The IOCTL status is embedded in the mailbox subheader. */
4f774513
JS
13775 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13776 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13777 if (shdr_status || shdr_add_status || rc) {
13778 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13779 "2503 WQ_CREATE mailbox failed with "
13780 "status x%x add_status x%x, mbx status x%x\n",
13781 shdr_status, shdr_add_status, rc);
13782 status = -ENXIO;
13783 goto out;
13784 }
13785 wq->queue_id = bf_get(lpfc_mbx_wq_create_q_id, &wq_create->u.response);
13786 if (wq->queue_id == 0xFFFF) {
13787 status = -ENXIO;
13788 goto out;
13789 }
962bc51b
JS
13790 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE) {
13791 wq->db_format = bf_get(lpfc_mbx_wq_create_db_format,
13792 &wq_create->u.response);
13793 if ((wq->db_format != LPFC_DB_LIST_FORMAT) &&
13794 (wq->db_format != LPFC_DB_RING_FORMAT)) {
13795 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13796 "3265 WQ[%d] doorbell format not "
13797 "supported: x%x\n", wq->queue_id,
13798 wq->db_format);
13799 status = -EINVAL;
13800 goto out;
13801 }
13802 pci_barset = bf_get(lpfc_mbx_wq_create_bar_set,
13803 &wq_create->u.response);
13804 bar_memmap_p = lpfc_dual_chute_pci_bar_map(phba, pci_barset);
13805 if (!bar_memmap_p) {
13806 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13807 "3263 WQ[%d] failed to memmap pci "
13808 "barset:x%x\n", wq->queue_id,
13809 pci_barset);
13810 status = -ENOMEM;
13811 goto out;
13812 }
13813 db_offset = wq_create->u.response.doorbell_offset;
13814 if ((db_offset != LPFC_ULP0_WQ_DOORBELL) &&
13815 (db_offset != LPFC_ULP1_WQ_DOORBELL)) {
13816 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13817 "3252 WQ[%d] doorbell offset not "
13818 "supported: x%x\n", wq->queue_id,
13819 db_offset);
13820 status = -EINVAL;
13821 goto out;
13822 }
13823 wq->db_regaddr = bar_memmap_p + db_offset;
13824 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
a22e7db3
JS
13825 "3264 WQ[%d]: barset:x%x, offset:x%x, "
13826 "format:x%x\n", wq->queue_id, pci_barset,
13827 db_offset, wq->db_format);
962bc51b
JS
13828 } else {
13829 wq->db_format = LPFC_DB_LIST_FORMAT;
13830 wq->db_regaddr = phba->sli4_hba.WQDBregaddr;
13831 }
4f774513 13832 wq->type = LPFC_WQ;
2a622bfb 13833 wq->assoc_qid = cq->queue_id;
4f774513
JS
13834 wq->subtype = subtype;
13835 wq->host_index = 0;
13836 wq->hba_index = 0;
ff78d8f9 13837 wq->entry_repost = LPFC_RELEASE_NOTIFICATION_INTERVAL;
4f774513
JS
13838
13839 /* link the wq onto the parent cq child list */
13840 list_add_tail(&wq->list, &cq->child_list);
13841out:
8fa38513 13842 mempool_free(mbox, phba->mbox_mem_pool);
4f774513
JS
13843 return status;
13844}
13845
73d91e50
JS
13846/**
13847 * lpfc_rq_adjust_repost - Adjust entry_repost for an RQ
13848 * @phba: HBA structure that indicates port to create a queue on.
13849 * @rq: The queue structure to use for the receive queue.
13850 * @qno: The associated HBQ number
13851 *
13852 *
13853 * For SLI4 we need to adjust the RQ repost value based on
13854 * the number of buffers that are initially posted to the RQ.
13855 */
13856void
13857lpfc_rq_adjust_repost(struct lpfc_hba *phba, struct lpfc_queue *rq, int qno)
13858{
13859 uint32_t cnt;
13860
2e90f4b5
JS
13861 /* sanity check on queue memory */
13862 if (!rq)
13863 return;
73d91e50
JS
13864 cnt = lpfc_hbq_defs[qno]->entry_count;
13865
13866 /* Recalc repost for RQs based on buffers initially posted */
13867 cnt = (cnt >> 3);
13868 if (cnt < LPFC_QUEUE_MIN_REPOST)
13869 cnt = LPFC_QUEUE_MIN_REPOST;
13870
13871 rq->entry_repost = cnt;
13872}
13873
4f774513
JS
13874/**
13875 * lpfc_rq_create - Create a Receive Queue on the HBA
13876 * @phba: HBA structure that indicates port to create a queue on.
13877 * @hrq: The queue structure to use to create the header receive queue.
13878 * @drq: The queue structure to use to create the data receive queue.
13879 * @cq: The completion queue to bind this work queue to.
13880 *
13881 * This function creates a receive buffer queue pair , as detailed in @hrq and
13882 * @drq, on a port, described by @phba by sending a RQ_CREATE mailbox command
13883 * to the HBA.
13884 *
13885 * The @phba struct is used to send mailbox command to HBA. The @drq and @hrq
13886 * struct is used to get the entry count that is necessary to determine the
13887 * number of pages to use for this queue. The @cq is used to indicate which
13888 * completion queue to bind received buffers that are posted to these queues to.
13889 * This function will send the RQ_CREATE mailbox command to the HBA to setup the
13890 * receive queue pair. This function is asynchronous and will wait for the
13891 * mailbox command to finish before continuing.
13892 *
13893 * On success this function will return a zero. If unable to allocate enough
d439d286
JS
13894 * memory this function will return -ENOMEM. If the queue create mailbox command
13895 * fails this function will return -ENXIO.
4f774513 13896 **/
a2fc4aef 13897int
4f774513
JS
13898lpfc_rq_create(struct lpfc_hba *phba, struct lpfc_queue *hrq,
13899 struct lpfc_queue *drq, struct lpfc_queue *cq, uint32_t subtype)
13900{
13901 struct lpfc_mbx_rq_create *rq_create;
13902 struct lpfc_dmabuf *dmabuf;
13903 LPFC_MBOXQ_t *mbox;
13904 int rc, length, status = 0;
13905 uint32_t shdr_status, shdr_add_status;
13906 union lpfc_sli4_cfg_shdr *shdr;
49198b37 13907 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
962bc51b
JS
13908 void __iomem *bar_memmap_p;
13909 uint32_t db_offset;
13910 uint16_t pci_barset;
49198b37 13911
2e90f4b5
JS
13912 /* sanity check on queue memory */
13913 if (!hrq || !drq || !cq)
13914 return -ENODEV;
49198b37
JS
13915 if (!phba->sli4_hba.pc_sli4_params.supported)
13916 hw_page_size = SLI4_PAGE_SIZE;
4f774513
JS
13917
13918 if (hrq->entry_count != drq->entry_count)
13919 return -EINVAL;
13920 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13921 if (!mbox)
13922 return -ENOMEM;
13923 length = (sizeof(struct lpfc_mbx_rq_create) -
13924 sizeof(struct lpfc_sli4_cfg_mhdr));
13925 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13926 LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
13927 length, LPFC_SLI4_MBX_EMBED);
13928 rq_create = &mbox->u.mqe.un.rq_create;
5a6f133e
JS
13929 shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
13930 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13931 phba->sli4_hba.pc_sli4_params.rqv);
13932 if (phba->sli4_hba.pc_sli4_params.rqv == LPFC_Q_CREATE_VERSION_1) {
13933 bf_set(lpfc_rq_context_rqe_count_1,
13934 &rq_create->u.request.context,
13935 hrq->entry_count);
13936 rq_create->u.request.context.buffer_size = LPFC_HDR_BUF_SIZE;
c31098ce
JS
13937 bf_set(lpfc_rq_context_rqe_size,
13938 &rq_create->u.request.context,
13939 LPFC_RQE_SIZE_8);
13940 bf_set(lpfc_rq_context_page_size,
13941 &rq_create->u.request.context,
8ea73db4 13942 LPFC_RQ_PAGE_SIZE_4096);
5a6f133e
JS
13943 } else {
13944 switch (hrq->entry_count) {
13945 default:
13946 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13947 "2535 Unsupported RQ count. (%d)\n",
13948 hrq->entry_count);
4f4c1863
JS
13949 if (hrq->entry_count < 512) {
13950 status = -EINVAL;
13951 goto out;
13952 }
5a6f133e
JS
13953 /* otherwise default to smallest count (drop through) */
13954 case 512:
13955 bf_set(lpfc_rq_context_rqe_count,
13956 &rq_create->u.request.context,
13957 LPFC_RQ_RING_SIZE_512);
13958 break;
13959 case 1024:
13960 bf_set(lpfc_rq_context_rqe_count,
13961 &rq_create->u.request.context,
13962 LPFC_RQ_RING_SIZE_1024);
13963 break;
13964 case 2048:
13965 bf_set(lpfc_rq_context_rqe_count,
13966 &rq_create->u.request.context,
13967 LPFC_RQ_RING_SIZE_2048);
13968 break;
13969 case 4096:
13970 bf_set(lpfc_rq_context_rqe_count,
13971 &rq_create->u.request.context,
13972 LPFC_RQ_RING_SIZE_4096);
13973 break;
13974 }
13975 bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
13976 LPFC_HDR_BUF_SIZE);
4f774513
JS
13977 }
13978 bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
13979 cq->queue_id);
13980 bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
13981 hrq->page_count);
4f774513 13982 list_for_each_entry(dmabuf, &hrq->page_list, list) {
49198b37 13983 memset(dmabuf->virt, 0, hw_page_size);
4f774513
JS
13984 rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
13985 putPaddrLow(dmabuf->phys);
13986 rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
13987 putPaddrHigh(dmabuf->phys);
13988 }
962bc51b
JS
13989 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
13990 bf_set(lpfc_mbx_rq_create_dua, &rq_create->u.request, 1);
13991
4f774513
JS
13992 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13993 /* The IOCTL status is embedded in the mailbox subheader. */
4f774513
JS
13994 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13995 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13996 if (shdr_status || shdr_add_status || rc) {
13997 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13998 "2504 RQ_CREATE mailbox failed with "
13999 "status x%x add_status x%x, mbx status x%x\n",
14000 shdr_status, shdr_add_status, rc);
14001 status = -ENXIO;
14002 goto out;
14003 }
14004 hrq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
14005 if (hrq->queue_id == 0xFFFF) {
14006 status = -ENXIO;
14007 goto out;
14008 }
962bc51b
JS
14009
14010 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE) {
14011 hrq->db_format = bf_get(lpfc_mbx_rq_create_db_format,
14012 &rq_create->u.response);
14013 if ((hrq->db_format != LPFC_DB_LIST_FORMAT) &&
14014 (hrq->db_format != LPFC_DB_RING_FORMAT)) {
14015 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14016 "3262 RQ [%d] doorbell format not "
14017 "supported: x%x\n", hrq->queue_id,
14018 hrq->db_format);
14019 status = -EINVAL;
14020 goto out;
14021 }
14022
14023 pci_barset = bf_get(lpfc_mbx_rq_create_bar_set,
14024 &rq_create->u.response);
14025 bar_memmap_p = lpfc_dual_chute_pci_bar_map(phba, pci_barset);
14026 if (!bar_memmap_p) {
14027 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14028 "3269 RQ[%d] failed to memmap pci "
14029 "barset:x%x\n", hrq->queue_id,
14030 pci_barset);
14031 status = -ENOMEM;
14032 goto out;
14033 }
14034
14035 db_offset = rq_create->u.response.doorbell_offset;
14036 if ((db_offset != LPFC_ULP0_RQ_DOORBELL) &&
14037 (db_offset != LPFC_ULP1_RQ_DOORBELL)) {
14038 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14039 "3270 RQ[%d] doorbell offset not "
14040 "supported: x%x\n", hrq->queue_id,
14041 db_offset);
14042 status = -EINVAL;
14043 goto out;
14044 }
14045 hrq->db_regaddr = bar_memmap_p + db_offset;
14046 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
a22e7db3
JS
14047 "3266 RQ[qid:%d]: barset:x%x, offset:x%x, "
14048 "format:x%x\n", hrq->queue_id, pci_barset,
14049 db_offset, hrq->db_format);
962bc51b
JS
14050 } else {
14051 hrq->db_format = LPFC_DB_RING_FORMAT;
14052 hrq->db_regaddr = phba->sli4_hba.RQDBregaddr;
14053 }
4f774513 14054 hrq->type = LPFC_HRQ;
2a622bfb 14055 hrq->assoc_qid = cq->queue_id;
4f774513
JS
14056 hrq->subtype = subtype;
14057 hrq->host_index = 0;
14058 hrq->hba_index = 0;
14059
14060 /* now create the data queue */
14061 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14062 LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
14063 length, LPFC_SLI4_MBX_EMBED);
5a6f133e
JS
14064 bf_set(lpfc_mbox_hdr_version, &shdr->request,
14065 phba->sli4_hba.pc_sli4_params.rqv);
14066 if (phba->sli4_hba.pc_sli4_params.rqv == LPFC_Q_CREATE_VERSION_1) {
14067 bf_set(lpfc_rq_context_rqe_count_1,
c31098ce 14068 &rq_create->u.request.context, hrq->entry_count);
5a6f133e 14069 rq_create->u.request.context.buffer_size = LPFC_DATA_BUF_SIZE;
c31098ce
JS
14070 bf_set(lpfc_rq_context_rqe_size, &rq_create->u.request.context,
14071 LPFC_RQE_SIZE_8);
14072 bf_set(lpfc_rq_context_page_size, &rq_create->u.request.context,
14073 (PAGE_SIZE/SLI4_PAGE_SIZE));
5a6f133e
JS
14074 } else {
14075 switch (drq->entry_count) {
14076 default:
14077 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14078 "2536 Unsupported RQ count. (%d)\n",
14079 drq->entry_count);
4f4c1863
JS
14080 if (drq->entry_count < 512) {
14081 status = -EINVAL;
14082 goto out;
14083 }
5a6f133e
JS
14084 /* otherwise default to smallest count (drop through) */
14085 case 512:
14086 bf_set(lpfc_rq_context_rqe_count,
14087 &rq_create->u.request.context,
14088 LPFC_RQ_RING_SIZE_512);
14089 break;
14090 case 1024:
14091 bf_set(lpfc_rq_context_rqe_count,
14092 &rq_create->u.request.context,
14093 LPFC_RQ_RING_SIZE_1024);
14094 break;
14095 case 2048:
14096 bf_set(lpfc_rq_context_rqe_count,
14097 &rq_create->u.request.context,
14098 LPFC_RQ_RING_SIZE_2048);
14099 break;
14100 case 4096:
14101 bf_set(lpfc_rq_context_rqe_count,
14102 &rq_create->u.request.context,
14103 LPFC_RQ_RING_SIZE_4096);
14104 break;
14105 }
14106 bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
14107 LPFC_DATA_BUF_SIZE);
4f774513
JS
14108 }
14109 bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
14110 cq->queue_id);
14111 bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
14112 drq->page_count);
4f774513
JS
14113 list_for_each_entry(dmabuf, &drq->page_list, list) {
14114 rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
14115 putPaddrLow(dmabuf->phys);
14116 rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
14117 putPaddrHigh(dmabuf->phys);
14118 }
962bc51b
JS
14119 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
14120 bf_set(lpfc_mbx_rq_create_dua, &rq_create->u.request, 1);
4f774513
JS
14121 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
14122 /* The IOCTL status is embedded in the mailbox subheader. */
14123 shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
14124 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14125 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14126 if (shdr_status || shdr_add_status || rc) {
14127 status = -ENXIO;
14128 goto out;
14129 }
14130 drq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
14131 if (drq->queue_id == 0xFFFF) {
14132 status = -ENXIO;
14133 goto out;
14134 }
14135 drq->type = LPFC_DRQ;
2a622bfb 14136 drq->assoc_qid = cq->queue_id;
4f774513
JS
14137 drq->subtype = subtype;
14138 drq->host_index = 0;
14139 drq->hba_index = 0;
14140
14141 /* link the header and data RQs onto the parent cq child list */
14142 list_add_tail(&hrq->list, &cq->child_list);
14143 list_add_tail(&drq->list, &cq->child_list);
14144
14145out:
8fa38513 14146 mempool_free(mbox, phba->mbox_mem_pool);
4f774513
JS
14147 return status;
14148}
14149
14150/**
14151 * lpfc_eq_destroy - Destroy an event Queue on the HBA
14152 * @eq: The queue structure associated with the queue to destroy.
14153 *
14154 * This function destroys a queue, as detailed in @eq by sending an mailbox
14155 * command, specific to the type of queue, to the HBA.
14156 *
14157 * The @eq 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_eq_destroy(struct lpfc_hba *phba, struct lpfc_queue *eq)
14164{
14165 LPFC_MBOXQ_t *mbox;
14166 int rc, length, status = 0;
14167 uint32_t shdr_status, shdr_add_status;
14168 union lpfc_sli4_cfg_shdr *shdr;
14169
2e90f4b5 14170 /* sanity check on queue memory */
4f774513
JS
14171 if (!eq)
14172 return -ENODEV;
14173 mbox = mempool_alloc(eq->phba->mbox_mem_pool, GFP_KERNEL);
14174 if (!mbox)
14175 return -ENOMEM;
14176 length = (sizeof(struct lpfc_mbx_eq_destroy) -
14177 sizeof(struct lpfc_sli4_cfg_mhdr));
14178 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
14179 LPFC_MBOX_OPCODE_EQ_DESTROY,
14180 length, LPFC_SLI4_MBX_EMBED);
14181 bf_set(lpfc_mbx_eq_destroy_q_id, &mbox->u.mqe.un.eq_destroy.u.request,
14182 eq->queue_id);
14183 mbox->vport = eq->phba->pport;
14184 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
14185
14186 rc = lpfc_sli_issue_mbox(eq->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.eq_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 "2505 EQ_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 status = -ENXIO;
14198 }
14199
14200 /* Remove eq from any list */
14201 list_del_init(&eq->list);
8fa38513 14202 mempool_free(mbox, eq->phba->mbox_mem_pool);
4f774513
JS
14203 return status;
14204}
14205
14206/**
14207 * lpfc_cq_destroy - Destroy a Completion Queue on the HBA
14208 * @cq: The queue structure associated with the queue to destroy.
14209 *
14210 * This function destroys a queue, as detailed in @cq by sending an mailbox
14211 * command, specific to the type of queue, to the HBA.
14212 *
14213 * The @cq struct is used to get the queue ID of the queue to destroy.
14214 *
14215 * On success this function will return a zero. If the queue destroy mailbox
d439d286 14216 * command fails this function will return -ENXIO.
4f774513 14217 **/
a2fc4aef 14218int
4f774513
JS
14219lpfc_cq_destroy(struct lpfc_hba *phba, struct lpfc_queue *cq)
14220{
14221 LPFC_MBOXQ_t *mbox;
14222 int rc, length, status = 0;
14223 uint32_t shdr_status, shdr_add_status;
14224 union lpfc_sli4_cfg_shdr *shdr;
14225
2e90f4b5 14226 /* sanity check on queue memory */
4f774513
JS
14227 if (!cq)
14228 return -ENODEV;
14229 mbox = mempool_alloc(cq->phba->mbox_mem_pool, GFP_KERNEL);
14230 if (!mbox)
14231 return -ENOMEM;
14232 length = (sizeof(struct lpfc_mbx_cq_destroy) -
14233 sizeof(struct lpfc_sli4_cfg_mhdr));
14234 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
14235 LPFC_MBOX_OPCODE_CQ_DESTROY,
14236 length, LPFC_SLI4_MBX_EMBED);
14237 bf_set(lpfc_mbx_cq_destroy_q_id, &mbox->u.mqe.un.cq_destroy.u.request,
14238 cq->queue_id);
14239 mbox->vport = cq->phba->pport;
14240 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
14241 rc = lpfc_sli_issue_mbox(cq->phba, mbox, MBX_POLL);
14242 /* The IOCTL status is embedded in the mailbox subheader. */
14243 shdr = (union lpfc_sli4_cfg_shdr *)
14244 &mbox->u.mqe.un.wq_create.header.cfg_shdr;
14245 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14246 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14247 if (shdr_status || shdr_add_status || rc) {
14248 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14249 "2506 CQ_DESTROY mailbox failed with "
14250 "status x%x add_status x%x, mbx status x%x\n",
14251 shdr_status, shdr_add_status, rc);
14252 status = -ENXIO;
14253 }
14254 /* Remove cq from any list */
14255 list_del_init(&cq->list);
8fa38513 14256 mempool_free(mbox, cq->phba->mbox_mem_pool);
4f774513
JS
14257 return status;
14258}
14259
04c68496
JS
14260/**
14261 * lpfc_mq_destroy - Destroy a Mailbox Queue on the HBA
14262 * @qm: The queue structure associated with the queue to destroy.
14263 *
14264 * This function destroys a queue, as detailed in @mq by sending an mailbox
14265 * command, specific to the type of queue, to the HBA.
14266 *
14267 * The @mq struct is used to get the queue ID of the queue to destroy.
14268 *
14269 * On success this function will return a zero. If the queue destroy mailbox
d439d286 14270 * command fails this function will return -ENXIO.
04c68496 14271 **/
a2fc4aef 14272int
04c68496
JS
14273lpfc_mq_destroy(struct lpfc_hba *phba, struct lpfc_queue *mq)
14274{
14275 LPFC_MBOXQ_t *mbox;
14276 int rc, length, status = 0;
14277 uint32_t shdr_status, shdr_add_status;
14278 union lpfc_sli4_cfg_shdr *shdr;
14279
2e90f4b5 14280 /* sanity check on queue memory */
04c68496
JS
14281 if (!mq)
14282 return -ENODEV;
14283 mbox = mempool_alloc(mq->phba->mbox_mem_pool, GFP_KERNEL);
14284 if (!mbox)
14285 return -ENOMEM;
14286 length = (sizeof(struct lpfc_mbx_mq_destroy) -
14287 sizeof(struct lpfc_sli4_cfg_mhdr));
14288 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
14289 LPFC_MBOX_OPCODE_MQ_DESTROY,
14290 length, LPFC_SLI4_MBX_EMBED);
14291 bf_set(lpfc_mbx_mq_destroy_q_id, &mbox->u.mqe.un.mq_destroy.u.request,
14292 mq->queue_id);
14293 mbox->vport = mq->phba->pport;
14294 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
14295 rc = lpfc_sli_issue_mbox(mq->phba, mbox, MBX_POLL);
14296 /* The IOCTL status is embedded in the mailbox subheader. */
14297 shdr = (union lpfc_sli4_cfg_shdr *)
14298 &mbox->u.mqe.un.mq_destroy.header.cfg_shdr;
14299 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14300 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14301 if (shdr_status || shdr_add_status || rc) {
14302 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14303 "2507 MQ_DESTROY mailbox failed with "
14304 "status x%x add_status x%x, mbx status x%x\n",
14305 shdr_status, shdr_add_status, rc);
14306 status = -ENXIO;
14307 }
14308 /* Remove mq from any list */
14309 list_del_init(&mq->list);
8fa38513 14310 mempool_free(mbox, mq->phba->mbox_mem_pool);
04c68496
JS
14311 return status;
14312}
14313
4f774513
JS
14314/**
14315 * lpfc_wq_destroy - Destroy a Work Queue on the HBA
14316 * @wq: The queue structure associated with the queue to destroy.
14317 *
14318 * This function destroys a queue, as detailed in @wq by sending an mailbox
14319 * command, specific to the type of queue, to the HBA.
14320 *
14321 * The @wq struct is used to get the queue ID of the queue to destroy.
14322 *
14323 * On success this function will return a zero. If the queue destroy mailbox
d439d286 14324 * command fails this function will return -ENXIO.
4f774513 14325 **/
a2fc4aef 14326int
4f774513
JS
14327lpfc_wq_destroy(struct lpfc_hba *phba, struct lpfc_queue *wq)
14328{
14329 LPFC_MBOXQ_t *mbox;
14330 int rc, length, status = 0;
14331 uint32_t shdr_status, shdr_add_status;
14332 union lpfc_sli4_cfg_shdr *shdr;
14333
2e90f4b5 14334 /* sanity check on queue memory */
4f774513
JS
14335 if (!wq)
14336 return -ENODEV;
14337 mbox = mempool_alloc(wq->phba->mbox_mem_pool, GFP_KERNEL);
14338 if (!mbox)
14339 return -ENOMEM;
14340 length = (sizeof(struct lpfc_mbx_wq_destroy) -
14341 sizeof(struct lpfc_sli4_cfg_mhdr));
14342 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14343 LPFC_MBOX_OPCODE_FCOE_WQ_DESTROY,
14344 length, LPFC_SLI4_MBX_EMBED);
14345 bf_set(lpfc_mbx_wq_destroy_q_id, &mbox->u.mqe.un.wq_destroy.u.request,
14346 wq->queue_id);
14347 mbox->vport = wq->phba->pport;
14348 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
14349 rc = lpfc_sli_issue_mbox(wq->phba, mbox, MBX_POLL);
14350 shdr = (union lpfc_sli4_cfg_shdr *)
14351 &mbox->u.mqe.un.wq_destroy.header.cfg_shdr;
14352 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14353 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14354 if (shdr_status || shdr_add_status || rc) {
14355 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14356 "2508 WQ_DESTROY mailbox failed with "
14357 "status x%x add_status x%x, mbx status x%x\n",
14358 shdr_status, shdr_add_status, rc);
14359 status = -ENXIO;
14360 }
14361 /* Remove wq from any list */
14362 list_del_init(&wq->list);
8fa38513 14363 mempool_free(mbox, wq->phba->mbox_mem_pool);
4f774513
JS
14364 return status;
14365}
14366
14367/**
14368 * lpfc_rq_destroy - Destroy a Receive Queue on the HBA
14369 * @rq: The queue structure associated with the queue to destroy.
14370 *
14371 * This function destroys a queue, as detailed in @rq by sending an mailbox
14372 * command, specific to the type of queue, to the HBA.
14373 *
14374 * The @rq struct is used to get the queue ID of the queue to destroy.
14375 *
14376 * On success this function will return a zero. If the queue destroy mailbox
d439d286 14377 * command fails this function will return -ENXIO.
4f774513 14378 **/
a2fc4aef 14379int
4f774513
JS
14380lpfc_rq_destroy(struct lpfc_hba *phba, struct lpfc_queue *hrq,
14381 struct lpfc_queue *drq)
14382{
14383 LPFC_MBOXQ_t *mbox;
14384 int rc, length, status = 0;
14385 uint32_t shdr_status, shdr_add_status;
14386 union lpfc_sli4_cfg_shdr *shdr;
14387
2e90f4b5 14388 /* sanity check on queue memory */
4f774513
JS
14389 if (!hrq || !drq)
14390 return -ENODEV;
14391 mbox = mempool_alloc(hrq->phba->mbox_mem_pool, GFP_KERNEL);
14392 if (!mbox)
14393 return -ENOMEM;
14394 length = (sizeof(struct lpfc_mbx_rq_destroy) -
fedd3b7b 14395 sizeof(struct lpfc_sli4_cfg_mhdr));
4f774513
JS
14396 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14397 LPFC_MBOX_OPCODE_FCOE_RQ_DESTROY,
14398 length, LPFC_SLI4_MBX_EMBED);
14399 bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
14400 hrq->queue_id);
14401 mbox->vport = hrq->phba->pport;
14402 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
14403 rc = lpfc_sli_issue_mbox(hrq->phba, mbox, MBX_POLL);
14404 /* The IOCTL status is embedded in the mailbox subheader. */
14405 shdr = (union lpfc_sli4_cfg_shdr *)
14406 &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
14407 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14408 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14409 if (shdr_status || shdr_add_status || rc) {
14410 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14411 "2509 RQ_DESTROY mailbox failed with "
14412 "status x%x add_status x%x, mbx status x%x\n",
14413 shdr_status, shdr_add_status, rc);
14414 if (rc != MBX_TIMEOUT)
14415 mempool_free(mbox, hrq->phba->mbox_mem_pool);
14416 return -ENXIO;
14417 }
14418 bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
14419 drq->queue_id);
14420 rc = lpfc_sli_issue_mbox(drq->phba, mbox, MBX_POLL);
14421 shdr = (union lpfc_sli4_cfg_shdr *)
14422 &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
14423 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14424 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14425 if (shdr_status || shdr_add_status || rc) {
14426 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14427 "2510 RQ_DESTROY mailbox failed with "
14428 "status x%x add_status x%x, mbx status x%x\n",
14429 shdr_status, shdr_add_status, rc);
14430 status = -ENXIO;
14431 }
14432 list_del_init(&hrq->list);
14433 list_del_init(&drq->list);
8fa38513 14434 mempool_free(mbox, hrq->phba->mbox_mem_pool);
4f774513
JS
14435 return status;
14436}
14437
14438/**
14439 * lpfc_sli4_post_sgl - Post scatter gather list for an XRI to HBA
14440 * @phba: The virtual port for which this call being executed.
14441 * @pdma_phys_addr0: Physical address of the 1st SGL page.
14442 * @pdma_phys_addr1: Physical address of the 2nd SGL page.
14443 * @xritag: the xritag that ties this io to the SGL pages.
14444 *
14445 * This routine will post the sgl pages for the IO that has the xritag
14446 * that is in the iocbq structure. The xritag is assigned during iocbq
14447 * creation and persists for as long as the driver is loaded.
14448 * if the caller has fewer than 256 scatter gather segments to map then
14449 * pdma_phys_addr1 should be 0.
14450 * If the caller needs to map more than 256 scatter gather segment then
14451 * pdma_phys_addr1 should be a valid physical address.
14452 * physical address for SGLs must be 64 byte aligned.
14453 * If you are going to map 2 SGL's then the first one must have 256 entries
14454 * the second sgl can have between 1 and 256 entries.
14455 *
14456 * Return codes:
14457 * 0 - Success
14458 * -ENXIO, -ENOMEM - Failure
14459 **/
14460int
14461lpfc_sli4_post_sgl(struct lpfc_hba *phba,
14462 dma_addr_t pdma_phys_addr0,
14463 dma_addr_t pdma_phys_addr1,
14464 uint16_t xritag)
14465{
14466 struct lpfc_mbx_post_sgl_pages *post_sgl_pages;
14467 LPFC_MBOXQ_t *mbox;
14468 int rc;
14469 uint32_t shdr_status, shdr_add_status;
6d368e53 14470 uint32_t mbox_tmo;
4f774513
JS
14471 union lpfc_sli4_cfg_shdr *shdr;
14472
14473 if (xritag == NO_XRI) {
14474 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14475 "0364 Invalid param:\n");
14476 return -EINVAL;
14477 }
14478
14479 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
14480 if (!mbox)
14481 return -ENOMEM;
14482
14483 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14484 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES,
14485 sizeof(struct lpfc_mbx_post_sgl_pages) -
fedd3b7b 14486 sizeof(struct lpfc_sli4_cfg_mhdr), LPFC_SLI4_MBX_EMBED);
4f774513
JS
14487
14488 post_sgl_pages = (struct lpfc_mbx_post_sgl_pages *)
14489 &mbox->u.mqe.un.post_sgl_pages;
14490 bf_set(lpfc_post_sgl_pages_xri, post_sgl_pages, xritag);
14491 bf_set(lpfc_post_sgl_pages_xricnt, post_sgl_pages, 1);
14492
14493 post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_lo =
14494 cpu_to_le32(putPaddrLow(pdma_phys_addr0));
14495 post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_hi =
14496 cpu_to_le32(putPaddrHigh(pdma_phys_addr0));
14497
14498 post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_lo =
14499 cpu_to_le32(putPaddrLow(pdma_phys_addr1));
14500 post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_hi =
14501 cpu_to_le32(putPaddrHigh(pdma_phys_addr1));
14502 if (!phba->sli4_hba.intr_enable)
14503 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
6d368e53 14504 else {
a183a15f 14505 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
6d368e53
JS
14506 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
14507 }
4f774513
JS
14508 /* The IOCTL status is embedded in the mailbox subheader. */
14509 shdr = (union lpfc_sli4_cfg_shdr *) &post_sgl_pages->header.cfg_shdr;
14510 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14511 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14512 if (rc != MBX_TIMEOUT)
14513 mempool_free(mbox, phba->mbox_mem_pool);
14514 if (shdr_status || shdr_add_status || rc) {
14515 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14516 "2511 POST_SGL mailbox failed with "
14517 "status x%x add_status x%x, mbx status x%x\n",
14518 shdr_status, shdr_add_status, rc);
4f774513
JS
14519 }
14520 return 0;
14521}
4f774513 14522
6d368e53 14523/**
88a2cfbb 14524 * lpfc_sli4_alloc_xri - Get an available rpi in the device's range
6d368e53
JS
14525 * @phba: pointer to lpfc hba data structure.
14526 *
14527 * This routine is invoked to post rpi header templates to the
88a2cfbb
JS
14528 * HBA consistent with the SLI-4 interface spec. This routine
14529 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
14530 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
6d368e53 14531 *
88a2cfbb
JS
14532 * Returns
14533 * A nonzero rpi defined as rpi_base <= rpi < max_rpi if successful
14534 * LPFC_RPI_ALLOC_ERROR if no rpis are available.
14535 **/
5d8b8167 14536static uint16_t
6d368e53
JS
14537lpfc_sli4_alloc_xri(struct lpfc_hba *phba)
14538{
14539 unsigned long xri;
14540
14541 /*
14542 * Fetch the next logical xri. Because this index is logical,
14543 * the driver starts at 0 each time.
14544 */
14545 spin_lock_irq(&phba->hbalock);
14546 xri = find_next_zero_bit(phba->sli4_hba.xri_bmask,
14547 phba->sli4_hba.max_cfg_param.max_xri, 0);
14548 if (xri >= phba->sli4_hba.max_cfg_param.max_xri) {
14549 spin_unlock_irq(&phba->hbalock);
14550 return NO_XRI;
14551 } else {
14552 set_bit(xri, phba->sli4_hba.xri_bmask);
14553 phba->sli4_hba.max_cfg_param.xri_used++;
6d368e53 14554 }
6d368e53
JS
14555 spin_unlock_irq(&phba->hbalock);
14556 return xri;
14557}
14558
14559/**
14560 * lpfc_sli4_free_xri - Release an xri for reuse.
14561 * @phba: pointer to lpfc hba data structure.
14562 *
14563 * This routine is invoked to release an xri to the pool of
14564 * available rpis maintained by the driver.
14565 **/
5d8b8167 14566static void
6d368e53
JS
14567__lpfc_sli4_free_xri(struct lpfc_hba *phba, int xri)
14568{
14569 if (test_and_clear_bit(xri, phba->sli4_hba.xri_bmask)) {
6d368e53
JS
14570 phba->sli4_hba.max_cfg_param.xri_used--;
14571 }
14572}
14573
14574/**
14575 * lpfc_sli4_free_xri - Release an xri for reuse.
14576 * @phba: pointer to lpfc hba data structure.
14577 *
14578 * This routine is invoked to release an xri to the pool of
14579 * available rpis maintained by the driver.
14580 **/
14581void
14582lpfc_sli4_free_xri(struct lpfc_hba *phba, int xri)
14583{
14584 spin_lock_irq(&phba->hbalock);
14585 __lpfc_sli4_free_xri(phba, xri);
14586 spin_unlock_irq(&phba->hbalock);
14587}
14588
4f774513
JS
14589/**
14590 * lpfc_sli4_next_xritag - Get an xritag for the io
14591 * @phba: Pointer to HBA context object.
14592 *
14593 * This function gets an xritag for the iocb. If there is no unused xritag
14594 * it will return 0xffff.
14595 * The function returns the allocated xritag if successful, else returns zero.
14596 * Zero is not a valid xritag.
14597 * The caller is not required to hold any lock.
14598 **/
14599uint16_t
14600lpfc_sli4_next_xritag(struct lpfc_hba *phba)
14601{
6d368e53 14602 uint16_t xri_index;
4f774513 14603
6d368e53 14604 xri_index = lpfc_sli4_alloc_xri(phba);
81378052
JS
14605 if (xri_index == NO_XRI)
14606 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
14607 "2004 Failed to allocate XRI.last XRITAG is %d"
14608 " Max XRI is %d, Used XRI is %d\n",
14609 xri_index,
14610 phba->sli4_hba.max_cfg_param.max_xri,
14611 phba->sli4_hba.max_cfg_param.xri_used);
14612 return xri_index;
4f774513
JS
14613}
14614
14615/**
6d368e53 14616 * lpfc_sli4_post_els_sgl_list - post a block of ELS sgls to the port.
4f774513 14617 * @phba: pointer to lpfc hba data structure.
8a9d2e80
JS
14618 * @post_sgl_list: pointer to els sgl entry list.
14619 * @count: number of els sgl entries on the list.
4f774513
JS
14620 *
14621 * This routine is invoked to post a block of driver's sgl pages to the
14622 * HBA using non-embedded mailbox command. No Lock is held. This routine
14623 * is only called when the driver is loading and after all IO has been
14624 * stopped.
14625 **/
8a9d2e80
JS
14626static int
14627lpfc_sli4_post_els_sgl_list(struct lpfc_hba *phba,
14628 struct list_head *post_sgl_list,
14629 int post_cnt)
4f774513 14630{
8a9d2e80 14631 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
4f774513
JS
14632 struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
14633 struct sgl_page_pairs *sgl_pg_pairs;
14634 void *viraddr;
14635 LPFC_MBOXQ_t *mbox;
14636 uint32_t reqlen, alloclen, pg_pairs;
14637 uint32_t mbox_tmo;
8a9d2e80
JS
14638 uint16_t xritag_start = 0;
14639 int rc = 0;
4f774513
JS
14640 uint32_t shdr_status, shdr_add_status;
14641 union lpfc_sli4_cfg_shdr *shdr;
14642
8a9d2e80 14643 reqlen = phba->sli4_hba.els_xri_cnt * sizeof(struct sgl_page_pairs) +
4f774513 14644 sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
49198b37 14645 if (reqlen > SLI4_PAGE_SIZE) {
4f774513
JS
14646 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
14647 "2559 Block sgl registration required DMA "
14648 "size (%d) great than a page\n", reqlen);
14649 return -ENOMEM;
14650 }
14651 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6d368e53 14652 if (!mbox)
4f774513 14653 return -ENOMEM;
4f774513
JS
14654
14655 /* Allocate DMA memory and set up the non-embedded mailbox command */
14656 alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14657 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
14658 LPFC_SLI4_MBX_NEMBED);
14659
14660 if (alloclen < reqlen) {
14661 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14662 "0285 Allocated DMA memory size (%d) is "
14663 "less than the requested DMA memory "
14664 "size (%d)\n", alloclen, reqlen);
14665 lpfc_sli4_mbox_cmd_free(phba, mbox);
14666 return -ENOMEM;
14667 }
4f774513 14668 /* Set up the SGL pages in the non-embedded DMA pages */
6d368e53 14669 viraddr = mbox->sge_array->addr[0];
4f774513
JS
14670 sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
14671 sgl_pg_pairs = &sgl->sgl_pg_pairs;
14672
8a9d2e80
JS
14673 pg_pairs = 0;
14674 list_for_each_entry_safe(sglq_entry, sglq_next, post_sgl_list, list) {
4f774513
JS
14675 /* Set up the sge entry */
14676 sgl_pg_pairs->sgl_pg0_addr_lo =
14677 cpu_to_le32(putPaddrLow(sglq_entry->phys));
14678 sgl_pg_pairs->sgl_pg0_addr_hi =
14679 cpu_to_le32(putPaddrHigh(sglq_entry->phys));
14680 sgl_pg_pairs->sgl_pg1_addr_lo =
14681 cpu_to_le32(putPaddrLow(0));
14682 sgl_pg_pairs->sgl_pg1_addr_hi =
14683 cpu_to_le32(putPaddrHigh(0));
6d368e53 14684
4f774513
JS
14685 /* Keep the first xritag on the list */
14686 if (pg_pairs == 0)
14687 xritag_start = sglq_entry->sli4_xritag;
14688 sgl_pg_pairs++;
8a9d2e80 14689 pg_pairs++;
4f774513 14690 }
6d368e53
JS
14691
14692 /* Complete initialization and perform endian conversion. */
4f774513 14693 bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
8a9d2e80 14694 bf_set(lpfc_post_sgl_pages_xricnt, sgl, phba->sli4_hba.els_xri_cnt);
4f774513 14695 sgl->word0 = cpu_to_le32(sgl->word0);
4f774513
JS
14696 if (!phba->sli4_hba.intr_enable)
14697 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
14698 else {
a183a15f 14699 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
4f774513
JS
14700 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
14701 }
14702 shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
14703 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14704 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14705 if (rc != MBX_TIMEOUT)
14706 lpfc_sli4_mbox_cmd_free(phba, mbox);
14707 if (shdr_status || shdr_add_status || rc) {
14708 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14709 "2513 POST_SGL_BLOCK mailbox command failed "
14710 "status x%x add_status x%x mbx status x%x\n",
14711 shdr_status, shdr_add_status, rc);
14712 rc = -ENXIO;
14713 }
14714 return rc;
14715}
14716
14717/**
14718 * lpfc_sli4_post_scsi_sgl_block - post a block of scsi sgl list to firmware
14719 * @phba: pointer to lpfc hba data structure.
14720 * @sblist: pointer to scsi buffer list.
14721 * @count: number of scsi buffers on the list.
14722 *
14723 * This routine is invoked to post a block of @count scsi sgl pages from a
14724 * SCSI buffer list @sblist to the HBA using non-embedded mailbox command.
14725 * No Lock is held.
14726 *
14727 **/
14728int
8a9d2e80
JS
14729lpfc_sli4_post_scsi_sgl_block(struct lpfc_hba *phba,
14730 struct list_head *sblist,
14731 int count)
4f774513
JS
14732{
14733 struct lpfc_scsi_buf *psb;
14734 struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
14735 struct sgl_page_pairs *sgl_pg_pairs;
14736 void *viraddr;
14737 LPFC_MBOXQ_t *mbox;
14738 uint32_t reqlen, alloclen, pg_pairs;
14739 uint32_t mbox_tmo;
14740 uint16_t xritag_start = 0;
14741 int rc = 0;
14742 uint32_t shdr_status, shdr_add_status;
14743 dma_addr_t pdma_phys_bpl1;
14744 union lpfc_sli4_cfg_shdr *shdr;
14745
14746 /* Calculate the requested length of the dma memory */
8a9d2e80 14747 reqlen = count * sizeof(struct sgl_page_pairs) +
4f774513 14748 sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
49198b37 14749 if (reqlen > SLI4_PAGE_SIZE) {
4f774513
JS
14750 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
14751 "0217 Block sgl registration required DMA "
14752 "size (%d) great than a page\n", reqlen);
14753 return -ENOMEM;
14754 }
14755 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
14756 if (!mbox) {
14757 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14758 "0283 Failed to allocate mbox cmd memory\n");
14759 return -ENOMEM;
14760 }
14761
14762 /* Allocate DMA memory and set up the non-embedded mailbox command */
14763 alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14764 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
14765 LPFC_SLI4_MBX_NEMBED);
14766
14767 if (alloclen < reqlen) {
14768 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14769 "2561 Allocated DMA memory size (%d) is "
14770 "less than the requested DMA memory "
14771 "size (%d)\n", alloclen, reqlen);
14772 lpfc_sli4_mbox_cmd_free(phba, mbox);
14773 return -ENOMEM;
14774 }
6d368e53 14775
4f774513 14776 /* Get the first SGE entry from the non-embedded DMA memory */
4f774513
JS
14777 viraddr = mbox->sge_array->addr[0];
14778
14779 /* Set up the SGL pages in the non-embedded DMA pages */
14780 sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
14781 sgl_pg_pairs = &sgl->sgl_pg_pairs;
14782
14783 pg_pairs = 0;
14784 list_for_each_entry(psb, sblist, list) {
14785 /* Set up the sge entry */
14786 sgl_pg_pairs->sgl_pg0_addr_lo =
14787 cpu_to_le32(putPaddrLow(psb->dma_phys_bpl));
14788 sgl_pg_pairs->sgl_pg0_addr_hi =
14789 cpu_to_le32(putPaddrHigh(psb->dma_phys_bpl));
14790 if (phba->cfg_sg_dma_buf_size > SGL_PAGE_SIZE)
14791 pdma_phys_bpl1 = psb->dma_phys_bpl + SGL_PAGE_SIZE;
14792 else
14793 pdma_phys_bpl1 = 0;
14794 sgl_pg_pairs->sgl_pg1_addr_lo =
14795 cpu_to_le32(putPaddrLow(pdma_phys_bpl1));
14796 sgl_pg_pairs->sgl_pg1_addr_hi =
14797 cpu_to_le32(putPaddrHigh(pdma_phys_bpl1));
14798 /* Keep the first xritag on the list */
14799 if (pg_pairs == 0)
14800 xritag_start = psb->cur_iocbq.sli4_xritag;
14801 sgl_pg_pairs++;
14802 pg_pairs++;
14803 }
14804 bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
14805 bf_set(lpfc_post_sgl_pages_xricnt, sgl, pg_pairs);
14806 /* Perform endian conversion if necessary */
14807 sgl->word0 = cpu_to_le32(sgl->word0);
14808
14809 if (!phba->sli4_hba.intr_enable)
14810 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
14811 else {
a183a15f 14812 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
4f774513
JS
14813 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
14814 }
14815 shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
14816 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14817 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14818 if (rc != MBX_TIMEOUT)
14819 lpfc_sli4_mbox_cmd_free(phba, mbox);
14820 if (shdr_status || shdr_add_status || rc) {
14821 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14822 "2564 POST_SGL_BLOCK mailbox command failed "
14823 "status x%x add_status x%x mbx status x%x\n",
14824 shdr_status, shdr_add_status, rc);
14825 rc = -ENXIO;
14826 }
14827 return rc;
14828}
14829
2ea259ee
JS
14830static char *lpfc_rctl_names[] = FC_RCTL_NAMES_INIT;
14831static char *lpfc_type_names[] = FC_TYPE_NAMES_INIT;
14832
4f774513
JS
14833/**
14834 * lpfc_fc_frame_check - Check that this frame is a valid frame to handle
14835 * @phba: pointer to lpfc_hba struct that the frame was received on
14836 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
14837 *
14838 * This function checks the fields in the @fc_hdr to see if the FC frame is a
14839 * valid type of frame that the LPFC driver will handle. This function will
14840 * return a zero if the frame is a valid frame or a non zero value when the
14841 * frame does not pass the check.
14842 **/
14843static int
14844lpfc_fc_frame_check(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr)
14845{
474ffb74 14846 /* make rctl_names static to save stack space */
4f774513 14847 struct fc_vft_header *fc_vft_hdr;
546fc854 14848 uint32_t *header = (uint32_t *) fc_hdr;
4f774513
JS
14849
14850 switch (fc_hdr->fh_r_ctl) {
14851 case FC_RCTL_DD_UNCAT: /* uncategorized information */
14852 case FC_RCTL_DD_SOL_DATA: /* solicited data */
14853 case FC_RCTL_DD_UNSOL_CTL: /* unsolicited control */
14854 case FC_RCTL_DD_SOL_CTL: /* solicited control or reply */
14855 case FC_RCTL_DD_UNSOL_DATA: /* unsolicited data */
14856 case FC_RCTL_DD_DATA_DESC: /* data descriptor */
14857 case FC_RCTL_DD_UNSOL_CMD: /* unsolicited command */
14858 case FC_RCTL_DD_CMD_STATUS: /* command status */
14859 case FC_RCTL_ELS_REQ: /* extended link services request */
14860 case FC_RCTL_ELS_REP: /* extended link services reply */
14861 case FC_RCTL_ELS4_REQ: /* FC-4 ELS request */
14862 case FC_RCTL_ELS4_REP: /* FC-4 ELS reply */
14863 case FC_RCTL_BA_NOP: /* basic link service NOP */
14864 case FC_RCTL_BA_ABTS: /* basic link service abort */
14865 case FC_RCTL_BA_RMC: /* remove connection */
14866 case FC_RCTL_BA_ACC: /* basic accept */
14867 case FC_RCTL_BA_RJT: /* basic reject */
14868 case FC_RCTL_BA_PRMT:
14869 case FC_RCTL_ACK_1: /* acknowledge_1 */
14870 case FC_RCTL_ACK_0: /* acknowledge_0 */
14871 case FC_RCTL_P_RJT: /* port reject */
14872 case FC_RCTL_F_RJT: /* fabric reject */
14873 case FC_RCTL_P_BSY: /* port busy */
14874 case FC_RCTL_F_BSY: /* fabric busy to data frame */
14875 case FC_RCTL_F_BSYL: /* fabric busy to link control frame */
14876 case FC_RCTL_LCR: /* link credit reset */
14877 case FC_RCTL_END: /* end */
14878 break;
14879 case FC_RCTL_VFTH: /* Virtual Fabric tagging Header */
14880 fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
14881 fc_hdr = &((struct fc_frame_header *)fc_vft_hdr)[1];
14882 return lpfc_fc_frame_check(phba, fc_hdr);
14883 default:
14884 goto drop;
14885 }
14886 switch (fc_hdr->fh_type) {
14887 case FC_TYPE_BLS:
14888 case FC_TYPE_ELS:
14889 case FC_TYPE_FCP:
14890 case FC_TYPE_CT:
14891 break;
14892 case FC_TYPE_IP:
14893 case FC_TYPE_ILS:
14894 default:
14895 goto drop;
14896 }
546fc854 14897
4f774513 14898 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
88f43a08
JS
14899 "2538 Received frame rctl:%s (x%x), type:%s (x%x), "
14900 "frame Data:%08x %08x %08x %08x %08x %08x %08x\n",
2ea259ee
JS
14901 lpfc_rctl_names[fc_hdr->fh_r_ctl], fc_hdr->fh_r_ctl,
14902 lpfc_type_names[fc_hdr->fh_type], fc_hdr->fh_type,
546fc854
JS
14903 be32_to_cpu(header[0]), be32_to_cpu(header[1]),
14904 be32_to_cpu(header[2]), be32_to_cpu(header[3]),
88f43a08
JS
14905 be32_to_cpu(header[4]), be32_to_cpu(header[5]),
14906 be32_to_cpu(header[6]));
4f774513
JS
14907 return 0;
14908drop:
14909 lpfc_printf_log(phba, KERN_WARNING, LOG_ELS,
14910 "2539 Dropped frame rctl:%s type:%s\n",
2ea259ee
JS
14911 lpfc_rctl_names[fc_hdr->fh_r_ctl],
14912 lpfc_type_names[fc_hdr->fh_type]);
4f774513
JS
14913 return 1;
14914}
14915
14916/**
14917 * lpfc_fc_hdr_get_vfi - Get the VFI from an FC frame
14918 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
14919 *
14920 * This function processes the FC header to retrieve the VFI from the VF
14921 * header, if one exists. This function will return the VFI if one exists
14922 * or 0 if no VSAN Header exists.
14923 **/
14924static uint32_t
14925lpfc_fc_hdr_get_vfi(struct fc_frame_header *fc_hdr)
14926{
14927 struct fc_vft_header *fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
14928
14929 if (fc_hdr->fh_r_ctl != FC_RCTL_VFTH)
14930 return 0;
14931 return bf_get(fc_vft_hdr_vf_id, fc_vft_hdr);
14932}
14933
14934/**
14935 * lpfc_fc_frame_to_vport - Finds the vport that a frame is destined to
14936 * @phba: Pointer to the HBA structure to search for the vport on
14937 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
14938 * @fcfi: The FC Fabric ID that the frame came from
14939 *
14940 * This function searches the @phba for a vport that matches the content of the
14941 * @fc_hdr passed in and the @fcfi. This function uses the @fc_hdr to fetch the
14942 * VFI, if the Virtual Fabric Tagging Header exists, and the DID. This function
14943 * returns the matching vport pointer or NULL if unable to match frame to a
14944 * vport.
14945 **/
14946static struct lpfc_vport *
14947lpfc_fc_frame_to_vport(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr,
14948 uint16_t fcfi)
14949{
14950 struct lpfc_vport **vports;
14951 struct lpfc_vport *vport = NULL;
14952 int i;
14953 uint32_t did = (fc_hdr->fh_d_id[0] << 16 |
14954 fc_hdr->fh_d_id[1] << 8 |
14955 fc_hdr->fh_d_id[2]);
939723a4 14956
bf08611b
JS
14957 if (did == Fabric_DID)
14958 return phba->pport;
939723a4
JS
14959 if ((phba->pport->fc_flag & FC_PT2PT) &&
14960 !(phba->link_state == LPFC_HBA_READY))
14961 return phba->pport;
14962
4f774513
JS
14963 vports = lpfc_create_vport_work_array(phba);
14964 if (vports != NULL)
14965 for (i = 0; i <= phba->max_vpi && vports[i] != NULL; i++) {
14966 if (phba->fcf.fcfi == fcfi &&
14967 vports[i]->vfi == lpfc_fc_hdr_get_vfi(fc_hdr) &&
14968 vports[i]->fc_myDID == did) {
14969 vport = vports[i];
14970 break;
14971 }
14972 }
14973 lpfc_destroy_vport_work_array(phba, vports);
14974 return vport;
14975}
14976
45ed1190
JS
14977/**
14978 * lpfc_update_rcv_time_stamp - Update vport's rcv seq time stamp
14979 * @vport: The vport to work on.
14980 *
14981 * This function updates the receive sequence time stamp for this vport. The
14982 * receive sequence time stamp indicates the time that the last frame of the
14983 * the sequence that has been idle for the longest amount of time was received.
14984 * the driver uses this time stamp to indicate if any received sequences have
14985 * timed out.
14986 **/
5d8b8167 14987static void
45ed1190
JS
14988lpfc_update_rcv_time_stamp(struct lpfc_vport *vport)
14989{
14990 struct lpfc_dmabuf *h_buf;
14991 struct hbq_dmabuf *dmabuf = NULL;
14992
14993 /* get the oldest sequence on the rcv list */
14994 h_buf = list_get_first(&vport->rcv_buffer_list,
14995 struct lpfc_dmabuf, list);
14996 if (!h_buf)
14997 return;
14998 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14999 vport->rcv_buffer_time_stamp = dmabuf->time_stamp;
15000}
15001
15002/**
15003 * lpfc_cleanup_rcv_buffers - Cleans up all outstanding receive sequences.
15004 * @vport: The vport that the received sequences were sent to.
15005 *
15006 * This function cleans up all outstanding received sequences. This is called
15007 * by the driver when a link event or user action invalidates all the received
15008 * sequences.
15009 **/
15010void
15011lpfc_cleanup_rcv_buffers(struct lpfc_vport *vport)
15012{
15013 struct lpfc_dmabuf *h_buf, *hnext;
15014 struct lpfc_dmabuf *d_buf, *dnext;
15015 struct hbq_dmabuf *dmabuf = NULL;
15016
15017 /* start with the oldest sequence on the rcv list */
15018 list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
15019 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
15020 list_del_init(&dmabuf->hbuf.list);
15021 list_for_each_entry_safe(d_buf, dnext,
15022 &dmabuf->dbuf.list, list) {
15023 list_del_init(&d_buf->list);
15024 lpfc_in_buf_free(vport->phba, d_buf);
15025 }
15026 lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
15027 }
15028}
15029
15030/**
15031 * lpfc_rcv_seq_check_edtov - Cleans up timed out receive sequences.
15032 * @vport: The vport that the received sequences were sent to.
15033 *
15034 * This function determines whether any received sequences have timed out by
15035 * first checking the vport's rcv_buffer_time_stamp. If this time_stamp
15036 * indicates that there is at least one timed out sequence this routine will
15037 * go through the received sequences one at a time from most inactive to most
15038 * active to determine which ones need to be cleaned up. Once it has determined
15039 * that a sequence needs to be cleaned up it will simply free up the resources
15040 * without sending an abort.
15041 **/
15042void
15043lpfc_rcv_seq_check_edtov(struct lpfc_vport *vport)
15044{
15045 struct lpfc_dmabuf *h_buf, *hnext;
15046 struct lpfc_dmabuf *d_buf, *dnext;
15047 struct hbq_dmabuf *dmabuf = NULL;
15048 unsigned long timeout;
15049 int abort_count = 0;
15050
15051 timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
15052 vport->rcv_buffer_time_stamp);
15053 if (list_empty(&vport->rcv_buffer_list) ||
15054 time_before(jiffies, timeout))
15055 return;
15056 /* start with the oldest sequence on the rcv list */
15057 list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
15058 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
15059 timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
15060 dmabuf->time_stamp);
15061 if (time_before(jiffies, timeout))
15062 break;
15063 abort_count++;
15064 list_del_init(&dmabuf->hbuf.list);
15065 list_for_each_entry_safe(d_buf, dnext,
15066 &dmabuf->dbuf.list, list) {
15067 list_del_init(&d_buf->list);
15068 lpfc_in_buf_free(vport->phba, d_buf);
15069 }
15070 lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
15071 }
15072 if (abort_count)
15073 lpfc_update_rcv_time_stamp(vport);
15074}
15075
4f774513
JS
15076/**
15077 * lpfc_fc_frame_add - Adds a frame to the vport's list of received sequences
15078 * @dmabuf: pointer to a dmabuf that describes the hdr and data of the FC frame
15079 *
15080 * This function searches through the existing incomplete sequences that have
15081 * been sent to this @vport. If the frame matches one of the incomplete
15082 * sequences then the dbuf in the @dmabuf is added to the list of frames that
15083 * make up that sequence. If no sequence is found that matches this frame then
15084 * the function will add the hbuf in the @dmabuf to the @vport's rcv_buffer_list
15085 * This function returns a pointer to the first dmabuf in the sequence list that
15086 * the frame was linked to.
15087 **/
15088static struct hbq_dmabuf *
15089lpfc_fc_frame_add(struct lpfc_vport *vport, struct hbq_dmabuf *dmabuf)
15090{
15091 struct fc_frame_header *new_hdr;
15092 struct fc_frame_header *temp_hdr;
15093 struct lpfc_dmabuf *d_buf;
15094 struct lpfc_dmabuf *h_buf;
15095 struct hbq_dmabuf *seq_dmabuf = NULL;
15096 struct hbq_dmabuf *temp_dmabuf = NULL;
4360ca9c 15097 uint8_t found = 0;
4f774513 15098
4d9ab994 15099 INIT_LIST_HEAD(&dmabuf->dbuf.list);
45ed1190 15100 dmabuf->time_stamp = jiffies;
4f774513 15101 new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
4360ca9c 15102
4f774513
JS
15103 /* Use the hdr_buf to find the sequence that this frame belongs to */
15104 list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
15105 temp_hdr = (struct fc_frame_header *)h_buf->virt;
15106 if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
15107 (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
15108 (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
15109 continue;
15110 /* found a pending sequence that matches this frame */
15111 seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
15112 break;
15113 }
15114 if (!seq_dmabuf) {
15115 /*
15116 * This indicates first frame received for this sequence.
15117 * Queue the buffer on the vport's rcv_buffer_list.
15118 */
15119 list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
45ed1190 15120 lpfc_update_rcv_time_stamp(vport);
4f774513
JS
15121 return dmabuf;
15122 }
15123 temp_hdr = seq_dmabuf->hbuf.virt;
eeead811
JS
15124 if (be16_to_cpu(new_hdr->fh_seq_cnt) <
15125 be16_to_cpu(temp_hdr->fh_seq_cnt)) {
4d9ab994
JS
15126 list_del_init(&seq_dmabuf->hbuf.list);
15127 list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
15128 list_add_tail(&dmabuf->dbuf.list, &seq_dmabuf->dbuf.list);
45ed1190 15129 lpfc_update_rcv_time_stamp(vport);
4f774513
JS
15130 return dmabuf;
15131 }
45ed1190
JS
15132 /* move this sequence to the tail to indicate a young sequence */
15133 list_move_tail(&seq_dmabuf->hbuf.list, &vport->rcv_buffer_list);
15134 seq_dmabuf->time_stamp = jiffies;
15135 lpfc_update_rcv_time_stamp(vport);
eeead811
JS
15136 if (list_empty(&seq_dmabuf->dbuf.list)) {
15137 temp_hdr = dmabuf->hbuf.virt;
15138 list_add_tail(&dmabuf->dbuf.list, &seq_dmabuf->dbuf.list);
15139 return seq_dmabuf;
15140 }
4f774513 15141 /* find the correct place in the sequence to insert this frame */
4360ca9c
JS
15142 d_buf = list_entry(seq_dmabuf->dbuf.list.prev, typeof(*d_buf), list);
15143 while (!found) {
4f774513
JS
15144 temp_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
15145 temp_hdr = (struct fc_frame_header *)temp_dmabuf->hbuf.virt;
15146 /*
15147 * If the frame's sequence count is greater than the frame on
15148 * the list then insert the frame right after this frame
15149 */
eeead811
JS
15150 if (be16_to_cpu(new_hdr->fh_seq_cnt) >
15151 be16_to_cpu(temp_hdr->fh_seq_cnt)) {
4f774513 15152 list_add(&dmabuf->dbuf.list, &temp_dmabuf->dbuf.list);
4360ca9c
JS
15153 found = 1;
15154 break;
4f774513 15155 }
4360ca9c
JS
15156
15157 if (&d_buf->list == &seq_dmabuf->dbuf.list)
15158 break;
15159 d_buf = list_entry(d_buf->list.prev, typeof(*d_buf), list);
4f774513 15160 }
4360ca9c
JS
15161
15162 if (found)
15163 return seq_dmabuf;
4f774513
JS
15164 return NULL;
15165}
15166
6669f9bb
JS
15167/**
15168 * lpfc_sli4_abort_partial_seq - Abort partially assembled unsol sequence
15169 * @vport: pointer to a vitural port
15170 * @dmabuf: pointer to a dmabuf that describes the FC sequence
15171 *
15172 * This function tries to abort from the partially assembed sequence, described
15173 * by the information from basic abbort @dmabuf. It checks to see whether such
15174 * partially assembled sequence held by the driver. If so, it shall free up all
15175 * the frames from the partially assembled sequence.
15176 *
15177 * Return
15178 * true -- if there is matching partially assembled sequence present and all
15179 * the frames freed with the sequence;
15180 * false -- if there is no matching partially assembled sequence present so
15181 * nothing got aborted in the lower layer driver
15182 **/
15183static bool
15184lpfc_sli4_abort_partial_seq(struct lpfc_vport *vport,
15185 struct hbq_dmabuf *dmabuf)
15186{
15187 struct fc_frame_header *new_hdr;
15188 struct fc_frame_header *temp_hdr;
15189 struct lpfc_dmabuf *d_buf, *n_buf, *h_buf;
15190 struct hbq_dmabuf *seq_dmabuf = NULL;
15191
15192 /* Use the hdr_buf to find the sequence that matches this frame */
15193 INIT_LIST_HEAD(&dmabuf->dbuf.list);
15194 INIT_LIST_HEAD(&dmabuf->hbuf.list);
15195 new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
15196 list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
15197 temp_hdr = (struct fc_frame_header *)h_buf->virt;
15198 if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
15199 (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
15200 (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
15201 continue;
15202 /* found a pending sequence that matches this frame */
15203 seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
15204 break;
15205 }
15206
15207 /* Free up all the frames from the partially assembled sequence */
15208 if (seq_dmabuf) {
15209 list_for_each_entry_safe(d_buf, n_buf,
15210 &seq_dmabuf->dbuf.list, list) {
15211 list_del_init(&d_buf->list);
15212 lpfc_in_buf_free(vport->phba, d_buf);
15213 }
15214 return true;
15215 }
15216 return false;
15217}
15218
6dd9e31c
JS
15219/**
15220 * lpfc_sli4_abort_ulp_seq - Abort assembled unsol sequence from ulp
15221 * @vport: pointer to a vitural port
15222 * @dmabuf: pointer to a dmabuf that describes the FC sequence
15223 *
15224 * This function tries to abort from the assembed sequence from upper level
15225 * protocol, described by the information from basic abbort @dmabuf. It
15226 * checks to see whether such pending context exists at upper level protocol.
15227 * If so, it shall clean up the pending context.
15228 *
15229 * Return
15230 * true -- if there is matching pending context of the sequence cleaned
15231 * at ulp;
15232 * false -- if there is no matching pending context of the sequence present
15233 * at ulp.
15234 **/
15235static bool
15236lpfc_sli4_abort_ulp_seq(struct lpfc_vport *vport, struct hbq_dmabuf *dmabuf)
15237{
15238 struct lpfc_hba *phba = vport->phba;
15239 int handled;
15240
15241 /* Accepting abort at ulp with SLI4 only */
15242 if (phba->sli_rev < LPFC_SLI_REV4)
15243 return false;
15244
15245 /* Register all caring upper level protocols to attend abort */
15246 handled = lpfc_ct_handle_unsol_abort(phba, dmabuf);
15247 if (handled)
15248 return true;
15249
15250 return false;
15251}
15252
6669f9bb 15253/**
546fc854 15254 * lpfc_sli4_seq_abort_rsp_cmpl - BLS ABORT RSP seq abort iocb complete handler
6669f9bb
JS
15255 * @phba: Pointer to HBA context object.
15256 * @cmd_iocbq: pointer to the command iocbq structure.
15257 * @rsp_iocbq: pointer to the response iocbq structure.
15258 *
546fc854 15259 * This function handles the sequence abort response iocb command complete
6669f9bb
JS
15260 * event. It properly releases the memory allocated to the sequence abort
15261 * accept iocb.
15262 **/
15263static void
546fc854 15264lpfc_sli4_seq_abort_rsp_cmpl(struct lpfc_hba *phba,
6669f9bb
JS
15265 struct lpfc_iocbq *cmd_iocbq,
15266 struct lpfc_iocbq *rsp_iocbq)
15267{
6dd9e31c
JS
15268 struct lpfc_nodelist *ndlp;
15269
15270 if (cmd_iocbq) {
15271 ndlp = (struct lpfc_nodelist *)cmd_iocbq->context1;
15272 lpfc_nlp_put(ndlp);
15273 lpfc_nlp_not_used(ndlp);
6669f9bb 15274 lpfc_sli_release_iocbq(phba, cmd_iocbq);
6dd9e31c 15275 }
6b5151fd
JS
15276
15277 /* Failure means BLS ABORT RSP did not get delivered to remote node*/
15278 if (rsp_iocbq && rsp_iocbq->iocb.ulpStatus)
15279 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15280 "3154 BLS ABORT RSP failed, data: x%x/x%x\n",
15281 rsp_iocbq->iocb.ulpStatus,
15282 rsp_iocbq->iocb.un.ulpWord[4]);
6669f9bb
JS
15283}
15284
6d368e53
JS
15285/**
15286 * lpfc_sli4_xri_inrange - check xri is in range of xris owned by driver.
15287 * @phba: Pointer to HBA context object.
15288 * @xri: xri id in transaction.
15289 *
15290 * This function validates the xri maps to the known range of XRIs allocated an
15291 * used by the driver.
15292 **/
7851fe2c 15293uint16_t
6d368e53
JS
15294lpfc_sli4_xri_inrange(struct lpfc_hba *phba,
15295 uint16_t xri)
15296{
a2fc4aef 15297 uint16_t i;
6d368e53
JS
15298
15299 for (i = 0; i < phba->sli4_hba.max_cfg_param.max_xri; i++) {
15300 if (xri == phba->sli4_hba.xri_ids[i])
15301 return i;
15302 }
15303 return NO_XRI;
15304}
15305
6669f9bb 15306/**
546fc854 15307 * lpfc_sli4_seq_abort_rsp - bls rsp to sequence abort
6669f9bb
JS
15308 * @phba: Pointer to HBA context object.
15309 * @fc_hdr: pointer to a FC frame header.
15310 *
546fc854 15311 * This function sends a basic response to a previous unsol sequence abort
6669f9bb
JS
15312 * event after aborting the sequence handling.
15313 **/
15314static void
6dd9e31c
JS
15315lpfc_sli4_seq_abort_rsp(struct lpfc_vport *vport,
15316 struct fc_frame_header *fc_hdr, bool aborted)
6669f9bb 15317{
6dd9e31c 15318 struct lpfc_hba *phba = vport->phba;
6669f9bb
JS
15319 struct lpfc_iocbq *ctiocb = NULL;
15320 struct lpfc_nodelist *ndlp;
ee0f4fe1 15321 uint16_t oxid, rxid, xri, lxri;
5ffc266e 15322 uint32_t sid, fctl;
6669f9bb 15323 IOCB_t *icmd;
546fc854 15324 int rc;
6669f9bb
JS
15325
15326 if (!lpfc_is_link_up(phba))
15327 return;
15328
15329 sid = sli4_sid_from_fc_hdr(fc_hdr);
15330 oxid = be16_to_cpu(fc_hdr->fh_ox_id);
5ffc266e 15331 rxid = be16_to_cpu(fc_hdr->fh_rx_id);
6669f9bb 15332
6dd9e31c 15333 ndlp = lpfc_findnode_did(vport, sid);
6669f9bb 15334 if (!ndlp) {
6dd9e31c
JS
15335 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
15336 if (!ndlp) {
15337 lpfc_printf_vlog(vport, KERN_WARNING, LOG_ELS,
15338 "1268 Failed to allocate ndlp for "
15339 "oxid:x%x SID:x%x\n", oxid, sid);
15340 return;
15341 }
15342 lpfc_nlp_init(vport, ndlp, sid);
15343 /* Put ndlp onto pport node list */
15344 lpfc_enqueue_node(vport, ndlp);
15345 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
15346 /* re-setup ndlp without removing from node list */
15347 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
15348 if (!ndlp) {
15349 lpfc_printf_vlog(vport, KERN_WARNING, LOG_ELS,
15350 "3275 Failed to active ndlp found "
15351 "for oxid:x%x SID:x%x\n", oxid, sid);
15352 return;
15353 }
6669f9bb
JS
15354 }
15355
546fc854 15356 /* Allocate buffer for rsp iocb */
6669f9bb
JS
15357 ctiocb = lpfc_sli_get_iocbq(phba);
15358 if (!ctiocb)
15359 return;
15360
5ffc266e
JS
15361 /* Extract the F_CTL field from FC_HDR */
15362 fctl = sli4_fctl_from_fc_hdr(fc_hdr);
15363
6669f9bb 15364 icmd = &ctiocb->iocb;
6669f9bb 15365 icmd->un.xseq64.bdl.bdeSize = 0;
5ffc266e 15366 icmd->un.xseq64.bdl.ulpIoTag32 = 0;
6669f9bb
JS
15367 icmd->un.xseq64.w5.hcsw.Dfctl = 0;
15368 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_ACC;
15369 icmd->un.xseq64.w5.hcsw.Type = FC_TYPE_BLS;
15370
15371 /* Fill in the rest of iocb fields */
15372 icmd->ulpCommand = CMD_XMIT_BLS_RSP64_CX;
15373 icmd->ulpBdeCount = 0;
15374 icmd->ulpLe = 1;
15375 icmd->ulpClass = CLASS3;
6d368e53 15376 icmd->ulpContext = phba->sli4_hba.rpi_ids[ndlp->nlp_rpi];
6dd9e31c 15377 ctiocb->context1 = lpfc_nlp_get(ndlp);
6669f9bb 15378
6669f9bb
JS
15379 ctiocb->iocb_cmpl = NULL;
15380 ctiocb->vport = phba->pport;
546fc854 15381 ctiocb->iocb_cmpl = lpfc_sli4_seq_abort_rsp_cmpl;
6d368e53 15382 ctiocb->sli4_lxritag = NO_XRI;
546fc854
JS
15383 ctiocb->sli4_xritag = NO_XRI;
15384
ee0f4fe1
JS
15385 if (fctl & FC_FC_EX_CTX)
15386 /* Exchange responder sent the abort so we
15387 * own the oxid.
15388 */
15389 xri = oxid;
15390 else
15391 xri = rxid;
15392 lxri = lpfc_sli4_xri_inrange(phba, xri);
15393 if (lxri != NO_XRI)
15394 lpfc_set_rrq_active(phba, ndlp, lxri,
15395 (xri == oxid) ? rxid : oxid, 0);
6dd9e31c
JS
15396 /* For BA_ABTS from exchange responder, if the logical xri with
15397 * the oxid maps to the FCP XRI range, the port no longer has
15398 * that exchange context, send a BLS_RJT. Override the IOCB for
15399 * a BA_RJT.
15400 */
15401 if ((fctl & FC_FC_EX_CTX) &&
15402 (lxri > lpfc_sli4_get_els_iocb_cnt(phba))) {
15403 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_RJT;
15404 bf_set(lpfc_vndr_code, &icmd->un.bls_rsp, 0);
15405 bf_set(lpfc_rsn_expln, &icmd->un.bls_rsp, FC_BA_RJT_INV_XID);
15406 bf_set(lpfc_rsn_code, &icmd->un.bls_rsp, FC_BA_RJT_UNABLE);
15407 }
15408
15409 /* If BA_ABTS failed to abort a partially assembled receive sequence,
15410 * the driver no longer has that exchange, send a BLS_RJT. Override
15411 * the IOCB for a BA_RJT.
546fc854 15412 */
6dd9e31c 15413 if (aborted == false) {
546fc854
JS
15414 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_RJT;
15415 bf_set(lpfc_vndr_code, &icmd->un.bls_rsp, 0);
15416 bf_set(lpfc_rsn_expln, &icmd->un.bls_rsp, FC_BA_RJT_INV_XID);
15417 bf_set(lpfc_rsn_code, &icmd->un.bls_rsp, FC_BA_RJT_UNABLE);
15418 }
6669f9bb 15419
5ffc266e
JS
15420 if (fctl & FC_FC_EX_CTX) {
15421 /* ABTS sent by responder to CT exchange, construction
15422 * of BA_ACC will use OX_ID from ABTS for the XRI_TAG
15423 * field and RX_ID from ABTS for RX_ID field.
15424 */
546fc854 15425 bf_set(lpfc_abts_orig, &icmd->un.bls_rsp, LPFC_ABTS_UNSOL_RSP);
5ffc266e
JS
15426 } else {
15427 /* ABTS sent by initiator to CT exchange, construction
15428 * of BA_ACC will need to allocate a new XRI as for the
f09c3acc 15429 * XRI_TAG field.
5ffc266e 15430 */
546fc854 15431 bf_set(lpfc_abts_orig, &icmd->un.bls_rsp, LPFC_ABTS_UNSOL_INT);
5ffc266e 15432 }
f09c3acc 15433 bf_set(lpfc_abts_rxid, &icmd->un.bls_rsp, rxid);
546fc854 15434 bf_set(lpfc_abts_oxid, &icmd->un.bls_rsp, oxid);
5ffc266e 15435
546fc854 15436 /* Xmit CT abts response on exchange <xid> */
6dd9e31c
JS
15437 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
15438 "1200 Send BLS cmd x%x on oxid x%x Data: x%x\n",
15439 icmd->un.xseq64.w5.hcsw.Rctl, oxid, phba->link_state);
546fc854
JS
15440
15441 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, ctiocb, 0);
15442 if (rc == IOCB_ERROR) {
6dd9e31c
JS
15443 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
15444 "2925 Failed to issue CT ABTS RSP x%x on "
15445 "xri x%x, Data x%x\n",
15446 icmd->un.xseq64.w5.hcsw.Rctl, oxid,
15447 phba->link_state);
15448 lpfc_nlp_put(ndlp);
15449 ctiocb->context1 = NULL;
546fc854
JS
15450 lpfc_sli_release_iocbq(phba, ctiocb);
15451 }
6669f9bb
JS
15452}
15453
15454/**
15455 * lpfc_sli4_handle_unsol_abort - Handle sli-4 unsolicited abort event
15456 * @vport: Pointer to the vport on which this sequence was received
15457 * @dmabuf: pointer to a dmabuf that describes the FC sequence
15458 *
15459 * This function handles an SLI-4 unsolicited abort event. If the unsolicited
15460 * receive sequence is only partially assembed by the driver, it shall abort
15461 * the partially assembled frames for the sequence. Otherwise, if the
15462 * unsolicited receive sequence has been completely assembled and passed to
15463 * the Upper Layer Protocol (UPL), it then mark the per oxid status for the
15464 * unsolicited sequence has been aborted. After that, it will issue a basic
15465 * accept to accept the abort.
15466 **/
5d8b8167 15467static void
6669f9bb
JS
15468lpfc_sli4_handle_unsol_abort(struct lpfc_vport *vport,
15469 struct hbq_dmabuf *dmabuf)
15470{
15471 struct lpfc_hba *phba = vport->phba;
15472 struct fc_frame_header fc_hdr;
5ffc266e 15473 uint32_t fctl;
6dd9e31c 15474 bool aborted;
6669f9bb 15475
6669f9bb
JS
15476 /* Make a copy of fc_hdr before the dmabuf being released */
15477 memcpy(&fc_hdr, dmabuf->hbuf.virt, sizeof(struct fc_frame_header));
5ffc266e 15478 fctl = sli4_fctl_from_fc_hdr(&fc_hdr);
6669f9bb 15479
5ffc266e 15480 if (fctl & FC_FC_EX_CTX) {
6dd9e31c
JS
15481 /* ABTS by responder to exchange, no cleanup needed */
15482 aborted = true;
5ffc266e 15483 } else {
6dd9e31c
JS
15484 /* ABTS by initiator to exchange, need to do cleanup */
15485 aborted = lpfc_sli4_abort_partial_seq(vport, dmabuf);
15486 if (aborted == false)
15487 aborted = lpfc_sli4_abort_ulp_seq(vport, dmabuf);
5ffc266e 15488 }
6dd9e31c
JS
15489 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15490
15491 /* Respond with BA_ACC or BA_RJT accordingly */
15492 lpfc_sli4_seq_abort_rsp(vport, &fc_hdr, aborted);
6669f9bb
JS
15493}
15494
4f774513
JS
15495/**
15496 * lpfc_seq_complete - Indicates if a sequence is complete
15497 * @dmabuf: pointer to a dmabuf that describes the FC sequence
15498 *
15499 * This function checks the sequence, starting with the frame described by
15500 * @dmabuf, to see if all the frames associated with this sequence are present.
15501 * the frames associated with this sequence are linked to the @dmabuf using the
15502 * dbuf list. This function looks for two major things. 1) That the first frame
15503 * has a sequence count of zero. 2) There is a frame with last frame of sequence
15504 * set. 3) That there are no holes in the sequence count. The function will
15505 * return 1 when the sequence is complete, otherwise it will return 0.
15506 **/
15507static int
15508lpfc_seq_complete(struct hbq_dmabuf *dmabuf)
15509{
15510 struct fc_frame_header *hdr;
15511 struct lpfc_dmabuf *d_buf;
15512 struct hbq_dmabuf *seq_dmabuf;
15513 uint32_t fctl;
15514 int seq_count = 0;
15515
15516 hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
15517 /* make sure first fame of sequence has a sequence count of zero */
15518 if (hdr->fh_seq_cnt != seq_count)
15519 return 0;
15520 fctl = (hdr->fh_f_ctl[0] << 16 |
15521 hdr->fh_f_ctl[1] << 8 |
15522 hdr->fh_f_ctl[2]);
15523 /* If last frame of sequence we can return success. */
15524 if (fctl & FC_FC_END_SEQ)
15525 return 1;
15526 list_for_each_entry(d_buf, &dmabuf->dbuf.list, list) {
15527 seq_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
15528 hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
15529 /* If there is a hole in the sequence count then fail. */
eeead811 15530 if (++seq_count != be16_to_cpu(hdr->fh_seq_cnt))
4f774513
JS
15531 return 0;
15532 fctl = (hdr->fh_f_ctl[0] << 16 |
15533 hdr->fh_f_ctl[1] << 8 |
15534 hdr->fh_f_ctl[2]);
15535 /* If last frame of sequence we can return success. */
15536 if (fctl & FC_FC_END_SEQ)
15537 return 1;
15538 }
15539 return 0;
15540}
15541
15542/**
15543 * lpfc_prep_seq - Prep sequence for ULP processing
15544 * @vport: Pointer to the vport on which this sequence was received
15545 * @dmabuf: pointer to a dmabuf that describes the FC sequence
15546 *
15547 * This function takes a sequence, described by a list of frames, and creates
15548 * a list of iocbq structures to describe the sequence. This iocbq list will be
15549 * used to issue to the generic unsolicited sequence handler. This routine
15550 * returns a pointer to the first iocbq in the list. If the function is unable
15551 * to allocate an iocbq then it throw out the received frames that were not
15552 * able to be described and return a pointer to the first iocbq. If unable to
15553 * allocate any iocbqs (including the first) this function will return NULL.
15554 **/
15555static struct lpfc_iocbq *
15556lpfc_prep_seq(struct lpfc_vport *vport, struct hbq_dmabuf *seq_dmabuf)
15557{
7851fe2c 15558 struct hbq_dmabuf *hbq_buf;
4f774513
JS
15559 struct lpfc_dmabuf *d_buf, *n_buf;
15560 struct lpfc_iocbq *first_iocbq, *iocbq;
15561 struct fc_frame_header *fc_hdr;
15562 uint32_t sid;
7851fe2c 15563 uint32_t len, tot_len;
eeead811 15564 struct ulp_bde64 *pbde;
4f774513
JS
15565
15566 fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
15567 /* remove from receive buffer list */
15568 list_del_init(&seq_dmabuf->hbuf.list);
45ed1190 15569 lpfc_update_rcv_time_stamp(vport);
4f774513 15570 /* get the Remote Port's SID */
6669f9bb 15571 sid = sli4_sid_from_fc_hdr(fc_hdr);
7851fe2c 15572 tot_len = 0;
4f774513
JS
15573 /* Get an iocbq struct to fill in. */
15574 first_iocbq = lpfc_sli_get_iocbq(vport->phba);
15575 if (first_iocbq) {
15576 /* Initialize the first IOCB. */
8fa38513 15577 first_iocbq->iocb.unsli3.rcvsli3.acc_len = 0;
4f774513 15578 first_iocbq->iocb.ulpStatus = IOSTAT_SUCCESS;
939723a4
JS
15579
15580 /* Check FC Header to see what TYPE of frame we are rcv'ing */
15581 if (sli4_type_from_fc_hdr(fc_hdr) == FC_TYPE_ELS) {
15582 first_iocbq->iocb.ulpCommand = CMD_IOCB_RCV_ELS64_CX;
15583 first_iocbq->iocb.un.rcvels.parmRo =
15584 sli4_did_from_fc_hdr(fc_hdr);
15585 first_iocbq->iocb.ulpPU = PARM_NPIV_DID;
15586 } else
15587 first_iocbq->iocb.ulpCommand = CMD_IOCB_RCV_SEQ64_CX;
7851fe2c
JS
15588 first_iocbq->iocb.ulpContext = NO_XRI;
15589 first_iocbq->iocb.unsli3.rcvsli3.ox_id =
15590 be16_to_cpu(fc_hdr->fh_ox_id);
15591 /* iocbq is prepped for internal consumption. Physical vpi. */
15592 first_iocbq->iocb.unsli3.rcvsli3.vpi =
15593 vport->phba->vpi_ids[vport->vpi];
4f774513 15594 /* put the first buffer into the first IOCBq */
48a5a664
JS
15595 tot_len = bf_get(lpfc_rcqe_length,
15596 &seq_dmabuf->cq_event.cqe.rcqe_cmpl);
15597
4f774513
JS
15598 first_iocbq->context2 = &seq_dmabuf->dbuf;
15599 first_iocbq->context3 = NULL;
15600 first_iocbq->iocb.ulpBdeCount = 1;
48a5a664
JS
15601 if (tot_len > LPFC_DATA_BUF_SIZE)
15602 first_iocbq->iocb.un.cont64[0].tus.f.bdeSize =
4f774513 15603 LPFC_DATA_BUF_SIZE;
48a5a664
JS
15604 else
15605 first_iocbq->iocb.un.cont64[0].tus.f.bdeSize = tot_len;
15606
4f774513 15607 first_iocbq->iocb.un.rcvels.remoteID = sid;
48a5a664 15608
7851fe2c 15609 first_iocbq->iocb.unsli3.rcvsli3.acc_len = tot_len;
4f774513
JS
15610 }
15611 iocbq = first_iocbq;
15612 /*
15613 * Each IOCBq can have two Buffers assigned, so go through the list
15614 * of buffers for this sequence and save two buffers in each IOCBq
15615 */
15616 list_for_each_entry_safe(d_buf, n_buf, &seq_dmabuf->dbuf.list, list) {
15617 if (!iocbq) {
15618 lpfc_in_buf_free(vport->phba, d_buf);
15619 continue;
15620 }
15621 if (!iocbq->context3) {
15622 iocbq->context3 = d_buf;
15623 iocbq->iocb.ulpBdeCount++;
7851fe2c
JS
15624 /* We need to get the size out of the right CQE */
15625 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
15626 len = bf_get(lpfc_rcqe_length,
15627 &hbq_buf->cq_event.cqe.rcqe_cmpl);
48a5a664
JS
15628 pbde = (struct ulp_bde64 *)
15629 &iocbq->iocb.unsli3.sli3Words[4];
15630 if (len > LPFC_DATA_BUF_SIZE)
15631 pbde->tus.f.bdeSize = LPFC_DATA_BUF_SIZE;
15632 else
15633 pbde->tus.f.bdeSize = len;
15634
7851fe2c
JS
15635 iocbq->iocb.unsli3.rcvsli3.acc_len += len;
15636 tot_len += len;
4f774513
JS
15637 } else {
15638 iocbq = lpfc_sli_get_iocbq(vport->phba);
15639 if (!iocbq) {
15640 if (first_iocbq) {
15641 first_iocbq->iocb.ulpStatus =
15642 IOSTAT_FCP_RSP_ERROR;
15643 first_iocbq->iocb.un.ulpWord[4] =
15644 IOERR_NO_RESOURCES;
15645 }
15646 lpfc_in_buf_free(vport->phba, d_buf);
15647 continue;
15648 }
48a5a664
JS
15649 /* We need to get the size out of the right CQE */
15650 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
15651 len = bf_get(lpfc_rcqe_length,
15652 &hbq_buf->cq_event.cqe.rcqe_cmpl);
4f774513
JS
15653 iocbq->context2 = d_buf;
15654 iocbq->context3 = NULL;
15655 iocbq->iocb.ulpBdeCount = 1;
48a5a664
JS
15656 if (len > LPFC_DATA_BUF_SIZE)
15657 iocbq->iocb.un.cont64[0].tus.f.bdeSize =
4f774513 15658 LPFC_DATA_BUF_SIZE;
48a5a664
JS
15659 else
15660 iocbq->iocb.un.cont64[0].tus.f.bdeSize = len;
7851fe2c 15661
7851fe2c
JS
15662 tot_len += len;
15663 iocbq->iocb.unsli3.rcvsli3.acc_len = tot_len;
15664
4f774513
JS
15665 iocbq->iocb.un.rcvels.remoteID = sid;
15666 list_add_tail(&iocbq->list, &first_iocbq->list);
15667 }
15668 }
15669 return first_iocbq;
15670}
15671
6669f9bb
JS
15672static void
15673lpfc_sli4_send_seq_to_ulp(struct lpfc_vport *vport,
15674 struct hbq_dmabuf *seq_dmabuf)
15675{
15676 struct fc_frame_header *fc_hdr;
15677 struct lpfc_iocbq *iocbq, *curr_iocb, *next_iocb;
15678 struct lpfc_hba *phba = vport->phba;
15679
15680 fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
15681 iocbq = lpfc_prep_seq(vport, seq_dmabuf);
15682 if (!iocbq) {
15683 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15684 "2707 Ring %d handler: Failed to allocate "
15685 "iocb Rctl x%x Type x%x received\n",
15686 LPFC_ELS_RING,
15687 fc_hdr->fh_r_ctl, fc_hdr->fh_type);
15688 return;
15689 }
15690 if (!lpfc_complete_unsol_iocb(phba,
15691 &phba->sli.ring[LPFC_ELS_RING],
15692 iocbq, fc_hdr->fh_r_ctl,
15693 fc_hdr->fh_type))
6d368e53 15694 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
6669f9bb
JS
15695 "2540 Ring %d handler: unexpected Rctl "
15696 "x%x Type x%x received\n",
15697 LPFC_ELS_RING,
15698 fc_hdr->fh_r_ctl, fc_hdr->fh_type);
15699
15700 /* Free iocb created in lpfc_prep_seq */
15701 list_for_each_entry_safe(curr_iocb, next_iocb,
15702 &iocbq->list, list) {
15703 list_del_init(&curr_iocb->list);
15704 lpfc_sli_release_iocbq(phba, curr_iocb);
15705 }
15706 lpfc_sli_release_iocbq(phba, iocbq);
15707}
15708
4f774513
JS
15709/**
15710 * lpfc_sli4_handle_received_buffer - Handle received buffers from firmware
15711 * @phba: Pointer to HBA context object.
15712 *
15713 * This function is called with no lock held. This function processes all
15714 * the received buffers and gives it to upper layers when a received buffer
15715 * indicates that it is the final frame in the sequence. The interrupt
15716 * service routine processes received buffers at interrupt contexts and adds
15717 * received dma buffers to the rb_pend_list queue and signals the worker thread.
15718 * Worker thread calls lpfc_sli4_handle_received_buffer, which will call the
15719 * appropriate receive function when the final frame in a sequence is received.
15720 **/
4d9ab994
JS
15721void
15722lpfc_sli4_handle_received_buffer(struct lpfc_hba *phba,
15723 struct hbq_dmabuf *dmabuf)
4f774513 15724{
4d9ab994 15725 struct hbq_dmabuf *seq_dmabuf;
4f774513
JS
15726 struct fc_frame_header *fc_hdr;
15727 struct lpfc_vport *vport;
15728 uint32_t fcfi;
939723a4 15729 uint32_t did;
4f774513 15730
4f774513 15731 /* Process each received buffer */
4d9ab994 15732 fc_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
2ea259ee 15733
4d9ab994
JS
15734 /* check to see if this a valid type of frame */
15735 if (lpfc_fc_frame_check(phba, fc_hdr)) {
15736 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15737 return;
15738 }
2ea259ee 15739
7851fe2c
JS
15740 if ((bf_get(lpfc_cqe_code,
15741 &dmabuf->cq_event.cqe.rcqe_cmpl) == CQE_CODE_RECEIVE_V1))
15742 fcfi = bf_get(lpfc_rcqe_fcf_id_v1,
15743 &dmabuf->cq_event.cqe.rcqe_cmpl);
15744 else
15745 fcfi = bf_get(lpfc_rcqe_fcf_id,
15746 &dmabuf->cq_event.cqe.rcqe_cmpl);
939723a4 15747
4d9ab994 15748 vport = lpfc_fc_frame_to_vport(phba, fc_hdr, fcfi);
939723a4 15749 if (!vport) {
4d9ab994
JS
15750 /* throw out the frame */
15751 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15752 return;
15753 }
939723a4
JS
15754
15755 /* d_id this frame is directed to */
15756 did = sli4_did_from_fc_hdr(fc_hdr);
15757
15758 /* vport is registered unless we rcv a FLOGI directed to Fabric_DID */
15759 if (!(vport->vpi_state & LPFC_VPI_REGISTERED) &&
15760 (did != Fabric_DID)) {
15761 /*
15762 * Throw out the frame if we are not pt2pt.
15763 * The pt2pt protocol allows for discovery frames
15764 * to be received without a registered VPI.
15765 */
15766 if (!(vport->fc_flag & FC_PT2PT) ||
15767 (phba->link_state == LPFC_HBA_READY)) {
15768 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15769 return;
15770 }
15771 }
15772
6669f9bb
JS
15773 /* Handle the basic abort sequence (BA_ABTS) event */
15774 if (fc_hdr->fh_r_ctl == FC_RCTL_BA_ABTS) {
15775 lpfc_sli4_handle_unsol_abort(vport, dmabuf);
15776 return;
15777 }
15778
4d9ab994
JS
15779 /* Link this frame */
15780 seq_dmabuf = lpfc_fc_frame_add(vport, dmabuf);
15781 if (!seq_dmabuf) {
15782 /* unable to add frame to vport - throw it out */
15783 lpfc_in_buf_free(phba, &dmabuf->dbuf);
15784 return;
15785 }
15786 /* If not last frame in sequence continue processing frames. */
def9c7a9 15787 if (!lpfc_seq_complete(seq_dmabuf))
4d9ab994 15788 return;
def9c7a9 15789
6669f9bb
JS
15790 /* Send the complete sequence to the upper layer protocol */
15791 lpfc_sli4_send_seq_to_ulp(vport, seq_dmabuf);
4f774513 15792}
6fb120a7
JS
15793
15794/**
15795 * lpfc_sli4_post_all_rpi_hdrs - Post the rpi header memory region to the port
15796 * @phba: pointer to lpfc hba data structure.
15797 *
15798 * This routine is invoked to post rpi header templates to the
15799 * HBA consistent with the SLI-4 interface spec. This routine
49198b37
JS
15800 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
15801 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
6fb120a7
JS
15802 *
15803 * This routine does not require any locks. It's usage is expected
15804 * to be driver load or reset recovery when the driver is
15805 * sequential.
15806 *
15807 * Return codes
af901ca1 15808 * 0 - successful
d439d286 15809 * -EIO - The mailbox failed to complete successfully.
6fb120a7
JS
15810 * When this error occurs, the driver is not guaranteed
15811 * to have any rpi regions posted to the device and
15812 * must either attempt to repost the regions or take a
15813 * fatal error.
15814 **/
15815int
15816lpfc_sli4_post_all_rpi_hdrs(struct lpfc_hba *phba)
15817{
15818 struct lpfc_rpi_hdr *rpi_page;
15819 uint32_t rc = 0;
6d368e53
JS
15820 uint16_t lrpi = 0;
15821
15822 /* SLI4 ports that support extents do not require RPI headers. */
15823 if (!phba->sli4_hba.rpi_hdrs_in_use)
15824 goto exit;
15825 if (phba->sli4_hba.extents_in_use)
15826 return -EIO;
6fb120a7 15827
6fb120a7 15828 list_for_each_entry(rpi_page, &phba->sli4_hba.lpfc_rpi_hdr_list, list) {
6d368e53
JS
15829 /*
15830 * Assign the rpi headers a physical rpi only if the driver
15831 * has not initialized those resources. A port reset only
15832 * needs the headers posted.
15833 */
15834 if (bf_get(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags) !=
15835 LPFC_RPI_RSRC_RDY)
15836 rpi_page->start_rpi = phba->sli4_hba.rpi_ids[lrpi];
15837
6fb120a7
JS
15838 rc = lpfc_sli4_post_rpi_hdr(phba, rpi_page);
15839 if (rc != MBX_SUCCESS) {
15840 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15841 "2008 Error %d posting all rpi "
15842 "headers\n", rc);
15843 rc = -EIO;
15844 break;
15845 }
15846 }
15847
6d368e53
JS
15848 exit:
15849 bf_set(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags,
15850 LPFC_RPI_RSRC_RDY);
6fb120a7
JS
15851 return rc;
15852}
15853
15854/**
15855 * lpfc_sli4_post_rpi_hdr - Post an rpi header memory region to the port
15856 * @phba: pointer to lpfc hba data structure.
15857 * @rpi_page: pointer to the rpi memory region.
15858 *
15859 * This routine is invoked to post a single rpi header to the
15860 * HBA consistent with the SLI-4 interface spec. This memory region
15861 * maps up to 64 rpi context regions.
15862 *
15863 * Return codes
af901ca1 15864 * 0 - successful
d439d286
JS
15865 * -ENOMEM - No available memory
15866 * -EIO - The mailbox failed to complete successfully.
6fb120a7
JS
15867 **/
15868int
15869lpfc_sli4_post_rpi_hdr(struct lpfc_hba *phba, struct lpfc_rpi_hdr *rpi_page)
15870{
15871 LPFC_MBOXQ_t *mboxq;
15872 struct lpfc_mbx_post_hdr_tmpl *hdr_tmpl;
15873 uint32_t rc = 0;
6fb120a7
JS
15874 uint32_t shdr_status, shdr_add_status;
15875 union lpfc_sli4_cfg_shdr *shdr;
15876
6d368e53
JS
15877 /* SLI4 ports that support extents do not require RPI headers. */
15878 if (!phba->sli4_hba.rpi_hdrs_in_use)
15879 return rc;
15880 if (phba->sli4_hba.extents_in_use)
15881 return -EIO;
15882
6fb120a7
JS
15883 /* The port is notified of the header region via a mailbox command. */
15884 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15885 if (!mboxq) {
15886 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15887 "2001 Unable to allocate memory for issuing "
15888 "SLI_CONFIG_SPECIAL mailbox command\n");
15889 return -ENOMEM;
15890 }
15891
15892 /* Post all rpi memory regions to the port. */
15893 hdr_tmpl = &mboxq->u.mqe.un.hdr_tmpl;
6fb120a7
JS
15894 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
15895 LPFC_MBOX_OPCODE_FCOE_POST_HDR_TEMPLATE,
15896 sizeof(struct lpfc_mbx_post_hdr_tmpl) -
fedd3b7b
JS
15897 sizeof(struct lpfc_sli4_cfg_mhdr),
15898 LPFC_SLI4_MBX_EMBED);
6d368e53
JS
15899
15900
15901 /* Post the physical rpi to the port for this rpi header. */
6fb120a7
JS
15902 bf_set(lpfc_mbx_post_hdr_tmpl_rpi_offset, hdr_tmpl,
15903 rpi_page->start_rpi);
6d368e53
JS
15904 bf_set(lpfc_mbx_post_hdr_tmpl_page_cnt,
15905 hdr_tmpl, rpi_page->page_count);
15906
6fb120a7
JS
15907 hdr_tmpl->rpi_paddr_lo = putPaddrLow(rpi_page->dmabuf->phys);
15908 hdr_tmpl->rpi_paddr_hi = putPaddrHigh(rpi_page->dmabuf->phys);
f1126688 15909 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6fb120a7
JS
15910 shdr = (union lpfc_sli4_cfg_shdr *) &hdr_tmpl->header.cfg_shdr;
15911 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
15912 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
15913 if (rc != MBX_TIMEOUT)
15914 mempool_free(mboxq, phba->mbox_mem_pool);
15915 if (shdr_status || shdr_add_status || rc) {
15916 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15917 "2514 POST_RPI_HDR mailbox failed with "
15918 "status x%x add_status x%x, mbx status x%x\n",
15919 shdr_status, shdr_add_status, rc);
15920 rc = -ENXIO;
15921 }
15922 return rc;
15923}
15924
15925/**
15926 * lpfc_sli4_alloc_rpi - Get an available rpi in the device's range
15927 * @phba: pointer to lpfc hba data structure.
15928 *
15929 * This routine is invoked to post rpi header templates to the
15930 * HBA consistent with the SLI-4 interface spec. This routine
49198b37
JS
15931 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
15932 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
6fb120a7
JS
15933 *
15934 * Returns
af901ca1 15935 * A nonzero rpi defined as rpi_base <= rpi < max_rpi if successful
6fb120a7
JS
15936 * LPFC_RPI_ALLOC_ERROR if no rpis are available.
15937 **/
15938int
15939lpfc_sli4_alloc_rpi(struct lpfc_hba *phba)
15940{
6d368e53
JS
15941 unsigned long rpi;
15942 uint16_t max_rpi, rpi_limit;
15943 uint16_t rpi_remaining, lrpi = 0;
6fb120a7 15944 struct lpfc_rpi_hdr *rpi_hdr;
4902b381 15945 unsigned long iflag;
6fb120a7 15946
6fb120a7 15947 /*
6d368e53
JS
15948 * Fetch the next logical rpi. Because this index is logical,
15949 * the driver starts at 0 each time.
6fb120a7 15950 */
4902b381 15951 spin_lock_irqsave(&phba->hbalock, iflag);
be6bb941
JS
15952 max_rpi = phba->sli4_hba.max_cfg_param.max_rpi;
15953 rpi_limit = phba->sli4_hba.next_rpi;
15954
6d368e53
JS
15955 rpi = find_next_zero_bit(phba->sli4_hba.rpi_bmask, rpi_limit, 0);
15956 if (rpi >= rpi_limit)
6fb120a7
JS
15957 rpi = LPFC_RPI_ALLOC_ERROR;
15958 else {
15959 set_bit(rpi, phba->sli4_hba.rpi_bmask);
15960 phba->sli4_hba.max_cfg_param.rpi_used++;
15961 phba->sli4_hba.rpi_count++;
15962 }
be6bb941
JS
15963 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
15964 "0001 rpi:%x max:%x lim:%x\n",
15965 (int) rpi, max_rpi, rpi_limit);
6fb120a7
JS
15966
15967 /*
15968 * Don't try to allocate more rpi header regions if the device limit
6d368e53 15969 * has been exhausted.
6fb120a7
JS
15970 */
15971 if ((rpi == LPFC_RPI_ALLOC_ERROR) &&
15972 (phba->sli4_hba.rpi_count >= max_rpi)) {
4902b381 15973 spin_unlock_irqrestore(&phba->hbalock, iflag);
6fb120a7
JS
15974 return rpi;
15975 }
15976
6d368e53
JS
15977 /*
15978 * RPI header postings are not required for SLI4 ports capable of
15979 * extents.
15980 */
15981 if (!phba->sli4_hba.rpi_hdrs_in_use) {
4902b381 15982 spin_unlock_irqrestore(&phba->hbalock, iflag);
6d368e53
JS
15983 return rpi;
15984 }
15985
6fb120a7
JS
15986 /*
15987 * If the driver is running low on rpi resources, allocate another
15988 * page now. Note that the next_rpi value is used because
15989 * it represents how many are actually in use whereas max_rpi notes
15990 * how many are supported max by the device.
15991 */
6d368e53 15992 rpi_remaining = phba->sli4_hba.next_rpi - phba->sli4_hba.rpi_count;
4902b381 15993 spin_unlock_irqrestore(&phba->hbalock, iflag);
6fb120a7
JS
15994 if (rpi_remaining < LPFC_RPI_LOW_WATER_MARK) {
15995 rpi_hdr = lpfc_sli4_create_rpi_hdr(phba);
15996 if (!rpi_hdr) {
15997 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15998 "2002 Error Could not grow rpi "
15999 "count\n");
16000 } else {
6d368e53
JS
16001 lrpi = rpi_hdr->start_rpi;
16002 rpi_hdr->start_rpi = phba->sli4_hba.rpi_ids[lrpi];
6fb120a7
JS
16003 lpfc_sli4_post_rpi_hdr(phba, rpi_hdr);
16004 }
16005 }
16006
16007 return rpi;
16008}
16009
d7c47992
JS
16010/**
16011 * lpfc_sli4_free_rpi - Release an rpi for reuse.
16012 * @phba: pointer to lpfc hba data structure.
16013 *
16014 * This routine is invoked to release an rpi to the pool of
16015 * available rpis maintained by the driver.
16016 **/
5d8b8167 16017static void
d7c47992
JS
16018__lpfc_sli4_free_rpi(struct lpfc_hba *phba, int rpi)
16019{
16020 if (test_and_clear_bit(rpi, phba->sli4_hba.rpi_bmask)) {
16021 phba->sli4_hba.rpi_count--;
16022 phba->sli4_hba.max_cfg_param.rpi_used--;
16023 }
16024}
16025
6fb120a7
JS
16026/**
16027 * lpfc_sli4_free_rpi - Release an rpi for reuse.
16028 * @phba: pointer to lpfc hba data structure.
16029 *
16030 * This routine is invoked to release an rpi to the pool of
16031 * available rpis maintained by the driver.
16032 **/
16033void
16034lpfc_sli4_free_rpi(struct lpfc_hba *phba, int rpi)
16035{
16036 spin_lock_irq(&phba->hbalock);
d7c47992 16037 __lpfc_sli4_free_rpi(phba, rpi);
6fb120a7
JS
16038 spin_unlock_irq(&phba->hbalock);
16039}
16040
16041/**
16042 * lpfc_sli4_remove_rpis - Remove the rpi bitmask region
16043 * @phba: pointer to lpfc hba data structure.
16044 *
16045 * This routine is invoked to remove the memory region that
16046 * provided rpi via a bitmask.
16047 **/
16048void
16049lpfc_sli4_remove_rpis(struct lpfc_hba *phba)
16050{
16051 kfree(phba->sli4_hba.rpi_bmask);
6d368e53
JS
16052 kfree(phba->sli4_hba.rpi_ids);
16053 bf_set(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
6fb120a7
JS
16054}
16055
16056/**
16057 * lpfc_sli4_resume_rpi - Remove the rpi bitmask region
16058 * @phba: pointer to lpfc hba data structure.
16059 *
16060 * This routine is invoked to remove the memory region that
16061 * provided rpi via a bitmask.
16062 **/
16063int
6b5151fd
JS
16064lpfc_sli4_resume_rpi(struct lpfc_nodelist *ndlp,
16065 void (*cmpl)(struct lpfc_hba *, LPFC_MBOXQ_t *), void *arg)
6fb120a7
JS
16066{
16067 LPFC_MBOXQ_t *mboxq;
16068 struct lpfc_hba *phba = ndlp->phba;
16069 int rc;
16070
16071 /* The port is notified of the header region via a mailbox command. */
16072 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16073 if (!mboxq)
16074 return -ENOMEM;
16075
16076 /* Post all rpi memory regions to the port. */
16077 lpfc_resume_rpi(mboxq, ndlp);
6b5151fd
JS
16078 if (cmpl) {
16079 mboxq->mbox_cmpl = cmpl;
16080 mboxq->context1 = arg;
16081 mboxq->context2 = ndlp;
72859909
JS
16082 } else
16083 mboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
6b5151fd 16084 mboxq->vport = ndlp->vport;
6fb120a7
JS
16085 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
16086 if (rc == MBX_NOT_FINISHED) {
16087 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
16088 "2010 Resume RPI Mailbox failed "
16089 "status %d, mbxStatus x%x\n", rc,
16090 bf_get(lpfc_mqe_status, &mboxq->u.mqe));
16091 mempool_free(mboxq, phba->mbox_mem_pool);
16092 return -EIO;
16093 }
16094 return 0;
16095}
16096
16097/**
16098 * lpfc_sli4_init_vpi - Initialize a vpi with the port
76a95d75 16099 * @vport: Pointer to the vport for which the vpi is being initialized
6fb120a7 16100 *
76a95d75 16101 * This routine is invoked to activate a vpi with the port.
6fb120a7
JS
16102 *
16103 * Returns:
16104 * 0 success
16105 * -Evalue otherwise
16106 **/
16107int
76a95d75 16108lpfc_sli4_init_vpi(struct lpfc_vport *vport)
6fb120a7
JS
16109{
16110 LPFC_MBOXQ_t *mboxq;
16111 int rc = 0;
6a9c52cf 16112 int retval = MBX_SUCCESS;
6fb120a7 16113 uint32_t mbox_tmo;
76a95d75 16114 struct lpfc_hba *phba = vport->phba;
6fb120a7
JS
16115 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16116 if (!mboxq)
16117 return -ENOMEM;
76a95d75 16118 lpfc_init_vpi(phba, mboxq, vport->vpi);
a183a15f 16119 mbox_tmo = lpfc_mbox_tmo_val(phba, mboxq);
6fb120a7 16120 rc = lpfc_sli_issue_mbox_wait(phba, mboxq, mbox_tmo);
6fb120a7 16121 if (rc != MBX_SUCCESS) {
76a95d75 16122 lpfc_printf_vlog(vport, KERN_ERR, LOG_SLI,
6fb120a7
JS
16123 "2022 INIT VPI Mailbox failed "
16124 "status %d, mbxStatus x%x\n", rc,
16125 bf_get(lpfc_mqe_status, &mboxq->u.mqe));
6a9c52cf 16126 retval = -EIO;
6fb120a7 16127 }
6a9c52cf 16128 if (rc != MBX_TIMEOUT)
76a95d75 16129 mempool_free(mboxq, vport->phba->mbox_mem_pool);
6a9c52cf
JS
16130
16131 return retval;
6fb120a7
JS
16132}
16133
16134/**
16135 * lpfc_mbx_cmpl_add_fcf_record - add fcf mbox completion handler.
16136 * @phba: pointer to lpfc hba data structure.
16137 * @mboxq: Pointer to mailbox object.
16138 *
16139 * This routine is invoked to manually add a single FCF record. The caller
16140 * must pass a completely initialized FCF_Record. This routine takes
16141 * care of the nonembedded mailbox operations.
16142 **/
16143static void
16144lpfc_mbx_cmpl_add_fcf_record(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
16145{
16146 void *virt_addr;
16147 union lpfc_sli4_cfg_shdr *shdr;
16148 uint32_t shdr_status, shdr_add_status;
16149
16150 virt_addr = mboxq->sge_array->addr[0];
16151 /* The IOCTL status is embedded in the mailbox subheader. */
16152 shdr = (union lpfc_sli4_cfg_shdr *) virt_addr;
16153 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
16154 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
16155
16156 if ((shdr_status || shdr_add_status) &&
16157 (shdr_status != STATUS_FCF_IN_USE))
16158 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16159 "2558 ADD_FCF_RECORD mailbox failed with "
16160 "status x%x add_status x%x\n",
16161 shdr_status, shdr_add_status);
16162
16163 lpfc_sli4_mbox_cmd_free(phba, mboxq);
16164}
16165
16166/**
16167 * lpfc_sli4_add_fcf_record - Manually add an FCF Record.
16168 * @phba: pointer to lpfc hba data structure.
16169 * @fcf_record: pointer to the initialized fcf record to add.
16170 *
16171 * This routine is invoked to manually add a single FCF record. The caller
16172 * must pass a completely initialized FCF_Record. This routine takes
16173 * care of the nonembedded mailbox operations.
16174 **/
16175int
16176lpfc_sli4_add_fcf_record(struct lpfc_hba *phba, struct fcf_record *fcf_record)
16177{
16178 int rc = 0;
16179 LPFC_MBOXQ_t *mboxq;
16180 uint8_t *bytep;
16181 void *virt_addr;
6fb120a7
JS
16182 struct lpfc_mbx_sge sge;
16183 uint32_t alloc_len, req_len;
16184 uint32_t fcfindex;
16185
16186 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16187 if (!mboxq) {
16188 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16189 "2009 Failed to allocate mbox for ADD_FCF cmd\n");
16190 return -ENOMEM;
16191 }
16192
16193 req_len = sizeof(struct fcf_record) + sizeof(union lpfc_sli4_cfg_shdr) +
16194 sizeof(uint32_t);
16195
16196 /* Allocate DMA memory and set up the non-embedded mailbox command */
16197 alloc_len = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
16198 LPFC_MBOX_OPCODE_FCOE_ADD_FCF,
16199 req_len, LPFC_SLI4_MBX_NEMBED);
16200 if (alloc_len < req_len) {
16201 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16202 "2523 Allocated DMA memory size (x%x) is "
16203 "less than the requested DMA memory "
16204 "size (x%x)\n", alloc_len, req_len);
16205 lpfc_sli4_mbox_cmd_free(phba, mboxq);
16206 return -ENOMEM;
16207 }
16208
16209 /*
16210 * Get the first SGE entry from the non-embedded DMA memory. This
16211 * routine only uses a single SGE.
16212 */
16213 lpfc_sli4_mbx_sge_get(mboxq, 0, &sge);
6fb120a7
JS
16214 virt_addr = mboxq->sge_array->addr[0];
16215 /*
16216 * Configure the FCF record for FCFI 0. This is the driver's
16217 * hardcoded default and gets used in nonFIP mode.
16218 */
16219 fcfindex = bf_get(lpfc_fcf_record_fcf_index, fcf_record);
16220 bytep = virt_addr + sizeof(union lpfc_sli4_cfg_shdr);
16221 lpfc_sli_pcimem_bcopy(&fcfindex, bytep, sizeof(uint32_t));
16222
16223 /*
16224 * Copy the fcf_index and the FCF Record Data. The data starts after
16225 * the FCoE header plus word10. The data copy needs to be endian
16226 * correct.
16227 */
16228 bytep += sizeof(uint32_t);
16229 lpfc_sli_pcimem_bcopy(fcf_record, bytep, sizeof(struct fcf_record));
16230 mboxq->vport = phba->pport;
16231 mboxq->mbox_cmpl = lpfc_mbx_cmpl_add_fcf_record;
16232 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
16233 if (rc == MBX_NOT_FINISHED) {
16234 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16235 "2515 ADD_FCF_RECORD mailbox failed with "
16236 "status 0x%x\n", rc);
16237 lpfc_sli4_mbox_cmd_free(phba, mboxq);
16238 rc = -EIO;
16239 } else
16240 rc = 0;
16241
16242 return rc;
16243}
16244
16245/**
16246 * lpfc_sli4_build_dflt_fcf_record - Build the driver's default FCF Record.
16247 * @phba: pointer to lpfc hba data structure.
16248 * @fcf_record: pointer to the fcf record to write the default data.
16249 * @fcf_index: FCF table entry index.
16250 *
16251 * This routine is invoked to build the driver's default FCF record. The
16252 * values used are hardcoded. This routine handles memory initialization.
16253 *
16254 **/
16255void
16256lpfc_sli4_build_dflt_fcf_record(struct lpfc_hba *phba,
16257 struct fcf_record *fcf_record,
16258 uint16_t fcf_index)
16259{
16260 memset(fcf_record, 0, sizeof(struct fcf_record));
16261 fcf_record->max_rcv_size = LPFC_FCOE_MAX_RCV_SIZE;
16262 fcf_record->fka_adv_period = LPFC_FCOE_FKA_ADV_PER;
16263 fcf_record->fip_priority = LPFC_FCOE_FIP_PRIORITY;
16264 bf_set(lpfc_fcf_record_mac_0, fcf_record, phba->fc_map[0]);
16265 bf_set(lpfc_fcf_record_mac_1, fcf_record, phba->fc_map[1]);
16266 bf_set(lpfc_fcf_record_mac_2, fcf_record, phba->fc_map[2]);
16267 bf_set(lpfc_fcf_record_mac_3, fcf_record, LPFC_FCOE_FCF_MAC3);
16268 bf_set(lpfc_fcf_record_mac_4, fcf_record, LPFC_FCOE_FCF_MAC4);
16269 bf_set(lpfc_fcf_record_mac_5, fcf_record, LPFC_FCOE_FCF_MAC5);
16270 bf_set(lpfc_fcf_record_fc_map_0, fcf_record, phba->fc_map[0]);
16271 bf_set(lpfc_fcf_record_fc_map_1, fcf_record, phba->fc_map[1]);
16272 bf_set(lpfc_fcf_record_fc_map_2, fcf_record, phba->fc_map[2]);
16273 bf_set(lpfc_fcf_record_fcf_valid, fcf_record, 1);
0c287589 16274 bf_set(lpfc_fcf_record_fcf_avail, fcf_record, 1);
6fb120a7
JS
16275 bf_set(lpfc_fcf_record_fcf_index, fcf_record, fcf_index);
16276 bf_set(lpfc_fcf_record_mac_addr_prov, fcf_record,
16277 LPFC_FCF_FPMA | LPFC_FCF_SPMA);
16278 /* Set the VLAN bit map */
16279 if (phba->valid_vlan) {
16280 fcf_record->vlan_bitmap[phba->vlan_id / 8]
16281 = 1 << (phba->vlan_id % 8);
16282 }
16283}
16284
16285/**
0c9ab6f5 16286 * lpfc_sli4_fcf_scan_read_fcf_rec - Read hba fcf record for fcf scan.
6fb120a7
JS
16287 * @phba: pointer to lpfc hba data structure.
16288 * @fcf_index: FCF table entry offset.
16289 *
0c9ab6f5
JS
16290 * This routine is invoked to scan the entire FCF table by reading FCF
16291 * record and processing it one at a time starting from the @fcf_index
16292 * for initial FCF discovery or fast FCF failover rediscovery.
16293 *
25985edc 16294 * Return 0 if the mailbox command is submitted successfully, none 0
0c9ab6f5 16295 * otherwise.
6fb120a7
JS
16296 **/
16297int
0c9ab6f5 16298lpfc_sli4_fcf_scan_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
6fb120a7
JS
16299{
16300 int rc = 0, error;
16301 LPFC_MBOXQ_t *mboxq;
6fb120a7 16302
32b9793f 16303 phba->fcoe_eventtag_at_fcf_scan = phba->fcoe_eventtag;
80c17849 16304 phba->fcoe_cvl_eventtag_attn = phba->fcoe_cvl_eventtag;
6fb120a7
JS
16305 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16306 if (!mboxq) {
16307 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16308 "2000 Failed to allocate mbox for "
16309 "READ_FCF cmd\n");
4d9ab994 16310 error = -ENOMEM;
0c9ab6f5 16311 goto fail_fcf_scan;
6fb120a7 16312 }
ecfd03c6 16313 /* Construct the read FCF record mailbox command */
0c9ab6f5 16314 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
ecfd03c6
JS
16315 if (rc) {
16316 error = -EINVAL;
0c9ab6f5 16317 goto fail_fcf_scan;
6fb120a7 16318 }
ecfd03c6 16319 /* Issue the mailbox command asynchronously */
6fb120a7 16320 mboxq->vport = phba->pport;
0c9ab6f5 16321 mboxq->mbox_cmpl = lpfc_mbx_cmpl_fcf_scan_read_fcf_rec;
a93ff37a
JS
16322
16323 spin_lock_irq(&phba->hbalock);
16324 phba->hba_flag |= FCF_TS_INPROG;
16325 spin_unlock_irq(&phba->hbalock);
16326
6fb120a7 16327 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
ecfd03c6 16328 if (rc == MBX_NOT_FINISHED)
6fb120a7 16329 error = -EIO;
ecfd03c6 16330 else {
38b92ef8
JS
16331 /* Reset eligible FCF count for new scan */
16332 if (fcf_index == LPFC_FCOE_FCF_GET_FIRST)
999d813f 16333 phba->fcf.eligible_fcf_cnt = 0;
6fb120a7 16334 error = 0;
32b9793f 16335 }
0c9ab6f5 16336fail_fcf_scan:
4d9ab994
JS
16337 if (error) {
16338 if (mboxq)
16339 lpfc_sli4_mbox_cmd_free(phba, mboxq);
a93ff37a 16340 /* FCF scan failed, clear FCF_TS_INPROG flag */
4d9ab994 16341 spin_lock_irq(&phba->hbalock);
a93ff37a 16342 phba->hba_flag &= ~FCF_TS_INPROG;
4d9ab994
JS
16343 spin_unlock_irq(&phba->hbalock);
16344 }
6fb120a7
JS
16345 return error;
16346}
a0c87cbd 16347
0c9ab6f5 16348/**
a93ff37a 16349 * lpfc_sli4_fcf_rr_read_fcf_rec - Read hba fcf record for roundrobin fcf.
0c9ab6f5
JS
16350 * @phba: pointer to lpfc hba data structure.
16351 * @fcf_index: FCF table entry offset.
16352 *
16353 * This routine is invoked to read an FCF record indicated by @fcf_index
a93ff37a 16354 * and to use it for FLOGI roundrobin FCF failover.
0c9ab6f5 16355 *
25985edc 16356 * Return 0 if the mailbox command is submitted successfully, none 0
0c9ab6f5
JS
16357 * otherwise.
16358 **/
16359int
16360lpfc_sli4_fcf_rr_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
16361{
16362 int rc = 0, error;
16363 LPFC_MBOXQ_t *mboxq;
16364
16365 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16366 if (!mboxq) {
16367 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_INIT,
16368 "2763 Failed to allocate mbox for "
16369 "READ_FCF cmd\n");
16370 error = -ENOMEM;
16371 goto fail_fcf_read;
16372 }
16373 /* Construct the read FCF record mailbox command */
16374 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
16375 if (rc) {
16376 error = -EINVAL;
16377 goto fail_fcf_read;
16378 }
16379 /* Issue the mailbox command asynchronously */
16380 mboxq->vport = phba->pport;
16381 mboxq->mbox_cmpl = lpfc_mbx_cmpl_fcf_rr_read_fcf_rec;
16382 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
16383 if (rc == MBX_NOT_FINISHED)
16384 error = -EIO;
16385 else
16386 error = 0;
16387
16388fail_fcf_read:
16389 if (error && mboxq)
16390 lpfc_sli4_mbox_cmd_free(phba, mboxq);
16391 return error;
16392}
16393
16394/**
16395 * lpfc_sli4_read_fcf_rec - Read hba fcf record for update eligible fcf bmask.
16396 * @phba: pointer to lpfc hba data structure.
16397 * @fcf_index: FCF table entry offset.
16398 *
16399 * This routine is invoked to read an FCF record indicated by @fcf_index to
a93ff37a 16400 * determine whether it's eligible for FLOGI roundrobin failover list.
0c9ab6f5 16401 *
25985edc 16402 * Return 0 if the mailbox command is submitted successfully, none 0
0c9ab6f5
JS
16403 * otherwise.
16404 **/
16405int
16406lpfc_sli4_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
16407{
16408 int rc = 0, error;
16409 LPFC_MBOXQ_t *mboxq;
16410
16411 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16412 if (!mboxq) {
16413 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_INIT,
16414 "2758 Failed to allocate mbox for "
16415 "READ_FCF cmd\n");
16416 error = -ENOMEM;
16417 goto fail_fcf_read;
16418 }
16419 /* Construct the read FCF record mailbox command */
16420 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
16421 if (rc) {
16422 error = -EINVAL;
16423 goto fail_fcf_read;
16424 }
16425 /* Issue the mailbox command asynchronously */
16426 mboxq->vport = phba->pport;
16427 mboxq->mbox_cmpl = lpfc_mbx_cmpl_read_fcf_rec;
16428 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
16429 if (rc == MBX_NOT_FINISHED)
16430 error = -EIO;
16431 else
16432 error = 0;
16433
16434fail_fcf_read:
16435 if (error && mboxq)
16436 lpfc_sli4_mbox_cmd_free(phba, mboxq);
16437 return error;
16438}
16439
7d791df7 16440/**
f5cb5304 16441 * lpfc_check_next_fcf_pri_level
7d791df7
JS
16442 * phba pointer to the lpfc_hba struct for this port.
16443 * This routine is called from the lpfc_sli4_fcf_rr_next_index_get
16444 * routine when the rr_bmask is empty. The FCF indecies are put into the
16445 * rr_bmask based on their priority level. Starting from the highest priority
16446 * to the lowest. The most likely FCF candidate will be in the highest
16447 * priority group. When this routine is called it searches the fcf_pri list for
16448 * next lowest priority group and repopulates the rr_bmask with only those
16449 * fcf_indexes.
16450 * returns:
16451 * 1=success 0=failure
16452 **/
5d8b8167 16453static int
7d791df7
JS
16454lpfc_check_next_fcf_pri_level(struct lpfc_hba *phba)
16455{
16456 uint16_t next_fcf_pri;
16457 uint16_t last_index;
16458 struct lpfc_fcf_pri *fcf_pri;
16459 int rc;
16460 int ret = 0;
16461
16462 last_index = find_first_bit(phba->fcf.fcf_rr_bmask,
16463 LPFC_SLI4_FCF_TBL_INDX_MAX);
16464 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
16465 "3060 Last IDX %d\n", last_index);
2562669c
JS
16466
16467 /* Verify the priority list has 2 or more entries */
16468 spin_lock_irq(&phba->hbalock);
16469 if (list_empty(&phba->fcf.fcf_pri_list) ||
16470 list_is_singular(&phba->fcf.fcf_pri_list)) {
16471 spin_unlock_irq(&phba->hbalock);
7d791df7
JS
16472 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
16473 "3061 Last IDX %d\n", last_index);
16474 return 0; /* Empty rr list */
16475 }
2562669c
JS
16476 spin_unlock_irq(&phba->hbalock);
16477
7d791df7
JS
16478 next_fcf_pri = 0;
16479 /*
16480 * Clear the rr_bmask and set all of the bits that are at this
16481 * priority.
16482 */
16483 memset(phba->fcf.fcf_rr_bmask, 0,
16484 sizeof(*phba->fcf.fcf_rr_bmask));
16485 spin_lock_irq(&phba->hbalock);
16486 list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
16487 if (fcf_pri->fcf_rec.flag & LPFC_FCF_FLOGI_FAILED)
16488 continue;
16489 /*
16490 * the 1st priority that has not FLOGI failed
16491 * will be the highest.
16492 */
16493 if (!next_fcf_pri)
16494 next_fcf_pri = fcf_pri->fcf_rec.priority;
16495 spin_unlock_irq(&phba->hbalock);
16496 if (fcf_pri->fcf_rec.priority == next_fcf_pri) {
16497 rc = lpfc_sli4_fcf_rr_index_set(phba,
16498 fcf_pri->fcf_rec.fcf_index);
16499 if (rc)
16500 return 0;
16501 }
16502 spin_lock_irq(&phba->hbalock);
16503 }
16504 /*
16505 * if next_fcf_pri was not set above and the list is not empty then
16506 * we have failed flogis on all of them. So reset flogi failed
4907cb7b 16507 * and start at the beginning.
7d791df7
JS
16508 */
16509 if (!next_fcf_pri && !list_empty(&phba->fcf.fcf_pri_list)) {
16510 list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
16511 fcf_pri->fcf_rec.flag &= ~LPFC_FCF_FLOGI_FAILED;
16512 /*
16513 * the 1st priority that has not FLOGI failed
16514 * will be the highest.
16515 */
16516 if (!next_fcf_pri)
16517 next_fcf_pri = fcf_pri->fcf_rec.priority;
16518 spin_unlock_irq(&phba->hbalock);
16519 if (fcf_pri->fcf_rec.priority == next_fcf_pri) {
16520 rc = lpfc_sli4_fcf_rr_index_set(phba,
16521 fcf_pri->fcf_rec.fcf_index);
16522 if (rc)
16523 return 0;
16524 }
16525 spin_lock_irq(&phba->hbalock);
16526 }
16527 } else
16528 ret = 1;
16529 spin_unlock_irq(&phba->hbalock);
16530
16531 return ret;
16532}
0c9ab6f5
JS
16533/**
16534 * lpfc_sli4_fcf_rr_next_index_get - Get next eligible fcf record index
16535 * @phba: pointer to lpfc hba data structure.
16536 *
16537 * This routine is to get the next eligible FCF record index in a round
16538 * robin fashion. If the next eligible FCF record index equals to the
a93ff37a 16539 * initial roundrobin FCF record index, LPFC_FCOE_FCF_NEXT_NONE (0xFFFF)
0c9ab6f5
JS
16540 * shall be returned, otherwise, the next eligible FCF record's index
16541 * shall be returned.
16542 **/
16543uint16_t
16544lpfc_sli4_fcf_rr_next_index_get(struct lpfc_hba *phba)
16545{
16546 uint16_t next_fcf_index;
16547
421c6622 16548initial_priority:
3804dc84 16549 /* Search start from next bit of currently registered FCF index */
421c6622
JS
16550 next_fcf_index = phba->fcf.current_rec.fcf_indx;
16551
7d791df7 16552next_priority:
421c6622
JS
16553 /* Determine the next fcf index to check */
16554 next_fcf_index = (next_fcf_index + 1) % LPFC_SLI4_FCF_TBL_INDX_MAX;
0c9ab6f5
JS
16555 next_fcf_index = find_next_bit(phba->fcf.fcf_rr_bmask,
16556 LPFC_SLI4_FCF_TBL_INDX_MAX,
3804dc84
JS
16557 next_fcf_index);
16558
0c9ab6f5 16559 /* Wrap around condition on phba->fcf.fcf_rr_bmask */
7d791df7
JS
16560 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
16561 /*
16562 * If we have wrapped then we need to clear the bits that
16563 * have been tested so that we can detect when we should
16564 * change the priority level.
16565 */
0c9ab6f5
JS
16566 next_fcf_index = find_next_bit(phba->fcf.fcf_rr_bmask,
16567 LPFC_SLI4_FCF_TBL_INDX_MAX, 0);
7d791df7
JS
16568 }
16569
3804dc84
JS
16570
16571 /* Check roundrobin failover list empty condition */
7d791df7
JS
16572 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX ||
16573 next_fcf_index == phba->fcf.current_rec.fcf_indx) {
16574 /*
16575 * If next fcf index is not found check if there are lower
16576 * Priority level fcf's in the fcf_priority list.
16577 * Set up the rr_bmask with all of the avaiable fcf bits
16578 * at that level and continue the selection process.
16579 */
16580 if (lpfc_check_next_fcf_pri_level(phba))
421c6622 16581 goto initial_priority;
3804dc84
JS
16582 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
16583 "2844 No roundrobin failover FCF available\n");
7d791df7
JS
16584 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX)
16585 return LPFC_FCOE_FCF_NEXT_NONE;
16586 else {
16587 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
16588 "3063 Only FCF available idx %d, flag %x\n",
16589 next_fcf_index,
16590 phba->fcf.fcf_pri[next_fcf_index].fcf_rec.flag);
16591 return next_fcf_index;
16592 }
3804dc84
JS
16593 }
16594
7d791df7
JS
16595 if (next_fcf_index < LPFC_SLI4_FCF_TBL_INDX_MAX &&
16596 phba->fcf.fcf_pri[next_fcf_index].fcf_rec.flag &
f5cb5304
JS
16597 LPFC_FCF_FLOGI_FAILED) {
16598 if (list_is_singular(&phba->fcf.fcf_pri_list))
16599 return LPFC_FCOE_FCF_NEXT_NONE;
16600
7d791df7 16601 goto next_priority;
f5cb5304 16602 }
7d791df7 16603
3804dc84 16604 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
a93ff37a
JS
16605 "2845 Get next roundrobin failover FCF (x%x)\n",
16606 next_fcf_index);
16607
0c9ab6f5
JS
16608 return next_fcf_index;
16609}
16610
16611/**
16612 * lpfc_sli4_fcf_rr_index_set - Set bmask with eligible fcf record index
16613 * @phba: pointer to lpfc hba data structure.
16614 *
16615 * This routine sets the FCF record index in to the eligible bmask for
a93ff37a 16616 * roundrobin failover search. It checks to make sure that the index
0c9ab6f5
JS
16617 * does not go beyond the range of the driver allocated bmask dimension
16618 * before setting the bit.
16619 *
16620 * Returns 0 if the index bit successfully set, otherwise, it returns
16621 * -EINVAL.
16622 **/
16623int
16624lpfc_sli4_fcf_rr_index_set(struct lpfc_hba *phba, uint16_t fcf_index)
16625{
16626 if (fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
16627 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
a93ff37a
JS
16628 "2610 FCF (x%x) reached driver's book "
16629 "keeping dimension:x%x\n",
0c9ab6f5
JS
16630 fcf_index, LPFC_SLI4_FCF_TBL_INDX_MAX);
16631 return -EINVAL;
16632 }
16633 /* Set the eligible FCF record index bmask */
16634 set_bit(fcf_index, phba->fcf.fcf_rr_bmask);
16635
3804dc84 16636 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
a93ff37a 16637 "2790 Set FCF (x%x) to roundrobin FCF failover "
3804dc84
JS
16638 "bmask\n", fcf_index);
16639
0c9ab6f5
JS
16640 return 0;
16641}
16642
16643/**
3804dc84 16644 * lpfc_sli4_fcf_rr_index_clear - Clear bmask from eligible fcf record index
0c9ab6f5
JS
16645 * @phba: pointer to lpfc hba data structure.
16646 *
16647 * This routine clears the FCF record index from the eligible bmask for
a93ff37a 16648 * roundrobin failover search. It checks to make sure that the index
0c9ab6f5
JS
16649 * does not go beyond the range of the driver allocated bmask dimension
16650 * before clearing the bit.
16651 **/
16652void
16653lpfc_sli4_fcf_rr_index_clear(struct lpfc_hba *phba, uint16_t fcf_index)
16654{
9a803a74 16655 struct lpfc_fcf_pri *fcf_pri, *fcf_pri_next;
0c9ab6f5
JS
16656 if (fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
16657 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
a93ff37a
JS
16658 "2762 FCF (x%x) reached driver's book "
16659 "keeping dimension:x%x\n",
0c9ab6f5
JS
16660 fcf_index, LPFC_SLI4_FCF_TBL_INDX_MAX);
16661 return;
16662 }
16663 /* Clear the eligible FCF record index bmask */
7d791df7 16664 spin_lock_irq(&phba->hbalock);
9a803a74
JS
16665 list_for_each_entry_safe(fcf_pri, fcf_pri_next, &phba->fcf.fcf_pri_list,
16666 list) {
7d791df7
JS
16667 if (fcf_pri->fcf_rec.fcf_index == fcf_index) {
16668 list_del_init(&fcf_pri->list);
16669 break;
16670 }
16671 }
16672 spin_unlock_irq(&phba->hbalock);
0c9ab6f5 16673 clear_bit(fcf_index, phba->fcf.fcf_rr_bmask);
3804dc84
JS
16674
16675 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
a93ff37a 16676 "2791 Clear FCF (x%x) from roundrobin failover "
3804dc84 16677 "bmask\n", fcf_index);
0c9ab6f5
JS
16678}
16679
ecfd03c6
JS
16680/**
16681 * lpfc_mbx_cmpl_redisc_fcf_table - completion routine for rediscover FCF table
16682 * @phba: pointer to lpfc hba data structure.
16683 *
16684 * This routine is the completion routine for the rediscover FCF table mailbox
16685 * command. If the mailbox command returned failure, it will try to stop the
16686 * FCF rediscover wait timer.
16687 **/
5d8b8167 16688static void
ecfd03c6
JS
16689lpfc_mbx_cmpl_redisc_fcf_table(struct lpfc_hba *phba, LPFC_MBOXQ_t *mbox)
16690{
16691 struct lpfc_mbx_redisc_fcf_tbl *redisc_fcf;
16692 uint32_t shdr_status, shdr_add_status;
16693
16694 redisc_fcf = &mbox->u.mqe.un.redisc_fcf_tbl;
16695
16696 shdr_status = bf_get(lpfc_mbox_hdr_status,
16697 &redisc_fcf->header.cfg_shdr.response);
16698 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status,
16699 &redisc_fcf->header.cfg_shdr.response);
16700 if (shdr_status || shdr_add_status) {
0c9ab6f5 16701 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
ecfd03c6
JS
16702 "2746 Requesting for FCF rediscovery failed "
16703 "status x%x add_status x%x\n",
16704 shdr_status, shdr_add_status);
0c9ab6f5 16705 if (phba->fcf.fcf_flag & FCF_ACVL_DISC) {
fc2b989b 16706 spin_lock_irq(&phba->hbalock);
0c9ab6f5 16707 phba->fcf.fcf_flag &= ~FCF_ACVL_DISC;
fc2b989b
JS
16708 spin_unlock_irq(&phba->hbalock);
16709 /*
16710 * CVL event triggered FCF rediscover request failed,
16711 * last resort to re-try current registered FCF entry.
16712 */
16713 lpfc_retry_pport_discovery(phba);
16714 } else {
16715 spin_lock_irq(&phba->hbalock);
0c9ab6f5 16716 phba->fcf.fcf_flag &= ~FCF_DEAD_DISC;
fc2b989b
JS
16717 spin_unlock_irq(&phba->hbalock);
16718 /*
16719 * DEAD FCF event triggered FCF rediscover request
16720 * failed, last resort to fail over as a link down
16721 * to FCF registration.
16722 */
16723 lpfc_sli4_fcf_dead_failthrough(phba);
16724 }
0c9ab6f5
JS
16725 } else {
16726 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
a93ff37a 16727 "2775 Start FCF rediscover quiescent timer\n");
ecfd03c6
JS
16728 /*
16729 * Start FCF rediscovery wait timer for pending FCF
16730 * before rescan FCF record table.
16731 */
16732 lpfc_fcf_redisc_wait_start_timer(phba);
0c9ab6f5 16733 }
ecfd03c6
JS
16734
16735 mempool_free(mbox, phba->mbox_mem_pool);
16736}
16737
16738/**
3804dc84 16739 * lpfc_sli4_redisc_fcf_table - Request to rediscover entire FCF table by port.
ecfd03c6
JS
16740 * @phba: pointer to lpfc hba data structure.
16741 *
16742 * This routine is invoked to request for rediscovery of the entire FCF table
16743 * by the port.
16744 **/
16745int
16746lpfc_sli4_redisc_fcf_table(struct lpfc_hba *phba)
16747{
16748 LPFC_MBOXQ_t *mbox;
16749 struct lpfc_mbx_redisc_fcf_tbl *redisc_fcf;
16750 int rc, length;
16751
0c9ab6f5
JS
16752 /* Cancel retry delay timers to all vports before FCF rediscover */
16753 lpfc_cancel_all_vport_retry_delay_timer(phba);
16754
ecfd03c6
JS
16755 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16756 if (!mbox) {
16757 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
16758 "2745 Failed to allocate mbox for "
16759 "requesting FCF rediscover.\n");
16760 return -ENOMEM;
16761 }
16762
16763 length = (sizeof(struct lpfc_mbx_redisc_fcf_tbl) -
16764 sizeof(struct lpfc_sli4_cfg_mhdr));
16765 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
16766 LPFC_MBOX_OPCODE_FCOE_REDISCOVER_FCF,
16767 length, LPFC_SLI4_MBX_EMBED);
16768
16769 redisc_fcf = &mbox->u.mqe.un.redisc_fcf_tbl;
16770 /* Set count to 0 for invalidating the entire FCF database */
16771 bf_set(lpfc_mbx_redisc_fcf_count, redisc_fcf, 0);
16772
16773 /* Issue the mailbox command asynchronously */
16774 mbox->vport = phba->pport;
16775 mbox->mbox_cmpl = lpfc_mbx_cmpl_redisc_fcf_table;
16776 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
16777
16778 if (rc == MBX_NOT_FINISHED) {
16779 mempool_free(mbox, phba->mbox_mem_pool);
16780 return -EIO;
16781 }
16782 return 0;
16783}
16784
fc2b989b
JS
16785/**
16786 * lpfc_sli4_fcf_dead_failthrough - Failthrough routine to fcf dead event
16787 * @phba: pointer to lpfc hba data structure.
16788 *
16789 * This function is the failover routine as a last resort to the FCF DEAD
16790 * event when driver failed to perform fast FCF failover.
16791 **/
16792void
16793lpfc_sli4_fcf_dead_failthrough(struct lpfc_hba *phba)
16794{
16795 uint32_t link_state;
16796
16797 /*
16798 * Last resort as FCF DEAD event failover will treat this as
16799 * a link down, but save the link state because we don't want
16800 * it to be changed to Link Down unless it is already down.
16801 */
16802 link_state = phba->link_state;
16803 lpfc_linkdown(phba);
16804 phba->link_state = link_state;
16805
16806 /* Unregister FCF if no devices connected to it */
16807 lpfc_unregister_unused_fcf(phba);
16808}
16809
a0c87cbd 16810/**
026abb87 16811 * lpfc_sli_get_config_region23 - Get sli3 port region 23 data.
a0c87cbd 16812 * @phba: pointer to lpfc hba data structure.
026abb87 16813 * @rgn23_data: pointer to configure region 23 data.
a0c87cbd 16814 *
026abb87
JS
16815 * This function gets SLI3 port configure region 23 data through memory dump
16816 * mailbox command. When it successfully retrieves data, the size of the data
16817 * will be returned, otherwise, 0 will be returned.
a0c87cbd 16818 **/
026abb87
JS
16819static uint32_t
16820lpfc_sli_get_config_region23(struct lpfc_hba *phba, char *rgn23_data)
a0c87cbd
JS
16821{
16822 LPFC_MBOXQ_t *pmb = NULL;
16823 MAILBOX_t *mb;
026abb87 16824 uint32_t offset = 0;
a0c87cbd
JS
16825 int rc;
16826
026abb87
JS
16827 if (!rgn23_data)
16828 return 0;
16829
a0c87cbd
JS
16830 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16831 if (!pmb) {
16832 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
026abb87
JS
16833 "2600 failed to allocate mailbox memory\n");
16834 return 0;
a0c87cbd
JS
16835 }
16836 mb = &pmb->u.mb;
16837
a0c87cbd
JS
16838 do {
16839 lpfc_dump_mem(phba, pmb, offset, DMP_REGION_23);
16840 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
16841
16842 if (rc != MBX_SUCCESS) {
16843 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
026abb87
JS
16844 "2601 failed to read config "
16845 "region 23, rc 0x%x Status 0x%x\n",
16846 rc, mb->mbxStatus);
a0c87cbd
JS
16847 mb->un.varDmp.word_cnt = 0;
16848 }
16849 /*
16850 * dump mem may return a zero when finished or we got a
16851 * mailbox error, either way we are done.
16852 */
16853 if (mb->un.varDmp.word_cnt == 0)
16854 break;
16855 if (mb->un.varDmp.word_cnt > DMP_RGN23_SIZE - offset)
16856 mb->un.varDmp.word_cnt = DMP_RGN23_SIZE - offset;
16857
16858 lpfc_sli_pcimem_bcopy(((uint8_t *)mb) + DMP_RSP_OFFSET,
026abb87
JS
16859 rgn23_data + offset,
16860 mb->un.varDmp.word_cnt);
a0c87cbd
JS
16861 offset += mb->un.varDmp.word_cnt;
16862 } while (mb->un.varDmp.word_cnt && offset < DMP_RGN23_SIZE);
16863
026abb87
JS
16864 mempool_free(pmb, phba->mbox_mem_pool);
16865 return offset;
16866}
16867
16868/**
16869 * lpfc_sli4_get_config_region23 - Get sli4 port region 23 data.
16870 * @phba: pointer to lpfc hba data structure.
16871 * @rgn23_data: pointer to configure region 23 data.
16872 *
16873 * This function gets SLI4 port configure region 23 data through memory dump
16874 * mailbox command. When it successfully retrieves data, the size of the data
16875 * will be returned, otherwise, 0 will be returned.
16876 **/
16877static uint32_t
16878lpfc_sli4_get_config_region23(struct lpfc_hba *phba, char *rgn23_data)
16879{
16880 LPFC_MBOXQ_t *mboxq = NULL;
16881 struct lpfc_dmabuf *mp = NULL;
16882 struct lpfc_mqe *mqe;
16883 uint32_t data_length = 0;
16884 int rc;
16885
16886 if (!rgn23_data)
16887 return 0;
16888
16889 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16890 if (!mboxq) {
16891 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16892 "3105 failed to allocate mailbox memory\n");
16893 return 0;
16894 }
16895
16896 if (lpfc_sli4_dump_cfg_rg23(phba, mboxq))
16897 goto out;
16898 mqe = &mboxq->u.mqe;
16899 mp = (struct lpfc_dmabuf *) mboxq->context1;
16900 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
16901 if (rc)
16902 goto out;
16903 data_length = mqe->un.mb_words[5];
16904 if (data_length == 0)
16905 goto out;
16906 if (data_length > DMP_RGN23_SIZE) {
16907 data_length = 0;
16908 goto out;
16909 }
16910 lpfc_sli_pcimem_bcopy((char *)mp->virt, rgn23_data, data_length);
16911out:
16912 mempool_free(mboxq, phba->mbox_mem_pool);
16913 if (mp) {
16914 lpfc_mbuf_free(phba, mp->virt, mp->phys);
16915 kfree(mp);
16916 }
16917 return data_length;
16918}
16919
16920/**
16921 * lpfc_sli_read_link_ste - Read region 23 to decide if link is disabled.
16922 * @phba: pointer to lpfc hba data structure.
16923 *
16924 * This function read region 23 and parse TLV for port status to
16925 * decide if the user disaled the port. If the TLV indicates the
16926 * port is disabled, the hba_flag is set accordingly.
16927 **/
16928void
16929lpfc_sli_read_link_ste(struct lpfc_hba *phba)
16930{
16931 uint8_t *rgn23_data = NULL;
16932 uint32_t if_type, data_size, sub_tlv_len, tlv_offset;
16933 uint32_t offset = 0;
16934
16935 /* Get adapter Region 23 data */
16936 rgn23_data = kzalloc(DMP_RGN23_SIZE, GFP_KERNEL);
16937 if (!rgn23_data)
16938 goto out;
16939
16940 if (phba->sli_rev < LPFC_SLI_REV4)
16941 data_size = lpfc_sli_get_config_region23(phba, rgn23_data);
16942 else {
16943 if_type = bf_get(lpfc_sli_intf_if_type,
16944 &phba->sli4_hba.sli_intf);
16945 if (if_type == LPFC_SLI_INTF_IF_TYPE_0)
16946 goto out;
16947 data_size = lpfc_sli4_get_config_region23(phba, rgn23_data);
16948 }
a0c87cbd
JS
16949
16950 if (!data_size)
16951 goto out;
16952
16953 /* Check the region signature first */
16954 if (memcmp(&rgn23_data[offset], LPFC_REGION23_SIGNATURE, 4)) {
16955 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16956 "2619 Config region 23 has bad signature\n");
16957 goto out;
16958 }
16959 offset += 4;
16960
16961 /* Check the data structure version */
16962 if (rgn23_data[offset] != LPFC_REGION23_VERSION) {
16963 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16964 "2620 Config region 23 has bad version\n");
16965 goto out;
16966 }
16967 offset += 4;
16968
16969 /* Parse TLV entries in the region */
16970 while (offset < data_size) {
16971 if (rgn23_data[offset] == LPFC_REGION23_LAST_REC)
16972 break;
16973 /*
16974 * If the TLV is not driver specific TLV or driver id is
16975 * not linux driver id, skip the record.
16976 */
16977 if ((rgn23_data[offset] != DRIVER_SPECIFIC_TYPE) ||
16978 (rgn23_data[offset + 2] != LINUX_DRIVER_ID) ||
16979 (rgn23_data[offset + 3] != 0)) {
16980 offset += rgn23_data[offset + 1] * 4 + 4;
16981 continue;
16982 }
16983
16984 /* Driver found a driver specific TLV in the config region */
16985 sub_tlv_len = rgn23_data[offset + 1] * 4;
16986 offset += 4;
16987 tlv_offset = 0;
16988
16989 /*
16990 * Search for configured port state sub-TLV.
16991 */
16992 while ((offset < data_size) &&
16993 (tlv_offset < sub_tlv_len)) {
16994 if (rgn23_data[offset] == LPFC_REGION23_LAST_REC) {
16995 offset += 4;
16996 tlv_offset += 4;
16997 break;
16998 }
16999 if (rgn23_data[offset] != PORT_STE_TYPE) {
17000 offset += rgn23_data[offset + 1] * 4 + 4;
17001 tlv_offset += rgn23_data[offset + 1] * 4 + 4;
17002 continue;
17003 }
17004
17005 /* This HBA contains PORT_STE configured */
17006 if (!rgn23_data[offset + 2])
17007 phba->hba_flag |= LINK_DISABLED;
17008
17009 goto out;
17010 }
17011 }
026abb87 17012
a0c87cbd 17013out:
a0c87cbd
JS
17014 kfree(rgn23_data);
17015 return;
17016}
695a814e 17017
52d52440
JS
17018/**
17019 * lpfc_wr_object - write an object to the firmware
17020 * @phba: HBA structure that indicates port to create a queue on.
17021 * @dmabuf_list: list of dmabufs to write to the port.
17022 * @size: the total byte value of the objects to write to the port.
17023 * @offset: the current offset to be used to start the transfer.
17024 *
17025 * This routine will create a wr_object mailbox command to send to the port.
17026 * the mailbox command will be constructed using the dma buffers described in
17027 * @dmabuf_list to create a list of BDEs. This routine will fill in as many
17028 * BDEs that the imbedded mailbox can support. The @offset variable will be
17029 * used to indicate the starting offset of the transfer and will also return
17030 * the offset after the write object mailbox has completed. @size is used to
17031 * determine the end of the object and whether the eof bit should be set.
17032 *
17033 * Return 0 is successful and offset will contain the the new offset to use
17034 * for the next write.
17035 * Return negative value for error cases.
17036 **/
17037int
17038lpfc_wr_object(struct lpfc_hba *phba, struct list_head *dmabuf_list,
17039 uint32_t size, uint32_t *offset)
17040{
17041 struct lpfc_mbx_wr_object *wr_object;
17042 LPFC_MBOXQ_t *mbox;
17043 int rc = 0, i = 0;
17044 uint32_t shdr_status, shdr_add_status;
17045 uint32_t mbox_tmo;
17046 union lpfc_sli4_cfg_shdr *shdr;
17047 struct lpfc_dmabuf *dmabuf;
17048 uint32_t written = 0;
17049
17050 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
17051 if (!mbox)
17052 return -ENOMEM;
17053
17054 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
17055 LPFC_MBOX_OPCODE_WRITE_OBJECT,
17056 sizeof(struct lpfc_mbx_wr_object) -
17057 sizeof(struct lpfc_sli4_cfg_mhdr), LPFC_SLI4_MBX_EMBED);
17058
17059 wr_object = (struct lpfc_mbx_wr_object *)&mbox->u.mqe.un.wr_object;
17060 wr_object->u.request.write_offset = *offset;
17061 sprintf((uint8_t *)wr_object->u.request.object_name, "/");
17062 wr_object->u.request.object_name[0] =
17063 cpu_to_le32(wr_object->u.request.object_name[0]);
17064 bf_set(lpfc_wr_object_eof, &wr_object->u.request, 0);
17065 list_for_each_entry(dmabuf, dmabuf_list, list) {
17066 if (i >= LPFC_MBX_WR_CONFIG_MAX_BDE || written >= size)
17067 break;
17068 wr_object->u.request.bde[i].addrLow = putPaddrLow(dmabuf->phys);
17069 wr_object->u.request.bde[i].addrHigh =
17070 putPaddrHigh(dmabuf->phys);
17071 if (written + SLI4_PAGE_SIZE >= size) {
17072 wr_object->u.request.bde[i].tus.f.bdeSize =
17073 (size - written);
17074 written += (size - written);
17075 bf_set(lpfc_wr_object_eof, &wr_object->u.request, 1);
17076 } else {
17077 wr_object->u.request.bde[i].tus.f.bdeSize =
17078 SLI4_PAGE_SIZE;
17079 written += SLI4_PAGE_SIZE;
17080 }
17081 i++;
17082 }
17083 wr_object->u.request.bde_count = i;
17084 bf_set(lpfc_wr_object_write_length, &wr_object->u.request, written);
17085 if (!phba->sli4_hba.intr_enable)
17086 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
17087 else {
a183a15f 17088 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
52d52440
JS
17089 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
17090 }
17091 /* The IOCTL status is embedded in the mailbox subheader. */
17092 shdr = (union lpfc_sli4_cfg_shdr *) &wr_object->header.cfg_shdr;
17093 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
17094 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
17095 if (rc != MBX_TIMEOUT)
17096 mempool_free(mbox, phba->mbox_mem_pool);
17097 if (shdr_status || shdr_add_status || rc) {
17098 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
17099 "3025 Write Object mailbox failed with "
17100 "status x%x add_status x%x, mbx status x%x\n",
17101 shdr_status, shdr_add_status, rc);
17102 rc = -ENXIO;
17103 } else
17104 *offset += wr_object->u.response.actual_write_length;
17105 return rc;
17106}
17107
695a814e
JS
17108/**
17109 * lpfc_cleanup_pending_mbox - Free up vport discovery mailbox commands.
17110 * @vport: pointer to vport data structure.
17111 *
17112 * This function iterate through the mailboxq and clean up all REG_LOGIN
17113 * and REG_VPI mailbox commands associated with the vport. This function
17114 * is called when driver want to restart discovery of the vport due to
17115 * a Clear Virtual Link event.
17116 **/
17117void
17118lpfc_cleanup_pending_mbox(struct lpfc_vport *vport)
17119{
17120 struct lpfc_hba *phba = vport->phba;
17121 LPFC_MBOXQ_t *mb, *nextmb;
17122 struct lpfc_dmabuf *mp;
78730cfe 17123 struct lpfc_nodelist *ndlp;
d439d286 17124 struct lpfc_nodelist *act_mbx_ndlp = NULL;
589a52d6 17125 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
d439d286 17126 LIST_HEAD(mbox_cmd_list);
63e801ce 17127 uint8_t restart_loop;
695a814e 17128
d439d286 17129 /* Clean up internally queued mailbox commands with the vport */
695a814e
JS
17130 spin_lock_irq(&phba->hbalock);
17131 list_for_each_entry_safe(mb, nextmb, &phba->sli.mboxq, list) {
17132 if (mb->vport != vport)
17133 continue;
17134
17135 if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) &&
17136 (mb->u.mb.mbxCommand != MBX_REG_VPI))
17137 continue;
17138
d439d286
JS
17139 list_del(&mb->list);
17140 list_add_tail(&mb->list, &mbox_cmd_list);
17141 }
17142 /* Clean up active mailbox command with the vport */
17143 mb = phba->sli.mbox_active;
17144 if (mb && (mb->vport == vport)) {
17145 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) ||
17146 (mb->u.mb.mbxCommand == MBX_REG_VPI))
17147 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
17148 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
17149 act_mbx_ndlp = (struct lpfc_nodelist *)mb->context2;
17150 /* Put reference count for delayed processing */
17151 act_mbx_ndlp = lpfc_nlp_get(act_mbx_ndlp);
17152 /* Unregister the RPI when mailbox complete */
17153 mb->mbox_flag |= LPFC_MBX_IMED_UNREG;
17154 }
17155 }
63e801ce
JS
17156 /* Cleanup any mailbox completions which are not yet processed */
17157 do {
17158 restart_loop = 0;
17159 list_for_each_entry(mb, &phba->sli.mboxq_cmpl, list) {
17160 /*
17161 * If this mailox is already processed or it is
17162 * for another vport ignore it.
17163 */
17164 if ((mb->vport != vport) ||
17165 (mb->mbox_flag & LPFC_MBX_IMED_UNREG))
17166 continue;
17167
17168 if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) &&
17169 (mb->u.mb.mbxCommand != MBX_REG_VPI))
17170 continue;
17171
17172 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
17173 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
17174 ndlp = (struct lpfc_nodelist *)mb->context2;
17175 /* Unregister the RPI when mailbox complete */
17176 mb->mbox_flag |= LPFC_MBX_IMED_UNREG;
17177 restart_loop = 1;
17178 spin_unlock_irq(&phba->hbalock);
17179 spin_lock(shost->host_lock);
17180 ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
17181 spin_unlock(shost->host_lock);
17182 spin_lock_irq(&phba->hbalock);
17183 break;
17184 }
17185 }
17186 } while (restart_loop);
17187
d439d286
JS
17188 spin_unlock_irq(&phba->hbalock);
17189
17190 /* Release the cleaned-up mailbox commands */
17191 while (!list_empty(&mbox_cmd_list)) {
17192 list_remove_head(&mbox_cmd_list, mb, LPFC_MBOXQ_t, list);
695a814e
JS
17193 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
17194 mp = (struct lpfc_dmabuf *) (mb->context1);
17195 if (mp) {
17196 __lpfc_mbuf_free(phba, mp->virt, mp->phys);
17197 kfree(mp);
17198 }
78730cfe 17199 ndlp = (struct lpfc_nodelist *) mb->context2;
d439d286 17200 mb->context2 = NULL;
78730cfe 17201 if (ndlp) {
ec21b3b0 17202 spin_lock(shost->host_lock);
589a52d6 17203 ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
ec21b3b0 17204 spin_unlock(shost->host_lock);
78730cfe 17205 lpfc_nlp_put(ndlp);
78730cfe 17206 }
695a814e 17207 }
695a814e
JS
17208 mempool_free(mb, phba->mbox_mem_pool);
17209 }
d439d286
JS
17210
17211 /* Release the ndlp with the cleaned-up active mailbox command */
17212 if (act_mbx_ndlp) {
17213 spin_lock(shost->host_lock);
17214 act_mbx_ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
17215 spin_unlock(shost->host_lock);
17216 lpfc_nlp_put(act_mbx_ndlp);
695a814e 17217 }
695a814e
JS
17218}
17219
2a9bf3d0
JS
17220/**
17221 * lpfc_drain_txq - Drain the txq
17222 * @phba: Pointer to HBA context object.
17223 *
17224 * This function attempt to submit IOCBs on the txq
17225 * to the adapter. For SLI4 adapters, the txq contains
17226 * ELS IOCBs that have been deferred because the there
17227 * are no SGLs. This congestion can occur with large
17228 * vport counts during node discovery.
17229 **/
17230
17231uint32_t
17232lpfc_drain_txq(struct lpfc_hba *phba)
17233{
17234 LIST_HEAD(completions);
17235 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
2e706377 17236 struct lpfc_iocbq *piocbq = NULL;
2a9bf3d0
JS
17237 unsigned long iflags = 0;
17238 char *fail_msg = NULL;
17239 struct lpfc_sglq *sglq;
2f07784f
JS
17240 union lpfc_wqe128 wqe128;
17241 union lpfc_wqe *wqe = (union lpfc_wqe *) &wqe128;
a2fc4aef 17242 uint32_t txq_cnt = 0;
2a9bf3d0 17243
398d81c9 17244 spin_lock_irqsave(&pring->ring_lock, iflags);
0e9bb8d7
JS
17245 list_for_each_entry(piocbq, &pring->txq, list) {
17246 txq_cnt++;
17247 }
17248
17249 if (txq_cnt > pring->txq_max)
17250 pring->txq_max = txq_cnt;
2a9bf3d0 17251
398d81c9 17252 spin_unlock_irqrestore(&pring->ring_lock, iflags);
2a9bf3d0 17253
0e9bb8d7 17254 while (!list_empty(&pring->txq)) {
398d81c9 17255 spin_lock_irqsave(&pring->ring_lock, iflags);
2a9bf3d0 17256
19ca7609 17257 piocbq = lpfc_sli_ringtx_get(phba, pring);
a629852a 17258 if (!piocbq) {
398d81c9 17259 spin_unlock_irqrestore(&pring->ring_lock, iflags);
a629852a
JS
17260 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
17261 "2823 txq empty and txq_cnt is %d\n ",
0e9bb8d7 17262 txq_cnt);
a629852a
JS
17263 break;
17264 }
19ca7609 17265 sglq = __lpfc_sli_get_sglq(phba, piocbq);
2a9bf3d0 17266 if (!sglq) {
19ca7609 17267 __lpfc_sli_ringtx_put(phba, pring, piocbq);
398d81c9 17268 spin_unlock_irqrestore(&pring->ring_lock, iflags);
2a9bf3d0 17269 break;
2a9bf3d0 17270 }
0e9bb8d7 17271 txq_cnt--;
2a9bf3d0
JS
17272
17273 /* The xri and iocb resources secured,
17274 * attempt to issue request
17275 */
6d368e53 17276 piocbq->sli4_lxritag = sglq->sli4_lxritag;
2a9bf3d0
JS
17277 piocbq->sli4_xritag = sglq->sli4_xritag;
17278 if (NO_XRI == lpfc_sli4_bpl2sgl(phba, piocbq, sglq))
17279 fail_msg = "to convert bpl to sgl";
2f07784f 17280 else if (lpfc_sli4_iocb2wqe(phba, piocbq, wqe))
2a9bf3d0 17281 fail_msg = "to convert iocb to wqe";
2f07784f 17282 else if (lpfc_sli4_wq_put(phba->sli4_hba.els_wq, wqe))
2a9bf3d0
JS
17283 fail_msg = " - Wq is full";
17284 else
17285 lpfc_sli_ringtxcmpl_put(phba, pring, piocbq);
17286
17287 if (fail_msg) {
17288 /* Failed means we can't issue and need to cancel */
17289 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
17290 "2822 IOCB failed %s iotag 0x%x "
17291 "xri 0x%x\n",
17292 fail_msg,
17293 piocbq->iotag, piocbq->sli4_xritag);
17294 list_add_tail(&piocbq->list, &completions);
17295 }
398d81c9 17296 spin_unlock_irqrestore(&pring->ring_lock, iflags);
2a9bf3d0
JS
17297 }
17298
2a9bf3d0
JS
17299 /* Cancel all the IOCBs that cannot be issued */
17300 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
17301 IOERR_SLI_ABORTED);
17302
0e9bb8d7 17303 return txq_cnt;
2a9bf3d0 17304}