[SCSI] lpfc 8.3.42: Fixed failure to allocate SCSI buffer on PPC64 platform for SLI4...
[linux-block.git] / drivers / scsi / lpfc / lpfc_sli.c
CommitLineData
dea3101e 1/*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
c44ce173 3 * Fibre Channel Host Bus Adapters. *
92c13f29 4 * Copyright (C) 2004-2013 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 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 20 *******************************************************************/
21
dea3101e 22#include <linux/blkdev.h>
23#include <linux/pci.h>
24#include <linux/interrupt.h>
25#include <linux/delay.h>
5a0e3ad6 26#include <linux/slab.h>
dea3101e 27
91886523 28#include <scsi/scsi.h>
dea3101e 29#include <scsi/scsi_cmnd.h>
30#include <scsi/scsi_device.h>
31#include <scsi/scsi_host.h>
f888ba3c 32#include <scsi/scsi_transport_fc.h>
da0436e9 33#include <scsi/fc/fc_fs.h>
0d878419 34#include <linux/aer.h>
dea3101e 35
da0436e9 36#include "lpfc_hw4.h"
dea3101e 37#include "lpfc_hw.h"
38#include "lpfc_sli.h"
da0436e9 39#include "lpfc_sli4.h"
ea2151b4 40#include "lpfc_nl.h"
dea3101e 41#include "lpfc_disc.h"
42#include "lpfc_scsi.h"
43#include "lpfc.h"
44#include "lpfc_crtn.h"
45#include "lpfc_logmsg.h"
46#include "lpfc_compat.h"
858c9f6c 47#include "lpfc_debugfs.h"
04c68496 48#include "lpfc_vport.h"
dea3101e 49
50/* There are only four IOCB completion types. */
51typedef enum _lpfc_iocb_type {
52 LPFC_UNKNOWN_IOCB,
53 LPFC_UNSOL_IOCB,
54 LPFC_SOL_IOCB,
55 LPFC_ABORT_IOCB
56} lpfc_iocb_type;
57
4f774513
JS
58
59/* Provide function prototypes local to this module. */
60static int lpfc_sli_issue_mbox_s4(struct lpfc_hba *, LPFC_MBOXQ_t *,
61 uint32_t);
62static int lpfc_sli4_read_rev(struct lpfc_hba *, LPFC_MBOXQ_t *,
45ed1190
JS
63 uint8_t *, uint32_t *);
64static struct lpfc_iocbq *lpfc_sli4_els_wcqe_to_rspiocbq(struct lpfc_hba *,
65 struct lpfc_iocbq *);
6669f9bb
JS
66static void lpfc_sli4_send_seq_to_ulp(struct lpfc_vport *,
67 struct hbq_dmabuf *);
0558056c
JS
68static int lpfc_sli4_fp_handle_wcqe(struct lpfc_hba *, struct lpfc_queue *,
69 struct lpfc_cqe *);
8a9d2e80
JS
70static int lpfc_sli4_post_els_sgl_list(struct lpfc_hba *, struct list_head *,
71 int);
ba20c853
JS
72static void lpfc_sli4_hba_handle_eqe(struct lpfc_hba *, struct lpfc_eqe *,
73 uint32_t);
0558056c 74
4f774513
JS
75static IOCB_t *
76lpfc_get_iocb_from_iocbq(struct lpfc_iocbq *iocbq)
77{
78 return &iocbq->iocb;
79}
80
81/**
82 * lpfc_sli4_wq_put - Put a Work Queue Entry on an Work Queue
83 * @q: The Work Queue to operate on.
84 * @wqe: The work Queue Entry to put on the Work queue.
85 *
86 * This routine will copy the contents of @wqe to the next available entry on
87 * the @q. This function will then ring the Work Queue Doorbell to signal the
88 * HBA to start processing the Work Queue Entry. This function returns 0 if
89 * successful. If no entries are available on @q then this function will return
90 * -ENOMEM.
91 * The caller is expected to hold the hbalock when calling this routine.
92 **/
93static uint32_t
94lpfc_sli4_wq_put(struct lpfc_queue *q, union lpfc_wqe *wqe)
95{
2e90f4b5 96 union lpfc_wqe *temp_wqe;
4f774513
JS
97 struct lpfc_register doorbell;
98 uint32_t host_index;
027140ea 99 uint32_t idx;
4f774513 100
2e90f4b5
JS
101 /* sanity check on queue memory */
102 if (unlikely(!q))
103 return -ENOMEM;
104 temp_wqe = q->qe[q->host_index].wqe;
105
4f774513 106 /* If the host has not yet processed the next entry then we are done */
027140ea
JS
107 idx = ((q->host_index + 1) % q->entry_count);
108 if (idx == q->hba_index) {
b84daac9 109 q->WQ_overflow++;
4f774513 110 return -ENOMEM;
b84daac9
JS
111 }
112 q->WQ_posted++;
4f774513 113 /* set consumption flag every once in a while */
ff78d8f9 114 if (!((q->host_index + 1) % q->entry_repost))
f0d9bccc 115 bf_set(wqe_wqec, &wqe->generic.wqe_com, 1);
fedd3b7b
JS
116 if (q->phba->sli3_options & LPFC_SLI4_PHWQ_ENABLED)
117 bf_set(wqe_wqid, &wqe->generic.wqe_com, q->queue_id);
4f774513
JS
118 lpfc_sli_pcimem_bcopy(wqe, temp_wqe, q->entry_size);
119
120 /* Update the host index before invoking device */
121 host_index = q->host_index;
027140ea
JS
122
123 q->host_index = idx;
4f774513
JS
124
125 /* Ring Doorbell */
126 doorbell.word0 = 0;
962bc51b
JS
127 if (q->db_format == LPFC_DB_LIST_FORMAT) {
128 bf_set(lpfc_wq_db_list_fm_num_posted, &doorbell, 1);
129 bf_set(lpfc_wq_db_list_fm_index, &doorbell, host_index);
130 bf_set(lpfc_wq_db_list_fm_id, &doorbell, q->queue_id);
131 } else if (q->db_format == LPFC_DB_RING_FORMAT) {
132 bf_set(lpfc_wq_db_ring_fm_num_posted, &doorbell, 1);
133 bf_set(lpfc_wq_db_ring_fm_id, &doorbell, q->queue_id);
134 } else {
135 return -EINVAL;
136 }
137 writel(doorbell.word0, q->db_regaddr);
4f774513
JS
138
139 return 0;
140}
141
142/**
143 * lpfc_sli4_wq_release - Updates internal hba index for WQ
144 * @q: The Work Queue to operate on.
145 * @index: The index to advance the hba index to.
146 *
147 * This routine will update the HBA index of a queue to reflect consumption of
148 * Work Queue Entries by the HBA. When the HBA indicates that it has consumed
149 * an entry the host calls this function to update the queue's internal
150 * pointers. This routine returns the number of entries that were consumed by
151 * the HBA.
152 **/
153static uint32_t
154lpfc_sli4_wq_release(struct lpfc_queue *q, uint32_t index)
155{
156 uint32_t released = 0;
157
2e90f4b5
JS
158 /* sanity check on queue memory */
159 if (unlikely(!q))
160 return 0;
161
4f774513
JS
162 if (q->hba_index == index)
163 return 0;
164 do {
165 q->hba_index = ((q->hba_index + 1) % q->entry_count);
166 released++;
167 } while (q->hba_index != index);
168 return released;
169}
170
171/**
172 * lpfc_sli4_mq_put - Put a Mailbox Queue Entry on an Mailbox Queue
173 * @q: The Mailbox Queue to operate on.
174 * @wqe: The Mailbox Queue Entry to put on the Work queue.
175 *
176 * This routine will copy the contents of @mqe to the next available entry on
177 * the @q. This function will then ring the Work Queue Doorbell to signal the
178 * HBA to start processing the Work Queue Entry. This function returns 0 if
179 * successful. If no entries are available on @q then this function will return
180 * -ENOMEM.
181 * The caller is expected to hold the hbalock when calling this routine.
182 **/
183static uint32_t
184lpfc_sli4_mq_put(struct lpfc_queue *q, struct lpfc_mqe *mqe)
185{
2e90f4b5 186 struct lpfc_mqe *temp_mqe;
4f774513
JS
187 struct lpfc_register doorbell;
188 uint32_t host_index;
189
2e90f4b5
JS
190 /* sanity check on queue memory */
191 if (unlikely(!q))
192 return -ENOMEM;
193 temp_mqe = q->qe[q->host_index].mqe;
194
4f774513
JS
195 /* If the host has not yet processed the next entry then we are done */
196 if (((q->host_index + 1) % q->entry_count) == q->hba_index)
197 return -ENOMEM;
198 lpfc_sli_pcimem_bcopy(mqe, temp_mqe, q->entry_size);
199 /* Save off the mailbox pointer for completion */
200 q->phba->mbox = (MAILBOX_t *)temp_mqe;
201
202 /* Update the host index before invoking device */
203 host_index = q->host_index;
204 q->host_index = ((q->host_index + 1) % q->entry_count);
205
206 /* Ring Doorbell */
207 doorbell.word0 = 0;
208 bf_set(lpfc_mq_doorbell_num_posted, &doorbell, 1);
209 bf_set(lpfc_mq_doorbell_id, &doorbell, q->queue_id);
210 writel(doorbell.word0, q->phba->sli4_hba.MQDBregaddr);
4f774513
JS
211 return 0;
212}
213
214/**
215 * lpfc_sli4_mq_release - Updates internal hba index for MQ
216 * @q: The Mailbox Queue to operate on.
217 *
218 * This routine will update the HBA index of a queue to reflect consumption of
219 * a Mailbox Queue Entry by the HBA. When the HBA indicates that it has consumed
220 * an entry the host calls this function to update the queue's internal
221 * pointers. This routine returns the number of entries that were consumed by
222 * the HBA.
223 **/
224static uint32_t
225lpfc_sli4_mq_release(struct lpfc_queue *q)
226{
2e90f4b5
JS
227 /* sanity check on queue memory */
228 if (unlikely(!q))
229 return 0;
230
4f774513
JS
231 /* Clear the mailbox pointer for completion */
232 q->phba->mbox = NULL;
233 q->hba_index = ((q->hba_index + 1) % q->entry_count);
234 return 1;
235}
236
237/**
238 * lpfc_sli4_eq_get - Gets the next valid EQE from a EQ
239 * @q: The Event Queue to get the first valid EQE from
240 *
241 * This routine will get the first valid Event Queue Entry from @q, update
242 * the queue's internal hba index, and return the EQE. If no valid EQEs are in
243 * the Queue (no more work to do), or the Queue is full of EQEs that have been
244 * processed, but not popped back to the HBA then this routine will return NULL.
245 **/
246static struct lpfc_eqe *
247lpfc_sli4_eq_get(struct lpfc_queue *q)
248{
2e90f4b5 249 struct lpfc_eqe *eqe;
027140ea 250 uint32_t idx;
2e90f4b5
JS
251
252 /* sanity check on queue memory */
253 if (unlikely(!q))
254 return NULL;
255 eqe = q->qe[q->hba_index].eqe;
4f774513
JS
256
257 /* If the next EQE is not valid then we are done */
cb5172ea 258 if (!bf_get_le32(lpfc_eqe_valid, eqe))
4f774513
JS
259 return NULL;
260 /* If the host has not yet processed the next entry then we are done */
027140ea
JS
261 idx = ((q->hba_index + 1) % q->entry_count);
262 if (idx == q->host_index)
4f774513
JS
263 return NULL;
264
027140ea 265 q->hba_index = idx;
4f774513
JS
266 return eqe;
267}
268
ba20c853
JS
269/**
270 * lpfc_sli4_eq_clr_intr - Turn off interrupts from this EQ
271 * @q: The Event Queue to disable interrupts
272 *
273 **/
274static inline void
275lpfc_sli4_eq_clr_intr(struct lpfc_queue *q)
276{
277 struct lpfc_register doorbell;
278
279 doorbell.word0 = 0;
280 bf_set(lpfc_eqcq_doorbell_eqci, &doorbell, 1);
281 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_EVENT);
282 bf_set(lpfc_eqcq_doorbell_eqid_hi, &doorbell,
283 (q->queue_id >> LPFC_EQID_HI_FIELD_SHIFT));
284 bf_set(lpfc_eqcq_doorbell_eqid_lo, &doorbell, q->queue_id);
285 writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
286}
287
4f774513
JS
288/**
289 * lpfc_sli4_eq_release - Indicates the host has finished processing an EQ
290 * @q: The Event Queue that the host has completed processing for.
291 * @arm: Indicates whether the host wants to arms this CQ.
292 *
293 * This routine will mark all Event Queue Entries on @q, from the last
294 * known completed entry to the last entry that was processed, as completed
295 * by clearing the valid bit for each completion queue entry. Then it will
296 * notify the HBA, by ringing the doorbell, that the EQEs have been processed.
297 * The internal host index in the @q will be updated by this routine to indicate
298 * that the host has finished processing the entries. The @arm parameter
299 * indicates that the queue should be rearmed when ringing the doorbell.
300 *
301 * This function will return the number of EQEs that were popped.
302 **/
303uint32_t
304lpfc_sli4_eq_release(struct lpfc_queue *q, bool arm)
305{
306 uint32_t released = 0;
307 struct lpfc_eqe *temp_eqe;
308 struct lpfc_register doorbell;
309
2e90f4b5
JS
310 /* sanity check on queue memory */
311 if (unlikely(!q))
312 return 0;
313
4f774513
JS
314 /* while there are valid entries */
315 while (q->hba_index != q->host_index) {
316 temp_eqe = q->qe[q->host_index].eqe;
cb5172ea 317 bf_set_le32(lpfc_eqe_valid, temp_eqe, 0);
4f774513
JS
318 released++;
319 q->host_index = ((q->host_index + 1) % q->entry_count);
320 }
321 if (unlikely(released == 0 && !arm))
322 return 0;
323
324 /* ring doorbell for number popped */
325 doorbell.word0 = 0;
326 if (arm) {
327 bf_set(lpfc_eqcq_doorbell_arm, &doorbell, 1);
328 bf_set(lpfc_eqcq_doorbell_eqci, &doorbell, 1);
329 }
330 bf_set(lpfc_eqcq_doorbell_num_released, &doorbell, released);
331 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_EVENT);
6b5151fd
JS
332 bf_set(lpfc_eqcq_doorbell_eqid_hi, &doorbell,
333 (q->queue_id >> LPFC_EQID_HI_FIELD_SHIFT));
334 bf_set(lpfc_eqcq_doorbell_eqid_lo, &doorbell, q->queue_id);
4f774513 335 writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
a747c9ce
JS
336 /* PCI read to flush PCI pipeline on re-arming for INTx mode */
337 if ((q->phba->intr_type == INTx) && (arm == LPFC_QUEUE_REARM))
338 readl(q->phba->sli4_hba.EQCQDBregaddr);
4f774513
JS
339 return released;
340}
341
342/**
343 * lpfc_sli4_cq_get - Gets the next valid CQE from a CQ
344 * @q: The Completion Queue to get the first valid CQE from
345 *
346 * This routine will get the first valid Completion Queue Entry from @q, update
347 * the queue's internal hba index, and return the CQE. If no valid CQEs are in
348 * the Queue (no more work to do), or the Queue is full of CQEs that have been
349 * processed, but not popped back to the HBA then this routine will return NULL.
350 **/
351static struct lpfc_cqe *
352lpfc_sli4_cq_get(struct lpfc_queue *q)
353{
354 struct lpfc_cqe *cqe;
027140ea 355 uint32_t idx;
4f774513 356
2e90f4b5
JS
357 /* sanity check on queue memory */
358 if (unlikely(!q))
359 return NULL;
360
4f774513 361 /* If the next CQE is not valid then we are done */
cb5172ea 362 if (!bf_get_le32(lpfc_cqe_valid, q->qe[q->hba_index].cqe))
4f774513
JS
363 return NULL;
364 /* If the host has not yet processed the next entry then we are done */
027140ea
JS
365 idx = ((q->hba_index + 1) % q->entry_count);
366 if (idx == q->host_index)
4f774513
JS
367 return NULL;
368
369 cqe = q->qe[q->hba_index].cqe;
027140ea 370 q->hba_index = idx;
4f774513
JS
371 return cqe;
372}
373
374/**
375 * lpfc_sli4_cq_release - Indicates the host has finished processing a CQ
376 * @q: The Completion Queue that the host has completed processing for.
377 * @arm: Indicates whether the host wants to arms this CQ.
378 *
379 * This routine will mark all Completion queue entries on @q, from the last
380 * known completed entry to the last entry that was processed, as completed
381 * by clearing the valid bit for each completion queue entry. Then it will
382 * notify the HBA, by ringing the doorbell, that the CQEs have been processed.
383 * The internal host index in the @q will be updated by this routine to indicate
384 * that the host has finished processing the entries. The @arm parameter
385 * indicates that the queue should be rearmed when ringing the doorbell.
386 *
387 * This function will return the number of CQEs that were released.
388 **/
389uint32_t
390lpfc_sli4_cq_release(struct lpfc_queue *q, bool arm)
391{
392 uint32_t released = 0;
393 struct lpfc_cqe *temp_qe;
394 struct lpfc_register doorbell;
395
2e90f4b5
JS
396 /* sanity check on queue memory */
397 if (unlikely(!q))
398 return 0;
4f774513
JS
399 /* while there are valid entries */
400 while (q->hba_index != q->host_index) {
401 temp_qe = q->qe[q->host_index].cqe;
cb5172ea 402 bf_set_le32(lpfc_cqe_valid, temp_qe, 0);
4f774513
JS
403 released++;
404 q->host_index = ((q->host_index + 1) % q->entry_count);
405 }
406 if (unlikely(released == 0 && !arm))
407 return 0;
408
409 /* ring doorbell for number popped */
410 doorbell.word0 = 0;
411 if (arm)
412 bf_set(lpfc_eqcq_doorbell_arm, &doorbell, 1);
413 bf_set(lpfc_eqcq_doorbell_num_released, &doorbell, released);
414 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_COMPLETION);
6b5151fd
JS
415 bf_set(lpfc_eqcq_doorbell_cqid_hi, &doorbell,
416 (q->queue_id >> LPFC_CQID_HI_FIELD_SHIFT));
417 bf_set(lpfc_eqcq_doorbell_cqid_lo, &doorbell, q->queue_id);
4f774513
JS
418 writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
419 return released;
420}
421
422/**
423 * lpfc_sli4_rq_put - Put a Receive Buffer Queue Entry on a Receive Queue
424 * @q: The Header Receive Queue to operate on.
425 * @wqe: The Receive Queue Entry to put on the Receive queue.
426 *
427 * This routine will copy the contents of @wqe to the next available entry on
428 * the @q. This function will then ring the Receive Queue Doorbell to signal the
429 * HBA to start processing the Receive Queue Entry. This function returns the
430 * index that the rqe was copied to if successful. If no entries are available
431 * on @q then this function will return -ENOMEM.
432 * The caller is expected to hold the hbalock when calling this routine.
433 **/
434static int
435lpfc_sli4_rq_put(struct lpfc_queue *hq, struct lpfc_queue *dq,
436 struct lpfc_rqe *hrqe, struct lpfc_rqe *drqe)
437{
2e90f4b5
JS
438 struct lpfc_rqe *temp_hrqe;
439 struct lpfc_rqe *temp_drqe;
4f774513 440 struct lpfc_register doorbell;
5a25bf36 441 int put_index;
4f774513 442
2e90f4b5
JS
443 /* sanity check on queue memory */
444 if (unlikely(!hq) || unlikely(!dq))
445 return -ENOMEM;
5a25bf36 446 put_index = hq->host_index;
2e90f4b5
JS
447 temp_hrqe = hq->qe[hq->host_index].rqe;
448 temp_drqe = dq->qe[dq->host_index].rqe;
449
4f774513
JS
450 if (hq->type != LPFC_HRQ || dq->type != LPFC_DRQ)
451 return -EINVAL;
452 if (hq->host_index != dq->host_index)
453 return -EINVAL;
454 /* If the host has not yet processed the next entry then we are done */
455 if (((hq->host_index + 1) % hq->entry_count) == hq->hba_index)
456 return -EBUSY;
457 lpfc_sli_pcimem_bcopy(hrqe, temp_hrqe, hq->entry_size);
458 lpfc_sli_pcimem_bcopy(drqe, temp_drqe, dq->entry_size);
459
460 /* Update the host index to point to the next slot */
461 hq->host_index = ((hq->host_index + 1) % hq->entry_count);
462 dq->host_index = ((dq->host_index + 1) % dq->entry_count);
463
464 /* Ring The Header Receive Queue Doorbell */
73d91e50 465 if (!(hq->host_index % hq->entry_repost)) {
4f774513 466 doorbell.word0 = 0;
962bc51b
JS
467 if (hq->db_format == LPFC_DB_RING_FORMAT) {
468 bf_set(lpfc_rq_db_ring_fm_num_posted, &doorbell,
469 hq->entry_repost);
470 bf_set(lpfc_rq_db_ring_fm_id, &doorbell, hq->queue_id);
471 } else if (hq->db_format == LPFC_DB_LIST_FORMAT) {
472 bf_set(lpfc_rq_db_list_fm_num_posted, &doorbell,
473 hq->entry_repost);
474 bf_set(lpfc_rq_db_list_fm_index, &doorbell,
475 hq->host_index);
476 bf_set(lpfc_rq_db_list_fm_id, &doorbell, hq->queue_id);
477 } else {
478 return -EINVAL;
479 }
480 writel(doorbell.word0, hq->db_regaddr);
4f774513
JS
481 }
482 return put_index;
483}
484
485/**
486 * lpfc_sli4_rq_release - Updates internal hba index for RQ
487 * @q: The Header Receive Queue to operate on.
488 *
489 * This routine will update the HBA index of a queue to reflect consumption of
490 * one Receive Queue Entry by the HBA. When the HBA indicates that it has
491 * consumed an entry the host calls this function to update the queue's
492 * internal pointers. This routine returns the number of entries that were
493 * consumed by the HBA.
494 **/
495static uint32_t
496lpfc_sli4_rq_release(struct lpfc_queue *hq, struct lpfc_queue *dq)
497{
2e90f4b5
JS
498 /* sanity check on queue memory */
499 if (unlikely(!hq) || unlikely(!dq))
500 return 0;
501
4f774513
JS
502 if ((hq->type != LPFC_HRQ) || (dq->type != LPFC_DRQ))
503 return 0;
504 hq->hba_index = ((hq->hba_index + 1) % hq->entry_count);
505 dq->hba_index = ((dq->hba_index + 1) % dq->entry_count);
506 return 1;
507}
508
e59058c4 509/**
3621a710 510 * lpfc_cmd_iocb - Get next command iocb entry in the ring
e59058c4
JS
511 * @phba: Pointer to HBA context object.
512 * @pring: Pointer to driver SLI ring object.
513 *
514 * This function returns pointer to next command iocb entry
515 * in the command ring. The caller must hold hbalock to prevent
516 * other threads consume the next command iocb.
517 * SLI-2/SLI-3 provide different sized iocbs.
518 **/
ed957684
JS
519static inline IOCB_t *
520lpfc_cmd_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
521{
7e56aa25
JS
522 return (IOCB_t *) (((char *) pring->sli.sli3.cmdringaddr) +
523 pring->sli.sli3.cmdidx * phba->iocb_cmd_size);
ed957684
JS
524}
525
e59058c4 526/**
3621a710 527 * lpfc_resp_iocb - Get next response iocb entry in the ring
e59058c4
JS
528 * @phba: Pointer to HBA context object.
529 * @pring: Pointer to driver SLI ring object.
530 *
531 * This function returns pointer to next response iocb entry
532 * in the response ring. The caller must hold hbalock to make sure
533 * that no other thread consume the next response iocb.
534 * SLI-2/SLI-3 provide different sized iocbs.
535 **/
ed957684
JS
536static inline IOCB_t *
537lpfc_resp_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
538{
7e56aa25
JS
539 return (IOCB_t *) (((char *) pring->sli.sli3.rspringaddr) +
540 pring->sli.sli3.rspidx * phba->iocb_rsp_size);
ed957684
JS
541}
542
e59058c4 543/**
3621a710 544 * __lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
e59058c4
JS
545 * @phba: Pointer to HBA context object.
546 *
547 * This function is called with hbalock held. This function
548 * allocates a new driver iocb object from the iocb pool. If the
549 * allocation is successful, it returns pointer to the newly
550 * allocated iocb object else it returns NULL.
551 **/
4f2e66c6 552struct lpfc_iocbq *
2e0fef85 553__lpfc_sli_get_iocbq(struct lpfc_hba *phba)
0bd4ca25
JSEC
554{
555 struct list_head *lpfc_iocb_list = &phba->lpfc_iocb_list;
556 struct lpfc_iocbq * iocbq = NULL;
557
558 list_remove_head(lpfc_iocb_list, iocbq, struct lpfc_iocbq, list);
2a9bf3d0
JS
559 if (iocbq)
560 phba->iocb_cnt++;
561 if (phba->iocb_cnt > phba->iocb_max)
562 phba->iocb_max = phba->iocb_cnt;
0bd4ca25
JSEC
563 return iocbq;
564}
565
da0436e9
JS
566/**
567 * __lpfc_clear_active_sglq - Remove the active sglq for this XRI.
568 * @phba: Pointer to HBA context object.
569 * @xritag: XRI value.
570 *
571 * This function clears the sglq pointer from the array of acive
572 * sglq's. The xritag that is passed in is used to index into the
573 * array. Before the xritag can be used it needs to be adjusted
574 * by subtracting the xribase.
575 *
576 * Returns sglq ponter = success, NULL = Failure.
577 **/
578static struct lpfc_sglq *
579__lpfc_clear_active_sglq(struct lpfc_hba *phba, uint16_t xritag)
580{
da0436e9 581 struct lpfc_sglq *sglq;
6d368e53
JS
582
583 sglq = phba->sli4_hba.lpfc_sglq_active_list[xritag];
584 phba->sli4_hba.lpfc_sglq_active_list[xritag] = NULL;
da0436e9
JS
585 return sglq;
586}
587
588/**
589 * __lpfc_get_active_sglq - Get the active sglq for this XRI.
590 * @phba: Pointer to HBA context object.
591 * @xritag: XRI value.
592 *
593 * This function returns the sglq pointer from the array of acive
594 * sglq's. The xritag that is passed in is used to index into the
595 * array. Before the xritag can be used it needs to be adjusted
596 * by subtracting the xribase.
597 *
598 * Returns sglq ponter = success, NULL = Failure.
599 **/
0f65ff68 600struct lpfc_sglq *
da0436e9
JS
601__lpfc_get_active_sglq(struct lpfc_hba *phba, uint16_t xritag)
602{
da0436e9 603 struct lpfc_sglq *sglq;
6d368e53
JS
604
605 sglq = phba->sli4_hba.lpfc_sglq_active_list[xritag];
da0436e9
JS
606 return sglq;
607}
608
19ca7609 609/**
1151e3ec 610 * lpfc_clr_rrq_active - Clears RRQ active bit in xri_bitmap.
19ca7609
JS
611 * @phba: Pointer to HBA context object.
612 * @xritag: xri used in this exchange.
613 * @rrq: The RRQ to be cleared.
614 *
19ca7609 615 **/
1151e3ec
JS
616void
617lpfc_clr_rrq_active(struct lpfc_hba *phba,
618 uint16_t xritag,
619 struct lpfc_node_rrq *rrq)
19ca7609 620{
1151e3ec 621 struct lpfc_nodelist *ndlp = NULL;
19ca7609 622
1151e3ec
JS
623 if ((rrq->vport) && NLP_CHK_NODE_ACT(rrq->ndlp))
624 ndlp = lpfc_findnode_did(rrq->vport, rrq->nlp_DID);
19ca7609
JS
625
626 /* The target DID could have been swapped (cable swap)
627 * we should use the ndlp from the findnode if it is
628 * available.
629 */
1151e3ec 630 if ((!ndlp) && rrq->ndlp)
19ca7609
JS
631 ndlp = rrq->ndlp;
632
1151e3ec
JS
633 if (!ndlp)
634 goto out;
635
6d368e53 636 if (test_and_clear_bit(xritag, ndlp->active_rrqs.xri_bitmap)) {
19ca7609
JS
637 rrq->send_rrq = 0;
638 rrq->xritag = 0;
639 rrq->rrq_stop_time = 0;
640 }
1151e3ec 641out:
19ca7609
JS
642 mempool_free(rrq, phba->rrq_pool);
643}
644
645/**
646 * lpfc_handle_rrq_active - Checks if RRQ has waithed RATOV.
647 * @phba: Pointer to HBA context object.
648 *
649 * This function is called with hbalock held. This function
650 * Checks if stop_time (ratov from setting rrq active) has
651 * been reached, if it has and the send_rrq flag is set then
652 * it will call lpfc_send_rrq. If the send_rrq flag is not set
653 * then it will just call the routine to clear the rrq and
654 * free the rrq resource.
655 * The timer is set to the next rrq that is going to expire before
656 * leaving the routine.
657 *
658 **/
659void
660lpfc_handle_rrq_active(struct lpfc_hba *phba)
661{
662 struct lpfc_node_rrq *rrq;
663 struct lpfc_node_rrq *nextrrq;
664 unsigned long next_time;
665 unsigned long iflags;
1151e3ec 666 LIST_HEAD(send_rrq);
19ca7609
JS
667
668 spin_lock_irqsave(&phba->hbalock, iflags);
669 phba->hba_flag &= ~HBA_RRQ_ACTIVE;
256ec0d0 670 next_time = jiffies + msecs_to_jiffies(1000 * (phba->fc_ratov + 1));
19ca7609 671 list_for_each_entry_safe(rrq, nextrrq,
1151e3ec
JS
672 &phba->active_rrq_list, list) {
673 if (time_after(jiffies, rrq->rrq_stop_time))
674 list_move(&rrq->list, &send_rrq);
675 else if (time_before(rrq->rrq_stop_time, next_time))
19ca7609
JS
676 next_time = rrq->rrq_stop_time;
677 }
678 spin_unlock_irqrestore(&phba->hbalock, iflags);
679 if (!list_empty(&phba->active_rrq_list))
680 mod_timer(&phba->rrq_tmr, next_time);
1151e3ec
JS
681 list_for_each_entry_safe(rrq, nextrrq, &send_rrq, list) {
682 list_del(&rrq->list);
683 if (!rrq->send_rrq)
684 /* this call will free the rrq */
685 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
686 else if (lpfc_send_rrq(phba, rrq)) {
687 /* if we send the rrq then the completion handler
688 * will clear the bit in the xribitmap.
689 */
690 lpfc_clr_rrq_active(phba, rrq->xritag,
691 rrq);
692 }
693 }
19ca7609
JS
694}
695
696/**
697 * lpfc_get_active_rrq - Get the active RRQ for this exchange.
698 * @vport: Pointer to vport context object.
699 * @xri: The xri used in the exchange.
700 * @did: The targets DID for this exchange.
701 *
702 * returns NULL = rrq not found in the phba->active_rrq_list.
703 * rrq = rrq for this xri and target.
704 **/
705struct lpfc_node_rrq *
706lpfc_get_active_rrq(struct lpfc_vport *vport, uint16_t xri, uint32_t did)
707{
708 struct lpfc_hba *phba = vport->phba;
709 struct lpfc_node_rrq *rrq;
710 struct lpfc_node_rrq *nextrrq;
711 unsigned long iflags;
712
713 if (phba->sli_rev != LPFC_SLI_REV4)
714 return NULL;
715 spin_lock_irqsave(&phba->hbalock, iflags);
716 list_for_each_entry_safe(rrq, nextrrq, &phba->active_rrq_list, list) {
717 if (rrq->vport == vport && rrq->xritag == xri &&
718 rrq->nlp_DID == did){
719 list_del(&rrq->list);
720 spin_unlock_irqrestore(&phba->hbalock, iflags);
721 return rrq;
722 }
723 }
724 spin_unlock_irqrestore(&phba->hbalock, iflags);
725 return NULL;
726}
727
728/**
729 * lpfc_cleanup_vports_rrqs - Remove and clear the active RRQ for this vport.
730 * @vport: Pointer to vport context object.
1151e3ec
JS
731 * @ndlp: Pointer to the lpfc_node_list structure.
732 * If ndlp is NULL Remove all active RRQs for this vport from the
733 * phba->active_rrq_list and clear the rrq.
734 * If ndlp is not NULL then only remove rrqs for this vport & this ndlp.
19ca7609
JS
735 **/
736void
1151e3ec 737lpfc_cleanup_vports_rrqs(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
19ca7609
JS
738
739{
740 struct lpfc_hba *phba = vport->phba;
741 struct lpfc_node_rrq *rrq;
742 struct lpfc_node_rrq *nextrrq;
743 unsigned long iflags;
1151e3ec 744 LIST_HEAD(rrq_list);
19ca7609
JS
745
746 if (phba->sli_rev != LPFC_SLI_REV4)
747 return;
1151e3ec
JS
748 if (!ndlp) {
749 lpfc_sli4_vport_delete_els_xri_aborted(vport);
750 lpfc_sli4_vport_delete_fcp_xri_aborted(vport);
19ca7609 751 }
1151e3ec
JS
752 spin_lock_irqsave(&phba->hbalock, iflags);
753 list_for_each_entry_safe(rrq, nextrrq, &phba->active_rrq_list, list)
754 if ((rrq->vport == vport) && (!ndlp || rrq->ndlp == ndlp))
755 list_move(&rrq->list, &rrq_list);
19ca7609 756 spin_unlock_irqrestore(&phba->hbalock, iflags);
1151e3ec
JS
757
758 list_for_each_entry_safe(rrq, nextrrq, &rrq_list, list) {
759 list_del(&rrq->list);
760 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
761 }
19ca7609
JS
762}
763
764/**
765 * lpfc_cleanup_wt_rrqs - Remove all rrq's from the active list.
766 * @phba: Pointer to HBA context object.
767 *
768 * Remove all rrqs from the phba->active_rrq_list and free them by
769 * calling __lpfc_clr_active_rrq
770 *
771 **/
772void
773lpfc_cleanup_wt_rrqs(struct lpfc_hba *phba)
774{
775 struct lpfc_node_rrq *rrq;
776 struct lpfc_node_rrq *nextrrq;
777 unsigned long next_time;
778 unsigned long iflags;
1151e3ec 779 LIST_HEAD(rrq_list);
19ca7609
JS
780
781 if (phba->sli_rev != LPFC_SLI_REV4)
782 return;
783 spin_lock_irqsave(&phba->hbalock, iflags);
784 phba->hba_flag &= ~HBA_RRQ_ACTIVE;
256ec0d0 785 next_time = jiffies + msecs_to_jiffies(1000 * (phba->fc_ratov * 2));
1151e3ec
JS
786 list_splice_init(&phba->active_rrq_list, &rrq_list);
787 spin_unlock_irqrestore(&phba->hbalock, iflags);
788
789 list_for_each_entry_safe(rrq, nextrrq, &rrq_list, list) {
19ca7609 790 list_del(&rrq->list);
1151e3ec 791 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
19ca7609 792 }
19ca7609
JS
793 if (!list_empty(&phba->active_rrq_list))
794 mod_timer(&phba->rrq_tmr, next_time);
795}
796
797
798/**
1151e3ec 799 * lpfc_test_rrq_active - Test RRQ bit in xri_bitmap.
19ca7609
JS
800 * @phba: Pointer to HBA context object.
801 * @ndlp: Targets nodelist pointer for this exchange.
802 * @xritag the xri in the bitmap to test.
803 *
804 * This function is called with hbalock held. This function
805 * returns 0 = rrq not active for this xri
806 * 1 = rrq is valid for this xri.
807 **/
1151e3ec
JS
808int
809lpfc_test_rrq_active(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp,
19ca7609
JS
810 uint16_t xritag)
811{
19ca7609
JS
812 if (!ndlp)
813 return 0;
6d368e53 814 if (test_bit(xritag, ndlp->active_rrqs.xri_bitmap))
19ca7609
JS
815 return 1;
816 else
817 return 0;
818}
819
820/**
821 * lpfc_set_rrq_active - set RRQ active bit in xri_bitmap.
822 * @phba: Pointer to HBA context object.
823 * @ndlp: nodelist pointer for this target.
824 * @xritag: xri used in this exchange.
825 * @rxid: Remote Exchange ID.
826 * @send_rrq: Flag used to determine if we should send rrq els cmd.
827 *
828 * This function takes the hbalock.
829 * The active bit is always set in the active rrq xri_bitmap even
830 * if there is no slot avaiable for the other rrq information.
831 *
832 * returns 0 rrq actived for this xri
833 * < 0 No memory or invalid ndlp.
834 **/
835int
836lpfc_set_rrq_active(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp,
b42c07c8 837 uint16_t xritag, uint16_t rxid, uint16_t send_rrq)
19ca7609 838{
19ca7609 839 unsigned long iflags;
b42c07c8
JS
840 struct lpfc_node_rrq *rrq;
841 int empty;
842
843 if (!ndlp)
844 return -EINVAL;
845
846 if (!phba->cfg_enable_rrq)
847 return -EINVAL;
19ca7609
JS
848
849 spin_lock_irqsave(&phba->hbalock, iflags);
b42c07c8
JS
850 if (phba->pport->load_flag & FC_UNLOADING) {
851 phba->hba_flag &= ~HBA_RRQ_ACTIVE;
852 goto out;
853 }
854
855 /*
856 * set the active bit even if there is no mem available.
857 */
858 if (NLP_CHK_FREE_REQ(ndlp))
859 goto out;
860
861 if (ndlp->vport && (ndlp->vport->load_flag & FC_UNLOADING))
862 goto out;
863
864 if (test_and_set_bit(xritag, ndlp->active_rrqs.xri_bitmap))
865 goto out;
866
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
JS
908 *
909 * This function is called with hbalock 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
924 if (piocbq->iocb_flag & LPFC_IO_FCP) {
925 lpfc_cmd = (struct lpfc_scsi_buf *) piocbq->context1;
926 ndlp = lpfc_cmd->rdata->pnode;
be858b65
JS
927 } else if ((piocbq->iocb.ulpCommand == CMD_GEN_REQUEST64_CR) &&
928 !(piocbq->iocb_flag & LPFC_IO_LIBDFC))
19ca7609 929 ndlp = piocbq->context_un.ndlp;
d5ce53b7 930 else if (piocbq->iocb_flag & LPFC_IO_LIBDFC)
93d1379e 931 ndlp = piocbq->context_un.ndlp;
19ca7609
JS
932 else
933 ndlp = piocbq->context1;
934
da0436e9 935 list_remove_head(lpfc_sgl_list, sglq, struct lpfc_sglq, list);
19ca7609
JS
936 start_sglq = sglq;
937 while (!found) {
938 if (!sglq)
939 return NULL;
ee0f4fe1 940 if (lpfc_test_rrq_active(phba, ndlp, sglq->sli4_lxritag)) {
19ca7609
JS
941 /* This xri has an rrq outstanding for this DID.
942 * put it back in the list and get another xri.
943 */
944 list_add_tail(&sglq->list, lpfc_sgl_list);
945 sglq = NULL;
946 list_remove_head(lpfc_sgl_list, sglq,
947 struct lpfc_sglq, list);
948 if (sglq == start_sglq) {
949 sglq = NULL;
950 break;
951 } else
952 continue;
953 }
954 sglq->ndlp = ndlp;
955 found = 1;
6d368e53 956 phba->sli4_hba.lpfc_sglq_active_list[sglq->sli4_lxritag] = sglq;
19ca7609
JS
957 sglq->state = SGL_ALLOCATED;
958 }
da0436e9
JS
959 return sglq;
960}
961
e59058c4 962/**
3621a710 963 * lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
e59058c4
JS
964 * @phba: Pointer to HBA context object.
965 *
966 * This function is called with no lock held. This function
967 * allocates a new driver iocb object from the iocb pool. If the
968 * allocation is successful, it returns pointer to the newly
969 * allocated iocb object else it returns NULL.
970 **/
2e0fef85
JS
971struct lpfc_iocbq *
972lpfc_sli_get_iocbq(struct lpfc_hba *phba)
973{
974 struct lpfc_iocbq * iocbq = NULL;
975 unsigned long iflags;
976
977 spin_lock_irqsave(&phba->hbalock, iflags);
978 iocbq = __lpfc_sli_get_iocbq(phba);
979 spin_unlock_irqrestore(&phba->hbalock, iflags);
980 return iocbq;
981}
982
4f774513
JS
983/**
984 * __lpfc_sli_release_iocbq_s4 - Release iocb to the iocb pool
985 * @phba: Pointer to HBA context object.
986 * @iocbq: Pointer to driver iocb object.
987 *
988 * This function is called with hbalock held to release driver
989 * iocb object to the iocb pool. The iotag in the iocb object
990 * does not change for each use of the iocb object. This function
991 * clears all other fields of the iocb object when it is freed.
992 * The sqlq structure that holds the xritag and phys and virtual
993 * mappings for the scatter gather list is retrieved from the
994 * active array of sglq. The get of the sglq pointer also clears
995 * the entry in the array. If the status of the IO indiactes that
996 * this IO was aborted then the sglq entry it put on the
997 * lpfc_abts_els_sgl_list until the CQ_ABORTED_XRI is received. If the
998 * IO has good status or fails for any other reason then the sglq
999 * entry is added to the free list (lpfc_sgl_list).
1000 **/
1001static void
1002__lpfc_sli_release_iocbq_s4(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1003{
1004 struct lpfc_sglq *sglq;
1005 size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
2a9bf3d0
JS
1006 unsigned long iflag = 0;
1007 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
4f774513
JS
1008
1009 if (iocbq->sli4_xritag == NO_XRI)
1010 sglq = NULL;
1011 else
6d368e53
JS
1012 sglq = __lpfc_clear_active_sglq(phba, iocbq->sli4_lxritag);
1013
0e9bb8d7 1014
4f774513 1015 if (sglq) {
0f65ff68
JS
1016 if ((iocbq->iocb_flag & LPFC_EXCHANGE_BUSY) &&
1017 (sglq->state != SGL_XRI_ABORTED)) {
4f774513
JS
1018 spin_lock_irqsave(&phba->sli4_hba.abts_sgl_list_lock,
1019 iflag);
1020 list_add(&sglq->list,
1021 &phba->sli4_hba.lpfc_abts_els_sgl_list);
1022 spin_unlock_irqrestore(
1023 &phba->sli4_hba.abts_sgl_list_lock, iflag);
0f65ff68
JS
1024 } else {
1025 sglq->state = SGL_FREED;
19ca7609 1026 sglq->ndlp = NULL;
fedd3b7b
JS
1027 list_add_tail(&sglq->list,
1028 &phba->sli4_hba.lpfc_sgl_list);
2a9bf3d0
JS
1029
1030 /* Check if TXQ queue needs to be serviced */
0e9bb8d7 1031 if (!list_empty(&pring->txq))
2a9bf3d0 1032 lpfc_worker_wake_up(phba);
0f65ff68 1033 }
4f774513
JS
1034 }
1035
1036
1037 /*
1038 * Clean all volatile data fields, preserve iotag and node struct.
1039 */
1040 memset((char *)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
6d368e53 1041 iocbq->sli4_lxritag = NO_XRI;
4f774513
JS
1042 iocbq->sli4_xritag = NO_XRI;
1043 list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
1044}
1045
2a9bf3d0 1046
e59058c4 1047/**
3772a991 1048 * __lpfc_sli_release_iocbq_s3 - Release iocb to the iocb pool
e59058c4
JS
1049 * @phba: Pointer to HBA context object.
1050 * @iocbq: Pointer to driver iocb object.
1051 *
1052 * This function is called with hbalock held to release driver
1053 * iocb object to the iocb pool. The iotag in the iocb object
1054 * does not change for each use of the iocb object. This function
1055 * clears all other fields of the iocb object when it is freed.
1056 **/
a6ababd2 1057static void
3772a991 1058__lpfc_sli_release_iocbq_s3(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
604a3e30 1059{
2e0fef85 1060 size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
604a3e30 1061
0e9bb8d7 1062
604a3e30
JB
1063 /*
1064 * Clean all volatile data fields, preserve iotag and node struct.
1065 */
1066 memset((char*)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
3772a991 1067 iocbq->sli4_xritag = NO_XRI;
604a3e30
JB
1068 list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
1069}
1070
3772a991
JS
1071/**
1072 * __lpfc_sli_release_iocbq - Release iocb to the iocb pool
1073 * @phba: Pointer to HBA context object.
1074 * @iocbq: Pointer to driver iocb object.
1075 *
1076 * This function is called with hbalock held to release driver
1077 * iocb object to the iocb pool. The iotag in the iocb object
1078 * does not change for each use of the iocb object. This function
1079 * clears all other fields of the iocb object when it is freed.
1080 **/
1081static void
1082__lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1083{
1084 phba->__lpfc_sli_release_iocbq(phba, iocbq);
2a9bf3d0 1085 phba->iocb_cnt--;
3772a991
JS
1086}
1087
e59058c4 1088/**
3621a710 1089 * lpfc_sli_release_iocbq - Release iocb to the iocb pool
e59058c4
JS
1090 * @phba: Pointer to HBA context object.
1091 * @iocbq: Pointer to driver iocb object.
1092 *
1093 * This function is called with no lock held to release the iocb to
1094 * iocb pool.
1095 **/
2e0fef85
JS
1096void
1097lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1098{
1099 unsigned long iflags;
1100
1101 /*
1102 * Clean all volatile data fields, preserve iotag and node struct.
1103 */
1104 spin_lock_irqsave(&phba->hbalock, iflags);
1105 __lpfc_sli_release_iocbq(phba, iocbq);
1106 spin_unlock_irqrestore(&phba->hbalock, iflags);
1107}
1108
a257bf90
JS
1109/**
1110 * lpfc_sli_cancel_iocbs - Cancel all iocbs from a list.
1111 * @phba: Pointer to HBA context object.
1112 * @iocblist: List of IOCBs.
1113 * @ulpstatus: ULP status in IOCB command field.
1114 * @ulpWord4: ULP word-4 in IOCB command field.
1115 *
1116 * This function is called with a list of IOCBs to cancel. It cancels the IOCB
1117 * on the list by invoking the complete callback function associated with the
1118 * IOCB with the provided @ulpstatus and @ulpword4 set to the IOCB commond
1119 * fields.
1120 **/
1121void
1122lpfc_sli_cancel_iocbs(struct lpfc_hba *phba, struct list_head *iocblist,
1123 uint32_t ulpstatus, uint32_t ulpWord4)
1124{
1125 struct lpfc_iocbq *piocb;
1126
1127 while (!list_empty(iocblist)) {
1128 list_remove_head(iocblist, piocb, struct lpfc_iocbq, list);
a257bf90
JS
1129 if (!piocb->iocb_cmpl)
1130 lpfc_sli_release_iocbq(phba, piocb);
1131 else {
1132 piocb->iocb.ulpStatus = ulpstatus;
1133 piocb->iocb.un.ulpWord[4] = ulpWord4;
1134 (piocb->iocb_cmpl) (phba, piocb, piocb);
1135 }
1136 }
1137 return;
1138}
1139
e59058c4 1140/**
3621a710
JS
1141 * lpfc_sli_iocb_cmd_type - Get the iocb type
1142 * @iocb_cmnd: iocb command code.
e59058c4
JS
1143 *
1144 * This function is called by ring event handler function to get the iocb type.
1145 * This function translates the iocb command to an iocb command type used to
1146 * decide the final disposition of each completed IOCB.
1147 * The function returns
1148 * LPFC_UNKNOWN_IOCB if it is an unsupported iocb
1149 * LPFC_SOL_IOCB if it is a solicited iocb completion
1150 * LPFC_ABORT_IOCB if it is an abort iocb
1151 * LPFC_UNSOL_IOCB if it is an unsolicited iocb
1152 *
1153 * The caller is not required to hold any lock.
1154 **/
dea3101e 1155static lpfc_iocb_type
1156lpfc_sli_iocb_cmd_type(uint8_t iocb_cmnd)
1157{
1158 lpfc_iocb_type type = LPFC_UNKNOWN_IOCB;
1159
1160 if (iocb_cmnd > CMD_MAX_IOCB_CMD)
1161 return 0;
1162
1163 switch (iocb_cmnd) {
1164 case CMD_XMIT_SEQUENCE_CR:
1165 case CMD_XMIT_SEQUENCE_CX:
1166 case CMD_XMIT_BCAST_CN:
1167 case CMD_XMIT_BCAST_CX:
1168 case CMD_ELS_REQUEST_CR:
1169 case CMD_ELS_REQUEST_CX:
1170 case CMD_CREATE_XRI_CR:
1171 case CMD_CREATE_XRI_CX:
1172 case CMD_GET_RPI_CN:
1173 case CMD_XMIT_ELS_RSP_CX:
1174 case CMD_GET_RPI_CR:
1175 case CMD_FCP_IWRITE_CR:
1176 case CMD_FCP_IWRITE_CX:
1177 case CMD_FCP_IREAD_CR:
1178 case CMD_FCP_IREAD_CX:
1179 case CMD_FCP_ICMND_CR:
1180 case CMD_FCP_ICMND_CX:
f5603511
JS
1181 case CMD_FCP_TSEND_CX:
1182 case CMD_FCP_TRSP_CX:
1183 case CMD_FCP_TRECEIVE_CX:
1184 case CMD_FCP_AUTO_TRSP_CX:
dea3101e 1185 case CMD_ADAPTER_MSG:
1186 case CMD_ADAPTER_DUMP:
1187 case CMD_XMIT_SEQUENCE64_CR:
1188 case CMD_XMIT_SEQUENCE64_CX:
1189 case CMD_XMIT_BCAST64_CN:
1190 case CMD_XMIT_BCAST64_CX:
1191 case CMD_ELS_REQUEST64_CR:
1192 case CMD_ELS_REQUEST64_CX:
1193 case CMD_FCP_IWRITE64_CR:
1194 case CMD_FCP_IWRITE64_CX:
1195 case CMD_FCP_IREAD64_CR:
1196 case CMD_FCP_IREAD64_CX:
1197 case CMD_FCP_ICMND64_CR:
1198 case CMD_FCP_ICMND64_CX:
f5603511
JS
1199 case CMD_FCP_TSEND64_CX:
1200 case CMD_FCP_TRSP64_CX:
1201 case CMD_FCP_TRECEIVE64_CX:
dea3101e 1202 case CMD_GEN_REQUEST64_CR:
1203 case CMD_GEN_REQUEST64_CX:
1204 case CMD_XMIT_ELS_RSP64_CX:
da0436e9
JS
1205 case DSSCMD_IWRITE64_CR:
1206 case DSSCMD_IWRITE64_CX:
1207 case DSSCMD_IREAD64_CR:
1208 case DSSCMD_IREAD64_CX:
dea3101e 1209 type = LPFC_SOL_IOCB;
1210 break;
1211 case CMD_ABORT_XRI_CN:
1212 case CMD_ABORT_XRI_CX:
1213 case CMD_CLOSE_XRI_CN:
1214 case CMD_CLOSE_XRI_CX:
1215 case CMD_XRI_ABORTED_CX:
1216 case CMD_ABORT_MXRI64_CN:
6669f9bb 1217 case CMD_XMIT_BLS_RSP64_CX:
dea3101e 1218 type = LPFC_ABORT_IOCB;
1219 break;
1220 case CMD_RCV_SEQUENCE_CX:
1221 case CMD_RCV_ELS_REQ_CX:
1222 case CMD_RCV_SEQUENCE64_CX:
1223 case CMD_RCV_ELS_REQ64_CX:
57127f15 1224 case CMD_ASYNC_STATUS:
ed957684
JS
1225 case CMD_IOCB_RCV_SEQ64_CX:
1226 case CMD_IOCB_RCV_ELS64_CX:
1227 case CMD_IOCB_RCV_CONT64_CX:
3163f725 1228 case CMD_IOCB_RET_XRI64_CX:
dea3101e 1229 type = LPFC_UNSOL_IOCB;
1230 break;
3163f725
JS
1231 case CMD_IOCB_XMIT_MSEQ64_CR:
1232 case CMD_IOCB_XMIT_MSEQ64_CX:
1233 case CMD_IOCB_RCV_SEQ_LIST64_CX:
1234 case CMD_IOCB_RCV_ELS_LIST64_CX:
1235 case CMD_IOCB_CLOSE_EXTENDED_CN:
1236 case CMD_IOCB_ABORT_EXTENDED_CN:
1237 case CMD_IOCB_RET_HBQE64_CN:
1238 case CMD_IOCB_FCP_IBIDIR64_CR:
1239 case CMD_IOCB_FCP_IBIDIR64_CX:
1240 case CMD_IOCB_FCP_ITASKMGT64_CX:
1241 case CMD_IOCB_LOGENTRY_CN:
1242 case CMD_IOCB_LOGENTRY_ASYNC_CN:
1243 printk("%s - Unhandled SLI-3 Command x%x\n",
cadbd4a5 1244 __func__, iocb_cmnd);
3163f725
JS
1245 type = LPFC_UNKNOWN_IOCB;
1246 break;
dea3101e 1247 default:
1248 type = LPFC_UNKNOWN_IOCB;
1249 break;
1250 }
1251
1252 return type;
1253}
1254
e59058c4 1255/**
3621a710 1256 * lpfc_sli_ring_map - Issue config_ring mbox for all rings
e59058c4
JS
1257 * @phba: Pointer to HBA context object.
1258 *
1259 * This function is called from SLI initialization code
1260 * to configure every ring of the HBA's SLI interface. The
1261 * caller is not required to hold any lock. This function issues
1262 * a config_ring mailbox command for each ring.
1263 * This function returns zero if successful else returns a negative
1264 * error code.
1265 **/
dea3101e 1266static int
ed957684 1267lpfc_sli_ring_map(struct lpfc_hba *phba)
dea3101e 1268{
1269 struct lpfc_sli *psli = &phba->sli;
ed957684
JS
1270 LPFC_MBOXQ_t *pmb;
1271 MAILBOX_t *pmbox;
1272 int i, rc, ret = 0;
dea3101e 1273
ed957684
JS
1274 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
1275 if (!pmb)
1276 return -ENOMEM;
04c68496 1277 pmbox = &pmb->u.mb;
ed957684 1278 phba->link_state = LPFC_INIT_MBX_CMDS;
dea3101e 1279 for (i = 0; i < psli->num_rings; i++) {
dea3101e 1280 lpfc_config_ring(phba, i, pmb);
1281 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
1282 if (rc != MBX_SUCCESS) {
92d7f7b0 1283 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 1284 "0446 Adapter failed to init (%d), "
dea3101e 1285 "mbxCmd x%x CFG_RING, mbxStatus x%x, "
1286 "ring %d\n",
e8b62011
JS
1287 rc, pmbox->mbxCommand,
1288 pmbox->mbxStatus, i);
2e0fef85 1289 phba->link_state = LPFC_HBA_ERROR;
ed957684
JS
1290 ret = -ENXIO;
1291 break;
dea3101e 1292 }
1293 }
ed957684
JS
1294 mempool_free(pmb, phba->mbox_mem_pool);
1295 return ret;
dea3101e 1296}
1297
e59058c4 1298/**
3621a710 1299 * lpfc_sli_ringtxcmpl_put - Adds new iocb to the txcmplq
e59058c4
JS
1300 * @phba: Pointer to HBA context object.
1301 * @pring: Pointer to driver SLI ring object.
1302 * @piocb: Pointer to the driver iocb object.
1303 *
1304 * This function is called with hbalock held. The function adds the
1305 * new iocb to txcmplq of the given ring. This function always returns
1306 * 0. If this function is called for ELS ring, this function checks if
1307 * there is a vport associated with the ELS command. This function also
1308 * starts els_tmofunc timer if this is an ELS command.
1309 **/
dea3101e 1310static int
2e0fef85
JS
1311lpfc_sli_ringtxcmpl_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
1312 struct lpfc_iocbq *piocb)
dea3101e 1313{
dea3101e 1314 list_add_tail(&piocb->list, &pring->txcmplq);
4f2e66c6 1315 piocb->iocb_flag |= LPFC_IO_ON_TXCMPLQ;
2a9bf3d0 1316
92d7f7b0
JS
1317 if ((unlikely(pring->ringno == LPFC_ELS_RING)) &&
1318 (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
1319 (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) {
1320 if (!piocb->vport)
1321 BUG();
1322 else
1323 mod_timer(&piocb->vport->els_tmofunc,
256ec0d0
JS
1324 jiffies +
1325 msecs_to_jiffies(1000 * (phba->fc_ratov << 1)));
92d7f7b0
JS
1326 }
1327
dea3101e 1328
2e0fef85 1329 return 0;
dea3101e 1330}
1331
e59058c4 1332/**
3621a710 1333 * lpfc_sli_ringtx_get - Get first element of the txq
e59058c4
JS
1334 * @phba: Pointer to HBA context object.
1335 * @pring: Pointer to driver SLI ring object.
1336 *
1337 * This function is called with hbalock held to get next
1338 * iocb in txq of the given ring. If there is any iocb in
1339 * the txq, the function returns first iocb in the list after
1340 * removing the iocb from the list, else it returns NULL.
1341 **/
2a9bf3d0 1342struct lpfc_iocbq *
2e0fef85 1343lpfc_sli_ringtx_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea3101e 1344{
dea3101e 1345 struct lpfc_iocbq *cmd_iocb;
1346
858c9f6c 1347 list_remove_head((&pring->txq), cmd_iocb, struct lpfc_iocbq, list);
2e0fef85 1348 return cmd_iocb;
dea3101e 1349}
1350
e59058c4 1351/**
3621a710 1352 * lpfc_sli_next_iocb_slot - Get next iocb slot in the ring
e59058c4
JS
1353 * @phba: Pointer to HBA context object.
1354 * @pring: Pointer to driver SLI ring object.
1355 *
1356 * This function is called with hbalock held and the caller must post the
1357 * iocb without releasing the lock. If the caller releases the lock,
1358 * iocb slot returned by the function is not guaranteed to be available.
1359 * The function returns pointer to the next available iocb slot if there
1360 * is available slot in the ring, else it returns NULL.
1361 * If the get index of the ring is ahead of the put index, the function
1362 * will post an error attention event to the worker thread to take the
1363 * HBA to offline state.
1364 **/
dea3101e 1365static IOCB_t *
1366lpfc_sli_next_iocb_slot (struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
1367{
34b02dcd 1368 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
7e56aa25
JS
1369 uint32_t max_cmd_idx = pring->sli.sli3.numCiocb;
1370 if ((pring->sli.sli3.next_cmdidx == pring->sli.sli3.cmdidx) &&
1371 (++pring->sli.sli3.next_cmdidx >= max_cmd_idx))
1372 pring->sli.sli3.next_cmdidx = 0;
dea3101e 1373
7e56aa25
JS
1374 if (unlikely(pring->sli.sli3.local_getidx ==
1375 pring->sli.sli3.next_cmdidx)) {
dea3101e 1376
7e56aa25 1377 pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
dea3101e 1378
7e56aa25 1379 if (unlikely(pring->sli.sli3.local_getidx >= max_cmd_idx)) {
dea3101e 1380 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011 1381 "0315 Ring %d issue: portCmdGet %d "
025dfdaf 1382 "is bigger than cmd ring %d\n",
e8b62011 1383 pring->ringno,
7e56aa25
JS
1384 pring->sli.sli3.local_getidx,
1385 max_cmd_idx);
dea3101e 1386
2e0fef85 1387 phba->link_state = LPFC_HBA_ERROR;
dea3101e 1388 /*
1389 * All error attention handlers are posted to
1390 * worker thread
1391 */
1392 phba->work_ha |= HA_ERATT;
1393 phba->work_hs = HS_FFER3;
92d7f7b0 1394
5e9d9b82 1395 lpfc_worker_wake_up(phba);
dea3101e 1396
1397 return NULL;
1398 }
1399
7e56aa25 1400 if (pring->sli.sli3.local_getidx == pring->sli.sli3.next_cmdidx)
dea3101e 1401 return NULL;
1402 }
1403
ed957684 1404 return lpfc_cmd_iocb(phba, pring);
dea3101e 1405}
1406
e59058c4 1407/**
3621a710 1408 * lpfc_sli_next_iotag - Get an iotag for the iocb
e59058c4
JS
1409 * @phba: Pointer to HBA context object.
1410 * @iocbq: Pointer to driver iocb object.
1411 *
1412 * This function gets an iotag for the iocb. If there is no unused iotag and
1413 * the iocbq_lookup_len < 0xffff, this function allocates a bigger iotag_lookup
1414 * array and assigns a new iotag.
1415 * The function returns the allocated iotag if successful, else returns zero.
1416 * Zero is not a valid iotag.
1417 * The caller is not required to hold any lock.
1418 **/
604a3e30 1419uint16_t
2e0fef85 1420lpfc_sli_next_iotag(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
dea3101e 1421{
2e0fef85
JS
1422 struct lpfc_iocbq **new_arr;
1423 struct lpfc_iocbq **old_arr;
604a3e30
JB
1424 size_t new_len;
1425 struct lpfc_sli *psli = &phba->sli;
1426 uint16_t iotag;
dea3101e 1427
2e0fef85 1428 spin_lock_irq(&phba->hbalock);
604a3e30
JB
1429 iotag = psli->last_iotag;
1430 if(++iotag < psli->iocbq_lookup_len) {
1431 psli->last_iotag = iotag;
1432 psli->iocbq_lookup[iotag] = iocbq;
2e0fef85 1433 spin_unlock_irq(&phba->hbalock);
604a3e30
JB
1434 iocbq->iotag = iotag;
1435 return iotag;
2e0fef85 1436 } else if (psli->iocbq_lookup_len < (0xffff
604a3e30
JB
1437 - LPFC_IOCBQ_LOOKUP_INCREMENT)) {
1438 new_len = psli->iocbq_lookup_len + LPFC_IOCBQ_LOOKUP_INCREMENT;
2e0fef85
JS
1439 spin_unlock_irq(&phba->hbalock);
1440 new_arr = kzalloc(new_len * sizeof (struct lpfc_iocbq *),
604a3e30
JB
1441 GFP_KERNEL);
1442 if (new_arr) {
2e0fef85 1443 spin_lock_irq(&phba->hbalock);
604a3e30
JB
1444 old_arr = psli->iocbq_lookup;
1445 if (new_len <= psli->iocbq_lookup_len) {
1446 /* highly unprobable case */
1447 kfree(new_arr);
1448 iotag = psli->last_iotag;
1449 if(++iotag < psli->iocbq_lookup_len) {
1450 psli->last_iotag = iotag;
1451 psli->iocbq_lookup[iotag] = iocbq;
2e0fef85 1452 spin_unlock_irq(&phba->hbalock);
604a3e30
JB
1453 iocbq->iotag = iotag;
1454 return iotag;
1455 }
2e0fef85 1456 spin_unlock_irq(&phba->hbalock);
604a3e30
JB
1457 return 0;
1458 }
1459 if (psli->iocbq_lookup)
1460 memcpy(new_arr, old_arr,
1461 ((psli->last_iotag + 1) *
311464ec 1462 sizeof (struct lpfc_iocbq *)));
604a3e30
JB
1463 psli->iocbq_lookup = new_arr;
1464 psli->iocbq_lookup_len = new_len;
1465 psli->last_iotag = iotag;
1466 psli->iocbq_lookup[iotag] = iocbq;
2e0fef85 1467 spin_unlock_irq(&phba->hbalock);
604a3e30
JB
1468 iocbq->iotag = iotag;
1469 kfree(old_arr);
1470 return iotag;
1471 }
8f6d98d2 1472 } else
2e0fef85 1473 spin_unlock_irq(&phba->hbalock);
dea3101e 1474
bc73905a 1475 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
e8b62011
JS
1476 "0318 Failed to allocate IOTAG.last IOTAG is %d\n",
1477 psli->last_iotag);
dea3101e 1478
604a3e30 1479 return 0;
dea3101e 1480}
1481
e59058c4 1482/**
3621a710 1483 * lpfc_sli_submit_iocb - Submit an iocb to the firmware
e59058c4
JS
1484 * @phba: Pointer to HBA context object.
1485 * @pring: Pointer to driver SLI ring object.
1486 * @iocb: Pointer to iocb slot in the ring.
1487 * @nextiocb: Pointer to driver iocb object which need to be
1488 * posted to firmware.
1489 *
1490 * This function is called with hbalock held to post a new iocb to
1491 * the firmware. This function copies the new iocb to ring iocb slot and
1492 * updates the ring pointers. It adds the new iocb to txcmplq if there is
1493 * a completion call back for this iocb else the function will free the
1494 * iocb object.
1495 **/
dea3101e 1496static void
1497lpfc_sli_submit_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
1498 IOCB_t *iocb, struct lpfc_iocbq *nextiocb)
1499{
1500 /*
604a3e30 1501 * Set up an iotag
dea3101e 1502 */
604a3e30 1503 nextiocb->iocb.ulpIoTag = (nextiocb->iocb_cmpl) ? nextiocb->iotag : 0;
dea3101e 1504
e2a0a9d6 1505
a58cbd52
JS
1506 if (pring->ringno == LPFC_ELS_RING) {
1507 lpfc_debugfs_slow_ring_trc(phba,
1508 "IOCB cmd ring: wd4:x%08x wd6:x%08x wd7:x%08x",
1509 *(((uint32_t *) &nextiocb->iocb) + 4),
1510 *(((uint32_t *) &nextiocb->iocb) + 6),
1511 *(((uint32_t *) &nextiocb->iocb) + 7));
1512 }
1513
dea3101e 1514 /*
1515 * Issue iocb command to adapter
1516 */
92d7f7b0 1517 lpfc_sli_pcimem_bcopy(&nextiocb->iocb, iocb, phba->iocb_cmd_size);
dea3101e 1518 wmb();
1519 pring->stats.iocb_cmd++;
1520
1521 /*
1522 * If there is no completion routine to call, we can release the
1523 * IOCB buffer back right now. For IOCBs, like QUE_RING_BUF,
1524 * that have no rsp ring completion, iocb_cmpl MUST be NULL.
1525 */
1526 if (nextiocb->iocb_cmpl)
1527 lpfc_sli_ringtxcmpl_put(phba, pring, nextiocb);
604a3e30 1528 else
2e0fef85 1529 __lpfc_sli_release_iocbq(phba, nextiocb);
dea3101e 1530
1531 /*
1532 * Let the HBA know what IOCB slot will be the next one the
1533 * driver will put a command into.
1534 */
7e56aa25
JS
1535 pring->sli.sli3.cmdidx = pring->sli.sli3.next_cmdidx;
1536 writel(pring->sli.sli3.cmdidx, &phba->host_gp[pring->ringno].cmdPutInx);
dea3101e 1537}
1538
e59058c4 1539/**
3621a710 1540 * lpfc_sli_update_full_ring - Update the chip attention register
e59058c4
JS
1541 * @phba: Pointer to HBA context object.
1542 * @pring: Pointer to driver SLI ring object.
1543 *
1544 * The caller is not required to hold any lock for calling this function.
1545 * This function updates the chip attention bits for the ring to inform firmware
1546 * that there are pending work to be done for this ring and requests an
1547 * interrupt when there is space available in the ring. This function is
1548 * called when the driver is unable to post more iocbs to the ring due
1549 * to unavailability of space in the ring.
1550 **/
dea3101e 1551static void
2e0fef85 1552lpfc_sli_update_full_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea3101e 1553{
1554 int ringno = pring->ringno;
1555
1556 pring->flag |= LPFC_CALL_RING_AVAILABLE;
1557
1558 wmb();
1559
1560 /*
1561 * Set ring 'ringno' to SET R0CE_REQ in Chip Att register.
1562 * The HBA will tell us when an IOCB entry is available.
1563 */
1564 writel((CA_R0ATT|CA_R0CE_REQ) << (ringno*4), phba->CAregaddr);
1565 readl(phba->CAregaddr); /* flush */
1566
1567 pring->stats.iocb_cmd_full++;
1568}
1569
e59058c4 1570/**
3621a710 1571 * lpfc_sli_update_ring - Update chip attention register
e59058c4
JS
1572 * @phba: Pointer to HBA context object.
1573 * @pring: Pointer to driver SLI ring object.
1574 *
1575 * This function updates the chip attention register bit for the
1576 * given ring to inform HBA that there is more work to be done
1577 * in this ring. The caller is not required to hold any lock.
1578 **/
dea3101e 1579static void
2e0fef85 1580lpfc_sli_update_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea3101e 1581{
1582 int ringno = pring->ringno;
1583
1584 /*
1585 * Tell the HBA that there is work to do in this ring.
1586 */
34b02dcd
JS
1587 if (!(phba->sli3_options & LPFC_SLI3_CRP_ENABLED)) {
1588 wmb();
1589 writel(CA_R0ATT << (ringno * 4), phba->CAregaddr);
1590 readl(phba->CAregaddr); /* flush */
1591 }
dea3101e 1592}
1593
e59058c4 1594/**
3621a710 1595 * lpfc_sli_resume_iocb - Process iocbs in the txq
e59058c4
JS
1596 * @phba: Pointer to HBA context object.
1597 * @pring: Pointer to driver SLI ring object.
1598 *
1599 * This function is called with hbalock held to post pending iocbs
1600 * in the txq to the firmware. This function is called when driver
1601 * detects space available in the ring.
1602 **/
dea3101e 1603static void
2e0fef85 1604lpfc_sli_resume_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea3101e 1605{
1606 IOCB_t *iocb;
1607 struct lpfc_iocbq *nextiocb;
1608
1609 /*
1610 * Check to see if:
1611 * (a) there is anything on the txq to send
1612 * (b) link is up
1613 * (c) link attention events can be processed (fcp ring only)
1614 * (d) IOCB processing is not blocked by the outstanding mbox command.
1615 */
0e9bb8d7
JS
1616
1617 if (lpfc_is_link_up(phba) &&
1618 (!list_empty(&pring->txq)) &&
dea3101e 1619 (pring->ringno != phba->sli.fcp_ring ||
0b727fea 1620 phba->sli.sli_flag & LPFC_PROCESS_LA)) {
dea3101e 1621
1622 while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
1623 (nextiocb = lpfc_sli_ringtx_get(phba, pring)))
1624 lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
1625
1626 if (iocb)
1627 lpfc_sli_update_ring(phba, pring);
1628 else
1629 lpfc_sli_update_full_ring(phba, pring);
1630 }
1631
1632 return;
1633}
1634
e59058c4 1635/**
3621a710 1636 * lpfc_sli_next_hbq_slot - Get next hbq entry for the HBQ
e59058c4
JS
1637 * @phba: Pointer to HBA context object.
1638 * @hbqno: HBQ number.
1639 *
1640 * This function is called with hbalock held to get the next
1641 * available slot for the given HBQ. If there is free slot
1642 * available for the HBQ it will return pointer to the next available
1643 * HBQ entry else it will return NULL.
1644 **/
a6ababd2 1645static struct lpfc_hbq_entry *
ed957684
JS
1646lpfc_sli_next_hbq_slot(struct lpfc_hba *phba, uint32_t hbqno)
1647{
1648 struct hbq_s *hbqp = &phba->hbqs[hbqno];
1649
1650 if (hbqp->next_hbqPutIdx == hbqp->hbqPutIdx &&
1651 ++hbqp->next_hbqPutIdx >= hbqp->entry_count)
1652 hbqp->next_hbqPutIdx = 0;
1653
1654 if (unlikely(hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)) {
92d7f7b0 1655 uint32_t raw_index = phba->hbq_get[hbqno];
ed957684
JS
1656 uint32_t getidx = le32_to_cpu(raw_index);
1657
1658 hbqp->local_hbqGetIdx = getidx;
1659
1660 if (unlikely(hbqp->local_hbqGetIdx >= hbqp->entry_count)) {
1661 lpfc_printf_log(phba, KERN_ERR,
92d7f7b0 1662 LOG_SLI | LOG_VPORT,
e8b62011 1663 "1802 HBQ %d: local_hbqGetIdx "
ed957684 1664 "%u is > than hbqp->entry_count %u\n",
e8b62011 1665 hbqno, hbqp->local_hbqGetIdx,
ed957684
JS
1666 hbqp->entry_count);
1667
1668 phba->link_state = LPFC_HBA_ERROR;
1669 return NULL;
1670 }
1671
1672 if (hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)
1673 return NULL;
1674 }
1675
51ef4c26
JS
1676 return (struct lpfc_hbq_entry *) phba->hbqs[hbqno].hbq_virt +
1677 hbqp->hbqPutIdx;
ed957684
JS
1678}
1679
e59058c4 1680/**
3621a710 1681 * lpfc_sli_hbqbuf_free_all - Free all the hbq buffers
e59058c4
JS
1682 * @phba: Pointer to HBA context object.
1683 *
1684 * This function is called with no lock held to free all the
1685 * hbq buffers while uninitializing the SLI interface. It also
1686 * frees the HBQ buffers returned by the firmware but not yet
1687 * processed by the upper layers.
1688 **/
ed957684
JS
1689void
1690lpfc_sli_hbqbuf_free_all(struct lpfc_hba *phba)
1691{
92d7f7b0
JS
1692 struct lpfc_dmabuf *dmabuf, *next_dmabuf;
1693 struct hbq_dmabuf *hbq_buf;
3163f725 1694 unsigned long flags;
51ef4c26 1695 int i, hbq_count;
3163f725 1696 uint32_t hbqno;
ed957684 1697
51ef4c26 1698 hbq_count = lpfc_sli_hbq_count();
ed957684 1699 /* Return all memory used by all HBQs */
3163f725 1700 spin_lock_irqsave(&phba->hbalock, flags);
51ef4c26
JS
1701 for (i = 0; i < hbq_count; ++i) {
1702 list_for_each_entry_safe(dmabuf, next_dmabuf,
1703 &phba->hbqs[i].hbq_buffer_list, list) {
1704 hbq_buf = container_of(dmabuf, struct hbq_dmabuf, dbuf);
1705 list_del(&hbq_buf->dbuf.list);
1706 (phba->hbqs[i].hbq_free_buffer)(phba, hbq_buf);
1707 }
a8adb832 1708 phba->hbqs[i].buffer_count = 0;
ed957684 1709 }
3163f725 1710 /* Return all HBQ buffer that are in-fly */
3772a991
JS
1711 list_for_each_entry_safe(dmabuf, next_dmabuf, &phba->rb_pend_list,
1712 list) {
3163f725
JS
1713 hbq_buf = container_of(dmabuf, struct hbq_dmabuf, dbuf);
1714 list_del(&hbq_buf->dbuf.list);
1715 if (hbq_buf->tag == -1) {
1716 (phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer)
1717 (phba, hbq_buf);
1718 } else {
1719 hbqno = hbq_buf->tag >> 16;
1720 if (hbqno >= LPFC_MAX_HBQS)
1721 (phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer)
1722 (phba, hbq_buf);
1723 else
1724 (phba->hbqs[hbqno].hbq_free_buffer)(phba,
1725 hbq_buf);
1726 }
1727 }
1728
1729 /* Mark the HBQs not in use */
1730 phba->hbq_in_use = 0;
1731 spin_unlock_irqrestore(&phba->hbalock, flags);
ed957684
JS
1732}
1733
e59058c4 1734/**
3621a710 1735 * lpfc_sli_hbq_to_firmware - Post the hbq buffer to firmware
e59058c4
JS
1736 * @phba: Pointer to HBA context object.
1737 * @hbqno: HBQ number.
1738 * @hbq_buf: Pointer to HBQ buffer.
1739 *
1740 * This function is called with the hbalock held to post a
1741 * hbq buffer to the firmware. If the function finds an empty
1742 * slot in the HBQ, it will post the buffer. The function will return
1743 * pointer to the hbq entry if it successfully post the buffer
1744 * else it will return NULL.
1745 **/
3772a991 1746static int
ed957684 1747lpfc_sli_hbq_to_firmware(struct lpfc_hba *phba, uint32_t hbqno,
92d7f7b0 1748 struct hbq_dmabuf *hbq_buf)
3772a991
JS
1749{
1750 return phba->lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buf);
1751}
1752
1753/**
1754 * lpfc_sli_hbq_to_firmware_s3 - Post the hbq buffer to SLI3 firmware
1755 * @phba: Pointer to HBA context object.
1756 * @hbqno: HBQ number.
1757 * @hbq_buf: Pointer to HBQ buffer.
1758 *
1759 * This function is called with the hbalock held to post a hbq buffer to the
1760 * firmware. If the function finds an empty slot in the HBQ, it will post the
1761 * buffer and place it on the hbq_buffer_list. The function will return zero if
1762 * it successfully post the buffer else it will return an error.
1763 **/
1764static int
1765lpfc_sli_hbq_to_firmware_s3(struct lpfc_hba *phba, uint32_t hbqno,
1766 struct hbq_dmabuf *hbq_buf)
ed957684
JS
1767{
1768 struct lpfc_hbq_entry *hbqe;
92d7f7b0 1769 dma_addr_t physaddr = hbq_buf->dbuf.phys;
ed957684
JS
1770
1771 /* Get next HBQ entry slot to use */
1772 hbqe = lpfc_sli_next_hbq_slot(phba, hbqno);
1773 if (hbqe) {
1774 struct hbq_s *hbqp = &phba->hbqs[hbqno];
1775
92d7f7b0
JS
1776 hbqe->bde.addrHigh = le32_to_cpu(putPaddrHigh(physaddr));
1777 hbqe->bde.addrLow = le32_to_cpu(putPaddrLow(physaddr));
51ef4c26 1778 hbqe->bde.tus.f.bdeSize = hbq_buf->size;
ed957684 1779 hbqe->bde.tus.f.bdeFlags = 0;
92d7f7b0
JS
1780 hbqe->bde.tus.w = le32_to_cpu(hbqe->bde.tus.w);
1781 hbqe->buffer_tag = le32_to_cpu(hbq_buf->tag);
1782 /* Sync SLIM */
ed957684
JS
1783 hbqp->hbqPutIdx = hbqp->next_hbqPutIdx;
1784 writel(hbqp->hbqPutIdx, phba->hbq_put + hbqno);
92d7f7b0 1785 /* flush */
ed957684 1786 readl(phba->hbq_put + hbqno);
51ef4c26 1787 list_add_tail(&hbq_buf->dbuf.list, &hbqp->hbq_buffer_list);
3772a991
JS
1788 return 0;
1789 } else
1790 return -ENOMEM;
ed957684
JS
1791}
1792
4f774513
JS
1793/**
1794 * lpfc_sli_hbq_to_firmware_s4 - Post the hbq buffer to SLI4 firmware
1795 * @phba: Pointer to HBA context object.
1796 * @hbqno: HBQ number.
1797 * @hbq_buf: Pointer to HBQ buffer.
1798 *
1799 * This function is called with the hbalock held to post an RQE to the SLI4
1800 * firmware. If able to post the RQE to the RQ it will queue the hbq entry to
1801 * the hbq_buffer_list and return zero, otherwise it will return an error.
1802 **/
1803static int
1804lpfc_sli_hbq_to_firmware_s4(struct lpfc_hba *phba, uint32_t hbqno,
1805 struct hbq_dmabuf *hbq_buf)
1806{
1807 int rc;
1808 struct lpfc_rqe hrqe;
1809 struct lpfc_rqe drqe;
1810
1811 hrqe.address_lo = putPaddrLow(hbq_buf->hbuf.phys);
1812 hrqe.address_hi = putPaddrHigh(hbq_buf->hbuf.phys);
1813 drqe.address_lo = putPaddrLow(hbq_buf->dbuf.phys);
1814 drqe.address_hi = putPaddrHigh(hbq_buf->dbuf.phys);
1815 rc = lpfc_sli4_rq_put(phba->sli4_hba.hdr_rq, phba->sli4_hba.dat_rq,
1816 &hrqe, &drqe);
1817 if (rc < 0)
1818 return rc;
1819 hbq_buf->tag = rc;
1820 list_add_tail(&hbq_buf->dbuf.list, &phba->hbqs[hbqno].hbq_buffer_list);
1821 return 0;
1822}
1823
e59058c4 1824/* HBQ for ELS and CT traffic. */
92d7f7b0
JS
1825static struct lpfc_hbq_init lpfc_els_hbq = {
1826 .rn = 1,
def9c7a9 1827 .entry_count = 256,
92d7f7b0
JS
1828 .mask_count = 0,
1829 .profile = 0,
51ef4c26 1830 .ring_mask = (1 << LPFC_ELS_RING),
92d7f7b0 1831 .buffer_count = 0,
a257bf90
JS
1832 .init_count = 40,
1833 .add_count = 40,
92d7f7b0 1834};
ed957684 1835
e59058c4 1836/* HBQ for the extra ring if needed */
51ef4c26
JS
1837static struct lpfc_hbq_init lpfc_extra_hbq = {
1838 .rn = 1,
1839 .entry_count = 200,
1840 .mask_count = 0,
1841 .profile = 0,
1842 .ring_mask = (1 << LPFC_EXTRA_RING),
1843 .buffer_count = 0,
1844 .init_count = 0,
1845 .add_count = 5,
1846};
1847
e59058c4 1848/* Array of HBQs */
78b2d852 1849struct lpfc_hbq_init *lpfc_hbq_defs[] = {
92d7f7b0 1850 &lpfc_els_hbq,
51ef4c26 1851 &lpfc_extra_hbq,
92d7f7b0 1852};
ed957684 1853
e59058c4 1854/**
3621a710 1855 * lpfc_sli_hbqbuf_fill_hbqs - Post more hbq buffers to HBQ
e59058c4
JS
1856 * @phba: Pointer to HBA context object.
1857 * @hbqno: HBQ number.
1858 * @count: Number of HBQ buffers to be posted.
1859 *
d7c255b2
JS
1860 * This function is called with no lock held to post more hbq buffers to the
1861 * given HBQ. The function returns the number of HBQ buffers successfully
1862 * posted.
e59058c4 1863 **/
311464ec 1864static int
92d7f7b0 1865lpfc_sli_hbqbuf_fill_hbqs(struct lpfc_hba *phba, uint32_t hbqno, uint32_t count)
ed957684 1866{
d7c255b2 1867 uint32_t i, posted = 0;
3163f725 1868 unsigned long flags;
92d7f7b0 1869 struct hbq_dmabuf *hbq_buffer;
d7c255b2 1870 LIST_HEAD(hbq_buf_list);
eafe1df9 1871 if (!phba->hbqs[hbqno].hbq_alloc_buffer)
51ef4c26 1872 return 0;
51ef4c26 1873
d7c255b2
JS
1874 if ((phba->hbqs[hbqno].buffer_count + count) >
1875 lpfc_hbq_defs[hbqno]->entry_count)
1876 count = lpfc_hbq_defs[hbqno]->entry_count -
1877 phba->hbqs[hbqno].buffer_count;
1878 if (!count)
1879 return 0;
1880 /* Allocate HBQ entries */
1881 for (i = 0; i < count; i++) {
1882 hbq_buffer = (phba->hbqs[hbqno].hbq_alloc_buffer)(phba);
1883 if (!hbq_buffer)
1884 break;
1885 list_add_tail(&hbq_buffer->dbuf.list, &hbq_buf_list);
1886 }
3163f725
JS
1887 /* Check whether HBQ is still in use */
1888 spin_lock_irqsave(&phba->hbalock, flags);
eafe1df9 1889 if (!phba->hbq_in_use)
d7c255b2
JS
1890 goto err;
1891 while (!list_empty(&hbq_buf_list)) {
1892 list_remove_head(&hbq_buf_list, hbq_buffer, struct hbq_dmabuf,
1893 dbuf.list);
1894 hbq_buffer->tag = (phba->hbqs[hbqno].buffer_count |
1895 (hbqno << 16));
3772a991 1896 if (!lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer)) {
a8adb832 1897 phba->hbqs[hbqno].buffer_count++;
d7c255b2
JS
1898 posted++;
1899 } else
51ef4c26 1900 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
ed957684 1901 }
3163f725 1902 spin_unlock_irqrestore(&phba->hbalock, flags);
d7c255b2
JS
1903 return posted;
1904err:
eafe1df9 1905 spin_unlock_irqrestore(&phba->hbalock, flags);
d7c255b2
JS
1906 while (!list_empty(&hbq_buf_list)) {
1907 list_remove_head(&hbq_buf_list, hbq_buffer, struct hbq_dmabuf,
1908 dbuf.list);
1909 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
1910 }
1911 return 0;
ed957684
JS
1912}
1913
e59058c4 1914/**
3621a710 1915 * lpfc_sli_hbqbuf_add_hbqs - Post more HBQ buffers to firmware
e59058c4
JS
1916 * @phba: Pointer to HBA context object.
1917 * @qno: HBQ number.
1918 *
1919 * This function posts more buffers to the HBQ. This function
d7c255b2
JS
1920 * is called with no lock held. The function returns the number of HBQ entries
1921 * successfully allocated.
e59058c4 1922 **/
92d7f7b0
JS
1923int
1924lpfc_sli_hbqbuf_add_hbqs(struct lpfc_hba *phba, uint32_t qno)
ed957684 1925{
def9c7a9
JS
1926 if (phba->sli_rev == LPFC_SLI_REV4)
1927 return 0;
1928 else
1929 return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
1930 lpfc_hbq_defs[qno]->add_count);
92d7f7b0 1931}
ed957684 1932
e59058c4 1933/**
3621a710 1934 * lpfc_sli_hbqbuf_init_hbqs - Post initial buffers to the HBQ
e59058c4
JS
1935 * @phba: Pointer to HBA context object.
1936 * @qno: HBQ queue number.
1937 *
1938 * This function is called from SLI initialization code path with
1939 * no lock held to post initial HBQ buffers to firmware. The
d7c255b2 1940 * function returns the number of HBQ entries successfully allocated.
e59058c4 1941 **/
a6ababd2 1942static int
92d7f7b0
JS
1943lpfc_sli_hbqbuf_init_hbqs(struct lpfc_hba *phba, uint32_t qno)
1944{
def9c7a9
JS
1945 if (phba->sli_rev == LPFC_SLI_REV4)
1946 return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
73d91e50 1947 lpfc_hbq_defs[qno]->entry_count);
def9c7a9
JS
1948 else
1949 return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
1950 lpfc_hbq_defs[qno]->init_count);
ed957684
JS
1951}
1952
3772a991
JS
1953/**
1954 * lpfc_sli_hbqbuf_get - Remove the first hbq off of an hbq list
1955 * @phba: Pointer to HBA context object.
1956 * @hbqno: HBQ number.
1957 *
1958 * This function removes the first hbq buffer on an hbq list and returns a
1959 * pointer to that buffer. If it finds no buffers on the list it returns NULL.
1960 **/
1961static struct hbq_dmabuf *
1962lpfc_sli_hbqbuf_get(struct list_head *rb_list)
1963{
1964 struct lpfc_dmabuf *d_buf;
1965
1966 list_remove_head(rb_list, d_buf, struct lpfc_dmabuf, list);
1967 if (!d_buf)
1968 return NULL;
1969 return container_of(d_buf, struct hbq_dmabuf, dbuf);
1970}
1971
e59058c4 1972/**
3621a710 1973 * lpfc_sli_hbqbuf_find - Find the hbq buffer associated with a tag
e59058c4
JS
1974 * @phba: Pointer to HBA context object.
1975 * @tag: Tag of the hbq buffer.
1976 *
1977 * This function is called with hbalock held. This function searches
1978 * for the hbq buffer associated with the given tag in the hbq buffer
1979 * list. If it finds the hbq buffer, it returns the hbq_buffer other wise
1980 * it returns NULL.
1981 **/
a6ababd2 1982static struct hbq_dmabuf *
92d7f7b0 1983lpfc_sli_hbqbuf_find(struct lpfc_hba *phba, uint32_t tag)
ed957684 1984{
92d7f7b0
JS
1985 struct lpfc_dmabuf *d_buf;
1986 struct hbq_dmabuf *hbq_buf;
51ef4c26
JS
1987 uint32_t hbqno;
1988
1989 hbqno = tag >> 16;
a0a74e45 1990 if (hbqno >= LPFC_MAX_HBQS)
51ef4c26 1991 return NULL;
ed957684 1992
3772a991 1993 spin_lock_irq(&phba->hbalock);
51ef4c26 1994 list_for_each_entry(d_buf, &phba->hbqs[hbqno].hbq_buffer_list, list) {
92d7f7b0 1995 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
51ef4c26 1996 if (hbq_buf->tag == tag) {
3772a991 1997 spin_unlock_irq(&phba->hbalock);
92d7f7b0 1998 return hbq_buf;
ed957684
JS
1999 }
2000 }
3772a991 2001 spin_unlock_irq(&phba->hbalock);
92d7f7b0 2002 lpfc_printf_log(phba, KERN_ERR, LOG_SLI | LOG_VPORT,
e8b62011 2003 "1803 Bad hbq tag. Data: x%x x%x\n",
a8adb832 2004 tag, phba->hbqs[tag >> 16].buffer_count);
92d7f7b0 2005 return NULL;
ed957684
JS
2006}
2007
e59058c4 2008/**
3621a710 2009 * lpfc_sli_free_hbq - Give back the hbq buffer to firmware
e59058c4
JS
2010 * @phba: Pointer to HBA context object.
2011 * @hbq_buffer: Pointer to HBQ buffer.
2012 *
2013 * This function is called with hbalock. This function gives back
2014 * the hbq buffer to firmware. If the HBQ does not have space to
2015 * post the buffer, it will free the buffer.
2016 **/
ed957684 2017void
51ef4c26 2018lpfc_sli_free_hbq(struct lpfc_hba *phba, struct hbq_dmabuf *hbq_buffer)
ed957684
JS
2019{
2020 uint32_t hbqno;
2021
51ef4c26
JS
2022 if (hbq_buffer) {
2023 hbqno = hbq_buffer->tag >> 16;
3772a991 2024 if (lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer))
51ef4c26 2025 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
ed957684
JS
2026 }
2027}
2028
e59058c4 2029/**
3621a710 2030 * lpfc_sli_chk_mbx_command - Check if the mailbox is a legitimate mailbox
e59058c4
JS
2031 * @mbxCommand: mailbox command code.
2032 *
2033 * This function is called by the mailbox event handler function to verify
2034 * that the completed mailbox command is a legitimate mailbox command. If the
2035 * completed mailbox is not known to the function, it will return MBX_SHUTDOWN
2036 * and the mailbox event handler will take the HBA offline.
2037 **/
dea3101e 2038static int
2039lpfc_sli_chk_mbx_command(uint8_t mbxCommand)
2040{
2041 uint8_t ret;
2042
2043 switch (mbxCommand) {
2044 case MBX_LOAD_SM:
2045 case MBX_READ_NV:
2046 case MBX_WRITE_NV:
a8adb832 2047 case MBX_WRITE_VPARMS:
dea3101e 2048 case MBX_RUN_BIU_DIAG:
2049 case MBX_INIT_LINK:
2050 case MBX_DOWN_LINK:
2051 case MBX_CONFIG_LINK:
2052 case MBX_CONFIG_RING:
2053 case MBX_RESET_RING:
2054 case MBX_READ_CONFIG:
2055 case MBX_READ_RCONFIG:
2056 case MBX_READ_SPARM:
2057 case MBX_READ_STATUS:
2058 case MBX_READ_RPI:
2059 case MBX_READ_XRI:
2060 case MBX_READ_REV:
2061 case MBX_READ_LNK_STAT:
2062 case MBX_REG_LOGIN:
2063 case MBX_UNREG_LOGIN:
dea3101e 2064 case MBX_CLEAR_LA:
2065 case MBX_DUMP_MEMORY:
2066 case MBX_DUMP_CONTEXT:
2067 case MBX_RUN_DIAGS:
2068 case MBX_RESTART:
2069 case MBX_UPDATE_CFG:
2070 case MBX_DOWN_LOAD:
2071 case MBX_DEL_LD_ENTRY:
2072 case MBX_RUN_PROGRAM:
2073 case MBX_SET_MASK:
09372820 2074 case MBX_SET_VARIABLE:
dea3101e 2075 case MBX_UNREG_D_ID:
41415862 2076 case MBX_KILL_BOARD:
dea3101e 2077 case MBX_CONFIG_FARP:
41415862 2078 case MBX_BEACON:
dea3101e 2079 case MBX_LOAD_AREA:
2080 case MBX_RUN_BIU_DIAG64:
2081 case MBX_CONFIG_PORT:
2082 case MBX_READ_SPARM64:
2083 case MBX_READ_RPI64:
2084 case MBX_REG_LOGIN64:
76a95d75 2085 case MBX_READ_TOPOLOGY:
09372820 2086 case MBX_WRITE_WWN:
dea3101e 2087 case MBX_SET_DEBUG:
2088 case MBX_LOAD_EXP_ROM:
57127f15 2089 case MBX_ASYNCEVT_ENABLE:
92d7f7b0
JS
2090 case MBX_REG_VPI:
2091 case MBX_UNREG_VPI:
858c9f6c 2092 case MBX_HEARTBEAT:
84774a4d
JS
2093 case MBX_PORT_CAPABILITIES:
2094 case MBX_PORT_IOV_CONTROL:
04c68496
JS
2095 case MBX_SLI4_CONFIG:
2096 case MBX_SLI4_REQ_FTRS:
2097 case MBX_REG_FCFI:
2098 case MBX_UNREG_FCFI:
2099 case MBX_REG_VFI:
2100 case MBX_UNREG_VFI:
2101 case MBX_INIT_VPI:
2102 case MBX_INIT_VFI:
2103 case MBX_RESUME_RPI:
c7495937
JS
2104 case MBX_READ_EVENT_LOG_STATUS:
2105 case MBX_READ_EVENT_LOG:
dcf2a4e0
JS
2106 case MBX_SECURITY_MGMT:
2107 case MBX_AUTH_PORT:
940eb687 2108 case MBX_ACCESS_VDATA:
dea3101e 2109 ret = mbxCommand;
2110 break;
2111 default:
2112 ret = MBX_SHUTDOWN;
2113 break;
2114 }
2e0fef85 2115 return ret;
dea3101e 2116}
e59058c4
JS
2117
2118/**
3621a710 2119 * lpfc_sli_wake_mbox_wait - lpfc_sli_issue_mbox_wait mbox completion handler
e59058c4
JS
2120 * @phba: Pointer to HBA context object.
2121 * @pmboxq: Pointer to mailbox command.
2122 *
2123 * This is completion handler function for mailbox commands issued from
2124 * lpfc_sli_issue_mbox_wait function. This function is called by the
2125 * mailbox event handler function with no lock held. This function
2126 * will wake up thread waiting on the wait queue pointed by context1
2127 * of the mailbox.
2128 **/
04c68496 2129void
2e0fef85 2130lpfc_sli_wake_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq)
dea3101e 2131{
2132 wait_queue_head_t *pdone_q;
858c9f6c 2133 unsigned long drvr_flag;
dea3101e 2134
2135 /*
2136 * If pdone_q is empty, the driver thread gave up waiting and
2137 * continued running.
2138 */
7054a606 2139 pmboxq->mbox_flag |= LPFC_MBX_WAKE;
858c9f6c 2140 spin_lock_irqsave(&phba->hbalock, drvr_flag);
dea3101e 2141 pdone_q = (wait_queue_head_t *) pmboxq->context1;
2142 if (pdone_q)
2143 wake_up_interruptible(pdone_q);
858c9f6c 2144 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea3101e 2145 return;
2146}
2147
e59058c4
JS
2148
2149/**
3621a710 2150 * lpfc_sli_def_mbox_cmpl - Default mailbox completion handler
e59058c4
JS
2151 * @phba: Pointer to HBA context object.
2152 * @pmb: Pointer to mailbox object.
2153 *
2154 * This function is the default mailbox completion handler. It
2155 * frees the memory resources associated with the completed mailbox
2156 * command. If the completed command is a REG_LOGIN mailbox command,
2157 * this function will issue a UREG_LOGIN to re-claim the RPI.
2158 **/
dea3101e 2159void
2e0fef85 2160lpfc_sli_def_mbox_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea3101e 2161{
d439d286 2162 struct lpfc_vport *vport = pmb->vport;
dea3101e 2163 struct lpfc_dmabuf *mp;
d439d286 2164 struct lpfc_nodelist *ndlp;
5af5eee7 2165 struct Scsi_Host *shost;
04c68496 2166 uint16_t rpi, vpi;
7054a606
JS
2167 int rc;
2168
dea3101e 2169 mp = (struct lpfc_dmabuf *) (pmb->context1);
7054a606 2170
dea3101e 2171 if (mp) {
2172 lpfc_mbuf_free(phba, mp->virt, mp->phys);
2173 kfree(mp);
2174 }
7054a606
JS
2175
2176 /*
2177 * If a REG_LOGIN succeeded after node is destroyed or node
2178 * is in re-discovery driver need to cleanup the RPI.
2179 */
2e0fef85 2180 if (!(phba->pport->load_flag & FC_UNLOADING) &&
04c68496
JS
2181 pmb->u.mb.mbxCommand == MBX_REG_LOGIN64 &&
2182 !pmb->u.mb.mbxStatus) {
2183 rpi = pmb->u.mb.un.varWords[0];
6d368e53 2184 vpi = pmb->u.mb.un.varRegLogin.vpi;
04c68496 2185 lpfc_unreg_login(phba, vpi, rpi, pmb);
92d7f7b0 2186 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
7054a606
JS
2187 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
2188 if (rc != MBX_NOT_FINISHED)
2189 return;
2190 }
2191
695a814e
JS
2192 if ((pmb->u.mb.mbxCommand == MBX_REG_VPI) &&
2193 !(phba->pport->load_flag & FC_UNLOADING) &&
2194 !pmb->u.mb.mbxStatus) {
5af5eee7
JS
2195 shost = lpfc_shost_from_vport(vport);
2196 spin_lock_irq(shost->host_lock);
2197 vport->vpi_state |= LPFC_VPI_REGISTERED;
2198 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
2199 spin_unlock_irq(shost->host_lock);
695a814e
JS
2200 }
2201
d439d286
JS
2202 if (pmb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
2203 ndlp = (struct lpfc_nodelist *)pmb->context2;
2204 lpfc_nlp_put(ndlp);
2205 pmb->context2 = NULL;
2206 }
2207
dcf2a4e0
JS
2208 /* Check security permission status on INIT_LINK mailbox command */
2209 if ((pmb->u.mb.mbxCommand == MBX_INIT_LINK) &&
2210 (pmb->u.mb.mbxStatus == MBXERR_SEC_NO_PERMISSION))
2211 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
2212 "2860 SLI authentication is required "
2213 "for INIT_LINK but has not done yet\n");
2214
04c68496
JS
2215 if (bf_get(lpfc_mqe_command, &pmb->u.mqe) == MBX_SLI4_CONFIG)
2216 lpfc_sli4_mbox_cmd_free(phba, pmb);
2217 else
2218 mempool_free(pmb, phba->mbox_mem_pool);
dea3101e 2219}
2220
e59058c4 2221/**
3621a710 2222 * lpfc_sli_handle_mb_event - Handle mailbox completions from firmware
e59058c4
JS
2223 * @phba: Pointer to HBA context object.
2224 *
2225 * This function is called with no lock held. This function processes all
2226 * the completed mailbox commands and gives it to upper layers. The interrupt
2227 * service routine processes mailbox completion interrupt and adds completed
2228 * mailbox commands to the mboxq_cmpl queue and signals the worker thread.
2229 * Worker thread call lpfc_sli_handle_mb_event, which will return the
2230 * completed mailbox commands in mboxq_cmpl queue to the upper layers. This
2231 * function returns the mailbox commands to the upper layer by calling the
2232 * completion handler function of each mailbox.
2233 **/
dea3101e 2234int
2e0fef85 2235lpfc_sli_handle_mb_event(struct lpfc_hba *phba)
dea3101e 2236{
92d7f7b0 2237 MAILBOX_t *pmbox;
dea3101e 2238 LPFC_MBOXQ_t *pmb;
92d7f7b0
JS
2239 int rc;
2240 LIST_HEAD(cmplq);
dea3101e 2241
2242 phba->sli.slistat.mbox_event++;
2243
92d7f7b0
JS
2244 /* Get all completed mailboxe buffers into the cmplq */
2245 spin_lock_irq(&phba->hbalock);
2246 list_splice_init(&phba->sli.mboxq_cmpl, &cmplq);
2247 spin_unlock_irq(&phba->hbalock);
dea3101e 2248
92d7f7b0
JS
2249 /* Get a Mailbox buffer to setup mailbox commands for callback */
2250 do {
2251 list_remove_head(&cmplq, pmb, LPFC_MBOXQ_t, list);
2252 if (pmb == NULL)
2253 break;
2e0fef85 2254
04c68496 2255 pmbox = &pmb->u.mb;
dea3101e 2256
858c9f6c
JS
2257 if (pmbox->mbxCommand != MBX_HEARTBEAT) {
2258 if (pmb->vport) {
2259 lpfc_debugfs_disc_trc(pmb->vport,
2260 LPFC_DISC_TRC_MBOX_VPORT,
2261 "MBOX cmpl vport: cmd:x%x mb:x%x x%x",
2262 (uint32_t)pmbox->mbxCommand,
2263 pmbox->un.varWords[0],
2264 pmbox->un.varWords[1]);
2265 }
2266 else {
2267 lpfc_debugfs_disc_trc(phba->pport,
2268 LPFC_DISC_TRC_MBOX,
2269 "MBOX cmpl: cmd:x%x mb:x%x x%x",
2270 (uint32_t)pmbox->mbxCommand,
2271 pmbox->un.varWords[0],
2272 pmbox->un.varWords[1]);
2273 }
2274 }
2275
dea3101e 2276 /*
2277 * It is a fatal error if unknown mbox command completion.
2278 */
2279 if (lpfc_sli_chk_mbx_command(pmbox->mbxCommand) ==
2280 MBX_SHUTDOWN) {
af901ca1 2281 /* Unknown mailbox command compl */
92d7f7b0 2282 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
e8b62011 2283 "(%d):0323 Unknown Mailbox command "
a183a15f 2284 "x%x (x%x/x%x) Cmpl\n",
92d7f7b0 2285 pmb->vport ? pmb->vport->vpi : 0,
04c68496 2286 pmbox->mbxCommand,
a183a15f
JS
2287 lpfc_sli_config_mbox_subsys_get(phba,
2288 pmb),
2289 lpfc_sli_config_mbox_opcode_get(phba,
2290 pmb));
2e0fef85 2291 phba->link_state = LPFC_HBA_ERROR;
dea3101e 2292 phba->work_hs = HS_FFER3;
2293 lpfc_handle_eratt(phba);
92d7f7b0 2294 continue;
dea3101e 2295 }
2296
dea3101e 2297 if (pmbox->mbxStatus) {
2298 phba->sli.slistat.mbox_stat_err++;
2299 if (pmbox->mbxStatus == MBXERR_NO_RESOURCES) {
2300 /* Mbox cmd cmpl error - RETRYing */
92d7f7b0 2301 lpfc_printf_log(phba, KERN_INFO,
a183a15f
JS
2302 LOG_MBOX | LOG_SLI,
2303 "(%d):0305 Mbox cmd cmpl "
2304 "error - RETRYing Data: x%x "
2305 "(x%x/x%x) x%x x%x x%x\n",
2306 pmb->vport ? pmb->vport->vpi : 0,
2307 pmbox->mbxCommand,
2308 lpfc_sli_config_mbox_subsys_get(phba,
2309 pmb),
2310 lpfc_sli_config_mbox_opcode_get(phba,
2311 pmb),
2312 pmbox->mbxStatus,
2313 pmbox->un.varWords[0],
2314 pmb->vport->port_state);
dea3101e 2315 pmbox->mbxStatus = 0;
2316 pmbox->mbxOwner = OWN_HOST;
dea3101e 2317 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
04c68496 2318 if (rc != MBX_NOT_FINISHED)
92d7f7b0 2319 continue;
dea3101e 2320 }
2321 }
2322
2323 /* Mailbox cmd <cmd> Cmpl <cmpl> */
92d7f7b0 2324 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
a183a15f 2325 "(%d):0307 Mailbox cmd x%x (x%x/x%x) Cmpl x%p "
e74c03c8
JS
2326 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x "
2327 "x%x x%x x%x\n",
92d7f7b0 2328 pmb->vport ? pmb->vport->vpi : 0,
dea3101e 2329 pmbox->mbxCommand,
a183a15f
JS
2330 lpfc_sli_config_mbox_subsys_get(phba, pmb),
2331 lpfc_sli_config_mbox_opcode_get(phba, pmb),
dea3101e 2332 pmb->mbox_cmpl,
2333 *((uint32_t *) pmbox),
2334 pmbox->un.varWords[0],
2335 pmbox->un.varWords[1],
2336 pmbox->un.varWords[2],
2337 pmbox->un.varWords[3],
2338 pmbox->un.varWords[4],
2339 pmbox->un.varWords[5],
2340 pmbox->un.varWords[6],
e74c03c8
JS
2341 pmbox->un.varWords[7],
2342 pmbox->un.varWords[8],
2343 pmbox->un.varWords[9],
2344 pmbox->un.varWords[10]);
dea3101e 2345
92d7f7b0 2346 if (pmb->mbox_cmpl)
dea3101e 2347 pmb->mbox_cmpl(phba,pmb);
92d7f7b0
JS
2348 } while (1);
2349 return 0;
2350}
dea3101e 2351
e59058c4 2352/**
3621a710 2353 * lpfc_sli_get_buff - Get the buffer associated with the buffer tag
e59058c4
JS
2354 * @phba: Pointer to HBA context object.
2355 * @pring: Pointer to driver SLI ring object.
2356 * @tag: buffer tag.
2357 *
2358 * This function is called with no lock held. When QUE_BUFTAG_BIT bit
2359 * is set in the tag the buffer is posted for a particular exchange,
2360 * the function will return the buffer without replacing the buffer.
2361 * If the buffer is for unsolicited ELS or CT traffic, this function
2362 * returns the buffer and also posts another buffer to the firmware.
2363 **/
76bb24ef
JS
2364static struct lpfc_dmabuf *
2365lpfc_sli_get_buff(struct lpfc_hba *phba,
9f1e1b50
JS
2366 struct lpfc_sli_ring *pring,
2367 uint32_t tag)
76bb24ef 2368{
9f1e1b50
JS
2369 struct hbq_dmabuf *hbq_entry;
2370
76bb24ef
JS
2371 if (tag & QUE_BUFTAG_BIT)
2372 return lpfc_sli_ring_taggedbuf_get(phba, pring, tag);
9f1e1b50
JS
2373 hbq_entry = lpfc_sli_hbqbuf_find(phba, tag);
2374 if (!hbq_entry)
2375 return NULL;
2376 return &hbq_entry->dbuf;
76bb24ef 2377}
57127f15 2378
3772a991
JS
2379/**
2380 * lpfc_complete_unsol_iocb - Complete an unsolicited sequence
2381 * @phba: Pointer to HBA context object.
2382 * @pring: Pointer to driver SLI ring object.
2383 * @saveq: Pointer to the iocbq struct representing the sequence starting frame.
2384 * @fch_r_ctl: the r_ctl for the first frame of the sequence.
2385 * @fch_type: the type for the first frame of the sequence.
2386 *
2387 * This function is called with no lock held. This function uses the r_ctl and
2388 * type of the received sequence to find the correct callback function to call
2389 * to process the sequence.
2390 **/
2391static int
2392lpfc_complete_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2393 struct lpfc_iocbq *saveq, uint32_t fch_r_ctl,
2394 uint32_t fch_type)
2395{
2396 int i;
2397
2398 /* unSolicited Responses */
2399 if (pring->prt[0].profile) {
2400 if (pring->prt[0].lpfc_sli_rcv_unsol_event)
2401 (pring->prt[0].lpfc_sli_rcv_unsol_event) (phba, pring,
2402 saveq);
2403 return 1;
2404 }
2405 /* We must search, based on rctl / type
2406 for the right routine */
2407 for (i = 0; i < pring->num_mask; i++) {
2408 if ((pring->prt[i].rctl == fch_r_ctl) &&
2409 (pring->prt[i].type == fch_type)) {
2410 if (pring->prt[i].lpfc_sli_rcv_unsol_event)
2411 (pring->prt[i].lpfc_sli_rcv_unsol_event)
2412 (phba, pring, saveq);
2413 return 1;
2414 }
2415 }
2416 return 0;
2417}
e59058c4
JS
2418
2419/**
3621a710 2420 * lpfc_sli_process_unsol_iocb - Unsolicited iocb handler
e59058c4
JS
2421 * @phba: Pointer to HBA context object.
2422 * @pring: Pointer to driver SLI ring object.
2423 * @saveq: Pointer to the unsolicited iocb.
2424 *
2425 * This function is called with no lock held by the ring event handler
2426 * when there is an unsolicited iocb posted to the response ring by the
2427 * firmware. This function gets the buffer associated with the iocbs
2428 * and calls the event handler for the ring. This function handles both
2429 * qring buffers and hbq buffers.
2430 * When the function returns 1 the caller can free the iocb object otherwise
2431 * upper layer functions will free the iocb objects.
2432 **/
dea3101e 2433static int
2434lpfc_sli_process_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2435 struct lpfc_iocbq *saveq)
2436{
2437 IOCB_t * irsp;
2438 WORD5 * w5p;
2439 uint32_t Rctl, Type;
3772a991 2440 uint32_t match;
76bb24ef 2441 struct lpfc_iocbq *iocbq;
3163f725 2442 struct lpfc_dmabuf *dmzbuf;
dea3101e 2443
2444 match = 0;
2445 irsp = &(saveq->iocb);
57127f15
JS
2446
2447 if (irsp->ulpCommand == CMD_ASYNC_STATUS) {
2448 if (pring->lpfc_sli_rcv_async_status)
2449 pring->lpfc_sli_rcv_async_status(phba, pring, saveq);
2450 else
2451 lpfc_printf_log(phba,
2452 KERN_WARNING,
2453 LOG_SLI,
2454 "0316 Ring %d handler: unexpected "
2455 "ASYNC_STATUS iocb received evt_code "
2456 "0x%x\n",
2457 pring->ringno,
2458 irsp->un.asyncstat.evt_code);
2459 return 1;
2460 }
2461
3163f725
JS
2462 if ((irsp->ulpCommand == CMD_IOCB_RET_XRI64_CX) &&
2463 (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED)) {
2464 if (irsp->ulpBdeCount > 0) {
2465 dmzbuf = lpfc_sli_get_buff(phba, pring,
2466 irsp->un.ulpWord[3]);
2467 lpfc_in_buf_free(phba, dmzbuf);
2468 }
2469
2470 if (irsp->ulpBdeCount > 1) {
2471 dmzbuf = lpfc_sli_get_buff(phba, pring,
2472 irsp->unsli3.sli3Words[3]);
2473 lpfc_in_buf_free(phba, dmzbuf);
2474 }
2475
2476 if (irsp->ulpBdeCount > 2) {
2477 dmzbuf = lpfc_sli_get_buff(phba, pring,
2478 irsp->unsli3.sli3Words[7]);
2479 lpfc_in_buf_free(phba, dmzbuf);
2480 }
2481
2482 return 1;
2483 }
2484
92d7f7b0 2485 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
76bb24ef
JS
2486 if (irsp->ulpBdeCount != 0) {
2487 saveq->context2 = lpfc_sli_get_buff(phba, pring,
2488 irsp->un.ulpWord[3]);
2489 if (!saveq->context2)
2490 lpfc_printf_log(phba,
2491 KERN_ERR,
2492 LOG_SLI,
2493 "0341 Ring %d Cannot find buffer for "
2494 "an unsolicited iocb. tag 0x%x\n",
2495 pring->ringno,
2496 irsp->un.ulpWord[3]);
76bb24ef
JS
2497 }
2498 if (irsp->ulpBdeCount == 2) {
2499 saveq->context3 = lpfc_sli_get_buff(phba, pring,
2500 irsp->unsli3.sli3Words[7]);
2501 if (!saveq->context3)
2502 lpfc_printf_log(phba,
2503 KERN_ERR,
2504 LOG_SLI,
2505 "0342 Ring %d Cannot find buffer for an"
2506 " unsolicited iocb. tag 0x%x\n",
2507 pring->ringno,
2508 irsp->unsli3.sli3Words[7]);
2509 }
2510 list_for_each_entry(iocbq, &saveq->list, list) {
76bb24ef 2511 irsp = &(iocbq->iocb);
76bb24ef
JS
2512 if (irsp->ulpBdeCount != 0) {
2513 iocbq->context2 = lpfc_sli_get_buff(phba, pring,
2514 irsp->un.ulpWord[3]);
9c2face6 2515 if (!iocbq->context2)
76bb24ef
JS
2516 lpfc_printf_log(phba,
2517 KERN_ERR,
2518 LOG_SLI,
2519 "0343 Ring %d Cannot find "
2520 "buffer for an unsolicited iocb"
2521 ". tag 0x%x\n", pring->ringno,
92d7f7b0 2522 irsp->un.ulpWord[3]);
76bb24ef
JS
2523 }
2524 if (irsp->ulpBdeCount == 2) {
2525 iocbq->context3 = lpfc_sli_get_buff(phba, pring,
51ef4c26 2526 irsp->unsli3.sli3Words[7]);
9c2face6 2527 if (!iocbq->context3)
76bb24ef
JS
2528 lpfc_printf_log(phba,
2529 KERN_ERR,
2530 LOG_SLI,
2531 "0344 Ring %d Cannot find "
2532 "buffer for an unsolicited "
2533 "iocb. tag 0x%x\n",
2534 pring->ringno,
2535 irsp->unsli3.sli3Words[7]);
2536 }
2537 }
92d7f7b0 2538 }
9c2face6
JS
2539 if (irsp->ulpBdeCount != 0 &&
2540 (irsp->ulpCommand == CMD_IOCB_RCV_CONT64_CX ||
2541 irsp->ulpStatus == IOSTAT_INTERMED_RSP)) {
2542 int found = 0;
2543
2544 /* search continue save q for same XRI */
2545 list_for_each_entry(iocbq, &pring->iocb_continue_saveq, clist) {
7851fe2c
JS
2546 if (iocbq->iocb.unsli3.rcvsli3.ox_id ==
2547 saveq->iocb.unsli3.rcvsli3.ox_id) {
9c2face6
JS
2548 list_add_tail(&saveq->list, &iocbq->list);
2549 found = 1;
2550 break;
2551 }
2552 }
2553 if (!found)
2554 list_add_tail(&saveq->clist,
2555 &pring->iocb_continue_saveq);
2556 if (saveq->iocb.ulpStatus != IOSTAT_INTERMED_RSP) {
2557 list_del_init(&iocbq->clist);
2558 saveq = iocbq;
2559 irsp = &(saveq->iocb);
2560 } else
2561 return 0;
2562 }
2563 if ((irsp->ulpCommand == CMD_RCV_ELS_REQ64_CX) ||
2564 (irsp->ulpCommand == CMD_RCV_ELS_REQ_CX) ||
2565 (irsp->ulpCommand == CMD_IOCB_RCV_ELS64_CX)) {
6a9c52cf
JS
2566 Rctl = FC_RCTL_ELS_REQ;
2567 Type = FC_TYPE_ELS;
9c2face6
JS
2568 } else {
2569 w5p = (WORD5 *)&(saveq->iocb.un.ulpWord[5]);
2570 Rctl = w5p->hcsw.Rctl;
2571 Type = w5p->hcsw.Type;
2572
2573 /* Firmware Workaround */
2574 if ((Rctl == 0) && (pring->ringno == LPFC_ELS_RING) &&
2575 (irsp->ulpCommand == CMD_RCV_SEQUENCE64_CX ||
2576 irsp->ulpCommand == CMD_IOCB_RCV_SEQ64_CX)) {
6a9c52cf
JS
2577 Rctl = FC_RCTL_ELS_REQ;
2578 Type = FC_TYPE_ELS;
9c2face6
JS
2579 w5p->hcsw.Rctl = Rctl;
2580 w5p->hcsw.Type = Type;
2581 }
2582 }
92d7f7b0 2583
3772a991 2584 if (!lpfc_complete_unsol_iocb(phba, pring, saveq, Rctl, Type))
92d7f7b0 2585 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
e8b62011 2586 "0313 Ring %d handler: unexpected Rctl x%x "
92d7f7b0 2587 "Type x%x received\n",
e8b62011 2588 pring->ringno, Rctl, Type);
3772a991 2589
92d7f7b0 2590 return 1;
dea3101e 2591}
2592
e59058c4 2593/**
3621a710 2594 * lpfc_sli_iocbq_lookup - Find command iocb for the given response iocb
e59058c4
JS
2595 * @phba: Pointer to HBA context object.
2596 * @pring: Pointer to driver SLI ring object.
2597 * @prspiocb: Pointer to response iocb object.
2598 *
2599 * This function looks up the iocb_lookup table to get the command iocb
2600 * corresponding to the given response iocb using the iotag of the
2601 * response iocb. This function is called with the hbalock held.
2602 * This function returns the command iocb object if it finds the command
2603 * iocb else returns NULL.
2604 **/
dea3101e 2605static struct lpfc_iocbq *
2e0fef85
JS
2606lpfc_sli_iocbq_lookup(struct lpfc_hba *phba,
2607 struct lpfc_sli_ring *pring,
2608 struct lpfc_iocbq *prspiocb)
dea3101e 2609{
dea3101e 2610 struct lpfc_iocbq *cmd_iocb = NULL;
2611 uint16_t iotag;
2612
604a3e30
JB
2613 iotag = prspiocb->iocb.ulpIoTag;
2614
2615 if (iotag != 0 && iotag <= phba->sli.last_iotag) {
2616 cmd_iocb = phba->sli.iocbq_lookup[iotag];
92d7f7b0 2617 list_del_init(&cmd_iocb->list);
4f2e66c6 2618 if (cmd_iocb->iocb_flag & LPFC_IO_ON_TXCMPLQ) {
4f2e66c6 2619 cmd_iocb->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
2a9bf3d0 2620 }
604a3e30 2621 return cmd_iocb;
dea3101e 2622 }
2623
dea3101e 2624 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011 2625 "0317 iotag x%x is out off "
604a3e30 2626 "range: max iotag x%x wd0 x%x\n",
e8b62011 2627 iotag, phba->sli.last_iotag,
604a3e30 2628 *(((uint32_t *) &prspiocb->iocb) + 7));
dea3101e 2629 return NULL;
2630}
2631
3772a991
JS
2632/**
2633 * lpfc_sli_iocbq_lookup_by_tag - Find command iocb for the iotag
2634 * @phba: Pointer to HBA context object.
2635 * @pring: Pointer to driver SLI ring object.
2636 * @iotag: IOCB tag.
2637 *
2638 * This function looks up the iocb_lookup table to get the command iocb
2639 * corresponding to the given iotag. This function is called with the
2640 * hbalock held.
2641 * This function returns the command iocb object if it finds the command
2642 * iocb else returns NULL.
2643 **/
2644static struct lpfc_iocbq *
2645lpfc_sli_iocbq_lookup_by_tag(struct lpfc_hba *phba,
2646 struct lpfc_sli_ring *pring, uint16_t iotag)
2647{
2648 struct lpfc_iocbq *cmd_iocb;
2649
2650 if (iotag != 0 && iotag <= phba->sli.last_iotag) {
2651 cmd_iocb = phba->sli.iocbq_lookup[iotag];
4f2e66c6
JS
2652 if (cmd_iocb->iocb_flag & LPFC_IO_ON_TXCMPLQ) {
2653 /* remove from txcmpl queue list */
2654 list_del_init(&cmd_iocb->list);
2655 cmd_iocb->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
4f2e66c6 2656 return cmd_iocb;
2a9bf3d0 2657 }
3772a991 2658 }
3772a991
JS
2659 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2660 "0372 iotag x%x is out off range: max iotag (x%x)\n",
2661 iotag, phba->sli.last_iotag);
2662 return NULL;
2663}
2664
e59058c4 2665/**
3621a710 2666 * lpfc_sli_process_sol_iocb - process solicited iocb completion
e59058c4
JS
2667 * @phba: Pointer to HBA context object.
2668 * @pring: Pointer to driver SLI ring object.
2669 * @saveq: Pointer to the response iocb to be processed.
2670 *
2671 * This function is called by the ring event handler for non-fcp
2672 * rings when there is a new response iocb in the response ring.
2673 * The caller is not required to hold any locks. This function
2674 * gets the command iocb associated with the response iocb and
2675 * calls the completion handler for the command iocb. If there
2676 * is no completion handler, the function will free the resources
2677 * associated with command iocb. If the response iocb is for
2678 * an already aborted command iocb, the status of the completion
2679 * is changed to IOSTAT_LOCAL_REJECT/IOERR_SLI_ABORTED.
2680 * This function always returns 1.
2681 **/
dea3101e 2682static int
2e0fef85 2683lpfc_sli_process_sol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
dea3101e 2684 struct lpfc_iocbq *saveq)
2685{
2e0fef85 2686 struct lpfc_iocbq *cmdiocbp;
dea3101e 2687 int rc = 1;
2688 unsigned long iflag;
2689
2690 /* Based on the iotag field, get the cmd IOCB from the txcmplq */
2e0fef85 2691 spin_lock_irqsave(&phba->hbalock, iflag);
604a3e30 2692 cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring, saveq);
2e0fef85
JS
2693 spin_unlock_irqrestore(&phba->hbalock, iflag);
2694
dea3101e 2695 if (cmdiocbp) {
2696 if (cmdiocbp->iocb_cmpl) {
ea2151b4
JS
2697 /*
2698 * If an ELS command failed send an event to mgmt
2699 * application.
2700 */
2701 if (saveq->iocb.ulpStatus &&
2702 (pring->ringno == LPFC_ELS_RING) &&
2703 (cmdiocbp->iocb.ulpCommand ==
2704 CMD_ELS_REQUEST64_CR))
2705 lpfc_send_els_failure_event(phba,
2706 cmdiocbp, saveq);
2707
dea3101e 2708 /*
2709 * Post all ELS completions to the worker thread.
2710 * All other are passed to the completion callback.
2711 */
2712 if (pring->ringno == LPFC_ELS_RING) {
341af102
JS
2713 if ((phba->sli_rev < LPFC_SLI_REV4) &&
2714 (cmdiocbp->iocb_flag &
2715 LPFC_DRIVER_ABORTED)) {
2716 spin_lock_irqsave(&phba->hbalock,
2717 iflag);
07951076
JS
2718 cmdiocbp->iocb_flag &=
2719 ~LPFC_DRIVER_ABORTED;
341af102
JS
2720 spin_unlock_irqrestore(&phba->hbalock,
2721 iflag);
07951076
JS
2722 saveq->iocb.ulpStatus =
2723 IOSTAT_LOCAL_REJECT;
2724 saveq->iocb.un.ulpWord[4] =
2725 IOERR_SLI_ABORTED;
0ff10d46
JS
2726
2727 /* Firmware could still be in progress
2728 * of DMAing payload, so don't free data
2729 * buffer till after a hbeat.
2730 */
341af102
JS
2731 spin_lock_irqsave(&phba->hbalock,
2732 iflag);
0ff10d46 2733 saveq->iocb_flag |= LPFC_DELAY_MEM_FREE;
341af102
JS
2734 spin_unlock_irqrestore(&phba->hbalock,
2735 iflag);
2736 }
0f65ff68
JS
2737 if (phba->sli_rev == LPFC_SLI_REV4) {
2738 if (saveq->iocb_flag &
2739 LPFC_EXCHANGE_BUSY) {
2740 /* Set cmdiocb flag for the
2741 * exchange busy so sgl (xri)
2742 * will not be released until
2743 * the abort xri is received
2744 * from hba.
2745 */
2746 spin_lock_irqsave(
2747 &phba->hbalock, iflag);
2748 cmdiocbp->iocb_flag |=
2749 LPFC_EXCHANGE_BUSY;
2750 spin_unlock_irqrestore(
2751 &phba->hbalock, iflag);
2752 }
2753 if (cmdiocbp->iocb_flag &
2754 LPFC_DRIVER_ABORTED) {
2755 /*
2756 * Clear LPFC_DRIVER_ABORTED
2757 * bit in case it was driver
2758 * initiated abort.
2759 */
2760 spin_lock_irqsave(
2761 &phba->hbalock, iflag);
2762 cmdiocbp->iocb_flag &=
2763 ~LPFC_DRIVER_ABORTED;
2764 spin_unlock_irqrestore(
2765 &phba->hbalock, iflag);
2766 cmdiocbp->iocb.ulpStatus =
2767 IOSTAT_LOCAL_REJECT;
2768 cmdiocbp->iocb.un.ulpWord[4] =
2769 IOERR_ABORT_REQUESTED;
2770 /*
2771 * For SLI4, irsiocb contains
2772 * NO_XRI in sli_xritag, it
2773 * shall not affect releasing
2774 * sgl (xri) process.
2775 */
2776 saveq->iocb.ulpStatus =
2777 IOSTAT_LOCAL_REJECT;
2778 saveq->iocb.un.ulpWord[4] =
2779 IOERR_SLI_ABORTED;
2780 spin_lock_irqsave(
2781 &phba->hbalock, iflag);
2782 saveq->iocb_flag |=
2783 LPFC_DELAY_MEM_FREE;
2784 spin_unlock_irqrestore(
2785 &phba->hbalock, iflag);
2786 }
07951076 2787 }
dea3101e 2788 }
2e0fef85 2789 (cmdiocbp->iocb_cmpl) (phba, cmdiocbp, saveq);
604a3e30
JB
2790 } else
2791 lpfc_sli_release_iocbq(phba, cmdiocbp);
dea3101e 2792 } else {
2793 /*
2794 * Unknown initiating command based on the response iotag.
2795 * This could be the case on the ELS ring because of
2796 * lpfc_els_abort().
2797 */
2798 if (pring->ringno != LPFC_ELS_RING) {
2799 /*
2800 * Ring <ringno> handler: unexpected completion IoTag
2801 * <IoTag>
2802 */
a257bf90 2803 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
e8b62011
JS
2804 "0322 Ring %d handler: "
2805 "unexpected completion IoTag x%x "
2806 "Data: x%x x%x x%x x%x\n",
2807 pring->ringno,
2808 saveq->iocb.ulpIoTag,
2809 saveq->iocb.ulpStatus,
2810 saveq->iocb.un.ulpWord[4],
2811 saveq->iocb.ulpCommand,
2812 saveq->iocb.ulpContext);
dea3101e 2813 }
2814 }
68876920 2815
dea3101e 2816 return rc;
2817}
2818
e59058c4 2819/**
3621a710 2820 * lpfc_sli_rsp_pointers_error - Response ring pointer error handler
e59058c4
JS
2821 * @phba: Pointer to HBA context object.
2822 * @pring: Pointer to driver SLI ring object.
2823 *
2824 * This function is called from the iocb ring event handlers when
2825 * put pointer is ahead of the get pointer for a ring. This function signal
2826 * an error attention condition to the worker thread and the worker
2827 * thread will transition the HBA to offline state.
2828 **/
2e0fef85
JS
2829static void
2830lpfc_sli_rsp_pointers_error(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
875fbdfe 2831{
34b02dcd 2832 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
875fbdfe 2833 /*
025dfdaf 2834 * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
875fbdfe
JSEC
2835 * rsp ring <portRspMax>
2836 */
2837 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011 2838 "0312 Ring %d handler: portRspPut %d "
025dfdaf 2839 "is bigger than rsp ring %d\n",
e8b62011 2840 pring->ringno, le32_to_cpu(pgp->rspPutInx),
7e56aa25 2841 pring->sli.sli3.numRiocb);
875fbdfe 2842
2e0fef85 2843 phba->link_state = LPFC_HBA_ERROR;
875fbdfe
JSEC
2844
2845 /*
2846 * All error attention handlers are posted to
2847 * worker thread
2848 */
2849 phba->work_ha |= HA_ERATT;
2850 phba->work_hs = HS_FFER3;
92d7f7b0 2851
5e9d9b82 2852 lpfc_worker_wake_up(phba);
875fbdfe
JSEC
2853
2854 return;
2855}
2856
9399627f 2857/**
3621a710 2858 * lpfc_poll_eratt - Error attention polling timer timeout handler
9399627f
JS
2859 * @ptr: Pointer to address of HBA context object.
2860 *
2861 * This function is invoked by the Error Attention polling timer when the
2862 * timer times out. It will check the SLI Error Attention register for
2863 * possible attention events. If so, it will post an Error Attention event
2864 * and wake up worker thread to process it. Otherwise, it will set up the
2865 * Error Attention polling timer for the next poll.
2866 **/
2867void lpfc_poll_eratt(unsigned long ptr)
2868{
2869 struct lpfc_hba *phba;
aa6fbb75
JS
2870 uint32_t eratt = 0, rem;
2871 uint64_t sli_intr, cnt;
9399627f
JS
2872
2873 phba = (struct lpfc_hba *)ptr;
2874
aa6fbb75
JS
2875 /* Here we will also keep track of interrupts per sec of the hba */
2876 sli_intr = phba->sli.slistat.sli_intr;
2877
2878 if (phba->sli.slistat.sli_prev_intr > sli_intr)
2879 cnt = (((uint64_t)(-1) - phba->sli.slistat.sli_prev_intr) +
2880 sli_intr);
2881 else
2882 cnt = (sli_intr - phba->sli.slistat.sli_prev_intr);
2883
2884 /* 64-bit integer division not supporte on 32-bit x86 - use do_div */
2885 rem = do_div(cnt, LPFC_ERATT_POLL_INTERVAL);
2886 phba->sli.slistat.sli_ips = cnt;
2887
2888 phba->sli.slistat.sli_prev_intr = sli_intr;
2889
9399627f
JS
2890 /* Check chip HA register for error event */
2891 eratt = lpfc_sli_check_eratt(phba);
2892
2893 if (eratt)
2894 /* Tell the worker thread there is work to do */
2895 lpfc_worker_wake_up(phba);
2896 else
2897 /* Restart the timer for next eratt poll */
256ec0d0
JS
2898 mod_timer(&phba->eratt_poll,
2899 jiffies +
2900 msecs_to_jiffies(1000 * LPFC_ERATT_POLL_INTERVAL));
9399627f
JS
2901 return;
2902}
2903
875fbdfe 2904
e59058c4 2905/**
3621a710 2906 * lpfc_sli_handle_fast_ring_event - Handle ring events on FCP ring
e59058c4
JS
2907 * @phba: Pointer to HBA context object.
2908 * @pring: Pointer to driver SLI ring object.
2909 * @mask: Host attention register mask for this ring.
2910 *
2911 * This function is called from the interrupt context when there is a ring
2912 * event for the fcp ring. The caller does not hold any lock.
2913 * The function processes each response iocb in the response ring until it
25985edc 2914 * finds an iocb with LE bit set and chains all the iocbs up to the iocb with
e59058c4
JS
2915 * LE bit set. The function will call the completion handler of the command iocb
2916 * if the response iocb indicates a completion for a command iocb or it is
2917 * an abort completion. The function will call lpfc_sli_process_unsol_iocb
2918 * function if this is an unsolicited iocb.
dea3101e 2919 * This routine presumes LPFC_FCP_RING handling and doesn't bother
45ed1190
JS
2920 * to check it explicitly.
2921 */
2922int
2e0fef85
JS
2923lpfc_sli_handle_fast_ring_event(struct lpfc_hba *phba,
2924 struct lpfc_sli_ring *pring, uint32_t mask)
dea3101e 2925{
34b02dcd 2926 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
dea3101e 2927 IOCB_t *irsp = NULL;
87f6eaff 2928 IOCB_t *entry = NULL;
dea3101e 2929 struct lpfc_iocbq *cmdiocbq = NULL;
2930 struct lpfc_iocbq rspiocbq;
dea3101e 2931 uint32_t status;
2932 uint32_t portRspPut, portRspMax;
2933 int rc = 1;
2934 lpfc_iocb_type type;
2935 unsigned long iflag;
2936 uint32_t rsp_cmpl = 0;
dea3101e 2937
2e0fef85 2938 spin_lock_irqsave(&phba->hbalock, iflag);
dea3101e 2939 pring->stats.iocb_event++;
2940
dea3101e 2941 /*
2942 * The next available response entry should never exceed the maximum
2943 * entries. If it does, treat it as an adapter hardware error.
2944 */
7e56aa25 2945 portRspMax = pring->sli.sli3.numRiocb;
dea3101e 2946 portRspPut = le32_to_cpu(pgp->rspPutInx);
2947 if (unlikely(portRspPut >= portRspMax)) {
875fbdfe 2948 lpfc_sli_rsp_pointers_error(phba, pring);
2e0fef85 2949 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea3101e 2950 return 1;
2951 }
45ed1190
JS
2952 if (phba->fcp_ring_in_use) {
2953 spin_unlock_irqrestore(&phba->hbalock, iflag);
2954 return 1;
2955 } else
2956 phba->fcp_ring_in_use = 1;
dea3101e 2957
2958 rmb();
7e56aa25 2959 while (pring->sli.sli3.rspidx != portRspPut) {
87f6eaff
JSEC
2960 /*
2961 * Fetch an entry off the ring and copy it into a local data
2962 * structure. The copy involves a byte-swap since the
2963 * network byte order and pci byte orders are different.
2964 */
ed957684 2965 entry = lpfc_resp_iocb(phba, pring);
858c9f6c 2966 phba->last_completion_time = jiffies;
875fbdfe 2967
7e56aa25
JS
2968 if (++pring->sli.sli3.rspidx >= portRspMax)
2969 pring->sli.sli3.rspidx = 0;
875fbdfe 2970
87f6eaff
JSEC
2971 lpfc_sli_pcimem_bcopy((uint32_t *) entry,
2972 (uint32_t *) &rspiocbq.iocb,
ed957684 2973 phba->iocb_rsp_size);
a4bc3379 2974 INIT_LIST_HEAD(&(rspiocbq.list));
87f6eaff
JSEC
2975 irsp = &rspiocbq.iocb;
2976
dea3101e 2977 type = lpfc_sli_iocb_cmd_type(irsp->ulpCommand & CMD_IOCB_MASK);
2978 pring->stats.iocb_rsp++;
2979 rsp_cmpl++;
2980
2981 if (unlikely(irsp->ulpStatus)) {
92d7f7b0
JS
2982 /*
2983 * If resource errors reported from HBA, reduce
2984 * queuedepths of the SCSI device.
2985 */
2986 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
e3d2b802
JS
2987 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
2988 IOERR_NO_RESOURCES)) {
92d7f7b0 2989 spin_unlock_irqrestore(&phba->hbalock, iflag);
3772a991 2990 phba->lpfc_rampdown_queue_depth(phba);
92d7f7b0
JS
2991 spin_lock_irqsave(&phba->hbalock, iflag);
2992 }
2993
dea3101e 2994 /* Rsp ring <ringno> error: IOCB */
2995 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
e8b62011 2996 "0336 Rsp Ring %d error: IOCB Data: "
92d7f7b0 2997 "x%x x%x x%x x%x x%x x%x x%x x%x\n",
e8b62011 2998 pring->ringno,
92d7f7b0
JS
2999 irsp->un.ulpWord[0],
3000 irsp->un.ulpWord[1],
3001 irsp->un.ulpWord[2],
3002 irsp->un.ulpWord[3],
3003 irsp->un.ulpWord[4],
3004 irsp->un.ulpWord[5],
d7c255b2
JS
3005 *(uint32_t *)&irsp->un1,
3006 *((uint32_t *)&irsp->un1 + 1));
dea3101e 3007 }
3008
3009 switch (type) {
3010 case LPFC_ABORT_IOCB:
3011 case LPFC_SOL_IOCB:
3012 /*
3013 * Idle exchange closed via ABTS from port. No iocb
3014 * resources need to be recovered.
3015 */
3016 if (unlikely(irsp->ulpCommand == CMD_XRI_ABORTED_CX)) {
dca9479b 3017 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
e8b62011 3018 "0333 IOCB cmd 0x%x"
dca9479b 3019 " processed. Skipping"
92d7f7b0 3020 " completion\n",
dca9479b 3021 irsp->ulpCommand);
dea3101e 3022 break;
3023 }
3024
604a3e30
JB
3025 cmdiocbq = lpfc_sli_iocbq_lookup(phba, pring,
3026 &rspiocbq);
0f65ff68
JS
3027 if (unlikely(!cmdiocbq))
3028 break;
3029 if (cmdiocbq->iocb_flag & LPFC_DRIVER_ABORTED)
3030 cmdiocbq->iocb_flag &= ~LPFC_DRIVER_ABORTED;
3031 if (cmdiocbq->iocb_cmpl) {
3032 spin_unlock_irqrestore(&phba->hbalock, iflag);
3033 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq,
3034 &rspiocbq);
3035 spin_lock_irqsave(&phba->hbalock, iflag);
3036 }
dea3101e 3037 break;
a4bc3379 3038 case LPFC_UNSOL_IOCB:
2e0fef85 3039 spin_unlock_irqrestore(&phba->hbalock, iflag);
a4bc3379 3040 lpfc_sli_process_unsol_iocb(phba, pring, &rspiocbq);
2e0fef85 3041 spin_lock_irqsave(&phba->hbalock, iflag);
a4bc3379 3042 break;
dea3101e 3043 default:
3044 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
3045 char adaptermsg[LPFC_MAX_ADPTMSG];
3046 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
3047 memcpy(&adaptermsg[0], (uint8_t *) irsp,
3048 MAX_MSG_DATA);
898eb71c
JP
3049 dev_warn(&((phba->pcidev)->dev),
3050 "lpfc%d: %s\n",
dea3101e 3051 phba->brd_no, adaptermsg);
3052 } else {
3053 /* Unknown IOCB command */
3054 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011 3055 "0334 Unknown IOCB command "
92d7f7b0 3056 "Data: x%x, x%x x%x x%x x%x\n",
e8b62011 3057 type, irsp->ulpCommand,
92d7f7b0
JS
3058 irsp->ulpStatus,
3059 irsp->ulpIoTag,
3060 irsp->ulpContext);
dea3101e 3061 }
3062 break;
3063 }
3064
3065 /*
3066 * The response IOCB has been processed. Update the ring
3067 * pointer in SLIM. If the port response put pointer has not
3068 * been updated, sync the pgp->rspPutInx and fetch the new port
3069 * response put pointer.
3070 */
7e56aa25
JS
3071 writel(pring->sli.sli3.rspidx,
3072 &phba->host_gp[pring->ringno].rspGetInx);
dea3101e 3073
7e56aa25 3074 if (pring->sli.sli3.rspidx == portRspPut)
dea3101e 3075 portRspPut = le32_to_cpu(pgp->rspPutInx);
3076 }
3077
3078 if ((rsp_cmpl > 0) && (mask & HA_R0RE_REQ)) {
3079 pring->stats.iocb_rsp_full++;
3080 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
3081 writel(status, phba->CAregaddr);
3082 readl(phba->CAregaddr);
3083 }
3084 if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
3085 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
3086 pring->stats.iocb_cmd_empty++;
3087
3088 /* Force update of the local copy of cmdGetInx */
7e56aa25 3089 pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
dea3101e 3090 lpfc_sli_resume_iocb(phba, pring);
3091
3092 if ((pring->lpfc_sli_cmd_available))
3093 (pring->lpfc_sli_cmd_available) (phba, pring);
3094
3095 }
3096
45ed1190 3097 phba->fcp_ring_in_use = 0;
2e0fef85 3098 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea3101e 3099 return rc;
3100}
3101
e59058c4 3102/**
3772a991
JS
3103 * lpfc_sli_sp_handle_rspiocb - Handle slow-path response iocb
3104 * @phba: Pointer to HBA context object.
3105 * @pring: Pointer to driver SLI ring object.
3106 * @rspiocbp: Pointer to driver response IOCB object.
3107 *
3108 * This function is called from the worker thread when there is a slow-path
3109 * response IOCB to process. This function chains all the response iocbs until
3110 * seeing the iocb with the LE bit set. The function will call
3111 * lpfc_sli_process_sol_iocb function if the response iocb indicates a
3112 * completion of a command iocb. The function will call the
3113 * lpfc_sli_process_unsol_iocb function if this is an unsolicited iocb.
3114 * The function frees the resources or calls the completion handler if this
3115 * iocb is an abort completion. The function returns NULL when the response
3116 * iocb has the LE bit set and all the chained iocbs are processed, otherwise
3117 * this function shall chain the iocb on to the iocb_continueq and return the
3118 * response iocb passed in.
3119 **/
3120static struct lpfc_iocbq *
3121lpfc_sli_sp_handle_rspiocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
3122 struct lpfc_iocbq *rspiocbp)
3123{
3124 struct lpfc_iocbq *saveq;
3125 struct lpfc_iocbq *cmdiocbp;
3126 struct lpfc_iocbq *next_iocb;
3127 IOCB_t *irsp = NULL;
3128 uint32_t free_saveq;
3129 uint8_t iocb_cmd_type;
3130 lpfc_iocb_type type;
3131 unsigned long iflag;
3132 int rc;
3133
3134 spin_lock_irqsave(&phba->hbalock, iflag);
3135 /* First add the response iocb to the countinueq list */
3136 list_add_tail(&rspiocbp->list, &(pring->iocb_continueq));
3137 pring->iocb_continueq_cnt++;
3138
70f23fd6 3139 /* Now, determine whether the list is completed for processing */
3772a991
JS
3140 irsp = &rspiocbp->iocb;
3141 if (irsp->ulpLe) {
3142 /*
3143 * By default, the driver expects to free all resources
3144 * associated with this iocb completion.
3145 */
3146 free_saveq = 1;
3147 saveq = list_get_first(&pring->iocb_continueq,
3148 struct lpfc_iocbq, list);
3149 irsp = &(saveq->iocb);
3150 list_del_init(&pring->iocb_continueq);
3151 pring->iocb_continueq_cnt = 0;
3152
3153 pring->stats.iocb_rsp++;
3154
3155 /*
3156 * If resource errors reported from HBA, reduce
3157 * queuedepths of the SCSI device.
3158 */
3159 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
e3d2b802
JS
3160 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
3161 IOERR_NO_RESOURCES)) {
3772a991
JS
3162 spin_unlock_irqrestore(&phba->hbalock, iflag);
3163 phba->lpfc_rampdown_queue_depth(phba);
3164 spin_lock_irqsave(&phba->hbalock, iflag);
3165 }
3166
3167 if (irsp->ulpStatus) {
3168 /* Rsp ring <ringno> error: IOCB */
3169 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
3170 "0328 Rsp Ring %d error: "
3171 "IOCB Data: "
3172 "x%x x%x x%x x%x "
3173 "x%x x%x x%x x%x "
3174 "x%x x%x x%x x%x "
3175 "x%x x%x x%x x%x\n",
3176 pring->ringno,
3177 irsp->un.ulpWord[0],
3178 irsp->un.ulpWord[1],
3179 irsp->un.ulpWord[2],
3180 irsp->un.ulpWord[3],
3181 irsp->un.ulpWord[4],
3182 irsp->un.ulpWord[5],
3183 *(((uint32_t *) irsp) + 6),
3184 *(((uint32_t *) irsp) + 7),
3185 *(((uint32_t *) irsp) + 8),
3186 *(((uint32_t *) irsp) + 9),
3187 *(((uint32_t *) irsp) + 10),
3188 *(((uint32_t *) irsp) + 11),
3189 *(((uint32_t *) irsp) + 12),
3190 *(((uint32_t *) irsp) + 13),
3191 *(((uint32_t *) irsp) + 14),
3192 *(((uint32_t *) irsp) + 15));
3193 }
3194
3195 /*
3196 * Fetch the IOCB command type and call the correct completion
3197 * routine. Solicited and Unsolicited IOCBs on the ELS ring
3198 * get freed back to the lpfc_iocb_list by the discovery
3199 * kernel thread.
3200 */
3201 iocb_cmd_type = irsp->ulpCommand & CMD_IOCB_MASK;
3202 type = lpfc_sli_iocb_cmd_type(iocb_cmd_type);
3203 switch (type) {
3204 case LPFC_SOL_IOCB:
3205 spin_unlock_irqrestore(&phba->hbalock, iflag);
3206 rc = lpfc_sli_process_sol_iocb(phba, pring, saveq);
3207 spin_lock_irqsave(&phba->hbalock, iflag);
3208 break;
3209
3210 case LPFC_UNSOL_IOCB:
3211 spin_unlock_irqrestore(&phba->hbalock, iflag);
3212 rc = lpfc_sli_process_unsol_iocb(phba, pring, saveq);
3213 spin_lock_irqsave(&phba->hbalock, iflag);
3214 if (!rc)
3215 free_saveq = 0;
3216 break;
3217
3218 case LPFC_ABORT_IOCB:
3219 cmdiocbp = NULL;
3220 if (irsp->ulpCommand != CMD_XRI_ABORTED_CX)
3221 cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring,
3222 saveq);
3223 if (cmdiocbp) {
3224 /* Call the specified completion routine */
3225 if (cmdiocbp->iocb_cmpl) {
3226 spin_unlock_irqrestore(&phba->hbalock,
3227 iflag);
3228 (cmdiocbp->iocb_cmpl)(phba, cmdiocbp,
3229 saveq);
3230 spin_lock_irqsave(&phba->hbalock,
3231 iflag);
3232 } else
3233 __lpfc_sli_release_iocbq(phba,
3234 cmdiocbp);
3235 }
3236 break;
3237
3238 case LPFC_UNKNOWN_IOCB:
3239 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
3240 char adaptermsg[LPFC_MAX_ADPTMSG];
3241 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
3242 memcpy(&adaptermsg[0], (uint8_t *)irsp,
3243 MAX_MSG_DATA);
3244 dev_warn(&((phba->pcidev)->dev),
3245 "lpfc%d: %s\n",
3246 phba->brd_no, adaptermsg);
3247 } else {
3248 /* Unknown IOCB command */
3249 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3250 "0335 Unknown IOCB "
3251 "command Data: x%x "
3252 "x%x x%x x%x\n",
3253 irsp->ulpCommand,
3254 irsp->ulpStatus,
3255 irsp->ulpIoTag,
3256 irsp->ulpContext);
3257 }
3258 break;
3259 }
3260
3261 if (free_saveq) {
3262 list_for_each_entry_safe(rspiocbp, next_iocb,
3263 &saveq->list, list) {
61f35bff 3264 list_del_init(&rspiocbp->list);
3772a991
JS
3265 __lpfc_sli_release_iocbq(phba, rspiocbp);
3266 }
3267 __lpfc_sli_release_iocbq(phba, saveq);
3268 }
3269 rspiocbp = NULL;
3270 }
3271 spin_unlock_irqrestore(&phba->hbalock, iflag);
3272 return rspiocbp;
3273}
3274
3275/**
3276 * lpfc_sli_handle_slow_ring_event - Wrapper func for handling slow-path iocbs
e59058c4
JS
3277 * @phba: Pointer to HBA context object.
3278 * @pring: Pointer to driver SLI ring object.
3279 * @mask: Host attention register mask for this ring.
3280 *
3772a991
JS
3281 * This routine wraps the actual slow_ring event process routine from the
3282 * API jump table function pointer from the lpfc_hba struct.
e59058c4 3283 **/
3772a991 3284void
2e0fef85
JS
3285lpfc_sli_handle_slow_ring_event(struct lpfc_hba *phba,
3286 struct lpfc_sli_ring *pring, uint32_t mask)
3772a991
JS
3287{
3288 phba->lpfc_sli_handle_slow_ring_event(phba, pring, mask);
3289}
3290
3291/**
3292 * lpfc_sli_handle_slow_ring_event_s3 - Handle SLI3 ring event for non-FCP rings
3293 * @phba: Pointer to HBA context object.
3294 * @pring: Pointer to driver SLI ring object.
3295 * @mask: Host attention register mask for this ring.
3296 *
3297 * This function is called from the worker thread when there is a ring event
3298 * for non-fcp rings. The caller does not hold any lock. The function will
3299 * remove each response iocb in the response ring and calls the handle
3300 * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
3301 **/
3302static void
3303lpfc_sli_handle_slow_ring_event_s3(struct lpfc_hba *phba,
3304 struct lpfc_sli_ring *pring, uint32_t mask)
dea3101e 3305{
34b02dcd 3306 struct lpfc_pgp *pgp;
dea3101e 3307 IOCB_t *entry;
3308 IOCB_t *irsp = NULL;
3309 struct lpfc_iocbq *rspiocbp = NULL;
dea3101e 3310 uint32_t portRspPut, portRspMax;
dea3101e 3311 unsigned long iflag;
3772a991 3312 uint32_t status;
dea3101e 3313
34b02dcd 3314 pgp = &phba->port_gp[pring->ringno];
2e0fef85 3315 spin_lock_irqsave(&phba->hbalock, iflag);
dea3101e 3316 pring->stats.iocb_event++;
3317
dea3101e 3318 /*
3319 * The next available response entry should never exceed the maximum
3320 * entries. If it does, treat it as an adapter hardware error.
3321 */
7e56aa25 3322 portRspMax = pring->sli.sli3.numRiocb;
dea3101e 3323 portRspPut = le32_to_cpu(pgp->rspPutInx);
3324 if (portRspPut >= portRspMax) {
3325 /*
025dfdaf 3326 * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
dea3101e 3327 * rsp ring <portRspMax>
3328 */
ed957684 3329 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011 3330 "0303 Ring %d handler: portRspPut %d "
025dfdaf 3331 "is bigger than rsp ring %d\n",
e8b62011 3332 pring->ringno, portRspPut, portRspMax);
dea3101e 3333
2e0fef85
JS
3334 phba->link_state = LPFC_HBA_ERROR;
3335 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea3101e 3336
3337 phba->work_hs = HS_FFER3;
3338 lpfc_handle_eratt(phba);
3339
3772a991 3340 return;
dea3101e 3341 }
3342
3343 rmb();
7e56aa25 3344 while (pring->sli.sli3.rspidx != portRspPut) {
dea3101e 3345 /*
3346 * Build a completion list and call the appropriate handler.
3347 * The process is to get the next available response iocb, get
3348 * a free iocb from the list, copy the response data into the
3349 * free iocb, insert to the continuation list, and update the
3350 * next response index to slim. This process makes response
3351 * iocb's in the ring available to DMA as fast as possible but
3352 * pays a penalty for a copy operation. Since the iocb is
3353 * only 32 bytes, this penalty is considered small relative to
3354 * the PCI reads for register values and a slim write. When
3355 * the ulpLe field is set, the entire Command has been
3356 * received.
3357 */
ed957684
JS
3358 entry = lpfc_resp_iocb(phba, pring);
3359
858c9f6c 3360 phba->last_completion_time = jiffies;
2e0fef85 3361 rspiocbp = __lpfc_sli_get_iocbq(phba);
dea3101e 3362 if (rspiocbp == NULL) {
3363 printk(KERN_ERR "%s: out of buffers! Failing "
cadbd4a5 3364 "completion.\n", __func__);
dea3101e 3365 break;
3366 }
3367
ed957684
JS
3368 lpfc_sli_pcimem_bcopy(entry, &rspiocbp->iocb,
3369 phba->iocb_rsp_size);
dea3101e 3370 irsp = &rspiocbp->iocb;
3371
7e56aa25
JS
3372 if (++pring->sli.sli3.rspidx >= portRspMax)
3373 pring->sli.sli3.rspidx = 0;
dea3101e 3374
a58cbd52
JS
3375 if (pring->ringno == LPFC_ELS_RING) {
3376 lpfc_debugfs_slow_ring_trc(phba,
3377 "IOCB rsp ring: wd4:x%08x wd6:x%08x wd7:x%08x",
3378 *(((uint32_t *) irsp) + 4),
3379 *(((uint32_t *) irsp) + 6),
3380 *(((uint32_t *) irsp) + 7));
3381 }
3382
7e56aa25
JS
3383 writel(pring->sli.sli3.rspidx,
3384 &phba->host_gp[pring->ringno].rspGetInx);
dea3101e 3385
3772a991
JS
3386 spin_unlock_irqrestore(&phba->hbalock, iflag);
3387 /* Handle the response IOCB */
3388 rspiocbp = lpfc_sli_sp_handle_rspiocb(phba, pring, rspiocbp);
3389 spin_lock_irqsave(&phba->hbalock, iflag);
dea3101e 3390
3391 /*
3392 * If the port response put pointer has not been updated, sync
3393 * the pgp->rspPutInx in the MAILBOX_tand fetch the new port
3394 * response put pointer.
3395 */
7e56aa25 3396 if (pring->sli.sli3.rspidx == portRspPut) {
dea3101e 3397 portRspPut = le32_to_cpu(pgp->rspPutInx);
3398 }
7e56aa25 3399 } /* while (pring->sli.sli3.rspidx != portRspPut) */
dea3101e 3400
92d7f7b0 3401 if ((rspiocbp != NULL) && (mask & HA_R0RE_REQ)) {
dea3101e 3402 /* At least one response entry has been freed */
3403 pring->stats.iocb_rsp_full++;
3404 /* SET RxRE_RSP in Chip Att register */
3405 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
3406 writel(status, phba->CAregaddr);
3407 readl(phba->CAregaddr); /* flush */
3408 }
3409 if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
3410 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
3411 pring->stats.iocb_cmd_empty++;
3412
3413 /* Force update of the local copy of cmdGetInx */
7e56aa25 3414 pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
dea3101e 3415 lpfc_sli_resume_iocb(phba, pring);
3416
3417 if ((pring->lpfc_sli_cmd_available))
3418 (pring->lpfc_sli_cmd_available) (phba, pring);
3419
3420 }
3421
2e0fef85 3422 spin_unlock_irqrestore(&phba->hbalock, iflag);
3772a991 3423 return;
dea3101e 3424}
3425
4f774513
JS
3426/**
3427 * lpfc_sli_handle_slow_ring_event_s4 - Handle SLI4 slow-path els events
3428 * @phba: Pointer to HBA context object.
3429 * @pring: Pointer to driver SLI ring object.
3430 * @mask: Host attention register mask for this ring.
3431 *
3432 * This function is called from the worker thread when there is a pending
3433 * ELS response iocb on the driver internal slow-path response iocb worker
3434 * queue. The caller does not hold any lock. The function will remove each
3435 * response iocb from the response worker queue and calls the handle
3436 * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
3437 **/
3438static void
3439lpfc_sli_handle_slow_ring_event_s4(struct lpfc_hba *phba,
3440 struct lpfc_sli_ring *pring, uint32_t mask)
3441{
3442 struct lpfc_iocbq *irspiocbq;
4d9ab994
JS
3443 struct hbq_dmabuf *dmabuf;
3444 struct lpfc_cq_event *cq_event;
4f774513
JS
3445 unsigned long iflag;
3446
45ed1190
JS
3447 spin_lock_irqsave(&phba->hbalock, iflag);
3448 phba->hba_flag &= ~HBA_SP_QUEUE_EVT;
3449 spin_unlock_irqrestore(&phba->hbalock, iflag);
3450 while (!list_empty(&phba->sli4_hba.sp_queue_event)) {
4f774513
JS
3451 /* Get the response iocb from the head of work queue */
3452 spin_lock_irqsave(&phba->hbalock, iflag);
45ed1190 3453 list_remove_head(&phba->sli4_hba.sp_queue_event,
4d9ab994 3454 cq_event, struct lpfc_cq_event, list);
4f774513 3455 spin_unlock_irqrestore(&phba->hbalock, iflag);
4d9ab994
JS
3456
3457 switch (bf_get(lpfc_wcqe_c_code, &cq_event->cqe.wcqe_cmpl)) {
3458 case CQE_CODE_COMPL_WQE:
3459 irspiocbq = container_of(cq_event, struct lpfc_iocbq,
3460 cq_event);
45ed1190
JS
3461 /* Translate ELS WCQE to response IOCBQ */
3462 irspiocbq = lpfc_sli4_els_wcqe_to_rspiocbq(phba,
3463 irspiocbq);
3464 if (irspiocbq)
3465 lpfc_sli_sp_handle_rspiocb(phba, pring,
3466 irspiocbq);
4d9ab994
JS
3467 break;
3468 case CQE_CODE_RECEIVE:
7851fe2c 3469 case CQE_CODE_RECEIVE_V1:
4d9ab994
JS
3470 dmabuf = container_of(cq_event, struct hbq_dmabuf,
3471 cq_event);
3472 lpfc_sli4_handle_received_buffer(phba, dmabuf);
3473 break;
3474 default:
3475 break;
3476 }
4f774513
JS
3477 }
3478}
3479
e59058c4 3480/**
3621a710 3481 * lpfc_sli_abort_iocb_ring - Abort all iocbs in the ring
e59058c4
JS
3482 * @phba: Pointer to HBA context object.
3483 * @pring: Pointer to driver SLI ring object.
3484 *
3485 * This function aborts all iocbs in the given ring and frees all the iocb
3486 * objects in txq. This function issues an abort iocb for all the iocb commands
3487 * in txcmplq. The iocbs in the txcmplq is not guaranteed to complete before
3488 * the return of this function. The caller is not required to hold any locks.
3489 **/
2e0fef85 3490void
dea3101e 3491lpfc_sli_abort_iocb_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
3492{
2534ba75 3493 LIST_HEAD(completions);
dea3101e 3494 struct lpfc_iocbq *iocb, *next_iocb;
dea3101e 3495
92d7f7b0
JS
3496 if (pring->ringno == LPFC_ELS_RING) {
3497 lpfc_fabric_abort_hba(phba);
3498 }
3499
dea3101e 3500 /* Error everything on txq and txcmplq
3501 * First do the txq.
3502 */
2e0fef85 3503 spin_lock_irq(&phba->hbalock);
2534ba75 3504 list_splice_init(&pring->txq, &completions);
dea3101e 3505
3506 /* Next issue ABTS for everything on the txcmplq */
2534ba75
JS
3507 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
3508 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
dea3101e 3509
2e0fef85 3510 spin_unlock_irq(&phba->hbalock);
dea3101e 3511
a257bf90
JS
3512 /* Cancel all the IOCBs from the completions list */
3513 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
3514 IOERR_SLI_ABORTED);
dea3101e 3515}
3516
a8e497d5 3517/**
3621a710 3518 * lpfc_sli_flush_fcp_rings - flush all iocbs in the fcp ring
a8e497d5
JS
3519 * @phba: Pointer to HBA context object.
3520 *
3521 * This function flushes all iocbs in the fcp ring and frees all the iocb
3522 * objects in txq and txcmplq. This function will not issue abort iocbs
3523 * for all the iocb commands in txcmplq, they will just be returned with
3524 * IOERR_SLI_DOWN. This function is invoked with EEH when device's PCI
3525 * slot has been permanently disabled.
3526 **/
3527void
3528lpfc_sli_flush_fcp_rings(struct lpfc_hba *phba)
3529{
3530 LIST_HEAD(txq);
3531 LIST_HEAD(txcmplq);
a8e497d5
JS
3532 struct lpfc_sli *psli = &phba->sli;
3533 struct lpfc_sli_ring *pring;
3534
3535 /* Currently, only one fcp ring */
3536 pring = &psli->ring[psli->fcp_ring];
3537
3538 spin_lock_irq(&phba->hbalock);
3539 /* Retrieve everything on txq */
3540 list_splice_init(&pring->txq, &txq);
a8e497d5
JS
3541
3542 /* Retrieve everything on the txcmplq */
3543 list_splice_init(&pring->txcmplq, &txcmplq);
4f2e66c6
JS
3544
3545 /* Indicate the I/O queues are flushed */
3546 phba->hba_flag |= HBA_FCP_IOQ_FLUSH;
a8e497d5
JS
3547 spin_unlock_irq(&phba->hbalock);
3548
3549 /* Flush the txq */
a257bf90
JS
3550 lpfc_sli_cancel_iocbs(phba, &txq, IOSTAT_LOCAL_REJECT,
3551 IOERR_SLI_DOWN);
a8e497d5
JS
3552
3553 /* Flush the txcmpq */
a257bf90
JS
3554 lpfc_sli_cancel_iocbs(phba, &txcmplq, IOSTAT_LOCAL_REJECT,
3555 IOERR_SLI_DOWN);
a8e497d5
JS
3556}
3557
e59058c4 3558/**
3772a991 3559 * lpfc_sli_brdready_s3 - Check for sli3 host ready status
e59058c4
JS
3560 * @phba: Pointer to HBA context object.
3561 * @mask: Bit mask to be checked.
3562 *
3563 * This function reads the host status register and compares
3564 * with the provided bit mask to check if HBA completed
3565 * the restart. This function will wait in a loop for the
3566 * HBA to complete restart. If the HBA does not restart within
3567 * 15 iterations, the function will reset the HBA again. The
3568 * function returns 1 when HBA fail to restart otherwise returns
3569 * zero.
3570 **/
3772a991
JS
3571static int
3572lpfc_sli_brdready_s3(struct lpfc_hba *phba, uint32_t mask)
dea3101e 3573{
41415862
JW
3574 uint32_t status;
3575 int i = 0;
3576 int retval = 0;
dea3101e 3577
41415862 3578 /* Read the HBA Host Status Register */
9940b97b
JS
3579 if (lpfc_readl(phba->HSregaddr, &status))
3580 return 1;
dea3101e 3581
41415862
JW
3582 /*
3583 * Check status register every 100ms for 5 retries, then every
3584 * 500ms for 5, then every 2.5 sec for 5, then reset board and
3585 * every 2.5 sec for 4.
3586 * Break our of the loop if errors occurred during init.
3587 */
3588 while (((status & mask) != mask) &&
3589 !(status & HS_FFERM) &&
3590 i++ < 20) {
dea3101e 3591
41415862
JW
3592 if (i <= 5)
3593 msleep(10);
3594 else if (i <= 10)
3595 msleep(500);
3596 else
3597 msleep(2500);
dea3101e 3598
41415862 3599 if (i == 15) {
2e0fef85 3600 /* Do post */
92d7f7b0 3601 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
41415862
JW
3602 lpfc_sli_brdrestart(phba);
3603 }
3604 /* Read the HBA Host Status Register */
9940b97b
JS
3605 if (lpfc_readl(phba->HSregaddr, &status)) {
3606 retval = 1;
3607 break;
3608 }
41415862 3609 }
dea3101e 3610
41415862
JW
3611 /* Check to see if any errors occurred during init */
3612 if ((status & HS_FFERM) || (i >= 20)) {
e40a02c1
JS
3613 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3614 "2751 Adapter failed to restart, "
3615 "status reg x%x, FW Data: A8 x%x AC x%x\n",
3616 status,
3617 readl(phba->MBslimaddr + 0xa8),
3618 readl(phba->MBslimaddr + 0xac));
2e0fef85 3619 phba->link_state = LPFC_HBA_ERROR;
41415862 3620 retval = 1;
dea3101e 3621 }
dea3101e 3622
41415862
JW
3623 return retval;
3624}
dea3101e 3625
da0436e9
JS
3626/**
3627 * lpfc_sli_brdready_s4 - Check for sli4 host ready status
3628 * @phba: Pointer to HBA context object.
3629 * @mask: Bit mask to be checked.
3630 *
3631 * This function checks the host status register to check if HBA is
3632 * ready. This function will wait in a loop for the HBA to be ready
3633 * If the HBA is not ready , the function will will reset the HBA PCI
3634 * function again. The function returns 1 when HBA fail to be ready
3635 * otherwise returns zero.
3636 **/
3637static int
3638lpfc_sli_brdready_s4(struct lpfc_hba *phba, uint32_t mask)
3639{
3640 uint32_t status;
3641 int retval = 0;
3642
3643 /* Read the HBA Host Status Register */
3644 status = lpfc_sli4_post_status_check(phba);
3645
3646 if (status) {
3647 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
3648 lpfc_sli_brdrestart(phba);
3649 status = lpfc_sli4_post_status_check(phba);
3650 }
3651
3652 /* Check to see if any errors occurred during init */
3653 if (status) {
3654 phba->link_state = LPFC_HBA_ERROR;
3655 retval = 1;
3656 } else
3657 phba->sli4_hba.intr_enable = 0;
3658
3659 return retval;
3660}
3661
3662/**
3663 * lpfc_sli_brdready - Wrapper func for checking the hba readyness
3664 * @phba: Pointer to HBA context object.
3665 * @mask: Bit mask to be checked.
3666 *
3667 * This routine wraps the actual SLI3 or SLI4 hba readyness check routine
3668 * from the API jump table function pointer from the lpfc_hba struct.
3669 **/
3670int
3671lpfc_sli_brdready(struct lpfc_hba *phba, uint32_t mask)
3672{
3673 return phba->lpfc_sli_brdready(phba, mask);
3674}
3675
9290831f
JS
3676#define BARRIER_TEST_PATTERN (0xdeadbeef)
3677
e59058c4 3678/**
3621a710 3679 * lpfc_reset_barrier - Make HBA ready for HBA reset
e59058c4
JS
3680 * @phba: Pointer to HBA context object.
3681 *
1b51197d
JS
3682 * This function is called before resetting an HBA. This function is called
3683 * with hbalock held and requests HBA to quiesce DMAs before a reset.
e59058c4 3684 **/
2e0fef85 3685void lpfc_reset_barrier(struct lpfc_hba *phba)
9290831f 3686{
65a29c16
JS
3687 uint32_t __iomem *resp_buf;
3688 uint32_t __iomem *mbox_buf;
9290831f 3689 volatile uint32_t mbox;
9940b97b 3690 uint32_t hc_copy, ha_copy, resp_data;
9290831f
JS
3691 int i;
3692 uint8_t hdrtype;
3693
3694 pci_read_config_byte(phba->pcidev, PCI_HEADER_TYPE, &hdrtype);
3695 if (hdrtype != 0x80 ||
3696 (FC_JEDEC_ID(phba->vpd.rev.biuRev) != HELIOS_JEDEC_ID &&
3697 FC_JEDEC_ID(phba->vpd.rev.biuRev) != THOR_JEDEC_ID))
3698 return;
3699
3700 /*
3701 * Tell the other part of the chip to suspend temporarily all
3702 * its DMA activity.
3703 */
65a29c16 3704 resp_buf = phba->MBslimaddr;
9290831f
JS
3705
3706 /* Disable the error attention */
9940b97b
JS
3707 if (lpfc_readl(phba->HCregaddr, &hc_copy))
3708 return;
9290831f
JS
3709 writel((hc_copy & ~HC_ERINT_ENA), phba->HCregaddr);
3710 readl(phba->HCregaddr); /* flush */
2e0fef85 3711 phba->link_flag |= LS_IGNORE_ERATT;
9290831f 3712
9940b97b
JS
3713 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3714 return;
3715 if (ha_copy & HA_ERATT) {
9290831f
JS
3716 /* Clear Chip error bit */
3717 writel(HA_ERATT, phba->HAregaddr);
2e0fef85 3718 phba->pport->stopped = 1;
9290831f
JS
3719 }
3720
3721 mbox = 0;
3722 ((MAILBOX_t *)&mbox)->mbxCommand = MBX_KILL_BOARD;
3723 ((MAILBOX_t *)&mbox)->mbxOwner = OWN_CHIP;
3724
3725 writel(BARRIER_TEST_PATTERN, (resp_buf + 1));
65a29c16 3726 mbox_buf = phba->MBslimaddr;
9290831f
JS
3727 writel(mbox, mbox_buf);
3728
9940b97b
JS
3729 for (i = 0; i < 50; i++) {
3730 if (lpfc_readl((resp_buf + 1), &resp_data))
3731 return;
3732 if (resp_data != ~(BARRIER_TEST_PATTERN))
3733 mdelay(1);
3734 else
3735 break;
3736 }
3737 resp_data = 0;
3738 if (lpfc_readl((resp_buf + 1), &resp_data))
3739 return;
3740 if (resp_data != ~(BARRIER_TEST_PATTERN)) {
f4b4c68f 3741 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE ||
2e0fef85 3742 phba->pport->stopped)
9290831f
JS
3743 goto restore_hc;
3744 else
3745 goto clear_errat;
3746 }
3747
3748 ((MAILBOX_t *)&mbox)->mbxOwner = OWN_HOST;
9940b97b
JS
3749 resp_data = 0;
3750 for (i = 0; i < 500; i++) {
3751 if (lpfc_readl(resp_buf, &resp_data))
3752 return;
3753 if (resp_data != mbox)
3754 mdelay(1);
3755 else
3756 break;
3757 }
9290831f
JS
3758
3759clear_errat:
3760
9940b97b
JS
3761 while (++i < 500) {
3762 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3763 return;
3764 if (!(ha_copy & HA_ERATT))
3765 mdelay(1);
3766 else
3767 break;
3768 }
9290831f
JS
3769
3770 if (readl(phba->HAregaddr) & HA_ERATT) {
3771 writel(HA_ERATT, phba->HAregaddr);
2e0fef85 3772 phba->pport->stopped = 1;
9290831f
JS
3773 }
3774
3775restore_hc:
2e0fef85 3776 phba->link_flag &= ~LS_IGNORE_ERATT;
9290831f
JS
3777 writel(hc_copy, phba->HCregaddr);
3778 readl(phba->HCregaddr); /* flush */
3779}
3780
e59058c4 3781/**
3621a710 3782 * lpfc_sli_brdkill - Issue a kill_board mailbox command
e59058c4
JS
3783 * @phba: Pointer to HBA context object.
3784 *
3785 * This function issues a kill_board mailbox command and waits for
3786 * the error attention interrupt. This function is called for stopping
3787 * the firmware processing. The caller is not required to hold any
3788 * locks. This function calls lpfc_hba_down_post function to free
3789 * any pending commands after the kill. The function will return 1 when it
3790 * fails to kill the board else will return 0.
3791 **/
41415862 3792int
2e0fef85 3793lpfc_sli_brdkill(struct lpfc_hba *phba)
41415862
JW
3794{
3795 struct lpfc_sli *psli;
3796 LPFC_MBOXQ_t *pmb;
3797 uint32_t status;
3798 uint32_t ha_copy;
3799 int retval;
3800 int i = 0;
dea3101e 3801
41415862 3802 psli = &phba->sli;
dea3101e 3803
41415862 3804 /* Kill HBA */
ed957684 3805 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
e8b62011
JS
3806 "0329 Kill HBA Data: x%x x%x\n",
3807 phba->pport->port_state, psli->sli_flag);
41415862 3808
98c9ea5c
JS
3809 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3810 if (!pmb)
41415862 3811 return 1;
41415862
JW
3812
3813 /* Disable the error attention */
2e0fef85 3814 spin_lock_irq(&phba->hbalock);
9940b97b
JS
3815 if (lpfc_readl(phba->HCregaddr, &status)) {
3816 spin_unlock_irq(&phba->hbalock);
3817 mempool_free(pmb, phba->mbox_mem_pool);
3818 return 1;
3819 }
41415862
JW
3820 status &= ~HC_ERINT_ENA;
3821 writel(status, phba->HCregaddr);
3822 readl(phba->HCregaddr); /* flush */
2e0fef85
JS
3823 phba->link_flag |= LS_IGNORE_ERATT;
3824 spin_unlock_irq(&phba->hbalock);
41415862
JW
3825
3826 lpfc_kill_board(phba, pmb);
3827 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
3828 retval = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
3829
3830 if (retval != MBX_SUCCESS) {
3831 if (retval != MBX_BUSY)
3832 mempool_free(pmb, phba->mbox_mem_pool);
e40a02c1
JS
3833 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3834 "2752 KILL_BOARD command failed retval %d\n",
3835 retval);
2e0fef85
JS
3836 spin_lock_irq(&phba->hbalock);
3837 phba->link_flag &= ~LS_IGNORE_ERATT;
3838 spin_unlock_irq(&phba->hbalock);
41415862
JW
3839 return 1;
3840 }
3841
f4b4c68f
JS
3842 spin_lock_irq(&phba->hbalock);
3843 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
3844 spin_unlock_irq(&phba->hbalock);
9290831f 3845
41415862
JW
3846 mempool_free(pmb, phba->mbox_mem_pool);
3847
3848 /* There is no completion for a KILL_BOARD mbox cmd. Check for an error
3849 * attention every 100ms for 3 seconds. If we don't get ERATT after
3850 * 3 seconds we still set HBA_ERROR state because the status of the
3851 * board is now undefined.
3852 */
9940b97b
JS
3853 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3854 return 1;
41415862
JW
3855 while ((i++ < 30) && !(ha_copy & HA_ERATT)) {
3856 mdelay(100);
9940b97b
JS
3857 if (lpfc_readl(phba->HAregaddr, &ha_copy))
3858 return 1;
41415862
JW
3859 }
3860
3861 del_timer_sync(&psli->mbox_tmo);
9290831f
JS
3862 if (ha_copy & HA_ERATT) {
3863 writel(HA_ERATT, phba->HAregaddr);
2e0fef85 3864 phba->pport->stopped = 1;
9290831f 3865 }
2e0fef85 3866 spin_lock_irq(&phba->hbalock);
41415862 3867 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
04c68496 3868 psli->mbox_active = NULL;
2e0fef85
JS
3869 phba->link_flag &= ~LS_IGNORE_ERATT;
3870 spin_unlock_irq(&phba->hbalock);
41415862 3871
41415862 3872 lpfc_hba_down_post(phba);
2e0fef85 3873 phba->link_state = LPFC_HBA_ERROR;
41415862 3874
2e0fef85 3875 return ha_copy & HA_ERATT ? 0 : 1;
dea3101e 3876}
3877
e59058c4 3878/**
3772a991 3879 * lpfc_sli_brdreset - Reset a sli-2 or sli-3 HBA
e59058c4
JS
3880 * @phba: Pointer to HBA context object.
3881 *
3882 * This function resets the HBA by writing HC_INITFF to the control
3883 * register. After the HBA resets, this function resets all the iocb ring
3884 * indices. This function disables PCI layer parity checking during
3885 * the reset.
3886 * This function returns 0 always.
3887 * The caller is not required to hold any locks.
3888 **/
41415862 3889int
2e0fef85 3890lpfc_sli_brdreset(struct lpfc_hba *phba)
dea3101e 3891{
41415862 3892 struct lpfc_sli *psli;
dea3101e 3893 struct lpfc_sli_ring *pring;
41415862 3894 uint16_t cfg_value;
dea3101e 3895 int i;
dea3101e 3896
41415862 3897 psli = &phba->sli;
dea3101e 3898
41415862
JW
3899 /* Reset HBA */
3900 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
e8b62011 3901 "0325 Reset HBA Data: x%x x%x\n",
2e0fef85 3902 phba->pport->port_state, psli->sli_flag);
dea3101e 3903
3904 /* perform board reset */
3905 phba->fc_eventTag = 0;
4d9ab994 3906 phba->link_events = 0;
2e0fef85
JS
3907 phba->pport->fc_myDID = 0;
3908 phba->pport->fc_prevDID = 0;
dea3101e 3909
41415862
JW
3910 /* Turn off parity checking and serr during the physical reset */
3911 pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
3912 pci_write_config_word(phba->pcidev, PCI_COMMAND,
3913 (cfg_value &
3914 ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
3915
3772a991
JS
3916 psli->sli_flag &= ~(LPFC_SLI_ACTIVE | LPFC_PROCESS_LA);
3917
41415862
JW
3918 /* Now toggle INITFF bit in the Host Control Register */
3919 writel(HC_INITFF, phba->HCregaddr);
3920 mdelay(1);
3921 readl(phba->HCregaddr); /* flush */
3922 writel(0, phba->HCregaddr);
3923 readl(phba->HCregaddr); /* flush */
3924
3925 /* Restore PCI cmd register */
3926 pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
dea3101e 3927
3928 /* Initialize relevant SLI info */
41415862
JW
3929 for (i = 0; i < psli->num_rings; i++) {
3930 pring = &psli->ring[i];
dea3101e 3931 pring->flag = 0;
7e56aa25
JS
3932 pring->sli.sli3.rspidx = 0;
3933 pring->sli.sli3.next_cmdidx = 0;
3934 pring->sli.sli3.local_getidx = 0;
3935 pring->sli.sli3.cmdidx = 0;
dea3101e 3936 pring->missbufcnt = 0;
3937 }
dea3101e 3938
2e0fef85 3939 phba->link_state = LPFC_WARM_START;
41415862
JW
3940 return 0;
3941}
3942
e59058c4 3943/**
da0436e9
JS
3944 * lpfc_sli4_brdreset - Reset a sli-4 HBA
3945 * @phba: Pointer to HBA context object.
3946 *
3947 * This function resets a SLI4 HBA. This function disables PCI layer parity
3948 * checking during resets the device. The caller is not required to hold
3949 * any locks.
3950 *
3951 * This function returns 0 always.
3952 **/
3953int
3954lpfc_sli4_brdreset(struct lpfc_hba *phba)
3955{
3956 struct lpfc_sli *psli = &phba->sli;
3957 uint16_t cfg_value;
27b01b82 3958 int rc;
da0436e9
JS
3959
3960 /* Reset HBA */
3961 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
3962 "0295 Reset HBA Data: x%x x%x\n",
3963 phba->pport->port_state, psli->sli_flag);
3964
3965 /* perform board reset */
3966 phba->fc_eventTag = 0;
4d9ab994 3967 phba->link_events = 0;
da0436e9
JS
3968 phba->pport->fc_myDID = 0;
3969 phba->pport->fc_prevDID = 0;
3970
da0436e9
JS
3971 spin_lock_irq(&phba->hbalock);
3972 psli->sli_flag &= ~(LPFC_PROCESS_LA);
3973 phba->fcf.fcf_flag = 0;
da0436e9
JS
3974 spin_unlock_irq(&phba->hbalock);
3975
3976 /* Now physically reset the device */
3977 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3978 "0389 Performing PCI function reset!\n");
be858b65
JS
3979
3980 /* Turn off parity checking and serr during the physical reset */
3981 pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
3982 pci_write_config_word(phba->pcidev, PCI_COMMAND, (cfg_value &
3983 ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
3984
88318816 3985 /* Perform FCoE PCI function reset before freeing queue memory */
27b01b82 3986 rc = lpfc_pci_function_reset(phba);
88318816 3987 lpfc_sli4_queue_destroy(phba);
da0436e9 3988
be858b65
JS
3989 /* Restore PCI cmd register */
3990 pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
3991
27b01b82 3992 return rc;
da0436e9
JS
3993}
3994
3995/**
3996 * lpfc_sli_brdrestart_s3 - Restart a sli-3 hba
e59058c4
JS
3997 * @phba: Pointer to HBA context object.
3998 *
3999 * This function is called in the SLI initialization code path to
4000 * restart the HBA. The caller is not required to hold any lock.
4001 * This function writes MBX_RESTART mailbox command to the SLIM and
4002 * resets the HBA. At the end of the function, it calls lpfc_hba_down_post
4003 * function to free any pending commands. The function enables
4004 * POST only during the first initialization. The function returns zero.
4005 * The function does not guarantee completion of MBX_RESTART mailbox
4006 * command before the return of this function.
4007 **/
da0436e9
JS
4008static int
4009lpfc_sli_brdrestart_s3(struct lpfc_hba *phba)
41415862
JW
4010{
4011 MAILBOX_t *mb;
4012 struct lpfc_sli *psli;
41415862
JW
4013 volatile uint32_t word0;
4014 void __iomem *to_slim;
0d878419 4015 uint32_t hba_aer_enabled;
41415862 4016
2e0fef85 4017 spin_lock_irq(&phba->hbalock);
41415862 4018
0d878419
JS
4019 /* Take PCIe device Advanced Error Reporting (AER) state */
4020 hba_aer_enabled = phba->hba_flag & HBA_AER_ENABLED;
4021
41415862
JW
4022 psli = &phba->sli;
4023
4024 /* Restart HBA */
4025 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
e8b62011 4026 "0337 Restart HBA Data: x%x x%x\n",
2e0fef85 4027 phba->pport->port_state, psli->sli_flag);
41415862
JW
4028
4029 word0 = 0;
4030 mb = (MAILBOX_t *) &word0;
4031 mb->mbxCommand = MBX_RESTART;
4032 mb->mbxHc = 1;
4033
9290831f
JS
4034 lpfc_reset_barrier(phba);
4035
41415862
JW
4036 to_slim = phba->MBslimaddr;
4037 writel(*(uint32_t *) mb, to_slim);
4038 readl(to_slim); /* flush */
4039
4040 /* Only skip post after fc_ffinit is completed */
eaf15d5b 4041 if (phba->pport->port_state)
41415862 4042 word0 = 1; /* This is really setting up word1 */
eaf15d5b 4043 else
41415862 4044 word0 = 0; /* This is really setting up word1 */
65a29c16 4045 to_slim = phba->MBslimaddr + sizeof (uint32_t);
41415862
JW
4046 writel(*(uint32_t *) mb, to_slim);
4047 readl(to_slim); /* flush */
dea3101e 4048
41415862 4049 lpfc_sli_brdreset(phba);
2e0fef85
JS
4050 phba->pport->stopped = 0;
4051 phba->link_state = LPFC_INIT_START;
da0436e9 4052 phba->hba_flag = 0;
2e0fef85 4053 spin_unlock_irq(&phba->hbalock);
41415862 4054
64ba8818
JS
4055 memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
4056 psli->stats_start = get_seconds();
4057
eaf15d5b
JS
4058 /* Give the INITFF and Post time to settle. */
4059 mdelay(100);
41415862 4060
0d878419
JS
4061 /* Reset HBA AER if it was enabled, note hba_flag was reset above */
4062 if (hba_aer_enabled)
4063 pci_disable_pcie_error_reporting(phba->pcidev);
4064
41415862 4065 lpfc_hba_down_post(phba);
dea3101e 4066
4067 return 0;
4068}
4069
da0436e9
JS
4070/**
4071 * lpfc_sli_brdrestart_s4 - Restart the sli-4 hba
4072 * @phba: Pointer to HBA context object.
4073 *
4074 * This function is called in the SLI initialization code path to restart
4075 * a SLI4 HBA. The caller is not required to hold any lock.
4076 * At the end of the function, it calls lpfc_hba_down_post function to
4077 * free any pending commands.
4078 **/
4079static int
4080lpfc_sli_brdrestart_s4(struct lpfc_hba *phba)
4081{
4082 struct lpfc_sli *psli = &phba->sli;
75baf696 4083 uint32_t hba_aer_enabled;
27b01b82 4084 int rc;
da0436e9
JS
4085
4086 /* Restart HBA */
4087 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4088 "0296 Restart HBA Data: x%x x%x\n",
4089 phba->pport->port_state, psli->sli_flag);
4090
75baf696
JS
4091 /* Take PCIe device Advanced Error Reporting (AER) state */
4092 hba_aer_enabled = phba->hba_flag & HBA_AER_ENABLED;
4093
27b01b82 4094 rc = lpfc_sli4_brdreset(phba);
da0436e9
JS
4095
4096 spin_lock_irq(&phba->hbalock);
4097 phba->pport->stopped = 0;
4098 phba->link_state = LPFC_INIT_START;
4099 phba->hba_flag = 0;
4100 spin_unlock_irq(&phba->hbalock);
4101
4102 memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
4103 psli->stats_start = get_seconds();
4104
75baf696
JS
4105 /* Reset HBA AER if it was enabled, note hba_flag was reset above */
4106 if (hba_aer_enabled)
4107 pci_disable_pcie_error_reporting(phba->pcidev);
4108
da0436e9
JS
4109 lpfc_hba_down_post(phba);
4110
27b01b82 4111 return rc;
da0436e9
JS
4112}
4113
4114/**
4115 * lpfc_sli_brdrestart - Wrapper func for restarting hba
4116 * @phba: Pointer to HBA context object.
4117 *
4118 * This routine wraps the actual SLI3 or SLI4 hba restart routine from the
4119 * API jump table function pointer from the lpfc_hba struct.
4120**/
4121int
4122lpfc_sli_brdrestart(struct lpfc_hba *phba)
4123{
4124 return phba->lpfc_sli_brdrestart(phba);
4125}
4126
e59058c4 4127/**
3621a710 4128 * lpfc_sli_chipset_init - Wait for the restart of the HBA after a restart
e59058c4
JS
4129 * @phba: Pointer to HBA context object.
4130 *
4131 * This function is called after a HBA restart to wait for successful
4132 * restart of the HBA. Successful restart of the HBA is indicated by
4133 * HS_FFRDY and HS_MBRDY bits. If the HBA fails to restart even after 15
4134 * iteration, the function will restart the HBA again. The function returns
4135 * zero if HBA successfully restarted else returns negative error code.
4136 **/
dea3101e 4137static int
4138lpfc_sli_chipset_init(struct lpfc_hba *phba)
4139{
4140 uint32_t status, i = 0;
4141
4142 /* Read the HBA Host Status Register */
9940b97b
JS
4143 if (lpfc_readl(phba->HSregaddr, &status))
4144 return -EIO;
dea3101e 4145
4146 /* Check status register to see what current state is */
4147 i = 0;
4148 while ((status & (HS_FFRDY | HS_MBRDY)) != (HS_FFRDY | HS_MBRDY)) {
4149
dcf2a4e0
JS
4150 /* Check every 10ms for 10 retries, then every 100ms for 90
4151 * retries, then every 1 sec for 50 retires for a total of
4152 * ~60 seconds before reset the board again and check every
4153 * 1 sec for 50 retries. The up to 60 seconds before the
4154 * board ready is required by the Falcon FIPS zeroization
4155 * complete, and any reset the board in between shall cause
4156 * restart of zeroization, further delay the board ready.
dea3101e 4157 */
dcf2a4e0 4158 if (i++ >= 200) {
dea3101e 4159 /* Adapter failed to init, timeout, status reg
4160 <status> */
ed957684 4161 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 4162 "0436 Adapter failed to init, "
09372820
JS
4163 "timeout, status reg x%x, "
4164 "FW Data: A8 x%x AC x%x\n", status,
4165 readl(phba->MBslimaddr + 0xa8),
4166 readl(phba->MBslimaddr + 0xac));
2e0fef85 4167 phba->link_state = LPFC_HBA_ERROR;
dea3101e 4168 return -ETIMEDOUT;
4169 }
4170
4171 /* Check to see if any errors occurred during init */
4172 if (status & HS_FFERM) {
4173 /* ERROR: During chipset initialization */
4174 /* Adapter failed to init, chipset, status reg
4175 <status> */
ed957684 4176 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 4177 "0437 Adapter failed to init, "
09372820
JS
4178 "chipset, status reg x%x, "
4179 "FW Data: A8 x%x AC x%x\n", status,
4180 readl(phba->MBslimaddr + 0xa8),
4181 readl(phba->MBslimaddr + 0xac));
2e0fef85 4182 phba->link_state = LPFC_HBA_ERROR;
dea3101e 4183 return -EIO;
4184 }
4185
dcf2a4e0 4186 if (i <= 10)
dea3101e 4187 msleep(10);
dcf2a4e0
JS
4188 else if (i <= 100)
4189 msleep(100);
4190 else
4191 msleep(1000);
dea3101e 4192
dcf2a4e0
JS
4193 if (i == 150) {
4194 /* Do post */
92d7f7b0 4195 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
41415862 4196 lpfc_sli_brdrestart(phba);
dea3101e 4197 }
4198 /* Read the HBA Host Status Register */
9940b97b
JS
4199 if (lpfc_readl(phba->HSregaddr, &status))
4200 return -EIO;
dea3101e 4201 }
4202
4203 /* Check to see if any errors occurred during init */
4204 if (status & HS_FFERM) {
4205 /* ERROR: During chipset initialization */
4206 /* Adapter failed to init, chipset, status reg <status> */
ed957684 4207 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 4208 "0438 Adapter failed to init, chipset, "
09372820
JS
4209 "status reg x%x, "
4210 "FW Data: A8 x%x AC x%x\n", status,
4211 readl(phba->MBslimaddr + 0xa8),
4212 readl(phba->MBslimaddr + 0xac));
2e0fef85 4213 phba->link_state = LPFC_HBA_ERROR;
dea3101e 4214 return -EIO;
4215 }
4216
4217 /* Clear all interrupt enable conditions */
4218 writel(0, phba->HCregaddr);
4219 readl(phba->HCregaddr); /* flush */
4220
4221 /* setup host attn register */
4222 writel(0xffffffff, phba->HAregaddr);
4223 readl(phba->HAregaddr); /* flush */
4224 return 0;
4225}
4226
e59058c4 4227/**
3621a710 4228 * lpfc_sli_hbq_count - Get the number of HBQs to be configured
e59058c4
JS
4229 *
4230 * This function calculates and returns the number of HBQs required to be
4231 * configured.
4232 **/
78b2d852 4233int
ed957684
JS
4234lpfc_sli_hbq_count(void)
4235{
92d7f7b0 4236 return ARRAY_SIZE(lpfc_hbq_defs);
ed957684
JS
4237}
4238
e59058c4 4239/**
3621a710 4240 * lpfc_sli_hbq_entry_count - Calculate total number of hbq entries
e59058c4
JS
4241 *
4242 * This function adds the number of hbq entries in every HBQ to get
4243 * the total number of hbq entries required for the HBA and returns
4244 * the total count.
4245 **/
ed957684
JS
4246static int
4247lpfc_sli_hbq_entry_count(void)
4248{
4249 int hbq_count = lpfc_sli_hbq_count();
4250 int count = 0;
4251 int i;
4252
4253 for (i = 0; i < hbq_count; ++i)
92d7f7b0 4254 count += lpfc_hbq_defs[i]->entry_count;
ed957684
JS
4255 return count;
4256}
4257
e59058c4 4258/**
3621a710 4259 * lpfc_sli_hbq_size - Calculate memory required for all hbq entries
e59058c4
JS
4260 *
4261 * This function calculates amount of memory required for all hbq entries
4262 * to be configured and returns the total memory required.
4263 **/
dea3101e 4264int
ed957684
JS
4265lpfc_sli_hbq_size(void)
4266{
4267 return lpfc_sli_hbq_entry_count() * sizeof(struct lpfc_hbq_entry);
4268}
4269
e59058c4 4270/**
3621a710 4271 * lpfc_sli_hbq_setup - configure and initialize HBQs
e59058c4
JS
4272 * @phba: Pointer to HBA context object.
4273 *
4274 * This function is called during the SLI initialization to configure
4275 * all the HBQs and post buffers to the HBQ. The caller is not
4276 * required to hold any locks. This function will return zero if successful
4277 * else it will return negative error code.
4278 **/
ed957684
JS
4279static int
4280lpfc_sli_hbq_setup(struct lpfc_hba *phba)
4281{
4282 int hbq_count = lpfc_sli_hbq_count();
4283 LPFC_MBOXQ_t *pmb;
4284 MAILBOX_t *pmbox;
4285 uint32_t hbqno;
4286 uint32_t hbq_entry_index;
ed957684 4287
92d7f7b0
JS
4288 /* Get a Mailbox buffer to setup mailbox
4289 * commands for HBA initialization
4290 */
ed957684
JS
4291 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4292
4293 if (!pmb)
4294 return -ENOMEM;
4295
04c68496 4296 pmbox = &pmb->u.mb;
ed957684
JS
4297
4298 /* Initialize the struct lpfc_sli_hbq structure for each hbq */
4299 phba->link_state = LPFC_INIT_MBX_CMDS;
3163f725 4300 phba->hbq_in_use = 1;
ed957684
JS
4301
4302 hbq_entry_index = 0;
4303 for (hbqno = 0; hbqno < hbq_count; ++hbqno) {
4304 phba->hbqs[hbqno].next_hbqPutIdx = 0;
4305 phba->hbqs[hbqno].hbqPutIdx = 0;
4306 phba->hbqs[hbqno].local_hbqGetIdx = 0;
4307 phba->hbqs[hbqno].entry_count =
92d7f7b0 4308 lpfc_hbq_defs[hbqno]->entry_count;
51ef4c26
JS
4309 lpfc_config_hbq(phba, hbqno, lpfc_hbq_defs[hbqno],
4310 hbq_entry_index, pmb);
ed957684
JS
4311 hbq_entry_index += phba->hbqs[hbqno].entry_count;
4312
4313 if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
4314 /* Adapter failed to init, mbxCmd <cmd> CFG_RING,
4315 mbxStatus <status>, ring <num> */
4316
4317 lpfc_printf_log(phba, KERN_ERR,
92d7f7b0 4318 LOG_SLI | LOG_VPORT,
e8b62011 4319 "1805 Adapter failed to init. "
ed957684 4320 "Data: x%x x%x x%x\n",
e8b62011 4321 pmbox->mbxCommand,
ed957684
JS
4322 pmbox->mbxStatus, hbqno);
4323
4324 phba->link_state = LPFC_HBA_ERROR;
4325 mempool_free(pmb, phba->mbox_mem_pool);
6e7288d9 4326 return -ENXIO;
ed957684
JS
4327 }
4328 }
4329 phba->hbq_count = hbq_count;
4330
ed957684
JS
4331 mempool_free(pmb, phba->mbox_mem_pool);
4332
92d7f7b0 4333 /* Initially populate or replenish the HBQs */
d7c255b2
JS
4334 for (hbqno = 0; hbqno < hbq_count; ++hbqno)
4335 lpfc_sli_hbqbuf_init_hbqs(phba, hbqno);
ed957684
JS
4336 return 0;
4337}
4338
4f774513
JS
4339/**
4340 * lpfc_sli4_rb_setup - Initialize and post RBs to HBA
4341 * @phba: Pointer to HBA context object.
4342 *
4343 * This function is called during the SLI initialization to configure
4344 * all the HBQs and post buffers to the HBQ. The caller is not
4345 * required to hold any locks. This function will return zero if successful
4346 * else it will return negative error code.
4347 **/
4348static int
4349lpfc_sli4_rb_setup(struct lpfc_hba *phba)
4350{
4351 phba->hbq_in_use = 1;
4352 phba->hbqs[0].entry_count = lpfc_hbq_defs[0]->entry_count;
4353 phba->hbq_count = 1;
4354 /* Initially populate or replenish the HBQs */
4355 lpfc_sli_hbqbuf_init_hbqs(phba, 0);
4356 return 0;
4357}
4358
e59058c4 4359/**
3621a710 4360 * lpfc_sli_config_port - Issue config port mailbox command
e59058c4
JS
4361 * @phba: Pointer to HBA context object.
4362 * @sli_mode: sli mode - 2/3
4363 *
4364 * This function is called by the sli intialization code path
4365 * to issue config_port mailbox command. This function restarts the
4366 * HBA firmware and issues a config_port mailbox command to configure
4367 * the SLI interface in the sli mode specified by sli_mode
4368 * variable. The caller is not required to hold any locks.
4369 * The function returns 0 if successful, else returns negative error
4370 * code.
4371 **/
9399627f
JS
4372int
4373lpfc_sli_config_port(struct lpfc_hba *phba, int sli_mode)
dea3101e 4374{
4375 LPFC_MBOXQ_t *pmb;
4376 uint32_t resetcount = 0, rc = 0, done = 0;
4377
4378 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4379 if (!pmb) {
2e0fef85 4380 phba->link_state = LPFC_HBA_ERROR;
dea3101e 4381 return -ENOMEM;
4382 }
4383
ed957684 4384 phba->sli_rev = sli_mode;
dea3101e 4385 while (resetcount < 2 && !done) {
2e0fef85 4386 spin_lock_irq(&phba->hbalock);
1c067a42 4387 phba->sli.sli_flag |= LPFC_SLI_MBOX_ACTIVE;
2e0fef85 4388 spin_unlock_irq(&phba->hbalock);
92d7f7b0 4389 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
41415862 4390 lpfc_sli_brdrestart(phba);
dea3101e 4391 rc = lpfc_sli_chipset_init(phba);
4392 if (rc)
4393 break;
4394
2e0fef85 4395 spin_lock_irq(&phba->hbalock);
1c067a42 4396 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
2e0fef85 4397 spin_unlock_irq(&phba->hbalock);
dea3101e 4398 resetcount++;
4399
ed957684
JS
4400 /* Call pre CONFIG_PORT mailbox command initialization. A
4401 * value of 0 means the call was successful. Any other
4402 * nonzero value is a failure, but if ERESTART is returned,
4403 * the driver may reset the HBA and try again.
4404 */
dea3101e 4405 rc = lpfc_config_port_prep(phba);
4406 if (rc == -ERESTART) {
ed957684 4407 phba->link_state = LPFC_LINK_UNKNOWN;
dea3101e 4408 continue;
34b02dcd 4409 } else if (rc)
dea3101e 4410 break;
6d368e53 4411
2e0fef85 4412 phba->link_state = LPFC_INIT_MBX_CMDS;
dea3101e 4413 lpfc_config_port(phba, pmb);
4414 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
34b02dcd
JS
4415 phba->sli3_options &= ~(LPFC_SLI3_NPIV_ENABLED |
4416 LPFC_SLI3_HBQ_ENABLED |
4417 LPFC_SLI3_CRP_ENABLED |
bc73905a
JS
4418 LPFC_SLI3_BG_ENABLED |
4419 LPFC_SLI3_DSS_ENABLED);
ed957684 4420 if (rc != MBX_SUCCESS) {
dea3101e 4421 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 4422 "0442 Adapter failed to init, mbxCmd x%x "
92d7f7b0 4423 "CONFIG_PORT, mbxStatus x%x Data: x%x\n",
04c68496 4424 pmb->u.mb.mbxCommand, pmb->u.mb.mbxStatus, 0);
2e0fef85 4425 spin_lock_irq(&phba->hbalock);
04c68496 4426 phba->sli.sli_flag &= ~LPFC_SLI_ACTIVE;
2e0fef85
JS
4427 spin_unlock_irq(&phba->hbalock);
4428 rc = -ENXIO;
04c68496
JS
4429 } else {
4430 /* Allow asynchronous mailbox command to go through */
4431 spin_lock_irq(&phba->hbalock);
4432 phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
4433 spin_unlock_irq(&phba->hbalock);
ed957684 4434 done = 1;
cb69f7de
JS
4435
4436 if ((pmb->u.mb.un.varCfgPort.casabt == 1) &&
4437 (pmb->u.mb.un.varCfgPort.gasabt == 0))
4438 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
4439 "3110 Port did not grant ASABT\n");
04c68496 4440 }
dea3101e 4441 }
ed957684
JS
4442 if (!done) {
4443 rc = -EINVAL;
4444 goto do_prep_failed;
4445 }
04c68496
JS
4446 if (pmb->u.mb.un.varCfgPort.sli_mode == 3) {
4447 if (!pmb->u.mb.un.varCfgPort.cMA) {
34b02dcd
JS
4448 rc = -ENXIO;
4449 goto do_prep_failed;
4450 }
04c68496 4451 if (phba->max_vpi && pmb->u.mb.un.varCfgPort.gmv) {
34b02dcd 4452 phba->sli3_options |= LPFC_SLI3_NPIV_ENABLED;
04c68496
JS
4453 phba->max_vpi = pmb->u.mb.un.varCfgPort.max_vpi;
4454 phba->max_vports = (phba->max_vpi > phba->max_vports) ?
4455 phba->max_vpi : phba->max_vports;
4456
34b02dcd
JS
4457 } else
4458 phba->max_vpi = 0;
bc73905a
JS
4459 phba->fips_level = 0;
4460 phba->fips_spec_rev = 0;
4461 if (pmb->u.mb.un.varCfgPort.gdss) {
04c68496 4462 phba->sli3_options |= LPFC_SLI3_DSS_ENABLED;
bc73905a
JS
4463 phba->fips_level = pmb->u.mb.un.varCfgPort.fips_level;
4464 phba->fips_spec_rev = pmb->u.mb.un.varCfgPort.fips_rev;
4465 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4466 "2850 Security Crypto Active. FIPS x%d "
4467 "(Spec Rev: x%d)",
4468 phba->fips_level, phba->fips_spec_rev);
4469 }
4470 if (pmb->u.mb.un.varCfgPort.sec_err) {
4471 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4472 "2856 Config Port Security Crypto "
4473 "Error: x%x ",
4474 pmb->u.mb.un.varCfgPort.sec_err);
4475 }
04c68496 4476 if (pmb->u.mb.un.varCfgPort.gerbm)
34b02dcd 4477 phba->sli3_options |= LPFC_SLI3_HBQ_ENABLED;
04c68496 4478 if (pmb->u.mb.un.varCfgPort.gcrp)
34b02dcd 4479 phba->sli3_options |= LPFC_SLI3_CRP_ENABLED;
6e7288d9
JS
4480
4481 phba->hbq_get = phba->mbox->us.s3_pgp.hbq_get;
4482 phba->port_gp = phba->mbox->us.s3_pgp.port;
e2a0a9d6
JS
4483
4484 if (phba->cfg_enable_bg) {
04c68496 4485 if (pmb->u.mb.un.varCfgPort.gbg)
e2a0a9d6
JS
4486 phba->sli3_options |= LPFC_SLI3_BG_ENABLED;
4487 else
4488 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4489 "0443 Adapter did not grant "
4490 "BlockGuard\n");
4491 }
34b02dcd 4492 } else {
8f34f4ce 4493 phba->hbq_get = NULL;
34b02dcd 4494 phba->port_gp = phba->mbox->us.s2.port;
d7c255b2 4495 phba->max_vpi = 0;
ed957684 4496 }
92d7f7b0 4497do_prep_failed:
ed957684
JS
4498 mempool_free(pmb, phba->mbox_mem_pool);
4499 return rc;
4500}
4501
e59058c4
JS
4502
4503/**
3621a710 4504 * lpfc_sli_hba_setup - SLI intialization function
e59058c4
JS
4505 * @phba: Pointer to HBA context object.
4506 *
4507 * This function is the main SLI intialization function. This function
4508 * is called by the HBA intialization code, HBA reset code and HBA
4509 * error attention handler code. Caller is not required to hold any
4510 * locks. This function issues config_port mailbox command to configure
4511 * the SLI, setup iocb rings and HBQ rings. In the end the function
4512 * calls the config_port_post function to issue init_link mailbox
4513 * command and to start the discovery. The function will return zero
4514 * if successful, else it will return negative error code.
4515 **/
ed957684
JS
4516int
4517lpfc_sli_hba_setup(struct lpfc_hba *phba)
4518{
4519 uint32_t rc;
6d368e53
JS
4520 int mode = 3, i;
4521 int longs;
ed957684
JS
4522
4523 switch (lpfc_sli_mode) {
4524 case 2:
78b2d852 4525 if (phba->cfg_enable_npiv) {
92d7f7b0 4526 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
e8b62011 4527 "1824 NPIV enabled: Override lpfc_sli_mode "
92d7f7b0 4528 "parameter (%d) to auto (0).\n",
e8b62011 4529 lpfc_sli_mode);
92d7f7b0
JS
4530 break;
4531 }
ed957684
JS
4532 mode = 2;
4533 break;
4534 case 0:
4535 case 3:
4536 break;
4537 default:
92d7f7b0 4538 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
e8b62011
JS
4539 "1819 Unrecognized lpfc_sli_mode "
4540 "parameter: %d.\n", lpfc_sli_mode);
ed957684
JS
4541
4542 break;
4543 }
4544
9399627f
JS
4545 rc = lpfc_sli_config_port(phba, mode);
4546
ed957684 4547 if (rc && lpfc_sli_mode == 3)
92d7f7b0 4548 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
e8b62011
JS
4549 "1820 Unable to select SLI-3. "
4550 "Not supported by adapter.\n");
ed957684 4551 if (rc && mode != 2)
9399627f 4552 rc = lpfc_sli_config_port(phba, 2);
ed957684 4553 if (rc)
dea3101e 4554 goto lpfc_sli_hba_setup_error;
4555
0d878419
JS
4556 /* Enable PCIe device Advanced Error Reporting (AER) if configured */
4557 if (phba->cfg_aer_support == 1 && !(phba->hba_flag & HBA_AER_ENABLED)) {
4558 rc = pci_enable_pcie_error_reporting(phba->pcidev);
4559 if (!rc) {
4560 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4561 "2709 This device supports "
4562 "Advanced Error Reporting (AER)\n");
4563 spin_lock_irq(&phba->hbalock);
4564 phba->hba_flag |= HBA_AER_ENABLED;
4565 spin_unlock_irq(&phba->hbalock);
4566 } else {
4567 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4568 "2708 This device does not support "
b069d7eb
JS
4569 "Advanced Error Reporting (AER): %d\n",
4570 rc);
0d878419
JS
4571 phba->cfg_aer_support = 0;
4572 }
4573 }
4574
ed957684
JS
4575 if (phba->sli_rev == 3) {
4576 phba->iocb_cmd_size = SLI3_IOCB_CMD_SIZE;
4577 phba->iocb_rsp_size = SLI3_IOCB_RSP_SIZE;
ed957684
JS
4578 } else {
4579 phba->iocb_cmd_size = SLI2_IOCB_CMD_SIZE;
4580 phba->iocb_rsp_size = SLI2_IOCB_RSP_SIZE;
92d7f7b0 4581 phba->sli3_options = 0;
ed957684
JS
4582 }
4583
4584 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
e8b62011
JS
4585 "0444 Firmware in SLI %x mode. Max_vpi %d\n",
4586 phba->sli_rev, phba->max_vpi);
ed957684 4587 rc = lpfc_sli_ring_map(phba);
dea3101e 4588
4589 if (rc)
4590 goto lpfc_sli_hba_setup_error;
4591
6d368e53
JS
4592 /* Initialize VPIs. */
4593 if (phba->sli_rev == LPFC_SLI_REV3) {
4594 /*
4595 * The VPI bitmask and physical ID array are allocated
4596 * and initialized once only - at driver load. A port
4597 * reset doesn't need to reinitialize this memory.
4598 */
4599 if ((phba->vpi_bmask == NULL) && (phba->vpi_ids == NULL)) {
4600 longs = (phba->max_vpi + BITS_PER_LONG) / BITS_PER_LONG;
4601 phba->vpi_bmask = kzalloc(longs * sizeof(unsigned long),
4602 GFP_KERNEL);
4603 if (!phba->vpi_bmask) {
4604 rc = -ENOMEM;
4605 goto lpfc_sli_hba_setup_error;
4606 }
4607
4608 phba->vpi_ids = kzalloc(
4609 (phba->max_vpi+1) * sizeof(uint16_t),
4610 GFP_KERNEL);
4611 if (!phba->vpi_ids) {
4612 kfree(phba->vpi_bmask);
4613 rc = -ENOMEM;
4614 goto lpfc_sli_hba_setup_error;
4615 }
4616 for (i = 0; i < phba->max_vpi; i++)
4617 phba->vpi_ids[i] = i;
4618 }
4619 }
4620
9399627f 4621 /* Init HBQs */
ed957684
JS
4622 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
4623 rc = lpfc_sli_hbq_setup(phba);
4624 if (rc)
4625 goto lpfc_sli_hba_setup_error;
4626 }
04c68496 4627 spin_lock_irq(&phba->hbalock);
dea3101e 4628 phba->sli.sli_flag |= LPFC_PROCESS_LA;
04c68496 4629 spin_unlock_irq(&phba->hbalock);
dea3101e 4630
4631 rc = lpfc_config_port_post(phba);
4632 if (rc)
4633 goto lpfc_sli_hba_setup_error;
4634
ed957684
JS
4635 return rc;
4636
92d7f7b0 4637lpfc_sli_hba_setup_error:
2e0fef85 4638 phba->link_state = LPFC_HBA_ERROR;
e40a02c1 4639 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 4640 "0445 Firmware initialization failed\n");
dea3101e 4641 return rc;
4642}
4643
e59058c4 4644/**
da0436e9
JS
4645 * lpfc_sli4_read_fcoe_params - Read fcoe params from conf region
4646 * @phba: Pointer to HBA context object.
4647 * @mboxq: mailbox pointer.
4648 * This function issue a dump mailbox command to read config region
4649 * 23 and parse the records in the region and populate driver
4650 * data structure.
e59058c4 4651 **/
da0436e9 4652static int
ff78d8f9 4653lpfc_sli4_read_fcoe_params(struct lpfc_hba *phba)
dea3101e 4654{
ff78d8f9 4655 LPFC_MBOXQ_t *mboxq;
da0436e9
JS
4656 struct lpfc_dmabuf *mp;
4657 struct lpfc_mqe *mqe;
4658 uint32_t data_length;
4659 int rc;
dea3101e 4660
da0436e9
JS
4661 /* Program the default value of vlan_id and fc_map */
4662 phba->valid_vlan = 0;
4663 phba->fc_map[0] = LPFC_FCOE_FCF_MAP0;
4664 phba->fc_map[1] = LPFC_FCOE_FCF_MAP1;
4665 phba->fc_map[2] = LPFC_FCOE_FCF_MAP2;
2e0fef85 4666
ff78d8f9
JS
4667 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4668 if (!mboxq)
da0436e9
JS
4669 return -ENOMEM;
4670
ff78d8f9
JS
4671 mqe = &mboxq->u.mqe;
4672 if (lpfc_sli4_dump_cfg_rg23(phba, mboxq)) {
4673 rc = -ENOMEM;
4674 goto out_free_mboxq;
4675 }
4676
da0436e9
JS
4677 mp = (struct lpfc_dmabuf *) mboxq->context1;
4678 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4679
4680 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
4681 "(%d):2571 Mailbox cmd x%x Status x%x "
4682 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x "
4683 "x%x x%x x%x x%x x%x x%x x%x x%x x%x "
4684 "CQ: x%x x%x x%x x%x\n",
4685 mboxq->vport ? mboxq->vport->vpi : 0,
4686 bf_get(lpfc_mqe_command, mqe),
4687 bf_get(lpfc_mqe_status, mqe),
4688 mqe->un.mb_words[0], mqe->un.mb_words[1],
4689 mqe->un.mb_words[2], mqe->un.mb_words[3],
4690 mqe->un.mb_words[4], mqe->un.mb_words[5],
4691 mqe->un.mb_words[6], mqe->un.mb_words[7],
4692 mqe->un.mb_words[8], mqe->un.mb_words[9],
4693 mqe->un.mb_words[10], mqe->un.mb_words[11],
4694 mqe->un.mb_words[12], mqe->un.mb_words[13],
4695 mqe->un.mb_words[14], mqe->un.mb_words[15],
4696 mqe->un.mb_words[16], mqe->un.mb_words[50],
4697 mboxq->mcqe.word0,
4698 mboxq->mcqe.mcqe_tag0, mboxq->mcqe.mcqe_tag1,
4699 mboxq->mcqe.trailer);
4700
4701 if (rc) {
4702 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4703 kfree(mp);
ff78d8f9
JS
4704 rc = -EIO;
4705 goto out_free_mboxq;
da0436e9
JS
4706 }
4707 data_length = mqe->un.mb_words[5];
a0c87cbd 4708 if (data_length > DMP_RGN23_SIZE) {
d11e31dd
JS
4709 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4710 kfree(mp);
ff78d8f9
JS
4711 rc = -EIO;
4712 goto out_free_mboxq;
d11e31dd 4713 }
dea3101e 4714
da0436e9
JS
4715 lpfc_parse_fcoe_conf(phba, mp->virt, data_length);
4716 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4717 kfree(mp);
ff78d8f9
JS
4718 rc = 0;
4719
4720out_free_mboxq:
4721 mempool_free(mboxq, phba->mbox_mem_pool);
4722 return rc;
da0436e9 4723}
e59058c4
JS
4724
4725/**
da0436e9
JS
4726 * lpfc_sli4_read_rev - Issue READ_REV and collect vpd data
4727 * @phba: pointer to lpfc hba data structure.
4728 * @mboxq: pointer to the LPFC_MBOXQ_t structure.
4729 * @vpd: pointer to the memory to hold resulting port vpd data.
4730 * @vpd_size: On input, the number of bytes allocated to @vpd.
4731 * On output, the number of data bytes in @vpd.
e59058c4 4732 *
da0436e9
JS
4733 * This routine executes a READ_REV SLI4 mailbox command. In
4734 * addition, this routine gets the port vpd data.
4735 *
4736 * Return codes
af901ca1 4737 * 0 - successful
d439d286 4738 * -ENOMEM - could not allocated memory.
e59058c4 4739 **/
da0436e9
JS
4740static int
4741lpfc_sli4_read_rev(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
4742 uint8_t *vpd, uint32_t *vpd_size)
dea3101e 4743{
da0436e9
JS
4744 int rc = 0;
4745 uint32_t dma_size;
4746 struct lpfc_dmabuf *dmabuf;
4747 struct lpfc_mqe *mqe;
dea3101e 4748
da0436e9
JS
4749 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
4750 if (!dmabuf)
4751 return -ENOMEM;
4752
4753 /*
4754 * Get a DMA buffer for the vpd data resulting from the READ_REV
4755 * mailbox command.
a257bf90 4756 */
da0436e9
JS
4757 dma_size = *vpd_size;
4758 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
4759 dma_size,
4760 &dmabuf->phys,
4761 GFP_KERNEL);
4762 if (!dmabuf->virt) {
4763 kfree(dmabuf);
4764 return -ENOMEM;
a257bf90 4765 }
da0436e9 4766 memset(dmabuf->virt, 0, dma_size);
a257bf90 4767
da0436e9
JS
4768 /*
4769 * The SLI4 implementation of READ_REV conflicts at word1,
4770 * bits 31:16 and SLI4 adds vpd functionality not present
4771 * in SLI3. This code corrects the conflicts.
1dcb58e5 4772 */
da0436e9
JS
4773 lpfc_read_rev(phba, mboxq);
4774 mqe = &mboxq->u.mqe;
4775 mqe->un.read_rev.vpd_paddr_high = putPaddrHigh(dmabuf->phys);
4776 mqe->un.read_rev.vpd_paddr_low = putPaddrLow(dmabuf->phys);
4777 mqe->un.read_rev.word1 &= 0x0000FFFF;
4778 bf_set(lpfc_mbx_rd_rev_vpd, &mqe->un.read_rev, 1);
4779 bf_set(lpfc_mbx_rd_rev_avail_len, &mqe->un.read_rev, dma_size);
4780
4781 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4782 if (rc) {
4783 dma_free_coherent(&phba->pcidev->dev, dma_size,
4784 dmabuf->virt, dmabuf->phys);
def9c7a9 4785 kfree(dmabuf);
da0436e9
JS
4786 return -EIO;
4787 }
1dcb58e5 4788
da0436e9
JS
4789 /*
4790 * The available vpd length cannot be bigger than the
4791 * DMA buffer passed to the port. Catch the less than
4792 * case and update the caller's size.
4793 */
4794 if (mqe->un.read_rev.avail_vpd_len < *vpd_size)
4795 *vpd_size = mqe->un.read_rev.avail_vpd_len;
3772a991 4796
d7c47992
JS
4797 memcpy(vpd, dmabuf->virt, *vpd_size);
4798
da0436e9
JS
4799 dma_free_coherent(&phba->pcidev->dev, dma_size,
4800 dmabuf->virt, dmabuf->phys);
4801 kfree(dmabuf);
4802 return 0;
dea3101e 4803}
4804
cd1c8301
JS
4805/**
4806 * lpfc_sli4_retrieve_pport_name - Retrieve SLI4 device physical port name
4807 * @phba: pointer to lpfc hba data structure.
4808 *
4809 * This routine retrieves SLI4 device physical port name this PCI function
4810 * is attached to.
4811 *
4812 * Return codes
4907cb7b 4813 * 0 - successful
cd1c8301
JS
4814 * otherwise - failed to retrieve physical port name
4815 **/
4816static int
4817lpfc_sli4_retrieve_pport_name(struct lpfc_hba *phba)
4818{
4819 LPFC_MBOXQ_t *mboxq;
cd1c8301
JS
4820 struct lpfc_mbx_get_cntl_attributes *mbx_cntl_attr;
4821 struct lpfc_controller_attribute *cntl_attr;
4822 struct lpfc_mbx_get_port_name *get_port_name;
4823 void *virtaddr = NULL;
4824 uint32_t alloclen, reqlen;
4825 uint32_t shdr_status, shdr_add_status;
4826 union lpfc_sli4_cfg_shdr *shdr;
4827 char cport_name = 0;
4828 int rc;
4829
4830 /* We assume nothing at this point */
4831 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_INVAL;
4832 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_NON;
4833
4834 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4835 if (!mboxq)
4836 return -ENOMEM;
cd1c8301 4837 /* obtain link type and link number via READ_CONFIG */
ff78d8f9
JS
4838 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_INVAL;
4839 lpfc_sli4_read_config(phba);
4840 if (phba->sli4_hba.lnk_info.lnk_dv == LPFC_LNK_DAT_VAL)
4841 goto retrieve_ppname;
cd1c8301
JS
4842
4843 /* obtain link type and link number via COMMON_GET_CNTL_ATTRIBUTES */
4844 reqlen = sizeof(struct lpfc_mbx_get_cntl_attributes);
4845 alloclen = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
4846 LPFC_MBOX_OPCODE_GET_CNTL_ATTRIBUTES, reqlen,
4847 LPFC_SLI4_MBX_NEMBED);
4848 if (alloclen < reqlen) {
4849 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
4850 "3084 Allocated DMA memory size (%d) is "
4851 "less than the requested DMA memory size "
4852 "(%d)\n", alloclen, reqlen);
4853 rc = -ENOMEM;
4854 goto out_free_mboxq;
4855 }
4856 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4857 virtaddr = mboxq->sge_array->addr[0];
4858 mbx_cntl_attr = (struct lpfc_mbx_get_cntl_attributes *)virtaddr;
4859 shdr = &mbx_cntl_attr->cfg_shdr;
4860 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
4861 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
4862 if (shdr_status || shdr_add_status || rc) {
4863 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
4864 "3085 Mailbox x%x (x%x/x%x) failed, "
4865 "rc:x%x, status:x%x, add_status:x%x\n",
4866 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
4867 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
4868 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
4869 rc, shdr_status, shdr_add_status);
4870 rc = -ENXIO;
4871 goto out_free_mboxq;
4872 }
4873 cntl_attr = &mbx_cntl_attr->cntl_attr;
4874 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_VAL;
4875 phba->sli4_hba.lnk_info.lnk_tp =
4876 bf_get(lpfc_cntl_attr_lnk_type, cntl_attr);
4877 phba->sli4_hba.lnk_info.lnk_no =
4878 bf_get(lpfc_cntl_attr_lnk_numb, cntl_attr);
4879 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4880 "3086 lnk_type:%d, lnk_numb:%d\n",
4881 phba->sli4_hba.lnk_info.lnk_tp,
4882 phba->sli4_hba.lnk_info.lnk_no);
4883
4884retrieve_ppname:
4885 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
4886 LPFC_MBOX_OPCODE_GET_PORT_NAME,
4887 sizeof(struct lpfc_mbx_get_port_name) -
4888 sizeof(struct lpfc_sli4_cfg_mhdr),
4889 LPFC_SLI4_MBX_EMBED);
4890 get_port_name = &mboxq->u.mqe.un.get_port_name;
4891 shdr = (union lpfc_sli4_cfg_shdr *)&get_port_name->header.cfg_shdr;
4892 bf_set(lpfc_mbox_hdr_version, &shdr->request, LPFC_OPCODE_VERSION_1);
4893 bf_set(lpfc_mbx_get_port_name_lnk_type, &get_port_name->u.request,
4894 phba->sli4_hba.lnk_info.lnk_tp);
4895 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4896 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
4897 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
4898 if (shdr_status || shdr_add_status || rc) {
4899 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
4900 "3087 Mailbox x%x (x%x/x%x) failed: "
4901 "rc:x%x, status:x%x, add_status:x%x\n",
4902 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
4903 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
4904 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
4905 rc, shdr_status, shdr_add_status);
4906 rc = -ENXIO;
4907 goto out_free_mboxq;
4908 }
4909 switch (phba->sli4_hba.lnk_info.lnk_no) {
4910 case LPFC_LINK_NUMBER_0:
4911 cport_name = bf_get(lpfc_mbx_get_port_name_name0,
4912 &get_port_name->u.response);
4913 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
4914 break;
4915 case LPFC_LINK_NUMBER_1:
4916 cport_name = bf_get(lpfc_mbx_get_port_name_name1,
4917 &get_port_name->u.response);
4918 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
4919 break;
4920 case LPFC_LINK_NUMBER_2:
4921 cport_name = bf_get(lpfc_mbx_get_port_name_name2,
4922 &get_port_name->u.response);
4923 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
4924 break;
4925 case LPFC_LINK_NUMBER_3:
4926 cport_name = bf_get(lpfc_mbx_get_port_name_name3,
4927 &get_port_name->u.response);
4928 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
4929 break;
4930 default:
4931 break;
4932 }
4933
4934 if (phba->sli4_hba.pport_name_sta == LPFC_SLI4_PPNAME_GET) {
4935 phba->Port[0] = cport_name;
4936 phba->Port[1] = '\0';
4937 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4938 "3091 SLI get port name: %s\n", phba->Port);
4939 }
4940
4941out_free_mboxq:
4942 if (rc != MBX_TIMEOUT) {
4943 if (bf_get(lpfc_mqe_command, &mboxq->u.mqe) == MBX_SLI4_CONFIG)
4944 lpfc_sli4_mbox_cmd_free(phba, mboxq);
4945 else
4946 mempool_free(mboxq, phba->mbox_mem_pool);
4947 }
4948 return rc;
4949}
4950
e59058c4 4951/**
da0436e9
JS
4952 * lpfc_sli4_arm_cqeq_intr - Arm sli-4 device completion and event queues
4953 * @phba: pointer to lpfc hba data structure.
e59058c4 4954 *
da0436e9
JS
4955 * This routine is called to explicitly arm the SLI4 device's completion and
4956 * event queues
4957 **/
4958static void
4959lpfc_sli4_arm_cqeq_intr(struct lpfc_hba *phba)
4960{
962bc51b 4961 int fcp_eqidx;
da0436e9
JS
4962
4963 lpfc_sli4_cq_release(phba->sli4_hba.mbx_cq, LPFC_QUEUE_REARM);
4964 lpfc_sli4_cq_release(phba->sli4_hba.els_cq, LPFC_QUEUE_REARM);
0558056c 4965 fcp_eqidx = 0;
2e90f4b5 4966 if (phba->sli4_hba.fcp_cq) {
67d12733 4967 do {
2e90f4b5
JS
4968 lpfc_sli4_cq_release(phba->sli4_hba.fcp_cq[fcp_eqidx],
4969 LPFC_QUEUE_REARM);
67d12733 4970 } while (++fcp_eqidx < phba->cfg_fcp_io_channel);
2e90f4b5 4971 }
67d12733
JS
4972 if (phba->sli4_hba.hba_eq) {
4973 for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_io_channel;
2e90f4b5 4974 fcp_eqidx++)
67d12733 4975 lpfc_sli4_eq_release(phba->sli4_hba.hba_eq[fcp_eqidx],
2e90f4b5
JS
4976 LPFC_QUEUE_REARM);
4977 }
da0436e9
JS
4978}
4979
6d368e53
JS
4980/**
4981 * lpfc_sli4_get_avail_extnt_rsrc - Get available resource extent count.
4982 * @phba: Pointer to HBA context object.
4983 * @type: The resource extent type.
b76f2dc9
JS
4984 * @extnt_count: buffer to hold port available extent count.
4985 * @extnt_size: buffer to hold element count per extent.
6d368e53 4986 *
b76f2dc9
JS
4987 * This function calls the port and retrievs the number of available
4988 * extents and their size for a particular extent type.
4989 *
4990 * Returns: 0 if successful. Nonzero otherwise.
6d368e53 4991 **/
b76f2dc9 4992int
6d368e53
JS
4993lpfc_sli4_get_avail_extnt_rsrc(struct lpfc_hba *phba, uint16_t type,
4994 uint16_t *extnt_count, uint16_t *extnt_size)
4995{
4996 int rc = 0;
4997 uint32_t length;
4998 uint32_t mbox_tmo;
4999 struct lpfc_mbx_get_rsrc_extent_info *rsrc_info;
5000 LPFC_MBOXQ_t *mbox;
5001
5002 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5003 if (!mbox)
5004 return -ENOMEM;
5005
5006 /* Find out how many extents are available for this resource type */
5007 length = (sizeof(struct lpfc_mbx_get_rsrc_extent_info) -
5008 sizeof(struct lpfc_sli4_cfg_mhdr));
5009 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5010 LPFC_MBOX_OPCODE_GET_RSRC_EXTENT_INFO,
5011 length, LPFC_SLI4_MBX_EMBED);
5012
5013 /* Send an extents count of 0 - the GET doesn't use it. */
5014 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, 0, type,
5015 LPFC_SLI4_MBX_EMBED);
5016 if (unlikely(rc)) {
5017 rc = -EIO;
5018 goto err_exit;
5019 }
5020
5021 if (!phba->sli4_hba.intr_enable)
5022 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5023 else {
a183a15f 5024 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
6d368e53
JS
5025 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5026 }
5027 if (unlikely(rc)) {
5028 rc = -EIO;
5029 goto err_exit;
5030 }
5031
5032 rsrc_info = &mbox->u.mqe.un.rsrc_extent_info;
5033 if (bf_get(lpfc_mbox_hdr_status,
5034 &rsrc_info->header.cfg_shdr.response)) {
5035 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5036 "2930 Failed to get resource extents "
5037 "Status 0x%x Add'l Status 0x%x\n",
5038 bf_get(lpfc_mbox_hdr_status,
5039 &rsrc_info->header.cfg_shdr.response),
5040 bf_get(lpfc_mbox_hdr_add_status,
5041 &rsrc_info->header.cfg_shdr.response));
5042 rc = -EIO;
5043 goto err_exit;
5044 }
5045
5046 *extnt_count = bf_get(lpfc_mbx_get_rsrc_extent_info_cnt,
5047 &rsrc_info->u.rsp);
5048 *extnt_size = bf_get(lpfc_mbx_get_rsrc_extent_info_size,
5049 &rsrc_info->u.rsp);
8a9d2e80
JS
5050
5051 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
5052 "3162 Retrieved extents type-%d from port: count:%d, "
5053 "size:%d\n", type, *extnt_count, *extnt_size);
5054
5055err_exit:
6d368e53
JS
5056 mempool_free(mbox, phba->mbox_mem_pool);
5057 return rc;
5058}
5059
5060/**
5061 * lpfc_sli4_chk_avail_extnt_rsrc - Check for available SLI4 resource extents.
5062 * @phba: Pointer to HBA context object.
5063 * @type: The extent type to check.
5064 *
5065 * This function reads the current available extents from the port and checks
5066 * if the extent count or extent size has changed since the last access.
5067 * Callers use this routine post port reset to understand if there is a
5068 * extent reprovisioning requirement.
5069 *
5070 * Returns:
5071 * -Error: error indicates problem.
5072 * 1: Extent count or size has changed.
5073 * 0: No changes.
5074 **/
5075static int
5076lpfc_sli4_chk_avail_extnt_rsrc(struct lpfc_hba *phba, uint16_t type)
5077{
5078 uint16_t curr_ext_cnt, rsrc_ext_cnt;
5079 uint16_t size_diff, rsrc_ext_size;
5080 int rc = 0;
5081 struct lpfc_rsrc_blks *rsrc_entry;
5082 struct list_head *rsrc_blk_list = NULL;
5083
5084 size_diff = 0;
5085 curr_ext_cnt = 0;
5086 rc = lpfc_sli4_get_avail_extnt_rsrc(phba, type,
5087 &rsrc_ext_cnt,
5088 &rsrc_ext_size);
5089 if (unlikely(rc))
5090 return -EIO;
5091
5092 switch (type) {
5093 case LPFC_RSC_TYPE_FCOE_RPI:
5094 rsrc_blk_list = &phba->sli4_hba.lpfc_rpi_blk_list;
5095 break;
5096 case LPFC_RSC_TYPE_FCOE_VPI:
5097 rsrc_blk_list = &phba->lpfc_vpi_blk_list;
5098 break;
5099 case LPFC_RSC_TYPE_FCOE_XRI:
5100 rsrc_blk_list = &phba->sli4_hba.lpfc_xri_blk_list;
5101 break;
5102 case LPFC_RSC_TYPE_FCOE_VFI:
5103 rsrc_blk_list = &phba->sli4_hba.lpfc_vfi_blk_list;
5104 break;
5105 default:
5106 break;
5107 }
5108
5109 list_for_each_entry(rsrc_entry, rsrc_blk_list, list) {
5110 curr_ext_cnt++;
5111 if (rsrc_entry->rsrc_size != rsrc_ext_size)
5112 size_diff++;
5113 }
5114
5115 if (curr_ext_cnt != rsrc_ext_cnt || size_diff != 0)
5116 rc = 1;
5117
5118 return rc;
5119}
5120
5121/**
5122 * lpfc_sli4_cfg_post_extnts -
5123 * @phba: Pointer to HBA context object.
5124 * @extnt_cnt - number of available extents.
5125 * @type - the extent type (rpi, xri, vfi, vpi).
5126 * @emb - buffer to hold either MBX_EMBED or MBX_NEMBED operation.
5127 * @mbox - pointer to the caller's allocated mailbox structure.
5128 *
5129 * This function executes the extents allocation request. It also
5130 * takes care of the amount of memory needed to allocate or get the
5131 * allocated extents. It is the caller's responsibility to evaluate
5132 * the response.
5133 *
5134 * Returns:
5135 * -Error: Error value describes the condition found.
5136 * 0: if successful
5137 **/
5138static int
8a9d2e80 5139lpfc_sli4_cfg_post_extnts(struct lpfc_hba *phba, uint16_t extnt_cnt,
6d368e53
JS
5140 uint16_t type, bool *emb, LPFC_MBOXQ_t *mbox)
5141{
5142 int rc = 0;
5143 uint32_t req_len;
5144 uint32_t emb_len;
5145 uint32_t alloc_len, mbox_tmo;
5146
5147 /* Calculate the total requested length of the dma memory */
8a9d2e80 5148 req_len = extnt_cnt * sizeof(uint16_t);
6d368e53
JS
5149
5150 /*
5151 * Calculate the size of an embedded mailbox. The uint32_t
5152 * accounts for extents-specific word.
5153 */
5154 emb_len = sizeof(MAILBOX_t) - sizeof(struct mbox_header) -
5155 sizeof(uint32_t);
5156
5157 /*
5158 * Presume the allocation and response will fit into an embedded
5159 * mailbox. If not true, reconfigure to a non-embedded mailbox.
5160 */
5161 *emb = LPFC_SLI4_MBX_EMBED;
5162 if (req_len > emb_len) {
8a9d2e80 5163 req_len = extnt_cnt * sizeof(uint16_t) +
6d368e53
JS
5164 sizeof(union lpfc_sli4_cfg_shdr) +
5165 sizeof(uint32_t);
5166 *emb = LPFC_SLI4_MBX_NEMBED;
5167 }
5168
5169 alloc_len = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5170 LPFC_MBOX_OPCODE_ALLOC_RSRC_EXTENT,
5171 req_len, *emb);
5172 if (alloc_len < req_len) {
5173 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
b76f2dc9 5174 "2982 Allocated DMA memory size (x%x) is "
6d368e53
JS
5175 "less than the requested DMA memory "
5176 "size (x%x)\n", alloc_len, req_len);
5177 return -ENOMEM;
5178 }
8a9d2e80 5179 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, extnt_cnt, type, *emb);
6d368e53
JS
5180 if (unlikely(rc))
5181 return -EIO;
5182
5183 if (!phba->sli4_hba.intr_enable)
5184 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5185 else {
a183a15f 5186 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
6d368e53
JS
5187 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5188 }
5189
5190 if (unlikely(rc))
5191 rc = -EIO;
5192 return rc;
5193}
5194
5195/**
5196 * lpfc_sli4_alloc_extent - Allocate an SLI4 resource extent.
5197 * @phba: Pointer to HBA context object.
5198 * @type: The resource extent type to allocate.
5199 *
5200 * This function allocates the number of elements for the specified
5201 * resource type.
5202 **/
5203static int
5204lpfc_sli4_alloc_extent(struct lpfc_hba *phba, uint16_t type)
5205{
5206 bool emb = false;
5207 uint16_t rsrc_id_cnt, rsrc_cnt, rsrc_size;
5208 uint16_t rsrc_id, rsrc_start, j, k;
5209 uint16_t *ids;
5210 int i, rc;
5211 unsigned long longs;
5212 unsigned long *bmask;
5213 struct lpfc_rsrc_blks *rsrc_blks;
5214 LPFC_MBOXQ_t *mbox;
5215 uint32_t length;
5216 struct lpfc_id_range *id_array = NULL;
5217 void *virtaddr = NULL;
5218 struct lpfc_mbx_nembed_rsrc_extent *n_rsrc;
5219 struct lpfc_mbx_alloc_rsrc_extents *rsrc_ext;
5220 struct list_head *ext_blk_list;
5221
5222 rc = lpfc_sli4_get_avail_extnt_rsrc(phba, type,
5223 &rsrc_cnt,
5224 &rsrc_size);
5225 if (unlikely(rc))
5226 return -EIO;
5227
5228 if ((rsrc_cnt == 0) || (rsrc_size == 0)) {
5229 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5230 "3009 No available Resource Extents "
5231 "for resource type 0x%x: Count: 0x%x, "
5232 "Size 0x%x\n", type, rsrc_cnt,
5233 rsrc_size);
5234 return -ENOMEM;
5235 }
5236
8a9d2e80
JS
5237 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_INIT | LOG_SLI,
5238 "2903 Post resource extents type-0x%x: "
5239 "count:%d, size %d\n", type, rsrc_cnt, rsrc_size);
6d368e53
JS
5240
5241 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5242 if (!mbox)
5243 return -ENOMEM;
5244
8a9d2e80 5245 rc = lpfc_sli4_cfg_post_extnts(phba, rsrc_cnt, type, &emb, mbox);
6d368e53
JS
5246 if (unlikely(rc)) {
5247 rc = -EIO;
5248 goto err_exit;
5249 }
5250
5251 /*
5252 * Figure out where the response is located. Then get local pointers
5253 * to the response data. The port does not guarantee to respond to
5254 * all extents counts request so update the local variable with the
5255 * allocated count from the port.
5256 */
5257 if (emb == LPFC_SLI4_MBX_EMBED) {
5258 rsrc_ext = &mbox->u.mqe.un.alloc_rsrc_extents;
5259 id_array = &rsrc_ext->u.rsp.id[0];
5260 rsrc_cnt = bf_get(lpfc_mbx_rsrc_cnt, &rsrc_ext->u.rsp);
5261 } else {
5262 virtaddr = mbox->sge_array->addr[0];
5263 n_rsrc = (struct lpfc_mbx_nembed_rsrc_extent *) virtaddr;
5264 rsrc_cnt = bf_get(lpfc_mbx_rsrc_cnt, n_rsrc);
5265 id_array = &n_rsrc->id;
5266 }
5267
5268 longs = ((rsrc_cnt * rsrc_size) + BITS_PER_LONG - 1) / BITS_PER_LONG;
5269 rsrc_id_cnt = rsrc_cnt * rsrc_size;
5270
5271 /*
5272 * Based on the resource size and count, correct the base and max
5273 * resource values.
5274 */
5275 length = sizeof(struct lpfc_rsrc_blks);
5276 switch (type) {
5277 case LPFC_RSC_TYPE_FCOE_RPI:
5278 phba->sli4_hba.rpi_bmask = kzalloc(longs *
5279 sizeof(unsigned long),
5280 GFP_KERNEL);
5281 if (unlikely(!phba->sli4_hba.rpi_bmask)) {
5282 rc = -ENOMEM;
5283 goto err_exit;
5284 }
5285 phba->sli4_hba.rpi_ids = kzalloc(rsrc_id_cnt *
5286 sizeof(uint16_t),
5287 GFP_KERNEL);
5288 if (unlikely(!phba->sli4_hba.rpi_ids)) {
5289 kfree(phba->sli4_hba.rpi_bmask);
5290 rc = -ENOMEM;
5291 goto err_exit;
5292 }
5293
5294 /*
5295 * The next_rpi was initialized with the maximum available
5296 * count but the port may allocate a smaller number. Catch
5297 * that case and update the next_rpi.
5298 */
5299 phba->sli4_hba.next_rpi = rsrc_id_cnt;
5300
5301 /* Initialize local ptrs for common extent processing later. */
5302 bmask = phba->sli4_hba.rpi_bmask;
5303 ids = phba->sli4_hba.rpi_ids;
5304 ext_blk_list = &phba->sli4_hba.lpfc_rpi_blk_list;
5305 break;
5306 case LPFC_RSC_TYPE_FCOE_VPI:
5307 phba->vpi_bmask = kzalloc(longs *
5308 sizeof(unsigned long),
5309 GFP_KERNEL);
5310 if (unlikely(!phba->vpi_bmask)) {
5311 rc = -ENOMEM;
5312 goto err_exit;
5313 }
5314 phba->vpi_ids = kzalloc(rsrc_id_cnt *
5315 sizeof(uint16_t),
5316 GFP_KERNEL);
5317 if (unlikely(!phba->vpi_ids)) {
5318 kfree(phba->vpi_bmask);
5319 rc = -ENOMEM;
5320 goto err_exit;
5321 }
5322
5323 /* Initialize local ptrs for common extent processing later. */
5324 bmask = phba->vpi_bmask;
5325 ids = phba->vpi_ids;
5326 ext_blk_list = &phba->lpfc_vpi_blk_list;
5327 break;
5328 case LPFC_RSC_TYPE_FCOE_XRI:
5329 phba->sli4_hba.xri_bmask = kzalloc(longs *
5330 sizeof(unsigned long),
5331 GFP_KERNEL);
5332 if (unlikely(!phba->sli4_hba.xri_bmask)) {
5333 rc = -ENOMEM;
5334 goto err_exit;
5335 }
8a9d2e80 5336 phba->sli4_hba.max_cfg_param.xri_used = 0;
6d368e53
JS
5337 phba->sli4_hba.xri_ids = kzalloc(rsrc_id_cnt *
5338 sizeof(uint16_t),
5339 GFP_KERNEL);
5340 if (unlikely(!phba->sli4_hba.xri_ids)) {
5341 kfree(phba->sli4_hba.xri_bmask);
5342 rc = -ENOMEM;
5343 goto err_exit;
5344 }
5345
5346 /* Initialize local ptrs for common extent processing later. */
5347 bmask = phba->sli4_hba.xri_bmask;
5348 ids = phba->sli4_hba.xri_ids;
5349 ext_blk_list = &phba->sli4_hba.lpfc_xri_blk_list;
5350 break;
5351 case LPFC_RSC_TYPE_FCOE_VFI:
5352 phba->sli4_hba.vfi_bmask = kzalloc(longs *
5353 sizeof(unsigned long),
5354 GFP_KERNEL);
5355 if (unlikely(!phba->sli4_hba.vfi_bmask)) {
5356 rc = -ENOMEM;
5357 goto err_exit;
5358 }
5359 phba->sli4_hba.vfi_ids = kzalloc(rsrc_id_cnt *
5360 sizeof(uint16_t),
5361 GFP_KERNEL);
5362 if (unlikely(!phba->sli4_hba.vfi_ids)) {
5363 kfree(phba->sli4_hba.vfi_bmask);
5364 rc = -ENOMEM;
5365 goto err_exit;
5366 }
5367
5368 /* Initialize local ptrs for common extent processing later. */
5369 bmask = phba->sli4_hba.vfi_bmask;
5370 ids = phba->sli4_hba.vfi_ids;
5371 ext_blk_list = &phba->sli4_hba.lpfc_vfi_blk_list;
5372 break;
5373 default:
5374 /* Unsupported Opcode. Fail call. */
5375 id_array = NULL;
5376 bmask = NULL;
5377 ids = NULL;
5378 ext_blk_list = NULL;
5379 goto err_exit;
5380 }
5381
5382 /*
5383 * Complete initializing the extent configuration with the
5384 * allocated ids assigned to this function. The bitmask serves
5385 * as an index into the array and manages the available ids. The
5386 * array just stores the ids communicated to the port via the wqes.
5387 */
5388 for (i = 0, j = 0, k = 0; i < rsrc_cnt; i++) {
5389 if ((i % 2) == 0)
5390 rsrc_id = bf_get(lpfc_mbx_rsrc_id_word4_0,
5391 &id_array[k]);
5392 else
5393 rsrc_id = bf_get(lpfc_mbx_rsrc_id_word4_1,
5394 &id_array[k]);
5395
5396 rsrc_blks = kzalloc(length, GFP_KERNEL);
5397 if (unlikely(!rsrc_blks)) {
5398 rc = -ENOMEM;
5399 kfree(bmask);
5400 kfree(ids);
5401 goto err_exit;
5402 }
5403 rsrc_blks->rsrc_start = rsrc_id;
5404 rsrc_blks->rsrc_size = rsrc_size;
5405 list_add_tail(&rsrc_blks->list, ext_blk_list);
5406 rsrc_start = rsrc_id;
5407 if ((type == LPFC_RSC_TYPE_FCOE_XRI) && (j == 0))
5408 phba->sli4_hba.scsi_xri_start = rsrc_start +
5409 lpfc_sli4_get_els_iocb_cnt(phba);
5410
5411 while (rsrc_id < (rsrc_start + rsrc_size)) {
5412 ids[j] = rsrc_id;
5413 rsrc_id++;
5414 j++;
5415 }
5416 /* Entire word processed. Get next word.*/
5417 if ((i % 2) == 1)
5418 k++;
5419 }
5420 err_exit:
5421 lpfc_sli4_mbox_cmd_free(phba, mbox);
5422 return rc;
5423}
5424
5425/**
5426 * lpfc_sli4_dealloc_extent - Deallocate an SLI4 resource extent.
5427 * @phba: Pointer to HBA context object.
5428 * @type: the extent's type.
5429 *
5430 * This function deallocates all extents of a particular resource type.
5431 * SLI4 does not allow for deallocating a particular extent range. It
5432 * is the caller's responsibility to release all kernel memory resources.
5433 **/
5434static int
5435lpfc_sli4_dealloc_extent(struct lpfc_hba *phba, uint16_t type)
5436{
5437 int rc;
5438 uint32_t length, mbox_tmo = 0;
5439 LPFC_MBOXQ_t *mbox;
5440 struct lpfc_mbx_dealloc_rsrc_extents *dealloc_rsrc;
5441 struct lpfc_rsrc_blks *rsrc_blk, *rsrc_blk_next;
5442
5443 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5444 if (!mbox)
5445 return -ENOMEM;
5446
5447 /*
5448 * This function sends an embedded mailbox because it only sends the
5449 * the resource type. All extents of this type are released by the
5450 * port.
5451 */
5452 length = (sizeof(struct lpfc_mbx_dealloc_rsrc_extents) -
5453 sizeof(struct lpfc_sli4_cfg_mhdr));
5454 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5455 LPFC_MBOX_OPCODE_DEALLOC_RSRC_EXTENT,
5456 length, LPFC_SLI4_MBX_EMBED);
5457
5458 /* Send an extents count of 0 - the dealloc doesn't use it. */
5459 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, 0, type,
5460 LPFC_SLI4_MBX_EMBED);
5461 if (unlikely(rc)) {
5462 rc = -EIO;
5463 goto out_free_mbox;
5464 }
5465 if (!phba->sli4_hba.intr_enable)
5466 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5467 else {
a183a15f 5468 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
6d368e53
JS
5469 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5470 }
5471 if (unlikely(rc)) {
5472 rc = -EIO;
5473 goto out_free_mbox;
5474 }
5475
5476 dealloc_rsrc = &mbox->u.mqe.un.dealloc_rsrc_extents;
5477 if (bf_get(lpfc_mbox_hdr_status,
5478 &dealloc_rsrc->header.cfg_shdr.response)) {
5479 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5480 "2919 Failed to release resource extents "
5481 "for type %d - Status 0x%x Add'l Status 0x%x. "
5482 "Resource memory not released.\n",
5483 type,
5484 bf_get(lpfc_mbox_hdr_status,
5485 &dealloc_rsrc->header.cfg_shdr.response),
5486 bf_get(lpfc_mbox_hdr_add_status,
5487 &dealloc_rsrc->header.cfg_shdr.response));
5488 rc = -EIO;
5489 goto out_free_mbox;
5490 }
5491
5492 /* Release kernel memory resources for the specific type. */
5493 switch (type) {
5494 case LPFC_RSC_TYPE_FCOE_VPI:
5495 kfree(phba->vpi_bmask);
5496 kfree(phba->vpi_ids);
5497 bf_set(lpfc_vpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5498 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5499 &phba->lpfc_vpi_blk_list, list) {
5500 list_del_init(&rsrc_blk->list);
5501 kfree(rsrc_blk);
5502 }
16a3a208 5503 phba->sli4_hba.max_cfg_param.vpi_used = 0;
6d368e53
JS
5504 break;
5505 case LPFC_RSC_TYPE_FCOE_XRI:
5506 kfree(phba->sli4_hba.xri_bmask);
5507 kfree(phba->sli4_hba.xri_ids);
6d368e53
JS
5508 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5509 &phba->sli4_hba.lpfc_xri_blk_list, list) {
5510 list_del_init(&rsrc_blk->list);
5511 kfree(rsrc_blk);
5512 }
5513 break;
5514 case LPFC_RSC_TYPE_FCOE_VFI:
5515 kfree(phba->sli4_hba.vfi_bmask);
5516 kfree(phba->sli4_hba.vfi_ids);
5517 bf_set(lpfc_vfi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5518 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5519 &phba->sli4_hba.lpfc_vfi_blk_list, list) {
5520 list_del_init(&rsrc_blk->list);
5521 kfree(rsrc_blk);
5522 }
5523 break;
5524 case LPFC_RSC_TYPE_FCOE_RPI:
5525 /* RPI bitmask and physical id array are cleaned up earlier. */
5526 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
5527 &phba->sli4_hba.lpfc_rpi_blk_list, list) {
5528 list_del_init(&rsrc_blk->list);
5529 kfree(rsrc_blk);
5530 }
5531 break;
5532 default:
5533 break;
5534 }
5535
5536 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5537
5538 out_free_mbox:
5539 mempool_free(mbox, phba->mbox_mem_pool);
5540 return rc;
5541}
5542
5543/**
5544 * lpfc_sli4_alloc_resource_identifiers - Allocate all SLI4 resource extents.
5545 * @phba: Pointer to HBA context object.
5546 *
5547 * This function allocates all SLI4 resource identifiers.
5548 **/
5549int
5550lpfc_sli4_alloc_resource_identifiers(struct lpfc_hba *phba)
5551{
5552 int i, rc, error = 0;
5553 uint16_t count, base;
5554 unsigned long longs;
5555
ff78d8f9
JS
5556 if (!phba->sli4_hba.rpi_hdrs_in_use)
5557 phba->sli4_hba.next_rpi = phba->sli4_hba.max_cfg_param.max_rpi;
6d368e53
JS
5558 if (phba->sli4_hba.extents_in_use) {
5559 /*
5560 * The port supports resource extents. The XRI, VPI, VFI, RPI
5561 * resource extent count must be read and allocated before
5562 * provisioning the resource id arrays.
5563 */
5564 if (bf_get(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags) ==
5565 LPFC_IDX_RSRC_RDY) {
5566 /*
5567 * Extent-based resources are set - the driver could
5568 * be in a port reset. Figure out if any corrective
5569 * actions need to be taken.
5570 */
5571 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5572 LPFC_RSC_TYPE_FCOE_VFI);
5573 if (rc != 0)
5574 error++;
5575 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5576 LPFC_RSC_TYPE_FCOE_VPI);
5577 if (rc != 0)
5578 error++;
5579 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5580 LPFC_RSC_TYPE_FCOE_XRI);
5581 if (rc != 0)
5582 error++;
5583 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
5584 LPFC_RSC_TYPE_FCOE_RPI);
5585 if (rc != 0)
5586 error++;
5587
5588 /*
5589 * It's possible that the number of resources
5590 * provided to this port instance changed between
5591 * resets. Detect this condition and reallocate
5592 * resources. Otherwise, there is no action.
5593 */
5594 if (error) {
5595 lpfc_printf_log(phba, KERN_INFO,
5596 LOG_MBOX | LOG_INIT,
5597 "2931 Detected extent resource "
5598 "change. Reallocating all "
5599 "extents.\n");
5600 rc = lpfc_sli4_dealloc_extent(phba,
5601 LPFC_RSC_TYPE_FCOE_VFI);
5602 rc = lpfc_sli4_dealloc_extent(phba,
5603 LPFC_RSC_TYPE_FCOE_VPI);
5604 rc = lpfc_sli4_dealloc_extent(phba,
5605 LPFC_RSC_TYPE_FCOE_XRI);
5606 rc = lpfc_sli4_dealloc_extent(phba,
5607 LPFC_RSC_TYPE_FCOE_RPI);
5608 } else
5609 return 0;
5610 }
5611
5612 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_VFI);
5613 if (unlikely(rc))
5614 goto err_exit;
5615
5616 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_VPI);
5617 if (unlikely(rc))
5618 goto err_exit;
5619
5620 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_RPI);
5621 if (unlikely(rc))
5622 goto err_exit;
5623
5624 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_XRI);
5625 if (unlikely(rc))
5626 goto err_exit;
5627 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags,
5628 LPFC_IDX_RSRC_RDY);
5629 return rc;
5630 } else {
5631 /*
5632 * The port does not support resource extents. The XRI, VPI,
5633 * VFI, RPI resource ids were determined from READ_CONFIG.
5634 * Just allocate the bitmasks and provision the resource id
5635 * arrays. If a port reset is active, the resources don't
5636 * need any action - just exit.
5637 */
5638 if (bf_get(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags) ==
ff78d8f9
JS
5639 LPFC_IDX_RSRC_RDY) {
5640 lpfc_sli4_dealloc_resource_identifiers(phba);
5641 lpfc_sli4_remove_rpis(phba);
5642 }
6d368e53
JS
5643 /* RPIs. */
5644 count = phba->sli4_hba.max_cfg_param.max_rpi;
0a630c27
JS
5645 if (count <= 0) {
5646 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5647 "3279 Invalid provisioning of "
5648 "rpi:%d\n", count);
5649 rc = -EINVAL;
5650 goto err_exit;
5651 }
6d368e53
JS
5652 base = phba->sli4_hba.max_cfg_param.rpi_base;
5653 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5654 phba->sli4_hba.rpi_bmask = kzalloc(longs *
5655 sizeof(unsigned long),
5656 GFP_KERNEL);
5657 if (unlikely(!phba->sli4_hba.rpi_bmask)) {
5658 rc = -ENOMEM;
5659 goto err_exit;
5660 }
5661 phba->sli4_hba.rpi_ids = kzalloc(count *
5662 sizeof(uint16_t),
5663 GFP_KERNEL);
5664 if (unlikely(!phba->sli4_hba.rpi_ids)) {
5665 rc = -ENOMEM;
5666 goto free_rpi_bmask;
5667 }
5668
5669 for (i = 0; i < count; i++)
5670 phba->sli4_hba.rpi_ids[i] = base + i;
5671
5672 /* VPIs. */
5673 count = phba->sli4_hba.max_cfg_param.max_vpi;
0a630c27
JS
5674 if (count <= 0) {
5675 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5676 "3280 Invalid provisioning of "
5677 "vpi:%d\n", count);
5678 rc = -EINVAL;
5679 goto free_rpi_ids;
5680 }
6d368e53
JS
5681 base = phba->sli4_hba.max_cfg_param.vpi_base;
5682 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5683 phba->vpi_bmask = kzalloc(longs *
5684 sizeof(unsigned long),
5685 GFP_KERNEL);
5686 if (unlikely(!phba->vpi_bmask)) {
5687 rc = -ENOMEM;
5688 goto free_rpi_ids;
5689 }
5690 phba->vpi_ids = kzalloc(count *
5691 sizeof(uint16_t),
5692 GFP_KERNEL);
5693 if (unlikely(!phba->vpi_ids)) {
5694 rc = -ENOMEM;
5695 goto free_vpi_bmask;
5696 }
5697
5698 for (i = 0; i < count; i++)
5699 phba->vpi_ids[i] = base + i;
5700
5701 /* XRIs. */
5702 count = phba->sli4_hba.max_cfg_param.max_xri;
0a630c27
JS
5703 if (count <= 0) {
5704 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5705 "3281 Invalid provisioning of "
5706 "xri:%d\n", count);
5707 rc = -EINVAL;
5708 goto free_vpi_ids;
5709 }
6d368e53
JS
5710 base = phba->sli4_hba.max_cfg_param.xri_base;
5711 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5712 phba->sli4_hba.xri_bmask = kzalloc(longs *
5713 sizeof(unsigned long),
5714 GFP_KERNEL);
5715 if (unlikely(!phba->sli4_hba.xri_bmask)) {
5716 rc = -ENOMEM;
5717 goto free_vpi_ids;
5718 }
41899be7 5719 phba->sli4_hba.max_cfg_param.xri_used = 0;
6d368e53
JS
5720 phba->sli4_hba.xri_ids = kzalloc(count *
5721 sizeof(uint16_t),
5722 GFP_KERNEL);
5723 if (unlikely(!phba->sli4_hba.xri_ids)) {
5724 rc = -ENOMEM;
5725 goto free_xri_bmask;
5726 }
5727
5728 for (i = 0; i < count; i++)
5729 phba->sli4_hba.xri_ids[i] = base + i;
5730
5731 /* VFIs. */
5732 count = phba->sli4_hba.max_cfg_param.max_vfi;
0a630c27
JS
5733 if (count <= 0) {
5734 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5735 "3282 Invalid provisioning of "
5736 "vfi:%d\n", count);
5737 rc = -EINVAL;
5738 goto free_xri_ids;
5739 }
6d368e53
JS
5740 base = phba->sli4_hba.max_cfg_param.vfi_base;
5741 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
5742 phba->sli4_hba.vfi_bmask = kzalloc(longs *
5743 sizeof(unsigned long),
5744 GFP_KERNEL);
5745 if (unlikely(!phba->sli4_hba.vfi_bmask)) {
5746 rc = -ENOMEM;
5747 goto free_xri_ids;
5748 }
5749 phba->sli4_hba.vfi_ids = kzalloc(count *
5750 sizeof(uint16_t),
5751 GFP_KERNEL);
5752 if (unlikely(!phba->sli4_hba.vfi_ids)) {
5753 rc = -ENOMEM;
5754 goto free_vfi_bmask;
5755 }
5756
5757 for (i = 0; i < count; i++)
5758 phba->sli4_hba.vfi_ids[i] = base + i;
5759
5760 /*
5761 * Mark all resources ready. An HBA reset doesn't need
5762 * to reset the initialization.
5763 */
5764 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags,
5765 LPFC_IDX_RSRC_RDY);
5766 return 0;
5767 }
5768
5769 free_vfi_bmask:
5770 kfree(phba->sli4_hba.vfi_bmask);
5771 free_xri_ids:
5772 kfree(phba->sli4_hba.xri_ids);
5773 free_xri_bmask:
5774 kfree(phba->sli4_hba.xri_bmask);
5775 free_vpi_ids:
5776 kfree(phba->vpi_ids);
5777 free_vpi_bmask:
5778 kfree(phba->vpi_bmask);
5779 free_rpi_ids:
5780 kfree(phba->sli4_hba.rpi_ids);
5781 free_rpi_bmask:
5782 kfree(phba->sli4_hba.rpi_bmask);
5783 err_exit:
5784 return rc;
5785}
5786
5787/**
5788 * lpfc_sli4_dealloc_resource_identifiers - Deallocate all SLI4 resource extents.
5789 * @phba: Pointer to HBA context object.
5790 *
5791 * This function allocates the number of elements for the specified
5792 * resource type.
5793 **/
5794int
5795lpfc_sli4_dealloc_resource_identifiers(struct lpfc_hba *phba)
5796{
5797 if (phba->sli4_hba.extents_in_use) {
5798 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_VPI);
5799 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_RPI);
5800 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_XRI);
5801 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_VFI);
5802 } else {
5803 kfree(phba->vpi_bmask);
16a3a208 5804 phba->sli4_hba.max_cfg_param.vpi_used = 0;
6d368e53
JS
5805 kfree(phba->vpi_ids);
5806 bf_set(lpfc_vpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5807 kfree(phba->sli4_hba.xri_bmask);
5808 kfree(phba->sli4_hba.xri_ids);
6d368e53
JS
5809 kfree(phba->sli4_hba.vfi_bmask);
5810 kfree(phba->sli4_hba.vfi_ids);
5811 bf_set(lpfc_vfi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5812 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
5813 }
5814
5815 return 0;
5816}
5817
b76f2dc9
JS
5818/**
5819 * lpfc_sli4_get_allocated_extnts - Get the port's allocated extents.
5820 * @phba: Pointer to HBA context object.
5821 * @type: The resource extent type.
5822 * @extnt_count: buffer to hold port extent count response
5823 * @extnt_size: buffer to hold port extent size response.
5824 *
5825 * This function calls the port to read the host allocated extents
5826 * for a particular type.
5827 **/
5828int
5829lpfc_sli4_get_allocated_extnts(struct lpfc_hba *phba, uint16_t type,
5830 uint16_t *extnt_cnt, uint16_t *extnt_size)
5831{
5832 bool emb;
5833 int rc = 0;
5834 uint16_t curr_blks = 0;
5835 uint32_t req_len, emb_len;
5836 uint32_t alloc_len, mbox_tmo;
5837 struct list_head *blk_list_head;
5838 struct lpfc_rsrc_blks *rsrc_blk;
5839 LPFC_MBOXQ_t *mbox;
5840 void *virtaddr = NULL;
5841 struct lpfc_mbx_nembed_rsrc_extent *n_rsrc;
5842 struct lpfc_mbx_alloc_rsrc_extents *rsrc_ext;
5843 union lpfc_sli4_cfg_shdr *shdr;
5844
5845 switch (type) {
5846 case LPFC_RSC_TYPE_FCOE_VPI:
5847 blk_list_head = &phba->lpfc_vpi_blk_list;
5848 break;
5849 case LPFC_RSC_TYPE_FCOE_XRI:
5850 blk_list_head = &phba->sli4_hba.lpfc_xri_blk_list;
5851 break;
5852 case LPFC_RSC_TYPE_FCOE_VFI:
5853 blk_list_head = &phba->sli4_hba.lpfc_vfi_blk_list;
5854 break;
5855 case LPFC_RSC_TYPE_FCOE_RPI:
5856 blk_list_head = &phba->sli4_hba.lpfc_rpi_blk_list;
5857 break;
5858 default:
5859 return -EIO;
5860 }
5861
5862 /* Count the number of extents currently allocatd for this type. */
5863 list_for_each_entry(rsrc_blk, blk_list_head, list) {
5864 if (curr_blks == 0) {
5865 /*
5866 * The GET_ALLOCATED mailbox does not return the size,
5867 * just the count. The size should be just the size
5868 * stored in the current allocated block and all sizes
5869 * for an extent type are the same so set the return
5870 * value now.
5871 */
5872 *extnt_size = rsrc_blk->rsrc_size;
5873 }
5874 curr_blks++;
5875 }
5876
5877 /* Calculate the total requested length of the dma memory. */
5878 req_len = curr_blks * sizeof(uint16_t);
5879
5880 /*
5881 * Calculate the size of an embedded mailbox. The uint32_t
5882 * accounts for extents-specific word.
5883 */
5884 emb_len = sizeof(MAILBOX_t) - sizeof(struct mbox_header) -
5885 sizeof(uint32_t);
5886
5887 /*
5888 * Presume the allocation and response will fit into an embedded
5889 * mailbox. If not true, reconfigure to a non-embedded mailbox.
5890 */
5891 emb = LPFC_SLI4_MBX_EMBED;
5892 req_len = emb_len;
5893 if (req_len > emb_len) {
5894 req_len = curr_blks * sizeof(uint16_t) +
5895 sizeof(union lpfc_sli4_cfg_shdr) +
5896 sizeof(uint32_t);
5897 emb = LPFC_SLI4_MBX_NEMBED;
5898 }
5899
5900 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5901 if (!mbox)
5902 return -ENOMEM;
5903 memset(mbox, 0, sizeof(LPFC_MBOXQ_t));
5904
5905 alloc_len = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5906 LPFC_MBOX_OPCODE_GET_ALLOC_RSRC_EXTENT,
5907 req_len, emb);
5908 if (alloc_len < req_len) {
5909 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5910 "2983 Allocated DMA memory size (x%x) is "
5911 "less than the requested DMA memory "
5912 "size (x%x)\n", alloc_len, req_len);
5913 rc = -ENOMEM;
5914 goto err_exit;
5915 }
5916 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, curr_blks, type, emb);
5917 if (unlikely(rc)) {
5918 rc = -EIO;
5919 goto err_exit;
5920 }
5921
5922 if (!phba->sli4_hba.intr_enable)
5923 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5924 else {
a183a15f 5925 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
b76f2dc9
JS
5926 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5927 }
5928
5929 if (unlikely(rc)) {
5930 rc = -EIO;
5931 goto err_exit;
5932 }
5933
5934 /*
5935 * Figure out where the response is located. Then get local pointers
5936 * to the response data. The port does not guarantee to respond to
5937 * all extents counts request so update the local variable with the
5938 * allocated count from the port.
5939 */
5940 if (emb == LPFC_SLI4_MBX_EMBED) {
5941 rsrc_ext = &mbox->u.mqe.un.alloc_rsrc_extents;
5942 shdr = &rsrc_ext->header.cfg_shdr;
5943 *extnt_cnt = bf_get(lpfc_mbx_rsrc_cnt, &rsrc_ext->u.rsp);
5944 } else {
5945 virtaddr = mbox->sge_array->addr[0];
5946 n_rsrc = (struct lpfc_mbx_nembed_rsrc_extent *) virtaddr;
5947 shdr = &n_rsrc->cfg_shdr;
5948 *extnt_cnt = bf_get(lpfc_mbx_rsrc_cnt, n_rsrc);
5949 }
5950
5951 if (bf_get(lpfc_mbox_hdr_status, &shdr->response)) {
5952 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5953 "2984 Failed to read allocated resources "
5954 "for type %d - Status 0x%x Add'l Status 0x%x.\n",
5955 type,
5956 bf_get(lpfc_mbox_hdr_status, &shdr->response),
5957 bf_get(lpfc_mbox_hdr_add_status, &shdr->response));
5958 rc = -EIO;
5959 goto err_exit;
5960 }
5961 err_exit:
5962 lpfc_sli4_mbox_cmd_free(phba, mbox);
5963 return rc;
5964}
5965
8a9d2e80
JS
5966/**
5967 * lpfc_sli4_repost_els_sgl_list - Repsot the els buffers sgl pages as block
5968 * @phba: pointer to lpfc hba data structure.
5969 *
5970 * This routine walks the list of els buffers that have been allocated and
5971 * repost them to the port by using SGL block post. This is needed after a
5972 * pci_function_reset/warm_start or start. It attempts to construct blocks
5973 * of els buffer sgls which contains contiguous xris and uses the non-embedded
5974 * SGL block post mailbox commands to post them to the port. For single els
5975 * buffer sgl with non-contiguous xri, if any, it shall use embedded SGL post
5976 * mailbox command for posting.
5977 *
5978 * Returns: 0 = success, non-zero failure.
5979 **/
5980static int
5981lpfc_sli4_repost_els_sgl_list(struct lpfc_hba *phba)
5982{
5983 struct lpfc_sglq *sglq_entry = NULL;
5984 struct lpfc_sglq *sglq_entry_next = NULL;
5985 struct lpfc_sglq *sglq_entry_first = NULL;
711ea882 5986 int status, total_cnt, post_cnt = 0, num_posted = 0, block_cnt = 0;
8a9d2e80
JS
5987 int last_xritag = NO_XRI;
5988 LIST_HEAD(prep_sgl_list);
5989 LIST_HEAD(blck_sgl_list);
5990 LIST_HEAD(allc_sgl_list);
5991 LIST_HEAD(post_sgl_list);
5992 LIST_HEAD(free_sgl_list);
5993
38c20673 5994 spin_lock_irq(&phba->hbalock);
8a9d2e80 5995 list_splice_init(&phba->sli4_hba.lpfc_sgl_list, &allc_sgl_list);
38c20673 5996 spin_unlock_irq(&phba->hbalock);
8a9d2e80 5997
711ea882 5998 total_cnt = phba->sli4_hba.els_xri_cnt;
8a9d2e80
JS
5999 list_for_each_entry_safe(sglq_entry, sglq_entry_next,
6000 &allc_sgl_list, list) {
6001 list_del_init(&sglq_entry->list);
6002 block_cnt++;
6003 if ((last_xritag != NO_XRI) &&
6004 (sglq_entry->sli4_xritag != last_xritag + 1)) {
6005 /* a hole in xri block, form a sgl posting block */
6006 list_splice_init(&prep_sgl_list, &blck_sgl_list);
6007 post_cnt = block_cnt - 1;
6008 /* prepare list for next posting block */
6009 list_add_tail(&sglq_entry->list, &prep_sgl_list);
6010 block_cnt = 1;
6011 } else {
6012 /* prepare list for next posting block */
6013 list_add_tail(&sglq_entry->list, &prep_sgl_list);
6014 /* enough sgls for non-embed sgl mbox command */
6015 if (block_cnt == LPFC_NEMBED_MBOX_SGL_CNT) {
6016 list_splice_init(&prep_sgl_list,
6017 &blck_sgl_list);
6018 post_cnt = block_cnt;
6019 block_cnt = 0;
6020 }
6021 }
6022 num_posted++;
6023
6024 /* keep track of last sgl's xritag */
6025 last_xritag = sglq_entry->sli4_xritag;
6026
6027 /* end of repost sgl list condition for els buffers */
6028 if (num_posted == phba->sli4_hba.els_xri_cnt) {
6029 if (post_cnt == 0) {
6030 list_splice_init(&prep_sgl_list,
6031 &blck_sgl_list);
6032 post_cnt = block_cnt;
6033 } else if (block_cnt == 1) {
6034 status = lpfc_sli4_post_sgl(phba,
6035 sglq_entry->phys, 0,
6036 sglq_entry->sli4_xritag);
6037 if (!status) {
6038 /* successful, put sgl to posted list */
6039 list_add_tail(&sglq_entry->list,
6040 &post_sgl_list);
6041 } else {
6042 /* Failure, put sgl to free list */
6043 lpfc_printf_log(phba, KERN_WARNING,
6044 LOG_SLI,
6045 "3159 Failed to post els "
6046 "sgl, xritag:x%x\n",
6047 sglq_entry->sli4_xritag);
6048 list_add_tail(&sglq_entry->list,
6049 &free_sgl_list);
711ea882 6050 total_cnt--;
8a9d2e80
JS
6051 }
6052 }
6053 }
6054
6055 /* continue until a nembed page worth of sgls */
6056 if (post_cnt == 0)
6057 continue;
6058
6059 /* post the els buffer list sgls as a block */
6060 status = lpfc_sli4_post_els_sgl_list(phba, &blck_sgl_list,
6061 post_cnt);
6062
6063 if (!status) {
6064 /* success, put sgl list to posted sgl list */
6065 list_splice_init(&blck_sgl_list, &post_sgl_list);
6066 } else {
6067 /* Failure, put sgl list to free sgl list */
6068 sglq_entry_first = list_first_entry(&blck_sgl_list,
6069 struct lpfc_sglq,
6070 list);
6071 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
6072 "3160 Failed to post els sgl-list, "
6073 "xritag:x%x-x%x\n",
6074 sglq_entry_first->sli4_xritag,
6075 (sglq_entry_first->sli4_xritag +
6076 post_cnt - 1));
6077 list_splice_init(&blck_sgl_list, &free_sgl_list);
711ea882 6078 total_cnt -= post_cnt;
8a9d2e80
JS
6079 }
6080
6081 /* don't reset xirtag due to hole in xri block */
6082 if (block_cnt == 0)
6083 last_xritag = NO_XRI;
6084
6085 /* reset els sgl post count for next round of posting */
6086 post_cnt = 0;
6087 }
711ea882
JS
6088 /* update the number of XRIs posted for ELS */
6089 phba->sli4_hba.els_xri_cnt = total_cnt;
8a9d2e80
JS
6090
6091 /* free the els sgls failed to post */
6092 lpfc_free_sgl_list(phba, &free_sgl_list);
6093
6094 /* push els sgls posted to the availble list */
6095 if (!list_empty(&post_sgl_list)) {
38c20673 6096 spin_lock_irq(&phba->hbalock);
8a9d2e80
JS
6097 list_splice_init(&post_sgl_list,
6098 &phba->sli4_hba.lpfc_sgl_list);
38c20673 6099 spin_unlock_irq(&phba->hbalock);
8a9d2e80
JS
6100 } else {
6101 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
6102 "3161 Failure to post els sgl to port.\n");
6103 return -EIO;
6104 }
6105 return 0;
6106}
6107
da0436e9
JS
6108/**
6109 * lpfc_sli4_hba_setup - SLI4 device intialization PCI function
6110 * @phba: Pointer to HBA context object.
6111 *
6112 * This function is the main SLI4 device intialization PCI function. This
6113 * function is called by the HBA intialization code, HBA reset code and
6114 * HBA error attention handler code. Caller is not required to hold any
6115 * locks.
6116 **/
6117int
6118lpfc_sli4_hba_setup(struct lpfc_hba *phba)
6119{
6120 int rc;
6121 LPFC_MBOXQ_t *mboxq;
6122 struct lpfc_mqe *mqe;
6123 uint8_t *vpd;
6124 uint32_t vpd_size;
6125 uint32_t ftr_rsp = 0;
6126 struct Scsi_Host *shost = lpfc_shost_from_vport(phba->pport);
6127 struct lpfc_vport *vport = phba->pport;
6128 struct lpfc_dmabuf *mp;
6129
6130 /* Perform a PCI function reset to start from clean */
6131 rc = lpfc_pci_function_reset(phba);
6132 if (unlikely(rc))
6133 return -ENODEV;
6134
6135 /* Check the HBA Host Status Register for readyness */
6136 rc = lpfc_sli4_post_status_check(phba);
6137 if (unlikely(rc))
6138 return -ENODEV;
6139 else {
6140 spin_lock_irq(&phba->hbalock);
6141 phba->sli.sli_flag |= LPFC_SLI_ACTIVE;
6142 spin_unlock_irq(&phba->hbalock);
6143 }
6144
6145 /*
6146 * Allocate a single mailbox container for initializing the
6147 * port.
6148 */
6149 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6150 if (!mboxq)
6151 return -ENOMEM;
6152
da0436e9 6153 /* Issue READ_REV to collect vpd and FW information. */
49198b37 6154 vpd_size = SLI4_PAGE_SIZE;
da0436e9
JS
6155 vpd = kzalloc(vpd_size, GFP_KERNEL);
6156 if (!vpd) {
6157 rc = -ENOMEM;
6158 goto out_free_mbox;
6159 }
6160
6161 rc = lpfc_sli4_read_rev(phba, mboxq, vpd, &vpd_size);
76a95d75
JS
6162 if (unlikely(rc)) {
6163 kfree(vpd);
6164 goto out_free_mbox;
6165 }
572709e2 6166
da0436e9 6167 mqe = &mboxq->u.mqe;
f1126688
JS
6168 phba->sli_rev = bf_get(lpfc_mbx_rd_rev_sli_lvl, &mqe->un.read_rev);
6169 if (bf_get(lpfc_mbx_rd_rev_fcoe, &mqe->un.read_rev))
76a95d75
JS
6170 phba->hba_flag |= HBA_FCOE_MODE;
6171 else
6172 phba->hba_flag &= ~HBA_FCOE_MODE;
45ed1190
JS
6173
6174 if (bf_get(lpfc_mbx_rd_rev_cee_ver, &mqe->un.read_rev) ==
6175 LPFC_DCBX_CEE_MODE)
6176 phba->hba_flag |= HBA_FIP_SUPPORT;
6177 else
6178 phba->hba_flag &= ~HBA_FIP_SUPPORT;
6179
4f2e66c6
JS
6180 phba->hba_flag &= ~HBA_FCP_IOQ_FLUSH;
6181
c31098ce 6182 if (phba->sli_rev != LPFC_SLI_REV4) {
da0436e9
JS
6183 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6184 "0376 READ_REV Error. SLI Level %d "
6185 "FCoE enabled %d\n",
76a95d75 6186 phba->sli_rev, phba->hba_flag & HBA_FCOE_MODE);
da0436e9 6187 rc = -EIO;
76a95d75
JS
6188 kfree(vpd);
6189 goto out_free_mbox;
da0436e9 6190 }
cd1c8301 6191
ff78d8f9
JS
6192 /*
6193 * Continue initialization with default values even if driver failed
6194 * to read FCoE param config regions, only read parameters if the
6195 * board is FCoE
6196 */
6197 if (phba->hba_flag & HBA_FCOE_MODE &&
6198 lpfc_sli4_read_fcoe_params(phba))
6199 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_INIT,
6200 "2570 Failed to read FCoE parameters\n");
6201
cd1c8301
JS
6202 /*
6203 * Retrieve sli4 device physical port name, failure of doing it
6204 * is considered as non-fatal.
6205 */
6206 rc = lpfc_sli4_retrieve_pport_name(phba);
6207 if (!rc)
6208 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
6209 "3080 Successful retrieving SLI4 device "
6210 "physical port name: %s.\n", phba->Port);
6211
da0436e9
JS
6212 /*
6213 * Evaluate the read rev and vpd data. Populate the driver
6214 * state with the results. If this routine fails, the failure
6215 * is not fatal as the driver will use generic values.
6216 */
6217 rc = lpfc_parse_vpd(phba, vpd, vpd_size);
6218 if (unlikely(!rc)) {
6219 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6220 "0377 Error %d parsing vpd. "
6221 "Using defaults.\n", rc);
6222 rc = 0;
6223 }
76a95d75 6224 kfree(vpd);
da0436e9 6225
f1126688
JS
6226 /* Save information as VPD data */
6227 phba->vpd.rev.biuRev = mqe->un.read_rev.first_hw_rev;
6228 phba->vpd.rev.smRev = mqe->un.read_rev.second_hw_rev;
6229 phba->vpd.rev.endecRev = mqe->un.read_rev.third_hw_rev;
6230 phba->vpd.rev.fcphHigh = bf_get(lpfc_mbx_rd_rev_fcph_high,
6231 &mqe->un.read_rev);
6232 phba->vpd.rev.fcphLow = bf_get(lpfc_mbx_rd_rev_fcph_low,
6233 &mqe->un.read_rev);
6234 phba->vpd.rev.feaLevelHigh = bf_get(lpfc_mbx_rd_rev_ftr_lvl_high,
6235 &mqe->un.read_rev);
6236 phba->vpd.rev.feaLevelLow = bf_get(lpfc_mbx_rd_rev_ftr_lvl_low,
6237 &mqe->un.read_rev);
6238 phba->vpd.rev.sli1FwRev = mqe->un.read_rev.fw_id_rev;
6239 memcpy(phba->vpd.rev.sli1FwName, mqe->un.read_rev.fw_name, 16);
6240 phba->vpd.rev.sli2FwRev = mqe->un.read_rev.ulp_fw_id_rev;
6241 memcpy(phba->vpd.rev.sli2FwName, mqe->un.read_rev.ulp_fw_name, 16);
6242 phba->vpd.rev.opFwRev = mqe->un.read_rev.fw_id_rev;
6243 memcpy(phba->vpd.rev.opFwName, mqe->un.read_rev.fw_name, 16);
6244 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
6245 "(%d):0380 READ_REV Status x%x "
6246 "fw_rev:%s fcphHi:%x fcphLo:%x flHi:%x flLo:%x\n",
6247 mboxq->vport ? mboxq->vport->vpi : 0,
6248 bf_get(lpfc_mqe_status, mqe),
6249 phba->vpd.rev.opFwName,
6250 phba->vpd.rev.fcphHigh, phba->vpd.rev.fcphLow,
6251 phba->vpd.rev.feaLevelHigh, phba->vpd.rev.feaLevelLow);
da0436e9 6252
572709e2
JS
6253 /* Reset the DFT_LUN_Q_DEPTH to (max xri >> 3) */
6254 rc = (phba->sli4_hba.max_cfg_param.max_xri >> 3);
6255 if (phba->pport->cfg_lun_queue_depth > rc) {
6256 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
6257 "3362 LUN queue depth changed from %d to %d\n",
6258 phba->pport->cfg_lun_queue_depth, rc);
6259 phba->pport->cfg_lun_queue_depth = rc;
6260 }
6261
6262
da0436e9
JS
6263 /*
6264 * Discover the port's supported feature set and match it against the
6265 * hosts requests.
6266 */
6267 lpfc_request_features(phba, mboxq);
6268 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6269 if (unlikely(rc)) {
6270 rc = -EIO;
76a95d75 6271 goto out_free_mbox;
da0436e9
JS
6272 }
6273
6274 /*
6275 * The port must support FCP initiator mode as this is the
6276 * only mode running in the host.
6277 */
6278 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_fcpi, &mqe->un.req_ftrs))) {
6279 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
6280 "0378 No support for fcpi mode.\n");
6281 ftr_rsp++;
6282 }
fedd3b7b
JS
6283 if (bf_get(lpfc_mbx_rq_ftr_rsp_perfh, &mqe->un.req_ftrs))
6284 phba->sli3_options |= LPFC_SLI4_PERFH_ENABLED;
6285 else
6286 phba->sli3_options &= ~LPFC_SLI4_PERFH_ENABLED;
da0436e9
JS
6287 /*
6288 * If the port cannot support the host's requested features
6289 * then turn off the global config parameters to disable the
6290 * feature in the driver. This is not a fatal error.
6291 */
bf08611b
JS
6292 phba->sli3_options &= ~LPFC_SLI3_BG_ENABLED;
6293 if (phba->cfg_enable_bg) {
6294 if (bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs))
6295 phba->sli3_options |= LPFC_SLI3_BG_ENABLED;
6296 else
6297 ftr_rsp++;
6298 }
da0436e9
JS
6299
6300 if (phba->max_vpi && phba->cfg_enable_npiv &&
6301 !(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
6302 ftr_rsp++;
6303
6304 if (ftr_rsp) {
6305 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
6306 "0379 Feature Mismatch Data: x%08x %08x "
6307 "x%x x%x x%x\n", mqe->un.req_ftrs.word2,
6308 mqe->un.req_ftrs.word3, phba->cfg_enable_bg,
6309 phba->cfg_enable_npiv, phba->max_vpi);
6310 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs)))
6311 phba->cfg_enable_bg = 0;
6312 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
6313 phba->cfg_enable_npiv = 0;
6314 }
6315
6316 /* These SLI3 features are assumed in SLI4 */
6317 spin_lock_irq(&phba->hbalock);
6318 phba->sli3_options |= (LPFC_SLI3_NPIV_ENABLED | LPFC_SLI3_HBQ_ENABLED);
6319 spin_unlock_irq(&phba->hbalock);
6320
6d368e53
JS
6321 /*
6322 * Allocate all resources (xri,rpi,vpi,vfi) now. Subsequent
6323 * calls depends on these resources to complete port setup.
6324 */
6325 rc = lpfc_sli4_alloc_resource_identifiers(phba);
6326 if (rc) {
6327 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6328 "2920 Failed to alloc Resource IDs "
6329 "rc = x%x\n", rc);
6330 goto out_free_mbox;
6331 }
6332
da0436e9 6333 /* Read the port's service parameters. */
9f1177a3
JS
6334 rc = lpfc_read_sparam(phba, mboxq, vport->vpi);
6335 if (rc) {
6336 phba->link_state = LPFC_HBA_ERROR;
6337 rc = -ENOMEM;
76a95d75 6338 goto out_free_mbox;
9f1177a3
JS
6339 }
6340
da0436e9
JS
6341 mboxq->vport = vport;
6342 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6343 mp = (struct lpfc_dmabuf *) mboxq->context1;
6344 if (rc == MBX_SUCCESS) {
6345 memcpy(&vport->fc_sparam, mp->virt, sizeof(struct serv_parm));
6346 rc = 0;
6347 }
6348
6349 /*
6350 * This memory was allocated by the lpfc_read_sparam routine. Release
6351 * it to the mbuf pool.
6352 */
6353 lpfc_mbuf_free(phba, mp->virt, mp->phys);
6354 kfree(mp);
6355 mboxq->context1 = NULL;
6356 if (unlikely(rc)) {
6357 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6358 "0382 READ_SPARAM command failed "
6359 "status %d, mbxStatus x%x\n",
6360 rc, bf_get(lpfc_mqe_status, mqe));
6361 phba->link_state = LPFC_HBA_ERROR;
6362 rc = -EIO;
76a95d75 6363 goto out_free_mbox;
da0436e9
JS
6364 }
6365
0558056c 6366 lpfc_update_vport_wwn(vport);
da0436e9
JS
6367
6368 /* Update the fc_host data structures with new wwn. */
6369 fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn);
6370 fc_host_port_name(shost) = wwn_to_u64(vport->fc_portname.u.wwn);
6371
8a9d2e80
JS
6372 /* update host els and scsi xri-sgl sizes and mappings */
6373 rc = lpfc_sli4_xri_sgl_update(phba);
6374 if (unlikely(rc)) {
6375 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6376 "1400 Failed to update xri-sgl size and "
6377 "mapping: %d\n", rc);
6378 goto out_free_mbox;
da0436e9
JS
6379 }
6380
8a9d2e80
JS
6381 /* register the els sgl pool to the port */
6382 rc = lpfc_sli4_repost_els_sgl_list(phba);
6383 if (unlikely(rc)) {
6384 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6385 "0582 Error %d during els sgl post "
6386 "operation\n", rc);
6387 rc = -ENODEV;
6388 goto out_free_mbox;
6389 }
6390
6391 /* register the allocated scsi sgl pool to the port */
da0436e9
JS
6392 rc = lpfc_sli4_repost_scsi_sgl_list(phba);
6393 if (unlikely(rc)) {
6d368e53 6394 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6a9c52cf
JS
6395 "0383 Error %d during scsi sgl post "
6396 "operation\n", rc);
da0436e9
JS
6397 /* Some Scsi buffers were moved to the abort scsi list */
6398 /* A pci function reset will repost them */
6399 rc = -ENODEV;
76a95d75 6400 goto out_free_mbox;
da0436e9
JS
6401 }
6402
6403 /* Post the rpi header region to the device. */
6404 rc = lpfc_sli4_post_all_rpi_hdrs(phba);
6405 if (unlikely(rc)) {
6406 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6407 "0393 Error %d during rpi post operation\n",
6408 rc);
6409 rc = -ENODEV;
76a95d75 6410 goto out_free_mbox;
da0436e9 6411 }
97f2ecf1 6412 lpfc_sli4_node_prep(phba);
da0436e9 6413
5350d872
JS
6414 /* Create all the SLI4 queues */
6415 rc = lpfc_sli4_queue_create(phba);
6416 if (rc) {
6417 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6418 "3089 Failed to allocate queues\n");
6419 rc = -ENODEV;
6420 goto out_stop_timers;
6421 }
da0436e9
JS
6422 /* Set up all the queues to the device */
6423 rc = lpfc_sli4_queue_setup(phba);
6424 if (unlikely(rc)) {
6425 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6426 "0381 Error %d during queue setup.\n ", rc);
5350d872 6427 goto out_destroy_queue;
da0436e9
JS
6428 }
6429
6430 /* Arm the CQs and then EQs on device */
6431 lpfc_sli4_arm_cqeq_intr(phba);
6432
6433 /* Indicate device interrupt mode */
6434 phba->sli4_hba.intr_enable = 1;
6435
6436 /* Allow asynchronous mailbox command to go through */
6437 spin_lock_irq(&phba->hbalock);
6438 phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
6439 spin_unlock_irq(&phba->hbalock);
6440
6441 /* Post receive buffers to the device */
6442 lpfc_sli4_rb_setup(phba);
6443
fc2b989b
JS
6444 /* Reset HBA FCF states after HBA reset */
6445 phba->fcf.fcf_flag = 0;
6446 phba->fcf.current_rec.flag = 0;
6447
da0436e9 6448 /* Start the ELS watchdog timer */
8fa38513 6449 mod_timer(&vport->els_tmofunc,
256ec0d0 6450 jiffies + msecs_to_jiffies(1000 * (phba->fc_ratov * 2)));
da0436e9
JS
6451
6452 /* Start heart beat timer */
6453 mod_timer(&phba->hb_tmofunc,
256ec0d0 6454 jiffies + msecs_to_jiffies(1000 * LPFC_HB_MBOX_INTERVAL));
da0436e9
JS
6455 phba->hb_outstanding = 0;
6456 phba->last_completion_time = jiffies;
6457
6458 /* Start error attention (ERATT) polling timer */
256ec0d0
JS
6459 mod_timer(&phba->eratt_poll,
6460 jiffies + msecs_to_jiffies(1000 * LPFC_ERATT_POLL_INTERVAL));
da0436e9 6461
75baf696
JS
6462 /* Enable PCIe device Advanced Error Reporting (AER) if configured */
6463 if (phba->cfg_aer_support == 1 && !(phba->hba_flag & HBA_AER_ENABLED)) {
6464 rc = pci_enable_pcie_error_reporting(phba->pcidev);
6465 if (!rc) {
6466 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6467 "2829 This device supports "
6468 "Advanced Error Reporting (AER)\n");
6469 spin_lock_irq(&phba->hbalock);
6470 phba->hba_flag |= HBA_AER_ENABLED;
6471 spin_unlock_irq(&phba->hbalock);
6472 } else {
6473 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6474 "2830 This device does not support "
6475 "Advanced Error Reporting (AER)\n");
6476 phba->cfg_aer_support = 0;
6477 }
0a96e975 6478 rc = 0;
75baf696
JS
6479 }
6480
76a95d75
JS
6481 if (!(phba->hba_flag & HBA_FCOE_MODE)) {
6482 /*
6483 * The FC Port needs to register FCFI (index 0)
6484 */
6485 lpfc_reg_fcfi(phba, mboxq);
6486 mboxq->vport = phba->pport;
6487 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
9589b062 6488 if (rc != MBX_SUCCESS)
76a95d75 6489 goto out_unset_queue;
9589b062
JS
6490 rc = 0;
6491 phba->fcf.fcfi = bf_get(lpfc_reg_fcfi_fcfi,
6492 &mboxq->u.mqe.un.reg_fcfi);
026abb87
JS
6493
6494 /* Check if the port is configured to be disabled */
6495 lpfc_sli_read_link_ste(phba);
76a95d75 6496 }
026abb87 6497
da0436e9
JS
6498 /*
6499 * The port is ready, set the host's link state to LINK_DOWN
6500 * in preparation for link interrupts.
6501 */
da0436e9
JS
6502 spin_lock_irq(&phba->hbalock);
6503 phba->link_state = LPFC_LINK_DOWN;
6504 spin_unlock_irq(&phba->hbalock);
026abb87
JS
6505 if (!(phba->hba_flag & HBA_FCOE_MODE) &&
6506 (phba->hba_flag & LINK_DISABLED)) {
6507 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_SLI,
6508 "3103 Adapter Link is disabled.\n");
6509 lpfc_down_link(phba, mboxq);
6510 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6511 if (rc != MBX_SUCCESS) {
6512 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_SLI,
6513 "3104 Adapter failed to issue "
6514 "DOWN_LINK mbox cmd, rc:x%x\n", rc);
6515 goto out_unset_queue;
6516 }
6517 } else if (phba->cfg_suppress_link_up == LPFC_INITIALIZE_LINK) {
1b51197d
JS
6518 /* don't perform init_link on SLI4 FC port loopback test */
6519 if (!(phba->link_flag & LS_LOOPBACK_MODE)) {
6520 rc = phba->lpfc_hba_init_link(phba, MBX_NOWAIT);
6521 if (rc)
6522 goto out_unset_queue;
6523 }
5350d872
JS
6524 }
6525 mempool_free(mboxq, phba->mbox_mem_pool);
6526 return rc;
76a95d75 6527out_unset_queue:
da0436e9 6528 /* Unset all the queues set up in this routine when error out */
5350d872
JS
6529 lpfc_sli4_queue_unset(phba);
6530out_destroy_queue:
6531 lpfc_sli4_queue_destroy(phba);
da0436e9 6532out_stop_timers:
5350d872 6533 lpfc_stop_hba_timers(phba);
da0436e9
JS
6534out_free_mbox:
6535 mempool_free(mboxq, phba->mbox_mem_pool);
6536 return rc;
6537}
6538
6539/**
6540 * lpfc_mbox_timeout - Timeout call back function for mbox timer
6541 * @ptr: context object - pointer to hba structure.
6542 *
6543 * This is the callback function for mailbox timer. The mailbox
6544 * timer is armed when a new mailbox command is issued and the timer
6545 * is deleted when the mailbox complete. The function is called by
6546 * the kernel timer code when a mailbox does not complete within
6547 * expected time. This function wakes up the worker thread to
6548 * process the mailbox timeout and returns. All the processing is
6549 * done by the worker thread function lpfc_mbox_timeout_handler.
6550 **/
6551void
6552lpfc_mbox_timeout(unsigned long ptr)
6553{
6554 struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
6555 unsigned long iflag;
6556 uint32_t tmo_posted;
6557
6558 spin_lock_irqsave(&phba->pport->work_port_lock, iflag);
6559 tmo_posted = phba->pport->work_port_events & WORKER_MBOX_TMO;
6560 if (!tmo_posted)
6561 phba->pport->work_port_events |= WORKER_MBOX_TMO;
6562 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflag);
6563
6564 if (!tmo_posted)
6565 lpfc_worker_wake_up(phba);
6566 return;
6567}
6568
6569
6570/**
6571 * lpfc_mbox_timeout_handler - Worker thread function to handle mailbox timeout
6572 * @phba: Pointer to HBA context object.
6573 *
6574 * This function is called from worker thread when a mailbox command times out.
6575 * The caller is not required to hold any locks. This function will reset the
6576 * HBA and recover all the pending commands.
6577 **/
6578void
6579lpfc_mbox_timeout_handler(struct lpfc_hba *phba)
6580{
6581 LPFC_MBOXQ_t *pmbox = phba->sli.mbox_active;
04c68496 6582 MAILBOX_t *mb = &pmbox->u.mb;
da0436e9
JS
6583 struct lpfc_sli *psli = &phba->sli;
6584 struct lpfc_sli_ring *pring;
6585
6586 /* Check the pmbox pointer first. There is a race condition
6587 * between the mbox timeout handler getting executed in the
6588 * worklist and the mailbox actually completing. When this
6589 * race condition occurs, the mbox_active will be NULL.
6590 */
6591 spin_lock_irq(&phba->hbalock);
6592 if (pmbox == NULL) {
6593 lpfc_printf_log(phba, KERN_WARNING,
6594 LOG_MBOX | LOG_SLI,
6595 "0353 Active Mailbox cleared - mailbox timeout "
6596 "exiting\n");
6597 spin_unlock_irq(&phba->hbalock);
6598 return;
6599 }
6600
6601 /* Mbox cmd <mbxCommand> timeout */
6602 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6603 "0310 Mailbox command x%x timeout Data: x%x x%x x%p\n",
6604 mb->mbxCommand,
6605 phba->pport->port_state,
6606 phba->sli.sli_flag,
6607 phba->sli.mbox_active);
6608 spin_unlock_irq(&phba->hbalock);
6609
6610 /* Setting state unknown so lpfc_sli_abort_iocb_ring
6611 * would get IOCB_ERROR from lpfc_sli_issue_iocb, allowing
25985edc 6612 * it to fail all outstanding SCSI IO.
da0436e9
JS
6613 */
6614 spin_lock_irq(&phba->pport->work_port_lock);
6615 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
6616 spin_unlock_irq(&phba->pport->work_port_lock);
6617 spin_lock_irq(&phba->hbalock);
6618 phba->link_state = LPFC_LINK_UNKNOWN;
f4b4c68f 6619 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
da0436e9
JS
6620 spin_unlock_irq(&phba->hbalock);
6621
6622 pring = &psli->ring[psli->fcp_ring];
6623 lpfc_sli_abort_iocb_ring(phba, pring);
6624
6625 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6626 "0345 Resetting board due to mailbox timeout\n");
6627
6628 /* Reset the HBA device */
6629 lpfc_reset_hba(phba);
6630}
6631
6632/**
6633 * lpfc_sli_issue_mbox_s3 - Issue an SLI3 mailbox command to firmware
6634 * @phba: Pointer to HBA context object.
6635 * @pmbox: Pointer to mailbox object.
6636 * @flag: Flag indicating how the mailbox need to be processed.
6637 *
6638 * This function is called by discovery code and HBA management code
6639 * to submit a mailbox command to firmware with SLI-3 interface spec. This
6640 * function gets the hbalock to protect the data structures.
6641 * The mailbox command can be submitted in polling mode, in which case
6642 * this function will wait in a polling loop for the completion of the
6643 * mailbox.
6644 * If the mailbox is submitted in no_wait mode (not polling) the
6645 * function will submit the command and returns immediately without waiting
6646 * for the mailbox completion. The no_wait is supported only when HBA
6647 * is in SLI2/SLI3 mode - interrupts are enabled.
6648 * The SLI interface allows only one mailbox pending at a time. If the
6649 * mailbox is issued in polling mode and there is already a mailbox
6650 * pending, then the function will return an error. If the mailbox is issued
6651 * in NO_WAIT mode and there is a mailbox pending already, the function
6652 * will return MBX_BUSY after queuing the mailbox into mailbox queue.
6653 * The sli layer owns the mailbox object until the completion of mailbox
6654 * command if this function return MBX_BUSY or MBX_SUCCESS. For all other
6655 * return codes the caller owns the mailbox command after the return of
6656 * the function.
e59058c4 6657 **/
3772a991
JS
6658static int
6659lpfc_sli_issue_mbox_s3(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox,
6660 uint32_t flag)
dea3101e 6661{
bf07bdea 6662 MAILBOX_t *mbx;
2e0fef85 6663 struct lpfc_sli *psli = &phba->sli;
dea3101e 6664 uint32_t status, evtctr;
9940b97b 6665 uint32_t ha_copy, hc_copy;
dea3101e 6666 int i;
09372820 6667 unsigned long timeout;
dea3101e 6668 unsigned long drvr_flag = 0;
34b02dcd 6669 uint32_t word0, ldata;
dea3101e 6670 void __iomem *to_slim;
58da1ffb
JS
6671 int processing_queue = 0;
6672
6673 spin_lock_irqsave(&phba->hbalock, drvr_flag);
6674 if (!pmbox) {
8568a4d2 6675 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
58da1ffb 6676 /* processing mbox queue from intr_handler */
3772a991
JS
6677 if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
6678 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6679 return MBX_SUCCESS;
6680 }
58da1ffb 6681 processing_queue = 1;
58da1ffb
JS
6682 pmbox = lpfc_mbox_get(phba);
6683 if (!pmbox) {
6684 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6685 return MBX_SUCCESS;
6686 }
6687 }
dea3101e 6688
ed957684 6689 if (pmbox->mbox_cmpl && pmbox->mbox_cmpl != lpfc_sli_def_mbox_cmpl &&
92d7f7b0 6690 pmbox->mbox_cmpl != lpfc_sli_wake_mbox_wait) {
ed957684 6691 if(!pmbox->vport) {
58da1ffb 6692 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
ed957684 6693 lpfc_printf_log(phba, KERN_ERR,
92d7f7b0 6694 LOG_MBOX | LOG_VPORT,
e8b62011 6695 "1806 Mbox x%x failed. No vport\n",
3772a991 6696 pmbox->u.mb.mbxCommand);
ed957684 6697 dump_stack();
58da1ffb 6698 goto out_not_finished;
ed957684
JS
6699 }
6700 }
6701
8d63f375 6702 /* If the PCI channel is in offline state, do not post mbox. */
58da1ffb
JS
6703 if (unlikely(pci_channel_offline(phba->pcidev))) {
6704 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6705 goto out_not_finished;
6706 }
8d63f375 6707
a257bf90
JS
6708 /* If HBA has a deferred error attention, fail the iocb. */
6709 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
6710 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6711 goto out_not_finished;
6712 }
6713
dea3101e 6714 psli = &phba->sli;
92d7f7b0 6715
bf07bdea 6716 mbx = &pmbox->u.mb;
dea3101e 6717 status = MBX_SUCCESS;
6718
2e0fef85
JS
6719 if (phba->link_state == LPFC_HBA_ERROR) {
6720 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
41415862
JW
6721
6722 /* Mbox command <mbxCommand> cannot issue */
3772a991
JS
6723 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6724 "(%d):0311 Mailbox command x%x cannot "
6725 "issue Data: x%x x%x\n",
6726 pmbox->vport ? pmbox->vport->vpi : 0,
6727 pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
58da1ffb 6728 goto out_not_finished;
41415862
JW
6729 }
6730
bf07bdea 6731 if (mbx->mbxCommand != MBX_KILL_BOARD && flag & MBX_NOWAIT) {
9940b97b
JS
6732 if (lpfc_readl(phba->HCregaddr, &hc_copy) ||
6733 !(hc_copy & HC_MBINT_ENA)) {
6734 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
6735 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
3772a991
JS
6736 "(%d):2528 Mailbox command x%x cannot "
6737 "issue Data: x%x x%x\n",
6738 pmbox->vport ? pmbox->vport->vpi : 0,
6739 pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
9940b97b
JS
6740 goto out_not_finished;
6741 }
9290831f
JS
6742 }
6743
dea3101e 6744 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
6745 /* Polling for a mbox command when another one is already active
6746 * is not allowed in SLI. Also, the driver must have established
6747 * SLI2 mode to queue and process multiple mbox commands.
6748 */
6749
6750 if (flag & MBX_POLL) {
2e0fef85 6751 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea3101e 6752
6753 /* Mbox command <mbxCommand> cannot issue */
3772a991
JS
6754 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6755 "(%d):2529 Mailbox command x%x "
6756 "cannot issue Data: x%x x%x\n",
6757 pmbox->vport ? pmbox->vport->vpi : 0,
6758 pmbox->u.mb.mbxCommand,
6759 psli->sli_flag, flag);
58da1ffb 6760 goto out_not_finished;
dea3101e 6761 }
6762
3772a991 6763 if (!(psli->sli_flag & LPFC_SLI_ACTIVE)) {
2e0fef85 6764 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea3101e 6765 /* Mbox command <mbxCommand> cannot issue */
3772a991
JS
6766 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6767 "(%d):2530 Mailbox command x%x "
6768 "cannot issue Data: x%x x%x\n",
6769 pmbox->vport ? pmbox->vport->vpi : 0,
6770 pmbox->u.mb.mbxCommand,
6771 psli->sli_flag, flag);
58da1ffb 6772 goto out_not_finished;
dea3101e 6773 }
6774
dea3101e 6775 /* Another mailbox command is still being processed, queue this
6776 * command to be processed later.
6777 */
6778 lpfc_mbox_put(phba, pmbox);
6779
6780 /* Mbox cmd issue - BUSY */
ed957684 6781 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
e8b62011 6782 "(%d):0308 Mbox cmd issue - BUSY Data: "
92d7f7b0 6783 "x%x x%x x%x x%x\n",
92d7f7b0 6784 pmbox->vport ? pmbox->vport->vpi : 0xffffff,
bf07bdea 6785 mbx->mbxCommand, phba->pport->port_state,
92d7f7b0 6786 psli->sli_flag, flag);
dea3101e 6787
6788 psli->slistat.mbox_busy++;
2e0fef85 6789 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea3101e 6790
858c9f6c
JS
6791 if (pmbox->vport) {
6792 lpfc_debugfs_disc_trc(pmbox->vport,
6793 LPFC_DISC_TRC_MBOX_VPORT,
6794 "MBOX Bsy vport: cmd:x%x mb:x%x x%x",
bf07bdea
RD
6795 (uint32_t)mbx->mbxCommand,
6796 mbx->un.varWords[0], mbx->un.varWords[1]);
858c9f6c
JS
6797 }
6798 else {
6799 lpfc_debugfs_disc_trc(phba->pport,
6800 LPFC_DISC_TRC_MBOX,
6801 "MBOX Bsy: cmd:x%x mb:x%x x%x",
bf07bdea
RD
6802 (uint32_t)mbx->mbxCommand,
6803 mbx->un.varWords[0], mbx->un.varWords[1]);
858c9f6c
JS
6804 }
6805
2e0fef85 6806 return MBX_BUSY;
dea3101e 6807 }
6808
dea3101e 6809 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
6810
6811 /* If we are not polling, we MUST be in SLI2 mode */
6812 if (flag != MBX_POLL) {
3772a991 6813 if (!(psli->sli_flag & LPFC_SLI_ACTIVE) &&
bf07bdea 6814 (mbx->mbxCommand != MBX_KILL_BOARD)) {
dea3101e 6815 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
2e0fef85 6816 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea3101e 6817 /* Mbox command <mbxCommand> cannot issue */
3772a991
JS
6818 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6819 "(%d):2531 Mailbox command x%x "
6820 "cannot issue Data: x%x x%x\n",
6821 pmbox->vport ? pmbox->vport->vpi : 0,
6822 pmbox->u.mb.mbxCommand,
6823 psli->sli_flag, flag);
58da1ffb 6824 goto out_not_finished;
dea3101e 6825 }
6826 /* timeout active mbox command */
256ec0d0
JS
6827 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, pmbox) *
6828 1000);
6829 mod_timer(&psli->mbox_tmo, jiffies + timeout);
dea3101e 6830 }
6831
6832 /* Mailbox cmd <cmd> issue */
ed957684 6833 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
e8b62011 6834 "(%d):0309 Mailbox cmd x%x issue Data: x%x x%x "
92d7f7b0 6835 "x%x\n",
e8b62011 6836 pmbox->vport ? pmbox->vport->vpi : 0,
bf07bdea 6837 mbx->mbxCommand, phba->pport->port_state,
92d7f7b0 6838 psli->sli_flag, flag);
dea3101e 6839
bf07bdea 6840 if (mbx->mbxCommand != MBX_HEARTBEAT) {
858c9f6c
JS
6841 if (pmbox->vport) {
6842 lpfc_debugfs_disc_trc(pmbox->vport,
6843 LPFC_DISC_TRC_MBOX_VPORT,
6844 "MBOX Send vport: cmd:x%x mb:x%x x%x",
bf07bdea
RD
6845 (uint32_t)mbx->mbxCommand,
6846 mbx->un.varWords[0], mbx->un.varWords[1]);
858c9f6c
JS
6847 }
6848 else {
6849 lpfc_debugfs_disc_trc(phba->pport,
6850 LPFC_DISC_TRC_MBOX,
6851 "MBOX Send: cmd:x%x mb:x%x x%x",
bf07bdea
RD
6852 (uint32_t)mbx->mbxCommand,
6853 mbx->un.varWords[0], mbx->un.varWords[1]);
858c9f6c
JS
6854 }
6855 }
6856
dea3101e 6857 psli->slistat.mbox_cmd++;
6858 evtctr = psli->slistat.mbox_event;
6859
6860 /* next set own bit for the adapter and copy over command word */
bf07bdea 6861 mbx->mbxOwner = OWN_CHIP;
dea3101e 6862
3772a991 6863 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
7a470277
JS
6864 /* Populate mbox extension offset word. */
6865 if (pmbox->in_ext_byte_len || pmbox->out_ext_byte_len) {
bf07bdea 6866 *(((uint32_t *)mbx) + pmbox->mbox_offset_word)
7a470277
JS
6867 = (uint8_t *)phba->mbox_ext
6868 - (uint8_t *)phba->mbox;
6869 }
6870
6871 /* Copy the mailbox extension data */
6872 if (pmbox->in_ext_byte_len && pmbox->context2) {
6873 lpfc_sli_pcimem_bcopy(pmbox->context2,
6874 (uint8_t *)phba->mbox_ext,
6875 pmbox->in_ext_byte_len);
6876 }
6877 /* Copy command data to host SLIM area */
bf07bdea 6878 lpfc_sli_pcimem_bcopy(mbx, phba->mbox, MAILBOX_CMD_SIZE);
dea3101e 6879 } else {
7a470277
JS
6880 /* Populate mbox extension offset word. */
6881 if (pmbox->in_ext_byte_len || pmbox->out_ext_byte_len)
bf07bdea 6882 *(((uint32_t *)mbx) + pmbox->mbox_offset_word)
7a470277
JS
6883 = MAILBOX_HBA_EXT_OFFSET;
6884
6885 /* Copy the mailbox extension data */
6886 if (pmbox->in_ext_byte_len && pmbox->context2) {
6887 lpfc_memcpy_to_slim(phba->MBslimaddr +
6888 MAILBOX_HBA_EXT_OFFSET,
6889 pmbox->context2, pmbox->in_ext_byte_len);
6890
6891 }
bf07bdea 6892 if (mbx->mbxCommand == MBX_CONFIG_PORT) {
dea3101e 6893 /* copy command data into host mbox for cmpl */
bf07bdea 6894 lpfc_sli_pcimem_bcopy(mbx, phba->mbox, MAILBOX_CMD_SIZE);
dea3101e 6895 }
6896
6897 /* First copy mbox command data to HBA SLIM, skip past first
6898 word */
6899 to_slim = phba->MBslimaddr + sizeof (uint32_t);
bf07bdea 6900 lpfc_memcpy_to_slim(to_slim, &mbx->un.varWords[0],
dea3101e 6901 MAILBOX_CMD_SIZE - sizeof (uint32_t));
6902
6903 /* Next copy over first word, with mbxOwner set */
bf07bdea 6904 ldata = *((uint32_t *)mbx);
dea3101e 6905 to_slim = phba->MBslimaddr;
6906 writel(ldata, to_slim);
6907 readl(to_slim); /* flush */
6908
bf07bdea 6909 if (mbx->mbxCommand == MBX_CONFIG_PORT) {
dea3101e 6910 /* switch over to host mailbox */
3772a991 6911 psli->sli_flag |= LPFC_SLI_ACTIVE;
dea3101e 6912 }
6913 }
6914
6915 wmb();
dea3101e 6916
6917 switch (flag) {
6918 case MBX_NOWAIT:
09372820 6919 /* Set up reference to mailbox command */
dea3101e 6920 psli->mbox_active = pmbox;
09372820
JS
6921 /* Interrupt board to do it */
6922 writel(CA_MBATT, phba->CAregaddr);
6923 readl(phba->CAregaddr); /* flush */
6924 /* Don't wait for it to finish, just return */
dea3101e 6925 break;
6926
6927 case MBX_POLL:
09372820 6928 /* Set up null reference to mailbox command */
dea3101e 6929 psli->mbox_active = NULL;
09372820
JS
6930 /* Interrupt board to do it */
6931 writel(CA_MBATT, phba->CAregaddr);
6932 readl(phba->CAregaddr); /* flush */
6933
3772a991 6934 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea3101e 6935 /* First read mbox status word */
34b02dcd 6936 word0 = *((uint32_t *)phba->mbox);
dea3101e 6937 word0 = le32_to_cpu(word0);
6938 } else {
6939 /* First read mbox status word */
9940b97b
JS
6940 if (lpfc_readl(phba->MBslimaddr, &word0)) {
6941 spin_unlock_irqrestore(&phba->hbalock,
6942 drvr_flag);
6943 goto out_not_finished;
6944 }
dea3101e 6945 }
6946
6947 /* Read the HBA Host Attention Register */
9940b97b
JS
6948 if (lpfc_readl(phba->HAregaddr, &ha_copy)) {
6949 spin_unlock_irqrestore(&phba->hbalock,
6950 drvr_flag);
6951 goto out_not_finished;
6952 }
a183a15f
JS
6953 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, pmbox) *
6954 1000) + jiffies;
09372820 6955 i = 0;
dea3101e 6956 /* Wait for command to complete */
41415862
JW
6957 while (((word0 & OWN_CHIP) == OWN_CHIP) ||
6958 (!(ha_copy & HA_MBATT) &&
2e0fef85 6959 (phba->link_state > LPFC_WARM_START))) {
09372820 6960 if (time_after(jiffies, timeout)) {
dea3101e 6961 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
2e0fef85 6962 spin_unlock_irqrestore(&phba->hbalock,
dea3101e 6963 drvr_flag);
58da1ffb 6964 goto out_not_finished;
dea3101e 6965 }
6966
6967 /* Check if we took a mbox interrupt while we were
6968 polling */
6969 if (((word0 & OWN_CHIP) != OWN_CHIP)
6970 && (evtctr != psli->slistat.mbox_event))
6971 break;
6972
09372820
JS
6973 if (i++ > 10) {
6974 spin_unlock_irqrestore(&phba->hbalock,
6975 drvr_flag);
6976 msleep(1);
6977 spin_lock_irqsave(&phba->hbalock, drvr_flag);
6978 }
dea3101e 6979
3772a991 6980 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea3101e 6981 /* First copy command data */
34b02dcd 6982 word0 = *((uint32_t *)phba->mbox);
dea3101e 6983 word0 = le32_to_cpu(word0);
bf07bdea 6984 if (mbx->mbxCommand == MBX_CONFIG_PORT) {
dea3101e 6985 MAILBOX_t *slimmb;
34b02dcd 6986 uint32_t slimword0;
dea3101e 6987 /* Check real SLIM for any errors */
6988 slimword0 = readl(phba->MBslimaddr);
6989 slimmb = (MAILBOX_t *) & slimword0;
6990 if (((slimword0 & OWN_CHIP) != OWN_CHIP)
6991 && slimmb->mbxStatus) {
6992 psli->sli_flag &=
3772a991 6993 ~LPFC_SLI_ACTIVE;
dea3101e 6994 word0 = slimword0;
6995 }
6996 }
6997 } else {
6998 /* First copy command data */
6999 word0 = readl(phba->MBslimaddr);
7000 }
7001 /* Read the HBA Host Attention Register */
9940b97b
JS
7002 if (lpfc_readl(phba->HAregaddr, &ha_copy)) {
7003 spin_unlock_irqrestore(&phba->hbalock,
7004 drvr_flag);
7005 goto out_not_finished;
7006 }
dea3101e 7007 }
7008
3772a991 7009 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea3101e 7010 /* copy results back to user */
bf07bdea 7011 lpfc_sli_pcimem_bcopy(phba->mbox, mbx, MAILBOX_CMD_SIZE);
7a470277
JS
7012 /* Copy the mailbox extension data */
7013 if (pmbox->out_ext_byte_len && pmbox->context2) {
7014 lpfc_sli_pcimem_bcopy(phba->mbox_ext,
7015 pmbox->context2,
7016 pmbox->out_ext_byte_len);
7017 }
dea3101e 7018 } else {
7019 /* First copy command data */
bf07bdea 7020 lpfc_memcpy_from_slim(mbx, phba->MBslimaddr,
dea3101e 7021 MAILBOX_CMD_SIZE);
7a470277
JS
7022 /* Copy the mailbox extension data */
7023 if (pmbox->out_ext_byte_len && pmbox->context2) {
7024 lpfc_memcpy_from_slim(pmbox->context2,
7025 phba->MBslimaddr +
7026 MAILBOX_HBA_EXT_OFFSET,
7027 pmbox->out_ext_byte_len);
dea3101e 7028 }
7029 }
7030
7031 writel(HA_MBATT, phba->HAregaddr);
7032 readl(phba->HAregaddr); /* flush */
7033
7034 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
bf07bdea 7035 status = mbx->mbxStatus;
dea3101e 7036 }
7037
2e0fef85
JS
7038 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
7039 return status;
58da1ffb
JS
7040
7041out_not_finished:
7042 if (processing_queue) {
da0436e9 7043 pmbox->u.mb.mbxStatus = MBX_NOT_FINISHED;
58da1ffb
JS
7044 lpfc_mbox_cmpl_put(phba, pmbox);
7045 }
7046 return MBX_NOT_FINISHED;
dea3101e 7047}
7048
f1126688
JS
7049/**
7050 * lpfc_sli4_async_mbox_block - Block posting SLI4 asynchronous mailbox command
7051 * @phba: Pointer to HBA context object.
7052 *
7053 * The function blocks the posting of SLI4 asynchronous mailbox commands from
7054 * the driver internal pending mailbox queue. It will then try to wait out the
7055 * possible outstanding mailbox command before return.
7056 *
7057 * Returns:
7058 * 0 - the outstanding mailbox command completed; otherwise, the wait for
7059 * the outstanding mailbox command timed out.
7060 **/
7061static int
7062lpfc_sli4_async_mbox_block(struct lpfc_hba *phba)
7063{
7064 struct lpfc_sli *psli = &phba->sli;
f1126688 7065 int rc = 0;
a183a15f 7066 unsigned long timeout = 0;
f1126688
JS
7067
7068 /* Mark the asynchronous mailbox command posting as blocked */
7069 spin_lock_irq(&phba->hbalock);
7070 psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
f1126688
JS
7071 /* Determine how long we might wait for the active mailbox
7072 * command to be gracefully completed by firmware.
7073 */
a183a15f
JS
7074 if (phba->sli.mbox_active)
7075 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
7076 phba->sli.mbox_active) *
7077 1000) + jiffies;
7078 spin_unlock_irq(&phba->hbalock);
7079
f1126688
JS
7080 /* Wait for the outstnading mailbox command to complete */
7081 while (phba->sli.mbox_active) {
7082 /* Check active mailbox complete status every 2ms */
7083 msleep(2);
7084 if (time_after(jiffies, timeout)) {
7085 /* Timeout, marked the outstanding cmd not complete */
7086 rc = 1;
7087 break;
7088 }
7089 }
7090
7091 /* Can not cleanly block async mailbox command, fails it */
7092 if (rc) {
7093 spin_lock_irq(&phba->hbalock);
7094 psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
7095 spin_unlock_irq(&phba->hbalock);
7096 }
7097 return rc;
7098}
7099
7100/**
7101 * lpfc_sli4_async_mbox_unblock - Block posting SLI4 async mailbox command
7102 * @phba: Pointer to HBA context object.
7103 *
7104 * The function unblocks and resume posting of SLI4 asynchronous mailbox
7105 * commands from the driver internal pending mailbox queue. It makes sure
7106 * that there is no outstanding mailbox command before resuming posting
7107 * asynchronous mailbox commands. If, for any reason, there is outstanding
7108 * mailbox command, it will try to wait it out before resuming asynchronous
7109 * mailbox command posting.
7110 **/
7111static void
7112lpfc_sli4_async_mbox_unblock(struct lpfc_hba *phba)
7113{
7114 struct lpfc_sli *psli = &phba->sli;
7115
7116 spin_lock_irq(&phba->hbalock);
7117 if (!(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
7118 /* Asynchronous mailbox posting is not blocked, do nothing */
7119 spin_unlock_irq(&phba->hbalock);
7120 return;
7121 }
7122
7123 /* Outstanding synchronous mailbox command is guaranteed to be done,
7124 * successful or timeout, after timing-out the outstanding mailbox
7125 * command shall always be removed, so just unblock posting async
7126 * mailbox command and resume
7127 */
7128 psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
7129 spin_unlock_irq(&phba->hbalock);
7130
7131 /* wake up worker thread to post asynchronlous mailbox command */
7132 lpfc_worker_wake_up(phba);
7133}
7134
2d843edc
JS
7135/**
7136 * lpfc_sli4_wait_bmbx_ready - Wait for bootstrap mailbox register ready
7137 * @phba: Pointer to HBA context object.
7138 * @mboxq: Pointer to mailbox object.
7139 *
7140 * The function waits for the bootstrap mailbox register ready bit from
7141 * port for twice the regular mailbox command timeout value.
7142 *
7143 * 0 - no timeout on waiting for bootstrap mailbox register ready.
7144 * MBXERR_ERROR - wait for bootstrap mailbox register timed out.
7145 **/
7146static int
7147lpfc_sli4_wait_bmbx_ready(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
7148{
7149 uint32_t db_ready;
7150 unsigned long timeout;
7151 struct lpfc_register bmbx_reg;
7152
7153 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, mboxq)
7154 * 1000) + jiffies;
7155
7156 do {
7157 bmbx_reg.word0 = readl(phba->sli4_hba.BMBXregaddr);
7158 db_ready = bf_get(lpfc_bmbx_rdy, &bmbx_reg);
7159 if (!db_ready)
7160 msleep(2);
7161
7162 if (time_after(jiffies, timeout))
7163 return MBXERR_ERROR;
7164 } while (!db_ready);
7165
7166 return 0;
7167}
7168
da0436e9
JS
7169/**
7170 * lpfc_sli4_post_sync_mbox - Post an SLI4 mailbox to the bootstrap mailbox
7171 * @phba: Pointer to HBA context object.
7172 * @mboxq: Pointer to mailbox object.
7173 *
7174 * The function posts a mailbox to the port. The mailbox is expected
7175 * to be comletely filled in and ready for the port to operate on it.
7176 * This routine executes a synchronous completion operation on the
7177 * mailbox by polling for its completion.
7178 *
7179 * The caller must not be holding any locks when calling this routine.
7180 *
7181 * Returns:
7182 * MBX_SUCCESS - mailbox posted successfully
7183 * Any of the MBX error values.
7184 **/
7185static int
7186lpfc_sli4_post_sync_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
7187{
7188 int rc = MBX_SUCCESS;
7189 unsigned long iflag;
da0436e9
JS
7190 uint32_t mcqe_status;
7191 uint32_t mbx_cmnd;
da0436e9
JS
7192 struct lpfc_sli *psli = &phba->sli;
7193 struct lpfc_mqe *mb = &mboxq->u.mqe;
7194 struct lpfc_bmbx_create *mbox_rgn;
7195 struct dma_address *dma_address;
da0436e9
JS
7196
7197 /*
7198 * Only one mailbox can be active to the bootstrap mailbox region
7199 * at a time and there is no queueing provided.
7200 */
7201 spin_lock_irqsave(&phba->hbalock, iflag);
7202 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
7203 spin_unlock_irqrestore(&phba->hbalock, iflag);
7204 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
a183a15f 7205 "(%d):2532 Mailbox command x%x (x%x/x%x) "
da0436e9
JS
7206 "cannot issue Data: x%x x%x\n",
7207 mboxq->vport ? mboxq->vport->vpi : 0,
7208 mboxq->u.mb.mbxCommand,
a183a15f
JS
7209 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7210 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
da0436e9
JS
7211 psli->sli_flag, MBX_POLL);
7212 return MBXERR_ERROR;
7213 }
7214 /* The server grabs the token and owns it until release */
7215 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
7216 phba->sli.mbox_active = mboxq;
7217 spin_unlock_irqrestore(&phba->hbalock, iflag);
7218
2d843edc
JS
7219 /* wait for bootstrap mbox register for readyness */
7220 rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
7221 if (rc)
7222 goto exit;
7223
da0436e9
JS
7224 /*
7225 * Initialize the bootstrap memory region to avoid stale data areas
7226 * in the mailbox post. Then copy the caller's mailbox contents to
7227 * the bmbx mailbox region.
7228 */
7229 mbx_cmnd = bf_get(lpfc_mqe_command, mb);
7230 memset(phba->sli4_hba.bmbx.avirt, 0, sizeof(struct lpfc_bmbx_create));
7231 lpfc_sli_pcimem_bcopy(mb, phba->sli4_hba.bmbx.avirt,
7232 sizeof(struct lpfc_mqe));
7233
7234 /* Post the high mailbox dma address to the port and wait for ready. */
7235 dma_address = &phba->sli4_hba.bmbx.dma_address;
7236 writel(dma_address->addr_hi, phba->sli4_hba.BMBXregaddr);
7237
2d843edc
JS
7238 /* wait for bootstrap mbox register for hi-address write done */
7239 rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
7240 if (rc)
7241 goto exit;
da0436e9
JS
7242
7243 /* Post the low mailbox dma address to the port. */
7244 writel(dma_address->addr_lo, phba->sli4_hba.BMBXregaddr);
da0436e9 7245
2d843edc
JS
7246 /* wait for bootstrap mbox register for low address write done */
7247 rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
7248 if (rc)
7249 goto exit;
da0436e9
JS
7250
7251 /*
7252 * Read the CQ to ensure the mailbox has completed.
7253 * If so, update the mailbox status so that the upper layers
7254 * can complete the request normally.
7255 */
7256 lpfc_sli_pcimem_bcopy(phba->sli4_hba.bmbx.avirt, mb,
7257 sizeof(struct lpfc_mqe));
7258 mbox_rgn = (struct lpfc_bmbx_create *) phba->sli4_hba.bmbx.avirt;
7259 lpfc_sli_pcimem_bcopy(&mbox_rgn->mcqe, &mboxq->mcqe,
7260 sizeof(struct lpfc_mcqe));
7261 mcqe_status = bf_get(lpfc_mcqe_status, &mbox_rgn->mcqe);
0558056c
JS
7262 /*
7263 * When the CQE status indicates a failure and the mailbox status
7264 * indicates success then copy the CQE status into the mailbox status
7265 * (and prefix it with x4000).
7266 */
da0436e9 7267 if (mcqe_status != MB_CQE_STATUS_SUCCESS) {
0558056c
JS
7268 if (bf_get(lpfc_mqe_status, mb) == MBX_SUCCESS)
7269 bf_set(lpfc_mqe_status, mb,
7270 (LPFC_MBX_ERROR_RANGE | mcqe_status));
da0436e9 7271 rc = MBXERR_ERROR;
d7c47992
JS
7272 } else
7273 lpfc_sli4_swap_str(phba, mboxq);
da0436e9
JS
7274
7275 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
a183a15f 7276 "(%d):0356 Mailbox cmd x%x (x%x/x%x) Status x%x "
da0436e9
JS
7277 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x"
7278 " x%x x%x CQ: x%x x%x x%x x%x\n",
a183a15f
JS
7279 mboxq->vport ? mboxq->vport->vpi : 0, mbx_cmnd,
7280 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7281 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
da0436e9
JS
7282 bf_get(lpfc_mqe_status, mb),
7283 mb->un.mb_words[0], mb->un.mb_words[1],
7284 mb->un.mb_words[2], mb->un.mb_words[3],
7285 mb->un.mb_words[4], mb->un.mb_words[5],
7286 mb->un.mb_words[6], mb->un.mb_words[7],
7287 mb->un.mb_words[8], mb->un.mb_words[9],
7288 mb->un.mb_words[10], mb->un.mb_words[11],
7289 mb->un.mb_words[12], mboxq->mcqe.word0,
7290 mboxq->mcqe.mcqe_tag0, mboxq->mcqe.mcqe_tag1,
7291 mboxq->mcqe.trailer);
7292exit:
7293 /* We are holding the token, no needed for lock when release */
7294 spin_lock_irqsave(&phba->hbalock, iflag);
7295 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7296 phba->sli.mbox_active = NULL;
7297 spin_unlock_irqrestore(&phba->hbalock, iflag);
7298 return rc;
7299}
7300
7301/**
7302 * lpfc_sli_issue_mbox_s4 - Issue an SLI4 mailbox command to firmware
7303 * @phba: Pointer to HBA context object.
7304 * @pmbox: Pointer to mailbox object.
7305 * @flag: Flag indicating how the mailbox need to be processed.
7306 *
7307 * This function is called by discovery code and HBA management code to submit
7308 * a mailbox command to firmware with SLI-4 interface spec.
7309 *
7310 * Return codes the caller owns the mailbox command after the return of the
7311 * function.
7312 **/
7313static int
7314lpfc_sli_issue_mbox_s4(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
7315 uint32_t flag)
7316{
7317 struct lpfc_sli *psli = &phba->sli;
7318 unsigned long iflags;
7319 int rc;
7320
b76f2dc9
JS
7321 /* dump from issue mailbox command if setup */
7322 lpfc_idiag_mbxacc_dump_issue_mbox(phba, &mboxq->u.mb);
7323
8fa38513
JS
7324 rc = lpfc_mbox_dev_check(phba);
7325 if (unlikely(rc)) {
7326 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
a183a15f 7327 "(%d):2544 Mailbox command x%x (x%x/x%x) "
8fa38513
JS
7328 "cannot issue Data: x%x x%x\n",
7329 mboxq->vport ? mboxq->vport->vpi : 0,
7330 mboxq->u.mb.mbxCommand,
a183a15f
JS
7331 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7332 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
8fa38513
JS
7333 psli->sli_flag, flag);
7334 goto out_not_finished;
7335 }
7336
da0436e9
JS
7337 /* Detect polling mode and jump to a handler */
7338 if (!phba->sli4_hba.intr_enable) {
7339 if (flag == MBX_POLL)
7340 rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
7341 else
7342 rc = -EIO;
7343 if (rc != MBX_SUCCESS)
0558056c 7344 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
da0436e9 7345 "(%d):2541 Mailbox command x%x "
cc459f19
JS
7346 "(x%x/x%x) failure: "
7347 "mqe_sta: x%x mcqe_sta: x%x/x%x "
7348 "Data: x%x x%x\n,",
da0436e9
JS
7349 mboxq->vport ? mboxq->vport->vpi : 0,
7350 mboxq->u.mb.mbxCommand,
a183a15f
JS
7351 lpfc_sli_config_mbox_subsys_get(phba,
7352 mboxq),
7353 lpfc_sli_config_mbox_opcode_get(phba,
7354 mboxq),
cc459f19
JS
7355 bf_get(lpfc_mqe_status, &mboxq->u.mqe),
7356 bf_get(lpfc_mcqe_status, &mboxq->mcqe),
7357 bf_get(lpfc_mcqe_ext_status,
7358 &mboxq->mcqe),
da0436e9
JS
7359 psli->sli_flag, flag);
7360 return rc;
7361 } else if (flag == MBX_POLL) {
f1126688
JS
7362 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
7363 "(%d):2542 Try to issue mailbox command "
a183a15f 7364 "x%x (x%x/x%x) synchronously ahead of async"
f1126688 7365 "mailbox command queue: x%x x%x\n",
da0436e9
JS
7366 mboxq->vport ? mboxq->vport->vpi : 0,
7367 mboxq->u.mb.mbxCommand,
a183a15f
JS
7368 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7369 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
da0436e9 7370 psli->sli_flag, flag);
f1126688
JS
7371 /* Try to block the asynchronous mailbox posting */
7372 rc = lpfc_sli4_async_mbox_block(phba);
7373 if (!rc) {
7374 /* Successfully blocked, now issue sync mbox cmd */
7375 rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
7376 if (rc != MBX_SUCCESS)
cc459f19 7377 lpfc_printf_log(phba, KERN_WARNING,
a183a15f 7378 LOG_MBOX | LOG_SLI,
cc459f19
JS
7379 "(%d):2597 Sync Mailbox command "
7380 "x%x (x%x/x%x) failure: "
7381 "mqe_sta: x%x mcqe_sta: x%x/x%x "
7382 "Data: x%x x%x\n,",
7383 mboxq->vport ? mboxq->vport->vpi : 0,
a183a15f
JS
7384 mboxq->u.mb.mbxCommand,
7385 lpfc_sli_config_mbox_subsys_get(phba,
7386 mboxq),
7387 lpfc_sli_config_mbox_opcode_get(phba,
7388 mboxq),
cc459f19
JS
7389 bf_get(lpfc_mqe_status, &mboxq->u.mqe),
7390 bf_get(lpfc_mcqe_status, &mboxq->mcqe),
7391 bf_get(lpfc_mcqe_ext_status,
7392 &mboxq->mcqe),
a183a15f 7393 psli->sli_flag, flag);
f1126688
JS
7394 /* Unblock the async mailbox posting afterward */
7395 lpfc_sli4_async_mbox_unblock(phba);
7396 }
7397 return rc;
da0436e9
JS
7398 }
7399
7400 /* Now, interrupt mode asynchrous mailbox command */
7401 rc = lpfc_mbox_cmd_check(phba, mboxq);
7402 if (rc) {
7403 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
a183a15f 7404 "(%d):2543 Mailbox command x%x (x%x/x%x) "
da0436e9
JS
7405 "cannot issue Data: x%x x%x\n",
7406 mboxq->vport ? mboxq->vport->vpi : 0,
7407 mboxq->u.mb.mbxCommand,
a183a15f
JS
7408 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7409 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
da0436e9
JS
7410 psli->sli_flag, flag);
7411 goto out_not_finished;
7412 }
da0436e9
JS
7413
7414 /* Put the mailbox command to the driver internal FIFO */
7415 psli->slistat.mbox_busy++;
7416 spin_lock_irqsave(&phba->hbalock, iflags);
7417 lpfc_mbox_put(phba, mboxq);
7418 spin_unlock_irqrestore(&phba->hbalock, iflags);
7419 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
7420 "(%d):0354 Mbox cmd issue - Enqueue Data: "
a183a15f 7421 "x%x (x%x/x%x) x%x x%x x%x\n",
da0436e9
JS
7422 mboxq->vport ? mboxq->vport->vpi : 0xffffff,
7423 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
a183a15f
JS
7424 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7425 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
da0436e9
JS
7426 phba->pport->port_state,
7427 psli->sli_flag, MBX_NOWAIT);
7428 /* Wake up worker thread to transport mailbox command from head */
7429 lpfc_worker_wake_up(phba);
7430
7431 return MBX_BUSY;
7432
7433out_not_finished:
7434 return MBX_NOT_FINISHED;
7435}
7436
7437/**
7438 * lpfc_sli4_post_async_mbox - Post an SLI4 mailbox command to device
7439 * @phba: Pointer to HBA context object.
7440 *
7441 * This function is called by worker thread to send a mailbox command to
7442 * SLI4 HBA firmware.
7443 *
7444 **/
7445int
7446lpfc_sli4_post_async_mbox(struct lpfc_hba *phba)
7447{
7448 struct lpfc_sli *psli = &phba->sli;
7449 LPFC_MBOXQ_t *mboxq;
7450 int rc = MBX_SUCCESS;
7451 unsigned long iflags;
7452 struct lpfc_mqe *mqe;
7453 uint32_t mbx_cmnd;
7454
7455 /* Check interrupt mode before post async mailbox command */
7456 if (unlikely(!phba->sli4_hba.intr_enable))
7457 return MBX_NOT_FINISHED;
7458
7459 /* Check for mailbox command service token */
7460 spin_lock_irqsave(&phba->hbalock, iflags);
7461 if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
7462 spin_unlock_irqrestore(&phba->hbalock, iflags);
7463 return MBX_NOT_FINISHED;
7464 }
7465 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
7466 spin_unlock_irqrestore(&phba->hbalock, iflags);
7467 return MBX_NOT_FINISHED;
7468 }
7469 if (unlikely(phba->sli.mbox_active)) {
7470 spin_unlock_irqrestore(&phba->hbalock, iflags);
7471 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7472 "0384 There is pending active mailbox cmd\n");
7473 return MBX_NOT_FINISHED;
7474 }
7475 /* Take the mailbox command service token */
7476 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
7477
7478 /* Get the next mailbox command from head of queue */
7479 mboxq = lpfc_mbox_get(phba);
7480
7481 /* If no more mailbox command waiting for post, we're done */
7482 if (!mboxq) {
7483 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7484 spin_unlock_irqrestore(&phba->hbalock, iflags);
7485 return MBX_SUCCESS;
7486 }
7487 phba->sli.mbox_active = mboxq;
7488 spin_unlock_irqrestore(&phba->hbalock, iflags);
7489
7490 /* Check device readiness for posting mailbox command */
7491 rc = lpfc_mbox_dev_check(phba);
7492 if (unlikely(rc))
7493 /* Driver clean routine will clean up pending mailbox */
7494 goto out_not_finished;
7495
7496 /* Prepare the mbox command to be posted */
7497 mqe = &mboxq->u.mqe;
7498 mbx_cmnd = bf_get(lpfc_mqe_command, mqe);
7499
7500 /* Start timer for the mbox_tmo and log some mailbox post messages */
7501 mod_timer(&psli->mbox_tmo, (jiffies +
256ec0d0 7502 msecs_to_jiffies(1000 * lpfc_mbox_tmo_val(phba, mboxq))));
da0436e9
JS
7503
7504 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
a183a15f 7505 "(%d):0355 Mailbox cmd x%x (x%x/x%x) issue Data: "
da0436e9
JS
7506 "x%x x%x\n",
7507 mboxq->vport ? mboxq->vport->vpi : 0, mbx_cmnd,
a183a15f
JS
7508 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7509 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
da0436e9
JS
7510 phba->pport->port_state, psli->sli_flag);
7511
7512 if (mbx_cmnd != MBX_HEARTBEAT) {
7513 if (mboxq->vport) {
7514 lpfc_debugfs_disc_trc(mboxq->vport,
7515 LPFC_DISC_TRC_MBOX_VPORT,
7516 "MBOX Send vport: cmd:x%x mb:x%x x%x",
7517 mbx_cmnd, mqe->un.mb_words[0],
7518 mqe->un.mb_words[1]);
7519 } else {
7520 lpfc_debugfs_disc_trc(phba->pport,
7521 LPFC_DISC_TRC_MBOX,
7522 "MBOX Send: cmd:x%x mb:x%x x%x",
7523 mbx_cmnd, mqe->un.mb_words[0],
7524 mqe->un.mb_words[1]);
7525 }
7526 }
7527 psli->slistat.mbox_cmd++;
7528
7529 /* Post the mailbox command to the port */
7530 rc = lpfc_sli4_mq_put(phba->sli4_hba.mbx_wq, mqe);
7531 if (rc != MBX_SUCCESS) {
7532 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
a183a15f 7533 "(%d):2533 Mailbox command x%x (x%x/x%x) "
da0436e9
JS
7534 "cannot issue Data: x%x x%x\n",
7535 mboxq->vport ? mboxq->vport->vpi : 0,
7536 mboxq->u.mb.mbxCommand,
a183a15f
JS
7537 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
7538 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
da0436e9
JS
7539 psli->sli_flag, MBX_NOWAIT);
7540 goto out_not_finished;
7541 }
7542
7543 return rc;
7544
7545out_not_finished:
7546 spin_lock_irqsave(&phba->hbalock, iflags);
d7069f09
JS
7547 if (phba->sli.mbox_active) {
7548 mboxq->u.mb.mbxStatus = MBX_NOT_FINISHED;
7549 __lpfc_mbox_cmpl_put(phba, mboxq);
7550 /* Release the token */
7551 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7552 phba->sli.mbox_active = NULL;
7553 }
da0436e9
JS
7554 spin_unlock_irqrestore(&phba->hbalock, iflags);
7555
7556 return MBX_NOT_FINISHED;
7557}
7558
7559/**
7560 * lpfc_sli_issue_mbox - Wrapper func for issuing mailbox command
7561 * @phba: Pointer to HBA context object.
7562 * @pmbox: Pointer to mailbox object.
7563 * @flag: Flag indicating how the mailbox need to be processed.
7564 *
7565 * This routine wraps the actual SLI3 or SLI4 mailbox issuing routine from
7566 * the API jump table function pointer from the lpfc_hba struct.
7567 *
7568 * Return codes the caller owns the mailbox command after the return of the
7569 * function.
7570 **/
7571int
7572lpfc_sli_issue_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox, uint32_t flag)
7573{
7574 return phba->lpfc_sli_issue_mbox(phba, pmbox, flag);
7575}
7576
7577/**
25985edc 7578 * lpfc_mbox_api_table_setup - Set up mbox api function jump table
da0436e9
JS
7579 * @phba: The hba struct for which this call is being executed.
7580 * @dev_grp: The HBA PCI-Device group number.
7581 *
7582 * This routine sets up the mbox interface API function jump table in @phba
7583 * struct.
7584 * Returns: 0 - success, -ENODEV - failure.
7585 **/
7586int
7587lpfc_mbox_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
7588{
7589
7590 switch (dev_grp) {
7591 case LPFC_PCI_DEV_LP:
7592 phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s3;
7593 phba->lpfc_sli_handle_slow_ring_event =
7594 lpfc_sli_handle_slow_ring_event_s3;
7595 phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s3;
7596 phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s3;
7597 phba->lpfc_sli_brdready = lpfc_sli_brdready_s3;
7598 break;
7599 case LPFC_PCI_DEV_OC:
7600 phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s4;
7601 phba->lpfc_sli_handle_slow_ring_event =
7602 lpfc_sli_handle_slow_ring_event_s4;
7603 phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s4;
7604 phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s4;
7605 phba->lpfc_sli_brdready = lpfc_sli_brdready_s4;
7606 break;
7607 default:
7608 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7609 "1420 Invalid HBA PCI-device group: 0x%x\n",
7610 dev_grp);
7611 return -ENODEV;
7612 break;
7613 }
7614 return 0;
7615}
7616
e59058c4 7617/**
3621a710 7618 * __lpfc_sli_ringtx_put - Add an iocb to the txq
e59058c4
JS
7619 * @phba: Pointer to HBA context object.
7620 * @pring: Pointer to driver SLI ring object.
7621 * @piocb: Pointer to address of newly added command iocb.
7622 *
7623 * This function is called with hbalock held to add a command
7624 * iocb to the txq when SLI layer cannot submit the command iocb
7625 * to the ring.
7626 **/
2a9bf3d0 7627void
92d7f7b0 7628__lpfc_sli_ringtx_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2e0fef85 7629 struct lpfc_iocbq *piocb)
dea3101e 7630{
7631 /* Insert the caller's iocb in the txq tail for later processing. */
7632 list_add_tail(&piocb->list, &pring->txq);
dea3101e 7633}
7634
e59058c4 7635/**
3621a710 7636 * lpfc_sli_next_iocb - Get the next iocb in the txq
e59058c4
JS
7637 * @phba: Pointer to HBA context object.
7638 * @pring: Pointer to driver SLI ring object.
7639 * @piocb: Pointer to address of newly added command iocb.
7640 *
7641 * This function is called with hbalock held before a new
7642 * iocb is submitted to the firmware. This function checks
7643 * txq to flush the iocbs in txq to Firmware before
7644 * submitting new iocbs to the Firmware.
7645 * If there are iocbs in the txq which need to be submitted
7646 * to firmware, lpfc_sli_next_iocb returns the first element
7647 * of the txq after dequeuing it from txq.
7648 * If there is no iocb in the txq then the function will return
7649 * *piocb and *piocb is set to NULL. Caller needs to check
7650 * *piocb to find if there are more commands in the txq.
7651 **/
dea3101e 7652static struct lpfc_iocbq *
7653lpfc_sli_next_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2e0fef85 7654 struct lpfc_iocbq **piocb)
dea3101e 7655{
7656 struct lpfc_iocbq * nextiocb;
7657
7658 nextiocb = lpfc_sli_ringtx_get(phba, pring);
7659 if (!nextiocb) {
7660 nextiocb = *piocb;
7661 *piocb = NULL;
7662 }
7663
7664 return nextiocb;
7665}
7666
e59058c4 7667/**
3772a991 7668 * __lpfc_sli_issue_iocb_s3 - SLI3 device lockless ver of lpfc_sli_issue_iocb
e59058c4 7669 * @phba: Pointer to HBA context object.
3772a991 7670 * @ring_number: SLI ring number to issue iocb on.
e59058c4
JS
7671 * @piocb: Pointer to command iocb.
7672 * @flag: Flag indicating if this command can be put into txq.
7673 *
3772a991
JS
7674 * __lpfc_sli_issue_iocb_s3 is used by other functions in the driver to issue
7675 * an iocb command to an HBA with SLI-3 interface spec. If the PCI slot is
7676 * recovering from error state, if HBA is resetting or if LPFC_STOP_IOCB_EVENT
7677 * flag is turned on, the function returns IOCB_ERROR. When the link is down,
7678 * this function allows only iocbs for posting buffers. This function finds
7679 * next available slot in the command ring and posts the command to the
7680 * available slot and writes the port attention register to request HBA start
7681 * processing new iocb. If there is no slot available in the ring and
7682 * flag & SLI_IOCB_RET_IOCB is set, the new iocb is added to the txq, otherwise
7683 * the function returns IOCB_BUSY.
e59058c4 7684 *
3772a991
JS
7685 * This function is called with hbalock held. The function will return success
7686 * after it successfully submit the iocb to firmware or after adding to the
7687 * txq.
e59058c4 7688 **/
98c9ea5c 7689static int
3772a991 7690__lpfc_sli_issue_iocb_s3(struct lpfc_hba *phba, uint32_t ring_number,
dea3101e 7691 struct lpfc_iocbq *piocb, uint32_t flag)
7692{
7693 struct lpfc_iocbq *nextiocb;
7694 IOCB_t *iocb;
3772a991 7695 struct lpfc_sli_ring *pring = &phba->sli.ring[ring_number];
dea3101e 7696
92d7f7b0
JS
7697 if (piocb->iocb_cmpl && (!piocb->vport) &&
7698 (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
7699 (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) {
7700 lpfc_printf_log(phba, KERN_ERR,
7701 LOG_SLI | LOG_VPORT,
e8b62011 7702 "1807 IOCB x%x failed. No vport\n",
92d7f7b0
JS
7703 piocb->iocb.ulpCommand);
7704 dump_stack();
7705 return IOCB_ERROR;
7706 }
7707
7708
8d63f375
LV
7709 /* If the PCI channel is in offline state, do not post iocbs. */
7710 if (unlikely(pci_channel_offline(phba->pcidev)))
7711 return IOCB_ERROR;
7712
a257bf90
JS
7713 /* If HBA has a deferred error attention, fail the iocb. */
7714 if (unlikely(phba->hba_flag & DEFER_ERATT))
7715 return IOCB_ERROR;
7716
dea3101e 7717 /*
7718 * We should never get an IOCB if we are in a < LINK_DOWN state
7719 */
2e0fef85 7720 if (unlikely(phba->link_state < LPFC_LINK_DOWN))
dea3101e 7721 return IOCB_ERROR;
7722
7723 /*
7724 * Check to see if we are blocking IOCB processing because of a
0b727fea 7725 * outstanding event.
dea3101e 7726 */
0b727fea 7727 if (unlikely(pring->flag & LPFC_STOP_IOCB_EVENT))
dea3101e 7728 goto iocb_busy;
7729
2e0fef85 7730 if (unlikely(phba->link_state == LPFC_LINK_DOWN)) {
dea3101e 7731 /*
2680eeaa 7732 * Only CREATE_XRI, CLOSE_XRI, and QUE_RING_BUF
dea3101e 7733 * can be issued if the link is not up.
7734 */
7735 switch (piocb->iocb.ulpCommand) {
84774a4d
JS
7736 case CMD_GEN_REQUEST64_CR:
7737 case CMD_GEN_REQUEST64_CX:
7738 if (!(phba->sli.sli_flag & LPFC_MENLO_MAINT) ||
7739 (piocb->iocb.un.genreq64.w5.hcsw.Rctl !=
6a9c52cf 7740 FC_RCTL_DD_UNSOL_CMD) ||
84774a4d
JS
7741 (piocb->iocb.un.genreq64.w5.hcsw.Type !=
7742 MENLO_TRANSPORT_TYPE))
7743
7744 goto iocb_busy;
7745 break;
dea3101e 7746 case CMD_QUE_RING_BUF_CN:
7747 case CMD_QUE_RING_BUF64_CN:
dea3101e 7748 /*
7749 * For IOCBs, like QUE_RING_BUF, that have no rsp ring
7750 * completion, iocb_cmpl MUST be 0.
7751 */
7752 if (piocb->iocb_cmpl)
7753 piocb->iocb_cmpl = NULL;
7754 /*FALLTHROUGH*/
7755 case CMD_CREATE_XRI_CR:
2680eeaa
JS
7756 case CMD_CLOSE_XRI_CN:
7757 case CMD_CLOSE_XRI_CX:
dea3101e 7758 break;
7759 default:
7760 goto iocb_busy;
7761 }
7762
7763 /*
7764 * For FCP commands, we must be in a state where we can process link
7765 * attention events.
7766 */
7767 } else if (unlikely(pring->ringno == phba->sli.fcp_ring &&
92d7f7b0 7768 !(phba->sli.sli_flag & LPFC_PROCESS_LA))) {
dea3101e 7769 goto iocb_busy;
92d7f7b0 7770 }
dea3101e 7771
dea3101e 7772 while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
7773 (nextiocb = lpfc_sli_next_iocb(phba, pring, &piocb)))
7774 lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
7775
7776 if (iocb)
7777 lpfc_sli_update_ring(phba, pring);
7778 else
7779 lpfc_sli_update_full_ring(phba, pring);
7780
7781 if (!piocb)
7782 return IOCB_SUCCESS;
7783
7784 goto out_busy;
7785
7786 iocb_busy:
7787 pring->stats.iocb_cmd_delay++;
7788
7789 out_busy:
7790
7791 if (!(flag & SLI_IOCB_RET_IOCB)) {
92d7f7b0 7792 __lpfc_sli_ringtx_put(phba, pring, piocb);
dea3101e 7793 return IOCB_SUCCESS;
7794 }
7795
7796 return IOCB_BUSY;
7797}
7798
3772a991 7799/**
4f774513
JS
7800 * lpfc_sli4_bpl2sgl - Convert the bpl/bde to a sgl.
7801 * @phba: Pointer to HBA context object.
7802 * @piocb: Pointer to command iocb.
7803 * @sglq: Pointer to the scatter gather queue object.
7804 *
7805 * This routine converts the bpl or bde that is in the IOCB
7806 * to a sgl list for the sli4 hardware. The physical address
7807 * of the bpl/bde is converted back to a virtual address.
7808 * If the IOCB contains a BPL then the list of BDE's is
7809 * converted to sli4_sge's. If the IOCB contains a single
7810 * BDE then it is converted to a single sli_sge.
7811 * The IOCB is still in cpu endianess so the contents of
7812 * the bpl can be used without byte swapping.
7813 *
7814 * Returns valid XRI = Success, NO_XRI = Failure.
7815**/
7816static uint16_t
7817lpfc_sli4_bpl2sgl(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq,
7818 struct lpfc_sglq *sglq)
3772a991 7819{
4f774513
JS
7820 uint16_t xritag = NO_XRI;
7821 struct ulp_bde64 *bpl = NULL;
7822 struct ulp_bde64 bde;
7823 struct sli4_sge *sgl = NULL;
1b51197d 7824 struct lpfc_dmabuf *dmabuf;
4f774513
JS
7825 IOCB_t *icmd;
7826 int numBdes = 0;
7827 int i = 0;
63e801ce
JS
7828 uint32_t offset = 0; /* accumulated offset in the sg request list */
7829 int inbound = 0; /* number of sg reply entries inbound from firmware */
3772a991 7830
4f774513
JS
7831 if (!piocbq || !sglq)
7832 return xritag;
7833
7834 sgl = (struct sli4_sge *)sglq->sgl;
7835 icmd = &piocbq->iocb;
6b5151fd
JS
7836 if (icmd->ulpCommand == CMD_XMIT_BLS_RSP64_CX)
7837 return sglq->sli4_xritag;
4f774513
JS
7838 if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
7839 numBdes = icmd->un.genreq64.bdl.bdeSize /
7840 sizeof(struct ulp_bde64);
7841 /* The addrHigh and addrLow fields within the IOCB
7842 * have not been byteswapped yet so there is no
7843 * need to swap them back.
7844 */
1b51197d
JS
7845 if (piocbq->context3)
7846 dmabuf = (struct lpfc_dmabuf *)piocbq->context3;
7847 else
7848 return xritag;
4f774513 7849
1b51197d 7850 bpl = (struct ulp_bde64 *)dmabuf->virt;
4f774513
JS
7851 if (!bpl)
7852 return xritag;
7853
7854 for (i = 0; i < numBdes; i++) {
7855 /* Should already be byte swapped. */
28baac74
JS
7856 sgl->addr_hi = bpl->addrHigh;
7857 sgl->addr_lo = bpl->addrLow;
7858
0558056c 7859 sgl->word2 = le32_to_cpu(sgl->word2);
4f774513
JS
7860 if ((i+1) == numBdes)
7861 bf_set(lpfc_sli4_sge_last, sgl, 1);
7862 else
7863 bf_set(lpfc_sli4_sge_last, sgl, 0);
28baac74
JS
7864 /* swap the size field back to the cpu so we
7865 * can assign it to the sgl.
7866 */
7867 bde.tus.w = le32_to_cpu(bpl->tus.w);
7868 sgl->sge_len = cpu_to_le32(bde.tus.f.bdeSize);
63e801ce
JS
7869 /* The offsets in the sgl need to be accumulated
7870 * separately for the request and reply lists.
7871 * The request is always first, the reply follows.
7872 */
7873 if (piocbq->iocb.ulpCommand == CMD_GEN_REQUEST64_CR) {
7874 /* add up the reply sg entries */
7875 if (bpl->tus.f.bdeFlags == BUFF_TYPE_BDE_64I)
7876 inbound++;
7877 /* first inbound? reset the offset */
7878 if (inbound == 1)
7879 offset = 0;
7880 bf_set(lpfc_sli4_sge_offset, sgl, offset);
f9bb2da1
JS
7881 bf_set(lpfc_sli4_sge_type, sgl,
7882 LPFC_SGE_TYPE_DATA);
63e801ce
JS
7883 offset += bde.tus.f.bdeSize;
7884 }
546fc854 7885 sgl->word2 = cpu_to_le32(sgl->word2);
4f774513
JS
7886 bpl++;
7887 sgl++;
7888 }
7889 } else if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BDE_64) {
7890 /* The addrHigh and addrLow fields of the BDE have not
7891 * been byteswapped yet so they need to be swapped
7892 * before putting them in the sgl.
7893 */
7894 sgl->addr_hi =
7895 cpu_to_le32(icmd->un.genreq64.bdl.addrHigh);
7896 sgl->addr_lo =
7897 cpu_to_le32(icmd->un.genreq64.bdl.addrLow);
0558056c 7898 sgl->word2 = le32_to_cpu(sgl->word2);
4f774513
JS
7899 bf_set(lpfc_sli4_sge_last, sgl, 1);
7900 sgl->word2 = cpu_to_le32(sgl->word2);
28baac74
JS
7901 sgl->sge_len =
7902 cpu_to_le32(icmd->un.genreq64.bdl.bdeSize);
4f774513
JS
7903 }
7904 return sglq->sli4_xritag;
3772a991 7905}
92d7f7b0 7906
e59058c4 7907/**
4f774513 7908 * lpfc_sli4_scmd_to_wqidx_distr - scsi command to SLI4 WQ index distribution
e59058c4 7909 * @phba: Pointer to HBA context object.
e59058c4 7910 *
a93ff37a 7911 * This routine performs a roundrobin SCSI command to SLI4 FCP WQ index
8fa38513
JS
7912 * distribution. This is called by __lpfc_sli_issue_iocb_s4() with the hbalock
7913 * held.
4f774513
JS
7914 *
7915 * Return: index into SLI4 fast-path FCP queue index.
e59058c4 7916 **/
2a76a283 7917static inline uint32_t
8fa38513 7918lpfc_sli4_scmd_to_wqidx_distr(struct lpfc_hba *phba)
92d7f7b0 7919{
7bb03bbf
JS
7920 struct lpfc_vector_map_info *cpup;
7921 int chann, cpu;
7922
7923 if (phba->cfg_fcp_io_sched == LPFC_FCP_SCHED_BY_CPU) {
7924 cpu = smp_processor_id();
7925 if (cpu < phba->sli4_hba.num_present_cpu) {
7926 cpup = phba->sli4_hba.cpu_map;
7927 cpup += cpu;
7928 return cpup->channel_id;
7929 }
7930 chann = cpu;
7931 }
7932 chann = atomic_add_return(1, &phba->fcp_qidx);
7933 chann = (chann % phba->cfg_fcp_io_channel);
7934 return chann;
92d7f7b0
JS
7935}
7936
e59058c4 7937/**
4f774513 7938 * lpfc_sli_iocb2wqe - Convert the IOCB to a work queue entry.
e59058c4 7939 * @phba: Pointer to HBA context object.
4f774513
JS
7940 * @piocb: Pointer to command iocb.
7941 * @wqe: Pointer to the work queue entry.
e59058c4 7942 *
4f774513
JS
7943 * This routine converts the iocb command to its Work Queue Entry
7944 * equivalent. The wqe pointer should not have any fields set when
7945 * this routine is called because it will memcpy over them.
7946 * This routine does not set the CQ_ID or the WQEC bits in the
7947 * wqe.
e59058c4 7948 *
4f774513 7949 * Returns: 0 = Success, IOCB_ERROR = Failure.
e59058c4 7950 **/
cf5bf97e 7951static int
4f774513
JS
7952lpfc_sli4_iocb2wqe(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq,
7953 union lpfc_wqe *wqe)
cf5bf97e 7954{
5ffc266e 7955 uint32_t xmit_len = 0, total_len = 0;
4f774513
JS
7956 uint8_t ct = 0;
7957 uint32_t fip;
7958 uint32_t abort_tag;
7959 uint8_t command_type = ELS_COMMAND_NON_FIP;
7960 uint8_t cmnd;
7961 uint16_t xritag;
dcf2a4e0
JS
7962 uint16_t abrt_iotag;
7963 struct lpfc_iocbq *abrtiocbq;
4f774513 7964 struct ulp_bde64 *bpl = NULL;
f0d9bccc 7965 uint32_t els_id = LPFC_ELS_ID_DEFAULT;
5ffc266e
JS
7966 int numBdes, i;
7967 struct ulp_bde64 bde;
c31098ce 7968 struct lpfc_nodelist *ndlp;
ff78d8f9 7969 uint32_t *pcmd;
1b51197d 7970 uint32_t if_type;
4f774513 7971
45ed1190 7972 fip = phba->hba_flag & HBA_FIP_SUPPORT;
4f774513 7973 /* The fcp commands will set command type */
0c287589 7974 if (iocbq->iocb_flag & LPFC_IO_FCP)
4f774513 7975 command_type = FCP_COMMAND;
c868595d 7976 else if (fip && (iocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK))
0c287589
JS
7977 command_type = ELS_COMMAND_FIP;
7978 else
7979 command_type = ELS_COMMAND_NON_FIP;
7980
4f774513
JS
7981 /* Some of the fields are in the right position already */
7982 memcpy(wqe, &iocbq->iocb, sizeof(union lpfc_wqe));
7983 abort_tag = (uint32_t) iocbq->iotag;
7984 xritag = iocbq->sli4_xritag;
f0d9bccc 7985 wqe->generic.wqe_com.word7 = 0; /* The ct field has moved so reset */
4f774513
JS
7986 /* words0-2 bpl convert bde */
7987 if (iocbq->iocb.un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
5ffc266e
JS
7988 numBdes = iocbq->iocb.un.genreq64.bdl.bdeSize /
7989 sizeof(struct ulp_bde64);
4f774513
JS
7990 bpl = (struct ulp_bde64 *)
7991 ((struct lpfc_dmabuf *)iocbq->context3)->virt;
7992 if (!bpl)
7993 return IOCB_ERROR;
cf5bf97e 7994
4f774513
JS
7995 /* Should already be byte swapped. */
7996 wqe->generic.bde.addrHigh = le32_to_cpu(bpl->addrHigh);
7997 wqe->generic.bde.addrLow = le32_to_cpu(bpl->addrLow);
7998 /* swap the size field back to the cpu so we
7999 * can assign it to the sgl.
8000 */
8001 wqe->generic.bde.tus.w = le32_to_cpu(bpl->tus.w);
5ffc266e
JS
8002 xmit_len = wqe->generic.bde.tus.f.bdeSize;
8003 total_len = 0;
8004 for (i = 0; i < numBdes; i++) {
8005 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
8006 total_len += bde.tus.f.bdeSize;
8007 }
4f774513 8008 } else
5ffc266e 8009 xmit_len = iocbq->iocb.un.fcpi64.bdl.bdeSize;
cf5bf97e 8010
4f774513
JS
8011 iocbq->iocb.ulpIoTag = iocbq->iotag;
8012 cmnd = iocbq->iocb.ulpCommand;
a4bc3379 8013
4f774513
JS
8014 switch (iocbq->iocb.ulpCommand) {
8015 case CMD_ELS_REQUEST64_CR:
93d1379e
JS
8016 if (iocbq->iocb_flag & LPFC_IO_LIBDFC)
8017 ndlp = iocbq->context_un.ndlp;
8018 else
8019 ndlp = (struct lpfc_nodelist *)iocbq->context1;
4f774513
JS
8020 if (!iocbq->iocb.ulpLe) {
8021 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8022 "2007 Only Limited Edition cmd Format"
8023 " supported 0x%x\n",
8024 iocbq->iocb.ulpCommand);
8025 return IOCB_ERROR;
8026 }
ff78d8f9 8027
5ffc266e 8028 wqe->els_req.payload_len = xmit_len;
4f774513
JS
8029 /* Els_reguest64 has a TMO */
8030 bf_set(wqe_tmo, &wqe->els_req.wqe_com,
8031 iocbq->iocb.ulpTimeout);
8032 /* Need a VF for word 4 set the vf bit*/
8033 bf_set(els_req64_vf, &wqe->els_req, 0);
8034 /* And a VFID for word 12 */
8035 bf_set(els_req64_vfid, &wqe->els_req, 0);
4f774513 8036 ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
f0d9bccc
JS
8037 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
8038 iocbq->iocb.ulpContext);
8039 bf_set(wqe_ct, &wqe->els_req.wqe_com, ct);
8040 bf_set(wqe_pu, &wqe->els_req.wqe_com, 0);
4f774513 8041 /* CCP CCPE PV PRI in word10 were set in the memcpy */
ff78d8f9 8042 if (command_type == ELS_COMMAND_FIP)
c868595d
JS
8043 els_id = ((iocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK)
8044 >> LPFC_FIP_ELS_ID_SHIFT);
ff78d8f9
JS
8045 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
8046 iocbq->context2)->virt);
1b51197d
JS
8047 if_type = bf_get(lpfc_sli_intf_if_type,
8048 &phba->sli4_hba.sli_intf);
8049 if (if_type == LPFC_SLI_INTF_IF_TYPE_2) {
ff78d8f9 8050 if (pcmd && (*pcmd == ELS_CMD_FLOGI ||
cb69f7de 8051 *pcmd == ELS_CMD_SCR ||
6b5151fd 8052 *pcmd == ELS_CMD_FDISC ||
bdcd2b92 8053 *pcmd == ELS_CMD_LOGO ||
ff78d8f9
JS
8054 *pcmd == ELS_CMD_PLOGI)) {
8055 bf_set(els_req64_sp, &wqe->els_req, 1);
8056 bf_set(els_req64_sid, &wqe->els_req,
8057 iocbq->vport->fc_myDID);
939723a4
JS
8058 if ((*pcmd == ELS_CMD_FLOGI) &&
8059 !(phba->fc_topology ==
8060 LPFC_TOPOLOGY_LOOP))
8061 bf_set(els_req64_sid, &wqe->els_req, 0);
ff78d8f9
JS
8062 bf_set(wqe_ct, &wqe->els_req.wqe_com, 1);
8063 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
a7dd9c0f 8064 phba->vpi_ids[iocbq->vport->vpi]);
3ef6d24c 8065 } else if (pcmd && iocbq->context1) {
ff78d8f9
JS
8066 bf_set(wqe_ct, &wqe->els_req.wqe_com, 0);
8067 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
8068 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
8069 }
c868595d 8070 }
6d368e53
JS
8071 bf_set(wqe_temp_rpi, &wqe->els_req.wqe_com,
8072 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
f0d9bccc
JS
8073 bf_set(wqe_els_id, &wqe->els_req.wqe_com, els_id);
8074 bf_set(wqe_dbde, &wqe->els_req.wqe_com, 1);
8075 bf_set(wqe_iod, &wqe->els_req.wqe_com, LPFC_WQE_IOD_READ);
8076 bf_set(wqe_qosd, &wqe->els_req.wqe_com, 1);
8077 bf_set(wqe_lenloc, &wqe->els_req.wqe_com, LPFC_WQE_LENLOC_NONE);
8078 bf_set(wqe_ebde_cnt, &wqe->els_req.wqe_com, 0);
7851fe2c 8079 break;
5ffc266e 8080 case CMD_XMIT_SEQUENCE64_CX:
f0d9bccc
JS
8081 bf_set(wqe_ctxt_tag, &wqe->xmit_sequence.wqe_com,
8082 iocbq->iocb.un.ulpWord[3]);
8083 bf_set(wqe_rcvoxid, &wqe->xmit_sequence.wqe_com,
7851fe2c 8084 iocbq->iocb.unsli3.rcvsli3.ox_id);
5ffc266e
JS
8085 /* The entire sequence is transmitted for this IOCB */
8086 xmit_len = total_len;
8087 cmnd = CMD_XMIT_SEQUENCE64_CR;
1b51197d
JS
8088 if (phba->link_flag & LS_LOOPBACK_MODE)
8089 bf_set(wqe_xo, &wqe->xmit_sequence.wge_ctl, 1);
4f774513 8090 case CMD_XMIT_SEQUENCE64_CR:
f0d9bccc
JS
8091 /* word3 iocb=io_tag32 wqe=reserved */
8092 wqe->xmit_sequence.rsvd3 = 0;
4f774513
JS
8093 /* word4 relative_offset memcpy */
8094 /* word5 r_ctl/df_ctl memcpy */
f0d9bccc
JS
8095 bf_set(wqe_pu, &wqe->xmit_sequence.wqe_com, 0);
8096 bf_set(wqe_dbde, &wqe->xmit_sequence.wqe_com, 1);
8097 bf_set(wqe_iod, &wqe->xmit_sequence.wqe_com,
8098 LPFC_WQE_IOD_WRITE);
8099 bf_set(wqe_lenloc, &wqe->xmit_sequence.wqe_com,
8100 LPFC_WQE_LENLOC_WORD12);
8101 bf_set(wqe_ebde_cnt, &wqe->xmit_sequence.wqe_com, 0);
5ffc266e
JS
8102 wqe->xmit_sequence.xmit_len = xmit_len;
8103 command_type = OTHER_COMMAND;
7851fe2c 8104 break;
4f774513 8105 case CMD_XMIT_BCAST64_CN:
f0d9bccc
JS
8106 /* word3 iocb=iotag32 wqe=seq_payload_len */
8107 wqe->xmit_bcast64.seq_payload_len = xmit_len;
4f774513
JS
8108 /* word4 iocb=rsvd wqe=rsvd */
8109 /* word5 iocb=rctl/type/df_ctl wqe=rctl/type/df_ctl memcpy */
8110 /* word6 iocb=ctxt_tag/io_tag wqe=ctxt_tag/xri */
f0d9bccc 8111 bf_set(wqe_ct, &wqe->xmit_bcast64.wqe_com,
4f774513 8112 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
f0d9bccc
JS
8113 bf_set(wqe_dbde, &wqe->xmit_bcast64.wqe_com, 1);
8114 bf_set(wqe_iod, &wqe->xmit_bcast64.wqe_com, LPFC_WQE_IOD_WRITE);
8115 bf_set(wqe_lenloc, &wqe->xmit_bcast64.wqe_com,
8116 LPFC_WQE_LENLOC_WORD3);
8117 bf_set(wqe_ebde_cnt, &wqe->xmit_bcast64.wqe_com, 0);
7851fe2c 8118 break;
4f774513
JS
8119 case CMD_FCP_IWRITE64_CR:
8120 command_type = FCP_COMMAND_DATA_OUT;
f0d9bccc
JS
8121 /* word3 iocb=iotag wqe=payload_offset_len */
8122 /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
8123 wqe->fcp_iwrite.payload_offset_len =
8124 xmit_len + sizeof(struct fcp_rsp);
8125 /* word4 iocb=parameter wqe=total_xfer_length memcpy */
8126 /* word5 iocb=initial_xfer_len wqe=initial_xfer_len memcpy */
8127 bf_set(wqe_erp, &wqe->fcp_iwrite.wqe_com,
8128 iocbq->iocb.ulpFCP2Rcvy);
8129 bf_set(wqe_lnk, &wqe->fcp_iwrite.wqe_com, iocbq->iocb.ulpXS);
8130 /* Always open the exchange */
8131 bf_set(wqe_xc, &wqe->fcp_iwrite.wqe_com, 0);
f0d9bccc
JS
8132 bf_set(wqe_iod, &wqe->fcp_iwrite.wqe_com, LPFC_WQE_IOD_WRITE);
8133 bf_set(wqe_lenloc, &wqe->fcp_iwrite.wqe_com,
8134 LPFC_WQE_LENLOC_WORD4);
8135 bf_set(wqe_ebde_cnt, &wqe->fcp_iwrite.wqe_com, 0);
8136 bf_set(wqe_pu, &wqe->fcp_iwrite.wqe_com, iocbq->iocb.ulpPU);
acd6859b 8137 bf_set(wqe_dbde, &wqe->fcp_iwrite.wqe_com, 1);
7851fe2c 8138 break;
4f774513 8139 case CMD_FCP_IREAD64_CR:
f0d9bccc
JS
8140 /* word3 iocb=iotag wqe=payload_offset_len */
8141 /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
8142 wqe->fcp_iread.payload_offset_len =
5ffc266e 8143 xmit_len + sizeof(struct fcp_rsp);
f0d9bccc
JS
8144 /* word4 iocb=parameter wqe=total_xfer_length memcpy */
8145 /* word5 iocb=initial_xfer_len wqe=initial_xfer_len memcpy */
8146 bf_set(wqe_erp, &wqe->fcp_iread.wqe_com,
8147 iocbq->iocb.ulpFCP2Rcvy);
8148 bf_set(wqe_lnk, &wqe->fcp_iread.wqe_com, iocbq->iocb.ulpXS);
f1126688
JS
8149 /* Always open the exchange */
8150 bf_set(wqe_xc, &wqe->fcp_iread.wqe_com, 0);
f0d9bccc
JS
8151 bf_set(wqe_iod, &wqe->fcp_iread.wqe_com, LPFC_WQE_IOD_READ);
8152 bf_set(wqe_lenloc, &wqe->fcp_iread.wqe_com,
8153 LPFC_WQE_LENLOC_WORD4);
8154 bf_set(wqe_ebde_cnt, &wqe->fcp_iread.wqe_com, 0);
8155 bf_set(wqe_pu, &wqe->fcp_iread.wqe_com, iocbq->iocb.ulpPU);
acd6859b 8156 bf_set(wqe_dbde, &wqe->fcp_iread.wqe_com, 1);
7851fe2c 8157 break;
4f774513 8158 case CMD_FCP_ICMND64_CR:
f0d9bccc
JS
8159 /* word3 iocb=IO_TAG wqe=reserved */
8160 wqe->fcp_icmd.rsrvd3 = 0;
8161 bf_set(wqe_pu, &wqe->fcp_icmd.wqe_com, 0);
4f774513 8162 /* Always open the exchange */
f0d9bccc
JS
8163 bf_set(wqe_xc, &wqe->fcp_icmd.wqe_com, 0);
8164 bf_set(wqe_dbde, &wqe->fcp_icmd.wqe_com, 1);
8165 bf_set(wqe_iod, &wqe->fcp_icmd.wqe_com, LPFC_WQE_IOD_WRITE);
8166 bf_set(wqe_qosd, &wqe->fcp_icmd.wqe_com, 1);
8167 bf_set(wqe_lenloc, &wqe->fcp_icmd.wqe_com,
8168 LPFC_WQE_LENLOC_NONE);
8169 bf_set(wqe_ebde_cnt, &wqe->fcp_icmd.wqe_com, 0);
2a94aea4
JS
8170 bf_set(wqe_erp, &wqe->fcp_icmd.wqe_com,
8171 iocbq->iocb.ulpFCP2Rcvy);
7851fe2c 8172 break;
4f774513 8173 case CMD_GEN_REQUEST64_CR:
63e801ce
JS
8174 /* For this command calculate the xmit length of the
8175 * request bde.
8176 */
8177 xmit_len = 0;
8178 numBdes = iocbq->iocb.un.genreq64.bdl.bdeSize /
8179 sizeof(struct ulp_bde64);
8180 for (i = 0; i < numBdes; i++) {
63e801ce 8181 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
546fc854
JS
8182 if (bde.tus.f.bdeFlags != BUFF_TYPE_BDE_64)
8183 break;
63e801ce
JS
8184 xmit_len += bde.tus.f.bdeSize;
8185 }
f0d9bccc
JS
8186 /* word3 iocb=IO_TAG wqe=request_payload_len */
8187 wqe->gen_req.request_payload_len = xmit_len;
8188 /* word4 iocb=parameter wqe=relative_offset memcpy */
8189 /* word5 [rctl, type, df_ctl, la] copied in memcpy */
4f774513
JS
8190 /* word6 context tag copied in memcpy */
8191 if (iocbq->iocb.ulpCt_h || iocbq->iocb.ulpCt_l) {
8192 ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
8193 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8194 "2015 Invalid CT %x command 0x%x\n",
8195 ct, iocbq->iocb.ulpCommand);
8196 return IOCB_ERROR;
8197 }
f0d9bccc
JS
8198 bf_set(wqe_ct, &wqe->gen_req.wqe_com, 0);
8199 bf_set(wqe_tmo, &wqe->gen_req.wqe_com, iocbq->iocb.ulpTimeout);
8200 bf_set(wqe_pu, &wqe->gen_req.wqe_com, iocbq->iocb.ulpPU);
8201 bf_set(wqe_dbde, &wqe->gen_req.wqe_com, 1);
8202 bf_set(wqe_iod, &wqe->gen_req.wqe_com, LPFC_WQE_IOD_READ);
8203 bf_set(wqe_qosd, &wqe->gen_req.wqe_com, 1);
8204 bf_set(wqe_lenloc, &wqe->gen_req.wqe_com, LPFC_WQE_LENLOC_NONE);
8205 bf_set(wqe_ebde_cnt, &wqe->gen_req.wqe_com, 0);
4f774513 8206 command_type = OTHER_COMMAND;
7851fe2c 8207 break;
4f774513 8208 case CMD_XMIT_ELS_RSP64_CX:
c31098ce 8209 ndlp = (struct lpfc_nodelist *)iocbq->context1;
4f774513 8210 /* words0-2 BDE memcpy */
f0d9bccc
JS
8211 /* word3 iocb=iotag32 wqe=response_payload_len */
8212 wqe->xmit_els_rsp.response_payload_len = xmit_len;
939723a4
JS
8213 /* word4 */
8214 wqe->xmit_els_rsp.word4 = 0;
4f774513
JS
8215 /* word5 iocb=rsvd wge=did */
8216 bf_set(wqe_els_did, &wqe->xmit_els_rsp.wqe_dest,
939723a4
JS
8217 iocbq->iocb.un.xseq64.xmit_els_remoteID);
8218
8219 if_type = bf_get(lpfc_sli_intf_if_type,
8220 &phba->sli4_hba.sli_intf);
8221 if (if_type == LPFC_SLI_INTF_IF_TYPE_2) {
8222 if (iocbq->vport->fc_flag & FC_PT2PT) {
8223 bf_set(els_rsp64_sp, &wqe->xmit_els_rsp, 1);
8224 bf_set(els_rsp64_sid, &wqe->xmit_els_rsp,
8225 iocbq->vport->fc_myDID);
8226 if (iocbq->vport->fc_myDID == Fabric_DID) {
8227 bf_set(wqe_els_did,
8228 &wqe->xmit_els_rsp.wqe_dest, 0);
8229 }
8230 }
8231 }
f0d9bccc
JS
8232 bf_set(wqe_ct, &wqe->xmit_els_rsp.wqe_com,
8233 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
8234 bf_set(wqe_pu, &wqe->xmit_els_rsp.wqe_com, iocbq->iocb.ulpPU);
8235 bf_set(wqe_rcvoxid, &wqe->xmit_els_rsp.wqe_com,
7851fe2c 8236 iocbq->iocb.unsli3.rcvsli3.ox_id);
4f774513 8237 if (!iocbq->iocb.ulpCt_h && iocbq->iocb.ulpCt_l)
f0d9bccc 8238 bf_set(wqe_ctxt_tag, &wqe->xmit_els_rsp.wqe_com,
6d368e53 8239 phba->vpi_ids[iocbq->vport->vpi]);
f0d9bccc
JS
8240 bf_set(wqe_dbde, &wqe->xmit_els_rsp.wqe_com, 1);
8241 bf_set(wqe_iod, &wqe->xmit_els_rsp.wqe_com, LPFC_WQE_IOD_WRITE);
8242 bf_set(wqe_qosd, &wqe->xmit_els_rsp.wqe_com, 1);
8243 bf_set(wqe_lenloc, &wqe->xmit_els_rsp.wqe_com,
8244 LPFC_WQE_LENLOC_WORD3);
8245 bf_set(wqe_ebde_cnt, &wqe->xmit_els_rsp.wqe_com, 0);
6d368e53
JS
8246 bf_set(wqe_rsp_temp_rpi, &wqe->xmit_els_rsp,
8247 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
ff78d8f9
JS
8248 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
8249 iocbq->context2)->virt);
8250 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
939723a4
JS
8251 bf_set(els_rsp64_sp, &wqe->xmit_els_rsp, 1);
8252 bf_set(els_rsp64_sid, &wqe->xmit_els_rsp,
ff78d8f9 8253 iocbq->vport->fc_myDID);
939723a4
JS
8254 bf_set(wqe_ct, &wqe->xmit_els_rsp.wqe_com, 1);
8255 bf_set(wqe_ctxt_tag, &wqe->xmit_els_rsp.wqe_com,
ff78d8f9
JS
8256 phba->vpi_ids[phba->pport->vpi]);
8257 }
4f774513 8258 command_type = OTHER_COMMAND;
7851fe2c 8259 break;
4f774513
JS
8260 case CMD_CLOSE_XRI_CN:
8261 case CMD_ABORT_XRI_CN:
8262 case CMD_ABORT_XRI_CX:
8263 /* words 0-2 memcpy should be 0 rserved */
8264 /* port will send abts */
dcf2a4e0
JS
8265 abrt_iotag = iocbq->iocb.un.acxri.abortContextTag;
8266 if (abrt_iotag != 0 && abrt_iotag <= phba->sli.last_iotag) {
8267 abrtiocbq = phba->sli.iocbq_lookup[abrt_iotag];
8268 fip = abrtiocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK;
8269 } else
8270 fip = 0;
8271
8272 if ((iocbq->iocb.ulpCommand == CMD_CLOSE_XRI_CN) || fip)
4f774513 8273 /*
dcf2a4e0
JS
8274 * The link is down, or the command was ELS_FIP
8275 * so the fw does not need to send abts
4f774513
JS
8276 * on the wire.
8277 */
8278 bf_set(abort_cmd_ia, &wqe->abort_cmd, 1);
8279 else
8280 bf_set(abort_cmd_ia, &wqe->abort_cmd, 0);
8281 bf_set(abort_cmd_criteria, &wqe->abort_cmd, T_XRI_TAG);
f0d9bccc
JS
8282 /* word5 iocb=CONTEXT_TAG|IO_TAG wqe=reserved */
8283 wqe->abort_cmd.rsrvd5 = 0;
8284 bf_set(wqe_ct, &wqe->abort_cmd.wqe_com,
4f774513
JS
8285 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
8286 abort_tag = iocbq->iocb.un.acxri.abortIoTag;
4f774513
JS
8287 /*
8288 * The abort handler will send us CMD_ABORT_XRI_CN or
8289 * CMD_CLOSE_XRI_CN and the fw only accepts CMD_ABORT_XRI_CX
8290 */
f0d9bccc
JS
8291 bf_set(wqe_cmnd, &wqe->abort_cmd.wqe_com, CMD_ABORT_XRI_CX);
8292 bf_set(wqe_qosd, &wqe->abort_cmd.wqe_com, 1);
8293 bf_set(wqe_lenloc, &wqe->abort_cmd.wqe_com,
8294 LPFC_WQE_LENLOC_NONE);
4f774513
JS
8295 cmnd = CMD_ABORT_XRI_CX;
8296 command_type = OTHER_COMMAND;
8297 xritag = 0;
7851fe2c 8298 break;
6669f9bb 8299 case CMD_XMIT_BLS_RSP64_CX:
6b5151fd 8300 ndlp = (struct lpfc_nodelist *)iocbq->context1;
546fc854 8301 /* As BLS ABTS RSP WQE is very different from other WQEs,
6669f9bb
JS
8302 * we re-construct this WQE here based on information in
8303 * iocbq from scratch.
8304 */
8305 memset(wqe, 0, sizeof(union lpfc_wqe));
5ffc266e 8306 /* OX_ID is invariable to who sent ABTS to CT exchange */
6669f9bb 8307 bf_set(xmit_bls_rsp64_oxid, &wqe->xmit_bls_rsp,
546fc854
JS
8308 bf_get(lpfc_abts_oxid, &iocbq->iocb.un.bls_rsp));
8309 if (bf_get(lpfc_abts_orig, &iocbq->iocb.un.bls_rsp) ==
5ffc266e
JS
8310 LPFC_ABTS_UNSOL_INT) {
8311 /* ABTS sent by initiator to CT exchange, the
8312 * RX_ID field will be filled with the newly
8313 * allocated responder XRI.
8314 */
8315 bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
8316 iocbq->sli4_xritag);
8317 } else {
8318 /* ABTS sent by responder to CT exchange, the
8319 * RX_ID field will be filled with the responder
8320 * RX_ID from ABTS.
8321 */
8322 bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
546fc854 8323 bf_get(lpfc_abts_rxid, &iocbq->iocb.un.bls_rsp));
5ffc266e 8324 }
6669f9bb
JS
8325 bf_set(xmit_bls_rsp64_seqcnthi, &wqe->xmit_bls_rsp, 0xffff);
8326 bf_set(wqe_xmit_bls_pt, &wqe->xmit_bls_rsp.wqe_dest, 0x1);
6b5151fd
JS
8327
8328 /* Use CT=VPI */
8329 bf_set(wqe_els_did, &wqe->xmit_bls_rsp.wqe_dest,
8330 ndlp->nlp_DID);
8331 bf_set(xmit_bls_rsp64_temprpi, &wqe->xmit_bls_rsp,
8332 iocbq->iocb.ulpContext);
8333 bf_set(wqe_ct, &wqe->xmit_bls_rsp.wqe_com, 1);
6669f9bb 8334 bf_set(wqe_ctxt_tag, &wqe->xmit_bls_rsp.wqe_com,
6b5151fd 8335 phba->vpi_ids[phba->pport->vpi]);
f0d9bccc
JS
8336 bf_set(wqe_qosd, &wqe->xmit_bls_rsp.wqe_com, 1);
8337 bf_set(wqe_lenloc, &wqe->xmit_bls_rsp.wqe_com,
8338 LPFC_WQE_LENLOC_NONE);
6669f9bb
JS
8339 /* Overwrite the pre-set comnd type with OTHER_COMMAND */
8340 command_type = OTHER_COMMAND;
546fc854
JS
8341 if (iocbq->iocb.un.xseq64.w5.hcsw.Rctl == FC_RCTL_BA_RJT) {
8342 bf_set(xmit_bls_rsp64_rjt_vspec, &wqe->xmit_bls_rsp,
8343 bf_get(lpfc_vndr_code, &iocbq->iocb.un.bls_rsp));
8344 bf_set(xmit_bls_rsp64_rjt_expc, &wqe->xmit_bls_rsp,
8345 bf_get(lpfc_rsn_expln, &iocbq->iocb.un.bls_rsp));
8346 bf_set(xmit_bls_rsp64_rjt_rsnc, &wqe->xmit_bls_rsp,
8347 bf_get(lpfc_rsn_code, &iocbq->iocb.un.bls_rsp));
8348 }
8349
7851fe2c 8350 break;
4f774513
JS
8351 case CMD_XRI_ABORTED_CX:
8352 case CMD_CREATE_XRI_CR: /* Do we expect to use this? */
4f774513
JS
8353 case CMD_IOCB_FCP_IBIDIR64_CR: /* bidirectional xfer */
8354 case CMD_FCP_TSEND64_CX: /* Target mode send xfer-ready */
8355 case CMD_FCP_TRSP64_CX: /* Target mode rcv */
8356 case CMD_FCP_AUTO_TRSP_CX: /* Auto target rsp */
8357 default:
8358 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8359 "2014 Invalid command 0x%x\n",
8360 iocbq->iocb.ulpCommand);
8361 return IOCB_ERROR;
7851fe2c 8362 break;
4f774513 8363 }
6d368e53 8364
8012cc38
JS
8365 if (iocbq->iocb_flag & LPFC_IO_DIF_PASS)
8366 bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_PASSTHRU);
8367 else if (iocbq->iocb_flag & LPFC_IO_DIF_STRIP)
8368 bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_STRIP);
8369 else if (iocbq->iocb_flag & LPFC_IO_DIF_INSERT)
8370 bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_INSERT);
8371 iocbq->iocb_flag &= ~(LPFC_IO_DIF_PASS | LPFC_IO_DIF_STRIP |
8372 LPFC_IO_DIF_INSERT);
f0d9bccc
JS
8373 bf_set(wqe_xri_tag, &wqe->generic.wqe_com, xritag);
8374 bf_set(wqe_reqtag, &wqe->generic.wqe_com, iocbq->iotag);
8375 wqe->generic.wqe_com.abort_tag = abort_tag;
8376 bf_set(wqe_cmd_type, &wqe->generic.wqe_com, command_type);
8377 bf_set(wqe_cmnd, &wqe->generic.wqe_com, cmnd);
8378 bf_set(wqe_class, &wqe->generic.wqe_com, iocbq->iocb.ulpClass);
8379 bf_set(wqe_cqid, &wqe->generic.wqe_com, LPFC_WQE_CQ_ID_DEFAULT);
4f774513
JS
8380 return 0;
8381}
8382
8383/**
8384 * __lpfc_sli_issue_iocb_s4 - SLI4 device lockless ver of lpfc_sli_issue_iocb
8385 * @phba: Pointer to HBA context object.
8386 * @ring_number: SLI ring number to issue iocb on.
8387 * @piocb: Pointer to command iocb.
8388 * @flag: Flag indicating if this command can be put into txq.
8389 *
8390 * __lpfc_sli_issue_iocb_s4 is used by other functions in the driver to issue
8391 * an iocb command to an HBA with SLI-4 interface spec.
8392 *
8393 * This function is called with hbalock held. The function will return success
8394 * after it successfully submit the iocb to firmware or after adding to the
8395 * txq.
8396 **/
8397static int
8398__lpfc_sli_issue_iocb_s4(struct lpfc_hba *phba, uint32_t ring_number,
8399 struct lpfc_iocbq *piocb, uint32_t flag)
8400{
8401 struct lpfc_sglq *sglq;
4f774513
JS
8402 union lpfc_wqe wqe;
8403 struct lpfc_sli_ring *pring = &phba->sli.ring[ring_number];
4f774513
JS
8404
8405 if (piocb->sli4_xritag == NO_XRI) {
8406 if (piocb->iocb.ulpCommand == CMD_ABORT_XRI_CN ||
6b5151fd 8407 piocb->iocb.ulpCommand == CMD_CLOSE_XRI_CN)
4f774513
JS
8408 sglq = NULL;
8409 else {
0e9bb8d7 8410 if (!list_empty(&pring->txq)) {
2a9bf3d0
JS
8411 if (!(flag & SLI_IOCB_RET_IOCB)) {
8412 __lpfc_sli_ringtx_put(phba,
8413 pring, piocb);
8414 return IOCB_SUCCESS;
8415 } else {
8416 return IOCB_BUSY;
8417 }
8418 } else {
6d368e53 8419 sglq = __lpfc_sli_get_sglq(phba, piocb);
2a9bf3d0
JS
8420 if (!sglq) {
8421 if (!(flag & SLI_IOCB_RET_IOCB)) {
8422 __lpfc_sli_ringtx_put(phba,
8423 pring,
8424 piocb);
8425 return IOCB_SUCCESS;
8426 } else
8427 return IOCB_BUSY;
8428 }
8429 }
4f774513
JS
8430 }
8431 } else if (piocb->iocb_flag & LPFC_IO_FCP) {
6d368e53
JS
8432 /* These IO's already have an XRI and a mapped sgl. */
8433 sglq = NULL;
4f774513 8434 } else {
6d368e53
JS
8435 /*
8436 * This is a continuation of a commandi,(CX) so this
4f774513
JS
8437 * sglq is on the active list
8438 */
edccdc17 8439 sglq = __lpfc_get_active_sglq(phba, piocb->sli4_lxritag);
4f774513
JS
8440 if (!sglq)
8441 return IOCB_ERROR;
8442 }
8443
8444 if (sglq) {
6d368e53 8445 piocb->sli4_lxritag = sglq->sli4_lxritag;
2a9bf3d0 8446 piocb->sli4_xritag = sglq->sli4_xritag;
2a9bf3d0 8447 if (NO_XRI == lpfc_sli4_bpl2sgl(phba, piocb, sglq))
4f774513
JS
8448 return IOCB_ERROR;
8449 }
8450
8451 if (lpfc_sli4_iocb2wqe(phba, piocb, &wqe))
8452 return IOCB_ERROR;
8453
341af102
JS
8454 if ((piocb->iocb_flag & LPFC_IO_FCP) ||
8455 (piocb->iocb_flag & LPFC_USE_FCPWQIDX)) {
ea714f3d
JS
8456 if (unlikely(!phba->sli4_hba.fcp_wq))
8457 return IOCB_ERROR;
5ffc266e
JS
8458 if (lpfc_sli4_wq_put(phba->sli4_hba.fcp_wq[piocb->fcp_wqidx],
8459 &wqe))
4f774513
JS
8460 return IOCB_ERROR;
8461 } else {
ea714f3d
JS
8462 if (unlikely(!phba->sli4_hba.els_wq))
8463 return IOCB_ERROR;
4f774513
JS
8464 if (lpfc_sli4_wq_put(phba->sli4_hba.els_wq, &wqe))
8465 return IOCB_ERROR;
8466 }
8467 lpfc_sli_ringtxcmpl_put(phba, pring, piocb);
8468
8469 return 0;
8470}
8471
8472/**
8473 * __lpfc_sli_issue_iocb - Wrapper func of lockless version for issuing iocb
8474 *
8475 * This routine wraps the actual lockless version for issusing IOCB function
8476 * pointer from the lpfc_hba struct.
8477 *
8478 * Return codes:
8479 * IOCB_ERROR - Error
8480 * IOCB_SUCCESS - Success
8481 * IOCB_BUSY - Busy
8482 **/
2a9bf3d0 8483int
4f774513
JS
8484__lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
8485 struct lpfc_iocbq *piocb, uint32_t flag)
8486{
8487 return phba->__lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
8488}
8489
8490/**
25985edc 8491 * lpfc_sli_api_table_setup - Set up sli api function jump table
4f774513
JS
8492 * @phba: The hba struct for which this call is being executed.
8493 * @dev_grp: The HBA PCI-Device group number.
8494 *
8495 * This routine sets up the SLI interface API function jump table in @phba
8496 * struct.
8497 * Returns: 0 - success, -ENODEV - failure.
8498 **/
8499int
8500lpfc_sli_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
8501{
8502
8503 switch (dev_grp) {
8504 case LPFC_PCI_DEV_LP:
8505 phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s3;
8506 phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s3;
8507 break;
8508 case LPFC_PCI_DEV_OC:
8509 phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s4;
8510 phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s4;
8511 break;
8512 default:
8513 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8514 "1419 Invalid HBA PCI-device group: 0x%x\n",
8515 dev_grp);
8516 return -ENODEV;
8517 break;
8518 }
8519 phba->lpfc_get_iocb_from_iocbq = lpfc_get_iocb_from_iocbq;
8520 return 0;
8521}
8522
8523/**
8524 * lpfc_sli_issue_iocb - Wrapper function for __lpfc_sli_issue_iocb
8525 * @phba: Pointer to HBA context object.
8526 * @pring: Pointer to driver SLI ring object.
8527 * @piocb: Pointer to command iocb.
8528 * @flag: Flag indicating if this command can be put into txq.
8529 *
8530 * lpfc_sli_issue_iocb is a wrapper around __lpfc_sli_issue_iocb
8531 * function. This function gets the hbalock and calls
8532 * __lpfc_sli_issue_iocb function and will return the error returned
8533 * by __lpfc_sli_issue_iocb function. This wrapper is used by
8534 * functions which do not hold hbalock.
8535 **/
8536int
8537lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
8538 struct lpfc_iocbq *piocb, uint32_t flag)
8539{
ba20c853 8540 struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
2a76a283 8541 struct lpfc_sli_ring *pring;
ba20c853
JS
8542 struct lpfc_queue *fpeq;
8543 struct lpfc_eqe *eqe;
4f774513 8544 unsigned long iflags;
2a76a283 8545 int rc, idx;
4f774513 8546
7e56aa25 8547 if (phba->sli_rev == LPFC_SLI_REV4) {
2a76a283
JS
8548 if (piocb->iocb_flag & LPFC_IO_FCP) {
8549 if (unlikely(!phba->sli4_hba.fcp_wq))
8550 return IOCB_ERROR;
8551 idx = lpfc_sli4_scmd_to_wqidx_distr(phba);
8552 piocb->fcp_wqidx = idx;
8553 ring_number = MAX_SLI3_CONFIGURED_RINGS + idx;
ba20c853
JS
8554
8555 pring = &phba->sli.ring[ring_number];
8556 spin_lock_irqsave(&pring->ring_lock, iflags);
8557 rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb,
8558 flag);
8559 spin_unlock_irqrestore(&pring->ring_lock, iflags);
8560
8561 if (lpfc_fcp_look_ahead) {
8562 fcp_eq_hdl = &phba->sli4_hba.fcp_eq_hdl[idx];
8563
8564 if (atomic_dec_and_test(&fcp_eq_hdl->
8565 fcp_eq_in_use)) {
4f774513 8566
ba20c853
JS
8567 /* Get associated EQ with this index */
8568 fpeq = phba->sli4_hba.hba_eq[idx];
8569
8570 /* Turn off interrupts from this EQ */
8571 lpfc_sli4_eq_clr_intr(fpeq);
8572
8573 /*
8574 * Process all the events on FCP EQ
8575 */
8576 while ((eqe = lpfc_sli4_eq_get(fpeq))) {
8577 lpfc_sli4_hba_handle_eqe(phba,
8578 eqe, idx);
8579 fpeq->EQ_processed++;
8580 }
8581
8582 /* Always clear and re-arm the EQ */
8583 lpfc_sli4_eq_release(fpeq,
8584 LPFC_QUEUE_REARM);
8585 }
8586 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
8587 }
8588 } else {
8589 pring = &phba->sli.ring[ring_number];
8590 spin_lock_irqsave(&pring->ring_lock, iflags);
8591 rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb,
8592 flag);
8593 spin_unlock_irqrestore(&pring->ring_lock, iflags);
8594
2a76a283 8595 }
7e56aa25
JS
8596 } else {
8597 /* For now, SLI2/3 will still use hbalock */
8598 spin_lock_irqsave(&phba->hbalock, iflags);
8599 rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
8600 spin_unlock_irqrestore(&phba->hbalock, iflags);
8601 }
4f774513
JS
8602 return rc;
8603}
8604
8605/**
8606 * lpfc_extra_ring_setup - Extra ring setup function
8607 * @phba: Pointer to HBA context object.
8608 *
8609 * This function is called while driver attaches with the
8610 * HBA to setup the extra ring. The extra ring is used
8611 * only when driver needs to support target mode functionality
8612 * or IP over FC functionalities.
8613 *
8614 * This function is called with no lock held.
8615 **/
8616static int
8617lpfc_extra_ring_setup( struct lpfc_hba *phba)
8618{
8619 struct lpfc_sli *psli;
8620 struct lpfc_sli_ring *pring;
8621
8622 psli = &phba->sli;
8623
8624 /* Adjust cmd/rsp ring iocb entries more evenly */
8625
8626 /* Take some away from the FCP ring */
8627 pring = &psli->ring[psli->fcp_ring];
7e56aa25
JS
8628 pring->sli.sli3.numCiocb -= SLI2_IOCB_CMD_R1XTRA_ENTRIES;
8629 pring->sli.sli3.numRiocb -= SLI2_IOCB_RSP_R1XTRA_ENTRIES;
8630 pring->sli.sli3.numCiocb -= SLI2_IOCB_CMD_R3XTRA_ENTRIES;
8631 pring->sli.sli3.numRiocb -= SLI2_IOCB_RSP_R3XTRA_ENTRIES;
cf5bf97e 8632
a4bc3379
JS
8633 /* and give them to the extra ring */
8634 pring = &psli->ring[psli->extra_ring];
8635
7e56aa25
JS
8636 pring->sli.sli3.numCiocb += SLI2_IOCB_CMD_R1XTRA_ENTRIES;
8637 pring->sli.sli3.numRiocb += SLI2_IOCB_RSP_R1XTRA_ENTRIES;
8638 pring->sli.sli3.numCiocb += SLI2_IOCB_CMD_R3XTRA_ENTRIES;
8639 pring->sli.sli3.numRiocb += SLI2_IOCB_RSP_R3XTRA_ENTRIES;
cf5bf97e
JW
8640
8641 /* Setup default profile for this ring */
8642 pring->iotag_max = 4096;
8643 pring->num_mask = 1;
8644 pring->prt[0].profile = 0; /* Mask 0 */
a4bc3379
JS
8645 pring->prt[0].rctl = phba->cfg_multi_ring_rctl;
8646 pring->prt[0].type = phba->cfg_multi_ring_type;
cf5bf97e
JW
8647 pring->prt[0].lpfc_sli_rcv_unsol_event = NULL;
8648 return 0;
8649}
8650
cb69f7de
JS
8651/* lpfc_sli_abts_err_handler - handle a failed ABTS request from an SLI3 port.
8652 * @phba: Pointer to HBA context object.
8653 * @iocbq: Pointer to iocb object.
8654 *
8655 * The async_event handler calls this routine when it receives
8656 * an ASYNC_STATUS_CN event from the port. The port generates
8657 * this event when an Abort Sequence request to an rport fails
8658 * twice in succession. The abort could be originated by the
8659 * driver or by the port. The ABTS could have been for an ELS
8660 * or FCP IO. The port only generates this event when an ABTS
8661 * fails to complete after one retry.
8662 */
8663static void
8664lpfc_sli_abts_err_handler(struct lpfc_hba *phba,
8665 struct lpfc_iocbq *iocbq)
8666{
8667 struct lpfc_nodelist *ndlp = NULL;
8668 uint16_t rpi = 0, vpi = 0;
8669 struct lpfc_vport *vport = NULL;
8670
8671 /* The rpi in the ulpContext is vport-sensitive. */
8672 vpi = iocbq->iocb.un.asyncstat.sub_ctxt_tag;
8673 rpi = iocbq->iocb.ulpContext;
8674
8675 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
8676 "3092 Port generated ABTS async event "
8677 "on vpi %d rpi %d status 0x%x\n",
8678 vpi, rpi, iocbq->iocb.ulpStatus);
8679
8680 vport = lpfc_find_vport_by_vpid(phba, vpi);
8681 if (!vport)
8682 goto err_exit;
8683 ndlp = lpfc_findnode_rpi(vport, rpi);
8684 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
8685 goto err_exit;
8686
8687 if (iocbq->iocb.ulpStatus == IOSTAT_LOCAL_REJECT)
8688 lpfc_sli_abts_recover_port(vport, ndlp);
8689 return;
8690
8691 err_exit:
8692 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
8693 "3095 Event Context not found, no "
8694 "action on vpi %d rpi %d status 0x%x, reason 0x%x\n",
8695 iocbq->iocb.ulpContext, iocbq->iocb.ulpStatus,
8696 vpi, rpi);
8697}
8698
8699/* lpfc_sli4_abts_err_handler - handle a failed ABTS request from an SLI4 port.
8700 * @phba: pointer to HBA context object.
8701 * @ndlp: nodelist pointer for the impacted rport.
8702 * @axri: pointer to the wcqe containing the failed exchange.
8703 *
8704 * The driver calls this routine when it receives an ABORT_XRI_FCP CQE from the
8705 * port. The port generates this event when an abort exchange request to an
8706 * rport fails twice in succession with no reply. The abort could be originated
8707 * by the driver or by the port. The ABTS could have been for an ELS or FCP IO.
8708 */
8709void
8710lpfc_sli4_abts_err_handler(struct lpfc_hba *phba,
8711 struct lpfc_nodelist *ndlp,
8712 struct sli4_wcqe_xri_aborted *axri)
8713{
8714 struct lpfc_vport *vport;
5c1db2ac 8715 uint32_t ext_status = 0;
cb69f7de 8716
6b5151fd 8717 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
cb69f7de
JS
8718 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
8719 "3115 Node Context not found, driver "
8720 "ignoring abts err event\n");
6b5151fd
JS
8721 return;
8722 }
8723
cb69f7de
JS
8724 vport = ndlp->vport;
8725 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
8726 "3116 Port generated FCP XRI ABORT event on "
5c1db2ac 8727 "vpi %d rpi %d xri x%x status 0x%x parameter x%x\n",
8e668af5 8728 ndlp->vport->vpi, phba->sli4_hba.rpi_ids[ndlp->nlp_rpi],
cb69f7de 8729 bf_get(lpfc_wcqe_xa_xri, axri),
5c1db2ac
JS
8730 bf_get(lpfc_wcqe_xa_status, axri),
8731 axri->parameter);
cb69f7de 8732
5c1db2ac
JS
8733 /*
8734 * Catch the ABTS protocol failure case. Older OCe FW releases returned
8735 * LOCAL_REJECT and 0 for a failed ABTS exchange and later OCe and
8736 * LPe FW releases returned LOCAL_REJECT and SEQUENCE_TIMEOUT.
8737 */
e3d2b802 8738 ext_status = axri->parameter & IOERR_PARAM_MASK;
5c1db2ac
JS
8739 if ((bf_get(lpfc_wcqe_xa_status, axri) == IOSTAT_LOCAL_REJECT) &&
8740 ((ext_status == IOERR_SEQUENCE_TIMEOUT) || (ext_status == 0)))
cb69f7de
JS
8741 lpfc_sli_abts_recover_port(vport, ndlp);
8742}
8743
e59058c4 8744/**
3621a710 8745 * lpfc_sli_async_event_handler - ASYNC iocb handler function
e59058c4
JS
8746 * @phba: Pointer to HBA context object.
8747 * @pring: Pointer to driver SLI ring object.
8748 * @iocbq: Pointer to iocb object.
8749 *
8750 * This function is called by the slow ring event handler
8751 * function when there is an ASYNC event iocb in the ring.
8752 * This function is called with no lock held.
8753 * Currently this function handles only temperature related
8754 * ASYNC events. The function decodes the temperature sensor
8755 * event message and posts events for the management applications.
8756 **/
98c9ea5c 8757static void
57127f15
JS
8758lpfc_sli_async_event_handler(struct lpfc_hba * phba,
8759 struct lpfc_sli_ring * pring, struct lpfc_iocbq * iocbq)
8760{
8761 IOCB_t *icmd;
8762 uint16_t evt_code;
57127f15
JS
8763 struct temp_event temp_event_data;
8764 struct Scsi_Host *shost;
a257bf90 8765 uint32_t *iocb_w;
57127f15
JS
8766
8767 icmd = &iocbq->iocb;
8768 evt_code = icmd->un.asyncstat.evt_code;
57127f15 8769
cb69f7de
JS
8770 switch (evt_code) {
8771 case ASYNC_TEMP_WARN:
8772 case ASYNC_TEMP_SAFE:
8773 temp_event_data.data = (uint32_t) icmd->ulpContext;
8774 temp_event_data.event_type = FC_REG_TEMPERATURE_EVENT;
8775 if (evt_code == ASYNC_TEMP_WARN) {
8776 temp_event_data.event_code = LPFC_THRESHOLD_TEMP;
8777 lpfc_printf_log(phba, KERN_ERR, LOG_TEMP,
8778 "0347 Adapter is very hot, please take "
8779 "corrective action. temperature : %d Celsius\n",
8780 (uint32_t) icmd->ulpContext);
8781 } else {
8782 temp_event_data.event_code = LPFC_NORMAL_TEMP;
8783 lpfc_printf_log(phba, KERN_ERR, LOG_TEMP,
8784 "0340 Adapter temperature is OK now. "
8785 "temperature : %d Celsius\n",
8786 (uint32_t) icmd->ulpContext);
8787 }
8788
8789 /* Send temperature change event to applications */
8790 shost = lpfc_shost_from_vport(phba->pport);
8791 fc_host_post_vendor_event(shost, fc_get_event_number(),
8792 sizeof(temp_event_data), (char *) &temp_event_data,
8793 LPFC_NL_VENDOR_ID);
8794 break;
8795 case ASYNC_STATUS_CN:
8796 lpfc_sli_abts_err_handler(phba, iocbq);
8797 break;
8798 default:
a257bf90 8799 iocb_w = (uint32_t *) icmd;
cb69f7de 8800 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
76bb24ef 8801 "0346 Ring %d handler: unexpected ASYNC_STATUS"
e4e74273 8802 " evt_code 0x%x\n"
a257bf90
JS
8803 "W0 0x%08x W1 0x%08x W2 0x%08x W3 0x%08x\n"
8804 "W4 0x%08x W5 0x%08x W6 0x%08x W7 0x%08x\n"
8805 "W8 0x%08x W9 0x%08x W10 0x%08x W11 0x%08x\n"
8806 "W12 0x%08x W13 0x%08x W14 0x%08x W15 0x%08x\n",
cb69f7de 8807 pring->ringno, icmd->un.asyncstat.evt_code,
a257bf90
JS
8808 iocb_w[0], iocb_w[1], iocb_w[2], iocb_w[3],
8809 iocb_w[4], iocb_w[5], iocb_w[6], iocb_w[7],
8810 iocb_w[8], iocb_w[9], iocb_w[10], iocb_w[11],
8811 iocb_w[12], iocb_w[13], iocb_w[14], iocb_w[15]);
8812
cb69f7de 8813 break;
57127f15 8814 }
57127f15
JS
8815}
8816
8817
e59058c4 8818/**
3621a710 8819 * lpfc_sli_setup - SLI ring setup function
e59058c4
JS
8820 * @phba: Pointer to HBA context object.
8821 *
8822 * lpfc_sli_setup sets up rings of the SLI interface with
8823 * number of iocbs per ring and iotags. This function is
8824 * called while driver attach to the HBA and before the
8825 * interrupts are enabled. So there is no need for locking.
8826 *
8827 * This function always returns 0.
8828 **/
dea3101e 8829int
8830lpfc_sli_setup(struct lpfc_hba *phba)
8831{
ed957684 8832 int i, totiocbsize = 0;
dea3101e 8833 struct lpfc_sli *psli = &phba->sli;
8834 struct lpfc_sli_ring *pring;
8835
2a76a283
JS
8836 psli->num_rings = MAX_SLI3_CONFIGURED_RINGS;
8837 if (phba->sli_rev == LPFC_SLI_REV4)
67d12733 8838 psli->num_rings += phba->cfg_fcp_io_channel;
dea3101e 8839 psli->sli_flag = 0;
8840 psli->fcp_ring = LPFC_FCP_RING;
8841 psli->next_ring = LPFC_FCP_NEXT_RING;
a4bc3379 8842 psli->extra_ring = LPFC_EXTRA_RING;
dea3101e 8843
604a3e30
JB
8844 psli->iocbq_lookup = NULL;
8845 psli->iocbq_lookup_len = 0;
8846 psli->last_iotag = 0;
8847
dea3101e 8848 for (i = 0; i < psli->num_rings; i++) {
8849 pring = &psli->ring[i];
8850 switch (i) {
8851 case LPFC_FCP_RING: /* ring 0 - FCP */
8852 /* numCiocb and numRiocb are used in config_port */
7e56aa25
JS
8853 pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R0_ENTRIES;
8854 pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R0_ENTRIES;
8855 pring->sli.sli3.numCiocb +=
8856 SLI2_IOCB_CMD_R1XTRA_ENTRIES;
8857 pring->sli.sli3.numRiocb +=
8858 SLI2_IOCB_RSP_R1XTRA_ENTRIES;
8859 pring->sli.sli3.numCiocb +=
8860 SLI2_IOCB_CMD_R3XTRA_ENTRIES;
8861 pring->sli.sli3.numRiocb +=
8862 SLI2_IOCB_RSP_R3XTRA_ENTRIES;
8863 pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
92d7f7b0
JS
8864 SLI3_IOCB_CMD_SIZE :
8865 SLI2_IOCB_CMD_SIZE;
7e56aa25 8866 pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
92d7f7b0
JS
8867 SLI3_IOCB_RSP_SIZE :
8868 SLI2_IOCB_RSP_SIZE;
dea3101e 8869 pring->iotag_ctr = 0;
8870 pring->iotag_max =
92d7f7b0 8871 (phba->cfg_hba_queue_depth * 2);
dea3101e 8872 pring->fast_iotag = pring->iotag_max;
8873 pring->num_mask = 0;
8874 break;
a4bc3379 8875 case LPFC_EXTRA_RING: /* ring 1 - EXTRA */
dea3101e 8876 /* numCiocb and numRiocb are used in config_port */
7e56aa25
JS
8877 pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R1_ENTRIES;
8878 pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R1_ENTRIES;
8879 pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
92d7f7b0
JS
8880 SLI3_IOCB_CMD_SIZE :
8881 SLI2_IOCB_CMD_SIZE;
7e56aa25 8882 pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
92d7f7b0
JS
8883 SLI3_IOCB_RSP_SIZE :
8884 SLI2_IOCB_RSP_SIZE;
2e0fef85 8885 pring->iotag_max = phba->cfg_hba_queue_depth;
dea3101e 8886 pring->num_mask = 0;
8887 break;
8888 case LPFC_ELS_RING: /* ring 2 - ELS / CT */
8889 /* numCiocb and numRiocb are used in config_port */
7e56aa25
JS
8890 pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R2_ENTRIES;
8891 pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R2_ENTRIES;
8892 pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
92d7f7b0
JS
8893 SLI3_IOCB_CMD_SIZE :
8894 SLI2_IOCB_CMD_SIZE;
7e56aa25 8895 pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
92d7f7b0
JS
8896 SLI3_IOCB_RSP_SIZE :
8897 SLI2_IOCB_RSP_SIZE;
dea3101e 8898 pring->fast_iotag = 0;
8899 pring->iotag_ctr = 0;
8900 pring->iotag_max = 4096;
57127f15
JS
8901 pring->lpfc_sli_rcv_async_status =
8902 lpfc_sli_async_event_handler;
6669f9bb 8903 pring->num_mask = LPFC_MAX_RING_MASK;
dea3101e 8904 pring->prt[0].profile = 0; /* Mask 0 */
6a9c52cf
JS
8905 pring->prt[0].rctl = FC_RCTL_ELS_REQ;
8906 pring->prt[0].type = FC_TYPE_ELS;
dea3101e 8907 pring->prt[0].lpfc_sli_rcv_unsol_event =
92d7f7b0 8908 lpfc_els_unsol_event;
dea3101e 8909 pring->prt[1].profile = 0; /* Mask 1 */
6a9c52cf
JS
8910 pring->prt[1].rctl = FC_RCTL_ELS_REP;
8911 pring->prt[1].type = FC_TYPE_ELS;
dea3101e 8912 pring->prt[1].lpfc_sli_rcv_unsol_event =
92d7f7b0 8913 lpfc_els_unsol_event;
dea3101e 8914 pring->prt[2].profile = 0; /* Mask 2 */
8915 /* NameServer Inquiry */
6a9c52cf 8916 pring->prt[2].rctl = FC_RCTL_DD_UNSOL_CTL;
dea3101e 8917 /* NameServer */
6a9c52cf 8918 pring->prt[2].type = FC_TYPE_CT;
dea3101e 8919 pring->prt[2].lpfc_sli_rcv_unsol_event =
92d7f7b0 8920 lpfc_ct_unsol_event;
dea3101e 8921 pring->prt[3].profile = 0; /* Mask 3 */
8922 /* NameServer response */
6a9c52cf 8923 pring->prt[3].rctl = FC_RCTL_DD_SOL_CTL;
dea3101e 8924 /* NameServer */
6a9c52cf 8925 pring->prt[3].type = FC_TYPE_CT;
dea3101e 8926 pring->prt[3].lpfc_sli_rcv_unsol_event =
92d7f7b0 8927 lpfc_ct_unsol_event;
dea3101e 8928 break;
8929 }
7e56aa25
JS
8930 totiocbsize += (pring->sli.sli3.numCiocb *
8931 pring->sli.sli3.sizeCiocb) +
8932 (pring->sli.sli3.numRiocb * pring->sli.sli3.sizeRiocb);
dea3101e 8933 }
ed957684 8934 if (totiocbsize > MAX_SLIM_IOCB_SIZE) {
dea3101e 8935 /* Too many cmd / rsp ring entries in SLI2 SLIM */
e8b62011
JS
8936 printk(KERN_ERR "%d:0462 Too many cmd / rsp ring entries in "
8937 "SLI2 SLIM Data: x%x x%lx\n",
8938 phba->brd_no, totiocbsize,
8939 (unsigned long) MAX_SLIM_IOCB_SIZE);
dea3101e 8940 }
cf5bf97e
JW
8941 if (phba->cfg_multi_ring_support == 2)
8942 lpfc_extra_ring_setup(phba);
dea3101e 8943
8944 return 0;
8945}
8946
e59058c4 8947/**
3621a710 8948 * lpfc_sli_queue_setup - Queue initialization function
e59058c4
JS
8949 * @phba: Pointer to HBA context object.
8950 *
8951 * lpfc_sli_queue_setup sets up mailbox queues and iocb queues for each
8952 * ring. This function also initializes ring indices of each ring.
8953 * This function is called during the initialization of the SLI
8954 * interface of an HBA.
8955 * This function is called with no lock held and always returns
8956 * 1.
8957 **/
dea3101e 8958int
2e0fef85 8959lpfc_sli_queue_setup(struct lpfc_hba *phba)
dea3101e 8960{
8961 struct lpfc_sli *psli;
8962 struct lpfc_sli_ring *pring;
604a3e30 8963 int i;
dea3101e 8964
8965 psli = &phba->sli;
2e0fef85 8966 spin_lock_irq(&phba->hbalock);
dea3101e 8967 INIT_LIST_HEAD(&psli->mboxq);
92d7f7b0 8968 INIT_LIST_HEAD(&psli->mboxq_cmpl);
dea3101e 8969 /* Initialize list headers for txq and txcmplq as double linked lists */
8970 for (i = 0; i < psli->num_rings; i++) {
8971 pring = &psli->ring[i];
8972 pring->ringno = i;
7e56aa25
JS
8973 pring->sli.sli3.next_cmdidx = 0;
8974 pring->sli.sli3.local_getidx = 0;
8975 pring->sli.sli3.cmdidx = 0;
dea3101e 8976 INIT_LIST_HEAD(&pring->txq);
8977 INIT_LIST_HEAD(&pring->txcmplq);
8978 INIT_LIST_HEAD(&pring->iocb_continueq);
9c2face6 8979 INIT_LIST_HEAD(&pring->iocb_continue_saveq);
dea3101e 8980 INIT_LIST_HEAD(&pring->postbufq);
7e56aa25 8981 spin_lock_init(&pring->ring_lock);
dea3101e 8982 }
2e0fef85
JS
8983 spin_unlock_irq(&phba->hbalock);
8984 return 1;
dea3101e 8985}
8986
04c68496
JS
8987/**
8988 * lpfc_sli_mbox_sys_flush - Flush mailbox command sub-system
8989 * @phba: Pointer to HBA context object.
8990 *
8991 * This routine flushes the mailbox command subsystem. It will unconditionally
8992 * flush all the mailbox commands in the three possible stages in the mailbox
8993 * command sub-system: pending mailbox command queue; the outstanding mailbox
8994 * command; and completed mailbox command queue. It is caller's responsibility
8995 * to make sure that the driver is in the proper state to flush the mailbox
8996 * command sub-system. Namely, the posting of mailbox commands into the
8997 * pending mailbox command queue from the various clients must be stopped;
8998 * either the HBA is in a state that it will never works on the outstanding
8999 * mailbox command (such as in EEH or ERATT conditions) or the outstanding
9000 * mailbox command has been completed.
9001 **/
9002static void
9003lpfc_sli_mbox_sys_flush(struct lpfc_hba *phba)
9004{
9005 LIST_HEAD(completions);
9006 struct lpfc_sli *psli = &phba->sli;
9007 LPFC_MBOXQ_t *pmb;
9008 unsigned long iflag;
9009
9010 /* Flush all the mailbox commands in the mbox system */
9011 spin_lock_irqsave(&phba->hbalock, iflag);
9012 /* The pending mailbox command queue */
9013 list_splice_init(&phba->sli.mboxq, &completions);
9014 /* The outstanding active mailbox command */
9015 if (psli->mbox_active) {
9016 list_add_tail(&psli->mbox_active->list, &completions);
9017 psli->mbox_active = NULL;
9018 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
9019 }
9020 /* The completed mailbox command queue */
9021 list_splice_init(&phba->sli.mboxq_cmpl, &completions);
9022 spin_unlock_irqrestore(&phba->hbalock, iflag);
9023
9024 /* Return all flushed mailbox commands with MBX_NOT_FINISHED status */
9025 while (!list_empty(&completions)) {
9026 list_remove_head(&completions, pmb, LPFC_MBOXQ_t, list);
9027 pmb->u.mb.mbxStatus = MBX_NOT_FINISHED;
9028 if (pmb->mbox_cmpl)
9029 pmb->mbox_cmpl(phba, pmb);
9030 }
9031}
9032
e59058c4 9033/**
3621a710 9034 * lpfc_sli_host_down - Vport cleanup function
e59058c4
JS
9035 * @vport: Pointer to virtual port object.
9036 *
9037 * lpfc_sli_host_down is called to clean up the resources
9038 * associated with a vport before destroying virtual
9039 * port data structures.
9040 * This function does following operations:
9041 * - Free discovery resources associated with this virtual
9042 * port.
9043 * - Free iocbs associated with this virtual port in
9044 * the txq.
9045 * - Send abort for all iocb commands associated with this
9046 * vport in txcmplq.
9047 *
9048 * This function is called with no lock held and always returns 1.
9049 **/
92d7f7b0
JS
9050int
9051lpfc_sli_host_down(struct lpfc_vport *vport)
9052{
858c9f6c 9053 LIST_HEAD(completions);
92d7f7b0
JS
9054 struct lpfc_hba *phba = vport->phba;
9055 struct lpfc_sli *psli = &phba->sli;
9056 struct lpfc_sli_ring *pring;
9057 struct lpfc_iocbq *iocb, *next_iocb;
92d7f7b0
JS
9058 int i;
9059 unsigned long flags = 0;
9060 uint16_t prev_pring_flag;
9061
9062 lpfc_cleanup_discovery_resources(vport);
9063
9064 spin_lock_irqsave(&phba->hbalock, flags);
92d7f7b0
JS
9065 for (i = 0; i < psli->num_rings; i++) {
9066 pring = &psli->ring[i];
9067 prev_pring_flag = pring->flag;
5e9d9b82
JS
9068 /* Only slow rings */
9069 if (pring->ringno == LPFC_ELS_RING) {
858c9f6c 9070 pring->flag |= LPFC_DEFERRED_RING_EVENT;
5e9d9b82
JS
9071 /* Set the lpfc data pending flag */
9072 set_bit(LPFC_DATA_READY, &phba->data_flags);
9073 }
92d7f7b0
JS
9074 /*
9075 * Error everything on the txq since these iocbs have not been
9076 * given to the FW yet.
9077 */
92d7f7b0
JS
9078 list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
9079 if (iocb->vport != vport)
9080 continue;
858c9f6c 9081 list_move_tail(&iocb->list, &completions);
92d7f7b0
JS
9082 }
9083
9084 /* Next issue ABTS for everything on the txcmplq */
9085 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq,
9086 list) {
9087 if (iocb->vport != vport)
9088 continue;
9089 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
9090 }
9091
9092 pring->flag = prev_pring_flag;
9093 }
9094
9095 spin_unlock_irqrestore(&phba->hbalock, flags);
9096
a257bf90
JS
9097 /* Cancel all the IOCBs from the completions list */
9098 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
9099 IOERR_SLI_DOWN);
92d7f7b0
JS
9100 return 1;
9101}
9102
e59058c4 9103/**
3621a710 9104 * lpfc_sli_hba_down - Resource cleanup function for the HBA
e59058c4
JS
9105 * @phba: Pointer to HBA context object.
9106 *
9107 * This function cleans up all iocb, buffers, mailbox commands
9108 * while shutting down the HBA. This function is called with no
9109 * lock held and always returns 1.
9110 * This function does the following to cleanup driver resources:
9111 * - Free discovery resources for each virtual port
9112 * - Cleanup any pending fabric iocbs
9113 * - Iterate through the iocb txq and free each entry
9114 * in the list.
9115 * - Free up any buffer posted to the HBA
9116 * - Free mailbox commands in the mailbox queue.
9117 **/
dea3101e 9118int
2e0fef85 9119lpfc_sli_hba_down(struct lpfc_hba *phba)
dea3101e 9120{
2534ba75 9121 LIST_HEAD(completions);
2e0fef85 9122 struct lpfc_sli *psli = &phba->sli;
dea3101e 9123 struct lpfc_sli_ring *pring;
0ff10d46 9124 struct lpfc_dmabuf *buf_ptr;
dea3101e 9125 unsigned long flags = 0;
04c68496
JS
9126 int i;
9127
9128 /* Shutdown the mailbox command sub-system */
618a5230 9129 lpfc_sli_mbox_sys_shutdown(phba, LPFC_MBX_WAIT);
dea3101e 9130
dea3101e 9131 lpfc_hba_down_prep(phba);
9132
92d7f7b0
JS
9133 lpfc_fabric_abort_hba(phba);
9134
2e0fef85 9135 spin_lock_irqsave(&phba->hbalock, flags);
dea3101e 9136 for (i = 0; i < psli->num_rings; i++) {
9137 pring = &psli->ring[i];
5e9d9b82
JS
9138 /* Only slow rings */
9139 if (pring->ringno == LPFC_ELS_RING) {
858c9f6c 9140 pring->flag |= LPFC_DEFERRED_RING_EVENT;
5e9d9b82
JS
9141 /* Set the lpfc data pending flag */
9142 set_bit(LPFC_DATA_READY, &phba->data_flags);
9143 }
dea3101e 9144
9145 /*
9146 * Error everything on the txq since these iocbs have not been
9147 * given to the FW yet.
9148 */
2534ba75 9149 list_splice_init(&pring->txq, &completions);
2534ba75 9150 }
2e0fef85 9151 spin_unlock_irqrestore(&phba->hbalock, flags);
dea3101e 9152
a257bf90
JS
9153 /* Cancel all the IOCBs from the completions list */
9154 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
9155 IOERR_SLI_DOWN);
dea3101e 9156
0ff10d46
JS
9157 spin_lock_irqsave(&phba->hbalock, flags);
9158 list_splice_init(&phba->elsbuf, &completions);
9159 phba->elsbuf_cnt = 0;
9160 phba->elsbuf_prev_cnt = 0;
9161 spin_unlock_irqrestore(&phba->hbalock, flags);
9162
9163 while (!list_empty(&completions)) {
9164 list_remove_head(&completions, buf_ptr,
9165 struct lpfc_dmabuf, list);
9166 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
9167 kfree(buf_ptr);
9168 }
9169
dea3101e 9170 /* Return any active mbox cmds */
9171 del_timer_sync(&psli->mbox_tmo);
2e0fef85 9172
da0436e9 9173 spin_lock_irqsave(&phba->pport->work_port_lock, flags);
2e0fef85 9174 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
da0436e9 9175 spin_unlock_irqrestore(&phba->pport->work_port_lock, flags);
2e0fef85 9176
da0436e9
JS
9177 return 1;
9178}
9179
e59058c4 9180/**
3621a710 9181 * lpfc_sli_pcimem_bcopy - SLI memory copy function
e59058c4
JS
9182 * @srcp: Source memory pointer.
9183 * @destp: Destination memory pointer.
9184 * @cnt: Number of words required to be copied.
9185 *
9186 * This function is used for copying data between driver memory
9187 * and the SLI memory. This function also changes the endianness
9188 * of each word if native endianness is different from SLI
9189 * endianness. This function can be called with or without
9190 * lock.
9191 **/
dea3101e 9192void
9193lpfc_sli_pcimem_bcopy(void *srcp, void *destp, uint32_t cnt)
9194{
9195 uint32_t *src = srcp;
9196 uint32_t *dest = destp;
9197 uint32_t ldata;
9198 int i;
9199
9200 for (i = 0; i < (int)cnt; i += sizeof (uint32_t)) {
9201 ldata = *src;
9202 ldata = le32_to_cpu(ldata);
9203 *dest = ldata;
9204 src++;
9205 dest++;
9206 }
9207}
9208
e59058c4 9209
a0c87cbd
JS
9210/**
9211 * lpfc_sli_bemem_bcopy - SLI memory copy function
9212 * @srcp: Source memory pointer.
9213 * @destp: Destination memory pointer.
9214 * @cnt: Number of words required to be copied.
9215 *
9216 * This function is used for copying data between a data structure
9217 * with big endian representation to local endianness.
9218 * This function can be called with or without lock.
9219 **/
9220void
9221lpfc_sli_bemem_bcopy(void *srcp, void *destp, uint32_t cnt)
9222{
9223 uint32_t *src = srcp;
9224 uint32_t *dest = destp;
9225 uint32_t ldata;
9226 int i;
9227
9228 for (i = 0; i < (int)cnt; i += sizeof(uint32_t)) {
9229 ldata = *src;
9230 ldata = be32_to_cpu(ldata);
9231 *dest = ldata;
9232 src++;
9233 dest++;
9234 }
9235}
9236
e59058c4 9237/**
3621a710 9238 * lpfc_sli_ringpostbuf_put - Function to add a buffer to postbufq
e59058c4
JS
9239 * @phba: Pointer to HBA context object.
9240 * @pring: Pointer to driver SLI ring object.
9241 * @mp: Pointer to driver buffer object.
9242 *
9243 * This function is called with no lock held.
9244 * It always return zero after adding the buffer to the postbufq
9245 * buffer list.
9246 **/
dea3101e 9247int
2e0fef85
JS
9248lpfc_sli_ringpostbuf_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9249 struct lpfc_dmabuf *mp)
dea3101e 9250{
9251 /* Stick struct lpfc_dmabuf at end of postbufq so driver can look it up
9252 later */
2e0fef85 9253 spin_lock_irq(&phba->hbalock);
dea3101e 9254 list_add_tail(&mp->list, &pring->postbufq);
dea3101e 9255 pring->postbufq_cnt++;
2e0fef85 9256 spin_unlock_irq(&phba->hbalock);
dea3101e 9257 return 0;
9258}
9259
e59058c4 9260/**
3621a710 9261 * lpfc_sli_get_buffer_tag - allocates a tag for a CMD_QUE_XRI64_CX buffer
e59058c4
JS
9262 * @phba: Pointer to HBA context object.
9263 *
9264 * When HBQ is enabled, buffers are searched based on tags. This function
9265 * allocates a tag for buffer posted using CMD_QUE_XRI64_CX iocb. The
9266 * tag is bit wise or-ed with QUE_BUFTAG_BIT to make sure that the tag
9267 * does not conflict with tags of buffer posted for unsolicited events.
9268 * The function returns the allocated tag. The function is called with
9269 * no locks held.
9270 **/
76bb24ef
JS
9271uint32_t
9272lpfc_sli_get_buffer_tag(struct lpfc_hba *phba)
9273{
9274 spin_lock_irq(&phba->hbalock);
9275 phba->buffer_tag_count++;
9276 /*
9277 * Always set the QUE_BUFTAG_BIT to distiguish between
9278 * a tag assigned by HBQ.
9279 */
9280 phba->buffer_tag_count |= QUE_BUFTAG_BIT;
9281 spin_unlock_irq(&phba->hbalock);
9282 return phba->buffer_tag_count;
9283}
9284
e59058c4 9285/**
3621a710 9286 * lpfc_sli_ring_taggedbuf_get - find HBQ buffer associated with given tag
e59058c4
JS
9287 * @phba: Pointer to HBA context object.
9288 * @pring: Pointer to driver SLI ring object.
9289 * @tag: Buffer tag.
9290 *
9291 * Buffers posted using CMD_QUE_XRI64_CX iocb are in pring->postbufq
9292 * list. After HBA DMA data to these buffers, CMD_IOCB_RET_XRI64_CX
9293 * iocb is posted to the response ring with the tag of the buffer.
9294 * This function searches the pring->postbufq list using the tag
9295 * to find buffer associated with CMD_IOCB_RET_XRI64_CX
9296 * iocb. If the buffer is found then lpfc_dmabuf object of the
9297 * buffer is returned to the caller else NULL is returned.
9298 * This function is called with no lock held.
9299 **/
76bb24ef
JS
9300struct lpfc_dmabuf *
9301lpfc_sli_ring_taggedbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9302 uint32_t tag)
9303{
9304 struct lpfc_dmabuf *mp, *next_mp;
9305 struct list_head *slp = &pring->postbufq;
9306
25985edc 9307 /* Search postbufq, from the beginning, looking for a match on tag */
76bb24ef
JS
9308 spin_lock_irq(&phba->hbalock);
9309 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
9310 if (mp->buffer_tag == tag) {
9311 list_del_init(&mp->list);
9312 pring->postbufq_cnt--;
9313 spin_unlock_irq(&phba->hbalock);
9314 return mp;
9315 }
9316 }
9317
9318 spin_unlock_irq(&phba->hbalock);
9319 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
d7c255b2 9320 "0402 Cannot find virtual addr for buffer tag on "
76bb24ef
JS
9321 "ring %d Data x%lx x%p x%p x%x\n",
9322 pring->ringno, (unsigned long) tag,
9323 slp->next, slp->prev, pring->postbufq_cnt);
9324
9325 return NULL;
9326}
dea3101e 9327
e59058c4 9328/**
3621a710 9329 * lpfc_sli_ringpostbuf_get - search buffers for unsolicited CT and ELS events
e59058c4
JS
9330 * @phba: Pointer to HBA context object.
9331 * @pring: Pointer to driver SLI ring object.
9332 * @phys: DMA address of the buffer.
9333 *
9334 * This function searches the buffer list using the dma_address
9335 * of unsolicited event to find the driver's lpfc_dmabuf object
9336 * corresponding to the dma_address. The function returns the
9337 * lpfc_dmabuf object if a buffer is found else it returns NULL.
9338 * This function is called by the ct and els unsolicited event
9339 * handlers to get the buffer associated with the unsolicited
9340 * event.
9341 *
9342 * This function is called with no lock held.
9343 **/
dea3101e 9344struct lpfc_dmabuf *
9345lpfc_sli_ringpostbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9346 dma_addr_t phys)
9347{
9348 struct lpfc_dmabuf *mp, *next_mp;
9349 struct list_head *slp = &pring->postbufq;
9350
25985edc 9351 /* Search postbufq, from the beginning, looking for a match on phys */
2e0fef85 9352 spin_lock_irq(&phba->hbalock);
dea3101e 9353 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
9354 if (mp->phys == phys) {
9355 list_del_init(&mp->list);
9356 pring->postbufq_cnt--;
2e0fef85 9357 spin_unlock_irq(&phba->hbalock);
dea3101e 9358 return mp;
9359 }
9360 }
9361
2e0fef85 9362 spin_unlock_irq(&phba->hbalock);
dea3101e 9363 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 9364 "0410 Cannot find virtual addr for mapped buf on "
dea3101e 9365 "ring %d Data x%llx x%p x%p x%x\n",
e8b62011 9366 pring->ringno, (unsigned long long)phys,
dea3101e 9367 slp->next, slp->prev, pring->postbufq_cnt);
9368 return NULL;
9369}
9370
e59058c4 9371/**
3621a710 9372 * lpfc_sli_abort_els_cmpl - Completion handler for the els abort iocbs
e59058c4
JS
9373 * @phba: Pointer to HBA context object.
9374 * @cmdiocb: Pointer to driver command iocb object.
9375 * @rspiocb: Pointer to driver response iocb object.
9376 *
9377 * This function is the completion handler for the abort iocbs for
9378 * ELS commands. This function is called from the ELS ring event
9379 * handler with no lock held. This function frees memory resources
9380 * associated with the abort iocb.
9381 **/
dea3101e 9382static void
2e0fef85
JS
9383lpfc_sli_abort_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
9384 struct lpfc_iocbq *rspiocb)
dea3101e 9385{
2e0fef85 9386 IOCB_t *irsp = &rspiocb->iocb;
2680eeaa 9387 uint16_t abort_iotag, abort_context;
ff78d8f9 9388 struct lpfc_iocbq *abort_iocb = NULL;
2680eeaa
JS
9389
9390 if (irsp->ulpStatus) {
ff78d8f9
JS
9391
9392 /*
9393 * Assume that the port already completed and returned, or
9394 * will return the iocb. Just Log the message.
9395 */
2680eeaa
JS
9396 abort_context = cmdiocb->iocb.un.acxri.abortContextTag;
9397 abort_iotag = cmdiocb->iocb.un.acxri.abortIoTag;
9398
2e0fef85 9399 spin_lock_irq(&phba->hbalock);
45ed1190
JS
9400 if (phba->sli_rev < LPFC_SLI_REV4) {
9401 if (abort_iotag != 0 &&
9402 abort_iotag <= phba->sli.last_iotag)
9403 abort_iocb =
9404 phba->sli.iocbq_lookup[abort_iotag];
9405 } else
9406 /* For sli4 the abort_tag is the XRI,
9407 * so the abort routine puts the iotag of the iocb
9408 * being aborted in the context field of the abort
9409 * IOCB.
9410 */
9411 abort_iocb = phba->sli.iocbq_lookup[abort_context];
2680eeaa 9412
2a9bf3d0
JS
9413 lpfc_printf_log(phba, KERN_WARNING, LOG_ELS | LOG_SLI,
9414 "0327 Cannot abort els iocb %p "
9415 "with tag %x context %x, abort status %x, "
9416 "abort code %x\n",
9417 abort_iocb, abort_iotag, abort_context,
9418 irsp->ulpStatus, irsp->un.ulpWord[4]);
341af102 9419
ff78d8f9 9420 spin_unlock_irq(&phba->hbalock);
2680eeaa 9421 }
604a3e30 9422 lpfc_sli_release_iocbq(phba, cmdiocb);
dea3101e 9423 return;
9424}
9425
e59058c4 9426/**
3621a710 9427 * lpfc_ignore_els_cmpl - Completion handler for aborted ELS command
e59058c4
JS
9428 * @phba: Pointer to HBA context object.
9429 * @cmdiocb: Pointer to driver command iocb object.
9430 * @rspiocb: Pointer to driver response iocb object.
9431 *
9432 * The function is called from SLI ring event handler with no
9433 * lock held. This function is the completion handler for ELS commands
9434 * which are aborted. The function frees memory resources used for
9435 * the aborted ELS commands.
9436 **/
92d7f7b0
JS
9437static void
9438lpfc_ignore_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
9439 struct lpfc_iocbq *rspiocb)
9440{
9441 IOCB_t *irsp = &rspiocb->iocb;
9442
9443 /* ELS cmd tag <ulpIoTag> completes */
9444 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
d7c255b2 9445 "0139 Ignoring ELS cmd tag x%x completion Data: "
92d7f7b0 9446 "x%x x%x x%x\n",
e8b62011 9447 irsp->ulpIoTag, irsp->ulpStatus,
92d7f7b0 9448 irsp->un.ulpWord[4], irsp->ulpTimeout);
858c9f6c
JS
9449 if (cmdiocb->iocb.ulpCommand == CMD_GEN_REQUEST64_CR)
9450 lpfc_ct_free_iocb(phba, cmdiocb);
9451 else
9452 lpfc_els_free_iocb(phba, cmdiocb);
92d7f7b0
JS
9453 return;
9454}
9455
e59058c4 9456/**
5af5eee7 9457 * lpfc_sli_abort_iotag_issue - Issue abort for a command iocb
e59058c4
JS
9458 * @phba: Pointer to HBA context object.
9459 * @pring: Pointer to driver SLI ring object.
9460 * @cmdiocb: Pointer to driver command iocb object.
9461 *
5af5eee7
JS
9462 * This function issues an abort iocb for the provided command iocb down to
9463 * the port. Other than the case the outstanding command iocb is an abort
9464 * request, this function issues abort out unconditionally. This function is
9465 * called with hbalock held. The function returns 0 when it fails due to
9466 * memory allocation failure or when the command iocb is an abort request.
e59058c4 9467 **/
5af5eee7
JS
9468static int
9469lpfc_sli_abort_iotag_issue(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2e0fef85 9470 struct lpfc_iocbq *cmdiocb)
dea3101e 9471{
2e0fef85 9472 struct lpfc_vport *vport = cmdiocb->vport;
0bd4ca25 9473 struct lpfc_iocbq *abtsiocbp;
dea3101e 9474 IOCB_t *icmd = NULL;
9475 IOCB_t *iabt = NULL;
5af5eee7 9476 int retval;
7e56aa25 9477 unsigned long iflags;
07951076 9478
92d7f7b0
JS
9479 /*
9480 * There are certain command types we don't want to abort. And we
9481 * don't want to abort commands that are already in the process of
9482 * being aborted.
07951076
JS
9483 */
9484 icmd = &cmdiocb->iocb;
2e0fef85 9485 if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
92d7f7b0
JS
9486 icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
9487 (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
07951076
JS
9488 return 0;
9489
dea3101e 9490 /* issue ABTS for this IOCB based on iotag */
92d7f7b0 9491 abtsiocbp = __lpfc_sli_get_iocbq(phba);
dea3101e 9492 if (abtsiocbp == NULL)
9493 return 0;
dea3101e 9494
07951076 9495 /* This signals the response to set the correct status
341af102 9496 * before calling the completion handler
07951076
JS
9497 */
9498 cmdiocb->iocb_flag |= LPFC_DRIVER_ABORTED;
9499
dea3101e 9500 iabt = &abtsiocbp->iocb;
07951076
JS
9501 iabt->un.acxri.abortType = ABORT_TYPE_ABTS;
9502 iabt->un.acxri.abortContextTag = icmd->ulpContext;
45ed1190 9503 if (phba->sli_rev == LPFC_SLI_REV4) {
da0436e9 9504 iabt->un.acxri.abortIoTag = cmdiocb->sli4_xritag;
45ed1190
JS
9505 iabt->un.acxri.abortContextTag = cmdiocb->iotag;
9506 }
da0436e9
JS
9507 else
9508 iabt->un.acxri.abortIoTag = icmd->ulpIoTag;
07951076
JS
9509 iabt->ulpLe = 1;
9510 iabt->ulpClass = icmd->ulpClass;
dea3101e 9511
5ffc266e
JS
9512 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
9513 abtsiocbp->fcp_wqidx = cmdiocb->fcp_wqidx;
341af102
JS
9514 if (cmdiocb->iocb_flag & LPFC_IO_FCP)
9515 abtsiocbp->iocb_flag |= LPFC_USE_FCPWQIDX;
5ffc266e 9516
2e0fef85 9517 if (phba->link_state >= LPFC_LINK_UP)
07951076
JS
9518 iabt->ulpCommand = CMD_ABORT_XRI_CN;
9519 else
9520 iabt->ulpCommand = CMD_CLOSE_XRI_CN;
dea3101e 9521
07951076 9522 abtsiocbp->iocb_cmpl = lpfc_sli_abort_els_cmpl;
5b8bd0c9 9523
e8b62011
JS
9524 lpfc_printf_vlog(vport, KERN_INFO, LOG_SLI,
9525 "0339 Abort xri x%x, original iotag x%x, "
9526 "abort cmd iotag x%x\n",
2a9bf3d0 9527 iabt->un.acxri.abortIoTag,
e8b62011 9528 iabt->un.acxri.abortContextTag,
2a9bf3d0 9529 abtsiocbp->iotag);
7e56aa25
JS
9530
9531 if (phba->sli_rev == LPFC_SLI_REV4) {
9532 /* Note: both hbalock and ring_lock need to be set here */
9533 spin_lock_irqsave(&pring->ring_lock, iflags);
9534 retval = __lpfc_sli_issue_iocb(phba, pring->ringno,
9535 abtsiocbp, 0);
9536 spin_unlock_irqrestore(&pring->ring_lock, iflags);
9537 } else {
9538 retval = __lpfc_sli_issue_iocb(phba, pring->ringno,
9539 abtsiocbp, 0);
9540 }
dea3101e 9541
d7c255b2
JS
9542 if (retval)
9543 __lpfc_sli_release_iocbq(phba, abtsiocbp);
5af5eee7
JS
9544
9545 /*
9546 * Caller to this routine should check for IOCB_ERROR
9547 * and handle it properly. This routine no longer removes
9548 * iocb off txcmplq and call compl in case of IOCB_ERROR.
9549 */
9550 return retval;
9551}
9552
9553/**
9554 * lpfc_sli_issue_abort_iotag - Abort function for a command iocb
9555 * @phba: Pointer to HBA context object.
9556 * @pring: Pointer to driver SLI ring object.
9557 * @cmdiocb: Pointer to driver command iocb object.
9558 *
9559 * This function issues an abort iocb for the provided command iocb. In case
9560 * of unloading, the abort iocb will not be issued to commands on the ELS
9561 * ring. Instead, the callback function shall be changed to those commands
9562 * so that nothing happens when them finishes. This function is called with
9563 * hbalock held. The function returns 0 when the command iocb is an abort
9564 * request.
9565 **/
9566int
9567lpfc_sli_issue_abort_iotag(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
9568 struct lpfc_iocbq *cmdiocb)
9569{
9570 struct lpfc_vport *vport = cmdiocb->vport;
9571 int retval = IOCB_ERROR;
9572 IOCB_t *icmd = NULL;
9573
9574 /*
9575 * There are certain command types we don't want to abort. And we
9576 * don't want to abort commands that are already in the process of
9577 * being aborted.
9578 */
9579 icmd = &cmdiocb->iocb;
9580 if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
9581 icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
9582 (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
9583 return 0;
9584
9585 /*
9586 * If we're unloading, don't abort iocb on the ELS ring, but change
9587 * the callback so that nothing happens when it finishes.
9588 */
9589 if ((vport->load_flag & FC_UNLOADING) &&
9590 (pring->ringno == LPFC_ELS_RING)) {
9591 if (cmdiocb->iocb_flag & LPFC_IO_FABRIC)
9592 cmdiocb->fabric_iocb_cmpl = lpfc_ignore_els_cmpl;
9593 else
9594 cmdiocb->iocb_cmpl = lpfc_ignore_els_cmpl;
9595 goto abort_iotag_exit;
9596 }
9597
9598 /* Now, we try to issue the abort to the cmdiocb out */
9599 retval = lpfc_sli_abort_iotag_issue(phba, pring, cmdiocb);
9600
07951076 9601abort_iotag_exit:
2e0fef85
JS
9602 /*
9603 * Caller to this routine should check for IOCB_ERROR
9604 * and handle it properly. This routine no longer removes
9605 * iocb off txcmplq and call compl in case of IOCB_ERROR.
07951076 9606 */
2e0fef85 9607 return retval;
dea3101e 9608}
9609
5af5eee7
JS
9610/**
9611 * lpfc_sli_iocb_ring_abort - Unconditionally abort all iocbs on an iocb ring
9612 * @phba: Pointer to HBA context object.
9613 * @pring: Pointer to driver SLI ring object.
9614 *
9615 * This function aborts all iocbs in the given ring and frees all the iocb
9616 * objects in txq. This function issues abort iocbs unconditionally for all
9617 * the iocb commands in txcmplq. The iocbs in the txcmplq is not guaranteed
9618 * to complete before the return of this function. The caller is not required
9619 * to hold any locks.
9620 **/
9621static void
9622lpfc_sli_iocb_ring_abort(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
9623{
9624 LIST_HEAD(completions);
9625 struct lpfc_iocbq *iocb, *next_iocb;
9626
9627 if (pring->ringno == LPFC_ELS_RING)
9628 lpfc_fabric_abort_hba(phba);
9629
9630 spin_lock_irq(&phba->hbalock);
9631
9632 /* Take off all the iocbs on txq for cancelling */
9633 list_splice_init(&pring->txq, &completions);
9634 pring->txq_cnt = 0;
9635
9636 /* Next issue ABTS for everything on the txcmplq */
9637 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
9638 lpfc_sli_abort_iotag_issue(phba, pring, iocb);
9639
9640 spin_unlock_irq(&phba->hbalock);
9641
9642 /* Cancel all the IOCBs from the completions list */
9643 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
9644 IOERR_SLI_ABORTED);
9645}
9646
9647/**
9648 * lpfc_sli_hba_iocb_abort - Abort all iocbs to an hba.
9649 * @phba: pointer to lpfc HBA data structure.
9650 *
9651 * This routine will abort all pending and outstanding iocbs to an HBA.
9652 **/
9653void
9654lpfc_sli_hba_iocb_abort(struct lpfc_hba *phba)
9655{
9656 struct lpfc_sli *psli = &phba->sli;
9657 struct lpfc_sli_ring *pring;
9658 int i;
9659
9660 for (i = 0; i < psli->num_rings; i++) {
9661 pring = &psli->ring[i];
9662 lpfc_sli_iocb_ring_abort(phba, pring);
9663 }
9664}
9665
e59058c4 9666/**
3621a710 9667 * lpfc_sli_validate_fcp_iocb - find commands associated with a vport or LUN
e59058c4
JS
9668 * @iocbq: Pointer to driver iocb object.
9669 * @vport: Pointer to driver virtual port object.
9670 * @tgt_id: SCSI ID of the target.
9671 * @lun_id: LUN ID of the scsi device.
9672 * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST
9673 *
3621a710 9674 * This function acts as an iocb filter for functions which abort or count
e59058c4
JS
9675 * all FCP iocbs pending on a lun/SCSI target/SCSI host. It will return
9676 * 0 if the filtering criteria is met for the given iocb and will return
9677 * 1 if the filtering criteria is not met.
9678 * If ctx_cmd == LPFC_CTX_LUN, the function returns 0 only if the
9679 * given iocb is for the SCSI device specified by vport, tgt_id and
9680 * lun_id parameter.
9681 * If ctx_cmd == LPFC_CTX_TGT, the function returns 0 only if the
9682 * given iocb is for the SCSI target specified by vport and tgt_id
9683 * parameters.
9684 * If ctx_cmd == LPFC_CTX_HOST, the function returns 0 only if the
9685 * given iocb is for the SCSI host associated with the given vport.
9686 * This function is called with no locks held.
9687 **/
dea3101e 9688static int
51ef4c26
JS
9689lpfc_sli_validate_fcp_iocb(struct lpfc_iocbq *iocbq, struct lpfc_vport *vport,
9690 uint16_t tgt_id, uint64_t lun_id,
0bd4ca25 9691 lpfc_ctx_cmd ctx_cmd)
dea3101e 9692{
0bd4ca25 9693 struct lpfc_scsi_buf *lpfc_cmd;
dea3101e 9694 int rc = 1;
9695
0bd4ca25
JSEC
9696 if (!(iocbq->iocb_flag & LPFC_IO_FCP))
9697 return rc;
9698
51ef4c26
JS
9699 if (iocbq->vport != vport)
9700 return rc;
9701
0bd4ca25 9702 lpfc_cmd = container_of(iocbq, struct lpfc_scsi_buf, cur_iocbq);
0bd4ca25 9703
495a714c 9704 if (lpfc_cmd->pCmd == NULL)
dea3101e 9705 return rc;
9706
9707 switch (ctx_cmd) {
9708 case LPFC_CTX_LUN:
495a714c
JS
9709 if ((lpfc_cmd->rdata->pnode) &&
9710 (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id) &&
9711 (scsilun_to_int(&lpfc_cmd->fcp_cmnd->fcp_lun) == lun_id))
dea3101e 9712 rc = 0;
9713 break;
9714 case LPFC_CTX_TGT:
495a714c
JS
9715 if ((lpfc_cmd->rdata->pnode) &&
9716 (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id))
dea3101e 9717 rc = 0;
9718 break;
dea3101e 9719 case LPFC_CTX_HOST:
9720 rc = 0;
9721 break;
9722 default:
9723 printk(KERN_ERR "%s: Unknown context cmd type, value %d\n",
cadbd4a5 9724 __func__, ctx_cmd);
dea3101e 9725 break;
9726 }
9727
9728 return rc;
9729}
9730
e59058c4 9731/**
3621a710 9732 * lpfc_sli_sum_iocb - Function to count the number of FCP iocbs pending
e59058c4
JS
9733 * @vport: Pointer to virtual port.
9734 * @tgt_id: SCSI ID of the target.
9735 * @lun_id: LUN ID of the scsi device.
9736 * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
9737 *
9738 * This function returns number of FCP commands pending for the vport.
9739 * When ctx_cmd == LPFC_CTX_LUN, the function returns number of FCP
9740 * commands pending on the vport associated with SCSI device specified
9741 * by tgt_id and lun_id parameters.
9742 * When ctx_cmd == LPFC_CTX_TGT, the function returns number of FCP
9743 * commands pending on the vport associated with SCSI target specified
9744 * by tgt_id parameter.
9745 * When ctx_cmd == LPFC_CTX_HOST, the function returns number of FCP
9746 * commands pending on the vport.
9747 * This function returns the number of iocbs which satisfy the filter.
9748 * This function is called without any lock held.
9749 **/
dea3101e 9750int
51ef4c26
JS
9751lpfc_sli_sum_iocb(struct lpfc_vport *vport, uint16_t tgt_id, uint64_t lun_id,
9752 lpfc_ctx_cmd ctx_cmd)
dea3101e 9753{
51ef4c26 9754 struct lpfc_hba *phba = vport->phba;
0bd4ca25
JSEC
9755 struct lpfc_iocbq *iocbq;
9756 int sum, i;
dea3101e 9757
0bd4ca25
JSEC
9758 for (i = 1, sum = 0; i <= phba->sli.last_iotag; i++) {
9759 iocbq = phba->sli.iocbq_lookup[i];
dea3101e 9760
51ef4c26
JS
9761 if (lpfc_sli_validate_fcp_iocb (iocbq, vport, tgt_id, lun_id,
9762 ctx_cmd) == 0)
0bd4ca25 9763 sum++;
dea3101e 9764 }
0bd4ca25 9765
dea3101e 9766 return sum;
9767}
9768
e59058c4 9769/**
3621a710 9770 * lpfc_sli_abort_fcp_cmpl - Completion handler function for aborted FCP IOCBs
e59058c4
JS
9771 * @phba: Pointer to HBA context object
9772 * @cmdiocb: Pointer to command iocb object.
9773 * @rspiocb: Pointer to response iocb object.
9774 *
9775 * This function is called when an aborted FCP iocb completes. This
9776 * function is called by the ring event handler with no lock held.
9777 * This function frees the iocb.
9778 **/
5eb95af0 9779void
2e0fef85
JS
9780lpfc_sli_abort_fcp_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
9781 struct lpfc_iocbq *rspiocb)
5eb95af0 9782{
cb69f7de 9783 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
8e668af5 9784 "3096 ABORT_XRI_CN completing on rpi x%x "
cb69f7de
JS
9785 "original iotag x%x, abort cmd iotag x%x "
9786 "status 0x%x, reason 0x%x\n",
9787 cmdiocb->iocb.un.acxri.abortContextTag,
9788 cmdiocb->iocb.un.acxri.abortIoTag,
9789 cmdiocb->iotag, rspiocb->iocb.ulpStatus,
9790 rspiocb->iocb.un.ulpWord[4]);
604a3e30 9791 lpfc_sli_release_iocbq(phba, cmdiocb);
5eb95af0
JSEC
9792 return;
9793}
9794
e59058c4 9795/**
3621a710 9796 * lpfc_sli_abort_iocb - issue abort for all commands on a host/target/LUN
e59058c4
JS
9797 * @vport: Pointer to virtual port.
9798 * @pring: Pointer to driver SLI ring object.
9799 * @tgt_id: SCSI ID of the target.
9800 * @lun_id: LUN ID of the scsi device.
9801 * @abort_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
9802 *
9803 * This function sends an abort command for every SCSI command
9804 * associated with the given virtual port pending on the ring
9805 * filtered by lpfc_sli_validate_fcp_iocb function.
9806 * When abort_cmd == LPFC_CTX_LUN, the function sends abort only to the
9807 * FCP iocbs associated with lun specified by tgt_id and lun_id
9808 * parameters
9809 * When abort_cmd == LPFC_CTX_TGT, the function sends abort only to the
9810 * FCP iocbs associated with SCSI target specified by tgt_id parameter.
9811 * When abort_cmd == LPFC_CTX_HOST, the function sends abort to all
9812 * FCP iocbs associated with virtual port.
9813 * This function returns number of iocbs it failed to abort.
9814 * This function is called with no locks held.
9815 **/
dea3101e 9816int
51ef4c26
JS
9817lpfc_sli_abort_iocb(struct lpfc_vport *vport, struct lpfc_sli_ring *pring,
9818 uint16_t tgt_id, uint64_t lun_id, lpfc_ctx_cmd abort_cmd)
dea3101e 9819{
51ef4c26 9820 struct lpfc_hba *phba = vport->phba;
0bd4ca25
JSEC
9821 struct lpfc_iocbq *iocbq;
9822 struct lpfc_iocbq *abtsiocb;
dea3101e 9823 IOCB_t *cmd = NULL;
dea3101e 9824 int errcnt = 0, ret_val = 0;
0bd4ca25 9825 int i;
dea3101e 9826
0bd4ca25
JSEC
9827 for (i = 1; i <= phba->sli.last_iotag; i++) {
9828 iocbq = phba->sli.iocbq_lookup[i];
dea3101e 9829
51ef4c26 9830 if (lpfc_sli_validate_fcp_iocb(iocbq, vport, tgt_id, lun_id,
2e0fef85 9831 abort_cmd) != 0)
dea3101e 9832 continue;
9833
9834 /* issue ABTS for this IOCB based on iotag */
0bd4ca25 9835 abtsiocb = lpfc_sli_get_iocbq(phba);
dea3101e 9836 if (abtsiocb == NULL) {
9837 errcnt++;
9838 continue;
9839 }
dea3101e 9840
0bd4ca25 9841 cmd = &iocbq->iocb;
dea3101e 9842 abtsiocb->iocb.un.acxri.abortType = ABORT_TYPE_ABTS;
9843 abtsiocb->iocb.un.acxri.abortContextTag = cmd->ulpContext;
da0436e9
JS
9844 if (phba->sli_rev == LPFC_SLI_REV4)
9845 abtsiocb->iocb.un.acxri.abortIoTag = iocbq->sli4_xritag;
9846 else
9847 abtsiocb->iocb.un.acxri.abortIoTag = cmd->ulpIoTag;
dea3101e 9848 abtsiocb->iocb.ulpLe = 1;
9849 abtsiocb->iocb.ulpClass = cmd->ulpClass;
2e0fef85 9850 abtsiocb->vport = phba->pport;
dea3101e 9851
5ffc266e
JS
9852 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
9853 abtsiocb->fcp_wqidx = iocbq->fcp_wqidx;
341af102
JS
9854 if (iocbq->iocb_flag & LPFC_IO_FCP)
9855 abtsiocb->iocb_flag |= LPFC_USE_FCPWQIDX;
5ffc266e 9856
2e0fef85 9857 if (lpfc_is_link_up(phba))
dea3101e 9858 abtsiocb->iocb.ulpCommand = CMD_ABORT_XRI_CN;
9859 else
9860 abtsiocb->iocb.ulpCommand = CMD_CLOSE_XRI_CN;
9861
5eb95af0
JSEC
9862 /* Setup callback routine and issue the command. */
9863 abtsiocb->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
da0436e9
JS
9864 ret_val = lpfc_sli_issue_iocb(phba, pring->ringno,
9865 abtsiocb, 0);
dea3101e 9866 if (ret_val == IOCB_ERROR) {
604a3e30 9867 lpfc_sli_release_iocbq(phba, abtsiocb);
dea3101e 9868 errcnt++;
9869 continue;
9870 }
9871 }
9872
9873 return errcnt;
9874}
9875
e59058c4 9876/**
3621a710 9877 * lpfc_sli_wake_iocb_wait - lpfc_sli_issue_iocb_wait's completion handler
e59058c4
JS
9878 * @phba: Pointer to HBA context object.
9879 * @cmdiocbq: Pointer to command iocb.
9880 * @rspiocbq: Pointer to response iocb.
9881 *
9882 * This function is the completion handler for iocbs issued using
9883 * lpfc_sli_issue_iocb_wait function. This function is called by the
9884 * ring event handler function without any lock held. This function
9885 * can be called from both worker thread context and interrupt
9886 * context. This function also can be called from other thread which
9887 * cleans up the SLI layer objects.
9888 * This function copy the contents of the response iocb to the
9889 * response iocb memory object provided by the caller of
9890 * lpfc_sli_issue_iocb_wait and then wakes up the thread which
9891 * sleeps for the iocb completion.
9892 **/
68876920
JSEC
9893static void
9894lpfc_sli_wake_iocb_wait(struct lpfc_hba *phba,
9895 struct lpfc_iocbq *cmdiocbq,
9896 struct lpfc_iocbq *rspiocbq)
dea3101e 9897{
68876920
JSEC
9898 wait_queue_head_t *pdone_q;
9899 unsigned long iflags;
0f65ff68 9900 struct lpfc_scsi_buf *lpfc_cmd;
dea3101e 9901
2e0fef85 9902 spin_lock_irqsave(&phba->hbalock, iflags);
5a0916b4
JS
9903 if (cmdiocbq->iocb_flag & LPFC_IO_WAKE_TMO) {
9904
9905 /*
9906 * A time out has occurred for the iocb. If a time out
9907 * completion handler has been supplied, call it. Otherwise,
9908 * just free the iocbq.
9909 */
9910
9911 spin_unlock_irqrestore(&phba->hbalock, iflags);
9912 cmdiocbq->iocb_cmpl = cmdiocbq->wait_iocb_cmpl;
9913 cmdiocbq->wait_iocb_cmpl = NULL;
9914 if (cmdiocbq->iocb_cmpl)
9915 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq, NULL);
9916 else
9917 lpfc_sli_release_iocbq(phba, cmdiocbq);
9918 return;
9919 }
9920
68876920
JSEC
9921 cmdiocbq->iocb_flag |= LPFC_IO_WAKE;
9922 if (cmdiocbq->context2 && rspiocbq)
9923 memcpy(&((struct lpfc_iocbq *)cmdiocbq->context2)->iocb,
9924 &rspiocbq->iocb, sizeof(IOCB_t));
9925
0f65ff68
JS
9926 /* Set the exchange busy flag for task management commands */
9927 if ((cmdiocbq->iocb_flag & LPFC_IO_FCP) &&
9928 !(cmdiocbq->iocb_flag & LPFC_IO_LIBDFC)) {
9929 lpfc_cmd = container_of(cmdiocbq, struct lpfc_scsi_buf,
9930 cur_iocbq);
9931 lpfc_cmd->exch_busy = rspiocbq->iocb_flag & LPFC_EXCHANGE_BUSY;
9932 }
9933
68876920 9934 pdone_q = cmdiocbq->context_un.wait_queue;
68876920
JSEC
9935 if (pdone_q)
9936 wake_up(pdone_q);
858c9f6c 9937 spin_unlock_irqrestore(&phba->hbalock, iflags);
dea3101e 9938 return;
9939}
9940
d11e31dd
JS
9941/**
9942 * lpfc_chk_iocb_flg - Test IOCB flag with lock held.
9943 * @phba: Pointer to HBA context object..
9944 * @piocbq: Pointer to command iocb.
9945 * @flag: Flag to test.
9946 *
9947 * This routine grabs the hbalock and then test the iocb_flag to
9948 * see if the passed in flag is set.
9949 * Returns:
9950 * 1 if flag is set.
9951 * 0 if flag is not set.
9952 **/
9953static int
9954lpfc_chk_iocb_flg(struct lpfc_hba *phba,
9955 struct lpfc_iocbq *piocbq, uint32_t flag)
9956{
9957 unsigned long iflags;
9958 int ret;
9959
9960 spin_lock_irqsave(&phba->hbalock, iflags);
9961 ret = piocbq->iocb_flag & flag;
9962 spin_unlock_irqrestore(&phba->hbalock, iflags);
9963 return ret;
9964
9965}
9966
e59058c4 9967/**
3621a710 9968 * lpfc_sli_issue_iocb_wait - Synchronous function to issue iocb commands
e59058c4
JS
9969 * @phba: Pointer to HBA context object..
9970 * @pring: Pointer to sli ring.
9971 * @piocb: Pointer to command iocb.
9972 * @prspiocbq: Pointer to response iocb.
9973 * @timeout: Timeout in number of seconds.
9974 *
9975 * This function issues the iocb to firmware and waits for the
5a0916b4
JS
9976 * iocb to complete. The iocb_cmpl field of the shall be used
9977 * to handle iocbs which time out. If the field is NULL, the
9978 * function shall free the iocbq structure. If more clean up is
9979 * needed, the caller is expected to provide a completion function
9980 * that will provide the needed clean up. If the iocb command is
9981 * not completed within timeout seconds, the function will either
9982 * free the iocbq structure (if iocb_cmpl == NULL) or execute the
9983 * completion function set in the iocb_cmpl field and then return
9984 * a status of IOCB_TIMEDOUT. The caller should not free the iocb
9985 * resources if this function returns IOCB_TIMEDOUT.
e59058c4
JS
9986 * The function waits for the iocb completion using an
9987 * non-interruptible wait.
9988 * This function will sleep while waiting for iocb completion.
9989 * So, this function should not be called from any context which
9990 * does not allow sleeping. Due to the same reason, this function
9991 * cannot be called with interrupt disabled.
9992 * This function assumes that the iocb completions occur while
9993 * this function sleep. So, this function cannot be called from
9994 * the thread which process iocb completion for this ring.
9995 * This function clears the iocb_flag of the iocb object before
9996 * issuing the iocb and the iocb completion handler sets this
9997 * flag and wakes this thread when the iocb completes.
9998 * The contents of the response iocb will be copied to prspiocbq
9999 * by the completion handler when the command completes.
10000 * This function returns IOCB_SUCCESS when success.
10001 * This function is called with no lock held.
10002 **/
dea3101e 10003int
2e0fef85 10004lpfc_sli_issue_iocb_wait(struct lpfc_hba *phba,
da0436e9 10005 uint32_t ring_number,
2e0fef85
JS
10006 struct lpfc_iocbq *piocb,
10007 struct lpfc_iocbq *prspiocbq,
68876920 10008 uint32_t timeout)
dea3101e 10009{
7259f0d0 10010 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
68876920
JSEC
10011 long timeleft, timeout_req = 0;
10012 int retval = IOCB_SUCCESS;
875fbdfe 10013 uint32_t creg_val;
0e9bb8d7
JS
10014 struct lpfc_iocbq *iocb;
10015 int txq_cnt = 0;
10016 int txcmplq_cnt = 0;
2a9bf3d0 10017 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
5a0916b4
JS
10018 unsigned long iflags;
10019 bool iocb_completed = true;
10020
dea3101e 10021 /*
68876920
JSEC
10022 * If the caller has provided a response iocbq buffer, then context2
10023 * is NULL or its an error.
dea3101e 10024 */
68876920
JSEC
10025 if (prspiocbq) {
10026 if (piocb->context2)
10027 return IOCB_ERROR;
10028 piocb->context2 = prspiocbq;
dea3101e 10029 }
10030
5a0916b4 10031 piocb->wait_iocb_cmpl = piocb->iocb_cmpl;
68876920
JSEC
10032 piocb->iocb_cmpl = lpfc_sli_wake_iocb_wait;
10033 piocb->context_un.wait_queue = &done_q;
5a0916b4 10034 piocb->iocb_flag &= ~(LPFC_IO_WAKE | LPFC_IO_WAKE_TMO);
dea3101e 10035
875fbdfe 10036 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
9940b97b
JS
10037 if (lpfc_readl(phba->HCregaddr, &creg_val))
10038 return IOCB_ERROR;
875fbdfe
JSEC
10039 creg_val |= (HC_R0INT_ENA << LPFC_FCP_RING);
10040 writel(creg_val, phba->HCregaddr);
10041 readl(phba->HCregaddr); /* flush */
10042 }
10043
2a9bf3d0
JS
10044 retval = lpfc_sli_issue_iocb(phba, ring_number, piocb,
10045 SLI_IOCB_RET_IOCB);
68876920 10046 if (retval == IOCB_SUCCESS) {
256ec0d0 10047 timeout_req = msecs_to_jiffies(timeout * 1000);
68876920 10048 timeleft = wait_event_timeout(done_q,
d11e31dd 10049 lpfc_chk_iocb_flg(phba, piocb, LPFC_IO_WAKE),
68876920 10050 timeout_req);
5a0916b4
JS
10051 spin_lock_irqsave(&phba->hbalock, iflags);
10052 if (!(piocb->iocb_flag & LPFC_IO_WAKE)) {
10053
10054 /*
10055 * IOCB timed out. Inform the wake iocb wait
10056 * completion function and set local status
10057 */
dea3101e 10058
5a0916b4
JS
10059 iocb_completed = false;
10060 piocb->iocb_flag |= LPFC_IO_WAKE_TMO;
10061 }
10062 spin_unlock_irqrestore(&phba->hbalock, iflags);
10063 if (iocb_completed) {
7054a606 10064 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
e8b62011 10065 "0331 IOCB wake signaled\n");
7054a606 10066 } else if (timeleft == 0) {
68876920 10067 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011
JS
10068 "0338 IOCB wait timeout error - no "
10069 "wake response Data x%x\n", timeout);
68876920 10070 retval = IOCB_TIMEDOUT;
7054a606 10071 } else {
68876920 10072 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011
JS
10073 "0330 IOCB wake NOT set, "
10074 "Data x%x x%lx\n",
68876920
JSEC
10075 timeout, (timeleft / jiffies));
10076 retval = IOCB_TIMEDOUT;
dea3101e 10077 }
2a9bf3d0 10078 } else if (retval == IOCB_BUSY) {
0e9bb8d7
JS
10079 if (phba->cfg_log_verbose & LOG_SLI) {
10080 list_for_each_entry(iocb, &pring->txq, list) {
10081 txq_cnt++;
10082 }
10083 list_for_each_entry(iocb, &pring->txcmplq, list) {
10084 txcmplq_cnt++;
10085 }
10086 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
10087 "2818 Max IOCBs %d txq cnt %d txcmplq cnt %d\n",
10088 phba->iocb_cnt, txq_cnt, txcmplq_cnt);
10089 }
2a9bf3d0 10090 return retval;
68876920
JSEC
10091 } else {
10092 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
d7c255b2 10093 "0332 IOCB wait issue failed, Data x%x\n",
e8b62011 10094 retval);
68876920 10095 retval = IOCB_ERROR;
dea3101e 10096 }
10097
875fbdfe 10098 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
9940b97b
JS
10099 if (lpfc_readl(phba->HCregaddr, &creg_val))
10100 return IOCB_ERROR;
875fbdfe
JSEC
10101 creg_val &= ~(HC_R0INT_ENA << LPFC_FCP_RING);
10102 writel(creg_val, phba->HCregaddr);
10103 readl(phba->HCregaddr); /* flush */
10104 }
10105
68876920
JSEC
10106 if (prspiocbq)
10107 piocb->context2 = NULL;
10108
10109 piocb->context_un.wait_queue = NULL;
10110 piocb->iocb_cmpl = NULL;
dea3101e 10111 return retval;
10112}
68876920 10113
e59058c4 10114/**
3621a710 10115 * lpfc_sli_issue_mbox_wait - Synchronous function to issue mailbox
e59058c4
JS
10116 * @phba: Pointer to HBA context object.
10117 * @pmboxq: Pointer to driver mailbox object.
10118 * @timeout: Timeout in number of seconds.
10119 *
10120 * This function issues the mailbox to firmware and waits for the
10121 * mailbox command to complete. If the mailbox command is not
10122 * completed within timeout seconds, it returns MBX_TIMEOUT.
10123 * The function waits for the mailbox completion using an
10124 * interruptible wait. If the thread is woken up due to a
10125 * signal, MBX_TIMEOUT error is returned to the caller. Caller
10126 * should not free the mailbox resources, if this function returns
10127 * MBX_TIMEOUT.
10128 * This function will sleep while waiting for mailbox completion.
10129 * So, this function should not be called from any context which
10130 * does not allow sleeping. Due to the same reason, this function
10131 * cannot be called with interrupt disabled.
10132 * This function assumes that the mailbox completion occurs while
10133 * this function sleep. So, this function cannot be called from
10134 * the worker thread which processes mailbox completion.
10135 * This function is called in the context of HBA management
10136 * applications.
10137 * This function returns MBX_SUCCESS when successful.
10138 * This function is called with no lock held.
10139 **/
dea3101e 10140int
2e0fef85 10141lpfc_sli_issue_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq,
dea3101e 10142 uint32_t timeout)
10143{
7259f0d0 10144 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
b230b8a2 10145 MAILBOX_t *mb = NULL;
dea3101e 10146 int retval;
858c9f6c 10147 unsigned long flag;
dea3101e 10148
b230b8a2 10149 /* The caller might set context1 for extended buffer */
98c9ea5c 10150 if (pmboxq->context1)
b230b8a2 10151 mb = (MAILBOX_t *)pmboxq->context1;
dea3101e 10152
495a714c 10153 pmboxq->mbox_flag &= ~LPFC_MBX_WAKE;
dea3101e 10154 /* setup wake call as IOCB callback */
10155 pmboxq->mbox_cmpl = lpfc_sli_wake_mbox_wait;
10156 /* setup context field to pass wait_queue pointer to wake function */
10157 pmboxq->context1 = &done_q;
10158
dea3101e 10159 /* now issue the command */
10160 retval = lpfc_sli_issue_mbox(phba, pmboxq, MBX_NOWAIT);
dea3101e 10161 if (retval == MBX_BUSY || retval == MBX_SUCCESS) {
7054a606
JS
10162 wait_event_interruptible_timeout(done_q,
10163 pmboxq->mbox_flag & LPFC_MBX_WAKE,
256ec0d0 10164 msecs_to_jiffies(timeout * 1000));
7054a606 10165
858c9f6c 10166 spin_lock_irqsave(&phba->hbalock, flag);
b230b8a2
JS
10167 /* restore the possible extended buffer for free resource */
10168 pmboxq->context1 = (uint8_t *)mb;
7054a606
JS
10169 /*
10170 * if LPFC_MBX_WAKE flag is set the mailbox is completed
10171 * else do not free the resources.
10172 */
d7c47992 10173 if (pmboxq->mbox_flag & LPFC_MBX_WAKE) {
dea3101e 10174 retval = MBX_SUCCESS;
d7c47992 10175 } else {
7054a606 10176 retval = MBX_TIMEOUT;
858c9f6c
JS
10177 pmboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
10178 }
10179 spin_unlock_irqrestore(&phba->hbalock, flag);
b230b8a2
JS
10180 } else {
10181 /* restore the possible extended buffer for free resource */
10182 pmboxq->context1 = (uint8_t *)mb;
dea3101e 10183 }
10184
dea3101e 10185 return retval;
10186}
10187
e59058c4 10188/**
3772a991 10189 * lpfc_sli_mbox_sys_shutdown - shutdown mailbox command sub-system
e59058c4
JS
10190 * @phba: Pointer to HBA context.
10191 *
3772a991
JS
10192 * This function is called to shutdown the driver's mailbox sub-system.
10193 * It first marks the mailbox sub-system is in a block state to prevent
10194 * the asynchronous mailbox command from issued off the pending mailbox
10195 * command queue. If the mailbox command sub-system shutdown is due to
10196 * HBA error conditions such as EEH or ERATT, this routine shall invoke
10197 * the mailbox sub-system flush routine to forcefully bring down the
10198 * mailbox sub-system. Otherwise, if it is due to normal condition (such
10199 * as with offline or HBA function reset), this routine will wait for the
10200 * outstanding mailbox command to complete before invoking the mailbox
10201 * sub-system flush routine to gracefully bring down mailbox sub-system.
e59058c4 10202 **/
3772a991 10203void
618a5230 10204lpfc_sli_mbox_sys_shutdown(struct lpfc_hba *phba, int mbx_action)
b4c02652 10205{
3772a991 10206 struct lpfc_sli *psli = &phba->sli;
3772a991 10207 unsigned long timeout;
b4c02652 10208
618a5230
JS
10209 if (mbx_action == LPFC_MBX_NO_WAIT) {
10210 /* delay 100ms for port state */
10211 msleep(100);
10212 lpfc_sli_mbox_sys_flush(phba);
10213 return;
10214 }
a183a15f 10215 timeout = msecs_to_jiffies(LPFC_MBOX_TMO * 1000) + jiffies;
d7069f09 10216
3772a991
JS
10217 spin_lock_irq(&phba->hbalock);
10218 psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
b4c02652 10219
3772a991 10220 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
3772a991
JS
10221 /* Determine how long we might wait for the active mailbox
10222 * command to be gracefully completed by firmware.
10223 */
a183a15f
JS
10224 if (phba->sli.mbox_active)
10225 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
10226 phba->sli.mbox_active) *
10227 1000) + jiffies;
10228 spin_unlock_irq(&phba->hbalock);
10229
3772a991
JS
10230 while (phba->sli.mbox_active) {
10231 /* Check active mailbox complete status every 2ms */
10232 msleep(2);
10233 if (time_after(jiffies, timeout))
10234 /* Timeout, let the mailbox flush routine to
10235 * forcefully release active mailbox command
10236 */
10237 break;
10238 }
d7069f09
JS
10239 } else
10240 spin_unlock_irq(&phba->hbalock);
10241
3772a991
JS
10242 lpfc_sli_mbox_sys_flush(phba);
10243}
ed957684 10244
3772a991
JS
10245/**
10246 * lpfc_sli_eratt_read - read sli-3 error attention events
10247 * @phba: Pointer to HBA context.
10248 *
10249 * This function is called to read the SLI3 device error attention registers
10250 * for possible error attention events. The caller must hold the hostlock
10251 * with spin_lock_irq().
10252 *
25985edc 10253 * This function returns 1 when there is Error Attention in the Host Attention
3772a991
JS
10254 * Register and returns 0 otherwise.
10255 **/
10256static int
10257lpfc_sli_eratt_read(struct lpfc_hba *phba)
10258{
10259 uint32_t ha_copy;
b4c02652 10260
3772a991 10261 /* Read chip Host Attention (HA) register */
9940b97b
JS
10262 if (lpfc_readl(phba->HAregaddr, &ha_copy))
10263 goto unplug_err;
10264
3772a991
JS
10265 if (ha_copy & HA_ERATT) {
10266 /* Read host status register to retrieve error event */
9940b97b
JS
10267 if (lpfc_sli_read_hs(phba))
10268 goto unplug_err;
b4c02652 10269
3772a991
JS
10270 /* Check if there is a deferred error condition is active */
10271 if ((HS_FFER1 & phba->work_hs) &&
10272 ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
dcf2a4e0 10273 HS_FFER6 | HS_FFER7 | HS_FFER8) & phba->work_hs)) {
3772a991 10274 phba->hba_flag |= DEFER_ERATT;
3772a991
JS
10275 /* Clear all interrupt enable conditions */
10276 writel(0, phba->HCregaddr);
10277 readl(phba->HCregaddr);
10278 }
10279
10280 /* Set the driver HA work bitmap */
3772a991
JS
10281 phba->work_ha |= HA_ERATT;
10282 /* Indicate polling handles this ERATT */
10283 phba->hba_flag |= HBA_ERATT_HANDLED;
3772a991
JS
10284 return 1;
10285 }
10286 return 0;
9940b97b
JS
10287
10288unplug_err:
10289 /* Set the driver HS work bitmap */
10290 phba->work_hs |= UNPLUG_ERR;
10291 /* Set the driver HA work bitmap */
10292 phba->work_ha |= HA_ERATT;
10293 /* Indicate polling handles this ERATT */
10294 phba->hba_flag |= HBA_ERATT_HANDLED;
10295 return 1;
b4c02652
JS
10296}
10297
da0436e9
JS
10298/**
10299 * lpfc_sli4_eratt_read - read sli-4 error attention events
10300 * @phba: Pointer to HBA context.
10301 *
10302 * This function is called to read the SLI4 device error attention registers
10303 * for possible error attention events. The caller must hold the hostlock
10304 * with spin_lock_irq().
10305 *
25985edc 10306 * This function returns 1 when there is Error Attention in the Host Attention
da0436e9
JS
10307 * Register and returns 0 otherwise.
10308 **/
10309static int
10310lpfc_sli4_eratt_read(struct lpfc_hba *phba)
10311{
10312 uint32_t uerr_sta_hi, uerr_sta_lo;
2fcee4bf
JS
10313 uint32_t if_type, portsmphr;
10314 struct lpfc_register portstat_reg;
da0436e9 10315
2fcee4bf
JS
10316 /*
10317 * For now, use the SLI4 device internal unrecoverable error
da0436e9
JS
10318 * registers for error attention. This can be changed later.
10319 */
2fcee4bf
JS
10320 if_type = bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf);
10321 switch (if_type) {
10322 case LPFC_SLI_INTF_IF_TYPE_0:
9940b97b
JS
10323 if (lpfc_readl(phba->sli4_hba.u.if_type0.UERRLOregaddr,
10324 &uerr_sta_lo) ||
10325 lpfc_readl(phba->sli4_hba.u.if_type0.UERRHIregaddr,
10326 &uerr_sta_hi)) {
10327 phba->work_hs |= UNPLUG_ERR;
10328 phba->work_ha |= HA_ERATT;
10329 phba->hba_flag |= HBA_ERATT_HANDLED;
10330 return 1;
10331 }
2fcee4bf
JS
10332 if ((~phba->sli4_hba.ue_mask_lo & uerr_sta_lo) ||
10333 (~phba->sli4_hba.ue_mask_hi & uerr_sta_hi)) {
10334 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10335 "1423 HBA Unrecoverable error: "
10336 "uerr_lo_reg=0x%x, uerr_hi_reg=0x%x, "
10337 "ue_mask_lo_reg=0x%x, "
10338 "ue_mask_hi_reg=0x%x\n",
10339 uerr_sta_lo, uerr_sta_hi,
10340 phba->sli4_hba.ue_mask_lo,
10341 phba->sli4_hba.ue_mask_hi);
10342 phba->work_status[0] = uerr_sta_lo;
10343 phba->work_status[1] = uerr_sta_hi;
10344 phba->work_ha |= HA_ERATT;
10345 phba->hba_flag |= HBA_ERATT_HANDLED;
10346 return 1;
10347 }
10348 break;
10349 case LPFC_SLI_INTF_IF_TYPE_2:
9940b97b
JS
10350 if (lpfc_readl(phba->sli4_hba.u.if_type2.STATUSregaddr,
10351 &portstat_reg.word0) ||
10352 lpfc_readl(phba->sli4_hba.PSMPHRregaddr,
10353 &portsmphr)){
10354 phba->work_hs |= UNPLUG_ERR;
10355 phba->work_ha |= HA_ERATT;
10356 phba->hba_flag |= HBA_ERATT_HANDLED;
10357 return 1;
10358 }
2fcee4bf
JS
10359 if (bf_get(lpfc_sliport_status_err, &portstat_reg)) {
10360 phba->work_status[0] =
10361 readl(phba->sli4_hba.u.if_type2.ERR1regaddr);
10362 phba->work_status[1] =
10363 readl(phba->sli4_hba.u.if_type2.ERR2regaddr);
10364 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2e90f4b5 10365 "2885 Port Status Event: "
2fcee4bf
JS
10366 "port status reg 0x%x, "
10367 "port smphr reg 0x%x, "
10368 "error 1=0x%x, error 2=0x%x\n",
10369 portstat_reg.word0,
10370 portsmphr,
10371 phba->work_status[0],
10372 phba->work_status[1]);
10373 phba->work_ha |= HA_ERATT;
10374 phba->hba_flag |= HBA_ERATT_HANDLED;
10375 return 1;
10376 }
10377 break;
10378 case LPFC_SLI_INTF_IF_TYPE_1:
10379 default:
a747c9ce 10380 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2fcee4bf
JS
10381 "2886 HBA Error Attention on unsupported "
10382 "if type %d.", if_type);
a747c9ce 10383 return 1;
da0436e9 10384 }
2fcee4bf 10385
da0436e9
JS
10386 return 0;
10387}
10388
e59058c4 10389/**
3621a710 10390 * lpfc_sli_check_eratt - check error attention events
9399627f
JS
10391 * @phba: Pointer to HBA context.
10392 *
3772a991 10393 * This function is called from timer soft interrupt context to check HBA's
9399627f
JS
10394 * error attention register bit for error attention events.
10395 *
25985edc 10396 * This function returns 1 when there is Error Attention in the Host Attention
9399627f
JS
10397 * Register and returns 0 otherwise.
10398 **/
10399int
10400lpfc_sli_check_eratt(struct lpfc_hba *phba)
10401{
10402 uint32_t ha_copy;
10403
10404 /* If somebody is waiting to handle an eratt, don't process it
10405 * here. The brdkill function will do this.
10406 */
10407 if (phba->link_flag & LS_IGNORE_ERATT)
10408 return 0;
10409
10410 /* Check if interrupt handler handles this ERATT */
10411 spin_lock_irq(&phba->hbalock);
10412 if (phba->hba_flag & HBA_ERATT_HANDLED) {
10413 /* Interrupt handler has handled ERATT */
10414 spin_unlock_irq(&phba->hbalock);
10415 return 0;
10416 }
10417
a257bf90
JS
10418 /*
10419 * If there is deferred error attention, do not check for error
10420 * attention
10421 */
10422 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
10423 spin_unlock_irq(&phba->hbalock);
10424 return 0;
10425 }
10426
3772a991
JS
10427 /* If PCI channel is offline, don't process it */
10428 if (unlikely(pci_channel_offline(phba->pcidev))) {
9399627f 10429 spin_unlock_irq(&phba->hbalock);
3772a991
JS
10430 return 0;
10431 }
10432
10433 switch (phba->sli_rev) {
10434 case LPFC_SLI_REV2:
10435 case LPFC_SLI_REV3:
10436 /* Read chip Host Attention (HA) register */
10437 ha_copy = lpfc_sli_eratt_read(phba);
10438 break;
da0436e9 10439 case LPFC_SLI_REV4:
2fcee4bf 10440 /* Read device Uncoverable Error (UERR) registers */
da0436e9
JS
10441 ha_copy = lpfc_sli4_eratt_read(phba);
10442 break;
3772a991
JS
10443 default:
10444 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10445 "0299 Invalid SLI revision (%d)\n",
10446 phba->sli_rev);
10447 ha_copy = 0;
10448 break;
9399627f
JS
10449 }
10450 spin_unlock_irq(&phba->hbalock);
3772a991
JS
10451
10452 return ha_copy;
10453}
10454
10455/**
10456 * lpfc_intr_state_check - Check device state for interrupt handling
10457 * @phba: Pointer to HBA context.
10458 *
10459 * This inline routine checks whether a device or its PCI slot is in a state
10460 * that the interrupt should be handled.
10461 *
10462 * This function returns 0 if the device or the PCI slot is in a state that
10463 * interrupt should be handled, otherwise -EIO.
10464 */
10465static inline int
10466lpfc_intr_state_check(struct lpfc_hba *phba)
10467{
10468 /* If the pci channel is offline, ignore all the interrupts */
10469 if (unlikely(pci_channel_offline(phba->pcidev)))
10470 return -EIO;
10471
10472 /* Update device level interrupt statistics */
10473 phba->sli.slistat.sli_intr++;
10474
10475 /* Ignore all interrupts during initialization. */
10476 if (unlikely(phba->link_state < LPFC_LINK_DOWN))
10477 return -EIO;
10478
9399627f
JS
10479 return 0;
10480}
10481
10482/**
3772a991 10483 * lpfc_sli_sp_intr_handler - Slow-path interrupt handler to SLI-3 device
e59058c4
JS
10484 * @irq: Interrupt number.
10485 * @dev_id: The device context pointer.
10486 *
9399627f 10487 * This function is directly called from the PCI layer as an interrupt
3772a991
JS
10488 * service routine when device with SLI-3 interface spec is enabled with
10489 * MSI-X multi-message interrupt mode and there are slow-path events in
10490 * the HBA. However, when the device is enabled with either MSI or Pin-IRQ
10491 * interrupt mode, this function is called as part of the device-level
10492 * interrupt handler. When the PCI slot is in error recovery or the HBA
10493 * is undergoing initialization, the interrupt handler will not process
10494 * the interrupt. The link attention and ELS ring attention events are
10495 * handled by the worker thread. The interrupt handler signals the worker
10496 * thread and returns for these events. This function is called without
10497 * any lock held. It gets the hbalock to access and update SLI data
9399627f
JS
10498 * structures.
10499 *
10500 * This function returns IRQ_HANDLED when interrupt is handled else it
10501 * returns IRQ_NONE.
e59058c4 10502 **/
dea3101e 10503irqreturn_t
3772a991 10504lpfc_sli_sp_intr_handler(int irq, void *dev_id)
dea3101e 10505{
2e0fef85 10506 struct lpfc_hba *phba;
a747c9ce 10507 uint32_t ha_copy, hc_copy;
dea3101e 10508 uint32_t work_ha_copy;
10509 unsigned long status;
5b75da2f 10510 unsigned long iflag;
dea3101e 10511 uint32_t control;
10512
92d7f7b0 10513 MAILBOX_t *mbox, *pmbox;
858c9f6c
JS
10514 struct lpfc_vport *vport;
10515 struct lpfc_nodelist *ndlp;
10516 struct lpfc_dmabuf *mp;
92d7f7b0
JS
10517 LPFC_MBOXQ_t *pmb;
10518 int rc;
10519
dea3101e 10520 /*
10521 * Get the driver's phba structure from the dev_id and
10522 * assume the HBA is not interrupting.
10523 */
9399627f 10524 phba = (struct lpfc_hba *)dev_id;
dea3101e 10525
10526 if (unlikely(!phba))
10527 return IRQ_NONE;
10528
dea3101e 10529 /*
9399627f
JS
10530 * Stuff needs to be attented to when this function is invoked as an
10531 * individual interrupt handler in MSI-X multi-message interrupt mode
dea3101e 10532 */
9399627f 10533 if (phba->intr_type == MSIX) {
3772a991
JS
10534 /* Check device state for handling interrupt */
10535 if (lpfc_intr_state_check(phba))
9399627f
JS
10536 return IRQ_NONE;
10537 /* Need to read HA REG for slow-path events */
5b75da2f 10538 spin_lock_irqsave(&phba->hbalock, iflag);
9940b97b
JS
10539 if (lpfc_readl(phba->HAregaddr, &ha_copy))
10540 goto unplug_error;
9399627f
JS
10541 /* If somebody is waiting to handle an eratt don't process it
10542 * here. The brdkill function will do this.
10543 */
10544 if (phba->link_flag & LS_IGNORE_ERATT)
10545 ha_copy &= ~HA_ERATT;
10546 /* Check the need for handling ERATT in interrupt handler */
10547 if (ha_copy & HA_ERATT) {
10548 if (phba->hba_flag & HBA_ERATT_HANDLED)
10549 /* ERATT polling has handled ERATT */
10550 ha_copy &= ~HA_ERATT;
10551 else
10552 /* Indicate interrupt handler handles ERATT */
10553 phba->hba_flag |= HBA_ERATT_HANDLED;
10554 }
a257bf90
JS
10555
10556 /*
10557 * If there is deferred error attention, do not check for any
10558 * interrupt.
10559 */
10560 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
3772a991 10561 spin_unlock_irqrestore(&phba->hbalock, iflag);
a257bf90
JS
10562 return IRQ_NONE;
10563 }
10564
9399627f 10565 /* Clear up only attention source related to slow-path */
9940b97b
JS
10566 if (lpfc_readl(phba->HCregaddr, &hc_copy))
10567 goto unplug_error;
10568
a747c9ce
JS
10569 writel(hc_copy & ~(HC_MBINT_ENA | HC_R2INT_ENA |
10570 HC_LAINT_ENA | HC_ERINT_ENA),
10571 phba->HCregaddr);
9399627f
JS
10572 writel((ha_copy & (HA_MBATT | HA_R2_CLR_MSK)),
10573 phba->HAregaddr);
a747c9ce 10574 writel(hc_copy, phba->HCregaddr);
9399627f 10575 readl(phba->HAregaddr); /* flush */
5b75da2f 10576 spin_unlock_irqrestore(&phba->hbalock, iflag);
9399627f
JS
10577 } else
10578 ha_copy = phba->ha_copy;
dea3101e 10579
dea3101e 10580 work_ha_copy = ha_copy & phba->work_ha_mask;
10581
9399627f 10582 if (work_ha_copy) {
dea3101e 10583 if (work_ha_copy & HA_LATT) {
10584 if (phba->sli.sli_flag & LPFC_PROCESS_LA) {
10585 /*
10586 * Turn off Link Attention interrupts
10587 * until CLEAR_LA done
10588 */
5b75da2f 10589 spin_lock_irqsave(&phba->hbalock, iflag);
dea3101e 10590 phba->sli.sli_flag &= ~LPFC_PROCESS_LA;
9940b97b
JS
10591 if (lpfc_readl(phba->HCregaddr, &control))
10592 goto unplug_error;
dea3101e 10593 control &= ~HC_LAINT_ENA;
10594 writel(control, phba->HCregaddr);
10595 readl(phba->HCregaddr); /* flush */
5b75da2f 10596 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea3101e 10597 }
10598 else
10599 work_ha_copy &= ~HA_LATT;
10600 }
10601
9399627f 10602 if (work_ha_copy & ~(HA_ERATT | HA_MBATT | HA_LATT)) {
858c9f6c
JS
10603 /*
10604 * Turn off Slow Rings interrupts, LPFC_ELS_RING is
10605 * the only slow ring.
10606 */
10607 status = (work_ha_copy &
10608 (HA_RXMASK << (4*LPFC_ELS_RING)));
10609 status >>= (4*LPFC_ELS_RING);
10610 if (status & HA_RXMASK) {
5b75da2f 10611 spin_lock_irqsave(&phba->hbalock, iflag);
9940b97b
JS
10612 if (lpfc_readl(phba->HCregaddr, &control))
10613 goto unplug_error;
a58cbd52
JS
10614
10615 lpfc_debugfs_slow_ring_trc(phba,
10616 "ISR slow ring: ctl:x%x stat:x%x isrcnt:x%x",
10617 control, status,
10618 (uint32_t)phba->sli.slistat.sli_intr);
10619
858c9f6c 10620 if (control & (HC_R0INT_ENA << LPFC_ELS_RING)) {
a58cbd52
JS
10621 lpfc_debugfs_slow_ring_trc(phba,
10622 "ISR Disable ring:"
10623 "pwork:x%x hawork:x%x wait:x%x",
10624 phba->work_ha, work_ha_copy,
10625 (uint32_t)((unsigned long)
5e9d9b82 10626 &phba->work_waitq));
a58cbd52 10627
858c9f6c
JS
10628 control &=
10629 ~(HC_R0INT_ENA << LPFC_ELS_RING);
dea3101e 10630 writel(control, phba->HCregaddr);
10631 readl(phba->HCregaddr); /* flush */
dea3101e 10632 }
a58cbd52
JS
10633 else {
10634 lpfc_debugfs_slow_ring_trc(phba,
10635 "ISR slow ring: pwork:"
10636 "x%x hawork:x%x wait:x%x",
10637 phba->work_ha, work_ha_copy,
10638 (uint32_t)((unsigned long)
5e9d9b82 10639 &phba->work_waitq));
a58cbd52 10640 }
5b75da2f 10641 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea3101e 10642 }
10643 }
5b75da2f 10644 spin_lock_irqsave(&phba->hbalock, iflag);
a257bf90 10645 if (work_ha_copy & HA_ERATT) {
9940b97b
JS
10646 if (lpfc_sli_read_hs(phba))
10647 goto unplug_error;
a257bf90
JS
10648 /*
10649 * Check if there is a deferred error condition
10650 * is active
10651 */
10652 if ((HS_FFER1 & phba->work_hs) &&
10653 ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
dcf2a4e0
JS
10654 HS_FFER6 | HS_FFER7 | HS_FFER8) &
10655 phba->work_hs)) {
a257bf90
JS
10656 phba->hba_flag |= DEFER_ERATT;
10657 /* Clear all interrupt enable conditions */
10658 writel(0, phba->HCregaddr);
10659 readl(phba->HCregaddr);
10660 }
10661 }
10662
9399627f 10663 if ((work_ha_copy & HA_MBATT) && (phba->sli.mbox_active)) {
92d7f7b0 10664 pmb = phba->sli.mbox_active;
04c68496 10665 pmbox = &pmb->u.mb;
34b02dcd 10666 mbox = phba->mbox;
858c9f6c 10667 vport = pmb->vport;
92d7f7b0
JS
10668
10669 /* First check out the status word */
10670 lpfc_sli_pcimem_bcopy(mbox, pmbox, sizeof(uint32_t));
10671 if (pmbox->mbxOwner != OWN_HOST) {
5b75da2f 10672 spin_unlock_irqrestore(&phba->hbalock, iflag);
92d7f7b0
JS
10673 /*
10674 * Stray Mailbox Interrupt, mbxCommand <cmd>
10675 * mbxStatus <status>
10676 */
09372820 10677 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
92d7f7b0 10678 LOG_SLI,
e8b62011 10679 "(%d):0304 Stray Mailbox "
92d7f7b0
JS
10680 "Interrupt mbxCommand x%x "
10681 "mbxStatus x%x\n",
e8b62011 10682 (vport ? vport->vpi : 0),
92d7f7b0
JS
10683 pmbox->mbxCommand,
10684 pmbox->mbxStatus);
09372820
JS
10685 /* clear mailbox attention bit */
10686 work_ha_copy &= ~HA_MBATT;
10687 } else {
97eab634 10688 phba->sli.mbox_active = NULL;
5b75da2f 10689 spin_unlock_irqrestore(&phba->hbalock, iflag);
09372820
JS
10690 phba->last_completion_time = jiffies;
10691 del_timer(&phba->sli.mbox_tmo);
09372820
JS
10692 if (pmb->mbox_cmpl) {
10693 lpfc_sli_pcimem_bcopy(mbox, pmbox,
10694 MAILBOX_CMD_SIZE);
7a470277
JS
10695 if (pmb->out_ext_byte_len &&
10696 pmb->context2)
10697 lpfc_sli_pcimem_bcopy(
10698 phba->mbox_ext,
10699 pmb->context2,
10700 pmb->out_ext_byte_len);
09372820
JS
10701 }
10702 if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
10703 pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
10704
10705 lpfc_debugfs_disc_trc(vport,
10706 LPFC_DISC_TRC_MBOX_VPORT,
10707 "MBOX dflt rpi: : "
10708 "status:x%x rpi:x%x",
10709 (uint32_t)pmbox->mbxStatus,
10710 pmbox->un.varWords[0], 0);
10711
10712 if (!pmbox->mbxStatus) {
10713 mp = (struct lpfc_dmabuf *)
10714 (pmb->context1);
10715 ndlp = (struct lpfc_nodelist *)
10716 pmb->context2;
10717
10718 /* Reg_LOGIN of dflt RPI was
10719 * successful. new lets get
10720 * rid of the RPI using the
10721 * same mbox buffer.
10722 */
10723 lpfc_unreg_login(phba,
10724 vport->vpi,
10725 pmbox->un.varWords[0],
10726 pmb);
10727 pmb->mbox_cmpl =
10728 lpfc_mbx_cmpl_dflt_rpi;
10729 pmb->context1 = mp;
10730 pmb->context2 = ndlp;
10731 pmb->vport = vport;
58da1ffb
JS
10732 rc = lpfc_sli_issue_mbox(phba,
10733 pmb,
10734 MBX_NOWAIT);
10735 if (rc != MBX_BUSY)
10736 lpfc_printf_log(phba,
10737 KERN_ERR,
10738 LOG_MBOX | LOG_SLI,
d7c255b2 10739 "0350 rc should have"
6a9c52cf 10740 "been MBX_BUSY\n");
3772a991
JS
10741 if (rc != MBX_NOT_FINISHED)
10742 goto send_current_mbox;
09372820 10743 }
858c9f6c 10744 }
5b75da2f
JS
10745 spin_lock_irqsave(
10746 &phba->pport->work_port_lock,
10747 iflag);
09372820
JS
10748 phba->pport->work_port_events &=
10749 ~WORKER_MBOX_TMO;
5b75da2f
JS
10750 spin_unlock_irqrestore(
10751 &phba->pport->work_port_lock,
10752 iflag);
09372820 10753 lpfc_mbox_cmpl_put(phba, pmb);
858c9f6c 10754 }
97eab634 10755 } else
5b75da2f 10756 spin_unlock_irqrestore(&phba->hbalock, iflag);
9399627f 10757
92d7f7b0
JS
10758 if ((work_ha_copy & HA_MBATT) &&
10759 (phba->sli.mbox_active == NULL)) {
858c9f6c 10760send_current_mbox:
92d7f7b0 10761 /* Process next mailbox command if there is one */
58da1ffb
JS
10762 do {
10763 rc = lpfc_sli_issue_mbox(phba, NULL,
10764 MBX_NOWAIT);
10765 } while (rc == MBX_NOT_FINISHED);
10766 if (rc != MBX_SUCCESS)
10767 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
10768 LOG_SLI, "0349 rc should be "
6a9c52cf 10769 "MBX_SUCCESS\n");
92d7f7b0
JS
10770 }
10771
5b75da2f 10772 spin_lock_irqsave(&phba->hbalock, iflag);
dea3101e 10773 phba->work_ha |= work_ha_copy;
5b75da2f 10774 spin_unlock_irqrestore(&phba->hbalock, iflag);
5e9d9b82 10775 lpfc_worker_wake_up(phba);
dea3101e 10776 }
9399627f 10777 return IRQ_HANDLED;
9940b97b
JS
10778unplug_error:
10779 spin_unlock_irqrestore(&phba->hbalock, iflag);
10780 return IRQ_HANDLED;
dea3101e 10781
3772a991 10782} /* lpfc_sli_sp_intr_handler */
9399627f
JS
10783
10784/**
3772a991 10785 * lpfc_sli_fp_intr_handler - Fast-path interrupt handler to SLI-3 device.
9399627f
JS
10786 * @irq: Interrupt number.
10787 * @dev_id: The device context pointer.
10788 *
10789 * This function is directly called from the PCI layer as an interrupt
3772a991
JS
10790 * service routine when device with SLI-3 interface spec is enabled with
10791 * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
10792 * ring event in the HBA. However, when the device is enabled with either
10793 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
10794 * device-level interrupt handler. When the PCI slot is in error recovery
10795 * or the HBA is undergoing initialization, the interrupt handler will not
10796 * process the interrupt. The SCSI FCP fast-path ring event are handled in
10797 * the intrrupt context. This function is called without any lock held.
10798 * It gets the hbalock to access and update SLI data structures.
9399627f
JS
10799 *
10800 * This function returns IRQ_HANDLED when interrupt is handled else it
10801 * returns IRQ_NONE.
10802 **/
10803irqreturn_t
3772a991 10804lpfc_sli_fp_intr_handler(int irq, void *dev_id)
9399627f
JS
10805{
10806 struct lpfc_hba *phba;
10807 uint32_t ha_copy;
10808 unsigned long status;
5b75da2f 10809 unsigned long iflag;
9399627f
JS
10810
10811 /* Get the driver's phba structure from the dev_id and
10812 * assume the HBA is not interrupting.
10813 */
10814 phba = (struct lpfc_hba *) dev_id;
10815
10816 if (unlikely(!phba))
10817 return IRQ_NONE;
10818
10819 /*
10820 * Stuff needs to be attented to when this function is invoked as an
10821 * individual interrupt handler in MSI-X multi-message interrupt mode
10822 */
10823 if (phba->intr_type == MSIX) {
3772a991
JS
10824 /* Check device state for handling interrupt */
10825 if (lpfc_intr_state_check(phba))
9399627f
JS
10826 return IRQ_NONE;
10827 /* Need to read HA REG for FCP ring and other ring events */
9940b97b
JS
10828 if (lpfc_readl(phba->HAregaddr, &ha_copy))
10829 return IRQ_HANDLED;
9399627f 10830 /* Clear up only attention source related to fast-path */
5b75da2f 10831 spin_lock_irqsave(&phba->hbalock, iflag);
a257bf90
JS
10832 /*
10833 * If there is deferred error attention, do not check for
10834 * any interrupt.
10835 */
10836 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
3772a991 10837 spin_unlock_irqrestore(&phba->hbalock, iflag);
a257bf90
JS
10838 return IRQ_NONE;
10839 }
9399627f
JS
10840 writel((ha_copy & (HA_R0_CLR_MSK | HA_R1_CLR_MSK)),
10841 phba->HAregaddr);
10842 readl(phba->HAregaddr); /* flush */
5b75da2f 10843 spin_unlock_irqrestore(&phba->hbalock, iflag);
9399627f
JS
10844 } else
10845 ha_copy = phba->ha_copy;
dea3101e 10846
10847 /*
9399627f 10848 * Process all events on FCP ring. Take the optimized path for FCP IO.
dea3101e 10849 */
9399627f
JS
10850 ha_copy &= ~(phba->work_ha_mask);
10851
10852 status = (ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
dea3101e 10853 status >>= (4*LPFC_FCP_RING);
858c9f6c 10854 if (status & HA_RXMASK)
dea3101e 10855 lpfc_sli_handle_fast_ring_event(phba,
10856 &phba->sli.ring[LPFC_FCP_RING],
10857 status);
a4bc3379
JS
10858
10859 if (phba->cfg_multi_ring_support == 2) {
10860 /*
9399627f
JS
10861 * Process all events on extra ring. Take the optimized path
10862 * for extra ring IO.
a4bc3379 10863 */
9399627f 10864 status = (ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
a4bc3379 10865 status >>= (4*LPFC_EXTRA_RING);
858c9f6c 10866 if (status & HA_RXMASK) {
a4bc3379
JS
10867 lpfc_sli_handle_fast_ring_event(phba,
10868 &phba->sli.ring[LPFC_EXTRA_RING],
10869 status);
10870 }
10871 }
dea3101e 10872 return IRQ_HANDLED;
3772a991 10873} /* lpfc_sli_fp_intr_handler */
9399627f
JS
10874
10875/**
3772a991 10876 * lpfc_sli_intr_handler - Device-level interrupt handler to SLI-3 device
9399627f
JS
10877 * @irq: Interrupt number.
10878 * @dev_id: The device context pointer.
10879 *
3772a991
JS
10880 * This function is the HBA device-level interrupt handler to device with
10881 * SLI-3 interface spec, called from the PCI layer when either MSI or
10882 * Pin-IRQ interrupt mode is enabled and there is an event in the HBA which
10883 * requires driver attention. This function invokes the slow-path interrupt
10884 * attention handling function and fast-path interrupt attention handling
10885 * function in turn to process the relevant HBA attention events. This
10886 * function is called without any lock held. It gets the hbalock to access
10887 * and update SLI data structures.
9399627f
JS
10888 *
10889 * This function returns IRQ_HANDLED when interrupt is handled, else it
10890 * returns IRQ_NONE.
10891 **/
10892irqreturn_t
3772a991 10893lpfc_sli_intr_handler(int irq, void *dev_id)
9399627f
JS
10894{
10895 struct lpfc_hba *phba;
10896 irqreturn_t sp_irq_rc, fp_irq_rc;
10897 unsigned long status1, status2;
a747c9ce 10898 uint32_t hc_copy;
9399627f
JS
10899
10900 /*
10901 * Get the driver's phba structure from the dev_id and
10902 * assume the HBA is not interrupting.
10903 */
10904 phba = (struct lpfc_hba *) dev_id;
10905
10906 if (unlikely(!phba))
10907 return IRQ_NONE;
10908
3772a991
JS
10909 /* Check device state for handling interrupt */
10910 if (lpfc_intr_state_check(phba))
9399627f
JS
10911 return IRQ_NONE;
10912
10913 spin_lock(&phba->hbalock);
9940b97b
JS
10914 if (lpfc_readl(phba->HAregaddr, &phba->ha_copy)) {
10915 spin_unlock(&phba->hbalock);
10916 return IRQ_HANDLED;
10917 }
10918
9399627f
JS
10919 if (unlikely(!phba->ha_copy)) {
10920 spin_unlock(&phba->hbalock);
10921 return IRQ_NONE;
10922 } else if (phba->ha_copy & HA_ERATT) {
10923 if (phba->hba_flag & HBA_ERATT_HANDLED)
10924 /* ERATT polling has handled ERATT */
10925 phba->ha_copy &= ~HA_ERATT;
10926 else
10927 /* Indicate interrupt handler handles ERATT */
10928 phba->hba_flag |= HBA_ERATT_HANDLED;
10929 }
10930
a257bf90
JS
10931 /*
10932 * If there is deferred error attention, do not check for any interrupt.
10933 */
10934 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
ec21b3b0 10935 spin_unlock(&phba->hbalock);
a257bf90
JS
10936 return IRQ_NONE;
10937 }
10938
9399627f 10939 /* Clear attention sources except link and error attentions */
9940b97b
JS
10940 if (lpfc_readl(phba->HCregaddr, &hc_copy)) {
10941 spin_unlock(&phba->hbalock);
10942 return IRQ_HANDLED;
10943 }
a747c9ce
JS
10944 writel(hc_copy & ~(HC_MBINT_ENA | HC_R0INT_ENA | HC_R1INT_ENA
10945 | HC_R2INT_ENA | HC_LAINT_ENA | HC_ERINT_ENA),
10946 phba->HCregaddr);
9399627f 10947 writel((phba->ha_copy & ~(HA_LATT | HA_ERATT)), phba->HAregaddr);
a747c9ce 10948 writel(hc_copy, phba->HCregaddr);
9399627f
JS
10949 readl(phba->HAregaddr); /* flush */
10950 spin_unlock(&phba->hbalock);
10951
10952 /*
10953 * Invokes slow-path host attention interrupt handling as appropriate.
10954 */
10955
10956 /* status of events with mailbox and link attention */
10957 status1 = phba->ha_copy & (HA_MBATT | HA_LATT | HA_ERATT);
10958
10959 /* status of events with ELS ring */
10960 status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_ELS_RING)));
10961 status2 >>= (4*LPFC_ELS_RING);
10962
10963 if (status1 || (status2 & HA_RXMASK))
3772a991 10964 sp_irq_rc = lpfc_sli_sp_intr_handler(irq, dev_id);
9399627f
JS
10965 else
10966 sp_irq_rc = IRQ_NONE;
10967
10968 /*
10969 * Invoke fast-path host attention interrupt handling as appropriate.
10970 */
10971
10972 /* status of events with FCP ring */
10973 status1 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
10974 status1 >>= (4*LPFC_FCP_RING);
10975
10976 /* status of events with extra ring */
10977 if (phba->cfg_multi_ring_support == 2) {
10978 status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
10979 status2 >>= (4*LPFC_EXTRA_RING);
10980 } else
10981 status2 = 0;
10982
10983 if ((status1 & HA_RXMASK) || (status2 & HA_RXMASK))
3772a991 10984 fp_irq_rc = lpfc_sli_fp_intr_handler(irq, dev_id);
9399627f
JS
10985 else
10986 fp_irq_rc = IRQ_NONE;
dea3101e 10987
9399627f
JS
10988 /* Return device-level interrupt handling status */
10989 return (sp_irq_rc == IRQ_HANDLED) ? sp_irq_rc : fp_irq_rc;
3772a991 10990} /* lpfc_sli_intr_handler */
4f774513
JS
10991
10992/**
10993 * lpfc_sli4_fcp_xri_abort_event_proc - Process fcp xri abort event
10994 * @phba: pointer to lpfc hba data structure.
10995 *
10996 * This routine is invoked by the worker thread to process all the pending
10997 * SLI4 FCP abort XRI events.
10998 **/
10999void lpfc_sli4_fcp_xri_abort_event_proc(struct lpfc_hba *phba)
11000{
11001 struct lpfc_cq_event *cq_event;
11002
11003 /* First, declare the fcp xri abort event has been handled */
11004 spin_lock_irq(&phba->hbalock);
11005 phba->hba_flag &= ~FCP_XRI_ABORT_EVENT;
11006 spin_unlock_irq(&phba->hbalock);
11007 /* Now, handle all the fcp xri abort events */
11008 while (!list_empty(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue)) {
11009 /* Get the first event from the head of the event queue */
11010 spin_lock_irq(&phba->hbalock);
11011 list_remove_head(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue,
11012 cq_event, struct lpfc_cq_event, list);
11013 spin_unlock_irq(&phba->hbalock);
11014 /* Notify aborted XRI for FCP work queue */
11015 lpfc_sli4_fcp_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
11016 /* Free the event processed back to the free pool */
11017 lpfc_sli4_cq_event_release(phba, cq_event);
11018 }
11019}
11020
11021/**
11022 * lpfc_sli4_els_xri_abort_event_proc - Process els xri abort event
11023 * @phba: pointer to lpfc hba data structure.
11024 *
11025 * This routine is invoked by the worker thread to process all the pending
11026 * SLI4 els abort xri events.
11027 **/
11028void lpfc_sli4_els_xri_abort_event_proc(struct lpfc_hba *phba)
11029{
11030 struct lpfc_cq_event *cq_event;
11031
11032 /* First, declare the els xri abort event has been handled */
11033 spin_lock_irq(&phba->hbalock);
11034 phba->hba_flag &= ~ELS_XRI_ABORT_EVENT;
11035 spin_unlock_irq(&phba->hbalock);
11036 /* Now, handle all the els xri abort events */
11037 while (!list_empty(&phba->sli4_hba.sp_els_xri_aborted_work_queue)) {
11038 /* Get the first event from the head of the event queue */
11039 spin_lock_irq(&phba->hbalock);
11040 list_remove_head(&phba->sli4_hba.sp_els_xri_aborted_work_queue,
11041 cq_event, struct lpfc_cq_event, list);
11042 spin_unlock_irq(&phba->hbalock);
11043 /* Notify aborted XRI for ELS work queue */
11044 lpfc_sli4_els_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
11045 /* Free the event processed back to the free pool */
11046 lpfc_sli4_cq_event_release(phba, cq_event);
11047 }
11048}
11049
341af102
JS
11050/**
11051 * lpfc_sli4_iocb_param_transfer - Transfer pIocbOut and cmpl status to pIocbIn
11052 * @phba: pointer to lpfc hba data structure
11053 * @pIocbIn: pointer to the rspiocbq
11054 * @pIocbOut: pointer to the cmdiocbq
11055 * @wcqe: pointer to the complete wcqe
11056 *
11057 * This routine transfers the fields of a command iocbq to a response iocbq
11058 * by copying all the IOCB fields from command iocbq and transferring the
11059 * completion status information from the complete wcqe.
11060 **/
4f774513 11061static void
341af102
JS
11062lpfc_sli4_iocb_param_transfer(struct lpfc_hba *phba,
11063 struct lpfc_iocbq *pIocbIn,
4f774513
JS
11064 struct lpfc_iocbq *pIocbOut,
11065 struct lpfc_wcqe_complete *wcqe)
11066{
341af102 11067 unsigned long iflags;
acd6859b 11068 uint32_t status;
4f774513
JS
11069 size_t offset = offsetof(struct lpfc_iocbq, iocb);
11070
11071 memcpy((char *)pIocbIn + offset, (char *)pIocbOut + offset,
11072 sizeof(struct lpfc_iocbq) - offset);
4f774513 11073 /* Map WCQE parameters into irspiocb parameters */
acd6859b
JS
11074 status = bf_get(lpfc_wcqe_c_status, wcqe);
11075 pIocbIn->iocb.ulpStatus = (status & LPFC_IOCB_STATUS_MASK);
4f774513
JS
11076 if (pIocbOut->iocb_flag & LPFC_IO_FCP)
11077 if (pIocbIn->iocb.ulpStatus == IOSTAT_FCP_RSP_ERROR)
11078 pIocbIn->iocb.un.fcpi.fcpi_parm =
11079 pIocbOut->iocb.un.fcpi.fcpi_parm -
11080 wcqe->total_data_placed;
11081 else
11082 pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
695a814e 11083 else {
4f774513 11084 pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
695a814e
JS
11085 pIocbIn->iocb.un.genreq64.bdl.bdeSize = wcqe->total_data_placed;
11086 }
341af102 11087
acd6859b
JS
11088 /* Convert BG errors for completion status */
11089 if (status == CQE_STATUS_DI_ERROR) {
11090 pIocbIn->iocb.ulpStatus = IOSTAT_LOCAL_REJECT;
11091
11092 if (bf_get(lpfc_wcqe_c_bg_edir, wcqe))
11093 pIocbIn->iocb.un.ulpWord[4] = IOERR_RX_DMA_FAILED;
11094 else
11095 pIocbIn->iocb.un.ulpWord[4] = IOERR_TX_DMA_FAILED;
11096
11097 pIocbIn->iocb.unsli3.sli3_bg.bgstat = 0;
11098 if (bf_get(lpfc_wcqe_c_bg_ge, wcqe)) /* Guard Check failed */
11099 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11100 BGS_GUARD_ERR_MASK;
11101 if (bf_get(lpfc_wcqe_c_bg_ae, wcqe)) /* App Tag Check failed */
11102 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11103 BGS_APPTAG_ERR_MASK;
11104 if (bf_get(lpfc_wcqe_c_bg_re, wcqe)) /* Ref Tag Check failed */
11105 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11106 BGS_REFTAG_ERR_MASK;
11107
11108 /* Check to see if there was any good data before the error */
11109 if (bf_get(lpfc_wcqe_c_bg_tdpv, wcqe)) {
11110 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11111 BGS_HI_WATER_MARK_PRESENT_MASK;
11112 pIocbIn->iocb.unsli3.sli3_bg.bghm =
11113 wcqe->total_data_placed;
11114 }
11115
11116 /*
11117 * Set ALL the error bits to indicate we don't know what
11118 * type of error it is.
11119 */
11120 if (!pIocbIn->iocb.unsli3.sli3_bg.bgstat)
11121 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
11122 (BGS_REFTAG_ERR_MASK | BGS_APPTAG_ERR_MASK |
11123 BGS_GUARD_ERR_MASK);
11124 }
11125
341af102
JS
11126 /* Pick up HBA exchange busy condition */
11127 if (bf_get(lpfc_wcqe_c_xb, wcqe)) {
11128 spin_lock_irqsave(&phba->hbalock, iflags);
11129 pIocbIn->iocb_flag |= LPFC_EXCHANGE_BUSY;
11130 spin_unlock_irqrestore(&phba->hbalock, iflags);
11131 }
4f774513
JS
11132}
11133
45ed1190
JS
11134/**
11135 * lpfc_sli4_els_wcqe_to_rspiocbq - Get response iocbq from els wcqe
11136 * @phba: Pointer to HBA context object.
11137 * @wcqe: Pointer to work-queue completion queue entry.
11138 *
11139 * This routine handles an ELS work-queue completion event and construct
11140 * a pseudo response ELS IODBQ from the SLI4 ELS WCQE for the common
11141 * discovery engine to handle.
11142 *
11143 * Return: Pointer to the receive IOCBQ, NULL otherwise.
11144 **/
11145static struct lpfc_iocbq *
11146lpfc_sli4_els_wcqe_to_rspiocbq(struct lpfc_hba *phba,
11147 struct lpfc_iocbq *irspiocbq)
11148{
11149 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
11150 struct lpfc_iocbq *cmdiocbq;
11151 struct lpfc_wcqe_complete *wcqe;
11152 unsigned long iflags;
11153
11154 wcqe = &irspiocbq->cq_event.cqe.wcqe_cmpl;
7e56aa25 11155 spin_lock_irqsave(&pring->ring_lock, iflags);
45ed1190
JS
11156 pring->stats.iocb_event++;
11157 /* Look up the ELS command IOCB and create pseudo response IOCB */
11158 cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
11159 bf_get(lpfc_wcqe_c_request_tag, wcqe));
7e56aa25 11160 spin_unlock_irqrestore(&pring->ring_lock, iflags);
45ed1190
JS
11161
11162 if (unlikely(!cmdiocbq)) {
11163 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11164 "0386 ELS complete with no corresponding "
11165 "cmdiocb: iotag (%d)\n",
11166 bf_get(lpfc_wcqe_c_request_tag, wcqe));
11167 lpfc_sli_release_iocbq(phba, irspiocbq);
11168 return NULL;
11169 }
11170
11171 /* Fake the irspiocbq and copy necessary response information */
341af102 11172 lpfc_sli4_iocb_param_transfer(phba, irspiocbq, cmdiocbq, wcqe);
45ed1190
JS
11173
11174 return irspiocbq;
11175}
11176
04c68496
JS
11177/**
11178 * lpfc_sli4_sp_handle_async_event - Handle an asynchroous event
11179 * @phba: Pointer to HBA context object.
11180 * @cqe: Pointer to mailbox completion queue entry.
11181 *
11182 * This routine process a mailbox completion queue entry with asynchrous
11183 * event.
11184 *
11185 * Return: true if work posted to worker thread, otherwise false.
11186 **/
11187static bool
11188lpfc_sli4_sp_handle_async_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
11189{
11190 struct lpfc_cq_event *cq_event;
11191 unsigned long iflags;
11192
11193 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
11194 "0392 Async Event: word0:x%x, word1:x%x, "
11195 "word2:x%x, word3:x%x\n", mcqe->word0,
11196 mcqe->mcqe_tag0, mcqe->mcqe_tag1, mcqe->trailer);
11197
11198 /* Allocate a new internal CQ_EVENT entry */
11199 cq_event = lpfc_sli4_cq_event_alloc(phba);
11200 if (!cq_event) {
11201 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11202 "0394 Failed to allocate CQ_EVENT entry\n");
11203 return false;
11204 }
11205
11206 /* Move the CQE into an asynchronous event entry */
11207 memcpy(&cq_event->cqe, mcqe, sizeof(struct lpfc_mcqe));
11208 spin_lock_irqsave(&phba->hbalock, iflags);
11209 list_add_tail(&cq_event->list, &phba->sli4_hba.sp_asynce_work_queue);
11210 /* Set the async event flag */
11211 phba->hba_flag |= ASYNC_EVENT;
11212 spin_unlock_irqrestore(&phba->hbalock, iflags);
11213
11214 return true;
11215}
11216
11217/**
11218 * lpfc_sli4_sp_handle_mbox_event - Handle a mailbox completion event
11219 * @phba: Pointer to HBA context object.
11220 * @cqe: Pointer to mailbox completion queue entry.
11221 *
11222 * This routine process a mailbox completion queue entry with mailbox
11223 * completion event.
11224 *
11225 * Return: true if work posted to worker thread, otherwise false.
11226 **/
11227static bool
11228lpfc_sli4_sp_handle_mbox_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
11229{
11230 uint32_t mcqe_status;
11231 MAILBOX_t *mbox, *pmbox;
11232 struct lpfc_mqe *mqe;
11233 struct lpfc_vport *vport;
11234 struct lpfc_nodelist *ndlp;
11235 struct lpfc_dmabuf *mp;
11236 unsigned long iflags;
11237 LPFC_MBOXQ_t *pmb;
11238 bool workposted = false;
11239 int rc;
11240
11241 /* If not a mailbox complete MCQE, out by checking mailbox consume */
11242 if (!bf_get(lpfc_trailer_completed, mcqe))
11243 goto out_no_mqe_complete;
11244
11245 /* Get the reference to the active mbox command */
11246 spin_lock_irqsave(&phba->hbalock, iflags);
11247 pmb = phba->sli.mbox_active;
11248 if (unlikely(!pmb)) {
11249 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
11250 "1832 No pending MBOX command to handle\n");
11251 spin_unlock_irqrestore(&phba->hbalock, iflags);
11252 goto out_no_mqe_complete;
11253 }
11254 spin_unlock_irqrestore(&phba->hbalock, iflags);
11255 mqe = &pmb->u.mqe;
11256 pmbox = (MAILBOX_t *)&pmb->u.mqe;
11257 mbox = phba->mbox;
11258 vport = pmb->vport;
11259
11260 /* Reset heartbeat timer */
11261 phba->last_completion_time = jiffies;
11262 del_timer(&phba->sli.mbox_tmo);
11263
11264 /* Move mbox data to caller's mailbox region, do endian swapping */
11265 if (pmb->mbox_cmpl && mbox)
11266 lpfc_sli_pcimem_bcopy(mbox, mqe, sizeof(struct lpfc_mqe));
04c68496 11267
73d91e50
JS
11268 /*
11269 * For mcqe errors, conditionally move a modified error code to
11270 * the mbox so that the error will not be missed.
11271 */
11272 mcqe_status = bf_get(lpfc_mcqe_status, mcqe);
11273 if (mcqe_status != MB_CQE_STATUS_SUCCESS) {
11274 if (bf_get(lpfc_mqe_status, mqe) == MBX_SUCCESS)
11275 bf_set(lpfc_mqe_status, mqe,
11276 (LPFC_MBX_ERROR_RANGE | mcqe_status));
11277 }
04c68496
JS
11278 if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
11279 pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
11280 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_MBOX_VPORT,
11281 "MBOX dflt rpi: status:x%x rpi:x%x",
11282 mcqe_status,
11283 pmbox->un.varWords[0], 0);
11284 if (mcqe_status == MB_CQE_STATUS_SUCCESS) {
11285 mp = (struct lpfc_dmabuf *)(pmb->context1);
11286 ndlp = (struct lpfc_nodelist *)pmb->context2;
11287 /* Reg_LOGIN of dflt RPI was successful. Now lets get
11288 * RID of the PPI using the same mbox buffer.
11289 */
11290 lpfc_unreg_login(phba, vport->vpi,
11291 pmbox->un.varWords[0], pmb);
11292 pmb->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
11293 pmb->context1 = mp;
11294 pmb->context2 = ndlp;
11295 pmb->vport = vport;
11296 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
11297 if (rc != MBX_BUSY)
11298 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
11299 LOG_SLI, "0385 rc should "
11300 "have been MBX_BUSY\n");
11301 if (rc != MBX_NOT_FINISHED)
11302 goto send_current_mbox;
11303 }
11304 }
11305 spin_lock_irqsave(&phba->pport->work_port_lock, iflags);
11306 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
11307 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflags);
11308
11309 /* There is mailbox completion work to do */
11310 spin_lock_irqsave(&phba->hbalock, iflags);
11311 __lpfc_mbox_cmpl_put(phba, pmb);
11312 phba->work_ha |= HA_MBATT;
11313 spin_unlock_irqrestore(&phba->hbalock, iflags);
11314 workposted = true;
11315
11316send_current_mbox:
11317 spin_lock_irqsave(&phba->hbalock, iflags);
11318 /* Release the mailbox command posting token */
11319 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
11320 /* Setting active mailbox pointer need to be in sync to flag clear */
11321 phba->sli.mbox_active = NULL;
11322 spin_unlock_irqrestore(&phba->hbalock, iflags);
11323 /* Wake up worker thread to post the next pending mailbox command */
11324 lpfc_worker_wake_up(phba);
11325out_no_mqe_complete:
11326 if (bf_get(lpfc_trailer_consumed, mcqe))
11327 lpfc_sli4_mq_release(phba->sli4_hba.mbx_wq);
11328 return workposted;
11329}
11330
11331/**
11332 * lpfc_sli4_sp_handle_mcqe - Process a mailbox completion queue entry
11333 * @phba: Pointer to HBA context object.
11334 * @cqe: Pointer to mailbox completion queue entry.
11335 *
11336 * This routine process a mailbox completion queue entry, it invokes the
11337 * proper mailbox complete handling or asynchrous event handling routine
11338 * according to the MCQE's async bit.
11339 *
11340 * Return: true if work posted to worker thread, otherwise false.
11341 **/
11342static bool
11343lpfc_sli4_sp_handle_mcqe(struct lpfc_hba *phba, struct lpfc_cqe *cqe)
11344{
11345 struct lpfc_mcqe mcqe;
11346 bool workposted;
11347
11348 /* Copy the mailbox MCQE and convert endian order as needed */
11349 lpfc_sli_pcimem_bcopy(cqe, &mcqe, sizeof(struct lpfc_mcqe));
11350
11351 /* Invoke the proper event handling routine */
11352 if (!bf_get(lpfc_trailer_async, &mcqe))
11353 workposted = lpfc_sli4_sp_handle_mbox_event(phba, &mcqe);
11354 else
11355 workposted = lpfc_sli4_sp_handle_async_event(phba, &mcqe);
11356 return workposted;
11357}
11358
4f774513
JS
11359/**
11360 * lpfc_sli4_sp_handle_els_wcqe - Handle els work-queue completion event
11361 * @phba: Pointer to HBA context object.
2a76a283 11362 * @cq: Pointer to associated CQ
4f774513
JS
11363 * @wcqe: Pointer to work-queue completion queue entry.
11364 *
11365 * This routine handles an ELS work-queue completion event.
11366 *
11367 * Return: true if work posted to worker thread, otherwise false.
11368 **/
11369static bool
2a76a283 11370lpfc_sli4_sp_handle_els_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
4f774513
JS
11371 struct lpfc_wcqe_complete *wcqe)
11372{
4f774513
JS
11373 struct lpfc_iocbq *irspiocbq;
11374 unsigned long iflags;
2a76a283 11375 struct lpfc_sli_ring *pring = cq->pring;
0e9bb8d7
JS
11376 int txq_cnt = 0;
11377 int txcmplq_cnt = 0;
11378 int fcp_txcmplq_cnt = 0;
4f774513 11379
45ed1190 11380 /* Get an irspiocbq for later ELS response processing use */
4f774513
JS
11381 irspiocbq = lpfc_sli_get_iocbq(phba);
11382 if (!irspiocbq) {
0e9bb8d7
JS
11383 if (!list_empty(&pring->txq))
11384 txq_cnt++;
11385 if (!list_empty(&pring->txcmplq))
11386 txcmplq_cnt++;
11387 if (!list_empty(&phba->sli.ring[LPFC_FCP_RING].txcmplq))
11388 fcp_txcmplq_cnt++;
4f774513 11389 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2a9bf3d0
JS
11390 "0387 NO IOCBQ data: txq_cnt=%d iocb_cnt=%d "
11391 "fcp_txcmplq_cnt=%d, els_txcmplq_cnt=%d\n",
0e9bb8d7
JS
11392 txq_cnt, phba->iocb_cnt,
11393 fcp_txcmplq_cnt,
11394 txcmplq_cnt);
45ed1190 11395 return false;
4f774513 11396 }
4f774513 11397
45ed1190
JS
11398 /* Save off the slow-path queue event for work thread to process */
11399 memcpy(&irspiocbq->cq_event.cqe.wcqe_cmpl, wcqe, sizeof(*wcqe));
4f774513 11400 spin_lock_irqsave(&phba->hbalock, iflags);
4d9ab994 11401 list_add_tail(&irspiocbq->cq_event.list,
45ed1190
JS
11402 &phba->sli4_hba.sp_queue_event);
11403 phba->hba_flag |= HBA_SP_QUEUE_EVT;
4f774513 11404 spin_unlock_irqrestore(&phba->hbalock, iflags);
4f774513 11405
45ed1190 11406 return true;
4f774513
JS
11407}
11408
11409/**
11410 * lpfc_sli4_sp_handle_rel_wcqe - Handle slow-path WQ entry consumed event
11411 * @phba: Pointer to HBA context object.
11412 * @wcqe: Pointer to work-queue completion queue entry.
11413 *
11414 * This routine handles slow-path WQ entry comsumed event by invoking the
11415 * proper WQ release routine to the slow-path WQ.
11416 **/
11417static void
11418lpfc_sli4_sp_handle_rel_wcqe(struct lpfc_hba *phba,
11419 struct lpfc_wcqe_release *wcqe)
11420{
2e90f4b5
JS
11421 /* sanity check on queue memory */
11422 if (unlikely(!phba->sli4_hba.els_wq))
11423 return;
4f774513
JS
11424 /* Check for the slow-path ELS work queue */
11425 if (bf_get(lpfc_wcqe_r_wq_id, wcqe) == phba->sli4_hba.els_wq->queue_id)
11426 lpfc_sli4_wq_release(phba->sli4_hba.els_wq,
11427 bf_get(lpfc_wcqe_r_wqe_index, wcqe));
11428 else
11429 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11430 "2579 Slow-path wqe consume event carries "
11431 "miss-matched qid: wcqe-qid=x%x, sp-qid=x%x\n",
11432 bf_get(lpfc_wcqe_r_wqe_index, wcqe),
11433 phba->sli4_hba.els_wq->queue_id);
11434}
11435
11436/**
11437 * lpfc_sli4_sp_handle_abort_xri_wcqe - Handle a xri abort event
11438 * @phba: Pointer to HBA context object.
11439 * @cq: Pointer to a WQ completion queue.
11440 * @wcqe: Pointer to work-queue completion queue entry.
11441 *
11442 * This routine handles an XRI abort event.
11443 *
11444 * Return: true if work posted to worker thread, otherwise false.
11445 **/
11446static bool
11447lpfc_sli4_sp_handle_abort_xri_wcqe(struct lpfc_hba *phba,
11448 struct lpfc_queue *cq,
11449 struct sli4_wcqe_xri_aborted *wcqe)
11450{
11451 bool workposted = false;
11452 struct lpfc_cq_event *cq_event;
11453 unsigned long iflags;
11454
11455 /* Allocate a new internal CQ_EVENT entry */
11456 cq_event = lpfc_sli4_cq_event_alloc(phba);
11457 if (!cq_event) {
11458 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11459 "0602 Failed to allocate CQ_EVENT entry\n");
11460 return false;
11461 }
11462
11463 /* Move the CQE into the proper xri abort event list */
11464 memcpy(&cq_event->cqe, wcqe, sizeof(struct sli4_wcqe_xri_aborted));
11465 switch (cq->subtype) {
11466 case LPFC_FCP:
11467 spin_lock_irqsave(&phba->hbalock, iflags);
11468 list_add_tail(&cq_event->list,
11469 &phba->sli4_hba.sp_fcp_xri_aborted_work_queue);
11470 /* Set the fcp xri abort event flag */
11471 phba->hba_flag |= FCP_XRI_ABORT_EVENT;
11472 spin_unlock_irqrestore(&phba->hbalock, iflags);
11473 workposted = true;
11474 break;
11475 case LPFC_ELS:
11476 spin_lock_irqsave(&phba->hbalock, iflags);
11477 list_add_tail(&cq_event->list,
11478 &phba->sli4_hba.sp_els_xri_aborted_work_queue);
11479 /* Set the els xri abort event flag */
11480 phba->hba_flag |= ELS_XRI_ABORT_EVENT;
11481 spin_unlock_irqrestore(&phba->hbalock, iflags);
11482 workposted = true;
11483 break;
11484 default:
11485 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11486 "0603 Invalid work queue CQE subtype (x%x)\n",
11487 cq->subtype);
11488 workposted = false;
11489 break;
11490 }
11491 return workposted;
11492}
11493
4f774513
JS
11494/**
11495 * lpfc_sli4_sp_handle_rcqe - Process a receive-queue completion queue entry
11496 * @phba: Pointer to HBA context object.
11497 * @rcqe: Pointer to receive-queue completion queue entry.
11498 *
11499 * This routine process a receive-queue completion queue entry.
11500 *
11501 * Return: true if work posted to worker thread, otherwise false.
11502 **/
11503static bool
4d9ab994 11504lpfc_sli4_sp_handle_rcqe(struct lpfc_hba *phba, struct lpfc_rcqe *rcqe)
4f774513 11505{
4f774513
JS
11506 bool workposted = false;
11507 struct lpfc_queue *hrq = phba->sli4_hba.hdr_rq;
11508 struct lpfc_queue *drq = phba->sli4_hba.dat_rq;
11509 struct hbq_dmabuf *dma_buf;
7851fe2c 11510 uint32_t status, rq_id;
4f774513
JS
11511 unsigned long iflags;
11512
2e90f4b5
JS
11513 /* sanity check on queue memory */
11514 if (unlikely(!hrq) || unlikely(!drq))
11515 return workposted;
11516
7851fe2c
JS
11517 if (bf_get(lpfc_cqe_code, rcqe) == CQE_CODE_RECEIVE_V1)
11518 rq_id = bf_get(lpfc_rcqe_rq_id_v1, rcqe);
11519 else
11520 rq_id = bf_get(lpfc_rcqe_rq_id, rcqe);
11521 if (rq_id != hrq->queue_id)
4f774513
JS
11522 goto out;
11523
4d9ab994 11524 status = bf_get(lpfc_rcqe_status, rcqe);
4f774513
JS
11525 switch (status) {
11526 case FC_STATUS_RQ_BUF_LEN_EXCEEDED:
11527 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11528 "2537 Receive Frame Truncated!!\n");
b84daac9 11529 hrq->RQ_buf_trunc++;
4f774513 11530 case FC_STATUS_RQ_SUCCESS:
5ffc266e 11531 lpfc_sli4_rq_release(hrq, drq);
4f774513
JS
11532 spin_lock_irqsave(&phba->hbalock, iflags);
11533 dma_buf = lpfc_sli_hbqbuf_get(&phba->hbqs[0].hbq_buffer_list);
11534 if (!dma_buf) {
b84daac9 11535 hrq->RQ_no_buf_found++;
4f774513
JS
11536 spin_unlock_irqrestore(&phba->hbalock, iflags);
11537 goto out;
11538 }
b84daac9 11539 hrq->RQ_rcv_buf++;
4d9ab994 11540 memcpy(&dma_buf->cq_event.cqe.rcqe_cmpl, rcqe, sizeof(*rcqe));
4f774513 11541 /* save off the frame for the word thread to process */
4d9ab994 11542 list_add_tail(&dma_buf->cq_event.list,
45ed1190 11543 &phba->sli4_hba.sp_queue_event);
4f774513 11544 /* Frame received */
45ed1190 11545 phba->hba_flag |= HBA_SP_QUEUE_EVT;
4f774513
JS
11546 spin_unlock_irqrestore(&phba->hbalock, iflags);
11547 workposted = true;
11548 break;
11549 case FC_STATUS_INSUFF_BUF_NEED_BUF:
11550 case FC_STATUS_INSUFF_BUF_FRM_DISC:
b84daac9 11551 hrq->RQ_no_posted_buf++;
4f774513
JS
11552 /* Post more buffers if possible */
11553 spin_lock_irqsave(&phba->hbalock, iflags);
11554 phba->hba_flag |= HBA_POST_RECEIVE_BUFFER;
11555 spin_unlock_irqrestore(&phba->hbalock, iflags);
11556 workposted = true;
11557 break;
11558 }
11559out:
11560 return workposted;
4f774513
JS
11561}
11562
4d9ab994
JS
11563/**
11564 * lpfc_sli4_sp_handle_cqe - Process a slow path completion queue entry
11565 * @phba: Pointer to HBA context object.
11566 * @cq: Pointer to the completion queue.
11567 * @wcqe: Pointer to a completion queue entry.
11568 *
25985edc 11569 * This routine process a slow-path work-queue or receive queue completion queue
4d9ab994
JS
11570 * entry.
11571 *
11572 * Return: true if work posted to worker thread, otherwise false.
11573 **/
11574static bool
11575lpfc_sli4_sp_handle_cqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
11576 struct lpfc_cqe *cqe)
11577{
45ed1190 11578 struct lpfc_cqe cqevt;
4d9ab994
JS
11579 bool workposted = false;
11580
11581 /* Copy the work queue CQE and convert endian order if needed */
45ed1190 11582 lpfc_sli_pcimem_bcopy(cqe, &cqevt, sizeof(struct lpfc_cqe));
4d9ab994
JS
11583
11584 /* Check and process for different type of WCQE and dispatch */
45ed1190 11585 switch (bf_get(lpfc_cqe_code, &cqevt)) {
4d9ab994 11586 case CQE_CODE_COMPL_WQE:
45ed1190 11587 /* Process the WQ/RQ complete event */
bc73905a 11588 phba->last_completion_time = jiffies;
2a76a283 11589 workposted = lpfc_sli4_sp_handle_els_wcqe(phba, cq,
45ed1190 11590 (struct lpfc_wcqe_complete *)&cqevt);
4d9ab994
JS
11591 break;
11592 case CQE_CODE_RELEASE_WQE:
11593 /* Process the WQ release event */
11594 lpfc_sli4_sp_handle_rel_wcqe(phba,
45ed1190 11595 (struct lpfc_wcqe_release *)&cqevt);
4d9ab994
JS
11596 break;
11597 case CQE_CODE_XRI_ABORTED:
11598 /* Process the WQ XRI abort event */
bc73905a 11599 phba->last_completion_time = jiffies;
4d9ab994 11600 workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
45ed1190 11601 (struct sli4_wcqe_xri_aborted *)&cqevt);
4d9ab994
JS
11602 break;
11603 case CQE_CODE_RECEIVE:
7851fe2c 11604 case CQE_CODE_RECEIVE_V1:
4d9ab994 11605 /* Process the RQ event */
bc73905a 11606 phba->last_completion_time = jiffies;
4d9ab994 11607 workposted = lpfc_sli4_sp_handle_rcqe(phba,
45ed1190 11608 (struct lpfc_rcqe *)&cqevt);
4d9ab994
JS
11609 break;
11610 default:
11611 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11612 "0388 Not a valid WCQE code: x%x\n",
45ed1190 11613 bf_get(lpfc_cqe_code, &cqevt));
4d9ab994
JS
11614 break;
11615 }
11616 return workposted;
11617}
11618
4f774513
JS
11619/**
11620 * lpfc_sli4_sp_handle_eqe - Process a slow-path event queue entry
11621 * @phba: Pointer to HBA context object.
11622 * @eqe: Pointer to fast-path event queue entry.
11623 *
11624 * This routine process a event queue entry from the slow-path event queue.
11625 * It will check the MajorCode and MinorCode to determine this is for a
11626 * completion event on a completion queue, if not, an error shall be logged
11627 * and just return. Otherwise, it will get to the corresponding completion
11628 * queue and process all the entries on that completion queue, rearm the
11629 * completion queue, and then return.
11630 *
11631 **/
11632static void
67d12733
JS
11633lpfc_sli4_sp_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe,
11634 struct lpfc_queue *speq)
4f774513 11635{
67d12733 11636 struct lpfc_queue *cq = NULL, *childq;
4f774513
JS
11637 struct lpfc_cqe *cqe;
11638 bool workposted = false;
11639 int ecount = 0;
11640 uint16_t cqid;
11641
4f774513 11642 /* Get the reference to the corresponding CQ */
cb5172ea 11643 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
4f774513 11644
4f774513
JS
11645 list_for_each_entry(childq, &speq->child_list, list) {
11646 if (childq->queue_id == cqid) {
11647 cq = childq;
11648 break;
11649 }
11650 }
11651 if (unlikely(!cq)) {
75baf696
JS
11652 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
11653 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11654 "0365 Slow-path CQ identifier "
11655 "(%d) does not exist\n", cqid);
4f774513
JS
11656 return;
11657 }
11658
11659 /* Process all the entries to the CQ */
11660 switch (cq->type) {
11661 case LPFC_MCQ:
11662 while ((cqe = lpfc_sli4_cq_get(cq))) {
11663 workposted |= lpfc_sli4_sp_handle_mcqe(phba, cqe);
73d91e50 11664 if (!(++ecount % cq->entry_repost))
4f774513 11665 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
b84daac9 11666 cq->CQ_mbox++;
4f774513
JS
11667 }
11668 break;
11669 case LPFC_WCQ:
11670 while ((cqe = lpfc_sli4_cq_get(cq))) {
0558056c
JS
11671 if (cq->subtype == LPFC_FCP)
11672 workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq,
11673 cqe);
11674 else
11675 workposted |= lpfc_sli4_sp_handle_cqe(phba, cq,
11676 cqe);
73d91e50 11677 if (!(++ecount % cq->entry_repost))
4f774513
JS
11678 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
11679 }
b84daac9
JS
11680
11681 /* Track the max number of CQEs processed in 1 EQ */
11682 if (ecount > cq->CQ_max_cqe)
11683 cq->CQ_max_cqe = ecount;
4f774513
JS
11684 break;
11685 default:
11686 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11687 "0370 Invalid completion queue type (%d)\n",
11688 cq->type);
11689 return;
11690 }
11691
11692 /* Catch the no cq entry condition, log an error */
11693 if (unlikely(ecount == 0))
11694 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11695 "0371 No entry from the CQ: identifier "
11696 "(x%x), type (%d)\n", cq->queue_id, cq->type);
11697
11698 /* In any case, flash and re-arm the RCQ */
11699 lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
11700
11701 /* wake up worker thread if there are works to be done */
11702 if (workposted)
11703 lpfc_worker_wake_up(phba);
11704}
11705
11706/**
11707 * lpfc_sli4_fp_handle_fcp_wcqe - Process fast-path work queue completion entry
2a76a283
JS
11708 * @phba: Pointer to HBA context object.
11709 * @cq: Pointer to associated CQ
11710 * @wcqe: Pointer to work-queue completion queue entry.
4f774513
JS
11711 *
11712 * This routine process a fast-path work queue completion entry from fast-path
11713 * event queue for FCP command response completion.
11714 **/
11715static void
2a76a283 11716lpfc_sli4_fp_handle_fcp_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
4f774513
JS
11717 struct lpfc_wcqe_complete *wcqe)
11718{
2a76a283 11719 struct lpfc_sli_ring *pring = cq->pring;
4f774513
JS
11720 struct lpfc_iocbq *cmdiocbq;
11721 struct lpfc_iocbq irspiocbq;
11722 unsigned long iflags;
11723
4f774513
JS
11724 /* Check for response status */
11725 if (unlikely(bf_get(lpfc_wcqe_c_status, wcqe))) {
11726 /* If resource errors reported from HBA, reduce queue
11727 * depth of the SCSI device.
11728 */
e3d2b802
JS
11729 if (((bf_get(lpfc_wcqe_c_status, wcqe) ==
11730 IOSTAT_LOCAL_REJECT)) &&
11731 ((wcqe->parameter & IOERR_PARAM_MASK) ==
11732 IOERR_NO_RESOURCES))
4f774513 11733 phba->lpfc_rampdown_queue_depth(phba);
e3d2b802 11734
4f774513
JS
11735 /* Log the error status */
11736 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11737 "0373 FCP complete error: status=x%x, "
11738 "hw_status=x%x, total_data_specified=%d, "
11739 "parameter=x%x, word3=x%x\n",
11740 bf_get(lpfc_wcqe_c_status, wcqe),
11741 bf_get(lpfc_wcqe_c_hw_status, wcqe),
11742 wcqe->total_data_placed, wcqe->parameter,
11743 wcqe->word3);
11744 }
11745
11746 /* Look up the FCP command IOCB and create pseudo response IOCB */
7e56aa25
JS
11747 spin_lock_irqsave(&pring->ring_lock, iflags);
11748 pring->stats.iocb_event++;
4f774513
JS
11749 cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
11750 bf_get(lpfc_wcqe_c_request_tag, wcqe));
7e56aa25 11751 spin_unlock_irqrestore(&pring->ring_lock, iflags);
4f774513
JS
11752 if (unlikely(!cmdiocbq)) {
11753 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11754 "0374 FCP complete with no corresponding "
11755 "cmdiocb: iotag (%d)\n",
11756 bf_get(lpfc_wcqe_c_request_tag, wcqe));
11757 return;
11758 }
11759 if (unlikely(!cmdiocbq->iocb_cmpl)) {
11760 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11761 "0375 FCP cmdiocb not callback function "
11762 "iotag: (%d)\n",
11763 bf_get(lpfc_wcqe_c_request_tag, wcqe));
11764 return;
11765 }
11766
11767 /* Fake the irspiocb and copy necessary response information */
341af102 11768 lpfc_sli4_iocb_param_transfer(phba, &irspiocbq, cmdiocbq, wcqe);
4f774513 11769
0f65ff68
JS
11770 if (cmdiocbq->iocb_flag & LPFC_DRIVER_ABORTED) {
11771 spin_lock_irqsave(&phba->hbalock, iflags);
11772 cmdiocbq->iocb_flag &= ~LPFC_DRIVER_ABORTED;
11773 spin_unlock_irqrestore(&phba->hbalock, iflags);
11774 }
11775
4f774513
JS
11776 /* Pass the cmd_iocb and the rsp state to the upper layer */
11777 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq, &irspiocbq);
11778}
11779
11780/**
11781 * lpfc_sli4_fp_handle_rel_wcqe - Handle fast-path WQ entry consumed event
11782 * @phba: Pointer to HBA context object.
11783 * @cq: Pointer to completion queue.
11784 * @wcqe: Pointer to work-queue completion queue entry.
11785 *
11786 * This routine handles an fast-path WQ entry comsumed event by invoking the
11787 * proper WQ release routine to the slow-path WQ.
11788 **/
11789static void
11790lpfc_sli4_fp_handle_rel_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
11791 struct lpfc_wcqe_release *wcqe)
11792{
11793 struct lpfc_queue *childwq;
11794 bool wqid_matched = false;
11795 uint16_t fcp_wqid;
11796
11797 /* Check for fast-path FCP work queue release */
11798 fcp_wqid = bf_get(lpfc_wcqe_r_wq_id, wcqe);
11799 list_for_each_entry(childwq, &cq->child_list, list) {
11800 if (childwq->queue_id == fcp_wqid) {
11801 lpfc_sli4_wq_release(childwq,
11802 bf_get(lpfc_wcqe_r_wqe_index, wcqe));
11803 wqid_matched = true;
11804 break;
11805 }
11806 }
11807 /* Report warning log message if no match found */
11808 if (wqid_matched != true)
11809 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11810 "2580 Fast-path wqe consume event carries "
11811 "miss-matched qid: wcqe-qid=x%x\n", fcp_wqid);
11812}
11813
11814/**
11815 * lpfc_sli4_fp_handle_wcqe - Process fast-path work queue completion entry
11816 * @cq: Pointer to the completion queue.
11817 * @eqe: Pointer to fast-path completion queue entry.
11818 *
11819 * This routine process a fast-path work queue completion entry from fast-path
11820 * event queue for FCP command response completion.
11821 **/
11822static int
11823lpfc_sli4_fp_handle_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
11824 struct lpfc_cqe *cqe)
11825{
11826 struct lpfc_wcqe_release wcqe;
11827 bool workposted = false;
11828
11829 /* Copy the work queue CQE and convert endian order if needed */
11830 lpfc_sli_pcimem_bcopy(cqe, &wcqe, sizeof(struct lpfc_cqe));
11831
11832 /* Check and process for different type of WCQE and dispatch */
11833 switch (bf_get(lpfc_wcqe_c_code, &wcqe)) {
11834 case CQE_CODE_COMPL_WQE:
b84daac9 11835 cq->CQ_wq++;
4f774513 11836 /* Process the WQ complete event */
98fc5dd9 11837 phba->last_completion_time = jiffies;
2a76a283 11838 lpfc_sli4_fp_handle_fcp_wcqe(phba, cq,
4f774513
JS
11839 (struct lpfc_wcqe_complete *)&wcqe);
11840 break;
11841 case CQE_CODE_RELEASE_WQE:
b84daac9 11842 cq->CQ_release_wqe++;
4f774513
JS
11843 /* Process the WQ release event */
11844 lpfc_sli4_fp_handle_rel_wcqe(phba, cq,
11845 (struct lpfc_wcqe_release *)&wcqe);
11846 break;
11847 case CQE_CODE_XRI_ABORTED:
b84daac9 11848 cq->CQ_xri_aborted++;
4f774513 11849 /* Process the WQ XRI abort event */
bc73905a 11850 phba->last_completion_time = jiffies;
4f774513
JS
11851 workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
11852 (struct sli4_wcqe_xri_aborted *)&wcqe);
11853 break;
11854 default:
11855 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11856 "0144 Not a valid WCQE code: x%x\n",
11857 bf_get(lpfc_wcqe_c_code, &wcqe));
11858 break;
11859 }
11860 return workposted;
11861}
11862
11863/**
67d12733 11864 * lpfc_sli4_hba_handle_eqe - Process a fast-path event queue entry
4f774513
JS
11865 * @phba: Pointer to HBA context object.
11866 * @eqe: Pointer to fast-path event queue entry.
11867 *
11868 * This routine process a event queue entry from the fast-path event queue.
11869 * It will check the MajorCode and MinorCode to determine this is for a
11870 * completion event on a completion queue, if not, an error shall be logged
11871 * and just return. Otherwise, it will get to the corresponding completion
11872 * queue and process all the entries on the completion queue, rearm the
11873 * completion queue, and then return.
11874 **/
11875static void
67d12733
JS
11876lpfc_sli4_hba_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe,
11877 uint32_t qidx)
4f774513
JS
11878{
11879 struct lpfc_queue *cq;
11880 struct lpfc_cqe *cqe;
11881 bool workposted = false;
11882 uint16_t cqid;
11883 int ecount = 0;
11884
cb5172ea 11885 if (unlikely(bf_get_le32(lpfc_eqe_major_code, eqe) != 0)) {
4f774513 11886 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
67d12733 11887 "0366 Not a valid completion "
4f774513 11888 "event: majorcode=x%x, minorcode=x%x\n",
cb5172ea
JS
11889 bf_get_le32(lpfc_eqe_major_code, eqe),
11890 bf_get_le32(lpfc_eqe_minor_code, eqe));
4f774513
JS
11891 return;
11892 }
11893
67d12733
JS
11894 /* Get the reference to the corresponding CQ */
11895 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
11896
11897 /* Check if this is a Slow path event */
11898 if (unlikely(cqid != phba->sli4_hba.fcp_cq_map[qidx])) {
11899 lpfc_sli4_sp_handle_eqe(phba, eqe,
11900 phba->sli4_hba.hba_eq[qidx]);
11901 return;
11902 }
11903
2e90f4b5
JS
11904 if (unlikely(!phba->sli4_hba.fcp_cq)) {
11905 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11906 "3146 Fast-path completion queues "
11907 "does not exist\n");
11908 return;
11909 }
67d12733 11910 cq = phba->sli4_hba.fcp_cq[qidx];
4f774513 11911 if (unlikely(!cq)) {
75baf696
JS
11912 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
11913 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11914 "0367 Fast-path completion queue "
67d12733 11915 "(%d) does not exist\n", qidx);
4f774513
JS
11916 return;
11917 }
11918
4f774513
JS
11919 if (unlikely(cqid != cq->queue_id)) {
11920 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11921 "0368 Miss-matched fast-path completion "
11922 "queue identifier: eqcqid=%d, fcpcqid=%d\n",
11923 cqid, cq->queue_id);
11924 return;
11925 }
11926
11927 /* Process all the entries to the CQ */
11928 while ((cqe = lpfc_sli4_cq_get(cq))) {
11929 workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq, cqe);
73d91e50 11930 if (!(++ecount % cq->entry_repost))
4f774513
JS
11931 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
11932 }
11933
b84daac9
JS
11934 /* Track the max number of CQEs processed in 1 EQ */
11935 if (ecount > cq->CQ_max_cqe)
11936 cq->CQ_max_cqe = ecount;
11937
4f774513
JS
11938 /* Catch the no cq entry condition */
11939 if (unlikely(ecount == 0))
11940 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11941 "0369 No entry from fast-path completion "
11942 "queue fcpcqid=%d\n", cq->queue_id);
11943
11944 /* In any case, flash and re-arm the CQ */
11945 lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
11946
11947 /* wake up worker thread if there are works to be done */
11948 if (workposted)
11949 lpfc_worker_wake_up(phba);
11950}
11951
11952static void
11953lpfc_sli4_eq_flush(struct lpfc_hba *phba, struct lpfc_queue *eq)
11954{
11955 struct lpfc_eqe *eqe;
11956
11957 /* walk all the EQ entries and drop on the floor */
11958 while ((eqe = lpfc_sli4_eq_get(eq)))
11959 ;
11960
11961 /* Clear and re-arm the EQ */
11962 lpfc_sli4_eq_release(eq, LPFC_QUEUE_REARM);
11963}
11964
11965/**
67d12733 11966 * lpfc_sli4_hba_intr_handler - HBA interrupt handler to SLI-4 device
4f774513
JS
11967 * @irq: Interrupt number.
11968 * @dev_id: The device context pointer.
11969 *
11970 * This function is directly called from the PCI layer as an interrupt
11971 * service routine when device with SLI-4 interface spec is enabled with
11972 * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
11973 * ring event in the HBA. However, when the device is enabled with either
11974 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
11975 * device-level interrupt handler. When the PCI slot is in error recovery
11976 * or the HBA is undergoing initialization, the interrupt handler will not
11977 * process the interrupt. The SCSI FCP fast-path ring event are handled in
11978 * the intrrupt context. This function is called without any lock held.
11979 * It gets the hbalock to access and update SLI data structures. Note that,
11980 * the FCP EQ to FCP CQ are one-to-one map such that the FCP EQ index is
11981 * equal to that of FCP CQ index.
11982 *
67d12733
JS
11983 * The link attention and ELS ring attention events are handled
11984 * by the worker thread. The interrupt handler signals the worker thread
11985 * and returns for these events. This function is called without any lock
11986 * held. It gets the hbalock to access and update SLI data structures.
11987 *
4f774513
JS
11988 * This function returns IRQ_HANDLED when interrupt is handled else it
11989 * returns IRQ_NONE.
11990 **/
11991irqreturn_t
67d12733 11992lpfc_sli4_hba_intr_handler(int irq, void *dev_id)
4f774513
JS
11993{
11994 struct lpfc_hba *phba;
11995 struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
11996 struct lpfc_queue *fpeq;
11997 struct lpfc_eqe *eqe;
11998 unsigned long iflag;
11999 int ecount = 0;
962bc51b 12000 int fcp_eqidx;
4f774513
JS
12001
12002 /* Get the driver's phba structure from the dev_id */
12003 fcp_eq_hdl = (struct lpfc_fcp_eq_hdl *)dev_id;
12004 phba = fcp_eq_hdl->phba;
12005 fcp_eqidx = fcp_eq_hdl->idx;
12006
12007 if (unlikely(!phba))
12008 return IRQ_NONE;
67d12733 12009 if (unlikely(!phba->sli4_hba.hba_eq))
5350d872 12010 return IRQ_NONE;
4f774513
JS
12011
12012 /* Get to the EQ struct associated with this vector */
67d12733 12013 fpeq = phba->sli4_hba.hba_eq[fcp_eqidx];
2e90f4b5
JS
12014 if (unlikely(!fpeq))
12015 return IRQ_NONE;
4f774513 12016
ba20c853
JS
12017 if (lpfc_fcp_look_ahead) {
12018 if (atomic_dec_and_test(&fcp_eq_hdl->fcp_eq_in_use))
12019 lpfc_sli4_eq_clr_intr(fpeq);
12020 else {
12021 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
12022 return IRQ_NONE;
12023 }
12024 }
12025
4f774513
JS
12026 /* Check device state for handling interrupt */
12027 if (unlikely(lpfc_intr_state_check(phba))) {
b84daac9 12028 fpeq->EQ_badstate++;
4f774513
JS
12029 /* Check again for link_state with lock held */
12030 spin_lock_irqsave(&phba->hbalock, iflag);
12031 if (phba->link_state < LPFC_LINK_DOWN)
12032 /* Flush, clear interrupt, and rearm the EQ */
12033 lpfc_sli4_eq_flush(phba, fpeq);
12034 spin_unlock_irqrestore(&phba->hbalock, iflag);
ba20c853
JS
12035 if (lpfc_fcp_look_ahead)
12036 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
4f774513
JS
12037 return IRQ_NONE;
12038 }
12039
12040 /*
12041 * Process all the event on FCP fast-path EQ
12042 */
12043 while ((eqe = lpfc_sli4_eq_get(fpeq))) {
67d12733 12044 lpfc_sli4_hba_handle_eqe(phba, eqe, fcp_eqidx);
73d91e50 12045 if (!(++ecount % fpeq->entry_repost))
4f774513 12046 lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_NOARM);
b84daac9 12047 fpeq->EQ_processed++;
4f774513
JS
12048 }
12049
b84daac9
JS
12050 /* Track the max number of EQEs processed in 1 intr */
12051 if (ecount > fpeq->EQ_max_eqe)
12052 fpeq->EQ_max_eqe = ecount;
12053
4f774513
JS
12054 /* Always clear and re-arm the fast-path EQ */
12055 lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_REARM);
12056
12057 if (unlikely(ecount == 0)) {
b84daac9 12058 fpeq->EQ_no_entry++;
ba20c853
JS
12059
12060 if (lpfc_fcp_look_ahead) {
12061 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
12062 return IRQ_NONE;
12063 }
12064
4f774513
JS
12065 if (phba->intr_type == MSIX)
12066 /* MSI-X treated interrupt served as no EQ share INT */
12067 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
12068 "0358 MSI-X interrupt with no EQE\n");
12069 else
12070 /* Non MSI-X treated on interrupt as EQ share INT */
12071 return IRQ_NONE;
12072 }
12073
ba20c853
JS
12074 if (lpfc_fcp_look_ahead)
12075 atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
4f774513
JS
12076 return IRQ_HANDLED;
12077} /* lpfc_sli4_fp_intr_handler */
12078
12079/**
12080 * lpfc_sli4_intr_handler - Device-level interrupt handler for SLI-4 device
12081 * @irq: Interrupt number.
12082 * @dev_id: The device context pointer.
12083 *
12084 * This function is the device-level interrupt handler to device with SLI-4
12085 * interface spec, called from the PCI layer when either MSI or Pin-IRQ
12086 * interrupt mode is enabled and there is an event in the HBA which requires
12087 * driver attention. This function invokes the slow-path interrupt attention
12088 * handling function and fast-path interrupt attention handling function in
12089 * turn to process the relevant HBA attention events. This function is called
12090 * without any lock held. It gets the hbalock to access and update SLI data
12091 * structures.
12092 *
12093 * This function returns IRQ_HANDLED when interrupt is handled, else it
12094 * returns IRQ_NONE.
12095 **/
12096irqreturn_t
12097lpfc_sli4_intr_handler(int irq, void *dev_id)
12098{
12099 struct lpfc_hba *phba;
67d12733
JS
12100 irqreturn_t hba_irq_rc;
12101 bool hba_handled = false;
962bc51b 12102 int fcp_eqidx;
4f774513
JS
12103
12104 /* Get the driver's phba structure from the dev_id */
12105 phba = (struct lpfc_hba *)dev_id;
12106
12107 if (unlikely(!phba))
12108 return IRQ_NONE;
12109
4f774513
JS
12110 /*
12111 * Invoke fast-path host attention interrupt handling as appropriate.
12112 */
67d12733
JS
12113 for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_io_channel; fcp_eqidx++) {
12114 hba_irq_rc = lpfc_sli4_hba_intr_handler(irq,
4f774513 12115 &phba->sli4_hba.fcp_eq_hdl[fcp_eqidx]);
67d12733
JS
12116 if (hba_irq_rc == IRQ_HANDLED)
12117 hba_handled |= true;
4f774513
JS
12118 }
12119
67d12733 12120 return (hba_handled == true) ? IRQ_HANDLED : IRQ_NONE;
4f774513
JS
12121} /* lpfc_sli4_intr_handler */
12122
12123/**
12124 * lpfc_sli4_queue_free - free a queue structure and associated memory
12125 * @queue: The queue structure to free.
12126 *
b595076a 12127 * This function frees a queue structure and the DMAable memory used for
4f774513
JS
12128 * the host resident queue. This function must be called after destroying the
12129 * queue on the HBA.
12130 **/
12131void
12132lpfc_sli4_queue_free(struct lpfc_queue *queue)
12133{
12134 struct lpfc_dmabuf *dmabuf;
12135
12136 if (!queue)
12137 return;
12138
12139 while (!list_empty(&queue->page_list)) {
12140 list_remove_head(&queue->page_list, dmabuf, struct lpfc_dmabuf,
12141 list);
49198b37 12142 dma_free_coherent(&queue->phba->pcidev->dev, SLI4_PAGE_SIZE,
4f774513
JS
12143 dmabuf->virt, dmabuf->phys);
12144 kfree(dmabuf);
12145 }
12146 kfree(queue);
12147 return;
12148}
12149
12150/**
12151 * lpfc_sli4_queue_alloc - Allocate and initialize a queue structure
12152 * @phba: The HBA that this queue is being created on.
12153 * @entry_size: The size of each queue entry for this queue.
12154 * @entry count: The number of entries that this queue will handle.
12155 *
12156 * This function allocates a queue structure and the DMAable memory used for
12157 * the host resident queue. This function must be called before creating the
12158 * queue on the HBA.
12159 **/
12160struct lpfc_queue *
12161lpfc_sli4_queue_alloc(struct lpfc_hba *phba, uint32_t entry_size,
12162 uint32_t entry_count)
12163{
12164 struct lpfc_queue *queue;
12165 struct lpfc_dmabuf *dmabuf;
12166 int x, total_qe_count;
12167 void *dma_pointer;
cb5172ea 12168 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
4f774513 12169
cb5172ea
JS
12170 if (!phba->sli4_hba.pc_sli4_params.supported)
12171 hw_page_size = SLI4_PAGE_SIZE;
12172
4f774513
JS
12173 queue = kzalloc(sizeof(struct lpfc_queue) +
12174 (sizeof(union sli4_qe) * entry_count), GFP_KERNEL);
12175 if (!queue)
12176 return NULL;
cb5172ea
JS
12177 queue->page_count = (ALIGN(entry_size * entry_count,
12178 hw_page_size))/hw_page_size;
4f774513
JS
12179 INIT_LIST_HEAD(&queue->list);
12180 INIT_LIST_HEAD(&queue->page_list);
12181 INIT_LIST_HEAD(&queue->child_list);
12182 for (x = 0, total_qe_count = 0; x < queue->page_count; x++) {
12183 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
12184 if (!dmabuf)
12185 goto out_fail;
12186 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
cb5172ea 12187 hw_page_size, &dmabuf->phys,
4f774513
JS
12188 GFP_KERNEL);
12189 if (!dmabuf->virt) {
12190 kfree(dmabuf);
12191 goto out_fail;
12192 }
cb5172ea 12193 memset(dmabuf->virt, 0, hw_page_size);
4f774513
JS
12194 dmabuf->buffer_tag = x;
12195 list_add_tail(&dmabuf->list, &queue->page_list);
12196 /* initialize queue's entry array */
12197 dma_pointer = dmabuf->virt;
12198 for (; total_qe_count < entry_count &&
cb5172ea 12199 dma_pointer < (hw_page_size + dmabuf->virt);
4f774513
JS
12200 total_qe_count++, dma_pointer += entry_size) {
12201 queue->qe[total_qe_count].address = dma_pointer;
12202 }
12203 }
12204 queue->entry_size = entry_size;
12205 queue->entry_count = entry_count;
73d91e50
JS
12206
12207 /*
12208 * entry_repost is calculated based on the number of entries in the
12209 * queue. This works out except for RQs. If buffers are NOT initially
12210 * posted for every RQE, entry_repost should be adjusted accordingly.
12211 */
12212 queue->entry_repost = (entry_count >> 3);
12213 if (queue->entry_repost < LPFC_QUEUE_MIN_REPOST)
12214 queue->entry_repost = LPFC_QUEUE_MIN_REPOST;
4f774513
JS
12215 queue->phba = phba;
12216
12217 return queue;
12218out_fail:
12219 lpfc_sli4_queue_free(queue);
12220 return NULL;
12221}
12222
962bc51b
JS
12223/**
12224 * lpfc_dual_chute_pci_bar_map - Map pci base address register to host memory
12225 * @phba: HBA structure that indicates port to create a queue on.
12226 * @pci_barset: PCI BAR set flag.
12227 *
12228 * This function shall perform iomap of the specified PCI BAR address to host
12229 * memory address if not already done so and return it. The returned host
12230 * memory address can be NULL.
12231 */
12232static void __iomem *
12233lpfc_dual_chute_pci_bar_map(struct lpfc_hba *phba, uint16_t pci_barset)
12234{
12235 struct pci_dev *pdev;
962bc51b
JS
12236
12237 if (!phba->pcidev)
12238 return NULL;
12239 else
12240 pdev = phba->pcidev;
12241
12242 switch (pci_barset) {
12243 case WQ_PCI_BAR_0_AND_1:
962bc51b
JS
12244 return phba->pci_bar0_memmap_p;
12245 case WQ_PCI_BAR_2_AND_3:
962bc51b
JS
12246 return phba->pci_bar2_memmap_p;
12247 case WQ_PCI_BAR_4_AND_5:
962bc51b
JS
12248 return phba->pci_bar4_memmap_p;
12249 default:
12250 break;
12251 }
12252 return NULL;
12253}
12254
173edbb2
JS
12255/**
12256 * lpfc_modify_fcp_eq_delay - Modify Delay Multiplier on FCP EQs
12257 * @phba: HBA structure that indicates port to create a queue on.
12258 * @startq: The starting FCP EQ to modify
12259 *
12260 * This function sends an MODIFY_EQ_DELAY mailbox command to the HBA.
12261 *
12262 * The @phba struct is used to send mailbox command to HBA. The @startq
12263 * is used to get the starting FCP EQ to change.
12264 * This function is asynchronous and will wait for the mailbox
12265 * command to finish before continuing.
12266 *
12267 * On success this function will return a zero. If unable to allocate enough
12268 * memory this function will return -ENOMEM. If the queue create mailbox command
12269 * fails this function will return -ENXIO.
12270 **/
12271uint32_t
12272lpfc_modify_fcp_eq_delay(struct lpfc_hba *phba, uint16_t startq)
12273{
12274 struct lpfc_mbx_modify_eq_delay *eq_delay;
12275 LPFC_MBOXQ_t *mbox;
12276 struct lpfc_queue *eq;
12277 int cnt, rc, length, status = 0;
12278 uint32_t shdr_status, shdr_add_status;
ee02006b 12279 uint32_t result;
173edbb2
JS
12280 int fcp_eqidx;
12281 union lpfc_sli4_cfg_shdr *shdr;
12282 uint16_t dmult;
12283
67d12733 12284 if (startq >= phba->cfg_fcp_io_channel)
173edbb2
JS
12285 return 0;
12286
12287 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
12288 if (!mbox)
12289 return -ENOMEM;
12290 length = (sizeof(struct lpfc_mbx_modify_eq_delay) -
12291 sizeof(struct lpfc_sli4_cfg_mhdr));
12292 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
12293 LPFC_MBOX_OPCODE_MODIFY_EQ_DELAY,
12294 length, LPFC_SLI4_MBX_EMBED);
12295 eq_delay = &mbox->u.mqe.un.eq_delay;
12296
12297 /* Calculate delay multiper from maximum interrupt per second */
ee02006b
JS
12298 result = phba->cfg_fcp_imax / phba->cfg_fcp_io_channel;
12299 if (result > LPFC_DMULT_CONST)
12300 dmult = 0;
12301 else
12302 dmult = LPFC_DMULT_CONST/result - 1;
173edbb2
JS
12303
12304 cnt = 0;
67d12733 12305 for (fcp_eqidx = startq; fcp_eqidx < phba->cfg_fcp_io_channel;
173edbb2 12306 fcp_eqidx++) {
67d12733 12307 eq = phba->sli4_hba.hba_eq[fcp_eqidx];
173edbb2
JS
12308 if (!eq)
12309 continue;
12310 eq_delay->u.request.eq[cnt].eq_id = eq->queue_id;
12311 eq_delay->u.request.eq[cnt].phase = 0;
12312 eq_delay->u.request.eq[cnt].delay_multi = dmult;
12313 cnt++;
12314 if (cnt >= LPFC_MAX_EQ_DELAY)
12315 break;
12316 }
12317 eq_delay->u.request.num_eq = cnt;
12318
12319 mbox->vport = phba->pport;
12320 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
12321 mbox->context1 = NULL;
12322 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
12323 shdr = (union lpfc_sli4_cfg_shdr *) &eq_delay->header.cfg_shdr;
12324 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12325 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12326 if (shdr_status || shdr_add_status || rc) {
12327 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12328 "2512 MODIFY_EQ_DELAY mailbox failed with "
12329 "status x%x add_status x%x, mbx status x%x\n",
12330 shdr_status, shdr_add_status, rc);
12331 status = -ENXIO;
12332 }
12333 mempool_free(mbox, phba->mbox_mem_pool);
12334 return status;
12335}
12336
4f774513
JS
12337/**
12338 * lpfc_eq_create - Create an Event Queue on the HBA
12339 * @phba: HBA structure that indicates port to create a queue on.
12340 * @eq: The queue structure to use to create the event queue.
12341 * @imax: The maximum interrupt per second limit.
12342 *
12343 * This function creates an event queue, as detailed in @eq, on a port,
12344 * described by @phba by sending an EQ_CREATE mailbox command to the HBA.
12345 *
12346 * The @phba struct is used to send mailbox command to HBA. The @eq struct
12347 * is used to get the entry count and entry size that are necessary to
12348 * determine the number of pages to allocate and use for this queue. This
12349 * function will send the EQ_CREATE mailbox command to the HBA to setup the
12350 * event queue. This function is asynchronous and will wait for the mailbox
12351 * command to finish before continuing.
12352 *
12353 * On success this function will return a zero. If unable to allocate enough
d439d286
JS
12354 * memory this function will return -ENOMEM. If the queue create mailbox command
12355 * fails this function will return -ENXIO.
4f774513
JS
12356 **/
12357uint32_t
ee02006b 12358lpfc_eq_create(struct lpfc_hba *phba, struct lpfc_queue *eq, uint32_t imax)
4f774513
JS
12359{
12360 struct lpfc_mbx_eq_create *eq_create;
12361 LPFC_MBOXQ_t *mbox;
12362 int rc, length, status = 0;
12363 struct lpfc_dmabuf *dmabuf;
12364 uint32_t shdr_status, shdr_add_status;
12365 union lpfc_sli4_cfg_shdr *shdr;
12366 uint16_t dmult;
49198b37
JS
12367 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
12368
2e90f4b5
JS
12369 /* sanity check on queue memory */
12370 if (!eq)
12371 return -ENODEV;
49198b37
JS
12372 if (!phba->sli4_hba.pc_sli4_params.supported)
12373 hw_page_size = SLI4_PAGE_SIZE;
4f774513
JS
12374
12375 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
12376 if (!mbox)
12377 return -ENOMEM;
12378 length = (sizeof(struct lpfc_mbx_eq_create) -
12379 sizeof(struct lpfc_sli4_cfg_mhdr));
12380 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
12381 LPFC_MBOX_OPCODE_EQ_CREATE,
12382 length, LPFC_SLI4_MBX_EMBED);
12383 eq_create = &mbox->u.mqe.un.eq_create;
12384 bf_set(lpfc_mbx_eq_create_num_pages, &eq_create->u.request,
12385 eq->page_count);
12386 bf_set(lpfc_eq_context_size, &eq_create->u.request.context,
12387 LPFC_EQE_SIZE);
12388 bf_set(lpfc_eq_context_valid, &eq_create->u.request.context, 1);
12389 /* Calculate delay multiper from maximum interrupt per second */
ee02006b
JS
12390 if (imax > LPFC_DMULT_CONST)
12391 dmult = 0;
12392 else
12393 dmult = LPFC_DMULT_CONST/imax - 1;
4f774513
JS
12394 bf_set(lpfc_eq_context_delay_multi, &eq_create->u.request.context,
12395 dmult);
12396 switch (eq->entry_count) {
12397 default:
12398 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12399 "0360 Unsupported EQ count. (%d)\n",
12400 eq->entry_count);
12401 if (eq->entry_count < 256)
12402 return -EINVAL;
12403 /* otherwise default to smallest count (drop through) */
12404 case 256:
12405 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
12406 LPFC_EQ_CNT_256);
12407 break;
12408 case 512:
12409 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
12410 LPFC_EQ_CNT_512);
12411 break;
12412 case 1024:
12413 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
12414 LPFC_EQ_CNT_1024);
12415 break;
12416 case 2048:
12417 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
12418 LPFC_EQ_CNT_2048);
12419 break;
12420 case 4096:
12421 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
12422 LPFC_EQ_CNT_4096);
12423 break;
12424 }
12425 list_for_each_entry(dmabuf, &eq->page_list, list) {
49198b37 12426 memset(dmabuf->virt, 0, hw_page_size);
4f774513
JS
12427 eq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
12428 putPaddrLow(dmabuf->phys);
12429 eq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
12430 putPaddrHigh(dmabuf->phys);
12431 }
12432 mbox->vport = phba->pport;
12433 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
12434 mbox->context1 = NULL;
12435 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
12436 shdr = (union lpfc_sli4_cfg_shdr *) &eq_create->header.cfg_shdr;
12437 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12438 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12439 if (shdr_status || shdr_add_status || rc) {
12440 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12441 "2500 EQ_CREATE mailbox failed with "
12442 "status x%x add_status x%x, mbx status x%x\n",
12443 shdr_status, shdr_add_status, rc);
12444 status = -ENXIO;
12445 }
12446 eq->type = LPFC_EQ;
12447 eq->subtype = LPFC_NONE;
12448 eq->queue_id = bf_get(lpfc_mbx_eq_create_q_id, &eq_create->u.response);
12449 if (eq->queue_id == 0xFFFF)
12450 status = -ENXIO;
12451 eq->host_index = 0;
12452 eq->hba_index = 0;
12453
8fa38513 12454 mempool_free(mbox, phba->mbox_mem_pool);
4f774513
JS
12455 return status;
12456}
12457
12458/**
12459 * lpfc_cq_create - Create a Completion Queue on the HBA
12460 * @phba: HBA structure that indicates port to create a queue on.
12461 * @cq: The queue structure to use to create the completion queue.
12462 * @eq: The event queue to bind this completion queue to.
12463 *
12464 * This function creates a completion queue, as detailed in @wq, on a port,
12465 * described by @phba by sending a CQ_CREATE mailbox command to the HBA.
12466 *
12467 * The @phba struct is used to send mailbox command to HBA. The @cq struct
12468 * is used to get the entry count and entry size that are necessary to
12469 * determine the number of pages to allocate and use for this queue. The @eq
12470 * is used to indicate which event queue to bind this completion queue to. This
12471 * function will send the CQ_CREATE mailbox command to the HBA to setup the
12472 * completion queue. This function is asynchronous and will wait for the mailbox
12473 * command to finish before continuing.
12474 *
12475 * On success this function will return a zero. If unable to allocate enough
d439d286
JS
12476 * memory this function will return -ENOMEM. If the queue create mailbox command
12477 * fails this function will return -ENXIO.
4f774513
JS
12478 **/
12479uint32_t
12480lpfc_cq_create(struct lpfc_hba *phba, struct lpfc_queue *cq,
12481 struct lpfc_queue *eq, uint32_t type, uint32_t subtype)
12482{
12483 struct lpfc_mbx_cq_create *cq_create;
12484 struct lpfc_dmabuf *dmabuf;
12485 LPFC_MBOXQ_t *mbox;
12486 int rc, length, status = 0;
12487 uint32_t shdr_status, shdr_add_status;
12488 union lpfc_sli4_cfg_shdr *shdr;
49198b37
JS
12489 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
12490
2e90f4b5
JS
12491 /* sanity check on queue memory */
12492 if (!cq || !eq)
12493 return -ENODEV;
49198b37
JS
12494 if (!phba->sli4_hba.pc_sli4_params.supported)
12495 hw_page_size = SLI4_PAGE_SIZE;
12496
4f774513
JS
12497 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
12498 if (!mbox)
12499 return -ENOMEM;
12500 length = (sizeof(struct lpfc_mbx_cq_create) -
12501 sizeof(struct lpfc_sli4_cfg_mhdr));
12502 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
12503 LPFC_MBOX_OPCODE_CQ_CREATE,
12504 length, LPFC_SLI4_MBX_EMBED);
12505 cq_create = &mbox->u.mqe.un.cq_create;
5a6f133e 12506 shdr = (union lpfc_sli4_cfg_shdr *) &cq_create->header.cfg_shdr;
4f774513
JS
12507 bf_set(lpfc_mbx_cq_create_num_pages, &cq_create->u.request,
12508 cq->page_count);
12509 bf_set(lpfc_cq_context_event, &cq_create->u.request.context, 1);
12510 bf_set(lpfc_cq_context_valid, &cq_create->u.request.context, 1);
5a6f133e
JS
12511 bf_set(lpfc_mbox_hdr_version, &shdr->request,
12512 phba->sli4_hba.pc_sli4_params.cqv);
12513 if (phba->sli4_hba.pc_sli4_params.cqv == LPFC_Q_CREATE_VERSION_2) {
c31098ce
JS
12514 /* FW only supports 1. Should be PAGE_SIZE/SLI4_PAGE_SIZE */
12515 bf_set(lpfc_mbx_cq_create_page_size, &cq_create->u.request, 1);
5a6f133e
JS
12516 bf_set(lpfc_cq_eq_id_2, &cq_create->u.request.context,
12517 eq->queue_id);
12518 } else {
12519 bf_set(lpfc_cq_eq_id, &cq_create->u.request.context,
12520 eq->queue_id);
12521 }
4f774513
JS
12522 switch (cq->entry_count) {
12523 default:
12524 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12525 "0361 Unsupported CQ count. (%d)\n",
12526 cq->entry_count);
4f4c1863
JS
12527 if (cq->entry_count < 256) {
12528 status = -EINVAL;
12529 goto out;
12530 }
4f774513
JS
12531 /* otherwise default to smallest count (drop through) */
12532 case 256:
12533 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
12534 LPFC_CQ_CNT_256);
12535 break;
12536 case 512:
12537 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
12538 LPFC_CQ_CNT_512);
12539 break;
12540 case 1024:
12541 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
12542 LPFC_CQ_CNT_1024);
12543 break;
12544 }
12545 list_for_each_entry(dmabuf, &cq->page_list, list) {
49198b37 12546 memset(dmabuf->virt, 0, hw_page_size);
4f774513
JS
12547 cq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
12548 putPaddrLow(dmabuf->phys);
12549 cq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
12550 putPaddrHigh(dmabuf->phys);
12551 }
12552 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
12553
12554 /* The IOCTL status is embedded in the mailbox subheader. */
4f774513
JS
12555 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12556 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12557 if (shdr_status || shdr_add_status || rc) {
12558 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12559 "2501 CQ_CREATE mailbox failed with "
12560 "status x%x add_status x%x, mbx status x%x\n",
12561 shdr_status, shdr_add_status, rc);
12562 status = -ENXIO;
12563 goto out;
12564 }
12565 cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
12566 if (cq->queue_id == 0xFFFF) {
12567 status = -ENXIO;
12568 goto out;
12569 }
12570 /* link the cq onto the parent eq child list */
12571 list_add_tail(&cq->list, &eq->child_list);
12572 /* Set up completion queue's type and subtype */
12573 cq->type = type;
12574 cq->subtype = subtype;
12575 cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
2a622bfb 12576 cq->assoc_qid = eq->queue_id;
4f774513
JS
12577 cq->host_index = 0;
12578 cq->hba_index = 0;
4f774513 12579
8fa38513
JS
12580out:
12581 mempool_free(mbox, phba->mbox_mem_pool);
4f774513
JS
12582 return status;
12583}
12584
b19a061a
JS
12585/**
12586 * lpfc_mq_create_fb_init - Send MCC_CREATE without async events registration
12587 * @phba: HBA structure that indicates port to create a queue on.
12588 * @mq: The queue structure to use to create the mailbox queue.
12589 * @mbox: An allocated pointer to type LPFC_MBOXQ_t
12590 * @cq: The completion queue to associate with this cq.
12591 *
12592 * This function provides failback (fb) functionality when the
12593 * mq_create_ext fails on older FW generations. It's purpose is identical
12594 * to mq_create_ext otherwise.
12595 *
12596 * This routine cannot fail as all attributes were previously accessed and
12597 * initialized in mq_create_ext.
12598 **/
12599static void
12600lpfc_mq_create_fb_init(struct lpfc_hba *phba, struct lpfc_queue *mq,
12601 LPFC_MBOXQ_t *mbox, struct lpfc_queue *cq)
12602{
12603 struct lpfc_mbx_mq_create *mq_create;
12604 struct lpfc_dmabuf *dmabuf;
12605 int length;
12606
12607 length = (sizeof(struct lpfc_mbx_mq_create) -
12608 sizeof(struct lpfc_sli4_cfg_mhdr));
12609 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
12610 LPFC_MBOX_OPCODE_MQ_CREATE,
12611 length, LPFC_SLI4_MBX_EMBED);
12612 mq_create = &mbox->u.mqe.un.mq_create;
12613 bf_set(lpfc_mbx_mq_create_num_pages, &mq_create->u.request,
12614 mq->page_count);
12615 bf_set(lpfc_mq_context_cq_id, &mq_create->u.request.context,
12616 cq->queue_id);
12617 bf_set(lpfc_mq_context_valid, &mq_create->u.request.context, 1);
12618 switch (mq->entry_count) {
12619 case 16:
5a6f133e
JS
12620 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
12621 LPFC_MQ_RING_SIZE_16);
b19a061a
JS
12622 break;
12623 case 32:
5a6f133e
JS
12624 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
12625 LPFC_MQ_RING_SIZE_32);
b19a061a
JS
12626 break;
12627 case 64:
5a6f133e
JS
12628 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
12629 LPFC_MQ_RING_SIZE_64);
b19a061a
JS
12630 break;
12631 case 128:
5a6f133e
JS
12632 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
12633 LPFC_MQ_RING_SIZE_128);
b19a061a
JS
12634 break;
12635 }
12636 list_for_each_entry(dmabuf, &mq->page_list, list) {
12637 mq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
12638 putPaddrLow(dmabuf->phys);
12639 mq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
12640 putPaddrHigh(dmabuf->phys);
12641 }
12642}
12643
04c68496
JS
12644/**
12645 * lpfc_mq_create - Create a mailbox Queue on the HBA
12646 * @phba: HBA structure that indicates port to create a queue on.
12647 * @mq: The queue structure to use to create the mailbox queue.
b19a061a
JS
12648 * @cq: The completion queue to associate with this cq.
12649 * @subtype: The queue's subtype.
04c68496
JS
12650 *
12651 * This function creates a mailbox queue, as detailed in @mq, on a port,
12652 * described by @phba by sending a MQ_CREATE mailbox command to the HBA.
12653 *
12654 * The @phba struct is used to send mailbox command to HBA. The @cq struct
12655 * is used to get the entry count and entry size that are necessary to
12656 * determine the number of pages to allocate and use for this queue. This
12657 * function will send the MQ_CREATE mailbox command to the HBA to setup the
12658 * mailbox queue. This function is asynchronous and will wait for the mailbox
12659 * command to finish before continuing.
12660 *
12661 * On success this function will return a zero. If unable to allocate enough
d439d286
JS
12662 * memory this function will return -ENOMEM. If the queue create mailbox command
12663 * fails this function will return -ENXIO.
04c68496 12664 **/
b19a061a 12665int32_t
04c68496
JS
12666lpfc_mq_create(struct lpfc_hba *phba, struct lpfc_queue *mq,
12667 struct lpfc_queue *cq, uint32_t subtype)
12668{
12669 struct lpfc_mbx_mq_create *mq_create;
b19a061a 12670 struct lpfc_mbx_mq_create_ext *mq_create_ext;
04c68496
JS
12671 struct lpfc_dmabuf *dmabuf;
12672 LPFC_MBOXQ_t *mbox;
12673 int rc, length, status = 0;
12674 uint32_t shdr_status, shdr_add_status;
12675 union lpfc_sli4_cfg_shdr *shdr;
49198b37 12676 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
04c68496 12677
2e90f4b5
JS
12678 /* sanity check on queue memory */
12679 if (!mq || !cq)
12680 return -ENODEV;
49198b37
JS
12681 if (!phba->sli4_hba.pc_sli4_params.supported)
12682 hw_page_size = SLI4_PAGE_SIZE;
b19a061a 12683
04c68496
JS
12684 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
12685 if (!mbox)
12686 return -ENOMEM;
b19a061a 12687 length = (sizeof(struct lpfc_mbx_mq_create_ext) -
04c68496
JS
12688 sizeof(struct lpfc_sli4_cfg_mhdr));
12689 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
b19a061a 12690 LPFC_MBOX_OPCODE_MQ_CREATE_EXT,
04c68496 12691 length, LPFC_SLI4_MBX_EMBED);
b19a061a
JS
12692
12693 mq_create_ext = &mbox->u.mqe.un.mq_create_ext;
5a6f133e 12694 shdr = (union lpfc_sli4_cfg_shdr *) &mq_create_ext->header.cfg_shdr;
70f3c073
JS
12695 bf_set(lpfc_mbx_mq_create_ext_num_pages,
12696 &mq_create_ext->u.request, mq->page_count);
12697 bf_set(lpfc_mbx_mq_create_ext_async_evt_link,
12698 &mq_create_ext->u.request, 1);
12699 bf_set(lpfc_mbx_mq_create_ext_async_evt_fip,
b19a061a
JS
12700 &mq_create_ext->u.request, 1);
12701 bf_set(lpfc_mbx_mq_create_ext_async_evt_group5,
12702 &mq_create_ext->u.request, 1);
70f3c073
JS
12703 bf_set(lpfc_mbx_mq_create_ext_async_evt_fc,
12704 &mq_create_ext->u.request, 1);
12705 bf_set(lpfc_mbx_mq_create_ext_async_evt_sli,
12706 &mq_create_ext->u.request, 1);
b19a061a 12707 bf_set(lpfc_mq_context_valid, &mq_create_ext->u.request.context, 1);
5a6f133e
JS
12708 bf_set(lpfc_mbox_hdr_version, &shdr->request,
12709 phba->sli4_hba.pc_sli4_params.mqv);
12710 if (phba->sli4_hba.pc_sli4_params.mqv == LPFC_Q_CREATE_VERSION_1)
12711 bf_set(lpfc_mbx_mq_create_ext_cq_id, &mq_create_ext->u.request,
12712 cq->queue_id);
12713 else
12714 bf_set(lpfc_mq_context_cq_id, &mq_create_ext->u.request.context,
12715 cq->queue_id);
04c68496
JS
12716 switch (mq->entry_count) {
12717 default:
12718 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
12719 "0362 Unsupported MQ count. (%d)\n",
12720 mq->entry_count);
4f4c1863
JS
12721 if (mq->entry_count < 16) {
12722 status = -EINVAL;
12723 goto out;
12724 }
04c68496
JS
12725 /* otherwise default to smallest count (drop through) */
12726 case 16:
5a6f133e
JS
12727 bf_set(lpfc_mq_context_ring_size,
12728 &mq_create_ext->u.request.context,
12729 LPFC_MQ_RING_SIZE_16);
04c68496
JS
12730 break;
12731 case 32:
5a6f133e
JS
12732 bf_set(lpfc_mq_context_ring_size,
12733 &mq_create_ext->u.request.context,
12734 LPFC_MQ_RING_SIZE_32);
04c68496
JS
12735 break;
12736 case 64:
5a6f133e
JS
12737 bf_set(lpfc_mq_context_ring_size,
12738 &mq_create_ext->u.request.context,
12739 LPFC_MQ_RING_SIZE_64);
04c68496
JS
12740 break;
12741 case 128:
5a6f133e
JS
12742 bf_set(lpfc_mq_context_ring_size,
12743 &mq_create_ext->u.request.context,
12744 LPFC_MQ_RING_SIZE_128);
04c68496
JS
12745 break;
12746 }
12747 list_for_each_entry(dmabuf, &mq->page_list, list) {
49198b37 12748 memset(dmabuf->virt, 0, hw_page_size);
b19a061a 12749 mq_create_ext->u.request.page[dmabuf->buffer_tag].addr_lo =
04c68496 12750 putPaddrLow(dmabuf->phys);
b19a061a 12751 mq_create_ext->u.request.page[dmabuf->buffer_tag].addr_hi =
04c68496
JS
12752 putPaddrHigh(dmabuf->phys);
12753 }
12754 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
b19a061a
JS
12755 mq->queue_id = bf_get(lpfc_mbx_mq_create_q_id,
12756 &mq_create_ext->u.response);
12757 if (rc != MBX_SUCCESS) {
12758 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
12759 "2795 MQ_CREATE_EXT failed with "
12760 "status x%x. Failback to MQ_CREATE.\n",
12761 rc);
12762 lpfc_mq_create_fb_init(phba, mq, mbox, cq);
12763 mq_create = &mbox->u.mqe.un.mq_create;
12764 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
12765 shdr = (union lpfc_sli4_cfg_shdr *) &mq_create->header.cfg_shdr;
12766 mq->queue_id = bf_get(lpfc_mbx_mq_create_q_id,
12767 &mq_create->u.response);
12768 }
12769
04c68496 12770 /* The IOCTL status is embedded in the mailbox subheader. */
04c68496
JS
12771 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12772 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12773 if (shdr_status || shdr_add_status || rc) {
12774 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12775 "2502 MQ_CREATE mailbox failed with "
12776 "status x%x add_status x%x, mbx status x%x\n",
12777 shdr_status, shdr_add_status, rc);
12778 status = -ENXIO;
12779 goto out;
12780 }
04c68496
JS
12781 if (mq->queue_id == 0xFFFF) {
12782 status = -ENXIO;
12783 goto out;
12784 }
12785 mq->type = LPFC_MQ;
2a622bfb 12786 mq->assoc_qid = cq->queue_id;
04c68496
JS
12787 mq->subtype = subtype;
12788 mq->host_index = 0;
12789 mq->hba_index = 0;
12790
12791 /* link the mq onto the parent cq child list */
12792 list_add_tail(&mq->list, &cq->child_list);
12793out:
8fa38513 12794 mempool_free(mbox, phba->mbox_mem_pool);
04c68496
JS
12795 return status;
12796}
12797
4f774513
JS
12798/**
12799 * lpfc_wq_create - Create a Work Queue on the HBA
12800 * @phba: HBA structure that indicates port to create a queue on.
12801 * @wq: The queue structure to use to create the work queue.
12802 * @cq: The completion queue to bind this work queue to.
12803 * @subtype: The subtype of the work queue indicating its functionality.
12804 *
12805 * This function creates a work queue, as detailed in @wq, on a port, described
12806 * by @phba by sending a WQ_CREATE mailbox command to the HBA.
12807 *
12808 * The @phba struct is used to send mailbox command to HBA. The @wq struct
12809 * is used to get the entry count and entry size that are necessary to
12810 * determine the number of pages to allocate and use for this queue. The @cq
12811 * is used to indicate which completion queue to bind this work queue to. This
12812 * function will send the WQ_CREATE mailbox command to the HBA to setup the
12813 * work queue. This function is asynchronous and will wait for the mailbox
12814 * command to finish before continuing.
12815 *
12816 * On success this function will return a zero. If unable to allocate enough
d439d286
JS
12817 * memory this function will return -ENOMEM. If the queue create mailbox command
12818 * fails this function will return -ENXIO.
4f774513
JS
12819 **/
12820uint32_t
12821lpfc_wq_create(struct lpfc_hba *phba, struct lpfc_queue *wq,
12822 struct lpfc_queue *cq, uint32_t subtype)
12823{
12824 struct lpfc_mbx_wq_create *wq_create;
12825 struct lpfc_dmabuf *dmabuf;
12826 LPFC_MBOXQ_t *mbox;
12827 int rc, length, status = 0;
12828 uint32_t shdr_status, shdr_add_status;
12829 union lpfc_sli4_cfg_shdr *shdr;
49198b37 12830 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
5a6f133e 12831 struct dma_address *page;
962bc51b
JS
12832 void __iomem *bar_memmap_p;
12833 uint32_t db_offset;
12834 uint16_t pci_barset;
49198b37 12835
2e90f4b5
JS
12836 /* sanity check on queue memory */
12837 if (!wq || !cq)
12838 return -ENODEV;
49198b37
JS
12839 if (!phba->sli4_hba.pc_sli4_params.supported)
12840 hw_page_size = SLI4_PAGE_SIZE;
4f774513
JS
12841
12842 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
12843 if (!mbox)
12844 return -ENOMEM;
12845 length = (sizeof(struct lpfc_mbx_wq_create) -
12846 sizeof(struct lpfc_sli4_cfg_mhdr));
12847 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
12848 LPFC_MBOX_OPCODE_FCOE_WQ_CREATE,
12849 length, LPFC_SLI4_MBX_EMBED);
12850 wq_create = &mbox->u.mqe.un.wq_create;
5a6f133e 12851 shdr = (union lpfc_sli4_cfg_shdr *) &wq_create->header.cfg_shdr;
4f774513
JS
12852 bf_set(lpfc_mbx_wq_create_num_pages, &wq_create->u.request,
12853 wq->page_count);
12854 bf_set(lpfc_mbx_wq_create_cq_id, &wq_create->u.request,
12855 cq->queue_id);
0c651878
JS
12856
12857 /* wqv is the earliest version supported, NOT the latest */
5a6f133e
JS
12858 bf_set(lpfc_mbox_hdr_version, &shdr->request,
12859 phba->sli4_hba.pc_sli4_params.wqv);
962bc51b 12860
0c651878
JS
12861 switch (phba->sli4_hba.pc_sli4_params.wqv) {
12862 case LPFC_Q_CREATE_VERSION_0:
12863 switch (wq->entry_size) {
12864 default:
12865 case 64:
12866 /* Nothing to do, version 0 ONLY supports 64 byte */
12867 page = wq_create->u.request.page;
12868 break;
12869 case 128:
12870 if (!(phba->sli4_hba.pc_sli4_params.wqsize &
12871 LPFC_WQ_SZ128_SUPPORT)) {
12872 status = -ERANGE;
12873 goto out;
12874 }
12875 /* If we get here the HBA MUST also support V1 and
12876 * we MUST use it
12877 */
12878 bf_set(lpfc_mbox_hdr_version, &shdr->request,
12879 LPFC_Q_CREATE_VERSION_1);
12880
12881 bf_set(lpfc_mbx_wq_create_wqe_count,
12882 &wq_create->u.request_1, wq->entry_count);
12883 bf_set(lpfc_mbx_wq_create_wqe_size,
12884 &wq_create->u.request_1,
12885 LPFC_WQ_WQE_SIZE_128);
12886 bf_set(lpfc_mbx_wq_create_page_size,
12887 &wq_create->u.request_1,
12888 (PAGE_SIZE/SLI4_PAGE_SIZE));
12889 page = wq_create->u.request_1.page;
12890 break;
12891 }
12892 break;
12893 case LPFC_Q_CREATE_VERSION_1:
5a6f133e
JS
12894 bf_set(lpfc_mbx_wq_create_wqe_count, &wq_create->u.request_1,
12895 wq->entry_count);
12896 switch (wq->entry_size) {
12897 default:
12898 case 64:
12899 bf_set(lpfc_mbx_wq_create_wqe_size,
12900 &wq_create->u.request_1,
12901 LPFC_WQ_WQE_SIZE_64);
12902 break;
12903 case 128:
0c651878
JS
12904 if (!(phba->sli4_hba.pc_sli4_params.wqsize &
12905 LPFC_WQ_SZ128_SUPPORT)) {
12906 status = -ERANGE;
12907 goto out;
12908 }
5a6f133e
JS
12909 bf_set(lpfc_mbx_wq_create_wqe_size,
12910 &wq_create->u.request_1,
12911 LPFC_WQ_WQE_SIZE_128);
12912 break;
12913 }
12914 bf_set(lpfc_mbx_wq_create_page_size, &wq_create->u.request_1,
12915 (PAGE_SIZE/SLI4_PAGE_SIZE));
12916 page = wq_create->u.request_1.page;
0c651878
JS
12917 break;
12918 default:
12919 status = -ERANGE;
12920 goto out;
5a6f133e 12921 }
0c651878 12922
4f774513 12923 list_for_each_entry(dmabuf, &wq->page_list, list) {
49198b37 12924 memset(dmabuf->virt, 0, hw_page_size);
5a6f133e
JS
12925 page[dmabuf->buffer_tag].addr_lo = putPaddrLow(dmabuf->phys);
12926 page[dmabuf->buffer_tag].addr_hi = putPaddrHigh(dmabuf->phys);
4f774513 12927 }
962bc51b
JS
12928
12929 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
12930 bf_set(lpfc_mbx_wq_create_dua, &wq_create->u.request, 1);
12931
4f774513
JS
12932 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
12933 /* The IOCTL status is embedded in the mailbox subheader. */
4f774513
JS
12934 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
12935 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
12936 if (shdr_status || shdr_add_status || rc) {
12937 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12938 "2503 WQ_CREATE mailbox failed with "
12939 "status x%x add_status x%x, mbx status x%x\n",
12940 shdr_status, shdr_add_status, rc);
12941 status = -ENXIO;
12942 goto out;
12943 }
12944 wq->queue_id = bf_get(lpfc_mbx_wq_create_q_id, &wq_create->u.response);
12945 if (wq->queue_id == 0xFFFF) {
12946 status = -ENXIO;
12947 goto out;
12948 }
962bc51b
JS
12949 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE) {
12950 wq->db_format = bf_get(lpfc_mbx_wq_create_db_format,
12951 &wq_create->u.response);
12952 if ((wq->db_format != LPFC_DB_LIST_FORMAT) &&
12953 (wq->db_format != LPFC_DB_RING_FORMAT)) {
12954 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12955 "3265 WQ[%d] doorbell format not "
12956 "supported: x%x\n", wq->queue_id,
12957 wq->db_format);
12958 status = -EINVAL;
12959 goto out;
12960 }
12961 pci_barset = bf_get(lpfc_mbx_wq_create_bar_set,
12962 &wq_create->u.response);
12963 bar_memmap_p = lpfc_dual_chute_pci_bar_map(phba, pci_barset);
12964 if (!bar_memmap_p) {
12965 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12966 "3263 WQ[%d] failed to memmap pci "
12967 "barset:x%x\n", wq->queue_id,
12968 pci_barset);
12969 status = -ENOMEM;
12970 goto out;
12971 }
12972 db_offset = wq_create->u.response.doorbell_offset;
12973 if ((db_offset != LPFC_ULP0_WQ_DOORBELL) &&
12974 (db_offset != LPFC_ULP1_WQ_DOORBELL)) {
12975 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12976 "3252 WQ[%d] doorbell offset not "
12977 "supported: x%x\n", wq->queue_id,
12978 db_offset);
12979 status = -EINVAL;
12980 goto out;
12981 }
12982 wq->db_regaddr = bar_memmap_p + db_offset;
12983 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
a22e7db3
JS
12984 "3264 WQ[%d]: barset:x%x, offset:x%x, "
12985 "format:x%x\n", wq->queue_id, pci_barset,
12986 db_offset, wq->db_format);
962bc51b
JS
12987 } else {
12988 wq->db_format = LPFC_DB_LIST_FORMAT;
12989 wq->db_regaddr = phba->sli4_hba.WQDBregaddr;
12990 }
4f774513 12991 wq->type = LPFC_WQ;
2a622bfb 12992 wq->assoc_qid = cq->queue_id;
4f774513
JS
12993 wq->subtype = subtype;
12994 wq->host_index = 0;
12995 wq->hba_index = 0;
ff78d8f9 12996 wq->entry_repost = LPFC_RELEASE_NOTIFICATION_INTERVAL;
4f774513
JS
12997
12998 /* link the wq onto the parent cq child list */
12999 list_add_tail(&wq->list, &cq->child_list);
13000out:
8fa38513 13001 mempool_free(mbox, phba->mbox_mem_pool);
4f774513
JS
13002 return status;
13003}
13004
73d91e50
JS
13005/**
13006 * lpfc_rq_adjust_repost - Adjust entry_repost for an RQ
13007 * @phba: HBA structure that indicates port to create a queue on.
13008 * @rq: The queue structure to use for the receive queue.
13009 * @qno: The associated HBQ number
13010 *
13011 *
13012 * For SLI4 we need to adjust the RQ repost value based on
13013 * the number of buffers that are initially posted to the RQ.
13014 */
13015void
13016lpfc_rq_adjust_repost(struct lpfc_hba *phba, struct lpfc_queue *rq, int qno)
13017{
13018 uint32_t cnt;
13019
2e90f4b5
JS
13020 /* sanity check on queue memory */
13021 if (!rq)
13022 return;
73d91e50
JS
13023 cnt = lpfc_hbq_defs[qno]->entry_count;
13024
13025 /* Recalc repost for RQs based on buffers initially posted */
13026 cnt = (cnt >> 3);
13027 if (cnt < LPFC_QUEUE_MIN_REPOST)
13028 cnt = LPFC_QUEUE_MIN_REPOST;
13029
13030 rq->entry_repost = cnt;
13031}
13032
4f774513
JS
13033/**
13034 * lpfc_rq_create - Create a Receive Queue on the HBA
13035 * @phba: HBA structure that indicates port to create a queue on.
13036 * @hrq: The queue structure to use to create the header receive queue.
13037 * @drq: The queue structure to use to create the data receive queue.
13038 * @cq: The completion queue to bind this work queue to.
13039 *
13040 * This function creates a receive buffer queue pair , as detailed in @hrq and
13041 * @drq, on a port, described by @phba by sending a RQ_CREATE mailbox command
13042 * to the HBA.
13043 *
13044 * The @phba struct is used to send mailbox command to HBA. The @drq and @hrq
13045 * struct is used to get the entry count that is necessary to determine the
13046 * number of pages to use for this queue. The @cq is used to indicate which
13047 * completion queue to bind received buffers that are posted to these queues to.
13048 * This function will send the RQ_CREATE mailbox command to the HBA to setup the
13049 * receive queue pair. This function is asynchronous and will wait for the
13050 * mailbox command to finish before continuing.
13051 *
13052 * On success this function will return a zero. If unable to allocate enough
d439d286
JS
13053 * memory this function will return -ENOMEM. If the queue create mailbox command
13054 * fails this function will return -ENXIO.
4f774513
JS
13055 **/
13056uint32_t
13057lpfc_rq_create(struct lpfc_hba *phba, struct lpfc_queue *hrq,
13058 struct lpfc_queue *drq, struct lpfc_queue *cq, uint32_t subtype)
13059{
13060 struct lpfc_mbx_rq_create *rq_create;
13061 struct lpfc_dmabuf *dmabuf;
13062 LPFC_MBOXQ_t *mbox;
13063 int rc, length, status = 0;
13064 uint32_t shdr_status, shdr_add_status;
13065 union lpfc_sli4_cfg_shdr *shdr;
49198b37 13066 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
962bc51b
JS
13067 void __iomem *bar_memmap_p;
13068 uint32_t db_offset;
13069 uint16_t pci_barset;
49198b37 13070
2e90f4b5
JS
13071 /* sanity check on queue memory */
13072 if (!hrq || !drq || !cq)
13073 return -ENODEV;
49198b37
JS
13074 if (!phba->sli4_hba.pc_sli4_params.supported)
13075 hw_page_size = SLI4_PAGE_SIZE;
4f774513
JS
13076
13077 if (hrq->entry_count != drq->entry_count)
13078 return -EINVAL;
13079 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13080 if (!mbox)
13081 return -ENOMEM;
13082 length = (sizeof(struct lpfc_mbx_rq_create) -
13083 sizeof(struct lpfc_sli4_cfg_mhdr));
13084 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13085 LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
13086 length, LPFC_SLI4_MBX_EMBED);
13087 rq_create = &mbox->u.mqe.un.rq_create;
5a6f133e
JS
13088 shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
13089 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13090 phba->sli4_hba.pc_sli4_params.rqv);
13091 if (phba->sli4_hba.pc_sli4_params.rqv == LPFC_Q_CREATE_VERSION_1) {
13092 bf_set(lpfc_rq_context_rqe_count_1,
13093 &rq_create->u.request.context,
13094 hrq->entry_count);
13095 rq_create->u.request.context.buffer_size = LPFC_HDR_BUF_SIZE;
c31098ce
JS
13096 bf_set(lpfc_rq_context_rqe_size,
13097 &rq_create->u.request.context,
13098 LPFC_RQE_SIZE_8);
13099 bf_set(lpfc_rq_context_page_size,
13100 &rq_create->u.request.context,
13101 (PAGE_SIZE/SLI4_PAGE_SIZE));
5a6f133e
JS
13102 } else {
13103 switch (hrq->entry_count) {
13104 default:
13105 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13106 "2535 Unsupported RQ count. (%d)\n",
13107 hrq->entry_count);
4f4c1863
JS
13108 if (hrq->entry_count < 512) {
13109 status = -EINVAL;
13110 goto out;
13111 }
5a6f133e
JS
13112 /* otherwise default to smallest count (drop through) */
13113 case 512:
13114 bf_set(lpfc_rq_context_rqe_count,
13115 &rq_create->u.request.context,
13116 LPFC_RQ_RING_SIZE_512);
13117 break;
13118 case 1024:
13119 bf_set(lpfc_rq_context_rqe_count,
13120 &rq_create->u.request.context,
13121 LPFC_RQ_RING_SIZE_1024);
13122 break;
13123 case 2048:
13124 bf_set(lpfc_rq_context_rqe_count,
13125 &rq_create->u.request.context,
13126 LPFC_RQ_RING_SIZE_2048);
13127 break;
13128 case 4096:
13129 bf_set(lpfc_rq_context_rqe_count,
13130 &rq_create->u.request.context,
13131 LPFC_RQ_RING_SIZE_4096);
13132 break;
13133 }
13134 bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
13135 LPFC_HDR_BUF_SIZE);
4f774513
JS
13136 }
13137 bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
13138 cq->queue_id);
13139 bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
13140 hrq->page_count);
4f774513 13141 list_for_each_entry(dmabuf, &hrq->page_list, list) {
49198b37 13142 memset(dmabuf->virt, 0, hw_page_size);
4f774513
JS
13143 rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
13144 putPaddrLow(dmabuf->phys);
13145 rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
13146 putPaddrHigh(dmabuf->phys);
13147 }
962bc51b
JS
13148 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
13149 bf_set(lpfc_mbx_rq_create_dua, &rq_create->u.request, 1);
13150
4f774513
JS
13151 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13152 /* The IOCTL status is embedded in the mailbox subheader. */
4f774513
JS
13153 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13154 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13155 if (shdr_status || shdr_add_status || rc) {
13156 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13157 "2504 RQ_CREATE mailbox failed with "
13158 "status x%x add_status x%x, mbx status x%x\n",
13159 shdr_status, shdr_add_status, rc);
13160 status = -ENXIO;
13161 goto out;
13162 }
13163 hrq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
13164 if (hrq->queue_id == 0xFFFF) {
13165 status = -ENXIO;
13166 goto out;
13167 }
962bc51b
JS
13168
13169 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE) {
13170 hrq->db_format = bf_get(lpfc_mbx_rq_create_db_format,
13171 &rq_create->u.response);
13172 if ((hrq->db_format != LPFC_DB_LIST_FORMAT) &&
13173 (hrq->db_format != LPFC_DB_RING_FORMAT)) {
13174 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13175 "3262 RQ [%d] doorbell format not "
13176 "supported: x%x\n", hrq->queue_id,
13177 hrq->db_format);
13178 status = -EINVAL;
13179 goto out;
13180 }
13181
13182 pci_barset = bf_get(lpfc_mbx_rq_create_bar_set,
13183 &rq_create->u.response);
13184 bar_memmap_p = lpfc_dual_chute_pci_bar_map(phba, pci_barset);
13185 if (!bar_memmap_p) {
13186 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13187 "3269 RQ[%d] failed to memmap pci "
13188 "barset:x%x\n", hrq->queue_id,
13189 pci_barset);
13190 status = -ENOMEM;
13191 goto out;
13192 }
13193
13194 db_offset = rq_create->u.response.doorbell_offset;
13195 if ((db_offset != LPFC_ULP0_RQ_DOORBELL) &&
13196 (db_offset != LPFC_ULP1_RQ_DOORBELL)) {
13197 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13198 "3270 RQ[%d] doorbell offset not "
13199 "supported: x%x\n", hrq->queue_id,
13200 db_offset);
13201 status = -EINVAL;
13202 goto out;
13203 }
13204 hrq->db_regaddr = bar_memmap_p + db_offset;
13205 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
a22e7db3
JS
13206 "3266 RQ[qid:%d]: barset:x%x, offset:x%x, "
13207 "format:x%x\n", hrq->queue_id, pci_barset,
13208 db_offset, hrq->db_format);
962bc51b
JS
13209 } else {
13210 hrq->db_format = LPFC_DB_RING_FORMAT;
13211 hrq->db_regaddr = phba->sli4_hba.RQDBregaddr;
13212 }
4f774513 13213 hrq->type = LPFC_HRQ;
2a622bfb 13214 hrq->assoc_qid = cq->queue_id;
4f774513
JS
13215 hrq->subtype = subtype;
13216 hrq->host_index = 0;
13217 hrq->hba_index = 0;
13218
13219 /* now create the data queue */
13220 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13221 LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
13222 length, LPFC_SLI4_MBX_EMBED);
5a6f133e
JS
13223 bf_set(lpfc_mbox_hdr_version, &shdr->request,
13224 phba->sli4_hba.pc_sli4_params.rqv);
13225 if (phba->sli4_hba.pc_sli4_params.rqv == LPFC_Q_CREATE_VERSION_1) {
13226 bf_set(lpfc_rq_context_rqe_count_1,
c31098ce 13227 &rq_create->u.request.context, hrq->entry_count);
5a6f133e 13228 rq_create->u.request.context.buffer_size = LPFC_DATA_BUF_SIZE;
c31098ce
JS
13229 bf_set(lpfc_rq_context_rqe_size, &rq_create->u.request.context,
13230 LPFC_RQE_SIZE_8);
13231 bf_set(lpfc_rq_context_page_size, &rq_create->u.request.context,
13232 (PAGE_SIZE/SLI4_PAGE_SIZE));
5a6f133e
JS
13233 } else {
13234 switch (drq->entry_count) {
13235 default:
13236 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13237 "2536 Unsupported RQ count. (%d)\n",
13238 drq->entry_count);
4f4c1863
JS
13239 if (drq->entry_count < 512) {
13240 status = -EINVAL;
13241 goto out;
13242 }
5a6f133e
JS
13243 /* otherwise default to smallest count (drop through) */
13244 case 512:
13245 bf_set(lpfc_rq_context_rqe_count,
13246 &rq_create->u.request.context,
13247 LPFC_RQ_RING_SIZE_512);
13248 break;
13249 case 1024:
13250 bf_set(lpfc_rq_context_rqe_count,
13251 &rq_create->u.request.context,
13252 LPFC_RQ_RING_SIZE_1024);
13253 break;
13254 case 2048:
13255 bf_set(lpfc_rq_context_rqe_count,
13256 &rq_create->u.request.context,
13257 LPFC_RQ_RING_SIZE_2048);
13258 break;
13259 case 4096:
13260 bf_set(lpfc_rq_context_rqe_count,
13261 &rq_create->u.request.context,
13262 LPFC_RQ_RING_SIZE_4096);
13263 break;
13264 }
13265 bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
13266 LPFC_DATA_BUF_SIZE);
4f774513
JS
13267 }
13268 bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
13269 cq->queue_id);
13270 bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
13271 drq->page_count);
4f774513
JS
13272 list_for_each_entry(dmabuf, &drq->page_list, list) {
13273 rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
13274 putPaddrLow(dmabuf->phys);
13275 rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
13276 putPaddrHigh(dmabuf->phys);
13277 }
962bc51b
JS
13278 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
13279 bf_set(lpfc_mbx_rq_create_dua, &rq_create->u.request, 1);
4f774513
JS
13280 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13281 /* The IOCTL status is embedded in the mailbox subheader. */
13282 shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
13283 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13284 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13285 if (shdr_status || shdr_add_status || rc) {
13286 status = -ENXIO;
13287 goto out;
13288 }
13289 drq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
13290 if (drq->queue_id == 0xFFFF) {
13291 status = -ENXIO;
13292 goto out;
13293 }
13294 drq->type = LPFC_DRQ;
2a622bfb 13295 drq->assoc_qid = cq->queue_id;
4f774513
JS
13296 drq->subtype = subtype;
13297 drq->host_index = 0;
13298 drq->hba_index = 0;
13299
13300 /* link the header and data RQs onto the parent cq child list */
13301 list_add_tail(&hrq->list, &cq->child_list);
13302 list_add_tail(&drq->list, &cq->child_list);
13303
13304out:
8fa38513 13305 mempool_free(mbox, phba->mbox_mem_pool);
4f774513
JS
13306 return status;
13307}
13308
13309/**
13310 * lpfc_eq_destroy - Destroy an event Queue on the HBA
13311 * @eq: The queue structure associated with the queue to destroy.
13312 *
13313 * This function destroys a queue, as detailed in @eq by sending an mailbox
13314 * command, specific to the type of queue, to the HBA.
13315 *
13316 * The @eq struct is used to get the queue ID of the queue to destroy.
13317 *
13318 * On success this function will return a zero. If the queue destroy mailbox
d439d286 13319 * command fails this function will return -ENXIO.
4f774513
JS
13320 **/
13321uint32_t
13322lpfc_eq_destroy(struct lpfc_hba *phba, struct lpfc_queue *eq)
13323{
13324 LPFC_MBOXQ_t *mbox;
13325 int rc, length, status = 0;
13326 uint32_t shdr_status, shdr_add_status;
13327 union lpfc_sli4_cfg_shdr *shdr;
13328
2e90f4b5 13329 /* sanity check on queue memory */
4f774513
JS
13330 if (!eq)
13331 return -ENODEV;
13332 mbox = mempool_alloc(eq->phba->mbox_mem_pool, GFP_KERNEL);
13333 if (!mbox)
13334 return -ENOMEM;
13335 length = (sizeof(struct lpfc_mbx_eq_destroy) -
13336 sizeof(struct lpfc_sli4_cfg_mhdr));
13337 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13338 LPFC_MBOX_OPCODE_EQ_DESTROY,
13339 length, LPFC_SLI4_MBX_EMBED);
13340 bf_set(lpfc_mbx_eq_destroy_q_id, &mbox->u.mqe.un.eq_destroy.u.request,
13341 eq->queue_id);
13342 mbox->vport = eq->phba->pport;
13343 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
13344
13345 rc = lpfc_sli_issue_mbox(eq->phba, mbox, MBX_POLL);
13346 /* The IOCTL status is embedded in the mailbox subheader. */
13347 shdr = (union lpfc_sli4_cfg_shdr *)
13348 &mbox->u.mqe.un.eq_destroy.header.cfg_shdr;
13349 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13350 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13351 if (shdr_status || shdr_add_status || rc) {
13352 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13353 "2505 EQ_DESTROY mailbox failed with "
13354 "status x%x add_status x%x, mbx status x%x\n",
13355 shdr_status, shdr_add_status, rc);
13356 status = -ENXIO;
13357 }
13358
13359 /* Remove eq from any list */
13360 list_del_init(&eq->list);
8fa38513 13361 mempool_free(mbox, eq->phba->mbox_mem_pool);
4f774513
JS
13362 return status;
13363}
13364
13365/**
13366 * lpfc_cq_destroy - Destroy a Completion Queue on the HBA
13367 * @cq: The queue structure associated with the queue to destroy.
13368 *
13369 * This function destroys a queue, as detailed in @cq by sending an mailbox
13370 * command, specific to the type of queue, to the HBA.
13371 *
13372 * The @cq struct is used to get the queue ID of the queue to destroy.
13373 *
13374 * On success this function will return a zero. If the queue destroy mailbox
d439d286 13375 * command fails this function will return -ENXIO.
4f774513
JS
13376 **/
13377uint32_t
13378lpfc_cq_destroy(struct lpfc_hba *phba, struct lpfc_queue *cq)
13379{
13380 LPFC_MBOXQ_t *mbox;
13381 int rc, length, status = 0;
13382 uint32_t shdr_status, shdr_add_status;
13383 union lpfc_sli4_cfg_shdr *shdr;
13384
2e90f4b5 13385 /* sanity check on queue memory */
4f774513
JS
13386 if (!cq)
13387 return -ENODEV;
13388 mbox = mempool_alloc(cq->phba->mbox_mem_pool, GFP_KERNEL);
13389 if (!mbox)
13390 return -ENOMEM;
13391 length = (sizeof(struct lpfc_mbx_cq_destroy) -
13392 sizeof(struct lpfc_sli4_cfg_mhdr));
13393 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13394 LPFC_MBOX_OPCODE_CQ_DESTROY,
13395 length, LPFC_SLI4_MBX_EMBED);
13396 bf_set(lpfc_mbx_cq_destroy_q_id, &mbox->u.mqe.un.cq_destroy.u.request,
13397 cq->queue_id);
13398 mbox->vport = cq->phba->pport;
13399 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
13400 rc = lpfc_sli_issue_mbox(cq->phba, mbox, MBX_POLL);
13401 /* The IOCTL status is embedded in the mailbox subheader. */
13402 shdr = (union lpfc_sli4_cfg_shdr *)
13403 &mbox->u.mqe.un.wq_create.header.cfg_shdr;
13404 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13405 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13406 if (shdr_status || shdr_add_status || rc) {
13407 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13408 "2506 CQ_DESTROY mailbox failed with "
13409 "status x%x add_status x%x, mbx status x%x\n",
13410 shdr_status, shdr_add_status, rc);
13411 status = -ENXIO;
13412 }
13413 /* Remove cq from any list */
13414 list_del_init(&cq->list);
8fa38513 13415 mempool_free(mbox, cq->phba->mbox_mem_pool);
4f774513
JS
13416 return status;
13417}
13418
04c68496
JS
13419/**
13420 * lpfc_mq_destroy - Destroy a Mailbox Queue on the HBA
13421 * @qm: The queue structure associated with the queue to destroy.
13422 *
13423 * This function destroys a queue, as detailed in @mq by sending an mailbox
13424 * command, specific to the type of queue, to the HBA.
13425 *
13426 * The @mq struct is used to get the queue ID of the queue to destroy.
13427 *
13428 * On success this function will return a zero. If the queue destroy mailbox
d439d286 13429 * command fails this function will return -ENXIO.
04c68496
JS
13430 **/
13431uint32_t
13432lpfc_mq_destroy(struct lpfc_hba *phba, struct lpfc_queue *mq)
13433{
13434 LPFC_MBOXQ_t *mbox;
13435 int rc, length, status = 0;
13436 uint32_t shdr_status, shdr_add_status;
13437 union lpfc_sli4_cfg_shdr *shdr;
13438
2e90f4b5 13439 /* sanity check on queue memory */
04c68496
JS
13440 if (!mq)
13441 return -ENODEV;
13442 mbox = mempool_alloc(mq->phba->mbox_mem_pool, GFP_KERNEL);
13443 if (!mbox)
13444 return -ENOMEM;
13445 length = (sizeof(struct lpfc_mbx_mq_destroy) -
13446 sizeof(struct lpfc_sli4_cfg_mhdr));
13447 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
13448 LPFC_MBOX_OPCODE_MQ_DESTROY,
13449 length, LPFC_SLI4_MBX_EMBED);
13450 bf_set(lpfc_mbx_mq_destroy_q_id, &mbox->u.mqe.un.mq_destroy.u.request,
13451 mq->queue_id);
13452 mbox->vport = mq->phba->pport;
13453 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
13454 rc = lpfc_sli_issue_mbox(mq->phba, mbox, MBX_POLL);
13455 /* The IOCTL status is embedded in the mailbox subheader. */
13456 shdr = (union lpfc_sli4_cfg_shdr *)
13457 &mbox->u.mqe.un.mq_destroy.header.cfg_shdr;
13458 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13459 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13460 if (shdr_status || shdr_add_status || rc) {
13461 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13462 "2507 MQ_DESTROY mailbox failed with "
13463 "status x%x add_status x%x, mbx status x%x\n",
13464 shdr_status, shdr_add_status, rc);
13465 status = -ENXIO;
13466 }
13467 /* Remove mq from any list */
13468 list_del_init(&mq->list);
8fa38513 13469 mempool_free(mbox, mq->phba->mbox_mem_pool);
04c68496
JS
13470 return status;
13471}
13472
4f774513
JS
13473/**
13474 * lpfc_wq_destroy - Destroy a Work Queue on the HBA
13475 * @wq: The queue structure associated with the queue to destroy.
13476 *
13477 * This function destroys a queue, as detailed in @wq by sending an mailbox
13478 * command, specific to the type of queue, to the HBA.
13479 *
13480 * The @wq struct is used to get the queue ID of the queue to destroy.
13481 *
13482 * On success this function will return a zero. If the queue destroy mailbox
d439d286 13483 * command fails this function will return -ENXIO.
4f774513
JS
13484 **/
13485uint32_t
13486lpfc_wq_destroy(struct lpfc_hba *phba, struct lpfc_queue *wq)
13487{
13488 LPFC_MBOXQ_t *mbox;
13489 int rc, length, status = 0;
13490 uint32_t shdr_status, shdr_add_status;
13491 union lpfc_sli4_cfg_shdr *shdr;
13492
2e90f4b5 13493 /* sanity check on queue memory */
4f774513
JS
13494 if (!wq)
13495 return -ENODEV;
13496 mbox = mempool_alloc(wq->phba->mbox_mem_pool, GFP_KERNEL);
13497 if (!mbox)
13498 return -ENOMEM;
13499 length = (sizeof(struct lpfc_mbx_wq_destroy) -
13500 sizeof(struct lpfc_sli4_cfg_mhdr));
13501 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13502 LPFC_MBOX_OPCODE_FCOE_WQ_DESTROY,
13503 length, LPFC_SLI4_MBX_EMBED);
13504 bf_set(lpfc_mbx_wq_destroy_q_id, &mbox->u.mqe.un.wq_destroy.u.request,
13505 wq->queue_id);
13506 mbox->vport = wq->phba->pport;
13507 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
13508 rc = lpfc_sli_issue_mbox(wq->phba, mbox, MBX_POLL);
13509 shdr = (union lpfc_sli4_cfg_shdr *)
13510 &mbox->u.mqe.un.wq_destroy.header.cfg_shdr;
13511 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13512 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13513 if (shdr_status || shdr_add_status || rc) {
13514 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13515 "2508 WQ_DESTROY mailbox failed with "
13516 "status x%x add_status x%x, mbx status x%x\n",
13517 shdr_status, shdr_add_status, rc);
13518 status = -ENXIO;
13519 }
13520 /* Remove wq from any list */
13521 list_del_init(&wq->list);
8fa38513 13522 mempool_free(mbox, wq->phba->mbox_mem_pool);
4f774513
JS
13523 return status;
13524}
13525
13526/**
13527 * lpfc_rq_destroy - Destroy a Receive Queue on the HBA
13528 * @rq: The queue structure associated with the queue to destroy.
13529 *
13530 * This function destroys a queue, as detailed in @rq by sending an mailbox
13531 * command, specific to the type of queue, to the HBA.
13532 *
13533 * The @rq struct is used to get the queue ID of the queue to destroy.
13534 *
13535 * On success this function will return a zero. If the queue destroy mailbox
d439d286 13536 * command fails this function will return -ENXIO.
4f774513
JS
13537 **/
13538uint32_t
13539lpfc_rq_destroy(struct lpfc_hba *phba, struct lpfc_queue *hrq,
13540 struct lpfc_queue *drq)
13541{
13542 LPFC_MBOXQ_t *mbox;
13543 int rc, length, status = 0;
13544 uint32_t shdr_status, shdr_add_status;
13545 union lpfc_sli4_cfg_shdr *shdr;
13546
2e90f4b5 13547 /* sanity check on queue memory */
4f774513
JS
13548 if (!hrq || !drq)
13549 return -ENODEV;
13550 mbox = mempool_alloc(hrq->phba->mbox_mem_pool, GFP_KERNEL);
13551 if (!mbox)
13552 return -ENOMEM;
13553 length = (sizeof(struct lpfc_mbx_rq_destroy) -
fedd3b7b 13554 sizeof(struct lpfc_sli4_cfg_mhdr));
4f774513
JS
13555 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13556 LPFC_MBOX_OPCODE_FCOE_RQ_DESTROY,
13557 length, LPFC_SLI4_MBX_EMBED);
13558 bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
13559 hrq->queue_id);
13560 mbox->vport = hrq->phba->pport;
13561 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
13562 rc = lpfc_sli_issue_mbox(hrq->phba, mbox, MBX_POLL);
13563 /* The IOCTL status is embedded in the mailbox subheader. */
13564 shdr = (union lpfc_sli4_cfg_shdr *)
13565 &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
13566 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13567 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13568 if (shdr_status || shdr_add_status || rc) {
13569 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13570 "2509 RQ_DESTROY mailbox failed with "
13571 "status x%x add_status x%x, mbx status x%x\n",
13572 shdr_status, shdr_add_status, rc);
13573 if (rc != MBX_TIMEOUT)
13574 mempool_free(mbox, hrq->phba->mbox_mem_pool);
13575 return -ENXIO;
13576 }
13577 bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
13578 drq->queue_id);
13579 rc = lpfc_sli_issue_mbox(drq->phba, mbox, MBX_POLL);
13580 shdr = (union lpfc_sli4_cfg_shdr *)
13581 &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
13582 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13583 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13584 if (shdr_status || shdr_add_status || rc) {
13585 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13586 "2510 RQ_DESTROY mailbox failed with "
13587 "status x%x add_status x%x, mbx status x%x\n",
13588 shdr_status, shdr_add_status, rc);
13589 status = -ENXIO;
13590 }
13591 list_del_init(&hrq->list);
13592 list_del_init(&drq->list);
8fa38513 13593 mempool_free(mbox, hrq->phba->mbox_mem_pool);
4f774513
JS
13594 return status;
13595}
13596
13597/**
13598 * lpfc_sli4_post_sgl - Post scatter gather list for an XRI to HBA
13599 * @phba: The virtual port for which this call being executed.
13600 * @pdma_phys_addr0: Physical address of the 1st SGL page.
13601 * @pdma_phys_addr1: Physical address of the 2nd SGL page.
13602 * @xritag: the xritag that ties this io to the SGL pages.
13603 *
13604 * This routine will post the sgl pages for the IO that has the xritag
13605 * that is in the iocbq structure. The xritag is assigned during iocbq
13606 * creation and persists for as long as the driver is loaded.
13607 * if the caller has fewer than 256 scatter gather segments to map then
13608 * pdma_phys_addr1 should be 0.
13609 * If the caller needs to map more than 256 scatter gather segment then
13610 * pdma_phys_addr1 should be a valid physical address.
13611 * physical address for SGLs must be 64 byte aligned.
13612 * If you are going to map 2 SGL's then the first one must have 256 entries
13613 * the second sgl can have between 1 and 256 entries.
13614 *
13615 * Return codes:
13616 * 0 - Success
13617 * -ENXIO, -ENOMEM - Failure
13618 **/
13619int
13620lpfc_sli4_post_sgl(struct lpfc_hba *phba,
13621 dma_addr_t pdma_phys_addr0,
13622 dma_addr_t pdma_phys_addr1,
13623 uint16_t xritag)
13624{
13625 struct lpfc_mbx_post_sgl_pages *post_sgl_pages;
13626 LPFC_MBOXQ_t *mbox;
13627 int rc;
13628 uint32_t shdr_status, shdr_add_status;
6d368e53 13629 uint32_t mbox_tmo;
4f774513
JS
13630 union lpfc_sli4_cfg_shdr *shdr;
13631
13632 if (xritag == NO_XRI) {
13633 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13634 "0364 Invalid param:\n");
13635 return -EINVAL;
13636 }
13637
13638 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13639 if (!mbox)
13640 return -ENOMEM;
13641
13642 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13643 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES,
13644 sizeof(struct lpfc_mbx_post_sgl_pages) -
fedd3b7b 13645 sizeof(struct lpfc_sli4_cfg_mhdr), LPFC_SLI4_MBX_EMBED);
4f774513
JS
13646
13647 post_sgl_pages = (struct lpfc_mbx_post_sgl_pages *)
13648 &mbox->u.mqe.un.post_sgl_pages;
13649 bf_set(lpfc_post_sgl_pages_xri, post_sgl_pages, xritag);
13650 bf_set(lpfc_post_sgl_pages_xricnt, post_sgl_pages, 1);
13651
13652 post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_lo =
13653 cpu_to_le32(putPaddrLow(pdma_phys_addr0));
13654 post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_hi =
13655 cpu_to_le32(putPaddrHigh(pdma_phys_addr0));
13656
13657 post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_lo =
13658 cpu_to_le32(putPaddrLow(pdma_phys_addr1));
13659 post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_hi =
13660 cpu_to_le32(putPaddrHigh(pdma_phys_addr1));
13661 if (!phba->sli4_hba.intr_enable)
13662 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
6d368e53 13663 else {
a183a15f 13664 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
6d368e53
JS
13665 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
13666 }
4f774513
JS
13667 /* The IOCTL status is embedded in the mailbox subheader. */
13668 shdr = (union lpfc_sli4_cfg_shdr *) &post_sgl_pages->header.cfg_shdr;
13669 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13670 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13671 if (rc != MBX_TIMEOUT)
13672 mempool_free(mbox, phba->mbox_mem_pool);
13673 if (shdr_status || shdr_add_status || rc) {
13674 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13675 "2511 POST_SGL mailbox failed with "
13676 "status x%x add_status x%x, mbx status x%x\n",
13677 shdr_status, shdr_add_status, rc);
13678 rc = -ENXIO;
13679 }
13680 return 0;
13681}
4f774513 13682
6d368e53 13683/**
88a2cfbb 13684 * lpfc_sli4_alloc_xri - Get an available rpi in the device's range
6d368e53
JS
13685 * @phba: pointer to lpfc hba data structure.
13686 *
13687 * This routine is invoked to post rpi header templates to the
88a2cfbb
JS
13688 * HBA consistent with the SLI-4 interface spec. This routine
13689 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
13690 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
6d368e53 13691 *
88a2cfbb
JS
13692 * Returns
13693 * A nonzero rpi defined as rpi_base <= rpi < max_rpi if successful
13694 * LPFC_RPI_ALLOC_ERROR if no rpis are available.
13695 **/
6d368e53
JS
13696uint16_t
13697lpfc_sli4_alloc_xri(struct lpfc_hba *phba)
13698{
13699 unsigned long xri;
13700
13701 /*
13702 * Fetch the next logical xri. Because this index is logical,
13703 * the driver starts at 0 each time.
13704 */
13705 spin_lock_irq(&phba->hbalock);
13706 xri = find_next_zero_bit(phba->sli4_hba.xri_bmask,
13707 phba->sli4_hba.max_cfg_param.max_xri, 0);
13708 if (xri >= phba->sli4_hba.max_cfg_param.max_xri) {
13709 spin_unlock_irq(&phba->hbalock);
13710 return NO_XRI;
13711 } else {
13712 set_bit(xri, phba->sli4_hba.xri_bmask);
13713 phba->sli4_hba.max_cfg_param.xri_used++;
6d368e53 13714 }
6d368e53
JS
13715 spin_unlock_irq(&phba->hbalock);
13716 return xri;
13717}
13718
13719/**
13720 * lpfc_sli4_free_xri - Release an xri for reuse.
13721 * @phba: pointer to lpfc hba data structure.
13722 *
13723 * This routine is invoked to release an xri to the pool of
13724 * available rpis maintained by the driver.
13725 **/
13726void
13727__lpfc_sli4_free_xri(struct lpfc_hba *phba, int xri)
13728{
13729 if (test_and_clear_bit(xri, phba->sli4_hba.xri_bmask)) {
6d368e53
JS
13730 phba->sli4_hba.max_cfg_param.xri_used--;
13731 }
13732}
13733
13734/**
13735 * lpfc_sli4_free_xri - Release an xri for reuse.
13736 * @phba: pointer to lpfc hba data structure.
13737 *
13738 * This routine is invoked to release an xri to the pool of
13739 * available rpis maintained by the driver.
13740 **/
13741void
13742lpfc_sli4_free_xri(struct lpfc_hba *phba, int xri)
13743{
13744 spin_lock_irq(&phba->hbalock);
13745 __lpfc_sli4_free_xri(phba, xri);
13746 spin_unlock_irq(&phba->hbalock);
13747}
13748
4f774513
JS
13749/**
13750 * lpfc_sli4_next_xritag - Get an xritag for the io
13751 * @phba: Pointer to HBA context object.
13752 *
13753 * This function gets an xritag for the iocb. If there is no unused xritag
13754 * it will return 0xffff.
13755 * The function returns the allocated xritag if successful, else returns zero.
13756 * Zero is not a valid xritag.
13757 * The caller is not required to hold any lock.
13758 **/
13759uint16_t
13760lpfc_sli4_next_xritag(struct lpfc_hba *phba)
13761{
6d368e53 13762 uint16_t xri_index;
4f774513 13763
6d368e53 13764 xri_index = lpfc_sli4_alloc_xri(phba);
81378052
JS
13765 if (xri_index == NO_XRI)
13766 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
13767 "2004 Failed to allocate XRI.last XRITAG is %d"
13768 " Max XRI is %d, Used XRI is %d\n",
13769 xri_index,
13770 phba->sli4_hba.max_cfg_param.max_xri,
13771 phba->sli4_hba.max_cfg_param.xri_used);
13772 return xri_index;
4f774513
JS
13773}
13774
13775/**
6d368e53 13776 * lpfc_sli4_post_els_sgl_list - post a block of ELS sgls to the port.
4f774513 13777 * @phba: pointer to lpfc hba data structure.
8a9d2e80
JS
13778 * @post_sgl_list: pointer to els sgl entry list.
13779 * @count: number of els sgl entries on the list.
4f774513
JS
13780 *
13781 * This routine is invoked to post a block of driver's sgl pages to the
13782 * HBA using non-embedded mailbox command. No Lock is held. This routine
13783 * is only called when the driver is loading and after all IO has been
13784 * stopped.
13785 **/
8a9d2e80
JS
13786static int
13787lpfc_sli4_post_els_sgl_list(struct lpfc_hba *phba,
13788 struct list_head *post_sgl_list,
13789 int post_cnt)
4f774513 13790{
8a9d2e80 13791 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
4f774513
JS
13792 struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
13793 struct sgl_page_pairs *sgl_pg_pairs;
13794 void *viraddr;
13795 LPFC_MBOXQ_t *mbox;
13796 uint32_t reqlen, alloclen, pg_pairs;
13797 uint32_t mbox_tmo;
8a9d2e80
JS
13798 uint16_t xritag_start = 0;
13799 int rc = 0;
4f774513
JS
13800 uint32_t shdr_status, shdr_add_status;
13801 union lpfc_sli4_cfg_shdr *shdr;
13802
8a9d2e80 13803 reqlen = phba->sli4_hba.els_xri_cnt * sizeof(struct sgl_page_pairs) +
4f774513 13804 sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
49198b37 13805 if (reqlen > SLI4_PAGE_SIZE) {
4f774513
JS
13806 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
13807 "2559 Block sgl registration required DMA "
13808 "size (%d) great than a page\n", reqlen);
13809 return -ENOMEM;
13810 }
13811 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6d368e53 13812 if (!mbox)
4f774513 13813 return -ENOMEM;
4f774513
JS
13814
13815 /* Allocate DMA memory and set up the non-embedded mailbox command */
13816 alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13817 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
13818 LPFC_SLI4_MBX_NEMBED);
13819
13820 if (alloclen < reqlen) {
13821 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13822 "0285 Allocated DMA memory size (%d) is "
13823 "less than the requested DMA memory "
13824 "size (%d)\n", alloclen, reqlen);
13825 lpfc_sli4_mbox_cmd_free(phba, mbox);
13826 return -ENOMEM;
13827 }
4f774513 13828 /* Set up the SGL pages in the non-embedded DMA pages */
6d368e53 13829 viraddr = mbox->sge_array->addr[0];
4f774513
JS
13830 sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
13831 sgl_pg_pairs = &sgl->sgl_pg_pairs;
13832
8a9d2e80
JS
13833 pg_pairs = 0;
13834 list_for_each_entry_safe(sglq_entry, sglq_next, post_sgl_list, list) {
4f774513
JS
13835 /* Set up the sge entry */
13836 sgl_pg_pairs->sgl_pg0_addr_lo =
13837 cpu_to_le32(putPaddrLow(sglq_entry->phys));
13838 sgl_pg_pairs->sgl_pg0_addr_hi =
13839 cpu_to_le32(putPaddrHigh(sglq_entry->phys));
13840 sgl_pg_pairs->sgl_pg1_addr_lo =
13841 cpu_to_le32(putPaddrLow(0));
13842 sgl_pg_pairs->sgl_pg1_addr_hi =
13843 cpu_to_le32(putPaddrHigh(0));
6d368e53 13844
4f774513
JS
13845 /* Keep the first xritag on the list */
13846 if (pg_pairs == 0)
13847 xritag_start = sglq_entry->sli4_xritag;
13848 sgl_pg_pairs++;
8a9d2e80 13849 pg_pairs++;
4f774513 13850 }
6d368e53
JS
13851
13852 /* Complete initialization and perform endian conversion. */
4f774513 13853 bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
8a9d2e80 13854 bf_set(lpfc_post_sgl_pages_xricnt, sgl, phba->sli4_hba.els_xri_cnt);
4f774513 13855 sgl->word0 = cpu_to_le32(sgl->word0);
4f774513
JS
13856 if (!phba->sli4_hba.intr_enable)
13857 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13858 else {
a183a15f 13859 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
4f774513
JS
13860 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
13861 }
13862 shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
13863 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13864 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13865 if (rc != MBX_TIMEOUT)
13866 lpfc_sli4_mbox_cmd_free(phba, mbox);
13867 if (shdr_status || shdr_add_status || rc) {
13868 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13869 "2513 POST_SGL_BLOCK mailbox command failed "
13870 "status x%x add_status x%x mbx status x%x\n",
13871 shdr_status, shdr_add_status, rc);
13872 rc = -ENXIO;
13873 }
13874 return rc;
13875}
13876
13877/**
13878 * lpfc_sli4_post_scsi_sgl_block - post a block of scsi sgl list to firmware
13879 * @phba: pointer to lpfc hba data structure.
13880 * @sblist: pointer to scsi buffer list.
13881 * @count: number of scsi buffers on the list.
13882 *
13883 * This routine is invoked to post a block of @count scsi sgl pages from a
13884 * SCSI buffer list @sblist to the HBA using non-embedded mailbox command.
13885 * No Lock is held.
13886 *
13887 **/
13888int
8a9d2e80
JS
13889lpfc_sli4_post_scsi_sgl_block(struct lpfc_hba *phba,
13890 struct list_head *sblist,
13891 int count)
4f774513
JS
13892{
13893 struct lpfc_scsi_buf *psb;
13894 struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
13895 struct sgl_page_pairs *sgl_pg_pairs;
13896 void *viraddr;
13897 LPFC_MBOXQ_t *mbox;
13898 uint32_t reqlen, alloclen, pg_pairs;
13899 uint32_t mbox_tmo;
13900 uint16_t xritag_start = 0;
13901 int rc = 0;
13902 uint32_t shdr_status, shdr_add_status;
13903 dma_addr_t pdma_phys_bpl1;
13904 union lpfc_sli4_cfg_shdr *shdr;
13905
13906 /* Calculate the requested length of the dma memory */
8a9d2e80 13907 reqlen = count * sizeof(struct sgl_page_pairs) +
4f774513 13908 sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
49198b37 13909 if (reqlen > SLI4_PAGE_SIZE) {
4f774513
JS
13910 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
13911 "0217 Block sgl registration required DMA "
13912 "size (%d) great than a page\n", reqlen);
13913 return -ENOMEM;
13914 }
13915 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13916 if (!mbox) {
13917 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13918 "0283 Failed to allocate mbox cmd memory\n");
13919 return -ENOMEM;
13920 }
13921
13922 /* Allocate DMA memory and set up the non-embedded mailbox command */
13923 alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
13924 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
13925 LPFC_SLI4_MBX_NEMBED);
13926
13927 if (alloclen < reqlen) {
13928 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13929 "2561 Allocated DMA memory size (%d) is "
13930 "less than the requested DMA memory "
13931 "size (%d)\n", alloclen, reqlen);
13932 lpfc_sli4_mbox_cmd_free(phba, mbox);
13933 return -ENOMEM;
13934 }
6d368e53 13935
4f774513 13936 /* Get the first SGE entry from the non-embedded DMA memory */
4f774513
JS
13937 viraddr = mbox->sge_array->addr[0];
13938
13939 /* Set up the SGL pages in the non-embedded DMA pages */
13940 sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
13941 sgl_pg_pairs = &sgl->sgl_pg_pairs;
13942
13943 pg_pairs = 0;
13944 list_for_each_entry(psb, sblist, list) {
13945 /* Set up the sge entry */
13946 sgl_pg_pairs->sgl_pg0_addr_lo =
13947 cpu_to_le32(putPaddrLow(psb->dma_phys_bpl));
13948 sgl_pg_pairs->sgl_pg0_addr_hi =
13949 cpu_to_le32(putPaddrHigh(psb->dma_phys_bpl));
13950 if (phba->cfg_sg_dma_buf_size > SGL_PAGE_SIZE)
13951 pdma_phys_bpl1 = psb->dma_phys_bpl + SGL_PAGE_SIZE;
13952 else
13953 pdma_phys_bpl1 = 0;
13954 sgl_pg_pairs->sgl_pg1_addr_lo =
13955 cpu_to_le32(putPaddrLow(pdma_phys_bpl1));
13956 sgl_pg_pairs->sgl_pg1_addr_hi =
13957 cpu_to_le32(putPaddrHigh(pdma_phys_bpl1));
13958 /* Keep the first xritag on the list */
13959 if (pg_pairs == 0)
13960 xritag_start = psb->cur_iocbq.sli4_xritag;
13961 sgl_pg_pairs++;
13962 pg_pairs++;
13963 }
13964 bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
13965 bf_set(lpfc_post_sgl_pages_xricnt, sgl, pg_pairs);
13966 /* Perform endian conversion if necessary */
13967 sgl->word0 = cpu_to_le32(sgl->word0);
13968
13969 if (!phba->sli4_hba.intr_enable)
13970 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
13971 else {
a183a15f 13972 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
4f774513
JS
13973 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
13974 }
13975 shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
13976 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13977 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
13978 if (rc != MBX_TIMEOUT)
13979 lpfc_sli4_mbox_cmd_free(phba, mbox);
13980 if (shdr_status || shdr_add_status || rc) {
13981 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13982 "2564 POST_SGL_BLOCK mailbox command failed "
13983 "status x%x add_status x%x mbx status x%x\n",
13984 shdr_status, shdr_add_status, rc);
13985 rc = -ENXIO;
13986 }
13987 return rc;
13988}
13989
13990/**
13991 * lpfc_fc_frame_check - Check that this frame is a valid frame to handle
13992 * @phba: pointer to lpfc_hba struct that the frame was received on
13993 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
13994 *
13995 * This function checks the fields in the @fc_hdr to see if the FC frame is a
13996 * valid type of frame that the LPFC driver will handle. This function will
13997 * return a zero if the frame is a valid frame or a non zero value when the
13998 * frame does not pass the check.
13999 **/
14000static int
14001lpfc_fc_frame_check(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr)
14002{
474ffb74
TH
14003 /* make rctl_names static to save stack space */
14004 static char *rctl_names[] = FC_RCTL_NAMES_INIT;
4f774513
JS
14005 char *type_names[] = FC_TYPE_NAMES_INIT;
14006 struct fc_vft_header *fc_vft_hdr;
546fc854 14007 uint32_t *header = (uint32_t *) fc_hdr;
4f774513
JS
14008
14009 switch (fc_hdr->fh_r_ctl) {
14010 case FC_RCTL_DD_UNCAT: /* uncategorized information */
14011 case FC_RCTL_DD_SOL_DATA: /* solicited data */
14012 case FC_RCTL_DD_UNSOL_CTL: /* unsolicited control */
14013 case FC_RCTL_DD_SOL_CTL: /* solicited control or reply */
14014 case FC_RCTL_DD_UNSOL_DATA: /* unsolicited data */
14015 case FC_RCTL_DD_DATA_DESC: /* data descriptor */
14016 case FC_RCTL_DD_UNSOL_CMD: /* unsolicited command */
14017 case FC_RCTL_DD_CMD_STATUS: /* command status */
14018 case FC_RCTL_ELS_REQ: /* extended link services request */
14019 case FC_RCTL_ELS_REP: /* extended link services reply */
14020 case FC_RCTL_ELS4_REQ: /* FC-4 ELS request */
14021 case FC_RCTL_ELS4_REP: /* FC-4 ELS reply */
14022 case FC_RCTL_BA_NOP: /* basic link service NOP */
14023 case FC_RCTL_BA_ABTS: /* basic link service abort */
14024 case FC_RCTL_BA_RMC: /* remove connection */
14025 case FC_RCTL_BA_ACC: /* basic accept */
14026 case FC_RCTL_BA_RJT: /* basic reject */
14027 case FC_RCTL_BA_PRMT:
14028 case FC_RCTL_ACK_1: /* acknowledge_1 */
14029 case FC_RCTL_ACK_0: /* acknowledge_0 */
14030 case FC_RCTL_P_RJT: /* port reject */
14031 case FC_RCTL_F_RJT: /* fabric reject */
14032 case FC_RCTL_P_BSY: /* port busy */
14033 case FC_RCTL_F_BSY: /* fabric busy to data frame */
14034 case FC_RCTL_F_BSYL: /* fabric busy to link control frame */
14035 case FC_RCTL_LCR: /* link credit reset */
14036 case FC_RCTL_END: /* end */
14037 break;
14038 case FC_RCTL_VFTH: /* Virtual Fabric tagging Header */
14039 fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
14040 fc_hdr = &((struct fc_frame_header *)fc_vft_hdr)[1];
14041 return lpfc_fc_frame_check(phba, fc_hdr);
14042 default:
14043 goto drop;
14044 }
14045 switch (fc_hdr->fh_type) {
14046 case FC_TYPE_BLS:
14047 case FC_TYPE_ELS:
14048 case FC_TYPE_FCP:
14049 case FC_TYPE_CT:
14050 break;
14051 case FC_TYPE_IP:
14052 case FC_TYPE_ILS:
14053 default:
14054 goto drop;
14055 }
546fc854 14056
4f774513 14057 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
88f43a08
JS
14058 "2538 Received frame rctl:%s (x%x), type:%s (x%x), "
14059 "frame Data:%08x %08x %08x %08x %08x %08x %08x\n",
14060 rctl_names[fc_hdr->fh_r_ctl], fc_hdr->fh_r_ctl,
14061 type_names[fc_hdr->fh_type], fc_hdr->fh_type,
546fc854
JS
14062 be32_to_cpu(header[0]), be32_to_cpu(header[1]),
14063 be32_to_cpu(header[2]), be32_to_cpu(header[3]),
88f43a08
JS
14064 be32_to_cpu(header[4]), be32_to_cpu(header[5]),
14065 be32_to_cpu(header[6]));
4f774513
JS
14066 return 0;
14067drop:
14068 lpfc_printf_log(phba, KERN_WARNING, LOG_ELS,
14069 "2539 Dropped frame rctl:%s type:%s\n",
14070 rctl_names[fc_hdr->fh_r_ctl],
14071 type_names[fc_hdr->fh_type]);
14072 return 1;
14073}
14074
14075/**
14076 * lpfc_fc_hdr_get_vfi - Get the VFI from an FC frame
14077 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
14078 *
14079 * This function processes the FC header to retrieve the VFI from the VF
14080 * header, if one exists. This function will return the VFI if one exists
14081 * or 0 if no VSAN Header exists.
14082 **/
14083static uint32_t
14084lpfc_fc_hdr_get_vfi(struct fc_frame_header *fc_hdr)
14085{
14086 struct fc_vft_header *fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
14087
14088 if (fc_hdr->fh_r_ctl != FC_RCTL_VFTH)
14089 return 0;
14090 return bf_get(fc_vft_hdr_vf_id, fc_vft_hdr);
14091}
14092
14093/**
14094 * lpfc_fc_frame_to_vport - Finds the vport that a frame is destined to
14095 * @phba: Pointer to the HBA structure to search for the vport on
14096 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
14097 * @fcfi: The FC Fabric ID that the frame came from
14098 *
14099 * This function searches the @phba for a vport that matches the content of the
14100 * @fc_hdr passed in and the @fcfi. This function uses the @fc_hdr to fetch the
14101 * VFI, if the Virtual Fabric Tagging Header exists, and the DID. This function
14102 * returns the matching vport pointer or NULL if unable to match frame to a
14103 * vport.
14104 **/
14105static struct lpfc_vport *
14106lpfc_fc_frame_to_vport(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr,
14107 uint16_t fcfi)
14108{
14109 struct lpfc_vport **vports;
14110 struct lpfc_vport *vport = NULL;
14111 int i;
14112 uint32_t did = (fc_hdr->fh_d_id[0] << 16 |
14113 fc_hdr->fh_d_id[1] << 8 |
14114 fc_hdr->fh_d_id[2]);
939723a4 14115
bf08611b
JS
14116 if (did == Fabric_DID)
14117 return phba->pport;
939723a4
JS
14118 if ((phba->pport->fc_flag & FC_PT2PT) &&
14119 !(phba->link_state == LPFC_HBA_READY))
14120 return phba->pport;
14121
4f774513
JS
14122 vports = lpfc_create_vport_work_array(phba);
14123 if (vports != NULL)
14124 for (i = 0; i <= phba->max_vpi && vports[i] != NULL; i++) {
14125 if (phba->fcf.fcfi == fcfi &&
14126 vports[i]->vfi == lpfc_fc_hdr_get_vfi(fc_hdr) &&
14127 vports[i]->fc_myDID == did) {
14128 vport = vports[i];
14129 break;
14130 }
14131 }
14132 lpfc_destroy_vport_work_array(phba, vports);
14133 return vport;
14134}
14135
45ed1190
JS
14136/**
14137 * lpfc_update_rcv_time_stamp - Update vport's rcv seq time stamp
14138 * @vport: The vport to work on.
14139 *
14140 * This function updates the receive sequence time stamp for this vport. The
14141 * receive sequence time stamp indicates the time that the last frame of the
14142 * the sequence that has been idle for the longest amount of time was received.
14143 * the driver uses this time stamp to indicate if any received sequences have
14144 * timed out.
14145 **/
14146void
14147lpfc_update_rcv_time_stamp(struct lpfc_vport *vport)
14148{
14149 struct lpfc_dmabuf *h_buf;
14150 struct hbq_dmabuf *dmabuf = NULL;
14151
14152 /* get the oldest sequence on the rcv list */
14153 h_buf = list_get_first(&vport->rcv_buffer_list,
14154 struct lpfc_dmabuf, list);
14155 if (!h_buf)
14156 return;
14157 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14158 vport->rcv_buffer_time_stamp = dmabuf->time_stamp;
14159}
14160
14161/**
14162 * lpfc_cleanup_rcv_buffers - Cleans up all outstanding receive sequences.
14163 * @vport: The vport that the received sequences were sent to.
14164 *
14165 * This function cleans up all outstanding received sequences. This is called
14166 * by the driver when a link event or user action invalidates all the received
14167 * sequences.
14168 **/
14169void
14170lpfc_cleanup_rcv_buffers(struct lpfc_vport *vport)
14171{
14172 struct lpfc_dmabuf *h_buf, *hnext;
14173 struct lpfc_dmabuf *d_buf, *dnext;
14174 struct hbq_dmabuf *dmabuf = NULL;
14175
14176 /* start with the oldest sequence on the rcv list */
14177 list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
14178 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14179 list_del_init(&dmabuf->hbuf.list);
14180 list_for_each_entry_safe(d_buf, dnext,
14181 &dmabuf->dbuf.list, list) {
14182 list_del_init(&d_buf->list);
14183 lpfc_in_buf_free(vport->phba, d_buf);
14184 }
14185 lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
14186 }
14187}
14188
14189/**
14190 * lpfc_rcv_seq_check_edtov - Cleans up timed out receive sequences.
14191 * @vport: The vport that the received sequences were sent to.
14192 *
14193 * This function determines whether any received sequences have timed out by
14194 * first checking the vport's rcv_buffer_time_stamp. If this time_stamp
14195 * indicates that there is at least one timed out sequence this routine will
14196 * go through the received sequences one at a time from most inactive to most
14197 * active to determine which ones need to be cleaned up. Once it has determined
14198 * that a sequence needs to be cleaned up it will simply free up the resources
14199 * without sending an abort.
14200 **/
14201void
14202lpfc_rcv_seq_check_edtov(struct lpfc_vport *vport)
14203{
14204 struct lpfc_dmabuf *h_buf, *hnext;
14205 struct lpfc_dmabuf *d_buf, *dnext;
14206 struct hbq_dmabuf *dmabuf = NULL;
14207 unsigned long timeout;
14208 int abort_count = 0;
14209
14210 timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
14211 vport->rcv_buffer_time_stamp);
14212 if (list_empty(&vport->rcv_buffer_list) ||
14213 time_before(jiffies, timeout))
14214 return;
14215 /* start with the oldest sequence on the rcv list */
14216 list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
14217 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14218 timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
14219 dmabuf->time_stamp);
14220 if (time_before(jiffies, timeout))
14221 break;
14222 abort_count++;
14223 list_del_init(&dmabuf->hbuf.list);
14224 list_for_each_entry_safe(d_buf, dnext,
14225 &dmabuf->dbuf.list, list) {
14226 list_del_init(&d_buf->list);
14227 lpfc_in_buf_free(vport->phba, d_buf);
14228 }
14229 lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
14230 }
14231 if (abort_count)
14232 lpfc_update_rcv_time_stamp(vport);
14233}
14234
4f774513
JS
14235/**
14236 * lpfc_fc_frame_add - Adds a frame to the vport's list of received sequences
14237 * @dmabuf: pointer to a dmabuf that describes the hdr and data of the FC frame
14238 *
14239 * This function searches through the existing incomplete sequences that have
14240 * been sent to this @vport. If the frame matches one of the incomplete
14241 * sequences then the dbuf in the @dmabuf is added to the list of frames that
14242 * make up that sequence. If no sequence is found that matches this frame then
14243 * the function will add the hbuf in the @dmabuf to the @vport's rcv_buffer_list
14244 * This function returns a pointer to the first dmabuf in the sequence list that
14245 * the frame was linked to.
14246 **/
14247static struct hbq_dmabuf *
14248lpfc_fc_frame_add(struct lpfc_vport *vport, struct hbq_dmabuf *dmabuf)
14249{
14250 struct fc_frame_header *new_hdr;
14251 struct fc_frame_header *temp_hdr;
14252 struct lpfc_dmabuf *d_buf;
14253 struct lpfc_dmabuf *h_buf;
14254 struct hbq_dmabuf *seq_dmabuf = NULL;
14255 struct hbq_dmabuf *temp_dmabuf = NULL;
14256
4d9ab994 14257 INIT_LIST_HEAD(&dmabuf->dbuf.list);
45ed1190 14258 dmabuf->time_stamp = jiffies;
4f774513
JS
14259 new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
14260 /* Use the hdr_buf to find the sequence that this frame belongs to */
14261 list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
14262 temp_hdr = (struct fc_frame_header *)h_buf->virt;
14263 if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
14264 (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
14265 (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
14266 continue;
14267 /* found a pending sequence that matches this frame */
14268 seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14269 break;
14270 }
14271 if (!seq_dmabuf) {
14272 /*
14273 * This indicates first frame received for this sequence.
14274 * Queue the buffer on the vport's rcv_buffer_list.
14275 */
14276 list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
45ed1190 14277 lpfc_update_rcv_time_stamp(vport);
4f774513
JS
14278 return dmabuf;
14279 }
14280 temp_hdr = seq_dmabuf->hbuf.virt;
eeead811
JS
14281 if (be16_to_cpu(new_hdr->fh_seq_cnt) <
14282 be16_to_cpu(temp_hdr->fh_seq_cnt)) {
4d9ab994
JS
14283 list_del_init(&seq_dmabuf->hbuf.list);
14284 list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
14285 list_add_tail(&dmabuf->dbuf.list, &seq_dmabuf->dbuf.list);
45ed1190 14286 lpfc_update_rcv_time_stamp(vport);
4f774513
JS
14287 return dmabuf;
14288 }
45ed1190
JS
14289 /* move this sequence to the tail to indicate a young sequence */
14290 list_move_tail(&seq_dmabuf->hbuf.list, &vport->rcv_buffer_list);
14291 seq_dmabuf->time_stamp = jiffies;
14292 lpfc_update_rcv_time_stamp(vport);
eeead811
JS
14293 if (list_empty(&seq_dmabuf->dbuf.list)) {
14294 temp_hdr = dmabuf->hbuf.virt;
14295 list_add_tail(&dmabuf->dbuf.list, &seq_dmabuf->dbuf.list);
14296 return seq_dmabuf;
14297 }
4f774513
JS
14298 /* find the correct place in the sequence to insert this frame */
14299 list_for_each_entry_reverse(d_buf, &seq_dmabuf->dbuf.list, list) {
14300 temp_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
14301 temp_hdr = (struct fc_frame_header *)temp_dmabuf->hbuf.virt;
14302 /*
14303 * If the frame's sequence count is greater than the frame on
14304 * the list then insert the frame right after this frame
14305 */
eeead811
JS
14306 if (be16_to_cpu(new_hdr->fh_seq_cnt) >
14307 be16_to_cpu(temp_hdr->fh_seq_cnt)) {
4f774513
JS
14308 list_add(&dmabuf->dbuf.list, &temp_dmabuf->dbuf.list);
14309 return seq_dmabuf;
14310 }
14311 }
14312 return NULL;
14313}
14314
6669f9bb
JS
14315/**
14316 * lpfc_sli4_abort_partial_seq - Abort partially assembled unsol sequence
14317 * @vport: pointer to a vitural port
14318 * @dmabuf: pointer to a dmabuf that describes the FC sequence
14319 *
14320 * This function tries to abort from the partially assembed sequence, described
14321 * by the information from basic abbort @dmabuf. It checks to see whether such
14322 * partially assembled sequence held by the driver. If so, it shall free up all
14323 * the frames from the partially assembled sequence.
14324 *
14325 * Return
14326 * true -- if there is matching partially assembled sequence present and all
14327 * the frames freed with the sequence;
14328 * false -- if there is no matching partially assembled sequence present so
14329 * nothing got aborted in the lower layer driver
14330 **/
14331static bool
14332lpfc_sli4_abort_partial_seq(struct lpfc_vport *vport,
14333 struct hbq_dmabuf *dmabuf)
14334{
14335 struct fc_frame_header *new_hdr;
14336 struct fc_frame_header *temp_hdr;
14337 struct lpfc_dmabuf *d_buf, *n_buf, *h_buf;
14338 struct hbq_dmabuf *seq_dmabuf = NULL;
14339
14340 /* Use the hdr_buf to find the sequence that matches this frame */
14341 INIT_LIST_HEAD(&dmabuf->dbuf.list);
14342 INIT_LIST_HEAD(&dmabuf->hbuf.list);
14343 new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
14344 list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
14345 temp_hdr = (struct fc_frame_header *)h_buf->virt;
14346 if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
14347 (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
14348 (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
14349 continue;
14350 /* found a pending sequence that matches this frame */
14351 seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
14352 break;
14353 }
14354
14355 /* Free up all the frames from the partially assembled sequence */
14356 if (seq_dmabuf) {
14357 list_for_each_entry_safe(d_buf, n_buf,
14358 &seq_dmabuf->dbuf.list, list) {
14359 list_del_init(&d_buf->list);
14360 lpfc_in_buf_free(vport->phba, d_buf);
14361 }
14362 return true;
14363 }
14364 return false;
14365}
14366
6dd9e31c
JS
14367/**
14368 * lpfc_sli4_abort_ulp_seq - Abort assembled unsol sequence from ulp
14369 * @vport: pointer to a vitural port
14370 * @dmabuf: pointer to a dmabuf that describes the FC sequence
14371 *
14372 * This function tries to abort from the assembed sequence from upper level
14373 * protocol, described by the information from basic abbort @dmabuf. It
14374 * checks to see whether such pending context exists at upper level protocol.
14375 * If so, it shall clean up the pending context.
14376 *
14377 * Return
14378 * true -- if there is matching pending context of the sequence cleaned
14379 * at ulp;
14380 * false -- if there is no matching pending context of the sequence present
14381 * at ulp.
14382 **/
14383static bool
14384lpfc_sli4_abort_ulp_seq(struct lpfc_vport *vport, struct hbq_dmabuf *dmabuf)
14385{
14386 struct lpfc_hba *phba = vport->phba;
14387 int handled;
14388
14389 /* Accepting abort at ulp with SLI4 only */
14390 if (phba->sli_rev < LPFC_SLI_REV4)
14391 return false;
14392
14393 /* Register all caring upper level protocols to attend abort */
14394 handled = lpfc_ct_handle_unsol_abort(phba, dmabuf);
14395 if (handled)
14396 return true;
14397
14398 return false;
14399}
14400
6669f9bb 14401/**
546fc854 14402 * lpfc_sli4_seq_abort_rsp_cmpl - BLS ABORT RSP seq abort iocb complete handler
6669f9bb
JS
14403 * @phba: Pointer to HBA context object.
14404 * @cmd_iocbq: pointer to the command iocbq structure.
14405 * @rsp_iocbq: pointer to the response iocbq structure.
14406 *
546fc854 14407 * This function handles the sequence abort response iocb command complete
6669f9bb
JS
14408 * event. It properly releases the memory allocated to the sequence abort
14409 * accept iocb.
14410 **/
14411static void
546fc854 14412lpfc_sli4_seq_abort_rsp_cmpl(struct lpfc_hba *phba,
6669f9bb
JS
14413 struct lpfc_iocbq *cmd_iocbq,
14414 struct lpfc_iocbq *rsp_iocbq)
14415{
6dd9e31c
JS
14416 struct lpfc_nodelist *ndlp;
14417
14418 if (cmd_iocbq) {
14419 ndlp = (struct lpfc_nodelist *)cmd_iocbq->context1;
14420 lpfc_nlp_put(ndlp);
14421 lpfc_nlp_not_used(ndlp);
6669f9bb 14422 lpfc_sli_release_iocbq(phba, cmd_iocbq);
6dd9e31c 14423 }
6b5151fd
JS
14424
14425 /* Failure means BLS ABORT RSP did not get delivered to remote node*/
14426 if (rsp_iocbq && rsp_iocbq->iocb.ulpStatus)
14427 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14428 "3154 BLS ABORT RSP failed, data: x%x/x%x\n",
14429 rsp_iocbq->iocb.ulpStatus,
14430 rsp_iocbq->iocb.un.ulpWord[4]);
6669f9bb
JS
14431}
14432
6d368e53
JS
14433/**
14434 * lpfc_sli4_xri_inrange - check xri is in range of xris owned by driver.
14435 * @phba: Pointer to HBA context object.
14436 * @xri: xri id in transaction.
14437 *
14438 * This function validates the xri maps to the known range of XRIs allocated an
14439 * used by the driver.
14440 **/
7851fe2c 14441uint16_t
6d368e53
JS
14442lpfc_sli4_xri_inrange(struct lpfc_hba *phba,
14443 uint16_t xri)
14444{
14445 int i;
14446
14447 for (i = 0; i < phba->sli4_hba.max_cfg_param.max_xri; i++) {
14448 if (xri == phba->sli4_hba.xri_ids[i])
14449 return i;
14450 }
14451 return NO_XRI;
14452}
14453
6669f9bb 14454/**
546fc854 14455 * lpfc_sli4_seq_abort_rsp - bls rsp to sequence abort
6669f9bb
JS
14456 * @phba: Pointer to HBA context object.
14457 * @fc_hdr: pointer to a FC frame header.
14458 *
546fc854 14459 * This function sends a basic response to a previous unsol sequence abort
6669f9bb
JS
14460 * event after aborting the sequence handling.
14461 **/
14462static void
6dd9e31c
JS
14463lpfc_sli4_seq_abort_rsp(struct lpfc_vport *vport,
14464 struct fc_frame_header *fc_hdr, bool aborted)
6669f9bb 14465{
6dd9e31c 14466 struct lpfc_hba *phba = vport->phba;
6669f9bb
JS
14467 struct lpfc_iocbq *ctiocb = NULL;
14468 struct lpfc_nodelist *ndlp;
ee0f4fe1 14469 uint16_t oxid, rxid, xri, lxri;
5ffc266e 14470 uint32_t sid, fctl;
6669f9bb 14471 IOCB_t *icmd;
546fc854 14472 int rc;
6669f9bb
JS
14473
14474 if (!lpfc_is_link_up(phba))
14475 return;
14476
14477 sid = sli4_sid_from_fc_hdr(fc_hdr);
14478 oxid = be16_to_cpu(fc_hdr->fh_ox_id);
5ffc266e 14479 rxid = be16_to_cpu(fc_hdr->fh_rx_id);
6669f9bb 14480
6dd9e31c 14481 ndlp = lpfc_findnode_did(vport, sid);
6669f9bb 14482 if (!ndlp) {
6dd9e31c
JS
14483 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
14484 if (!ndlp) {
14485 lpfc_printf_vlog(vport, KERN_WARNING, LOG_ELS,
14486 "1268 Failed to allocate ndlp for "
14487 "oxid:x%x SID:x%x\n", oxid, sid);
14488 return;
14489 }
14490 lpfc_nlp_init(vport, ndlp, sid);
14491 /* Put ndlp onto pport node list */
14492 lpfc_enqueue_node(vport, ndlp);
14493 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
14494 /* re-setup ndlp without removing from node list */
14495 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
14496 if (!ndlp) {
14497 lpfc_printf_vlog(vport, KERN_WARNING, LOG_ELS,
14498 "3275 Failed to active ndlp found "
14499 "for oxid:x%x SID:x%x\n", oxid, sid);
14500 return;
14501 }
6669f9bb
JS
14502 }
14503
546fc854 14504 /* Allocate buffer for rsp iocb */
6669f9bb
JS
14505 ctiocb = lpfc_sli_get_iocbq(phba);
14506 if (!ctiocb)
14507 return;
14508
5ffc266e
JS
14509 /* Extract the F_CTL field from FC_HDR */
14510 fctl = sli4_fctl_from_fc_hdr(fc_hdr);
14511
6669f9bb 14512 icmd = &ctiocb->iocb;
6669f9bb 14513 icmd->un.xseq64.bdl.bdeSize = 0;
5ffc266e 14514 icmd->un.xseq64.bdl.ulpIoTag32 = 0;
6669f9bb
JS
14515 icmd->un.xseq64.w5.hcsw.Dfctl = 0;
14516 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_ACC;
14517 icmd->un.xseq64.w5.hcsw.Type = FC_TYPE_BLS;
14518
14519 /* Fill in the rest of iocb fields */
14520 icmd->ulpCommand = CMD_XMIT_BLS_RSP64_CX;
14521 icmd->ulpBdeCount = 0;
14522 icmd->ulpLe = 1;
14523 icmd->ulpClass = CLASS3;
6d368e53 14524 icmd->ulpContext = phba->sli4_hba.rpi_ids[ndlp->nlp_rpi];
6dd9e31c 14525 ctiocb->context1 = lpfc_nlp_get(ndlp);
6669f9bb 14526
6669f9bb
JS
14527 ctiocb->iocb_cmpl = NULL;
14528 ctiocb->vport = phba->pport;
546fc854 14529 ctiocb->iocb_cmpl = lpfc_sli4_seq_abort_rsp_cmpl;
6d368e53 14530 ctiocb->sli4_lxritag = NO_XRI;
546fc854
JS
14531 ctiocb->sli4_xritag = NO_XRI;
14532
ee0f4fe1
JS
14533 if (fctl & FC_FC_EX_CTX)
14534 /* Exchange responder sent the abort so we
14535 * own the oxid.
14536 */
14537 xri = oxid;
14538 else
14539 xri = rxid;
14540 lxri = lpfc_sli4_xri_inrange(phba, xri);
14541 if (lxri != NO_XRI)
14542 lpfc_set_rrq_active(phba, ndlp, lxri,
14543 (xri == oxid) ? rxid : oxid, 0);
6dd9e31c
JS
14544 /* For BA_ABTS from exchange responder, if the logical xri with
14545 * the oxid maps to the FCP XRI range, the port no longer has
14546 * that exchange context, send a BLS_RJT. Override the IOCB for
14547 * a BA_RJT.
14548 */
14549 if ((fctl & FC_FC_EX_CTX) &&
14550 (lxri > lpfc_sli4_get_els_iocb_cnt(phba))) {
14551 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_RJT;
14552 bf_set(lpfc_vndr_code, &icmd->un.bls_rsp, 0);
14553 bf_set(lpfc_rsn_expln, &icmd->un.bls_rsp, FC_BA_RJT_INV_XID);
14554 bf_set(lpfc_rsn_code, &icmd->un.bls_rsp, FC_BA_RJT_UNABLE);
14555 }
14556
14557 /* If BA_ABTS failed to abort a partially assembled receive sequence,
14558 * the driver no longer has that exchange, send a BLS_RJT. Override
14559 * the IOCB for a BA_RJT.
546fc854 14560 */
6dd9e31c 14561 if (aborted == false) {
546fc854
JS
14562 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_RJT;
14563 bf_set(lpfc_vndr_code, &icmd->un.bls_rsp, 0);
14564 bf_set(lpfc_rsn_expln, &icmd->un.bls_rsp, FC_BA_RJT_INV_XID);
14565 bf_set(lpfc_rsn_code, &icmd->un.bls_rsp, FC_BA_RJT_UNABLE);
14566 }
6669f9bb 14567
5ffc266e
JS
14568 if (fctl & FC_FC_EX_CTX) {
14569 /* ABTS sent by responder to CT exchange, construction
14570 * of BA_ACC will use OX_ID from ABTS for the XRI_TAG
14571 * field and RX_ID from ABTS for RX_ID field.
14572 */
546fc854 14573 bf_set(lpfc_abts_orig, &icmd->un.bls_rsp, LPFC_ABTS_UNSOL_RSP);
5ffc266e
JS
14574 } else {
14575 /* ABTS sent by initiator to CT exchange, construction
14576 * of BA_ACC will need to allocate a new XRI as for the
f09c3acc 14577 * XRI_TAG field.
5ffc266e 14578 */
546fc854 14579 bf_set(lpfc_abts_orig, &icmd->un.bls_rsp, LPFC_ABTS_UNSOL_INT);
5ffc266e 14580 }
f09c3acc 14581 bf_set(lpfc_abts_rxid, &icmd->un.bls_rsp, rxid);
546fc854 14582 bf_set(lpfc_abts_oxid, &icmd->un.bls_rsp, oxid);
5ffc266e 14583
546fc854 14584 /* Xmit CT abts response on exchange <xid> */
6dd9e31c
JS
14585 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
14586 "1200 Send BLS cmd x%x on oxid x%x Data: x%x\n",
14587 icmd->un.xseq64.w5.hcsw.Rctl, oxid, phba->link_state);
546fc854
JS
14588
14589 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, ctiocb, 0);
14590 if (rc == IOCB_ERROR) {
6dd9e31c
JS
14591 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
14592 "2925 Failed to issue CT ABTS RSP x%x on "
14593 "xri x%x, Data x%x\n",
14594 icmd->un.xseq64.w5.hcsw.Rctl, oxid,
14595 phba->link_state);
14596 lpfc_nlp_put(ndlp);
14597 ctiocb->context1 = NULL;
546fc854
JS
14598 lpfc_sli_release_iocbq(phba, ctiocb);
14599 }
6669f9bb
JS
14600}
14601
14602/**
14603 * lpfc_sli4_handle_unsol_abort - Handle sli-4 unsolicited abort event
14604 * @vport: Pointer to the vport on which this sequence was received
14605 * @dmabuf: pointer to a dmabuf that describes the FC sequence
14606 *
14607 * This function handles an SLI-4 unsolicited abort event. If the unsolicited
14608 * receive sequence is only partially assembed by the driver, it shall abort
14609 * the partially assembled frames for the sequence. Otherwise, if the
14610 * unsolicited receive sequence has been completely assembled and passed to
14611 * the Upper Layer Protocol (UPL), it then mark the per oxid status for the
14612 * unsolicited sequence has been aborted. After that, it will issue a basic
14613 * accept to accept the abort.
14614 **/
14615void
14616lpfc_sli4_handle_unsol_abort(struct lpfc_vport *vport,
14617 struct hbq_dmabuf *dmabuf)
14618{
14619 struct lpfc_hba *phba = vport->phba;
14620 struct fc_frame_header fc_hdr;
5ffc266e 14621 uint32_t fctl;
6dd9e31c 14622 bool aborted;
6669f9bb 14623
6669f9bb
JS
14624 /* Make a copy of fc_hdr before the dmabuf being released */
14625 memcpy(&fc_hdr, dmabuf->hbuf.virt, sizeof(struct fc_frame_header));
5ffc266e 14626 fctl = sli4_fctl_from_fc_hdr(&fc_hdr);
6669f9bb 14627
5ffc266e 14628 if (fctl & FC_FC_EX_CTX) {
6dd9e31c
JS
14629 /* ABTS by responder to exchange, no cleanup needed */
14630 aborted = true;
5ffc266e 14631 } else {
6dd9e31c
JS
14632 /* ABTS by initiator to exchange, need to do cleanup */
14633 aborted = lpfc_sli4_abort_partial_seq(vport, dmabuf);
14634 if (aborted == false)
14635 aborted = lpfc_sli4_abort_ulp_seq(vport, dmabuf);
5ffc266e 14636 }
6dd9e31c
JS
14637 lpfc_in_buf_free(phba, &dmabuf->dbuf);
14638
14639 /* Respond with BA_ACC or BA_RJT accordingly */
14640 lpfc_sli4_seq_abort_rsp(vport, &fc_hdr, aborted);
6669f9bb
JS
14641}
14642
4f774513
JS
14643/**
14644 * lpfc_seq_complete - Indicates if a sequence is complete
14645 * @dmabuf: pointer to a dmabuf that describes the FC sequence
14646 *
14647 * This function checks the sequence, starting with the frame described by
14648 * @dmabuf, to see if all the frames associated with this sequence are present.
14649 * the frames associated with this sequence are linked to the @dmabuf using the
14650 * dbuf list. This function looks for two major things. 1) That the first frame
14651 * has a sequence count of zero. 2) There is a frame with last frame of sequence
14652 * set. 3) That there are no holes in the sequence count. The function will
14653 * return 1 when the sequence is complete, otherwise it will return 0.
14654 **/
14655static int
14656lpfc_seq_complete(struct hbq_dmabuf *dmabuf)
14657{
14658 struct fc_frame_header *hdr;
14659 struct lpfc_dmabuf *d_buf;
14660 struct hbq_dmabuf *seq_dmabuf;
14661 uint32_t fctl;
14662 int seq_count = 0;
14663
14664 hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
14665 /* make sure first fame of sequence has a sequence count of zero */
14666 if (hdr->fh_seq_cnt != seq_count)
14667 return 0;
14668 fctl = (hdr->fh_f_ctl[0] << 16 |
14669 hdr->fh_f_ctl[1] << 8 |
14670 hdr->fh_f_ctl[2]);
14671 /* If last frame of sequence we can return success. */
14672 if (fctl & FC_FC_END_SEQ)
14673 return 1;
14674 list_for_each_entry(d_buf, &dmabuf->dbuf.list, list) {
14675 seq_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
14676 hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
14677 /* If there is a hole in the sequence count then fail. */
eeead811 14678 if (++seq_count != be16_to_cpu(hdr->fh_seq_cnt))
4f774513
JS
14679 return 0;
14680 fctl = (hdr->fh_f_ctl[0] << 16 |
14681 hdr->fh_f_ctl[1] << 8 |
14682 hdr->fh_f_ctl[2]);
14683 /* If last frame of sequence we can return success. */
14684 if (fctl & FC_FC_END_SEQ)
14685 return 1;
14686 }
14687 return 0;
14688}
14689
14690/**
14691 * lpfc_prep_seq - Prep sequence for ULP processing
14692 * @vport: Pointer to the vport on which this sequence was received
14693 * @dmabuf: pointer to a dmabuf that describes the FC sequence
14694 *
14695 * This function takes a sequence, described by a list of frames, and creates
14696 * a list of iocbq structures to describe the sequence. This iocbq list will be
14697 * used to issue to the generic unsolicited sequence handler. This routine
14698 * returns a pointer to the first iocbq in the list. If the function is unable
14699 * to allocate an iocbq then it throw out the received frames that were not
14700 * able to be described and return a pointer to the first iocbq. If unable to
14701 * allocate any iocbqs (including the first) this function will return NULL.
14702 **/
14703static struct lpfc_iocbq *
14704lpfc_prep_seq(struct lpfc_vport *vport, struct hbq_dmabuf *seq_dmabuf)
14705{
7851fe2c 14706 struct hbq_dmabuf *hbq_buf;
4f774513
JS
14707 struct lpfc_dmabuf *d_buf, *n_buf;
14708 struct lpfc_iocbq *first_iocbq, *iocbq;
14709 struct fc_frame_header *fc_hdr;
14710 uint32_t sid;
7851fe2c 14711 uint32_t len, tot_len;
eeead811 14712 struct ulp_bde64 *pbde;
4f774513
JS
14713
14714 fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
14715 /* remove from receive buffer list */
14716 list_del_init(&seq_dmabuf->hbuf.list);
45ed1190 14717 lpfc_update_rcv_time_stamp(vport);
4f774513 14718 /* get the Remote Port's SID */
6669f9bb 14719 sid = sli4_sid_from_fc_hdr(fc_hdr);
7851fe2c 14720 tot_len = 0;
4f774513
JS
14721 /* Get an iocbq struct to fill in. */
14722 first_iocbq = lpfc_sli_get_iocbq(vport->phba);
14723 if (first_iocbq) {
14724 /* Initialize the first IOCB. */
8fa38513 14725 first_iocbq->iocb.unsli3.rcvsli3.acc_len = 0;
4f774513 14726 first_iocbq->iocb.ulpStatus = IOSTAT_SUCCESS;
939723a4
JS
14727
14728 /* Check FC Header to see what TYPE of frame we are rcv'ing */
14729 if (sli4_type_from_fc_hdr(fc_hdr) == FC_TYPE_ELS) {
14730 first_iocbq->iocb.ulpCommand = CMD_IOCB_RCV_ELS64_CX;
14731 first_iocbq->iocb.un.rcvels.parmRo =
14732 sli4_did_from_fc_hdr(fc_hdr);
14733 first_iocbq->iocb.ulpPU = PARM_NPIV_DID;
14734 } else
14735 first_iocbq->iocb.ulpCommand = CMD_IOCB_RCV_SEQ64_CX;
7851fe2c
JS
14736 first_iocbq->iocb.ulpContext = NO_XRI;
14737 first_iocbq->iocb.unsli3.rcvsli3.ox_id =
14738 be16_to_cpu(fc_hdr->fh_ox_id);
14739 /* iocbq is prepped for internal consumption. Physical vpi. */
14740 first_iocbq->iocb.unsli3.rcvsli3.vpi =
14741 vport->phba->vpi_ids[vport->vpi];
4f774513 14742 /* put the first buffer into the first IOCBq */
48a5a664
JS
14743 tot_len = bf_get(lpfc_rcqe_length,
14744 &seq_dmabuf->cq_event.cqe.rcqe_cmpl);
14745
4f774513
JS
14746 first_iocbq->context2 = &seq_dmabuf->dbuf;
14747 first_iocbq->context3 = NULL;
14748 first_iocbq->iocb.ulpBdeCount = 1;
48a5a664
JS
14749 if (tot_len > LPFC_DATA_BUF_SIZE)
14750 first_iocbq->iocb.un.cont64[0].tus.f.bdeSize =
4f774513 14751 LPFC_DATA_BUF_SIZE;
48a5a664
JS
14752 else
14753 first_iocbq->iocb.un.cont64[0].tus.f.bdeSize = tot_len;
14754
4f774513 14755 first_iocbq->iocb.un.rcvels.remoteID = sid;
48a5a664 14756
7851fe2c 14757 first_iocbq->iocb.unsli3.rcvsli3.acc_len = tot_len;
4f774513
JS
14758 }
14759 iocbq = first_iocbq;
14760 /*
14761 * Each IOCBq can have two Buffers assigned, so go through the list
14762 * of buffers for this sequence and save two buffers in each IOCBq
14763 */
14764 list_for_each_entry_safe(d_buf, n_buf, &seq_dmabuf->dbuf.list, list) {
14765 if (!iocbq) {
14766 lpfc_in_buf_free(vport->phba, d_buf);
14767 continue;
14768 }
14769 if (!iocbq->context3) {
14770 iocbq->context3 = d_buf;
14771 iocbq->iocb.ulpBdeCount++;
7851fe2c
JS
14772 /* We need to get the size out of the right CQE */
14773 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
14774 len = bf_get(lpfc_rcqe_length,
14775 &hbq_buf->cq_event.cqe.rcqe_cmpl);
48a5a664
JS
14776 pbde = (struct ulp_bde64 *)
14777 &iocbq->iocb.unsli3.sli3Words[4];
14778 if (len > LPFC_DATA_BUF_SIZE)
14779 pbde->tus.f.bdeSize = LPFC_DATA_BUF_SIZE;
14780 else
14781 pbde->tus.f.bdeSize = len;
14782
7851fe2c
JS
14783 iocbq->iocb.unsli3.rcvsli3.acc_len += len;
14784 tot_len += len;
4f774513
JS
14785 } else {
14786 iocbq = lpfc_sli_get_iocbq(vport->phba);
14787 if (!iocbq) {
14788 if (first_iocbq) {
14789 first_iocbq->iocb.ulpStatus =
14790 IOSTAT_FCP_RSP_ERROR;
14791 first_iocbq->iocb.un.ulpWord[4] =
14792 IOERR_NO_RESOURCES;
14793 }
14794 lpfc_in_buf_free(vport->phba, d_buf);
14795 continue;
14796 }
48a5a664
JS
14797 /* We need to get the size out of the right CQE */
14798 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
14799 len = bf_get(lpfc_rcqe_length,
14800 &hbq_buf->cq_event.cqe.rcqe_cmpl);
4f774513
JS
14801 iocbq->context2 = d_buf;
14802 iocbq->context3 = NULL;
14803 iocbq->iocb.ulpBdeCount = 1;
48a5a664
JS
14804 if (len > LPFC_DATA_BUF_SIZE)
14805 iocbq->iocb.un.cont64[0].tus.f.bdeSize =
4f774513 14806 LPFC_DATA_BUF_SIZE;
48a5a664
JS
14807 else
14808 iocbq->iocb.un.cont64[0].tus.f.bdeSize = len;
7851fe2c 14809
7851fe2c
JS
14810 tot_len += len;
14811 iocbq->iocb.unsli3.rcvsli3.acc_len = tot_len;
14812
4f774513
JS
14813 iocbq->iocb.un.rcvels.remoteID = sid;
14814 list_add_tail(&iocbq->list, &first_iocbq->list);
14815 }
14816 }
14817 return first_iocbq;
14818}
14819
6669f9bb
JS
14820static void
14821lpfc_sli4_send_seq_to_ulp(struct lpfc_vport *vport,
14822 struct hbq_dmabuf *seq_dmabuf)
14823{
14824 struct fc_frame_header *fc_hdr;
14825 struct lpfc_iocbq *iocbq, *curr_iocb, *next_iocb;
14826 struct lpfc_hba *phba = vport->phba;
14827
14828 fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
14829 iocbq = lpfc_prep_seq(vport, seq_dmabuf);
14830 if (!iocbq) {
14831 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14832 "2707 Ring %d handler: Failed to allocate "
14833 "iocb Rctl x%x Type x%x received\n",
14834 LPFC_ELS_RING,
14835 fc_hdr->fh_r_ctl, fc_hdr->fh_type);
14836 return;
14837 }
14838 if (!lpfc_complete_unsol_iocb(phba,
14839 &phba->sli.ring[LPFC_ELS_RING],
14840 iocbq, fc_hdr->fh_r_ctl,
14841 fc_hdr->fh_type))
6d368e53 14842 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
6669f9bb
JS
14843 "2540 Ring %d handler: unexpected Rctl "
14844 "x%x Type x%x received\n",
14845 LPFC_ELS_RING,
14846 fc_hdr->fh_r_ctl, fc_hdr->fh_type);
14847
14848 /* Free iocb created in lpfc_prep_seq */
14849 list_for_each_entry_safe(curr_iocb, next_iocb,
14850 &iocbq->list, list) {
14851 list_del_init(&curr_iocb->list);
14852 lpfc_sli_release_iocbq(phba, curr_iocb);
14853 }
14854 lpfc_sli_release_iocbq(phba, iocbq);
14855}
14856
4f774513
JS
14857/**
14858 * lpfc_sli4_handle_received_buffer - Handle received buffers from firmware
14859 * @phba: Pointer to HBA context object.
14860 *
14861 * This function is called with no lock held. This function processes all
14862 * the received buffers and gives it to upper layers when a received buffer
14863 * indicates that it is the final frame in the sequence. The interrupt
14864 * service routine processes received buffers at interrupt contexts and adds
14865 * received dma buffers to the rb_pend_list queue and signals the worker thread.
14866 * Worker thread calls lpfc_sli4_handle_received_buffer, which will call the
14867 * appropriate receive function when the final frame in a sequence is received.
14868 **/
4d9ab994
JS
14869void
14870lpfc_sli4_handle_received_buffer(struct lpfc_hba *phba,
14871 struct hbq_dmabuf *dmabuf)
4f774513 14872{
4d9ab994 14873 struct hbq_dmabuf *seq_dmabuf;
4f774513
JS
14874 struct fc_frame_header *fc_hdr;
14875 struct lpfc_vport *vport;
14876 uint32_t fcfi;
939723a4 14877 uint32_t did;
4f774513 14878
4f774513 14879 /* Process each received buffer */
4d9ab994
JS
14880 fc_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
14881 /* check to see if this a valid type of frame */
14882 if (lpfc_fc_frame_check(phba, fc_hdr)) {
14883 lpfc_in_buf_free(phba, &dmabuf->dbuf);
14884 return;
14885 }
7851fe2c
JS
14886 if ((bf_get(lpfc_cqe_code,
14887 &dmabuf->cq_event.cqe.rcqe_cmpl) == CQE_CODE_RECEIVE_V1))
14888 fcfi = bf_get(lpfc_rcqe_fcf_id_v1,
14889 &dmabuf->cq_event.cqe.rcqe_cmpl);
14890 else
14891 fcfi = bf_get(lpfc_rcqe_fcf_id,
14892 &dmabuf->cq_event.cqe.rcqe_cmpl);
939723a4 14893
4d9ab994 14894 vport = lpfc_fc_frame_to_vport(phba, fc_hdr, fcfi);
939723a4 14895 if (!vport) {
4d9ab994
JS
14896 /* throw out the frame */
14897 lpfc_in_buf_free(phba, &dmabuf->dbuf);
14898 return;
14899 }
939723a4
JS
14900
14901 /* d_id this frame is directed to */
14902 did = sli4_did_from_fc_hdr(fc_hdr);
14903
14904 /* vport is registered unless we rcv a FLOGI directed to Fabric_DID */
14905 if (!(vport->vpi_state & LPFC_VPI_REGISTERED) &&
14906 (did != Fabric_DID)) {
14907 /*
14908 * Throw out the frame if we are not pt2pt.
14909 * The pt2pt protocol allows for discovery frames
14910 * to be received without a registered VPI.
14911 */
14912 if (!(vport->fc_flag & FC_PT2PT) ||
14913 (phba->link_state == LPFC_HBA_READY)) {
14914 lpfc_in_buf_free(phba, &dmabuf->dbuf);
14915 return;
14916 }
14917 }
14918
6669f9bb
JS
14919 /* Handle the basic abort sequence (BA_ABTS) event */
14920 if (fc_hdr->fh_r_ctl == FC_RCTL_BA_ABTS) {
14921 lpfc_sli4_handle_unsol_abort(vport, dmabuf);
14922 return;
14923 }
14924
4d9ab994
JS
14925 /* Link this frame */
14926 seq_dmabuf = lpfc_fc_frame_add(vport, dmabuf);
14927 if (!seq_dmabuf) {
14928 /* unable to add frame to vport - throw it out */
14929 lpfc_in_buf_free(phba, &dmabuf->dbuf);
14930 return;
14931 }
14932 /* If not last frame in sequence continue processing frames. */
def9c7a9 14933 if (!lpfc_seq_complete(seq_dmabuf))
4d9ab994 14934 return;
def9c7a9 14935
6669f9bb
JS
14936 /* Send the complete sequence to the upper layer protocol */
14937 lpfc_sli4_send_seq_to_ulp(vport, seq_dmabuf);
4f774513 14938}
6fb120a7
JS
14939
14940/**
14941 * lpfc_sli4_post_all_rpi_hdrs - Post the rpi header memory region to the port
14942 * @phba: pointer to lpfc hba data structure.
14943 *
14944 * This routine is invoked to post rpi header templates to the
14945 * HBA consistent with the SLI-4 interface spec. This routine
49198b37
JS
14946 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
14947 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
6fb120a7
JS
14948 *
14949 * This routine does not require any locks. It's usage is expected
14950 * to be driver load or reset recovery when the driver is
14951 * sequential.
14952 *
14953 * Return codes
af901ca1 14954 * 0 - successful
d439d286 14955 * -EIO - The mailbox failed to complete successfully.
6fb120a7
JS
14956 * When this error occurs, the driver is not guaranteed
14957 * to have any rpi regions posted to the device and
14958 * must either attempt to repost the regions or take a
14959 * fatal error.
14960 **/
14961int
14962lpfc_sli4_post_all_rpi_hdrs(struct lpfc_hba *phba)
14963{
14964 struct lpfc_rpi_hdr *rpi_page;
14965 uint32_t rc = 0;
6d368e53
JS
14966 uint16_t lrpi = 0;
14967
14968 /* SLI4 ports that support extents do not require RPI headers. */
14969 if (!phba->sli4_hba.rpi_hdrs_in_use)
14970 goto exit;
14971 if (phba->sli4_hba.extents_in_use)
14972 return -EIO;
6fb120a7 14973
6fb120a7 14974 list_for_each_entry(rpi_page, &phba->sli4_hba.lpfc_rpi_hdr_list, list) {
6d368e53
JS
14975 /*
14976 * Assign the rpi headers a physical rpi only if the driver
14977 * has not initialized those resources. A port reset only
14978 * needs the headers posted.
14979 */
14980 if (bf_get(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags) !=
14981 LPFC_RPI_RSRC_RDY)
14982 rpi_page->start_rpi = phba->sli4_hba.rpi_ids[lrpi];
14983
6fb120a7
JS
14984 rc = lpfc_sli4_post_rpi_hdr(phba, rpi_page);
14985 if (rc != MBX_SUCCESS) {
14986 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14987 "2008 Error %d posting all rpi "
14988 "headers\n", rc);
14989 rc = -EIO;
14990 break;
14991 }
14992 }
14993
6d368e53
JS
14994 exit:
14995 bf_set(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags,
14996 LPFC_RPI_RSRC_RDY);
6fb120a7
JS
14997 return rc;
14998}
14999
15000/**
15001 * lpfc_sli4_post_rpi_hdr - Post an rpi header memory region to the port
15002 * @phba: pointer to lpfc hba data structure.
15003 * @rpi_page: pointer to the rpi memory region.
15004 *
15005 * This routine is invoked to post a single rpi header to the
15006 * HBA consistent with the SLI-4 interface spec. This memory region
15007 * maps up to 64 rpi context regions.
15008 *
15009 * Return codes
af901ca1 15010 * 0 - successful
d439d286
JS
15011 * -ENOMEM - No available memory
15012 * -EIO - The mailbox failed to complete successfully.
6fb120a7
JS
15013 **/
15014int
15015lpfc_sli4_post_rpi_hdr(struct lpfc_hba *phba, struct lpfc_rpi_hdr *rpi_page)
15016{
15017 LPFC_MBOXQ_t *mboxq;
15018 struct lpfc_mbx_post_hdr_tmpl *hdr_tmpl;
15019 uint32_t rc = 0;
6fb120a7
JS
15020 uint32_t shdr_status, shdr_add_status;
15021 union lpfc_sli4_cfg_shdr *shdr;
15022
6d368e53
JS
15023 /* SLI4 ports that support extents do not require RPI headers. */
15024 if (!phba->sli4_hba.rpi_hdrs_in_use)
15025 return rc;
15026 if (phba->sli4_hba.extents_in_use)
15027 return -EIO;
15028
6fb120a7
JS
15029 /* The port is notified of the header region via a mailbox command. */
15030 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15031 if (!mboxq) {
15032 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15033 "2001 Unable to allocate memory for issuing "
15034 "SLI_CONFIG_SPECIAL mailbox command\n");
15035 return -ENOMEM;
15036 }
15037
15038 /* Post all rpi memory regions to the port. */
15039 hdr_tmpl = &mboxq->u.mqe.un.hdr_tmpl;
6fb120a7
JS
15040 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
15041 LPFC_MBOX_OPCODE_FCOE_POST_HDR_TEMPLATE,
15042 sizeof(struct lpfc_mbx_post_hdr_tmpl) -
fedd3b7b
JS
15043 sizeof(struct lpfc_sli4_cfg_mhdr),
15044 LPFC_SLI4_MBX_EMBED);
6d368e53
JS
15045
15046
15047 /* Post the physical rpi to the port for this rpi header. */
6fb120a7
JS
15048 bf_set(lpfc_mbx_post_hdr_tmpl_rpi_offset, hdr_tmpl,
15049 rpi_page->start_rpi);
6d368e53
JS
15050 bf_set(lpfc_mbx_post_hdr_tmpl_page_cnt,
15051 hdr_tmpl, rpi_page->page_count);
15052
6fb120a7
JS
15053 hdr_tmpl->rpi_paddr_lo = putPaddrLow(rpi_page->dmabuf->phys);
15054 hdr_tmpl->rpi_paddr_hi = putPaddrHigh(rpi_page->dmabuf->phys);
f1126688 15055 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6fb120a7
JS
15056 shdr = (union lpfc_sli4_cfg_shdr *) &hdr_tmpl->header.cfg_shdr;
15057 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
15058 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
15059 if (rc != MBX_TIMEOUT)
15060 mempool_free(mboxq, phba->mbox_mem_pool);
15061 if (shdr_status || shdr_add_status || rc) {
15062 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15063 "2514 POST_RPI_HDR mailbox failed with "
15064 "status x%x add_status x%x, mbx status x%x\n",
15065 shdr_status, shdr_add_status, rc);
15066 rc = -ENXIO;
15067 }
15068 return rc;
15069}
15070
15071/**
15072 * lpfc_sli4_alloc_rpi - Get an available rpi in the device's range
15073 * @phba: pointer to lpfc hba data structure.
15074 *
15075 * This routine is invoked to post rpi header templates to the
15076 * HBA consistent with the SLI-4 interface spec. This routine
49198b37
JS
15077 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
15078 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
6fb120a7
JS
15079 *
15080 * Returns
af901ca1 15081 * A nonzero rpi defined as rpi_base <= rpi < max_rpi if successful
6fb120a7
JS
15082 * LPFC_RPI_ALLOC_ERROR if no rpis are available.
15083 **/
15084int
15085lpfc_sli4_alloc_rpi(struct lpfc_hba *phba)
15086{
6d368e53
JS
15087 unsigned long rpi;
15088 uint16_t max_rpi, rpi_limit;
15089 uint16_t rpi_remaining, lrpi = 0;
6fb120a7
JS
15090 struct lpfc_rpi_hdr *rpi_hdr;
15091
15092 max_rpi = phba->sli4_hba.max_cfg_param.max_rpi;
6fb120a7
JS
15093 rpi_limit = phba->sli4_hba.next_rpi;
15094
15095 /*
6d368e53
JS
15096 * Fetch the next logical rpi. Because this index is logical,
15097 * the driver starts at 0 each time.
6fb120a7
JS
15098 */
15099 spin_lock_irq(&phba->hbalock);
6d368e53
JS
15100 rpi = find_next_zero_bit(phba->sli4_hba.rpi_bmask, rpi_limit, 0);
15101 if (rpi >= rpi_limit)
6fb120a7
JS
15102 rpi = LPFC_RPI_ALLOC_ERROR;
15103 else {
15104 set_bit(rpi, phba->sli4_hba.rpi_bmask);
15105 phba->sli4_hba.max_cfg_param.rpi_used++;
15106 phba->sli4_hba.rpi_count++;
15107 }
15108
15109 /*
15110 * Don't try to allocate more rpi header regions if the device limit
6d368e53 15111 * has been exhausted.
6fb120a7
JS
15112 */
15113 if ((rpi == LPFC_RPI_ALLOC_ERROR) &&
15114 (phba->sli4_hba.rpi_count >= max_rpi)) {
15115 spin_unlock_irq(&phba->hbalock);
15116 return rpi;
15117 }
15118
6d368e53
JS
15119 /*
15120 * RPI header postings are not required for SLI4 ports capable of
15121 * extents.
15122 */
15123 if (!phba->sli4_hba.rpi_hdrs_in_use) {
15124 spin_unlock_irq(&phba->hbalock);
15125 return rpi;
15126 }
15127
6fb120a7
JS
15128 /*
15129 * If the driver is running low on rpi resources, allocate another
15130 * page now. Note that the next_rpi value is used because
15131 * it represents how many are actually in use whereas max_rpi notes
15132 * how many are supported max by the device.
15133 */
6d368e53 15134 rpi_remaining = phba->sli4_hba.next_rpi - phba->sli4_hba.rpi_count;
6fb120a7
JS
15135 spin_unlock_irq(&phba->hbalock);
15136 if (rpi_remaining < LPFC_RPI_LOW_WATER_MARK) {
15137 rpi_hdr = lpfc_sli4_create_rpi_hdr(phba);
15138 if (!rpi_hdr) {
15139 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15140 "2002 Error Could not grow rpi "
15141 "count\n");
15142 } else {
6d368e53
JS
15143 lrpi = rpi_hdr->start_rpi;
15144 rpi_hdr->start_rpi = phba->sli4_hba.rpi_ids[lrpi];
6fb120a7
JS
15145 lpfc_sli4_post_rpi_hdr(phba, rpi_hdr);
15146 }
15147 }
15148
15149 return rpi;
15150}
15151
d7c47992
JS
15152/**
15153 * lpfc_sli4_free_rpi - Release an rpi for reuse.
15154 * @phba: pointer to lpfc hba data structure.
15155 *
15156 * This routine is invoked to release an rpi to the pool of
15157 * available rpis maintained by the driver.
15158 **/
15159void
15160__lpfc_sli4_free_rpi(struct lpfc_hba *phba, int rpi)
15161{
15162 if (test_and_clear_bit(rpi, phba->sli4_hba.rpi_bmask)) {
15163 phba->sli4_hba.rpi_count--;
15164 phba->sli4_hba.max_cfg_param.rpi_used--;
15165 }
15166}
15167
6fb120a7
JS
15168/**
15169 * lpfc_sli4_free_rpi - Release an rpi for reuse.
15170 * @phba: pointer to lpfc hba data structure.
15171 *
15172 * This routine is invoked to release an rpi to the pool of
15173 * available rpis maintained by the driver.
15174 **/
15175void
15176lpfc_sli4_free_rpi(struct lpfc_hba *phba, int rpi)
15177{
15178 spin_lock_irq(&phba->hbalock);
d7c47992 15179 __lpfc_sli4_free_rpi(phba, rpi);
6fb120a7
JS
15180 spin_unlock_irq(&phba->hbalock);
15181}
15182
15183/**
15184 * lpfc_sli4_remove_rpis - Remove the rpi bitmask region
15185 * @phba: pointer to lpfc hba data structure.
15186 *
15187 * This routine is invoked to remove the memory region that
15188 * provided rpi via a bitmask.
15189 **/
15190void
15191lpfc_sli4_remove_rpis(struct lpfc_hba *phba)
15192{
15193 kfree(phba->sli4_hba.rpi_bmask);
6d368e53
JS
15194 kfree(phba->sli4_hba.rpi_ids);
15195 bf_set(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
6fb120a7
JS
15196}
15197
15198/**
15199 * lpfc_sli4_resume_rpi - Remove the rpi bitmask region
15200 * @phba: pointer to lpfc hba data structure.
15201 *
15202 * This routine is invoked to remove the memory region that
15203 * provided rpi via a bitmask.
15204 **/
15205int
6b5151fd
JS
15206lpfc_sli4_resume_rpi(struct lpfc_nodelist *ndlp,
15207 void (*cmpl)(struct lpfc_hba *, LPFC_MBOXQ_t *), void *arg)
6fb120a7
JS
15208{
15209 LPFC_MBOXQ_t *mboxq;
15210 struct lpfc_hba *phba = ndlp->phba;
15211 int rc;
15212
15213 /* The port is notified of the header region via a mailbox command. */
15214 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15215 if (!mboxq)
15216 return -ENOMEM;
15217
15218 /* Post all rpi memory regions to the port. */
15219 lpfc_resume_rpi(mboxq, ndlp);
6b5151fd
JS
15220 if (cmpl) {
15221 mboxq->mbox_cmpl = cmpl;
15222 mboxq->context1 = arg;
15223 mboxq->context2 = ndlp;
72859909
JS
15224 } else
15225 mboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
6b5151fd 15226 mboxq->vport = ndlp->vport;
6fb120a7
JS
15227 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
15228 if (rc == MBX_NOT_FINISHED) {
15229 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15230 "2010 Resume RPI Mailbox failed "
15231 "status %d, mbxStatus x%x\n", rc,
15232 bf_get(lpfc_mqe_status, &mboxq->u.mqe));
15233 mempool_free(mboxq, phba->mbox_mem_pool);
15234 return -EIO;
15235 }
15236 return 0;
15237}
15238
15239/**
15240 * lpfc_sli4_init_vpi - Initialize a vpi with the port
76a95d75 15241 * @vport: Pointer to the vport for which the vpi is being initialized
6fb120a7 15242 *
76a95d75 15243 * This routine is invoked to activate a vpi with the port.
6fb120a7
JS
15244 *
15245 * Returns:
15246 * 0 success
15247 * -Evalue otherwise
15248 **/
15249int
76a95d75 15250lpfc_sli4_init_vpi(struct lpfc_vport *vport)
6fb120a7
JS
15251{
15252 LPFC_MBOXQ_t *mboxq;
15253 int rc = 0;
6a9c52cf 15254 int retval = MBX_SUCCESS;
6fb120a7 15255 uint32_t mbox_tmo;
76a95d75 15256 struct lpfc_hba *phba = vport->phba;
6fb120a7
JS
15257 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15258 if (!mboxq)
15259 return -ENOMEM;
76a95d75 15260 lpfc_init_vpi(phba, mboxq, vport->vpi);
a183a15f 15261 mbox_tmo = lpfc_mbox_tmo_val(phba, mboxq);
6fb120a7 15262 rc = lpfc_sli_issue_mbox_wait(phba, mboxq, mbox_tmo);
6fb120a7 15263 if (rc != MBX_SUCCESS) {
76a95d75 15264 lpfc_printf_vlog(vport, KERN_ERR, LOG_SLI,
6fb120a7
JS
15265 "2022 INIT VPI Mailbox failed "
15266 "status %d, mbxStatus x%x\n", rc,
15267 bf_get(lpfc_mqe_status, &mboxq->u.mqe));
6a9c52cf 15268 retval = -EIO;
6fb120a7 15269 }
6a9c52cf 15270 if (rc != MBX_TIMEOUT)
76a95d75 15271 mempool_free(mboxq, vport->phba->mbox_mem_pool);
6a9c52cf
JS
15272
15273 return retval;
6fb120a7
JS
15274}
15275
15276/**
15277 * lpfc_mbx_cmpl_add_fcf_record - add fcf mbox completion handler.
15278 * @phba: pointer to lpfc hba data structure.
15279 * @mboxq: Pointer to mailbox object.
15280 *
15281 * This routine is invoked to manually add a single FCF record. The caller
15282 * must pass a completely initialized FCF_Record. This routine takes
15283 * care of the nonembedded mailbox operations.
15284 **/
15285static void
15286lpfc_mbx_cmpl_add_fcf_record(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
15287{
15288 void *virt_addr;
15289 union lpfc_sli4_cfg_shdr *shdr;
15290 uint32_t shdr_status, shdr_add_status;
15291
15292 virt_addr = mboxq->sge_array->addr[0];
15293 /* The IOCTL status is embedded in the mailbox subheader. */
15294 shdr = (union lpfc_sli4_cfg_shdr *) virt_addr;
15295 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
15296 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
15297
15298 if ((shdr_status || shdr_add_status) &&
15299 (shdr_status != STATUS_FCF_IN_USE))
15300 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15301 "2558 ADD_FCF_RECORD mailbox failed with "
15302 "status x%x add_status x%x\n",
15303 shdr_status, shdr_add_status);
15304
15305 lpfc_sli4_mbox_cmd_free(phba, mboxq);
15306}
15307
15308/**
15309 * lpfc_sli4_add_fcf_record - Manually add an FCF Record.
15310 * @phba: pointer to lpfc hba data structure.
15311 * @fcf_record: pointer to the initialized fcf record to add.
15312 *
15313 * This routine is invoked to manually add a single FCF record. The caller
15314 * must pass a completely initialized FCF_Record. This routine takes
15315 * care of the nonembedded mailbox operations.
15316 **/
15317int
15318lpfc_sli4_add_fcf_record(struct lpfc_hba *phba, struct fcf_record *fcf_record)
15319{
15320 int rc = 0;
15321 LPFC_MBOXQ_t *mboxq;
15322 uint8_t *bytep;
15323 void *virt_addr;
15324 dma_addr_t phys_addr;
15325 struct lpfc_mbx_sge sge;
15326 uint32_t alloc_len, req_len;
15327 uint32_t fcfindex;
15328
15329 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15330 if (!mboxq) {
15331 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15332 "2009 Failed to allocate mbox for ADD_FCF cmd\n");
15333 return -ENOMEM;
15334 }
15335
15336 req_len = sizeof(struct fcf_record) + sizeof(union lpfc_sli4_cfg_shdr) +
15337 sizeof(uint32_t);
15338
15339 /* Allocate DMA memory and set up the non-embedded mailbox command */
15340 alloc_len = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
15341 LPFC_MBOX_OPCODE_FCOE_ADD_FCF,
15342 req_len, LPFC_SLI4_MBX_NEMBED);
15343 if (alloc_len < req_len) {
15344 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15345 "2523 Allocated DMA memory size (x%x) is "
15346 "less than the requested DMA memory "
15347 "size (x%x)\n", alloc_len, req_len);
15348 lpfc_sli4_mbox_cmd_free(phba, mboxq);
15349 return -ENOMEM;
15350 }
15351
15352 /*
15353 * Get the first SGE entry from the non-embedded DMA memory. This
15354 * routine only uses a single SGE.
15355 */
15356 lpfc_sli4_mbx_sge_get(mboxq, 0, &sge);
15357 phys_addr = getPaddr(sge.pa_hi, sge.pa_lo);
6fb120a7
JS
15358 virt_addr = mboxq->sge_array->addr[0];
15359 /*
15360 * Configure the FCF record for FCFI 0. This is the driver's
15361 * hardcoded default and gets used in nonFIP mode.
15362 */
15363 fcfindex = bf_get(lpfc_fcf_record_fcf_index, fcf_record);
15364 bytep = virt_addr + sizeof(union lpfc_sli4_cfg_shdr);
15365 lpfc_sli_pcimem_bcopy(&fcfindex, bytep, sizeof(uint32_t));
15366
15367 /*
15368 * Copy the fcf_index and the FCF Record Data. The data starts after
15369 * the FCoE header plus word10. The data copy needs to be endian
15370 * correct.
15371 */
15372 bytep += sizeof(uint32_t);
15373 lpfc_sli_pcimem_bcopy(fcf_record, bytep, sizeof(struct fcf_record));
15374 mboxq->vport = phba->pport;
15375 mboxq->mbox_cmpl = lpfc_mbx_cmpl_add_fcf_record;
15376 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
15377 if (rc == MBX_NOT_FINISHED) {
15378 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15379 "2515 ADD_FCF_RECORD mailbox failed with "
15380 "status 0x%x\n", rc);
15381 lpfc_sli4_mbox_cmd_free(phba, mboxq);
15382 rc = -EIO;
15383 } else
15384 rc = 0;
15385
15386 return rc;
15387}
15388
15389/**
15390 * lpfc_sli4_build_dflt_fcf_record - Build the driver's default FCF Record.
15391 * @phba: pointer to lpfc hba data structure.
15392 * @fcf_record: pointer to the fcf record to write the default data.
15393 * @fcf_index: FCF table entry index.
15394 *
15395 * This routine is invoked to build the driver's default FCF record. The
15396 * values used are hardcoded. This routine handles memory initialization.
15397 *
15398 **/
15399void
15400lpfc_sli4_build_dflt_fcf_record(struct lpfc_hba *phba,
15401 struct fcf_record *fcf_record,
15402 uint16_t fcf_index)
15403{
15404 memset(fcf_record, 0, sizeof(struct fcf_record));
15405 fcf_record->max_rcv_size = LPFC_FCOE_MAX_RCV_SIZE;
15406 fcf_record->fka_adv_period = LPFC_FCOE_FKA_ADV_PER;
15407 fcf_record->fip_priority = LPFC_FCOE_FIP_PRIORITY;
15408 bf_set(lpfc_fcf_record_mac_0, fcf_record, phba->fc_map[0]);
15409 bf_set(lpfc_fcf_record_mac_1, fcf_record, phba->fc_map[1]);
15410 bf_set(lpfc_fcf_record_mac_2, fcf_record, phba->fc_map[2]);
15411 bf_set(lpfc_fcf_record_mac_3, fcf_record, LPFC_FCOE_FCF_MAC3);
15412 bf_set(lpfc_fcf_record_mac_4, fcf_record, LPFC_FCOE_FCF_MAC4);
15413 bf_set(lpfc_fcf_record_mac_5, fcf_record, LPFC_FCOE_FCF_MAC5);
15414 bf_set(lpfc_fcf_record_fc_map_0, fcf_record, phba->fc_map[0]);
15415 bf_set(lpfc_fcf_record_fc_map_1, fcf_record, phba->fc_map[1]);
15416 bf_set(lpfc_fcf_record_fc_map_2, fcf_record, phba->fc_map[2]);
15417 bf_set(lpfc_fcf_record_fcf_valid, fcf_record, 1);
0c287589 15418 bf_set(lpfc_fcf_record_fcf_avail, fcf_record, 1);
6fb120a7
JS
15419 bf_set(lpfc_fcf_record_fcf_index, fcf_record, fcf_index);
15420 bf_set(lpfc_fcf_record_mac_addr_prov, fcf_record,
15421 LPFC_FCF_FPMA | LPFC_FCF_SPMA);
15422 /* Set the VLAN bit map */
15423 if (phba->valid_vlan) {
15424 fcf_record->vlan_bitmap[phba->vlan_id / 8]
15425 = 1 << (phba->vlan_id % 8);
15426 }
15427}
15428
15429/**
0c9ab6f5 15430 * lpfc_sli4_fcf_scan_read_fcf_rec - Read hba fcf record for fcf scan.
6fb120a7
JS
15431 * @phba: pointer to lpfc hba data structure.
15432 * @fcf_index: FCF table entry offset.
15433 *
0c9ab6f5
JS
15434 * This routine is invoked to scan the entire FCF table by reading FCF
15435 * record and processing it one at a time starting from the @fcf_index
15436 * for initial FCF discovery or fast FCF failover rediscovery.
15437 *
25985edc 15438 * Return 0 if the mailbox command is submitted successfully, none 0
0c9ab6f5 15439 * otherwise.
6fb120a7
JS
15440 **/
15441int
0c9ab6f5 15442lpfc_sli4_fcf_scan_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
6fb120a7
JS
15443{
15444 int rc = 0, error;
15445 LPFC_MBOXQ_t *mboxq;
6fb120a7 15446
32b9793f 15447 phba->fcoe_eventtag_at_fcf_scan = phba->fcoe_eventtag;
80c17849 15448 phba->fcoe_cvl_eventtag_attn = phba->fcoe_cvl_eventtag;
6fb120a7
JS
15449 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15450 if (!mboxq) {
15451 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15452 "2000 Failed to allocate mbox for "
15453 "READ_FCF cmd\n");
4d9ab994 15454 error = -ENOMEM;
0c9ab6f5 15455 goto fail_fcf_scan;
6fb120a7 15456 }
ecfd03c6 15457 /* Construct the read FCF record mailbox command */
0c9ab6f5 15458 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
ecfd03c6
JS
15459 if (rc) {
15460 error = -EINVAL;
0c9ab6f5 15461 goto fail_fcf_scan;
6fb120a7 15462 }
ecfd03c6 15463 /* Issue the mailbox command asynchronously */
6fb120a7 15464 mboxq->vport = phba->pport;
0c9ab6f5 15465 mboxq->mbox_cmpl = lpfc_mbx_cmpl_fcf_scan_read_fcf_rec;
a93ff37a
JS
15466
15467 spin_lock_irq(&phba->hbalock);
15468 phba->hba_flag |= FCF_TS_INPROG;
15469 spin_unlock_irq(&phba->hbalock);
15470
6fb120a7 15471 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
ecfd03c6 15472 if (rc == MBX_NOT_FINISHED)
6fb120a7 15473 error = -EIO;
ecfd03c6 15474 else {
38b92ef8
JS
15475 /* Reset eligible FCF count for new scan */
15476 if (fcf_index == LPFC_FCOE_FCF_GET_FIRST)
999d813f 15477 phba->fcf.eligible_fcf_cnt = 0;
6fb120a7 15478 error = 0;
32b9793f 15479 }
0c9ab6f5 15480fail_fcf_scan:
4d9ab994
JS
15481 if (error) {
15482 if (mboxq)
15483 lpfc_sli4_mbox_cmd_free(phba, mboxq);
a93ff37a 15484 /* FCF scan failed, clear FCF_TS_INPROG flag */
4d9ab994 15485 spin_lock_irq(&phba->hbalock);
a93ff37a 15486 phba->hba_flag &= ~FCF_TS_INPROG;
4d9ab994
JS
15487 spin_unlock_irq(&phba->hbalock);
15488 }
6fb120a7
JS
15489 return error;
15490}
a0c87cbd 15491
0c9ab6f5 15492/**
a93ff37a 15493 * lpfc_sli4_fcf_rr_read_fcf_rec - Read hba fcf record for roundrobin fcf.
0c9ab6f5
JS
15494 * @phba: pointer to lpfc hba data structure.
15495 * @fcf_index: FCF table entry offset.
15496 *
15497 * This routine is invoked to read an FCF record indicated by @fcf_index
a93ff37a 15498 * and to use it for FLOGI roundrobin FCF failover.
0c9ab6f5 15499 *
25985edc 15500 * Return 0 if the mailbox command is submitted successfully, none 0
0c9ab6f5
JS
15501 * otherwise.
15502 **/
15503int
15504lpfc_sli4_fcf_rr_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
15505{
15506 int rc = 0, error;
15507 LPFC_MBOXQ_t *mboxq;
15508
15509 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15510 if (!mboxq) {
15511 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_INIT,
15512 "2763 Failed to allocate mbox for "
15513 "READ_FCF cmd\n");
15514 error = -ENOMEM;
15515 goto fail_fcf_read;
15516 }
15517 /* Construct the read FCF record mailbox command */
15518 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
15519 if (rc) {
15520 error = -EINVAL;
15521 goto fail_fcf_read;
15522 }
15523 /* Issue the mailbox command asynchronously */
15524 mboxq->vport = phba->pport;
15525 mboxq->mbox_cmpl = lpfc_mbx_cmpl_fcf_rr_read_fcf_rec;
15526 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
15527 if (rc == MBX_NOT_FINISHED)
15528 error = -EIO;
15529 else
15530 error = 0;
15531
15532fail_fcf_read:
15533 if (error && mboxq)
15534 lpfc_sli4_mbox_cmd_free(phba, mboxq);
15535 return error;
15536}
15537
15538/**
15539 * lpfc_sli4_read_fcf_rec - Read hba fcf record for update eligible fcf bmask.
15540 * @phba: pointer to lpfc hba data structure.
15541 * @fcf_index: FCF table entry offset.
15542 *
15543 * This routine is invoked to read an FCF record indicated by @fcf_index to
a93ff37a 15544 * determine whether it's eligible for FLOGI roundrobin failover list.
0c9ab6f5 15545 *
25985edc 15546 * Return 0 if the mailbox command is submitted successfully, none 0
0c9ab6f5
JS
15547 * otherwise.
15548 **/
15549int
15550lpfc_sli4_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
15551{
15552 int rc = 0, error;
15553 LPFC_MBOXQ_t *mboxq;
15554
15555 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15556 if (!mboxq) {
15557 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_INIT,
15558 "2758 Failed to allocate mbox for "
15559 "READ_FCF cmd\n");
15560 error = -ENOMEM;
15561 goto fail_fcf_read;
15562 }
15563 /* Construct the read FCF record mailbox command */
15564 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
15565 if (rc) {
15566 error = -EINVAL;
15567 goto fail_fcf_read;
15568 }
15569 /* Issue the mailbox command asynchronously */
15570 mboxq->vport = phba->pport;
15571 mboxq->mbox_cmpl = lpfc_mbx_cmpl_read_fcf_rec;
15572 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
15573 if (rc == MBX_NOT_FINISHED)
15574 error = -EIO;
15575 else
15576 error = 0;
15577
15578fail_fcf_read:
15579 if (error && mboxq)
15580 lpfc_sli4_mbox_cmd_free(phba, mboxq);
15581 return error;
15582}
15583
7d791df7
JS
15584/**
15585 * lpfc_check_next_fcf_pri
15586 * phba pointer to the lpfc_hba struct for this port.
15587 * This routine is called from the lpfc_sli4_fcf_rr_next_index_get
15588 * routine when the rr_bmask is empty. The FCF indecies are put into the
15589 * rr_bmask based on their priority level. Starting from the highest priority
15590 * to the lowest. The most likely FCF candidate will be in the highest
15591 * priority group. When this routine is called it searches the fcf_pri list for
15592 * next lowest priority group and repopulates the rr_bmask with only those
15593 * fcf_indexes.
15594 * returns:
15595 * 1=success 0=failure
15596 **/
15597int
15598lpfc_check_next_fcf_pri_level(struct lpfc_hba *phba)
15599{
15600 uint16_t next_fcf_pri;
15601 uint16_t last_index;
15602 struct lpfc_fcf_pri *fcf_pri;
15603 int rc;
15604 int ret = 0;
15605
15606 last_index = find_first_bit(phba->fcf.fcf_rr_bmask,
15607 LPFC_SLI4_FCF_TBL_INDX_MAX);
15608 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
15609 "3060 Last IDX %d\n", last_index);
2562669c
JS
15610
15611 /* Verify the priority list has 2 or more entries */
15612 spin_lock_irq(&phba->hbalock);
15613 if (list_empty(&phba->fcf.fcf_pri_list) ||
15614 list_is_singular(&phba->fcf.fcf_pri_list)) {
15615 spin_unlock_irq(&phba->hbalock);
7d791df7
JS
15616 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
15617 "3061 Last IDX %d\n", last_index);
15618 return 0; /* Empty rr list */
15619 }
2562669c
JS
15620 spin_unlock_irq(&phba->hbalock);
15621
7d791df7
JS
15622 next_fcf_pri = 0;
15623 /*
15624 * Clear the rr_bmask and set all of the bits that are at this
15625 * priority.
15626 */
15627 memset(phba->fcf.fcf_rr_bmask, 0,
15628 sizeof(*phba->fcf.fcf_rr_bmask));
15629 spin_lock_irq(&phba->hbalock);
15630 list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
15631 if (fcf_pri->fcf_rec.flag & LPFC_FCF_FLOGI_FAILED)
15632 continue;
15633 /*
15634 * the 1st priority that has not FLOGI failed
15635 * will be the highest.
15636 */
15637 if (!next_fcf_pri)
15638 next_fcf_pri = fcf_pri->fcf_rec.priority;
15639 spin_unlock_irq(&phba->hbalock);
15640 if (fcf_pri->fcf_rec.priority == next_fcf_pri) {
15641 rc = lpfc_sli4_fcf_rr_index_set(phba,
15642 fcf_pri->fcf_rec.fcf_index);
15643 if (rc)
15644 return 0;
15645 }
15646 spin_lock_irq(&phba->hbalock);
15647 }
15648 /*
15649 * if next_fcf_pri was not set above and the list is not empty then
15650 * we have failed flogis on all of them. So reset flogi failed
4907cb7b 15651 * and start at the beginning.
7d791df7
JS
15652 */
15653 if (!next_fcf_pri && !list_empty(&phba->fcf.fcf_pri_list)) {
15654 list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
15655 fcf_pri->fcf_rec.flag &= ~LPFC_FCF_FLOGI_FAILED;
15656 /*
15657 * the 1st priority that has not FLOGI failed
15658 * will be the highest.
15659 */
15660 if (!next_fcf_pri)
15661 next_fcf_pri = fcf_pri->fcf_rec.priority;
15662 spin_unlock_irq(&phba->hbalock);
15663 if (fcf_pri->fcf_rec.priority == next_fcf_pri) {
15664 rc = lpfc_sli4_fcf_rr_index_set(phba,
15665 fcf_pri->fcf_rec.fcf_index);
15666 if (rc)
15667 return 0;
15668 }
15669 spin_lock_irq(&phba->hbalock);
15670 }
15671 } else
15672 ret = 1;
15673 spin_unlock_irq(&phba->hbalock);
15674
15675 return ret;
15676}
0c9ab6f5
JS
15677/**
15678 * lpfc_sli4_fcf_rr_next_index_get - Get next eligible fcf record index
15679 * @phba: pointer to lpfc hba data structure.
15680 *
15681 * This routine is to get the next eligible FCF record index in a round
15682 * robin fashion. If the next eligible FCF record index equals to the
a93ff37a 15683 * initial roundrobin FCF record index, LPFC_FCOE_FCF_NEXT_NONE (0xFFFF)
0c9ab6f5
JS
15684 * shall be returned, otherwise, the next eligible FCF record's index
15685 * shall be returned.
15686 **/
15687uint16_t
15688lpfc_sli4_fcf_rr_next_index_get(struct lpfc_hba *phba)
15689{
15690 uint16_t next_fcf_index;
15691
421c6622 15692initial_priority:
3804dc84 15693 /* Search start from next bit of currently registered FCF index */
421c6622
JS
15694 next_fcf_index = phba->fcf.current_rec.fcf_indx;
15695
7d791df7 15696next_priority:
421c6622
JS
15697 /* Determine the next fcf index to check */
15698 next_fcf_index = (next_fcf_index + 1) % LPFC_SLI4_FCF_TBL_INDX_MAX;
0c9ab6f5
JS
15699 next_fcf_index = find_next_bit(phba->fcf.fcf_rr_bmask,
15700 LPFC_SLI4_FCF_TBL_INDX_MAX,
3804dc84
JS
15701 next_fcf_index);
15702
0c9ab6f5 15703 /* Wrap around condition on phba->fcf.fcf_rr_bmask */
7d791df7
JS
15704 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
15705 /*
15706 * If we have wrapped then we need to clear the bits that
15707 * have been tested so that we can detect when we should
15708 * change the priority level.
15709 */
0c9ab6f5
JS
15710 next_fcf_index = find_next_bit(phba->fcf.fcf_rr_bmask,
15711 LPFC_SLI4_FCF_TBL_INDX_MAX, 0);
7d791df7
JS
15712 }
15713
3804dc84
JS
15714
15715 /* Check roundrobin failover list empty condition */
7d791df7
JS
15716 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX ||
15717 next_fcf_index == phba->fcf.current_rec.fcf_indx) {
15718 /*
15719 * If next fcf index is not found check if there are lower
15720 * Priority level fcf's in the fcf_priority list.
15721 * Set up the rr_bmask with all of the avaiable fcf bits
15722 * at that level and continue the selection process.
15723 */
15724 if (lpfc_check_next_fcf_pri_level(phba))
421c6622 15725 goto initial_priority;
3804dc84
JS
15726 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
15727 "2844 No roundrobin failover FCF available\n");
7d791df7
JS
15728 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX)
15729 return LPFC_FCOE_FCF_NEXT_NONE;
15730 else {
15731 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
15732 "3063 Only FCF available idx %d, flag %x\n",
15733 next_fcf_index,
15734 phba->fcf.fcf_pri[next_fcf_index].fcf_rec.flag);
15735 return next_fcf_index;
15736 }
3804dc84
JS
15737 }
15738
7d791df7
JS
15739 if (next_fcf_index < LPFC_SLI4_FCF_TBL_INDX_MAX &&
15740 phba->fcf.fcf_pri[next_fcf_index].fcf_rec.flag &
15741 LPFC_FCF_FLOGI_FAILED)
15742 goto next_priority;
15743
3804dc84 15744 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
a93ff37a
JS
15745 "2845 Get next roundrobin failover FCF (x%x)\n",
15746 next_fcf_index);
15747
0c9ab6f5
JS
15748 return next_fcf_index;
15749}
15750
15751/**
15752 * lpfc_sli4_fcf_rr_index_set - Set bmask with eligible fcf record index
15753 * @phba: pointer to lpfc hba data structure.
15754 *
15755 * This routine sets the FCF record index in to the eligible bmask for
a93ff37a 15756 * roundrobin failover search. It checks to make sure that the index
0c9ab6f5
JS
15757 * does not go beyond the range of the driver allocated bmask dimension
15758 * before setting the bit.
15759 *
15760 * Returns 0 if the index bit successfully set, otherwise, it returns
15761 * -EINVAL.
15762 **/
15763int
15764lpfc_sli4_fcf_rr_index_set(struct lpfc_hba *phba, uint16_t fcf_index)
15765{
15766 if (fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
15767 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
a93ff37a
JS
15768 "2610 FCF (x%x) reached driver's book "
15769 "keeping dimension:x%x\n",
0c9ab6f5
JS
15770 fcf_index, LPFC_SLI4_FCF_TBL_INDX_MAX);
15771 return -EINVAL;
15772 }
15773 /* Set the eligible FCF record index bmask */
15774 set_bit(fcf_index, phba->fcf.fcf_rr_bmask);
15775
3804dc84 15776 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
a93ff37a 15777 "2790 Set FCF (x%x) to roundrobin FCF failover "
3804dc84
JS
15778 "bmask\n", fcf_index);
15779
0c9ab6f5
JS
15780 return 0;
15781}
15782
15783/**
3804dc84 15784 * lpfc_sli4_fcf_rr_index_clear - Clear bmask from eligible fcf record index
0c9ab6f5
JS
15785 * @phba: pointer to lpfc hba data structure.
15786 *
15787 * This routine clears the FCF record index from the eligible bmask for
a93ff37a 15788 * roundrobin failover search. It checks to make sure that the index
0c9ab6f5
JS
15789 * does not go beyond the range of the driver allocated bmask dimension
15790 * before clearing the bit.
15791 **/
15792void
15793lpfc_sli4_fcf_rr_index_clear(struct lpfc_hba *phba, uint16_t fcf_index)
15794{
9a803a74 15795 struct lpfc_fcf_pri *fcf_pri, *fcf_pri_next;
0c9ab6f5
JS
15796 if (fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
15797 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
a93ff37a
JS
15798 "2762 FCF (x%x) reached driver's book "
15799 "keeping dimension:x%x\n",
0c9ab6f5
JS
15800 fcf_index, LPFC_SLI4_FCF_TBL_INDX_MAX);
15801 return;
15802 }
15803 /* Clear the eligible FCF record index bmask */
7d791df7 15804 spin_lock_irq(&phba->hbalock);
9a803a74
JS
15805 list_for_each_entry_safe(fcf_pri, fcf_pri_next, &phba->fcf.fcf_pri_list,
15806 list) {
7d791df7
JS
15807 if (fcf_pri->fcf_rec.fcf_index == fcf_index) {
15808 list_del_init(&fcf_pri->list);
15809 break;
15810 }
15811 }
15812 spin_unlock_irq(&phba->hbalock);
0c9ab6f5 15813 clear_bit(fcf_index, phba->fcf.fcf_rr_bmask);
3804dc84
JS
15814
15815 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
a93ff37a 15816 "2791 Clear FCF (x%x) from roundrobin failover "
3804dc84 15817 "bmask\n", fcf_index);
0c9ab6f5
JS
15818}
15819
ecfd03c6
JS
15820/**
15821 * lpfc_mbx_cmpl_redisc_fcf_table - completion routine for rediscover FCF table
15822 * @phba: pointer to lpfc hba data structure.
15823 *
15824 * This routine is the completion routine for the rediscover FCF table mailbox
15825 * command. If the mailbox command returned failure, it will try to stop the
15826 * FCF rediscover wait timer.
15827 **/
15828void
15829lpfc_mbx_cmpl_redisc_fcf_table(struct lpfc_hba *phba, LPFC_MBOXQ_t *mbox)
15830{
15831 struct lpfc_mbx_redisc_fcf_tbl *redisc_fcf;
15832 uint32_t shdr_status, shdr_add_status;
15833
15834 redisc_fcf = &mbox->u.mqe.un.redisc_fcf_tbl;
15835
15836 shdr_status = bf_get(lpfc_mbox_hdr_status,
15837 &redisc_fcf->header.cfg_shdr.response);
15838 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status,
15839 &redisc_fcf->header.cfg_shdr.response);
15840 if (shdr_status || shdr_add_status) {
0c9ab6f5 15841 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
ecfd03c6
JS
15842 "2746 Requesting for FCF rediscovery failed "
15843 "status x%x add_status x%x\n",
15844 shdr_status, shdr_add_status);
0c9ab6f5 15845 if (phba->fcf.fcf_flag & FCF_ACVL_DISC) {
fc2b989b 15846 spin_lock_irq(&phba->hbalock);
0c9ab6f5 15847 phba->fcf.fcf_flag &= ~FCF_ACVL_DISC;
fc2b989b
JS
15848 spin_unlock_irq(&phba->hbalock);
15849 /*
15850 * CVL event triggered FCF rediscover request failed,
15851 * last resort to re-try current registered FCF entry.
15852 */
15853 lpfc_retry_pport_discovery(phba);
15854 } else {
15855 spin_lock_irq(&phba->hbalock);
0c9ab6f5 15856 phba->fcf.fcf_flag &= ~FCF_DEAD_DISC;
fc2b989b
JS
15857 spin_unlock_irq(&phba->hbalock);
15858 /*
15859 * DEAD FCF event triggered FCF rediscover request
15860 * failed, last resort to fail over as a link down
15861 * to FCF registration.
15862 */
15863 lpfc_sli4_fcf_dead_failthrough(phba);
15864 }
0c9ab6f5
JS
15865 } else {
15866 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
a93ff37a 15867 "2775 Start FCF rediscover quiescent timer\n");
ecfd03c6
JS
15868 /*
15869 * Start FCF rediscovery wait timer for pending FCF
15870 * before rescan FCF record table.
15871 */
15872 lpfc_fcf_redisc_wait_start_timer(phba);
0c9ab6f5 15873 }
ecfd03c6
JS
15874
15875 mempool_free(mbox, phba->mbox_mem_pool);
15876}
15877
15878/**
3804dc84 15879 * lpfc_sli4_redisc_fcf_table - Request to rediscover entire FCF table by port.
ecfd03c6
JS
15880 * @phba: pointer to lpfc hba data structure.
15881 *
15882 * This routine is invoked to request for rediscovery of the entire FCF table
15883 * by the port.
15884 **/
15885int
15886lpfc_sli4_redisc_fcf_table(struct lpfc_hba *phba)
15887{
15888 LPFC_MBOXQ_t *mbox;
15889 struct lpfc_mbx_redisc_fcf_tbl *redisc_fcf;
15890 int rc, length;
15891
0c9ab6f5
JS
15892 /* Cancel retry delay timers to all vports before FCF rediscover */
15893 lpfc_cancel_all_vport_retry_delay_timer(phba);
15894
ecfd03c6
JS
15895 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15896 if (!mbox) {
15897 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15898 "2745 Failed to allocate mbox for "
15899 "requesting FCF rediscover.\n");
15900 return -ENOMEM;
15901 }
15902
15903 length = (sizeof(struct lpfc_mbx_redisc_fcf_tbl) -
15904 sizeof(struct lpfc_sli4_cfg_mhdr));
15905 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
15906 LPFC_MBOX_OPCODE_FCOE_REDISCOVER_FCF,
15907 length, LPFC_SLI4_MBX_EMBED);
15908
15909 redisc_fcf = &mbox->u.mqe.un.redisc_fcf_tbl;
15910 /* Set count to 0 for invalidating the entire FCF database */
15911 bf_set(lpfc_mbx_redisc_fcf_count, redisc_fcf, 0);
15912
15913 /* Issue the mailbox command asynchronously */
15914 mbox->vport = phba->pport;
15915 mbox->mbox_cmpl = lpfc_mbx_cmpl_redisc_fcf_table;
15916 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
15917
15918 if (rc == MBX_NOT_FINISHED) {
15919 mempool_free(mbox, phba->mbox_mem_pool);
15920 return -EIO;
15921 }
15922 return 0;
15923}
15924
fc2b989b
JS
15925/**
15926 * lpfc_sli4_fcf_dead_failthrough - Failthrough routine to fcf dead event
15927 * @phba: pointer to lpfc hba data structure.
15928 *
15929 * This function is the failover routine as a last resort to the FCF DEAD
15930 * event when driver failed to perform fast FCF failover.
15931 **/
15932void
15933lpfc_sli4_fcf_dead_failthrough(struct lpfc_hba *phba)
15934{
15935 uint32_t link_state;
15936
15937 /*
15938 * Last resort as FCF DEAD event failover will treat this as
15939 * a link down, but save the link state because we don't want
15940 * it to be changed to Link Down unless it is already down.
15941 */
15942 link_state = phba->link_state;
15943 lpfc_linkdown(phba);
15944 phba->link_state = link_state;
15945
15946 /* Unregister FCF if no devices connected to it */
15947 lpfc_unregister_unused_fcf(phba);
15948}
15949
a0c87cbd 15950/**
026abb87 15951 * lpfc_sli_get_config_region23 - Get sli3 port region 23 data.
a0c87cbd 15952 * @phba: pointer to lpfc hba data structure.
026abb87 15953 * @rgn23_data: pointer to configure region 23 data.
a0c87cbd 15954 *
026abb87
JS
15955 * This function gets SLI3 port configure region 23 data through memory dump
15956 * mailbox command. When it successfully retrieves data, the size of the data
15957 * will be returned, otherwise, 0 will be returned.
a0c87cbd 15958 **/
026abb87
JS
15959static uint32_t
15960lpfc_sli_get_config_region23(struct lpfc_hba *phba, char *rgn23_data)
a0c87cbd
JS
15961{
15962 LPFC_MBOXQ_t *pmb = NULL;
15963 MAILBOX_t *mb;
026abb87 15964 uint32_t offset = 0;
a0c87cbd
JS
15965 int rc;
15966
026abb87
JS
15967 if (!rgn23_data)
15968 return 0;
15969
a0c87cbd
JS
15970 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15971 if (!pmb) {
15972 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
026abb87
JS
15973 "2600 failed to allocate mailbox memory\n");
15974 return 0;
a0c87cbd
JS
15975 }
15976 mb = &pmb->u.mb;
15977
a0c87cbd
JS
15978 do {
15979 lpfc_dump_mem(phba, pmb, offset, DMP_REGION_23);
15980 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
15981
15982 if (rc != MBX_SUCCESS) {
15983 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
026abb87
JS
15984 "2601 failed to read config "
15985 "region 23, rc 0x%x Status 0x%x\n",
15986 rc, mb->mbxStatus);
a0c87cbd
JS
15987 mb->un.varDmp.word_cnt = 0;
15988 }
15989 /*
15990 * dump mem may return a zero when finished or we got a
15991 * mailbox error, either way we are done.
15992 */
15993 if (mb->un.varDmp.word_cnt == 0)
15994 break;
15995 if (mb->un.varDmp.word_cnt > DMP_RGN23_SIZE - offset)
15996 mb->un.varDmp.word_cnt = DMP_RGN23_SIZE - offset;
15997
15998 lpfc_sli_pcimem_bcopy(((uint8_t *)mb) + DMP_RSP_OFFSET,
026abb87
JS
15999 rgn23_data + offset,
16000 mb->un.varDmp.word_cnt);
a0c87cbd
JS
16001 offset += mb->un.varDmp.word_cnt;
16002 } while (mb->un.varDmp.word_cnt && offset < DMP_RGN23_SIZE);
16003
026abb87
JS
16004 mempool_free(pmb, phba->mbox_mem_pool);
16005 return offset;
16006}
16007
16008/**
16009 * lpfc_sli4_get_config_region23 - Get sli4 port region 23 data.
16010 * @phba: pointer to lpfc hba data structure.
16011 * @rgn23_data: pointer to configure region 23 data.
16012 *
16013 * This function gets SLI4 port configure region 23 data through memory dump
16014 * mailbox command. When it successfully retrieves data, the size of the data
16015 * will be returned, otherwise, 0 will be returned.
16016 **/
16017static uint32_t
16018lpfc_sli4_get_config_region23(struct lpfc_hba *phba, char *rgn23_data)
16019{
16020 LPFC_MBOXQ_t *mboxq = NULL;
16021 struct lpfc_dmabuf *mp = NULL;
16022 struct lpfc_mqe *mqe;
16023 uint32_t data_length = 0;
16024 int rc;
16025
16026 if (!rgn23_data)
16027 return 0;
16028
16029 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16030 if (!mboxq) {
16031 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16032 "3105 failed to allocate mailbox memory\n");
16033 return 0;
16034 }
16035
16036 if (lpfc_sli4_dump_cfg_rg23(phba, mboxq))
16037 goto out;
16038 mqe = &mboxq->u.mqe;
16039 mp = (struct lpfc_dmabuf *) mboxq->context1;
16040 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
16041 if (rc)
16042 goto out;
16043 data_length = mqe->un.mb_words[5];
16044 if (data_length == 0)
16045 goto out;
16046 if (data_length > DMP_RGN23_SIZE) {
16047 data_length = 0;
16048 goto out;
16049 }
16050 lpfc_sli_pcimem_bcopy((char *)mp->virt, rgn23_data, data_length);
16051out:
16052 mempool_free(mboxq, phba->mbox_mem_pool);
16053 if (mp) {
16054 lpfc_mbuf_free(phba, mp->virt, mp->phys);
16055 kfree(mp);
16056 }
16057 return data_length;
16058}
16059
16060/**
16061 * lpfc_sli_read_link_ste - Read region 23 to decide if link is disabled.
16062 * @phba: pointer to lpfc hba data structure.
16063 *
16064 * This function read region 23 and parse TLV for port status to
16065 * decide if the user disaled the port. If the TLV indicates the
16066 * port is disabled, the hba_flag is set accordingly.
16067 **/
16068void
16069lpfc_sli_read_link_ste(struct lpfc_hba *phba)
16070{
16071 uint8_t *rgn23_data = NULL;
16072 uint32_t if_type, data_size, sub_tlv_len, tlv_offset;
16073 uint32_t offset = 0;
16074
16075 /* Get adapter Region 23 data */
16076 rgn23_data = kzalloc(DMP_RGN23_SIZE, GFP_KERNEL);
16077 if (!rgn23_data)
16078 goto out;
16079
16080 if (phba->sli_rev < LPFC_SLI_REV4)
16081 data_size = lpfc_sli_get_config_region23(phba, rgn23_data);
16082 else {
16083 if_type = bf_get(lpfc_sli_intf_if_type,
16084 &phba->sli4_hba.sli_intf);
16085 if (if_type == LPFC_SLI_INTF_IF_TYPE_0)
16086 goto out;
16087 data_size = lpfc_sli4_get_config_region23(phba, rgn23_data);
16088 }
a0c87cbd
JS
16089
16090 if (!data_size)
16091 goto out;
16092
16093 /* Check the region signature first */
16094 if (memcmp(&rgn23_data[offset], LPFC_REGION23_SIGNATURE, 4)) {
16095 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16096 "2619 Config region 23 has bad signature\n");
16097 goto out;
16098 }
16099 offset += 4;
16100
16101 /* Check the data structure version */
16102 if (rgn23_data[offset] != LPFC_REGION23_VERSION) {
16103 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16104 "2620 Config region 23 has bad version\n");
16105 goto out;
16106 }
16107 offset += 4;
16108
16109 /* Parse TLV entries in the region */
16110 while (offset < data_size) {
16111 if (rgn23_data[offset] == LPFC_REGION23_LAST_REC)
16112 break;
16113 /*
16114 * If the TLV is not driver specific TLV or driver id is
16115 * not linux driver id, skip the record.
16116 */
16117 if ((rgn23_data[offset] != DRIVER_SPECIFIC_TYPE) ||
16118 (rgn23_data[offset + 2] != LINUX_DRIVER_ID) ||
16119 (rgn23_data[offset + 3] != 0)) {
16120 offset += rgn23_data[offset + 1] * 4 + 4;
16121 continue;
16122 }
16123
16124 /* Driver found a driver specific TLV in the config region */
16125 sub_tlv_len = rgn23_data[offset + 1] * 4;
16126 offset += 4;
16127 tlv_offset = 0;
16128
16129 /*
16130 * Search for configured port state sub-TLV.
16131 */
16132 while ((offset < data_size) &&
16133 (tlv_offset < sub_tlv_len)) {
16134 if (rgn23_data[offset] == LPFC_REGION23_LAST_REC) {
16135 offset += 4;
16136 tlv_offset += 4;
16137 break;
16138 }
16139 if (rgn23_data[offset] != PORT_STE_TYPE) {
16140 offset += rgn23_data[offset + 1] * 4 + 4;
16141 tlv_offset += rgn23_data[offset + 1] * 4 + 4;
16142 continue;
16143 }
16144
16145 /* This HBA contains PORT_STE configured */
16146 if (!rgn23_data[offset + 2])
16147 phba->hba_flag |= LINK_DISABLED;
16148
16149 goto out;
16150 }
16151 }
026abb87 16152
a0c87cbd 16153out:
a0c87cbd
JS
16154 kfree(rgn23_data);
16155 return;
16156}
695a814e 16157
52d52440
JS
16158/**
16159 * lpfc_wr_object - write an object to the firmware
16160 * @phba: HBA structure that indicates port to create a queue on.
16161 * @dmabuf_list: list of dmabufs to write to the port.
16162 * @size: the total byte value of the objects to write to the port.
16163 * @offset: the current offset to be used to start the transfer.
16164 *
16165 * This routine will create a wr_object mailbox command to send to the port.
16166 * the mailbox command will be constructed using the dma buffers described in
16167 * @dmabuf_list to create a list of BDEs. This routine will fill in as many
16168 * BDEs that the imbedded mailbox can support. The @offset variable will be
16169 * used to indicate the starting offset of the transfer and will also return
16170 * the offset after the write object mailbox has completed. @size is used to
16171 * determine the end of the object and whether the eof bit should be set.
16172 *
16173 * Return 0 is successful and offset will contain the the new offset to use
16174 * for the next write.
16175 * Return negative value for error cases.
16176 **/
16177int
16178lpfc_wr_object(struct lpfc_hba *phba, struct list_head *dmabuf_list,
16179 uint32_t size, uint32_t *offset)
16180{
16181 struct lpfc_mbx_wr_object *wr_object;
16182 LPFC_MBOXQ_t *mbox;
16183 int rc = 0, i = 0;
16184 uint32_t shdr_status, shdr_add_status;
16185 uint32_t mbox_tmo;
16186 union lpfc_sli4_cfg_shdr *shdr;
16187 struct lpfc_dmabuf *dmabuf;
16188 uint32_t written = 0;
16189
16190 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16191 if (!mbox)
16192 return -ENOMEM;
16193
16194 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
16195 LPFC_MBOX_OPCODE_WRITE_OBJECT,
16196 sizeof(struct lpfc_mbx_wr_object) -
16197 sizeof(struct lpfc_sli4_cfg_mhdr), LPFC_SLI4_MBX_EMBED);
16198
16199 wr_object = (struct lpfc_mbx_wr_object *)&mbox->u.mqe.un.wr_object;
16200 wr_object->u.request.write_offset = *offset;
16201 sprintf((uint8_t *)wr_object->u.request.object_name, "/");
16202 wr_object->u.request.object_name[0] =
16203 cpu_to_le32(wr_object->u.request.object_name[0]);
16204 bf_set(lpfc_wr_object_eof, &wr_object->u.request, 0);
16205 list_for_each_entry(dmabuf, dmabuf_list, list) {
16206 if (i >= LPFC_MBX_WR_CONFIG_MAX_BDE || written >= size)
16207 break;
16208 wr_object->u.request.bde[i].addrLow = putPaddrLow(dmabuf->phys);
16209 wr_object->u.request.bde[i].addrHigh =
16210 putPaddrHigh(dmabuf->phys);
16211 if (written + SLI4_PAGE_SIZE >= size) {
16212 wr_object->u.request.bde[i].tus.f.bdeSize =
16213 (size - written);
16214 written += (size - written);
16215 bf_set(lpfc_wr_object_eof, &wr_object->u.request, 1);
16216 } else {
16217 wr_object->u.request.bde[i].tus.f.bdeSize =
16218 SLI4_PAGE_SIZE;
16219 written += SLI4_PAGE_SIZE;
16220 }
16221 i++;
16222 }
16223 wr_object->u.request.bde_count = i;
16224 bf_set(lpfc_wr_object_write_length, &wr_object->u.request, written);
16225 if (!phba->sli4_hba.intr_enable)
16226 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
16227 else {
a183a15f 16228 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
52d52440
JS
16229 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
16230 }
16231 /* The IOCTL status is embedded in the mailbox subheader. */
16232 shdr = (union lpfc_sli4_cfg_shdr *) &wr_object->header.cfg_shdr;
16233 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
16234 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
16235 if (rc != MBX_TIMEOUT)
16236 mempool_free(mbox, phba->mbox_mem_pool);
16237 if (shdr_status || shdr_add_status || rc) {
16238 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16239 "3025 Write Object mailbox failed with "
16240 "status x%x add_status x%x, mbx status x%x\n",
16241 shdr_status, shdr_add_status, rc);
16242 rc = -ENXIO;
16243 } else
16244 *offset += wr_object->u.response.actual_write_length;
16245 return rc;
16246}
16247
695a814e
JS
16248/**
16249 * lpfc_cleanup_pending_mbox - Free up vport discovery mailbox commands.
16250 * @vport: pointer to vport data structure.
16251 *
16252 * This function iterate through the mailboxq and clean up all REG_LOGIN
16253 * and REG_VPI mailbox commands associated with the vport. This function
16254 * is called when driver want to restart discovery of the vport due to
16255 * a Clear Virtual Link event.
16256 **/
16257void
16258lpfc_cleanup_pending_mbox(struct lpfc_vport *vport)
16259{
16260 struct lpfc_hba *phba = vport->phba;
16261 LPFC_MBOXQ_t *mb, *nextmb;
16262 struct lpfc_dmabuf *mp;
78730cfe 16263 struct lpfc_nodelist *ndlp;
d439d286 16264 struct lpfc_nodelist *act_mbx_ndlp = NULL;
589a52d6 16265 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
d439d286 16266 LIST_HEAD(mbox_cmd_list);
63e801ce 16267 uint8_t restart_loop;
695a814e 16268
d439d286 16269 /* Clean up internally queued mailbox commands with the vport */
695a814e
JS
16270 spin_lock_irq(&phba->hbalock);
16271 list_for_each_entry_safe(mb, nextmb, &phba->sli.mboxq, list) {
16272 if (mb->vport != vport)
16273 continue;
16274
16275 if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) &&
16276 (mb->u.mb.mbxCommand != MBX_REG_VPI))
16277 continue;
16278
d439d286
JS
16279 list_del(&mb->list);
16280 list_add_tail(&mb->list, &mbox_cmd_list);
16281 }
16282 /* Clean up active mailbox command with the vport */
16283 mb = phba->sli.mbox_active;
16284 if (mb && (mb->vport == vport)) {
16285 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) ||
16286 (mb->u.mb.mbxCommand == MBX_REG_VPI))
16287 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
16288 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
16289 act_mbx_ndlp = (struct lpfc_nodelist *)mb->context2;
16290 /* Put reference count for delayed processing */
16291 act_mbx_ndlp = lpfc_nlp_get(act_mbx_ndlp);
16292 /* Unregister the RPI when mailbox complete */
16293 mb->mbox_flag |= LPFC_MBX_IMED_UNREG;
16294 }
16295 }
63e801ce
JS
16296 /* Cleanup any mailbox completions which are not yet processed */
16297 do {
16298 restart_loop = 0;
16299 list_for_each_entry(mb, &phba->sli.mboxq_cmpl, list) {
16300 /*
16301 * If this mailox is already processed or it is
16302 * for another vport ignore it.
16303 */
16304 if ((mb->vport != vport) ||
16305 (mb->mbox_flag & LPFC_MBX_IMED_UNREG))
16306 continue;
16307
16308 if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) &&
16309 (mb->u.mb.mbxCommand != MBX_REG_VPI))
16310 continue;
16311
16312 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
16313 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
16314 ndlp = (struct lpfc_nodelist *)mb->context2;
16315 /* Unregister the RPI when mailbox complete */
16316 mb->mbox_flag |= LPFC_MBX_IMED_UNREG;
16317 restart_loop = 1;
16318 spin_unlock_irq(&phba->hbalock);
16319 spin_lock(shost->host_lock);
16320 ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
16321 spin_unlock(shost->host_lock);
16322 spin_lock_irq(&phba->hbalock);
16323 break;
16324 }
16325 }
16326 } while (restart_loop);
16327
d439d286
JS
16328 spin_unlock_irq(&phba->hbalock);
16329
16330 /* Release the cleaned-up mailbox commands */
16331 while (!list_empty(&mbox_cmd_list)) {
16332 list_remove_head(&mbox_cmd_list, mb, LPFC_MBOXQ_t, list);
695a814e
JS
16333 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
16334 mp = (struct lpfc_dmabuf *) (mb->context1);
16335 if (mp) {
16336 __lpfc_mbuf_free(phba, mp->virt, mp->phys);
16337 kfree(mp);
16338 }
78730cfe 16339 ndlp = (struct lpfc_nodelist *) mb->context2;
d439d286 16340 mb->context2 = NULL;
78730cfe 16341 if (ndlp) {
ec21b3b0 16342 spin_lock(shost->host_lock);
589a52d6 16343 ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
ec21b3b0 16344 spin_unlock(shost->host_lock);
78730cfe 16345 lpfc_nlp_put(ndlp);
78730cfe 16346 }
695a814e 16347 }
695a814e
JS
16348 mempool_free(mb, phba->mbox_mem_pool);
16349 }
d439d286
JS
16350
16351 /* Release the ndlp with the cleaned-up active mailbox command */
16352 if (act_mbx_ndlp) {
16353 spin_lock(shost->host_lock);
16354 act_mbx_ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
16355 spin_unlock(shost->host_lock);
16356 lpfc_nlp_put(act_mbx_ndlp);
695a814e 16357 }
695a814e
JS
16358}
16359
2a9bf3d0
JS
16360/**
16361 * lpfc_drain_txq - Drain the txq
16362 * @phba: Pointer to HBA context object.
16363 *
16364 * This function attempt to submit IOCBs on the txq
16365 * to the adapter. For SLI4 adapters, the txq contains
16366 * ELS IOCBs that have been deferred because the there
16367 * are no SGLs. This congestion can occur with large
16368 * vport counts during node discovery.
16369 **/
16370
16371uint32_t
16372lpfc_drain_txq(struct lpfc_hba *phba)
16373{
16374 LIST_HEAD(completions);
16375 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
16376 struct lpfc_iocbq *piocbq = 0;
16377 unsigned long iflags = 0;
16378 char *fail_msg = NULL;
16379 struct lpfc_sglq *sglq;
16380 union lpfc_wqe wqe;
0e9bb8d7 16381 int txq_cnt = 0;
2a9bf3d0 16382
398d81c9 16383 spin_lock_irqsave(&pring->ring_lock, iflags);
0e9bb8d7
JS
16384 list_for_each_entry(piocbq, &pring->txq, list) {
16385 txq_cnt++;
16386 }
16387
16388 if (txq_cnt > pring->txq_max)
16389 pring->txq_max = txq_cnt;
2a9bf3d0 16390
398d81c9 16391 spin_unlock_irqrestore(&pring->ring_lock, iflags);
2a9bf3d0 16392
0e9bb8d7 16393 while (!list_empty(&pring->txq)) {
398d81c9 16394 spin_lock_irqsave(&pring->ring_lock, iflags);
2a9bf3d0 16395
19ca7609 16396 piocbq = lpfc_sli_ringtx_get(phba, pring);
a629852a 16397 if (!piocbq) {
398d81c9 16398 spin_unlock_irqrestore(&pring->ring_lock, iflags);
a629852a
JS
16399 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
16400 "2823 txq empty and txq_cnt is %d\n ",
0e9bb8d7 16401 txq_cnt);
a629852a
JS
16402 break;
16403 }
19ca7609 16404 sglq = __lpfc_sli_get_sglq(phba, piocbq);
2a9bf3d0 16405 if (!sglq) {
19ca7609 16406 __lpfc_sli_ringtx_put(phba, pring, piocbq);
398d81c9 16407 spin_unlock_irqrestore(&pring->ring_lock, iflags);
2a9bf3d0 16408 break;
2a9bf3d0 16409 }
0e9bb8d7 16410 txq_cnt--;
2a9bf3d0
JS
16411
16412 /* The xri and iocb resources secured,
16413 * attempt to issue request
16414 */
6d368e53 16415 piocbq->sli4_lxritag = sglq->sli4_lxritag;
2a9bf3d0
JS
16416 piocbq->sli4_xritag = sglq->sli4_xritag;
16417 if (NO_XRI == lpfc_sli4_bpl2sgl(phba, piocbq, sglq))
16418 fail_msg = "to convert bpl to sgl";
16419 else if (lpfc_sli4_iocb2wqe(phba, piocbq, &wqe))
16420 fail_msg = "to convert iocb to wqe";
16421 else if (lpfc_sli4_wq_put(phba->sli4_hba.els_wq, &wqe))
16422 fail_msg = " - Wq is full";
16423 else
16424 lpfc_sli_ringtxcmpl_put(phba, pring, piocbq);
16425
16426 if (fail_msg) {
16427 /* Failed means we can't issue and need to cancel */
16428 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
16429 "2822 IOCB failed %s iotag 0x%x "
16430 "xri 0x%x\n",
16431 fail_msg,
16432 piocbq->iotag, piocbq->sli4_xritag);
16433 list_add_tail(&piocbq->list, &completions);
16434 }
398d81c9 16435 spin_unlock_irqrestore(&pring->ring_lock, iflags);
2a9bf3d0
JS
16436 }
16437
2a9bf3d0
JS
16438 /* Cancel all the IOCBs that cannot be issued */
16439 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
16440 IOERR_SLI_ABORTED);
16441
0e9bb8d7 16442 return txq_cnt;
2a9bf3d0 16443}