]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - drivers/scsi/lpfc/lpfc_sli.c
[SCSI] stex: fix scan of nonexistent lun
[mirror_ubuntu-eoan-kernel.git] / drivers / scsi / lpfc / lpfc_sli.c
CommitLineData
dea3101e
JB
1/*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
c44ce173 3 * Fibre Channel Host Bus Adapters. *
d8e93df1 4 * Copyright (C) 2004-2009 Emulex. All rights reserved. *
c44ce173 5 * EMULEX and SLI are trademarks of Emulex. *
dea3101e 6 * www.emulex.com *
c44ce173 7 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
dea3101e
JB
8 * *
9 * This program is free software; you can redistribute it and/or *
c44ce173
JSEC
10 * modify it under the terms of version 2 of the GNU General *
11 * Public License as published by the Free Software Foundation. *
12 * This program is distributed in the hope that it will be useful. *
13 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
14 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
15 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
16 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
17 * TO BE LEGALLY INVALID. See the GNU General Public License for *
18 * more details, a copy of which can be found in the file COPYING *
19 * included with this package. *
dea3101e
JB
20 *******************************************************************/
21
dea3101e
JB
22#include <linux/blkdev.h>
23#include <linux/pci.h>
24#include <linux/interrupt.h>
25#include <linux/delay.h>
26
91886523 27#include <scsi/scsi.h>
dea3101e
JB
28#include <scsi/scsi_cmnd.h>
29#include <scsi/scsi_device.h>
30#include <scsi/scsi_host.h>
f888ba3c 31#include <scsi/scsi_transport_fc.h>
da0436e9 32#include <scsi/fc/fc_fs.h>
0d878419 33#include <linux/aer.h>
dea3101e 34
da0436e9 35#include "lpfc_hw4.h"
dea3101e
JB
36#include "lpfc_hw.h"
37#include "lpfc_sli.h"
da0436e9 38#include "lpfc_sli4.h"
ea2151b4 39#include "lpfc_nl.h"
dea3101e
JB
40#include "lpfc_disc.h"
41#include "lpfc_scsi.h"
42#include "lpfc.h"
43#include "lpfc_crtn.h"
44#include "lpfc_logmsg.h"
45#include "lpfc_compat.h"
858c9f6c 46#include "lpfc_debugfs.h"
04c68496 47#include "lpfc_vport.h"
dea3101e
JB
48
49/* There are only four IOCB completion types. */
50typedef enum _lpfc_iocb_type {
51 LPFC_UNKNOWN_IOCB,
52 LPFC_UNSOL_IOCB,
53 LPFC_SOL_IOCB,
54 LPFC_ABORT_IOCB
55} lpfc_iocb_type;
56
4f774513
JS
57
58/* Provide function prototypes local to this module. */
59static int lpfc_sli_issue_mbox_s4(struct lpfc_hba *, LPFC_MBOXQ_t *,
60 uint32_t);
61static int lpfc_sli4_read_rev(struct lpfc_hba *, LPFC_MBOXQ_t *,
45ed1190
JS
62 uint8_t *, uint32_t *);
63static struct lpfc_iocbq *lpfc_sli4_els_wcqe_to_rspiocbq(struct lpfc_hba *,
64 struct lpfc_iocbq *);
6669f9bb
JS
65static void lpfc_sli4_send_seq_to_ulp(struct lpfc_vport *,
66 struct hbq_dmabuf *);
4f774513
JS
67static IOCB_t *
68lpfc_get_iocb_from_iocbq(struct lpfc_iocbq *iocbq)
69{
70 return &iocbq->iocb;
71}
72
73/**
74 * lpfc_sli4_wq_put - Put a Work Queue Entry on an Work Queue
75 * @q: The Work Queue to operate on.
76 * @wqe: The work Queue Entry to put on the Work queue.
77 *
78 * This routine will copy the contents of @wqe to the next available entry on
79 * the @q. This function will then ring the Work Queue Doorbell to signal the
80 * HBA to start processing the Work Queue Entry. This function returns 0 if
81 * successful. If no entries are available on @q then this function will return
82 * -ENOMEM.
83 * The caller is expected to hold the hbalock when calling this routine.
84 **/
85static uint32_t
86lpfc_sli4_wq_put(struct lpfc_queue *q, union lpfc_wqe *wqe)
87{
88 union lpfc_wqe *temp_wqe = q->qe[q->host_index].wqe;
89 struct lpfc_register doorbell;
90 uint32_t host_index;
91
92 /* If the host has not yet processed the next entry then we are done */
93 if (((q->host_index + 1) % q->entry_count) == q->hba_index)
94 return -ENOMEM;
95 /* set consumption flag every once in a while */
96 if (!((q->host_index + 1) % LPFC_RELEASE_NOTIFICATION_INTERVAL))
97 bf_set(lpfc_wqe_gen_wqec, &wqe->generic, 1);
98
99 lpfc_sli_pcimem_bcopy(wqe, temp_wqe, q->entry_size);
100
101 /* Update the host index before invoking device */
102 host_index = q->host_index;
103 q->host_index = ((q->host_index + 1) % q->entry_count);
104
105 /* Ring Doorbell */
106 doorbell.word0 = 0;
107 bf_set(lpfc_wq_doorbell_num_posted, &doorbell, 1);
108 bf_set(lpfc_wq_doorbell_index, &doorbell, host_index);
109 bf_set(lpfc_wq_doorbell_id, &doorbell, q->queue_id);
110 writel(doorbell.word0, q->phba->sli4_hba.WQDBregaddr);
111 readl(q->phba->sli4_hba.WQDBregaddr); /* Flush */
112
113 return 0;
114}
115
116/**
117 * lpfc_sli4_wq_release - Updates internal hba index for WQ
118 * @q: The Work Queue to operate on.
119 * @index: The index to advance the hba index to.
120 *
121 * This routine will update the HBA index of a queue to reflect consumption of
122 * Work Queue Entries by the HBA. When the HBA indicates that it has consumed
123 * an entry the host calls this function to update the queue's internal
124 * pointers. This routine returns the number of entries that were consumed by
125 * the HBA.
126 **/
127static uint32_t
128lpfc_sli4_wq_release(struct lpfc_queue *q, uint32_t index)
129{
130 uint32_t released = 0;
131
132 if (q->hba_index == index)
133 return 0;
134 do {
135 q->hba_index = ((q->hba_index + 1) % q->entry_count);
136 released++;
137 } while (q->hba_index != index);
138 return released;
139}
140
141/**
142 * lpfc_sli4_mq_put - Put a Mailbox Queue Entry on an Mailbox Queue
143 * @q: The Mailbox Queue to operate on.
144 * @wqe: The Mailbox Queue Entry to put on the Work queue.
145 *
146 * This routine will copy the contents of @mqe to the next available entry on
147 * the @q. This function will then ring the Work Queue Doorbell to signal the
148 * HBA to start processing the Work Queue Entry. This function returns 0 if
149 * successful. If no entries are available on @q then this function will return
150 * -ENOMEM.
151 * The caller is expected to hold the hbalock when calling this routine.
152 **/
153static uint32_t
154lpfc_sli4_mq_put(struct lpfc_queue *q, struct lpfc_mqe *mqe)
155{
156 struct lpfc_mqe *temp_mqe = q->qe[q->host_index].mqe;
157 struct lpfc_register doorbell;
158 uint32_t host_index;
159
160 /* If the host has not yet processed the next entry then we are done */
161 if (((q->host_index + 1) % q->entry_count) == q->hba_index)
162 return -ENOMEM;
163 lpfc_sli_pcimem_bcopy(mqe, temp_mqe, q->entry_size);
164 /* Save off the mailbox pointer for completion */
165 q->phba->mbox = (MAILBOX_t *)temp_mqe;
166
167 /* Update the host index before invoking device */
168 host_index = q->host_index;
169 q->host_index = ((q->host_index + 1) % q->entry_count);
170
171 /* Ring Doorbell */
172 doorbell.word0 = 0;
173 bf_set(lpfc_mq_doorbell_num_posted, &doorbell, 1);
174 bf_set(lpfc_mq_doorbell_id, &doorbell, q->queue_id);
175 writel(doorbell.word0, q->phba->sli4_hba.MQDBregaddr);
176 readl(q->phba->sli4_hba.MQDBregaddr); /* Flush */
177 return 0;
178}
179
180/**
181 * lpfc_sli4_mq_release - Updates internal hba index for MQ
182 * @q: The Mailbox Queue to operate on.
183 *
184 * This routine will update the HBA index of a queue to reflect consumption of
185 * a Mailbox Queue Entry by the HBA. When the HBA indicates that it has consumed
186 * an entry the host calls this function to update the queue's internal
187 * pointers. This routine returns the number of entries that were consumed by
188 * the HBA.
189 **/
190static uint32_t
191lpfc_sli4_mq_release(struct lpfc_queue *q)
192{
193 /* Clear the mailbox pointer for completion */
194 q->phba->mbox = NULL;
195 q->hba_index = ((q->hba_index + 1) % q->entry_count);
196 return 1;
197}
198
199/**
200 * lpfc_sli4_eq_get - Gets the next valid EQE from a EQ
201 * @q: The Event Queue to get the first valid EQE from
202 *
203 * This routine will get the first valid Event Queue Entry from @q, update
204 * the queue's internal hba index, and return the EQE. If no valid EQEs are in
205 * the Queue (no more work to do), or the Queue is full of EQEs that have been
206 * processed, but not popped back to the HBA then this routine will return NULL.
207 **/
208static struct lpfc_eqe *
209lpfc_sli4_eq_get(struct lpfc_queue *q)
210{
211 struct lpfc_eqe *eqe = q->qe[q->hba_index].eqe;
212
213 /* If the next EQE is not valid then we are done */
214 if (!bf_get(lpfc_eqe_valid, eqe))
215 return NULL;
216 /* If the host has not yet processed the next entry then we are done */
217 if (((q->hba_index + 1) % q->entry_count) == q->host_index)
218 return NULL;
219
220 q->hba_index = ((q->hba_index + 1) % q->entry_count);
221 return eqe;
222}
223
224/**
225 * lpfc_sli4_eq_release - Indicates the host has finished processing an EQ
226 * @q: The Event Queue that the host has completed processing for.
227 * @arm: Indicates whether the host wants to arms this CQ.
228 *
229 * This routine will mark all Event Queue Entries on @q, from the last
230 * known completed entry to the last entry that was processed, as completed
231 * by clearing the valid bit for each completion queue entry. Then it will
232 * notify the HBA, by ringing the doorbell, that the EQEs have been processed.
233 * The internal host index in the @q will be updated by this routine to indicate
234 * that the host has finished processing the entries. The @arm parameter
235 * indicates that the queue should be rearmed when ringing the doorbell.
236 *
237 * This function will return the number of EQEs that were popped.
238 **/
239uint32_t
240lpfc_sli4_eq_release(struct lpfc_queue *q, bool arm)
241{
242 uint32_t released = 0;
243 struct lpfc_eqe *temp_eqe;
244 struct lpfc_register doorbell;
245
246 /* while there are valid entries */
247 while (q->hba_index != q->host_index) {
248 temp_eqe = q->qe[q->host_index].eqe;
249 bf_set(lpfc_eqe_valid, temp_eqe, 0);
250 released++;
251 q->host_index = ((q->host_index + 1) % q->entry_count);
252 }
253 if (unlikely(released == 0 && !arm))
254 return 0;
255
256 /* ring doorbell for number popped */
257 doorbell.word0 = 0;
258 if (arm) {
259 bf_set(lpfc_eqcq_doorbell_arm, &doorbell, 1);
260 bf_set(lpfc_eqcq_doorbell_eqci, &doorbell, 1);
261 }
262 bf_set(lpfc_eqcq_doorbell_num_released, &doorbell, released);
263 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_EVENT);
264 bf_set(lpfc_eqcq_doorbell_eqid, &doorbell, q->queue_id);
265 writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
a747c9ce
JS
266 /* PCI read to flush PCI pipeline on re-arming for INTx mode */
267 if ((q->phba->intr_type == INTx) && (arm == LPFC_QUEUE_REARM))
268 readl(q->phba->sli4_hba.EQCQDBregaddr);
4f774513
JS
269 return released;
270}
271
272/**
273 * lpfc_sli4_cq_get - Gets the next valid CQE from a CQ
274 * @q: The Completion Queue to get the first valid CQE from
275 *
276 * This routine will get the first valid Completion Queue Entry from @q, update
277 * the queue's internal hba index, and return the CQE. If no valid CQEs are in
278 * the Queue (no more work to do), or the Queue is full of CQEs that have been
279 * processed, but not popped back to the HBA then this routine will return NULL.
280 **/
281static struct lpfc_cqe *
282lpfc_sli4_cq_get(struct lpfc_queue *q)
283{
284 struct lpfc_cqe *cqe;
285
286 /* If the next CQE is not valid then we are done */
287 if (!bf_get(lpfc_cqe_valid, q->qe[q->hba_index].cqe))
288 return NULL;
289 /* If the host has not yet processed the next entry then we are done */
290 if (((q->hba_index + 1) % q->entry_count) == q->host_index)
291 return NULL;
292
293 cqe = q->qe[q->hba_index].cqe;
294 q->hba_index = ((q->hba_index + 1) % q->entry_count);
295 return cqe;
296}
297
298/**
299 * lpfc_sli4_cq_release - Indicates the host has finished processing a CQ
300 * @q: The Completion Queue that the host has completed processing for.
301 * @arm: Indicates whether the host wants to arms this CQ.
302 *
303 * This routine will mark all Completion queue entries on @q, from the last
304 * known completed entry to the last entry that was processed, as completed
305 * by clearing the valid bit for each completion queue entry. Then it will
306 * notify the HBA, by ringing the doorbell, that the CQEs have been processed.
307 * The internal host index in the @q will be updated by this routine to indicate
308 * that the host has finished processing the entries. The @arm parameter
309 * indicates that the queue should be rearmed when ringing the doorbell.
310 *
311 * This function will return the number of CQEs that were released.
312 **/
313uint32_t
314lpfc_sli4_cq_release(struct lpfc_queue *q, bool arm)
315{
316 uint32_t released = 0;
317 struct lpfc_cqe *temp_qe;
318 struct lpfc_register doorbell;
319
320 /* while there are valid entries */
321 while (q->hba_index != q->host_index) {
322 temp_qe = q->qe[q->host_index].cqe;
323 bf_set(lpfc_cqe_valid, temp_qe, 0);
324 released++;
325 q->host_index = ((q->host_index + 1) % q->entry_count);
326 }
327 if (unlikely(released == 0 && !arm))
328 return 0;
329
330 /* ring doorbell for number popped */
331 doorbell.word0 = 0;
332 if (arm)
333 bf_set(lpfc_eqcq_doorbell_arm, &doorbell, 1);
334 bf_set(lpfc_eqcq_doorbell_num_released, &doorbell, released);
335 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_COMPLETION);
336 bf_set(lpfc_eqcq_doorbell_cqid, &doorbell, q->queue_id);
337 writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
338 return released;
339}
340
341/**
342 * lpfc_sli4_rq_put - Put a Receive Buffer Queue Entry on a Receive Queue
343 * @q: The Header Receive Queue to operate on.
344 * @wqe: The Receive Queue Entry to put on the Receive queue.
345 *
346 * This routine will copy the contents of @wqe to the next available entry on
347 * the @q. This function will then ring the Receive Queue Doorbell to signal the
348 * HBA to start processing the Receive Queue Entry. This function returns the
349 * index that the rqe was copied to if successful. If no entries are available
350 * on @q then this function will return -ENOMEM.
351 * The caller is expected to hold the hbalock when calling this routine.
352 **/
353static int
354lpfc_sli4_rq_put(struct lpfc_queue *hq, struct lpfc_queue *dq,
355 struct lpfc_rqe *hrqe, struct lpfc_rqe *drqe)
356{
357 struct lpfc_rqe *temp_hrqe = hq->qe[hq->host_index].rqe;
358 struct lpfc_rqe *temp_drqe = dq->qe[dq->host_index].rqe;
359 struct lpfc_register doorbell;
360 int put_index = hq->host_index;
361
362 if (hq->type != LPFC_HRQ || dq->type != LPFC_DRQ)
363 return -EINVAL;
364 if (hq->host_index != dq->host_index)
365 return -EINVAL;
366 /* If the host has not yet processed the next entry then we are done */
367 if (((hq->host_index + 1) % hq->entry_count) == hq->hba_index)
368 return -EBUSY;
369 lpfc_sli_pcimem_bcopy(hrqe, temp_hrqe, hq->entry_size);
370 lpfc_sli_pcimem_bcopy(drqe, temp_drqe, dq->entry_size);
371
372 /* Update the host index to point to the next slot */
373 hq->host_index = ((hq->host_index + 1) % hq->entry_count);
374 dq->host_index = ((dq->host_index + 1) % dq->entry_count);
375
376 /* Ring The Header Receive Queue Doorbell */
377 if (!(hq->host_index % LPFC_RQ_POST_BATCH)) {
378 doorbell.word0 = 0;
379 bf_set(lpfc_rq_doorbell_num_posted, &doorbell,
380 LPFC_RQ_POST_BATCH);
381 bf_set(lpfc_rq_doorbell_id, &doorbell, hq->queue_id);
382 writel(doorbell.word0, hq->phba->sli4_hba.RQDBregaddr);
383 }
384 return put_index;
385}
386
387/**
388 * lpfc_sli4_rq_release - Updates internal hba index for RQ
389 * @q: The Header Receive Queue to operate on.
390 *
391 * This routine will update the HBA index of a queue to reflect consumption of
392 * one Receive Queue Entry by the HBA. When the HBA indicates that it has
393 * consumed an entry the host calls this function to update the queue's
394 * internal pointers. This routine returns the number of entries that were
395 * consumed by the HBA.
396 **/
397static uint32_t
398lpfc_sli4_rq_release(struct lpfc_queue *hq, struct lpfc_queue *dq)
399{
400 if ((hq->type != LPFC_HRQ) || (dq->type != LPFC_DRQ))
401 return 0;
402 hq->hba_index = ((hq->hba_index + 1) % hq->entry_count);
403 dq->hba_index = ((dq->hba_index + 1) % dq->entry_count);
404 return 1;
405}
406
e59058c4 407/**
3621a710 408 * lpfc_cmd_iocb - Get next command iocb entry in the ring
e59058c4
JS
409 * @phba: Pointer to HBA context object.
410 * @pring: Pointer to driver SLI ring object.
411 *
412 * This function returns pointer to next command iocb entry
413 * in the command ring. The caller must hold hbalock to prevent
414 * other threads consume the next command iocb.
415 * SLI-2/SLI-3 provide different sized iocbs.
416 **/
ed957684
JS
417static inline IOCB_t *
418lpfc_cmd_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
419{
420 return (IOCB_t *) (((char *) pring->cmdringaddr) +
421 pring->cmdidx * phba->iocb_cmd_size);
422}
423
e59058c4 424/**
3621a710 425 * lpfc_resp_iocb - Get next response iocb entry in the ring
e59058c4
JS
426 * @phba: Pointer to HBA context object.
427 * @pring: Pointer to driver SLI ring object.
428 *
429 * This function returns pointer to next response iocb entry
430 * in the response ring. The caller must hold hbalock to make sure
431 * that no other thread consume the next response iocb.
432 * SLI-2/SLI-3 provide different sized iocbs.
433 **/
ed957684
JS
434static inline IOCB_t *
435lpfc_resp_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
436{
437 return (IOCB_t *) (((char *) pring->rspringaddr) +
438 pring->rspidx * phba->iocb_rsp_size);
439}
440
e59058c4 441/**
3621a710 442 * __lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
e59058c4
JS
443 * @phba: Pointer to HBA context object.
444 *
445 * This function is called with hbalock held. This function
446 * allocates a new driver iocb object from the iocb pool. If the
447 * allocation is successful, it returns pointer to the newly
448 * allocated iocb object else it returns NULL.
449 **/
2e0fef85
JS
450static struct lpfc_iocbq *
451__lpfc_sli_get_iocbq(struct lpfc_hba *phba)
0bd4ca25
JSEC
452{
453 struct list_head *lpfc_iocb_list = &phba->lpfc_iocb_list;
454 struct lpfc_iocbq * iocbq = NULL;
455
456 list_remove_head(lpfc_iocb_list, iocbq, struct lpfc_iocbq, list);
457 return iocbq;
458}
459
da0436e9
JS
460/**
461 * __lpfc_clear_active_sglq - Remove the active sglq for this XRI.
462 * @phba: Pointer to HBA context object.
463 * @xritag: XRI value.
464 *
465 * This function clears the sglq pointer from the array of acive
466 * sglq's. The xritag that is passed in is used to index into the
467 * array. Before the xritag can be used it needs to be adjusted
468 * by subtracting the xribase.
469 *
470 * Returns sglq ponter = success, NULL = Failure.
471 **/
472static struct lpfc_sglq *
473__lpfc_clear_active_sglq(struct lpfc_hba *phba, uint16_t xritag)
474{
475 uint16_t adj_xri;
476 struct lpfc_sglq *sglq;
477 adj_xri = xritag - phba->sli4_hba.max_cfg_param.xri_base;
478 if (adj_xri > phba->sli4_hba.max_cfg_param.max_xri)
479 return NULL;
480 sglq = phba->sli4_hba.lpfc_sglq_active_list[adj_xri];
481 phba->sli4_hba.lpfc_sglq_active_list[adj_xri] = NULL;
482 return sglq;
483}
484
485/**
486 * __lpfc_get_active_sglq - Get the active sglq for this XRI.
487 * @phba: Pointer to HBA context object.
488 * @xritag: XRI value.
489 *
490 * This function returns the sglq pointer from the array of acive
491 * sglq's. The xritag that is passed in is used to index into the
492 * array. Before the xritag can be used it needs to be adjusted
493 * by subtracting the xribase.
494 *
495 * Returns sglq ponter = success, NULL = Failure.
496 **/
497static struct lpfc_sglq *
498__lpfc_get_active_sglq(struct lpfc_hba *phba, uint16_t xritag)
499{
500 uint16_t adj_xri;
501 struct lpfc_sglq *sglq;
502 adj_xri = xritag - phba->sli4_hba.max_cfg_param.xri_base;
503 if (adj_xri > phba->sli4_hba.max_cfg_param.max_xri)
504 return NULL;
505 sglq = phba->sli4_hba.lpfc_sglq_active_list[adj_xri];
506 return sglq;
507}
508
509/**
510 * __lpfc_sli_get_sglq - Allocates an iocb object from sgl pool
511 * @phba: Pointer to HBA context object.
512 *
513 * This function is called with hbalock held. This function
514 * Gets a new driver sglq object from the sglq list. If the
515 * list is not empty then it is successful, it returns pointer to the newly
516 * allocated sglq object else it returns NULL.
517 **/
518static struct lpfc_sglq *
519__lpfc_sli_get_sglq(struct lpfc_hba *phba)
520{
521 struct list_head *lpfc_sgl_list = &phba->sli4_hba.lpfc_sgl_list;
522 struct lpfc_sglq *sglq = NULL;
523 uint16_t adj_xri;
524 list_remove_head(lpfc_sgl_list, sglq, struct lpfc_sglq, list);
6a9c52cf
JS
525 if (!sglq)
526 return NULL;
da0436e9
JS
527 adj_xri = sglq->sli4_xritag - phba->sli4_hba.max_cfg_param.xri_base;
528 phba->sli4_hba.lpfc_sglq_active_list[adj_xri] = sglq;
529 return sglq;
530}
531
e59058c4 532/**
3621a710 533 * lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
e59058c4
JS
534 * @phba: Pointer to HBA context object.
535 *
536 * This function is called with no lock held. This function
537 * allocates a new driver iocb object from the iocb pool. If the
538 * allocation is successful, it returns pointer to the newly
539 * allocated iocb object else it returns NULL.
540 **/
2e0fef85
JS
541struct lpfc_iocbq *
542lpfc_sli_get_iocbq(struct lpfc_hba *phba)
543{
544 struct lpfc_iocbq * iocbq = NULL;
545 unsigned long iflags;
546
547 spin_lock_irqsave(&phba->hbalock, iflags);
548 iocbq = __lpfc_sli_get_iocbq(phba);
549 spin_unlock_irqrestore(&phba->hbalock, iflags);
550 return iocbq;
551}
552
4f774513
JS
553/**
554 * __lpfc_sli_release_iocbq_s4 - Release iocb to the iocb pool
555 * @phba: Pointer to HBA context object.
556 * @iocbq: Pointer to driver iocb object.
557 *
558 * This function is called with hbalock held to release driver
559 * iocb object to the iocb pool. The iotag in the iocb object
560 * does not change for each use of the iocb object. This function
561 * clears all other fields of the iocb object when it is freed.
562 * The sqlq structure that holds the xritag and phys and virtual
563 * mappings for the scatter gather list is retrieved from the
564 * active array of sglq. The get of the sglq pointer also clears
565 * the entry in the array. If the status of the IO indiactes that
566 * this IO was aborted then the sglq entry it put on the
567 * lpfc_abts_els_sgl_list until the CQ_ABORTED_XRI is received. If the
568 * IO has good status or fails for any other reason then the sglq
569 * entry is added to the free list (lpfc_sgl_list).
570 **/
571static void
572__lpfc_sli_release_iocbq_s4(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
573{
574 struct lpfc_sglq *sglq;
575 size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
576 unsigned long iflag;
577
578 if (iocbq->sli4_xritag == NO_XRI)
579 sglq = NULL;
580 else
581 sglq = __lpfc_clear_active_sglq(phba, iocbq->sli4_xritag);
582 if (sglq) {
583 if (iocbq->iocb_flag & LPFC_DRIVER_ABORTED
6669f9bb 584 && ((iocbq->iocb.ulpStatus == IOSTAT_LOCAL_REJECT)
4f774513 585 && (iocbq->iocb.un.ulpWord[4]
6669f9bb 586 == IOERR_ABORT_REQUESTED))) {
4f774513
JS
587 spin_lock_irqsave(&phba->sli4_hba.abts_sgl_list_lock,
588 iflag);
589 list_add(&sglq->list,
590 &phba->sli4_hba.lpfc_abts_els_sgl_list);
591 spin_unlock_irqrestore(
592 &phba->sli4_hba.abts_sgl_list_lock, iflag);
593 } else
594 list_add(&sglq->list, &phba->sli4_hba.lpfc_sgl_list);
595 }
596
597
598 /*
599 * Clean all volatile data fields, preserve iotag and node struct.
600 */
601 memset((char *)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
602 iocbq->sli4_xritag = NO_XRI;
603 list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
604}
605
e59058c4 606/**
3772a991 607 * __lpfc_sli_release_iocbq_s3 - Release iocb to the iocb pool
e59058c4
JS
608 * @phba: Pointer to HBA context object.
609 * @iocbq: Pointer to driver iocb object.
610 *
611 * This function is called with hbalock held to release driver
612 * iocb object to the iocb pool. The iotag in the iocb object
613 * does not change for each use of the iocb object. This function
614 * clears all other fields of the iocb object when it is freed.
615 **/
a6ababd2 616static void
3772a991 617__lpfc_sli_release_iocbq_s3(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
604a3e30 618{
2e0fef85 619 size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
604a3e30
JB
620
621 /*
622 * Clean all volatile data fields, preserve iotag and node struct.
623 */
624 memset((char*)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
3772a991 625 iocbq->sli4_xritag = NO_XRI;
604a3e30
JB
626 list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
627}
628
3772a991
JS
629/**
630 * __lpfc_sli_release_iocbq - Release iocb to the iocb pool
631 * @phba: Pointer to HBA context object.
632 * @iocbq: Pointer to driver iocb object.
633 *
634 * This function is called with hbalock held to release driver
635 * iocb object to the iocb pool. The iotag in the iocb object
636 * does not change for each use of the iocb object. This function
637 * clears all other fields of the iocb object when it is freed.
638 **/
639static void
640__lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
641{
642 phba->__lpfc_sli_release_iocbq(phba, iocbq);
643}
644
e59058c4 645/**
3621a710 646 * lpfc_sli_release_iocbq - Release iocb to the iocb pool
e59058c4
JS
647 * @phba: Pointer to HBA context object.
648 * @iocbq: Pointer to driver iocb object.
649 *
650 * This function is called with no lock held to release the iocb to
651 * iocb pool.
652 **/
2e0fef85
JS
653void
654lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
655{
656 unsigned long iflags;
657
658 /*
659 * Clean all volatile data fields, preserve iotag and node struct.
660 */
661 spin_lock_irqsave(&phba->hbalock, iflags);
662 __lpfc_sli_release_iocbq(phba, iocbq);
663 spin_unlock_irqrestore(&phba->hbalock, iflags);
664}
665
a257bf90
JS
666/**
667 * lpfc_sli_cancel_iocbs - Cancel all iocbs from a list.
668 * @phba: Pointer to HBA context object.
669 * @iocblist: List of IOCBs.
670 * @ulpstatus: ULP status in IOCB command field.
671 * @ulpWord4: ULP word-4 in IOCB command field.
672 *
673 * This function is called with a list of IOCBs to cancel. It cancels the IOCB
674 * on the list by invoking the complete callback function associated with the
675 * IOCB with the provided @ulpstatus and @ulpword4 set to the IOCB commond
676 * fields.
677 **/
678void
679lpfc_sli_cancel_iocbs(struct lpfc_hba *phba, struct list_head *iocblist,
680 uint32_t ulpstatus, uint32_t ulpWord4)
681{
682 struct lpfc_iocbq *piocb;
683
684 while (!list_empty(iocblist)) {
685 list_remove_head(iocblist, piocb, struct lpfc_iocbq, list);
686
687 if (!piocb->iocb_cmpl)
688 lpfc_sli_release_iocbq(phba, piocb);
689 else {
690 piocb->iocb.ulpStatus = ulpstatus;
691 piocb->iocb.un.ulpWord[4] = ulpWord4;
692 (piocb->iocb_cmpl) (phba, piocb, piocb);
693 }
694 }
695 return;
696}
697
e59058c4 698/**
3621a710
JS
699 * lpfc_sli_iocb_cmd_type - Get the iocb type
700 * @iocb_cmnd: iocb command code.
e59058c4
JS
701 *
702 * This function is called by ring event handler function to get the iocb type.
703 * This function translates the iocb command to an iocb command type used to
704 * decide the final disposition of each completed IOCB.
705 * The function returns
706 * LPFC_UNKNOWN_IOCB if it is an unsupported iocb
707 * LPFC_SOL_IOCB if it is a solicited iocb completion
708 * LPFC_ABORT_IOCB if it is an abort iocb
709 * LPFC_UNSOL_IOCB if it is an unsolicited iocb
710 *
711 * The caller is not required to hold any lock.
712 **/
dea3101e
JB
713static lpfc_iocb_type
714lpfc_sli_iocb_cmd_type(uint8_t iocb_cmnd)
715{
716 lpfc_iocb_type type = LPFC_UNKNOWN_IOCB;
717
718 if (iocb_cmnd > CMD_MAX_IOCB_CMD)
719 return 0;
720
721 switch (iocb_cmnd) {
722 case CMD_XMIT_SEQUENCE_CR:
723 case CMD_XMIT_SEQUENCE_CX:
724 case CMD_XMIT_BCAST_CN:
725 case CMD_XMIT_BCAST_CX:
726 case CMD_ELS_REQUEST_CR:
727 case CMD_ELS_REQUEST_CX:
728 case CMD_CREATE_XRI_CR:
729 case CMD_CREATE_XRI_CX:
730 case CMD_GET_RPI_CN:
731 case CMD_XMIT_ELS_RSP_CX:
732 case CMD_GET_RPI_CR:
733 case CMD_FCP_IWRITE_CR:
734 case CMD_FCP_IWRITE_CX:
735 case CMD_FCP_IREAD_CR:
736 case CMD_FCP_IREAD_CX:
737 case CMD_FCP_ICMND_CR:
738 case CMD_FCP_ICMND_CX:
f5603511
JS
739 case CMD_FCP_TSEND_CX:
740 case CMD_FCP_TRSP_CX:
741 case CMD_FCP_TRECEIVE_CX:
742 case CMD_FCP_AUTO_TRSP_CX:
dea3101e
JB
743 case CMD_ADAPTER_MSG:
744 case CMD_ADAPTER_DUMP:
745 case CMD_XMIT_SEQUENCE64_CR:
746 case CMD_XMIT_SEQUENCE64_CX:
747 case CMD_XMIT_BCAST64_CN:
748 case CMD_XMIT_BCAST64_CX:
749 case CMD_ELS_REQUEST64_CR:
750 case CMD_ELS_REQUEST64_CX:
751 case CMD_FCP_IWRITE64_CR:
752 case CMD_FCP_IWRITE64_CX:
753 case CMD_FCP_IREAD64_CR:
754 case CMD_FCP_IREAD64_CX:
755 case CMD_FCP_ICMND64_CR:
756 case CMD_FCP_ICMND64_CX:
f5603511
JS
757 case CMD_FCP_TSEND64_CX:
758 case CMD_FCP_TRSP64_CX:
759 case CMD_FCP_TRECEIVE64_CX:
dea3101e
JB
760 case CMD_GEN_REQUEST64_CR:
761 case CMD_GEN_REQUEST64_CX:
762 case CMD_XMIT_ELS_RSP64_CX:
da0436e9
JS
763 case DSSCMD_IWRITE64_CR:
764 case DSSCMD_IWRITE64_CX:
765 case DSSCMD_IREAD64_CR:
766 case DSSCMD_IREAD64_CX:
767 case DSSCMD_INVALIDATE_DEK:
768 case DSSCMD_SET_KEK:
769 case DSSCMD_GET_KEK_ID:
770 case DSSCMD_GEN_XFER:
dea3101e
JB
771 type = LPFC_SOL_IOCB;
772 break;
773 case CMD_ABORT_XRI_CN:
774 case CMD_ABORT_XRI_CX:
775 case CMD_CLOSE_XRI_CN:
776 case CMD_CLOSE_XRI_CX:
777 case CMD_XRI_ABORTED_CX:
778 case CMD_ABORT_MXRI64_CN:
6669f9bb 779 case CMD_XMIT_BLS_RSP64_CX:
dea3101e
JB
780 type = LPFC_ABORT_IOCB;
781 break;
782 case CMD_RCV_SEQUENCE_CX:
783 case CMD_RCV_ELS_REQ_CX:
784 case CMD_RCV_SEQUENCE64_CX:
785 case CMD_RCV_ELS_REQ64_CX:
57127f15 786 case CMD_ASYNC_STATUS:
ed957684
JS
787 case CMD_IOCB_RCV_SEQ64_CX:
788 case CMD_IOCB_RCV_ELS64_CX:
789 case CMD_IOCB_RCV_CONT64_CX:
3163f725 790 case CMD_IOCB_RET_XRI64_CX:
dea3101e
JB
791 type = LPFC_UNSOL_IOCB;
792 break;
3163f725
JS
793 case CMD_IOCB_XMIT_MSEQ64_CR:
794 case CMD_IOCB_XMIT_MSEQ64_CX:
795 case CMD_IOCB_RCV_SEQ_LIST64_CX:
796 case CMD_IOCB_RCV_ELS_LIST64_CX:
797 case CMD_IOCB_CLOSE_EXTENDED_CN:
798 case CMD_IOCB_ABORT_EXTENDED_CN:
799 case CMD_IOCB_RET_HBQE64_CN:
800 case CMD_IOCB_FCP_IBIDIR64_CR:
801 case CMD_IOCB_FCP_IBIDIR64_CX:
802 case CMD_IOCB_FCP_ITASKMGT64_CX:
803 case CMD_IOCB_LOGENTRY_CN:
804 case CMD_IOCB_LOGENTRY_ASYNC_CN:
805 printk("%s - Unhandled SLI-3 Command x%x\n",
cadbd4a5 806 __func__, iocb_cmnd);
3163f725
JS
807 type = LPFC_UNKNOWN_IOCB;
808 break;
dea3101e
JB
809 default:
810 type = LPFC_UNKNOWN_IOCB;
811 break;
812 }
813
814 return type;
815}
816
e59058c4 817/**
3621a710 818 * lpfc_sli_ring_map - Issue config_ring mbox for all rings
e59058c4
JS
819 * @phba: Pointer to HBA context object.
820 *
821 * This function is called from SLI initialization code
822 * to configure every ring of the HBA's SLI interface. The
823 * caller is not required to hold any lock. This function issues
824 * a config_ring mailbox command for each ring.
825 * This function returns zero if successful else returns a negative
826 * error code.
827 **/
dea3101e 828static int
ed957684 829lpfc_sli_ring_map(struct lpfc_hba *phba)
dea3101e
JB
830{
831 struct lpfc_sli *psli = &phba->sli;
ed957684
JS
832 LPFC_MBOXQ_t *pmb;
833 MAILBOX_t *pmbox;
834 int i, rc, ret = 0;
dea3101e 835
ed957684
JS
836 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
837 if (!pmb)
838 return -ENOMEM;
04c68496 839 pmbox = &pmb->u.mb;
ed957684 840 phba->link_state = LPFC_INIT_MBX_CMDS;
dea3101e 841 for (i = 0; i < psli->num_rings; i++) {
dea3101e
JB
842 lpfc_config_ring(phba, i, pmb);
843 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
844 if (rc != MBX_SUCCESS) {
92d7f7b0 845 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 846 "0446 Adapter failed to init (%d), "
dea3101e
JB
847 "mbxCmd x%x CFG_RING, mbxStatus x%x, "
848 "ring %d\n",
e8b62011
JS
849 rc, pmbox->mbxCommand,
850 pmbox->mbxStatus, i);
2e0fef85 851 phba->link_state = LPFC_HBA_ERROR;
ed957684
JS
852 ret = -ENXIO;
853 break;
dea3101e
JB
854 }
855 }
ed957684
JS
856 mempool_free(pmb, phba->mbox_mem_pool);
857 return ret;
dea3101e
JB
858}
859
e59058c4 860/**
3621a710 861 * lpfc_sli_ringtxcmpl_put - Adds new iocb to the txcmplq
e59058c4
JS
862 * @phba: Pointer to HBA context object.
863 * @pring: Pointer to driver SLI ring object.
864 * @piocb: Pointer to the driver iocb object.
865 *
866 * This function is called with hbalock held. The function adds the
867 * new iocb to txcmplq of the given ring. This function always returns
868 * 0. If this function is called for ELS ring, this function checks if
869 * there is a vport associated with the ELS command. This function also
870 * starts els_tmofunc timer if this is an ELS command.
871 **/
dea3101e 872static int
2e0fef85
JS
873lpfc_sli_ringtxcmpl_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
874 struct lpfc_iocbq *piocb)
dea3101e 875{
dea3101e
JB
876 list_add_tail(&piocb->list, &pring->txcmplq);
877 pring->txcmplq_cnt++;
92d7f7b0
JS
878 if ((unlikely(pring->ringno == LPFC_ELS_RING)) &&
879 (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
880 (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) {
881 if (!piocb->vport)
882 BUG();
883 else
884 mod_timer(&piocb->vport->els_tmofunc,
885 jiffies + HZ * (phba->fc_ratov << 1));
886 }
887
dea3101e 888
2e0fef85 889 return 0;
dea3101e
JB
890}
891
e59058c4 892/**
3621a710 893 * lpfc_sli_ringtx_get - Get first element of the txq
e59058c4
JS
894 * @phba: Pointer to HBA context object.
895 * @pring: Pointer to driver SLI ring object.
896 *
897 * This function is called with hbalock held to get next
898 * iocb in txq of the given ring. If there is any iocb in
899 * the txq, the function returns first iocb in the list after
900 * removing the iocb from the list, else it returns NULL.
901 **/
dea3101e 902static struct lpfc_iocbq *
2e0fef85 903lpfc_sli_ringtx_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea3101e 904{
dea3101e
JB
905 struct lpfc_iocbq *cmd_iocb;
906
858c9f6c
JS
907 list_remove_head((&pring->txq), cmd_iocb, struct lpfc_iocbq, list);
908 if (cmd_iocb != NULL)
dea3101e 909 pring->txq_cnt--;
2e0fef85 910 return cmd_iocb;
dea3101e
JB
911}
912
e59058c4 913/**
3621a710 914 * lpfc_sli_next_iocb_slot - Get next iocb slot in the ring
e59058c4
JS
915 * @phba: Pointer to HBA context object.
916 * @pring: Pointer to driver SLI ring object.
917 *
918 * This function is called with hbalock held and the caller must post the
919 * iocb without releasing the lock. If the caller releases the lock,
920 * iocb slot returned by the function is not guaranteed to be available.
921 * The function returns pointer to the next available iocb slot if there
922 * is available slot in the ring, else it returns NULL.
923 * If the get index of the ring is ahead of the put index, the function
924 * will post an error attention event to the worker thread to take the
925 * HBA to offline state.
926 **/
dea3101e
JB
927static IOCB_t *
928lpfc_sli_next_iocb_slot (struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
929{
34b02dcd 930 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
dea3101e 931 uint32_t max_cmd_idx = pring->numCiocb;
dea3101e
JB
932 if ((pring->next_cmdidx == pring->cmdidx) &&
933 (++pring->next_cmdidx >= max_cmd_idx))
934 pring->next_cmdidx = 0;
935
936 if (unlikely(pring->local_getidx == pring->next_cmdidx)) {
937
938 pring->local_getidx = le32_to_cpu(pgp->cmdGetInx);
939
940 if (unlikely(pring->local_getidx >= max_cmd_idx)) {
941 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011 942 "0315 Ring %d issue: portCmdGet %d "
025dfdaf 943 "is bigger than cmd ring %d\n",
e8b62011 944 pring->ringno,
dea3101e
JB
945 pring->local_getidx, max_cmd_idx);
946
2e0fef85 947 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
948 /*
949 * All error attention handlers are posted to
950 * worker thread
951 */
952 phba->work_ha |= HA_ERATT;
953 phba->work_hs = HS_FFER3;
92d7f7b0 954
5e9d9b82 955 lpfc_worker_wake_up(phba);
dea3101e
JB
956
957 return NULL;
958 }
959
960 if (pring->local_getidx == pring->next_cmdidx)
961 return NULL;
962 }
963
ed957684 964 return lpfc_cmd_iocb(phba, pring);
dea3101e
JB
965}
966
e59058c4 967/**
3621a710 968 * lpfc_sli_next_iotag - Get an iotag for the iocb
e59058c4
JS
969 * @phba: Pointer to HBA context object.
970 * @iocbq: Pointer to driver iocb object.
971 *
972 * This function gets an iotag for the iocb. If there is no unused iotag and
973 * the iocbq_lookup_len < 0xffff, this function allocates a bigger iotag_lookup
974 * array and assigns a new iotag.
975 * The function returns the allocated iotag if successful, else returns zero.
976 * Zero is not a valid iotag.
977 * The caller is not required to hold any lock.
978 **/
604a3e30 979uint16_t
2e0fef85 980lpfc_sli_next_iotag(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
dea3101e 981{
2e0fef85
JS
982 struct lpfc_iocbq **new_arr;
983 struct lpfc_iocbq **old_arr;
604a3e30
JB
984 size_t new_len;
985 struct lpfc_sli *psli = &phba->sli;
986 uint16_t iotag;
dea3101e 987
2e0fef85 988 spin_lock_irq(&phba->hbalock);
604a3e30
JB
989 iotag = psli->last_iotag;
990 if(++iotag < psli->iocbq_lookup_len) {
991 psli->last_iotag = iotag;
992 psli->iocbq_lookup[iotag] = iocbq;
2e0fef85 993 spin_unlock_irq(&phba->hbalock);
604a3e30
JB
994 iocbq->iotag = iotag;
995 return iotag;
2e0fef85 996 } else if (psli->iocbq_lookup_len < (0xffff
604a3e30
JB
997 - LPFC_IOCBQ_LOOKUP_INCREMENT)) {
998 new_len = psli->iocbq_lookup_len + LPFC_IOCBQ_LOOKUP_INCREMENT;
2e0fef85
JS
999 spin_unlock_irq(&phba->hbalock);
1000 new_arr = kzalloc(new_len * sizeof (struct lpfc_iocbq *),
604a3e30
JB
1001 GFP_KERNEL);
1002 if (new_arr) {
2e0fef85 1003 spin_lock_irq(&phba->hbalock);
604a3e30
JB
1004 old_arr = psli->iocbq_lookup;
1005 if (new_len <= psli->iocbq_lookup_len) {
1006 /* highly unprobable case */
1007 kfree(new_arr);
1008 iotag = psli->last_iotag;
1009 if(++iotag < psli->iocbq_lookup_len) {
1010 psli->last_iotag = iotag;
1011 psli->iocbq_lookup[iotag] = iocbq;
2e0fef85 1012 spin_unlock_irq(&phba->hbalock);
604a3e30
JB
1013 iocbq->iotag = iotag;
1014 return iotag;
1015 }
2e0fef85 1016 spin_unlock_irq(&phba->hbalock);
604a3e30
JB
1017 return 0;
1018 }
1019 if (psli->iocbq_lookup)
1020 memcpy(new_arr, old_arr,
1021 ((psli->last_iotag + 1) *
311464ec 1022 sizeof (struct lpfc_iocbq *)));
604a3e30
JB
1023 psli->iocbq_lookup = new_arr;
1024 psli->iocbq_lookup_len = new_len;
1025 psli->last_iotag = iotag;
1026 psli->iocbq_lookup[iotag] = iocbq;
2e0fef85 1027 spin_unlock_irq(&phba->hbalock);
604a3e30
JB
1028 iocbq->iotag = iotag;
1029 kfree(old_arr);
1030 return iotag;
1031 }
8f6d98d2 1032 } else
2e0fef85 1033 spin_unlock_irq(&phba->hbalock);
dea3101e 1034
604a3e30 1035 lpfc_printf_log(phba, KERN_ERR,LOG_SLI,
e8b62011
JS
1036 "0318 Failed to allocate IOTAG.last IOTAG is %d\n",
1037 psli->last_iotag);
dea3101e 1038
604a3e30 1039 return 0;
dea3101e
JB
1040}
1041
e59058c4 1042/**
3621a710 1043 * lpfc_sli_submit_iocb - Submit an iocb to the firmware
e59058c4
JS
1044 * @phba: Pointer to HBA context object.
1045 * @pring: Pointer to driver SLI ring object.
1046 * @iocb: Pointer to iocb slot in the ring.
1047 * @nextiocb: Pointer to driver iocb object which need to be
1048 * posted to firmware.
1049 *
1050 * This function is called with hbalock held to post a new iocb to
1051 * the firmware. This function copies the new iocb to ring iocb slot and
1052 * updates the ring pointers. It adds the new iocb to txcmplq if there is
1053 * a completion call back for this iocb else the function will free the
1054 * iocb object.
1055 **/
dea3101e
JB
1056static void
1057lpfc_sli_submit_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
1058 IOCB_t *iocb, struct lpfc_iocbq *nextiocb)
1059{
1060 /*
604a3e30 1061 * Set up an iotag
dea3101e 1062 */
604a3e30 1063 nextiocb->iocb.ulpIoTag = (nextiocb->iocb_cmpl) ? nextiocb->iotag : 0;
dea3101e 1064
e2a0a9d6 1065
a58cbd52
JS
1066 if (pring->ringno == LPFC_ELS_RING) {
1067 lpfc_debugfs_slow_ring_trc(phba,
1068 "IOCB cmd ring: wd4:x%08x wd6:x%08x wd7:x%08x",
1069 *(((uint32_t *) &nextiocb->iocb) + 4),
1070 *(((uint32_t *) &nextiocb->iocb) + 6),
1071 *(((uint32_t *) &nextiocb->iocb) + 7));
1072 }
1073
dea3101e
JB
1074 /*
1075 * Issue iocb command to adapter
1076 */
92d7f7b0 1077 lpfc_sli_pcimem_bcopy(&nextiocb->iocb, iocb, phba->iocb_cmd_size);
dea3101e
JB
1078 wmb();
1079 pring->stats.iocb_cmd++;
1080
1081 /*
1082 * If there is no completion routine to call, we can release the
1083 * IOCB buffer back right now. For IOCBs, like QUE_RING_BUF,
1084 * that have no rsp ring completion, iocb_cmpl MUST be NULL.
1085 */
1086 if (nextiocb->iocb_cmpl)
1087 lpfc_sli_ringtxcmpl_put(phba, pring, nextiocb);
604a3e30 1088 else
2e0fef85 1089 __lpfc_sli_release_iocbq(phba, nextiocb);
dea3101e
JB
1090
1091 /*
1092 * Let the HBA know what IOCB slot will be the next one the
1093 * driver will put a command into.
1094 */
1095 pring->cmdidx = pring->next_cmdidx;
ed957684 1096 writel(pring->cmdidx, &phba->host_gp[pring->ringno].cmdPutInx);
dea3101e
JB
1097}
1098
e59058c4 1099/**
3621a710 1100 * lpfc_sli_update_full_ring - Update the chip attention register
e59058c4
JS
1101 * @phba: Pointer to HBA context object.
1102 * @pring: Pointer to driver SLI ring object.
1103 *
1104 * The caller is not required to hold any lock for calling this function.
1105 * This function updates the chip attention bits for the ring to inform firmware
1106 * that there are pending work to be done for this ring and requests an
1107 * interrupt when there is space available in the ring. This function is
1108 * called when the driver is unable to post more iocbs to the ring due
1109 * to unavailability of space in the ring.
1110 **/
dea3101e 1111static void
2e0fef85 1112lpfc_sli_update_full_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea3101e
JB
1113{
1114 int ringno = pring->ringno;
1115
1116 pring->flag |= LPFC_CALL_RING_AVAILABLE;
1117
1118 wmb();
1119
1120 /*
1121 * Set ring 'ringno' to SET R0CE_REQ in Chip Att register.
1122 * The HBA will tell us when an IOCB entry is available.
1123 */
1124 writel((CA_R0ATT|CA_R0CE_REQ) << (ringno*4), phba->CAregaddr);
1125 readl(phba->CAregaddr); /* flush */
1126
1127 pring->stats.iocb_cmd_full++;
1128}
1129
e59058c4 1130/**
3621a710 1131 * lpfc_sli_update_ring - Update chip attention register
e59058c4
JS
1132 * @phba: Pointer to HBA context object.
1133 * @pring: Pointer to driver SLI ring object.
1134 *
1135 * This function updates the chip attention register bit for the
1136 * given ring to inform HBA that there is more work to be done
1137 * in this ring. The caller is not required to hold any lock.
1138 **/
dea3101e 1139static void
2e0fef85 1140lpfc_sli_update_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea3101e
JB
1141{
1142 int ringno = pring->ringno;
1143
1144 /*
1145 * Tell the HBA that there is work to do in this ring.
1146 */
34b02dcd
JS
1147 if (!(phba->sli3_options & LPFC_SLI3_CRP_ENABLED)) {
1148 wmb();
1149 writel(CA_R0ATT << (ringno * 4), phba->CAregaddr);
1150 readl(phba->CAregaddr); /* flush */
1151 }
dea3101e
JB
1152}
1153
e59058c4 1154/**
3621a710 1155 * lpfc_sli_resume_iocb - Process iocbs in the txq
e59058c4
JS
1156 * @phba: Pointer to HBA context object.
1157 * @pring: Pointer to driver SLI ring object.
1158 *
1159 * This function is called with hbalock held to post pending iocbs
1160 * in the txq to the firmware. This function is called when driver
1161 * detects space available in the ring.
1162 **/
dea3101e 1163static void
2e0fef85 1164lpfc_sli_resume_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea3101e
JB
1165{
1166 IOCB_t *iocb;
1167 struct lpfc_iocbq *nextiocb;
1168
1169 /*
1170 * Check to see if:
1171 * (a) there is anything on the txq to send
1172 * (b) link is up
1173 * (c) link attention events can be processed (fcp ring only)
1174 * (d) IOCB processing is not blocked by the outstanding mbox command.
1175 */
1176 if (pring->txq_cnt &&
2e0fef85 1177 lpfc_is_link_up(phba) &&
dea3101e 1178 (pring->ringno != phba->sli.fcp_ring ||
0b727fea 1179 phba->sli.sli_flag & LPFC_PROCESS_LA)) {
dea3101e
JB
1180
1181 while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
1182 (nextiocb = lpfc_sli_ringtx_get(phba, pring)))
1183 lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
1184
1185 if (iocb)
1186 lpfc_sli_update_ring(phba, pring);
1187 else
1188 lpfc_sli_update_full_ring(phba, pring);
1189 }
1190
1191 return;
1192}
1193
e59058c4 1194/**
3621a710 1195 * lpfc_sli_next_hbq_slot - Get next hbq entry for the HBQ
e59058c4
JS
1196 * @phba: Pointer to HBA context object.
1197 * @hbqno: HBQ number.
1198 *
1199 * This function is called with hbalock held to get the next
1200 * available slot for the given HBQ. If there is free slot
1201 * available for the HBQ it will return pointer to the next available
1202 * HBQ entry else it will return NULL.
1203 **/
a6ababd2 1204static struct lpfc_hbq_entry *
ed957684
JS
1205lpfc_sli_next_hbq_slot(struct lpfc_hba *phba, uint32_t hbqno)
1206{
1207 struct hbq_s *hbqp = &phba->hbqs[hbqno];
1208
1209 if (hbqp->next_hbqPutIdx == hbqp->hbqPutIdx &&
1210 ++hbqp->next_hbqPutIdx >= hbqp->entry_count)
1211 hbqp->next_hbqPutIdx = 0;
1212
1213 if (unlikely(hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)) {
92d7f7b0 1214 uint32_t raw_index = phba->hbq_get[hbqno];
ed957684
JS
1215 uint32_t getidx = le32_to_cpu(raw_index);
1216
1217 hbqp->local_hbqGetIdx = getidx;
1218
1219 if (unlikely(hbqp->local_hbqGetIdx >= hbqp->entry_count)) {
1220 lpfc_printf_log(phba, KERN_ERR,
92d7f7b0 1221 LOG_SLI | LOG_VPORT,
e8b62011 1222 "1802 HBQ %d: local_hbqGetIdx "
ed957684 1223 "%u is > than hbqp->entry_count %u\n",
e8b62011 1224 hbqno, hbqp->local_hbqGetIdx,
ed957684
JS
1225 hbqp->entry_count);
1226
1227 phba->link_state = LPFC_HBA_ERROR;
1228 return NULL;
1229 }
1230
1231 if (hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)
1232 return NULL;
1233 }
1234
51ef4c26
JS
1235 return (struct lpfc_hbq_entry *) phba->hbqs[hbqno].hbq_virt +
1236 hbqp->hbqPutIdx;
ed957684
JS
1237}
1238
e59058c4 1239/**
3621a710 1240 * lpfc_sli_hbqbuf_free_all - Free all the hbq buffers
e59058c4
JS
1241 * @phba: Pointer to HBA context object.
1242 *
1243 * This function is called with no lock held to free all the
1244 * hbq buffers while uninitializing the SLI interface. It also
1245 * frees the HBQ buffers returned by the firmware but not yet
1246 * processed by the upper layers.
1247 **/
ed957684
JS
1248void
1249lpfc_sli_hbqbuf_free_all(struct lpfc_hba *phba)
1250{
92d7f7b0
JS
1251 struct lpfc_dmabuf *dmabuf, *next_dmabuf;
1252 struct hbq_dmabuf *hbq_buf;
3163f725 1253 unsigned long flags;
51ef4c26 1254 int i, hbq_count;
3163f725 1255 uint32_t hbqno;
ed957684 1256
51ef4c26 1257 hbq_count = lpfc_sli_hbq_count();
ed957684 1258 /* Return all memory used by all HBQs */
3163f725 1259 spin_lock_irqsave(&phba->hbalock, flags);
51ef4c26
JS
1260 for (i = 0; i < hbq_count; ++i) {
1261 list_for_each_entry_safe(dmabuf, next_dmabuf,
1262 &phba->hbqs[i].hbq_buffer_list, list) {
1263 hbq_buf = container_of(dmabuf, struct hbq_dmabuf, dbuf);
1264 list_del(&hbq_buf->dbuf.list);
1265 (phba->hbqs[i].hbq_free_buffer)(phba, hbq_buf);
1266 }
a8adb832 1267 phba->hbqs[i].buffer_count = 0;
ed957684 1268 }
3163f725 1269 /* Return all HBQ buffer that are in-fly */
3772a991
JS
1270 list_for_each_entry_safe(dmabuf, next_dmabuf, &phba->rb_pend_list,
1271 list) {
3163f725
JS
1272 hbq_buf = container_of(dmabuf, struct hbq_dmabuf, dbuf);
1273 list_del(&hbq_buf->dbuf.list);
1274 if (hbq_buf->tag == -1) {
1275 (phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer)
1276 (phba, hbq_buf);
1277 } else {
1278 hbqno = hbq_buf->tag >> 16;
1279 if (hbqno >= LPFC_MAX_HBQS)
1280 (phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer)
1281 (phba, hbq_buf);
1282 else
1283 (phba->hbqs[hbqno].hbq_free_buffer)(phba,
1284 hbq_buf);
1285 }
1286 }
1287
1288 /* Mark the HBQs not in use */
1289 phba->hbq_in_use = 0;
1290 spin_unlock_irqrestore(&phba->hbalock, flags);
ed957684
JS
1291}
1292
e59058c4 1293/**
3621a710 1294 * lpfc_sli_hbq_to_firmware - Post the hbq buffer to firmware
e59058c4
JS
1295 * @phba: Pointer to HBA context object.
1296 * @hbqno: HBQ number.
1297 * @hbq_buf: Pointer to HBQ buffer.
1298 *
1299 * This function is called with the hbalock held to post a
1300 * hbq buffer to the firmware. If the function finds an empty
1301 * slot in the HBQ, it will post the buffer. The function will return
1302 * pointer to the hbq entry if it successfully post the buffer
1303 * else it will return NULL.
1304 **/
3772a991 1305static int
ed957684 1306lpfc_sli_hbq_to_firmware(struct lpfc_hba *phba, uint32_t hbqno,
92d7f7b0 1307 struct hbq_dmabuf *hbq_buf)
3772a991
JS
1308{
1309 return phba->lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buf);
1310}
1311
1312/**
1313 * lpfc_sli_hbq_to_firmware_s3 - Post the hbq buffer to SLI3 firmware
1314 * @phba: Pointer to HBA context object.
1315 * @hbqno: HBQ number.
1316 * @hbq_buf: Pointer to HBQ buffer.
1317 *
1318 * This function is called with the hbalock held to post a hbq buffer to the
1319 * firmware. If the function finds an empty slot in the HBQ, it will post the
1320 * buffer and place it on the hbq_buffer_list. The function will return zero if
1321 * it successfully post the buffer else it will return an error.
1322 **/
1323static int
1324lpfc_sli_hbq_to_firmware_s3(struct lpfc_hba *phba, uint32_t hbqno,
1325 struct hbq_dmabuf *hbq_buf)
ed957684
JS
1326{
1327 struct lpfc_hbq_entry *hbqe;
92d7f7b0 1328 dma_addr_t physaddr = hbq_buf->dbuf.phys;
ed957684
JS
1329
1330 /* Get next HBQ entry slot to use */
1331 hbqe = lpfc_sli_next_hbq_slot(phba, hbqno);
1332 if (hbqe) {
1333 struct hbq_s *hbqp = &phba->hbqs[hbqno];
1334
92d7f7b0
JS
1335 hbqe->bde.addrHigh = le32_to_cpu(putPaddrHigh(physaddr));
1336 hbqe->bde.addrLow = le32_to_cpu(putPaddrLow(physaddr));
51ef4c26 1337 hbqe->bde.tus.f.bdeSize = hbq_buf->size;
ed957684 1338 hbqe->bde.tus.f.bdeFlags = 0;
92d7f7b0
JS
1339 hbqe->bde.tus.w = le32_to_cpu(hbqe->bde.tus.w);
1340 hbqe->buffer_tag = le32_to_cpu(hbq_buf->tag);
1341 /* Sync SLIM */
ed957684
JS
1342 hbqp->hbqPutIdx = hbqp->next_hbqPutIdx;
1343 writel(hbqp->hbqPutIdx, phba->hbq_put + hbqno);
92d7f7b0 1344 /* flush */
ed957684 1345 readl(phba->hbq_put + hbqno);
51ef4c26 1346 list_add_tail(&hbq_buf->dbuf.list, &hbqp->hbq_buffer_list);
3772a991
JS
1347 return 0;
1348 } else
1349 return -ENOMEM;
ed957684
JS
1350}
1351
4f774513
JS
1352/**
1353 * lpfc_sli_hbq_to_firmware_s4 - Post the hbq buffer to SLI4 firmware
1354 * @phba: Pointer to HBA context object.
1355 * @hbqno: HBQ number.
1356 * @hbq_buf: Pointer to HBQ buffer.
1357 *
1358 * This function is called with the hbalock held to post an RQE to the SLI4
1359 * firmware. If able to post the RQE to the RQ it will queue the hbq entry to
1360 * the hbq_buffer_list and return zero, otherwise it will return an error.
1361 **/
1362static int
1363lpfc_sli_hbq_to_firmware_s4(struct lpfc_hba *phba, uint32_t hbqno,
1364 struct hbq_dmabuf *hbq_buf)
1365{
1366 int rc;
1367 struct lpfc_rqe hrqe;
1368 struct lpfc_rqe drqe;
1369
1370 hrqe.address_lo = putPaddrLow(hbq_buf->hbuf.phys);
1371 hrqe.address_hi = putPaddrHigh(hbq_buf->hbuf.phys);
1372 drqe.address_lo = putPaddrLow(hbq_buf->dbuf.phys);
1373 drqe.address_hi = putPaddrHigh(hbq_buf->dbuf.phys);
1374 rc = lpfc_sli4_rq_put(phba->sli4_hba.hdr_rq, phba->sli4_hba.dat_rq,
1375 &hrqe, &drqe);
1376 if (rc < 0)
1377 return rc;
1378 hbq_buf->tag = rc;
1379 list_add_tail(&hbq_buf->dbuf.list, &phba->hbqs[hbqno].hbq_buffer_list);
1380 return 0;
1381}
1382
e59058c4 1383/* HBQ for ELS and CT traffic. */
92d7f7b0
JS
1384static struct lpfc_hbq_init lpfc_els_hbq = {
1385 .rn = 1,
1386 .entry_count = 200,
1387 .mask_count = 0,
1388 .profile = 0,
51ef4c26 1389 .ring_mask = (1 << LPFC_ELS_RING),
92d7f7b0 1390 .buffer_count = 0,
a257bf90
JS
1391 .init_count = 40,
1392 .add_count = 40,
92d7f7b0 1393};
ed957684 1394
e59058c4 1395/* HBQ for the extra ring if needed */
51ef4c26
JS
1396static struct lpfc_hbq_init lpfc_extra_hbq = {
1397 .rn = 1,
1398 .entry_count = 200,
1399 .mask_count = 0,
1400 .profile = 0,
1401 .ring_mask = (1 << LPFC_EXTRA_RING),
1402 .buffer_count = 0,
1403 .init_count = 0,
1404 .add_count = 5,
1405};
1406
e59058c4 1407/* Array of HBQs */
78b2d852 1408struct lpfc_hbq_init *lpfc_hbq_defs[] = {
92d7f7b0 1409 &lpfc_els_hbq,
51ef4c26 1410 &lpfc_extra_hbq,
92d7f7b0 1411};
ed957684 1412
e59058c4 1413/**
3621a710 1414 * lpfc_sli_hbqbuf_fill_hbqs - Post more hbq buffers to HBQ
e59058c4
JS
1415 * @phba: Pointer to HBA context object.
1416 * @hbqno: HBQ number.
1417 * @count: Number of HBQ buffers to be posted.
1418 *
d7c255b2
JS
1419 * This function is called with no lock held to post more hbq buffers to the
1420 * given HBQ. The function returns the number of HBQ buffers successfully
1421 * posted.
e59058c4 1422 **/
311464ec 1423static int
92d7f7b0 1424lpfc_sli_hbqbuf_fill_hbqs(struct lpfc_hba *phba, uint32_t hbqno, uint32_t count)
ed957684 1425{
d7c255b2 1426 uint32_t i, posted = 0;
3163f725 1427 unsigned long flags;
92d7f7b0 1428 struct hbq_dmabuf *hbq_buffer;
d7c255b2 1429 LIST_HEAD(hbq_buf_list);
eafe1df9 1430 if (!phba->hbqs[hbqno].hbq_alloc_buffer)
51ef4c26 1431 return 0;
51ef4c26 1432
d7c255b2
JS
1433 if ((phba->hbqs[hbqno].buffer_count + count) >
1434 lpfc_hbq_defs[hbqno]->entry_count)
1435 count = lpfc_hbq_defs[hbqno]->entry_count -
1436 phba->hbqs[hbqno].buffer_count;
1437 if (!count)
1438 return 0;
1439 /* Allocate HBQ entries */
1440 for (i = 0; i < count; i++) {
1441 hbq_buffer = (phba->hbqs[hbqno].hbq_alloc_buffer)(phba);
1442 if (!hbq_buffer)
1443 break;
1444 list_add_tail(&hbq_buffer->dbuf.list, &hbq_buf_list);
1445 }
3163f725
JS
1446 /* Check whether HBQ is still in use */
1447 spin_lock_irqsave(&phba->hbalock, flags);
eafe1df9 1448 if (!phba->hbq_in_use)
d7c255b2
JS
1449 goto err;
1450 while (!list_empty(&hbq_buf_list)) {
1451 list_remove_head(&hbq_buf_list, hbq_buffer, struct hbq_dmabuf,
1452 dbuf.list);
1453 hbq_buffer->tag = (phba->hbqs[hbqno].buffer_count |
1454 (hbqno << 16));
3772a991 1455 if (!lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer)) {
a8adb832 1456 phba->hbqs[hbqno].buffer_count++;
d7c255b2
JS
1457 posted++;
1458 } else
51ef4c26 1459 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
ed957684 1460 }
3163f725 1461 spin_unlock_irqrestore(&phba->hbalock, flags);
d7c255b2
JS
1462 return posted;
1463err:
eafe1df9 1464 spin_unlock_irqrestore(&phba->hbalock, flags);
d7c255b2
JS
1465 while (!list_empty(&hbq_buf_list)) {
1466 list_remove_head(&hbq_buf_list, hbq_buffer, struct hbq_dmabuf,
1467 dbuf.list);
1468 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
1469 }
1470 return 0;
ed957684
JS
1471}
1472
e59058c4 1473/**
3621a710 1474 * lpfc_sli_hbqbuf_add_hbqs - Post more HBQ buffers to firmware
e59058c4
JS
1475 * @phba: Pointer to HBA context object.
1476 * @qno: HBQ number.
1477 *
1478 * This function posts more buffers to the HBQ. This function
d7c255b2
JS
1479 * is called with no lock held. The function returns the number of HBQ entries
1480 * successfully allocated.
e59058c4 1481 **/
92d7f7b0
JS
1482int
1483lpfc_sli_hbqbuf_add_hbqs(struct lpfc_hba *phba, uint32_t qno)
ed957684 1484{
92d7f7b0
JS
1485 return(lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
1486 lpfc_hbq_defs[qno]->add_count));
1487}
ed957684 1488
e59058c4 1489/**
3621a710 1490 * lpfc_sli_hbqbuf_init_hbqs - Post initial buffers to the HBQ
e59058c4
JS
1491 * @phba: Pointer to HBA context object.
1492 * @qno: HBQ queue number.
1493 *
1494 * This function is called from SLI initialization code path with
1495 * no lock held to post initial HBQ buffers to firmware. The
d7c255b2 1496 * function returns the number of HBQ entries successfully allocated.
e59058c4 1497 **/
a6ababd2 1498static int
92d7f7b0
JS
1499lpfc_sli_hbqbuf_init_hbqs(struct lpfc_hba *phba, uint32_t qno)
1500{
1501 return(lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
1502 lpfc_hbq_defs[qno]->init_count));
ed957684
JS
1503}
1504
3772a991
JS
1505/**
1506 * lpfc_sli_hbqbuf_get - Remove the first hbq off of an hbq list
1507 * @phba: Pointer to HBA context object.
1508 * @hbqno: HBQ number.
1509 *
1510 * This function removes the first hbq buffer on an hbq list and returns a
1511 * pointer to that buffer. If it finds no buffers on the list it returns NULL.
1512 **/
1513static struct hbq_dmabuf *
1514lpfc_sli_hbqbuf_get(struct list_head *rb_list)
1515{
1516 struct lpfc_dmabuf *d_buf;
1517
1518 list_remove_head(rb_list, d_buf, struct lpfc_dmabuf, list);
1519 if (!d_buf)
1520 return NULL;
1521 return container_of(d_buf, struct hbq_dmabuf, dbuf);
1522}
1523
e59058c4 1524/**
3621a710 1525 * lpfc_sli_hbqbuf_find - Find the hbq buffer associated with a tag
e59058c4
JS
1526 * @phba: Pointer to HBA context object.
1527 * @tag: Tag of the hbq buffer.
1528 *
1529 * This function is called with hbalock held. This function searches
1530 * for the hbq buffer associated with the given tag in the hbq buffer
1531 * list. If it finds the hbq buffer, it returns the hbq_buffer other wise
1532 * it returns NULL.
1533 **/
a6ababd2 1534static struct hbq_dmabuf *
92d7f7b0 1535lpfc_sli_hbqbuf_find(struct lpfc_hba *phba, uint32_t tag)
ed957684 1536{
92d7f7b0
JS
1537 struct lpfc_dmabuf *d_buf;
1538 struct hbq_dmabuf *hbq_buf;
51ef4c26
JS
1539 uint32_t hbqno;
1540
1541 hbqno = tag >> 16;
a0a74e45 1542 if (hbqno >= LPFC_MAX_HBQS)
51ef4c26 1543 return NULL;
ed957684 1544
3772a991 1545 spin_lock_irq(&phba->hbalock);
51ef4c26 1546 list_for_each_entry(d_buf, &phba->hbqs[hbqno].hbq_buffer_list, list) {
92d7f7b0 1547 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
51ef4c26 1548 if (hbq_buf->tag == tag) {
3772a991 1549 spin_unlock_irq(&phba->hbalock);
92d7f7b0 1550 return hbq_buf;
ed957684
JS
1551 }
1552 }
3772a991 1553 spin_unlock_irq(&phba->hbalock);
92d7f7b0 1554 lpfc_printf_log(phba, KERN_ERR, LOG_SLI | LOG_VPORT,
e8b62011 1555 "1803 Bad hbq tag. Data: x%x x%x\n",
a8adb832 1556 tag, phba->hbqs[tag >> 16].buffer_count);
92d7f7b0 1557 return NULL;
ed957684
JS
1558}
1559
e59058c4 1560/**
3621a710 1561 * lpfc_sli_free_hbq - Give back the hbq buffer to firmware
e59058c4
JS
1562 * @phba: Pointer to HBA context object.
1563 * @hbq_buffer: Pointer to HBQ buffer.
1564 *
1565 * This function is called with hbalock. This function gives back
1566 * the hbq buffer to firmware. If the HBQ does not have space to
1567 * post the buffer, it will free the buffer.
1568 **/
ed957684 1569void
51ef4c26 1570lpfc_sli_free_hbq(struct lpfc_hba *phba, struct hbq_dmabuf *hbq_buffer)
ed957684
JS
1571{
1572 uint32_t hbqno;
1573
51ef4c26
JS
1574 if (hbq_buffer) {
1575 hbqno = hbq_buffer->tag >> 16;
3772a991 1576 if (lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer))
51ef4c26 1577 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
ed957684
JS
1578 }
1579}
1580
e59058c4 1581/**
3621a710 1582 * lpfc_sli_chk_mbx_command - Check if the mailbox is a legitimate mailbox
e59058c4
JS
1583 * @mbxCommand: mailbox command code.
1584 *
1585 * This function is called by the mailbox event handler function to verify
1586 * that the completed mailbox command is a legitimate mailbox command. If the
1587 * completed mailbox is not known to the function, it will return MBX_SHUTDOWN
1588 * and the mailbox event handler will take the HBA offline.
1589 **/
dea3101e
JB
1590static int
1591lpfc_sli_chk_mbx_command(uint8_t mbxCommand)
1592{
1593 uint8_t ret;
1594
1595 switch (mbxCommand) {
1596 case MBX_LOAD_SM:
1597 case MBX_READ_NV:
1598 case MBX_WRITE_NV:
a8adb832 1599 case MBX_WRITE_VPARMS:
dea3101e
JB
1600 case MBX_RUN_BIU_DIAG:
1601 case MBX_INIT_LINK:
1602 case MBX_DOWN_LINK:
1603 case MBX_CONFIG_LINK:
1604 case MBX_CONFIG_RING:
1605 case MBX_RESET_RING:
1606 case MBX_READ_CONFIG:
1607 case MBX_READ_RCONFIG:
1608 case MBX_READ_SPARM:
1609 case MBX_READ_STATUS:
1610 case MBX_READ_RPI:
1611 case MBX_READ_XRI:
1612 case MBX_READ_REV:
1613 case MBX_READ_LNK_STAT:
1614 case MBX_REG_LOGIN:
1615 case MBX_UNREG_LOGIN:
1616 case MBX_READ_LA:
1617 case MBX_CLEAR_LA:
1618 case MBX_DUMP_MEMORY:
1619 case MBX_DUMP_CONTEXT:
1620 case MBX_RUN_DIAGS:
1621 case MBX_RESTART:
1622 case MBX_UPDATE_CFG:
1623 case MBX_DOWN_LOAD:
1624 case MBX_DEL_LD_ENTRY:
1625 case MBX_RUN_PROGRAM:
1626 case MBX_SET_MASK:
09372820 1627 case MBX_SET_VARIABLE:
dea3101e 1628 case MBX_UNREG_D_ID:
41415862 1629 case MBX_KILL_BOARD:
dea3101e 1630 case MBX_CONFIG_FARP:
41415862 1631 case MBX_BEACON:
dea3101e
JB
1632 case MBX_LOAD_AREA:
1633 case MBX_RUN_BIU_DIAG64:
1634 case MBX_CONFIG_PORT:
1635 case MBX_READ_SPARM64:
1636 case MBX_READ_RPI64:
1637 case MBX_REG_LOGIN64:
1638 case MBX_READ_LA64:
09372820 1639 case MBX_WRITE_WWN:
dea3101e
JB
1640 case MBX_SET_DEBUG:
1641 case MBX_LOAD_EXP_ROM:
57127f15 1642 case MBX_ASYNCEVT_ENABLE:
92d7f7b0
JS
1643 case MBX_REG_VPI:
1644 case MBX_UNREG_VPI:
858c9f6c 1645 case MBX_HEARTBEAT:
84774a4d
JS
1646 case MBX_PORT_CAPABILITIES:
1647 case MBX_PORT_IOV_CONTROL:
04c68496
JS
1648 case MBX_SLI4_CONFIG:
1649 case MBX_SLI4_REQ_FTRS:
1650 case MBX_REG_FCFI:
1651 case MBX_UNREG_FCFI:
1652 case MBX_REG_VFI:
1653 case MBX_UNREG_VFI:
1654 case MBX_INIT_VPI:
1655 case MBX_INIT_VFI:
1656 case MBX_RESUME_RPI:
dea3101e
JB
1657 ret = mbxCommand;
1658 break;
1659 default:
1660 ret = MBX_SHUTDOWN;
1661 break;
1662 }
2e0fef85 1663 return ret;
dea3101e 1664}
e59058c4
JS
1665
1666/**
3621a710 1667 * lpfc_sli_wake_mbox_wait - lpfc_sli_issue_mbox_wait mbox completion handler
e59058c4
JS
1668 * @phba: Pointer to HBA context object.
1669 * @pmboxq: Pointer to mailbox command.
1670 *
1671 * This is completion handler function for mailbox commands issued from
1672 * lpfc_sli_issue_mbox_wait function. This function is called by the
1673 * mailbox event handler function with no lock held. This function
1674 * will wake up thread waiting on the wait queue pointed by context1
1675 * of the mailbox.
1676 **/
04c68496 1677void
2e0fef85 1678lpfc_sli_wake_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq)
dea3101e
JB
1679{
1680 wait_queue_head_t *pdone_q;
858c9f6c 1681 unsigned long drvr_flag;
dea3101e
JB
1682
1683 /*
1684 * If pdone_q is empty, the driver thread gave up waiting and
1685 * continued running.
1686 */
7054a606 1687 pmboxq->mbox_flag |= LPFC_MBX_WAKE;
858c9f6c 1688 spin_lock_irqsave(&phba->hbalock, drvr_flag);
dea3101e
JB
1689 pdone_q = (wait_queue_head_t *) pmboxq->context1;
1690 if (pdone_q)
1691 wake_up_interruptible(pdone_q);
858c9f6c 1692 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea3101e
JB
1693 return;
1694}
1695
e59058c4
JS
1696
1697/**
3621a710 1698 * lpfc_sli_def_mbox_cmpl - Default mailbox completion handler
e59058c4
JS
1699 * @phba: Pointer to HBA context object.
1700 * @pmb: Pointer to mailbox object.
1701 *
1702 * This function is the default mailbox completion handler. It
1703 * frees the memory resources associated with the completed mailbox
1704 * command. If the completed command is a REG_LOGIN mailbox command,
1705 * this function will issue a UREG_LOGIN to re-claim the RPI.
1706 **/
dea3101e 1707void
2e0fef85 1708lpfc_sli_def_mbox_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea3101e
JB
1709{
1710 struct lpfc_dmabuf *mp;
04c68496 1711 uint16_t rpi, vpi;
7054a606
JS
1712 int rc;
1713
dea3101e 1714 mp = (struct lpfc_dmabuf *) (pmb->context1);
7054a606 1715
dea3101e
JB
1716 if (mp) {
1717 lpfc_mbuf_free(phba, mp->virt, mp->phys);
1718 kfree(mp);
1719 }
7054a606 1720
04c68496
JS
1721 if ((pmb->u.mb.mbxCommand == MBX_UNREG_LOGIN) &&
1722 (phba->sli_rev == LPFC_SLI_REV4))
1723 lpfc_sli4_free_rpi(phba, pmb->u.mb.un.varUnregLogin.rpi);
1724
7054a606
JS
1725 /*
1726 * If a REG_LOGIN succeeded after node is destroyed or node
1727 * is in re-discovery driver need to cleanup the RPI.
1728 */
2e0fef85 1729 if (!(phba->pport->load_flag & FC_UNLOADING) &&
04c68496
JS
1730 pmb->u.mb.mbxCommand == MBX_REG_LOGIN64 &&
1731 !pmb->u.mb.mbxStatus) {
1732 rpi = pmb->u.mb.un.varWords[0];
1733 vpi = pmb->u.mb.un.varRegLogin.vpi - phba->vpi_base;
1734 lpfc_unreg_login(phba, vpi, rpi, pmb);
92d7f7b0 1735 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
7054a606
JS
1736 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
1737 if (rc != MBX_NOT_FINISHED)
1738 return;
1739 }
1740
04c68496
JS
1741 if (bf_get(lpfc_mqe_command, &pmb->u.mqe) == MBX_SLI4_CONFIG)
1742 lpfc_sli4_mbox_cmd_free(phba, pmb);
1743 else
1744 mempool_free(pmb, phba->mbox_mem_pool);
dea3101e
JB
1745}
1746
e59058c4 1747/**
3621a710 1748 * lpfc_sli_handle_mb_event - Handle mailbox completions from firmware
e59058c4
JS
1749 * @phba: Pointer to HBA context object.
1750 *
1751 * This function is called with no lock held. This function processes all
1752 * the completed mailbox commands and gives it to upper layers. The interrupt
1753 * service routine processes mailbox completion interrupt and adds completed
1754 * mailbox commands to the mboxq_cmpl queue and signals the worker thread.
1755 * Worker thread call lpfc_sli_handle_mb_event, which will return the
1756 * completed mailbox commands in mboxq_cmpl queue to the upper layers. This
1757 * function returns the mailbox commands to the upper layer by calling the
1758 * completion handler function of each mailbox.
1759 **/
dea3101e 1760int
2e0fef85 1761lpfc_sli_handle_mb_event(struct lpfc_hba *phba)
dea3101e 1762{
92d7f7b0 1763 MAILBOX_t *pmbox;
dea3101e 1764 LPFC_MBOXQ_t *pmb;
92d7f7b0
JS
1765 int rc;
1766 LIST_HEAD(cmplq);
dea3101e
JB
1767
1768 phba->sli.slistat.mbox_event++;
1769
92d7f7b0
JS
1770 /* Get all completed mailboxe buffers into the cmplq */
1771 spin_lock_irq(&phba->hbalock);
1772 list_splice_init(&phba->sli.mboxq_cmpl, &cmplq);
1773 spin_unlock_irq(&phba->hbalock);
dea3101e 1774
92d7f7b0
JS
1775 /* Get a Mailbox buffer to setup mailbox commands for callback */
1776 do {
1777 list_remove_head(&cmplq, pmb, LPFC_MBOXQ_t, list);
1778 if (pmb == NULL)
1779 break;
2e0fef85 1780
04c68496 1781 pmbox = &pmb->u.mb;
dea3101e 1782
858c9f6c
JS
1783 if (pmbox->mbxCommand != MBX_HEARTBEAT) {
1784 if (pmb->vport) {
1785 lpfc_debugfs_disc_trc(pmb->vport,
1786 LPFC_DISC_TRC_MBOX_VPORT,
1787 "MBOX cmpl vport: cmd:x%x mb:x%x x%x",
1788 (uint32_t)pmbox->mbxCommand,
1789 pmbox->un.varWords[0],
1790 pmbox->un.varWords[1]);
1791 }
1792 else {
1793 lpfc_debugfs_disc_trc(phba->pport,
1794 LPFC_DISC_TRC_MBOX,
1795 "MBOX cmpl: cmd:x%x mb:x%x x%x",
1796 (uint32_t)pmbox->mbxCommand,
1797 pmbox->un.varWords[0],
1798 pmbox->un.varWords[1]);
1799 }
1800 }
1801
dea3101e
JB
1802 /*
1803 * It is a fatal error if unknown mbox command completion.
1804 */
1805 if (lpfc_sli_chk_mbx_command(pmbox->mbxCommand) ==
1806 MBX_SHUTDOWN) {
af901ca1 1807 /* Unknown mailbox command compl */
92d7f7b0 1808 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
e8b62011 1809 "(%d):0323 Unknown Mailbox command "
04c68496 1810 "x%x (x%x) Cmpl\n",
92d7f7b0 1811 pmb->vport ? pmb->vport->vpi : 0,
04c68496
JS
1812 pmbox->mbxCommand,
1813 lpfc_sli4_mbox_opcode_get(phba, pmb));
2e0fef85 1814 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
1815 phba->work_hs = HS_FFER3;
1816 lpfc_handle_eratt(phba);
92d7f7b0 1817 continue;
dea3101e
JB
1818 }
1819
dea3101e
JB
1820 if (pmbox->mbxStatus) {
1821 phba->sli.slistat.mbox_stat_err++;
1822 if (pmbox->mbxStatus == MBXERR_NO_RESOURCES) {
1823 /* Mbox cmd cmpl error - RETRYing */
92d7f7b0
JS
1824 lpfc_printf_log(phba, KERN_INFO,
1825 LOG_MBOX | LOG_SLI,
e8b62011 1826 "(%d):0305 Mbox cmd cmpl "
92d7f7b0 1827 "error - RETRYing Data: x%x "
04c68496 1828 "(x%x) x%x x%x x%x\n",
92d7f7b0
JS
1829 pmb->vport ? pmb->vport->vpi :0,
1830 pmbox->mbxCommand,
04c68496
JS
1831 lpfc_sli4_mbox_opcode_get(phba,
1832 pmb),
92d7f7b0
JS
1833 pmbox->mbxStatus,
1834 pmbox->un.varWords[0],
1835 pmb->vport->port_state);
dea3101e
JB
1836 pmbox->mbxStatus = 0;
1837 pmbox->mbxOwner = OWN_HOST;
dea3101e 1838 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
04c68496 1839 if (rc != MBX_NOT_FINISHED)
92d7f7b0 1840 continue;
dea3101e
JB
1841 }
1842 }
1843
1844 /* Mailbox cmd <cmd> Cmpl <cmpl> */
92d7f7b0 1845 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
04c68496 1846 "(%d):0307 Mailbox cmd x%x (x%x) Cmpl x%p "
dea3101e 1847 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x\n",
92d7f7b0 1848 pmb->vport ? pmb->vport->vpi : 0,
dea3101e 1849 pmbox->mbxCommand,
04c68496 1850 lpfc_sli4_mbox_opcode_get(phba, pmb),
dea3101e
JB
1851 pmb->mbox_cmpl,
1852 *((uint32_t *) pmbox),
1853 pmbox->un.varWords[0],
1854 pmbox->un.varWords[1],
1855 pmbox->un.varWords[2],
1856 pmbox->un.varWords[3],
1857 pmbox->un.varWords[4],
1858 pmbox->un.varWords[5],
1859 pmbox->un.varWords[6],
1860 pmbox->un.varWords[7]);
1861
92d7f7b0 1862 if (pmb->mbox_cmpl)
dea3101e 1863 pmb->mbox_cmpl(phba,pmb);
92d7f7b0
JS
1864 } while (1);
1865 return 0;
1866}
dea3101e 1867
e59058c4 1868/**
3621a710 1869 * lpfc_sli_get_buff - Get the buffer associated with the buffer tag
e59058c4
JS
1870 * @phba: Pointer to HBA context object.
1871 * @pring: Pointer to driver SLI ring object.
1872 * @tag: buffer tag.
1873 *
1874 * This function is called with no lock held. When QUE_BUFTAG_BIT bit
1875 * is set in the tag the buffer is posted for a particular exchange,
1876 * the function will return the buffer without replacing the buffer.
1877 * If the buffer is for unsolicited ELS or CT traffic, this function
1878 * returns the buffer and also posts another buffer to the firmware.
1879 **/
76bb24ef
JS
1880static struct lpfc_dmabuf *
1881lpfc_sli_get_buff(struct lpfc_hba *phba,
9f1e1b50
JS
1882 struct lpfc_sli_ring *pring,
1883 uint32_t tag)
76bb24ef 1884{
9f1e1b50
JS
1885 struct hbq_dmabuf *hbq_entry;
1886
76bb24ef
JS
1887 if (tag & QUE_BUFTAG_BIT)
1888 return lpfc_sli_ring_taggedbuf_get(phba, pring, tag);
9f1e1b50
JS
1889 hbq_entry = lpfc_sli_hbqbuf_find(phba, tag);
1890 if (!hbq_entry)
1891 return NULL;
1892 return &hbq_entry->dbuf;
76bb24ef 1893}
57127f15 1894
3772a991
JS
1895/**
1896 * lpfc_complete_unsol_iocb - Complete an unsolicited sequence
1897 * @phba: Pointer to HBA context object.
1898 * @pring: Pointer to driver SLI ring object.
1899 * @saveq: Pointer to the iocbq struct representing the sequence starting frame.
1900 * @fch_r_ctl: the r_ctl for the first frame of the sequence.
1901 * @fch_type: the type for the first frame of the sequence.
1902 *
1903 * This function is called with no lock held. This function uses the r_ctl and
1904 * type of the received sequence to find the correct callback function to call
1905 * to process the sequence.
1906 **/
1907static int
1908lpfc_complete_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
1909 struct lpfc_iocbq *saveq, uint32_t fch_r_ctl,
1910 uint32_t fch_type)
1911{
1912 int i;
1913
1914 /* unSolicited Responses */
1915 if (pring->prt[0].profile) {
1916 if (pring->prt[0].lpfc_sli_rcv_unsol_event)
1917 (pring->prt[0].lpfc_sli_rcv_unsol_event) (phba, pring,
1918 saveq);
1919 return 1;
1920 }
1921 /* We must search, based on rctl / type
1922 for the right routine */
1923 for (i = 0; i < pring->num_mask; i++) {
1924 if ((pring->prt[i].rctl == fch_r_ctl) &&
1925 (pring->prt[i].type == fch_type)) {
1926 if (pring->prt[i].lpfc_sli_rcv_unsol_event)
1927 (pring->prt[i].lpfc_sli_rcv_unsol_event)
1928 (phba, pring, saveq);
1929 return 1;
1930 }
1931 }
1932 return 0;
1933}
e59058c4
JS
1934
1935/**
3621a710 1936 * lpfc_sli_process_unsol_iocb - Unsolicited iocb handler
e59058c4
JS
1937 * @phba: Pointer to HBA context object.
1938 * @pring: Pointer to driver SLI ring object.
1939 * @saveq: Pointer to the unsolicited iocb.
1940 *
1941 * This function is called with no lock held by the ring event handler
1942 * when there is an unsolicited iocb posted to the response ring by the
1943 * firmware. This function gets the buffer associated with the iocbs
1944 * and calls the event handler for the ring. This function handles both
1945 * qring buffers and hbq buffers.
1946 * When the function returns 1 the caller can free the iocb object otherwise
1947 * upper layer functions will free the iocb objects.
1948 **/
dea3101e
JB
1949static int
1950lpfc_sli_process_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
1951 struct lpfc_iocbq *saveq)
1952{
1953 IOCB_t * irsp;
1954 WORD5 * w5p;
1955 uint32_t Rctl, Type;
3772a991 1956 uint32_t match;
76bb24ef 1957 struct lpfc_iocbq *iocbq;
3163f725 1958 struct lpfc_dmabuf *dmzbuf;
dea3101e
JB
1959
1960 match = 0;
1961 irsp = &(saveq->iocb);
57127f15
JS
1962
1963 if (irsp->ulpCommand == CMD_ASYNC_STATUS) {
1964 if (pring->lpfc_sli_rcv_async_status)
1965 pring->lpfc_sli_rcv_async_status(phba, pring, saveq);
1966 else
1967 lpfc_printf_log(phba,
1968 KERN_WARNING,
1969 LOG_SLI,
1970 "0316 Ring %d handler: unexpected "
1971 "ASYNC_STATUS iocb received evt_code "
1972 "0x%x\n",
1973 pring->ringno,
1974 irsp->un.asyncstat.evt_code);
1975 return 1;
1976 }
1977
3163f725
JS
1978 if ((irsp->ulpCommand == CMD_IOCB_RET_XRI64_CX) &&
1979 (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED)) {
1980 if (irsp->ulpBdeCount > 0) {
1981 dmzbuf = lpfc_sli_get_buff(phba, pring,
1982 irsp->un.ulpWord[3]);
1983 lpfc_in_buf_free(phba, dmzbuf);
1984 }
1985
1986 if (irsp->ulpBdeCount > 1) {
1987 dmzbuf = lpfc_sli_get_buff(phba, pring,
1988 irsp->unsli3.sli3Words[3]);
1989 lpfc_in_buf_free(phba, dmzbuf);
1990 }
1991
1992 if (irsp->ulpBdeCount > 2) {
1993 dmzbuf = lpfc_sli_get_buff(phba, pring,
1994 irsp->unsli3.sli3Words[7]);
1995 lpfc_in_buf_free(phba, dmzbuf);
1996 }
1997
1998 return 1;
1999 }
2000
92d7f7b0 2001 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
76bb24ef
JS
2002 if (irsp->ulpBdeCount != 0) {
2003 saveq->context2 = lpfc_sli_get_buff(phba, pring,
2004 irsp->un.ulpWord[3]);
2005 if (!saveq->context2)
2006 lpfc_printf_log(phba,
2007 KERN_ERR,
2008 LOG_SLI,
2009 "0341 Ring %d Cannot find buffer for "
2010 "an unsolicited iocb. tag 0x%x\n",
2011 pring->ringno,
2012 irsp->un.ulpWord[3]);
76bb24ef
JS
2013 }
2014 if (irsp->ulpBdeCount == 2) {
2015 saveq->context3 = lpfc_sli_get_buff(phba, pring,
2016 irsp->unsli3.sli3Words[7]);
2017 if (!saveq->context3)
2018 lpfc_printf_log(phba,
2019 KERN_ERR,
2020 LOG_SLI,
2021 "0342 Ring %d Cannot find buffer for an"
2022 " unsolicited iocb. tag 0x%x\n",
2023 pring->ringno,
2024 irsp->unsli3.sli3Words[7]);
2025 }
2026 list_for_each_entry(iocbq, &saveq->list, list) {
76bb24ef 2027 irsp = &(iocbq->iocb);
76bb24ef
JS
2028 if (irsp->ulpBdeCount != 0) {
2029 iocbq->context2 = lpfc_sli_get_buff(phba, pring,
2030 irsp->un.ulpWord[3]);
9c2face6 2031 if (!iocbq->context2)
76bb24ef
JS
2032 lpfc_printf_log(phba,
2033 KERN_ERR,
2034 LOG_SLI,
2035 "0343 Ring %d Cannot find "
2036 "buffer for an unsolicited iocb"
2037 ". tag 0x%x\n", pring->ringno,
92d7f7b0 2038 irsp->un.ulpWord[3]);
76bb24ef
JS
2039 }
2040 if (irsp->ulpBdeCount == 2) {
2041 iocbq->context3 = lpfc_sli_get_buff(phba, pring,
51ef4c26 2042 irsp->unsli3.sli3Words[7]);
9c2face6 2043 if (!iocbq->context3)
76bb24ef
JS
2044 lpfc_printf_log(phba,
2045 KERN_ERR,
2046 LOG_SLI,
2047 "0344 Ring %d Cannot find "
2048 "buffer for an unsolicited "
2049 "iocb. tag 0x%x\n",
2050 pring->ringno,
2051 irsp->unsli3.sli3Words[7]);
2052 }
2053 }
92d7f7b0 2054 }
9c2face6
JS
2055 if (irsp->ulpBdeCount != 0 &&
2056 (irsp->ulpCommand == CMD_IOCB_RCV_CONT64_CX ||
2057 irsp->ulpStatus == IOSTAT_INTERMED_RSP)) {
2058 int found = 0;
2059
2060 /* search continue save q for same XRI */
2061 list_for_each_entry(iocbq, &pring->iocb_continue_saveq, clist) {
2062 if (iocbq->iocb.ulpContext == saveq->iocb.ulpContext) {
2063 list_add_tail(&saveq->list, &iocbq->list);
2064 found = 1;
2065 break;
2066 }
2067 }
2068 if (!found)
2069 list_add_tail(&saveq->clist,
2070 &pring->iocb_continue_saveq);
2071 if (saveq->iocb.ulpStatus != IOSTAT_INTERMED_RSP) {
2072 list_del_init(&iocbq->clist);
2073 saveq = iocbq;
2074 irsp = &(saveq->iocb);
2075 } else
2076 return 0;
2077 }
2078 if ((irsp->ulpCommand == CMD_RCV_ELS_REQ64_CX) ||
2079 (irsp->ulpCommand == CMD_RCV_ELS_REQ_CX) ||
2080 (irsp->ulpCommand == CMD_IOCB_RCV_ELS64_CX)) {
6a9c52cf
JS
2081 Rctl = FC_RCTL_ELS_REQ;
2082 Type = FC_TYPE_ELS;
9c2face6
JS
2083 } else {
2084 w5p = (WORD5 *)&(saveq->iocb.un.ulpWord[5]);
2085 Rctl = w5p->hcsw.Rctl;
2086 Type = w5p->hcsw.Type;
2087
2088 /* Firmware Workaround */
2089 if ((Rctl == 0) && (pring->ringno == LPFC_ELS_RING) &&
2090 (irsp->ulpCommand == CMD_RCV_SEQUENCE64_CX ||
2091 irsp->ulpCommand == CMD_IOCB_RCV_SEQ64_CX)) {
6a9c52cf
JS
2092 Rctl = FC_RCTL_ELS_REQ;
2093 Type = FC_TYPE_ELS;
9c2face6
JS
2094 w5p->hcsw.Rctl = Rctl;
2095 w5p->hcsw.Type = Type;
2096 }
2097 }
92d7f7b0 2098
3772a991 2099 if (!lpfc_complete_unsol_iocb(phba, pring, saveq, Rctl, Type))
92d7f7b0 2100 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
e8b62011 2101 "0313 Ring %d handler: unexpected Rctl x%x "
92d7f7b0 2102 "Type x%x received\n",
e8b62011 2103 pring->ringno, Rctl, Type);
3772a991 2104
92d7f7b0 2105 return 1;
dea3101e
JB
2106}
2107
e59058c4 2108/**
3621a710 2109 * lpfc_sli_iocbq_lookup - Find command iocb for the given response iocb
e59058c4
JS
2110 * @phba: Pointer to HBA context object.
2111 * @pring: Pointer to driver SLI ring object.
2112 * @prspiocb: Pointer to response iocb object.
2113 *
2114 * This function looks up the iocb_lookup table to get the command iocb
2115 * corresponding to the given response iocb using the iotag of the
2116 * response iocb. This function is called with the hbalock held.
2117 * This function returns the command iocb object if it finds the command
2118 * iocb else returns NULL.
2119 **/
dea3101e 2120static struct lpfc_iocbq *
2e0fef85
JS
2121lpfc_sli_iocbq_lookup(struct lpfc_hba *phba,
2122 struct lpfc_sli_ring *pring,
2123 struct lpfc_iocbq *prspiocb)
dea3101e 2124{
dea3101e
JB
2125 struct lpfc_iocbq *cmd_iocb = NULL;
2126 uint16_t iotag;
2127
604a3e30
JB
2128 iotag = prspiocb->iocb.ulpIoTag;
2129
2130 if (iotag != 0 && iotag <= phba->sli.last_iotag) {
2131 cmd_iocb = phba->sli.iocbq_lookup[iotag];
92d7f7b0 2132 list_del_init(&cmd_iocb->list);
604a3e30
JB
2133 pring->txcmplq_cnt--;
2134 return cmd_iocb;
dea3101e
JB
2135 }
2136
dea3101e 2137 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011 2138 "0317 iotag x%x is out off "
604a3e30 2139 "range: max iotag x%x wd0 x%x\n",
e8b62011 2140 iotag, phba->sli.last_iotag,
604a3e30 2141 *(((uint32_t *) &prspiocb->iocb) + 7));
dea3101e
JB
2142 return NULL;
2143}
2144
3772a991
JS
2145/**
2146 * lpfc_sli_iocbq_lookup_by_tag - Find command iocb for the iotag
2147 * @phba: Pointer to HBA context object.
2148 * @pring: Pointer to driver SLI ring object.
2149 * @iotag: IOCB tag.
2150 *
2151 * This function looks up the iocb_lookup table to get the command iocb
2152 * corresponding to the given iotag. This function is called with the
2153 * hbalock held.
2154 * This function returns the command iocb object if it finds the command
2155 * iocb else returns NULL.
2156 **/
2157static struct lpfc_iocbq *
2158lpfc_sli_iocbq_lookup_by_tag(struct lpfc_hba *phba,
2159 struct lpfc_sli_ring *pring, uint16_t iotag)
2160{
2161 struct lpfc_iocbq *cmd_iocb;
2162
2163 if (iotag != 0 && iotag <= phba->sli.last_iotag) {
2164 cmd_iocb = phba->sli.iocbq_lookup[iotag];
2165 list_del_init(&cmd_iocb->list);
2166 pring->txcmplq_cnt--;
2167 return cmd_iocb;
2168 }
2169
2170 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2171 "0372 iotag x%x is out off range: max iotag (x%x)\n",
2172 iotag, phba->sli.last_iotag);
2173 return NULL;
2174}
2175
e59058c4 2176/**
3621a710 2177 * lpfc_sli_process_sol_iocb - process solicited iocb completion
e59058c4
JS
2178 * @phba: Pointer to HBA context object.
2179 * @pring: Pointer to driver SLI ring object.
2180 * @saveq: Pointer to the response iocb to be processed.
2181 *
2182 * This function is called by the ring event handler for non-fcp
2183 * rings when there is a new response iocb in the response ring.
2184 * The caller is not required to hold any locks. This function
2185 * gets the command iocb associated with the response iocb and
2186 * calls the completion handler for the command iocb. If there
2187 * is no completion handler, the function will free the resources
2188 * associated with command iocb. If the response iocb is for
2189 * an already aborted command iocb, the status of the completion
2190 * is changed to IOSTAT_LOCAL_REJECT/IOERR_SLI_ABORTED.
2191 * This function always returns 1.
2192 **/
dea3101e 2193static int
2e0fef85 2194lpfc_sli_process_sol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
dea3101e
JB
2195 struct lpfc_iocbq *saveq)
2196{
2e0fef85 2197 struct lpfc_iocbq *cmdiocbp;
dea3101e
JB
2198 int rc = 1;
2199 unsigned long iflag;
2200
2201 /* Based on the iotag field, get the cmd IOCB from the txcmplq */
2e0fef85 2202 spin_lock_irqsave(&phba->hbalock, iflag);
604a3e30 2203 cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring, saveq);
2e0fef85
JS
2204 spin_unlock_irqrestore(&phba->hbalock, iflag);
2205
dea3101e
JB
2206 if (cmdiocbp) {
2207 if (cmdiocbp->iocb_cmpl) {
ea2151b4
JS
2208 /*
2209 * If an ELS command failed send an event to mgmt
2210 * application.
2211 */
2212 if (saveq->iocb.ulpStatus &&
2213 (pring->ringno == LPFC_ELS_RING) &&
2214 (cmdiocbp->iocb.ulpCommand ==
2215 CMD_ELS_REQUEST64_CR))
2216 lpfc_send_els_failure_event(phba,
2217 cmdiocbp, saveq);
2218
dea3101e
JB
2219 /*
2220 * Post all ELS completions to the worker thread.
2221 * All other are passed to the completion callback.
2222 */
2223 if (pring->ringno == LPFC_ELS_RING) {
07951076
JS
2224 if (cmdiocbp->iocb_flag & LPFC_DRIVER_ABORTED) {
2225 cmdiocbp->iocb_flag &=
2226 ~LPFC_DRIVER_ABORTED;
2227 saveq->iocb.ulpStatus =
2228 IOSTAT_LOCAL_REJECT;
2229 saveq->iocb.un.ulpWord[4] =
2230 IOERR_SLI_ABORTED;
0ff10d46
JS
2231
2232 /* Firmware could still be in progress
2233 * of DMAing payload, so don't free data
2234 * buffer till after a hbeat.
2235 */
2236 saveq->iocb_flag |= LPFC_DELAY_MEM_FREE;
07951076 2237 }
dea3101e 2238 }
2e0fef85 2239 (cmdiocbp->iocb_cmpl) (phba, cmdiocbp, saveq);
604a3e30
JB
2240 } else
2241 lpfc_sli_release_iocbq(phba, cmdiocbp);
dea3101e
JB
2242 } else {
2243 /*
2244 * Unknown initiating command based on the response iotag.
2245 * This could be the case on the ELS ring because of
2246 * lpfc_els_abort().
2247 */
2248 if (pring->ringno != LPFC_ELS_RING) {
2249 /*
2250 * Ring <ringno> handler: unexpected completion IoTag
2251 * <IoTag>
2252 */
a257bf90 2253 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
e8b62011
JS
2254 "0322 Ring %d handler: "
2255 "unexpected completion IoTag x%x "
2256 "Data: x%x x%x x%x x%x\n",
2257 pring->ringno,
2258 saveq->iocb.ulpIoTag,
2259 saveq->iocb.ulpStatus,
2260 saveq->iocb.un.ulpWord[4],
2261 saveq->iocb.ulpCommand,
2262 saveq->iocb.ulpContext);
dea3101e
JB
2263 }
2264 }
68876920 2265
dea3101e
JB
2266 return rc;
2267}
2268
e59058c4 2269/**
3621a710 2270 * lpfc_sli_rsp_pointers_error - Response ring pointer error handler
e59058c4
JS
2271 * @phba: Pointer to HBA context object.
2272 * @pring: Pointer to driver SLI ring object.
2273 *
2274 * This function is called from the iocb ring event handlers when
2275 * put pointer is ahead of the get pointer for a ring. This function signal
2276 * an error attention condition to the worker thread and the worker
2277 * thread will transition the HBA to offline state.
2278 **/
2e0fef85
JS
2279static void
2280lpfc_sli_rsp_pointers_error(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
875fbdfe 2281{
34b02dcd 2282 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
875fbdfe 2283 /*
025dfdaf 2284 * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
875fbdfe
JSEC
2285 * rsp ring <portRspMax>
2286 */
2287 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011 2288 "0312 Ring %d handler: portRspPut %d "
025dfdaf 2289 "is bigger than rsp ring %d\n",
e8b62011 2290 pring->ringno, le32_to_cpu(pgp->rspPutInx),
875fbdfe
JSEC
2291 pring->numRiocb);
2292
2e0fef85 2293 phba->link_state = LPFC_HBA_ERROR;
875fbdfe
JSEC
2294
2295 /*
2296 * All error attention handlers are posted to
2297 * worker thread
2298 */
2299 phba->work_ha |= HA_ERATT;
2300 phba->work_hs = HS_FFER3;
92d7f7b0 2301
5e9d9b82 2302 lpfc_worker_wake_up(phba);
875fbdfe
JSEC
2303
2304 return;
2305}
2306
9399627f 2307/**
3621a710 2308 * lpfc_poll_eratt - Error attention polling timer timeout handler
9399627f
JS
2309 * @ptr: Pointer to address of HBA context object.
2310 *
2311 * This function is invoked by the Error Attention polling timer when the
2312 * timer times out. It will check the SLI Error Attention register for
2313 * possible attention events. If so, it will post an Error Attention event
2314 * and wake up worker thread to process it. Otherwise, it will set up the
2315 * Error Attention polling timer for the next poll.
2316 **/
2317void lpfc_poll_eratt(unsigned long ptr)
2318{
2319 struct lpfc_hba *phba;
2320 uint32_t eratt = 0;
2321
2322 phba = (struct lpfc_hba *)ptr;
2323
2324 /* Check chip HA register for error event */
2325 eratt = lpfc_sli_check_eratt(phba);
2326
2327 if (eratt)
2328 /* Tell the worker thread there is work to do */
2329 lpfc_worker_wake_up(phba);
2330 else
2331 /* Restart the timer for next eratt poll */
2332 mod_timer(&phba->eratt_poll, jiffies +
2333 HZ * LPFC_ERATT_POLL_INTERVAL);
2334 return;
2335}
2336
875fbdfe 2337
e59058c4 2338/**
3621a710 2339 * lpfc_sli_handle_fast_ring_event - Handle ring events on FCP ring
e59058c4
JS
2340 * @phba: Pointer to HBA context object.
2341 * @pring: Pointer to driver SLI ring object.
2342 * @mask: Host attention register mask for this ring.
2343 *
2344 * This function is called from the interrupt context when there is a ring
2345 * event for the fcp ring. The caller does not hold any lock.
2346 * The function processes each response iocb in the response ring until it
2347 * finds an iocb with LE bit set and chains all the iocbs upto the iocb with
2348 * LE bit set. The function will call the completion handler of the command iocb
2349 * if the response iocb indicates a completion for a command iocb or it is
2350 * an abort completion. The function will call lpfc_sli_process_unsol_iocb
2351 * function if this is an unsolicited iocb.
dea3101e 2352 * This routine presumes LPFC_FCP_RING handling and doesn't bother
45ed1190
JS
2353 * to check it explicitly.
2354 */
2355int
2e0fef85
JS
2356lpfc_sli_handle_fast_ring_event(struct lpfc_hba *phba,
2357 struct lpfc_sli_ring *pring, uint32_t mask)
dea3101e 2358{
34b02dcd 2359 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
dea3101e 2360 IOCB_t *irsp = NULL;
87f6eaff 2361 IOCB_t *entry = NULL;
dea3101e
JB
2362 struct lpfc_iocbq *cmdiocbq = NULL;
2363 struct lpfc_iocbq rspiocbq;
dea3101e
JB
2364 uint32_t status;
2365 uint32_t portRspPut, portRspMax;
2366 int rc = 1;
2367 lpfc_iocb_type type;
2368 unsigned long iflag;
2369 uint32_t rsp_cmpl = 0;
dea3101e 2370
2e0fef85 2371 spin_lock_irqsave(&phba->hbalock, iflag);
dea3101e
JB
2372 pring->stats.iocb_event++;
2373
dea3101e
JB
2374 /*
2375 * The next available response entry should never exceed the maximum
2376 * entries. If it does, treat it as an adapter hardware error.
2377 */
2378 portRspMax = pring->numRiocb;
2379 portRspPut = le32_to_cpu(pgp->rspPutInx);
2380 if (unlikely(portRspPut >= portRspMax)) {
875fbdfe 2381 lpfc_sli_rsp_pointers_error(phba, pring);
2e0fef85 2382 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea3101e
JB
2383 return 1;
2384 }
45ed1190
JS
2385 if (phba->fcp_ring_in_use) {
2386 spin_unlock_irqrestore(&phba->hbalock, iflag);
2387 return 1;
2388 } else
2389 phba->fcp_ring_in_use = 1;
dea3101e
JB
2390
2391 rmb();
2392 while (pring->rspidx != portRspPut) {
87f6eaff
JSEC
2393 /*
2394 * Fetch an entry off the ring and copy it into a local data
2395 * structure. The copy involves a byte-swap since the
2396 * network byte order and pci byte orders are different.
2397 */
ed957684 2398 entry = lpfc_resp_iocb(phba, pring);
858c9f6c 2399 phba->last_completion_time = jiffies;
875fbdfe
JSEC
2400
2401 if (++pring->rspidx >= portRspMax)
2402 pring->rspidx = 0;
2403
87f6eaff
JSEC
2404 lpfc_sli_pcimem_bcopy((uint32_t *) entry,
2405 (uint32_t *) &rspiocbq.iocb,
ed957684 2406 phba->iocb_rsp_size);
a4bc3379 2407 INIT_LIST_HEAD(&(rspiocbq.list));
87f6eaff
JSEC
2408 irsp = &rspiocbq.iocb;
2409
dea3101e
JB
2410 type = lpfc_sli_iocb_cmd_type(irsp->ulpCommand & CMD_IOCB_MASK);
2411 pring->stats.iocb_rsp++;
2412 rsp_cmpl++;
2413
2414 if (unlikely(irsp->ulpStatus)) {
92d7f7b0
JS
2415 /*
2416 * If resource errors reported from HBA, reduce
2417 * queuedepths of the SCSI device.
2418 */
2419 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
2420 (irsp->un.ulpWord[4] == IOERR_NO_RESOURCES)) {
2421 spin_unlock_irqrestore(&phba->hbalock, iflag);
3772a991 2422 phba->lpfc_rampdown_queue_depth(phba);
92d7f7b0
JS
2423 spin_lock_irqsave(&phba->hbalock, iflag);
2424 }
2425
dea3101e
JB
2426 /* Rsp ring <ringno> error: IOCB */
2427 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
e8b62011 2428 "0336 Rsp Ring %d error: IOCB Data: "
92d7f7b0 2429 "x%x x%x x%x x%x x%x x%x x%x x%x\n",
e8b62011 2430 pring->ringno,
92d7f7b0
JS
2431 irsp->un.ulpWord[0],
2432 irsp->un.ulpWord[1],
2433 irsp->un.ulpWord[2],
2434 irsp->un.ulpWord[3],
2435 irsp->un.ulpWord[4],
2436 irsp->un.ulpWord[5],
d7c255b2
JS
2437 *(uint32_t *)&irsp->un1,
2438 *((uint32_t *)&irsp->un1 + 1));
dea3101e
JB
2439 }
2440
2441 switch (type) {
2442 case LPFC_ABORT_IOCB:
2443 case LPFC_SOL_IOCB:
2444 /*
2445 * Idle exchange closed via ABTS from port. No iocb
2446 * resources need to be recovered.
2447 */
2448 if (unlikely(irsp->ulpCommand == CMD_XRI_ABORTED_CX)) {
dca9479b 2449 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
e8b62011 2450 "0333 IOCB cmd 0x%x"
dca9479b 2451 " processed. Skipping"
92d7f7b0 2452 " completion\n",
dca9479b 2453 irsp->ulpCommand);
dea3101e
JB
2454 break;
2455 }
2456
604a3e30
JB
2457 cmdiocbq = lpfc_sli_iocbq_lookup(phba, pring,
2458 &rspiocbq);
dea3101e 2459 if ((cmdiocbq) && (cmdiocbq->iocb_cmpl)) {
2e0fef85
JS
2460 spin_unlock_irqrestore(&phba->hbalock,
2461 iflag);
b808608b
JW
2462 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq,
2463 &rspiocbq);
2e0fef85 2464 spin_lock_irqsave(&phba->hbalock,
b808608b
JW
2465 iflag);
2466 }
dea3101e 2467 break;
a4bc3379 2468 case LPFC_UNSOL_IOCB:
2e0fef85 2469 spin_unlock_irqrestore(&phba->hbalock, iflag);
a4bc3379 2470 lpfc_sli_process_unsol_iocb(phba, pring, &rspiocbq);
2e0fef85 2471 spin_lock_irqsave(&phba->hbalock, iflag);
a4bc3379 2472 break;
dea3101e
JB
2473 default:
2474 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
2475 char adaptermsg[LPFC_MAX_ADPTMSG];
2476 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
2477 memcpy(&adaptermsg[0], (uint8_t *) irsp,
2478 MAX_MSG_DATA);
898eb71c
JP
2479 dev_warn(&((phba->pcidev)->dev),
2480 "lpfc%d: %s\n",
dea3101e
JB
2481 phba->brd_no, adaptermsg);
2482 } else {
2483 /* Unknown IOCB command */
2484 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011 2485 "0334 Unknown IOCB command "
92d7f7b0 2486 "Data: x%x, x%x x%x x%x x%x\n",
e8b62011 2487 type, irsp->ulpCommand,
92d7f7b0
JS
2488 irsp->ulpStatus,
2489 irsp->ulpIoTag,
2490 irsp->ulpContext);
dea3101e
JB
2491 }
2492 break;
2493 }
2494
2495 /*
2496 * The response IOCB has been processed. Update the ring
2497 * pointer in SLIM. If the port response put pointer has not
2498 * been updated, sync the pgp->rspPutInx and fetch the new port
2499 * response put pointer.
2500 */
ed957684 2501 writel(pring->rspidx, &phba->host_gp[pring->ringno].rspGetInx);
dea3101e
JB
2502
2503 if (pring->rspidx == portRspPut)
2504 portRspPut = le32_to_cpu(pgp->rspPutInx);
2505 }
2506
2507 if ((rsp_cmpl > 0) && (mask & HA_R0RE_REQ)) {
2508 pring->stats.iocb_rsp_full++;
2509 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
2510 writel(status, phba->CAregaddr);
2511 readl(phba->CAregaddr);
2512 }
2513 if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
2514 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
2515 pring->stats.iocb_cmd_empty++;
2516
2517 /* Force update of the local copy of cmdGetInx */
2518 pring->local_getidx = le32_to_cpu(pgp->cmdGetInx);
2519 lpfc_sli_resume_iocb(phba, pring);
2520
2521 if ((pring->lpfc_sli_cmd_available))
2522 (pring->lpfc_sli_cmd_available) (phba, pring);
2523
2524 }
2525
45ed1190 2526 phba->fcp_ring_in_use = 0;
2e0fef85 2527 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea3101e
JB
2528 return rc;
2529}
2530
e59058c4 2531/**
3772a991
JS
2532 * lpfc_sli_sp_handle_rspiocb - Handle slow-path response iocb
2533 * @phba: Pointer to HBA context object.
2534 * @pring: Pointer to driver SLI ring object.
2535 * @rspiocbp: Pointer to driver response IOCB object.
2536 *
2537 * This function is called from the worker thread when there is a slow-path
2538 * response IOCB to process. This function chains all the response iocbs until
2539 * seeing the iocb with the LE bit set. The function will call
2540 * lpfc_sli_process_sol_iocb function if the response iocb indicates a
2541 * completion of a command iocb. The function will call the
2542 * lpfc_sli_process_unsol_iocb function if this is an unsolicited iocb.
2543 * The function frees the resources or calls the completion handler if this
2544 * iocb is an abort completion. The function returns NULL when the response
2545 * iocb has the LE bit set and all the chained iocbs are processed, otherwise
2546 * this function shall chain the iocb on to the iocb_continueq and return the
2547 * response iocb passed in.
2548 **/
2549static struct lpfc_iocbq *
2550lpfc_sli_sp_handle_rspiocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2551 struct lpfc_iocbq *rspiocbp)
2552{
2553 struct lpfc_iocbq *saveq;
2554 struct lpfc_iocbq *cmdiocbp;
2555 struct lpfc_iocbq *next_iocb;
2556 IOCB_t *irsp = NULL;
2557 uint32_t free_saveq;
2558 uint8_t iocb_cmd_type;
2559 lpfc_iocb_type type;
2560 unsigned long iflag;
2561 int rc;
2562
2563 spin_lock_irqsave(&phba->hbalock, iflag);
2564 /* First add the response iocb to the countinueq list */
2565 list_add_tail(&rspiocbp->list, &(pring->iocb_continueq));
2566 pring->iocb_continueq_cnt++;
2567
2568 /* Now, determine whetehr the list is completed for processing */
2569 irsp = &rspiocbp->iocb;
2570 if (irsp->ulpLe) {
2571 /*
2572 * By default, the driver expects to free all resources
2573 * associated with this iocb completion.
2574 */
2575 free_saveq = 1;
2576 saveq = list_get_first(&pring->iocb_continueq,
2577 struct lpfc_iocbq, list);
2578 irsp = &(saveq->iocb);
2579 list_del_init(&pring->iocb_continueq);
2580 pring->iocb_continueq_cnt = 0;
2581
2582 pring->stats.iocb_rsp++;
2583
2584 /*
2585 * If resource errors reported from HBA, reduce
2586 * queuedepths of the SCSI device.
2587 */
2588 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
2589 (irsp->un.ulpWord[4] == IOERR_NO_RESOURCES)) {
2590 spin_unlock_irqrestore(&phba->hbalock, iflag);
2591 phba->lpfc_rampdown_queue_depth(phba);
2592 spin_lock_irqsave(&phba->hbalock, iflag);
2593 }
2594
2595 if (irsp->ulpStatus) {
2596 /* Rsp ring <ringno> error: IOCB */
2597 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
2598 "0328 Rsp Ring %d error: "
2599 "IOCB Data: "
2600 "x%x x%x x%x x%x "
2601 "x%x x%x x%x x%x "
2602 "x%x x%x x%x x%x "
2603 "x%x x%x x%x x%x\n",
2604 pring->ringno,
2605 irsp->un.ulpWord[0],
2606 irsp->un.ulpWord[1],
2607 irsp->un.ulpWord[2],
2608 irsp->un.ulpWord[3],
2609 irsp->un.ulpWord[4],
2610 irsp->un.ulpWord[5],
2611 *(((uint32_t *) irsp) + 6),
2612 *(((uint32_t *) irsp) + 7),
2613 *(((uint32_t *) irsp) + 8),
2614 *(((uint32_t *) irsp) + 9),
2615 *(((uint32_t *) irsp) + 10),
2616 *(((uint32_t *) irsp) + 11),
2617 *(((uint32_t *) irsp) + 12),
2618 *(((uint32_t *) irsp) + 13),
2619 *(((uint32_t *) irsp) + 14),
2620 *(((uint32_t *) irsp) + 15));
2621 }
2622
2623 /*
2624 * Fetch the IOCB command type and call the correct completion
2625 * routine. Solicited and Unsolicited IOCBs on the ELS ring
2626 * get freed back to the lpfc_iocb_list by the discovery
2627 * kernel thread.
2628 */
2629 iocb_cmd_type = irsp->ulpCommand & CMD_IOCB_MASK;
2630 type = lpfc_sli_iocb_cmd_type(iocb_cmd_type);
2631 switch (type) {
2632 case LPFC_SOL_IOCB:
2633 spin_unlock_irqrestore(&phba->hbalock, iflag);
2634 rc = lpfc_sli_process_sol_iocb(phba, pring, saveq);
2635 spin_lock_irqsave(&phba->hbalock, iflag);
2636 break;
2637
2638 case LPFC_UNSOL_IOCB:
2639 spin_unlock_irqrestore(&phba->hbalock, iflag);
2640 rc = lpfc_sli_process_unsol_iocb(phba, pring, saveq);
2641 spin_lock_irqsave(&phba->hbalock, iflag);
2642 if (!rc)
2643 free_saveq = 0;
2644 break;
2645
2646 case LPFC_ABORT_IOCB:
2647 cmdiocbp = NULL;
2648 if (irsp->ulpCommand != CMD_XRI_ABORTED_CX)
2649 cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring,
2650 saveq);
2651 if (cmdiocbp) {
2652 /* Call the specified completion routine */
2653 if (cmdiocbp->iocb_cmpl) {
2654 spin_unlock_irqrestore(&phba->hbalock,
2655 iflag);
2656 (cmdiocbp->iocb_cmpl)(phba, cmdiocbp,
2657 saveq);
2658 spin_lock_irqsave(&phba->hbalock,
2659 iflag);
2660 } else
2661 __lpfc_sli_release_iocbq(phba,
2662 cmdiocbp);
2663 }
2664 break;
2665
2666 case LPFC_UNKNOWN_IOCB:
2667 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
2668 char adaptermsg[LPFC_MAX_ADPTMSG];
2669 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
2670 memcpy(&adaptermsg[0], (uint8_t *)irsp,
2671 MAX_MSG_DATA);
2672 dev_warn(&((phba->pcidev)->dev),
2673 "lpfc%d: %s\n",
2674 phba->brd_no, adaptermsg);
2675 } else {
2676 /* Unknown IOCB command */
2677 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2678 "0335 Unknown IOCB "
2679 "command Data: x%x "
2680 "x%x x%x x%x\n",
2681 irsp->ulpCommand,
2682 irsp->ulpStatus,
2683 irsp->ulpIoTag,
2684 irsp->ulpContext);
2685 }
2686 break;
2687 }
2688
2689 if (free_saveq) {
2690 list_for_each_entry_safe(rspiocbp, next_iocb,
2691 &saveq->list, list) {
2692 list_del(&rspiocbp->list);
2693 __lpfc_sli_release_iocbq(phba, rspiocbp);
2694 }
2695 __lpfc_sli_release_iocbq(phba, saveq);
2696 }
2697 rspiocbp = NULL;
2698 }
2699 spin_unlock_irqrestore(&phba->hbalock, iflag);
2700 return rspiocbp;
2701}
2702
2703/**
2704 * lpfc_sli_handle_slow_ring_event - Wrapper func for handling slow-path iocbs
e59058c4
JS
2705 * @phba: Pointer to HBA context object.
2706 * @pring: Pointer to driver SLI ring object.
2707 * @mask: Host attention register mask for this ring.
2708 *
3772a991
JS
2709 * This routine wraps the actual slow_ring event process routine from the
2710 * API jump table function pointer from the lpfc_hba struct.
e59058c4 2711 **/
3772a991 2712void
2e0fef85
JS
2713lpfc_sli_handle_slow_ring_event(struct lpfc_hba *phba,
2714 struct lpfc_sli_ring *pring, uint32_t mask)
3772a991
JS
2715{
2716 phba->lpfc_sli_handle_slow_ring_event(phba, pring, mask);
2717}
2718
2719/**
2720 * lpfc_sli_handle_slow_ring_event_s3 - Handle SLI3 ring event for non-FCP rings
2721 * @phba: Pointer to HBA context object.
2722 * @pring: Pointer to driver SLI ring object.
2723 * @mask: Host attention register mask for this ring.
2724 *
2725 * This function is called from the worker thread when there is a ring event
2726 * for non-fcp rings. The caller does not hold any lock. The function will
2727 * remove each response iocb in the response ring and calls the handle
2728 * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
2729 **/
2730static void
2731lpfc_sli_handle_slow_ring_event_s3(struct lpfc_hba *phba,
2732 struct lpfc_sli_ring *pring, uint32_t mask)
dea3101e 2733{
34b02dcd 2734 struct lpfc_pgp *pgp;
dea3101e
JB
2735 IOCB_t *entry;
2736 IOCB_t *irsp = NULL;
2737 struct lpfc_iocbq *rspiocbp = NULL;
dea3101e 2738 uint32_t portRspPut, portRspMax;
dea3101e 2739 unsigned long iflag;
3772a991 2740 uint32_t status;
dea3101e 2741
34b02dcd 2742 pgp = &phba->port_gp[pring->ringno];
2e0fef85 2743 spin_lock_irqsave(&phba->hbalock, iflag);
dea3101e
JB
2744 pring->stats.iocb_event++;
2745
dea3101e
JB
2746 /*
2747 * The next available response entry should never exceed the maximum
2748 * entries. If it does, treat it as an adapter hardware error.
2749 */
2750 portRspMax = pring->numRiocb;
2751 portRspPut = le32_to_cpu(pgp->rspPutInx);
2752 if (portRspPut >= portRspMax) {
2753 /*
025dfdaf 2754 * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
dea3101e
JB
2755 * rsp ring <portRspMax>
2756 */
ed957684 2757 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011 2758 "0303 Ring %d handler: portRspPut %d "
025dfdaf 2759 "is bigger than rsp ring %d\n",
e8b62011 2760 pring->ringno, portRspPut, portRspMax);
dea3101e 2761
2e0fef85
JS
2762 phba->link_state = LPFC_HBA_ERROR;
2763 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea3101e
JB
2764
2765 phba->work_hs = HS_FFER3;
2766 lpfc_handle_eratt(phba);
2767
3772a991 2768 return;
dea3101e
JB
2769 }
2770
2771 rmb();
dea3101e
JB
2772 while (pring->rspidx != portRspPut) {
2773 /*
2774 * Build a completion list and call the appropriate handler.
2775 * The process is to get the next available response iocb, get
2776 * a free iocb from the list, copy the response data into the
2777 * free iocb, insert to the continuation list, and update the
2778 * next response index to slim. This process makes response
2779 * iocb's in the ring available to DMA as fast as possible but
2780 * pays a penalty for a copy operation. Since the iocb is
2781 * only 32 bytes, this penalty is considered small relative to
2782 * the PCI reads for register values and a slim write. When
2783 * the ulpLe field is set, the entire Command has been
2784 * received.
2785 */
ed957684
JS
2786 entry = lpfc_resp_iocb(phba, pring);
2787
858c9f6c 2788 phba->last_completion_time = jiffies;
2e0fef85 2789 rspiocbp = __lpfc_sli_get_iocbq(phba);
dea3101e
JB
2790 if (rspiocbp == NULL) {
2791 printk(KERN_ERR "%s: out of buffers! Failing "
cadbd4a5 2792 "completion.\n", __func__);
dea3101e
JB
2793 break;
2794 }
2795
ed957684
JS
2796 lpfc_sli_pcimem_bcopy(entry, &rspiocbp->iocb,
2797 phba->iocb_rsp_size);
dea3101e
JB
2798 irsp = &rspiocbp->iocb;
2799
2800 if (++pring->rspidx >= portRspMax)
2801 pring->rspidx = 0;
2802
a58cbd52
JS
2803 if (pring->ringno == LPFC_ELS_RING) {
2804 lpfc_debugfs_slow_ring_trc(phba,
2805 "IOCB rsp ring: wd4:x%08x wd6:x%08x wd7:x%08x",
2806 *(((uint32_t *) irsp) + 4),
2807 *(((uint32_t *) irsp) + 6),
2808 *(((uint32_t *) irsp) + 7));
2809 }
2810
ed957684 2811 writel(pring->rspidx, &phba->host_gp[pring->ringno].rspGetInx);
dea3101e 2812
3772a991
JS
2813 spin_unlock_irqrestore(&phba->hbalock, iflag);
2814 /* Handle the response IOCB */
2815 rspiocbp = lpfc_sli_sp_handle_rspiocb(phba, pring, rspiocbp);
2816 spin_lock_irqsave(&phba->hbalock, iflag);
dea3101e
JB
2817
2818 /*
2819 * If the port response put pointer has not been updated, sync
2820 * the pgp->rspPutInx in the MAILBOX_tand fetch the new port
2821 * response put pointer.
2822 */
2823 if (pring->rspidx == portRspPut) {
2824 portRspPut = le32_to_cpu(pgp->rspPutInx);
2825 }
2826 } /* while (pring->rspidx != portRspPut) */
2827
92d7f7b0 2828 if ((rspiocbp != NULL) && (mask & HA_R0RE_REQ)) {
dea3101e
JB
2829 /* At least one response entry has been freed */
2830 pring->stats.iocb_rsp_full++;
2831 /* SET RxRE_RSP in Chip Att register */
2832 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
2833 writel(status, phba->CAregaddr);
2834 readl(phba->CAregaddr); /* flush */
2835 }
2836 if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
2837 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
2838 pring->stats.iocb_cmd_empty++;
2839
2840 /* Force update of the local copy of cmdGetInx */
2841 pring->local_getidx = le32_to_cpu(pgp->cmdGetInx);
2842 lpfc_sli_resume_iocb(phba, pring);
2843
2844 if ((pring->lpfc_sli_cmd_available))
2845 (pring->lpfc_sli_cmd_available) (phba, pring);
2846
2847 }
2848
2e0fef85 2849 spin_unlock_irqrestore(&phba->hbalock, iflag);
3772a991 2850 return;
dea3101e
JB
2851}
2852
4f774513
JS
2853/**
2854 * lpfc_sli_handle_slow_ring_event_s4 - Handle SLI4 slow-path els events
2855 * @phba: Pointer to HBA context object.
2856 * @pring: Pointer to driver SLI ring object.
2857 * @mask: Host attention register mask for this ring.
2858 *
2859 * This function is called from the worker thread when there is a pending
2860 * ELS response iocb on the driver internal slow-path response iocb worker
2861 * queue. The caller does not hold any lock. The function will remove each
2862 * response iocb from the response worker queue and calls the handle
2863 * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
2864 **/
2865static void
2866lpfc_sli_handle_slow_ring_event_s4(struct lpfc_hba *phba,
2867 struct lpfc_sli_ring *pring, uint32_t mask)
2868{
2869 struct lpfc_iocbq *irspiocbq;
4d9ab994
JS
2870 struct hbq_dmabuf *dmabuf;
2871 struct lpfc_cq_event *cq_event;
4f774513
JS
2872 unsigned long iflag;
2873
45ed1190
JS
2874 spin_lock_irqsave(&phba->hbalock, iflag);
2875 phba->hba_flag &= ~HBA_SP_QUEUE_EVT;
2876 spin_unlock_irqrestore(&phba->hbalock, iflag);
2877 while (!list_empty(&phba->sli4_hba.sp_queue_event)) {
4f774513
JS
2878 /* Get the response iocb from the head of work queue */
2879 spin_lock_irqsave(&phba->hbalock, iflag);
45ed1190 2880 list_remove_head(&phba->sli4_hba.sp_queue_event,
4d9ab994 2881 cq_event, struct lpfc_cq_event, list);
4f774513 2882 spin_unlock_irqrestore(&phba->hbalock, iflag);
4d9ab994
JS
2883
2884 switch (bf_get(lpfc_wcqe_c_code, &cq_event->cqe.wcqe_cmpl)) {
2885 case CQE_CODE_COMPL_WQE:
2886 irspiocbq = container_of(cq_event, struct lpfc_iocbq,
2887 cq_event);
45ed1190
JS
2888 /* Translate ELS WCQE to response IOCBQ */
2889 irspiocbq = lpfc_sli4_els_wcqe_to_rspiocbq(phba,
2890 irspiocbq);
2891 if (irspiocbq)
2892 lpfc_sli_sp_handle_rspiocb(phba, pring,
2893 irspiocbq);
4d9ab994
JS
2894 break;
2895 case CQE_CODE_RECEIVE:
2896 dmabuf = container_of(cq_event, struct hbq_dmabuf,
2897 cq_event);
2898 lpfc_sli4_handle_received_buffer(phba, dmabuf);
2899 break;
2900 default:
2901 break;
2902 }
4f774513
JS
2903 }
2904}
2905
e59058c4 2906/**
3621a710 2907 * lpfc_sli_abort_iocb_ring - Abort all iocbs in the ring
e59058c4
JS
2908 * @phba: Pointer to HBA context object.
2909 * @pring: Pointer to driver SLI ring object.
2910 *
2911 * This function aborts all iocbs in the given ring and frees all the iocb
2912 * objects in txq. This function issues an abort iocb for all the iocb commands
2913 * in txcmplq. The iocbs in the txcmplq is not guaranteed to complete before
2914 * the return of this function. The caller is not required to hold any locks.
2915 **/
2e0fef85 2916void
dea3101e
JB
2917lpfc_sli_abort_iocb_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
2918{
2534ba75 2919 LIST_HEAD(completions);
dea3101e 2920 struct lpfc_iocbq *iocb, *next_iocb;
dea3101e 2921
92d7f7b0
JS
2922 if (pring->ringno == LPFC_ELS_RING) {
2923 lpfc_fabric_abort_hba(phba);
2924 }
2925
dea3101e
JB
2926 /* Error everything on txq and txcmplq
2927 * First do the txq.
2928 */
2e0fef85 2929 spin_lock_irq(&phba->hbalock);
2534ba75 2930 list_splice_init(&pring->txq, &completions);
dea3101e 2931 pring->txq_cnt = 0;
dea3101e
JB
2932
2933 /* Next issue ABTS for everything on the txcmplq */
2534ba75
JS
2934 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
2935 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
dea3101e 2936
2e0fef85 2937 spin_unlock_irq(&phba->hbalock);
dea3101e 2938
a257bf90
JS
2939 /* Cancel all the IOCBs from the completions list */
2940 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
2941 IOERR_SLI_ABORTED);
dea3101e
JB
2942}
2943
a8e497d5 2944/**
3621a710 2945 * lpfc_sli_flush_fcp_rings - flush all iocbs in the fcp ring
a8e497d5
JS
2946 * @phba: Pointer to HBA context object.
2947 *
2948 * This function flushes all iocbs in the fcp ring and frees all the iocb
2949 * objects in txq and txcmplq. This function will not issue abort iocbs
2950 * for all the iocb commands in txcmplq, they will just be returned with
2951 * IOERR_SLI_DOWN. This function is invoked with EEH when device's PCI
2952 * slot has been permanently disabled.
2953 **/
2954void
2955lpfc_sli_flush_fcp_rings(struct lpfc_hba *phba)
2956{
2957 LIST_HEAD(txq);
2958 LIST_HEAD(txcmplq);
a8e497d5
JS
2959 struct lpfc_sli *psli = &phba->sli;
2960 struct lpfc_sli_ring *pring;
2961
2962 /* Currently, only one fcp ring */
2963 pring = &psli->ring[psli->fcp_ring];
2964
2965 spin_lock_irq(&phba->hbalock);
2966 /* Retrieve everything on txq */
2967 list_splice_init(&pring->txq, &txq);
2968 pring->txq_cnt = 0;
2969
2970 /* Retrieve everything on the txcmplq */
2971 list_splice_init(&pring->txcmplq, &txcmplq);
2972 pring->txcmplq_cnt = 0;
2973 spin_unlock_irq(&phba->hbalock);
2974
2975 /* Flush the txq */
a257bf90
JS
2976 lpfc_sli_cancel_iocbs(phba, &txq, IOSTAT_LOCAL_REJECT,
2977 IOERR_SLI_DOWN);
a8e497d5
JS
2978
2979 /* Flush the txcmpq */
a257bf90
JS
2980 lpfc_sli_cancel_iocbs(phba, &txcmplq, IOSTAT_LOCAL_REJECT,
2981 IOERR_SLI_DOWN);
a8e497d5
JS
2982}
2983
e59058c4 2984/**
3772a991 2985 * lpfc_sli_brdready_s3 - Check for sli3 host ready status
e59058c4
JS
2986 * @phba: Pointer to HBA context object.
2987 * @mask: Bit mask to be checked.
2988 *
2989 * This function reads the host status register and compares
2990 * with the provided bit mask to check if HBA completed
2991 * the restart. This function will wait in a loop for the
2992 * HBA to complete restart. If the HBA does not restart within
2993 * 15 iterations, the function will reset the HBA again. The
2994 * function returns 1 when HBA fail to restart otherwise returns
2995 * zero.
2996 **/
3772a991
JS
2997static int
2998lpfc_sli_brdready_s3(struct lpfc_hba *phba, uint32_t mask)
dea3101e 2999{
41415862
JW
3000 uint32_t status;
3001 int i = 0;
3002 int retval = 0;
dea3101e 3003
41415862
JW
3004 /* Read the HBA Host Status Register */
3005 status = readl(phba->HSregaddr);
dea3101e 3006
41415862
JW
3007 /*
3008 * Check status register every 100ms for 5 retries, then every
3009 * 500ms for 5, then every 2.5 sec for 5, then reset board and
3010 * every 2.5 sec for 4.
3011 * Break our of the loop if errors occurred during init.
3012 */
3013 while (((status & mask) != mask) &&
3014 !(status & HS_FFERM) &&
3015 i++ < 20) {
dea3101e 3016
41415862
JW
3017 if (i <= 5)
3018 msleep(10);
3019 else if (i <= 10)
3020 msleep(500);
3021 else
3022 msleep(2500);
dea3101e 3023
41415862 3024 if (i == 15) {
2e0fef85 3025 /* Do post */
92d7f7b0 3026 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
41415862
JW
3027 lpfc_sli_brdrestart(phba);
3028 }
3029 /* Read the HBA Host Status Register */
3030 status = readl(phba->HSregaddr);
3031 }
dea3101e 3032
41415862
JW
3033 /* Check to see if any errors occurred during init */
3034 if ((status & HS_FFERM) || (i >= 20)) {
2e0fef85 3035 phba->link_state = LPFC_HBA_ERROR;
41415862 3036 retval = 1;
dea3101e 3037 }
dea3101e 3038
41415862
JW
3039 return retval;
3040}
dea3101e 3041
da0436e9
JS
3042/**
3043 * lpfc_sli_brdready_s4 - Check for sli4 host ready status
3044 * @phba: Pointer to HBA context object.
3045 * @mask: Bit mask to be checked.
3046 *
3047 * This function checks the host status register to check if HBA is
3048 * ready. This function will wait in a loop for the HBA to be ready
3049 * If the HBA is not ready , the function will will reset the HBA PCI
3050 * function again. The function returns 1 when HBA fail to be ready
3051 * otherwise returns zero.
3052 **/
3053static int
3054lpfc_sli_brdready_s4(struct lpfc_hba *phba, uint32_t mask)
3055{
3056 uint32_t status;
3057 int retval = 0;
3058
3059 /* Read the HBA Host Status Register */
3060 status = lpfc_sli4_post_status_check(phba);
3061
3062 if (status) {
3063 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
3064 lpfc_sli_brdrestart(phba);
3065 status = lpfc_sli4_post_status_check(phba);
3066 }
3067
3068 /* Check to see if any errors occurred during init */
3069 if (status) {
3070 phba->link_state = LPFC_HBA_ERROR;
3071 retval = 1;
3072 } else
3073 phba->sli4_hba.intr_enable = 0;
3074
3075 return retval;
3076}
3077
3078/**
3079 * lpfc_sli_brdready - Wrapper func for checking the hba readyness
3080 * @phba: Pointer to HBA context object.
3081 * @mask: Bit mask to be checked.
3082 *
3083 * This routine wraps the actual SLI3 or SLI4 hba readyness check routine
3084 * from the API jump table function pointer from the lpfc_hba struct.
3085 **/
3086int
3087lpfc_sli_brdready(struct lpfc_hba *phba, uint32_t mask)
3088{
3089 return phba->lpfc_sli_brdready(phba, mask);
3090}
3091
9290831f
JS
3092#define BARRIER_TEST_PATTERN (0xdeadbeef)
3093
e59058c4 3094/**
3621a710 3095 * lpfc_reset_barrier - Make HBA ready for HBA reset
e59058c4
JS
3096 * @phba: Pointer to HBA context object.
3097 *
3098 * This function is called before resetting an HBA. This
3099 * function requests HBA to quiesce DMAs before a reset.
3100 **/
2e0fef85 3101void lpfc_reset_barrier(struct lpfc_hba *phba)
9290831f 3102{
65a29c16
JS
3103 uint32_t __iomem *resp_buf;
3104 uint32_t __iomem *mbox_buf;
9290831f
JS
3105 volatile uint32_t mbox;
3106 uint32_t hc_copy;
3107 int i;
3108 uint8_t hdrtype;
3109
3110 pci_read_config_byte(phba->pcidev, PCI_HEADER_TYPE, &hdrtype);
3111 if (hdrtype != 0x80 ||
3112 (FC_JEDEC_ID(phba->vpd.rev.biuRev) != HELIOS_JEDEC_ID &&
3113 FC_JEDEC_ID(phba->vpd.rev.biuRev) != THOR_JEDEC_ID))
3114 return;
3115
3116 /*
3117 * Tell the other part of the chip to suspend temporarily all
3118 * its DMA activity.
3119 */
65a29c16 3120 resp_buf = phba->MBslimaddr;
9290831f
JS
3121
3122 /* Disable the error attention */
3123 hc_copy = readl(phba->HCregaddr);
3124 writel((hc_copy & ~HC_ERINT_ENA), phba->HCregaddr);
3125 readl(phba->HCregaddr); /* flush */
2e0fef85 3126 phba->link_flag |= LS_IGNORE_ERATT;
9290831f
JS
3127
3128 if (readl(phba->HAregaddr) & HA_ERATT) {
3129 /* Clear Chip error bit */
3130 writel(HA_ERATT, phba->HAregaddr);
2e0fef85 3131 phba->pport->stopped = 1;
9290831f
JS
3132 }
3133
3134 mbox = 0;
3135 ((MAILBOX_t *)&mbox)->mbxCommand = MBX_KILL_BOARD;
3136 ((MAILBOX_t *)&mbox)->mbxOwner = OWN_CHIP;
3137
3138 writel(BARRIER_TEST_PATTERN, (resp_buf + 1));
65a29c16 3139 mbox_buf = phba->MBslimaddr;
9290831f
JS
3140 writel(mbox, mbox_buf);
3141
3142 for (i = 0;
3143 readl(resp_buf + 1) != ~(BARRIER_TEST_PATTERN) && i < 50; i++)
3144 mdelay(1);
3145
3146 if (readl(resp_buf + 1) != ~(BARRIER_TEST_PATTERN)) {
f4b4c68f 3147 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE ||
2e0fef85 3148 phba->pport->stopped)
9290831f
JS
3149 goto restore_hc;
3150 else
3151 goto clear_errat;
3152 }
3153
3154 ((MAILBOX_t *)&mbox)->mbxOwner = OWN_HOST;
3155 for (i = 0; readl(resp_buf) != mbox && i < 500; i++)
3156 mdelay(1);
3157
3158clear_errat:
3159
3160 while (!(readl(phba->HAregaddr) & HA_ERATT) && ++i < 500)
3161 mdelay(1);
3162
3163 if (readl(phba->HAregaddr) & HA_ERATT) {
3164 writel(HA_ERATT, phba->HAregaddr);
2e0fef85 3165 phba->pport->stopped = 1;
9290831f
JS
3166 }
3167
3168restore_hc:
2e0fef85 3169 phba->link_flag &= ~LS_IGNORE_ERATT;
9290831f
JS
3170 writel(hc_copy, phba->HCregaddr);
3171 readl(phba->HCregaddr); /* flush */
3172}
3173
e59058c4 3174/**
3621a710 3175 * lpfc_sli_brdkill - Issue a kill_board mailbox command
e59058c4
JS
3176 * @phba: Pointer to HBA context object.
3177 *
3178 * This function issues a kill_board mailbox command and waits for
3179 * the error attention interrupt. This function is called for stopping
3180 * the firmware processing. The caller is not required to hold any
3181 * locks. This function calls lpfc_hba_down_post function to free
3182 * any pending commands after the kill. The function will return 1 when it
3183 * fails to kill the board else will return 0.
3184 **/
41415862 3185int
2e0fef85 3186lpfc_sli_brdkill(struct lpfc_hba *phba)
41415862
JW
3187{
3188 struct lpfc_sli *psli;
3189 LPFC_MBOXQ_t *pmb;
3190 uint32_t status;
3191 uint32_t ha_copy;
3192 int retval;
3193 int i = 0;
dea3101e 3194
41415862 3195 psli = &phba->sli;
dea3101e 3196
41415862 3197 /* Kill HBA */
ed957684 3198 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
e8b62011
JS
3199 "0329 Kill HBA Data: x%x x%x\n",
3200 phba->pport->port_state, psli->sli_flag);
41415862 3201
98c9ea5c
JS
3202 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3203 if (!pmb)
41415862 3204 return 1;
41415862
JW
3205
3206 /* Disable the error attention */
2e0fef85 3207 spin_lock_irq(&phba->hbalock);
41415862
JW
3208 status = readl(phba->HCregaddr);
3209 status &= ~HC_ERINT_ENA;
3210 writel(status, phba->HCregaddr);
3211 readl(phba->HCregaddr); /* flush */
2e0fef85
JS
3212 phba->link_flag |= LS_IGNORE_ERATT;
3213 spin_unlock_irq(&phba->hbalock);
41415862
JW
3214
3215 lpfc_kill_board(phba, pmb);
3216 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
3217 retval = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
3218
3219 if (retval != MBX_SUCCESS) {
3220 if (retval != MBX_BUSY)
3221 mempool_free(pmb, phba->mbox_mem_pool);
2e0fef85
JS
3222 spin_lock_irq(&phba->hbalock);
3223 phba->link_flag &= ~LS_IGNORE_ERATT;
3224 spin_unlock_irq(&phba->hbalock);
41415862
JW
3225 return 1;
3226 }
3227
f4b4c68f
JS
3228 spin_lock_irq(&phba->hbalock);
3229 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
3230 spin_unlock_irq(&phba->hbalock);
9290831f 3231
41415862
JW
3232 mempool_free(pmb, phba->mbox_mem_pool);
3233
3234 /* There is no completion for a KILL_BOARD mbox cmd. Check for an error
3235 * attention every 100ms for 3 seconds. If we don't get ERATT after
3236 * 3 seconds we still set HBA_ERROR state because the status of the
3237 * board is now undefined.
3238 */
3239 ha_copy = readl(phba->HAregaddr);
3240
3241 while ((i++ < 30) && !(ha_copy & HA_ERATT)) {
3242 mdelay(100);
3243 ha_copy = readl(phba->HAregaddr);
3244 }
3245
3246 del_timer_sync(&psli->mbox_tmo);
9290831f
JS
3247 if (ha_copy & HA_ERATT) {
3248 writel(HA_ERATT, phba->HAregaddr);
2e0fef85 3249 phba->pport->stopped = 1;
9290831f 3250 }
2e0fef85 3251 spin_lock_irq(&phba->hbalock);
41415862 3252 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
04c68496 3253 psli->mbox_active = NULL;
2e0fef85
JS
3254 phba->link_flag &= ~LS_IGNORE_ERATT;
3255 spin_unlock_irq(&phba->hbalock);
41415862 3256
41415862 3257 lpfc_hba_down_post(phba);
2e0fef85 3258 phba->link_state = LPFC_HBA_ERROR;
41415862 3259
2e0fef85 3260 return ha_copy & HA_ERATT ? 0 : 1;
dea3101e
JB
3261}
3262
e59058c4 3263/**
3772a991 3264 * lpfc_sli_brdreset - Reset a sli-2 or sli-3 HBA
e59058c4
JS
3265 * @phba: Pointer to HBA context object.
3266 *
3267 * This function resets the HBA by writing HC_INITFF to the control
3268 * register. After the HBA resets, this function resets all the iocb ring
3269 * indices. This function disables PCI layer parity checking during
3270 * the reset.
3271 * This function returns 0 always.
3272 * The caller is not required to hold any locks.
3273 **/
41415862 3274int
2e0fef85 3275lpfc_sli_brdreset(struct lpfc_hba *phba)
dea3101e 3276{
41415862 3277 struct lpfc_sli *psli;
dea3101e 3278 struct lpfc_sli_ring *pring;
41415862 3279 uint16_t cfg_value;
dea3101e 3280 int i;
dea3101e 3281
41415862 3282 psli = &phba->sli;
dea3101e 3283
41415862
JW
3284 /* Reset HBA */
3285 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
e8b62011 3286 "0325 Reset HBA Data: x%x x%x\n",
2e0fef85 3287 phba->pport->port_state, psli->sli_flag);
dea3101e
JB
3288
3289 /* perform board reset */
3290 phba->fc_eventTag = 0;
4d9ab994 3291 phba->link_events = 0;
2e0fef85
JS
3292 phba->pport->fc_myDID = 0;
3293 phba->pport->fc_prevDID = 0;
dea3101e 3294
41415862
JW
3295 /* Turn off parity checking and serr during the physical reset */
3296 pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
3297 pci_write_config_word(phba->pcidev, PCI_COMMAND,
3298 (cfg_value &
3299 ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
3300
3772a991
JS
3301 psli->sli_flag &= ~(LPFC_SLI_ACTIVE | LPFC_PROCESS_LA);
3302
41415862
JW
3303 /* Now toggle INITFF bit in the Host Control Register */
3304 writel(HC_INITFF, phba->HCregaddr);
3305 mdelay(1);
3306 readl(phba->HCregaddr); /* flush */
3307 writel(0, phba->HCregaddr);
3308 readl(phba->HCregaddr); /* flush */
3309
3310 /* Restore PCI cmd register */
3311 pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
dea3101e
JB
3312
3313 /* Initialize relevant SLI info */
41415862
JW
3314 for (i = 0; i < psli->num_rings; i++) {
3315 pring = &psli->ring[i];
dea3101e
JB
3316 pring->flag = 0;
3317 pring->rspidx = 0;
3318 pring->next_cmdidx = 0;
3319 pring->local_getidx = 0;
3320 pring->cmdidx = 0;
3321 pring->missbufcnt = 0;
3322 }
dea3101e 3323
2e0fef85 3324 phba->link_state = LPFC_WARM_START;
41415862
JW
3325 return 0;
3326}
3327
e59058c4 3328/**
da0436e9
JS
3329 * lpfc_sli4_brdreset - Reset a sli-4 HBA
3330 * @phba: Pointer to HBA context object.
3331 *
3332 * This function resets a SLI4 HBA. This function disables PCI layer parity
3333 * checking during resets the device. The caller is not required to hold
3334 * any locks.
3335 *
3336 * This function returns 0 always.
3337 **/
3338int
3339lpfc_sli4_brdreset(struct lpfc_hba *phba)
3340{
3341 struct lpfc_sli *psli = &phba->sli;
3342 uint16_t cfg_value;
3343 uint8_t qindx;
3344
3345 /* Reset HBA */
3346 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
3347 "0295 Reset HBA Data: x%x x%x\n",
3348 phba->pport->port_state, psli->sli_flag);
3349
3350 /* perform board reset */
3351 phba->fc_eventTag = 0;
4d9ab994 3352 phba->link_events = 0;
da0436e9
JS
3353 phba->pport->fc_myDID = 0;
3354 phba->pport->fc_prevDID = 0;
3355
3356 /* Turn off parity checking and serr during the physical reset */
3357 pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
3358 pci_write_config_word(phba->pcidev, PCI_COMMAND,
3359 (cfg_value &
3360 ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
3361
3362 spin_lock_irq(&phba->hbalock);
3363 psli->sli_flag &= ~(LPFC_PROCESS_LA);
3364 phba->fcf.fcf_flag = 0;
3365 /* Clean up the child queue list for the CQs */
3366 list_del_init(&phba->sli4_hba.mbx_wq->list);
3367 list_del_init(&phba->sli4_hba.els_wq->list);
3368 list_del_init(&phba->sli4_hba.hdr_rq->list);
3369 list_del_init(&phba->sli4_hba.dat_rq->list);
3370 list_del_init(&phba->sli4_hba.mbx_cq->list);
3371 list_del_init(&phba->sli4_hba.els_cq->list);
da0436e9
JS
3372 for (qindx = 0; qindx < phba->cfg_fcp_wq_count; qindx++)
3373 list_del_init(&phba->sli4_hba.fcp_wq[qindx]->list);
3374 for (qindx = 0; qindx < phba->cfg_fcp_eq_count; qindx++)
3375 list_del_init(&phba->sli4_hba.fcp_cq[qindx]->list);
3376 spin_unlock_irq(&phba->hbalock);
3377
3378 /* Now physically reset the device */
3379 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3380 "0389 Performing PCI function reset!\n");
3381 /* Perform FCoE PCI function reset */
3382 lpfc_pci_function_reset(phba);
3383
3384 return 0;
3385}
3386
3387/**
3388 * lpfc_sli_brdrestart_s3 - Restart a sli-3 hba
e59058c4
JS
3389 * @phba: Pointer to HBA context object.
3390 *
3391 * This function is called in the SLI initialization code path to
3392 * restart the HBA. The caller is not required to hold any lock.
3393 * This function writes MBX_RESTART mailbox command to the SLIM and
3394 * resets the HBA. At the end of the function, it calls lpfc_hba_down_post
3395 * function to free any pending commands. The function enables
3396 * POST only during the first initialization. The function returns zero.
3397 * The function does not guarantee completion of MBX_RESTART mailbox
3398 * command before the return of this function.
3399 **/
da0436e9
JS
3400static int
3401lpfc_sli_brdrestart_s3(struct lpfc_hba *phba)
41415862
JW
3402{
3403 MAILBOX_t *mb;
3404 struct lpfc_sli *psli;
41415862
JW
3405 volatile uint32_t word0;
3406 void __iomem *to_slim;
0d878419 3407 uint32_t hba_aer_enabled;
41415862 3408
2e0fef85 3409 spin_lock_irq(&phba->hbalock);
41415862 3410
0d878419
JS
3411 /* Take PCIe device Advanced Error Reporting (AER) state */
3412 hba_aer_enabled = phba->hba_flag & HBA_AER_ENABLED;
3413
41415862
JW
3414 psli = &phba->sli;
3415
3416 /* Restart HBA */
3417 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
e8b62011 3418 "0337 Restart HBA Data: x%x x%x\n",
2e0fef85 3419 phba->pport->port_state, psli->sli_flag);
41415862
JW
3420
3421 word0 = 0;
3422 mb = (MAILBOX_t *) &word0;
3423 mb->mbxCommand = MBX_RESTART;
3424 mb->mbxHc = 1;
3425
9290831f
JS
3426 lpfc_reset_barrier(phba);
3427
41415862
JW
3428 to_slim = phba->MBslimaddr;
3429 writel(*(uint32_t *) mb, to_slim);
3430 readl(to_slim); /* flush */
3431
3432 /* Only skip post after fc_ffinit is completed */
eaf15d5b 3433 if (phba->pport->port_state)
41415862 3434 word0 = 1; /* This is really setting up word1 */
eaf15d5b 3435 else
41415862 3436 word0 = 0; /* This is really setting up word1 */
65a29c16 3437 to_slim = phba->MBslimaddr + sizeof (uint32_t);
41415862
JW
3438 writel(*(uint32_t *) mb, to_slim);
3439 readl(to_slim); /* flush */
dea3101e 3440
41415862 3441 lpfc_sli_brdreset(phba);
2e0fef85
JS
3442 phba->pport->stopped = 0;
3443 phba->link_state = LPFC_INIT_START;
da0436e9 3444 phba->hba_flag = 0;
2e0fef85 3445 spin_unlock_irq(&phba->hbalock);
41415862 3446
64ba8818
JS
3447 memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
3448 psli->stats_start = get_seconds();
3449
eaf15d5b
JS
3450 /* Give the INITFF and Post time to settle. */
3451 mdelay(100);
41415862 3452
0d878419
JS
3453 /* Reset HBA AER if it was enabled, note hba_flag was reset above */
3454 if (hba_aer_enabled)
3455 pci_disable_pcie_error_reporting(phba->pcidev);
3456
41415862 3457 lpfc_hba_down_post(phba);
dea3101e
JB
3458
3459 return 0;
3460}
3461
da0436e9
JS
3462/**
3463 * lpfc_sli_brdrestart_s4 - Restart the sli-4 hba
3464 * @phba: Pointer to HBA context object.
3465 *
3466 * This function is called in the SLI initialization code path to restart
3467 * a SLI4 HBA. The caller is not required to hold any lock.
3468 * At the end of the function, it calls lpfc_hba_down_post function to
3469 * free any pending commands.
3470 **/
3471static int
3472lpfc_sli_brdrestart_s4(struct lpfc_hba *phba)
3473{
3474 struct lpfc_sli *psli = &phba->sli;
3475
3476
3477 /* Restart HBA */
3478 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
3479 "0296 Restart HBA Data: x%x x%x\n",
3480 phba->pport->port_state, psli->sli_flag);
3481
3482 lpfc_sli4_brdreset(phba);
3483
3484 spin_lock_irq(&phba->hbalock);
3485 phba->pport->stopped = 0;
3486 phba->link_state = LPFC_INIT_START;
3487 phba->hba_flag = 0;
3488 spin_unlock_irq(&phba->hbalock);
3489
3490 memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
3491 psli->stats_start = get_seconds();
3492
3493 lpfc_hba_down_post(phba);
3494
3495 return 0;
3496}
3497
3498/**
3499 * lpfc_sli_brdrestart - Wrapper func for restarting hba
3500 * @phba: Pointer to HBA context object.
3501 *
3502 * This routine wraps the actual SLI3 or SLI4 hba restart routine from the
3503 * API jump table function pointer from the lpfc_hba struct.
3504**/
3505int
3506lpfc_sli_brdrestart(struct lpfc_hba *phba)
3507{
3508 return phba->lpfc_sli_brdrestart(phba);
3509}
3510
e59058c4 3511/**
3621a710 3512 * lpfc_sli_chipset_init - Wait for the restart of the HBA after a restart
e59058c4
JS
3513 * @phba: Pointer to HBA context object.
3514 *
3515 * This function is called after a HBA restart to wait for successful
3516 * restart of the HBA. Successful restart of the HBA is indicated by
3517 * HS_FFRDY and HS_MBRDY bits. If the HBA fails to restart even after 15
3518 * iteration, the function will restart the HBA again. The function returns
3519 * zero if HBA successfully restarted else returns negative error code.
3520 **/
dea3101e
JB
3521static int
3522lpfc_sli_chipset_init(struct lpfc_hba *phba)
3523{
3524 uint32_t status, i = 0;
3525
3526 /* Read the HBA Host Status Register */
3527 status = readl(phba->HSregaddr);
3528
3529 /* Check status register to see what current state is */
3530 i = 0;
3531 while ((status & (HS_FFRDY | HS_MBRDY)) != (HS_FFRDY | HS_MBRDY)) {
3532
3533 /* Check every 100ms for 5 retries, then every 500ms for 5, then
3534 * every 2.5 sec for 5, then reset board and every 2.5 sec for
3535 * 4.
3536 */
3537 if (i++ >= 20) {
3538 /* Adapter failed to init, timeout, status reg
3539 <status> */
ed957684 3540 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 3541 "0436 Adapter failed to init, "
09372820
JS
3542 "timeout, status reg x%x, "
3543 "FW Data: A8 x%x AC x%x\n", status,
3544 readl(phba->MBslimaddr + 0xa8),
3545 readl(phba->MBslimaddr + 0xac));
2e0fef85 3546 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
3547 return -ETIMEDOUT;
3548 }
3549
3550 /* Check to see if any errors occurred during init */
3551 if (status & HS_FFERM) {
3552 /* ERROR: During chipset initialization */
3553 /* Adapter failed to init, chipset, status reg
3554 <status> */
ed957684 3555 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 3556 "0437 Adapter failed to init, "
09372820
JS
3557 "chipset, status reg x%x, "
3558 "FW Data: A8 x%x AC x%x\n", status,
3559 readl(phba->MBslimaddr + 0xa8),
3560 readl(phba->MBslimaddr + 0xac));
2e0fef85 3561 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
3562 return -EIO;
3563 }
3564
3565 if (i <= 5) {
3566 msleep(10);
3567 } else if (i <= 10) {
3568 msleep(500);
3569 } else {
3570 msleep(2500);
3571 }
3572
3573 if (i == 15) {
2e0fef85 3574 /* Do post */
92d7f7b0 3575 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
41415862 3576 lpfc_sli_brdrestart(phba);
dea3101e
JB
3577 }
3578 /* Read the HBA Host Status Register */
3579 status = readl(phba->HSregaddr);
3580 }
3581
3582 /* Check to see if any errors occurred during init */
3583 if (status & HS_FFERM) {
3584 /* ERROR: During chipset initialization */
3585 /* Adapter failed to init, chipset, status reg <status> */
ed957684 3586 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 3587 "0438 Adapter failed to init, chipset, "
09372820
JS
3588 "status reg x%x, "
3589 "FW Data: A8 x%x AC x%x\n", status,
3590 readl(phba->MBslimaddr + 0xa8),
3591 readl(phba->MBslimaddr + 0xac));
2e0fef85 3592 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
3593 return -EIO;
3594 }
3595
3596 /* Clear all interrupt enable conditions */
3597 writel(0, phba->HCregaddr);
3598 readl(phba->HCregaddr); /* flush */
3599
3600 /* setup host attn register */
3601 writel(0xffffffff, phba->HAregaddr);
3602 readl(phba->HAregaddr); /* flush */
3603 return 0;
3604}
3605
e59058c4 3606/**
3621a710 3607 * lpfc_sli_hbq_count - Get the number of HBQs to be configured
e59058c4
JS
3608 *
3609 * This function calculates and returns the number of HBQs required to be
3610 * configured.
3611 **/
78b2d852 3612int
ed957684
JS
3613lpfc_sli_hbq_count(void)
3614{
92d7f7b0 3615 return ARRAY_SIZE(lpfc_hbq_defs);
ed957684
JS
3616}
3617
e59058c4 3618/**
3621a710 3619 * lpfc_sli_hbq_entry_count - Calculate total number of hbq entries
e59058c4
JS
3620 *
3621 * This function adds the number of hbq entries in every HBQ to get
3622 * the total number of hbq entries required for the HBA and returns
3623 * the total count.
3624 **/
ed957684
JS
3625static int
3626lpfc_sli_hbq_entry_count(void)
3627{
3628 int hbq_count = lpfc_sli_hbq_count();
3629 int count = 0;
3630 int i;
3631
3632 for (i = 0; i < hbq_count; ++i)
92d7f7b0 3633 count += lpfc_hbq_defs[i]->entry_count;
ed957684
JS
3634 return count;
3635}
3636
e59058c4 3637/**
3621a710 3638 * lpfc_sli_hbq_size - Calculate memory required for all hbq entries
e59058c4
JS
3639 *
3640 * This function calculates amount of memory required for all hbq entries
3641 * to be configured and returns the total memory required.
3642 **/
dea3101e 3643int
ed957684
JS
3644lpfc_sli_hbq_size(void)
3645{
3646 return lpfc_sli_hbq_entry_count() * sizeof(struct lpfc_hbq_entry);
3647}
3648
e59058c4 3649/**
3621a710 3650 * lpfc_sli_hbq_setup - configure and initialize HBQs
e59058c4
JS
3651 * @phba: Pointer to HBA context object.
3652 *
3653 * This function is called during the SLI initialization to configure
3654 * all the HBQs and post buffers to the HBQ. The caller is not
3655 * required to hold any locks. This function will return zero if successful
3656 * else it will return negative error code.
3657 **/
ed957684
JS
3658static int
3659lpfc_sli_hbq_setup(struct lpfc_hba *phba)
3660{
3661 int hbq_count = lpfc_sli_hbq_count();
3662 LPFC_MBOXQ_t *pmb;
3663 MAILBOX_t *pmbox;
3664 uint32_t hbqno;
3665 uint32_t hbq_entry_index;
ed957684 3666
92d7f7b0
JS
3667 /* Get a Mailbox buffer to setup mailbox
3668 * commands for HBA initialization
3669 */
ed957684
JS
3670 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3671
3672 if (!pmb)
3673 return -ENOMEM;
3674
04c68496 3675 pmbox = &pmb->u.mb;
ed957684
JS
3676
3677 /* Initialize the struct lpfc_sli_hbq structure for each hbq */
3678 phba->link_state = LPFC_INIT_MBX_CMDS;
3163f725 3679 phba->hbq_in_use = 1;
ed957684
JS
3680
3681 hbq_entry_index = 0;
3682 for (hbqno = 0; hbqno < hbq_count; ++hbqno) {
3683 phba->hbqs[hbqno].next_hbqPutIdx = 0;
3684 phba->hbqs[hbqno].hbqPutIdx = 0;
3685 phba->hbqs[hbqno].local_hbqGetIdx = 0;
3686 phba->hbqs[hbqno].entry_count =
92d7f7b0 3687 lpfc_hbq_defs[hbqno]->entry_count;
51ef4c26
JS
3688 lpfc_config_hbq(phba, hbqno, lpfc_hbq_defs[hbqno],
3689 hbq_entry_index, pmb);
ed957684
JS
3690 hbq_entry_index += phba->hbqs[hbqno].entry_count;
3691
3692 if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
3693 /* Adapter failed to init, mbxCmd <cmd> CFG_RING,
3694 mbxStatus <status>, ring <num> */
3695
3696 lpfc_printf_log(phba, KERN_ERR,
92d7f7b0 3697 LOG_SLI | LOG_VPORT,
e8b62011 3698 "1805 Adapter failed to init. "
ed957684 3699 "Data: x%x x%x x%x\n",
e8b62011 3700 pmbox->mbxCommand,
ed957684
JS
3701 pmbox->mbxStatus, hbqno);
3702
3703 phba->link_state = LPFC_HBA_ERROR;
3704 mempool_free(pmb, phba->mbox_mem_pool);
ed957684
JS
3705 return ENXIO;
3706 }
3707 }
3708 phba->hbq_count = hbq_count;
3709
ed957684
JS
3710 mempool_free(pmb, phba->mbox_mem_pool);
3711
92d7f7b0 3712 /* Initially populate or replenish the HBQs */
d7c255b2
JS
3713 for (hbqno = 0; hbqno < hbq_count; ++hbqno)
3714 lpfc_sli_hbqbuf_init_hbqs(phba, hbqno);
ed957684
JS
3715 return 0;
3716}
3717
4f774513
JS
3718/**
3719 * lpfc_sli4_rb_setup - Initialize and post RBs to HBA
3720 * @phba: Pointer to HBA context object.
3721 *
3722 * This function is called during the SLI initialization to configure
3723 * all the HBQs and post buffers to the HBQ. The caller is not
3724 * required to hold any locks. This function will return zero if successful
3725 * else it will return negative error code.
3726 **/
3727static int
3728lpfc_sli4_rb_setup(struct lpfc_hba *phba)
3729{
3730 phba->hbq_in_use = 1;
3731 phba->hbqs[0].entry_count = lpfc_hbq_defs[0]->entry_count;
3732 phba->hbq_count = 1;
3733 /* Initially populate or replenish the HBQs */
3734 lpfc_sli_hbqbuf_init_hbqs(phba, 0);
3735 return 0;
3736}
3737
e59058c4 3738/**
3621a710 3739 * lpfc_sli_config_port - Issue config port mailbox command
e59058c4
JS
3740 * @phba: Pointer to HBA context object.
3741 * @sli_mode: sli mode - 2/3
3742 *
3743 * This function is called by the sli intialization code path
3744 * to issue config_port mailbox command. This function restarts the
3745 * HBA firmware and issues a config_port mailbox command to configure
3746 * the SLI interface in the sli mode specified by sli_mode
3747 * variable. The caller is not required to hold any locks.
3748 * The function returns 0 if successful, else returns negative error
3749 * code.
3750 **/
9399627f
JS
3751int
3752lpfc_sli_config_port(struct lpfc_hba *phba, int sli_mode)
dea3101e
JB
3753{
3754 LPFC_MBOXQ_t *pmb;
3755 uint32_t resetcount = 0, rc = 0, done = 0;
3756
3757 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3758 if (!pmb) {
2e0fef85 3759 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
3760 return -ENOMEM;
3761 }
3762
ed957684 3763 phba->sli_rev = sli_mode;
dea3101e 3764 while (resetcount < 2 && !done) {
2e0fef85 3765 spin_lock_irq(&phba->hbalock);
1c067a42 3766 phba->sli.sli_flag |= LPFC_SLI_MBOX_ACTIVE;
2e0fef85 3767 spin_unlock_irq(&phba->hbalock);
92d7f7b0 3768 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
41415862 3769 lpfc_sli_brdrestart(phba);
dea3101e
JB
3770 rc = lpfc_sli_chipset_init(phba);
3771 if (rc)
3772 break;
3773
2e0fef85 3774 spin_lock_irq(&phba->hbalock);
1c067a42 3775 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
2e0fef85 3776 spin_unlock_irq(&phba->hbalock);
dea3101e
JB
3777 resetcount++;
3778
ed957684
JS
3779 /* Call pre CONFIG_PORT mailbox command initialization. A
3780 * value of 0 means the call was successful. Any other
3781 * nonzero value is a failure, but if ERESTART is returned,
3782 * the driver may reset the HBA and try again.
3783 */
dea3101e
JB
3784 rc = lpfc_config_port_prep(phba);
3785 if (rc == -ERESTART) {
ed957684 3786 phba->link_state = LPFC_LINK_UNKNOWN;
dea3101e 3787 continue;
34b02dcd 3788 } else if (rc)
dea3101e 3789 break;
2e0fef85 3790 phba->link_state = LPFC_INIT_MBX_CMDS;
dea3101e
JB
3791 lpfc_config_port(phba, pmb);
3792 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
34b02dcd
JS
3793 phba->sli3_options &= ~(LPFC_SLI3_NPIV_ENABLED |
3794 LPFC_SLI3_HBQ_ENABLED |
3795 LPFC_SLI3_CRP_ENABLED |
e2a0a9d6
JS
3796 LPFC_SLI3_INB_ENABLED |
3797 LPFC_SLI3_BG_ENABLED);
ed957684 3798 if (rc != MBX_SUCCESS) {
dea3101e 3799 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 3800 "0442 Adapter failed to init, mbxCmd x%x "
92d7f7b0 3801 "CONFIG_PORT, mbxStatus x%x Data: x%x\n",
04c68496 3802 pmb->u.mb.mbxCommand, pmb->u.mb.mbxStatus, 0);
2e0fef85 3803 spin_lock_irq(&phba->hbalock);
04c68496 3804 phba->sli.sli_flag &= ~LPFC_SLI_ACTIVE;
2e0fef85
JS
3805 spin_unlock_irq(&phba->hbalock);
3806 rc = -ENXIO;
04c68496
JS
3807 } else {
3808 /* Allow asynchronous mailbox command to go through */
3809 spin_lock_irq(&phba->hbalock);
3810 phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
3811 spin_unlock_irq(&phba->hbalock);
ed957684 3812 done = 1;
04c68496 3813 }
dea3101e 3814 }
ed957684
JS
3815 if (!done) {
3816 rc = -EINVAL;
3817 goto do_prep_failed;
3818 }
04c68496
JS
3819 if (pmb->u.mb.un.varCfgPort.sli_mode == 3) {
3820 if (!pmb->u.mb.un.varCfgPort.cMA) {
34b02dcd
JS
3821 rc = -ENXIO;
3822 goto do_prep_failed;
3823 }
04c68496 3824 if (phba->max_vpi && pmb->u.mb.un.varCfgPort.gmv) {
34b02dcd 3825 phba->sli3_options |= LPFC_SLI3_NPIV_ENABLED;
04c68496
JS
3826 phba->max_vpi = pmb->u.mb.un.varCfgPort.max_vpi;
3827 phba->max_vports = (phba->max_vpi > phba->max_vports) ?
3828 phba->max_vpi : phba->max_vports;
3829
34b02dcd
JS
3830 } else
3831 phba->max_vpi = 0;
04c68496
JS
3832 if (pmb->u.mb.un.varCfgPort.gdss)
3833 phba->sli3_options |= LPFC_SLI3_DSS_ENABLED;
3834 if (pmb->u.mb.un.varCfgPort.gerbm)
34b02dcd 3835 phba->sli3_options |= LPFC_SLI3_HBQ_ENABLED;
04c68496 3836 if (pmb->u.mb.un.varCfgPort.gcrp)
34b02dcd 3837 phba->sli3_options |= LPFC_SLI3_CRP_ENABLED;
04c68496 3838 if (pmb->u.mb.un.varCfgPort.ginb) {
34b02dcd 3839 phba->sli3_options |= LPFC_SLI3_INB_ENABLED;
8f34f4ce 3840 phba->hbq_get = phba->mbox->us.s3_inb_pgp.hbq_get;
34b02dcd
JS
3841 phba->port_gp = phba->mbox->us.s3_inb_pgp.port;
3842 phba->inb_ha_copy = &phba->mbox->us.s3_inb_pgp.ha_copy;
3843 phba->inb_counter = &phba->mbox->us.s3_inb_pgp.counter;
3844 phba->inb_last_counter =
3845 phba->mbox->us.s3_inb_pgp.counter;
3846 } else {
8f34f4ce 3847 phba->hbq_get = phba->mbox->us.s3_pgp.hbq_get;
34b02dcd
JS
3848 phba->port_gp = phba->mbox->us.s3_pgp.port;
3849 phba->inb_ha_copy = NULL;
3850 phba->inb_counter = NULL;
3851 }
e2a0a9d6
JS
3852
3853 if (phba->cfg_enable_bg) {
04c68496 3854 if (pmb->u.mb.un.varCfgPort.gbg)
e2a0a9d6
JS
3855 phba->sli3_options |= LPFC_SLI3_BG_ENABLED;
3856 else
3857 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3858 "0443 Adapter did not grant "
3859 "BlockGuard\n");
3860 }
34b02dcd 3861 } else {
8f34f4ce 3862 phba->hbq_get = NULL;
34b02dcd
JS
3863 phba->port_gp = phba->mbox->us.s2.port;
3864 phba->inb_ha_copy = NULL;
3865 phba->inb_counter = NULL;
d7c255b2 3866 phba->max_vpi = 0;
ed957684 3867 }
92d7f7b0 3868do_prep_failed:
ed957684
JS
3869 mempool_free(pmb, phba->mbox_mem_pool);
3870 return rc;
3871}
3872
e59058c4
JS
3873
3874/**
3621a710 3875 * lpfc_sli_hba_setup - SLI intialization function
e59058c4
JS
3876 * @phba: Pointer to HBA context object.
3877 *
3878 * This function is the main SLI intialization function. This function
3879 * is called by the HBA intialization code, HBA reset code and HBA
3880 * error attention handler code. Caller is not required to hold any
3881 * locks. This function issues config_port mailbox command to configure
3882 * the SLI, setup iocb rings and HBQ rings. In the end the function
3883 * calls the config_port_post function to issue init_link mailbox
3884 * command and to start the discovery. The function will return zero
3885 * if successful, else it will return negative error code.
3886 **/
ed957684
JS
3887int
3888lpfc_sli_hba_setup(struct lpfc_hba *phba)
3889{
3890 uint32_t rc;
92d7f7b0 3891 int mode = 3;
ed957684
JS
3892
3893 switch (lpfc_sli_mode) {
3894 case 2:
78b2d852 3895 if (phba->cfg_enable_npiv) {
92d7f7b0 3896 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
e8b62011 3897 "1824 NPIV enabled: Override lpfc_sli_mode "
92d7f7b0 3898 "parameter (%d) to auto (0).\n",
e8b62011 3899 lpfc_sli_mode);
92d7f7b0
JS
3900 break;
3901 }
ed957684
JS
3902 mode = 2;
3903 break;
3904 case 0:
3905 case 3:
3906 break;
3907 default:
92d7f7b0 3908 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
e8b62011
JS
3909 "1819 Unrecognized lpfc_sli_mode "
3910 "parameter: %d.\n", lpfc_sli_mode);
ed957684
JS
3911
3912 break;
3913 }
3914
9399627f
JS
3915 rc = lpfc_sli_config_port(phba, mode);
3916
ed957684 3917 if (rc && lpfc_sli_mode == 3)
92d7f7b0 3918 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
e8b62011
JS
3919 "1820 Unable to select SLI-3. "
3920 "Not supported by adapter.\n");
ed957684 3921 if (rc && mode != 2)
9399627f 3922 rc = lpfc_sli_config_port(phba, 2);
ed957684 3923 if (rc)
dea3101e
JB
3924 goto lpfc_sli_hba_setup_error;
3925
0d878419
JS
3926 /* Enable PCIe device Advanced Error Reporting (AER) if configured */
3927 if (phba->cfg_aer_support == 1 && !(phba->hba_flag & HBA_AER_ENABLED)) {
3928 rc = pci_enable_pcie_error_reporting(phba->pcidev);
3929 if (!rc) {
3930 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3931 "2709 This device supports "
3932 "Advanced Error Reporting (AER)\n");
3933 spin_lock_irq(&phba->hbalock);
3934 phba->hba_flag |= HBA_AER_ENABLED;
3935 spin_unlock_irq(&phba->hbalock);
3936 } else {
3937 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3938 "2708 This device does not support "
3939 "Advanced Error Reporting (AER)\n");
3940 phba->cfg_aer_support = 0;
3941 }
3942 }
3943
ed957684
JS
3944 if (phba->sli_rev == 3) {
3945 phba->iocb_cmd_size = SLI3_IOCB_CMD_SIZE;
3946 phba->iocb_rsp_size = SLI3_IOCB_RSP_SIZE;
ed957684
JS
3947 } else {
3948 phba->iocb_cmd_size = SLI2_IOCB_CMD_SIZE;
3949 phba->iocb_rsp_size = SLI2_IOCB_RSP_SIZE;
92d7f7b0 3950 phba->sli3_options = 0;
ed957684
JS
3951 }
3952
3953 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
e8b62011
JS
3954 "0444 Firmware in SLI %x mode. Max_vpi %d\n",
3955 phba->sli_rev, phba->max_vpi);
ed957684 3956 rc = lpfc_sli_ring_map(phba);
dea3101e
JB
3957
3958 if (rc)
3959 goto lpfc_sli_hba_setup_error;
3960
9399627f 3961 /* Init HBQs */
ed957684
JS
3962 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
3963 rc = lpfc_sli_hbq_setup(phba);
3964 if (rc)
3965 goto lpfc_sli_hba_setup_error;
3966 }
04c68496 3967 spin_lock_irq(&phba->hbalock);
dea3101e 3968 phba->sli.sli_flag |= LPFC_PROCESS_LA;
04c68496 3969 spin_unlock_irq(&phba->hbalock);
dea3101e
JB
3970
3971 rc = lpfc_config_port_post(phba);
3972 if (rc)
3973 goto lpfc_sli_hba_setup_error;
3974
ed957684
JS
3975 return rc;
3976
92d7f7b0 3977lpfc_sli_hba_setup_error:
2e0fef85 3978 phba->link_state = LPFC_HBA_ERROR;
ed957684 3979 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
e8b62011 3980 "0445 Firmware initialization failed\n");
dea3101e
JB
3981 return rc;
3982}
3983
e59058c4 3984/**
da0436e9
JS
3985 * lpfc_sli4_read_fcoe_params - Read fcoe params from conf region
3986 * @phba: Pointer to HBA context object.
3987 * @mboxq: mailbox pointer.
3988 * This function issue a dump mailbox command to read config region
3989 * 23 and parse the records in the region and populate driver
3990 * data structure.
e59058c4 3991 **/
da0436e9
JS
3992static int
3993lpfc_sli4_read_fcoe_params(struct lpfc_hba *phba,
3994 LPFC_MBOXQ_t *mboxq)
dea3101e 3995{
da0436e9
JS
3996 struct lpfc_dmabuf *mp;
3997 struct lpfc_mqe *mqe;
3998 uint32_t data_length;
3999 int rc;
dea3101e 4000
da0436e9
JS
4001 /* Program the default value of vlan_id and fc_map */
4002 phba->valid_vlan = 0;
4003 phba->fc_map[0] = LPFC_FCOE_FCF_MAP0;
4004 phba->fc_map[1] = LPFC_FCOE_FCF_MAP1;
4005 phba->fc_map[2] = LPFC_FCOE_FCF_MAP2;
2e0fef85 4006
da0436e9
JS
4007 mqe = &mboxq->u.mqe;
4008 if (lpfc_dump_fcoe_param(phba, mboxq))
4009 return -ENOMEM;
4010
4011 mp = (struct lpfc_dmabuf *) mboxq->context1;
4012 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4013
4014 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
4015 "(%d):2571 Mailbox cmd x%x Status x%x "
4016 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x "
4017 "x%x x%x x%x x%x x%x x%x x%x x%x x%x "
4018 "CQ: x%x x%x x%x x%x\n",
4019 mboxq->vport ? mboxq->vport->vpi : 0,
4020 bf_get(lpfc_mqe_command, mqe),
4021 bf_get(lpfc_mqe_status, mqe),
4022 mqe->un.mb_words[0], mqe->un.mb_words[1],
4023 mqe->un.mb_words[2], mqe->un.mb_words[3],
4024 mqe->un.mb_words[4], mqe->un.mb_words[5],
4025 mqe->un.mb_words[6], mqe->un.mb_words[7],
4026 mqe->un.mb_words[8], mqe->un.mb_words[9],
4027 mqe->un.mb_words[10], mqe->un.mb_words[11],
4028 mqe->un.mb_words[12], mqe->un.mb_words[13],
4029 mqe->un.mb_words[14], mqe->un.mb_words[15],
4030 mqe->un.mb_words[16], mqe->un.mb_words[50],
4031 mboxq->mcqe.word0,
4032 mboxq->mcqe.mcqe_tag0, mboxq->mcqe.mcqe_tag1,
4033 mboxq->mcqe.trailer);
4034
4035 if (rc) {
4036 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4037 kfree(mp);
4038 return -EIO;
4039 }
4040 data_length = mqe->un.mb_words[5];
a0c87cbd 4041 if (data_length > DMP_RGN23_SIZE) {
d11e31dd
JS
4042 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4043 kfree(mp);
da0436e9 4044 return -EIO;
d11e31dd 4045 }
dea3101e 4046
da0436e9
JS
4047 lpfc_parse_fcoe_conf(phba, mp->virt, data_length);
4048 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4049 kfree(mp);
4050 return 0;
4051}
e59058c4
JS
4052
4053/**
da0436e9
JS
4054 * lpfc_sli4_read_rev - Issue READ_REV and collect vpd data
4055 * @phba: pointer to lpfc hba data structure.
4056 * @mboxq: pointer to the LPFC_MBOXQ_t structure.
4057 * @vpd: pointer to the memory to hold resulting port vpd data.
4058 * @vpd_size: On input, the number of bytes allocated to @vpd.
4059 * On output, the number of data bytes in @vpd.
e59058c4 4060 *
da0436e9
JS
4061 * This routine executes a READ_REV SLI4 mailbox command. In
4062 * addition, this routine gets the port vpd data.
4063 *
4064 * Return codes
af901ca1 4065 * 0 - successful
da0436e9 4066 * ENOMEM - could not allocated memory.
e59058c4 4067 **/
da0436e9
JS
4068static int
4069lpfc_sli4_read_rev(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
4070 uint8_t *vpd, uint32_t *vpd_size)
dea3101e 4071{
da0436e9
JS
4072 int rc = 0;
4073 uint32_t dma_size;
4074 struct lpfc_dmabuf *dmabuf;
4075 struct lpfc_mqe *mqe;
dea3101e 4076
da0436e9
JS
4077 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
4078 if (!dmabuf)
4079 return -ENOMEM;
4080
4081 /*
4082 * Get a DMA buffer for the vpd data resulting from the READ_REV
4083 * mailbox command.
a257bf90 4084 */
da0436e9
JS
4085 dma_size = *vpd_size;
4086 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
4087 dma_size,
4088 &dmabuf->phys,
4089 GFP_KERNEL);
4090 if (!dmabuf->virt) {
4091 kfree(dmabuf);
4092 return -ENOMEM;
a257bf90 4093 }
da0436e9 4094 memset(dmabuf->virt, 0, dma_size);
a257bf90 4095
da0436e9
JS
4096 /*
4097 * The SLI4 implementation of READ_REV conflicts at word1,
4098 * bits 31:16 and SLI4 adds vpd functionality not present
4099 * in SLI3. This code corrects the conflicts.
1dcb58e5 4100 */
da0436e9
JS
4101 lpfc_read_rev(phba, mboxq);
4102 mqe = &mboxq->u.mqe;
4103 mqe->un.read_rev.vpd_paddr_high = putPaddrHigh(dmabuf->phys);
4104 mqe->un.read_rev.vpd_paddr_low = putPaddrLow(dmabuf->phys);
4105 mqe->un.read_rev.word1 &= 0x0000FFFF;
4106 bf_set(lpfc_mbx_rd_rev_vpd, &mqe->un.read_rev, 1);
4107 bf_set(lpfc_mbx_rd_rev_avail_len, &mqe->un.read_rev, dma_size);
4108
4109 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4110 if (rc) {
4111 dma_free_coherent(&phba->pcidev->dev, dma_size,
4112 dmabuf->virt, dmabuf->phys);
4113 return -EIO;
4114 }
1dcb58e5 4115
da0436e9
JS
4116 /*
4117 * The available vpd length cannot be bigger than the
4118 * DMA buffer passed to the port. Catch the less than
4119 * case and update the caller's size.
4120 */
4121 if (mqe->un.read_rev.avail_vpd_len < *vpd_size)
4122 *vpd_size = mqe->un.read_rev.avail_vpd_len;
3772a991 4123
da0436e9
JS
4124 lpfc_sli_pcimem_bcopy(dmabuf->virt, vpd, *vpd_size);
4125 dma_free_coherent(&phba->pcidev->dev, dma_size,
4126 dmabuf->virt, dmabuf->phys);
4127 kfree(dmabuf);
4128 return 0;
dea3101e
JB
4129}
4130
e59058c4 4131/**
da0436e9
JS
4132 * lpfc_sli4_arm_cqeq_intr - Arm sli-4 device completion and event queues
4133 * @phba: pointer to lpfc hba data structure.
e59058c4 4134 *
da0436e9
JS
4135 * This routine is called to explicitly arm the SLI4 device's completion and
4136 * event queues
4137 **/
4138static void
4139lpfc_sli4_arm_cqeq_intr(struct lpfc_hba *phba)
4140{
4141 uint8_t fcp_eqidx;
4142
4143 lpfc_sli4_cq_release(phba->sli4_hba.mbx_cq, LPFC_QUEUE_REARM);
4144 lpfc_sli4_cq_release(phba->sli4_hba.els_cq, LPFC_QUEUE_REARM);
da0436e9
JS
4145 for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_eq_count; fcp_eqidx++)
4146 lpfc_sli4_cq_release(phba->sli4_hba.fcp_cq[fcp_eqidx],
4147 LPFC_QUEUE_REARM);
4148 lpfc_sli4_eq_release(phba->sli4_hba.sp_eq, LPFC_QUEUE_REARM);
4149 for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_eq_count; fcp_eqidx++)
4150 lpfc_sli4_eq_release(phba->sli4_hba.fp_eq[fcp_eqidx],
4151 LPFC_QUEUE_REARM);
4152}
4153
4154/**
4155 * lpfc_sli4_hba_setup - SLI4 device intialization PCI function
4156 * @phba: Pointer to HBA context object.
4157 *
4158 * This function is the main SLI4 device intialization PCI function. This
4159 * function is called by the HBA intialization code, HBA reset code and
4160 * HBA error attention handler code. Caller is not required to hold any
4161 * locks.
4162 **/
4163int
4164lpfc_sli4_hba_setup(struct lpfc_hba *phba)
4165{
4166 int rc;
4167 LPFC_MBOXQ_t *mboxq;
4168 struct lpfc_mqe *mqe;
4169 uint8_t *vpd;
4170 uint32_t vpd_size;
4171 uint32_t ftr_rsp = 0;
4172 struct Scsi_Host *shost = lpfc_shost_from_vport(phba->pport);
4173 struct lpfc_vport *vport = phba->pport;
4174 struct lpfc_dmabuf *mp;
4175
4176 /* Perform a PCI function reset to start from clean */
4177 rc = lpfc_pci_function_reset(phba);
4178 if (unlikely(rc))
4179 return -ENODEV;
4180
4181 /* Check the HBA Host Status Register for readyness */
4182 rc = lpfc_sli4_post_status_check(phba);
4183 if (unlikely(rc))
4184 return -ENODEV;
4185 else {
4186 spin_lock_irq(&phba->hbalock);
4187 phba->sli.sli_flag |= LPFC_SLI_ACTIVE;
4188 spin_unlock_irq(&phba->hbalock);
4189 }
4190
4191 /*
4192 * Allocate a single mailbox container for initializing the
4193 * port.
4194 */
4195 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4196 if (!mboxq)
4197 return -ENOMEM;
4198
4199 /*
4200 * Continue initialization with default values even if driver failed
4201 * to read FCoE param config regions
4202 */
4203 if (lpfc_sli4_read_fcoe_params(phba, mboxq))
4204 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
e4e74273 4205 "2570 Failed to read FCoE parameters\n");
da0436e9
JS
4206
4207 /* Issue READ_REV to collect vpd and FW information. */
4208 vpd_size = PAGE_SIZE;
4209 vpd = kzalloc(vpd_size, GFP_KERNEL);
4210 if (!vpd) {
4211 rc = -ENOMEM;
4212 goto out_free_mbox;
4213 }
4214
4215 rc = lpfc_sli4_read_rev(phba, mboxq, vpd, &vpd_size);
4216 if (unlikely(rc))
4217 goto out_free_vpd;
4218
4219 mqe = &mboxq->u.mqe;
f1126688
JS
4220 phba->sli_rev = bf_get(lpfc_mbx_rd_rev_sli_lvl, &mqe->un.read_rev);
4221 if (bf_get(lpfc_mbx_rd_rev_fcoe, &mqe->un.read_rev))
4222 phba->hba_flag |= HBA_FCOE_SUPPORT;
45ed1190
JS
4223
4224 if (bf_get(lpfc_mbx_rd_rev_cee_ver, &mqe->un.read_rev) ==
4225 LPFC_DCBX_CEE_MODE)
4226 phba->hba_flag |= HBA_FIP_SUPPORT;
4227 else
4228 phba->hba_flag &= ~HBA_FIP_SUPPORT;
4229
f1126688
JS
4230 if (phba->sli_rev != LPFC_SLI_REV4 ||
4231 !(phba->hba_flag & HBA_FCOE_SUPPORT)) {
da0436e9
JS
4232 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4233 "0376 READ_REV Error. SLI Level %d "
4234 "FCoE enabled %d\n",
f1126688 4235 phba->sli_rev, phba->hba_flag & HBA_FCOE_SUPPORT);
da0436e9
JS
4236 rc = -EIO;
4237 goto out_free_vpd;
4238 }
da0436e9
JS
4239 /*
4240 * Evaluate the read rev and vpd data. Populate the driver
4241 * state with the results. If this routine fails, the failure
4242 * is not fatal as the driver will use generic values.
4243 */
4244 rc = lpfc_parse_vpd(phba, vpd, vpd_size);
4245 if (unlikely(!rc)) {
4246 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4247 "0377 Error %d parsing vpd. "
4248 "Using defaults.\n", rc);
4249 rc = 0;
4250 }
4251
f1126688
JS
4252 /* Save information as VPD data */
4253 phba->vpd.rev.biuRev = mqe->un.read_rev.first_hw_rev;
4254 phba->vpd.rev.smRev = mqe->un.read_rev.second_hw_rev;
4255 phba->vpd.rev.endecRev = mqe->un.read_rev.third_hw_rev;
4256 phba->vpd.rev.fcphHigh = bf_get(lpfc_mbx_rd_rev_fcph_high,
4257 &mqe->un.read_rev);
4258 phba->vpd.rev.fcphLow = bf_get(lpfc_mbx_rd_rev_fcph_low,
4259 &mqe->un.read_rev);
4260 phba->vpd.rev.feaLevelHigh = bf_get(lpfc_mbx_rd_rev_ftr_lvl_high,
4261 &mqe->un.read_rev);
4262 phba->vpd.rev.feaLevelLow = bf_get(lpfc_mbx_rd_rev_ftr_lvl_low,
4263 &mqe->un.read_rev);
4264 phba->vpd.rev.sli1FwRev = mqe->un.read_rev.fw_id_rev;
4265 memcpy(phba->vpd.rev.sli1FwName, mqe->un.read_rev.fw_name, 16);
4266 phba->vpd.rev.sli2FwRev = mqe->un.read_rev.ulp_fw_id_rev;
4267 memcpy(phba->vpd.rev.sli2FwName, mqe->un.read_rev.ulp_fw_name, 16);
4268 phba->vpd.rev.opFwRev = mqe->un.read_rev.fw_id_rev;
4269 memcpy(phba->vpd.rev.opFwName, mqe->un.read_rev.fw_name, 16);
4270 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
4271 "(%d):0380 READ_REV Status x%x "
4272 "fw_rev:%s fcphHi:%x fcphLo:%x flHi:%x flLo:%x\n",
4273 mboxq->vport ? mboxq->vport->vpi : 0,
4274 bf_get(lpfc_mqe_status, mqe),
4275 phba->vpd.rev.opFwName,
4276 phba->vpd.rev.fcphHigh, phba->vpd.rev.fcphLow,
4277 phba->vpd.rev.feaLevelHigh, phba->vpd.rev.feaLevelLow);
da0436e9
JS
4278
4279 /*
4280 * Discover the port's supported feature set and match it against the
4281 * hosts requests.
4282 */
4283 lpfc_request_features(phba, mboxq);
4284 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4285 if (unlikely(rc)) {
4286 rc = -EIO;
4287 goto out_free_vpd;
4288 }
4289
4290 /*
4291 * The port must support FCP initiator mode as this is the
4292 * only mode running in the host.
4293 */
4294 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_fcpi, &mqe->un.req_ftrs))) {
4295 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
4296 "0378 No support for fcpi mode.\n");
4297 ftr_rsp++;
4298 }
4299
4300 /*
4301 * If the port cannot support the host's requested features
4302 * then turn off the global config parameters to disable the
4303 * feature in the driver. This is not a fatal error.
4304 */
4305 if ((phba->cfg_enable_bg) &&
4306 !(bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs)))
4307 ftr_rsp++;
4308
4309 if (phba->max_vpi && phba->cfg_enable_npiv &&
4310 !(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
4311 ftr_rsp++;
4312
4313 if (ftr_rsp) {
4314 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
4315 "0379 Feature Mismatch Data: x%08x %08x "
4316 "x%x x%x x%x\n", mqe->un.req_ftrs.word2,
4317 mqe->un.req_ftrs.word3, phba->cfg_enable_bg,
4318 phba->cfg_enable_npiv, phba->max_vpi);
4319 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs)))
4320 phba->cfg_enable_bg = 0;
4321 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
4322 phba->cfg_enable_npiv = 0;
4323 }
4324
4325 /* These SLI3 features are assumed in SLI4 */
4326 spin_lock_irq(&phba->hbalock);
4327 phba->sli3_options |= (LPFC_SLI3_NPIV_ENABLED | LPFC_SLI3_HBQ_ENABLED);
4328 spin_unlock_irq(&phba->hbalock);
4329
4330 /* Read the port's service parameters. */
4331 lpfc_read_sparam(phba, mboxq, vport->vpi);
4332 mboxq->vport = vport;
4333 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4334 mp = (struct lpfc_dmabuf *) mboxq->context1;
4335 if (rc == MBX_SUCCESS) {
4336 memcpy(&vport->fc_sparam, mp->virt, sizeof(struct serv_parm));
4337 rc = 0;
4338 }
4339
4340 /*
4341 * This memory was allocated by the lpfc_read_sparam routine. Release
4342 * it to the mbuf pool.
4343 */
4344 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4345 kfree(mp);
4346 mboxq->context1 = NULL;
4347 if (unlikely(rc)) {
4348 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4349 "0382 READ_SPARAM command failed "
4350 "status %d, mbxStatus x%x\n",
4351 rc, bf_get(lpfc_mqe_status, mqe));
4352 phba->link_state = LPFC_HBA_ERROR;
4353 rc = -EIO;
4354 goto out_free_vpd;
4355 }
4356
4357 if (phba->cfg_soft_wwnn)
4358 u64_to_wwn(phba->cfg_soft_wwnn,
4359 vport->fc_sparam.nodeName.u.wwn);
4360 if (phba->cfg_soft_wwpn)
4361 u64_to_wwn(phba->cfg_soft_wwpn,
4362 vport->fc_sparam.portName.u.wwn);
4363 memcpy(&vport->fc_nodename, &vport->fc_sparam.nodeName,
4364 sizeof(struct lpfc_name));
4365 memcpy(&vport->fc_portname, &vport->fc_sparam.portName,
4366 sizeof(struct lpfc_name));
4367
4368 /* Update the fc_host data structures with new wwn. */
4369 fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn);
4370 fc_host_port_name(shost) = wwn_to_u64(vport->fc_portname.u.wwn);
4371
4372 /* Register SGL pool to the device using non-embedded mailbox command */
4373 rc = lpfc_sli4_post_sgl_list(phba);
4374 if (unlikely(rc)) {
4375 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
6a9c52cf
JS
4376 "0582 Error %d during sgl post operation\n",
4377 rc);
da0436e9
JS
4378 rc = -ENODEV;
4379 goto out_free_vpd;
4380 }
4381
4382 /* Register SCSI SGL pool to the device */
4383 rc = lpfc_sli4_repost_scsi_sgl_list(phba);
4384 if (unlikely(rc)) {
4385 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
6a9c52cf
JS
4386 "0383 Error %d during scsi sgl post "
4387 "operation\n", rc);
da0436e9
JS
4388 /* Some Scsi buffers were moved to the abort scsi list */
4389 /* A pci function reset will repost them */
4390 rc = -ENODEV;
4391 goto out_free_vpd;
4392 }
4393
4394 /* Post the rpi header region to the device. */
4395 rc = lpfc_sli4_post_all_rpi_hdrs(phba);
4396 if (unlikely(rc)) {
4397 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4398 "0393 Error %d during rpi post operation\n",
4399 rc);
4400 rc = -ENODEV;
4401 goto out_free_vpd;
4402 }
da0436e9
JS
4403
4404 /* Set up all the queues to the device */
4405 rc = lpfc_sli4_queue_setup(phba);
4406 if (unlikely(rc)) {
4407 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4408 "0381 Error %d during queue setup.\n ", rc);
4409 goto out_stop_timers;
4410 }
4411
4412 /* Arm the CQs and then EQs on device */
4413 lpfc_sli4_arm_cqeq_intr(phba);
4414
4415 /* Indicate device interrupt mode */
4416 phba->sli4_hba.intr_enable = 1;
4417
4418 /* Allow asynchronous mailbox command to go through */
4419 spin_lock_irq(&phba->hbalock);
4420 phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
4421 spin_unlock_irq(&phba->hbalock);
4422
4423 /* Post receive buffers to the device */
4424 lpfc_sli4_rb_setup(phba);
4425
4426 /* Start the ELS watchdog timer */
8fa38513
JS
4427 mod_timer(&vport->els_tmofunc,
4428 jiffies + HZ * (phba->fc_ratov * 2));
da0436e9
JS
4429
4430 /* Start heart beat timer */
4431 mod_timer(&phba->hb_tmofunc,
4432 jiffies + HZ * LPFC_HB_MBOX_INTERVAL);
4433 phba->hb_outstanding = 0;
4434 phba->last_completion_time = jiffies;
4435
4436 /* Start error attention (ERATT) polling timer */
4437 mod_timer(&phba->eratt_poll, jiffies + HZ * LPFC_ERATT_POLL_INTERVAL);
4438
4439 /*
4440 * The port is ready, set the host's link state to LINK_DOWN
4441 * in preparation for link interrupts.
4442 */
4443 lpfc_init_link(phba, mboxq, phba->cfg_topology, phba->cfg_link_speed);
4444 mboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
4445 lpfc_set_loopback_flag(phba);
4446 /* Change driver state to LPFC_LINK_DOWN right before init link */
4447 spin_lock_irq(&phba->hbalock);
4448 phba->link_state = LPFC_LINK_DOWN;
4449 spin_unlock_irq(&phba->hbalock);
4450 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
4451 if (unlikely(rc != MBX_NOT_FINISHED)) {
4452 kfree(vpd);
4453 return 0;
4454 } else
4455 rc = -EIO;
4456
4457 /* Unset all the queues set up in this routine when error out */
4458 if (rc)
4459 lpfc_sli4_queue_unset(phba);
4460
4461out_stop_timers:
4462 if (rc)
4463 lpfc_stop_hba_timers(phba);
4464out_free_vpd:
4465 kfree(vpd);
4466out_free_mbox:
4467 mempool_free(mboxq, phba->mbox_mem_pool);
4468 return rc;
4469}
4470
4471/**
4472 * lpfc_mbox_timeout - Timeout call back function for mbox timer
4473 * @ptr: context object - pointer to hba structure.
4474 *
4475 * This is the callback function for mailbox timer. The mailbox
4476 * timer is armed when a new mailbox command is issued and the timer
4477 * is deleted when the mailbox complete. The function is called by
4478 * the kernel timer code when a mailbox does not complete within
4479 * expected time. This function wakes up the worker thread to
4480 * process the mailbox timeout and returns. All the processing is
4481 * done by the worker thread function lpfc_mbox_timeout_handler.
4482 **/
4483void
4484lpfc_mbox_timeout(unsigned long ptr)
4485{
4486 struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
4487 unsigned long iflag;
4488 uint32_t tmo_posted;
4489
4490 spin_lock_irqsave(&phba->pport->work_port_lock, iflag);
4491 tmo_posted = phba->pport->work_port_events & WORKER_MBOX_TMO;
4492 if (!tmo_posted)
4493 phba->pport->work_port_events |= WORKER_MBOX_TMO;
4494 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflag);
4495
4496 if (!tmo_posted)
4497 lpfc_worker_wake_up(phba);
4498 return;
4499}
4500
4501
4502/**
4503 * lpfc_mbox_timeout_handler - Worker thread function to handle mailbox timeout
4504 * @phba: Pointer to HBA context object.
4505 *
4506 * This function is called from worker thread when a mailbox command times out.
4507 * The caller is not required to hold any locks. This function will reset the
4508 * HBA and recover all the pending commands.
4509 **/
4510void
4511lpfc_mbox_timeout_handler(struct lpfc_hba *phba)
4512{
4513 LPFC_MBOXQ_t *pmbox = phba->sli.mbox_active;
04c68496 4514 MAILBOX_t *mb = &pmbox->u.mb;
da0436e9
JS
4515 struct lpfc_sli *psli = &phba->sli;
4516 struct lpfc_sli_ring *pring;
4517
4518 /* Check the pmbox pointer first. There is a race condition
4519 * between the mbox timeout handler getting executed in the
4520 * worklist and the mailbox actually completing. When this
4521 * race condition occurs, the mbox_active will be NULL.
4522 */
4523 spin_lock_irq(&phba->hbalock);
4524 if (pmbox == NULL) {
4525 lpfc_printf_log(phba, KERN_WARNING,
4526 LOG_MBOX | LOG_SLI,
4527 "0353 Active Mailbox cleared - mailbox timeout "
4528 "exiting\n");
4529 spin_unlock_irq(&phba->hbalock);
4530 return;
4531 }
4532
4533 /* Mbox cmd <mbxCommand> timeout */
4534 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4535 "0310 Mailbox command x%x timeout Data: x%x x%x x%p\n",
4536 mb->mbxCommand,
4537 phba->pport->port_state,
4538 phba->sli.sli_flag,
4539 phba->sli.mbox_active);
4540 spin_unlock_irq(&phba->hbalock);
4541
4542 /* Setting state unknown so lpfc_sli_abort_iocb_ring
4543 * would get IOCB_ERROR from lpfc_sli_issue_iocb, allowing
4544 * it to fail all oustanding SCSI IO.
4545 */
4546 spin_lock_irq(&phba->pport->work_port_lock);
4547 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
4548 spin_unlock_irq(&phba->pport->work_port_lock);
4549 spin_lock_irq(&phba->hbalock);
4550 phba->link_state = LPFC_LINK_UNKNOWN;
f4b4c68f 4551 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
da0436e9
JS
4552 spin_unlock_irq(&phba->hbalock);
4553
4554 pring = &psli->ring[psli->fcp_ring];
4555 lpfc_sli_abort_iocb_ring(phba, pring);
4556
4557 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4558 "0345 Resetting board due to mailbox timeout\n");
4559
4560 /* Reset the HBA device */
4561 lpfc_reset_hba(phba);
4562}
4563
4564/**
4565 * lpfc_sli_issue_mbox_s3 - Issue an SLI3 mailbox command to firmware
4566 * @phba: Pointer to HBA context object.
4567 * @pmbox: Pointer to mailbox object.
4568 * @flag: Flag indicating how the mailbox need to be processed.
4569 *
4570 * This function is called by discovery code and HBA management code
4571 * to submit a mailbox command to firmware with SLI-3 interface spec. This
4572 * function gets the hbalock to protect the data structures.
4573 * The mailbox command can be submitted in polling mode, in which case
4574 * this function will wait in a polling loop for the completion of the
4575 * mailbox.
4576 * If the mailbox is submitted in no_wait mode (not polling) the
4577 * function will submit the command and returns immediately without waiting
4578 * for the mailbox completion. The no_wait is supported only when HBA
4579 * is in SLI2/SLI3 mode - interrupts are enabled.
4580 * The SLI interface allows only one mailbox pending at a time. If the
4581 * mailbox is issued in polling mode and there is already a mailbox
4582 * pending, then the function will return an error. If the mailbox is issued
4583 * in NO_WAIT mode and there is a mailbox pending already, the function
4584 * will return MBX_BUSY after queuing the mailbox into mailbox queue.
4585 * The sli layer owns the mailbox object until the completion of mailbox
4586 * command if this function return MBX_BUSY or MBX_SUCCESS. For all other
4587 * return codes the caller owns the mailbox command after the return of
4588 * the function.
e59058c4 4589 **/
3772a991
JS
4590static int
4591lpfc_sli_issue_mbox_s3(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox,
4592 uint32_t flag)
dea3101e 4593{
dea3101e 4594 MAILBOX_t *mb;
2e0fef85 4595 struct lpfc_sli *psli = &phba->sli;
dea3101e
JB
4596 uint32_t status, evtctr;
4597 uint32_t ha_copy;
4598 int i;
09372820 4599 unsigned long timeout;
dea3101e 4600 unsigned long drvr_flag = 0;
34b02dcd 4601 uint32_t word0, ldata;
dea3101e 4602 void __iomem *to_slim;
58da1ffb
JS
4603 int processing_queue = 0;
4604
4605 spin_lock_irqsave(&phba->hbalock, drvr_flag);
4606 if (!pmbox) {
8568a4d2 4607 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
58da1ffb 4608 /* processing mbox queue from intr_handler */
3772a991
JS
4609 if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
4610 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
4611 return MBX_SUCCESS;
4612 }
58da1ffb 4613 processing_queue = 1;
58da1ffb
JS
4614 pmbox = lpfc_mbox_get(phba);
4615 if (!pmbox) {
4616 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
4617 return MBX_SUCCESS;
4618 }
4619 }
dea3101e 4620
ed957684 4621 if (pmbox->mbox_cmpl && pmbox->mbox_cmpl != lpfc_sli_def_mbox_cmpl &&
92d7f7b0 4622 pmbox->mbox_cmpl != lpfc_sli_wake_mbox_wait) {
ed957684 4623 if(!pmbox->vport) {
58da1ffb 4624 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
ed957684 4625 lpfc_printf_log(phba, KERN_ERR,
92d7f7b0 4626 LOG_MBOX | LOG_VPORT,
e8b62011 4627 "1806 Mbox x%x failed. No vport\n",
3772a991 4628 pmbox->u.mb.mbxCommand);
ed957684 4629 dump_stack();
58da1ffb 4630 goto out_not_finished;
ed957684
JS
4631 }
4632 }
4633
8d63f375 4634 /* If the PCI channel is in offline state, do not post mbox. */
58da1ffb
JS
4635 if (unlikely(pci_channel_offline(phba->pcidev))) {
4636 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
4637 goto out_not_finished;
4638 }
8d63f375 4639
a257bf90
JS
4640 /* If HBA has a deferred error attention, fail the iocb. */
4641 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
4642 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
4643 goto out_not_finished;
4644 }
4645
dea3101e 4646 psli = &phba->sli;
92d7f7b0 4647
3772a991 4648 mb = &pmbox->u.mb;
dea3101e
JB
4649 status = MBX_SUCCESS;
4650
2e0fef85
JS
4651 if (phba->link_state == LPFC_HBA_ERROR) {
4652 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
41415862
JW
4653
4654 /* Mbox command <mbxCommand> cannot issue */
3772a991
JS
4655 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4656 "(%d):0311 Mailbox command x%x cannot "
4657 "issue Data: x%x x%x\n",
4658 pmbox->vport ? pmbox->vport->vpi : 0,
4659 pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
58da1ffb 4660 goto out_not_finished;
41415862
JW
4661 }
4662
9290831f
JS
4663 if (mb->mbxCommand != MBX_KILL_BOARD && flag & MBX_NOWAIT &&
4664 !(readl(phba->HCregaddr) & HC_MBINT_ENA)) {
2e0fef85 4665 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
3772a991
JS
4666 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4667 "(%d):2528 Mailbox command x%x cannot "
4668 "issue Data: x%x x%x\n",
4669 pmbox->vport ? pmbox->vport->vpi : 0,
4670 pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
58da1ffb 4671 goto out_not_finished;
9290831f
JS
4672 }
4673
dea3101e
JB
4674 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
4675 /* Polling for a mbox command when another one is already active
4676 * is not allowed in SLI. Also, the driver must have established
4677 * SLI2 mode to queue and process multiple mbox commands.
4678 */
4679
4680 if (flag & MBX_POLL) {
2e0fef85 4681 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea3101e
JB
4682
4683 /* Mbox command <mbxCommand> cannot issue */
3772a991
JS
4684 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4685 "(%d):2529 Mailbox command x%x "
4686 "cannot issue Data: x%x x%x\n",
4687 pmbox->vport ? pmbox->vport->vpi : 0,
4688 pmbox->u.mb.mbxCommand,
4689 psli->sli_flag, flag);
58da1ffb 4690 goto out_not_finished;
dea3101e
JB
4691 }
4692
3772a991 4693 if (!(psli->sli_flag & LPFC_SLI_ACTIVE)) {
2e0fef85 4694 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea3101e 4695 /* Mbox command <mbxCommand> cannot issue */
3772a991
JS
4696 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4697 "(%d):2530 Mailbox command x%x "
4698 "cannot issue Data: x%x x%x\n",
4699 pmbox->vport ? pmbox->vport->vpi : 0,
4700 pmbox->u.mb.mbxCommand,
4701 psli->sli_flag, flag);
58da1ffb 4702 goto out_not_finished;
dea3101e
JB
4703 }
4704
dea3101e
JB
4705 /* Another mailbox command is still being processed, queue this
4706 * command to be processed later.
4707 */
4708 lpfc_mbox_put(phba, pmbox);
4709
4710 /* Mbox cmd issue - BUSY */
ed957684 4711 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
e8b62011 4712 "(%d):0308 Mbox cmd issue - BUSY Data: "
92d7f7b0 4713 "x%x x%x x%x x%x\n",
92d7f7b0
JS
4714 pmbox->vport ? pmbox->vport->vpi : 0xffffff,
4715 mb->mbxCommand, phba->pport->port_state,
4716 psli->sli_flag, flag);
dea3101e
JB
4717
4718 psli->slistat.mbox_busy++;
2e0fef85 4719 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea3101e 4720
858c9f6c
JS
4721 if (pmbox->vport) {
4722 lpfc_debugfs_disc_trc(pmbox->vport,
4723 LPFC_DISC_TRC_MBOX_VPORT,
4724 "MBOX Bsy vport: cmd:x%x mb:x%x x%x",
4725 (uint32_t)mb->mbxCommand,
4726 mb->un.varWords[0], mb->un.varWords[1]);
4727 }
4728 else {
4729 lpfc_debugfs_disc_trc(phba->pport,
4730 LPFC_DISC_TRC_MBOX,
4731 "MBOX Bsy: cmd:x%x mb:x%x x%x",
4732 (uint32_t)mb->mbxCommand,
4733 mb->un.varWords[0], mb->un.varWords[1]);
4734 }
4735
2e0fef85 4736 return MBX_BUSY;
dea3101e
JB
4737 }
4738
dea3101e
JB
4739 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
4740
4741 /* If we are not polling, we MUST be in SLI2 mode */
4742 if (flag != MBX_POLL) {
3772a991 4743 if (!(psli->sli_flag & LPFC_SLI_ACTIVE) &&
41415862 4744 (mb->mbxCommand != MBX_KILL_BOARD)) {
dea3101e 4745 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
2e0fef85 4746 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea3101e 4747 /* Mbox command <mbxCommand> cannot issue */
3772a991
JS
4748 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4749 "(%d):2531 Mailbox command x%x "
4750 "cannot issue Data: x%x x%x\n",
4751 pmbox->vport ? pmbox->vport->vpi : 0,
4752 pmbox->u.mb.mbxCommand,
4753 psli->sli_flag, flag);
58da1ffb 4754 goto out_not_finished;
dea3101e
JB
4755 }
4756 /* timeout active mbox command */
a309a6b6
JS
4757 mod_timer(&psli->mbox_tmo, (jiffies +
4758 (HZ * lpfc_mbox_tmo_val(phba, mb->mbxCommand))));
dea3101e
JB
4759 }
4760
4761 /* Mailbox cmd <cmd> issue */
ed957684 4762 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
e8b62011 4763 "(%d):0309 Mailbox cmd x%x issue Data: x%x x%x "
92d7f7b0 4764 "x%x\n",
e8b62011 4765 pmbox->vport ? pmbox->vport->vpi : 0,
92d7f7b0
JS
4766 mb->mbxCommand, phba->pport->port_state,
4767 psli->sli_flag, flag);
dea3101e 4768
858c9f6c
JS
4769 if (mb->mbxCommand != MBX_HEARTBEAT) {
4770 if (pmbox->vport) {
4771 lpfc_debugfs_disc_trc(pmbox->vport,
4772 LPFC_DISC_TRC_MBOX_VPORT,
4773 "MBOX Send vport: cmd:x%x mb:x%x x%x",
4774 (uint32_t)mb->mbxCommand,
4775 mb->un.varWords[0], mb->un.varWords[1]);
4776 }
4777 else {
4778 lpfc_debugfs_disc_trc(phba->pport,
4779 LPFC_DISC_TRC_MBOX,
4780 "MBOX Send: cmd:x%x mb:x%x x%x",
4781 (uint32_t)mb->mbxCommand,
4782 mb->un.varWords[0], mb->un.varWords[1]);
4783 }
4784 }
4785
dea3101e
JB
4786 psli->slistat.mbox_cmd++;
4787 evtctr = psli->slistat.mbox_event;
4788
4789 /* next set own bit for the adapter and copy over command word */
4790 mb->mbxOwner = OWN_CHIP;
4791
3772a991 4792 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea3101e 4793 /* First copy command data to host SLIM area */
34b02dcd 4794 lpfc_sli_pcimem_bcopy(mb, phba->mbox, MAILBOX_CMD_SIZE);
dea3101e 4795 } else {
9290831f 4796 if (mb->mbxCommand == MBX_CONFIG_PORT) {
dea3101e 4797 /* copy command data into host mbox for cmpl */
34b02dcd 4798 lpfc_sli_pcimem_bcopy(mb, phba->mbox, MAILBOX_CMD_SIZE);
dea3101e
JB
4799 }
4800
4801 /* First copy mbox command data to HBA SLIM, skip past first
4802 word */
4803 to_slim = phba->MBslimaddr + sizeof (uint32_t);
4804 lpfc_memcpy_to_slim(to_slim, &mb->un.varWords[0],
4805 MAILBOX_CMD_SIZE - sizeof (uint32_t));
4806
4807 /* Next copy over first word, with mbxOwner set */
34b02dcd 4808 ldata = *((uint32_t *)mb);
dea3101e
JB
4809 to_slim = phba->MBslimaddr;
4810 writel(ldata, to_slim);
4811 readl(to_slim); /* flush */
4812
4813 if (mb->mbxCommand == MBX_CONFIG_PORT) {
4814 /* switch over to host mailbox */
3772a991 4815 psli->sli_flag |= LPFC_SLI_ACTIVE;
dea3101e
JB
4816 }
4817 }
4818
4819 wmb();
dea3101e
JB
4820
4821 switch (flag) {
4822 case MBX_NOWAIT:
09372820 4823 /* Set up reference to mailbox command */
dea3101e 4824 psli->mbox_active = pmbox;
09372820
JS
4825 /* Interrupt board to do it */
4826 writel(CA_MBATT, phba->CAregaddr);
4827 readl(phba->CAregaddr); /* flush */
4828 /* Don't wait for it to finish, just return */
dea3101e
JB
4829 break;
4830
4831 case MBX_POLL:
09372820 4832 /* Set up null reference to mailbox command */
dea3101e 4833 psli->mbox_active = NULL;
09372820
JS
4834 /* Interrupt board to do it */
4835 writel(CA_MBATT, phba->CAregaddr);
4836 readl(phba->CAregaddr); /* flush */
4837
3772a991 4838 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea3101e 4839 /* First read mbox status word */
34b02dcd 4840 word0 = *((uint32_t *)phba->mbox);
dea3101e
JB
4841 word0 = le32_to_cpu(word0);
4842 } else {
4843 /* First read mbox status word */
4844 word0 = readl(phba->MBslimaddr);
4845 }
4846
4847 /* Read the HBA Host Attention Register */
4848 ha_copy = readl(phba->HAregaddr);
09372820
JS
4849 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
4850 mb->mbxCommand) *
4851 1000) + jiffies;
4852 i = 0;
dea3101e 4853 /* Wait for command to complete */
41415862
JW
4854 while (((word0 & OWN_CHIP) == OWN_CHIP) ||
4855 (!(ha_copy & HA_MBATT) &&
2e0fef85 4856 (phba->link_state > LPFC_WARM_START))) {
09372820 4857 if (time_after(jiffies, timeout)) {
dea3101e 4858 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
2e0fef85 4859 spin_unlock_irqrestore(&phba->hbalock,
dea3101e 4860 drvr_flag);
58da1ffb 4861 goto out_not_finished;
dea3101e
JB
4862 }
4863
4864 /* Check if we took a mbox interrupt while we were
4865 polling */
4866 if (((word0 & OWN_CHIP) != OWN_CHIP)
4867 && (evtctr != psli->slistat.mbox_event))
4868 break;
4869
09372820
JS
4870 if (i++ > 10) {
4871 spin_unlock_irqrestore(&phba->hbalock,
4872 drvr_flag);
4873 msleep(1);
4874 spin_lock_irqsave(&phba->hbalock, drvr_flag);
4875 }
dea3101e 4876
3772a991 4877 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea3101e 4878 /* First copy command data */
34b02dcd 4879 word0 = *((uint32_t *)phba->mbox);
dea3101e
JB
4880 word0 = le32_to_cpu(word0);
4881 if (mb->mbxCommand == MBX_CONFIG_PORT) {
4882 MAILBOX_t *slimmb;
34b02dcd 4883 uint32_t slimword0;
dea3101e
JB
4884 /* Check real SLIM for any errors */
4885 slimword0 = readl(phba->MBslimaddr);
4886 slimmb = (MAILBOX_t *) & slimword0;
4887 if (((slimword0 & OWN_CHIP) != OWN_CHIP)
4888 && slimmb->mbxStatus) {
4889 psli->sli_flag &=
3772a991 4890 ~LPFC_SLI_ACTIVE;
dea3101e
JB
4891 word0 = slimword0;
4892 }
4893 }
4894 } else {
4895 /* First copy command data */
4896 word0 = readl(phba->MBslimaddr);
4897 }
4898 /* Read the HBA Host Attention Register */
4899 ha_copy = readl(phba->HAregaddr);
4900 }
4901
3772a991 4902 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea3101e 4903 /* copy results back to user */
34b02dcd 4904 lpfc_sli_pcimem_bcopy(phba->mbox, mb, MAILBOX_CMD_SIZE);
dea3101e
JB
4905 } else {
4906 /* First copy command data */
4907 lpfc_memcpy_from_slim(mb, phba->MBslimaddr,
4908 MAILBOX_CMD_SIZE);
4909 if ((mb->mbxCommand == MBX_DUMP_MEMORY) &&
4910 pmbox->context2) {
92d7f7b0 4911 lpfc_memcpy_from_slim((void *)pmbox->context2,
dea3101e
JB
4912 phba->MBslimaddr + DMP_RSP_OFFSET,
4913 mb->un.varDmp.word_cnt);
4914 }
4915 }
4916
4917 writel(HA_MBATT, phba->HAregaddr);
4918 readl(phba->HAregaddr); /* flush */
4919
4920 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
4921 status = mb->mbxStatus;
4922 }
4923
2e0fef85
JS
4924 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
4925 return status;
58da1ffb
JS
4926
4927out_not_finished:
4928 if (processing_queue) {
da0436e9 4929 pmbox->u.mb.mbxStatus = MBX_NOT_FINISHED;
58da1ffb
JS
4930 lpfc_mbox_cmpl_put(phba, pmbox);
4931 }
4932 return MBX_NOT_FINISHED;
dea3101e
JB
4933}
4934
f1126688
JS
4935/**
4936 * lpfc_sli4_async_mbox_block - Block posting SLI4 asynchronous mailbox command
4937 * @phba: Pointer to HBA context object.
4938 *
4939 * The function blocks the posting of SLI4 asynchronous mailbox commands from
4940 * the driver internal pending mailbox queue. It will then try to wait out the
4941 * possible outstanding mailbox command before return.
4942 *
4943 * Returns:
4944 * 0 - the outstanding mailbox command completed; otherwise, the wait for
4945 * the outstanding mailbox command timed out.
4946 **/
4947static int
4948lpfc_sli4_async_mbox_block(struct lpfc_hba *phba)
4949{
4950 struct lpfc_sli *psli = &phba->sli;
4951 uint8_t actcmd = MBX_HEARTBEAT;
4952 int rc = 0;
4953 unsigned long timeout;
4954
4955 /* Mark the asynchronous mailbox command posting as blocked */
4956 spin_lock_irq(&phba->hbalock);
4957 psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
4958 if (phba->sli.mbox_active)
4959 actcmd = phba->sli.mbox_active->u.mb.mbxCommand;
4960 spin_unlock_irq(&phba->hbalock);
4961 /* Determine how long we might wait for the active mailbox
4962 * command to be gracefully completed by firmware.
4963 */
4964 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, actcmd) * 1000) +
4965 jiffies;
4966 /* Wait for the outstnading mailbox command to complete */
4967 while (phba->sli.mbox_active) {
4968 /* Check active mailbox complete status every 2ms */
4969 msleep(2);
4970 if (time_after(jiffies, timeout)) {
4971 /* Timeout, marked the outstanding cmd not complete */
4972 rc = 1;
4973 break;
4974 }
4975 }
4976
4977 /* Can not cleanly block async mailbox command, fails it */
4978 if (rc) {
4979 spin_lock_irq(&phba->hbalock);
4980 psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
4981 spin_unlock_irq(&phba->hbalock);
4982 }
4983 return rc;
4984}
4985
4986/**
4987 * lpfc_sli4_async_mbox_unblock - Block posting SLI4 async mailbox command
4988 * @phba: Pointer to HBA context object.
4989 *
4990 * The function unblocks and resume posting of SLI4 asynchronous mailbox
4991 * commands from the driver internal pending mailbox queue. It makes sure
4992 * that there is no outstanding mailbox command before resuming posting
4993 * asynchronous mailbox commands. If, for any reason, there is outstanding
4994 * mailbox command, it will try to wait it out before resuming asynchronous
4995 * mailbox command posting.
4996 **/
4997static void
4998lpfc_sli4_async_mbox_unblock(struct lpfc_hba *phba)
4999{
5000 struct lpfc_sli *psli = &phba->sli;
5001
5002 spin_lock_irq(&phba->hbalock);
5003 if (!(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
5004 /* Asynchronous mailbox posting is not blocked, do nothing */
5005 spin_unlock_irq(&phba->hbalock);
5006 return;
5007 }
5008
5009 /* Outstanding synchronous mailbox command is guaranteed to be done,
5010 * successful or timeout, after timing-out the outstanding mailbox
5011 * command shall always be removed, so just unblock posting async
5012 * mailbox command and resume
5013 */
5014 psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
5015 spin_unlock_irq(&phba->hbalock);
5016
5017 /* wake up worker thread to post asynchronlous mailbox command */
5018 lpfc_worker_wake_up(phba);
5019}
5020
da0436e9
JS
5021/**
5022 * lpfc_sli4_post_sync_mbox - Post an SLI4 mailbox to the bootstrap mailbox
5023 * @phba: Pointer to HBA context object.
5024 * @mboxq: Pointer to mailbox object.
5025 *
5026 * The function posts a mailbox to the port. The mailbox is expected
5027 * to be comletely filled in and ready for the port to operate on it.
5028 * This routine executes a synchronous completion operation on the
5029 * mailbox by polling for its completion.
5030 *
5031 * The caller must not be holding any locks when calling this routine.
5032 *
5033 * Returns:
5034 * MBX_SUCCESS - mailbox posted successfully
5035 * Any of the MBX error values.
5036 **/
5037static int
5038lpfc_sli4_post_sync_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
5039{
5040 int rc = MBX_SUCCESS;
5041 unsigned long iflag;
5042 uint32_t db_ready;
5043 uint32_t mcqe_status;
5044 uint32_t mbx_cmnd;
5045 unsigned long timeout;
5046 struct lpfc_sli *psli = &phba->sli;
5047 struct lpfc_mqe *mb = &mboxq->u.mqe;
5048 struct lpfc_bmbx_create *mbox_rgn;
5049 struct dma_address *dma_address;
5050 struct lpfc_register bmbx_reg;
5051
5052 /*
5053 * Only one mailbox can be active to the bootstrap mailbox region
5054 * at a time and there is no queueing provided.
5055 */
5056 spin_lock_irqsave(&phba->hbalock, iflag);
5057 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
5058 spin_unlock_irqrestore(&phba->hbalock, iflag);
5059 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
5060 "(%d):2532 Mailbox command x%x (x%x) "
5061 "cannot issue Data: x%x x%x\n",
5062 mboxq->vport ? mboxq->vport->vpi : 0,
5063 mboxq->u.mb.mbxCommand,
5064 lpfc_sli4_mbox_opcode_get(phba, mboxq),
5065 psli->sli_flag, MBX_POLL);
5066 return MBXERR_ERROR;
5067 }
5068 /* The server grabs the token and owns it until release */
5069 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
5070 phba->sli.mbox_active = mboxq;
5071 spin_unlock_irqrestore(&phba->hbalock, iflag);
5072
5073 /*
5074 * Initialize the bootstrap memory region to avoid stale data areas
5075 * in the mailbox post. Then copy the caller's mailbox contents to
5076 * the bmbx mailbox region.
5077 */
5078 mbx_cmnd = bf_get(lpfc_mqe_command, mb);
5079 memset(phba->sli4_hba.bmbx.avirt, 0, sizeof(struct lpfc_bmbx_create));
5080 lpfc_sli_pcimem_bcopy(mb, phba->sli4_hba.bmbx.avirt,
5081 sizeof(struct lpfc_mqe));
5082
5083 /* Post the high mailbox dma address to the port and wait for ready. */
5084 dma_address = &phba->sli4_hba.bmbx.dma_address;
5085 writel(dma_address->addr_hi, phba->sli4_hba.BMBXregaddr);
5086
5087 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, mbx_cmnd)
5088 * 1000) + jiffies;
5089 do {
5090 bmbx_reg.word0 = readl(phba->sli4_hba.BMBXregaddr);
5091 db_ready = bf_get(lpfc_bmbx_rdy, &bmbx_reg);
5092 if (!db_ready)
5093 msleep(2);
5094
5095 if (time_after(jiffies, timeout)) {
5096 rc = MBXERR_ERROR;
5097 goto exit;
5098 }
5099 } while (!db_ready);
5100
5101 /* Post the low mailbox dma address to the port. */
5102 writel(dma_address->addr_lo, phba->sli4_hba.BMBXregaddr);
5103 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, mbx_cmnd)
5104 * 1000) + jiffies;
5105 do {
5106 bmbx_reg.word0 = readl(phba->sli4_hba.BMBXregaddr);
5107 db_ready = bf_get(lpfc_bmbx_rdy, &bmbx_reg);
5108 if (!db_ready)
5109 msleep(2);
5110
5111 if (time_after(jiffies, timeout)) {
5112 rc = MBXERR_ERROR;
5113 goto exit;
5114 }
5115 } while (!db_ready);
5116
5117 /*
5118 * Read the CQ to ensure the mailbox has completed.
5119 * If so, update the mailbox status so that the upper layers
5120 * can complete the request normally.
5121 */
5122 lpfc_sli_pcimem_bcopy(phba->sli4_hba.bmbx.avirt, mb,
5123 sizeof(struct lpfc_mqe));
5124 mbox_rgn = (struct lpfc_bmbx_create *) phba->sli4_hba.bmbx.avirt;
5125 lpfc_sli_pcimem_bcopy(&mbox_rgn->mcqe, &mboxq->mcqe,
5126 sizeof(struct lpfc_mcqe));
5127 mcqe_status = bf_get(lpfc_mcqe_status, &mbox_rgn->mcqe);
5128
5129 /* Prefix the mailbox status with range x4000 to note SLI4 status. */
5130 if (mcqe_status != MB_CQE_STATUS_SUCCESS) {
5131 bf_set(lpfc_mqe_status, mb, LPFC_MBX_ERROR_RANGE | mcqe_status);
5132 rc = MBXERR_ERROR;
5133 }
5134
5135 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
5136 "(%d):0356 Mailbox cmd x%x (x%x) Status x%x "
5137 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x"
5138 " x%x x%x CQ: x%x x%x x%x x%x\n",
5139 mboxq->vport ? mboxq->vport->vpi : 0,
5140 mbx_cmnd, lpfc_sli4_mbox_opcode_get(phba, mboxq),
5141 bf_get(lpfc_mqe_status, mb),
5142 mb->un.mb_words[0], mb->un.mb_words[1],
5143 mb->un.mb_words[2], mb->un.mb_words[3],
5144 mb->un.mb_words[4], mb->un.mb_words[5],
5145 mb->un.mb_words[6], mb->un.mb_words[7],
5146 mb->un.mb_words[8], mb->un.mb_words[9],
5147 mb->un.mb_words[10], mb->un.mb_words[11],
5148 mb->un.mb_words[12], mboxq->mcqe.word0,
5149 mboxq->mcqe.mcqe_tag0, mboxq->mcqe.mcqe_tag1,
5150 mboxq->mcqe.trailer);
5151exit:
5152 /* We are holding the token, no needed for lock when release */
5153 spin_lock_irqsave(&phba->hbalock, iflag);
5154 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
5155 phba->sli.mbox_active = NULL;
5156 spin_unlock_irqrestore(&phba->hbalock, iflag);
5157 return rc;
5158}
5159
5160/**
5161 * lpfc_sli_issue_mbox_s4 - Issue an SLI4 mailbox command to firmware
5162 * @phba: Pointer to HBA context object.
5163 * @pmbox: Pointer to mailbox object.
5164 * @flag: Flag indicating how the mailbox need to be processed.
5165 *
5166 * This function is called by discovery code and HBA management code to submit
5167 * a mailbox command to firmware with SLI-4 interface spec.
5168 *
5169 * Return codes the caller owns the mailbox command after the return of the
5170 * function.
5171 **/
5172static int
5173lpfc_sli_issue_mbox_s4(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
5174 uint32_t flag)
5175{
5176 struct lpfc_sli *psli = &phba->sli;
5177 unsigned long iflags;
5178 int rc;
5179
8fa38513
JS
5180 rc = lpfc_mbox_dev_check(phba);
5181 if (unlikely(rc)) {
5182 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
5183 "(%d):2544 Mailbox command x%x (x%x) "
5184 "cannot issue Data: x%x x%x\n",
5185 mboxq->vport ? mboxq->vport->vpi : 0,
5186 mboxq->u.mb.mbxCommand,
5187 lpfc_sli4_mbox_opcode_get(phba, mboxq),
5188 psli->sli_flag, flag);
5189 goto out_not_finished;
5190 }
5191
da0436e9
JS
5192 /* Detect polling mode and jump to a handler */
5193 if (!phba->sli4_hba.intr_enable) {
5194 if (flag == MBX_POLL)
5195 rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
5196 else
5197 rc = -EIO;
5198 if (rc != MBX_SUCCESS)
5199 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
5200 "(%d):2541 Mailbox command x%x "
5201 "(x%x) cannot issue Data: x%x x%x\n",
5202 mboxq->vport ? mboxq->vport->vpi : 0,
5203 mboxq->u.mb.mbxCommand,
5204 lpfc_sli4_mbox_opcode_get(phba, mboxq),
5205 psli->sli_flag, flag);
5206 return rc;
5207 } else if (flag == MBX_POLL) {
f1126688
JS
5208 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
5209 "(%d):2542 Try to issue mailbox command "
5210 "x%x (x%x) synchronously ahead of async"
5211 "mailbox command queue: x%x x%x\n",
da0436e9
JS
5212 mboxq->vport ? mboxq->vport->vpi : 0,
5213 mboxq->u.mb.mbxCommand,
5214 lpfc_sli4_mbox_opcode_get(phba, mboxq),
5215 psli->sli_flag, flag);
f1126688
JS
5216 /* Try to block the asynchronous mailbox posting */
5217 rc = lpfc_sli4_async_mbox_block(phba);
5218 if (!rc) {
5219 /* Successfully blocked, now issue sync mbox cmd */
5220 rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
5221 if (rc != MBX_SUCCESS)
5222 lpfc_printf_log(phba, KERN_ERR,
5223 LOG_MBOX | LOG_SLI,
5224 "(%d):2597 Mailbox command "
5225 "x%x (x%x) cannot issue "
5226 "Data: x%x x%x\n",
5227 mboxq->vport ?
5228 mboxq->vport->vpi : 0,
5229 mboxq->u.mb.mbxCommand,
5230 lpfc_sli4_mbox_opcode_get(phba,
5231 mboxq),
5232 psli->sli_flag, flag);
5233 /* Unblock the async mailbox posting afterward */
5234 lpfc_sli4_async_mbox_unblock(phba);
5235 }
5236 return rc;
da0436e9
JS
5237 }
5238
5239 /* Now, interrupt mode asynchrous mailbox command */
5240 rc = lpfc_mbox_cmd_check(phba, mboxq);
5241 if (rc) {
5242 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
5243 "(%d):2543 Mailbox command x%x (x%x) "
5244 "cannot issue Data: x%x x%x\n",
5245 mboxq->vport ? mboxq->vport->vpi : 0,
5246 mboxq->u.mb.mbxCommand,
5247 lpfc_sli4_mbox_opcode_get(phba, mboxq),
5248 psli->sli_flag, flag);
5249 goto out_not_finished;
5250 }
da0436e9
JS
5251
5252 /* Put the mailbox command to the driver internal FIFO */
5253 psli->slistat.mbox_busy++;
5254 spin_lock_irqsave(&phba->hbalock, iflags);
5255 lpfc_mbox_put(phba, mboxq);
5256 spin_unlock_irqrestore(&phba->hbalock, iflags);
5257 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
5258 "(%d):0354 Mbox cmd issue - Enqueue Data: "
5259 "x%x (x%x) x%x x%x x%x\n",
5260 mboxq->vport ? mboxq->vport->vpi : 0xffffff,
5261 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
5262 lpfc_sli4_mbox_opcode_get(phba, mboxq),
5263 phba->pport->port_state,
5264 psli->sli_flag, MBX_NOWAIT);
5265 /* Wake up worker thread to transport mailbox command from head */
5266 lpfc_worker_wake_up(phba);
5267
5268 return MBX_BUSY;
5269
5270out_not_finished:
5271 return MBX_NOT_FINISHED;
5272}
5273
5274/**
5275 * lpfc_sli4_post_async_mbox - Post an SLI4 mailbox command to device
5276 * @phba: Pointer to HBA context object.
5277 *
5278 * This function is called by worker thread to send a mailbox command to
5279 * SLI4 HBA firmware.
5280 *
5281 **/
5282int
5283lpfc_sli4_post_async_mbox(struct lpfc_hba *phba)
5284{
5285 struct lpfc_sli *psli = &phba->sli;
5286 LPFC_MBOXQ_t *mboxq;
5287 int rc = MBX_SUCCESS;
5288 unsigned long iflags;
5289 struct lpfc_mqe *mqe;
5290 uint32_t mbx_cmnd;
5291
5292 /* Check interrupt mode before post async mailbox command */
5293 if (unlikely(!phba->sli4_hba.intr_enable))
5294 return MBX_NOT_FINISHED;
5295
5296 /* Check for mailbox command service token */
5297 spin_lock_irqsave(&phba->hbalock, iflags);
5298 if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
5299 spin_unlock_irqrestore(&phba->hbalock, iflags);
5300 return MBX_NOT_FINISHED;
5301 }
5302 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
5303 spin_unlock_irqrestore(&phba->hbalock, iflags);
5304 return MBX_NOT_FINISHED;
5305 }
5306 if (unlikely(phba->sli.mbox_active)) {
5307 spin_unlock_irqrestore(&phba->hbalock, iflags);
5308 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
5309 "0384 There is pending active mailbox cmd\n");
5310 return MBX_NOT_FINISHED;
5311 }
5312 /* Take the mailbox command service token */
5313 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
5314
5315 /* Get the next mailbox command from head of queue */
5316 mboxq = lpfc_mbox_get(phba);
5317
5318 /* If no more mailbox command waiting for post, we're done */
5319 if (!mboxq) {
5320 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
5321 spin_unlock_irqrestore(&phba->hbalock, iflags);
5322 return MBX_SUCCESS;
5323 }
5324 phba->sli.mbox_active = mboxq;
5325 spin_unlock_irqrestore(&phba->hbalock, iflags);
5326
5327 /* Check device readiness for posting mailbox command */
5328 rc = lpfc_mbox_dev_check(phba);
5329 if (unlikely(rc))
5330 /* Driver clean routine will clean up pending mailbox */
5331 goto out_not_finished;
5332
5333 /* Prepare the mbox command to be posted */
5334 mqe = &mboxq->u.mqe;
5335 mbx_cmnd = bf_get(lpfc_mqe_command, mqe);
5336
5337 /* Start timer for the mbox_tmo and log some mailbox post messages */
5338 mod_timer(&psli->mbox_tmo, (jiffies +
5339 (HZ * lpfc_mbox_tmo_val(phba, mbx_cmnd))));
5340
5341 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
5342 "(%d):0355 Mailbox cmd x%x (x%x) issue Data: "
5343 "x%x x%x\n",
5344 mboxq->vport ? mboxq->vport->vpi : 0, mbx_cmnd,
5345 lpfc_sli4_mbox_opcode_get(phba, mboxq),
5346 phba->pport->port_state, psli->sli_flag);
5347
5348 if (mbx_cmnd != MBX_HEARTBEAT) {
5349 if (mboxq->vport) {
5350 lpfc_debugfs_disc_trc(mboxq->vport,
5351 LPFC_DISC_TRC_MBOX_VPORT,
5352 "MBOX Send vport: cmd:x%x mb:x%x x%x",
5353 mbx_cmnd, mqe->un.mb_words[0],
5354 mqe->un.mb_words[1]);
5355 } else {
5356 lpfc_debugfs_disc_trc(phba->pport,
5357 LPFC_DISC_TRC_MBOX,
5358 "MBOX Send: cmd:x%x mb:x%x x%x",
5359 mbx_cmnd, mqe->un.mb_words[0],
5360 mqe->un.mb_words[1]);
5361 }
5362 }
5363 psli->slistat.mbox_cmd++;
5364
5365 /* Post the mailbox command to the port */
5366 rc = lpfc_sli4_mq_put(phba->sli4_hba.mbx_wq, mqe);
5367 if (rc != MBX_SUCCESS) {
5368 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
5369 "(%d):2533 Mailbox command x%x (x%x) "
5370 "cannot issue Data: x%x x%x\n",
5371 mboxq->vport ? mboxq->vport->vpi : 0,
5372 mboxq->u.mb.mbxCommand,
5373 lpfc_sli4_mbox_opcode_get(phba, mboxq),
5374 psli->sli_flag, MBX_NOWAIT);
5375 goto out_not_finished;
5376 }
5377
5378 return rc;
5379
5380out_not_finished:
5381 spin_lock_irqsave(&phba->hbalock, iflags);
5382 mboxq->u.mb.mbxStatus = MBX_NOT_FINISHED;
5383 __lpfc_mbox_cmpl_put(phba, mboxq);
5384 /* Release the token */
5385 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
5386 phba->sli.mbox_active = NULL;
5387 spin_unlock_irqrestore(&phba->hbalock, iflags);
5388
5389 return MBX_NOT_FINISHED;
5390}
5391
5392/**
5393 * lpfc_sli_issue_mbox - Wrapper func for issuing mailbox command
5394 * @phba: Pointer to HBA context object.
5395 * @pmbox: Pointer to mailbox object.
5396 * @flag: Flag indicating how the mailbox need to be processed.
5397 *
5398 * This routine wraps the actual SLI3 or SLI4 mailbox issuing routine from
5399 * the API jump table function pointer from the lpfc_hba struct.
5400 *
5401 * Return codes the caller owns the mailbox command after the return of the
5402 * function.
5403 **/
5404int
5405lpfc_sli_issue_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox, uint32_t flag)
5406{
5407 return phba->lpfc_sli_issue_mbox(phba, pmbox, flag);
5408}
5409
5410/**
5411 * lpfc_mbox_api_table_setup - Set up mbox api fucntion jump table
5412 * @phba: The hba struct for which this call is being executed.
5413 * @dev_grp: The HBA PCI-Device group number.
5414 *
5415 * This routine sets up the mbox interface API function jump table in @phba
5416 * struct.
5417 * Returns: 0 - success, -ENODEV - failure.
5418 **/
5419int
5420lpfc_mbox_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
5421{
5422
5423 switch (dev_grp) {
5424 case LPFC_PCI_DEV_LP:
5425 phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s3;
5426 phba->lpfc_sli_handle_slow_ring_event =
5427 lpfc_sli_handle_slow_ring_event_s3;
5428 phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s3;
5429 phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s3;
5430 phba->lpfc_sli_brdready = lpfc_sli_brdready_s3;
5431 break;
5432 case LPFC_PCI_DEV_OC:
5433 phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s4;
5434 phba->lpfc_sli_handle_slow_ring_event =
5435 lpfc_sli_handle_slow_ring_event_s4;
5436 phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s4;
5437 phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s4;
5438 phba->lpfc_sli_brdready = lpfc_sli_brdready_s4;
5439 break;
5440 default:
5441 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5442 "1420 Invalid HBA PCI-device group: 0x%x\n",
5443 dev_grp);
5444 return -ENODEV;
5445 break;
5446 }
5447 return 0;
5448}
5449
e59058c4 5450/**
3621a710 5451 * __lpfc_sli_ringtx_put - Add an iocb to the txq
e59058c4
JS
5452 * @phba: Pointer to HBA context object.
5453 * @pring: Pointer to driver SLI ring object.
5454 * @piocb: Pointer to address of newly added command iocb.
5455 *
5456 * This function is called with hbalock held to add a command
5457 * iocb to the txq when SLI layer cannot submit the command iocb
5458 * to the ring.
5459 **/
858c9f6c 5460static void
92d7f7b0 5461__lpfc_sli_ringtx_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2e0fef85 5462 struct lpfc_iocbq *piocb)
dea3101e
JB
5463{
5464 /* Insert the caller's iocb in the txq tail for later processing. */
5465 list_add_tail(&piocb->list, &pring->txq);
5466 pring->txq_cnt++;
dea3101e
JB
5467}
5468
e59058c4 5469/**
3621a710 5470 * lpfc_sli_next_iocb - Get the next iocb in the txq
e59058c4
JS
5471 * @phba: Pointer to HBA context object.
5472 * @pring: Pointer to driver SLI ring object.
5473 * @piocb: Pointer to address of newly added command iocb.
5474 *
5475 * This function is called with hbalock held before a new
5476 * iocb is submitted to the firmware. This function checks
5477 * txq to flush the iocbs in txq to Firmware before
5478 * submitting new iocbs to the Firmware.
5479 * If there are iocbs in the txq which need to be submitted
5480 * to firmware, lpfc_sli_next_iocb returns the first element
5481 * of the txq after dequeuing it from txq.
5482 * If there is no iocb in the txq then the function will return
5483 * *piocb and *piocb is set to NULL. Caller needs to check
5484 * *piocb to find if there are more commands in the txq.
5485 **/
dea3101e
JB
5486static struct lpfc_iocbq *
5487lpfc_sli_next_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2e0fef85 5488 struct lpfc_iocbq **piocb)
dea3101e
JB
5489{
5490 struct lpfc_iocbq * nextiocb;
5491
5492 nextiocb = lpfc_sli_ringtx_get(phba, pring);
5493 if (!nextiocb) {
5494 nextiocb = *piocb;
5495 *piocb = NULL;
5496 }
5497
5498 return nextiocb;
5499}
5500
e59058c4 5501/**
3772a991 5502 * __lpfc_sli_issue_iocb_s3 - SLI3 device lockless ver of lpfc_sli_issue_iocb
e59058c4 5503 * @phba: Pointer to HBA context object.
3772a991 5504 * @ring_number: SLI ring number to issue iocb on.
e59058c4
JS
5505 * @piocb: Pointer to command iocb.
5506 * @flag: Flag indicating if this command can be put into txq.
5507 *
3772a991
JS
5508 * __lpfc_sli_issue_iocb_s3 is used by other functions in the driver to issue
5509 * an iocb command to an HBA with SLI-3 interface spec. If the PCI slot is
5510 * recovering from error state, if HBA is resetting or if LPFC_STOP_IOCB_EVENT
5511 * flag is turned on, the function returns IOCB_ERROR. When the link is down,
5512 * this function allows only iocbs for posting buffers. This function finds
5513 * next available slot in the command ring and posts the command to the
5514 * available slot and writes the port attention register to request HBA start
5515 * processing new iocb. If there is no slot available in the ring and
5516 * flag & SLI_IOCB_RET_IOCB is set, the new iocb is added to the txq, otherwise
5517 * the function returns IOCB_BUSY.
e59058c4 5518 *
3772a991
JS
5519 * This function is called with hbalock held. The function will return success
5520 * after it successfully submit the iocb to firmware or after adding to the
5521 * txq.
e59058c4 5522 **/
98c9ea5c 5523static int
3772a991 5524__lpfc_sli_issue_iocb_s3(struct lpfc_hba *phba, uint32_t ring_number,
dea3101e
JB
5525 struct lpfc_iocbq *piocb, uint32_t flag)
5526{
5527 struct lpfc_iocbq *nextiocb;
5528 IOCB_t *iocb;
3772a991 5529 struct lpfc_sli_ring *pring = &phba->sli.ring[ring_number];
dea3101e 5530
92d7f7b0
JS
5531 if (piocb->iocb_cmpl && (!piocb->vport) &&
5532 (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
5533 (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) {
5534 lpfc_printf_log(phba, KERN_ERR,
5535 LOG_SLI | LOG_VPORT,
e8b62011 5536 "1807 IOCB x%x failed. No vport\n",
92d7f7b0
JS
5537 piocb->iocb.ulpCommand);
5538 dump_stack();
5539 return IOCB_ERROR;
5540 }
5541
5542
8d63f375
LV
5543 /* If the PCI channel is in offline state, do not post iocbs. */
5544 if (unlikely(pci_channel_offline(phba->pcidev)))
5545 return IOCB_ERROR;
5546
a257bf90
JS
5547 /* If HBA has a deferred error attention, fail the iocb. */
5548 if (unlikely(phba->hba_flag & DEFER_ERATT))
5549 return IOCB_ERROR;
5550
dea3101e
JB
5551 /*
5552 * We should never get an IOCB if we are in a < LINK_DOWN state
5553 */
2e0fef85 5554 if (unlikely(phba->link_state < LPFC_LINK_DOWN))
dea3101e
JB
5555 return IOCB_ERROR;
5556
5557 /*
5558 * Check to see if we are blocking IOCB processing because of a
0b727fea 5559 * outstanding event.
dea3101e 5560 */
0b727fea 5561 if (unlikely(pring->flag & LPFC_STOP_IOCB_EVENT))
dea3101e
JB
5562 goto iocb_busy;
5563
2e0fef85 5564 if (unlikely(phba->link_state == LPFC_LINK_DOWN)) {
dea3101e 5565 /*
2680eeaa 5566 * Only CREATE_XRI, CLOSE_XRI, and QUE_RING_BUF
dea3101e
JB
5567 * can be issued if the link is not up.
5568 */
5569 switch (piocb->iocb.ulpCommand) {
84774a4d
JS
5570 case CMD_GEN_REQUEST64_CR:
5571 case CMD_GEN_REQUEST64_CX:
5572 if (!(phba->sli.sli_flag & LPFC_MENLO_MAINT) ||
5573 (piocb->iocb.un.genreq64.w5.hcsw.Rctl !=
6a9c52cf 5574 FC_RCTL_DD_UNSOL_CMD) ||
84774a4d
JS
5575 (piocb->iocb.un.genreq64.w5.hcsw.Type !=
5576 MENLO_TRANSPORT_TYPE))
5577
5578 goto iocb_busy;
5579 break;
dea3101e
JB
5580 case CMD_QUE_RING_BUF_CN:
5581 case CMD_QUE_RING_BUF64_CN:
dea3101e
JB
5582 /*
5583 * For IOCBs, like QUE_RING_BUF, that have no rsp ring
5584 * completion, iocb_cmpl MUST be 0.
5585 */
5586 if (piocb->iocb_cmpl)
5587 piocb->iocb_cmpl = NULL;
5588 /*FALLTHROUGH*/
5589 case CMD_CREATE_XRI_CR:
2680eeaa
JS
5590 case CMD_CLOSE_XRI_CN:
5591 case CMD_CLOSE_XRI_CX:
dea3101e
JB
5592 break;
5593 default:
5594 goto iocb_busy;
5595 }
5596
5597 /*
5598 * For FCP commands, we must be in a state where we can process link
5599 * attention events.
5600 */
5601 } else if (unlikely(pring->ringno == phba->sli.fcp_ring &&
92d7f7b0 5602 !(phba->sli.sli_flag & LPFC_PROCESS_LA))) {
dea3101e 5603 goto iocb_busy;
92d7f7b0 5604 }
dea3101e 5605
dea3101e
JB
5606 while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
5607 (nextiocb = lpfc_sli_next_iocb(phba, pring, &piocb)))
5608 lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
5609
5610 if (iocb)
5611 lpfc_sli_update_ring(phba, pring);
5612 else
5613 lpfc_sli_update_full_ring(phba, pring);
5614
5615 if (!piocb)
5616 return IOCB_SUCCESS;
5617
5618 goto out_busy;
5619
5620 iocb_busy:
5621 pring->stats.iocb_cmd_delay++;
5622
5623 out_busy:
5624
5625 if (!(flag & SLI_IOCB_RET_IOCB)) {
92d7f7b0 5626 __lpfc_sli_ringtx_put(phba, pring, piocb);
dea3101e
JB
5627 return IOCB_SUCCESS;
5628 }
5629
5630 return IOCB_BUSY;
5631}
5632
3772a991 5633/**
4f774513
JS
5634 * lpfc_sli4_bpl2sgl - Convert the bpl/bde to a sgl.
5635 * @phba: Pointer to HBA context object.
5636 * @piocb: Pointer to command iocb.
5637 * @sglq: Pointer to the scatter gather queue object.
5638 *
5639 * This routine converts the bpl or bde that is in the IOCB
5640 * to a sgl list for the sli4 hardware. The physical address
5641 * of the bpl/bde is converted back to a virtual address.
5642 * If the IOCB contains a BPL then the list of BDE's is
5643 * converted to sli4_sge's. If the IOCB contains a single
5644 * BDE then it is converted to a single sli_sge.
5645 * The IOCB is still in cpu endianess so the contents of
5646 * the bpl can be used without byte swapping.
5647 *
5648 * Returns valid XRI = Success, NO_XRI = Failure.
5649**/
5650static uint16_t
5651lpfc_sli4_bpl2sgl(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq,
5652 struct lpfc_sglq *sglq)
3772a991 5653{
4f774513
JS
5654 uint16_t xritag = NO_XRI;
5655 struct ulp_bde64 *bpl = NULL;
5656 struct ulp_bde64 bde;
5657 struct sli4_sge *sgl = NULL;
5658 IOCB_t *icmd;
5659 int numBdes = 0;
5660 int i = 0;
3772a991 5661
4f774513
JS
5662 if (!piocbq || !sglq)
5663 return xritag;
5664
5665 sgl = (struct sli4_sge *)sglq->sgl;
5666 icmd = &piocbq->iocb;
5667 if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
5668 numBdes = icmd->un.genreq64.bdl.bdeSize /
5669 sizeof(struct ulp_bde64);
5670 /* The addrHigh and addrLow fields within the IOCB
5671 * have not been byteswapped yet so there is no
5672 * need to swap them back.
5673 */
5674 bpl = (struct ulp_bde64 *)
5675 ((struct lpfc_dmabuf *)piocbq->context3)->virt;
5676
5677 if (!bpl)
5678 return xritag;
5679
5680 for (i = 0; i < numBdes; i++) {
5681 /* Should already be byte swapped. */
5682 sgl->addr_hi = bpl->addrHigh;
5683 sgl->addr_lo = bpl->addrLow;
5684 /* swap the size field back to the cpu so we
5685 * can assign it to the sgl.
5686 */
5687 bde.tus.w = le32_to_cpu(bpl->tus.w);
5688 bf_set(lpfc_sli4_sge_len, sgl, bde.tus.f.bdeSize);
5689 if ((i+1) == numBdes)
5690 bf_set(lpfc_sli4_sge_last, sgl, 1);
5691 else
5692 bf_set(lpfc_sli4_sge_last, sgl, 0);
5693 sgl->word2 = cpu_to_le32(sgl->word2);
5694 sgl->word3 = cpu_to_le32(sgl->word3);
5695 bpl++;
5696 sgl++;
5697 }
5698 } else if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BDE_64) {
5699 /* The addrHigh and addrLow fields of the BDE have not
5700 * been byteswapped yet so they need to be swapped
5701 * before putting them in the sgl.
5702 */
5703 sgl->addr_hi =
5704 cpu_to_le32(icmd->un.genreq64.bdl.addrHigh);
5705 sgl->addr_lo =
5706 cpu_to_le32(icmd->un.genreq64.bdl.addrLow);
5707 bf_set(lpfc_sli4_sge_len, sgl,
5708 icmd->un.genreq64.bdl.bdeSize);
5709 bf_set(lpfc_sli4_sge_last, sgl, 1);
5710 sgl->word2 = cpu_to_le32(sgl->word2);
5711 sgl->word3 = cpu_to_le32(sgl->word3);
5712 }
5713 return sglq->sli4_xritag;
3772a991 5714}
92d7f7b0 5715
e59058c4 5716/**
4f774513 5717 * lpfc_sli4_scmd_to_wqidx_distr - scsi command to SLI4 WQ index distribution
e59058c4 5718 * @phba: Pointer to HBA context object.
e59058c4 5719 *
4f774513 5720 * This routine performs a round robin SCSI command to SLI4 FCP WQ index
8fa38513
JS
5721 * distribution. This is called by __lpfc_sli_issue_iocb_s4() with the hbalock
5722 * held.
4f774513
JS
5723 *
5724 * Return: index into SLI4 fast-path FCP queue index.
e59058c4 5725 **/
4f774513 5726static uint32_t
8fa38513 5727lpfc_sli4_scmd_to_wqidx_distr(struct lpfc_hba *phba)
92d7f7b0 5728{
8fa38513
JS
5729 ++phba->fcp_qidx;
5730 if (phba->fcp_qidx >= phba->cfg_fcp_wq_count)
5731 phba->fcp_qidx = 0;
92d7f7b0 5732
8fa38513 5733 return phba->fcp_qidx;
92d7f7b0
JS
5734}
5735
e59058c4 5736/**
4f774513 5737 * lpfc_sli_iocb2wqe - Convert the IOCB to a work queue entry.
e59058c4 5738 * @phba: Pointer to HBA context object.
4f774513
JS
5739 * @piocb: Pointer to command iocb.
5740 * @wqe: Pointer to the work queue entry.
e59058c4 5741 *
4f774513
JS
5742 * This routine converts the iocb command to its Work Queue Entry
5743 * equivalent. The wqe pointer should not have any fields set when
5744 * this routine is called because it will memcpy over them.
5745 * This routine does not set the CQ_ID or the WQEC bits in the
5746 * wqe.
e59058c4 5747 *
4f774513 5748 * Returns: 0 = Success, IOCB_ERROR = Failure.
e59058c4 5749 **/
cf5bf97e 5750static int
4f774513
JS
5751lpfc_sli4_iocb2wqe(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq,
5752 union lpfc_wqe *wqe)
cf5bf97e 5753{
5ffc266e 5754 uint32_t xmit_len = 0, total_len = 0;
4f774513
JS
5755 uint8_t ct = 0;
5756 uint32_t fip;
5757 uint32_t abort_tag;
5758 uint8_t command_type = ELS_COMMAND_NON_FIP;
5759 uint8_t cmnd;
5760 uint16_t xritag;
5761 struct ulp_bde64 *bpl = NULL;
c868595d 5762 uint32_t els_id = ELS_ID_DEFAULT;
5ffc266e
JS
5763 int numBdes, i;
5764 struct ulp_bde64 bde;
4f774513 5765
45ed1190 5766 fip = phba->hba_flag & HBA_FIP_SUPPORT;
4f774513 5767 /* The fcp commands will set command type */
0c287589 5768 if (iocbq->iocb_flag & LPFC_IO_FCP)
4f774513 5769 command_type = FCP_COMMAND;
c868595d 5770 else if (fip && (iocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK))
0c287589
JS
5771 command_type = ELS_COMMAND_FIP;
5772 else
5773 command_type = ELS_COMMAND_NON_FIP;
5774
4f774513
JS
5775 /* Some of the fields are in the right position already */
5776 memcpy(wqe, &iocbq->iocb, sizeof(union lpfc_wqe));
5777 abort_tag = (uint32_t) iocbq->iotag;
5778 xritag = iocbq->sli4_xritag;
5779 wqe->words[7] = 0; /* The ct field has moved so reset */
5780 /* words0-2 bpl convert bde */
5781 if (iocbq->iocb.un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
5ffc266e
JS
5782 numBdes = iocbq->iocb.un.genreq64.bdl.bdeSize /
5783 sizeof(struct ulp_bde64);
4f774513
JS
5784 bpl = (struct ulp_bde64 *)
5785 ((struct lpfc_dmabuf *)iocbq->context3)->virt;
5786 if (!bpl)
5787 return IOCB_ERROR;
cf5bf97e 5788
4f774513
JS
5789 /* Should already be byte swapped. */
5790 wqe->generic.bde.addrHigh = le32_to_cpu(bpl->addrHigh);
5791 wqe->generic.bde.addrLow = le32_to_cpu(bpl->addrLow);
5792 /* swap the size field back to the cpu so we
5793 * can assign it to the sgl.
5794 */
5795 wqe->generic.bde.tus.w = le32_to_cpu(bpl->tus.w);
5ffc266e
JS
5796 xmit_len = wqe->generic.bde.tus.f.bdeSize;
5797 total_len = 0;
5798 for (i = 0; i < numBdes; i++) {
5799 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
5800 total_len += bde.tus.f.bdeSize;
5801 }
4f774513 5802 } else
5ffc266e 5803 xmit_len = iocbq->iocb.un.fcpi64.bdl.bdeSize;
cf5bf97e 5804
4f774513
JS
5805 iocbq->iocb.ulpIoTag = iocbq->iotag;
5806 cmnd = iocbq->iocb.ulpCommand;
a4bc3379 5807
4f774513
JS
5808 switch (iocbq->iocb.ulpCommand) {
5809 case CMD_ELS_REQUEST64_CR:
5810 if (!iocbq->iocb.ulpLe) {
5811 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5812 "2007 Only Limited Edition cmd Format"
5813 " supported 0x%x\n",
5814 iocbq->iocb.ulpCommand);
5815 return IOCB_ERROR;
5816 }
5ffc266e 5817 wqe->els_req.payload_len = xmit_len;
4f774513
JS
5818 /* Els_reguest64 has a TMO */
5819 bf_set(wqe_tmo, &wqe->els_req.wqe_com,
5820 iocbq->iocb.ulpTimeout);
5821 /* Need a VF for word 4 set the vf bit*/
5822 bf_set(els_req64_vf, &wqe->els_req, 0);
5823 /* And a VFID for word 12 */
5824 bf_set(els_req64_vfid, &wqe->els_req, 0);
5825 /*
5826 * Set ct field to 3, indicates that the context_tag field
5827 * contains the FCFI and remote N_Port_ID is
5828 * in word 5.
5829 */
5830
5831 ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
5832 bf_set(lpfc_wqe_gen_context, &wqe->generic,
5833 iocbq->iocb.ulpContext);
5834
4f774513
JS
5835 bf_set(lpfc_wqe_gen_ct, &wqe->generic, ct);
5836 bf_set(lpfc_wqe_gen_pu, &wqe->generic, 0);
5837 /* CCP CCPE PV PRI in word10 were set in the memcpy */
c868595d
JS
5838
5839 if (command_type == ELS_COMMAND_FIP) {
5840 els_id = ((iocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK)
5841 >> LPFC_FIP_ELS_ID_SHIFT);
5842 }
5843 bf_set(lpfc_wqe_gen_els_id, &wqe->generic, els_id);
5844
4f774513 5845 break;
5ffc266e
JS
5846 case CMD_XMIT_SEQUENCE64_CX:
5847 bf_set(lpfc_wqe_gen_context, &wqe->generic,
5848 iocbq->iocb.un.ulpWord[3]);
5849 wqe->generic.word3 = 0;
5850 bf_set(wqe_rcvoxid, &wqe->generic, iocbq->iocb.ulpContext);
5851 bf_set(wqe_xc, &wqe->generic, 1);
5852 /* The entire sequence is transmitted for this IOCB */
5853 xmit_len = total_len;
5854 cmnd = CMD_XMIT_SEQUENCE64_CR;
4f774513
JS
5855 case CMD_XMIT_SEQUENCE64_CR:
5856 /* word3 iocb=io_tag32 wqe=payload_offset */
5857 /* payload offset used for multilpe outstanding
5858 * sequences on the same exchange
5859 */
5860 wqe->words[3] = 0;
5861 /* word4 relative_offset memcpy */
5862 /* word5 r_ctl/df_ctl memcpy */
5863 bf_set(lpfc_wqe_gen_pu, &wqe->generic, 0);
5ffc266e
JS
5864 wqe->xmit_sequence.xmit_len = xmit_len;
5865 command_type = OTHER_COMMAND;
4f774513
JS
5866 break;
5867 case CMD_XMIT_BCAST64_CN:
5868 /* word3 iocb=iotag32 wqe=payload_len */
5869 wqe->words[3] = 0; /* no definition for this in wqe */
5870 /* word4 iocb=rsvd wqe=rsvd */
5871 /* word5 iocb=rctl/type/df_ctl wqe=rctl/type/df_ctl memcpy */
5872 /* word6 iocb=ctxt_tag/io_tag wqe=ctxt_tag/xri */
5873 bf_set(lpfc_wqe_gen_ct, &wqe->generic,
5874 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
5875 break;
5876 case CMD_FCP_IWRITE64_CR:
5877 command_type = FCP_COMMAND_DATA_OUT;
5878 /* The struct for wqe fcp_iwrite has 3 fields that are somewhat
5879 * confusing.
5880 * word3 is payload_len: byte offset to the sgl entry for the
5881 * fcp_command.
5882 * word4 is total xfer len, same as the IOCB->ulpParameter.
5883 * word5 is initial xfer len 0 = wait for xfer-ready
5884 */
5885
5886 /* Always wait for xfer-ready before sending data */
5887 wqe->fcp_iwrite.initial_xfer_len = 0;
5888 /* word 4 (xfer length) should have been set on the memcpy */
5889
5890 /* allow write to fall through to read */
5891 case CMD_FCP_IREAD64_CR:
5892 /* FCP_CMD is always the 1st sgl entry */
5893 wqe->fcp_iread.payload_len =
5ffc266e 5894 xmit_len + sizeof(struct fcp_rsp);
4f774513
JS
5895
5896 /* word 4 (xfer length) should have been set on the memcpy */
5897
5898 bf_set(lpfc_wqe_gen_erp, &wqe->generic,
5899 iocbq->iocb.ulpFCP2Rcvy);
5900 bf_set(lpfc_wqe_gen_lnk, &wqe->generic, iocbq->iocb.ulpXS);
5901 /* The XC bit and the XS bit are similar. The driver never
5902 * tracked whether or not the exchange was previouslly open.
5903 * XC = Exchange create, 0 is create. 1 is already open.
5904 * XS = link cmd: 1 do not close the exchange after command.
5905 * XS = 0 close exchange when command completes.
5906 * The only time we would not set the XC bit is when the XS bit
5907 * is set and we are sending our 2nd or greater command on
5908 * this exchange.
5909 */
f1126688
JS
5910 /* Always open the exchange */
5911 bf_set(wqe_xc, &wqe->fcp_iread.wqe_com, 0);
4f774513 5912
f1126688
JS
5913 wqe->words[10] &= 0xffff0000; /* zero out ebde count */
5914 bf_set(lpfc_wqe_gen_pu, &wqe->generic, iocbq->iocb.ulpPU);
5915 break;
4f774513
JS
5916 case CMD_FCP_ICMND64_CR:
5917 /* Always open the exchange */
5918 bf_set(wqe_xc, &wqe->fcp_iread.wqe_com, 0);
5919
f1126688 5920 wqe->words[4] = 0;
4f774513 5921 wqe->words[10] &= 0xffff0000; /* zero out ebde count */
f1126688 5922 bf_set(lpfc_wqe_gen_pu, &wqe->generic, 0);
4f774513
JS
5923 break;
5924 case CMD_GEN_REQUEST64_CR:
5925 /* word3 command length is described as byte offset to the
5926 * rsp_data. Would always be 16, sizeof(struct sli4_sge)
5927 * sgl[0] = cmnd
5928 * sgl[1] = rsp.
5929 *
5930 */
5ffc266e 5931 wqe->gen_req.command_len = xmit_len;
4f774513
JS
5932 /* Word4 parameter copied in the memcpy */
5933 /* Word5 [rctl, type, df_ctl, la] copied in memcpy */
5934 /* word6 context tag copied in memcpy */
5935 if (iocbq->iocb.ulpCt_h || iocbq->iocb.ulpCt_l) {
5936 ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
5937 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5938 "2015 Invalid CT %x command 0x%x\n",
5939 ct, iocbq->iocb.ulpCommand);
5940 return IOCB_ERROR;
5941 }
5942 bf_set(lpfc_wqe_gen_ct, &wqe->generic, 0);
5943 bf_set(wqe_tmo, &wqe->gen_req.wqe_com,
5944 iocbq->iocb.ulpTimeout);
5945
5946 bf_set(lpfc_wqe_gen_pu, &wqe->generic, iocbq->iocb.ulpPU);
5947 command_type = OTHER_COMMAND;
5948 break;
5949 case CMD_XMIT_ELS_RSP64_CX:
5950 /* words0-2 BDE memcpy */
5951 /* word3 iocb=iotag32 wqe=rsvd */
5952 wqe->words[3] = 0;
5953 /* word4 iocb=did wge=rsvd. */
5954 wqe->words[4] = 0;
5955 /* word5 iocb=rsvd wge=did */
5956 bf_set(wqe_els_did, &wqe->xmit_els_rsp.wqe_dest,
5957 iocbq->iocb.un.elsreq64.remoteID);
5958
5959 bf_set(lpfc_wqe_gen_ct, &wqe->generic,
5960 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
5961
5962 bf_set(lpfc_wqe_gen_pu, &wqe->generic, iocbq->iocb.ulpPU);
5963 bf_set(wqe_rcvoxid, &wqe->generic, iocbq->iocb.ulpContext);
5964 if (!iocbq->iocb.ulpCt_h && iocbq->iocb.ulpCt_l)
5965 bf_set(lpfc_wqe_gen_context, &wqe->generic,
5966 iocbq->vport->vpi + phba->vpi_base);
5967 command_type = OTHER_COMMAND;
5968 break;
5969 case CMD_CLOSE_XRI_CN:
5970 case CMD_ABORT_XRI_CN:
5971 case CMD_ABORT_XRI_CX:
5972 /* words 0-2 memcpy should be 0 rserved */
5973 /* port will send abts */
5974 if (iocbq->iocb.ulpCommand == CMD_CLOSE_XRI_CN)
5975 /*
5976 * The link is down so the fw does not need to send abts
5977 * on the wire.
5978 */
5979 bf_set(abort_cmd_ia, &wqe->abort_cmd, 1);
5980 else
5981 bf_set(abort_cmd_ia, &wqe->abort_cmd, 0);
5982 bf_set(abort_cmd_criteria, &wqe->abort_cmd, T_XRI_TAG);
5983 abort_tag = iocbq->iocb.un.acxri.abortIoTag;
5984 wqe->words[5] = 0;
5985 bf_set(lpfc_wqe_gen_ct, &wqe->generic,
5986 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
5987 abort_tag = iocbq->iocb.un.acxri.abortIoTag;
5988 wqe->generic.abort_tag = abort_tag;
5989 /*
5990 * The abort handler will send us CMD_ABORT_XRI_CN or
5991 * CMD_CLOSE_XRI_CN and the fw only accepts CMD_ABORT_XRI_CX
5992 */
5993 bf_set(lpfc_wqe_gen_command, &wqe->generic, CMD_ABORT_XRI_CX);
5994 cmnd = CMD_ABORT_XRI_CX;
5995 command_type = OTHER_COMMAND;
5996 xritag = 0;
5997 break;
6669f9bb
JS
5998 case CMD_XMIT_BLS_RSP64_CX:
5999 /* As BLS ABTS-ACC WQE is very different from other WQEs,
6000 * we re-construct this WQE here based on information in
6001 * iocbq from scratch.
6002 */
6003 memset(wqe, 0, sizeof(union lpfc_wqe));
5ffc266e 6004 /* OX_ID is invariable to who sent ABTS to CT exchange */
6669f9bb 6005 bf_set(xmit_bls_rsp64_oxid, &wqe->xmit_bls_rsp,
5ffc266e
JS
6006 bf_get(lpfc_abts_oxid, &iocbq->iocb.un.bls_acc));
6007 if (bf_get(lpfc_abts_orig, &iocbq->iocb.un.bls_acc) ==
6008 LPFC_ABTS_UNSOL_INT) {
6009 /* ABTS sent by initiator to CT exchange, the
6010 * RX_ID field will be filled with the newly
6011 * allocated responder XRI.
6012 */
6013 bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
6014 iocbq->sli4_xritag);
6015 } else {
6016 /* ABTS sent by responder to CT exchange, the
6017 * RX_ID field will be filled with the responder
6018 * RX_ID from ABTS.
6019 */
6020 bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
6021 bf_get(lpfc_abts_rxid, &iocbq->iocb.un.bls_acc));
6022 }
6669f9bb
JS
6023 bf_set(xmit_bls_rsp64_seqcnthi, &wqe->xmit_bls_rsp, 0xffff);
6024 bf_set(wqe_xmit_bls_pt, &wqe->xmit_bls_rsp.wqe_dest, 0x1);
6025 bf_set(wqe_ctxt_tag, &wqe->xmit_bls_rsp.wqe_com,
6026 iocbq->iocb.ulpContext);
6027 /* Overwrite the pre-set comnd type with OTHER_COMMAND */
6028 command_type = OTHER_COMMAND;
6029 break;
4f774513
JS
6030 case CMD_XRI_ABORTED_CX:
6031 case CMD_CREATE_XRI_CR: /* Do we expect to use this? */
6032 /* words0-2 are all 0's no bde */
6033 /* word3 and word4 are rsvrd */
6034 wqe->words[3] = 0;
6035 wqe->words[4] = 0;
6036 /* word5 iocb=rsvd wge=did */
6037 /* There is no remote port id in the IOCB? */
6038 /* Let this fall through and fail */
6039 case CMD_IOCB_FCP_IBIDIR64_CR: /* bidirectional xfer */
6040 case CMD_FCP_TSEND64_CX: /* Target mode send xfer-ready */
6041 case CMD_FCP_TRSP64_CX: /* Target mode rcv */
6042 case CMD_FCP_AUTO_TRSP_CX: /* Auto target rsp */
6043 default:
6044 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
6045 "2014 Invalid command 0x%x\n",
6046 iocbq->iocb.ulpCommand);
6047 return IOCB_ERROR;
6048 break;
6049
6050 }
6051 bf_set(lpfc_wqe_gen_xri, &wqe->generic, xritag);
6052 bf_set(lpfc_wqe_gen_request_tag, &wqe->generic, iocbq->iotag);
6053 wqe->generic.abort_tag = abort_tag;
6054 bf_set(lpfc_wqe_gen_cmd_type, &wqe->generic, command_type);
6055 bf_set(lpfc_wqe_gen_command, &wqe->generic, cmnd);
6056 bf_set(lpfc_wqe_gen_class, &wqe->generic, iocbq->iocb.ulpClass);
6057 bf_set(lpfc_wqe_gen_cq_id, &wqe->generic, LPFC_WQE_CQ_ID_DEFAULT);
6058
6059 return 0;
6060}
6061
6062/**
6063 * __lpfc_sli_issue_iocb_s4 - SLI4 device lockless ver of lpfc_sli_issue_iocb
6064 * @phba: Pointer to HBA context object.
6065 * @ring_number: SLI ring number to issue iocb on.
6066 * @piocb: Pointer to command iocb.
6067 * @flag: Flag indicating if this command can be put into txq.
6068 *
6069 * __lpfc_sli_issue_iocb_s4 is used by other functions in the driver to issue
6070 * an iocb command to an HBA with SLI-4 interface spec.
6071 *
6072 * This function is called with hbalock held. The function will return success
6073 * after it successfully submit the iocb to firmware or after adding to the
6074 * txq.
6075 **/
6076static int
6077__lpfc_sli_issue_iocb_s4(struct lpfc_hba *phba, uint32_t ring_number,
6078 struct lpfc_iocbq *piocb, uint32_t flag)
6079{
6080 struct lpfc_sglq *sglq;
6081 uint16_t xritag;
6082 union lpfc_wqe wqe;
6083 struct lpfc_sli_ring *pring = &phba->sli.ring[ring_number];
4f774513
JS
6084
6085 if (piocb->sli4_xritag == NO_XRI) {
6086 if (piocb->iocb.ulpCommand == CMD_ABORT_XRI_CN ||
6669f9bb 6087 piocb->iocb.ulpCommand == CMD_CLOSE_XRI_CN)
4f774513
JS
6088 sglq = NULL;
6089 else {
6090 sglq = __lpfc_sli_get_sglq(phba);
6091 if (!sglq)
6092 return IOCB_ERROR;
6093 piocb->sli4_xritag = sglq->sli4_xritag;
6094 }
6095 } else if (piocb->iocb_flag & LPFC_IO_FCP) {
6096 sglq = NULL; /* These IO's already have an XRI and
6097 * a mapped sgl.
6098 */
6099 } else {
6100 /* This is a continuation of a commandi,(CX) so this
6101 * sglq is on the active list
6102 */
6103 sglq = __lpfc_get_active_sglq(phba, piocb->sli4_xritag);
6104 if (!sglq)
6105 return IOCB_ERROR;
6106 }
6107
6108 if (sglq) {
6109 xritag = lpfc_sli4_bpl2sgl(phba, piocb, sglq);
6110 if (xritag != sglq->sli4_xritag)
6111 return IOCB_ERROR;
6112 }
6113
6114 if (lpfc_sli4_iocb2wqe(phba, piocb, &wqe))
6115 return IOCB_ERROR;
6116
6117 if (piocb->iocb_flag & LPFC_IO_FCP) {
5ffc266e
JS
6118 /*
6119 * For FCP command IOCB, get a new WQ index to distribute
6120 * WQE across the WQsr. On the other hand, for abort IOCB,
6121 * it carries the same WQ index to the original command
6122 * IOCB.
6123 */
6124 if ((piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
6125 (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN))
6126 piocb->fcp_wqidx = lpfc_sli4_scmd_to_wqidx_distr(phba);
6127 if (lpfc_sli4_wq_put(phba->sli4_hba.fcp_wq[piocb->fcp_wqidx],
6128 &wqe))
4f774513
JS
6129 return IOCB_ERROR;
6130 } else {
6131 if (lpfc_sli4_wq_put(phba->sli4_hba.els_wq, &wqe))
6132 return IOCB_ERROR;
6133 }
6134 lpfc_sli_ringtxcmpl_put(phba, pring, piocb);
6135
6136 return 0;
6137}
6138
6139/**
6140 * __lpfc_sli_issue_iocb - Wrapper func of lockless version for issuing iocb
6141 *
6142 * This routine wraps the actual lockless version for issusing IOCB function
6143 * pointer from the lpfc_hba struct.
6144 *
6145 * Return codes:
6146 * IOCB_ERROR - Error
6147 * IOCB_SUCCESS - Success
6148 * IOCB_BUSY - Busy
6149 **/
6150static inline int
6151__lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
6152 struct lpfc_iocbq *piocb, uint32_t flag)
6153{
6154 return phba->__lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
6155}
6156
6157/**
6158 * lpfc_sli_api_table_setup - Set up sli api fucntion jump table
6159 * @phba: The hba struct for which this call is being executed.
6160 * @dev_grp: The HBA PCI-Device group number.
6161 *
6162 * This routine sets up the SLI interface API function jump table in @phba
6163 * struct.
6164 * Returns: 0 - success, -ENODEV - failure.
6165 **/
6166int
6167lpfc_sli_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
6168{
6169
6170 switch (dev_grp) {
6171 case LPFC_PCI_DEV_LP:
6172 phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s3;
6173 phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s3;
6174 break;
6175 case LPFC_PCI_DEV_OC:
6176 phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s4;
6177 phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s4;
6178 break;
6179 default:
6180 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6181 "1419 Invalid HBA PCI-device group: 0x%x\n",
6182 dev_grp);
6183 return -ENODEV;
6184 break;
6185 }
6186 phba->lpfc_get_iocb_from_iocbq = lpfc_get_iocb_from_iocbq;
6187 return 0;
6188}
6189
6190/**
6191 * lpfc_sli_issue_iocb - Wrapper function for __lpfc_sli_issue_iocb
6192 * @phba: Pointer to HBA context object.
6193 * @pring: Pointer to driver SLI ring object.
6194 * @piocb: Pointer to command iocb.
6195 * @flag: Flag indicating if this command can be put into txq.
6196 *
6197 * lpfc_sli_issue_iocb is a wrapper around __lpfc_sli_issue_iocb
6198 * function. This function gets the hbalock and calls
6199 * __lpfc_sli_issue_iocb function and will return the error returned
6200 * by __lpfc_sli_issue_iocb function. This wrapper is used by
6201 * functions which do not hold hbalock.
6202 **/
6203int
6204lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
6205 struct lpfc_iocbq *piocb, uint32_t flag)
6206{
6207 unsigned long iflags;
6208 int rc;
6209
6210 spin_lock_irqsave(&phba->hbalock, iflags);
6211 rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
6212 spin_unlock_irqrestore(&phba->hbalock, iflags);
6213
6214 return rc;
6215}
6216
6217/**
6218 * lpfc_extra_ring_setup - Extra ring setup function
6219 * @phba: Pointer to HBA context object.
6220 *
6221 * This function is called while driver attaches with the
6222 * HBA to setup the extra ring. The extra ring is used
6223 * only when driver needs to support target mode functionality
6224 * or IP over FC functionalities.
6225 *
6226 * This function is called with no lock held.
6227 **/
6228static int
6229lpfc_extra_ring_setup( struct lpfc_hba *phba)
6230{
6231 struct lpfc_sli *psli;
6232 struct lpfc_sli_ring *pring;
6233
6234 psli = &phba->sli;
6235
6236 /* Adjust cmd/rsp ring iocb entries more evenly */
6237
6238 /* Take some away from the FCP ring */
6239 pring = &psli->ring[psli->fcp_ring];
6240 pring->numCiocb -= SLI2_IOCB_CMD_R1XTRA_ENTRIES;
6241 pring->numRiocb -= SLI2_IOCB_RSP_R1XTRA_ENTRIES;
cf5bf97e
JW
6242 pring->numCiocb -= SLI2_IOCB_CMD_R3XTRA_ENTRIES;
6243 pring->numRiocb -= SLI2_IOCB_RSP_R3XTRA_ENTRIES;
6244
a4bc3379
JS
6245 /* and give them to the extra ring */
6246 pring = &psli->ring[psli->extra_ring];
6247
cf5bf97e
JW
6248 pring->numCiocb += SLI2_IOCB_CMD_R1XTRA_ENTRIES;
6249 pring->numRiocb += SLI2_IOCB_RSP_R1XTRA_ENTRIES;
6250 pring->numCiocb += SLI2_IOCB_CMD_R3XTRA_ENTRIES;
6251 pring->numRiocb += SLI2_IOCB_RSP_R3XTRA_ENTRIES;
6252
6253 /* Setup default profile for this ring */
6254 pring->iotag_max = 4096;
6255 pring->num_mask = 1;
6256 pring->prt[0].profile = 0; /* Mask 0 */
a4bc3379
JS
6257 pring->prt[0].rctl = phba->cfg_multi_ring_rctl;
6258 pring->prt[0].type = phba->cfg_multi_ring_type;
cf5bf97e
JW
6259 pring->prt[0].lpfc_sli_rcv_unsol_event = NULL;
6260 return 0;
6261}
6262
e59058c4 6263/**
3621a710 6264 * lpfc_sli_async_event_handler - ASYNC iocb handler function
e59058c4
JS
6265 * @phba: Pointer to HBA context object.
6266 * @pring: Pointer to driver SLI ring object.
6267 * @iocbq: Pointer to iocb object.
6268 *
6269 * This function is called by the slow ring event handler
6270 * function when there is an ASYNC event iocb in the ring.
6271 * This function is called with no lock held.
6272 * Currently this function handles only temperature related
6273 * ASYNC events. The function decodes the temperature sensor
6274 * event message and posts events for the management applications.
6275 **/
98c9ea5c 6276static void
57127f15
JS
6277lpfc_sli_async_event_handler(struct lpfc_hba * phba,
6278 struct lpfc_sli_ring * pring, struct lpfc_iocbq * iocbq)
6279{
6280 IOCB_t *icmd;
6281 uint16_t evt_code;
6282 uint16_t temp;
6283 struct temp_event temp_event_data;
6284 struct Scsi_Host *shost;
a257bf90 6285 uint32_t *iocb_w;
57127f15
JS
6286
6287 icmd = &iocbq->iocb;
6288 evt_code = icmd->un.asyncstat.evt_code;
6289 temp = icmd->ulpContext;
6290
6291 if ((evt_code != ASYNC_TEMP_WARN) &&
6292 (evt_code != ASYNC_TEMP_SAFE)) {
a257bf90 6293 iocb_w = (uint32_t *) icmd;
57127f15
JS
6294 lpfc_printf_log(phba,
6295 KERN_ERR,
6296 LOG_SLI,
76bb24ef 6297 "0346 Ring %d handler: unexpected ASYNC_STATUS"
e4e74273 6298 " evt_code 0x%x\n"
a257bf90
JS
6299 "W0 0x%08x W1 0x%08x W2 0x%08x W3 0x%08x\n"
6300 "W4 0x%08x W5 0x%08x W6 0x%08x W7 0x%08x\n"
6301 "W8 0x%08x W9 0x%08x W10 0x%08x W11 0x%08x\n"
6302 "W12 0x%08x W13 0x%08x W14 0x%08x W15 0x%08x\n",
57127f15 6303 pring->ringno,
a257bf90
JS
6304 icmd->un.asyncstat.evt_code,
6305 iocb_w[0], iocb_w[1], iocb_w[2], iocb_w[3],
6306 iocb_w[4], iocb_w[5], iocb_w[6], iocb_w[7],
6307 iocb_w[8], iocb_w[9], iocb_w[10], iocb_w[11],
6308 iocb_w[12], iocb_w[13], iocb_w[14], iocb_w[15]);
6309
57127f15
JS
6310 return;
6311 }
6312 temp_event_data.data = (uint32_t)temp;
6313 temp_event_data.event_type = FC_REG_TEMPERATURE_EVENT;
6314 if (evt_code == ASYNC_TEMP_WARN) {
6315 temp_event_data.event_code = LPFC_THRESHOLD_TEMP;
6316 lpfc_printf_log(phba,
09372820 6317 KERN_ERR,
57127f15 6318 LOG_TEMP,
76bb24ef 6319 "0347 Adapter is very hot, please take "
57127f15
JS
6320 "corrective action. temperature : %d Celsius\n",
6321 temp);
6322 }
6323 if (evt_code == ASYNC_TEMP_SAFE) {
6324 temp_event_data.event_code = LPFC_NORMAL_TEMP;
6325 lpfc_printf_log(phba,
09372820 6326 KERN_ERR,
57127f15
JS
6327 LOG_TEMP,
6328 "0340 Adapter temperature is OK now. "
6329 "temperature : %d Celsius\n",
6330 temp);
6331 }
6332
6333 /* Send temperature change event to applications */
6334 shost = lpfc_shost_from_vport(phba->pport);
6335 fc_host_post_vendor_event(shost, fc_get_event_number(),
6336 sizeof(temp_event_data), (char *) &temp_event_data,
ddcc50f0 6337 LPFC_NL_VENDOR_ID);
57127f15
JS
6338
6339}
6340
6341
e59058c4 6342/**
3621a710 6343 * lpfc_sli_setup - SLI ring setup function
e59058c4
JS
6344 * @phba: Pointer to HBA context object.
6345 *
6346 * lpfc_sli_setup sets up rings of the SLI interface with
6347 * number of iocbs per ring and iotags. This function is
6348 * called while driver attach to the HBA and before the
6349 * interrupts are enabled. So there is no need for locking.
6350 *
6351 * This function always returns 0.
6352 **/
dea3101e
JB
6353int
6354lpfc_sli_setup(struct lpfc_hba *phba)
6355{
ed957684 6356 int i, totiocbsize = 0;
dea3101e
JB
6357 struct lpfc_sli *psli = &phba->sli;
6358 struct lpfc_sli_ring *pring;
6359
6360 psli->num_rings = MAX_CONFIGURED_RINGS;
6361 psli->sli_flag = 0;
6362 psli->fcp_ring = LPFC_FCP_RING;
6363 psli->next_ring = LPFC_FCP_NEXT_RING;
a4bc3379 6364 psli->extra_ring = LPFC_EXTRA_RING;
dea3101e 6365
604a3e30
JB
6366 psli->iocbq_lookup = NULL;
6367 psli->iocbq_lookup_len = 0;
6368 psli->last_iotag = 0;
6369
dea3101e
JB
6370 for (i = 0; i < psli->num_rings; i++) {
6371 pring = &psli->ring[i];
6372 switch (i) {
6373 case LPFC_FCP_RING: /* ring 0 - FCP */
6374 /* numCiocb and numRiocb are used in config_port */
6375 pring->numCiocb = SLI2_IOCB_CMD_R0_ENTRIES;
6376 pring->numRiocb = SLI2_IOCB_RSP_R0_ENTRIES;
6377 pring->numCiocb += SLI2_IOCB_CMD_R1XTRA_ENTRIES;
6378 pring->numRiocb += SLI2_IOCB_RSP_R1XTRA_ENTRIES;
6379 pring->numCiocb += SLI2_IOCB_CMD_R3XTRA_ENTRIES;
6380 pring->numRiocb += SLI2_IOCB_RSP_R3XTRA_ENTRIES;
ed957684 6381 pring->sizeCiocb = (phba->sli_rev == 3) ?
92d7f7b0
JS
6382 SLI3_IOCB_CMD_SIZE :
6383 SLI2_IOCB_CMD_SIZE;
ed957684 6384 pring->sizeRiocb = (phba->sli_rev == 3) ?
92d7f7b0
JS
6385 SLI3_IOCB_RSP_SIZE :
6386 SLI2_IOCB_RSP_SIZE;
dea3101e
JB
6387 pring->iotag_ctr = 0;
6388 pring->iotag_max =
92d7f7b0 6389 (phba->cfg_hba_queue_depth * 2);
dea3101e
JB
6390 pring->fast_iotag = pring->iotag_max;
6391 pring->num_mask = 0;
6392 break;
a4bc3379 6393 case LPFC_EXTRA_RING: /* ring 1 - EXTRA */
dea3101e
JB
6394 /* numCiocb and numRiocb are used in config_port */
6395 pring->numCiocb = SLI2_IOCB_CMD_R1_ENTRIES;
6396 pring->numRiocb = SLI2_IOCB_RSP_R1_ENTRIES;
ed957684 6397 pring->sizeCiocb = (phba->sli_rev == 3) ?
92d7f7b0
JS
6398 SLI3_IOCB_CMD_SIZE :
6399 SLI2_IOCB_CMD_SIZE;
ed957684 6400 pring->sizeRiocb = (phba->sli_rev == 3) ?
92d7f7b0
JS
6401 SLI3_IOCB_RSP_SIZE :
6402 SLI2_IOCB_RSP_SIZE;
2e0fef85 6403 pring->iotag_max = phba->cfg_hba_queue_depth;
dea3101e
JB
6404 pring->num_mask = 0;
6405 break;
6406 case LPFC_ELS_RING: /* ring 2 - ELS / CT */
6407 /* numCiocb and numRiocb are used in config_port */
6408 pring->numCiocb = SLI2_IOCB_CMD_R2_ENTRIES;
6409 pring->numRiocb = SLI2_IOCB_RSP_R2_ENTRIES;
ed957684 6410 pring->sizeCiocb = (phba->sli_rev == 3) ?
92d7f7b0
JS
6411 SLI3_IOCB_CMD_SIZE :
6412 SLI2_IOCB_CMD_SIZE;
ed957684 6413 pring->sizeRiocb = (phba->sli_rev == 3) ?
92d7f7b0
JS
6414 SLI3_IOCB_RSP_SIZE :
6415 SLI2_IOCB_RSP_SIZE;
dea3101e
JB
6416 pring->fast_iotag = 0;
6417 pring->iotag_ctr = 0;
6418 pring->iotag_max = 4096;
57127f15
JS
6419 pring->lpfc_sli_rcv_async_status =
6420 lpfc_sli_async_event_handler;
6669f9bb 6421 pring->num_mask = LPFC_MAX_RING_MASK;
dea3101e 6422 pring->prt[0].profile = 0; /* Mask 0 */
6a9c52cf
JS
6423 pring->prt[0].rctl = FC_RCTL_ELS_REQ;
6424 pring->prt[0].type = FC_TYPE_ELS;
dea3101e 6425 pring->prt[0].lpfc_sli_rcv_unsol_event =
92d7f7b0 6426 lpfc_els_unsol_event;
dea3101e 6427 pring->prt[1].profile = 0; /* Mask 1 */
6a9c52cf
JS
6428 pring->prt[1].rctl = FC_RCTL_ELS_REP;
6429 pring->prt[1].type = FC_TYPE_ELS;
dea3101e 6430 pring->prt[1].lpfc_sli_rcv_unsol_event =
92d7f7b0 6431 lpfc_els_unsol_event;
dea3101e
JB
6432 pring->prt[2].profile = 0; /* Mask 2 */
6433 /* NameServer Inquiry */
6a9c52cf 6434 pring->prt[2].rctl = FC_RCTL_DD_UNSOL_CTL;
dea3101e 6435 /* NameServer */
6a9c52cf 6436 pring->prt[2].type = FC_TYPE_CT;
dea3101e 6437 pring->prt[2].lpfc_sli_rcv_unsol_event =
92d7f7b0 6438 lpfc_ct_unsol_event;
dea3101e
JB
6439 pring->prt[3].profile = 0; /* Mask 3 */
6440 /* NameServer response */
6a9c52cf 6441 pring->prt[3].rctl = FC_RCTL_DD_SOL_CTL;
dea3101e 6442 /* NameServer */
6a9c52cf 6443 pring->prt[3].type = FC_TYPE_CT;
dea3101e 6444 pring->prt[3].lpfc_sli_rcv_unsol_event =
92d7f7b0 6445 lpfc_ct_unsol_event;
6669f9bb
JS
6446 /* abort unsolicited sequence */
6447 pring->prt[4].profile = 0; /* Mask 4 */
6448 pring->prt[4].rctl = FC_RCTL_BA_ABTS;
6449 pring->prt[4].type = FC_TYPE_BLS;
6450 pring->prt[4].lpfc_sli_rcv_unsol_event =
6451 lpfc_sli4_ct_abort_unsol_event;
dea3101e
JB
6452 break;
6453 }
ed957684 6454 totiocbsize += (pring->numCiocb * pring->sizeCiocb) +
92d7f7b0 6455 (pring->numRiocb * pring->sizeRiocb);
dea3101e 6456 }
ed957684 6457 if (totiocbsize > MAX_SLIM_IOCB_SIZE) {
dea3101e 6458 /* Too many cmd / rsp ring entries in SLI2 SLIM */
e8b62011
JS
6459 printk(KERN_ERR "%d:0462 Too many cmd / rsp ring entries in "
6460 "SLI2 SLIM Data: x%x x%lx\n",
6461 phba->brd_no, totiocbsize,
6462 (unsigned long) MAX_SLIM_IOCB_SIZE);
dea3101e 6463 }
cf5bf97e
JW
6464 if (phba->cfg_multi_ring_support == 2)
6465 lpfc_extra_ring_setup(phba);
dea3101e
JB
6466
6467 return 0;
6468}
6469
e59058c4 6470/**
3621a710 6471 * lpfc_sli_queue_setup - Queue initialization function
e59058c4
JS
6472 * @phba: Pointer to HBA context object.
6473 *
6474 * lpfc_sli_queue_setup sets up mailbox queues and iocb queues for each
6475 * ring. This function also initializes ring indices of each ring.
6476 * This function is called during the initialization of the SLI
6477 * interface of an HBA.
6478 * This function is called with no lock held and always returns
6479 * 1.
6480 **/
dea3101e 6481int
2e0fef85 6482lpfc_sli_queue_setup(struct lpfc_hba *phba)
dea3101e
JB
6483{
6484 struct lpfc_sli *psli;
6485 struct lpfc_sli_ring *pring;
604a3e30 6486 int i;
dea3101e
JB
6487
6488 psli = &phba->sli;
2e0fef85 6489 spin_lock_irq(&phba->hbalock);
dea3101e 6490 INIT_LIST_HEAD(&psli->mboxq);
92d7f7b0 6491 INIT_LIST_HEAD(&psli->mboxq_cmpl);
dea3101e
JB
6492 /* Initialize list headers for txq and txcmplq as double linked lists */
6493 for (i = 0; i < psli->num_rings; i++) {
6494 pring = &psli->ring[i];
6495 pring->ringno = i;
6496 pring->next_cmdidx = 0;
6497 pring->local_getidx = 0;
6498 pring->cmdidx = 0;
6499 INIT_LIST_HEAD(&pring->txq);
6500 INIT_LIST_HEAD(&pring->txcmplq);
6501 INIT_LIST_HEAD(&pring->iocb_continueq);
9c2face6 6502 INIT_LIST_HEAD(&pring->iocb_continue_saveq);
dea3101e 6503 INIT_LIST_HEAD(&pring->postbufq);
dea3101e 6504 }
2e0fef85
JS
6505 spin_unlock_irq(&phba->hbalock);
6506 return 1;
dea3101e
JB
6507}
6508
04c68496
JS
6509/**
6510 * lpfc_sli_mbox_sys_flush - Flush mailbox command sub-system
6511 * @phba: Pointer to HBA context object.
6512 *
6513 * This routine flushes the mailbox command subsystem. It will unconditionally
6514 * flush all the mailbox commands in the three possible stages in the mailbox
6515 * command sub-system: pending mailbox command queue; the outstanding mailbox
6516 * command; and completed mailbox command queue. It is caller's responsibility
6517 * to make sure that the driver is in the proper state to flush the mailbox
6518 * command sub-system. Namely, the posting of mailbox commands into the
6519 * pending mailbox command queue from the various clients must be stopped;
6520 * either the HBA is in a state that it will never works on the outstanding
6521 * mailbox command (such as in EEH or ERATT conditions) or the outstanding
6522 * mailbox command has been completed.
6523 **/
6524static void
6525lpfc_sli_mbox_sys_flush(struct lpfc_hba *phba)
6526{
6527 LIST_HEAD(completions);
6528 struct lpfc_sli *psli = &phba->sli;
6529 LPFC_MBOXQ_t *pmb;
6530 unsigned long iflag;
6531
6532 /* Flush all the mailbox commands in the mbox system */
6533 spin_lock_irqsave(&phba->hbalock, iflag);
6534 /* The pending mailbox command queue */
6535 list_splice_init(&phba->sli.mboxq, &completions);
6536 /* The outstanding active mailbox command */
6537 if (psli->mbox_active) {
6538 list_add_tail(&psli->mbox_active->list, &completions);
6539 psli->mbox_active = NULL;
6540 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
6541 }
6542 /* The completed mailbox command queue */
6543 list_splice_init(&phba->sli.mboxq_cmpl, &completions);
6544 spin_unlock_irqrestore(&phba->hbalock, iflag);
6545
6546 /* Return all flushed mailbox commands with MBX_NOT_FINISHED status */
6547 while (!list_empty(&completions)) {
6548 list_remove_head(&completions, pmb, LPFC_MBOXQ_t, list);
6549 pmb->u.mb.mbxStatus = MBX_NOT_FINISHED;
6550 if (pmb->mbox_cmpl)
6551 pmb->mbox_cmpl(phba, pmb);
6552 }
6553}
6554
e59058c4 6555/**
3621a710 6556 * lpfc_sli_host_down - Vport cleanup function
e59058c4
JS
6557 * @vport: Pointer to virtual port object.
6558 *
6559 * lpfc_sli_host_down is called to clean up the resources
6560 * associated with a vport before destroying virtual
6561 * port data structures.
6562 * This function does following operations:
6563 * - Free discovery resources associated with this virtual
6564 * port.
6565 * - Free iocbs associated with this virtual port in
6566 * the txq.
6567 * - Send abort for all iocb commands associated with this
6568 * vport in txcmplq.
6569 *
6570 * This function is called with no lock held and always returns 1.
6571 **/
92d7f7b0
JS
6572int
6573lpfc_sli_host_down(struct lpfc_vport *vport)
6574{
858c9f6c 6575 LIST_HEAD(completions);
92d7f7b0
JS
6576 struct lpfc_hba *phba = vport->phba;
6577 struct lpfc_sli *psli = &phba->sli;
6578 struct lpfc_sli_ring *pring;
6579 struct lpfc_iocbq *iocb, *next_iocb;
92d7f7b0
JS
6580 int i;
6581 unsigned long flags = 0;
6582 uint16_t prev_pring_flag;
6583
6584 lpfc_cleanup_discovery_resources(vport);
6585
6586 spin_lock_irqsave(&phba->hbalock, flags);
92d7f7b0
JS
6587 for (i = 0; i < psli->num_rings; i++) {
6588 pring = &psli->ring[i];
6589 prev_pring_flag = pring->flag;
5e9d9b82
JS
6590 /* Only slow rings */
6591 if (pring->ringno == LPFC_ELS_RING) {
858c9f6c 6592 pring->flag |= LPFC_DEFERRED_RING_EVENT;
5e9d9b82
JS
6593 /* Set the lpfc data pending flag */
6594 set_bit(LPFC_DATA_READY, &phba->data_flags);
6595 }
92d7f7b0
JS
6596 /*
6597 * Error everything on the txq since these iocbs have not been
6598 * given to the FW yet.
6599 */
92d7f7b0
JS
6600 list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
6601 if (iocb->vport != vport)
6602 continue;
858c9f6c 6603 list_move_tail(&iocb->list, &completions);
92d7f7b0 6604 pring->txq_cnt--;
92d7f7b0
JS
6605 }
6606
6607 /* Next issue ABTS for everything on the txcmplq */
6608 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq,
6609 list) {
6610 if (iocb->vport != vport)
6611 continue;
6612 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
6613 }
6614
6615 pring->flag = prev_pring_flag;
6616 }
6617
6618 spin_unlock_irqrestore(&phba->hbalock, flags);
6619
a257bf90
JS
6620 /* Cancel all the IOCBs from the completions list */
6621 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
6622 IOERR_SLI_DOWN);
92d7f7b0
JS
6623 return 1;
6624}
6625
e59058c4 6626/**
3621a710 6627 * lpfc_sli_hba_down - Resource cleanup function for the HBA
e59058c4
JS
6628 * @phba: Pointer to HBA context object.
6629 *
6630 * This function cleans up all iocb, buffers, mailbox commands
6631 * while shutting down the HBA. This function is called with no
6632 * lock held and always returns 1.
6633 * This function does the following to cleanup driver resources:
6634 * - Free discovery resources for each virtual port
6635 * - Cleanup any pending fabric iocbs
6636 * - Iterate through the iocb txq and free each entry
6637 * in the list.
6638 * - Free up any buffer posted to the HBA
6639 * - Free mailbox commands in the mailbox queue.
6640 **/
dea3101e 6641int
2e0fef85 6642lpfc_sli_hba_down(struct lpfc_hba *phba)
dea3101e 6643{
2534ba75 6644 LIST_HEAD(completions);
2e0fef85 6645 struct lpfc_sli *psli = &phba->sli;
dea3101e 6646 struct lpfc_sli_ring *pring;
0ff10d46 6647 struct lpfc_dmabuf *buf_ptr;
dea3101e 6648 unsigned long flags = 0;
04c68496
JS
6649 int i;
6650
6651 /* Shutdown the mailbox command sub-system */
6652 lpfc_sli_mbox_sys_shutdown(phba);
dea3101e 6653
dea3101e
JB
6654 lpfc_hba_down_prep(phba);
6655
92d7f7b0
JS
6656 lpfc_fabric_abort_hba(phba);
6657
2e0fef85 6658 spin_lock_irqsave(&phba->hbalock, flags);
dea3101e
JB
6659 for (i = 0; i < psli->num_rings; i++) {
6660 pring = &psli->ring[i];
5e9d9b82
JS
6661 /* Only slow rings */
6662 if (pring->ringno == LPFC_ELS_RING) {
858c9f6c 6663 pring->flag |= LPFC_DEFERRED_RING_EVENT;
5e9d9b82
JS
6664 /* Set the lpfc data pending flag */
6665 set_bit(LPFC_DATA_READY, &phba->data_flags);
6666 }
dea3101e
JB
6667
6668 /*
6669 * Error everything on the txq since these iocbs have not been
6670 * given to the FW yet.
6671 */
2534ba75 6672 list_splice_init(&pring->txq, &completions);
dea3101e
JB
6673 pring->txq_cnt = 0;
6674
2534ba75 6675 }
2e0fef85 6676 spin_unlock_irqrestore(&phba->hbalock, flags);
dea3101e 6677
a257bf90
JS
6678 /* Cancel all the IOCBs from the completions list */
6679 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
6680 IOERR_SLI_DOWN);
dea3101e 6681
0ff10d46
JS
6682 spin_lock_irqsave(&phba->hbalock, flags);
6683 list_splice_init(&phba->elsbuf, &completions);
6684 phba->elsbuf_cnt = 0;
6685 phba->elsbuf_prev_cnt = 0;
6686 spin_unlock_irqrestore(&phba->hbalock, flags);
6687
6688 while (!list_empty(&completions)) {
6689 list_remove_head(&completions, buf_ptr,
6690 struct lpfc_dmabuf, list);
6691 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
6692 kfree(buf_ptr);
6693 }
6694
dea3101e
JB
6695 /* Return any active mbox cmds */
6696 del_timer_sync(&psli->mbox_tmo);
2e0fef85 6697
da0436e9 6698 spin_lock_irqsave(&phba->pport->work_port_lock, flags);
2e0fef85 6699 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
da0436e9 6700 spin_unlock_irqrestore(&phba->pport->work_port_lock, flags);
2e0fef85 6701
da0436e9
JS
6702 return 1;
6703}
6704
6705/**
6706 * lpfc_sli4_hba_down - PCI function resource cleanup for the SLI4 HBA
6707 * @phba: Pointer to HBA context object.
6708 *
6709 * This function cleans up all queues, iocb, buffers, mailbox commands while
6710 * shutting down the SLI4 HBA FCoE function. This function is called with no
6711 * lock held and always returns 1.
6712 *
6713 * This function does the following to cleanup driver FCoE function resources:
6714 * - Free discovery resources for each virtual port
6715 * - Cleanup any pending fabric iocbs
6716 * - Iterate through the iocb txq and free each entry in the list.
6717 * - Free up any buffer posted to the HBA.
6718 * - Clean up all the queue entries: WQ, RQ, MQ, EQ, CQ, etc.
6719 * - Free mailbox commands in the mailbox queue.
6720 **/
6721int
6722lpfc_sli4_hba_down(struct lpfc_hba *phba)
6723{
6724 /* Stop the SLI4 device port */
6725 lpfc_stop_port(phba);
6726
6727 /* Tear down the queues in the HBA */
6728 lpfc_sli4_queue_unset(phba);
6729
6730 /* unregister default FCFI from the HBA */
6731 lpfc_sli4_fcfi_unreg(phba, phba->fcf.fcfi);
92d7f7b0 6732
dea3101e
JB
6733 return 1;
6734}
6735
e59058c4 6736/**
3621a710 6737 * lpfc_sli_pcimem_bcopy - SLI memory copy function
e59058c4
JS
6738 * @srcp: Source memory pointer.
6739 * @destp: Destination memory pointer.
6740 * @cnt: Number of words required to be copied.
6741 *
6742 * This function is used for copying data between driver memory
6743 * and the SLI memory. This function also changes the endianness
6744 * of each word if native endianness is different from SLI
6745 * endianness. This function can be called with or without
6746 * lock.
6747 **/
dea3101e
JB
6748void
6749lpfc_sli_pcimem_bcopy(void *srcp, void *destp, uint32_t cnt)
6750{
6751 uint32_t *src = srcp;
6752 uint32_t *dest = destp;
6753 uint32_t ldata;
6754 int i;
6755
6756 for (i = 0; i < (int)cnt; i += sizeof (uint32_t)) {
6757 ldata = *src;
6758 ldata = le32_to_cpu(ldata);
6759 *dest = ldata;
6760 src++;
6761 dest++;
6762 }
6763}
6764
e59058c4 6765
a0c87cbd
JS
6766/**
6767 * lpfc_sli_bemem_bcopy - SLI memory copy function
6768 * @srcp: Source memory pointer.
6769 * @destp: Destination memory pointer.
6770 * @cnt: Number of words required to be copied.
6771 *
6772 * This function is used for copying data between a data structure
6773 * with big endian representation to local endianness.
6774 * This function can be called with or without lock.
6775 **/
6776void
6777lpfc_sli_bemem_bcopy(void *srcp, void *destp, uint32_t cnt)
6778{
6779 uint32_t *src = srcp;
6780 uint32_t *dest = destp;
6781 uint32_t ldata;
6782 int i;
6783
6784 for (i = 0; i < (int)cnt; i += sizeof(uint32_t)) {
6785 ldata = *src;
6786 ldata = be32_to_cpu(ldata);
6787 *dest = ldata;
6788 src++;
6789 dest++;
6790 }
6791}
6792
e59058c4 6793/**
3621a710 6794 * lpfc_sli_ringpostbuf_put - Function to add a buffer to postbufq
e59058c4
JS
6795 * @phba: Pointer to HBA context object.
6796 * @pring: Pointer to driver SLI ring object.
6797 * @mp: Pointer to driver buffer object.
6798 *
6799 * This function is called with no lock held.
6800 * It always return zero after adding the buffer to the postbufq
6801 * buffer list.
6802 **/
dea3101e 6803int
2e0fef85
JS
6804lpfc_sli_ringpostbuf_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
6805 struct lpfc_dmabuf *mp)
dea3101e
JB
6806{
6807 /* Stick struct lpfc_dmabuf at end of postbufq so driver can look it up
6808 later */
2e0fef85 6809 spin_lock_irq(&phba->hbalock);
dea3101e 6810 list_add_tail(&mp->list, &pring->postbufq);
dea3101e 6811 pring->postbufq_cnt++;
2e0fef85 6812 spin_unlock_irq(&phba->hbalock);
dea3101e
JB
6813 return 0;
6814}
6815
e59058c4 6816/**
3621a710 6817 * lpfc_sli_get_buffer_tag - allocates a tag for a CMD_QUE_XRI64_CX buffer
e59058c4
JS
6818 * @phba: Pointer to HBA context object.
6819 *
6820 * When HBQ is enabled, buffers are searched based on tags. This function
6821 * allocates a tag for buffer posted using CMD_QUE_XRI64_CX iocb. The
6822 * tag is bit wise or-ed with QUE_BUFTAG_BIT to make sure that the tag
6823 * does not conflict with tags of buffer posted for unsolicited events.
6824 * The function returns the allocated tag. The function is called with
6825 * no locks held.
6826 **/
76bb24ef
JS
6827uint32_t
6828lpfc_sli_get_buffer_tag(struct lpfc_hba *phba)
6829{
6830 spin_lock_irq(&phba->hbalock);
6831 phba->buffer_tag_count++;
6832 /*
6833 * Always set the QUE_BUFTAG_BIT to distiguish between
6834 * a tag assigned by HBQ.
6835 */
6836 phba->buffer_tag_count |= QUE_BUFTAG_BIT;
6837 spin_unlock_irq(&phba->hbalock);
6838 return phba->buffer_tag_count;
6839}
6840
e59058c4 6841/**
3621a710 6842 * lpfc_sli_ring_taggedbuf_get - find HBQ buffer associated with given tag
e59058c4
JS
6843 * @phba: Pointer to HBA context object.
6844 * @pring: Pointer to driver SLI ring object.
6845 * @tag: Buffer tag.
6846 *
6847 * Buffers posted using CMD_QUE_XRI64_CX iocb are in pring->postbufq
6848 * list. After HBA DMA data to these buffers, CMD_IOCB_RET_XRI64_CX
6849 * iocb is posted to the response ring with the tag of the buffer.
6850 * This function searches the pring->postbufq list using the tag
6851 * to find buffer associated with CMD_IOCB_RET_XRI64_CX
6852 * iocb. If the buffer is found then lpfc_dmabuf object of the
6853 * buffer is returned to the caller else NULL is returned.
6854 * This function is called with no lock held.
6855 **/
76bb24ef
JS
6856struct lpfc_dmabuf *
6857lpfc_sli_ring_taggedbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
6858 uint32_t tag)
6859{
6860 struct lpfc_dmabuf *mp, *next_mp;
6861 struct list_head *slp = &pring->postbufq;
6862
6863 /* Search postbufq, from the begining, looking for a match on tag */
6864 spin_lock_irq(&phba->hbalock);
6865 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
6866 if (mp->buffer_tag == tag) {
6867 list_del_init(&mp->list);
6868 pring->postbufq_cnt--;
6869 spin_unlock_irq(&phba->hbalock);
6870 return mp;
6871 }
6872 }
6873
6874 spin_unlock_irq(&phba->hbalock);
6875 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
d7c255b2 6876 "0402 Cannot find virtual addr for buffer tag on "
76bb24ef
JS
6877 "ring %d Data x%lx x%p x%p x%x\n",
6878 pring->ringno, (unsigned long) tag,
6879 slp->next, slp->prev, pring->postbufq_cnt);
6880
6881 return NULL;
6882}
dea3101e 6883
e59058c4 6884/**
3621a710 6885 * lpfc_sli_ringpostbuf_get - search buffers for unsolicited CT and ELS events
e59058c4
JS
6886 * @phba: Pointer to HBA context object.
6887 * @pring: Pointer to driver SLI ring object.
6888 * @phys: DMA address of the buffer.
6889 *
6890 * This function searches the buffer list using the dma_address
6891 * of unsolicited event to find the driver's lpfc_dmabuf object
6892 * corresponding to the dma_address. The function returns the
6893 * lpfc_dmabuf object if a buffer is found else it returns NULL.
6894 * This function is called by the ct and els unsolicited event
6895 * handlers to get the buffer associated with the unsolicited
6896 * event.
6897 *
6898 * This function is called with no lock held.
6899 **/
dea3101e
JB
6900struct lpfc_dmabuf *
6901lpfc_sli_ringpostbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
6902 dma_addr_t phys)
6903{
6904 struct lpfc_dmabuf *mp, *next_mp;
6905 struct list_head *slp = &pring->postbufq;
6906
6907 /* Search postbufq, from the begining, looking for a match on phys */
2e0fef85 6908 spin_lock_irq(&phba->hbalock);
dea3101e
JB
6909 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
6910 if (mp->phys == phys) {
6911 list_del_init(&mp->list);
6912 pring->postbufq_cnt--;
2e0fef85 6913 spin_unlock_irq(&phba->hbalock);
dea3101e
JB
6914 return mp;
6915 }
6916 }
6917
2e0fef85 6918 spin_unlock_irq(&phba->hbalock);
dea3101e 6919 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 6920 "0410 Cannot find virtual addr for mapped buf on "
dea3101e 6921 "ring %d Data x%llx x%p x%p x%x\n",
e8b62011 6922 pring->ringno, (unsigned long long)phys,
dea3101e
JB
6923 slp->next, slp->prev, pring->postbufq_cnt);
6924 return NULL;
6925}
6926
e59058c4 6927/**
3621a710 6928 * lpfc_sli_abort_els_cmpl - Completion handler for the els abort iocbs
e59058c4
JS
6929 * @phba: Pointer to HBA context object.
6930 * @cmdiocb: Pointer to driver command iocb object.
6931 * @rspiocb: Pointer to driver response iocb object.
6932 *
6933 * This function is the completion handler for the abort iocbs for
6934 * ELS commands. This function is called from the ELS ring event
6935 * handler with no lock held. This function frees memory resources
6936 * associated with the abort iocb.
6937 **/
dea3101e 6938static void
2e0fef85
JS
6939lpfc_sli_abort_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
6940 struct lpfc_iocbq *rspiocb)
dea3101e 6941{
2e0fef85 6942 IOCB_t *irsp = &rspiocb->iocb;
2680eeaa 6943 uint16_t abort_iotag, abort_context;
92d7f7b0 6944 struct lpfc_iocbq *abort_iocb;
2680eeaa
JS
6945 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
6946
6947 abort_iocb = NULL;
2680eeaa
JS
6948
6949 if (irsp->ulpStatus) {
6950 abort_context = cmdiocb->iocb.un.acxri.abortContextTag;
6951 abort_iotag = cmdiocb->iocb.un.acxri.abortIoTag;
6952
2e0fef85 6953 spin_lock_irq(&phba->hbalock);
45ed1190
JS
6954 if (phba->sli_rev < LPFC_SLI_REV4) {
6955 if (abort_iotag != 0 &&
6956 abort_iotag <= phba->sli.last_iotag)
6957 abort_iocb =
6958 phba->sli.iocbq_lookup[abort_iotag];
6959 } else
6960 /* For sli4 the abort_tag is the XRI,
6961 * so the abort routine puts the iotag of the iocb
6962 * being aborted in the context field of the abort
6963 * IOCB.
6964 */
6965 abort_iocb = phba->sli.iocbq_lookup[abort_context];
2680eeaa 6966
92d7f7b0 6967 lpfc_printf_log(phba, KERN_INFO, LOG_ELS | LOG_SLI,
e8b62011 6968 "0327 Cannot abort els iocb %p "
92d7f7b0
JS
6969 "with tag %x context %x, abort status %x, "
6970 "abort code %x\n",
e8b62011
JS
6971 abort_iocb, abort_iotag, abort_context,
6972 irsp->ulpStatus, irsp->un.ulpWord[4]);
2680eeaa 6973
58da1ffb
JS
6974 /*
6975 * If the iocb is not found in Firmware queue the iocb
6976 * might have completed already. Do not free it again.
6977 */
9b379605 6978 if (irsp->ulpStatus == IOSTAT_LOCAL_REJECT) {
45ed1190
JS
6979 if (irsp->un.ulpWord[4] != IOERR_NO_XRI) {
6980 spin_unlock_irq(&phba->hbalock);
6981 lpfc_sli_release_iocbq(phba, cmdiocb);
6982 return;
6983 }
6984 /* For SLI4 the ulpContext field for abort IOCB
6985 * holds the iotag of the IOCB being aborted so
6986 * the local abort_context needs to be reset to
6987 * match the aborted IOCBs ulpContext.
6988 */
6989 if (abort_iocb && phba->sli_rev == LPFC_SLI_REV4)
6990 abort_context = abort_iocb->iocb.ulpContext;
58da1ffb 6991 }
2680eeaa
JS
6992 /*
6993 * make sure we have the right iocbq before taking it
6994 * off the txcmplq and try to call completion routine.
6995 */
2e0fef85
JS
6996 if (!abort_iocb ||
6997 abort_iocb->iocb.ulpContext != abort_context ||
6998 (abort_iocb->iocb_flag & LPFC_DRIVER_ABORTED) == 0)
6999 spin_unlock_irq(&phba->hbalock);
7000 else {
92d7f7b0 7001 list_del_init(&abort_iocb->list);
2680eeaa 7002 pring->txcmplq_cnt--;
2e0fef85 7003 spin_unlock_irq(&phba->hbalock);
2680eeaa 7004
0ff10d46
JS
7005 /* Firmware could still be in progress of DMAing
7006 * payload, so don't free data buffer till after
7007 * a hbeat.
7008 */
7009 abort_iocb->iocb_flag |= LPFC_DELAY_MEM_FREE;
7010
92d7f7b0
JS
7011 abort_iocb->iocb_flag &= ~LPFC_DRIVER_ABORTED;
7012 abort_iocb->iocb.ulpStatus = IOSTAT_LOCAL_REJECT;
7013 abort_iocb->iocb.un.ulpWord[4] = IOERR_SLI_ABORTED;
7014 (abort_iocb->iocb_cmpl)(phba, abort_iocb, abort_iocb);
2680eeaa
JS
7015 }
7016 }
7017
604a3e30 7018 lpfc_sli_release_iocbq(phba, cmdiocb);
dea3101e
JB
7019 return;
7020}
7021
e59058c4 7022/**
3621a710 7023 * lpfc_ignore_els_cmpl - Completion handler for aborted ELS command
e59058c4
JS
7024 * @phba: Pointer to HBA context object.
7025 * @cmdiocb: Pointer to driver command iocb object.
7026 * @rspiocb: Pointer to driver response iocb object.
7027 *
7028 * The function is called from SLI ring event handler with no
7029 * lock held. This function is the completion handler for ELS commands
7030 * which are aborted. The function frees memory resources used for
7031 * the aborted ELS commands.
7032 **/
92d7f7b0
JS
7033static void
7034lpfc_ignore_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
7035 struct lpfc_iocbq *rspiocb)
7036{
7037 IOCB_t *irsp = &rspiocb->iocb;
7038
7039 /* ELS cmd tag <ulpIoTag> completes */
7040 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
d7c255b2 7041 "0139 Ignoring ELS cmd tag x%x completion Data: "
92d7f7b0 7042 "x%x x%x x%x\n",
e8b62011 7043 irsp->ulpIoTag, irsp->ulpStatus,
92d7f7b0 7044 irsp->un.ulpWord[4], irsp->ulpTimeout);
858c9f6c
JS
7045 if (cmdiocb->iocb.ulpCommand == CMD_GEN_REQUEST64_CR)
7046 lpfc_ct_free_iocb(phba, cmdiocb);
7047 else
7048 lpfc_els_free_iocb(phba, cmdiocb);
92d7f7b0
JS
7049 return;
7050}
7051
e59058c4 7052/**
3621a710 7053 * lpfc_sli_issue_abort_iotag - Abort function for a command iocb
e59058c4
JS
7054 * @phba: Pointer to HBA context object.
7055 * @pring: Pointer to driver SLI ring object.
7056 * @cmdiocb: Pointer to driver command iocb object.
7057 *
7058 * This function issues an abort iocb for the provided command
7059 * iocb. This function is called with hbalock held.
7060 * The function returns 0 when it fails due to memory allocation
7061 * failure or when the command iocb is an abort request.
7062 **/
dea3101e 7063int
2e0fef85
JS
7064lpfc_sli_issue_abort_iotag(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
7065 struct lpfc_iocbq *cmdiocb)
dea3101e 7066{
2e0fef85 7067 struct lpfc_vport *vport = cmdiocb->vport;
0bd4ca25 7068 struct lpfc_iocbq *abtsiocbp;
dea3101e
JB
7069 IOCB_t *icmd = NULL;
7070 IOCB_t *iabt = NULL;
07951076
JS
7071 int retval = IOCB_ERROR;
7072
92d7f7b0
JS
7073 /*
7074 * There are certain command types we don't want to abort. And we
7075 * don't want to abort commands that are already in the process of
7076 * being aborted.
07951076
JS
7077 */
7078 icmd = &cmdiocb->iocb;
2e0fef85 7079 if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
92d7f7b0
JS
7080 icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
7081 (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
07951076
JS
7082 return 0;
7083
858c9f6c
JS
7084 /* If we're unloading, don't abort iocb on the ELS ring, but change the
7085 * callback so that nothing happens when it finishes.
07951076 7086 */
858c9f6c
JS
7087 if ((vport->load_flag & FC_UNLOADING) &&
7088 (pring->ringno == LPFC_ELS_RING)) {
92d7f7b0
JS
7089 if (cmdiocb->iocb_flag & LPFC_IO_FABRIC)
7090 cmdiocb->fabric_iocb_cmpl = lpfc_ignore_els_cmpl;
7091 else
7092 cmdiocb->iocb_cmpl = lpfc_ignore_els_cmpl;
07951076 7093 goto abort_iotag_exit;
92d7f7b0 7094 }
dea3101e
JB
7095
7096 /* issue ABTS for this IOCB based on iotag */
92d7f7b0 7097 abtsiocbp = __lpfc_sli_get_iocbq(phba);
dea3101e
JB
7098 if (abtsiocbp == NULL)
7099 return 0;
dea3101e 7100
07951076
JS
7101 /* This signals the response to set the correct status
7102 * before calling the completion handler.
7103 */
7104 cmdiocb->iocb_flag |= LPFC_DRIVER_ABORTED;
7105
dea3101e 7106 iabt = &abtsiocbp->iocb;
07951076
JS
7107 iabt->un.acxri.abortType = ABORT_TYPE_ABTS;
7108 iabt->un.acxri.abortContextTag = icmd->ulpContext;
45ed1190 7109 if (phba->sli_rev == LPFC_SLI_REV4) {
da0436e9 7110 iabt->un.acxri.abortIoTag = cmdiocb->sli4_xritag;
45ed1190
JS
7111 iabt->un.acxri.abortContextTag = cmdiocb->iotag;
7112 }
da0436e9
JS
7113 else
7114 iabt->un.acxri.abortIoTag = icmd->ulpIoTag;
07951076
JS
7115 iabt->ulpLe = 1;
7116 iabt->ulpClass = icmd->ulpClass;
dea3101e 7117
5ffc266e
JS
7118 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
7119 abtsiocbp->fcp_wqidx = cmdiocb->fcp_wqidx;
7120
2e0fef85 7121 if (phba->link_state >= LPFC_LINK_UP)
07951076
JS
7122 iabt->ulpCommand = CMD_ABORT_XRI_CN;
7123 else
7124 iabt->ulpCommand = CMD_CLOSE_XRI_CN;
dea3101e 7125
07951076 7126 abtsiocbp->iocb_cmpl = lpfc_sli_abort_els_cmpl;
5b8bd0c9 7127
e8b62011
JS
7128 lpfc_printf_vlog(vport, KERN_INFO, LOG_SLI,
7129 "0339 Abort xri x%x, original iotag x%x, "
7130 "abort cmd iotag x%x\n",
7131 iabt->un.acxri.abortContextTag,
7132 iabt->un.acxri.abortIoTag, abtsiocbp->iotag);
da0436e9 7133 retval = __lpfc_sli_issue_iocb(phba, pring->ringno, abtsiocbp, 0);
dea3101e 7134
d7c255b2
JS
7135 if (retval)
7136 __lpfc_sli_release_iocbq(phba, abtsiocbp);
07951076 7137abort_iotag_exit:
2e0fef85
JS
7138 /*
7139 * Caller to this routine should check for IOCB_ERROR
7140 * and handle it properly. This routine no longer removes
7141 * iocb off txcmplq and call compl in case of IOCB_ERROR.
07951076 7142 */
2e0fef85 7143 return retval;
dea3101e
JB
7144}
7145
e59058c4 7146/**
3621a710 7147 * lpfc_sli_validate_fcp_iocb - find commands associated with a vport or LUN
e59058c4
JS
7148 * @iocbq: Pointer to driver iocb object.
7149 * @vport: Pointer to driver virtual port object.
7150 * @tgt_id: SCSI ID of the target.
7151 * @lun_id: LUN ID of the scsi device.
7152 * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST
7153 *
3621a710 7154 * This function acts as an iocb filter for functions which abort or count
e59058c4
JS
7155 * all FCP iocbs pending on a lun/SCSI target/SCSI host. It will return
7156 * 0 if the filtering criteria is met for the given iocb and will return
7157 * 1 if the filtering criteria is not met.
7158 * If ctx_cmd == LPFC_CTX_LUN, the function returns 0 only if the
7159 * given iocb is for the SCSI device specified by vport, tgt_id and
7160 * lun_id parameter.
7161 * If ctx_cmd == LPFC_CTX_TGT, the function returns 0 only if the
7162 * given iocb is for the SCSI target specified by vport and tgt_id
7163 * parameters.
7164 * If ctx_cmd == LPFC_CTX_HOST, the function returns 0 only if the
7165 * given iocb is for the SCSI host associated with the given vport.
7166 * This function is called with no locks held.
7167 **/
dea3101e 7168static int
51ef4c26
JS
7169lpfc_sli_validate_fcp_iocb(struct lpfc_iocbq *iocbq, struct lpfc_vport *vport,
7170 uint16_t tgt_id, uint64_t lun_id,
0bd4ca25 7171 lpfc_ctx_cmd ctx_cmd)
dea3101e 7172{
0bd4ca25 7173 struct lpfc_scsi_buf *lpfc_cmd;
dea3101e
JB
7174 int rc = 1;
7175
0bd4ca25
JSEC
7176 if (!(iocbq->iocb_flag & LPFC_IO_FCP))
7177 return rc;
7178
51ef4c26
JS
7179 if (iocbq->vport != vport)
7180 return rc;
7181
0bd4ca25 7182 lpfc_cmd = container_of(iocbq, struct lpfc_scsi_buf, cur_iocbq);
0bd4ca25 7183
495a714c 7184 if (lpfc_cmd->pCmd == NULL)
dea3101e
JB
7185 return rc;
7186
7187 switch (ctx_cmd) {
7188 case LPFC_CTX_LUN:
495a714c
JS
7189 if ((lpfc_cmd->rdata->pnode) &&
7190 (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id) &&
7191 (scsilun_to_int(&lpfc_cmd->fcp_cmnd->fcp_lun) == lun_id))
dea3101e
JB
7192 rc = 0;
7193 break;
7194 case LPFC_CTX_TGT:
495a714c
JS
7195 if ((lpfc_cmd->rdata->pnode) &&
7196 (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id))
dea3101e
JB
7197 rc = 0;
7198 break;
dea3101e
JB
7199 case LPFC_CTX_HOST:
7200 rc = 0;
7201 break;
7202 default:
7203 printk(KERN_ERR "%s: Unknown context cmd type, value %d\n",
cadbd4a5 7204 __func__, ctx_cmd);
dea3101e
JB
7205 break;
7206 }
7207
7208 return rc;
7209}
7210
e59058c4 7211/**
3621a710 7212 * lpfc_sli_sum_iocb - Function to count the number of FCP iocbs pending
e59058c4
JS
7213 * @vport: Pointer to virtual port.
7214 * @tgt_id: SCSI ID of the target.
7215 * @lun_id: LUN ID of the scsi device.
7216 * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
7217 *
7218 * This function returns number of FCP commands pending for the vport.
7219 * When ctx_cmd == LPFC_CTX_LUN, the function returns number of FCP
7220 * commands pending on the vport associated with SCSI device specified
7221 * by tgt_id and lun_id parameters.
7222 * When ctx_cmd == LPFC_CTX_TGT, the function returns number of FCP
7223 * commands pending on the vport associated with SCSI target specified
7224 * by tgt_id parameter.
7225 * When ctx_cmd == LPFC_CTX_HOST, the function returns number of FCP
7226 * commands pending on the vport.
7227 * This function returns the number of iocbs which satisfy the filter.
7228 * This function is called without any lock held.
7229 **/
dea3101e 7230int
51ef4c26
JS
7231lpfc_sli_sum_iocb(struct lpfc_vport *vport, uint16_t tgt_id, uint64_t lun_id,
7232 lpfc_ctx_cmd ctx_cmd)
dea3101e 7233{
51ef4c26 7234 struct lpfc_hba *phba = vport->phba;
0bd4ca25
JSEC
7235 struct lpfc_iocbq *iocbq;
7236 int sum, i;
dea3101e 7237
0bd4ca25
JSEC
7238 for (i = 1, sum = 0; i <= phba->sli.last_iotag; i++) {
7239 iocbq = phba->sli.iocbq_lookup[i];
dea3101e 7240
51ef4c26
JS
7241 if (lpfc_sli_validate_fcp_iocb (iocbq, vport, tgt_id, lun_id,
7242 ctx_cmd) == 0)
0bd4ca25 7243 sum++;
dea3101e 7244 }
0bd4ca25 7245
dea3101e
JB
7246 return sum;
7247}
7248
e59058c4 7249/**
3621a710 7250 * lpfc_sli_abort_fcp_cmpl - Completion handler function for aborted FCP IOCBs
e59058c4
JS
7251 * @phba: Pointer to HBA context object
7252 * @cmdiocb: Pointer to command iocb object.
7253 * @rspiocb: Pointer to response iocb object.
7254 *
7255 * This function is called when an aborted FCP iocb completes. This
7256 * function is called by the ring event handler with no lock held.
7257 * This function frees the iocb.
7258 **/
5eb95af0 7259void
2e0fef85
JS
7260lpfc_sli_abort_fcp_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
7261 struct lpfc_iocbq *rspiocb)
5eb95af0 7262{
604a3e30 7263 lpfc_sli_release_iocbq(phba, cmdiocb);
5eb95af0
JSEC
7264 return;
7265}
7266
e59058c4 7267/**
3621a710 7268 * lpfc_sli_abort_iocb - issue abort for all commands on a host/target/LUN
e59058c4
JS
7269 * @vport: Pointer to virtual port.
7270 * @pring: Pointer to driver SLI ring object.
7271 * @tgt_id: SCSI ID of the target.
7272 * @lun_id: LUN ID of the scsi device.
7273 * @abort_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
7274 *
7275 * This function sends an abort command for every SCSI command
7276 * associated with the given virtual port pending on the ring
7277 * filtered by lpfc_sli_validate_fcp_iocb function.
7278 * When abort_cmd == LPFC_CTX_LUN, the function sends abort only to the
7279 * FCP iocbs associated with lun specified by tgt_id and lun_id
7280 * parameters
7281 * When abort_cmd == LPFC_CTX_TGT, the function sends abort only to the
7282 * FCP iocbs associated with SCSI target specified by tgt_id parameter.
7283 * When abort_cmd == LPFC_CTX_HOST, the function sends abort to all
7284 * FCP iocbs associated with virtual port.
7285 * This function returns number of iocbs it failed to abort.
7286 * This function is called with no locks held.
7287 **/
dea3101e 7288int
51ef4c26
JS
7289lpfc_sli_abort_iocb(struct lpfc_vport *vport, struct lpfc_sli_ring *pring,
7290 uint16_t tgt_id, uint64_t lun_id, lpfc_ctx_cmd abort_cmd)
dea3101e 7291{
51ef4c26 7292 struct lpfc_hba *phba = vport->phba;
0bd4ca25
JSEC
7293 struct lpfc_iocbq *iocbq;
7294 struct lpfc_iocbq *abtsiocb;
dea3101e 7295 IOCB_t *cmd = NULL;
dea3101e 7296 int errcnt = 0, ret_val = 0;
0bd4ca25 7297 int i;
dea3101e 7298
0bd4ca25
JSEC
7299 for (i = 1; i <= phba->sli.last_iotag; i++) {
7300 iocbq = phba->sli.iocbq_lookup[i];
dea3101e 7301
51ef4c26 7302 if (lpfc_sli_validate_fcp_iocb(iocbq, vport, tgt_id, lun_id,
2e0fef85 7303 abort_cmd) != 0)
dea3101e
JB
7304 continue;
7305
7306 /* issue ABTS for this IOCB based on iotag */
0bd4ca25 7307 abtsiocb = lpfc_sli_get_iocbq(phba);
dea3101e
JB
7308 if (abtsiocb == NULL) {
7309 errcnt++;
7310 continue;
7311 }
dea3101e 7312
0bd4ca25 7313 cmd = &iocbq->iocb;
dea3101e
JB
7314 abtsiocb->iocb.un.acxri.abortType = ABORT_TYPE_ABTS;
7315 abtsiocb->iocb.un.acxri.abortContextTag = cmd->ulpContext;
da0436e9
JS
7316 if (phba->sli_rev == LPFC_SLI_REV4)
7317 abtsiocb->iocb.un.acxri.abortIoTag = iocbq->sli4_xritag;
7318 else
7319 abtsiocb->iocb.un.acxri.abortIoTag = cmd->ulpIoTag;
dea3101e
JB
7320 abtsiocb->iocb.ulpLe = 1;
7321 abtsiocb->iocb.ulpClass = cmd->ulpClass;
2e0fef85 7322 abtsiocb->vport = phba->pport;
dea3101e 7323
5ffc266e
JS
7324 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
7325 abtsiocb->fcp_wqidx = iocbq->fcp_wqidx;
7326
2e0fef85 7327 if (lpfc_is_link_up(phba))
dea3101e
JB
7328 abtsiocb->iocb.ulpCommand = CMD_ABORT_XRI_CN;
7329 else
7330 abtsiocb->iocb.ulpCommand = CMD_CLOSE_XRI_CN;
7331
5eb95af0
JSEC
7332 /* Setup callback routine and issue the command. */
7333 abtsiocb->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
da0436e9
JS
7334 ret_val = lpfc_sli_issue_iocb(phba, pring->ringno,
7335 abtsiocb, 0);
dea3101e 7336 if (ret_val == IOCB_ERROR) {
604a3e30 7337 lpfc_sli_release_iocbq(phba, abtsiocb);
dea3101e
JB
7338 errcnt++;
7339 continue;
7340 }
7341 }
7342
7343 return errcnt;
7344}
7345
e59058c4 7346/**
3621a710 7347 * lpfc_sli_wake_iocb_wait - lpfc_sli_issue_iocb_wait's completion handler
e59058c4
JS
7348 * @phba: Pointer to HBA context object.
7349 * @cmdiocbq: Pointer to command iocb.
7350 * @rspiocbq: Pointer to response iocb.
7351 *
7352 * This function is the completion handler for iocbs issued using
7353 * lpfc_sli_issue_iocb_wait function. This function is called by the
7354 * ring event handler function without any lock held. This function
7355 * can be called from both worker thread context and interrupt
7356 * context. This function also can be called from other thread which
7357 * cleans up the SLI layer objects.
7358 * This function copy the contents of the response iocb to the
7359 * response iocb memory object provided by the caller of
7360 * lpfc_sli_issue_iocb_wait and then wakes up the thread which
7361 * sleeps for the iocb completion.
7362 **/
68876920
JSEC
7363static void
7364lpfc_sli_wake_iocb_wait(struct lpfc_hba *phba,
7365 struct lpfc_iocbq *cmdiocbq,
7366 struct lpfc_iocbq *rspiocbq)
dea3101e 7367{
68876920
JSEC
7368 wait_queue_head_t *pdone_q;
7369 unsigned long iflags;
dea3101e 7370
2e0fef85 7371 spin_lock_irqsave(&phba->hbalock, iflags);
68876920
JSEC
7372 cmdiocbq->iocb_flag |= LPFC_IO_WAKE;
7373 if (cmdiocbq->context2 && rspiocbq)
7374 memcpy(&((struct lpfc_iocbq *)cmdiocbq->context2)->iocb,
7375 &rspiocbq->iocb, sizeof(IOCB_t));
7376
7377 pdone_q = cmdiocbq->context_un.wait_queue;
68876920
JSEC
7378 if (pdone_q)
7379 wake_up(pdone_q);
858c9f6c 7380 spin_unlock_irqrestore(&phba->hbalock, iflags);
dea3101e
JB
7381 return;
7382}
7383
d11e31dd
JS
7384/**
7385 * lpfc_chk_iocb_flg - Test IOCB flag with lock held.
7386 * @phba: Pointer to HBA context object..
7387 * @piocbq: Pointer to command iocb.
7388 * @flag: Flag to test.
7389 *
7390 * This routine grabs the hbalock and then test the iocb_flag to
7391 * see if the passed in flag is set.
7392 * Returns:
7393 * 1 if flag is set.
7394 * 0 if flag is not set.
7395 **/
7396static int
7397lpfc_chk_iocb_flg(struct lpfc_hba *phba,
7398 struct lpfc_iocbq *piocbq, uint32_t flag)
7399{
7400 unsigned long iflags;
7401 int ret;
7402
7403 spin_lock_irqsave(&phba->hbalock, iflags);
7404 ret = piocbq->iocb_flag & flag;
7405 spin_unlock_irqrestore(&phba->hbalock, iflags);
7406 return ret;
7407
7408}
7409
e59058c4 7410/**
3621a710 7411 * lpfc_sli_issue_iocb_wait - Synchronous function to issue iocb commands
e59058c4
JS
7412 * @phba: Pointer to HBA context object..
7413 * @pring: Pointer to sli ring.
7414 * @piocb: Pointer to command iocb.
7415 * @prspiocbq: Pointer to response iocb.
7416 * @timeout: Timeout in number of seconds.
7417 *
7418 * This function issues the iocb to firmware and waits for the
7419 * iocb to complete. If the iocb command is not
7420 * completed within timeout seconds, it returns IOCB_TIMEDOUT.
7421 * Caller should not free the iocb resources if this function
7422 * returns IOCB_TIMEDOUT.
7423 * The function waits for the iocb completion using an
7424 * non-interruptible wait.
7425 * This function will sleep while waiting for iocb completion.
7426 * So, this function should not be called from any context which
7427 * does not allow sleeping. Due to the same reason, this function
7428 * cannot be called with interrupt disabled.
7429 * This function assumes that the iocb completions occur while
7430 * this function sleep. So, this function cannot be called from
7431 * the thread which process iocb completion for this ring.
7432 * This function clears the iocb_flag of the iocb object before
7433 * issuing the iocb and the iocb completion handler sets this
7434 * flag and wakes this thread when the iocb completes.
7435 * The contents of the response iocb will be copied to prspiocbq
7436 * by the completion handler when the command completes.
7437 * This function returns IOCB_SUCCESS when success.
7438 * This function is called with no lock held.
7439 **/
dea3101e 7440int
2e0fef85 7441lpfc_sli_issue_iocb_wait(struct lpfc_hba *phba,
da0436e9 7442 uint32_t ring_number,
2e0fef85
JS
7443 struct lpfc_iocbq *piocb,
7444 struct lpfc_iocbq *prspiocbq,
68876920 7445 uint32_t timeout)
dea3101e 7446{
7259f0d0 7447 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
68876920
JSEC
7448 long timeleft, timeout_req = 0;
7449 int retval = IOCB_SUCCESS;
875fbdfe 7450 uint32_t creg_val;
dea3101e
JB
7451
7452 /*
68876920
JSEC
7453 * If the caller has provided a response iocbq buffer, then context2
7454 * is NULL or its an error.
dea3101e 7455 */
68876920
JSEC
7456 if (prspiocbq) {
7457 if (piocb->context2)
7458 return IOCB_ERROR;
7459 piocb->context2 = prspiocbq;
dea3101e
JB
7460 }
7461
68876920
JSEC
7462 piocb->iocb_cmpl = lpfc_sli_wake_iocb_wait;
7463 piocb->context_un.wait_queue = &done_q;
7464 piocb->iocb_flag &= ~LPFC_IO_WAKE;
dea3101e 7465
875fbdfe
JSEC
7466 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
7467 creg_val = readl(phba->HCregaddr);
7468 creg_val |= (HC_R0INT_ENA << LPFC_FCP_RING);
7469 writel(creg_val, phba->HCregaddr);
7470 readl(phba->HCregaddr); /* flush */
7471 }
7472
da0436e9 7473 retval = lpfc_sli_issue_iocb(phba, ring_number, piocb, 0);
68876920
JSEC
7474 if (retval == IOCB_SUCCESS) {
7475 timeout_req = timeout * HZ;
68876920 7476 timeleft = wait_event_timeout(done_q,
d11e31dd 7477 lpfc_chk_iocb_flg(phba, piocb, LPFC_IO_WAKE),
68876920 7478 timeout_req);
dea3101e 7479
7054a606
JS
7480 if (piocb->iocb_flag & LPFC_IO_WAKE) {
7481 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
e8b62011 7482 "0331 IOCB wake signaled\n");
7054a606 7483 } else if (timeleft == 0) {
68876920 7484 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011
JS
7485 "0338 IOCB wait timeout error - no "
7486 "wake response Data x%x\n", timeout);
68876920 7487 retval = IOCB_TIMEDOUT;
7054a606 7488 } else {
68876920 7489 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e8b62011
JS
7490 "0330 IOCB wake NOT set, "
7491 "Data x%x x%lx\n",
68876920
JSEC
7492 timeout, (timeleft / jiffies));
7493 retval = IOCB_TIMEDOUT;
dea3101e 7494 }
68876920
JSEC
7495 } else {
7496 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
d7c255b2 7497 "0332 IOCB wait issue failed, Data x%x\n",
e8b62011 7498 retval);
68876920 7499 retval = IOCB_ERROR;
dea3101e
JB
7500 }
7501
875fbdfe
JSEC
7502 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
7503 creg_val = readl(phba->HCregaddr);
7504 creg_val &= ~(HC_R0INT_ENA << LPFC_FCP_RING);
7505 writel(creg_val, phba->HCregaddr);
7506 readl(phba->HCregaddr); /* flush */
7507 }
7508
68876920
JSEC
7509 if (prspiocbq)
7510 piocb->context2 = NULL;
7511
7512 piocb->context_un.wait_queue = NULL;
7513 piocb->iocb_cmpl = NULL;
dea3101e
JB
7514 return retval;
7515}
68876920 7516
e59058c4 7517/**
3621a710 7518 * lpfc_sli_issue_mbox_wait - Synchronous function to issue mailbox
e59058c4
JS
7519 * @phba: Pointer to HBA context object.
7520 * @pmboxq: Pointer to driver mailbox object.
7521 * @timeout: Timeout in number of seconds.
7522 *
7523 * This function issues the mailbox to firmware and waits for the
7524 * mailbox command to complete. If the mailbox command is not
7525 * completed within timeout seconds, it returns MBX_TIMEOUT.
7526 * The function waits for the mailbox completion using an
7527 * interruptible wait. If the thread is woken up due to a
7528 * signal, MBX_TIMEOUT error is returned to the caller. Caller
7529 * should not free the mailbox resources, if this function returns
7530 * MBX_TIMEOUT.
7531 * This function will sleep while waiting for mailbox completion.
7532 * So, this function should not be called from any context which
7533 * does not allow sleeping. Due to the same reason, this function
7534 * cannot be called with interrupt disabled.
7535 * This function assumes that the mailbox completion occurs while
7536 * this function sleep. So, this function cannot be called from
7537 * the worker thread which processes mailbox completion.
7538 * This function is called in the context of HBA management
7539 * applications.
7540 * This function returns MBX_SUCCESS when successful.
7541 * This function is called with no lock held.
7542 **/
dea3101e 7543int
2e0fef85 7544lpfc_sli_issue_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq,
dea3101e
JB
7545 uint32_t timeout)
7546{
7259f0d0 7547 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
dea3101e 7548 int retval;
858c9f6c 7549 unsigned long flag;
dea3101e
JB
7550
7551 /* The caller must leave context1 empty. */
98c9ea5c 7552 if (pmboxq->context1)
2e0fef85 7553 return MBX_NOT_FINISHED;
dea3101e 7554
495a714c 7555 pmboxq->mbox_flag &= ~LPFC_MBX_WAKE;
dea3101e
JB
7556 /* setup wake call as IOCB callback */
7557 pmboxq->mbox_cmpl = lpfc_sli_wake_mbox_wait;
7558 /* setup context field to pass wait_queue pointer to wake function */
7559 pmboxq->context1 = &done_q;
7560
dea3101e
JB
7561 /* now issue the command */
7562 retval = lpfc_sli_issue_mbox(phba, pmboxq, MBX_NOWAIT);
7563
7564 if (retval == MBX_BUSY || retval == MBX_SUCCESS) {
7054a606
JS
7565 wait_event_interruptible_timeout(done_q,
7566 pmboxq->mbox_flag & LPFC_MBX_WAKE,
7567 timeout * HZ);
7568
858c9f6c 7569 spin_lock_irqsave(&phba->hbalock, flag);
dea3101e 7570 pmboxq->context1 = NULL;
7054a606
JS
7571 /*
7572 * if LPFC_MBX_WAKE flag is set the mailbox is completed
7573 * else do not free the resources.
7574 */
7575 if (pmboxq->mbox_flag & LPFC_MBX_WAKE)
dea3101e 7576 retval = MBX_SUCCESS;
858c9f6c 7577 else {
7054a606 7578 retval = MBX_TIMEOUT;
858c9f6c
JS
7579 pmboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
7580 }
7581 spin_unlock_irqrestore(&phba->hbalock, flag);
dea3101e
JB
7582 }
7583
dea3101e
JB
7584 return retval;
7585}
7586
e59058c4 7587/**
3772a991 7588 * lpfc_sli_mbox_sys_shutdown - shutdown mailbox command sub-system
e59058c4
JS
7589 * @phba: Pointer to HBA context.
7590 *
3772a991
JS
7591 * This function is called to shutdown the driver's mailbox sub-system.
7592 * It first marks the mailbox sub-system is in a block state to prevent
7593 * the asynchronous mailbox command from issued off the pending mailbox
7594 * command queue. If the mailbox command sub-system shutdown is due to
7595 * HBA error conditions such as EEH or ERATT, this routine shall invoke
7596 * the mailbox sub-system flush routine to forcefully bring down the
7597 * mailbox sub-system. Otherwise, if it is due to normal condition (such
7598 * as with offline or HBA function reset), this routine will wait for the
7599 * outstanding mailbox command to complete before invoking the mailbox
7600 * sub-system flush routine to gracefully bring down mailbox sub-system.
e59058c4 7601 **/
3772a991
JS
7602void
7603lpfc_sli_mbox_sys_shutdown(struct lpfc_hba *phba)
b4c02652 7604{
3772a991
JS
7605 struct lpfc_sli *psli = &phba->sli;
7606 uint8_t actcmd = MBX_HEARTBEAT;
7607 unsigned long timeout;
b4c02652 7608
3772a991
JS
7609 spin_lock_irq(&phba->hbalock);
7610 psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
7611 spin_unlock_irq(&phba->hbalock);
b4c02652 7612
3772a991 7613 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
ed957684 7614 spin_lock_irq(&phba->hbalock);
3772a991
JS
7615 if (phba->sli.mbox_active)
7616 actcmd = phba->sli.mbox_active->u.mb.mbxCommand;
ed957684 7617 spin_unlock_irq(&phba->hbalock);
3772a991
JS
7618 /* Determine how long we might wait for the active mailbox
7619 * command to be gracefully completed by firmware.
7620 */
7621 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, actcmd) *
7622 1000) + jiffies;
7623 while (phba->sli.mbox_active) {
7624 /* Check active mailbox complete status every 2ms */
7625 msleep(2);
7626 if (time_after(jiffies, timeout))
7627 /* Timeout, let the mailbox flush routine to
7628 * forcefully release active mailbox command
7629 */
7630 break;
7631 }
7632 }
7633 lpfc_sli_mbox_sys_flush(phba);
7634}
ed957684 7635
3772a991
JS
7636/**
7637 * lpfc_sli_eratt_read - read sli-3 error attention events
7638 * @phba: Pointer to HBA context.
7639 *
7640 * This function is called to read the SLI3 device error attention registers
7641 * for possible error attention events. The caller must hold the hostlock
7642 * with spin_lock_irq().
7643 *
7644 * This fucntion returns 1 when there is Error Attention in the Host Attention
7645 * Register and returns 0 otherwise.
7646 **/
7647static int
7648lpfc_sli_eratt_read(struct lpfc_hba *phba)
7649{
7650 uint32_t ha_copy;
b4c02652 7651
3772a991
JS
7652 /* Read chip Host Attention (HA) register */
7653 ha_copy = readl(phba->HAregaddr);
7654 if (ha_copy & HA_ERATT) {
7655 /* Read host status register to retrieve error event */
7656 lpfc_sli_read_hs(phba);
b4c02652 7657
3772a991
JS
7658 /* Check if there is a deferred error condition is active */
7659 if ((HS_FFER1 & phba->work_hs) &&
7660 ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
7661 HS_FFER6 | HS_FFER7) & phba->work_hs)) {
3772a991 7662 phba->hba_flag |= DEFER_ERATT;
3772a991
JS
7663 /* Clear all interrupt enable conditions */
7664 writel(0, phba->HCregaddr);
7665 readl(phba->HCregaddr);
7666 }
7667
7668 /* Set the driver HA work bitmap */
3772a991
JS
7669 phba->work_ha |= HA_ERATT;
7670 /* Indicate polling handles this ERATT */
7671 phba->hba_flag |= HBA_ERATT_HANDLED;
3772a991
JS
7672 return 1;
7673 }
7674 return 0;
b4c02652
JS
7675}
7676
da0436e9
JS
7677/**
7678 * lpfc_sli4_eratt_read - read sli-4 error attention events
7679 * @phba: Pointer to HBA context.
7680 *
7681 * This function is called to read the SLI4 device error attention registers
7682 * for possible error attention events. The caller must hold the hostlock
7683 * with spin_lock_irq().
7684 *
7685 * This fucntion returns 1 when there is Error Attention in the Host Attention
7686 * Register and returns 0 otherwise.
7687 **/
7688static int
7689lpfc_sli4_eratt_read(struct lpfc_hba *phba)
7690{
7691 uint32_t uerr_sta_hi, uerr_sta_lo;
da0436e9
JS
7692
7693 /* For now, use the SLI4 device internal unrecoverable error
7694 * registers for error attention. This can be changed later.
7695 */
a747c9ce
JS
7696 uerr_sta_lo = readl(phba->sli4_hba.UERRLOregaddr);
7697 uerr_sta_hi = readl(phba->sli4_hba.UERRHIregaddr);
7698 if ((~phba->sli4_hba.ue_mask_lo & uerr_sta_lo) ||
7699 (~phba->sli4_hba.ue_mask_hi & uerr_sta_hi)) {
7700 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7701 "1423 HBA Unrecoverable error: "
7702 "uerr_lo_reg=0x%x, uerr_hi_reg=0x%x, "
7703 "ue_mask_lo_reg=0x%x, ue_mask_hi_reg=0x%x\n",
7704 uerr_sta_lo, uerr_sta_hi,
7705 phba->sli4_hba.ue_mask_lo,
7706 phba->sli4_hba.ue_mask_hi);
7707 phba->work_status[0] = uerr_sta_lo;
7708 phba->work_status[1] = uerr_sta_hi;
7709 /* Set the driver HA work bitmap */
7710 phba->work_ha |= HA_ERATT;
7711 /* Indicate polling handles this ERATT */
7712 phba->hba_flag |= HBA_ERATT_HANDLED;
7713 return 1;
da0436e9
JS
7714 }
7715 return 0;
7716}
7717
e59058c4 7718/**
3621a710 7719 * lpfc_sli_check_eratt - check error attention events
9399627f
JS
7720 * @phba: Pointer to HBA context.
7721 *
3772a991 7722 * This function is called from timer soft interrupt context to check HBA's
9399627f
JS
7723 * error attention register bit for error attention events.
7724 *
7725 * This fucntion returns 1 when there is Error Attention in the Host Attention
7726 * Register and returns 0 otherwise.
7727 **/
7728int
7729lpfc_sli_check_eratt(struct lpfc_hba *phba)
7730{
7731 uint32_t ha_copy;
7732
7733 /* If somebody is waiting to handle an eratt, don't process it
7734 * here. The brdkill function will do this.
7735 */
7736 if (phba->link_flag & LS_IGNORE_ERATT)
7737 return 0;
7738
7739 /* Check if interrupt handler handles this ERATT */
7740 spin_lock_irq(&phba->hbalock);
7741 if (phba->hba_flag & HBA_ERATT_HANDLED) {
7742 /* Interrupt handler has handled ERATT */
7743 spin_unlock_irq(&phba->hbalock);
7744 return 0;
7745 }
7746
a257bf90
JS
7747 /*
7748 * If there is deferred error attention, do not check for error
7749 * attention
7750 */
7751 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
7752 spin_unlock_irq(&phba->hbalock);
7753 return 0;
7754 }
7755
3772a991
JS
7756 /* If PCI channel is offline, don't process it */
7757 if (unlikely(pci_channel_offline(phba->pcidev))) {
9399627f 7758 spin_unlock_irq(&phba->hbalock);
3772a991
JS
7759 return 0;
7760 }
7761
7762 switch (phba->sli_rev) {
7763 case LPFC_SLI_REV2:
7764 case LPFC_SLI_REV3:
7765 /* Read chip Host Attention (HA) register */
7766 ha_copy = lpfc_sli_eratt_read(phba);
7767 break;
da0436e9
JS
7768 case LPFC_SLI_REV4:
7769 /* Read devcie Uncoverable Error (UERR) registers */
7770 ha_copy = lpfc_sli4_eratt_read(phba);
7771 break;
3772a991
JS
7772 default:
7773 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7774 "0299 Invalid SLI revision (%d)\n",
7775 phba->sli_rev);
7776 ha_copy = 0;
7777 break;
9399627f
JS
7778 }
7779 spin_unlock_irq(&phba->hbalock);
3772a991
JS
7780
7781 return ha_copy;
7782}
7783
7784/**
7785 * lpfc_intr_state_check - Check device state for interrupt handling
7786 * @phba: Pointer to HBA context.
7787 *
7788 * This inline routine checks whether a device or its PCI slot is in a state
7789 * that the interrupt should be handled.
7790 *
7791 * This function returns 0 if the device or the PCI slot is in a state that
7792 * interrupt should be handled, otherwise -EIO.
7793 */
7794static inline int
7795lpfc_intr_state_check(struct lpfc_hba *phba)
7796{
7797 /* If the pci channel is offline, ignore all the interrupts */
7798 if (unlikely(pci_channel_offline(phba->pcidev)))
7799 return -EIO;
7800
7801 /* Update device level interrupt statistics */
7802 phba->sli.slistat.sli_intr++;
7803
7804 /* Ignore all interrupts during initialization. */
7805 if (unlikely(phba->link_state < LPFC_LINK_DOWN))
7806 return -EIO;
7807
9399627f
JS
7808 return 0;
7809}
7810
7811/**
3772a991 7812 * lpfc_sli_sp_intr_handler - Slow-path interrupt handler to SLI-3 device
e59058c4
JS
7813 * @irq: Interrupt number.
7814 * @dev_id: The device context pointer.
7815 *
9399627f 7816 * This function is directly called from the PCI layer as an interrupt
3772a991
JS
7817 * service routine when device with SLI-3 interface spec is enabled with
7818 * MSI-X multi-message interrupt mode and there are slow-path events in
7819 * the HBA. However, when the device is enabled with either MSI or Pin-IRQ
7820 * interrupt mode, this function is called as part of the device-level
7821 * interrupt handler. When the PCI slot is in error recovery or the HBA
7822 * is undergoing initialization, the interrupt handler will not process
7823 * the interrupt. The link attention and ELS ring attention events are
7824 * handled by the worker thread. The interrupt handler signals the worker
7825 * thread and returns for these events. This function is called without
7826 * any lock held. It gets the hbalock to access and update SLI data
9399627f
JS
7827 * structures.
7828 *
7829 * This function returns IRQ_HANDLED when interrupt is handled else it
7830 * returns IRQ_NONE.
e59058c4 7831 **/
dea3101e 7832irqreturn_t
3772a991 7833lpfc_sli_sp_intr_handler(int irq, void *dev_id)
dea3101e 7834{
2e0fef85 7835 struct lpfc_hba *phba;
a747c9ce 7836 uint32_t ha_copy, hc_copy;
dea3101e
JB
7837 uint32_t work_ha_copy;
7838 unsigned long status;
5b75da2f 7839 unsigned long iflag;
dea3101e
JB
7840 uint32_t control;
7841
92d7f7b0 7842 MAILBOX_t *mbox, *pmbox;
858c9f6c
JS
7843 struct lpfc_vport *vport;
7844 struct lpfc_nodelist *ndlp;
7845 struct lpfc_dmabuf *mp;
92d7f7b0
JS
7846 LPFC_MBOXQ_t *pmb;
7847 int rc;
7848
dea3101e
JB
7849 /*
7850 * Get the driver's phba structure from the dev_id and
7851 * assume the HBA is not interrupting.
7852 */
9399627f 7853 phba = (struct lpfc_hba *)dev_id;
dea3101e
JB
7854
7855 if (unlikely(!phba))
7856 return IRQ_NONE;
7857
dea3101e 7858 /*
9399627f
JS
7859 * Stuff needs to be attented to when this function is invoked as an
7860 * individual interrupt handler in MSI-X multi-message interrupt mode
dea3101e 7861 */
9399627f 7862 if (phba->intr_type == MSIX) {
3772a991
JS
7863 /* Check device state for handling interrupt */
7864 if (lpfc_intr_state_check(phba))
9399627f
JS
7865 return IRQ_NONE;
7866 /* Need to read HA REG for slow-path events */
5b75da2f 7867 spin_lock_irqsave(&phba->hbalock, iflag);
34b02dcd 7868 ha_copy = readl(phba->HAregaddr);
9399627f
JS
7869 /* If somebody is waiting to handle an eratt don't process it
7870 * here. The brdkill function will do this.
7871 */
7872 if (phba->link_flag & LS_IGNORE_ERATT)
7873 ha_copy &= ~HA_ERATT;
7874 /* Check the need for handling ERATT in interrupt handler */
7875 if (ha_copy & HA_ERATT) {
7876 if (phba->hba_flag & HBA_ERATT_HANDLED)
7877 /* ERATT polling has handled ERATT */
7878 ha_copy &= ~HA_ERATT;
7879 else
7880 /* Indicate interrupt handler handles ERATT */
7881 phba->hba_flag |= HBA_ERATT_HANDLED;
7882 }
a257bf90
JS
7883
7884 /*
7885 * If there is deferred error attention, do not check for any
7886 * interrupt.
7887 */
7888 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
3772a991 7889 spin_unlock_irqrestore(&phba->hbalock, iflag);
a257bf90
JS
7890 return IRQ_NONE;
7891 }
7892
9399627f 7893 /* Clear up only attention source related to slow-path */
a747c9ce
JS
7894 hc_copy = readl(phba->HCregaddr);
7895 writel(hc_copy & ~(HC_MBINT_ENA | HC_R2INT_ENA |
7896 HC_LAINT_ENA | HC_ERINT_ENA),
7897 phba->HCregaddr);
9399627f
JS
7898 writel((ha_copy & (HA_MBATT | HA_R2_CLR_MSK)),
7899 phba->HAregaddr);
a747c9ce 7900 writel(hc_copy, phba->HCregaddr);
9399627f 7901 readl(phba->HAregaddr); /* flush */
5b75da2f 7902 spin_unlock_irqrestore(&phba->hbalock, iflag);
9399627f
JS
7903 } else
7904 ha_copy = phba->ha_copy;
dea3101e 7905
dea3101e
JB
7906 work_ha_copy = ha_copy & phba->work_ha_mask;
7907
9399627f 7908 if (work_ha_copy) {
dea3101e
JB
7909 if (work_ha_copy & HA_LATT) {
7910 if (phba->sli.sli_flag & LPFC_PROCESS_LA) {
7911 /*
7912 * Turn off Link Attention interrupts
7913 * until CLEAR_LA done
7914 */
5b75da2f 7915 spin_lock_irqsave(&phba->hbalock, iflag);
dea3101e
JB
7916 phba->sli.sli_flag &= ~LPFC_PROCESS_LA;
7917 control = readl(phba->HCregaddr);
7918 control &= ~HC_LAINT_ENA;
7919 writel(control, phba->HCregaddr);
7920 readl(phba->HCregaddr); /* flush */
5b75da2f 7921 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea3101e
JB
7922 }
7923 else
7924 work_ha_copy &= ~HA_LATT;
7925 }
7926
9399627f 7927 if (work_ha_copy & ~(HA_ERATT | HA_MBATT | HA_LATT)) {
858c9f6c
JS
7928 /*
7929 * Turn off Slow Rings interrupts, LPFC_ELS_RING is
7930 * the only slow ring.
7931 */
7932 status = (work_ha_copy &
7933 (HA_RXMASK << (4*LPFC_ELS_RING)));
7934 status >>= (4*LPFC_ELS_RING);
7935 if (status & HA_RXMASK) {
5b75da2f 7936 spin_lock_irqsave(&phba->hbalock, iflag);
858c9f6c 7937 control = readl(phba->HCregaddr);
a58cbd52
JS
7938
7939 lpfc_debugfs_slow_ring_trc(phba,
7940 "ISR slow ring: ctl:x%x stat:x%x isrcnt:x%x",
7941 control, status,
7942 (uint32_t)phba->sli.slistat.sli_intr);
7943
858c9f6c 7944 if (control & (HC_R0INT_ENA << LPFC_ELS_RING)) {
a58cbd52
JS
7945 lpfc_debugfs_slow_ring_trc(phba,
7946 "ISR Disable ring:"
7947 "pwork:x%x hawork:x%x wait:x%x",
7948 phba->work_ha, work_ha_copy,
7949 (uint32_t)((unsigned long)
5e9d9b82 7950 &phba->work_waitq));
a58cbd52 7951
858c9f6c
JS
7952 control &=
7953 ~(HC_R0INT_ENA << LPFC_ELS_RING);
dea3101e
JB
7954 writel(control, phba->HCregaddr);
7955 readl(phba->HCregaddr); /* flush */
dea3101e 7956 }
a58cbd52
JS
7957 else {
7958 lpfc_debugfs_slow_ring_trc(phba,
7959 "ISR slow ring: pwork:"
7960 "x%x hawork:x%x wait:x%x",
7961 phba->work_ha, work_ha_copy,
7962 (uint32_t)((unsigned long)
5e9d9b82 7963 &phba->work_waitq));
a58cbd52 7964 }
5b75da2f 7965 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea3101e
JB
7966 }
7967 }
5b75da2f 7968 spin_lock_irqsave(&phba->hbalock, iflag);
a257bf90 7969 if (work_ha_copy & HA_ERATT) {
9399627f 7970 lpfc_sli_read_hs(phba);
a257bf90
JS
7971 /*
7972 * Check if there is a deferred error condition
7973 * is active
7974 */
7975 if ((HS_FFER1 & phba->work_hs) &&
7976 ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
7977 HS_FFER6 | HS_FFER7) & phba->work_hs)) {
7978 phba->hba_flag |= DEFER_ERATT;
7979 /* Clear all interrupt enable conditions */
7980 writel(0, phba->HCregaddr);
7981 readl(phba->HCregaddr);
7982 }
7983 }
7984
9399627f 7985 if ((work_ha_copy & HA_MBATT) && (phba->sli.mbox_active)) {
92d7f7b0 7986 pmb = phba->sli.mbox_active;
04c68496 7987 pmbox = &pmb->u.mb;
34b02dcd 7988 mbox = phba->mbox;
858c9f6c 7989 vport = pmb->vport;
92d7f7b0
JS
7990
7991 /* First check out the status word */
7992 lpfc_sli_pcimem_bcopy(mbox, pmbox, sizeof(uint32_t));
7993 if (pmbox->mbxOwner != OWN_HOST) {
5b75da2f 7994 spin_unlock_irqrestore(&phba->hbalock, iflag);
92d7f7b0
JS
7995 /*
7996 * Stray Mailbox Interrupt, mbxCommand <cmd>
7997 * mbxStatus <status>
7998 */
09372820 7999 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
92d7f7b0 8000 LOG_SLI,
e8b62011 8001 "(%d):0304 Stray Mailbox "
92d7f7b0
JS
8002 "Interrupt mbxCommand x%x "
8003 "mbxStatus x%x\n",
e8b62011 8004 (vport ? vport->vpi : 0),
92d7f7b0
JS
8005 pmbox->mbxCommand,
8006 pmbox->mbxStatus);
09372820
JS
8007 /* clear mailbox attention bit */
8008 work_ha_copy &= ~HA_MBATT;
8009 } else {
97eab634 8010 phba->sli.mbox_active = NULL;
5b75da2f 8011 spin_unlock_irqrestore(&phba->hbalock, iflag);
09372820
JS
8012 phba->last_completion_time = jiffies;
8013 del_timer(&phba->sli.mbox_tmo);
09372820
JS
8014 if (pmb->mbox_cmpl) {
8015 lpfc_sli_pcimem_bcopy(mbox, pmbox,
8016 MAILBOX_CMD_SIZE);
8017 }
8018 if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
8019 pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
8020
8021 lpfc_debugfs_disc_trc(vport,
8022 LPFC_DISC_TRC_MBOX_VPORT,
8023 "MBOX dflt rpi: : "
8024 "status:x%x rpi:x%x",
8025 (uint32_t)pmbox->mbxStatus,
8026 pmbox->un.varWords[0], 0);
8027
8028 if (!pmbox->mbxStatus) {
8029 mp = (struct lpfc_dmabuf *)
8030 (pmb->context1);
8031 ndlp = (struct lpfc_nodelist *)
8032 pmb->context2;
8033
8034 /* Reg_LOGIN of dflt RPI was
8035 * successful. new lets get
8036 * rid of the RPI using the
8037 * same mbox buffer.
8038 */
8039 lpfc_unreg_login(phba,
8040 vport->vpi,
8041 pmbox->un.varWords[0],
8042 pmb);
8043 pmb->mbox_cmpl =
8044 lpfc_mbx_cmpl_dflt_rpi;
8045 pmb->context1 = mp;
8046 pmb->context2 = ndlp;
8047 pmb->vport = vport;
58da1ffb
JS
8048 rc = lpfc_sli_issue_mbox(phba,
8049 pmb,
8050 MBX_NOWAIT);
8051 if (rc != MBX_BUSY)
8052 lpfc_printf_log(phba,
8053 KERN_ERR,
8054 LOG_MBOX | LOG_SLI,
d7c255b2 8055 "0350 rc should have"
6a9c52cf 8056 "been MBX_BUSY\n");
3772a991
JS
8057 if (rc != MBX_NOT_FINISHED)
8058 goto send_current_mbox;
09372820 8059 }
858c9f6c 8060 }
5b75da2f
JS
8061 spin_lock_irqsave(
8062 &phba->pport->work_port_lock,
8063 iflag);
09372820
JS
8064 phba->pport->work_port_events &=
8065 ~WORKER_MBOX_TMO;
5b75da2f
JS
8066 spin_unlock_irqrestore(
8067 &phba->pport->work_port_lock,
8068 iflag);
09372820 8069 lpfc_mbox_cmpl_put(phba, pmb);
858c9f6c 8070 }
97eab634 8071 } else
5b75da2f 8072 spin_unlock_irqrestore(&phba->hbalock, iflag);
9399627f 8073
92d7f7b0
JS
8074 if ((work_ha_copy & HA_MBATT) &&
8075 (phba->sli.mbox_active == NULL)) {
858c9f6c 8076send_current_mbox:
92d7f7b0 8077 /* Process next mailbox command if there is one */
58da1ffb
JS
8078 do {
8079 rc = lpfc_sli_issue_mbox(phba, NULL,
8080 MBX_NOWAIT);
8081 } while (rc == MBX_NOT_FINISHED);
8082 if (rc != MBX_SUCCESS)
8083 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
8084 LOG_SLI, "0349 rc should be "
6a9c52cf 8085 "MBX_SUCCESS\n");
92d7f7b0
JS
8086 }
8087
5b75da2f 8088 spin_lock_irqsave(&phba->hbalock, iflag);
dea3101e 8089 phba->work_ha |= work_ha_copy;
5b75da2f 8090 spin_unlock_irqrestore(&phba->hbalock, iflag);
5e9d9b82 8091 lpfc_worker_wake_up(phba);
dea3101e 8092 }
9399627f 8093 return IRQ_HANDLED;
dea3101e 8094
3772a991 8095} /* lpfc_sli_sp_intr_handler */
9399627f
JS
8096
8097/**
3772a991 8098 * lpfc_sli_fp_intr_handler - Fast-path interrupt handler to SLI-3 device.
9399627f
JS
8099 * @irq: Interrupt number.
8100 * @dev_id: The device context pointer.
8101 *
8102 * This function is directly called from the PCI layer as an interrupt
3772a991
JS
8103 * service routine when device with SLI-3 interface spec is enabled with
8104 * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
8105 * ring event in the HBA. However, when the device is enabled with either
8106 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
8107 * device-level interrupt handler. When the PCI slot is in error recovery
8108 * or the HBA is undergoing initialization, the interrupt handler will not
8109 * process the interrupt. The SCSI FCP fast-path ring event are handled in
8110 * the intrrupt context. This function is called without any lock held.
8111 * It gets the hbalock to access and update SLI data structures.
9399627f
JS
8112 *
8113 * This function returns IRQ_HANDLED when interrupt is handled else it
8114 * returns IRQ_NONE.
8115 **/
8116irqreturn_t
3772a991 8117lpfc_sli_fp_intr_handler(int irq, void *dev_id)
9399627f
JS
8118{
8119 struct lpfc_hba *phba;
8120 uint32_t ha_copy;
8121 unsigned long status;
5b75da2f 8122 unsigned long iflag;
9399627f
JS
8123
8124 /* Get the driver's phba structure from the dev_id and
8125 * assume the HBA is not interrupting.
8126 */
8127 phba = (struct lpfc_hba *) dev_id;
8128
8129 if (unlikely(!phba))
8130 return IRQ_NONE;
8131
8132 /*
8133 * Stuff needs to be attented to when this function is invoked as an
8134 * individual interrupt handler in MSI-X multi-message interrupt mode
8135 */
8136 if (phba->intr_type == MSIX) {
3772a991
JS
8137 /* Check device state for handling interrupt */
8138 if (lpfc_intr_state_check(phba))
9399627f
JS
8139 return IRQ_NONE;
8140 /* Need to read HA REG for FCP ring and other ring events */
8141 ha_copy = readl(phba->HAregaddr);
8142 /* Clear up only attention source related to fast-path */
5b75da2f 8143 spin_lock_irqsave(&phba->hbalock, iflag);
a257bf90
JS
8144 /*
8145 * If there is deferred error attention, do not check for
8146 * any interrupt.
8147 */
8148 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
3772a991 8149 spin_unlock_irqrestore(&phba->hbalock, iflag);
a257bf90
JS
8150 return IRQ_NONE;
8151 }
9399627f
JS
8152 writel((ha_copy & (HA_R0_CLR_MSK | HA_R1_CLR_MSK)),
8153 phba->HAregaddr);
8154 readl(phba->HAregaddr); /* flush */
5b75da2f 8155 spin_unlock_irqrestore(&phba->hbalock, iflag);
9399627f
JS
8156 } else
8157 ha_copy = phba->ha_copy;
dea3101e
JB
8158
8159 /*
9399627f 8160 * Process all events on FCP ring. Take the optimized path for FCP IO.
dea3101e 8161 */
9399627f
JS
8162 ha_copy &= ~(phba->work_ha_mask);
8163
8164 status = (ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
dea3101e 8165 status >>= (4*LPFC_FCP_RING);
858c9f6c 8166 if (status & HA_RXMASK)
dea3101e
JB
8167 lpfc_sli_handle_fast_ring_event(phba,
8168 &phba->sli.ring[LPFC_FCP_RING],
8169 status);
a4bc3379
JS
8170
8171 if (phba->cfg_multi_ring_support == 2) {
8172 /*
9399627f
JS
8173 * Process all events on extra ring. Take the optimized path
8174 * for extra ring IO.
a4bc3379 8175 */
9399627f 8176 status = (ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
a4bc3379 8177 status >>= (4*LPFC_EXTRA_RING);
858c9f6c 8178 if (status & HA_RXMASK) {
a4bc3379
JS
8179 lpfc_sli_handle_fast_ring_event(phba,
8180 &phba->sli.ring[LPFC_EXTRA_RING],
8181 status);
8182 }
8183 }
dea3101e 8184 return IRQ_HANDLED;
3772a991 8185} /* lpfc_sli_fp_intr_handler */
9399627f
JS
8186
8187/**
3772a991 8188 * lpfc_sli_intr_handler - Device-level interrupt handler to SLI-3 device
9399627f
JS
8189 * @irq: Interrupt number.
8190 * @dev_id: The device context pointer.
8191 *
3772a991
JS
8192 * This function is the HBA device-level interrupt handler to device with
8193 * SLI-3 interface spec, called from the PCI layer when either MSI or
8194 * Pin-IRQ interrupt mode is enabled and there is an event in the HBA which
8195 * requires driver attention. This function invokes the slow-path interrupt
8196 * attention handling function and fast-path interrupt attention handling
8197 * function in turn to process the relevant HBA attention events. This
8198 * function is called without any lock held. It gets the hbalock to access
8199 * and update SLI data structures.
9399627f
JS
8200 *
8201 * This function returns IRQ_HANDLED when interrupt is handled, else it
8202 * returns IRQ_NONE.
8203 **/
8204irqreturn_t
3772a991 8205lpfc_sli_intr_handler(int irq, void *dev_id)
9399627f
JS
8206{
8207 struct lpfc_hba *phba;
8208 irqreturn_t sp_irq_rc, fp_irq_rc;
8209 unsigned long status1, status2;
a747c9ce 8210 uint32_t hc_copy;
9399627f
JS
8211
8212 /*
8213 * Get the driver's phba structure from the dev_id and
8214 * assume the HBA is not interrupting.
8215 */
8216 phba = (struct lpfc_hba *) dev_id;
8217
8218 if (unlikely(!phba))
8219 return IRQ_NONE;
8220
3772a991
JS
8221 /* Check device state for handling interrupt */
8222 if (lpfc_intr_state_check(phba))
9399627f
JS
8223 return IRQ_NONE;
8224
8225 spin_lock(&phba->hbalock);
8226 phba->ha_copy = readl(phba->HAregaddr);
8227 if (unlikely(!phba->ha_copy)) {
8228 spin_unlock(&phba->hbalock);
8229 return IRQ_NONE;
8230 } else if (phba->ha_copy & HA_ERATT) {
8231 if (phba->hba_flag & HBA_ERATT_HANDLED)
8232 /* ERATT polling has handled ERATT */
8233 phba->ha_copy &= ~HA_ERATT;
8234 else
8235 /* Indicate interrupt handler handles ERATT */
8236 phba->hba_flag |= HBA_ERATT_HANDLED;
8237 }
8238
a257bf90
JS
8239 /*
8240 * If there is deferred error attention, do not check for any interrupt.
8241 */
8242 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
8243 spin_unlock_irq(&phba->hbalock);
8244 return IRQ_NONE;
8245 }
8246
9399627f 8247 /* Clear attention sources except link and error attentions */
a747c9ce
JS
8248 hc_copy = readl(phba->HCregaddr);
8249 writel(hc_copy & ~(HC_MBINT_ENA | HC_R0INT_ENA | HC_R1INT_ENA
8250 | HC_R2INT_ENA | HC_LAINT_ENA | HC_ERINT_ENA),
8251 phba->HCregaddr);
9399627f 8252 writel((phba->ha_copy & ~(HA_LATT | HA_ERATT)), phba->HAregaddr);
a747c9ce 8253 writel(hc_copy, phba->HCregaddr);
9399627f
JS
8254 readl(phba->HAregaddr); /* flush */
8255 spin_unlock(&phba->hbalock);
8256
8257 /*
8258 * Invokes slow-path host attention interrupt handling as appropriate.
8259 */
8260
8261 /* status of events with mailbox and link attention */
8262 status1 = phba->ha_copy & (HA_MBATT | HA_LATT | HA_ERATT);
8263
8264 /* status of events with ELS ring */
8265 status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_ELS_RING)));
8266 status2 >>= (4*LPFC_ELS_RING);
8267
8268 if (status1 || (status2 & HA_RXMASK))
3772a991 8269 sp_irq_rc = lpfc_sli_sp_intr_handler(irq, dev_id);
9399627f
JS
8270 else
8271 sp_irq_rc = IRQ_NONE;
8272
8273 /*
8274 * Invoke fast-path host attention interrupt handling as appropriate.
8275 */
8276
8277 /* status of events with FCP ring */
8278 status1 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
8279 status1 >>= (4*LPFC_FCP_RING);
8280
8281 /* status of events with extra ring */
8282 if (phba->cfg_multi_ring_support == 2) {
8283 status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
8284 status2 >>= (4*LPFC_EXTRA_RING);
8285 } else
8286 status2 = 0;
8287
8288 if ((status1 & HA_RXMASK) || (status2 & HA_RXMASK))
3772a991 8289 fp_irq_rc = lpfc_sli_fp_intr_handler(irq, dev_id);
9399627f
JS
8290 else
8291 fp_irq_rc = IRQ_NONE;
dea3101e 8292
9399627f
JS
8293 /* Return device-level interrupt handling status */
8294 return (sp_irq_rc == IRQ_HANDLED) ? sp_irq_rc : fp_irq_rc;
3772a991 8295} /* lpfc_sli_intr_handler */
4f774513
JS
8296
8297/**
8298 * lpfc_sli4_fcp_xri_abort_event_proc - Process fcp xri abort event
8299 * @phba: pointer to lpfc hba data structure.
8300 *
8301 * This routine is invoked by the worker thread to process all the pending
8302 * SLI4 FCP abort XRI events.
8303 **/
8304void lpfc_sli4_fcp_xri_abort_event_proc(struct lpfc_hba *phba)
8305{
8306 struct lpfc_cq_event *cq_event;
8307
8308 /* First, declare the fcp xri abort event has been handled */
8309 spin_lock_irq(&phba->hbalock);
8310 phba->hba_flag &= ~FCP_XRI_ABORT_EVENT;
8311 spin_unlock_irq(&phba->hbalock);
8312 /* Now, handle all the fcp xri abort events */
8313 while (!list_empty(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue)) {
8314 /* Get the first event from the head of the event queue */
8315 spin_lock_irq(&phba->hbalock);
8316 list_remove_head(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue,
8317 cq_event, struct lpfc_cq_event, list);
8318 spin_unlock_irq(&phba->hbalock);
8319 /* Notify aborted XRI for FCP work queue */
8320 lpfc_sli4_fcp_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
8321 /* Free the event processed back to the free pool */
8322 lpfc_sli4_cq_event_release(phba, cq_event);
8323 }
8324}
8325
8326/**
8327 * lpfc_sli4_els_xri_abort_event_proc - Process els xri abort event
8328 * @phba: pointer to lpfc hba data structure.
8329 *
8330 * This routine is invoked by the worker thread to process all the pending
8331 * SLI4 els abort xri events.
8332 **/
8333void lpfc_sli4_els_xri_abort_event_proc(struct lpfc_hba *phba)
8334{
8335 struct lpfc_cq_event *cq_event;
8336
8337 /* First, declare the els xri abort event has been handled */
8338 spin_lock_irq(&phba->hbalock);
8339 phba->hba_flag &= ~ELS_XRI_ABORT_EVENT;
8340 spin_unlock_irq(&phba->hbalock);
8341 /* Now, handle all the els xri abort events */
8342 while (!list_empty(&phba->sli4_hba.sp_els_xri_aborted_work_queue)) {
8343 /* Get the first event from the head of the event queue */
8344 spin_lock_irq(&phba->hbalock);
8345 list_remove_head(&phba->sli4_hba.sp_els_xri_aborted_work_queue,
8346 cq_event, struct lpfc_cq_event, list);
8347 spin_unlock_irq(&phba->hbalock);
8348 /* Notify aborted XRI for ELS work queue */
8349 lpfc_sli4_els_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
8350 /* Free the event processed back to the free pool */
8351 lpfc_sli4_cq_event_release(phba, cq_event);
8352 }
8353}
8354
8355static void
8356lpfc_sli4_iocb_param_transfer(struct lpfc_iocbq *pIocbIn,
8357 struct lpfc_iocbq *pIocbOut,
8358 struct lpfc_wcqe_complete *wcqe)
8359{
8360 size_t offset = offsetof(struct lpfc_iocbq, iocb);
8361
8362 memcpy((char *)pIocbIn + offset, (char *)pIocbOut + offset,
8363 sizeof(struct lpfc_iocbq) - offset);
4f774513
JS
8364 /* Map WCQE parameters into irspiocb parameters */
8365 pIocbIn->iocb.ulpStatus = bf_get(lpfc_wcqe_c_status, wcqe);
8366 if (pIocbOut->iocb_flag & LPFC_IO_FCP)
8367 if (pIocbIn->iocb.ulpStatus == IOSTAT_FCP_RSP_ERROR)
8368 pIocbIn->iocb.un.fcpi.fcpi_parm =
8369 pIocbOut->iocb.un.fcpi.fcpi_parm -
8370 wcqe->total_data_placed;
8371 else
8372 pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
8373 else
8374 pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
4f774513
JS
8375}
8376
45ed1190
JS
8377/**
8378 * lpfc_sli4_els_wcqe_to_rspiocbq - Get response iocbq from els wcqe
8379 * @phba: Pointer to HBA context object.
8380 * @wcqe: Pointer to work-queue completion queue entry.
8381 *
8382 * This routine handles an ELS work-queue completion event and construct
8383 * a pseudo response ELS IODBQ from the SLI4 ELS WCQE for the common
8384 * discovery engine to handle.
8385 *
8386 * Return: Pointer to the receive IOCBQ, NULL otherwise.
8387 **/
8388static struct lpfc_iocbq *
8389lpfc_sli4_els_wcqe_to_rspiocbq(struct lpfc_hba *phba,
8390 struct lpfc_iocbq *irspiocbq)
8391{
8392 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
8393 struct lpfc_iocbq *cmdiocbq;
8394 struct lpfc_wcqe_complete *wcqe;
8395 unsigned long iflags;
8396
8397 wcqe = &irspiocbq->cq_event.cqe.wcqe_cmpl;
8398 spin_lock_irqsave(&phba->hbalock, iflags);
8399 pring->stats.iocb_event++;
8400 /* Look up the ELS command IOCB and create pseudo response IOCB */
8401 cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
8402 bf_get(lpfc_wcqe_c_request_tag, wcqe));
8403 spin_unlock_irqrestore(&phba->hbalock, iflags);
8404
8405 if (unlikely(!cmdiocbq)) {
8406 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
8407 "0386 ELS complete with no corresponding "
8408 "cmdiocb: iotag (%d)\n",
8409 bf_get(lpfc_wcqe_c_request_tag, wcqe));
8410 lpfc_sli_release_iocbq(phba, irspiocbq);
8411 return NULL;
8412 }
8413
8414 /* Fake the irspiocbq and copy necessary response information */
8415 lpfc_sli4_iocb_param_transfer(irspiocbq, cmdiocbq, wcqe);
8416
8417 return irspiocbq;
8418}
8419
04c68496
JS
8420/**
8421 * lpfc_sli4_sp_handle_async_event - Handle an asynchroous event
8422 * @phba: Pointer to HBA context object.
8423 * @cqe: Pointer to mailbox completion queue entry.
8424 *
8425 * This routine process a mailbox completion queue entry with asynchrous
8426 * event.
8427 *
8428 * Return: true if work posted to worker thread, otherwise false.
8429 **/
8430static bool
8431lpfc_sli4_sp_handle_async_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
8432{
8433 struct lpfc_cq_event *cq_event;
8434 unsigned long iflags;
8435
8436 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
8437 "0392 Async Event: word0:x%x, word1:x%x, "
8438 "word2:x%x, word3:x%x\n", mcqe->word0,
8439 mcqe->mcqe_tag0, mcqe->mcqe_tag1, mcqe->trailer);
8440
8441 /* Allocate a new internal CQ_EVENT entry */
8442 cq_event = lpfc_sli4_cq_event_alloc(phba);
8443 if (!cq_event) {
8444 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8445 "0394 Failed to allocate CQ_EVENT entry\n");
8446 return false;
8447 }
8448
8449 /* Move the CQE into an asynchronous event entry */
8450 memcpy(&cq_event->cqe, mcqe, sizeof(struct lpfc_mcqe));
8451 spin_lock_irqsave(&phba->hbalock, iflags);
8452 list_add_tail(&cq_event->list, &phba->sli4_hba.sp_asynce_work_queue);
8453 /* Set the async event flag */
8454 phba->hba_flag |= ASYNC_EVENT;
8455 spin_unlock_irqrestore(&phba->hbalock, iflags);
8456
8457 return true;
8458}
8459
8460/**
8461 * lpfc_sli4_sp_handle_mbox_event - Handle a mailbox completion event
8462 * @phba: Pointer to HBA context object.
8463 * @cqe: Pointer to mailbox completion queue entry.
8464 *
8465 * This routine process a mailbox completion queue entry with mailbox
8466 * completion event.
8467 *
8468 * Return: true if work posted to worker thread, otherwise false.
8469 **/
8470static bool
8471lpfc_sli4_sp_handle_mbox_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
8472{
8473 uint32_t mcqe_status;
8474 MAILBOX_t *mbox, *pmbox;
8475 struct lpfc_mqe *mqe;
8476 struct lpfc_vport *vport;
8477 struct lpfc_nodelist *ndlp;
8478 struct lpfc_dmabuf *mp;
8479 unsigned long iflags;
8480 LPFC_MBOXQ_t *pmb;
8481 bool workposted = false;
8482 int rc;
8483
8484 /* If not a mailbox complete MCQE, out by checking mailbox consume */
8485 if (!bf_get(lpfc_trailer_completed, mcqe))
8486 goto out_no_mqe_complete;
8487
8488 /* Get the reference to the active mbox command */
8489 spin_lock_irqsave(&phba->hbalock, iflags);
8490 pmb = phba->sli.mbox_active;
8491 if (unlikely(!pmb)) {
8492 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
8493 "1832 No pending MBOX command to handle\n");
8494 spin_unlock_irqrestore(&phba->hbalock, iflags);
8495 goto out_no_mqe_complete;
8496 }
8497 spin_unlock_irqrestore(&phba->hbalock, iflags);
8498 mqe = &pmb->u.mqe;
8499 pmbox = (MAILBOX_t *)&pmb->u.mqe;
8500 mbox = phba->mbox;
8501 vport = pmb->vport;
8502
8503 /* Reset heartbeat timer */
8504 phba->last_completion_time = jiffies;
8505 del_timer(&phba->sli.mbox_tmo);
8506
8507 /* Move mbox data to caller's mailbox region, do endian swapping */
8508 if (pmb->mbox_cmpl && mbox)
8509 lpfc_sli_pcimem_bcopy(mbox, mqe, sizeof(struct lpfc_mqe));
8510 /* Set the mailbox status with SLI4 range 0x4000 */
8511 mcqe_status = bf_get(lpfc_mcqe_status, mcqe);
8512 if (mcqe_status != MB_CQE_STATUS_SUCCESS)
8513 bf_set(lpfc_mqe_status, mqe,
8514 (LPFC_MBX_ERROR_RANGE | mcqe_status));
8515
8516 if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
8517 pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
8518 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_MBOX_VPORT,
8519 "MBOX dflt rpi: status:x%x rpi:x%x",
8520 mcqe_status,
8521 pmbox->un.varWords[0], 0);
8522 if (mcqe_status == MB_CQE_STATUS_SUCCESS) {
8523 mp = (struct lpfc_dmabuf *)(pmb->context1);
8524 ndlp = (struct lpfc_nodelist *)pmb->context2;
8525 /* Reg_LOGIN of dflt RPI was successful. Now lets get
8526 * RID of the PPI using the same mbox buffer.
8527 */
8528 lpfc_unreg_login(phba, vport->vpi,
8529 pmbox->un.varWords[0], pmb);
8530 pmb->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
8531 pmb->context1 = mp;
8532 pmb->context2 = ndlp;
8533 pmb->vport = vport;
8534 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
8535 if (rc != MBX_BUSY)
8536 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
8537 LOG_SLI, "0385 rc should "
8538 "have been MBX_BUSY\n");
8539 if (rc != MBX_NOT_FINISHED)
8540 goto send_current_mbox;
8541 }
8542 }
8543 spin_lock_irqsave(&phba->pport->work_port_lock, iflags);
8544 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
8545 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflags);
8546
8547 /* There is mailbox completion work to do */
8548 spin_lock_irqsave(&phba->hbalock, iflags);
8549 __lpfc_mbox_cmpl_put(phba, pmb);
8550 phba->work_ha |= HA_MBATT;
8551 spin_unlock_irqrestore(&phba->hbalock, iflags);
8552 workposted = true;
8553
8554send_current_mbox:
8555 spin_lock_irqsave(&phba->hbalock, iflags);
8556 /* Release the mailbox command posting token */
8557 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
8558 /* Setting active mailbox pointer need to be in sync to flag clear */
8559 phba->sli.mbox_active = NULL;
8560 spin_unlock_irqrestore(&phba->hbalock, iflags);
8561 /* Wake up worker thread to post the next pending mailbox command */
8562 lpfc_worker_wake_up(phba);
8563out_no_mqe_complete:
8564 if (bf_get(lpfc_trailer_consumed, mcqe))
8565 lpfc_sli4_mq_release(phba->sli4_hba.mbx_wq);
8566 return workposted;
8567}
8568
8569/**
8570 * lpfc_sli4_sp_handle_mcqe - Process a mailbox completion queue entry
8571 * @phba: Pointer to HBA context object.
8572 * @cqe: Pointer to mailbox completion queue entry.
8573 *
8574 * This routine process a mailbox completion queue entry, it invokes the
8575 * proper mailbox complete handling or asynchrous event handling routine
8576 * according to the MCQE's async bit.
8577 *
8578 * Return: true if work posted to worker thread, otherwise false.
8579 **/
8580static bool
8581lpfc_sli4_sp_handle_mcqe(struct lpfc_hba *phba, struct lpfc_cqe *cqe)
8582{
8583 struct lpfc_mcqe mcqe;
8584 bool workposted;
8585
8586 /* Copy the mailbox MCQE and convert endian order as needed */
8587 lpfc_sli_pcimem_bcopy(cqe, &mcqe, sizeof(struct lpfc_mcqe));
8588
8589 /* Invoke the proper event handling routine */
8590 if (!bf_get(lpfc_trailer_async, &mcqe))
8591 workposted = lpfc_sli4_sp_handle_mbox_event(phba, &mcqe);
8592 else
8593 workposted = lpfc_sli4_sp_handle_async_event(phba, &mcqe);
8594 return workposted;
8595}
8596
4f774513
JS
8597/**
8598 * lpfc_sli4_sp_handle_els_wcqe - Handle els work-queue completion event
8599 * @phba: Pointer to HBA context object.
8600 * @wcqe: Pointer to work-queue completion queue entry.
8601 *
8602 * This routine handles an ELS work-queue completion event.
8603 *
8604 * Return: true if work posted to worker thread, otherwise false.
8605 **/
8606static bool
8607lpfc_sli4_sp_handle_els_wcqe(struct lpfc_hba *phba,
8608 struct lpfc_wcqe_complete *wcqe)
8609{
4f774513
JS
8610 struct lpfc_iocbq *irspiocbq;
8611 unsigned long iflags;
4f774513 8612
45ed1190 8613 /* Get an irspiocbq for later ELS response processing use */
4f774513
JS
8614 irspiocbq = lpfc_sli_get_iocbq(phba);
8615 if (!irspiocbq) {
8616 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8617 "0387 Failed to allocate an iocbq\n");
45ed1190 8618 return false;
4f774513 8619 }
4f774513 8620
45ed1190
JS
8621 /* Save off the slow-path queue event for work thread to process */
8622 memcpy(&irspiocbq->cq_event.cqe.wcqe_cmpl, wcqe, sizeof(*wcqe));
4f774513 8623 spin_lock_irqsave(&phba->hbalock, iflags);
4d9ab994 8624 list_add_tail(&irspiocbq->cq_event.list,
45ed1190
JS
8625 &phba->sli4_hba.sp_queue_event);
8626 phba->hba_flag |= HBA_SP_QUEUE_EVT;
4f774513 8627 spin_unlock_irqrestore(&phba->hbalock, iflags);
4f774513 8628
45ed1190 8629 return true;
4f774513
JS
8630}
8631
8632/**
8633 * lpfc_sli4_sp_handle_rel_wcqe - Handle slow-path WQ entry consumed event
8634 * @phba: Pointer to HBA context object.
8635 * @wcqe: Pointer to work-queue completion queue entry.
8636 *
8637 * This routine handles slow-path WQ entry comsumed event by invoking the
8638 * proper WQ release routine to the slow-path WQ.
8639 **/
8640static void
8641lpfc_sli4_sp_handle_rel_wcqe(struct lpfc_hba *phba,
8642 struct lpfc_wcqe_release *wcqe)
8643{
8644 /* Check for the slow-path ELS work queue */
8645 if (bf_get(lpfc_wcqe_r_wq_id, wcqe) == phba->sli4_hba.els_wq->queue_id)
8646 lpfc_sli4_wq_release(phba->sli4_hba.els_wq,
8647 bf_get(lpfc_wcqe_r_wqe_index, wcqe));
8648 else
8649 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
8650 "2579 Slow-path wqe consume event carries "
8651 "miss-matched qid: wcqe-qid=x%x, sp-qid=x%x\n",
8652 bf_get(lpfc_wcqe_r_wqe_index, wcqe),
8653 phba->sli4_hba.els_wq->queue_id);
8654}
8655
8656/**
8657 * lpfc_sli4_sp_handle_abort_xri_wcqe - Handle a xri abort event
8658 * @phba: Pointer to HBA context object.
8659 * @cq: Pointer to a WQ completion queue.
8660 * @wcqe: Pointer to work-queue completion queue entry.
8661 *
8662 * This routine handles an XRI abort event.
8663 *
8664 * Return: true if work posted to worker thread, otherwise false.
8665 **/
8666static bool
8667lpfc_sli4_sp_handle_abort_xri_wcqe(struct lpfc_hba *phba,
8668 struct lpfc_queue *cq,
8669 struct sli4_wcqe_xri_aborted *wcqe)
8670{
8671 bool workposted = false;
8672 struct lpfc_cq_event *cq_event;
8673 unsigned long iflags;
8674
8675 /* Allocate a new internal CQ_EVENT entry */
8676 cq_event = lpfc_sli4_cq_event_alloc(phba);
8677 if (!cq_event) {
8678 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8679 "0602 Failed to allocate CQ_EVENT entry\n");
8680 return false;
8681 }
8682
8683 /* Move the CQE into the proper xri abort event list */
8684 memcpy(&cq_event->cqe, wcqe, sizeof(struct sli4_wcqe_xri_aborted));
8685 switch (cq->subtype) {
8686 case LPFC_FCP:
8687 spin_lock_irqsave(&phba->hbalock, iflags);
8688 list_add_tail(&cq_event->list,
8689 &phba->sli4_hba.sp_fcp_xri_aborted_work_queue);
8690 /* Set the fcp xri abort event flag */
8691 phba->hba_flag |= FCP_XRI_ABORT_EVENT;
8692 spin_unlock_irqrestore(&phba->hbalock, iflags);
8693 workposted = true;
8694 break;
8695 case LPFC_ELS:
8696 spin_lock_irqsave(&phba->hbalock, iflags);
8697 list_add_tail(&cq_event->list,
8698 &phba->sli4_hba.sp_els_xri_aborted_work_queue);
8699 /* Set the els xri abort event flag */
8700 phba->hba_flag |= ELS_XRI_ABORT_EVENT;
8701 spin_unlock_irqrestore(&phba->hbalock, iflags);
8702 workposted = true;
8703 break;
8704 default:
8705 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8706 "0603 Invalid work queue CQE subtype (x%x)\n",
8707 cq->subtype);
8708 workposted = false;
8709 break;
8710 }
8711 return workposted;
8712}
8713
4f774513
JS
8714/**
8715 * lpfc_sli4_sp_handle_rcqe - Process a receive-queue completion queue entry
8716 * @phba: Pointer to HBA context object.
8717 * @rcqe: Pointer to receive-queue completion queue entry.
8718 *
8719 * This routine process a receive-queue completion queue entry.
8720 *
8721 * Return: true if work posted to worker thread, otherwise false.
8722 **/
8723static bool
4d9ab994 8724lpfc_sli4_sp_handle_rcqe(struct lpfc_hba *phba, struct lpfc_rcqe *rcqe)
4f774513 8725{
4f774513
JS
8726 bool workposted = false;
8727 struct lpfc_queue *hrq = phba->sli4_hba.hdr_rq;
8728 struct lpfc_queue *drq = phba->sli4_hba.dat_rq;
8729 struct hbq_dmabuf *dma_buf;
8730 uint32_t status;
8731 unsigned long iflags;
8732
4d9ab994 8733 if (bf_get(lpfc_rcqe_rq_id, rcqe) != hrq->queue_id)
4f774513
JS
8734 goto out;
8735
4d9ab994 8736 status = bf_get(lpfc_rcqe_status, rcqe);
4f774513
JS
8737 switch (status) {
8738 case FC_STATUS_RQ_BUF_LEN_EXCEEDED:
8739 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8740 "2537 Receive Frame Truncated!!\n");
8741 case FC_STATUS_RQ_SUCCESS:
5ffc266e 8742 lpfc_sli4_rq_release(hrq, drq);
4f774513
JS
8743 spin_lock_irqsave(&phba->hbalock, iflags);
8744 dma_buf = lpfc_sli_hbqbuf_get(&phba->hbqs[0].hbq_buffer_list);
8745 if (!dma_buf) {
8746 spin_unlock_irqrestore(&phba->hbalock, iflags);
8747 goto out;
8748 }
4d9ab994 8749 memcpy(&dma_buf->cq_event.cqe.rcqe_cmpl, rcqe, sizeof(*rcqe));
4f774513 8750 /* save off the frame for the word thread to process */
4d9ab994 8751 list_add_tail(&dma_buf->cq_event.list,
45ed1190 8752 &phba->sli4_hba.sp_queue_event);
4f774513 8753 /* Frame received */
45ed1190 8754 phba->hba_flag |= HBA_SP_QUEUE_EVT;
4f774513
JS
8755 spin_unlock_irqrestore(&phba->hbalock, iflags);
8756 workposted = true;
8757 break;
8758 case FC_STATUS_INSUFF_BUF_NEED_BUF:
8759 case FC_STATUS_INSUFF_BUF_FRM_DISC:
8760 /* Post more buffers if possible */
8761 spin_lock_irqsave(&phba->hbalock, iflags);
8762 phba->hba_flag |= HBA_POST_RECEIVE_BUFFER;
8763 spin_unlock_irqrestore(&phba->hbalock, iflags);
8764 workposted = true;
8765 break;
8766 }
8767out:
8768 return workposted;
4f774513
JS
8769}
8770
4d9ab994
JS
8771/**
8772 * lpfc_sli4_sp_handle_cqe - Process a slow path completion queue entry
8773 * @phba: Pointer to HBA context object.
8774 * @cq: Pointer to the completion queue.
8775 * @wcqe: Pointer to a completion queue entry.
8776 *
8777 * This routine process a slow-path work-queue or recieve queue completion queue
8778 * entry.
8779 *
8780 * Return: true if work posted to worker thread, otherwise false.
8781 **/
8782static bool
8783lpfc_sli4_sp_handle_cqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
8784 struct lpfc_cqe *cqe)
8785{
45ed1190 8786 struct lpfc_cqe cqevt;
4d9ab994
JS
8787 bool workposted = false;
8788
8789 /* Copy the work queue CQE and convert endian order if needed */
45ed1190 8790 lpfc_sli_pcimem_bcopy(cqe, &cqevt, sizeof(struct lpfc_cqe));
4d9ab994
JS
8791
8792 /* Check and process for different type of WCQE and dispatch */
45ed1190 8793 switch (bf_get(lpfc_cqe_code, &cqevt)) {
4d9ab994 8794 case CQE_CODE_COMPL_WQE:
45ed1190 8795 /* Process the WQ/RQ complete event */
4d9ab994 8796 workposted = lpfc_sli4_sp_handle_els_wcqe(phba,
45ed1190 8797 (struct lpfc_wcqe_complete *)&cqevt);
4d9ab994
JS
8798 break;
8799 case CQE_CODE_RELEASE_WQE:
8800 /* Process the WQ release event */
8801 lpfc_sli4_sp_handle_rel_wcqe(phba,
45ed1190 8802 (struct lpfc_wcqe_release *)&cqevt);
4d9ab994
JS
8803 break;
8804 case CQE_CODE_XRI_ABORTED:
8805 /* Process the WQ XRI abort event */
8806 workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
45ed1190 8807 (struct sli4_wcqe_xri_aborted *)&cqevt);
4d9ab994
JS
8808 break;
8809 case CQE_CODE_RECEIVE:
8810 /* Process the RQ event */
8811 workposted = lpfc_sli4_sp_handle_rcqe(phba,
45ed1190 8812 (struct lpfc_rcqe *)&cqevt);
4d9ab994
JS
8813 break;
8814 default:
8815 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8816 "0388 Not a valid WCQE code: x%x\n",
45ed1190 8817 bf_get(lpfc_cqe_code, &cqevt));
4d9ab994
JS
8818 break;
8819 }
8820 return workposted;
8821}
8822
4f774513
JS
8823/**
8824 * lpfc_sli4_sp_handle_eqe - Process a slow-path event queue entry
8825 * @phba: Pointer to HBA context object.
8826 * @eqe: Pointer to fast-path event queue entry.
8827 *
8828 * This routine process a event queue entry from the slow-path event queue.
8829 * It will check the MajorCode and MinorCode to determine this is for a
8830 * completion event on a completion queue, if not, an error shall be logged
8831 * and just return. Otherwise, it will get to the corresponding completion
8832 * queue and process all the entries on that completion queue, rearm the
8833 * completion queue, and then return.
8834 *
8835 **/
8836static void
8837lpfc_sli4_sp_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe)
8838{
8839 struct lpfc_queue *cq = NULL, *childq, *speq;
8840 struct lpfc_cqe *cqe;
8841 bool workposted = false;
8842 int ecount = 0;
8843 uint16_t cqid;
8844
8845 if (bf_get(lpfc_eqe_major_code, eqe) != 0 ||
8846 bf_get(lpfc_eqe_minor_code, eqe) != 0) {
8847 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8848 "0359 Not a valid slow-path completion "
8849 "event: majorcode=x%x, minorcode=x%x\n",
8850 bf_get(lpfc_eqe_major_code, eqe),
8851 bf_get(lpfc_eqe_minor_code, eqe));
8852 return;
8853 }
8854
8855 /* Get the reference to the corresponding CQ */
8856 cqid = bf_get(lpfc_eqe_resource_id, eqe);
8857
8858 /* Search for completion queue pointer matching this cqid */
8859 speq = phba->sli4_hba.sp_eq;
8860 list_for_each_entry(childq, &speq->child_list, list) {
8861 if (childq->queue_id == cqid) {
8862 cq = childq;
8863 break;
8864 }
8865 }
8866 if (unlikely(!cq)) {
8867 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8868 "0365 Slow-path CQ identifier (%d) does "
8869 "not exist\n", cqid);
8870 return;
8871 }
8872
8873 /* Process all the entries to the CQ */
8874 switch (cq->type) {
8875 case LPFC_MCQ:
8876 while ((cqe = lpfc_sli4_cq_get(cq))) {
8877 workposted |= lpfc_sli4_sp_handle_mcqe(phba, cqe);
8878 if (!(++ecount % LPFC_GET_QE_REL_INT))
8879 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
8880 }
8881 break;
8882 case LPFC_WCQ:
8883 while ((cqe = lpfc_sli4_cq_get(cq))) {
4d9ab994 8884 workposted |= lpfc_sli4_sp_handle_cqe(phba, cq, cqe);
4f774513
JS
8885 if (!(++ecount % LPFC_GET_QE_REL_INT))
8886 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
8887 }
8888 break;
8889 default:
8890 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8891 "0370 Invalid completion queue type (%d)\n",
8892 cq->type);
8893 return;
8894 }
8895
8896 /* Catch the no cq entry condition, log an error */
8897 if (unlikely(ecount == 0))
8898 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8899 "0371 No entry from the CQ: identifier "
8900 "(x%x), type (%d)\n", cq->queue_id, cq->type);
8901
8902 /* In any case, flash and re-arm the RCQ */
8903 lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
8904
8905 /* wake up worker thread if there are works to be done */
8906 if (workposted)
8907 lpfc_worker_wake_up(phba);
8908}
8909
8910/**
8911 * lpfc_sli4_fp_handle_fcp_wcqe - Process fast-path work queue completion entry
8912 * @eqe: Pointer to fast-path completion queue entry.
8913 *
8914 * This routine process a fast-path work queue completion entry from fast-path
8915 * event queue for FCP command response completion.
8916 **/
8917static void
8918lpfc_sli4_fp_handle_fcp_wcqe(struct lpfc_hba *phba,
8919 struct lpfc_wcqe_complete *wcqe)
8920{
8921 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_FCP_RING];
8922 struct lpfc_iocbq *cmdiocbq;
8923 struct lpfc_iocbq irspiocbq;
8924 unsigned long iflags;
8925
8926 spin_lock_irqsave(&phba->hbalock, iflags);
8927 pring->stats.iocb_event++;
8928 spin_unlock_irqrestore(&phba->hbalock, iflags);
8929
8930 /* Check for response status */
8931 if (unlikely(bf_get(lpfc_wcqe_c_status, wcqe))) {
8932 /* If resource errors reported from HBA, reduce queue
8933 * depth of the SCSI device.
8934 */
8935 if ((bf_get(lpfc_wcqe_c_status, wcqe) ==
8936 IOSTAT_LOCAL_REJECT) &&
8937 (wcqe->parameter == IOERR_NO_RESOURCES)) {
8938 phba->lpfc_rampdown_queue_depth(phba);
8939 }
8940 /* Log the error status */
8941 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
8942 "0373 FCP complete error: status=x%x, "
8943 "hw_status=x%x, total_data_specified=%d, "
8944 "parameter=x%x, word3=x%x\n",
8945 bf_get(lpfc_wcqe_c_status, wcqe),
8946 bf_get(lpfc_wcqe_c_hw_status, wcqe),
8947 wcqe->total_data_placed, wcqe->parameter,
8948 wcqe->word3);
8949 }
8950
8951 /* Look up the FCP command IOCB and create pseudo response IOCB */
8952 spin_lock_irqsave(&phba->hbalock, iflags);
8953 cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
8954 bf_get(lpfc_wcqe_c_request_tag, wcqe));
8955 spin_unlock_irqrestore(&phba->hbalock, iflags);
8956 if (unlikely(!cmdiocbq)) {
8957 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
8958 "0374 FCP complete with no corresponding "
8959 "cmdiocb: iotag (%d)\n",
8960 bf_get(lpfc_wcqe_c_request_tag, wcqe));
8961 return;
8962 }
8963 if (unlikely(!cmdiocbq->iocb_cmpl)) {
8964 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
8965 "0375 FCP cmdiocb not callback function "
8966 "iotag: (%d)\n",
8967 bf_get(lpfc_wcqe_c_request_tag, wcqe));
8968 return;
8969 }
8970
8971 /* Fake the irspiocb and copy necessary response information */
8972 lpfc_sli4_iocb_param_transfer(&irspiocbq, cmdiocbq, wcqe);
8973
8974 /* Pass the cmd_iocb and the rsp state to the upper layer */
8975 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq, &irspiocbq);
8976}
8977
8978/**
8979 * lpfc_sli4_fp_handle_rel_wcqe - Handle fast-path WQ entry consumed event
8980 * @phba: Pointer to HBA context object.
8981 * @cq: Pointer to completion queue.
8982 * @wcqe: Pointer to work-queue completion queue entry.
8983 *
8984 * This routine handles an fast-path WQ entry comsumed event by invoking the
8985 * proper WQ release routine to the slow-path WQ.
8986 **/
8987static void
8988lpfc_sli4_fp_handle_rel_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
8989 struct lpfc_wcqe_release *wcqe)
8990{
8991 struct lpfc_queue *childwq;
8992 bool wqid_matched = false;
8993 uint16_t fcp_wqid;
8994
8995 /* Check for fast-path FCP work queue release */
8996 fcp_wqid = bf_get(lpfc_wcqe_r_wq_id, wcqe);
8997 list_for_each_entry(childwq, &cq->child_list, list) {
8998 if (childwq->queue_id == fcp_wqid) {
8999 lpfc_sli4_wq_release(childwq,
9000 bf_get(lpfc_wcqe_r_wqe_index, wcqe));
9001 wqid_matched = true;
9002 break;
9003 }
9004 }
9005 /* Report warning log message if no match found */
9006 if (wqid_matched != true)
9007 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
9008 "2580 Fast-path wqe consume event carries "
9009 "miss-matched qid: wcqe-qid=x%x\n", fcp_wqid);
9010}
9011
9012/**
9013 * lpfc_sli4_fp_handle_wcqe - Process fast-path work queue completion entry
9014 * @cq: Pointer to the completion queue.
9015 * @eqe: Pointer to fast-path completion queue entry.
9016 *
9017 * This routine process a fast-path work queue completion entry from fast-path
9018 * event queue for FCP command response completion.
9019 **/
9020static int
9021lpfc_sli4_fp_handle_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
9022 struct lpfc_cqe *cqe)
9023{
9024 struct lpfc_wcqe_release wcqe;
9025 bool workposted = false;
9026
9027 /* Copy the work queue CQE and convert endian order if needed */
9028 lpfc_sli_pcimem_bcopy(cqe, &wcqe, sizeof(struct lpfc_cqe));
9029
9030 /* Check and process for different type of WCQE and dispatch */
9031 switch (bf_get(lpfc_wcqe_c_code, &wcqe)) {
9032 case CQE_CODE_COMPL_WQE:
9033 /* Process the WQ complete event */
9034 lpfc_sli4_fp_handle_fcp_wcqe(phba,
9035 (struct lpfc_wcqe_complete *)&wcqe);
9036 break;
9037 case CQE_CODE_RELEASE_WQE:
9038 /* Process the WQ release event */
9039 lpfc_sli4_fp_handle_rel_wcqe(phba, cq,
9040 (struct lpfc_wcqe_release *)&wcqe);
9041 break;
9042 case CQE_CODE_XRI_ABORTED:
9043 /* Process the WQ XRI abort event */
9044 workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
9045 (struct sli4_wcqe_xri_aborted *)&wcqe);
9046 break;
9047 default:
9048 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
9049 "0144 Not a valid WCQE code: x%x\n",
9050 bf_get(lpfc_wcqe_c_code, &wcqe));
9051 break;
9052 }
9053 return workposted;
9054}
9055
9056/**
9057 * lpfc_sli4_fp_handle_eqe - Process a fast-path event queue entry
9058 * @phba: Pointer to HBA context object.
9059 * @eqe: Pointer to fast-path event queue entry.
9060 *
9061 * This routine process a event queue entry from the fast-path event queue.
9062 * It will check the MajorCode and MinorCode to determine this is for a
9063 * completion event on a completion queue, if not, an error shall be logged
9064 * and just return. Otherwise, it will get to the corresponding completion
9065 * queue and process all the entries on the completion queue, rearm the
9066 * completion queue, and then return.
9067 **/
9068static void
9069lpfc_sli4_fp_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe,
9070 uint32_t fcp_cqidx)
9071{
9072 struct lpfc_queue *cq;
9073 struct lpfc_cqe *cqe;
9074 bool workposted = false;
9075 uint16_t cqid;
9076 int ecount = 0;
9077
9078 if (unlikely(bf_get(lpfc_eqe_major_code, eqe) != 0) ||
9079 unlikely(bf_get(lpfc_eqe_minor_code, eqe) != 0)) {
9080 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
9081 "0366 Not a valid fast-path completion "
9082 "event: majorcode=x%x, minorcode=x%x\n",
9083 bf_get(lpfc_eqe_major_code, eqe),
9084 bf_get(lpfc_eqe_minor_code, eqe));
9085 return;
9086 }
9087
9088 cq = phba->sli4_hba.fcp_cq[fcp_cqidx];
9089 if (unlikely(!cq)) {
9090 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
9091 "0367 Fast-path completion queue does not "
9092 "exist\n");
9093 return;
9094 }
9095
9096 /* Get the reference to the corresponding CQ */
9097 cqid = bf_get(lpfc_eqe_resource_id, eqe);
9098 if (unlikely(cqid != cq->queue_id)) {
9099 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
9100 "0368 Miss-matched fast-path completion "
9101 "queue identifier: eqcqid=%d, fcpcqid=%d\n",
9102 cqid, cq->queue_id);
9103 return;
9104 }
9105
9106 /* Process all the entries to the CQ */
9107 while ((cqe = lpfc_sli4_cq_get(cq))) {
9108 workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq, cqe);
9109 if (!(++ecount % LPFC_GET_QE_REL_INT))
9110 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
9111 }
9112
9113 /* Catch the no cq entry condition */
9114 if (unlikely(ecount == 0))
9115 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
9116 "0369 No entry from fast-path completion "
9117 "queue fcpcqid=%d\n", cq->queue_id);
9118
9119 /* In any case, flash and re-arm the CQ */
9120 lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
9121
9122 /* wake up worker thread if there are works to be done */
9123 if (workposted)
9124 lpfc_worker_wake_up(phba);
9125}
9126
9127static void
9128lpfc_sli4_eq_flush(struct lpfc_hba *phba, struct lpfc_queue *eq)
9129{
9130 struct lpfc_eqe *eqe;
9131
9132 /* walk all the EQ entries and drop on the floor */
9133 while ((eqe = lpfc_sli4_eq_get(eq)))
9134 ;
9135
9136 /* Clear and re-arm the EQ */
9137 lpfc_sli4_eq_release(eq, LPFC_QUEUE_REARM);
9138}
9139
9140/**
9141 * lpfc_sli4_sp_intr_handler - Slow-path interrupt handler to SLI-4 device
9142 * @irq: Interrupt number.
9143 * @dev_id: The device context pointer.
9144 *
9145 * This function is directly called from the PCI layer as an interrupt
9146 * service routine when device with SLI-4 interface spec is enabled with
9147 * MSI-X multi-message interrupt mode and there are slow-path events in
9148 * the HBA. However, when the device is enabled with either MSI or Pin-IRQ
9149 * interrupt mode, this function is called as part of the device-level
9150 * interrupt handler. When the PCI slot is in error recovery or the HBA is
9151 * undergoing initialization, the interrupt handler will not process the
9152 * interrupt. The link attention and ELS ring attention events are handled
9153 * by the worker thread. The interrupt handler signals the worker thread
9154 * and returns for these events. This function is called without any lock
9155 * held. It gets the hbalock to access and update SLI data structures.
9156 *
9157 * This function returns IRQ_HANDLED when interrupt is handled else it
9158 * returns IRQ_NONE.
9159 **/
9160irqreturn_t
9161lpfc_sli4_sp_intr_handler(int irq, void *dev_id)
9162{
9163 struct lpfc_hba *phba;
9164 struct lpfc_queue *speq;
9165 struct lpfc_eqe *eqe;
9166 unsigned long iflag;
9167 int ecount = 0;
9168
9169 /*
9170 * Get the driver's phba structure from the dev_id
9171 */
9172 phba = (struct lpfc_hba *)dev_id;
9173
9174 if (unlikely(!phba))
9175 return IRQ_NONE;
9176
9177 /* Get to the EQ struct associated with this vector */
9178 speq = phba->sli4_hba.sp_eq;
9179
9180 /* Check device state for handling interrupt */
9181 if (unlikely(lpfc_intr_state_check(phba))) {
9182 /* Check again for link_state with lock held */
9183 spin_lock_irqsave(&phba->hbalock, iflag);
9184 if (phba->link_state < LPFC_LINK_DOWN)
9185 /* Flush, clear interrupt, and rearm the EQ */
9186 lpfc_sli4_eq_flush(phba, speq);
9187 spin_unlock_irqrestore(&phba->hbalock, iflag);
9188 return IRQ_NONE;
9189 }
9190
9191 /*
9192 * Process all the event on FCP slow-path EQ
9193 */
9194 while ((eqe = lpfc_sli4_eq_get(speq))) {
9195 lpfc_sli4_sp_handle_eqe(phba, eqe);
9196 if (!(++ecount % LPFC_GET_QE_REL_INT))
9197 lpfc_sli4_eq_release(speq, LPFC_QUEUE_NOARM);
9198 }
9199
9200 /* Always clear and re-arm the slow-path EQ */
9201 lpfc_sli4_eq_release(speq, LPFC_QUEUE_REARM);
9202
9203 /* Catch the no cq entry condition */
9204 if (unlikely(ecount == 0)) {
9205 if (phba->intr_type == MSIX)
9206 /* MSI-X treated interrupt served as no EQ share INT */
9207 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
9208 "0357 MSI-X interrupt with no EQE\n");
9209 else
9210 /* Non MSI-X treated on interrupt as EQ share INT */
9211 return IRQ_NONE;
9212 }
9213
9214 return IRQ_HANDLED;
9215} /* lpfc_sli4_sp_intr_handler */
9216
9217/**
9218 * lpfc_sli4_fp_intr_handler - Fast-path interrupt handler to SLI-4 device
9219 * @irq: Interrupt number.
9220 * @dev_id: The device context pointer.
9221 *
9222 * This function is directly called from the PCI layer as an interrupt
9223 * service routine when device with SLI-4 interface spec is enabled with
9224 * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
9225 * ring event in the HBA. However, when the device is enabled with either
9226 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
9227 * device-level interrupt handler. When the PCI slot is in error recovery
9228 * or the HBA is undergoing initialization, the interrupt handler will not
9229 * process the interrupt. The SCSI FCP fast-path ring event are handled in
9230 * the intrrupt context. This function is called without any lock held.
9231 * It gets the hbalock to access and update SLI data structures. Note that,
9232 * the FCP EQ to FCP CQ are one-to-one map such that the FCP EQ index is
9233 * equal to that of FCP CQ index.
9234 *
9235 * This function returns IRQ_HANDLED when interrupt is handled else it
9236 * returns IRQ_NONE.
9237 **/
9238irqreturn_t
9239lpfc_sli4_fp_intr_handler(int irq, void *dev_id)
9240{
9241 struct lpfc_hba *phba;
9242 struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
9243 struct lpfc_queue *fpeq;
9244 struct lpfc_eqe *eqe;
9245 unsigned long iflag;
9246 int ecount = 0;
9247 uint32_t fcp_eqidx;
9248
9249 /* Get the driver's phba structure from the dev_id */
9250 fcp_eq_hdl = (struct lpfc_fcp_eq_hdl *)dev_id;
9251 phba = fcp_eq_hdl->phba;
9252 fcp_eqidx = fcp_eq_hdl->idx;
9253
9254 if (unlikely(!phba))
9255 return IRQ_NONE;
9256
9257 /* Get to the EQ struct associated with this vector */
9258 fpeq = phba->sli4_hba.fp_eq[fcp_eqidx];
9259
9260 /* Check device state for handling interrupt */
9261 if (unlikely(lpfc_intr_state_check(phba))) {
9262 /* Check again for link_state with lock held */
9263 spin_lock_irqsave(&phba->hbalock, iflag);
9264 if (phba->link_state < LPFC_LINK_DOWN)
9265 /* Flush, clear interrupt, and rearm the EQ */
9266 lpfc_sli4_eq_flush(phba, fpeq);
9267 spin_unlock_irqrestore(&phba->hbalock, iflag);
9268 return IRQ_NONE;
9269 }
9270
9271 /*
9272 * Process all the event on FCP fast-path EQ
9273 */
9274 while ((eqe = lpfc_sli4_eq_get(fpeq))) {
9275 lpfc_sli4_fp_handle_eqe(phba, eqe, fcp_eqidx);
9276 if (!(++ecount % LPFC_GET_QE_REL_INT))
9277 lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_NOARM);
9278 }
9279
9280 /* Always clear and re-arm the fast-path EQ */
9281 lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_REARM);
9282
9283 if (unlikely(ecount == 0)) {
9284 if (phba->intr_type == MSIX)
9285 /* MSI-X treated interrupt served as no EQ share INT */
9286 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
9287 "0358 MSI-X interrupt with no EQE\n");
9288 else
9289 /* Non MSI-X treated on interrupt as EQ share INT */
9290 return IRQ_NONE;
9291 }
9292
9293 return IRQ_HANDLED;
9294} /* lpfc_sli4_fp_intr_handler */
9295
9296/**
9297 * lpfc_sli4_intr_handler - Device-level interrupt handler for SLI-4 device
9298 * @irq: Interrupt number.
9299 * @dev_id: The device context pointer.
9300 *
9301 * This function is the device-level interrupt handler to device with SLI-4
9302 * interface spec, called from the PCI layer when either MSI or Pin-IRQ
9303 * interrupt mode is enabled and there is an event in the HBA which requires
9304 * driver attention. This function invokes the slow-path interrupt attention
9305 * handling function and fast-path interrupt attention handling function in
9306 * turn to process the relevant HBA attention events. This function is called
9307 * without any lock held. It gets the hbalock to access and update SLI data
9308 * structures.
9309 *
9310 * This function returns IRQ_HANDLED when interrupt is handled, else it
9311 * returns IRQ_NONE.
9312 **/
9313irqreturn_t
9314lpfc_sli4_intr_handler(int irq, void *dev_id)
9315{
9316 struct lpfc_hba *phba;
9317 irqreturn_t sp_irq_rc, fp_irq_rc;
9318 bool fp_handled = false;
9319 uint32_t fcp_eqidx;
9320
9321 /* Get the driver's phba structure from the dev_id */
9322 phba = (struct lpfc_hba *)dev_id;
9323
9324 if (unlikely(!phba))
9325 return IRQ_NONE;
9326
9327 /*
9328 * Invokes slow-path host attention interrupt handling as appropriate.
9329 */
9330 sp_irq_rc = lpfc_sli4_sp_intr_handler(irq, dev_id);
9331
9332 /*
9333 * Invoke fast-path host attention interrupt handling as appropriate.
9334 */
9335 for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_eq_count; fcp_eqidx++) {
9336 fp_irq_rc = lpfc_sli4_fp_intr_handler(irq,
9337 &phba->sli4_hba.fcp_eq_hdl[fcp_eqidx]);
9338 if (fp_irq_rc == IRQ_HANDLED)
9339 fp_handled |= true;
9340 }
9341
9342 return (fp_handled == true) ? IRQ_HANDLED : sp_irq_rc;
9343} /* lpfc_sli4_intr_handler */
9344
9345/**
9346 * lpfc_sli4_queue_free - free a queue structure and associated memory
9347 * @queue: The queue structure to free.
9348 *
9349 * This function frees a queue structure and the DMAable memeory used for
9350 * the host resident queue. This function must be called after destroying the
9351 * queue on the HBA.
9352 **/
9353void
9354lpfc_sli4_queue_free(struct lpfc_queue *queue)
9355{
9356 struct lpfc_dmabuf *dmabuf;
9357
9358 if (!queue)
9359 return;
9360
9361 while (!list_empty(&queue->page_list)) {
9362 list_remove_head(&queue->page_list, dmabuf, struct lpfc_dmabuf,
9363 list);
9364 dma_free_coherent(&queue->phba->pcidev->dev, PAGE_SIZE,
9365 dmabuf->virt, dmabuf->phys);
9366 kfree(dmabuf);
9367 }
9368 kfree(queue);
9369 return;
9370}
9371
9372/**
9373 * lpfc_sli4_queue_alloc - Allocate and initialize a queue structure
9374 * @phba: The HBA that this queue is being created on.
9375 * @entry_size: The size of each queue entry for this queue.
9376 * @entry count: The number of entries that this queue will handle.
9377 *
9378 * This function allocates a queue structure and the DMAable memory used for
9379 * the host resident queue. This function must be called before creating the
9380 * queue on the HBA.
9381 **/
9382struct lpfc_queue *
9383lpfc_sli4_queue_alloc(struct lpfc_hba *phba, uint32_t entry_size,
9384 uint32_t entry_count)
9385{
9386 struct lpfc_queue *queue;
9387 struct lpfc_dmabuf *dmabuf;
9388 int x, total_qe_count;
9389 void *dma_pointer;
9390
9391
9392 queue = kzalloc(sizeof(struct lpfc_queue) +
9393 (sizeof(union sli4_qe) * entry_count), GFP_KERNEL);
9394 if (!queue)
9395 return NULL;
9396 queue->page_count = (PAGE_ALIGN(entry_size * entry_count))/PAGE_SIZE;
9397 INIT_LIST_HEAD(&queue->list);
9398 INIT_LIST_HEAD(&queue->page_list);
9399 INIT_LIST_HEAD(&queue->child_list);
9400 for (x = 0, total_qe_count = 0; x < queue->page_count; x++) {
9401 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
9402 if (!dmabuf)
9403 goto out_fail;
9404 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
9405 PAGE_SIZE, &dmabuf->phys,
9406 GFP_KERNEL);
9407 if (!dmabuf->virt) {
9408 kfree(dmabuf);
9409 goto out_fail;
9410 }
d11e31dd 9411 memset(dmabuf->virt, 0, PAGE_SIZE);
4f774513
JS
9412 dmabuf->buffer_tag = x;
9413 list_add_tail(&dmabuf->list, &queue->page_list);
9414 /* initialize queue's entry array */
9415 dma_pointer = dmabuf->virt;
9416 for (; total_qe_count < entry_count &&
9417 dma_pointer < (PAGE_SIZE + dmabuf->virt);
9418 total_qe_count++, dma_pointer += entry_size) {
9419 queue->qe[total_qe_count].address = dma_pointer;
9420 }
9421 }
9422 queue->entry_size = entry_size;
9423 queue->entry_count = entry_count;
9424 queue->phba = phba;
9425
9426 return queue;
9427out_fail:
9428 lpfc_sli4_queue_free(queue);
9429 return NULL;
9430}
9431
9432/**
9433 * lpfc_eq_create - Create an Event Queue on the HBA
9434 * @phba: HBA structure that indicates port to create a queue on.
9435 * @eq: The queue structure to use to create the event queue.
9436 * @imax: The maximum interrupt per second limit.
9437 *
9438 * This function creates an event queue, as detailed in @eq, on a port,
9439 * described by @phba by sending an EQ_CREATE mailbox command to the HBA.
9440 *
9441 * The @phba struct is used to send mailbox command to HBA. The @eq struct
9442 * is used to get the entry count and entry size that are necessary to
9443 * determine the number of pages to allocate and use for this queue. This
9444 * function will send the EQ_CREATE mailbox command to the HBA to setup the
9445 * event queue. This function is asynchronous and will wait for the mailbox
9446 * command to finish before continuing.
9447 *
9448 * On success this function will return a zero. If unable to allocate enough
9449 * memory this function will return ENOMEM. If the queue create mailbox command
9450 * fails this function will return ENXIO.
9451 **/
9452uint32_t
9453lpfc_eq_create(struct lpfc_hba *phba, struct lpfc_queue *eq, uint16_t imax)
9454{
9455 struct lpfc_mbx_eq_create *eq_create;
9456 LPFC_MBOXQ_t *mbox;
9457 int rc, length, status = 0;
9458 struct lpfc_dmabuf *dmabuf;
9459 uint32_t shdr_status, shdr_add_status;
9460 union lpfc_sli4_cfg_shdr *shdr;
9461 uint16_t dmult;
9462
9463 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
9464 if (!mbox)
9465 return -ENOMEM;
9466 length = (sizeof(struct lpfc_mbx_eq_create) -
9467 sizeof(struct lpfc_sli4_cfg_mhdr));
9468 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
9469 LPFC_MBOX_OPCODE_EQ_CREATE,
9470 length, LPFC_SLI4_MBX_EMBED);
9471 eq_create = &mbox->u.mqe.un.eq_create;
9472 bf_set(lpfc_mbx_eq_create_num_pages, &eq_create->u.request,
9473 eq->page_count);
9474 bf_set(lpfc_eq_context_size, &eq_create->u.request.context,
9475 LPFC_EQE_SIZE);
9476 bf_set(lpfc_eq_context_valid, &eq_create->u.request.context, 1);
9477 /* Calculate delay multiper from maximum interrupt per second */
9478 dmult = LPFC_DMULT_CONST/imax - 1;
9479 bf_set(lpfc_eq_context_delay_multi, &eq_create->u.request.context,
9480 dmult);
9481 switch (eq->entry_count) {
9482 default:
9483 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
9484 "0360 Unsupported EQ count. (%d)\n",
9485 eq->entry_count);
9486 if (eq->entry_count < 256)
9487 return -EINVAL;
9488 /* otherwise default to smallest count (drop through) */
9489 case 256:
9490 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
9491 LPFC_EQ_CNT_256);
9492 break;
9493 case 512:
9494 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
9495 LPFC_EQ_CNT_512);
9496 break;
9497 case 1024:
9498 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
9499 LPFC_EQ_CNT_1024);
9500 break;
9501 case 2048:
9502 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
9503 LPFC_EQ_CNT_2048);
9504 break;
9505 case 4096:
9506 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
9507 LPFC_EQ_CNT_4096);
9508 break;
9509 }
9510 list_for_each_entry(dmabuf, &eq->page_list, list) {
9511 eq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
9512 putPaddrLow(dmabuf->phys);
9513 eq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
9514 putPaddrHigh(dmabuf->phys);
9515 }
9516 mbox->vport = phba->pport;
9517 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
9518 mbox->context1 = NULL;
9519 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
9520 shdr = (union lpfc_sli4_cfg_shdr *) &eq_create->header.cfg_shdr;
9521 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
9522 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
9523 if (shdr_status || shdr_add_status || rc) {
9524 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9525 "2500 EQ_CREATE mailbox failed with "
9526 "status x%x add_status x%x, mbx status x%x\n",
9527 shdr_status, shdr_add_status, rc);
9528 status = -ENXIO;
9529 }
9530 eq->type = LPFC_EQ;
9531 eq->subtype = LPFC_NONE;
9532 eq->queue_id = bf_get(lpfc_mbx_eq_create_q_id, &eq_create->u.response);
9533 if (eq->queue_id == 0xFFFF)
9534 status = -ENXIO;
9535 eq->host_index = 0;
9536 eq->hba_index = 0;
9537
8fa38513 9538 mempool_free(mbox, phba->mbox_mem_pool);
4f774513
JS
9539 return status;
9540}
9541
9542/**
9543 * lpfc_cq_create - Create a Completion Queue on the HBA
9544 * @phba: HBA structure that indicates port to create a queue on.
9545 * @cq: The queue structure to use to create the completion queue.
9546 * @eq: The event queue to bind this completion queue to.
9547 *
9548 * This function creates a completion queue, as detailed in @wq, on a port,
9549 * described by @phba by sending a CQ_CREATE mailbox command to the HBA.
9550 *
9551 * The @phba struct is used to send mailbox command to HBA. The @cq struct
9552 * is used to get the entry count and entry size that are necessary to
9553 * determine the number of pages to allocate and use for this queue. The @eq
9554 * is used to indicate which event queue to bind this completion queue to. This
9555 * function will send the CQ_CREATE mailbox command to the HBA to setup the
9556 * completion queue. This function is asynchronous and will wait for the mailbox
9557 * command to finish before continuing.
9558 *
9559 * On success this function will return a zero. If unable to allocate enough
9560 * memory this function will return ENOMEM. If the queue create mailbox command
9561 * fails this function will return ENXIO.
9562 **/
9563uint32_t
9564lpfc_cq_create(struct lpfc_hba *phba, struct lpfc_queue *cq,
9565 struct lpfc_queue *eq, uint32_t type, uint32_t subtype)
9566{
9567 struct lpfc_mbx_cq_create *cq_create;
9568 struct lpfc_dmabuf *dmabuf;
9569 LPFC_MBOXQ_t *mbox;
9570 int rc, length, status = 0;
9571 uint32_t shdr_status, shdr_add_status;
9572 union lpfc_sli4_cfg_shdr *shdr;
9573
9574 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
9575 if (!mbox)
9576 return -ENOMEM;
9577 length = (sizeof(struct lpfc_mbx_cq_create) -
9578 sizeof(struct lpfc_sli4_cfg_mhdr));
9579 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
9580 LPFC_MBOX_OPCODE_CQ_CREATE,
9581 length, LPFC_SLI4_MBX_EMBED);
9582 cq_create = &mbox->u.mqe.un.cq_create;
9583 bf_set(lpfc_mbx_cq_create_num_pages, &cq_create->u.request,
9584 cq->page_count);
9585 bf_set(lpfc_cq_context_event, &cq_create->u.request.context, 1);
9586 bf_set(lpfc_cq_context_valid, &cq_create->u.request.context, 1);
9587 bf_set(lpfc_cq_eq_id, &cq_create->u.request.context, eq->queue_id);
9588 switch (cq->entry_count) {
9589 default:
9590 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
9591 "0361 Unsupported CQ count. (%d)\n",
9592 cq->entry_count);
9593 if (cq->entry_count < 256)
9594 return -EINVAL;
9595 /* otherwise default to smallest count (drop through) */
9596 case 256:
9597 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
9598 LPFC_CQ_CNT_256);
9599 break;
9600 case 512:
9601 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
9602 LPFC_CQ_CNT_512);
9603 break;
9604 case 1024:
9605 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
9606 LPFC_CQ_CNT_1024);
9607 break;
9608 }
9609 list_for_each_entry(dmabuf, &cq->page_list, list) {
9610 cq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
9611 putPaddrLow(dmabuf->phys);
9612 cq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
9613 putPaddrHigh(dmabuf->phys);
9614 }
9615 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
9616
9617 /* The IOCTL status is embedded in the mailbox subheader. */
9618 shdr = (union lpfc_sli4_cfg_shdr *) &cq_create->header.cfg_shdr;
9619 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
9620 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
9621 if (shdr_status || shdr_add_status || rc) {
9622 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9623 "2501 CQ_CREATE mailbox failed with "
9624 "status x%x add_status x%x, mbx status x%x\n",
9625 shdr_status, shdr_add_status, rc);
9626 status = -ENXIO;
9627 goto out;
9628 }
9629 cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
9630 if (cq->queue_id == 0xFFFF) {
9631 status = -ENXIO;
9632 goto out;
9633 }
9634 /* link the cq onto the parent eq child list */
9635 list_add_tail(&cq->list, &eq->child_list);
9636 /* Set up completion queue's type and subtype */
9637 cq->type = type;
9638 cq->subtype = subtype;
9639 cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
9640 cq->host_index = 0;
9641 cq->hba_index = 0;
4f774513 9642
8fa38513
JS
9643out:
9644 mempool_free(mbox, phba->mbox_mem_pool);
4f774513
JS
9645 return status;
9646}
9647
04c68496
JS
9648/**
9649 * lpfc_mq_create - Create a mailbox Queue on the HBA
9650 * @phba: HBA structure that indicates port to create a queue on.
9651 * @mq: The queue structure to use to create the mailbox queue.
9652 *
9653 * This function creates a mailbox queue, as detailed in @mq, on a port,
9654 * described by @phba by sending a MQ_CREATE mailbox command to the HBA.
9655 *
9656 * The @phba struct is used to send mailbox command to HBA. The @cq struct
9657 * is used to get the entry count and entry size that are necessary to
9658 * determine the number of pages to allocate and use for this queue. This
9659 * function will send the MQ_CREATE mailbox command to the HBA to setup the
9660 * mailbox queue. This function is asynchronous and will wait for the mailbox
9661 * command to finish before continuing.
9662 *
9663 * On success this function will return a zero. If unable to allocate enough
9664 * memory this function will return ENOMEM. If the queue create mailbox command
9665 * fails this function will return ENXIO.
9666 **/
9667uint32_t
9668lpfc_mq_create(struct lpfc_hba *phba, struct lpfc_queue *mq,
9669 struct lpfc_queue *cq, uint32_t subtype)
9670{
9671 struct lpfc_mbx_mq_create *mq_create;
9672 struct lpfc_dmabuf *dmabuf;
9673 LPFC_MBOXQ_t *mbox;
9674 int rc, length, status = 0;
9675 uint32_t shdr_status, shdr_add_status;
9676 union lpfc_sli4_cfg_shdr *shdr;
9677
9678 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
9679 if (!mbox)
9680 return -ENOMEM;
9681 length = (sizeof(struct lpfc_mbx_mq_create) -
9682 sizeof(struct lpfc_sli4_cfg_mhdr));
9683 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
9684 LPFC_MBOX_OPCODE_MQ_CREATE,
9685 length, LPFC_SLI4_MBX_EMBED);
9686 mq_create = &mbox->u.mqe.un.mq_create;
9687 bf_set(lpfc_mbx_mq_create_num_pages, &mq_create->u.request,
9688 mq->page_count);
9689 bf_set(lpfc_mq_context_cq_id, &mq_create->u.request.context,
9690 cq->queue_id);
9691 bf_set(lpfc_mq_context_valid, &mq_create->u.request.context, 1);
9692 switch (mq->entry_count) {
9693 default:
9694 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
9695 "0362 Unsupported MQ count. (%d)\n",
9696 mq->entry_count);
9697 if (mq->entry_count < 16)
9698 return -EINVAL;
9699 /* otherwise default to smallest count (drop through) */
9700 case 16:
9701 bf_set(lpfc_mq_context_count, &mq_create->u.request.context,
9702 LPFC_MQ_CNT_16);
9703 break;
9704 case 32:
9705 bf_set(lpfc_mq_context_count, &mq_create->u.request.context,
9706 LPFC_MQ_CNT_32);
9707 break;
9708 case 64:
9709 bf_set(lpfc_mq_context_count, &mq_create->u.request.context,
9710 LPFC_MQ_CNT_64);
9711 break;
9712 case 128:
9713 bf_set(lpfc_mq_context_count, &mq_create->u.request.context,
9714 LPFC_MQ_CNT_128);
9715 break;
9716 }
9717 list_for_each_entry(dmabuf, &mq->page_list, list) {
9718 mq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
9719 putPaddrLow(dmabuf->phys);
9720 mq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
9721 putPaddrHigh(dmabuf->phys);
9722 }
9723 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
9724 /* The IOCTL status is embedded in the mailbox subheader. */
9725 shdr = (union lpfc_sli4_cfg_shdr *) &mq_create->header.cfg_shdr;
9726 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
9727 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
9728 if (shdr_status || shdr_add_status || rc) {
9729 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9730 "2502 MQ_CREATE mailbox failed with "
9731 "status x%x add_status x%x, mbx status x%x\n",
9732 shdr_status, shdr_add_status, rc);
9733 status = -ENXIO;
9734 goto out;
9735 }
9736 mq->queue_id = bf_get(lpfc_mbx_mq_create_q_id, &mq_create->u.response);
9737 if (mq->queue_id == 0xFFFF) {
9738 status = -ENXIO;
9739 goto out;
9740 }
9741 mq->type = LPFC_MQ;
9742 mq->subtype = subtype;
9743 mq->host_index = 0;
9744 mq->hba_index = 0;
9745
9746 /* link the mq onto the parent cq child list */
9747 list_add_tail(&mq->list, &cq->child_list);
9748out:
8fa38513 9749 mempool_free(mbox, phba->mbox_mem_pool);
04c68496
JS
9750 return status;
9751}
9752
4f774513
JS
9753/**
9754 * lpfc_wq_create - Create a Work Queue on the HBA
9755 * @phba: HBA structure that indicates port to create a queue on.
9756 * @wq: The queue structure to use to create the work queue.
9757 * @cq: The completion queue to bind this work queue to.
9758 * @subtype: The subtype of the work queue indicating its functionality.
9759 *
9760 * This function creates a work queue, as detailed in @wq, on a port, described
9761 * by @phba by sending a WQ_CREATE mailbox command to the HBA.
9762 *
9763 * The @phba struct is used to send mailbox command to HBA. The @wq struct
9764 * is used to get the entry count and entry size that are necessary to
9765 * determine the number of pages to allocate and use for this queue. The @cq
9766 * is used to indicate which completion queue to bind this work queue to. This
9767 * function will send the WQ_CREATE mailbox command to the HBA to setup the
9768 * work queue. This function is asynchronous and will wait for the mailbox
9769 * command to finish before continuing.
9770 *
9771 * On success this function will return a zero. If unable to allocate enough
9772 * memory this function will return ENOMEM. If the queue create mailbox command
9773 * fails this function will return ENXIO.
9774 **/
9775uint32_t
9776lpfc_wq_create(struct lpfc_hba *phba, struct lpfc_queue *wq,
9777 struct lpfc_queue *cq, uint32_t subtype)
9778{
9779 struct lpfc_mbx_wq_create *wq_create;
9780 struct lpfc_dmabuf *dmabuf;
9781 LPFC_MBOXQ_t *mbox;
9782 int rc, length, status = 0;
9783 uint32_t shdr_status, shdr_add_status;
9784 union lpfc_sli4_cfg_shdr *shdr;
9785
9786 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
9787 if (!mbox)
9788 return -ENOMEM;
9789 length = (sizeof(struct lpfc_mbx_wq_create) -
9790 sizeof(struct lpfc_sli4_cfg_mhdr));
9791 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
9792 LPFC_MBOX_OPCODE_FCOE_WQ_CREATE,
9793 length, LPFC_SLI4_MBX_EMBED);
9794 wq_create = &mbox->u.mqe.un.wq_create;
9795 bf_set(lpfc_mbx_wq_create_num_pages, &wq_create->u.request,
9796 wq->page_count);
9797 bf_set(lpfc_mbx_wq_create_cq_id, &wq_create->u.request,
9798 cq->queue_id);
9799 list_for_each_entry(dmabuf, &wq->page_list, list) {
9800 wq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
9801 putPaddrLow(dmabuf->phys);
9802 wq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
9803 putPaddrHigh(dmabuf->phys);
9804 }
9805 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
9806 /* The IOCTL status is embedded in the mailbox subheader. */
9807 shdr = (union lpfc_sli4_cfg_shdr *) &wq_create->header.cfg_shdr;
9808 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
9809 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
9810 if (shdr_status || shdr_add_status || rc) {
9811 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9812 "2503 WQ_CREATE mailbox failed with "
9813 "status x%x add_status x%x, mbx status x%x\n",
9814 shdr_status, shdr_add_status, rc);
9815 status = -ENXIO;
9816 goto out;
9817 }
9818 wq->queue_id = bf_get(lpfc_mbx_wq_create_q_id, &wq_create->u.response);
9819 if (wq->queue_id == 0xFFFF) {
9820 status = -ENXIO;
9821 goto out;
9822 }
9823 wq->type = LPFC_WQ;
9824 wq->subtype = subtype;
9825 wq->host_index = 0;
9826 wq->hba_index = 0;
9827
9828 /* link the wq onto the parent cq child list */
9829 list_add_tail(&wq->list, &cq->child_list);
9830out:
8fa38513 9831 mempool_free(mbox, phba->mbox_mem_pool);
4f774513
JS
9832 return status;
9833}
9834
9835/**
9836 * lpfc_rq_create - Create a Receive Queue on the HBA
9837 * @phba: HBA structure that indicates port to create a queue on.
9838 * @hrq: The queue structure to use to create the header receive queue.
9839 * @drq: The queue structure to use to create the data receive queue.
9840 * @cq: The completion queue to bind this work queue to.
9841 *
9842 * This function creates a receive buffer queue pair , as detailed in @hrq and
9843 * @drq, on a port, described by @phba by sending a RQ_CREATE mailbox command
9844 * to the HBA.
9845 *
9846 * The @phba struct is used to send mailbox command to HBA. The @drq and @hrq
9847 * struct is used to get the entry count that is necessary to determine the
9848 * number of pages to use for this queue. The @cq is used to indicate which
9849 * completion queue to bind received buffers that are posted to these queues to.
9850 * This function will send the RQ_CREATE mailbox command to the HBA to setup the
9851 * receive queue pair. This function is asynchronous and will wait for the
9852 * mailbox command to finish before continuing.
9853 *
9854 * On success this function will return a zero. If unable to allocate enough
9855 * memory this function will return ENOMEM. If the queue create mailbox command
9856 * fails this function will return ENXIO.
9857 **/
9858uint32_t
9859lpfc_rq_create(struct lpfc_hba *phba, struct lpfc_queue *hrq,
9860 struct lpfc_queue *drq, struct lpfc_queue *cq, uint32_t subtype)
9861{
9862 struct lpfc_mbx_rq_create *rq_create;
9863 struct lpfc_dmabuf *dmabuf;
9864 LPFC_MBOXQ_t *mbox;
9865 int rc, length, status = 0;
9866 uint32_t shdr_status, shdr_add_status;
9867 union lpfc_sli4_cfg_shdr *shdr;
9868
9869 if (hrq->entry_count != drq->entry_count)
9870 return -EINVAL;
9871 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
9872 if (!mbox)
9873 return -ENOMEM;
9874 length = (sizeof(struct lpfc_mbx_rq_create) -
9875 sizeof(struct lpfc_sli4_cfg_mhdr));
9876 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
9877 LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
9878 length, LPFC_SLI4_MBX_EMBED);
9879 rq_create = &mbox->u.mqe.un.rq_create;
9880 switch (hrq->entry_count) {
9881 default:
9882 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
9883 "2535 Unsupported RQ count. (%d)\n",
9884 hrq->entry_count);
9885 if (hrq->entry_count < 512)
9886 return -EINVAL;
9887 /* otherwise default to smallest count (drop through) */
9888 case 512:
9889 bf_set(lpfc_rq_context_rq_size, &rq_create->u.request.context,
9890 LPFC_RQ_RING_SIZE_512);
9891 break;
9892 case 1024:
9893 bf_set(lpfc_rq_context_rq_size, &rq_create->u.request.context,
9894 LPFC_RQ_RING_SIZE_1024);
9895 break;
9896 case 2048:
9897 bf_set(lpfc_rq_context_rq_size, &rq_create->u.request.context,
9898 LPFC_RQ_RING_SIZE_2048);
9899 break;
9900 case 4096:
9901 bf_set(lpfc_rq_context_rq_size, &rq_create->u.request.context,
9902 LPFC_RQ_RING_SIZE_4096);
9903 break;
9904 }
9905 bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
9906 cq->queue_id);
9907 bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
9908 hrq->page_count);
9909 bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
9910 LPFC_HDR_BUF_SIZE);
9911 list_for_each_entry(dmabuf, &hrq->page_list, list) {
9912 rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
9913 putPaddrLow(dmabuf->phys);
9914 rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
9915 putPaddrHigh(dmabuf->phys);
9916 }
9917 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
9918 /* The IOCTL status is embedded in the mailbox subheader. */
9919 shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
9920 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
9921 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
9922 if (shdr_status || shdr_add_status || rc) {
9923 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9924 "2504 RQ_CREATE mailbox failed with "
9925 "status x%x add_status x%x, mbx status x%x\n",
9926 shdr_status, shdr_add_status, rc);
9927 status = -ENXIO;
9928 goto out;
9929 }
9930 hrq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
9931 if (hrq->queue_id == 0xFFFF) {
9932 status = -ENXIO;
9933 goto out;
9934 }
9935 hrq->type = LPFC_HRQ;
9936 hrq->subtype = subtype;
9937 hrq->host_index = 0;
9938 hrq->hba_index = 0;
9939
9940 /* now create the data queue */
9941 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
9942 LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
9943 length, LPFC_SLI4_MBX_EMBED);
9944 switch (drq->entry_count) {
9945 default:
9946 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
9947 "2536 Unsupported RQ count. (%d)\n",
9948 drq->entry_count);
9949 if (drq->entry_count < 512)
9950 return -EINVAL;
9951 /* otherwise default to smallest count (drop through) */
9952 case 512:
9953 bf_set(lpfc_rq_context_rq_size, &rq_create->u.request.context,
9954 LPFC_RQ_RING_SIZE_512);
9955 break;
9956 case 1024:
9957 bf_set(lpfc_rq_context_rq_size, &rq_create->u.request.context,
9958 LPFC_RQ_RING_SIZE_1024);
9959 break;
9960 case 2048:
9961 bf_set(lpfc_rq_context_rq_size, &rq_create->u.request.context,
9962 LPFC_RQ_RING_SIZE_2048);
9963 break;
9964 case 4096:
9965 bf_set(lpfc_rq_context_rq_size, &rq_create->u.request.context,
9966 LPFC_RQ_RING_SIZE_4096);
9967 break;
9968 }
9969 bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
9970 cq->queue_id);
9971 bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
9972 drq->page_count);
9973 bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
9974 LPFC_DATA_BUF_SIZE);
9975 list_for_each_entry(dmabuf, &drq->page_list, list) {
9976 rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
9977 putPaddrLow(dmabuf->phys);
9978 rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
9979 putPaddrHigh(dmabuf->phys);
9980 }
9981 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
9982 /* The IOCTL status is embedded in the mailbox subheader. */
9983 shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
9984 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
9985 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
9986 if (shdr_status || shdr_add_status || rc) {
9987 status = -ENXIO;
9988 goto out;
9989 }
9990 drq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
9991 if (drq->queue_id == 0xFFFF) {
9992 status = -ENXIO;
9993 goto out;
9994 }
9995 drq->type = LPFC_DRQ;
9996 drq->subtype = subtype;
9997 drq->host_index = 0;
9998 drq->hba_index = 0;
9999
10000 /* link the header and data RQs onto the parent cq child list */
10001 list_add_tail(&hrq->list, &cq->child_list);
10002 list_add_tail(&drq->list, &cq->child_list);
10003
10004out:
8fa38513 10005 mempool_free(mbox, phba->mbox_mem_pool);
4f774513
JS
10006 return status;
10007}
10008
10009/**
10010 * lpfc_eq_destroy - Destroy an event Queue on the HBA
10011 * @eq: The queue structure associated with the queue to destroy.
10012 *
10013 * This function destroys a queue, as detailed in @eq by sending an mailbox
10014 * command, specific to the type of queue, to the HBA.
10015 *
10016 * The @eq struct is used to get the queue ID of the queue to destroy.
10017 *
10018 * On success this function will return a zero. If the queue destroy mailbox
10019 * command fails this function will return ENXIO.
10020 **/
10021uint32_t
10022lpfc_eq_destroy(struct lpfc_hba *phba, struct lpfc_queue *eq)
10023{
10024 LPFC_MBOXQ_t *mbox;
10025 int rc, length, status = 0;
10026 uint32_t shdr_status, shdr_add_status;
10027 union lpfc_sli4_cfg_shdr *shdr;
10028
10029 if (!eq)
10030 return -ENODEV;
10031 mbox = mempool_alloc(eq->phba->mbox_mem_pool, GFP_KERNEL);
10032 if (!mbox)
10033 return -ENOMEM;
10034 length = (sizeof(struct lpfc_mbx_eq_destroy) -
10035 sizeof(struct lpfc_sli4_cfg_mhdr));
10036 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
10037 LPFC_MBOX_OPCODE_EQ_DESTROY,
10038 length, LPFC_SLI4_MBX_EMBED);
10039 bf_set(lpfc_mbx_eq_destroy_q_id, &mbox->u.mqe.un.eq_destroy.u.request,
10040 eq->queue_id);
10041 mbox->vport = eq->phba->pport;
10042 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
10043
10044 rc = lpfc_sli_issue_mbox(eq->phba, mbox, MBX_POLL);
10045 /* The IOCTL status is embedded in the mailbox subheader. */
10046 shdr = (union lpfc_sli4_cfg_shdr *)
10047 &mbox->u.mqe.un.eq_destroy.header.cfg_shdr;
10048 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
10049 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
10050 if (shdr_status || shdr_add_status || rc) {
10051 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10052 "2505 EQ_DESTROY mailbox failed with "
10053 "status x%x add_status x%x, mbx status x%x\n",
10054 shdr_status, shdr_add_status, rc);
10055 status = -ENXIO;
10056 }
10057
10058 /* Remove eq from any list */
10059 list_del_init(&eq->list);
8fa38513 10060 mempool_free(mbox, eq->phba->mbox_mem_pool);
4f774513
JS
10061 return status;
10062}
10063
10064/**
10065 * lpfc_cq_destroy - Destroy a Completion Queue on the HBA
10066 * @cq: The queue structure associated with the queue to destroy.
10067 *
10068 * This function destroys a queue, as detailed in @cq by sending an mailbox
10069 * command, specific to the type of queue, to the HBA.
10070 *
10071 * The @cq struct is used to get the queue ID of the queue to destroy.
10072 *
10073 * On success this function will return a zero. If the queue destroy mailbox
10074 * command fails this function will return ENXIO.
10075 **/
10076uint32_t
10077lpfc_cq_destroy(struct lpfc_hba *phba, struct lpfc_queue *cq)
10078{
10079 LPFC_MBOXQ_t *mbox;
10080 int rc, length, status = 0;
10081 uint32_t shdr_status, shdr_add_status;
10082 union lpfc_sli4_cfg_shdr *shdr;
10083
10084 if (!cq)
10085 return -ENODEV;
10086 mbox = mempool_alloc(cq->phba->mbox_mem_pool, GFP_KERNEL);
10087 if (!mbox)
10088 return -ENOMEM;
10089 length = (sizeof(struct lpfc_mbx_cq_destroy) -
10090 sizeof(struct lpfc_sli4_cfg_mhdr));
10091 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
10092 LPFC_MBOX_OPCODE_CQ_DESTROY,
10093 length, LPFC_SLI4_MBX_EMBED);
10094 bf_set(lpfc_mbx_cq_destroy_q_id, &mbox->u.mqe.un.cq_destroy.u.request,
10095 cq->queue_id);
10096 mbox->vport = cq->phba->pport;
10097 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
10098 rc = lpfc_sli_issue_mbox(cq->phba, mbox, MBX_POLL);
10099 /* The IOCTL status is embedded in the mailbox subheader. */
10100 shdr = (union lpfc_sli4_cfg_shdr *)
10101 &mbox->u.mqe.un.wq_create.header.cfg_shdr;
10102 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
10103 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
10104 if (shdr_status || shdr_add_status || rc) {
10105 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10106 "2506 CQ_DESTROY mailbox failed with "
10107 "status x%x add_status x%x, mbx status x%x\n",
10108 shdr_status, shdr_add_status, rc);
10109 status = -ENXIO;
10110 }
10111 /* Remove cq from any list */
10112 list_del_init(&cq->list);
8fa38513 10113 mempool_free(mbox, cq->phba->mbox_mem_pool);
4f774513
JS
10114 return status;
10115}
10116
04c68496
JS
10117/**
10118 * lpfc_mq_destroy - Destroy a Mailbox Queue on the HBA
10119 * @qm: The queue structure associated with the queue to destroy.
10120 *
10121 * This function destroys a queue, as detailed in @mq by sending an mailbox
10122 * command, specific to the type of queue, to the HBA.
10123 *
10124 * The @mq struct is used to get the queue ID of the queue to destroy.
10125 *
10126 * On success this function will return a zero. If the queue destroy mailbox
10127 * command fails this function will return ENXIO.
10128 **/
10129uint32_t
10130lpfc_mq_destroy(struct lpfc_hba *phba, struct lpfc_queue *mq)
10131{
10132 LPFC_MBOXQ_t *mbox;
10133 int rc, length, status = 0;
10134 uint32_t shdr_status, shdr_add_status;
10135 union lpfc_sli4_cfg_shdr *shdr;
10136
10137 if (!mq)
10138 return -ENODEV;
10139 mbox = mempool_alloc(mq->phba->mbox_mem_pool, GFP_KERNEL);
10140 if (!mbox)
10141 return -ENOMEM;
10142 length = (sizeof(struct lpfc_mbx_mq_destroy) -
10143 sizeof(struct lpfc_sli4_cfg_mhdr));
10144 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
10145 LPFC_MBOX_OPCODE_MQ_DESTROY,
10146 length, LPFC_SLI4_MBX_EMBED);
10147 bf_set(lpfc_mbx_mq_destroy_q_id, &mbox->u.mqe.un.mq_destroy.u.request,
10148 mq->queue_id);
10149 mbox->vport = mq->phba->pport;
10150 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
10151 rc = lpfc_sli_issue_mbox(mq->phba, mbox, MBX_POLL);
10152 /* The IOCTL status is embedded in the mailbox subheader. */
10153 shdr = (union lpfc_sli4_cfg_shdr *)
10154 &mbox->u.mqe.un.mq_destroy.header.cfg_shdr;
10155 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
10156 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
10157 if (shdr_status || shdr_add_status || rc) {
10158 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10159 "2507 MQ_DESTROY mailbox failed with "
10160 "status x%x add_status x%x, mbx status x%x\n",
10161 shdr_status, shdr_add_status, rc);
10162 status = -ENXIO;
10163 }
10164 /* Remove mq from any list */
10165 list_del_init(&mq->list);
8fa38513 10166 mempool_free(mbox, mq->phba->mbox_mem_pool);
04c68496
JS
10167 return status;
10168}
10169
4f774513
JS
10170/**
10171 * lpfc_wq_destroy - Destroy a Work Queue on the HBA
10172 * @wq: The queue structure associated with the queue to destroy.
10173 *
10174 * This function destroys a queue, as detailed in @wq by sending an mailbox
10175 * command, specific to the type of queue, to the HBA.
10176 *
10177 * The @wq struct is used to get the queue ID of the queue to destroy.
10178 *
10179 * On success this function will return a zero. If the queue destroy mailbox
10180 * command fails this function will return ENXIO.
10181 **/
10182uint32_t
10183lpfc_wq_destroy(struct lpfc_hba *phba, struct lpfc_queue *wq)
10184{
10185 LPFC_MBOXQ_t *mbox;
10186 int rc, length, status = 0;
10187 uint32_t shdr_status, shdr_add_status;
10188 union lpfc_sli4_cfg_shdr *shdr;
10189
10190 if (!wq)
10191 return -ENODEV;
10192 mbox = mempool_alloc(wq->phba->mbox_mem_pool, GFP_KERNEL);
10193 if (!mbox)
10194 return -ENOMEM;
10195 length = (sizeof(struct lpfc_mbx_wq_destroy) -
10196 sizeof(struct lpfc_sli4_cfg_mhdr));
10197 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
10198 LPFC_MBOX_OPCODE_FCOE_WQ_DESTROY,
10199 length, LPFC_SLI4_MBX_EMBED);
10200 bf_set(lpfc_mbx_wq_destroy_q_id, &mbox->u.mqe.un.wq_destroy.u.request,
10201 wq->queue_id);
10202 mbox->vport = wq->phba->pport;
10203 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
10204 rc = lpfc_sli_issue_mbox(wq->phba, mbox, MBX_POLL);
10205 shdr = (union lpfc_sli4_cfg_shdr *)
10206 &mbox->u.mqe.un.wq_destroy.header.cfg_shdr;
10207 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
10208 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
10209 if (shdr_status || shdr_add_status || rc) {
10210 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10211 "2508 WQ_DESTROY mailbox failed with "
10212 "status x%x add_status x%x, mbx status x%x\n",
10213 shdr_status, shdr_add_status, rc);
10214 status = -ENXIO;
10215 }
10216 /* Remove wq from any list */
10217 list_del_init(&wq->list);
8fa38513 10218 mempool_free(mbox, wq->phba->mbox_mem_pool);
4f774513
JS
10219 return status;
10220}
10221
10222/**
10223 * lpfc_rq_destroy - Destroy a Receive Queue on the HBA
10224 * @rq: The queue structure associated with the queue to destroy.
10225 *
10226 * This function destroys a queue, as detailed in @rq by sending an mailbox
10227 * command, specific to the type of queue, to the HBA.
10228 *
10229 * The @rq struct is used to get the queue ID of the queue to destroy.
10230 *
10231 * On success this function will return a zero. If the queue destroy mailbox
10232 * command fails this function will return ENXIO.
10233 **/
10234uint32_t
10235lpfc_rq_destroy(struct lpfc_hba *phba, struct lpfc_queue *hrq,
10236 struct lpfc_queue *drq)
10237{
10238 LPFC_MBOXQ_t *mbox;
10239 int rc, length, status = 0;
10240 uint32_t shdr_status, shdr_add_status;
10241 union lpfc_sli4_cfg_shdr *shdr;
10242
10243 if (!hrq || !drq)
10244 return -ENODEV;
10245 mbox = mempool_alloc(hrq->phba->mbox_mem_pool, GFP_KERNEL);
10246 if (!mbox)
10247 return -ENOMEM;
10248 length = (sizeof(struct lpfc_mbx_rq_destroy) -
10249 sizeof(struct mbox_header));
10250 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
10251 LPFC_MBOX_OPCODE_FCOE_RQ_DESTROY,
10252 length, LPFC_SLI4_MBX_EMBED);
10253 bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
10254 hrq->queue_id);
10255 mbox->vport = hrq->phba->pport;
10256 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
10257 rc = lpfc_sli_issue_mbox(hrq->phba, mbox, MBX_POLL);
10258 /* The IOCTL status is embedded in the mailbox subheader. */
10259 shdr = (union lpfc_sli4_cfg_shdr *)
10260 &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
10261 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
10262 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
10263 if (shdr_status || shdr_add_status || rc) {
10264 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10265 "2509 RQ_DESTROY mailbox failed with "
10266 "status x%x add_status x%x, mbx status x%x\n",
10267 shdr_status, shdr_add_status, rc);
10268 if (rc != MBX_TIMEOUT)
10269 mempool_free(mbox, hrq->phba->mbox_mem_pool);
10270 return -ENXIO;
10271 }
10272 bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
10273 drq->queue_id);
10274 rc = lpfc_sli_issue_mbox(drq->phba, mbox, MBX_POLL);
10275 shdr = (union lpfc_sli4_cfg_shdr *)
10276 &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
10277 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
10278 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
10279 if (shdr_status || shdr_add_status || rc) {
10280 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10281 "2510 RQ_DESTROY mailbox failed with "
10282 "status x%x add_status x%x, mbx status x%x\n",
10283 shdr_status, shdr_add_status, rc);
10284 status = -ENXIO;
10285 }
10286 list_del_init(&hrq->list);
10287 list_del_init(&drq->list);
8fa38513 10288 mempool_free(mbox, hrq->phba->mbox_mem_pool);
4f774513
JS
10289 return status;
10290}
10291
10292/**
10293 * lpfc_sli4_post_sgl - Post scatter gather list for an XRI to HBA
10294 * @phba: The virtual port for which this call being executed.
10295 * @pdma_phys_addr0: Physical address of the 1st SGL page.
10296 * @pdma_phys_addr1: Physical address of the 2nd SGL page.
10297 * @xritag: the xritag that ties this io to the SGL pages.
10298 *
10299 * This routine will post the sgl pages for the IO that has the xritag
10300 * that is in the iocbq structure. The xritag is assigned during iocbq
10301 * creation and persists for as long as the driver is loaded.
10302 * if the caller has fewer than 256 scatter gather segments to map then
10303 * pdma_phys_addr1 should be 0.
10304 * If the caller needs to map more than 256 scatter gather segment then
10305 * pdma_phys_addr1 should be a valid physical address.
10306 * physical address for SGLs must be 64 byte aligned.
10307 * If you are going to map 2 SGL's then the first one must have 256 entries
10308 * the second sgl can have between 1 and 256 entries.
10309 *
10310 * Return codes:
10311 * 0 - Success
10312 * -ENXIO, -ENOMEM - Failure
10313 **/
10314int
10315lpfc_sli4_post_sgl(struct lpfc_hba *phba,
10316 dma_addr_t pdma_phys_addr0,
10317 dma_addr_t pdma_phys_addr1,
10318 uint16_t xritag)
10319{
10320 struct lpfc_mbx_post_sgl_pages *post_sgl_pages;
10321 LPFC_MBOXQ_t *mbox;
10322 int rc;
10323 uint32_t shdr_status, shdr_add_status;
10324 union lpfc_sli4_cfg_shdr *shdr;
10325
10326 if (xritag == NO_XRI) {
10327 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
10328 "0364 Invalid param:\n");
10329 return -EINVAL;
10330 }
10331
10332 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
10333 if (!mbox)
10334 return -ENOMEM;
10335
10336 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
10337 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES,
10338 sizeof(struct lpfc_mbx_post_sgl_pages) -
10339 sizeof(struct mbox_header), LPFC_SLI4_MBX_EMBED);
10340
10341 post_sgl_pages = (struct lpfc_mbx_post_sgl_pages *)
10342 &mbox->u.mqe.un.post_sgl_pages;
10343 bf_set(lpfc_post_sgl_pages_xri, post_sgl_pages, xritag);
10344 bf_set(lpfc_post_sgl_pages_xricnt, post_sgl_pages, 1);
10345
10346 post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_lo =
10347 cpu_to_le32(putPaddrLow(pdma_phys_addr0));
10348 post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_hi =
10349 cpu_to_le32(putPaddrHigh(pdma_phys_addr0));
10350
10351 post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_lo =
10352 cpu_to_le32(putPaddrLow(pdma_phys_addr1));
10353 post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_hi =
10354 cpu_to_le32(putPaddrHigh(pdma_phys_addr1));
10355 if (!phba->sli4_hba.intr_enable)
10356 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
10357 else
10358 rc = lpfc_sli_issue_mbox_wait(phba, mbox, LPFC_MBOX_TMO);
10359 /* The IOCTL status is embedded in the mailbox subheader. */
10360 shdr = (union lpfc_sli4_cfg_shdr *) &post_sgl_pages->header.cfg_shdr;
10361 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
10362 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
10363 if (rc != MBX_TIMEOUT)
10364 mempool_free(mbox, phba->mbox_mem_pool);
10365 if (shdr_status || shdr_add_status || rc) {
10366 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10367 "2511 POST_SGL mailbox failed with "
10368 "status x%x add_status x%x, mbx status x%x\n",
10369 shdr_status, shdr_add_status, rc);
10370 rc = -ENXIO;
10371 }
10372 return 0;
10373}
10374/**
10375 * lpfc_sli4_remove_all_sgl_pages - Post scatter gather list for an XRI to HBA
10376 * @phba: The virtual port for which this call being executed.
10377 *
10378 * This routine will remove all of the sgl pages registered with the hba.
10379 *
10380 * Return codes:
10381 * 0 - Success
10382 * -ENXIO, -ENOMEM - Failure
10383 **/
10384int
10385lpfc_sli4_remove_all_sgl_pages(struct lpfc_hba *phba)
10386{
10387 LPFC_MBOXQ_t *mbox;
10388 int rc;
10389 uint32_t shdr_status, shdr_add_status;
10390 union lpfc_sli4_cfg_shdr *shdr;
10391
10392 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
10393 if (!mbox)
10394 return -ENOMEM;
10395
10396 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
10397 LPFC_MBOX_OPCODE_FCOE_REMOVE_SGL_PAGES, 0,
10398 LPFC_SLI4_MBX_EMBED);
10399 if (!phba->sli4_hba.intr_enable)
10400 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
10401 else
10402 rc = lpfc_sli_issue_mbox_wait(phba, mbox, LPFC_MBOX_TMO);
10403 /* The IOCTL status is embedded in the mailbox subheader. */
10404 shdr = (union lpfc_sli4_cfg_shdr *)
10405 &mbox->u.mqe.un.sli4_config.header.cfg_shdr;
10406 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
10407 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
10408 if (rc != MBX_TIMEOUT)
10409 mempool_free(mbox, phba->mbox_mem_pool);
10410 if (shdr_status || shdr_add_status || rc) {
10411 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10412 "2512 REMOVE_ALL_SGL_PAGES mailbox failed with "
10413 "status x%x add_status x%x, mbx status x%x\n",
10414 shdr_status, shdr_add_status, rc);
10415 rc = -ENXIO;
10416 }
10417 return rc;
10418}
10419
10420/**
10421 * lpfc_sli4_next_xritag - Get an xritag for the io
10422 * @phba: Pointer to HBA context object.
10423 *
10424 * This function gets an xritag for the iocb. If there is no unused xritag
10425 * it will return 0xffff.
10426 * The function returns the allocated xritag if successful, else returns zero.
10427 * Zero is not a valid xritag.
10428 * The caller is not required to hold any lock.
10429 **/
10430uint16_t
10431lpfc_sli4_next_xritag(struct lpfc_hba *phba)
10432{
10433 uint16_t xritag;
10434
10435 spin_lock_irq(&phba->hbalock);
10436 xritag = phba->sli4_hba.next_xri;
10437 if ((xritag != (uint16_t) -1) && xritag <
10438 (phba->sli4_hba.max_cfg_param.max_xri
10439 + phba->sli4_hba.max_cfg_param.xri_base)) {
10440 phba->sli4_hba.next_xri++;
10441 phba->sli4_hba.max_cfg_param.xri_used++;
10442 spin_unlock_irq(&phba->hbalock);
10443 return xritag;
10444 }
10445 spin_unlock_irq(&phba->hbalock);
6a9c52cf 10446 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
4f774513
JS
10447 "2004 Failed to allocate XRI.last XRITAG is %d"
10448 " Max XRI is %d, Used XRI is %d\n",
10449 phba->sli4_hba.next_xri,
10450 phba->sli4_hba.max_cfg_param.max_xri,
10451 phba->sli4_hba.max_cfg_param.xri_used);
10452 return -1;
10453}
10454
10455/**
10456 * lpfc_sli4_post_sgl_list - post a block of sgl list to the firmware.
10457 * @phba: pointer to lpfc hba data structure.
10458 *
10459 * This routine is invoked to post a block of driver's sgl pages to the
10460 * HBA using non-embedded mailbox command. No Lock is held. This routine
10461 * is only called when the driver is loading and after all IO has been
10462 * stopped.
10463 **/
10464int
10465lpfc_sli4_post_sgl_list(struct lpfc_hba *phba)
10466{
10467 struct lpfc_sglq *sglq_entry;
10468 struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
10469 struct sgl_page_pairs *sgl_pg_pairs;
10470 void *viraddr;
10471 LPFC_MBOXQ_t *mbox;
10472 uint32_t reqlen, alloclen, pg_pairs;
10473 uint32_t mbox_tmo;
10474 uint16_t xritag_start = 0;
10475 int els_xri_cnt, rc = 0;
10476 uint32_t shdr_status, shdr_add_status;
10477 union lpfc_sli4_cfg_shdr *shdr;
10478
10479 /* The number of sgls to be posted */
10480 els_xri_cnt = lpfc_sli4_get_els_iocb_cnt(phba);
10481
10482 reqlen = els_xri_cnt * sizeof(struct sgl_page_pairs) +
10483 sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
10484 if (reqlen > PAGE_SIZE) {
10485 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
10486 "2559 Block sgl registration required DMA "
10487 "size (%d) great than a page\n", reqlen);
10488 return -ENOMEM;
10489 }
10490 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
10491 if (!mbox) {
10492 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10493 "2560 Failed to allocate mbox cmd memory\n");
10494 return -ENOMEM;
10495 }
10496
10497 /* Allocate DMA memory and set up the non-embedded mailbox command */
10498 alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
10499 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
10500 LPFC_SLI4_MBX_NEMBED);
10501
10502 if (alloclen < reqlen) {
10503 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10504 "0285 Allocated DMA memory size (%d) is "
10505 "less than the requested DMA memory "
10506 "size (%d)\n", alloclen, reqlen);
10507 lpfc_sli4_mbox_cmd_free(phba, mbox);
10508 return -ENOMEM;
10509 }
4f774513 10510 /* Get the first SGE entry from the non-embedded DMA memory */
4f774513
JS
10511 viraddr = mbox->sge_array->addr[0];
10512
10513 /* Set up the SGL pages in the non-embedded DMA pages */
10514 sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
10515 sgl_pg_pairs = &sgl->sgl_pg_pairs;
10516
10517 for (pg_pairs = 0; pg_pairs < els_xri_cnt; pg_pairs++) {
10518 sglq_entry = phba->sli4_hba.lpfc_els_sgl_array[pg_pairs];
10519 /* Set up the sge entry */
10520 sgl_pg_pairs->sgl_pg0_addr_lo =
10521 cpu_to_le32(putPaddrLow(sglq_entry->phys));
10522 sgl_pg_pairs->sgl_pg0_addr_hi =
10523 cpu_to_le32(putPaddrHigh(sglq_entry->phys));
10524 sgl_pg_pairs->sgl_pg1_addr_lo =
10525 cpu_to_le32(putPaddrLow(0));
10526 sgl_pg_pairs->sgl_pg1_addr_hi =
10527 cpu_to_le32(putPaddrHigh(0));
10528 /* Keep the first xritag on the list */
10529 if (pg_pairs == 0)
10530 xritag_start = sglq_entry->sli4_xritag;
10531 sgl_pg_pairs++;
10532 }
10533 bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
6a9c52cf 10534 bf_set(lpfc_post_sgl_pages_xricnt, sgl, els_xri_cnt);
4f774513
JS
10535 /* Perform endian conversion if necessary */
10536 sgl->word0 = cpu_to_le32(sgl->word0);
10537
10538 if (!phba->sli4_hba.intr_enable)
10539 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
10540 else {
10541 mbox_tmo = lpfc_mbox_tmo_val(phba, MBX_SLI4_CONFIG);
10542 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
10543 }
10544 shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
10545 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
10546 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
10547 if (rc != MBX_TIMEOUT)
10548 lpfc_sli4_mbox_cmd_free(phba, mbox);
10549 if (shdr_status || shdr_add_status || rc) {
10550 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
10551 "2513 POST_SGL_BLOCK mailbox command failed "
10552 "status x%x add_status x%x mbx status x%x\n",
10553 shdr_status, shdr_add_status, rc);
10554 rc = -ENXIO;
10555 }
10556 return rc;
10557}
10558
10559/**
10560 * lpfc_sli4_post_scsi_sgl_block - post a block of scsi sgl list to firmware
10561 * @phba: pointer to lpfc hba data structure.
10562 * @sblist: pointer to scsi buffer list.
10563 * @count: number of scsi buffers on the list.
10564 *
10565 * This routine is invoked to post a block of @count scsi sgl pages from a
10566 * SCSI buffer list @sblist to the HBA using non-embedded mailbox command.
10567 * No Lock is held.
10568 *
10569 **/
10570int
10571lpfc_sli4_post_scsi_sgl_block(struct lpfc_hba *phba, struct list_head *sblist,
10572 int cnt)
10573{
10574 struct lpfc_scsi_buf *psb;
10575 struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
10576 struct sgl_page_pairs *sgl_pg_pairs;
10577 void *viraddr;
10578 LPFC_MBOXQ_t *mbox;
10579 uint32_t reqlen, alloclen, pg_pairs;
10580 uint32_t mbox_tmo;
10581 uint16_t xritag_start = 0;
10582 int rc = 0;
10583 uint32_t shdr_status, shdr_add_status;
10584 dma_addr_t pdma_phys_bpl1;
10585 union lpfc_sli4_cfg_shdr *shdr;
10586
10587 /* Calculate the requested length of the dma memory */
10588 reqlen = cnt * sizeof(struct sgl_page_pairs) +
10589 sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
10590 if (reqlen > PAGE_SIZE) {
10591 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
10592 "0217 Block sgl registration required DMA "
10593 "size (%d) great than a page\n", reqlen);
10594 return -ENOMEM;
10595 }
10596 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
10597 if (!mbox) {
10598 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10599 "0283 Failed to allocate mbox cmd memory\n");
10600 return -ENOMEM;
10601 }
10602
10603 /* Allocate DMA memory and set up the non-embedded mailbox command */
10604 alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
10605 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
10606 LPFC_SLI4_MBX_NEMBED);
10607
10608 if (alloclen < reqlen) {
10609 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10610 "2561 Allocated DMA memory size (%d) is "
10611 "less than the requested DMA memory "
10612 "size (%d)\n", alloclen, reqlen);
10613 lpfc_sli4_mbox_cmd_free(phba, mbox);
10614 return -ENOMEM;
10615 }
4f774513 10616 /* Get the first SGE entry from the non-embedded DMA memory */
4f774513
JS
10617 viraddr = mbox->sge_array->addr[0];
10618
10619 /* Set up the SGL pages in the non-embedded DMA pages */
10620 sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
10621 sgl_pg_pairs = &sgl->sgl_pg_pairs;
10622
10623 pg_pairs = 0;
10624 list_for_each_entry(psb, sblist, list) {
10625 /* Set up the sge entry */
10626 sgl_pg_pairs->sgl_pg0_addr_lo =
10627 cpu_to_le32(putPaddrLow(psb->dma_phys_bpl));
10628 sgl_pg_pairs->sgl_pg0_addr_hi =
10629 cpu_to_le32(putPaddrHigh(psb->dma_phys_bpl));
10630 if (phba->cfg_sg_dma_buf_size > SGL_PAGE_SIZE)
10631 pdma_phys_bpl1 = psb->dma_phys_bpl + SGL_PAGE_SIZE;
10632 else
10633 pdma_phys_bpl1 = 0;
10634 sgl_pg_pairs->sgl_pg1_addr_lo =
10635 cpu_to_le32(putPaddrLow(pdma_phys_bpl1));
10636 sgl_pg_pairs->sgl_pg1_addr_hi =
10637 cpu_to_le32(putPaddrHigh(pdma_phys_bpl1));
10638 /* Keep the first xritag on the list */
10639 if (pg_pairs == 0)
10640 xritag_start = psb->cur_iocbq.sli4_xritag;
10641 sgl_pg_pairs++;
10642 pg_pairs++;
10643 }
10644 bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
10645 bf_set(lpfc_post_sgl_pages_xricnt, sgl, pg_pairs);
10646 /* Perform endian conversion if necessary */
10647 sgl->word0 = cpu_to_le32(sgl->word0);
10648
10649 if (!phba->sli4_hba.intr_enable)
10650 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
10651 else {
10652 mbox_tmo = lpfc_mbox_tmo_val(phba, MBX_SLI4_CONFIG);
10653 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
10654 }
10655 shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
10656 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
10657 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
10658 if (rc != MBX_TIMEOUT)
10659 lpfc_sli4_mbox_cmd_free(phba, mbox);
10660 if (shdr_status || shdr_add_status || rc) {
10661 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
10662 "2564 POST_SGL_BLOCK mailbox command failed "
10663 "status x%x add_status x%x mbx status x%x\n",
10664 shdr_status, shdr_add_status, rc);
10665 rc = -ENXIO;
10666 }
10667 return rc;
10668}
10669
10670/**
10671 * lpfc_fc_frame_check - Check that this frame is a valid frame to handle
10672 * @phba: pointer to lpfc_hba struct that the frame was received on
10673 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
10674 *
10675 * This function checks the fields in the @fc_hdr to see if the FC frame is a
10676 * valid type of frame that the LPFC driver will handle. This function will
10677 * return a zero if the frame is a valid frame or a non zero value when the
10678 * frame does not pass the check.
10679 **/
10680static int
10681lpfc_fc_frame_check(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr)
10682{
10683 char *rctl_names[] = FC_RCTL_NAMES_INIT;
10684 char *type_names[] = FC_TYPE_NAMES_INIT;
10685 struct fc_vft_header *fc_vft_hdr;
10686
10687 switch (fc_hdr->fh_r_ctl) {
10688 case FC_RCTL_DD_UNCAT: /* uncategorized information */
10689 case FC_RCTL_DD_SOL_DATA: /* solicited data */
10690 case FC_RCTL_DD_UNSOL_CTL: /* unsolicited control */
10691 case FC_RCTL_DD_SOL_CTL: /* solicited control or reply */
10692 case FC_RCTL_DD_UNSOL_DATA: /* unsolicited data */
10693 case FC_RCTL_DD_DATA_DESC: /* data descriptor */
10694 case FC_RCTL_DD_UNSOL_CMD: /* unsolicited command */
10695 case FC_RCTL_DD_CMD_STATUS: /* command status */
10696 case FC_RCTL_ELS_REQ: /* extended link services request */
10697 case FC_RCTL_ELS_REP: /* extended link services reply */
10698 case FC_RCTL_ELS4_REQ: /* FC-4 ELS request */
10699 case FC_RCTL_ELS4_REP: /* FC-4 ELS reply */
10700 case FC_RCTL_BA_NOP: /* basic link service NOP */
10701 case FC_RCTL_BA_ABTS: /* basic link service abort */
10702 case FC_RCTL_BA_RMC: /* remove connection */
10703 case FC_RCTL_BA_ACC: /* basic accept */
10704 case FC_RCTL_BA_RJT: /* basic reject */
10705 case FC_RCTL_BA_PRMT:
10706 case FC_RCTL_ACK_1: /* acknowledge_1 */
10707 case FC_RCTL_ACK_0: /* acknowledge_0 */
10708 case FC_RCTL_P_RJT: /* port reject */
10709 case FC_RCTL_F_RJT: /* fabric reject */
10710 case FC_RCTL_P_BSY: /* port busy */
10711 case FC_RCTL_F_BSY: /* fabric busy to data frame */
10712 case FC_RCTL_F_BSYL: /* fabric busy to link control frame */
10713 case FC_RCTL_LCR: /* link credit reset */
10714 case FC_RCTL_END: /* end */
10715 break;
10716 case FC_RCTL_VFTH: /* Virtual Fabric tagging Header */
10717 fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
10718 fc_hdr = &((struct fc_frame_header *)fc_vft_hdr)[1];
10719 return lpfc_fc_frame_check(phba, fc_hdr);
10720 default:
10721 goto drop;
10722 }
10723 switch (fc_hdr->fh_type) {
10724 case FC_TYPE_BLS:
10725 case FC_TYPE_ELS:
10726 case FC_TYPE_FCP:
10727 case FC_TYPE_CT:
10728 break;
10729 case FC_TYPE_IP:
10730 case FC_TYPE_ILS:
10731 default:
10732 goto drop;
10733 }
10734 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
10735 "2538 Received frame rctl:%s type:%s\n",
10736 rctl_names[fc_hdr->fh_r_ctl],
10737 type_names[fc_hdr->fh_type]);
10738 return 0;
10739drop:
10740 lpfc_printf_log(phba, KERN_WARNING, LOG_ELS,
10741 "2539 Dropped frame rctl:%s type:%s\n",
10742 rctl_names[fc_hdr->fh_r_ctl],
10743 type_names[fc_hdr->fh_type]);
10744 return 1;
10745}
10746
10747/**
10748 * lpfc_fc_hdr_get_vfi - Get the VFI from an FC frame
10749 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
10750 *
10751 * This function processes the FC header to retrieve the VFI from the VF
10752 * header, if one exists. This function will return the VFI if one exists
10753 * or 0 if no VSAN Header exists.
10754 **/
10755static uint32_t
10756lpfc_fc_hdr_get_vfi(struct fc_frame_header *fc_hdr)
10757{
10758 struct fc_vft_header *fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
10759
10760 if (fc_hdr->fh_r_ctl != FC_RCTL_VFTH)
10761 return 0;
10762 return bf_get(fc_vft_hdr_vf_id, fc_vft_hdr);
10763}
10764
10765/**
10766 * lpfc_fc_frame_to_vport - Finds the vport that a frame is destined to
10767 * @phba: Pointer to the HBA structure to search for the vport on
10768 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
10769 * @fcfi: The FC Fabric ID that the frame came from
10770 *
10771 * This function searches the @phba for a vport that matches the content of the
10772 * @fc_hdr passed in and the @fcfi. This function uses the @fc_hdr to fetch the
10773 * VFI, if the Virtual Fabric Tagging Header exists, and the DID. This function
10774 * returns the matching vport pointer or NULL if unable to match frame to a
10775 * vport.
10776 **/
10777static struct lpfc_vport *
10778lpfc_fc_frame_to_vport(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr,
10779 uint16_t fcfi)
10780{
10781 struct lpfc_vport **vports;
10782 struct lpfc_vport *vport = NULL;
10783 int i;
10784 uint32_t did = (fc_hdr->fh_d_id[0] << 16 |
10785 fc_hdr->fh_d_id[1] << 8 |
10786 fc_hdr->fh_d_id[2]);
10787
10788 vports = lpfc_create_vport_work_array(phba);
10789 if (vports != NULL)
10790 for (i = 0; i <= phba->max_vpi && vports[i] != NULL; i++) {
10791 if (phba->fcf.fcfi == fcfi &&
10792 vports[i]->vfi == lpfc_fc_hdr_get_vfi(fc_hdr) &&
10793 vports[i]->fc_myDID == did) {
10794 vport = vports[i];
10795 break;
10796 }
10797 }
10798 lpfc_destroy_vport_work_array(phba, vports);
10799 return vport;
10800}
10801
45ed1190
JS
10802/**
10803 * lpfc_update_rcv_time_stamp - Update vport's rcv seq time stamp
10804 * @vport: The vport to work on.
10805 *
10806 * This function updates the receive sequence time stamp for this vport. The
10807 * receive sequence time stamp indicates the time that the last frame of the
10808 * the sequence that has been idle for the longest amount of time was received.
10809 * the driver uses this time stamp to indicate if any received sequences have
10810 * timed out.
10811 **/
10812void
10813lpfc_update_rcv_time_stamp(struct lpfc_vport *vport)
10814{
10815 struct lpfc_dmabuf *h_buf;
10816 struct hbq_dmabuf *dmabuf = NULL;
10817
10818 /* get the oldest sequence on the rcv list */
10819 h_buf = list_get_first(&vport->rcv_buffer_list,
10820 struct lpfc_dmabuf, list);
10821 if (!h_buf)
10822 return;
10823 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
10824 vport->rcv_buffer_time_stamp = dmabuf->time_stamp;
10825}
10826
10827/**
10828 * lpfc_cleanup_rcv_buffers - Cleans up all outstanding receive sequences.
10829 * @vport: The vport that the received sequences were sent to.
10830 *
10831 * This function cleans up all outstanding received sequences. This is called
10832 * by the driver when a link event or user action invalidates all the received
10833 * sequences.
10834 **/
10835void
10836lpfc_cleanup_rcv_buffers(struct lpfc_vport *vport)
10837{
10838 struct lpfc_dmabuf *h_buf, *hnext;
10839 struct lpfc_dmabuf *d_buf, *dnext;
10840 struct hbq_dmabuf *dmabuf = NULL;
10841
10842 /* start with the oldest sequence on the rcv list */
10843 list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
10844 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
10845 list_del_init(&dmabuf->hbuf.list);
10846 list_for_each_entry_safe(d_buf, dnext,
10847 &dmabuf->dbuf.list, list) {
10848 list_del_init(&d_buf->list);
10849 lpfc_in_buf_free(vport->phba, d_buf);
10850 }
10851 lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
10852 }
10853}
10854
10855/**
10856 * lpfc_rcv_seq_check_edtov - Cleans up timed out receive sequences.
10857 * @vport: The vport that the received sequences were sent to.
10858 *
10859 * This function determines whether any received sequences have timed out by
10860 * first checking the vport's rcv_buffer_time_stamp. If this time_stamp
10861 * indicates that there is at least one timed out sequence this routine will
10862 * go through the received sequences one at a time from most inactive to most
10863 * active to determine which ones need to be cleaned up. Once it has determined
10864 * that a sequence needs to be cleaned up it will simply free up the resources
10865 * without sending an abort.
10866 **/
10867void
10868lpfc_rcv_seq_check_edtov(struct lpfc_vport *vport)
10869{
10870 struct lpfc_dmabuf *h_buf, *hnext;
10871 struct lpfc_dmabuf *d_buf, *dnext;
10872 struct hbq_dmabuf *dmabuf = NULL;
10873 unsigned long timeout;
10874 int abort_count = 0;
10875
10876 timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
10877 vport->rcv_buffer_time_stamp);
10878 if (list_empty(&vport->rcv_buffer_list) ||
10879 time_before(jiffies, timeout))
10880 return;
10881 /* start with the oldest sequence on the rcv list */
10882 list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
10883 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
10884 timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
10885 dmabuf->time_stamp);
10886 if (time_before(jiffies, timeout))
10887 break;
10888 abort_count++;
10889 list_del_init(&dmabuf->hbuf.list);
10890 list_for_each_entry_safe(d_buf, dnext,
10891 &dmabuf->dbuf.list, list) {
10892 list_del_init(&d_buf->list);
10893 lpfc_in_buf_free(vport->phba, d_buf);
10894 }
10895 lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
10896 }
10897 if (abort_count)
10898 lpfc_update_rcv_time_stamp(vport);
10899}
10900
4f774513
JS
10901/**
10902 * lpfc_fc_frame_add - Adds a frame to the vport's list of received sequences
10903 * @dmabuf: pointer to a dmabuf that describes the hdr and data of the FC frame
10904 *
10905 * This function searches through the existing incomplete sequences that have
10906 * been sent to this @vport. If the frame matches one of the incomplete
10907 * sequences then the dbuf in the @dmabuf is added to the list of frames that
10908 * make up that sequence. If no sequence is found that matches this frame then
10909 * the function will add the hbuf in the @dmabuf to the @vport's rcv_buffer_list
10910 * This function returns a pointer to the first dmabuf in the sequence list that
10911 * the frame was linked to.
10912 **/
10913static struct hbq_dmabuf *
10914lpfc_fc_frame_add(struct lpfc_vport *vport, struct hbq_dmabuf *dmabuf)
10915{
10916 struct fc_frame_header *new_hdr;
10917 struct fc_frame_header *temp_hdr;
10918 struct lpfc_dmabuf *d_buf;
10919 struct lpfc_dmabuf *h_buf;
10920 struct hbq_dmabuf *seq_dmabuf = NULL;
10921 struct hbq_dmabuf *temp_dmabuf = NULL;
10922
4d9ab994 10923 INIT_LIST_HEAD(&dmabuf->dbuf.list);
45ed1190 10924 dmabuf->time_stamp = jiffies;
4f774513
JS
10925 new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
10926 /* Use the hdr_buf to find the sequence that this frame belongs to */
10927 list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
10928 temp_hdr = (struct fc_frame_header *)h_buf->virt;
10929 if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
10930 (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
10931 (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
10932 continue;
10933 /* found a pending sequence that matches this frame */
10934 seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
10935 break;
10936 }
10937 if (!seq_dmabuf) {
10938 /*
10939 * This indicates first frame received for this sequence.
10940 * Queue the buffer on the vport's rcv_buffer_list.
10941 */
10942 list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
45ed1190 10943 lpfc_update_rcv_time_stamp(vport);
4f774513
JS
10944 return dmabuf;
10945 }
10946 temp_hdr = seq_dmabuf->hbuf.virt;
10947 if (new_hdr->fh_seq_cnt < temp_hdr->fh_seq_cnt) {
4d9ab994
JS
10948 list_del_init(&seq_dmabuf->hbuf.list);
10949 list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
10950 list_add_tail(&dmabuf->dbuf.list, &seq_dmabuf->dbuf.list);
45ed1190 10951 lpfc_update_rcv_time_stamp(vport);
4f774513
JS
10952 return dmabuf;
10953 }
45ed1190
JS
10954 /* move this sequence to the tail to indicate a young sequence */
10955 list_move_tail(&seq_dmabuf->hbuf.list, &vport->rcv_buffer_list);
10956 seq_dmabuf->time_stamp = jiffies;
10957 lpfc_update_rcv_time_stamp(vport);
4f774513
JS
10958 /* find the correct place in the sequence to insert this frame */
10959 list_for_each_entry_reverse(d_buf, &seq_dmabuf->dbuf.list, list) {
10960 temp_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
10961 temp_hdr = (struct fc_frame_header *)temp_dmabuf->hbuf.virt;
10962 /*
10963 * If the frame's sequence count is greater than the frame on
10964 * the list then insert the frame right after this frame
10965 */
10966 if (new_hdr->fh_seq_cnt > temp_hdr->fh_seq_cnt) {
10967 list_add(&dmabuf->dbuf.list, &temp_dmabuf->dbuf.list);
10968 return seq_dmabuf;
10969 }
10970 }
10971 return NULL;
10972}
10973
6669f9bb
JS
10974/**
10975 * lpfc_sli4_abort_partial_seq - Abort partially assembled unsol sequence
10976 * @vport: pointer to a vitural port
10977 * @dmabuf: pointer to a dmabuf that describes the FC sequence
10978 *
10979 * This function tries to abort from the partially assembed sequence, described
10980 * by the information from basic abbort @dmabuf. It checks to see whether such
10981 * partially assembled sequence held by the driver. If so, it shall free up all
10982 * the frames from the partially assembled sequence.
10983 *
10984 * Return
10985 * true -- if there is matching partially assembled sequence present and all
10986 * the frames freed with the sequence;
10987 * false -- if there is no matching partially assembled sequence present so
10988 * nothing got aborted in the lower layer driver
10989 **/
10990static bool
10991lpfc_sli4_abort_partial_seq(struct lpfc_vport *vport,
10992 struct hbq_dmabuf *dmabuf)
10993{
10994 struct fc_frame_header *new_hdr;
10995 struct fc_frame_header *temp_hdr;
10996 struct lpfc_dmabuf *d_buf, *n_buf, *h_buf;
10997 struct hbq_dmabuf *seq_dmabuf = NULL;
10998
10999 /* Use the hdr_buf to find the sequence that matches this frame */
11000 INIT_LIST_HEAD(&dmabuf->dbuf.list);
11001 INIT_LIST_HEAD(&dmabuf->hbuf.list);
11002 new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
11003 list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
11004 temp_hdr = (struct fc_frame_header *)h_buf->virt;
11005 if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
11006 (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
11007 (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
11008 continue;
11009 /* found a pending sequence that matches this frame */
11010 seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
11011 break;
11012 }
11013
11014 /* Free up all the frames from the partially assembled sequence */
11015 if (seq_dmabuf) {
11016 list_for_each_entry_safe(d_buf, n_buf,
11017 &seq_dmabuf->dbuf.list, list) {
11018 list_del_init(&d_buf->list);
11019 lpfc_in_buf_free(vport->phba, d_buf);
11020 }
11021 return true;
11022 }
11023 return false;
11024}
11025
11026/**
11027 * lpfc_sli4_seq_abort_acc_cmpl - Accept seq abort iocb complete handler
11028 * @phba: Pointer to HBA context object.
11029 * @cmd_iocbq: pointer to the command iocbq structure.
11030 * @rsp_iocbq: pointer to the response iocbq structure.
11031 *
11032 * This function handles the sequence abort accept iocb command complete
11033 * event. It properly releases the memory allocated to the sequence abort
11034 * accept iocb.
11035 **/
11036static void
11037lpfc_sli4_seq_abort_acc_cmpl(struct lpfc_hba *phba,
11038 struct lpfc_iocbq *cmd_iocbq,
11039 struct lpfc_iocbq *rsp_iocbq)
11040{
11041 if (cmd_iocbq)
11042 lpfc_sli_release_iocbq(phba, cmd_iocbq);
11043}
11044
11045/**
11046 * lpfc_sli4_seq_abort_acc - Accept sequence abort
11047 * @phba: Pointer to HBA context object.
11048 * @fc_hdr: pointer to a FC frame header.
11049 *
11050 * This function sends a basic accept to a previous unsol sequence abort
11051 * event after aborting the sequence handling.
11052 **/
11053static void
11054lpfc_sli4_seq_abort_acc(struct lpfc_hba *phba,
11055 struct fc_frame_header *fc_hdr)
11056{
11057 struct lpfc_iocbq *ctiocb = NULL;
11058 struct lpfc_nodelist *ndlp;
5ffc266e
JS
11059 uint16_t oxid, rxid;
11060 uint32_t sid, fctl;
6669f9bb
JS
11061 IOCB_t *icmd;
11062
11063 if (!lpfc_is_link_up(phba))
11064 return;
11065
11066 sid = sli4_sid_from_fc_hdr(fc_hdr);
11067 oxid = be16_to_cpu(fc_hdr->fh_ox_id);
5ffc266e 11068 rxid = be16_to_cpu(fc_hdr->fh_rx_id);
6669f9bb
JS
11069
11070 ndlp = lpfc_findnode_did(phba->pport, sid);
11071 if (!ndlp) {
11072 lpfc_printf_log(phba, KERN_WARNING, LOG_ELS,
11073 "1268 Find ndlp returned NULL for oxid:x%x "
11074 "SID:x%x\n", oxid, sid);
11075 return;
11076 }
11077
11078 /* Allocate buffer for acc iocb */
11079 ctiocb = lpfc_sli_get_iocbq(phba);
11080 if (!ctiocb)
11081 return;
11082
5ffc266e
JS
11083 /* Extract the F_CTL field from FC_HDR */
11084 fctl = sli4_fctl_from_fc_hdr(fc_hdr);
11085
6669f9bb 11086 icmd = &ctiocb->iocb;
6669f9bb 11087 icmd->un.xseq64.bdl.bdeSize = 0;
5ffc266e 11088 icmd->un.xseq64.bdl.ulpIoTag32 = 0;
6669f9bb
JS
11089 icmd->un.xseq64.w5.hcsw.Dfctl = 0;
11090 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_ACC;
11091 icmd->un.xseq64.w5.hcsw.Type = FC_TYPE_BLS;
11092
11093 /* Fill in the rest of iocb fields */
11094 icmd->ulpCommand = CMD_XMIT_BLS_RSP64_CX;
11095 icmd->ulpBdeCount = 0;
11096 icmd->ulpLe = 1;
11097 icmd->ulpClass = CLASS3;
11098 icmd->ulpContext = ndlp->nlp_rpi;
6669f9bb 11099
6669f9bb
JS
11100 ctiocb->iocb_cmpl = NULL;
11101 ctiocb->vport = phba->pport;
11102 ctiocb->iocb_cmpl = lpfc_sli4_seq_abort_acc_cmpl;
11103
5ffc266e
JS
11104 if (fctl & FC_FC_EX_CTX) {
11105 /* ABTS sent by responder to CT exchange, construction
11106 * of BA_ACC will use OX_ID from ABTS for the XRI_TAG
11107 * field and RX_ID from ABTS for RX_ID field.
11108 */
11109 bf_set(lpfc_abts_orig, &icmd->un.bls_acc, LPFC_ABTS_UNSOL_RSP);
11110 bf_set(lpfc_abts_rxid, &icmd->un.bls_acc, rxid);
11111 ctiocb->sli4_xritag = oxid;
11112 } else {
11113 /* ABTS sent by initiator to CT exchange, construction
11114 * of BA_ACC will need to allocate a new XRI as for the
11115 * XRI_TAG and RX_ID fields.
11116 */
11117 bf_set(lpfc_abts_orig, &icmd->un.bls_acc, LPFC_ABTS_UNSOL_INT);
11118 bf_set(lpfc_abts_rxid, &icmd->un.bls_acc, NO_XRI);
11119 ctiocb->sli4_xritag = NO_XRI;
11120 }
11121 bf_set(lpfc_abts_oxid, &icmd->un.bls_acc, oxid);
11122
6669f9bb
JS
11123 /* Xmit CT abts accept on exchange <xid> */
11124 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
11125 "1200 Xmit CT ABTS ACC on exchange x%x Data: x%x\n",
11126 CMD_XMIT_BLS_RSP64_CX, phba->link_state);
11127 lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, ctiocb, 0);
11128}
11129
11130/**
11131 * lpfc_sli4_handle_unsol_abort - Handle sli-4 unsolicited abort event
11132 * @vport: Pointer to the vport on which this sequence was received
11133 * @dmabuf: pointer to a dmabuf that describes the FC sequence
11134 *
11135 * This function handles an SLI-4 unsolicited abort event. If the unsolicited
11136 * receive sequence is only partially assembed by the driver, it shall abort
11137 * the partially assembled frames for the sequence. Otherwise, if the
11138 * unsolicited receive sequence has been completely assembled and passed to
11139 * the Upper Layer Protocol (UPL), it then mark the per oxid status for the
11140 * unsolicited sequence has been aborted. After that, it will issue a basic
11141 * accept to accept the abort.
11142 **/
11143void
11144lpfc_sli4_handle_unsol_abort(struct lpfc_vport *vport,
11145 struct hbq_dmabuf *dmabuf)
11146{
11147 struct lpfc_hba *phba = vport->phba;
11148 struct fc_frame_header fc_hdr;
5ffc266e 11149 uint32_t fctl;
6669f9bb
JS
11150 bool abts_par;
11151
6669f9bb
JS
11152 /* Make a copy of fc_hdr before the dmabuf being released */
11153 memcpy(&fc_hdr, dmabuf->hbuf.virt, sizeof(struct fc_frame_header));
5ffc266e 11154 fctl = sli4_fctl_from_fc_hdr(&fc_hdr);
6669f9bb 11155
5ffc266e
JS
11156 if (fctl & FC_FC_EX_CTX) {
11157 /*
11158 * ABTS sent by responder to exchange, just free the buffer
11159 */
6669f9bb 11160 lpfc_in_buf_free(phba, &dmabuf->dbuf);
5ffc266e
JS
11161 } else {
11162 /*
11163 * ABTS sent by initiator to exchange, need to do cleanup
11164 */
11165 /* Try to abort partially assembled seq */
11166 abts_par = lpfc_sli4_abort_partial_seq(vport, dmabuf);
11167
11168 /* Send abort to ULP if partially seq abort failed */
11169 if (abts_par == false)
11170 lpfc_sli4_send_seq_to_ulp(vport, dmabuf);
11171 else
11172 lpfc_in_buf_free(phba, &dmabuf->dbuf);
11173 }
6669f9bb
JS
11174 /* Send basic accept (BA_ACC) to the abort requester */
11175 lpfc_sli4_seq_abort_acc(phba, &fc_hdr);
11176}
11177
4f774513
JS
11178/**
11179 * lpfc_seq_complete - Indicates if a sequence is complete
11180 * @dmabuf: pointer to a dmabuf that describes the FC sequence
11181 *
11182 * This function checks the sequence, starting with the frame described by
11183 * @dmabuf, to see if all the frames associated with this sequence are present.
11184 * the frames associated with this sequence are linked to the @dmabuf using the
11185 * dbuf list. This function looks for two major things. 1) That the first frame
11186 * has a sequence count of zero. 2) There is a frame with last frame of sequence
11187 * set. 3) That there are no holes in the sequence count. The function will
11188 * return 1 when the sequence is complete, otherwise it will return 0.
11189 **/
11190static int
11191lpfc_seq_complete(struct hbq_dmabuf *dmabuf)
11192{
11193 struct fc_frame_header *hdr;
11194 struct lpfc_dmabuf *d_buf;
11195 struct hbq_dmabuf *seq_dmabuf;
11196 uint32_t fctl;
11197 int seq_count = 0;
11198
11199 hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
11200 /* make sure first fame of sequence has a sequence count of zero */
11201 if (hdr->fh_seq_cnt != seq_count)
11202 return 0;
11203 fctl = (hdr->fh_f_ctl[0] << 16 |
11204 hdr->fh_f_ctl[1] << 8 |
11205 hdr->fh_f_ctl[2]);
11206 /* If last frame of sequence we can return success. */
11207 if (fctl & FC_FC_END_SEQ)
11208 return 1;
11209 list_for_each_entry(d_buf, &dmabuf->dbuf.list, list) {
11210 seq_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
11211 hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
11212 /* If there is a hole in the sequence count then fail. */
11213 if (++seq_count != hdr->fh_seq_cnt)
11214 return 0;
11215 fctl = (hdr->fh_f_ctl[0] << 16 |
11216 hdr->fh_f_ctl[1] << 8 |
11217 hdr->fh_f_ctl[2]);
11218 /* If last frame of sequence we can return success. */
11219 if (fctl & FC_FC_END_SEQ)
11220 return 1;
11221 }
11222 return 0;
11223}
11224
11225/**
11226 * lpfc_prep_seq - Prep sequence for ULP processing
11227 * @vport: Pointer to the vport on which this sequence was received
11228 * @dmabuf: pointer to a dmabuf that describes the FC sequence
11229 *
11230 * This function takes a sequence, described by a list of frames, and creates
11231 * a list of iocbq structures to describe the sequence. This iocbq list will be
11232 * used to issue to the generic unsolicited sequence handler. This routine
11233 * returns a pointer to the first iocbq in the list. If the function is unable
11234 * to allocate an iocbq then it throw out the received frames that were not
11235 * able to be described and return a pointer to the first iocbq. If unable to
11236 * allocate any iocbqs (including the first) this function will return NULL.
11237 **/
11238static struct lpfc_iocbq *
11239lpfc_prep_seq(struct lpfc_vport *vport, struct hbq_dmabuf *seq_dmabuf)
11240{
11241 struct lpfc_dmabuf *d_buf, *n_buf;
11242 struct lpfc_iocbq *first_iocbq, *iocbq;
11243 struct fc_frame_header *fc_hdr;
11244 uint32_t sid;
11245
11246 fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
11247 /* remove from receive buffer list */
11248 list_del_init(&seq_dmabuf->hbuf.list);
45ed1190 11249 lpfc_update_rcv_time_stamp(vport);
4f774513 11250 /* get the Remote Port's SID */
6669f9bb 11251 sid = sli4_sid_from_fc_hdr(fc_hdr);
4f774513
JS
11252 /* Get an iocbq struct to fill in. */
11253 first_iocbq = lpfc_sli_get_iocbq(vport->phba);
11254 if (first_iocbq) {
11255 /* Initialize the first IOCB. */
8fa38513 11256 first_iocbq->iocb.unsli3.rcvsli3.acc_len = 0;
4f774513
JS
11257 first_iocbq->iocb.ulpStatus = IOSTAT_SUCCESS;
11258 first_iocbq->iocb.ulpCommand = CMD_IOCB_RCV_SEQ64_CX;
11259 first_iocbq->iocb.ulpContext = be16_to_cpu(fc_hdr->fh_ox_id);
11260 first_iocbq->iocb.unsli3.rcvsli3.vpi =
11261 vport->vpi + vport->phba->vpi_base;
11262 /* put the first buffer into the first IOCBq */
11263 first_iocbq->context2 = &seq_dmabuf->dbuf;
11264 first_iocbq->context3 = NULL;
11265 first_iocbq->iocb.ulpBdeCount = 1;
11266 first_iocbq->iocb.un.cont64[0].tus.f.bdeSize =
11267 LPFC_DATA_BUF_SIZE;
11268 first_iocbq->iocb.un.rcvels.remoteID = sid;
8fa38513 11269 first_iocbq->iocb.unsli3.rcvsli3.acc_len +=
4d9ab994
JS
11270 bf_get(lpfc_rcqe_length,
11271 &seq_dmabuf->cq_event.cqe.rcqe_cmpl);
4f774513
JS
11272 }
11273 iocbq = first_iocbq;
11274 /*
11275 * Each IOCBq can have two Buffers assigned, so go through the list
11276 * of buffers for this sequence and save two buffers in each IOCBq
11277 */
11278 list_for_each_entry_safe(d_buf, n_buf, &seq_dmabuf->dbuf.list, list) {
11279 if (!iocbq) {
11280 lpfc_in_buf_free(vport->phba, d_buf);
11281 continue;
11282 }
11283 if (!iocbq->context3) {
11284 iocbq->context3 = d_buf;
11285 iocbq->iocb.ulpBdeCount++;
11286 iocbq->iocb.unsli3.rcvsli3.bde2.tus.f.bdeSize =
11287 LPFC_DATA_BUF_SIZE;
8fa38513 11288 first_iocbq->iocb.unsli3.rcvsli3.acc_len +=
4d9ab994
JS
11289 bf_get(lpfc_rcqe_length,
11290 &seq_dmabuf->cq_event.cqe.rcqe_cmpl);
4f774513
JS
11291 } else {
11292 iocbq = lpfc_sli_get_iocbq(vport->phba);
11293 if (!iocbq) {
11294 if (first_iocbq) {
11295 first_iocbq->iocb.ulpStatus =
11296 IOSTAT_FCP_RSP_ERROR;
11297 first_iocbq->iocb.un.ulpWord[4] =
11298 IOERR_NO_RESOURCES;
11299 }
11300 lpfc_in_buf_free(vport->phba, d_buf);
11301 continue;
11302 }
11303 iocbq->context2 = d_buf;
11304 iocbq->context3 = NULL;
11305 iocbq->iocb.ulpBdeCount = 1;
11306 iocbq->iocb.un.cont64[0].tus.f.bdeSize =
11307 LPFC_DATA_BUF_SIZE;
8fa38513 11308 first_iocbq->iocb.unsli3.rcvsli3.acc_len +=
4d9ab994
JS
11309 bf_get(lpfc_rcqe_length,
11310 &seq_dmabuf->cq_event.cqe.rcqe_cmpl);
4f774513
JS
11311 iocbq->iocb.un.rcvels.remoteID = sid;
11312 list_add_tail(&iocbq->list, &first_iocbq->list);
11313 }
11314 }
11315 return first_iocbq;
11316}
11317
6669f9bb
JS
11318static void
11319lpfc_sli4_send_seq_to_ulp(struct lpfc_vport *vport,
11320 struct hbq_dmabuf *seq_dmabuf)
11321{
11322 struct fc_frame_header *fc_hdr;
11323 struct lpfc_iocbq *iocbq, *curr_iocb, *next_iocb;
11324 struct lpfc_hba *phba = vport->phba;
11325
11326 fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
11327 iocbq = lpfc_prep_seq(vport, seq_dmabuf);
11328 if (!iocbq) {
11329 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11330 "2707 Ring %d handler: Failed to allocate "
11331 "iocb Rctl x%x Type x%x received\n",
11332 LPFC_ELS_RING,
11333 fc_hdr->fh_r_ctl, fc_hdr->fh_type);
11334 return;
11335 }
11336 if (!lpfc_complete_unsol_iocb(phba,
11337 &phba->sli.ring[LPFC_ELS_RING],
11338 iocbq, fc_hdr->fh_r_ctl,
11339 fc_hdr->fh_type))
11340 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11341 "2540 Ring %d handler: unexpected Rctl "
11342 "x%x Type x%x received\n",
11343 LPFC_ELS_RING,
11344 fc_hdr->fh_r_ctl, fc_hdr->fh_type);
11345
11346 /* Free iocb created in lpfc_prep_seq */
11347 list_for_each_entry_safe(curr_iocb, next_iocb,
11348 &iocbq->list, list) {
11349 list_del_init(&curr_iocb->list);
11350 lpfc_sli_release_iocbq(phba, curr_iocb);
11351 }
11352 lpfc_sli_release_iocbq(phba, iocbq);
11353}
11354
4f774513
JS
11355/**
11356 * lpfc_sli4_handle_received_buffer - Handle received buffers from firmware
11357 * @phba: Pointer to HBA context object.
11358 *
11359 * This function is called with no lock held. This function processes all
11360 * the received buffers and gives it to upper layers when a received buffer
11361 * indicates that it is the final frame in the sequence. The interrupt
11362 * service routine processes received buffers at interrupt contexts and adds
11363 * received dma buffers to the rb_pend_list queue and signals the worker thread.
11364 * Worker thread calls lpfc_sli4_handle_received_buffer, which will call the
11365 * appropriate receive function when the final frame in a sequence is received.
11366 **/
4d9ab994
JS
11367void
11368lpfc_sli4_handle_received_buffer(struct lpfc_hba *phba,
11369 struct hbq_dmabuf *dmabuf)
4f774513 11370{
4d9ab994 11371 struct hbq_dmabuf *seq_dmabuf;
4f774513
JS
11372 struct fc_frame_header *fc_hdr;
11373 struct lpfc_vport *vport;
11374 uint32_t fcfi;
4f774513 11375
4f774513 11376 /* Process each received buffer */
4d9ab994
JS
11377 fc_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
11378 /* check to see if this a valid type of frame */
11379 if (lpfc_fc_frame_check(phba, fc_hdr)) {
11380 lpfc_in_buf_free(phba, &dmabuf->dbuf);
11381 return;
11382 }
11383 fcfi = bf_get(lpfc_rcqe_fcf_id, &dmabuf->cq_event.cqe.rcqe_cmpl);
11384 vport = lpfc_fc_frame_to_vport(phba, fc_hdr, fcfi);
c868595d 11385 if (!vport || !(vport->vpi_state & LPFC_VPI_REGISTERED)) {
4d9ab994
JS
11386 /* throw out the frame */
11387 lpfc_in_buf_free(phba, &dmabuf->dbuf);
11388 return;
11389 }
6669f9bb
JS
11390 /* Handle the basic abort sequence (BA_ABTS) event */
11391 if (fc_hdr->fh_r_ctl == FC_RCTL_BA_ABTS) {
11392 lpfc_sli4_handle_unsol_abort(vport, dmabuf);
11393 return;
11394 }
11395
4d9ab994
JS
11396 /* Link this frame */
11397 seq_dmabuf = lpfc_fc_frame_add(vport, dmabuf);
11398 if (!seq_dmabuf) {
11399 /* unable to add frame to vport - throw it out */
11400 lpfc_in_buf_free(phba, &dmabuf->dbuf);
11401 return;
11402 }
11403 /* If not last frame in sequence continue processing frames. */
11404 if (!lpfc_seq_complete(seq_dmabuf)) {
11405 /*
45ed1190
JS
11406 * When saving off frames post a new one and mark this
11407 * frame to be freed when it is finished.
11408 **/
4d9ab994
JS
11409 lpfc_sli_hbqbuf_fill_hbqs(phba, LPFC_ELS_HBQ, 1);
11410 dmabuf->tag = -1;
11411 return;
11412 }
6669f9bb
JS
11413 /* Send the complete sequence to the upper layer protocol */
11414 lpfc_sli4_send_seq_to_ulp(vport, seq_dmabuf);
4f774513 11415}
6fb120a7
JS
11416
11417/**
11418 * lpfc_sli4_post_all_rpi_hdrs - Post the rpi header memory region to the port
11419 * @phba: pointer to lpfc hba data structure.
11420 *
11421 * This routine is invoked to post rpi header templates to the
11422 * HBA consistent with the SLI-4 interface spec. This routine
11423 * posts a PAGE_SIZE memory region to the port to hold up to
11424 * PAGE_SIZE modulo 64 rpi context headers.
11425 *
11426 * This routine does not require any locks. It's usage is expected
11427 * to be driver load or reset recovery when the driver is
11428 * sequential.
11429 *
11430 * Return codes
af901ca1 11431 * 0 - successful
6fb120a7
JS
11432 * EIO - The mailbox failed to complete successfully.
11433 * When this error occurs, the driver is not guaranteed
11434 * to have any rpi regions posted to the device and
11435 * must either attempt to repost the regions or take a
11436 * fatal error.
11437 **/
11438int
11439lpfc_sli4_post_all_rpi_hdrs(struct lpfc_hba *phba)
11440{
11441 struct lpfc_rpi_hdr *rpi_page;
11442 uint32_t rc = 0;
11443
11444 /* Post all rpi memory regions to the port. */
11445 list_for_each_entry(rpi_page, &phba->sli4_hba.lpfc_rpi_hdr_list, list) {
11446 rc = lpfc_sli4_post_rpi_hdr(phba, rpi_page);
11447 if (rc != MBX_SUCCESS) {
11448 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11449 "2008 Error %d posting all rpi "
11450 "headers\n", rc);
11451 rc = -EIO;
11452 break;
11453 }
11454 }
11455
11456 return rc;
11457}
11458
11459/**
11460 * lpfc_sli4_post_rpi_hdr - Post an rpi header memory region to the port
11461 * @phba: pointer to lpfc hba data structure.
11462 * @rpi_page: pointer to the rpi memory region.
11463 *
11464 * This routine is invoked to post a single rpi header to the
11465 * HBA consistent with the SLI-4 interface spec. This memory region
11466 * maps up to 64 rpi context regions.
11467 *
11468 * Return codes
af901ca1 11469 * 0 - successful
6fb120a7
JS
11470 * ENOMEM - No available memory
11471 * EIO - The mailbox failed to complete successfully.
11472 **/
11473int
11474lpfc_sli4_post_rpi_hdr(struct lpfc_hba *phba, struct lpfc_rpi_hdr *rpi_page)
11475{
11476 LPFC_MBOXQ_t *mboxq;
11477 struct lpfc_mbx_post_hdr_tmpl *hdr_tmpl;
11478 uint32_t rc = 0;
11479 uint32_t mbox_tmo;
11480 uint32_t shdr_status, shdr_add_status;
11481 union lpfc_sli4_cfg_shdr *shdr;
11482
11483 /* The port is notified of the header region via a mailbox command. */
11484 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
11485 if (!mboxq) {
11486 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11487 "2001 Unable to allocate memory for issuing "
11488 "SLI_CONFIG_SPECIAL mailbox command\n");
11489 return -ENOMEM;
11490 }
11491
11492 /* Post all rpi memory regions to the port. */
11493 hdr_tmpl = &mboxq->u.mqe.un.hdr_tmpl;
11494 mbox_tmo = lpfc_mbox_tmo_val(phba, MBX_SLI4_CONFIG);
11495 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
11496 LPFC_MBOX_OPCODE_FCOE_POST_HDR_TEMPLATE,
11497 sizeof(struct lpfc_mbx_post_hdr_tmpl) -
11498 sizeof(struct mbox_header), LPFC_SLI4_MBX_EMBED);
11499 bf_set(lpfc_mbx_post_hdr_tmpl_page_cnt,
11500 hdr_tmpl, rpi_page->page_count);
11501 bf_set(lpfc_mbx_post_hdr_tmpl_rpi_offset, hdr_tmpl,
11502 rpi_page->start_rpi);
11503 hdr_tmpl->rpi_paddr_lo = putPaddrLow(rpi_page->dmabuf->phys);
11504 hdr_tmpl->rpi_paddr_hi = putPaddrHigh(rpi_page->dmabuf->phys);
f1126688 11505 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6fb120a7
JS
11506 shdr = (union lpfc_sli4_cfg_shdr *) &hdr_tmpl->header.cfg_shdr;
11507 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
11508 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
11509 if (rc != MBX_TIMEOUT)
11510 mempool_free(mboxq, phba->mbox_mem_pool);
11511 if (shdr_status || shdr_add_status || rc) {
11512 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
11513 "2514 POST_RPI_HDR mailbox failed with "
11514 "status x%x add_status x%x, mbx status x%x\n",
11515 shdr_status, shdr_add_status, rc);
11516 rc = -ENXIO;
11517 }
11518 return rc;
11519}
11520
11521/**
11522 * lpfc_sli4_alloc_rpi - Get an available rpi in the device's range
11523 * @phba: pointer to lpfc hba data structure.
11524 *
11525 * This routine is invoked to post rpi header templates to the
11526 * HBA consistent with the SLI-4 interface spec. This routine
11527 * posts a PAGE_SIZE memory region to the port to hold up to
11528 * PAGE_SIZE modulo 64 rpi context headers.
11529 *
11530 * Returns
af901ca1 11531 * A nonzero rpi defined as rpi_base <= rpi < max_rpi if successful
6fb120a7
JS
11532 * LPFC_RPI_ALLOC_ERROR if no rpis are available.
11533 **/
11534int
11535lpfc_sli4_alloc_rpi(struct lpfc_hba *phba)
11536{
11537 int rpi;
11538 uint16_t max_rpi, rpi_base, rpi_limit;
11539 uint16_t rpi_remaining;
11540 struct lpfc_rpi_hdr *rpi_hdr;
11541
11542 max_rpi = phba->sli4_hba.max_cfg_param.max_rpi;
11543 rpi_base = phba->sli4_hba.max_cfg_param.rpi_base;
11544 rpi_limit = phba->sli4_hba.next_rpi;
11545
11546 /*
11547 * The valid rpi range is not guaranteed to be zero-based. Start
11548 * the search at the rpi_base as reported by the port.
11549 */
11550 spin_lock_irq(&phba->hbalock);
11551 rpi = find_next_zero_bit(phba->sli4_hba.rpi_bmask, rpi_limit, rpi_base);
11552 if (rpi >= rpi_limit || rpi < rpi_base)
11553 rpi = LPFC_RPI_ALLOC_ERROR;
11554 else {
11555 set_bit(rpi, phba->sli4_hba.rpi_bmask);
11556 phba->sli4_hba.max_cfg_param.rpi_used++;
11557 phba->sli4_hba.rpi_count++;
11558 }
11559
11560 /*
11561 * Don't try to allocate more rpi header regions if the device limit
11562 * on available rpis max has been exhausted.
11563 */
11564 if ((rpi == LPFC_RPI_ALLOC_ERROR) &&
11565 (phba->sli4_hba.rpi_count >= max_rpi)) {
11566 spin_unlock_irq(&phba->hbalock);
11567 return rpi;
11568 }
11569
11570 /*
11571 * If the driver is running low on rpi resources, allocate another
11572 * page now. Note that the next_rpi value is used because
11573 * it represents how many are actually in use whereas max_rpi notes
11574 * how many are supported max by the device.
11575 */
11576 rpi_remaining = phba->sli4_hba.next_rpi - rpi_base -
11577 phba->sli4_hba.rpi_count;
11578 spin_unlock_irq(&phba->hbalock);
11579 if (rpi_remaining < LPFC_RPI_LOW_WATER_MARK) {
11580 rpi_hdr = lpfc_sli4_create_rpi_hdr(phba);
11581 if (!rpi_hdr) {
11582 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11583 "2002 Error Could not grow rpi "
11584 "count\n");
11585 } else {
11586 lpfc_sli4_post_rpi_hdr(phba, rpi_hdr);
11587 }
11588 }
11589
11590 return rpi;
11591}
11592
11593/**
11594 * lpfc_sli4_free_rpi - Release an rpi for reuse.
11595 * @phba: pointer to lpfc hba data structure.
11596 *
11597 * This routine is invoked to release an rpi to the pool of
11598 * available rpis maintained by the driver.
11599 **/
11600void
11601lpfc_sli4_free_rpi(struct lpfc_hba *phba, int rpi)
11602{
11603 spin_lock_irq(&phba->hbalock);
11604 clear_bit(rpi, phba->sli4_hba.rpi_bmask);
11605 phba->sli4_hba.rpi_count--;
11606 phba->sli4_hba.max_cfg_param.rpi_used--;
11607 spin_unlock_irq(&phba->hbalock);
11608}
11609
11610/**
11611 * lpfc_sli4_remove_rpis - Remove the rpi bitmask region
11612 * @phba: pointer to lpfc hba data structure.
11613 *
11614 * This routine is invoked to remove the memory region that
11615 * provided rpi via a bitmask.
11616 **/
11617void
11618lpfc_sli4_remove_rpis(struct lpfc_hba *phba)
11619{
11620 kfree(phba->sli4_hba.rpi_bmask);
11621}
11622
11623/**
11624 * lpfc_sli4_resume_rpi - Remove the rpi bitmask region
11625 * @phba: pointer to lpfc hba data structure.
11626 *
11627 * This routine is invoked to remove the memory region that
11628 * provided rpi via a bitmask.
11629 **/
11630int
11631lpfc_sli4_resume_rpi(struct lpfc_nodelist *ndlp)
11632{
11633 LPFC_MBOXQ_t *mboxq;
11634 struct lpfc_hba *phba = ndlp->phba;
11635 int rc;
11636
11637 /* The port is notified of the header region via a mailbox command. */
11638 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
11639 if (!mboxq)
11640 return -ENOMEM;
11641
11642 /* Post all rpi memory regions to the port. */
11643 lpfc_resume_rpi(mboxq, ndlp);
11644 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
11645 if (rc == MBX_NOT_FINISHED) {
11646 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11647 "2010 Resume RPI Mailbox failed "
11648 "status %d, mbxStatus x%x\n", rc,
11649 bf_get(lpfc_mqe_status, &mboxq->u.mqe));
11650 mempool_free(mboxq, phba->mbox_mem_pool);
11651 return -EIO;
11652 }
11653 return 0;
11654}
11655
11656/**
11657 * lpfc_sli4_init_vpi - Initialize a vpi with the port
11658 * @phba: pointer to lpfc hba data structure.
11659 * @vpi: vpi value to activate with the port.
11660 *
11661 * This routine is invoked to activate a vpi with the
11662 * port when the host intends to use vports with a
11663 * nonzero vpi.
11664 *
11665 * Returns:
11666 * 0 success
11667 * -Evalue otherwise
11668 **/
11669int
11670lpfc_sli4_init_vpi(struct lpfc_hba *phba, uint16_t vpi)
11671{
11672 LPFC_MBOXQ_t *mboxq;
11673 int rc = 0;
6a9c52cf 11674 int retval = MBX_SUCCESS;
6fb120a7
JS
11675 uint32_t mbox_tmo;
11676
11677 if (vpi == 0)
11678 return -EINVAL;
11679 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
11680 if (!mboxq)
11681 return -ENOMEM;
1c6834a7 11682 lpfc_init_vpi(phba, mboxq, vpi);
6fb120a7
JS
11683 mbox_tmo = lpfc_mbox_tmo_val(phba, MBX_INIT_VPI);
11684 rc = lpfc_sli_issue_mbox_wait(phba, mboxq, mbox_tmo);
6fb120a7
JS
11685 if (rc != MBX_SUCCESS) {
11686 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11687 "2022 INIT VPI Mailbox failed "
11688 "status %d, mbxStatus x%x\n", rc,
11689 bf_get(lpfc_mqe_status, &mboxq->u.mqe));
6a9c52cf 11690 retval = -EIO;
6fb120a7 11691 }
6a9c52cf
JS
11692 if (rc != MBX_TIMEOUT)
11693 mempool_free(mboxq, phba->mbox_mem_pool);
11694
11695 return retval;
6fb120a7
JS
11696}
11697
11698/**
11699 * lpfc_mbx_cmpl_add_fcf_record - add fcf mbox completion handler.
11700 * @phba: pointer to lpfc hba data structure.
11701 * @mboxq: Pointer to mailbox object.
11702 *
11703 * This routine is invoked to manually add a single FCF record. The caller
11704 * must pass a completely initialized FCF_Record. This routine takes
11705 * care of the nonembedded mailbox operations.
11706 **/
11707static void
11708lpfc_mbx_cmpl_add_fcf_record(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
11709{
11710 void *virt_addr;
11711 union lpfc_sli4_cfg_shdr *shdr;
11712 uint32_t shdr_status, shdr_add_status;
11713
11714 virt_addr = mboxq->sge_array->addr[0];
11715 /* The IOCTL status is embedded in the mailbox subheader. */
11716 shdr = (union lpfc_sli4_cfg_shdr *) virt_addr;
11717 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
11718 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
11719
11720 if ((shdr_status || shdr_add_status) &&
11721 (shdr_status != STATUS_FCF_IN_USE))
11722 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
11723 "2558 ADD_FCF_RECORD mailbox failed with "
11724 "status x%x add_status x%x\n",
11725 shdr_status, shdr_add_status);
11726
11727 lpfc_sli4_mbox_cmd_free(phba, mboxq);
11728}
11729
11730/**
11731 * lpfc_sli4_add_fcf_record - Manually add an FCF Record.
11732 * @phba: pointer to lpfc hba data structure.
11733 * @fcf_record: pointer to the initialized fcf record to add.
11734 *
11735 * This routine is invoked to manually add a single FCF record. The caller
11736 * must pass a completely initialized FCF_Record. This routine takes
11737 * care of the nonembedded mailbox operations.
11738 **/
11739int
11740lpfc_sli4_add_fcf_record(struct lpfc_hba *phba, struct fcf_record *fcf_record)
11741{
11742 int rc = 0;
11743 LPFC_MBOXQ_t *mboxq;
11744 uint8_t *bytep;
11745 void *virt_addr;
11746 dma_addr_t phys_addr;
11747 struct lpfc_mbx_sge sge;
11748 uint32_t alloc_len, req_len;
11749 uint32_t fcfindex;
11750
11751 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
11752 if (!mboxq) {
11753 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
11754 "2009 Failed to allocate mbox for ADD_FCF cmd\n");
11755 return -ENOMEM;
11756 }
11757
11758 req_len = sizeof(struct fcf_record) + sizeof(union lpfc_sli4_cfg_shdr) +
11759 sizeof(uint32_t);
11760
11761 /* Allocate DMA memory and set up the non-embedded mailbox command */
11762 alloc_len = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
11763 LPFC_MBOX_OPCODE_FCOE_ADD_FCF,
11764 req_len, LPFC_SLI4_MBX_NEMBED);
11765 if (alloc_len < req_len) {
11766 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
11767 "2523 Allocated DMA memory size (x%x) is "
11768 "less than the requested DMA memory "
11769 "size (x%x)\n", alloc_len, req_len);
11770 lpfc_sli4_mbox_cmd_free(phba, mboxq);
11771 return -ENOMEM;
11772 }
11773
11774 /*
11775 * Get the first SGE entry from the non-embedded DMA memory. This
11776 * routine only uses a single SGE.
11777 */
11778 lpfc_sli4_mbx_sge_get(mboxq, 0, &sge);
11779 phys_addr = getPaddr(sge.pa_hi, sge.pa_lo);
6fb120a7
JS
11780 virt_addr = mboxq->sge_array->addr[0];
11781 /*
11782 * Configure the FCF record for FCFI 0. This is the driver's
11783 * hardcoded default and gets used in nonFIP mode.
11784 */
11785 fcfindex = bf_get(lpfc_fcf_record_fcf_index, fcf_record);
11786 bytep = virt_addr + sizeof(union lpfc_sli4_cfg_shdr);
11787 lpfc_sli_pcimem_bcopy(&fcfindex, bytep, sizeof(uint32_t));
11788
11789 /*
11790 * Copy the fcf_index and the FCF Record Data. The data starts after
11791 * the FCoE header plus word10. The data copy needs to be endian
11792 * correct.
11793 */
11794 bytep += sizeof(uint32_t);
11795 lpfc_sli_pcimem_bcopy(fcf_record, bytep, sizeof(struct fcf_record));
11796 mboxq->vport = phba->pport;
11797 mboxq->mbox_cmpl = lpfc_mbx_cmpl_add_fcf_record;
11798 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
11799 if (rc == MBX_NOT_FINISHED) {
11800 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
11801 "2515 ADD_FCF_RECORD mailbox failed with "
11802 "status 0x%x\n", rc);
11803 lpfc_sli4_mbox_cmd_free(phba, mboxq);
11804 rc = -EIO;
11805 } else
11806 rc = 0;
11807
11808 return rc;
11809}
11810
11811/**
11812 * lpfc_sli4_build_dflt_fcf_record - Build the driver's default FCF Record.
11813 * @phba: pointer to lpfc hba data structure.
11814 * @fcf_record: pointer to the fcf record to write the default data.
11815 * @fcf_index: FCF table entry index.
11816 *
11817 * This routine is invoked to build the driver's default FCF record. The
11818 * values used are hardcoded. This routine handles memory initialization.
11819 *
11820 **/
11821void
11822lpfc_sli4_build_dflt_fcf_record(struct lpfc_hba *phba,
11823 struct fcf_record *fcf_record,
11824 uint16_t fcf_index)
11825{
11826 memset(fcf_record, 0, sizeof(struct fcf_record));
11827 fcf_record->max_rcv_size = LPFC_FCOE_MAX_RCV_SIZE;
11828 fcf_record->fka_adv_period = LPFC_FCOE_FKA_ADV_PER;
11829 fcf_record->fip_priority = LPFC_FCOE_FIP_PRIORITY;
11830 bf_set(lpfc_fcf_record_mac_0, fcf_record, phba->fc_map[0]);
11831 bf_set(lpfc_fcf_record_mac_1, fcf_record, phba->fc_map[1]);
11832 bf_set(lpfc_fcf_record_mac_2, fcf_record, phba->fc_map[2]);
11833 bf_set(lpfc_fcf_record_mac_3, fcf_record, LPFC_FCOE_FCF_MAC3);
11834 bf_set(lpfc_fcf_record_mac_4, fcf_record, LPFC_FCOE_FCF_MAC4);
11835 bf_set(lpfc_fcf_record_mac_5, fcf_record, LPFC_FCOE_FCF_MAC5);
11836 bf_set(lpfc_fcf_record_fc_map_0, fcf_record, phba->fc_map[0]);
11837 bf_set(lpfc_fcf_record_fc_map_1, fcf_record, phba->fc_map[1]);
11838 bf_set(lpfc_fcf_record_fc_map_2, fcf_record, phba->fc_map[2]);
11839 bf_set(lpfc_fcf_record_fcf_valid, fcf_record, 1);
0c287589 11840 bf_set(lpfc_fcf_record_fcf_avail, fcf_record, 1);
6fb120a7
JS
11841 bf_set(lpfc_fcf_record_fcf_index, fcf_record, fcf_index);
11842 bf_set(lpfc_fcf_record_mac_addr_prov, fcf_record,
11843 LPFC_FCF_FPMA | LPFC_FCF_SPMA);
11844 /* Set the VLAN bit map */
11845 if (phba->valid_vlan) {
11846 fcf_record->vlan_bitmap[phba->vlan_id / 8]
11847 = 1 << (phba->vlan_id % 8);
11848 }
11849}
11850
11851/**
11852 * lpfc_sli4_read_fcf_record - Read the driver's default FCF Record.
11853 * @phba: pointer to lpfc hba data structure.
11854 * @fcf_index: FCF table entry offset.
11855 *
11856 * This routine is invoked to read up to @fcf_num of FCF record from the
11857 * device starting with the given @fcf_index.
11858 **/
11859int
11860lpfc_sli4_read_fcf_record(struct lpfc_hba *phba, uint16_t fcf_index)
11861{
11862 int rc = 0, error;
11863 LPFC_MBOXQ_t *mboxq;
11864 void *virt_addr;
11865 dma_addr_t phys_addr;
11866 uint8_t *bytep;
11867 struct lpfc_mbx_sge sge;
11868 uint32_t alloc_len, req_len;
11869 struct lpfc_mbx_read_fcf_tbl *read_fcf;
11870
32b9793f 11871 phba->fcoe_eventtag_at_fcf_scan = phba->fcoe_eventtag;
6fb120a7
JS
11872 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
11873 if (!mboxq) {
11874 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
11875 "2000 Failed to allocate mbox for "
11876 "READ_FCF cmd\n");
4d9ab994
JS
11877 error = -ENOMEM;
11878 goto fail_fcfscan;
6fb120a7
JS
11879 }
11880
11881 req_len = sizeof(struct fcf_record) +
11882 sizeof(union lpfc_sli4_cfg_shdr) + 2 * sizeof(uint32_t);
11883
11884 /* Set up READ_FCF SLI4_CONFIG mailbox-ioctl command */
11885 alloc_len = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
11886 LPFC_MBOX_OPCODE_FCOE_READ_FCF_TABLE, req_len,
11887 LPFC_SLI4_MBX_NEMBED);
11888
11889 if (alloc_len < req_len) {
11890 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
11891 "0291 Allocated DMA memory size (x%x) is "
11892 "less than the requested DMA memory "
11893 "size (x%x)\n", alloc_len, req_len);
4d9ab994
JS
11894 error = -ENOMEM;
11895 goto fail_fcfscan;
6fb120a7
JS
11896 }
11897
11898 /* Get the first SGE entry from the non-embedded DMA memory. This
11899 * routine only uses a single SGE.
11900 */
11901 lpfc_sli4_mbx_sge_get(mboxq, 0, &sge);
11902 phys_addr = getPaddr(sge.pa_hi, sge.pa_lo);
6fb120a7
JS
11903 virt_addr = mboxq->sge_array->addr[0];
11904 read_fcf = (struct lpfc_mbx_read_fcf_tbl *)virt_addr;
11905
11906 /* Set up command fields */
11907 bf_set(lpfc_mbx_read_fcf_tbl_indx, &read_fcf->u.request, fcf_index);
11908 /* Perform necessary endian conversion */
11909 bytep = virt_addr + sizeof(union lpfc_sli4_cfg_shdr);
11910 lpfc_sli_pcimem_bcopy(bytep, bytep, sizeof(uint32_t));
11911 mboxq->vport = phba->pport;
11912 mboxq->mbox_cmpl = lpfc_mbx_cmpl_read_fcf_record;
11913 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
11914 if (rc == MBX_NOT_FINISHED) {
6fb120a7 11915 error = -EIO;
32b9793f
JS
11916 } else {
11917 spin_lock_irq(&phba->hbalock);
11918 phba->hba_flag |= FCF_DISC_INPROGRESS;
11919 spin_unlock_irq(&phba->hbalock);
6fb120a7 11920 error = 0;
32b9793f 11921 }
4d9ab994
JS
11922fail_fcfscan:
11923 if (error) {
11924 if (mboxq)
11925 lpfc_sli4_mbox_cmd_free(phba, mboxq);
11926 /* FCF scan failed, clear FCF_DISC_INPROGRESS flag */
11927 spin_lock_irq(&phba->hbalock);
11928 phba->hba_flag &= ~FCF_DISC_INPROGRESS;
11929 spin_unlock_irq(&phba->hbalock);
11930 }
6fb120a7
JS
11931 return error;
11932}
a0c87cbd
JS
11933
11934/**
11935 * lpfc_sli_read_link_ste - Read region 23 to decide if link is disabled.
11936 * @phba: pointer to lpfc hba data structure.
11937 *
11938 * This function read region 23 and parse TLV for port status to
11939 * decide if the user disaled the port. If the TLV indicates the
11940 * port is disabled, the hba_flag is set accordingly.
11941 **/
11942void
11943lpfc_sli_read_link_ste(struct lpfc_hba *phba)
11944{
11945 LPFC_MBOXQ_t *pmb = NULL;
11946 MAILBOX_t *mb;
11947 uint8_t *rgn23_data = NULL;
11948 uint32_t offset = 0, data_size, sub_tlv_len, tlv_offset;
11949 int rc;
11950
11951 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
11952 if (!pmb) {
11953 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
11954 "2600 lpfc_sli_read_serdes_param failed to"
11955 " allocate mailbox memory\n");
11956 goto out;
11957 }
11958 mb = &pmb->u.mb;
11959
11960 /* Get adapter Region 23 data */
11961 rgn23_data = kzalloc(DMP_RGN23_SIZE, GFP_KERNEL);
11962 if (!rgn23_data)
11963 goto out;
11964
11965 do {
11966 lpfc_dump_mem(phba, pmb, offset, DMP_REGION_23);
11967 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
11968
11969 if (rc != MBX_SUCCESS) {
11970 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
11971 "2601 lpfc_sli_read_link_ste failed to"
11972 " read config region 23 rc 0x%x Status 0x%x\n",
11973 rc, mb->mbxStatus);
11974 mb->un.varDmp.word_cnt = 0;
11975 }
11976 /*
11977 * dump mem may return a zero when finished or we got a
11978 * mailbox error, either way we are done.
11979 */
11980 if (mb->un.varDmp.word_cnt == 0)
11981 break;
11982 if (mb->un.varDmp.word_cnt > DMP_RGN23_SIZE - offset)
11983 mb->un.varDmp.word_cnt = DMP_RGN23_SIZE - offset;
11984
11985 lpfc_sli_pcimem_bcopy(((uint8_t *)mb) + DMP_RSP_OFFSET,
11986 rgn23_data + offset,
11987 mb->un.varDmp.word_cnt);
11988 offset += mb->un.varDmp.word_cnt;
11989 } while (mb->un.varDmp.word_cnt && offset < DMP_RGN23_SIZE);
11990
11991 data_size = offset;
11992 offset = 0;
11993
11994 if (!data_size)
11995 goto out;
11996
11997 /* Check the region signature first */
11998 if (memcmp(&rgn23_data[offset], LPFC_REGION23_SIGNATURE, 4)) {
11999 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12000 "2619 Config region 23 has bad signature\n");
12001 goto out;
12002 }
12003 offset += 4;
12004
12005 /* Check the data structure version */
12006 if (rgn23_data[offset] != LPFC_REGION23_VERSION) {
12007 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12008 "2620 Config region 23 has bad version\n");
12009 goto out;
12010 }
12011 offset += 4;
12012
12013 /* Parse TLV entries in the region */
12014 while (offset < data_size) {
12015 if (rgn23_data[offset] == LPFC_REGION23_LAST_REC)
12016 break;
12017 /*
12018 * If the TLV is not driver specific TLV or driver id is
12019 * not linux driver id, skip the record.
12020 */
12021 if ((rgn23_data[offset] != DRIVER_SPECIFIC_TYPE) ||
12022 (rgn23_data[offset + 2] != LINUX_DRIVER_ID) ||
12023 (rgn23_data[offset + 3] != 0)) {
12024 offset += rgn23_data[offset + 1] * 4 + 4;
12025 continue;
12026 }
12027
12028 /* Driver found a driver specific TLV in the config region */
12029 sub_tlv_len = rgn23_data[offset + 1] * 4;
12030 offset += 4;
12031 tlv_offset = 0;
12032
12033 /*
12034 * Search for configured port state sub-TLV.
12035 */
12036 while ((offset < data_size) &&
12037 (tlv_offset < sub_tlv_len)) {
12038 if (rgn23_data[offset] == LPFC_REGION23_LAST_REC) {
12039 offset += 4;
12040 tlv_offset += 4;
12041 break;
12042 }
12043 if (rgn23_data[offset] != PORT_STE_TYPE) {
12044 offset += rgn23_data[offset + 1] * 4 + 4;
12045 tlv_offset += rgn23_data[offset + 1] * 4 + 4;
12046 continue;
12047 }
12048
12049 /* This HBA contains PORT_STE configured */
12050 if (!rgn23_data[offset + 2])
12051 phba->hba_flag |= LINK_DISABLED;
12052
12053 goto out;
12054 }
12055 }
12056out:
12057 if (pmb)
12058 mempool_free(pmb, phba->mbox_mem_pool);
12059 kfree(rgn23_data);
12060 return;
12061}