1 /*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
3 * Fibre Channel Host Bus Adapters. *
4 * Copyright (C) 2004-2009 Emulex. All rights reserved. *
5 * EMULEX and SLI are trademarks of Emulex. *
7 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
9 * This program is free software; you can redistribute it and/or *
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. *
20 *******************************************************************/
22 #include <linux/blkdev.h>
23 #include <linux/pci.h>
24 #include <linux/interrupt.h>
25 #include <linux/delay.h>
26 #include <linux/slab.h>
28 #include <scsi/scsi.h>
29 #include <scsi/scsi_cmnd.h>
30 #include <scsi/scsi_device.h>
31 #include <scsi/scsi_host.h>
32 #include <scsi/scsi_transport_fc.h>
33 #include <scsi/fc/fc_fs.h>
34 #include <linux/aer.h>
39 #include "lpfc_sli4.h"
41 #include "lpfc_disc.h"
42 #include "lpfc_scsi.h"
44 #include "lpfc_crtn.h"
45 #include "lpfc_logmsg.h"
46 #include "lpfc_compat.h"
47 #include "lpfc_debugfs.h"
48 #include "lpfc_vport.h"
50 /* There are only four IOCB completion types. */
51 typedef enum _lpfc_iocb_type
{
59 /* Provide function prototypes local to this module. */
60 static int lpfc_sli_issue_mbox_s4(struct lpfc_hba
*, LPFC_MBOXQ_t
*,
62 static int lpfc_sli4_read_rev(struct lpfc_hba
*, LPFC_MBOXQ_t
*,
63 uint8_t *, uint32_t *);
64 static struct lpfc_iocbq
*lpfc_sli4_els_wcqe_to_rspiocbq(struct lpfc_hba
*,
66 static void lpfc_sli4_send_seq_to_ulp(struct lpfc_vport
*,
69 lpfc_get_iocb_from_iocbq(struct lpfc_iocbq
*iocbq
)
75 * lpfc_sli4_wq_put - Put a Work Queue Entry on an Work Queue
76 * @q: The Work Queue to operate on.
77 * @wqe: The work Queue Entry to put on the Work queue.
79 * This routine will copy the contents of @wqe to the next available entry on
80 * the @q. This function will then ring the Work Queue Doorbell to signal the
81 * HBA to start processing the Work Queue Entry. This function returns 0 if
82 * successful. If no entries are available on @q then this function will return
84 * The caller is expected to hold the hbalock when calling this routine.
87 lpfc_sli4_wq_put(struct lpfc_queue
*q
, union lpfc_wqe
*wqe
)
89 union lpfc_wqe
*temp_wqe
= q
->qe
[q
->host_index
].wqe
;
90 struct lpfc_register doorbell
;
93 /* If the host has not yet processed the next entry then we are done */
94 if (((q
->host_index
+ 1) % q
->entry_count
) == q
->hba_index
)
96 /* set consumption flag every once in a while */
97 if (!((q
->host_index
+ 1) % LPFC_RELEASE_NOTIFICATION_INTERVAL
))
98 bf_set(lpfc_wqe_gen_wqec
, &wqe
->generic
, 1);
100 lpfc_sli_pcimem_bcopy(wqe
, temp_wqe
, q
->entry_size
);
102 /* Update the host index before invoking device */
103 host_index
= q
->host_index
;
104 q
->host_index
= ((q
->host_index
+ 1) % q
->entry_count
);
108 bf_set(lpfc_wq_doorbell_num_posted
, &doorbell
, 1);
109 bf_set(lpfc_wq_doorbell_index
, &doorbell
, host_index
);
110 bf_set(lpfc_wq_doorbell_id
, &doorbell
, q
->queue_id
);
111 writel(doorbell
.word0
, q
->phba
->sli4_hba
.WQDBregaddr
);
112 readl(q
->phba
->sli4_hba
.WQDBregaddr
); /* Flush */
118 * lpfc_sli4_wq_release - Updates internal hba index for WQ
119 * @q: The Work Queue to operate on.
120 * @index: The index to advance the hba index to.
122 * This routine will update the HBA index of a queue to reflect consumption of
123 * Work Queue Entries by the HBA. When the HBA indicates that it has consumed
124 * an entry the host calls this function to update the queue's internal
125 * pointers. This routine returns the number of entries that were consumed by
129 lpfc_sli4_wq_release(struct lpfc_queue
*q
, uint32_t index
)
131 uint32_t released
= 0;
133 if (q
->hba_index
== index
)
136 q
->hba_index
= ((q
->hba_index
+ 1) % q
->entry_count
);
138 } while (q
->hba_index
!= index
);
143 * lpfc_sli4_mq_put - Put a Mailbox Queue Entry on an Mailbox Queue
144 * @q: The Mailbox Queue to operate on.
145 * @wqe: The Mailbox Queue Entry to put on the Work queue.
147 * This routine will copy the contents of @mqe to the next available entry on
148 * the @q. This function will then ring the Work Queue Doorbell to signal the
149 * HBA to start processing the Work Queue Entry. This function returns 0 if
150 * successful. If no entries are available on @q then this function will return
152 * The caller is expected to hold the hbalock when calling this routine.
155 lpfc_sli4_mq_put(struct lpfc_queue
*q
, struct lpfc_mqe
*mqe
)
157 struct lpfc_mqe
*temp_mqe
= q
->qe
[q
->host_index
].mqe
;
158 struct lpfc_register doorbell
;
161 /* If the host has not yet processed the next entry then we are done */
162 if (((q
->host_index
+ 1) % q
->entry_count
) == q
->hba_index
)
164 lpfc_sli_pcimem_bcopy(mqe
, temp_mqe
, q
->entry_size
);
165 /* Save off the mailbox pointer for completion */
166 q
->phba
->mbox
= (MAILBOX_t
*)temp_mqe
;
168 /* Update the host index before invoking device */
169 host_index
= q
->host_index
;
170 q
->host_index
= ((q
->host_index
+ 1) % q
->entry_count
);
174 bf_set(lpfc_mq_doorbell_num_posted
, &doorbell
, 1);
175 bf_set(lpfc_mq_doorbell_id
, &doorbell
, q
->queue_id
);
176 writel(doorbell
.word0
, q
->phba
->sli4_hba
.MQDBregaddr
);
177 readl(q
->phba
->sli4_hba
.MQDBregaddr
); /* Flush */
182 * lpfc_sli4_mq_release - Updates internal hba index for MQ
183 * @q: The Mailbox Queue to operate on.
185 * This routine will update the HBA index of a queue to reflect consumption of
186 * a Mailbox Queue Entry by the HBA. When the HBA indicates that it has consumed
187 * an entry the host calls this function to update the queue's internal
188 * pointers. This routine returns the number of entries that were consumed by
192 lpfc_sli4_mq_release(struct lpfc_queue
*q
)
194 /* Clear the mailbox pointer for completion */
195 q
->phba
->mbox
= NULL
;
196 q
->hba_index
= ((q
->hba_index
+ 1) % q
->entry_count
);
201 * lpfc_sli4_eq_get - Gets the next valid EQE from a EQ
202 * @q: The Event Queue to get the first valid EQE from
204 * This routine will get the first valid Event Queue Entry from @q, update
205 * the queue's internal hba index, and return the EQE. If no valid EQEs are in
206 * the Queue (no more work to do), or the Queue is full of EQEs that have been
207 * processed, but not popped back to the HBA then this routine will return NULL.
209 static struct lpfc_eqe
*
210 lpfc_sli4_eq_get(struct lpfc_queue
*q
)
212 struct lpfc_eqe
*eqe
= q
->qe
[q
->hba_index
].eqe
;
214 /* If the next EQE is not valid then we are done */
215 if (!bf_get(lpfc_eqe_valid
, eqe
))
217 /* If the host has not yet processed the next entry then we are done */
218 if (((q
->hba_index
+ 1) % q
->entry_count
) == q
->host_index
)
221 q
->hba_index
= ((q
->hba_index
+ 1) % q
->entry_count
);
226 * lpfc_sli4_eq_release - Indicates the host has finished processing an EQ
227 * @q: The Event Queue that the host has completed processing for.
228 * @arm: Indicates whether the host wants to arms this CQ.
230 * This routine will mark all Event Queue Entries on @q, from the last
231 * known completed entry to the last entry that was processed, as completed
232 * by clearing the valid bit for each completion queue entry. Then it will
233 * notify the HBA, by ringing the doorbell, that the EQEs have been processed.
234 * The internal host index in the @q will be updated by this routine to indicate
235 * that the host has finished processing the entries. The @arm parameter
236 * indicates that the queue should be rearmed when ringing the doorbell.
238 * This function will return the number of EQEs that were popped.
241 lpfc_sli4_eq_release(struct lpfc_queue
*q
, bool arm
)
243 uint32_t released
= 0;
244 struct lpfc_eqe
*temp_eqe
;
245 struct lpfc_register doorbell
;
247 /* while there are valid entries */
248 while (q
->hba_index
!= q
->host_index
) {
249 temp_eqe
= q
->qe
[q
->host_index
].eqe
;
250 bf_set(lpfc_eqe_valid
, temp_eqe
, 0);
252 q
->host_index
= ((q
->host_index
+ 1) % q
->entry_count
);
254 if (unlikely(released
== 0 && !arm
))
257 /* ring doorbell for number popped */
260 bf_set(lpfc_eqcq_doorbell_arm
, &doorbell
, 1);
261 bf_set(lpfc_eqcq_doorbell_eqci
, &doorbell
, 1);
263 bf_set(lpfc_eqcq_doorbell_num_released
, &doorbell
, released
);
264 bf_set(lpfc_eqcq_doorbell_qt
, &doorbell
, LPFC_QUEUE_TYPE_EVENT
);
265 bf_set(lpfc_eqcq_doorbell_eqid
, &doorbell
, q
->queue_id
);
266 writel(doorbell
.word0
, q
->phba
->sli4_hba
.EQCQDBregaddr
);
267 /* PCI read to flush PCI pipeline on re-arming for INTx mode */
268 if ((q
->phba
->intr_type
== INTx
) && (arm
== LPFC_QUEUE_REARM
))
269 readl(q
->phba
->sli4_hba
.EQCQDBregaddr
);
274 * lpfc_sli4_cq_get - Gets the next valid CQE from a CQ
275 * @q: The Completion Queue to get the first valid CQE from
277 * This routine will get the first valid Completion Queue Entry from @q, update
278 * the queue's internal hba index, and return the CQE. If no valid CQEs are in
279 * the Queue (no more work to do), or the Queue is full of CQEs that have been
280 * processed, but not popped back to the HBA then this routine will return NULL.
282 static struct lpfc_cqe
*
283 lpfc_sli4_cq_get(struct lpfc_queue
*q
)
285 struct lpfc_cqe
*cqe
;
287 /* If the next CQE is not valid then we are done */
288 if (!bf_get(lpfc_cqe_valid
, q
->qe
[q
->hba_index
].cqe
))
290 /* If the host has not yet processed the next entry then we are done */
291 if (((q
->hba_index
+ 1) % q
->entry_count
) == q
->host_index
)
294 cqe
= q
->qe
[q
->hba_index
].cqe
;
295 q
->hba_index
= ((q
->hba_index
+ 1) % q
->entry_count
);
300 * lpfc_sli4_cq_release - Indicates the host has finished processing a CQ
301 * @q: The Completion Queue that the host has completed processing for.
302 * @arm: Indicates whether the host wants to arms this CQ.
304 * This routine will mark all Completion queue entries on @q, from the last
305 * known completed entry to the last entry that was processed, as completed
306 * by clearing the valid bit for each completion queue entry. Then it will
307 * notify the HBA, by ringing the doorbell, that the CQEs have been processed.
308 * The internal host index in the @q will be updated by this routine to indicate
309 * that the host has finished processing the entries. The @arm parameter
310 * indicates that the queue should be rearmed when ringing the doorbell.
312 * This function will return the number of CQEs that were released.
315 lpfc_sli4_cq_release(struct lpfc_queue
*q
, bool arm
)
317 uint32_t released
= 0;
318 struct lpfc_cqe
*temp_qe
;
319 struct lpfc_register doorbell
;
321 /* while there are valid entries */
322 while (q
->hba_index
!= q
->host_index
) {
323 temp_qe
= q
->qe
[q
->host_index
].cqe
;
324 bf_set(lpfc_cqe_valid
, temp_qe
, 0);
326 q
->host_index
= ((q
->host_index
+ 1) % q
->entry_count
);
328 if (unlikely(released
== 0 && !arm
))
331 /* ring doorbell for number popped */
334 bf_set(lpfc_eqcq_doorbell_arm
, &doorbell
, 1);
335 bf_set(lpfc_eqcq_doorbell_num_released
, &doorbell
, released
);
336 bf_set(lpfc_eqcq_doorbell_qt
, &doorbell
, LPFC_QUEUE_TYPE_COMPLETION
);
337 bf_set(lpfc_eqcq_doorbell_cqid
, &doorbell
, q
->queue_id
);
338 writel(doorbell
.word0
, q
->phba
->sli4_hba
.EQCQDBregaddr
);
343 * lpfc_sli4_rq_put - Put a Receive Buffer Queue Entry on a Receive Queue
344 * @q: The Header Receive Queue to operate on.
345 * @wqe: The Receive Queue Entry to put on the Receive queue.
347 * This routine will copy the contents of @wqe to the next available entry on
348 * the @q. This function will then ring the Receive Queue Doorbell to signal the
349 * HBA to start processing the Receive Queue Entry. This function returns the
350 * index that the rqe was copied to if successful. If no entries are available
351 * on @q then this function will return -ENOMEM.
352 * The caller is expected to hold the hbalock when calling this routine.
355 lpfc_sli4_rq_put(struct lpfc_queue
*hq
, struct lpfc_queue
*dq
,
356 struct lpfc_rqe
*hrqe
, struct lpfc_rqe
*drqe
)
358 struct lpfc_rqe
*temp_hrqe
= hq
->qe
[hq
->host_index
].rqe
;
359 struct lpfc_rqe
*temp_drqe
= dq
->qe
[dq
->host_index
].rqe
;
360 struct lpfc_register doorbell
;
361 int put_index
= hq
->host_index
;
363 if (hq
->type
!= LPFC_HRQ
|| dq
->type
!= LPFC_DRQ
)
365 if (hq
->host_index
!= dq
->host_index
)
367 /* If the host has not yet processed the next entry then we are done */
368 if (((hq
->host_index
+ 1) % hq
->entry_count
) == hq
->hba_index
)
370 lpfc_sli_pcimem_bcopy(hrqe
, temp_hrqe
, hq
->entry_size
);
371 lpfc_sli_pcimem_bcopy(drqe
, temp_drqe
, dq
->entry_size
);
373 /* Update the host index to point to the next slot */
374 hq
->host_index
= ((hq
->host_index
+ 1) % hq
->entry_count
);
375 dq
->host_index
= ((dq
->host_index
+ 1) % dq
->entry_count
);
377 /* Ring The Header Receive Queue Doorbell */
378 if (!(hq
->host_index
% LPFC_RQ_POST_BATCH
)) {
380 bf_set(lpfc_rq_doorbell_num_posted
, &doorbell
,
382 bf_set(lpfc_rq_doorbell_id
, &doorbell
, hq
->queue_id
);
383 writel(doorbell
.word0
, hq
->phba
->sli4_hba
.RQDBregaddr
);
389 * lpfc_sli4_rq_release - Updates internal hba index for RQ
390 * @q: The Header Receive Queue to operate on.
392 * This routine will update the HBA index of a queue to reflect consumption of
393 * one Receive Queue Entry by the HBA. When the HBA indicates that it has
394 * consumed an entry the host calls this function to update the queue's
395 * internal pointers. This routine returns the number of entries that were
396 * consumed by the HBA.
399 lpfc_sli4_rq_release(struct lpfc_queue
*hq
, struct lpfc_queue
*dq
)
401 if ((hq
->type
!= LPFC_HRQ
) || (dq
->type
!= LPFC_DRQ
))
403 hq
->hba_index
= ((hq
->hba_index
+ 1) % hq
->entry_count
);
404 dq
->hba_index
= ((dq
->hba_index
+ 1) % dq
->entry_count
);
409 * lpfc_cmd_iocb - Get next command iocb entry in the ring
410 * @phba: Pointer to HBA context object.
411 * @pring: Pointer to driver SLI ring object.
413 * This function returns pointer to next command iocb entry
414 * in the command ring. The caller must hold hbalock to prevent
415 * other threads consume the next command iocb.
416 * SLI-2/SLI-3 provide different sized iocbs.
418 static inline IOCB_t
*
419 lpfc_cmd_iocb(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
)
421 return (IOCB_t
*) (((char *) pring
->cmdringaddr
) +
422 pring
->cmdidx
* phba
->iocb_cmd_size
);
426 * lpfc_resp_iocb - Get next response iocb entry in the ring
427 * @phba: Pointer to HBA context object.
428 * @pring: Pointer to driver SLI ring object.
430 * This function returns pointer to next response iocb entry
431 * in the response ring. The caller must hold hbalock to make sure
432 * that no other thread consume the next response iocb.
433 * SLI-2/SLI-3 provide different sized iocbs.
435 static inline IOCB_t
*
436 lpfc_resp_iocb(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
)
438 return (IOCB_t
*) (((char *) pring
->rspringaddr
) +
439 pring
->rspidx
* phba
->iocb_rsp_size
);
443 * __lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
444 * @phba: Pointer to HBA context object.
446 * This function is called with hbalock held. This function
447 * allocates a new driver iocb object from the iocb pool. If the
448 * allocation is successful, it returns pointer to the newly
449 * allocated iocb object else it returns NULL.
451 static struct lpfc_iocbq
*
452 __lpfc_sli_get_iocbq(struct lpfc_hba
*phba
)
454 struct list_head
*lpfc_iocb_list
= &phba
->lpfc_iocb_list
;
455 struct lpfc_iocbq
* iocbq
= NULL
;
457 list_remove_head(lpfc_iocb_list
, iocbq
, struct lpfc_iocbq
, list
);
462 * __lpfc_clear_active_sglq - Remove the active sglq for this XRI.
463 * @phba: Pointer to HBA context object.
464 * @xritag: XRI value.
466 * This function clears the sglq pointer from the array of acive
467 * sglq's. The xritag that is passed in is used to index into the
468 * array. Before the xritag can be used it needs to be adjusted
469 * by subtracting the xribase.
471 * Returns sglq ponter = success, NULL = Failure.
473 static struct lpfc_sglq
*
474 __lpfc_clear_active_sglq(struct lpfc_hba
*phba
, uint16_t xritag
)
477 struct lpfc_sglq
*sglq
;
478 adj_xri
= xritag
- phba
->sli4_hba
.max_cfg_param
.xri_base
;
479 if (adj_xri
> phba
->sli4_hba
.max_cfg_param
.max_xri
)
481 sglq
= phba
->sli4_hba
.lpfc_sglq_active_list
[adj_xri
];
482 phba
->sli4_hba
.lpfc_sglq_active_list
[adj_xri
] = NULL
;
487 * __lpfc_get_active_sglq - Get the active sglq for this XRI.
488 * @phba: Pointer to HBA context object.
489 * @xritag: XRI value.
491 * This function returns the sglq pointer from the array of acive
492 * sglq's. The xritag that is passed in is used to index into the
493 * array. Before the xritag can be used it needs to be adjusted
494 * by subtracting the xribase.
496 * Returns sglq ponter = success, NULL = Failure.
499 __lpfc_get_active_sglq(struct lpfc_hba
*phba
, uint16_t xritag
)
502 struct lpfc_sglq
*sglq
;
503 adj_xri
= xritag
- phba
->sli4_hba
.max_cfg_param
.xri_base
;
504 if (adj_xri
> phba
->sli4_hba
.max_cfg_param
.max_xri
)
506 sglq
= phba
->sli4_hba
.lpfc_sglq_active_list
[adj_xri
];
511 * __lpfc_sli_get_sglq - Allocates an iocb object from sgl pool
512 * @phba: Pointer to HBA context object.
514 * This function is called with hbalock held. This function
515 * Gets a new driver sglq object from the sglq list. If the
516 * list is not empty then it is successful, it returns pointer to the newly
517 * allocated sglq object else it returns NULL.
519 static struct lpfc_sglq
*
520 __lpfc_sli_get_sglq(struct lpfc_hba
*phba
)
522 struct list_head
*lpfc_sgl_list
= &phba
->sli4_hba
.lpfc_sgl_list
;
523 struct lpfc_sglq
*sglq
= NULL
;
525 list_remove_head(lpfc_sgl_list
, sglq
, struct lpfc_sglq
, list
);
528 adj_xri
= sglq
->sli4_xritag
- phba
->sli4_hba
.max_cfg_param
.xri_base
;
529 phba
->sli4_hba
.lpfc_sglq_active_list
[adj_xri
] = sglq
;
530 sglq
->state
= SGL_ALLOCATED
;
535 * lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
536 * @phba: Pointer to HBA context object.
538 * This function is called with no lock held. This function
539 * allocates a new driver iocb object from the iocb pool. If the
540 * allocation is successful, it returns pointer to the newly
541 * allocated iocb object else it returns NULL.
544 lpfc_sli_get_iocbq(struct lpfc_hba
*phba
)
546 struct lpfc_iocbq
* iocbq
= NULL
;
547 unsigned long iflags
;
549 spin_lock_irqsave(&phba
->hbalock
, iflags
);
550 iocbq
= __lpfc_sli_get_iocbq(phba
);
551 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
556 * __lpfc_sli_release_iocbq_s4 - Release iocb to the iocb pool
557 * @phba: Pointer to HBA context object.
558 * @iocbq: Pointer to driver iocb object.
560 * This function is called with hbalock held to release driver
561 * iocb object to the iocb pool. The iotag in the iocb object
562 * does not change for each use of the iocb object. This function
563 * clears all other fields of the iocb object when it is freed.
564 * The sqlq structure that holds the xritag and phys and virtual
565 * mappings for the scatter gather list is retrieved from the
566 * active array of sglq. The get of the sglq pointer also clears
567 * the entry in the array. If the status of the IO indiactes that
568 * this IO was aborted then the sglq entry it put on the
569 * lpfc_abts_els_sgl_list until the CQ_ABORTED_XRI is received. If the
570 * IO has good status or fails for any other reason then the sglq
571 * entry is added to the free list (lpfc_sgl_list).
574 __lpfc_sli_release_iocbq_s4(struct lpfc_hba
*phba
, struct lpfc_iocbq
*iocbq
)
576 struct lpfc_sglq
*sglq
;
577 size_t start_clean
= offsetof(struct lpfc_iocbq
, iocb
);
580 if (iocbq
->sli4_xritag
== NO_XRI
)
583 sglq
= __lpfc_clear_active_sglq(phba
, iocbq
->sli4_xritag
);
585 if ((iocbq
->iocb_flag
& LPFC_EXCHANGE_BUSY
) &&
586 (sglq
->state
!= SGL_XRI_ABORTED
)) {
587 spin_lock_irqsave(&phba
->sli4_hba
.abts_sgl_list_lock
,
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
);
594 sglq
->state
= SGL_FREED
;
595 list_add(&sglq
->list
, &phba
->sli4_hba
.lpfc_sgl_list
);
601 * Clean all volatile data fields, preserve iotag and node struct.
603 memset((char *)iocbq
+ start_clean
, 0, sizeof(*iocbq
) - start_clean
);
604 iocbq
->sli4_xritag
= NO_XRI
;
605 list_add_tail(&iocbq
->list
, &phba
->lpfc_iocb_list
);
609 * __lpfc_sli_release_iocbq_s3 - Release iocb to the iocb pool
610 * @phba: Pointer to HBA context object.
611 * @iocbq: Pointer to driver iocb object.
613 * This function is called with hbalock held to release driver
614 * iocb object to the iocb pool. The iotag in the iocb object
615 * does not change for each use of the iocb object. This function
616 * clears all other fields of the iocb object when it is freed.
619 __lpfc_sli_release_iocbq_s3(struct lpfc_hba
*phba
, struct lpfc_iocbq
*iocbq
)
621 size_t start_clean
= offsetof(struct lpfc_iocbq
, iocb
);
624 * Clean all volatile data fields, preserve iotag and node struct.
626 memset((char*)iocbq
+ start_clean
, 0, sizeof(*iocbq
) - start_clean
);
627 iocbq
->sli4_xritag
= NO_XRI
;
628 list_add_tail(&iocbq
->list
, &phba
->lpfc_iocb_list
);
632 * __lpfc_sli_release_iocbq - Release iocb to the iocb pool
633 * @phba: Pointer to HBA context object.
634 * @iocbq: Pointer to driver iocb object.
636 * This function is called with hbalock held to release driver
637 * iocb object to the iocb pool. The iotag in the iocb object
638 * does not change for each use of the iocb object. This function
639 * clears all other fields of the iocb object when it is freed.
642 __lpfc_sli_release_iocbq(struct lpfc_hba
*phba
, struct lpfc_iocbq
*iocbq
)
644 phba
->__lpfc_sli_release_iocbq(phba
, iocbq
);
648 * lpfc_sli_release_iocbq - Release iocb to the iocb pool
649 * @phba: Pointer to HBA context object.
650 * @iocbq: Pointer to driver iocb object.
652 * This function is called with no lock held to release the iocb to
656 lpfc_sli_release_iocbq(struct lpfc_hba
*phba
, struct lpfc_iocbq
*iocbq
)
658 unsigned long iflags
;
661 * Clean all volatile data fields, preserve iotag and node struct.
663 spin_lock_irqsave(&phba
->hbalock
, iflags
);
664 __lpfc_sli_release_iocbq(phba
, iocbq
);
665 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
669 * lpfc_sli_cancel_iocbs - Cancel all iocbs from a list.
670 * @phba: Pointer to HBA context object.
671 * @iocblist: List of IOCBs.
672 * @ulpstatus: ULP status in IOCB command field.
673 * @ulpWord4: ULP word-4 in IOCB command field.
675 * This function is called with a list of IOCBs to cancel. It cancels the IOCB
676 * on the list by invoking the complete callback function associated with the
677 * IOCB with the provided @ulpstatus and @ulpword4 set to the IOCB commond
681 lpfc_sli_cancel_iocbs(struct lpfc_hba
*phba
, struct list_head
*iocblist
,
682 uint32_t ulpstatus
, uint32_t ulpWord4
)
684 struct lpfc_iocbq
*piocb
;
686 while (!list_empty(iocblist
)) {
687 list_remove_head(iocblist
, piocb
, struct lpfc_iocbq
, list
);
689 if (!piocb
->iocb_cmpl
)
690 lpfc_sli_release_iocbq(phba
, piocb
);
692 piocb
->iocb
.ulpStatus
= ulpstatus
;
693 piocb
->iocb
.un
.ulpWord
[4] = ulpWord4
;
694 (piocb
->iocb_cmpl
) (phba
, piocb
, piocb
);
701 * lpfc_sli_iocb_cmd_type - Get the iocb type
702 * @iocb_cmnd: iocb command code.
704 * This function is called by ring event handler function to get the iocb type.
705 * This function translates the iocb command to an iocb command type used to
706 * decide the final disposition of each completed IOCB.
707 * The function returns
708 * LPFC_UNKNOWN_IOCB if it is an unsupported iocb
709 * LPFC_SOL_IOCB if it is a solicited iocb completion
710 * LPFC_ABORT_IOCB if it is an abort iocb
711 * LPFC_UNSOL_IOCB if it is an unsolicited iocb
713 * The caller is not required to hold any lock.
715 static lpfc_iocb_type
716 lpfc_sli_iocb_cmd_type(uint8_t iocb_cmnd
)
718 lpfc_iocb_type type
= LPFC_UNKNOWN_IOCB
;
720 if (iocb_cmnd
> CMD_MAX_IOCB_CMD
)
724 case CMD_XMIT_SEQUENCE_CR
:
725 case CMD_XMIT_SEQUENCE_CX
:
726 case CMD_XMIT_BCAST_CN
:
727 case CMD_XMIT_BCAST_CX
:
728 case CMD_ELS_REQUEST_CR
:
729 case CMD_ELS_REQUEST_CX
:
730 case CMD_CREATE_XRI_CR
:
731 case CMD_CREATE_XRI_CX
:
733 case CMD_XMIT_ELS_RSP_CX
:
735 case CMD_FCP_IWRITE_CR
:
736 case CMD_FCP_IWRITE_CX
:
737 case CMD_FCP_IREAD_CR
:
738 case CMD_FCP_IREAD_CX
:
739 case CMD_FCP_ICMND_CR
:
740 case CMD_FCP_ICMND_CX
:
741 case CMD_FCP_TSEND_CX
:
742 case CMD_FCP_TRSP_CX
:
743 case CMD_FCP_TRECEIVE_CX
:
744 case CMD_FCP_AUTO_TRSP_CX
:
745 case CMD_ADAPTER_MSG
:
746 case CMD_ADAPTER_DUMP
:
747 case CMD_XMIT_SEQUENCE64_CR
:
748 case CMD_XMIT_SEQUENCE64_CX
:
749 case CMD_XMIT_BCAST64_CN
:
750 case CMD_XMIT_BCAST64_CX
:
751 case CMD_ELS_REQUEST64_CR
:
752 case CMD_ELS_REQUEST64_CX
:
753 case CMD_FCP_IWRITE64_CR
:
754 case CMD_FCP_IWRITE64_CX
:
755 case CMD_FCP_IREAD64_CR
:
756 case CMD_FCP_IREAD64_CX
:
757 case CMD_FCP_ICMND64_CR
:
758 case CMD_FCP_ICMND64_CX
:
759 case CMD_FCP_TSEND64_CX
:
760 case CMD_FCP_TRSP64_CX
:
761 case CMD_FCP_TRECEIVE64_CX
:
762 case CMD_GEN_REQUEST64_CR
:
763 case CMD_GEN_REQUEST64_CX
:
764 case CMD_XMIT_ELS_RSP64_CX
:
765 case DSSCMD_IWRITE64_CR
:
766 case DSSCMD_IWRITE64_CX
:
767 case DSSCMD_IREAD64_CR
:
768 case DSSCMD_IREAD64_CX
:
769 type
= LPFC_SOL_IOCB
;
771 case CMD_ABORT_XRI_CN
:
772 case CMD_ABORT_XRI_CX
:
773 case CMD_CLOSE_XRI_CN
:
774 case CMD_CLOSE_XRI_CX
:
775 case CMD_XRI_ABORTED_CX
:
776 case CMD_ABORT_MXRI64_CN
:
777 case CMD_XMIT_BLS_RSP64_CX
:
778 type
= LPFC_ABORT_IOCB
;
780 case CMD_RCV_SEQUENCE_CX
:
781 case CMD_RCV_ELS_REQ_CX
:
782 case CMD_RCV_SEQUENCE64_CX
:
783 case CMD_RCV_ELS_REQ64_CX
:
784 case CMD_ASYNC_STATUS
:
785 case CMD_IOCB_RCV_SEQ64_CX
:
786 case CMD_IOCB_RCV_ELS64_CX
:
787 case CMD_IOCB_RCV_CONT64_CX
:
788 case CMD_IOCB_RET_XRI64_CX
:
789 type
= LPFC_UNSOL_IOCB
;
791 case CMD_IOCB_XMIT_MSEQ64_CR
:
792 case CMD_IOCB_XMIT_MSEQ64_CX
:
793 case CMD_IOCB_RCV_SEQ_LIST64_CX
:
794 case CMD_IOCB_RCV_ELS_LIST64_CX
:
795 case CMD_IOCB_CLOSE_EXTENDED_CN
:
796 case CMD_IOCB_ABORT_EXTENDED_CN
:
797 case CMD_IOCB_RET_HBQE64_CN
:
798 case CMD_IOCB_FCP_IBIDIR64_CR
:
799 case CMD_IOCB_FCP_IBIDIR64_CX
:
800 case CMD_IOCB_FCP_ITASKMGT64_CX
:
801 case CMD_IOCB_LOGENTRY_CN
:
802 case CMD_IOCB_LOGENTRY_ASYNC_CN
:
803 printk("%s - Unhandled SLI-3 Command x%x\n",
804 __func__
, iocb_cmnd
);
805 type
= LPFC_UNKNOWN_IOCB
;
808 type
= LPFC_UNKNOWN_IOCB
;
816 * lpfc_sli_ring_map - Issue config_ring mbox for all rings
817 * @phba: Pointer to HBA context object.
819 * This function is called from SLI initialization code
820 * to configure every ring of the HBA's SLI interface. The
821 * caller is not required to hold any lock. This function issues
822 * a config_ring mailbox command for each ring.
823 * This function returns zero if successful else returns a negative
827 lpfc_sli_ring_map(struct lpfc_hba
*phba
)
829 struct lpfc_sli
*psli
= &phba
->sli
;
834 pmb
= (LPFC_MBOXQ_t
*) mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
838 phba
->link_state
= LPFC_INIT_MBX_CMDS
;
839 for (i
= 0; i
< psli
->num_rings
; i
++) {
840 lpfc_config_ring(phba
, i
, pmb
);
841 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
);
842 if (rc
!= MBX_SUCCESS
) {
843 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
844 "0446 Adapter failed to init (%d), "
845 "mbxCmd x%x CFG_RING, mbxStatus x%x, "
847 rc
, pmbox
->mbxCommand
,
848 pmbox
->mbxStatus
, i
);
849 phba
->link_state
= LPFC_HBA_ERROR
;
854 mempool_free(pmb
, phba
->mbox_mem_pool
);
859 * lpfc_sli_ringtxcmpl_put - Adds new iocb to the txcmplq
860 * @phba: Pointer to HBA context object.
861 * @pring: Pointer to driver SLI ring object.
862 * @piocb: Pointer to the driver iocb object.
864 * This function is called with hbalock held. The function adds the
865 * new iocb to txcmplq of the given ring. This function always returns
866 * 0. If this function is called for ELS ring, this function checks if
867 * there is a vport associated with the ELS command. This function also
868 * starts els_tmofunc timer if this is an ELS command.
871 lpfc_sli_ringtxcmpl_put(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
,
872 struct lpfc_iocbq
*piocb
)
874 list_add_tail(&piocb
->list
, &pring
->txcmplq
);
875 pring
->txcmplq_cnt
++;
876 if ((unlikely(pring
->ringno
== LPFC_ELS_RING
)) &&
877 (piocb
->iocb
.ulpCommand
!= CMD_ABORT_XRI_CN
) &&
878 (piocb
->iocb
.ulpCommand
!= CMD_CLOSE_XRI_CN
)) {
882 mod_timer(&piocb
->vport
->els_tmofunc
,
883 jiffies
+ HZ
* (phba
->fc_ratov
<< 1));
891 * lpfc_sli_ringtx_get - Get first element of the txq
892 * @phba: Pointer to HBA context object.
893 * @pring: Pointer to driver SLI ring object.
895 * This function is called with hbalock held to get next
896 * iocb in txq of the given ring. If there is any iocb in
897 * the txq, the function returns first iocb in the list after
898 * removing the iocb from the list, else it returns NULL.
900 static struct lpfc_iocbq
*
901 lpfc_sli_ringtx_get(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
)
903 struct lpfc_iocbq
*cmd_iocb
;
905 list_remove_head((&pring
->txq
), cmd_iocb
, struct lpfc_iocbq
, list
);
906 if (cmd_iocb
!= NULL
)
912 * lpfc_sli_next_iocb_slot - Get next iocb slot in the ring
913 * @phba: Pointer to HBA context object.
914 * @pring: Pointer to driver SLI ring object.
916 * This function is called with hbalock held and the caller must post the
917 * iocb without releasing the lock. If the caller releases the lock,
918 * iocb slot returned by the function is not guaranteed to be available.
919 * The function returns pointer to the next available iocb slot if there
920 * is available slot in the ring, else it returns NULL.
921 * If the get index of the ring is ahead of the put index, the function
922 * will post an error attention event to the worker thread to take the
923 * HBA to offline state.
926 lpfc_sli_next_iocb_slot (struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
)
928 struct lpfc_pgp
*pgp
= &phba
->port_gp
[pring
->ringno
];
929 uint32_t max_cmd_idx
= pring
->numCiocb
;
930 if ((pring
->next_cmdidx
== pring
->cmdidx
) &&
931 (++pring
->next_cmdidx
>= max_cmd_idx
))
932 pring
->next_cmdidx
= 0;
934 if (unlikely(pring
->local_getidx
== pring
->next_cmdidx
)) {
936 pring
->local_getidx
= le32_to_cpu(pgp
->cmdGetInx
);
938 if (unlikely(pring
->local_getidx
>= max_cmd_idx
)) {
939 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
940 "0315 Ring %d issue: portCmdGet %d "
941 "is bigger than cmd ring %d\n",
943 pring
->local_getidx
, max_cmd_idx
);
945 phba
->link_state
= LPFC_HBA_ERROR
;
947 * All error attention handlers are posted to
950 phba
->work_ha
|= HA_ERATT
;
951 phba
->work_hs
= HS_FFER3
;
953 lpfc_worker_wake_up(phba
);
958 if (pring
->local_getidx
== pring
->next_cmdidx
)
962 return lpfc_cmd_iocb(phba
, pring
);
966 * lpfc_sli_next_iotag - Get an iotag for the iocb
967 * @phba: Pointer to HBA context object.
968 * @iocbq: Pointer to driver iocb object.
970 * This function gets an iotag for the iocb. If there is no unused iotag and
971 * the iocbq_lookup_len < 0xffff, this function allocates a bigger iotag_lookup
972 * array and assigns a new iotag.
973 * The function returns the allocated iotag if successful, else returns zero.
974 * Zero is not a valid iotag.
975 * The caller is not required to hold any lock.
978 lpfc_sli_next_iotag(struct lpfc_hba
*phba
, struct lpfc_iocbq
*iocbq
)
980 struct lpfc_iocbq
**new_arr
;
981 struct lpfc_iocbq
**old_arr
;
983 struct lpfc_sli
*psli
= &phba
->sli
;
986 spin_lock_irq(&phba
->hbalock
);
987 iotag
= psli
->last_iotag
;
988 if(++iotag
< psli
->iocbq_lookup_len
) {
989 psli
->last_iotag
= iotag
;
990 psli
->iocbq_lookup
[iotag
] = iocbq
;
991 spin_unlock_irq(&phba
->hbalock
);
992 iocbq
->iotag
= iotag
;
994 } else if (psli
->iocbq_lookup_len
< (0xffff
995 - LPFC_IOCBQ_LOOKUP_INCREMENT
)) {
996 new_len
= psli
->iocbq_lookup_len
+ LPFC_IOCBQ_LOOKUP_INCREMENT
;
997 spin_unlock_irq(&phba
->hbalock
);
998 new_arr
= kzalloc(new_len
* sizeof (struct lpfc_iocbq
*),
1001 spin_lock_irq(&phba
->hbalock
);
1002 old_arr
= psli
->iocbq_lookup
;
1003 if (new_len
<= psli
->iocbq_lookup_len
) {
1004 /* highly unprobable case */
1006 iotag
= psli
->last_iotag
;
1007 if(++iotag
< psli
->iocbq_lookup_len
) {
1008 psli
->last_iotag
= iotag
;
1009 psli
->iocbq_lookup
[iotag
] = iocbq
;
1010 spin_unlock_irq(&phba
->hbalock
);
1011 iocbq
->iotag
= iotag
;
1014 spin_unlock_irq(&phba
->hbalock
);
1017 if (psli
->iocbq_lookup
)
1018 memcpy(new_arr
, old_arr
,
1019 ((psli
->last_iotag
+ 1) *
1020 sizeof (struct lpfc_iocbq
*)));
1021 psli
->iocbq_lookup
= new_arr
;
1022 psli
->iocbq_lookup_len
= new_len
;
1023 psli
->last_iotag
= iotag
;
1024 psli
->iocbq_lookup
[iotag
] = iocbq
;
1025 spin_unlock_irq(&phba
->hbalock
);
1026 iocbq
->iotag
= iotag
;
1031 spin_unlock_irq(&phba
->hbalock
);
1033 lpfc_printf_log(phba
, KERN_ERR
,LOG_SLI
,
1034 "0318 Failed to allocate IOTAG.last IOTAG is %d\n",
1041 * lpfc_sli_submit_iocb - Submit an iocb to the firmware
1042 * @phba: Pointer to HBA context object.
1043 * @pring: Pointer to driver SLI ring object.
1044 * @iocb: Pointer to iocb slot in the ring.
1045 * @nextiocb: Pointer to driver iocb object which need to be
1046 * posted to firmware.
1048 * This function is called with hbalock held to post a new iocb to
1049 * the firmware. This function copies the new iocb to ring iocb slot and
1050 * updates the ring pointers. It adds the new iocb to txcmplq if there is
1051 * a completion call back for this iocb else the function will free the
1055 lpfc_sli_submit_iocb(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
,
1056 IOCB_t
*iocb
, struct lpfc_iocbq
*nextiocb
)
1061 nextiocb
->iocb
.ulpIoTag
= (nextiocb
->iocb_cmpl
) ? nextiocb
->iotag
: 0;
1064 if (pring
->ringno
== LPFC_ELS_RING
) {
1065 lpfc_debugfs_slow_ring_trc(phba
,
1066 "IOCB cmd ring: wd4:x%08x wd6:x%08x wd7:x%08x",
1067 *(((uint32_t *) &nextiocb
->iocb
) + 4),
1068 *(((uint32_t *) &nextiocb
->iocb
) + 6),
1069 *(((uint32_t *) &nextiocb
->iocb
) + 7));
1073 * Issue iocb command to adapter
1075 lpfc_sli_pcimem_bcopy(&nextiocb
->iocb
, iocb
, phba
->iocb_cmd_size
);
1077 pring
->stats
.iocb_cmd
++;
1080 * If there is no completion routine to call, we can release the
1081 * IOCB buffer back right now. For IOCBs, like QUE_RING_BUF,
1082 * that have no rsp ring completion, iocb_cmpl MUST be NULL.
1084 if (nextiocb
->iocb_cmpl
)
1085 lpfc_sli_ringtxcmpl_put(phba
, pring
, nextiocb
);
1087 __lpfc_sli_release_iocbq(phba
, nextiocb
);
1090 * Let the HBA know what IOCB slot will be the next one the
1091 * driver will put a command into.
1093 pring
->cmdidx
= pring
->next_cmdidx
;
1094 writel(pring
->cmdidx
, &phba
->host_gp
[pring
->ringno
].cmdPutInx
);
1098 * lpfc_sli_update_full_ring - Update the chip attention register
1099 * @phba: Pointer to HBA context object.
1100 * @pring: Pointer to driver SLI ring object.
1102 * The caller is not required to hold any lock for calling this function.
1103 * This function updates the chip attention bits for the ring to inform firmware
1104 * that there are pending work to be done for this ring and requests an
1105 * interrupt when there is space available in the ring. This function is
1106 * called when the driver is unable to post more iocbs to the ring due
1107 * to unavailability of space in the ring.
1110 lpfc_sli_update_full_ring(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
)
1112 int ringno
= pring
->ringno
;
1114 pring
->flag
|= LPFC_CALL_RING_AVAILABLE
;
1119 * Set ring 'ringno' to SET R0CE_REQ in Chip Att register.
1120 * The HBA will tell us when an IOCB entry is available.
1122 writel((CA_R0ATT
|CA_R0CE_REQ
) << (ringno
*4), phba
->CAregaddr
);
1123 readl(phba
->CAregaddr
); /* flush */
1125 pring
->stats
.iocb_cmd_full
++;
1129 * lpfc_sli_update_ring - Update chip attention register
1130 * @phba: Pointer to HBA context object.
1131 * @pring: Pointer to driver SLI ring object.
1133 * This function updates the chip attention register bit for the
1134 * given ring to inform HBA that there is more work to be done
1135 * in this ring. The caller is not required to hold any lock.
1138 lpfc_sli_update_ring(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
)
1140 int ringno
= pring
->ringno
;
1143 * Tell the HBA that there is work to do in this ring.
1145 if (!(phba
->sli3_options
& LPFC_SLI3_CRP_ENABLED
)) {
1147 writel(CA_R0ATT
<< (ringno
* 4), phba
->CAregaddr
);
1148 readl(phba
->CAregaddr
); /* flush */
1153 * lpfc_sli_resume_iocb - Process iocbs in the txq
1154 * @phba: Pointer to HBA context object.
1155 * @pring: Pointer to driver SLI ring object.
1157 * This function is called with hbalock held to post pending iocbs
1158 * in the txq to the firmware. This function is called when driver
1159 * detects space available in the ring.
1162 lpfc_sli_resume_iocb(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
)
1165 struct lpfc_iocbq
*nextiocb
;
1169 * (a) there is anything on the txq to send
1171 * (c) link attention events can be processed (fcp ring only)
1172 * (d) IOCB processing is not blocked by the outstanding mbox command.
1174 if (pring
->txq_cnt
&&
1175 lpfc_is_link_up(phba
) &&
1176 (pring
->ringno
!= phba
->sli
.fcp_ring
||
1177 phba
->sli
.sli_flag
& LPFC_PROCESS_LA
)) {
1179 while ((iocb
= lpfc_sli_next_iocb_slot(phba
, pring
)) &&
1180 (nextiocb
= lpfc_sli_ringtx_get(phba
, pring
)))
1181 lpfc_sli_submit_iocb(phba
, pring
, iocb
, nextiocb
);
1184 lpfc_sli_update_ring(phba
, pring
);
1186 lpfc_sli_update_full_ring(phba
, pring
);
1193 * lpfc_sli_next_hbq_slot - Get next hbq entry for the HBQ
1194 * @phba: Pointer to HBA context object.
1195 * @hbqno: HBQ number.
1197 * This function is called with hbalock held to get the next
1198 * available slot for the given HBQ. If there is free slot
1199 * available for the HBQ it will return pointer to the next available
1200 * HBQ entry else it will return NULL.
1202 static struct lpfc_hbq_entry
*
1203 lpfc_sli_next_hbq_slot(struct lpfc_hba
*phba
, uint32_t hbqno
)
1205 struct hbq_s
*hbqp
= &phba
->hbqs
[hbqno
];
1207 if (hbqp
->next_hbqPutIdx
== hbqp
->hbqPutIdx
&&
1208 ++hbqp
->next_hbqPutIdx
>= hbqp
->entry_count
)
1209 hbqp
->next_hbqPutIdx
= 0;
1211 if (unlikely(hbqp
->local_hbqGetIdx
== hbqp
->next_hbqPutIdx
)) {
1212 uint32_t raw_index
= phba
->hbq_get
[hbqno
];
1213 uint32_t getidx
= le32_to_cpu(raw_index
);
1215 hbqp
->local_hbqGetIdx
= getidx
;
1217 if (unlikely(hbqp
->local_hbqGetIdx
>= hbqp
->entry_count
)) {
1218 lpfc_printf_log(phba
, KERN_ERR
,
1219 LOG_SLI
| LOG_VPORT
,
1220 "1802 HBQ %d: local_hbqGetIdx "
1221 "%u is > than hbqp->entry_count %u\n",
1222 hbqno
, hbqp
->local_hbqGetIdx
,
1225 phba
->link_state
= LPFC_HBA_ERROR
;
1229 if (hbqp
->local_hbqGetIdx
== hbqp
->next_hbqPutIdx
)
1233 return (struct lpfc_hbq_entry
*) phba
->hbqs
[hbqno
].hbq_virt
+
1238 * lpfc_sli_hbqbuf_free_all - Free all the hbq buffers
1239 * @phba: Pointer to HBA context object.
1241 * This function is called with no lock held to free all the
1242 * hbq buffers while uninitializing the SLI interface. It also
1243 * frees the HBQ buffers returned by the firmware but not yet
1244 * processed by the upper layers.
1247 lpfc_sli_hbqbuf_free_all(struct lpfc_hba
*phba
)
1249 struct lpfc_dmabuf
*dmabuf
, *next_dmabuf
;
1250 struct hbq_dmabuf
*hbq_buf
;
1251 unsigned long flags
;
1255 hbq_count
= lpfc_sli_hbq_count();
1256 /* Return all memory used by all HBQs */
1257 spin_lock_irqsave(&phba
->hbalock
, flags
);
1258 for (i
= 0; i
< hbq_count
; ++i
) {
1259 list_for_each_entry_safe(dmabuf
, next_dmabuf
,
1260 &phba
->hbqs
[i
].hbq_buffer_list
, list
) {
1261 hbq_buf
= container_of(dmabuf
, struct hbq_dmabuf
, dbuf
);
1262 list_del(&hbq_buf
->dbuf
.list
);
1263 (phba
->hbqs
[i
].hbq_free_buffer
)(phba
, hbq_buf
);
1265 phba
->hbqs
[i
].buffer_count
= 0;
1267 /* Return all HBQ buffer that are in-fly */
1268 list_for_each_entry_safe(dmabuf
, next_dmabuf
, &phba
->rb_pend_list
,
1270 hbq_buf
= container_of(dmabuf
, struct hbq_dmabuf
, dbuf
);
1271 list_del(&hbq_buf
->dbuf
.list
);
1272 if (hbq_buf
->tag
== -1) {
1273 (phba
->hbqs
[LPFC_ELS_HBQ
].hbq_free_buffer
)
1276 hbqno
= hbq_buf
->tag
>> 16;
1277 if (hbqno
>= LPFC_MAX_HBQS
)
1278 (phba
->hbqs
[LPFC_ELS_HBQ
].hbq_free_buffer
)
1281 (phba
->hbqs
[hbqno
].hbq_free_buffer
)(phba
,
1286 /* Mark the HBQs not in use */
1287 phba
->hbq_in_use
= 0;
1288 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
1292 * lpfc_sli_hbq_to_firmware - Post the hbq buffer to firmware
1293 * @phba: Pointer to HBA context object.
1294 * @hbqno: HBQ number.
1295 * @hbq_buf: Pointer to HBQ buffer.
1297 * This function is called with the hbalock held to post a
1298 * hbq buffer to the firmware. If the function finds an empty
1299 * slot in the HBQ, it will post the buffer. The function will return
1300 * pointer to the hbq entry if it successfully post the buffer
1301 * else it will return NULL.
1304 lpfc_sli_hbq_to_firmware(struct lpfc_hba
*phba
, uint32_t hbqno
,
1305 struct hbq_dmabuf
*hbq_buf
)
1307 return phba
->lpfc_sli_hbq_to_firmware(phba
, hbqno
, hbq_buf
);
1311 * lpfc_sli_hbq_to_firmware_s3 - Post the hbq buffer to SLI3 firmware
1312 * @phba: Pointer to HBA context object.
1313 * @hbqno: HBQ number.
1314 * @hbq_buf: Pointer to HBQ buffer.
1316 * This function is called with the hbalock held to post a hbq buffer to the
1317 * firmware. If the function finds an empty slot in the HBQ, it will post the
1318 * buffer and place it on the hbq_buffer_list. The function will return zero if
1319 * it successfully post the buffer else it will return an error.
1322 lpfc_sli_hbq_to_firmware_s3(struct lpfc_hba
*phba
, uint32_t hbqno
,
1323 struct hbq_dmabuf
*hbq_buf
)
1325 struct lpfc_hbq_entry
*hbqe
;
1326 dma_addr_t physaddr
= hbq_buf
->dbuf
.phys
;
1328 /* Get next HBQ entry slot to use */
1329 hbqe
= lpfc_sli_next_hbq_slot(phba
, hbqno
);
1331 struct hbq_s
*hbqp
= &phba
->hbqs
[hbqno
];
1333 hbqe
->bde
.addrHigh
= le32_to_cpu(putPaddrHigh(physaddr
));
1334 hbqe
->bde
.addrLow
= le32_to_cpu(putPaddrLow(physaddr
));
1335 hbqe
->bde
.tus
.f
.bdeSize
= hbq_buf
->size
;
1336 hbqe
->bde
.tus
.f
.bdeFlags
= 0;
1337 hbqe
->bde
.tus
.w
= le32_to_cpu(hbqe
->bde
.tus
.w
);
1338 hbqe
->buffer_tag
= le32_to_cpu(hbq_buf
->tag
);
1340 hbqp
->hbqPutIdx
= hbqp
->next_hbqPutIdx
;
1341 writel(hbqp
->hbqPutIdx
, phba
->hbq_put
+ hbqno
);
1343 readl(phba
->hbq_put
+ hbqno
);
1344 list_add_tail(&hbq_buf
->dbuf
.list
, &hbqp
->hbq_buffer_list
);
1351 * lpfc_sli_hbq_to_firmware_s4 - Post the hbq buffer to SLI4 firmware
1352 * @phba: Pointer to HBA context object.
1353 * @hbqno: HBQ number.
1354 * @hbq_buf: Pointer to HBQ buffer.
1356 * This function is called with the hbalock held to post an RQE to the SLI4
1357 * firmware. If able to post the RQE to the RQ it will queue the hbq entry to
1358 * the hbq_buffer_list and return zero, otherwise it will return an error.
1361 lpfc_sli_hbq_to_firmware_s4(struct lpfc_hba
*phba
, uint32_t hbqno
,
1362 struct hbq_dmabuf
*hbq_buf
)
1365 struct lpfc_rqe hrqe
;
1366 struct lpfc_rqe drqe
;
1368 hrqe
.address_lo
= putPaddrLow(hbq_buf
->hbuf
.phys
);
1369 hrqe
.address_hi
= putPaddrHigh(hbq_buf
->hbuf
.phys
);
1370 drqe
.address_lo
= putPaddrLow(hbq_buf
->dbuf
.phys
);
1371 drqe
.address_hi
= putPaddrHigh(hbq_buf
->dbuf
.phys
);
1372 rc
= lpfc_sli4_rq_put(phba
->sli4_hba
.hdr_rq
, phba
->sli4_hba
.dat_rq
,
1377 list_add_tail(&hbq_buf
->dbuf
.list
, &phba
->hbqs
[hbqno
].hbq_buffer_list
);
1381 /* HBQ for ELS and CT traffic. */
1382 static struct lpfc_hbq_init lpfc_els_hbq
= {
1387 .ring_mask
= (1 << LPFC_ELS_RING
),
1393 /* HBQ for the extra ring if needed */
1394 static struct lpfc_hbq_init lpfc_extra_hbq
= {
1399 .ring_mask
= (1 << LPFC_EXTRA_RING
),
1406 struct lpfc_hbq_init
*lpfc_hbq_defs
[] = {
1412 * lpfc_sli_hbqbuf_fill_hbqs - Post more hbq buffers to HBQ
1413 * @phba: Pointer to HBA context object.
1414 * @hbqno: HBQ number.
1415 * @count: Number of HBQ buffers to be posted.
1417 * This function is called with no lock held to post more hbq buffers to the
1418 * given HBQ. The function returns the number of HBQ buffers successfully
1422 lpfc_sli_hbqbuf_fill_hbqs(struct lpfc_hba
*phba
, uint32_t hbqno
, uint32_t count
)
1424 uint32_t i
, posted
= 0;
1425 unsigned long flags
;
1426 struct hbq_dmabuf
*hbq_buffer
;
1427 LIST_HEAD(hbq_buf_list
);
1428 if (!phba
->hbqs
[hbqno
].hbq_alloc_buffer
)
1431 if ((phba
->hbqs
[hbqno
].buffer_count
+ count
) >
1432 lpfc_hbq_defs
[hbqno
]->entry_count
)
1433 count
= lpfc_hbq_defs
[hbqno
]->entry_count
-
1434 phba
->hbqs
[hbqno
].buffer_count
;
1437 /* Allocate HBQ entries */
1438 for (i
= 0; i
< count
; i
++) {
1439 hbq_buffer
= (phba
->hbqs
[hbqno
].hbq_alloc_buffer
)(phba
);
1442 list_add_tail(&hbq_buffer
->dbuf
.list
, &hbq_buf_list
);
1444 /* Check whether HBQ is still in use */
1445 spin_lock_irqsave(&phba
->hbalock
, flags
);
1446 if (!phba
->hbq_in_use
)
1448 while (!list_empty(&hbq_buf_list
)) {
1449 list_remove_head(&hbq_buf_list
, hbq_buffer
, struct hbq_dmabuf
,
1451 hbq_buffer
->tag
= (phba
->hbqs
[hbqno
].buffer_count
|
1453 if (!lpfc_sli_hbq_to_firmware(phba
, hbqno
, hbq_buffer
)) {
1454 phba
->hbqs
[hbqno
].buffer_count
++;
1457 (phba
->hbqs
[hbqno
].hbq_free_buffer
)(phba
, hbq_buffer
);
1459 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
1462 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
1463 while (!list_empty(&hbq_buf_list
)) {
1464 list_remove_head(&hbq_buf_list
, hbq_buffer
, struct hbq_dmabuf
,
1466 (phba
->hbqs
[hbqno
].hbq_free_buffer
)(phba
, hbq_buffer
);
1472 * lpfc_sli_hbqbuf_add_hbqs - Post more HBQ buffers to firmware
1473 * @phba: Pointer to HBA context object.
1476 * This function posts more buffers to the HBQ. This function
1477 * is called with no lock held. The function returns the number of HBQ entries
1478 * successfully allocated.
1481 lpfc_sli_hbqbuf_add_hbqs(struct lpfc_hba
*phba
, uint32_t qno
)
1483 if (phba
->sli_rev
== LPFC_SLI_REV4
)
1486 return lpfc_sli_hbqbuf_fill_hbqs(phba
, qno
,
1487 lpfc_hbq_defs
[qno
]->add_count
);
1491 * lpfc_sli_hbqbuf_init_hbqs - Post initial buffers to the HBQ
1492 * @phba: Pointer to HBA context object.
1493 * @qno: HBQ queue number.
1495 * This function is called from SLI initialization code path with
1496 * no lock held to post initial HBQ buffers to firmware. The
1497 * function returns the number of HBQ entries successfully allocated.
1500 lpfc_sli_hbqbuf_init_hbqs(struct lpfc_hba
*phba
, uint32_t qno
)
1502 if (phba
->sli_rev
== LPFC_SLI_REV4
)
1503 return lpfc_sli_hbqbuf_fill_hbqs(phba
, qno
,
1504 lpfc_hbq_defs
[qno
]->entry_count
);
1506 return lpfc_sli_hbqbuf_fill_hbqs(phba
, qno
,
1507 lpfc_hbq_defs
[qno
]->init_count
);
1511 * lpfc_sli_hbqbuf_get - Remove the first hbq off of an hbq list
1512 * @phba: Pointer to HBA context object.
1513 * @hbqno: HBQ number.
1515 * This function removes the first hbq buffer on an hbq list and returns a
1516 * pointer to that buffer. If it finds no buffers on the list it returns NULL.
1518 static struct hbq_dmabuf
*
1519 lpfc_sli_hbqbuf_get(struct list_head
*rb_list
)
1521 struct lpfc_dmabuf
*d_buf
;
1523 list_remove_head(rb_list
, d_buf
, struct lpfc_dmabuf
, list
);
1526 return container_of(d_buf
, struct hbq_dmabuf
, dbuf
);
1530 * lpfc_sli_hbqbuf_find - Find the hbq buffer associated with a tag
1531 * @phba: Pointer to HBA context object.
1532 * @tag: Tag of the hbq buffer.
1534 * This function is called with hbalock held. This function searches
1535 * for the hbq buffer associated with the given tag in the hbq buffer
1536 * list. If it finds the hbq buffer, it returns the hbq_buffer other wise
1539 static struct hbq_dmabuf
*
1540 lpfc_sli_hbqbuf_find(struct lpfc_hba
*phba
, uint32_t tag
)
1542 struct lpfc_dmabuf
*d_buf
;
1543 struct hbq_dmabuf
*hbq_buf
;
1547 if (hbqno
>= LPFC_MAX_HBQS
)
1550 spin_lock_irq(&phba
->hbalock
);
1551 list_for_each_entry(d_buf
, &phba
->hbqs
[hbqno
].hbq_buffer_list
, list
) {
1552 hbq_buf
= container_of(d_buf
, struct hbq_dmabuf
, dbuf
);
1553 if (hbq_buf
->tag
== tag
) {
1554 spin_unlock_irq(&phba
->hbalock
);
1558 spin_unlock_irq(&phba
->hbalock
);
1559 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
| LOG_VPORT
,
1560 "1803 Bad hbq tag. Data: x%x x%x\n",
1561 tag
, phba
->hbqs
[tag
>> 16].buffer_count
);
1566 * lpfc_sli_free_hbq - Give back the hbq buffer to firmware
1567 * @phba: Pointer to HBA context object.
1568 * @hbq_buffer: Pointer to HBQ buffer.
1570 * This function is called with hbalock. This function gives back
1571 * the hbq buffer to firmware. If the HBQ does not have space to
1572 * post the buffer, it will free the buffer.
1575 lpfc_sli_free_hbq(struct lpfc_hba
*phba
, struct hbq_dmabuf
*hbq_buffer
)
1580 hbqno
= hbq_buffer
->tag
>> 16;
1581 if (lpfc_sli_hbq_to_firmware(phba
, hbqno
, hbq_buffer
))
1582 (phba
->hbqs
[hbqno
].hbq_free_buffer
)(phba
, hbq_buffer
);
1587 * lpfc_sli_chk_mbx_command - Check if the mailbox is a legitimate mailbox
1588 * @mbxCommand: mailbox command code.
1590 * This function is called by the mailbox event handler function to verify
1591 * that the completed mailbox command is a legitimate mailbox command. If the
1592 * completed mailbox is not known to the function, it will return MBX_SHUTDOWN
1593 * and the mailbox event handler will take the HBA offline.
1596 lpfc_sli_chk_mbx_command(uint8_t mbxCommand
)
1600 switch (mbxCommand
) {
1604 case MBX_WRITE_VPARMS
:
1605 case MBX_RUN_BIU_DIAG
:
1608 case MBX_CONFIG_LINK
:
1609 case MBX_CONFIG_RING
:
1610 case MBX_RESET_RING
:
1611 case MBX_READ_CONFIG
:
1612 case MBX_READ_RCONFIG
:
1613 case MBX_READ_SPARM
:
1614 case MBX_READ_STATUS
:
1618 case MBX_READ_LNK_STAT
:
1620 case MBX_UNREG_LOGIN
:
1623 case MBX_DUMP_MEMORY
:
1624 case MBX_DUMP_CONTEXT
:
1627 case MBX_UPDATE_CFG
:
1629 case MBX_DEL_LD_ENTRY
:
1630 case MBX_RUN_PROGRAM
:
1632 case MBX_SET_VARIABLE
:
1633 case MBX_UNREG_D_ID
:
1634 case MBX_KILL_BOARD
:
1635 case MBX_CONFIG_FARP
:
1638 case MBX_RUN_BIU_DIAG64
:
1639 case MBX_CONFIG_PORT
:
1640 case MBX_READ_SPARM64
:
1641 case MBX_READ_RPI64
:
1642 case MBX_REG_LOGIN64
:
1646 case MBX_LOAD_EXP_ROM
:
1647 case MBX_ASYNCEVT_ENABLE
:
1651 case MBX_PORT_CAPABILITIES
:
1652 case MBX_PORT_IOV_CONTROL
:
1653 case MBX_SLI4_CONFIG
:
1654 case MBX_SLI4_REQ_FTRS
:
1656 case MBX_UNREG_FCFI
:
1661 case MBX_RESUME_RPI
:
1672 * lpfc_sli_wake_mbox_wait - lpfc_sli_issue_mbox_wait mbox completion handler
1673 * @phba: Pointer to HBA context object.
1674 * @pmboxq: Pointer to mailbox command.
1676 * This is completion handler function for mailbox commands issued from
1677 * lpfc_sli_issue_mbox_wait function. This function is called by the
1678 * mailbox event handler function with no lock held. This function
1679 * will wake up thread waiting on the wait queue pointed by context1
1683 lpfc_sli_wake_mbox_wait(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmboxq
)
1685 wait_queue_head_t
*pdone_q
;
1686 unsigned long drvr_flag
;
1689 * If pdone_q is empty, the driver thread gave up waiting and
1690 * continued running.
1692 pmboxq
->mbox_flag
|= LPFC_MBX_WAKE
;
1693 spin_lock_irqsave(&phba
->hbalock
, drvr_flag
);
1694 pdone_q
= (wait_queue_head_t
*) pmboxq
->context1
;
1696 wake_up_interruptible(pdone_q
);
1697 spin_unlock_irqrestore(&phba
->hbalock
, drvr_flag
);
1703 * lpfc_sli_def_mbox_cmpl - Default mailbox completion handler
1704 * @phba: Pointer to HBA context object.
1705 * @pmb: Pointer to mailbox object.
1707 * This function is the default mailbox completion handler. It
1708 * frees the memory resources associated with the completed mailbox
1709 * command. If the completed command is a REG_LOGIN mailbox command,
1710 * this function will issue a UREG_LOGIN to re-claim the RPI.
1713 lpfc_sli_def_mbox_cmpl(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
1715 struct lpfc_dmabuf
*mp
;
1718 struct lpfc_vport
*vport
= pmb
->vport
;
1720 mp
= (struct lpfc_dmabuf
*) (pmb
->context1
);
1723 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
1727 if ((pmb
->u
.mb
.mbxCommand
== MBX_UNREG_LOGIN
) &&
1728 (phba
->sli_rev
== LPFC_SLI_REV4
))
1729 lpfc_sli4_free_rpi(phba
, pmb
->u
.mb
.un
.varUnregLogin
.rpi
);
1732 * If a REG_LOGIN succeeded after node is destroyed or node
1733 * is in re-discovery driver need to cleanup the RPI.
1735 if (!(phba
->pport
->load_flag
& FC_UNLOADING
) &&
1736 pmb
->u
.mb
.mbxCommand
== MBX_REG_LOGIN64
&&
1737 !pmb
->u
.mb
.mbxStatus
) {
1738 rpi
= pmb
->u
.mb
.un
.varWords
[0];
1739 vpi
= pmb
->u
.mb
.un
.varRegLogin
.vpi
- phba
->vpi_base
;
1740 lpfc_unreg_login(phba
, vpi
, rpi
, pmb
);
1741 pmb
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
1742 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_NOWAIT
);
1743 if (rc
!= MBX_NOT_FINISHED
)
1747 /* Unreg VPI, if the REG_VPI succeed after VLink failure */
1748 if ((pmb
->u
.mb
.mbxCommand
== MBX_REG_VPI
) &&
1749 !(phba
->pport
->load_flag
& FC_UNLOADING
) &&
1750 !pmb
->u
.mb
.mbxStatus
) {
1751 lpfc_unreg_vpi(phba
, pmb
->u
.mb
.un
.varRegVpi
.vpi
, pmb
);
1753 pmb
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
1754 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_NOWAIT
);
1755 if (rc
!= MBX_NOT_FINISHED
)
1759 if (bf_get(lpfc_mqe_command
, &pmb
->u
.mqe
) == MBX_SLI4_CONFIG
)
1760 lpfc_sli4_mbox_cmd_free(phba
, pmb
);
1762 mempool_free(pmb
, phba
->mbox_mem_pool
);
1766 * lpfc_sli_handle_mb_event - Handle mailbox completions from firmware
1767 * @phba: Pointer to HBA context object.
1769 * This function is called with no lock held. This function processes all
1770 * the completed mailbox commands and gives it to upper layers. The interrupt
1771 * service routine processes mailbox completion interrupt and adds completed
1772 * mailbox commands to the mboxq_cmpl queue and signals the worker thread.
1773 * Worker thread call lpfc_sli_handle_mb_event, which will return the
1774 * completed mailbox commands in mboxq_cmpl queue to the upper layers. This
1775 * function returns the mailbox commands to the upper layer by calling the
1776 * completion handler function of each mailbox.
1779 lpfc_sli_handle_mb_event(struct lpfc_hba
*phba
)
1786 phba
->sli
.slistat
.mbox_event
++;
1788 /* Get all completed mailboxe buffers into the cmplq */
1789 spin_lock_irq(&phba
->hbalock
);
1790 list_splice_init(&phba
->sli
.mboxq_cmpl
, &cmplq
);
1791 spin_unlock_irq(&phba
->hbalock
);
1793 /* Get a Mailbox buffer to setup mailbox commands for callback */
1795 list_remove_head(&cmplq
, pmb
, LPFC_MBOXQ_t
, list
);
1801 if (pmbox
->mbxCommand
!= MBX_HEARTBEAT
) {
1803 lpfc_debugfs_disc_trc(pmb
->vport
,
1804 LPFC_DISC_TRC_MBOX_VPORT
,
1805 "MBOX cmpl vport: cmd:x%x mb:x%x x%x",
1806 (uint32_t)pmbox
->mbxCommand
,
1807 pmbox
->un
.varWords
[0],
1808 pmbox
->un
.varWords
[1]);
1811 lpfc_debugfs_disc_trc(phba
->pport
,
1813 "MBOX cmpl: cmd:x%x mb:x%x x%x",
1814 (uint32_t)pmbox
->mbxCommand
,
1815 pmbox
->un
.varWords
[0],
1816 pmbox
->un
.varWords
[1]);
1821 * It is a fatal error if unknown mbox command completion.
1823 if (lpfc_sli_chk_mbx_command(pmbox
->mbxCommand
) ==
1825 /* Unknown mailbox command compl */
1826 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
| LOG_SLI
,
1827 "(%d):0323 Unknown Mailbox command "
1829 pmb
->vport
? pmb
->vport
->vpi
: 0,
1831 lpfc_sli4_mbox_opcode_get(phba
, pmb
));
1832 phba
->link_state
= LPFC_HBA_ERROR
;
1833 phba
->work_hs
= HS_FFER3
;
1834 lpfc_handle_eratt(phba
);
1838 if (pmbox
->mbxStatus
) {
1839 phba
->sli
.slistat
.mbox_stat_err
++;
1840 if (pmbox
->mbxStatus
== MBXERR_NO_RESOURCES
) {
1841 /* Mbox cmd cmpl error - RETRYing */
1842 lpfc_printf_log(phba
, KERN_INFO
,
1844 "(%d):0305 Mbox cmd cmpl "
1845 "error - RETRYing Data: x%x "
1846 "(x%x) x%x x%x x%x\n",
1847 pmb
->vport
? pmb
->vport
->vpi
:0,
1849 lpfc_sli4_mbox_opcode_get(phba
,
1852 pmbox
->un
.varWords
[0],
1853 pmb
->vport
->port_state
);
1854 pmbox
->mbxStatus
= 0;
1855 pmbox
->mbxOwner
= OWN_HOST
;
1856 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_NOWAIT
);
1857 if (rc
!= MBX_NOT_FINISHED
)
1862 /* Mailbox cmd <cmd> Cmpl <cmpl> */
1863 lpfc_printf_log(phba
, KERN_INFO
, LOG_MBOX
| LOG_SLI
,
1864 "(%d):0307 Mailbox cmd x%x (x%x) Cmpl x%p "
1865 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x\n",
1866 pmb
->vport
? pmb
->vport
->vpi
: 0,
1868 lpfc_sli4_mbox_opcode_get(phba
, pmb
),
1870 *((uint32_t *) pmbox
),
1871 pmbox
->un
.varWords
[0],
1872 pmbox
->un
.varWords
[1],
1873 pmbox
->un
.varWords
[2],
1874 pmbox
->un
.varWords
[3],
1875 pmbox
->un
.varWords
[4],
1876 pmbox
->un
.varWords
[5],
1877 pmbox
->un
.varWords
[6],
1878 pmbox
->un
.varWords
[7]);
1881 pmb
->mbox_cmpl(phba
,pmb
);
1887 * lpfc_sli_get_buff - Get the buffer associated with the buffer tag
1888 * @phba: Pointer to HBA context object.
1889 * @pring: Pointer to driver SLI ring object.
1892 * This function is called with no lock held. When QUE_BUFTAG_BIT bit
1893 * is set in the tag the buffer is posted for a particular exchange,
1894 * the function will return the buffer without replacing the buffer.
1895 * If the buffer is for unsolicited ELS or CT traffic, this function
1896 * returns the buffer and also posts another buffer to the firmware.
1898 static struct lpfc_dmabuf
*
1899 lpfc_sli_get_buff(struct lpfc_hba
*phba
,
1900 struct lpfc_sli_ring
*pring
,
1903 struct hbq_dmabuf
*hbq_entry
;
1905 if (tag
& QUE_BUFTAG_BIT
)
1906 return lpfc_sli_ring_taggedbuf_get(phba
, pring
, tag
);
1907 hbq_entry
= lpfc_sli_hbqbuf_find(phba
, tag
);
1910 return &hbq_entry
->dbuf
;
1914 * lpfc_complete_unsol_iocb - Complete an unsolicited sequence
1915 * @phba: Pointer to HBA context object.
1916 * @pring: Pointer to driver SLI ring object.
1917 * @saveq: Pointer to the iocbq struct representing the sequence starting frame.
1918 * @fch_r_ctl: the r_ctl for the first frame of the sequence.
1919 * @fch_type: the type for the first frame of the sequence.
1921 * This function is called with no lock held. This function uses the r_ctl and
1922 * type of the received sequence to find the correct callback function to call
1923 * to process the sequence.
1926 lpfc_complete_unsol_iocb(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
,
1927 struct lpfc_iocbq
*saveq
, uint32_t fch_r_ctl
,
1932 /* unSolicited Responses */
1933 if (pring
->prt
[0].profile
) {
1934 if (pring
->prt
[0].lpfc_sli_rcv_unsol_event
)
1935 (pring
->prt
[0].lpfc_sli_rcv_unsol_event
) (phba
, pring
,
1939 /* We must search, based on rctl / type
1940 for the right routine */
1941 for (i
= 0; i
< pring
->num_mask
; i
++) {
1942 if ((pring
->prt
[i
].rctl
== fch_r_ctl
) &&
1943 (pring
->prt
[i
].type
== fch_type
)) {
1944 if (pring
->prt
[i
].lpfc_sli_rcv_unsol_event
)
1945 (pring
->prt
[i
].lpfc_sli_rcv_unsol_event
)
1946 (phba
, pring
, saveq
);
1954 * lpfc_sli_process_unsol_iocb - Unsolicited iocb handler
1955 * @phba: Pointer to HBA context object.
1956 * @pring: Pointer to driver SLI ring object.
1957 * @saveq: Pointer to the unsolicited iocb.
1959 * This function is called with no lock held by the ring event handler
1960 * when there is an unsolicited iocb posted to the response ring by the
1961 * firmware. This function gets the buffer associated with the iocbs
1962 * and calls the event handler for the ring. This function handles both
1963 * qring buffers and hbq buffers.
1964 * When the function returns 1 the caller can free the iocb object otherwise
1965 * upper layer functions will free the iocb objects.
1968 lpfc_sli_process_unsol_iocb(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
,
1969 struct lpfc_iocbq
*saveq
)
1973 uint32_t Rctl
, Type
;
1975 struct lpfc_iocbq
*iocbq
;
1976 struct lpfc_dmabuf
*dmzbuf
;
1979 irsp
= &(saveq
->iocb
);
1981 if (irsp
->ulpCommand
== CMD_ASYNC_STATUS
) {
1982 if (pring
->lpfc_sli_rcv_async_status
)
1983 pring
->lpfc_sli_rcv_async_status(phba
, pring
, saveq
);
1985 lpfc_printf_log(phba
,
1988 "0316 Ring %d handler: unexpected "
1989 "ASYNC_STATUS iocb received evt_code "
1992 irsp
->un
.asyncstat
.evt_code
);
1996 if ((irsp
->ulpCommand
== CMD_IOCB_RET_XRI64_CX
) &&
1997 (phba
->sli3_options
& LPFC_SLI3_HBQ_ENABLED
)) {
1998 if (irsp
->ulpBdeCount
> 0) {
1999 dmzbuf
= lpfc_sli_get_buff(phba
, pring
,
2000 irsp
->un
.ulpWord
[3]);
2001 lpfc_in_buf_free(phba
, dmzbuf
);
2004 if (irsp
->ulpBdeCount
> 1) {
2005 dmzbuf
= lpfc_sli_get_buff(phba
, pring
,
2006 irsp
->unsli3
.sli3Words
[3]);
2007 lpfc_in_buf_free(phba
, dmzbuf
);
2010 if (irsp
->ulpBdeCount
> 2) {
2011 dmzbuf
= lpfc_sli_get_buff(phba
, pring
,
2012 irsp
->unsli3
.sli3Words
[7]);
2013 lpfc_in_buf_free(phba
, dmzbuf
);
2019 if (phba
->sli3_options
& LPFC_SLI3_HBQ_ENABLED
) {
2020 if (irsp
->ulpBdeCount
!= 0) {
2021 saveq
->context2
= lpfc_sli_get_buff(phba
, pring
,
2022 irsp
->un
.ulpWord
[3]);
2023 if (!saveq
->context2
)
2024 lpfc_printf_log(phba
,
2027 "0341 Ring %d Cannot find buffer for "
2028 "an unsolicited iocb. tag 0x%x\n",
2030 irsp
->un
.ulpWord
[3]);
2032 if (irsp
->ulpBdeCount
== 2) {
2033 saveq
->context3
= lpfc_sli_get_buff(phba
, pring
,
2034 irsp
->unsli3
.sli3Words
[7]);
2035 if (!saveq
->context3
)
2036 lpfc_printf_log(phba
,
2039 "0342 Ring %d Cannot find buffer for an"
2040 " unsolicited iocb. tag 0x%x\n",
2042 irsp
->unsli3
.sli3Words
[7]);
2044 list_for_each_entry(iocbq
, &saveq
->list
, list
) {
2045 irsp
= &(iocbq
->iocb
);
2046 if (irsp
->ulpBdeCount
!= 0) {
2047 iocbq
->context2
= lpfc_sli_get_buff(phba
, pring
,
2048 irsp
->un
.ulpWord
[3]);
2049 if (!iocbq
->context2
)
2050 lpfc_printf_log(phba
,
2053 "0343 Ring %d Cannot find "
2054 "buffer for an unsolicited iocb"
2055 ". tag 0x%x\n", pring
->ringno
,
2056 irsp
->un
.ulpWord
[3]);
2058 if (irsp
->ulpBdeCount
== 2) {
2059 iocbq
->context3
= lpfc_sli_get_buff(phba
, pring
,
2060 irsp
->unsli3
.sli3Words
[7]);
2061 if (!iocbq
->context3
)
2062 lpfc_printf_log(phba
,
2065 "0344 Ring %d Cannot find "
2066 "buffer for an unsolicited "
2069 irsp
->unsli3
.sli3Words
[7]);
2073 if (irsp
->ulpBdeCount
!= 0 &&
2074 (irsp
->ulpCommand
== CMD_IOCB_RCV_CONT64_CX
||
2075 irsp
->ulpStatus
== IOSTAT_INTERMED_RSP
)) {
2078 /* search continue save q for same XRI */
2079 list_for_each_entry(iocbq
, &pring
->iocb_continue_saveq
, clist
) {
2080 if (iocbq
->iocb
.ulpContext
== saveq
->iocb
.ulpContext
) {
2081 list_add_tail(&saveq
->list
, &iocbq
->list
);
2087 list_add_tail(&saveq
->clist
,
2088 &pring
->iocb_continue_saveq
);
2089 if (saveq
->iocb
.ulpStatus
!= IOSTAT_INTERMED_RSP
) {
2090 list_del_init(&iocbq
->clist
);
2092 irsp
= &(saveq
->iocb
);
2096 if ((irsp
->ulpCommand
== CMD_RCV_ELS_REQ64_CX
) ||
2097 (irsp
->ulpCommand
== CMD_RCV_ELS_REQ_CX
) ||
2098 (irsp
->ulpCommand
== CMD_IOCB_RCV_ELS64_CX
)) {
2099 Rctl
= FC_RCTL_ELS_REQ
;
2102 w5p
= (WORD5
*)&(saveq
->iocb
.un
.ulpWord
[5]);
2103 Rctl
= w5p
->hcsw
.Rctl
;
2104 Type
= w5p
->hcsw
.Type
;
2106 /* Firmware Workaround */
2107 if ((Rctl
== 0) && (pring
->ringno
== LPFC_ELS_RING
) &&
2108 (irsp
->ulpCommand
== CMD_RCV_SEQUENCE64_CX
||
2109 irsp
->ulpCommand
== CMD_IOCB_RCV_SEQ64_CX
)) {
2110 Rctl
= FC_RCTL_ELS_REQ
;
2112 w5p
->hcsw
.Rctl
= Rctl
;
2113 w5p
->hcsw
.Type
= Type
;
2117 if (!lpfc_complete_unsol_iocb(phba
, pring
, saveq
, Rctl
, Type
))
2118 lpfc_printf_log(phba
, KERN_WARNING
, LOG_SLI
,
2119 "0313 Ring %d handler: unexpected Rctl x%x "
2120 "Type x%x received\n",
2121 pring
->ringno
, Rctl
, Type
);
2127 * lpfc_sli_iocbq_lookup - Find command iocb for the given response iocb
2128 * @phba: Pointer to HBA context object.
2129 * @pring: Pointer to driver SLI ring object.
2130 * @prspiocb: Pointer to response iocb object.
2132 * This function looks up the iocb_lookup table to get the command iocb
2133 * corresponding to the given response iocb using the iotag of the
2134 * response iocb. This function is called with the hbalock held.
2135 * This function returns the command iocb object if it finds the command
2136 * iocb else returns NULL.
2138 static struct lpfc_iocbq
*
2139 lpfc_sli_iocbq_lookup(struct lpfc_hba
*phba
,
2140 struct lpfc_sli_ring
*pring
,
2141 struct lpfc_iocbq
*prspiocb
)
2143 struct lpfc_iocbq
*cmd_iocb
= NULL
;
2146 iotag
= prspiocb
->iocb
.ulpIoTag
;
2148 if (iotag
!= 0 && iotag
<= phba
->sli
.last_iotag
) {
2149 cmd_iocb
= phba
->sli
.iocbq_lookup
[iotag
];
2150 list_del_init(&cmd_iocb
->list
);
2151 pring
->txcmplq_cnt
--;
2155 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
2156 "0317 iotag x%x is out off "
2157 "range: max iotag x%x wd0 x%x\n",
2158 iotag
, phba
->sli
.last_iotag
,
2159 *(((uint32_t *) &prspiocb
->iocb
) + 7));
2164 * lpfc_sli_iocbq_lookup_by_tag - Find command iocb for the iotag
2165 * @phba: Pointer to HBA context object.
2166 * @pring: Pointer to driver SLI ring object.
2169 * This function looks up the iocb_lookup table to get the command iocb
2170 * corresponding to the given iotag. This function is called with the
2172 * This function returns the command iocb object if it finds the command
2173 * iocb else returns NULL.
2175 static struct lpfc_iocbq
*
2176 lpfc_sli_iocbq_lookup_by_tag(struct lpfc_hba
*phba
,
2177 struct lpfc_sli_ring
*pring
, uint16_t iotag
)
2179 struct lpfc_iocbq
*cmd_iocb
;
2181 if (iotag
!= 0 && iotag
<= phba
->sli
.last_iotag
) {
2182 cmd_iocb
= phba
->sli
.iocbq_lookup
[iotag
];
2183 list_del_init(&cmd_iocb
->list
);
2184 pring
->txcmplq_cnt
--;
2188 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
2189 "0372 iotag x%x is out off range: max iotag (x%x)\n",
2190 iotag
, phba
->sli
.last_iotag
);
2195 * lpfc_sli_process_sol_iocb - process solicited iocb completion
2196 * @phba: Pointer to HBA context object.
2197 * @pring: Pointer to driver SLI ring object.
2198 * @saveq: Pointer to the response iocb to be processed.
2200 * This function is called by the ring event handler for non-fcp
2201 * rings when there is a new response iocb in the response ring.
2202 * The caller is not required to hold any locks. This function
2203 * gets the command iocb associated with the response iocb and
2204 * calls the completion handler for the command iocb. If there
2205 * is no completion handler, the function will free the resources
2206 * associated with command iocb. If the response iocb is for
2207 * an already aborted command iocb, the status of the completion
2208 * is changed to IOSTAT_LOCAL_REJECT/IOERR_SLI_ABORTED.
2209 * This function always returns 1.
2212 lpfc_sli_process_sol_iocb(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
,
2213 struct lpfc_iocbq
*saveq
)
2215 struct lpfc_iocbq
*cmdiocbp
;
2217 unsigned long iflag
;
2219 /* Based on the iotag field, get the cmd IOCB from the txcmplq */
2220 spin_lock_irqsave(&phba
->hbalock
, iflag
);
2221 cmdiocbp
= lpfc_sli_iocbq_lookup(phba
, pring
, saveq
);
2222 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
2225 if (cmdiocbp
->iocb_cmpl
) {
2227 * If an ELS command failed send an event to mgmt
2230 if (saveq
->iocb
.ulpStatus
&&
2231 (pring
->ringno
== LPFC_ELS_RING
) &&
2232 (cmdiocbp
->iocb
.ulpCommand
==
2233 CMD_ELS_REQUEST64_CR
))
2234 lpfc_send_els_failure_event(phba
,
2238 * Post all ELS completions to the worker thread.
2239 * All other are passed to the completion callback.
2241 if (pring
->ringno
== LPFC_ELS_RING
) {
2242 if ((phba
->sli_rev
< LPFC_SLI_REV4
) &&
2243 (cmdiocbp
->iocb_flag
&
2244 LPFC_DRIVER_ABORTED
)) {
2245 spin_lock_irqsave(&phba
->hbalock
,
2247 cmdiocbp
->iocb_flag
&=
2248 ~LPFC_DRIVER_ABORTED
;
2249 spin_unlock_irqrestore(&phba
->hbalock
,
2251 saveq
->iocb
.ulpStatus
=
2252 IOSTAT_LOCAL_REJECT
;
2253 saveq
->iocb
.un
.ulpWord
[4] =
2256 /* Firmware could still be in progress
2257 * of DMAing payload, so don't free data
2258 * buffer till after a hbeat.
2260 spin_lock_irqsave(&phba
->hbalock
,
2262 saveq
->iocb_flag
|= LPFC_DELAY_MEM_FREE
;
2263 spin_unlock_irqrestore(&phba
->hbalock
,
2266 if (phba
->sli_rev
== LPFC_SLI_REV4
) {
2267 if (saveq
->iocb_flag
&
2268 LPFC_EXCHANGE_BUSY
) {
2269 /* Set cmdiocb flag for the
2270 * exchange busy so sgl (xri)
2271 * will not be released until
2272 * the abort xri is received
2276 &phba
->hbalock
, iflag
);
2277 cmdiocbp
->iocb_flag
|=
2279 spin_unlock_irqrestore(
2280 &phba
->hbalock
, iflag
);
2282 if (cmdiocbp
->iocb_flag
&
2283 LPFC_DRIVER_ABORTED
) {
2285 * Clear LPFC_DRIVER_ABORTED
2286 * bit in case it was driver
2290 &phba
->hbalock
, iflag
);
2291 cmdiocbp
->iocb_flag
&=
2292 ~LPFC_DRIVER_ABORTED
;
2293 spin_unlock_irqrestore(
2294 &phba
->hbalock
, iflag
);
2295 cmdiocbp
->iocb
.ulpStatus
=
2296 IOSTAT_LOCAL_REJECT
;
2297 cmdiocbp
->iocb
.un
.ulpWord
[4] =
2298 IOERR_ABORT_REQUESTED
;
2300 * For SLI4, irsiocb contains
2301 * NO_XRI in sli_xritag, it
2302 * shall not affect releasing
2303 * sgl (xri) process.
2305 saveq
->iocb
.ulpStatus
=
2306 IOSTAT_LOCAL_REJECT
;
2307 saveq
->iocb
.un
.ulpWord
[4] =
2310 &phba
->hbalock
, iflag
);
2312 LPFC_DELAY_MEM_FREE
;
2313 spin_unlock_irqrestore(
2314 &phba
->hbalock
, iflag
);
2318 (cmdiocbp
->iocb_cmpl
) (phba
, cmdiocbp
, saveq
);
2320 lpfc_sli_release_iocbq(phba
, cmdiocbp
);
2323 * Unknown initiating command based on the response iotag.
2324 * This could be the case on the ELS ring because of
2327 if (pring
->ringno
!= LPFC_ELS_RING
) {
2329 * Ring <ringno> handler: unexpected completion IoTag
2332 lpfc_printf_log(phba
, KERN_WARNING
, LOG_SLI
,
2333 "0322 Ring %d handler: "
2334 "unexpected completion IoTag x%x "
2335 "Data: x%x x%x x%x x%x\n",
2337 saveq
->iocb
.ulpIoTag
,
2338 saveq
->iocb
.ulpStatus
,
2339 saveq
->iocb
.un
.ulpWord
[4],
2340 saveq
->iocb
.ulpCommand
,
2341 saveq
->iocb
.ulpContext
);
2349 * lpfc_sli_rsp_pointers_error - Response ring pointer error handler
2350 * @phba: Pointer to HBA context object.
2351 * @pring: Pointer to driver SLI ring object.
2353 * This function is called from the iocb ring event handlers when
2354 * put pointer is ahead of the get pointer for a ring. This function signal
2355 * an error attention condition to the worker thread and the worker
2356 * thread will transition the HBA to offline state.
2359 lpfc_sli_rsp_pointers_error(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
)
2361 struct lpfc_pgp
*pgp
= &phba
->port_gp
[pring
->ringno
];
2363 * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
2364 * rsp ring <portRspMax>
2366 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
2367 "0312 Ring %d handler: portRspPut %d "
2368 "is bigger than rsp ring %d\n",
2369 pring
->ringno
, le32_to_cpu(pgp
->rspPutInx
),
2372 phba
->link_state
= LPFC_HBA_ERROR
;
2375 * All error attention handlers are posted to
2378 phba
->work_ha
|= HA_ERATT
;
2379 phba
->work_hs
= HS_FFER3
;
2381 lpfc_worker_wake_up(phba
);
2387 * lpfc_poll_eratt - Error attention polling timer timeout handler
2388 * @ptr: Pointer to address of HBA context object.
2390 * This function is invoked by the Error Attention polling timer when the
2391 * timer times out. It will check the SLI Error Attention register for
2392 * possible attention events. If so, it will post an Error Attention event
2393 * and wake up worker thread to process it. Otherwise, it will set up the
2394 * Error Attention polling timer for the next poll.
2396 void lpfc_poll_eratt(unsigned long ptr
)
2398 struct lpfc_hba
*phba
;
2401 phba
= (struct lpfc_hba
*)ptr
;
2403 /* Check chip HA register for error event */
2404 eratt
= lpfc_sli_check_eratt(phba
);
2407 /* Tell the worker thread there is work to do */
2408 lpfc_worker_wake_up(phba
);
2410 /* Restart the timer for next eratt poll */
2411 mod_timer(&phba
->eratt_poll
, jiffies
+
2412 HZ
* LPFC_ERATT_POLL_INTERVAL
);
2418 * lpfc_sli_handle_fast_ring_event - Handle ring events on FCP ring
2419 * @phba: Pointer to HBA context object.
2420 * @pring: Pointer to driver SLI ring object.
2421 * @mask: Host attention register mask for this ring.
2423 * This function is called from the interrupt context when there is a ring
2424 * event for the fcp ring. The caller does not hold any lock.
2425 * The function processes each response iocb in the response ring until it
2426 * finds an iocb with LE bit set and chains all the iocbs upto the iocb with
2427 * LE bit set. The function will call the completion handler of the command iocb
2428 * if the response iocb indicates a completion for a command iocb or it is
2429 * an abort completion. The function will call lpfc_sli_process_unsol_iocb
2430 * function if this is an unsolicited iocb.
2431 * This routine presumes LPFC_FCP_RING handling and doesn't bother
2432 * to check it explicitly.
2435 lpfc_sli_handle_fast_ring_event(struct lpfc_hba
*phba
,
2436 struct lpfc_sli_ring
*pring
, uint32_t mask
)
2438 struct lpfc_pgp
*pgp
= &phba
->port_gp
[pring
->ringno
];
2439 IOCB_t
*irsp
= NULL
;
2440 IOCB_t
*entry
= NULL
;
2441 struct lpfc_iocbq
*cmdiocbq
= NULL
;
2442 struct lpfc_iocbq rspiocbq
;
2444 uint32_t portRspPut
, portRspMax
;
2446 lpfc_iocb_type type
;
2447 unsigned long iflag
;
2448 uint32_t rsp_cmpl
= 0;
2450 spin_lock_irqsave(&phba
->hbalock
, iflag
);
2451 pring
->stats
.iocb_event
++;
2454 * The next available response entry should never exceed the maximum
2455 * entries. If it does, treat it as an adapter hardware error.
2457 portRspMax
= pring
->numRiocb
;
2458 portRspPut
= le32_to_cpu(pgp
->rspPutInx
);
2459 if (unlikely(portRspPut
>= portRspMax
)) {
2460 lpfc_sli_rsp_pointers_error(phba
, pring
);
2461 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
2464 if (phba
->fcp_ring_in_use
) {
2465 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
2468 phba
->fcp_ring_in_use
= 1;
2471 while (pring
->rspidx
!= portRspPut
) {
2473 * Fetch an entry off the ring and copy it into a local data
2474 * structure. The copy involves a byte-swap since the
2475 * network byte order and pci byte orders are different.
2477 entry
= lpfc_resp_iocb(phba
, pring
);
2478 phba
->last_completion_time
= jiffies
;
2480 if (++pring
->rspidx
>= portRspMax
)
2483 lpfc_sli_pcimem_bcopy((uint32_t *) entry
,
2484 (uint32_t *) &rspiocbq
.iocb
,
2485 phba
->iocb_rsp_size
);
2486 INIT_LIST_HEAD(&(rspiocbq
.list
));
2487 irsp
= &rspiocbq
.iocb
;
2489 type
= lpfc_sli_iocb_cmd_type(irsp
->ulpCommand
& CMD_IOCB_MASK
);
2490 pring
->stats
.iocb_rsp
++;
2493 if (unlikely(irsp
->ulpStatus
)) {
2495 * If resource errors reported from HBA, reduce
2496 * queuedepths of the SCSI device.
2498 if ((irsp
->ulpStatus
== IOSTAT_LOCAL_REJECT
) &&
2499 (irsp
->un
.ulpWord
[4] == IOERR_NO_RESOURCES
)) {
2500 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
2501 phba
->lpfc_rampdown_queue_depth(phba
);
2502 spin_lock_irqsave(&phba
->hbalock
, iflag
);
2505 /* Rsp ring <ringno> error: IOCB */
2506 lpfc_printf_log(phba
, KERN_WARNING
, LOG_SLI
,
2507 "0336 Rsp Ring %d error: IOCB Data: "
2508 "x%x x%x x%x x%x x%x x%x x%x x%x\n",
2510 irsp
->un
.ulpWord
[0],
2511 irsp
->un
.ulpWord
[1],
2512 irsp
->un
.ulpWord
[2],
2513 irsp
->un
.ulpWord
[3],
2514 irsp
->un
.ulpWord
[4],
2515 irsp
->un
.ulpWord
[5],
2516 *(uint32_t *)&irsp
->un1
,
2517 *((uint32_t *)&irsp
->un1
+ 1));
2521 case LPFC_ABORT_IOCB
:
2524 * Idle exchange closed via ABTS from port. No iocb
2525 * resources need to be recovered.
2527 if (unlikely(irsp
->ulpCommand
== CMD_XRI_ABORTED_CX
)) {
2528 lpfc_printf_log(phba
, KERN_INFO
, LOG_SLI
,
2529 "0333 IOCB cmd 0x%x"
2530 " processed. Skipping"
2536 cmdiocbq
= lpfc_sli_iocbq_lookup(phba
, pring
,
2538 if (unlikely(!cmdiocbq
))
2540 if (cmdiocbq
->iocb_flag
& LPFC_DRIVER_ABORTED
)
2541 cmdiocbq
->iocb_flag
&= ~LPFC_DRIVER_ABORTED
;
2542 if (cmdiocbq
->iocb_cmpl
) {
2543 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
2544 (cmdiocbq
->iocb_cmpl
)(phba
, cmdiocbq
,
2546 spin_lock_irqsave(&phba
->hbalock
, iflag
);
2549 case LPFC_UNSOL_IOCB
:
2550 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
2551 lpfc_sli_process_unsol_iocb(phba
, pring
, &rspiocbq
);
2552 spin_lock_irqsave(&phba
->hbalock
, iflag
);
2555 if (irsp
->ulpCommand
== CMD_ADAPTER_MSG
) {
2556 char adaptermsg
[LPFC_MAX_ADPTMSG
];
2557 memset(adaptermsg
, 0, LPFC_MAX_ADPTMSG
);
2558 memcpy(&adaptermsg
[0], (uint8_t *) irsp
,
2560 dev_warn(&((phba
->pcidev
)->dev
),
2562 phba
->brd_no
, adaptermsg
);
2564 /* Unknown IOCB command */
2565 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
2566 "0334 Unknown IOCB command "
2567 "Data: x%x, x%x x%x x%x x%x\n",
2568 type
, irsp
->ulpCommand
,
2577 * The response IOCB has been processed. Update the ring
2578 * pointer in SLIM. If the port response put pointer has not
2579 * been updated, sync the pgp->rspPutInx and fetch the new port
2580 * response put pointer.
2582 writel(pring
->rspidx
, &phba
->host_gp
[pring
->ringno
].rspGetInx
);
2584 if (pring
->rspidx
== portRspPut
)
2585 portRspPut
= le32_to_cpu(pgp
->rspPutInx
);
2588 if ((rsp_cmpl
> 0) && (mask
& HA_R0RE_REQ
)) {
2589 pring
->stats
.iocb_rsp_full
++;
2590 status
= ((CA_R0ATT
| CA_R0RE_RSP
) << (pring
->ringno
* 4));
2591 writel(status
, phba
->CAregaddr
);
2592 readl(phba
->CAregaddr
);
2594 if ((mask
& HA_R0CE_RSP
) && (pring
->flag
& LPFC_CALL_RING_AVAILABLE
)) {
2595 pring
->flag
&= ~LPFC_CALL_RING_AVAILABLE
;
2596 pring
->stats
.iocb_cmd_empty
++;
2598 /* Force update of the local copy of cmdGetInx */
2599 pring
->local_getidx
= le32_to_cpu(pgp
->cmdGetInx
);
2600 lpfc_sli_resume_iocb(phba
, pring
);
2602 if ((pring
->lpfc_sli_cmd_available
))
2603 (pring
->lpfc_sli_cmd_available
) (phba
, pring
);
2607 phba
->fcp_ring_in_use
= 0;
2608 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
2613 * lpfc_sli_sp_handle_rspiocb - Handle slow-path response iocb
2614 * @phba: Pointer to HBA context object.
2615 * @pring: Pointer to driver SLI ring object.
2616 * @rspiocbp: Pointer to driver response IOCB object.
2618 * This function is called from the worker thread when there is a slow-path
2619 * response IOCB to process. This function chains all the response iocbs until
2620 * seeing the iocb with the LE bit set. The function will call
2621 * lpfc_sli_process_sol_iocb function if the response iocb indicates a
2622 * completion of a command iocb. The function will call the
2623 * lpfc_sli_process_unsol_iocb function if this is an unsolicited iocb.
2624 * The function frees the resources or calls the completion handler if this
2625 * iocb is an abort completion. The function returns NULL when the response
2626 * iocb has the LE bit set and all the chained iocbs are processed, otherwise
2627 * this function shall chain the iocb on to the iocb_continueq and return the
2628 * response iocb passed in.
2630 static struct lpfc_iocbq
*
2631 lpfc_sli_sp_handle_rspiocb(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
,
2632 struct lpfc_iocbq
*rspiocbp
)
2634 struct lpfc_iocbq
*saveq
;
2635 struct lpfc_iocbq
*cmdiocbp
;
2636 struct lpfc_iocbq
*next_iocb
;
2637 IOCB_t
*irsp
= NULL
;
2638 uint32_t free_saveq
;
2639 uint8_t iocb_cmd_type
;
2640 lpfc_iocb_type type
;
2641 unsigned long iflag
;
2644 spin_lock_irqsave(&phba
->hbalock
, iflag
);
2645 /* First add the response iocb to the countinueq list */
2646 list_add_tail(&rspiocbp
->list
, &(pring
->iocb_continueq
));
2647 pring
->iocb_continueq_cnt
++;
2649 /* Now, determine whetehr the list is completed for processing */
2650 irsp
= &rspiocbp
->iocb
;
2653 * By default, the driver expects to free all resources
2654 * associated with this iocb completion.
2657 saveq
= list_get_first(&pring
->iocb_continueq
,
2658 struct lpfc_iocbq
, list
);
2659 irsp
= &(saveq
->iocb
);
2660 list_del_init(&pring
->iocb_continueq
);
2661 pring
->iocb_continueq_cnt
= 0;
2663 pring
->stats
.iocb_rsp
++;
2666 * If resource errors reported from HBA, reduce
2667 * queuedepths of the SCSI device.
2669 if ((irsp
->ulpStatus
== IOSTAT_LOCAL_REJECT
) &&
2670 (irsp
->un
.ulpWord
[4] == IOERR_NO_RESOURCES
)) {
2671 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
2672 phba
->lpfc_rampdown_queue_depth(phba
);
2673 spin_lock_irqsave(&phba
->hbalock
, iflag
);
2676 if (irsp
->ulpStatus
) {
2677 /* Rsp ring <ringno> error: IOCB */
2678 lpfc_printf_log(phba
, KERN_WARNING
, LOG_SLI
,
2679 "0328 Rsp Ring %d error: "
2684 "x%x x%x x%x x%x\n",
2686 irsp
->un
.ulpWord
[0],
2687 irsp
->un
.ulpWord
[1],
2688 irsp
->un
.ulpWord
[2],
2689 irsp
->un
.ulpWord
[3],
2690 irsp
->un
.ulpWord
[4],
2691 irsp
->un
.ulpWord
[5],
2692 *(((uint32_t *) irsp
) + 6),
2693 *(((uint32_t *) irsp
) + 7),
2694 *(((uint32_t *) irsp
) + 8),
2695 *(((uint32_t *) irsp
) + 9),
2696 *(((uint32_t *) irsp
) + 10),
2697 *(((uint32_t *) irsp
) + 11),
2698 *(((uint32_t *) irsp
) + 12),
2699 *(((uint32_t *) irsp
) + 13),
2700 *(((uint32_t *) irsp
) + 14),
2701 *(((uint32_t *) irsp
) + 15));
2705 * Fetch the IOCB command type and call the correct completion
2706 * routine. Solicited and Unsolicited IOCBs on the ELS ring
2707 * get freed back to the lpfc_iocb_list by the discovery
2710 iocb_cmd_type
= irsp
->ulpCommand
& CMD_IOCB_MASK
;
2711 type
= lpfc_sli_iocb_cmd_type(iocb_cmd_type
);
2714 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
2715 rc
= lpfc_sli_process_sol_iocb(phba
, pring
, saveq
);
2716 spin_lock_irqsave(&phba
->hbalock
, iflag
);
2719 case LPFC_UNSOL_IOCB
:
2720 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
2721 rc
= lpfc_sli_process_unsol_iocb(phba
, pring
, saveq
);
2722 spin_lock_irqsave(&phba
->hbalock
, iflag
);
2727 case LPFC_ABORT_IOCB
:
2729 if (irsp
->ulpCommand
!= CMD_XRI_ABORTED_CX
)
2730 cmdiocbp
= lpfc_sli_iocbq_lookup(phba
, pring
,
2733 /* Call the specified completion routine */
2734 if (cmdiocbp
->iocb_cmpl
) {
2735 spin_unlock_irqrestore(&phba
->hbalock
,
2737 (cmdiocbp
->iocb_cmpl
)(phba
, cmdiocbp
,
2739 spin_lock_irqsave(&phba
->hbalock
,
2742 __lpfc_sli_release_iocbq(phba
,
2747 case LPFC_UNKNOWN_IOCB
:
2748 if (irsp
->ulpCommand
== CMD_ADAPTER_MSG
) {
2749 char adaptermsg
[LPFC_MAX_ADPTMSG
];
2750 memset(adaptermsg
, 0, LPFC_MAX_ADPTMSG
);
2751 memcpy(&adaptermsg
[0], (uint8_t *)irsp
,
2753 dev_warn(&((phba
->pcidev
)->dev
),
2755 phba
->brd_no
, adaptermsg
);
2757 /* Unknown IOCB command */
2758 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
2759 "0335 Unknown IOCB "
2760 "command Data: x%x "
2771 list_for_each_entry_safe(rspiocbp
, next_iocb
,
2772 &saveq
->list
, list
) {
2773 list_del(&rspiocbp
->list
);
2774 __lpfc_sli_release_iocbq(phba
, rspiocbp
);
2776 __lpfc_sli_release_iocbq(phba
, saveq
);
2780 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
2785 * lpfc_sli_handle_slow_ring_event - Wrapper func for handling slow-path iocbs
2786 * @phba: Pointer to HBA context object.
2787 * @pring: Pointer to driver SLI ring object.
2788 * @mask: Host attention register mask for this ring.
2790 * This routine wraps the actual slow_ring event process routine from the
2791 * API jump table function pointer from the lpfc_hba struct.
2794 lpfc_sli_handle_slow_ring_event(struct lpfc_hba
*phba
,
2795 struct lpfc_sli_ring
*pring
, uint32_t mask
)
2797 phba
->lpfc_sli_handle_slow_ring_event(phba
, pring
, mask
);
2801 * lpfc_sli_handle_slow_ring_event_s3 - Handle SLI3 ring event for non-FCP rings
2802 * @phba: Pointer to HBA context object.
2803 * @pring: Pointer to driver SLI ring object.
2804 * @mask: Host attention register mask for this ring.
2806 * This function is called from the worker thread when there is a ring event
2807 * for non-fcp rings. The caller does not hold any lock. The function will
2808 * remove each response iocb in the response ring and calls the handle
2809 * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
2812 lpfc_sli_handle_slow_ring_event_s3(struct lpfc_hba
*phba
,
2813 struct lpfc_sli_ring
*pring
, uint32_t mask
)
2815 struct lpfc_pgp
*pgp
;
2817 IOCB_t
*irsp
= NULL
;
2818 struct lpfc_iocbq
*rspiocbp
= NULL
;
2819 uint32_t portRspPut
, portRspMax
;
2820 unsigned long iflag
;
2823 pgp
= &phba
->port_gp
[pring
->ringno
];
2824 spin_lock_irqsave(&phba
->hbalock
, iflag
);
2825 pring
->stats
.iocb_event
++;
2828 * The next available response entry should never exceed the maximum
2829 * entries. If it does, treat it as an adapter hardware error.
2831 portRspMax
= pring
->numRiocb
;
2832 portRspPut
= le32_to_cpu(pgp
->rspPutInx
);
2833 if (portRspPut
>= portRspMax
) {
2835 * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
2836 * rsp ring <portRspMax>
2838 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
2839 "0303 Ring %d handler: portRspPut %d "
2840 "is bigger than rsp ring %d\n",
2841 pring
->ringno
, portRspPut
, portRspMax
);
2843 phba
->link_state
= LPFC_HBA_ERROR
;
2844 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
2846 phba
->work_hs
= HS_FFER3
;
2847 lpfc_handle_eratt(phba
);
2853 while (pring
->rspidx
!= portRspPut
) {
2855 * Build a completion list and call the appropriate handler.
2856 * The process is to get the next available response iocb, get
2857 * a free iocb from the list, copy the response data into the
2858 * free iocb, insert to the continuation list, and update the
2859 * next response index to slim. This process makes response
2860 * iocb's in the ring available to DMA as fast as possible but
2861 * pays a penalty for a copy operation. Since the iocb is
2862 * only 32 bytes, this penalty is considered small relative to
2863 * the PCI reads for register values and a slim write. When
2864 * the ulpLe field is set, the entire Command has been
2867 entry
= lpfc_resp_iocb(phba
, pring
);
2869 phba
->last_completion_time
= jiffies
;
2870 rspiocbp
= __lpfc_sli_get_iocbq(phba
);
2871 if (rspiocbp
== NULL
) {
2872 printk(KERN_ERR
"%s: out of buffers! Failing "
2873 "completion.\n", __func__
);
2877 lpfc_sli_pcimem_bcopy(entry
, &rspiocbp
->iocb
,
2878 phba
->iocb_rsp_size
);
2879 irsp
= &rspiocbp
->iocb
;
2881 if (++pring
->rspidx
>= portRspMax
)
2884 if (pring
->ringno
== LPFC_ELS_RING
) {
2885 lpfc_debugfs_slow_ring_trc(phba
,
2886 "IOCB rsp ring: wd4:x%08x wd6:x%08x wd7:x%08x",
2887 *(((uint32_t *) irsp
) + 4),
2888 *(((uint32_t *) irsp
) + 6),
2889 *(((uint32_t *) irsp
) + 7));
2892 writel(pring
->rspidx
, &phba
->host_gp
[pring
->ringno
].rspGetInx
);
2894 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
2895 /* Handle the response IOCB */
2896 rspiocbp
= lpfc_sli_sp_handle_rspiocb(phba
, pring
, rspiocbp
);
2897 spin_lock_irqsave(&phba
->hbalock
, iflag
);
2900 * If the port response put pointer has not been updated, sync
2901 * the pgp->rspPutInx in the MAILBOX_tand fetch the new port
2902 * response put pointer.
2904 if (pring
->rspidx
== portRspPut
) {
2905 portRspPut
= le32_to_cpu(pgp
->rspPutInx
);
2907 } /* while (pring->rspidx != portRspPut) */
2909 if ((rspiocbp
!= NULL
) && (mask
& HA_R0RE_REQ
)) {
2910 /* At least one response entry has been freed */
2911 pring
->stats
.iocb_rsp_full
++;
2912 /* SET RxRE_RSP in Chip Att register */
2913 status
= ((CA_R0ATT
| CA_R0RE_RSP
) << (pring
->ringno
* 4));
2914 writel(status
, phba
->CAregaddr
);
2915 readl(phba
->CAregaddr
); /* flush */
2917 if ((mask
& HA_R0CE_RSP
) && (pring
->flag
& LPFC_CALL_RING_AVAILABLE
)) {
2918 pring
->flag
&= ~LPFC_CALL_RING_AVAILABLE
;
2919 pring
->stats
.iocb_cmd_empty
++;
2921 /* Force update of the local copy of cmdGetInx */
2922 pring
->local_getidx
= le32_to_cpu(pgp
->cmdGetInx
);
2923 lpfc_sli_resume_iocb(phba
, pring
);
2925 if ((pring
->lpfc_sli_cmd_available
))
2926 (pring
->lpfc_sli_cmd_available
) (phba
, pring
);
2930 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
2935 * lpfc_sli_handle_slow_ring_event_s4 - Handle SLI4 slow-path els events
2936 * @phba: Pointer to HBA context object.
2937 * @pring: Pointer to driver SLI ring object.
2938 * @mask: Host attention register mask for this ring.
2940 * This function is called from the worker thread when there is a pending
2941 * ELS response iocb on the driver internal slow-path response iocb worker
2942 * queue. The caller does not hold any lock. The function will remove each
2943 * response iocb from the response worker queue and calls the handle
2944 * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
2947 lpfc_sli_handle_slow_ring_event_s4(struct lpfc_hba
*phba
,
2948 struct lpfc_sli_ring
*pring
, uint32_t mask
)
2950 struct lpfc_iocbq
*irspiocbq
;
2951 struct hbq_dmabuf
*dmabuf
;
2952 struct lpfc_cq_event
*cq_event
;
2953 unsigned long iflag
;
2955 spin_lock_irqsave(&phba
->hbalock
, iflag
);
2956 phba
->hba_flag
&= ~HBA_SP_QUEUE_EVT
;
2957 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
2958 while (!list_empty(&phba
->sli4_hba
.sp_queue_event
)) {
2959 /* Get the response iocb from the head of work queue */
2960 spin_lock_irqsave(&phba
->hbalock
, iflag
);
2961 list_remove_head(&phba
->sli4_hba
.sp_queue_event
,
2962 cq_event
, struct lpfc_cq_event
, list
);
2963 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
2965 switch (bf_get(lpfc_wcqe_c_code
, &cq_event
->cqe
.wcqe_cmpl
)) {
2966 case CQE_CODE_COMPL_WQE
:
2967 irspiocbq
= container_of(cq_event
, struct lpfc_iocbq
,
2969 /* Translate ELS WCQE to response IOCBQ */
2970 irspiocbq
= lpfc_sli4_els_wcqe_to_rspiocbq(phba
,
2973 lpfc_sli_sp_handle_rspiocb(phba
, pring
,
2976 case CQE_CODE_RECEIVE
:
2977 dmabuf
= container_of(cq_event
, struct hbq_dmabuf
,
2979 lpfc_sli4_handle_received_buffer(phba
, dmabuf
);
2988 * lpfc_sli_abort_iocb_ring - Abort all iocbs in the ring
2989 * @phba: Pointer to HBA context object.
2990 * @pring: Pointer to driver SLI ring object.
2992 * This function aborts all iocbs in the given ring and frees all the iocb
2993 * objects in txq. This function issues an abort iocb for all the iocb commands
2994 * in txcmplq. The iocbs in the txcmplq is not guaranteed to complete before
2995 * the return of this function. The caller is not required to hold any locks.
2998 lpfc_sli_abort_iocb_ring(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
)
3000 LIST_HEAD(completions
);
3001 struct lpfc_iocbq
*iocb
, *next_iocb
;
3003 if (pring
->ringno
== LPFC_ELS_RING
) {
3004 lpfc_fabric_abort_hba(phba
);
3007 /* Error everything on txq and txcmplq
3010 spin_lock_irq(&phba
->hbalock
);
3011 list_splice_init(&pring
->txq
, &completions
);
3014 /* Next issue ABTS for everything on the txcmplq */
3015 list_for_each_entry_safe(iocb
, next_iocb
, &pring
->txcmplq
, list
)
3016 lpfc_sli_issue_abort_iotag(phba
, pring
, iocb
);
3018 spin_unlock_irq(&phba
->hbalock
);
3020 /* Cancel all the IOCBs from the completions list */
3021 lpfc_sli_cancel_iocbs(phba
, &completions
, IOSTAT_LOCAL_REJECT
,
3026 * lpfc_sli_flush_fcp_rings - flush all iocbs in the fcp ring
3027 * @phba: Pointer to HBA context object.
3029 * This function flushes all iocbs in the fcp ring and frees all the iocb
3030 * objects in txq and txcmplq. This function will not issue abort iocbs
3031 * for all the iocb commands in txcmplq, they will just be returned with
3032 * IOERR_SLI_DOWN. This function is invoked with EEH when device's PCI
3033 * slot has been permanently disabled.
3036 lpfc_sli_flush_fcp_rings(struct lpfc_hba
*phba
)
3040 struct lpfc_sli
*psli
= &phba
->sli
;
3041 struct lpfc_sli_ring
*pring
;
3043 /* Currently, only one fcp ring */
3044 pring
= &psli
->ring
[psli
->fcp_ring
];
3046 spin_lock_irq(&phba
->hbalock
);
3047 /* Retrieve everything on txq */
3048 list_splice_init(&pring
->txq
, &txq
);
3051 /* Retrieve everything on the txcmplq */
3052 list_splice_init(&pring
->txcmplq
, &txcmplq
);
3053 pring
->txcmplq_cnt
= 0;
3054 spin_unlock_irq(&phba
->hbalock
);
3057 lpfc_sli_cancel_iocbs(phba
, &txq
, IOSTAT_LOCAL_REJECT
,
3060 /* Flush the txcmpq */
3061 lpfc_sli_cancel_iocbs(phba
, &txcmplq
, IOSTAT_LOCAL_REJECT
,
3066 * lpfc_sli_brdready_s3 - Check for sli3 host ready status
3067 * @phba: Pointer to HBA context object.
3068 * @mask: Bit mask to be checked.
3070 * This function reads the host status register and compares
3071 * with the provided bit mask to check if HBA completed
3072 * the restart. This function will wait in a loop for the
3073 * HBA to complete restart. If the HBA does not restart within
3074 * 15 iterations, the function will reset the HBA again. The
3075 * function returns 1 when HBA fail to restart otherwise returns
3079 lpfc_sli_brdready_s3(struct lpfc_hba
*phba
, uint32_t mask
)
3085 /* Read the HBA Host Status Register */
3086 status
= readl(phba
->HSregaddr
);
3089 * Check status register every 100ms for 5 retries, then every
3090 * 500ms for 5, then every 2.5 sec for 5, then reset board and
3091 * every 2.5 sec for 4.
3092 * Break our of the loop if errors occurred during init.
3094 while (((status
& mask
) != mask
) &&
3095 !(status
& HS_FFERM
) &&
3107 phba
->pport
->port_state
= LPFC_VPORT_UNKNOWN
;
3108 lpfc_sli_brdrestart(phba
);
3110 /* Read the HBA Host Status Register */
3111 status
= readl(phba
->HSregaddr
);
3114 /* Check to see if any errors occurred during init */
3115 if ((status
& HS_FFERM
) || (i
>= 20)) {
3116 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
3117 "2751 Adapter failed to restart, "
3118 "status reg x%x, FW Data: A8 x%x AC x%x\n",
3120 readl(phba
->MBslimaddr
+ 0xa8),
3121 readl(phba
->MBslimaddr
+ 0xac));
3122 phba
->link_state
= LPFC_HBA_ERROR
;
3130 * lpfc_sli_brdready_s4 - Check for sli4 host ready status
3131 * @phba: Pointer to HBA context object.
3132 * @mask: Bit mask to be checked.
3134 * This function checks the host status register to check if HBA is
3135 * ready. This function will wait in a loop for the HBA to be ready
3136 * If the HBA is not ready , the function will will reset the HBA PCI
3137 * function again. The function returns 1 when HBA fail to be ready
3138 * otherwise returns zero.
3141 lpfc_sli_brdready_s4(struct lpfc_hba
*phba
, uint32_t mask
)
3146 /* Read the HBA Host Status Register */
3147 status
= lpfc_sli4_post_status_check(phba
);
3150 phba
->pport
->port_state
= LPFC_VPORT_UNKNOWN
;
3151 lpfc_sli_brdrestart(phba
);
3152 status
= lpfc_sli4_post_status_check(phba
);
3155 /* Check to see if any errors occurred during init */
3157 phba
->link_state
= LPFC_HBA_ERROR
;
3160 phba
->sli4_hba
.intr_enable
= 0;
3166 * lpfc_sli_brdready - Wrapper func for checking the hba readyness
3167 * @phba: Pointer to HBA context object.
3168 * @mask: Bit mask to be checked.
3170 * This routine wraps the actual SLI3 or SLI4 hba readyness check routine
3171 * from the API jump table function pointer from the lpfc_hba struct.
3174 lpfc_sli_brdready(struct lpfc_hba
*phba
, uint32_t mask
)
3176 return phba
->lpfc_sli_brdready(phba
, mask
);
3179 #define BARRIER_TEST_PATTERN (0xdeadbeef)
3182 * lpfc_reset_barrier - Make HBA ready for HBA reset
3183 * @phba: Pointer to HBA context object.
3185 * This function is called before resetting an HBA. This
3186 * function requests HBA to quiesce DMAs before a reset.
3188 void lpfc_reset_barrier(struct lpfc_hba
*phba
)
3190 uint32_t __iomem
*resp_buf
;
3191 uint32_t __iomem
*mbox_buf
;
3192 volatile uint32_t mbox
;
3197 pci_read_config_byte(phba
->pcidev
, PCI_HEADER_TYPE
, &hdrtype
);
3198 if (hdrtype
!= 0x80 ||
3199 (FC_JEDEC_ID(phba
->vpd
.rev
.biuRev
) != HELIOS_JEDEC_ID
&&
3200 FC_JEDEC_ID(phba
->vpd
.rev
.biuRev
) != THOR_JEDEC_ID
))
3204 * Tell the other part of the chip to suspend temporarily all
3207 resp_buf
= phba
->MBslimaddr
;
3209 /* Disable the error attention */
3210 hc_copy
= readl(phba
->HCregaddr
);
3211 writel((hc_copy
& ~HC_ERINT_ENA
), phba
->HCregaddr
);
3212 readl(phba
->HCregaddr
); /* flush */
3213 phba
->link_flag
|= LS_IGNORE_ERATT
;
3215 if (readl(phba
->HAregaddr
) & HA_ERATT
) {
3216 /* Clear Chip error bit */
3217 writel(HA_ERATT
, phba
->HAregaddr
);
3218 phba
->pport
->stopped
= 1;
3222 ((MAILBOX_t
*)&mbox
)->mbxCommand
= MBX_KILL_BOARD
;
3223 ((MAILBOX_t
*)&mbox
)->mbxOwner
= OWN_CHIP
;
3225 writel(BARRIER_TEST_PATTERN
, (resp_buf
+ 1));
3226 mbox_buf
= phba
->MBslimaddr
;
3227 writel(mbox
, mbox_buf
);
3230 readl(resp_buf
+ 1) != ~(BARRIER_TEST_PATTERN
) && i
< 50; i
++)
3233 if (readl(resp_buf
+ 1) != ~(BARRIER_TEST_PATTERN
)) {
3234 if (phba
->sli
.sli_flag
& LPFC_SLI_ACTIVE
||
3235 phba
->pport
->stopped
)
3241 ((MAILBOX_t
*)&mbox
)->mbxOwner
= OWN_HOST
;
3242 for (i
= 0; readl(resp_buf
) != mbox
&& i
< 500; i
++)
3247 while (!(readl(phba
->HAregaddr
) & HA_ERATT
) && ++i
< 500)
3250 if (readl(phba
->HAregaddr
) & HA_ERATT
) {
3251 writel(HA_ERATT
, phba
->HAregaddr
);
3252 phba
->pport
->stopped
= 1;
3256 phba
->link_flag
&= ~LS_IGNORE_ERATT
;
3257 writel(hc_copy
, phba
->HCregaddr
);
3258 readl(phba
->HCregaddr
); /* flush */
3262 * lpfc_sli_brdkill - Issue a kill_board mailbox command
3263 * @phba: Pointer to HBA context object.
3265 * This function issues a kill_board mailbox command and waits for
3266 * the error attention interrupt. This function is called for stopping
3267 * the firmware processing. The caller is not required to hold any
3268 * locks. This function calls lpfc_hba_down_post function to free
3269 * any pending commands after the kill. The function will return 1 when it
3270 * fails to kill the board else will return 0.
3273 lpfc_sli_brdkill(struct lpfc_hba
*phba
)
3275 struct lpfc_sli
*psli
;
3285 lpfc_printf_log(phba
, KERN_INFO
, LOG_SLI
,
3286 "0329 Kill HBA Data: x%x x%x\n",
3287 phba
->pport
->port_state
, psli
->sli_flag
);
3289 pmb
= (LPFC_MBOXQ_t
*) mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
3293 /* Disable the error attention */
3294 spin_lock_irq(&phba
->hbalock
);
3295 status
= readl(phba
->HCregaddr
);
3296 status
&= ~HC_ERINT_ENA
;
3297 writel(status
, phba
->HCregaddr
);
3298 readl(phba
->HCregaddr
); /* flush */
3299 phba
->link_flag
|= LS_IGNORE_ERATT
;
3300 spin_unlock_irq(&phba
->hbalock
);
3302 lpfc_kill_board(phba
, pmb
);
3303 pmb
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
3304 retval
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_NOWAIT
);
3306 if (retval
!= MBX_SUCCESS
) {
3307 if (retval
!= MBX_BUSY
)
3308 mempool_free(pmb
, phba
->mbox_mem_pool
);
3309 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
3310 "2752 KILL_BOARD command failed retval %d\n",
3312 spin_lock_irq(&phba
->hbalock
);
3313 phba
->link_flag
&= ~LS_IGNORE_ERATT
;
3314 spin_unlock_irq(&phba
->hbalock
);
3318 spin_lock_irq(&phba
->hbalock
);
3319 psli
->sli_flag
&= ~LPFC_SLI_ACTIVE
;
3320 spin_unlock_irq(&phba
->hbalock
);
3322 mempool_free(pmb
, phba
->mbox_mem_pool
);
3324 /* There is no completion for a KILL_BOARD mbox cmd. Check for an error
3325 * attention every 100ms for 3 seconds. If we don't get ERATT after
3326 * 3 seconds we still set HBA_ERROR state because the status of the
3327 * board is now undefined.
3329 ha_copy
= readl(phba
->HAregaddr
);
3331 while ((i
++ < 30) && !(ha_copy
& HA_ERATT
)) {
3333 ha_copy
= readl(phba
->HAregaddr
);
3336 del_timer_sync(&psli
->mbox_tmo
);
3337 if (ha_copy
& HA_ERATT
) {
3338 writel(HA_ERATT
, phba
->HAregaddr
);
3339 phba
->pport
->stopped
= 1;
3341 spin_lock_irq(&phba
->hbalock
);
3342 psli
->sli_flag
&= ~LPFC_SLI_MBOX_ACTIVE
;
3343 psli
->mbox_active
= NULL
;
3344 phba
->link_flag
&= ~LS_IGNORE_ERATT
;
3345 spin_unlock_irq(&phba
->hbalock
);
3347 lpfc_hba_down_post(phba
);
3348 phba
->link_state
= LPFC_HBA_ERROR
;
3350 return ha_copy
& HA_ERATT
? 0 : 1;
3354 * lpfc_sli_brdreset - Reset a sli-2 or sli-3 HBA
3355 * @phba: Pointer to HBA context object.
3357 * This function resets the HBA by writing HC_INITFF to the control
3358 * register. After the HBA resets, this function resets all the iocb ring
3359 * indices. This function disables PCI layer parity checking during
3361 * This function returns 0 always.
3362 * The caller is not required to hold any locks.
3365 lpfc_sli_brdreset(struct lpfc_hba
*phba
)
3367 struct lpfc_sli
*psli
;
3368 struct lpfc_sli_ring
*pring
;
3375 lpfc_printf_log(phba
, KERN_INFO
, LOG_SLI
,
3376 "0325 Reset HBA Data: x%x x%x\n",
3377 phba
->pport
->port_state
, psli
->sli_flag
);
3379 /* perform board reset */
3380 phba
->fc_eventTag
= 0;
3381 phba
->link_events
= 0;
3382 phba
->pport
->fc_myDID
= 0;
3383 phba
->pport
->fc_prevDID
= 0;
3385 /* Turn off parity checking and serr during the physical reset */
3386 pci_read_config_word(phba
->pcidev
, PCI_COMMAND
, &cfg_value
);
3387 pci_write_config_word(phba
->pcidev
, PCI_COMMAND
,
3389 ~(PCI_COMMAND_PARITY
| PCI_COMMAND_SERR
)));
3391 psli
->sli_flag
&= ~(LPFC_SLI_ACTIVE
| LPFC_PROCESS_LA
);
3393 /* Now toggle INITFF bit in the Host Control Register */
3394 writel(HC_INITFF
, phba
->HCregaddr
);
3396 readl(phba
->HCregaddr
); /* flush */
3397 writel(0, phba
->HCregaddr
);
3398 readl(phba
->HCregaddr
); /* flush */
3400 /* Restore PCI cmd register */
3401 pci_write_config_word(phba
->pcidev
, PCI_COMMAND
, cfg_value
);
3403 /* Initialize relevant SLI info */
3404 for (i
= 0; i
< psli
->num_rings
; i
++) {
3405 pring
= &psli
->ring
[i
];
3408 pring
->next_cmdidx
= 0;
3409 pring
->local_getidx
= 0;
3411 pring
->missbufcnt
= 0;
3414 phba
->link_state
= LPFC_WARM_START
;
3419 * lpfc_sli4_brdreset - Reset a sli-4 HBA
3420 * @phba: Pointer to HBA context object.
3422 * This function resets a SLI4 HBA. This function disables PCI layer parity
3423 * checking during resets the device. The caller is not required to hold
3426 * This function returns 0 always.
3429 lpfc_sli4_brdreset(struct lpfc_hba
*phba
)
3431 struct lpfc_sli
*psli
= &phba
->sli
;
3436 lpfc_printf_log(phba
, KERN_INFO
, LOG_SLI
,
3437 "0295 Reset HBA Data: x%x x%x\n",
3438 phba
->pport
->port_state
, psli
->sli_flag
);
3440 /* perform board reset */
3441 phba
->fc_eventTag
= 0;
3442 phba
->link_events
= 0;
3443 phba
->pport
->fc_myDID
= 0;
3444 phba
->pport
->fc_prevDID
= 0;
3446 /* Turn off parity checking and serr during the physical reset */
3447 pci_read_config_word(phba
->pcidev
, PCI_COMMAND
, &cfg_value
);
3448 pci_write_config_word(phba
->pcidev
, PCI_COMMAND
,
3450 ~(PCI_COMMAND_PARITY
| PCI_COMMAND_SERR
)));
3452 spin_lock_irq(&phba
->hbalock
);
3453 psli
->sli_flag
&= ~(LPFC_PROCESS_LA
);
3454 phba
->fcf
.fcf_flag
= 0;
3455 /* Clean up the child queue list for the CQs */
3456 list_del_init(&phba
->sli4_hba
.mbx_wq
->list
);
3457 list_del_init(&phba
->sli4_hba
.els_wq
->list
);
3458 list_del_init(&phba
->sli4_hba
.hdr_rq
->list
);
3459 list_del_init(&phba
->sli4_hba
.dat_rq
->list
);
3460 list_del_init(&phba
->sli4_hba
.mbx_cq
->list
);
3461 list_del_init(&phba
->sli4_hba
.els_cq
->list
);
3462 for (qindx
= 0; qindx
< phba
->cfg_fcp_wq_count
; qindx
++)
3463 list_del_init(&phba
->sli4_hba
.fcp_wq
[qindx
]->list
);
3464 for (qindx
= 0; qindx
< phba
->cfg_fcp_eq_count
; qindx
++)
3465 list_del_init(&phba
->sli4_hba
.fcp_cq
[qindx
]->list
);
3466 spin_unlock_irq(&phba
->hbalock
);
3468 /* Now physically reset the device */
3469 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
3470 "0389 Performing PCI function reset!\n");
3471 /* Perform FCoE PCI function reset */
3472 lpfc_pci_function_reset(phba
);
3478 * lpfc_sli_brdrestart_s3 - Restart a sli-3 hba
3479 * @phba: Pointer to HBA context object.
3481 * This function is called in the SLI initialization code path to
3482 * restart the HBA. The caller is not required to hold any lock.
3483 * This function writes MBX_RESTART mailbox command to the SLIM and
3484 * resets the HBA. At the end of the function, it calls lpfc_hba_down_post
3485 * function to free any pending commands. The function enables
3486 * POST only during the first initialization. The function returns zero.
3487 * The function does not guarantee completion of MBX_RESTART mailbox
3488 * command before the return of this function.
3491 lpfc_sli_brdrestart_s3(struct lpfc_hba
*phba
)
3494 struct lpfc_sli
*psli
;
3495 volatile uint32_t word0
;
3496 void __iomem
*to_slim
;
3497 uint32_t hba_aer_enabled
;
3499 spin_lock_irq(&phba
->hbalock
);
3501 /* Take PCIe device Advanced Error Reporting (AER) state */
3502 hba_aer_enabled
= phba
->hba_flag
& HBA_AER_ENABLED
;
3507 lpfc_printf_log(phba
, KERN_INFO
, LOG_SLI
,
3508 "0337 Restart HBA Data: x%x x%x\n",
3509 phba
->pport
->port_state
, psli
->sli_flag
);
3512 mb
= (MAILBOX_t
*) &word0
;
3513 mb
->mbxCommand
= MBX_RESTART
;
3516 lpfc_reset_barrier(phba
);
3518 to_slim
= phba
->MBslimaddr
;
3519 writel(*(uint32_t *) mb
, to_slim
);
3520 readl(to_slim
); /* flush */
3522 /* Only skip post after fc_ffinit is completed */
3523 if (phba
->pport
->port_state
)
3524 word0
= 1; /* This is really setting up word1 */
3526 word0
= 0; /* This is really setting up word1 */
3527 to_slim
= phba
->MBslimaddr
+ sizeof (uint32_t);
3528 writel(*(uint32_t *) mb
, to_slim
);
3529 readl(to_slim
); /* flush */
3531 lpfc_sli_brdreset(phba
);
3532 phba
->pport
->stopped
= 0;
3533 phba
->link_state
= LPFC_INIT_START
;
3535 spin_unlock_irq(&phba
->hbalock
);
3537 memset(&psli
->lnk_stat_offsets
, 0, sizeof(psli
->lnk_stat_offsets
));
3538 psli
->stats_start
= get_seconds();
3540 /* Give the INITFF and Post time to settle. */
3543 /* Reset HBA AER if it was enabled, note hba_flag was reset above */
3544 if (hba_aer_enabled
)
3545 pci_disable_pcie_error_reporting(phba
->pcidev
);
3547 lpfc_hba_down_post(phba
);
3553 * lpfc_sli_brdrestart_s4 - Restart the sli-4 hba
3554 * @phba: Pointer to HBA context object.
3556 * This function is called in the SLI initialization code path to restart
3557 * a SLI4 HBA. The caller is not required to hold any lock.
3558 * At the end of the function, it calls lpfc_hba_down_post function to
3559 * free any pending commands.
3562 lpfc_sli_brdrestart_s4(struct lpfc_hba
*phba
)
3564 struct lpfc_sli
*psli
= &phba
->sli
;
3568 lpfc_printf_log(phba
, KERN_INFO
, LOG_SLI
,
3569 "0296 Restart HBA Data: x%x x%x\n",
3570 phba
->pport
->port_state
, psli
->sli_flag
);
3572 lpfc_sli4_brdreset(phba
);
3574 spin_lock_irq(&phba
->hbalock
);
3575 phba
->pport
->stopped
= 0;
3576 phba
->link_state
= LPFC_INIT_START
;
3578 spin_unlock_irq(&phba
->hbalock
);
3580 memset(&psli
->lnk_stat_offsets
, 0, sizeof(psli
->lnk_stat_offsets
));
3581 psli
->stats_start
= get_seconds();
3583 lpfc_hba_down_post(phba
);
3589 * lpfc_sli_brdrestart - Wrapper func for restarting hba
3590 * @phba: Pointer to HBA context object.
3592 * This routine wraps the actual SLI3 or SLI4 hba restart routine from the
3593 * API jump table function pointer from the lpfc_hba struct.
3596 lpfc_sli_brdrestart(struct lpfc_hba
*phba
)
3598 return phba
->lpfc_sli_brdrestart(phba
);
3602 * lpfc_sli_chipset_init - Wait for the restart of the HBA after a restart
3603 * @phba: Pointer to HBA context object.
3605 * This function is called after a HBA restart to wait for successful
3606 * restart of the HBA. Successful restart of the HBA is indicated by
3607 * HS_FFRDY and HS_MBRDY bits. If the HBA fails to restart even after 15
3608 * iteration, the function will restart the HBA again. The function returns
3609 * zero if HBA successfully restarted else returns negative error code.
3612 lpfc_sli_chipset_init(struct lpfc_hba
*phba
)
3614 uint32_t status
, i
= 0;
3616 /* Read the HBA Host Status Register */
3617 status
= readl(phba
->HSregaddr
);
3619 /* Check status register to see what current state is */
3621 while ((status
& (HS_FFRDY
| HS_MBRDY
)) != (HS_FFRDY
| HS_MBRDY
)) {
3623 /* Check every 100ms for 5 retries, then every 500ms for 5, then
3624 * every 2.5 sec for 5, then reset board and every 2.5 sec for
3628 /* Adapter failed to init, timeout, status reg
3630 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
3631 "0436 Adapter failed to init, "
3632 "timeout, status reg x%x, "
3633 "FW Data: A8 x%x AC x%x\n", status
,
3634 readl(phba
->MBslimaddr
+ 0xa8),
3635 readl(phba
->MBslimaddr
+ 0xac));
3636 phba
->link_state
= LPFC_HBA_ERROR
;
3640 /* Check to see if any errors occurred during init */
3641 if (status
& HS_FFERM
) {
3642 /* ERROR: During chipset initialization */
3643 /* Adapter failed to init, chipset, status reg
3645 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
3646 "0437 Adapter failed to init, "
3647 "chipset, status reg x%x, "
3648 "FW Data: A8 x%x AC x%x\n", status
,
3649 readl(phba
->MBslimaddr
+ 0xa8),
3650 readl(phba
->MBslimaddr
+ 0xac));
3651 phba
->link_state
= LPFC_HBA_ERROR
;
3657 } else if (i
<= 10) {
3665 phba
->pport
->port_state
= LPFC_VPORT_UNKNOWN
;
3666 lpfc_sli_brdrestart(phba
);
3668 /* Read the HBA Host Status Register */
3669 status
= readl(phba
->HSregaddr
);
3672 /* Check to see if any errors occurred during init */
3673 if (status
& HS_FFERM
) {
3674 /* ERROR: During chipset initialization */
3675 /* Adapter failed to init, chipset, status reg <status> */
3676 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
3677 "0438 Adapter failed to init, chipset, "
3679 "FW Data: A8 x%x AC x%x\n", status
,
3680 readl(phba
->MBslimaddr
+ 0xa8),
3681 readl(phba
->MBslimaddr
+ 0xac));
3682 phba
->link_state
= LPFC_HBA_ERROR
;
3686 /* Clear all interrupt enable conditions */
3687 writel(0, phba
->HCregaddr
);
3688 readl(phba
->HCregaddr
); /* flush */
3690 /* setup host attn register */
3691 writel(0xffffffff, phba
->HAregaddr
);
3692 readl(phba
->HAregaddr
); /* flush */
3697 * lpfc_sli_hbq_count - Get the number of HBQs to be configured
3699 * This function calculates and returns the number of HBQs required to be
3703 lpfc_sli_hbq_count(void)
3705 return ARRAY_SIZE(lpfc_hbq_defs
);
3709 * lpfc_sli_hbq_entry_count - Calculate total number of hbq entries
3711 * This function adds the number of hbq entries in every HBQ to get
3712 * the total number of hbq entries required for the HBA and returns
3716 lpfc_sli_hbq_entry_count(void)
3718 int hbq_count
= lpfc_sli_hbq_count();
3722 for (i
= 0; i
< hbq_count
; ++i
)
3723 count
+= lpfc_hbq_defs
[i
]->entry_count
;
3728 * lpfc_sli_hbq_size - Calculate memory required for all hbq entries
3730 * This function calculates amount of memory required for all hbq entries
3731 * to be configured and returns the total memory required.
3734 lpfc_sli_hbq_size(void)
3736 return lpfc_sli_hbq_entry_count() * sizeof(struct lpfc_hbq_entry
);
3740 * lpfc_sli_hbq_setup - configure and initialize HBQs
3741 * @phba: Pointer to HBA context object.
3743 * This function is called during the SLI initialization to configure
3744 * all the HBQs and post buffers to the HBQ. The caller is not
3745 * required to hold any locks. This function will return zero if successful
3746 * else it will return negative error code.
3749 lpfc_sli_hbq_setup(struct lpfc_hba
*phba
)
3751 int hbq_count
= lpfc_sli_hbq_count();
3755 uint32_t hbq_entry_index
;
3757 /* Get a Mailbox buffer to setup mailbox
3758 * commands for HBA initialization
3760 pmb
= (LPFC_MBOXQ_t
*) mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
3767 /* Initialize the struct lpfc_sli_hbq structure for each hbq */
3768 phba
->link_state
= LPFC_INIT_MBX_CMDS
;
3769 phba
->hbq_in_use
= 1;
3771 hbq_entry_index
= 0;
3772 for (hbqno
= 0; hbqno
< hbq_count
; ++hbqno
) {
3773 phba
->hbqs
[hbqno
].next_hbqPutIdx
= 0;
3774 phba
->hbqs
[hbqno
].hbqPutIdx
= 0;
3775 phba
->hbqs
[hbqno
].local_hbqGetIdx
= 0;
3776 phba
->hbqs
[hbqno
].entry_count
=
3777 lpfc_hbq_defs
[hbqno
]->entry_count
;
3778 lpfc_config_hbq(phba
, hbqno
, lpfc_hbq_defs
[hbqno
],
3779 hbq_entry_index
, pmb
);
3780 hbq_entry_index
+= phba
->hbqs
[hbqno
].entry_count
;
3782 if (lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
) != MBX_SUCCESS
) {
3783 /* Adapter failed to init, mbxCmd <cmd> CFG_RING,
3784 mbxStatus <status>, ring <num> */
3786 lpfc_printf_log(phba
, KERN_ERR
,
3787 LOG_SLI
| LOG_VPORT
,
3788 "1805 Adapter failed to init. "
3789 "Data: x%x x%x x%x\n",
3791 pmbox
->mbxStatus
, hbqno
);
3793 phba
->link_state
= LPFC_HBA_ERROR
;
3794 mempool_free(pmb
, phba
->mbox_mem_pool
);
3798 phba
->hbq_count
= hbq_count
;
3800 mempool_free(pmb
, phba
->mbox_mem_pool
);
3802 /* Initially populate or replenish the HBQs */
3803 for (hbqno
= 0; hbqno
< hbq_count
; ++hbqno
)
3804 lpfc_sli_hbqbuf_init_hbqs(phba
, hbqno
);
3809 * lpfc_sli4_rb_setup - Initialize and post RBs to HBA
3810 * @phba: Pointer to HBA context object.
3812 * This function is called during the SLI initialization to configure
3813 * all the HBQs and post buffers to the HBQ. The caller is not
3814 * required to hold any locks. This function will return zero if successful
3815 * else it will return negative error code.
3818 lpfc_sli4_rb_setup(struct lpfc_hba
*phba
)
3820 phba
->hbq_in_use
= 1;
3821 phba
->hbqs
[0].entry_count
= lpfc_hbq_defs
[0]->entry_count
;
3822 phba
->hbq_count
= 1;
3823 /* Initially populate or replenish the HBQs */
3824 lpfc_sli_hbqbuf_init_hbqs(phba
, 0);
3829 * lpfc_sli_config_port - Issue config port mailbox command
3830 * @phba: Pointer to HBA context object.
3831 * @sli_mode: sli mode - 2/3
3833 * This function is called by the sli intialization code path
3834 * to issue config_port mailbox command. This function restarts the
3835 * HBA firmware and issues a config_port mailbox command to configure
3836 * the SLI interface in the sli mode specified by sli_mode
3837 * variable. The caller is not required to hold any locks.
3838 * The function returns 0 if successful, else returns negative error
3842 lpfc_sli_config_port(struct lpfc_hba
*phba
, int sli_mode
)
3845 uint32_t resetcount
= 0, rc
= 0, done
= 0;
3847 pmb
= (LPFC_MBOXQ_t
*) mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
3849 phba
->link_state
= LPFC_HBA_ERROR
;
3853 phba
->sli_rev
= sli_mode
;
3854 while (resetcount
< 2 && !done
) {
3855 spin_lock_irq(&phba
->hbalock
);
3856 phba
->sli
.sli_flag
|= LPFC_SLI_MBOX_ACTIVE
;
3857 spin_unlock_irq(&phba
->hbalock
);
3858 phba
->pport
->port_state
= LPFC_VPORT_UNKNOWN
;
3859 lpfc_sli_brdrestart(phba
);
3860 rc
= lpfc_sli_chipset_init(phba
);
3864 spin_lock_irq(&phba
->hbalock
);
3865 phba
->sli
.sli_flag
&= ~LPFC_SLI_MBOX_ACTIVE
;
3866 spin_unlock_irq(&phba
->hbalock
);
3869 /* Call pre CONFIG_PORT mailbox command initialization. A
3870 * value of 0 means the call was successful. Any other
3871 * nonzero value is a failure, but if ERESTART is returned,
3872 * the driver may reset the HBA and try again.
3874 rc
= lpfc_config_port_prep(phba
);
3875 if (rc
== -ERESTART
) {
3876 phba
->link_state
= LPFC_LINK_UNKNOWN
;
3880 phba
->link_state
= LPFC_INIT_MBX_CMDS
;
3881 lpfc_config_port(phba
, pmb
);
3882 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
);
3883 phba
->sli3_options
&= ~(LPFC_SLI3_NPIV_ENABLED
|
3884 LPFC_SLI3_HBQ_ENABLED
|
3885 LPFC_SLI3_CRP_ENABLED
|
3886 LPFC_SLI3_INB_ENABLED
|
3887 LPFC_SLI3_BG_ENABLED
);
3888 if (rc
!= MBX_SUCCESS
) {
3889 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
3890 "0442 Adapter failed to init, mbxCmd x%x "
3891 "CONFIG_PORT, mbxStatus x%x Data: x%x\n",
3892 pmb
->u
.mb
.mbxCommand
, pmb
->u
.mb
.mbxStatus
, 0);
3893 spin_lock_irq(&phba
->hbalock
);
3894 phba
->sli
.sli_flag
&= ~LPFC_SLI_ACTIVE
;
3895 spin_unlock_irq(&phba
->hbalock
);
3898 /* Allow asynchronous mailbox command to go through */
3899 spin_lock_irq(&phba
->hbalock
);
3900 phba
->sli
.sli_flag
&= ~LPFC_SLI_ASYNC_MBX_BLK
;
3901 spin_unlock_irq(&phba
->hbalock
);
3907 goto do_prep_failed
;
3909 if (pmb
->u
.mb
.un
.varCfgPort
.sli_mode
== 3) {
3910 if (!pmb
->u
.mb
.un
.varCfgPort
.cMA
) {
3912 goto do_prep_failed
;
3914 if (phba
->max_vpi
&& pmb
->u
.mb
.un
.varCfgPort
.gmv
) {
3915 phba
->sli3_options
|= LPFC_SLI3_NPIV_ENABLED
;
3916 phba
->max_vpi
= pmb
->u
.mb
.un
.varCfgPort
.max_vpi
;
3917 phba
->max_vports
= (phba
->max_vpi
> phba
->max_vports
) ?
3918 phba
->max_vpi
: phba
->max_vports
;
3922 if (pmb
->u
.mb
.un
.varCfgPort
.gdss
)
3923 phba
->sli3_options
|= LPFC_SLI3_DSS_ENABLED
;
3924 if (pmb
->u
.mb
.un
.varCfgPort
.gerbm
)
3925 phba
->sli3_options
|= LPFC_SLI3_HBQ_ENABLED
;
3926 if (pmb
->u
.mb
.un
.varCfgPort
.gcrp
)
3927 phba
->sli3_options
|= LPFC_SLI3_CRP_ENABLED
;
3928 if (pmb
->u
.mb
.un
.varCfgPort
.ginb
) {
3929 phba
->sli3_options
|= LPFC_SLI3_INB_ENABLED
;
3930 phba
->hbq_get
= phba
->mbox
->us
.s3_inb_pgp
.hbq_get
;
3931 phba
->port_gp
= phba
->mbox
->us
.s3_inb_pgp
.port
;
3932 phba
->inb_ha_copy
= &phba
->mbox
->us
.s3_inb_pgp
.ha_copy
;
3933 phba
->inb_counter
= &phba
->mbox
->us
.s3_inb_pgp
.counter
;
3934 phba
->inb_last_counter
=
3935 phba
->mbox
->us
.s3_inb_pgp
.counter
;
3937 phba
->hbq_get
= phba
->mbox
->us
.s3_pgp
.hbq_get
;
3938 phba
->port_gp
= phba
->mbox
->us
.s3_pgp
.port
;
3939 phba
->inb_ha_copy
= NULL
;
3940 phba
->inb_counter
= NULL
;
3943 if (phba
->cfg_enable_bg
) {
3944 if (pmb
->u
.mb
.un
.varCfgPort
.gbg
)
3945 phba
->sli3_options
|= LPFC_SLI3_BG_ENABLED
;
3947 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
3948 "0443 Adapter did not grant "
3952 phba
->hbq_get
= NULL
;
3953 phba
->port_gp
= phba
->mbox
->us
.s2
.port
;
3954 phba
->inb_ha_copy
= NULL
;
3955 phba
->inb_counter
= NULL
;
3959 mempool_free(pmb
, phba
->mbox_mem_pool
);
3965 * lpfc_sli_hba_setup - SLI intialization function
3966 * @phba: Pointer to HBA context object.
3968 * This function is the main SLI intialization function. This function
3969 * is called by the HBA intialization code, HBA reset code and HBA
3970 * error attention handler code. Caller is not required to hold any
3971 * locks. This function issues config_port mailbox command to configure
3972 * the SLI, setup iocb rings and HBQ rings. In the end the function
3973 * calls the config_port_post function to issue init_link mailbox
3974 * command and to start the discovery. The function will return zero
3975 * if successful, else it will return negative error code.
3978 lpfc_sli_hba_setup(struct lpfc_hba
*phba
)
3983 switch (lpfc_sli_mode
) {
3985 if (phba
->cfg_enable_npiv
) {
3986 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
| LOG_VPORT
,
3987 "1824 NPIV enabled: Override lpfc_sli_mode "
3988 "parameter (%d) to auto (0).\n",
3998 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
| LOG_VPORT
,
3999 "1819 Unrecognized lpfc_sli_mode "
4000 "parameter: %d.\n", lpfc_sli_mode
);
4005 rc
= lpfc_sli_config_port(phba
, mode
);
4007 if (rc
&& lpfc_sli_mode
== 3)
4008 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
| LOG_VPORT
,
4009 "1820 Unable to select SLI-3. "
4010 "Not supported by adapter.\n");
4011 if (rc
&& mode
!= 2)
4012 rc
= lpfc_sli_config_port(phba
, 2);
4014 goto lpfc_sli_hba_setup_error
;
4016 /* Enable PCIe device Advanced Error Reporting (AER) if configured */
4017 if (phba
->cfg_aer_support
== 1 && !(phba
->hba_flag
& HBA_AER_ENABLED
)) {
4018 rc
= pci_enable_pcie_error_reporting(phba
->pcidev
);
4020 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
4021 "2709 This device supports "
4022 "Advanced Error Reporting (AER)\n");
4023 spin_lock_irq(&phba
->hbalock
);
4024 phba
->hba_flag
|= HBA_AER_ENABLED
;
4025 spin_unlock_irq(&phba
->hbalock
);
4027 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
4028 "2708 This device does not support "
4029 "Advanced Error Reporting (AER)\n");
4030 phba
->cfg_aer_support
= 0;
4034 if (phba
->sli_rev
== 3) {
4035 phba
->iocb_cmd_size
= SLI3_IOCB_CMD_SIZE
;
4036 phba
->iocb_rsp_size
= SLI3_IOCB_RSP_SIZE
;
4038 phba
->iocb_cmd_size
= SLI2_IOCB_CMD_SIZE
;
4039 phba
->iocb_rsp_size
= SLI2_IOCB_RSP_SIZE
;
4040 phba
->sli3_options
= 0;
4043 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
4044 "0444 Firmware in SLI %x mode. Max_vpi %d\n",
4045 phba
->sli_rev
, phba
->max_vpi
);
4046 rc
= lpfc_sli_ring_map(phba
);
4049 goto lpfc_sli_hba_setup_error
;
4052 if (phba
->sli3_options
& LPFC_SLI3_HBQ_ENABLED
) {
4053 rc
= lpfc_sli_hbq_setup(phba
);
4055 goto lpfc_sli_hba_setup_error
;
4057 spin_lock_irq(&phba
->hbalock
);
4058 phba
->sli
.sli_flag
|= LPFC_PROCESS_LA
;
4059 spin_unlock_irq(&phba
->hbalock
);
4061 rc
= lpfc_config_port_post(phba
);
4063 goto lpfc_sli_hba_setup_error
;
4067 lpfc_sli_hba_setup_error
:
4068 phba
->link_state
= LPFC_HBA_ERROR
;
4069 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
4070 "0445 Firmware initialization failed\n");
4075 * lpfc_sli4_read_fcoe_params - Read fcoe params from conf region
4076 * @phba: Pointer to HBA context object.
4077 * @mboxq: mailbox pointer.
4078 * This function issue a dump mailbox command to read config region
4079 * 23 and parse the records in the region and populate driver
4083 lpfc_sli4_read_fcoe_params(struct lpfc_hba
*phba
,
4084 LPFC_MBOXQ_t
*mboxq
)
4086 struct lpfc_dmabuf
*mp
;
4087 struct lpfc_mqe
*mqe
;
4088 uint32_t data_length
;
4091 /* Program the default value of vlan_id and fc_map */
4092 phba
->valid_vlan
= 0;
4093 phba
->fc_map
[0] = LPFC_FCOE_FCF_MAP0
;
4094 phba
->fc_map
[1] = LPFC_FCOE_FCF_MAP1
;
4095 phba
->fc_map
[2] = LPFC_FCOE_FCF_MAP2
;
4097 mqe
= &mboxq
->u
.mqe
;
4098 if (lpfc_dump_fcoe_param(phba
, mboxq
))
4101 mp
= (struct lpfc_dmabuf
*) mboxq
->context1
;
4102 rc
= lpfc_sli_issue_mbox(phba
, mboxq
, MBX_POLL
);
4104 lpfc_printf_log(phba
, KERN_INFO
, LOG_MBOX
| LOG_SLI
,
4105 "(%d):2571 Mailbox cmd x%x Status x%x "
4106 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x "
4107 "x%x x%x x%x x%x x%x x%x x%x x%x x%x "
4108 "CQ: x%x x%x x%x x%x\n",
4109 mboxq
->vport
? mboxq
->vport
->vpi
: 0,
4110 bf_get(lpfc_mqe_command
, mqe
),
4111 bf_get(lpfc_mqe_status
, mqe
),
4112 mqe
->un
.mb_words
[0], mqe
->un
.mb_words
[1],
4113 mqe
->un
.mb_words
[2], mqe
->un
.mb_words
[3],
4114 mqe
->un
.mb_words
[4], mqe
->un
.mb_words
[5],
4115 mqe
->un
.mb_words
[6], mqe
->un
.mb_words
[7],
4116 mqe
->un
.mb_words
[8], mqe
->un
.mb_words
[9],
4117 mqe
->un
.mb_words
[10], mqe
->un
.mb_words
[11],
4118 mqe
->un
.mb_words
[12], mqe
->un
.mb_words
[13],
4119 mqe
->un
.mb_words
[14], mqe
->un
.mb_words
[15],
4120 mqe
->un
.mb_words
[16], mqe
->un
.mb_words
[50],
4122 mboxq
->mcqe
.mcqe_tag0
, mboxq
->mcqe
.mcqe_tag1
,
4123 mboxq
->mcqe
.trailer
);
4126 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
4130 data_length
= mqe
->un
.mb_words
[5];
4131 if (data_length
> DMP_RGN23_SIZE
) {
4132 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
4137 lpfc_parse_fcoe_conf(phba
, mp
->virt
, data_length
);
4138 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
4144 * lpfc_sli4_read_rev - Issue READ_REV and collect vpd data
4145 * @phba: pointer to lpfc hba data structure.
4146 * @mboxq: pointer to the LPFC_MBOXQ_t structure.
4147 * @vpd: pointer to the memory to hold resulting port vpd data.
4148 * @vpd_size: On input, the number of bytes allocated to @vpd.
4149 * On output, the number of data bytes in @vpd.
4151 * This routine executes a READ_REV SLI4 mailbox command. In
4152 * addition, this routine gets the port vpd data.
4156 * ENOMEM - could not allocated memory.
4159 lpfc_sli4_read_rev(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mboxq
,
4160 uint8_t *vpd
, uint32_t *vpd_size
)
4164 struct lpfc_dmabuf
*dmabuf
;
4165 struct lpfc_mqe
*mqe
;
4167 dmabuf
= kzalloc(sizeof(struct lpfc_dmabuf
), GFP_KERNEL
);
4172 * Get a DMA buffer for the vpd data resulting from the READ_REV
4175 dma_size
= *vpd_size
;
4176 dmabuf
->virt
= dma_alloc_coherent(&phba
->pcidev
->dev
,
4180 if (!dmabuf
->virt
) {
4184 memset(dmabuf
->virt
, 0, dma_size
);
4187 * The SLI4 implementation of READ_REV conflicts at word1,
4188 * bits 31:16 and SLI4 adds vpd functionality not present
4189 * in SLI3. This code corrects the conflicts.
4191 lpfc_read_rev(phba
, mboxq
);
4192 mqe
= &mboxq
->u
.mqe
;
4193 mqe
->un
.read_rev
.vpd_paddr_high
= putPaddrHigh(dmabuf
->phys
);
4194 mqe
->un
.read_rev
.vpd_paddr_low
= putPaddrLow(dmabuf
->phys
);
4195 mqe
->un
.read_rev
.word1
&= 0x0000FFFF;
4196 bf_set(lpfc_mbx_rd_rev_vpd
, &mqe
->un
.read_rev
, 1);
4197 bf_set(lpfc_mbx_rd_rev_avail_len
, &mqe
->un
.read_rev
, dma_size
);
4199 rc
= lpfc_sli_issue_mbox(phba
, mboxq
, MBX_POLL
);
4201 dma_free_coherent(&phba
->pcidev
->dev
, dma_size
,
4202 dmabuf
->virt
, dmabuf
->phys
);
4208 * The available vpd length cannot be bigger than the
4209 * DMA buffer passed to the port. Catch the less than
4210 * case and update the caller's size.
4212 if (mqe
->un
.read_rev
.avail_vpd_len
< *vpd_size
)
4213 *vpd_size
= mqe
->un
.read_rev
.avail_vpd_len
;
4215 lpfc_sli_pcimem_bcopy(dmabuf
->virt
, vpd
, *vpd_size
);
4216 dma_free_coherent(&phba
->pcidev
->dev
, dma_size
,
4217 dmabuf
->virt
, dmabuf
->phys
);
4223 * lpfc_sli4_arm_cqeq_intr - Arm sli-4 device completion and event queues
4224 * @phba: pointer to lpfc hba data structure.
4226 * This routine is called to explicitly arm the SLI4 device's completion and
4230 lpfc_sli4_arm_cqeq_intr(struct lpfc_hba
*phba
)
4234 lpfc_sli4_cq_release(phba
->sli4_hba
.mbx_cq
, LPFC_QUEUE_REARM
);
4235 lpfc_sli4_cq_release(phba
->sli4_hba
.els_cq
, LPFC_QUEUE_REARM
);
4236 for (fcp_eqidx
= 0; fcp_eqidx
< phba
->cfg_fcp_eq_count
; fcp_eqidx
++)
4237 lpfc_sli4_cq_release(phba
->sli4_hba
.fcp_cq
[fcp_eqidx
],
4239 lpfc_sli4_eq_release(phba
->sli4_hba
.sp_eq
, LPFC_QUEUE_REARM
);
4240 for (fcp_eqidx
= 0; fcp_eqidx
< phba
->cfg_fcp_eq_count
; fcp_eqidx
++)
4241 lpfc_sli4_eq_release(phba
->sli4_hba
.fp_eq
[fcp_eqidx
],
4246 * lpfc_sli4_hba_setup - SLI4 device intialization PCI function
4247 * @phba: Pointer to HBA context object.
4249 * This function is the main SLI4 device intialization PCI function. This
4250 * function is called by the HBA intialization code, HBA reset code and
4251 * HBA error attention handler code. Caller is not required to hold any
4255 lpfc_sli4_hba_setup(struct lpfc_hba
*phba
)
4258 LPFC_MBOXQ_t
*mboxq
;
4259 struct lpfc_mqe
*mqe
;
4262 uint32_t ftr_rsp
= 0;
4263 struct Scsi_Host
*shost
= lpfc_shost_from_vport(phba
->pport
);
4264 struct lpfc_vport
*vport
= phba
->pport
;
4265 struct lpfc_dmabuf
*mp
;
4267 /* Perform a PCI function reset to start from clean */
4268 rc
= lpfc_pci_function_reset(phba
);
4272 /* Check the HBA Host Status Register for readyness */
4273 rc
= lpfc_sli4_post_status_check(phba
);
4277 spin_lock_irq(&phba
->hbalock
);
4278 phba
->sli
.sli_flag
|= LPFC_SLI_ACTIVE
;
4279 spin_unlock_irq(&phba
->hbalock
);
4283 * Allocate a single mailbox container for initializing the
4286 mboxq
= (LPFC_MBOXQ_t
*) mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
4291 * Continue initialization with default values even if driver failed
4292 * to read FCoE param config regions
4294 if (lpfc_sli4_read_fcoe_params(phba
, mboxq
))
4295 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
| LOG_INIT
,
4296 "2570 Failed to read FCoE parameters\n");
4298 /* Issue READ_REV to collect vpd and FW information. */
4299 vpd_size
= PAGE_SIZE
;
4300 vpd
= kzalloc(vpd_size
, GFP_KERNEL
);
4306 rc
= lpfc_sli4_read_rev(phba
, mboxq
, vpd
, &vpd_size
);
4310 mqe
= &mboxq
->u
.mqe
;
4311 phba
->sli_rev
= bf_get(lpfc_mbx_rd_rev_sli_lvl
, &mqe
->un
.read_rev
);
4312 if (bf_get(lpfc_mbx_rd_rev_fcoe
, &mqe
->un
.read_rev
))
4313 phba
->hba_flag
|= HBA_FCOE_SUPPORT
;
4315 if (bf_get(lpfc_mbx_rd_rev_cee_ver
, &mqe
->un
.read_rev
) ==
4317 phba
->hba_flag
|= HBA_FIP_SUPPORT
;
4319 phba
->hba_flag
&= ~HBA_FIP_SUPPORT
;
4321 if (phba
->sli_rev
!= LPFC_SLI_REV4
||
4322 !(phba
->hba_flag
& HBA_FCOE_SUPPORT
)) {
4323 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
| LOG_SLI
,
4324 "0376 READ_REV Error. SLI Level %d "
4325 "FCoE enabled %d\n",
4326 phba
->sli_rev
, phba
->hba_flag
& HBA_FCOE_SUPPORT
);
4331 * Evaluate the read rev and vpd data. Populate the driver
4332 * state with the results. If this routine fails, the failure
4333 * is not fatal as the driver will use generic values.
4335 rc
= lpfc_parse_vpd(phba
, vpd
, vpd_size
);
4336 if (unlikely(!rc
)) {
4337 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
| LOG_SLI
,
4338 "0377 Error %d parsing vpd. "
4339 "Using defaults.\n", rc
);
4343 /* Save information as VPD data */
4344 phba
->vpd
.rev
.biuRev
= mqe
->un
.read_rev
.first_hw_rev
;
4345 phba
->vpd
.rev
.smRev
= mqe
->un
.read_rev
.second_hw_rev
;
4346 phba
->vpd
.rev
.endecRev
= mqe
->un
.read_rev
.third_hw_rev
;
4347 phba
->vpd
.rev
.fcphHigh
= bf_get(lpfc_mbx_rd_rev_fcph_high
,
4349 phba
->vpd
.rev
.fcphLow
= bf_get(lpfc_mbx_rd_rev_fcph_low
,
4351 phba
->vpd
.rev
.feaLevelHigh
= bf_get(lpfc_mbx_rd_rev_ftr_lvl_high
,
4353 phba
->vpd
.rev
.feaLevelLow
= bf_get(lpfc_mbx_rd_rev_ftr_lvl_low
,
4355 phba
->vpd
.rev
.sli1FwRev
= mqe
->un
.read_rev
.fw_id_rev
;
4356 memcpy(phba
->vpd
.rev
.sli1FwName
, mqe
->un
.read_rev
.fw_name
, 16);
4357 phba
->vpd
.rev
.sli2FwRev
= mqe
->un
.read_rev
.ulp_fw_id_rev
;
4358 memcpy(phba
->vpd
.rev
.sli2FwName
, mqe
->un
.read_rev
.ulp_fw_name
, 16);
4359 phba
->vpd
.rev
.opFwRev
= mqe
->un
.read_rev
.fw_id_rev
;
4360 memcpy(phba
->vpd
.rev
.opFwName
, mqe
->un
.read_rev
.fw_name
, 16);
4361 lpfc_printf_log(phba
, KERN_INFO
, LOG_MBOX
| LOG_SLI
,
4362 "(%d):0380 READ_REV Status x%x "
4363 "fw_rev:%s fcphHi:%x fcphLo:%x flHi:%x flLo:%x\n",
4364 mboxq
->vport
? mboxq
->vport
->vpi
: 0,
4365 bf_get(lpfc_mqe_status
, mqe
),
4366 phba
->vpd
.rev
.opFwName
,
4367 phba
->vpd
.rev
.fcphHigh
, phba
->vpd
.rev
.fcphLow
,
4368 phba
->vpd
.rev
.feaLevelHigh
, phba
->vpd
.rev
.feaLevelLow
);
4371 * Discover the port's supported feature set and match it against the
4374 lpfc_request_features(phba
, mboxq
);
4375 rc
= lpfc_sli_issue_mbox(phba
, mboxq
, MBX_POLL
);
4382 * The port must support FCP initiator mode as this is the
4383 * only mode running in the host.
4385 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_fcpi
, &mqe
->un
.req_ftrs
))) {
4386 lpfc_printf_log(phba
, KERN_WARNING
, LOG_MBOX
| LOG_SLI
,
4387 "0378 No support for fcpi mode.\n");
4392 * If the port cannot support the host's requested features
4393 * then turn off the global config parameters to disable the
4394 * feature in the driver. This is not a fatal error.
4396 if ((phba
->cfg_enable_bg
) &&
4397 !(bf_get(lpfc_mbx_rq_ftr_rsp_dif
, &mqe
->un
.req_ftrs
)))
4400 if (phba
->max_vpi
&& phba
->cfg_enable_npiv
&&
4401 !(bf_get(lpfc_mbx_rq_ftr_rsp_npiv
, &mqe
->un
.req_ftrs
)))
4405 lpfc_printf_log(phba
, KERN_WARNING
, LOG_MBOX
| LOG_SLI
,
4406 "0379 Feature Mismatch Data: x%08x %08x "
4407 "x%x x%x x%x\n", mqe
->un
.req_ftrs
.word2
,
4408 mqe
->un
.req_ftrs
.word3
, phba
->cfg_enable_bg
,
4409 phba
->cfg_enable_npiv
, phba
->max_vpi
);
4410 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_dif
, &mqe
->un
.req_ftrs
)))
4411 phba
->cfg_enable_bg
= 0;
4412 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_npiv
, &mqe
->un
.req_ftrs
)))
4413 phba
->cfg_enable_npiv
= 0;
4416 /* These SLI3 features are assumed in SLI4 */
4417 spin_lock_irq(&phba
->hbalock
);
4418 phba
->sli3_options
|= (LPFC_SLI3_NPIV_ENABLED
| LPFC_SLI3_HBQ_ENABLED
);
4419 spin_unlock_irq(&phba
->hbalock
);
4421 /* Read the port's service parameters. */
4422 rc
= lpfc_read_sparam(phba
, mboxq
, vport
->vpi
);
4424 phba
->link_state
= LPFC_HBA_ERROR
;
4429 mboxq
->vport
= vport
;
4430 rc
= lpfc_sli_issue_mbox(phba
, mboxq
, MBX_POLL
);
4431 mp
= (struct lpfc_dmabuf
*) mboxq
->context1
;
4432 if (rc
== MBX_SUCCESS
) {
4433 memcpy(&vport
->fc_sparam
, mp
->virt
, sizeof(struct serv_parm
));
4438 * This memory was allocated by the lpfc_read_sparam routine. Release
4439 * it to the mbuf pool.
4441 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
4443 mboxq
->context1
= NULL
;
4445 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
| LOG_SLI
,
4446 "0382 READ_SPARAM command failed "
4447 "status %d, mbxStatus x%x\n",
4448 rc
, bf_get(lpfc_mqe_status
, mqe
));
4449 phba
->link_state
= LPFC_HBA_ERROR
;
4454 if (phba
->cfg_soft_wwnn
)
4455 u64_to_wwn(phba
->cfg_soft_wwnn
,
4456 vport
->fc_sparam
.nodeName
.u
.wwn
);
4457 if (phba
->cfg_soft_wwpn
)
4458 u64_to_wwn(phba
->cfg_soft_wwpn
,
4459 vport
->fc_sparam
.portName
.u
.wwn
);
4460 memcpy(&vport
->fc_nodename
, &vport
->fc_sparam
.nodeName
,
4461 sizeof(struct lpfc_name
));
4462 memcpy(&vport
->fc_portname
, &vport
->fc_sparam
.portName
,
4463 sizeof(struct lpfc_name
));
4465 /* Update the fc_host data structures with new wwn. */
4466 fc_host_node_name(shost
) = wwn_to_u64(vport
->fc_nodename
.u
.wwn
);
4467 fc_host_port_name(shost
) = wwn_to_u64(vport
->fc_portname
.u
.wwn
);
4469 /* Register SGL pool to the device using non-embedded mailbox command */
4470 rc
= lpfc_sli4_post_sgl_list(phba
);
4472 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
| LOG_SLI
,
4473 "0582 Error %d during sgl post operation\n",
4479 /* Register SCSI SGL pool to the device */
4480 rc
= lpfc_sli4_repost_scsi_sgl_list(phba
);
4482 lpfc_printf_log(phba
, KERN_WARNING
, LOG_MBOX
| LOG_SLI
,
4483 "0383 Error %d during scsi sgl post "
4485 /* Some Scsi buffers were moved to the abort scsi list */
4486 /* A pci function reset will repost them */
4491 /* Post the rpi header region to the device. */
4492 rc
= lpfc_sli4_post_all_rpi_hdrs(phba
);
4494 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
| LOG_SLI
,
4495 "0393 Error %d during rpi post operation\n",
4501 /* Set up all the queues to the device */
4502 rc
= lpfc_sli4_queue_setup(phba
);
4504 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
| LOG_SLI
,
4505 "0381 Error %d during queue setup.\n ", rc
);
4506 goto out_stop_timers
;
4509 /* Arm the CQs and then EQs on device */
4510 lpfc_sli4_arm_cqeq_intr(phba
);
4512 /* Indicate device interrupt mode */
4513 phba
->sli4_hba
.intr_enable
= 1;
4515 /* Allow asynchronous mailbox command to go through */
4516 spin_lock_irq(&phba
->hbalock
);
4517 phba
->sli
.sli_flag
&= ~LPFC_SLI_ASYNC_MBX_BLK
;
4518 spin_unlock_irq(&phba
->hbalock
);
4520 /* Post receive buffers to the device */
4521 lpfc_sli4_rb_setup(phba
);
4523 /* Reset HBA FCF states after HBA reset */
4524 phba
->fcf
.fcf_flag
= 0;
4525 phba
->fcf
.current_rec
.flag
= 0;
4527 /* Start the ELS watchdog timer */
4528 mod_timer(&vport
->els_tmofunc
,
4529 jiffies
+ HZ
* (phba
->fc_ratov
* 2));
4531 /* Start heart beat timer */
4532 mod_timer(&phba
->hb_tmofunc
,
4533 jiffies
+ HZ
* LPFC_HB_MBOX_INTERVAL
);
4534 phba
->hb_outstanding
= 0;
4535 phba
->last_completion_time
= jiffies
;
4537 /* Start error attention (ERATT) polling timer */
4538 mod_timer(&phba
->eratt_poll
, jiffies
+ HZ
* LPFC_ERATT_POLL_INTERVAL
);
4541 * The port is ready, set the host's link state to LINK_DOWN
4542 * in preparation for link interrupts.
4544 lpfc_init_link(phba
, mboxq
, phba
->cfg_topology
, phba
->cfg_link_speed
);
4545 mboxq
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
4546 lpfc_set_loopback_flag(phba
);
4547 /* Change driver state to LPFC_LINK_DOWN right before init link */
4548 spin_lock_irq(&phba
->hbalock
);
4549 phba
->link_state
= LPFC_LINK_DOWN
;
4550 spin_unlock_irq(&phba
->hbalock
);
4551 rc
= lpfc_sli_issue_mbox(phba
, mboxq
, MBX_NOWAIT
);
4552 if (unlikely(rc
!= MBX_NOT_FINISHED
)) {
4558 /* Unset all the queues set up in this routine when error out */
4560 lpfc_sli4_queue_unset(phba
);
4564 lpfc_stop_hba_timers(phba
);
4568 mempool_free(mboxq
, phba
->mbox_mem_pool
);
4573 * lpfc_mbox_timeout - Timeout call back function for mbox timer
4574 * @ptr: context object - pointer to hba structure.
4576 * This is the callback function for mailbox timer. The mailbox
4577 * timer is armed when a new mailbox command is issued and the timer
4578 * is deleted when the mailbox complete. The function is called by
4579 * the kernel timer code when a mailbox does not complete within
4580 * expected time. This function wakes up the worker thread to
4581 * process the mailbox timeout and returns. All the processing is
4582 * done by the worker thread function lpfc_mbox_timeout_handler.
4585 lpfc_mbox_timeout(unsigned long ptr
)
4587 struct lpfc_hba
*phba
= (struct lpfc_hba
*) ptr
;
4588 unsigned long iflag
;
4589 uint32_t tmo_posted
;
4591 spin_lock_irqsave(&phba
->pport
->work_port_lock
, iflag
);
4592 tmo_posted
= phba
->pport
->work_port_events
& WORKER_MBOX_TMO
;
4594 phba
->pport
->work_port_events
|= WORKER_MBOX_TMO
;
4595 spin_unlock_irqrestore(&phba
->pport
->work_port_lock
, iflag
);
4598 lpfc_worker_wake_up(phba
);
4604 * lpfc_mbox_timeout_handler - Worker thread function to handle mailbox timeout
4605 * @phba: Pointer to HBA context object.
4607 * This function is called from worker thread when a mailbox command times out.
4608 * The caller is not required to hold any locks. This function will reset the
4609 * HBA and recover all the pending commands.
4612 lpfc_mbox_timeout_handler(struct lpfc_hba
*phba
)
4614 LPFC_MBOXQ_t
*pmbox
= phba
->sli
.mbox_active
;
4615 MAILBOX_t
*mb
= &pmbox
->u
.mb
;
4616 struct lpfc_sli
*psli
= &phba
->sli
;
4617 struct lpfc_sli_ring
*pring
;
4619 /* Check the pmbox pointer first. There is a race condition
4620 * between the mbox timeout handler getting executed in the
4621 * worklist and the mailbox actually completing. When this
4622 * race condition occurs, the mbox_active will be NULL.
4624 spin_lock_irq(&phba
->hbalock
);
4625 if (pmbox
== NULL
) {
4626 lpfc_printf_log(phba
, KERN_WARNING
,
4628 "0353 Active Mailbox cleared - mailbox timeout "
4630 spin_unlock_irq(&phba
->hbalock
);
4634 /* Mbox cmd <mbxCommand> timeout */
4635 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
| LOG_SLI
,
4636 "0310 Mailbox command x%x timeout Data: x%x x%x x%p\n",
4638 phba
->pport
->port_state
,
4640 phba
->sli
.mbox_active
);
4641 spin_unlock_irq(&phba
->hbalock
);
4643 /* Setting state unknown so lpfc_sli_abort_iocb_ring
4644 * would get IOCB_ERROR from lpfc_sli_issue_iocb, allowing
4645 * it to fail all oustanding SCSI IO.
4647 spin_lock_irq(&phba
->pport
->work_port_lock
);
4648 phba
->pport
->work_port_events
&= ~WORKER_MBOX_TMO
;
4649 spin_unlock_irq(&phba
->pport
->work_port_lock
);
4650 spin_lock_irq(&phba
->hbalock
);
4651 phba
->link_state
= LPFC_LINK_UNKNOWN
;
4652 psli
->sli_flag
&= ~LPFC_SLI_ACTIVE
;
4653 spin_unlock_irq(&phba
->hbalock
);
4655 pring
= &psli
->ring
[psli
->fcp_ring
];
4656 lpfc_sli_abort_iocb_ring(phba
, pring
);
4658 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
| LOG_SLI
,
4659 "0345 Resetting board due to mailbox timeout\n");
4661 /* Reset the HBA device */
4662 lpfc_reset_hba(phba
);
4666 * lpfc_sli_issue_mbox_s3 - Issue an SLI3 mailbox command to firmware
4667 * @phba: Pointer to HBA context object.
4668 * @pmbox: Pointer to mailbox object.
4669 * @flag: Flag indicating how the mailbox need to be processed.
4671 * This function is called by discovery code and HBA management code
4672 * to submit a mailbox command to firmware with SLI-3 interface spec. This
4673 * function gets the hbalock to protect the data structures.
4674 * The mailbox command can be submitted in polling mode, in which case
4675 * this function will wait in a polling loop for the completion of the
4677 * If the mailbox is submitted in no_wait mode (not polling) the
4678 * function will submit the command and returns immediately without waiting
4679 * for the mailbox completion. The no_wait is supported only when HBA
4680 * is in SLI2/SLI3 mode - interrupts are enabled.
4681 * The SLI interface allows only one mailbox pending at a time. If the
4682 * mailbox is issued in polling mode and there is already a mailbox
4683 * pending, then the function will return an error. If the mailbox is issued
4684 * in NO_WAIT mode and there is a mailbox pending already, the function
4685 * will return MBX_BUSY after queuing the mailbox into mailbox queue.
4686 * The sli layer owns the mailbox object until the completion of mailbox
4687 * command if this function return MBX_BUSY or MBX_SUCCESS. For all other
4688 * return codes the caller owns the mailbox command after the return of
4692 lpfc_sli_issue_mbox_s3(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmbox
,
4696 struct lpfc_sli
*psli
= &phba
->sli
;
4697 uint32_t status
, evtctr
;
4700 unsigned long timeout
;
4701 unsigned long drvr_flag
= 0;
4702 uint32_t word0
, ldata
;
4703 void __iomem
*to_slim
;
4704 int processing_queue
= 0;
4706 spin_lock_irqsave(&phba
->hbalock
, drvr_flag
);
4708 phba
->sli
.sli_flag
&= ~LPFC_SLI_MBOX_ACTIVE
;
4709 /* processing mbox queue from intr_handler */
4710 if (unlikely(psli
->sli_flag
& LPFC_SLI_ASYNC_MBX_BLK
)) {
4711 spin_unlock_irqrestore(&phba
->hbalock
, drvr_flag
);
4714 processing_queue
= 1;
4715 pmbox
= lpfc_mbox_get(phba
);
4717 spin_unlock_irqrestore(&phba
->hbalock
, drvr_flag
);
4722 if (pmbox
->mbox_cmpl
&& pmbox
->mbox_cmpl
!= lpfc_sli_def_mbox_cmpl
&&
4723 pmbox
->mbox_cmpl
!= lpfc_sli_wake_mbox_wait
) {
4725 spin_unlock_irqrestore(&phba
->hbalock
, drvr_flag
);
4726 lpfc_printf_log(phba
, KERN_ERR
,
4727 LOG_MBOX
| LOG_VPORT
,
4728 "1806 Mbox x%x failed. No vport\n",
4729 pmbox
->u
.mb
.mbxCommand
);
4731 goto out_not_finished
;
4735 /* If the PCI channel is in offline state, do not post mbox. */
4736 if (unlikely(pci_channel_offline(phba
->pcidev
))) {
4737 spin_unlock_irqrestore(&phba
->hbalock
, drvr_flag
);
4738 goto out_not_finished
;
4741 /* If HBA has a deferred error attention, fail the iocb. */
4742 if (unlikely(phba
->hba_flag
& DEFER_ERATT
)) {
4743 spin_unlock_irqrestore(&phba
->hbalock
, drvr_flag
);
4744 goto out_not_finished
;
4750 status
= MBX_SUCCESS
;
4752 if (phba
->link_state
== LPFC_HBA_ERROR
) {
4753 spin_unlock_irqrestore(&phba
->hbalock
, drvr_flag
);
4755 /* Mbox command <mbxCommand> cannot issue */
4756 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
| LOG_SLI
,
4757 "(%d):0311 Mailbox command x%x cannot "
4758 "issue Data: x%x x%x\n",
4759 pmbox
->vport
? pmbox
->vport
->vpi
: 0,
4760 pmbox
->u
.mb
.mbxCommand
, psli
->sli_flag
, flag
);
4761 goto out_not_finished
;
4764 if (mb
->mbxCommand
!= MBX_KILL_BOARD
&& flag
& MBX_NOWAIT
&&
4765 !(readl(phba
->HCregaddr
) & HC_MBINT_ENA
)) {
4766 spin_unlock_irqrestore(&phba
->hbalock
, drvr_flag
);
4767 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
| LOG_SLI
,
4768 "(%d):2528 Mailbox command x%x cannot "
4769 "issue Data: x%x x%x\n",
4770 pmbox
->vport
? pmbox
->vport
->vpi
: 0,
4771 pmbox
->u
.mb
.mbxCommand
, psli
->sli_flag
, flag
);
4772 goto out_not_finished
;
4775 if (psli
->sli_flag
& LPFC_SLI_MBOX_ACTIVE
) {
4776 /* Polling for a mbox command when another one is already active
4777 * is not allowed in SLI. Also, the driver must have established
4778 * SLI2 mode to queue and process multiple mbox commands.
4781 if (flag
& MBX_POLL
) {
4782 spin_unlock_irqrestore(&phba
->hbalock
, drvr_flag
);
4784 /* Mbox command <mbxCommand> cannot issue */
4785 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
| LOG_SLI
,
4786 "(%d):2529 Mailbox command x%x "
4787 "cannot issue Data: x%x x%x\n",
4788 pmbox
->vport
? pmbox
->vport
->vpi
: 0,
4789 pmbox
->u
.mb
.mbxCommand
,
4790 psli
->sli_flag
, flag
);
4791 goto out_not_finished
;
4794 if (!(psli
->sli_flag
& LPFC_SLI_ACTIVE
)) {
4795 spin_unlock_irqrestore(&phba
->hbalock
, drvr_flag
);
4796 /* Mbox command <mbxCommand> cannot issue */
4797 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
| LOG_SLI
,
4798 "(%d):2530 Mailbox command x%x "
4799 "cannot issue Data: x%x x%x\n",
4800 pmbox
->vport
? pmbox
->vport
->vpi
: 0,
4801 pmbox
->u
.mb
.mbxCommand
,
4802 psli
->sli_flag
, flag
);
4803 goto out_not_finished
;
4806 /* Another mailbox command is still being processed, queue this
4807 * command to be processed later.
4809 lpfc_mbox_put(phba
, pmbox
);
4811 /* Mbox cmd issue - BUSY */
4812 lpfc_printf_log(phba
, KERN_INFO
, LOG_MBOX
| LOG_SLI
,
4813 "(%d):0308 Mbox cmd issue - BUSY Data: "
4814 "x%x x%x x%x x%x\n",
4815 pmbox
->vport
? pmbox
->vport
->vpi
: 0xffffff,
4816 mb
->mbxCommand
, phba
->pport
->port_state
,
4817 psli
->sli_flag
, flag
);
4819 psli
->slistat
.mbox_busy
++;
4820 spin_unlock_irqrestore(&phba
->hbalock
, drvr_flag
);
4823 lpfc_debugfs_disc_trc(pmbox
->vport
,
4824 LPFC_DISC_TRC_MBOX_VPORT
,
4825 "MBOX Bsy vport: cmd:x%x mb:x%x x%x",
4826 (uint32_t)mb
->mbxCommand
,
4827 mb
->un
.varWords
[0], mb
->un
.varWords
[1]);
4830 lpfc_debugfs_disc_trc(phba
->pport
,
4832 "MBOX Bsy: cmd:x%x mb:x%x x%x",
4833 (uint32_t)mb
->mbxCommand
,
4834 mb
->un
.varWords
[0], mb
->un
.varWords
[1]);
4840 psli
->sli_flag
|= LPFC_SLI_MBOX_ACTIVE
;
4842 /* If we are not polling, we MUST be in SLI2 mode */
4843 if (flag
!= MBX_POLL
) {
4844 if (!(psli
->sli_flag
& LPFC_SLI_ACTIVE
) &&
4845 (mb
->mbxCommand
!= MBX_KILL_BOARD
)) {
4846 psli
->sli_flag
&= ~LPFC_SLI_MBOX_ACTIVE
;
4847 spin_unlock_irqrestore(&phba
->hbalock
, drvr_flag
);
4848 /* Mbox command <mbxCommand> cannot issue */
4849 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
| LOG_SLI
,
4850 "(%d):2531 Mailbox command x%x "
4851 "cannot issue Data: x%x x%x\n",
4852 pmbox
->vport
? pmbox
->vport
->vpi
: 0,
4853 pmbox
->u
.mb
.mbxCommand
,
4854 psli
->sli_flag
, flag
);
4855 goto out_not_finished
;
4857 /* timeout active mbox command */
4858 mod_timer(&psli
->mbox_tmo
, (jiffies
+
4859 (HZ
* lpfc_mbox_tmo_val(phba
, mb
->mbxCommand
))));
4862 /* Mailbox cmd <cmd> issue */
4863 lpfc_printf_log(phba
, KERN_INFO
, LOG_MBOX
| LOG_SLI
,
4864 "(%d):0309 Mailbox cmd x%x issue Data: x%x x%x "
4866 pmbox
->vport
? pmbox
->vport
->vpi
: 0,
4867 mb
->mbxCommand
, phba
->pport
->port_state
,
4868 psli
->sli_flag
, flag
);
4870 if (mb
->mbxCommand
!= MBX_HEARTBEAT
) {
4872 lpfc_debugfs_disc_trc(pmbox
->vport
,
4873 LPFC_DISC_TRC_MBOX_VPORT
,
4874 "MBOX Send vport: cmd:x%x mb:x%x x%x",
4875 (uint32_t)mb
->mbxCommand
,
4876 mb
->un
.varWords
[0], mb
->un
.varWords
[1]);
4879 lpfc_debugfs_disc_trc(phba
->pport
,
4881 "MBOX Send: cmd:x%x mb:x%x x%x",
4882 (uint32_t)mb
->mbxCommand
,
4883 mb
->un
.varWords
[0], mb
->un
.varWords
[1]);
4887 psli
->slistat
.mbox_cmd
++;
4888 evtctr
= psli
->slistat
.mbox_event
;
4890 /* next set own bit for the adapter and copy over command word */
4891 mb
->mbxOwner
= OWN_CHIP
;
4893 if (psli
->sli_flag
& LPFC_SLI_ACTIVE
) {
4894 /* First copy command data to host SLIM area */
4895 lpfc_sli_pcimem_bcopy(mb
, phba
->mbox
, MAILBOX_CMD_SIZE
);
4897 if (mb
->mbxCommand
== MBX_CONFIG_PORT
) {
4898 /* copy command data into host mbox for cmpl */
4899 lpfc_sli_pcimem_bcopy(mb
, phba
->mbox
, MAILBOX_CMD_SIZE
);
4902 /* First copy mbox command data to HBA SLIM, skip past first
4904 to_slim
= phba
->MBslimaddr
+ sizeof (uint32_t);
4905 lpfc_memcpy_to_slim(to_slim
, &mb
->un
.varWords
[0],
4906 MAILBOX_CMD_SIZE
- sizeof (uint32_t));
4908 /* Next copy over first word, with mbxOwner set */
4909 ldata
= *((uint32_t *)mb
);
4910 to_slim
= phba
->MBslimaddr
;
4911 writel(ldata
, to_slim
);
4912 readl(to_slim
); /* flush */
4914 if (mb
->mbxCommand
== MBX_CONFIG_PORT
) {
4915 /* switch over to host mailbox */
4916 psli
->sli_flag
|= LPFC_SLI_ACTIVE
;
4924 /* Set up reference to mailbox command */
4925 psli
->mbox_active
= pmbox
;
4926 /* Interrupt board to do it */
4927 writel(CA_MBATT
, phba
->CAregaddr
);
4928 readl(phba
->CAregaddr
); /* flush */
4929 /* Don't wait for it to finish, just return */
4933 /* Set up null reference to mailbox command */
4934 psli
->mbox_active
= NULL
;
4935 /* Interrupt board to do it */
4936 writel(CA_MBATT
, phba
->CAregaddr
);
4937 readl(phba
->CAregaddr
); /* flush */
4939 if (psli
->sli_flag
& LPFC_SLI_ACTIVE
) {
4940 /* First read mbox status word */
4941 word0
= *((uint32_t *)phba
->mbox
);
4942 word0
= le32_to_cpu(word0
);
4944 /* First read mbox status word */
4945 word0
= readl(phba
->MBslimaddr
);
4948 /* Read the HBA Host Attention Register */
4949 ha_copy
= readl(phba
->HAregaddr
);
4950 timeout
= msecs_to_jiffies(lpfc_mbox_tmo_val(phba
,
4954 /* Wait for command to complete */
4955 while (((word0
& OWN_CHIP
) == OWN_CHIP
) ||
4956 (!(ha_copy
& HA_MBATT
) &&
4957 (phba
->link_state
> LPFC_WARM_START
))) {
4958 if (time_after(jiffies
, timeout
)) {
4959 psli
->sli_flag
&= ~LPFC_SLI_MBOX_ACTIVE
;
4960 spin_unlock_irqrestore(&phba
->hbalock
,
4962 goto out_not_finished
;
4965 /* Check if we took a mbox interrupt while we were
4967 if (((word0
& OWN_CHIP
) != OWN_CHIP
)
4968 && (evtctr
!= psli
->slistat
.mbox_event
))
4972 spin_unlock_irqrestore(&phba
->hbalock
,
4975 spin_lock_irqsave(&phba
->hbalock
, drvr_flag
);
4978 if (psli
->sli_flag
& LPFC_SLI_ACTIVE
) {
4979 /* First copy command data */
4980 word0
= *((uint32_t *)phba
->mbox
);
4981 word0
= le32_to_cpu(word0
);
4982 if (mb
->mbxCommand
== MBX_CONFIG_PORT
) {
4985 /* Check real SLIM for any errors */
4986 slimword0
= readl(phba
->MBslimaddr
);
4987 slimmb
= (MAILBOX_t
*) & slimword0
;
4988 if (((slimword0
& OWN_CHIP
) != OWN_CHIP
)
4989 && slimmb
->mbxStatus
) {
4996 /* First copy command data */
4997 word0
= readl(phba
->MBslimaddr
);
4999 /* Read the HBA Host Attention Register */
5000 ha_copy
= readl(phba
->HAregaddr
);
5003 if (psli
->sli_flag
& LPFC_SLI_ACTIVE
) {
5004 /* copy results back to user */
5005 lpfc_sli_pcimem_bcopy(phba
->mbox
, mb
, MAILBOX_CMD_SIZE
);
5007 /* First copy command data */
5008 lpfc_memcpy_from_slim(mb
, phba
->MBslimaddr
,
5010 if ((mb
->mbxCommand
== MBX_DUMP_MEMORY
) &&
5012 lpfc_memcpy_from_slim((void *)pmbox
->context2
,
5013 phba
->MBslimaddr
+ DMP_RSP_OFFSET
,
5014 mb
->un
.varDmp
.word_cnt
);
5018 writel(HA_MBATT
, phba
->HAregaddr
);
5019 readl(phba
->HAregaddr
); /* flush */
5021 psli
->sli_flag
&= ~LPFC_SLI_MBOX_ACTIVE
;
5022 status
= mb
->mbxStatus
;
5025 spin_unlock_irqrestore(&phba
->hbalock
, drvr_flag
);
5029 if (processing_queue
) {
5030 pmbox
->u
.mb
.mbxStatus
= MBX_NOT_FINISHED
;
5031 lpfc_mbox_cmpl_put(phba
, pmbox
);
5033 return MBX_NOT_FINISHED
;
5037 * lpfc_sli4_async_mbox_block - Block posting SLI4 asynchronous mailbox command
5038 * @phba: Pointer to HBA context object.
5040 * The function blocks the posting of SLI4 asynchronous mailbox commands from
5041 * the driver internal pending mailbox queue. It will then try to wait out the
5042 * possible outstanding mailbox command before return.
5045 * 0 - the outstanding mailbox command completed; otherwise, the wait for
5046 * the outstanding mailbox command timed out.
5049 lpfc_sli4_async_mbox_block(struct lpfc_hba
*phba
)
5051 struct lpfc_sli
*psli
= &phba
->sli
;
5052 uint8_t actcmd
= MBX_HEARTBEAT
;
5054 unsigned long timeout
;
5056 /* Mark the asynchronous mailbox command posting as blocked */
5057 spin_lock_irq(&phba
->hbalock
);
5058 psli
->sli_flag
|= LPFC_SLI_ASYNC_MBX_BLK
;
5059 if (phba
->sli
.mbox_active
)
5060 actcmd
= phba
->sli
.mbox_active
->u
.mb
.mbxCommand
;
5061 spin_unlock_irq(&phba
->hbalock
);
5062 /* Determine how long we might wait for the active mailbox
5063 * command to be gracefully completed by firmware.
5065 timeout
= msecs_to_jiffies(lpfc_mbox_tmo_val(phba
, actcmd
) * 1000) +
5067 /* Wait for the outstnading mailbox command to complete */
5068 while (phba
->sli
.mbox_active
) {
5069 /* Check active mailbox complete status every 2ms */
5071 if (time_after(jiffies
, timeout
)) {
5072 /* Timeout, marked the outstanding cmd not complete */
5078 /* Can not cleanly block async mailbox command, fails it */
5080 spin_lock_irq(&phba
->hbalock
);
5081 psli
->sli_flag
&= ~LPFC_SLI_ASYNC_MBX_BLK
;
5082 spin_unlock_irq(&phba
->hbalock
);
5088 * lpfc_sli4_async_mbox_unblock - Block posting SLI4 async mailbox command
5089 * @phba: Pointer to HBA context object.
5091 * The function unblocks and resume posting of SLI4 asynchronous mailbox
5092 * commands from the driver internal pending mailbox queue. It makes sure
5093 * that there is no outstanding mailbox command before resuming posting
5094 * asynchronous mailbox commands. If, for any reason, there is outstanding
5095 * mailbox command, it will try to wait it out before resuming asynchronous
5096 * mailbox command posting.
5099 lpfc_sli4_async_mbox_unblock(struct lpfc_hba
*phba
)
5101 struct lpfc_sli
*psli
= &phba
->sli
;
5103 spin_lock_irq(&phba
->hbalock
);
5104 if (!(psli
->sli_flag
& LPFC_SLI_ASYNC_MBX_BLK
)) {
5105 /* Asynchronous mailbox posting is not blocked, do nothing */
5106 spin_unlock_irq(&phba
->hbalock
);
5110 /* Outstanding synchronous mailbox command is guaranteed to be done,
5111 * successful or timeout, after timing-out the outstanding mailbox
5112 * command shall always be removed, so just unblock posting async
5113 * mailbox command and resume
5115 psli
->sli_flag
&= ~LPFC_SLI_ASYNC_MBX_BLK
;
5116 spin_unlock_irq(&phba
->hbalock
);
5118 /* wake up worker thread to post asynchronlous mailbox command */
5119 lpfc_worker_wake_up(phba
);
5123 * lpfc_sli4_post_sync_mbox - Post an SLI4 mailbox to the bootstrap mailbox
5124 * @phba: Pointer to HBA context object.
5125 * @mboxq: Pointer to mailbox object.
5127 * The function posts a mailbox to the port. The mailbox is expected
5128 * to be comletely filled in and ready for the port to operate on it.
5129 * This routine executes a synchronous completion operation on the
5130 * mailbox by polling for its completion.
5132 * The caller must not be holding any locks when calling this routine.
5135 * MBX_SUCCESS - mailbox posted successfully
5136 * Any of the MBX error values.
5139 lpfc_sli4_post_sync_mbox(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mboxq
)
5141 int rc
= MBX_SUCCESS
;
5142 unsigned long iflag
;
5144 uint32_t mcqe_status
;
5146 unsigned long timeout
;
5147 struct lpfc_sli
*psli
= &phba
->sli
;
5148 struct lpfc_mqe
*mb
= &mboxq
->u
.mqe
;
5149 struct lpfc_bmbx_create
*mbox_rgn
;
5150 struct dma_address
*dma_address
;
5151 struct lpfc_register bmbx_reg
;
5154 * Only one mailbox can be active to the bootstrap mailbox region
5155 * at a time and there is no queueing provided.
5157 spin_lock_irqsave(&phba
->hbalock
, iflag
);
5158 if (psli
->sli_flag
& LPFC_SLI_MBOX_ACTIVE
) {
5159 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
5160 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
| LOG_SLI
,
5161 "(%d):2532 Mailbox command x%x (x%x) "
5162 "cannot issue Data: x%x x%x\n",
5163 mboxq
->vport
? mboxq
->vport
->vpi
: 0,
5164 mboxq
->u
.mb
.mbxCommand
,
5165 lpfc_sli4_mbox_opcode_get(phba
, mboxq
),
5166 psli
->sli_flag
, MBX_POLL
);
5167 return MBXERR_ERROR
;
5169 /* The server grabs the token and owns it until release */
5170 psli
->sli_flag
|= LPFC_SLI_MBOX_ACTIVE
;
5171 phba
->sli
.mbox_active
= mboxq
;
5172 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
5175 * Initialize the bootstrap memory region to avoid stale data areas
5176 * in the mailbox post. Then copy the caller's mailbox contents to
5177 * the bmbx mailbox region.
5179 mbx_cmnd
= bf_get(lpfc_mqe_command
, mb
);
5180 memset(phba
->sli4_hba
.bmbx
.avirt
, 0, sizeof(struct lpfc_bmbx_create
));
5181 lpfc_sli_pcimem_bcopy(mb
, phba
->sli4_hba
.bmbx
.avirt
,
5182 sizeof(struct lpfc_mqe
));
5184 /* Post the high mailbox dma address to the port and wait for ready. */
5185 dma_address
= &phba
->sli4_hba
.bmbx
.dma_address
;
5186 writel(dma_address
->addr_hi
, phba
->sli4_hba
.BMBXregaddr
);
5188 timeout
= msecs_to_jiffies(lpfc_mbox_tmo_val(phba
, mbx_cmnd
)
5191 bmbx_reg
.word0
= readl(phba
->sli4_hba
.BMBXregaddr
);
5192 db_ready
= bf_get(lpfc_bmbx_rdy
, &bmbx_reg
);
5196 if (time_after(jiffies
, timeout
)) {
5200 } while (!db_ready
);
5202 /* Post the low mailbox dma address to the port. */
5203 writel(dma_address
->addr_lo
, phba
->sli4_hba
.BMBXregaddr
);
5204 timeout
= msecs_to_jiffies(lpfc_mbox_tmo_val(phba
, mbx_cmnd
)
5207 bmbx_reg
.word0
= readl(phba
->sli4_hba
.BMBXregaddr
);
5208 db_ready
= bf_get(lpfc_bmbx_rdy
, &bmbx_reg
);
5212 if (time_after(jiffies
, timeout
)) {
5216 } while (!db_ready
);
5219 * Read the CQ to ensure the mailbox has completed.
5220 * If so, update the mailbox status so that the upper layers
5221 * can complete the request normally.
5223 lpfc_sli_pcimem_bcopy(phba
->sli4_hba
.bmbx
.avirt
, mb
,
5224 sizeof(struct lpfc_mqe
));
5225 mbox_rgn
= (struct lpfc_bmbx_create
*) phba
->sli4_hba
.bmbx
.avirt
;
5226 lpfc_sli_pcimem_bcopy(&mbox_rgn
->mcqe
, &mboxq
->mcqe
,
5227 sizeof(struct lpfc_mcqe
));
5228 mcqe_status
= bf_get(lpfc_mcqe_status
, &mbox_rgn
->mcqe
);
5230 /* Prefix the mailbox status with range x4000 to note SLI4 status. */
5231 if (mcqe_status
!= MB_CQE_STATUS_SUCCESS
) {
5232 bf_set(lpfc_mqe_status
, mb
, LPFC_MBX_ERROR_RANGE
| mcqe_status
);
5236 lpfc_printf_log(phba
, KERN_INFO
, LOG_MBOX
| LOG_SLI
,
5237 "(%d):0356 Mailbox cmd x%x (x%x) Status x%x "
5238 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x"
5239 " x%x x%x CQ: x%x x%x x%x x%x\n",
5240 mboxq
->vport
? mboxq
->vport
->vpi
: 0,
5241 mbx_cmnd
, lpfc_sli4_mbox_opcode_get(phba
, mboxq
),
5242 bf_get(lpfc_mqe_status
, mb
),
5243 mb
->un
.mb_words
[0], mb
->un
.mb_words
[1],
5244 mb
->un
.mb_words
[2], mb
->un
.mb_words
[3],
5245 mb
->un
.mb_words
[4], mb
->un
.mb_words
[5],
5246 mb
->un
.mb_words
[6], mb
->un
.mb_words
[7],
5247 mb
->un
.mb_words
[8], mb
->un
.mb_words
[9],
5248 mb
->un
.mb_words
[10], mb
->un
.mb_words
[11],
5249 mb
->un
.mb_words
[12], mboxq
->mcqe
.word0
,
5250 mboxq
->mcqe
.mcqe_tag0
, mboxq
->mcqe
.mcqe_tag1
,
5251 mboxq
->mcqe
.trailer
);
5253 /* We are holding the token, no needed for lock when release */
5254 spin_lock_irqsave(&phba
->hbalock
, iflag
);
5255 psli
->sli_flag
&= ~LPFC_SLI_MBOX_ACTIVE
;
5256 phba
->sli
.mbox_active
= NULL
;
5257 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
5262 * lpfc_sli_issue_mbox_s4 - Issue an SLI4 mailbox command to firmware
5263 * @phba: Pointer to HBA context object.
5264 * @pmbox: Pointer to mailbox object.
5265 * @flag: Flag indicating how the mailbox need to be processed.
5267 * This function is called by discovery code and HBA management code to submit
5268 * a mailbox command to firmware with SLI-4 interface spec.
5270 * Return codes the caller owns the mailbox command after the return of the
5274 lpfc_sli_issue_mbox_s4(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mboxq
,
5277 struct lpfc_sli
*psli
= &phba
->sli
;
5278 unsigned long iflags
;
5281 rc
= lpfc_mbox_dev_check(phba
);
5283 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
| LOG_SLI
,
5284 "(%d):2544 Mailbox command x%x (x%x) "
5285 "cannot issue Data: x%x x%x\n",
5286 mboxq
->vport
? mboxq
->vport
->vpi
: 0,
5287 mboxq
->u
.mb
.mbxCommand
,
5288 lpfc_sli4_mbox_opcode_get(phba
, mboxq
),
5289 psli
->sli_flag
, flag
);
5290 goto out_not_finished
;
5293 /* Detect polling mode and jump to a handler */
5294 if (!phba
->sli4_hba
.intr_enable
) {
5295 if (flag
== MBX_POLL
)
5296 rc
= lpfc_sli4_post_sync_mbox(phba
, mboxq
);
5299 if (rc
!= MBX_SUCCESS
)
5300 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
| LOG_SLI
,
5301 "(%d):2541 Mailbox command x%x "
5302 "(x%x) cannot issue Data: x%x x%x\n",
5303 mboxq
->vport
? mboxq
->vport
->vpi
: 0,
5304 mboxq
->u
.mb
.mbxCommand
,
5305 lpfc_sli4_mbox_opcode_get(phba
, mboxq
),
5306 psli
->sli_flag
, flag
);
5308 } else if (flag
== MBX_POLL
) {
5309 lpfc_printf_log(phba
, KERN_WARNING
, LOG_MBOX
| LOG_SLI
,
5310 "(%d):2542 Try to issue mailbox command "
5311 "x%x (x%x) synchronously ahead of async"
5312 "mailbox command queue: x%x x%x\n",
5313 mboxq
->vport
? mboxq
->vport
->vpi
: 0,
5314 mboxq
->u
.mb
.mbxCommand
,
5315 lpfc_sli4_mbox_opcode_get(phba
, mboxq
),
5316 psli
->sli_flag
, flag
);
5317 /* Try to block the asynchronous mailbox posting */
5318 rc
= lpfc_sli4_async_mbox_block(phba
);
5320 /* Successfully blocked, now issue sync mbox cmd */
5321 rc
= lpfc_sli4_post_sync_mbox(phba
, mboxq
);
5322 if (rc
!= MBX_SUCCESS
)
5323 lpfc_printf_log(phba
, KERN_ERR
,
5325 "(%d):2597 Mailbox command "
5326 "x%x (x%x) cannot issue "
5329 mboxq
->vport
->vpi
: 0,
5330 mboxq
->u
.mb
.mbxCommand
,
5331 lpfc_sli4_mbox_opcode_get(phba
,
5333 psli
->sli_flag
, flag
);
5334 /* Unblock the async mailbox posting afterward */
5335 lpfc_sli4_async_mbox_unblock(phba
);
5340 /* Now, interrupt mode asynchrous mailbox command */
5341 rc
= lpfc_mbox_cmd_check(phba
, mboxq
);
5343 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
| LOG_SLI
,
5344 "(%d):2543 Mailbox command x%x (x%x) "
5345 "cannot issue Data: x%x x%x\n",
5346 mboxq
->vport
? mboxq
->vport
->vpi
: 0,
5347 mboxq
->u
.mb
.mbxCommand
,
5348 lpfc_sli4_mbox_opcode_get(phba
, mboxq
),
5349 psli
->sli_flag
, flag
);
5350 goto out_not_finished
;
5353 /* Put the mailbox command to the driver internal FIFO */
5354 psli
->slistat
.mbox_busy
++;
5355 spin_lock_irqsave(&phba
->hbalock
, iflags
);
5356 lpfc_mbox_put(phba
, mboxq
);
5357 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
5358 lpfc_printf_log(phba
, KERN_INFO
, LOG_MBOX
| LOG_SLI
,
5359 "(%d):0354 Mbox cmd issue - Enqueue Data: "
5360 "x%x (x%x) x%x x%x x%x\n",
5361 mboxq
->vport
? mboxq
->vport
->vpi
: 0xffffff,
5362 bf_get(lpfc_mqe_command
, &mboxq
->u
.mqe
),
5363 lpfc_sli4_mbox_opcode_get(phba
, mboxq
),
5364 phba
->pport
->port_state
,
5365 psli
->sli_flag
, MBX_NOWAIT
);
5366 /* Wake up worker thread to transport mailbox command from head */
5367 lpfc_worker_wake_up(phba
);
5372 return MBX_NOT_FINISHED
;
5376 * lpfc_sli4_post_async_mbox - Post an SLI4 mailbox command to device
5377 * @phba: Pointer to HBA context object.
5379 * This function is called by worker thread to send a mailbox command to
5380 * SLI4 HBA firmware.
5384 lpfc_sli4_post_async_mbox(struct lpfc_hba
*phba
)
5386 struct lpfc_sli
*psli
= &phba
->sli
;
5387 LPFC_MBOXQ_t
*mboxq
;
5388 int rc
= MBX_SUCCESS
;
5389 unsigned long iflags
;
5390 struct lpfc_mqe
*mqe
;
5393 /* Check interrupt mode before post async mailbox command */
5394 if (unlikely(!phba
->sli4_hba
.intr_enable
))
5395 return MBX_NOT_FINISHED
;
5397 /* Check for mailbox command service token */
5398 spin_lock_irqsave(&phba
->hbalock
, iflags
);
5399 if (unlikely(psli
->sli_flag
& LPFC_SLI_ASYNC_MBX_BLK
)) {
5400 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
5401 return MBX_NOT_FINISHED
;
5403 if (psli
->sli_flag
& LPFC_SLI_MBOX_ACTIVE
) {
5404 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
5405 return MBX_NOT_FINISHED
;
5407 if (unlikely(phba
->sli
.mbox_active
)) {
5408 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
5409 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
| LOG_SLI
,
5410 "0384 There is pending active mailbox cmd\n");
5411 return MBX_NOT_FINISHED
;
5413 /* Take the mailbox command service token */
5414 psli
->sli_flag
|= LPFC_SLI_MBOX_ACTIVE
;
5416 /* Get the next mailbox command from head of queue */
5417 mboxq
= lpfc_mbox_get(phba
);
5419 /* If no more mailbox command waiting for post, we're done */
5421 psli
->sli_flag
&= ~LPFC_SLI_MBOX_ACTIVE
;
5422 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
5425 phba
->sli
.mbox_active
= mboxq
;
5426 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
5428 /* Check device readiness for posting mailbox command */
5429 rc
= lpfc_mbox_dev_check(phba
);
5431 /* Driver clean routine will clean up pending mailbox */
5432 goto out_not_finished
;
5434 /* Prepare the mbox command to be posted */
5435 mqe
= &mboxq
->u
.mqe
;
5436 mbx_cmnd
= bf_get(lpfc_mqe_command
, mqe
);
5438 /* Start timer for the mbox_tmo and log some mailbox post messages */
5439 mod_timer(&psli
->mbox_tmo
, (jiffies
+
5440 (HZ
* lpfc_mbox_tmo_val(phba
, mbx_cmnd
))));
5442 lpfc_printf_log(phba
, KERN_INFO
, LOG_MBOX
| LOG_SLI
,
5443 "(%d):0355 Mailbox cmd x%x (x%x) issue Data: "
5445 mboxq
->vport
? mboxq
->vport
->vpi
: 0, mbx_cmnd
,
5446 lpfc_sli4_mbox_opcode_get(phba
, mboxq
),
5447 phba
->pport
->port_state
, psli
->sli_flag
);
5449 if (mbx_cmnd
!= MBX_HEARTBEAT
) {
5451 lpfc_debugfs_disc_trc(mboxq
->vport
,
5452 LPFC_DISC_TRC_MBOX_VPORT
,
5453 "MBOX Send vport: cmd:x%x mb:x%x x%x",
5454 mbx_cmnd
, mqe
->un
.mb_words
[0],
5455 mqe
->un
.mb_words
[1]);
5457 lpfc_debugfs_disc_trc(phba
->pport
,
5459 "MBOX Send: cmd:x%x mb:x%x x%x",
5460 mbx_cmnd
, mqe
->un
.mb_words
[0],
5461 mqe
->un
.mb_words
[1]);
5464 psli
->slistat
.mbox_cmd
++;
5466 /* Post the mailbox command to the port */
5467 rc
= lpfc_sli4_mq_put(phba
->sli4_hba
.mbx_wq
, mqe
);
5468 if (rc
!= MBX_SUCCESS
) {
5469 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
| LOG_SLI
,
5470 "(%d):2533 Mailbox command x%x (x%x) "
5471 "cannot issue Data: x%x x%x\n",
5472 mboxq
->vport
? mboxq
->vport
->vpi
: 0,
5473 mboxq
->u
.mb
.mbxCommand
,
5474 lpfc_sli4_mbox_opcode_get(phba
, mboxq
),
5475 psli
->sli_flag
, MBX_NOWAIT
);
5476 goto out_not_finished
;
5482 spin_lock_irqsave(&phba
->hbalock
, iflags
);
5483 mboxq
->u
.mb
.mbxStatus
= MBX_NOT_FINISHED
;
5484 __lpfc_mbox_cmpl_put(phba
, mboxq
);
5485 /* Release the token */
5486 psli
->sli_flag
&= ~LPFC_SLI_MBOX_ACTIVE
;
5487 phba
->sli
.mbox_active
= NULL
;
5488 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
5490 return MBX_NOT_FINISHED
;
5494 * lpfc_sli_issue_mbox - Wrapper func for issuing mailbox command
5495 * @phba: Pointer to HBA context object.
5496 * @pmbox: Pointer to mailbox object.
5497 * @flag: Flag indicating how the mailbox need to be processed.
5499 * This routine wraps the actual SLI3 or SLI4 mailbox issuing routine from
5500 * the API jump table function pointer from the lpfc_hba struct.
5502 * Return codes the caller owns the mailbox command after the return of the
5506 lpfc_sli_issue_mbox(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmbox
, uint32_t flag
)
5508 return phba
->lpfc_sli_issue_mbox(phba
, pmbox
, flag
);
5512 * lpfc_mbox_api_table_setup - Set up mbox api fucntion jump table
5513 * @phba: The hba struct for which this call is being executed.
5514 * @dev_grp: The HBA PCI-Device group number.
5516 * This routine sets up the mbox interface API function jump table in @phba
5518 * Returns: 0 - success, -ENODEV - failure.
5521 lpfc_mbox_api_table_setup(struct lpfc_hba
*phba
, uint8_t dev_grp
)
5525 case LPFC_PCI_DEV_LP
:
5526 phba
->lpfc_sli_issue_mbox
= lpfc_sli_issue_mbox_s3
;
5527 phba
->lpfc_sli_handle_slow_ring_event
=
5528 lpfc_sli_handle_slow_ring_event_s3
;
5529 phba
->lpfc_sli_hbq_to_firmware
= lpfc_sli_hbq_to_firmware_s3
;
5530 phba
->lpfc_sli_brdrestart
= lpfc_sli_brdrestart_s3
;
5531 phba
->lpfc_sli_brdready
= lpfc_sli_brdready_s3
;
5533 case LPFC_PCI_DEV_OC
:
5534 phba
->lpfc_sli_issue_mbox
= lpfc_sli_issue_mbox_s4
;
5535 phba
->lpfc_sli_handle_slow_ring_event
=
5536 lpfc_sli_handle_slow_ring_event_s4
;
5537 phba
->lpfc_sli_hbq_to_firmware
= lpfc_sli_hbq_to_firmware_s4
;
5538 phba
->lpfc_sli_brdrestart
= lpfc_sli_brdrestart_s4
;
5539 phba
->lpfc_sli_brdready
= lpfc_sli_brdready_s4
;
5542 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5543 "1420 Invalid HBA PCI-device group: 0x%x\n",
5552 * __lpfc_sli_ringtx_put - Add an iocb to the txq
5553 * @phba: Pointer to HBA context object.
5554 * @pring: Pointer to driver SLI ring object.
5555 * @piocb: Pointer to address of newly added command iocb.
5557 * This function is called with hbalock held to add a command
5558 * iocb to the txq when SLI layer cannot submit the command iocb
5562 __lpfc_sli_ringtx_put(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
,
5563 struct lpfc_iocbq
*piocb
)
5565 /* Insert the caller's iocb in the txq tail for later processing. */
5566 list_add_tail(&piocb
->list
, &pring
->txq
);
5571 * lpfc_sli_next_iocb - Get the next iocb in the txq
5572 * @phba: Pointer to HBA context object.
5573 * @pring: Pointer to driver SLI ring object.
5574 * @piocb: Pointer to address of newly added command iocb.
5576 * This function is called with hbalock held before a new
5577 * iocb is submitted to the firmware. This function checks
5578 * txq to flush the iocbs in txq to Firmware before
5579 * submitting new iocbs to the Firmware.
5580 * If there are iocbs in the txq which need to be submitted
5581 * to firmware, lpfc_sli_next_iocb returns the first element
5582 * of the txq after dequeuing it from txq.
5583 * If there is no iocb in the txq then the function will return
5584 * *piocb and *piocb is set to NULL. Caller needs to check
5585 * *piocb to find if there are more commands in the txq.
5587 static struct lpfc_iocbq
*
5588 lpfc_sli_next_iocb(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
,
5589 struct lpfc_iocbq
**piocb
)
5591 struct lpfc_iocbq
* nextiocb
;
5593 nextiocb
= lpfc_sli_ringtx_get(phba
, pring
);
5603 * __lpfc_sli_issue_iocb_s3 - SLI3 device lockless ver of lpfc_sli_issue_iocb
5604 * @phba: Pointer to HBA context object.
5605 * @ring_number: SLI ring number to issue iocb on.
5606 * @piocb: Pointer to command iocb.
5607 * @flag: Flag indicating if this command can be put into txq.
5609 * __lpfc_sli_issue_iocb_s3 is used by other functions in the driver to issue
5610 * an iocb command to an HBA with SLI-3 interface spec. If the PCI slot is
5611 * recovering from error state, if HBA is resetting or if LPFC_STOP_IOCB_EVENT
5612 * flag is turned on, the function returns IOCB_ERROR. When the link is down,
5613 * this function allows only iocbs for posting buffers. This function finds
5614 * next available slot in the command ring and posts the command to the
5615 * available slot and writes the port attention register to request HBA start
5616 * processing new iocb. If there is no slot available in the ring and
5617 * flag & SLI_IOCB_RET_IOCB is set, the new iocb is added to the txq, otherwise
5618 * the function returns IOCB_BUSY.
5620 * This function is called with hbalock held. The function will return success
5621 * after it successfully submit the iocb to firmware or after adding to the
5625 __lpfc_sli_issue_iocb_s3(struct lpfc_hba
*phba
, uint32_t ring_number
,
5626 struct lpfc_iocbq
*piocb
, uint32_t flag
)
5628 struct lpfc_iocbq
*nextiocb
;
5630 struct lpfc_sli_ring
*pring
= &phba
->sli
.ring
[ring_number
];
5632 if (piocb
->iocb_cmpl
&& (!piocb
->vport
) &&
5633 (piocb
->iocb
.ulpCommand
!= CMD_ABORT_XRI_CN
) &&
5634 (piocb
->iocb
.ulpCommand
!= CMD_CLOSE_XRI_CN
)) {
5635 lpfc_printf_log(phba
, KERN_ERR
,
5636 LOG_SLI
| LOG_VPORT
,
5637 "1807 IOCB x%x failed. No vport\n",
5638 piocb
->iocb
.ulpCommand
);
5644 /* If the PCI channel is in offline state, do not post iocbs. */
5645 if (unlikely(pci_channel_offline(phba
->pcidev
)))
5648 /* If HBA has a deferred error attention, fail the iocb. */
5649 if (unlikely(phba
->hba_flag
& DEFER_ERATT
))
5653 * We should never get an IOCB if we are in a < LINK_DOWN state
5655 if (unlikely(phba
->link_state
< LPFC_LINK_DOWN
))
5659 * Check to see if we are blocking IOCB processing because of a
5660 * outstanding event.
5662 if (unlikely(pring
->flag
& LPFC_STOP_IOCB_EVENT
))
5665 if (unlikely(phba
->link_state
== LPFC_LINK_DOWN
)) {
5667 * Only CREATE_XRI, CLOSE_XRI, and QUE_RING_BUF
5668 * can be issued if the link is not up.
5670 switch (piocb
->iocb
.ulpCommand
) {
5671 case CMD_GEN_REQUEST64_CR
:
5672 case CMD_GEN_REQUEST64_CX
:
5673 if (!(phba
->sli
.sli_flag
& LPFC_MENLO_MAINT
) ||
5674 (piocb
->iocb
.un
.genreq64
.w5
.hcsw
.Rctl
!=
5675 FC_RCTL_DD_UNSOL_CMD
) ||
5676 (piocb
->iocb
.un
.genreq64
.w5
.hcsw
.Type
!=
5677 MENLO_TRANSPORT_TYPE
))
5681 case CMD_QUE_RING_BUF_CN
:
5682 case CMD_QUE_RING_BUF64_CN
:
5684 * For IOCBs, like QUE_RING_BUF, that have no rsp ring
5685 * completion, iocb_cmpl MUST be 0.
5687 if (piocb
->iocb_cmpl
)
5688 piocb
->iocb_cmpl
= NULL
;
5690 case CMD_CREATE_XRI_CR
:
5691 case CMD_CLOSE_XRI_CN
:
5692 case CMD_CLOSE_XRI_CX
:
5699 * For FCP commands, we must be in a state where we can process link
5702 } else if (unlikely(pring
->ringno
== phba
->sli
.fcp_ring
&&
5703 !(phba
->sli
.sli_flag
& LPFC_PROCESS_LA
))) {
5707 while ((iocb
= lpfc_sli_next_iocb_slot(phba
, pring
)) &&
5708 (nextiocb
= lpfc_sli_next_iocb(phba
, pring
, &piocb
)))
5709 lpfc_sli_submit_iocb(phba
, pring
, iocb
, nextiocb
);
5712 lpfc_sli_update_ring(phba
, pring
);
5714 lpfc_sli_update_full_ring(phba
, pring
);
5717 return IOCB_SUCCESS
;
5722 pring
->stats
.iocb_cmd_delay
++;
5726 if (!(flag
& SLI_IOCB_RET_IOCB
)) {
5727 __lpfc_sli_ringtx_put(phba
, pring
, piocb
);
5728 return IOCB_SUCCESS
;
5735 * lpfc_sli4_bpl2sgl - Convert the bpl/bde to a sgl.
5736 * @phba: Pointer to HBA context object.
5737 * @piocb: Pointer to command iocb.
5738 * @sglq: Pointer to the scatter gather queue object.
5740 * This routine converts the bpl or bde that is in the IOCB
5741 * to a sgl list for the sli4 hardware. The physical address
5742 * of the bpl/bde is converted back to a virtual address.
5743 * If the IOCB contains a BPL then the list of BDE's is
5744 * converted to sli4_sge's. If the IOCB contains a single
5745 * BDE then it is converted to a single sli_sge.
5746 * The IOCB is still in cpu endianess so the contents of
5747 * the bpl can be used without byte swapping.
5749 * Returns valid XRI = Success, NO_XRI = Failure.
5752 lpfc_sli4_bpl2sgl(struct lpfc_hba
*phba
, struct lpfc_iocbq
*piocbq
,
5753 struct lpfc_sglq
*sglq
)
5755 uint16_t xritag
= NO_XRI
;
5756 struct ulp_bde64
*bpl
= NULL
;
5757 struct ulp_bde64 bde
;
5758 struct sli4_sge
*sgl
= NULL
;
5763 if (!piocbq
|| !sglq
)
5766 sgl
= (struct sli4_sge
*)sglq
->sgl
;
5767 icmd
= &piocbq
->iocb
;
5768 if (icmd
->un
.genreq64
.bdl
.bdeFlags
== BUFF_TYPE_BLP_64
) {
5769 numBdes
= icmd
->un
.genreq64
.bdl
.bdeSize
/
5770 sizeof(struct ulp_bde64
);
5771 /* The addrHigh and addrLow fields within the IOCB
5772 * have not been byteswapped yet so there is no
5773 * need to swap them back.
5775 bpl
= (struct ulp_bde64
*)
5776 ((struct lpfc_dmabuf
*)piocbq
->context3
)->virt
;
5781 for (i
= 0; i
< numBdes
; i
++) {
5782 /* Should already be byte swapped. */
5783 sgl
->addr_hi
= bpl
->addrHigh
;
5784 sgl
->addr_lo
= bpl
->addrLow
;
5786 if ((i
+1) == numBdes
)
5787 bf_set(lpfc_sli4_sge_last
, sgl
, 1);
5789 bf_set(lpfc_sli4_sge_last
, sgl
, 0);
5790 sgl
->word2
= cpu_to_le32(sgl
->word2
);
5791 /* swap the size field back to the cpu so we
5792 * can assign it to the sgl.
5794 bde
.tus
.w
= le32_to_cpu(bpl
->tus
.w
);
5795 sgl
->sge_len
= cpu_to_le32(bde
.tus
.f
.bdeSize
);
5799 } else if (icmd
->un
.genreq64
.bdl
.bdeFlags
== BUFF_TYPE_BDE_64
) {
5800 /* The addrHigh and addrLow fields of the BDE have not
5801 * been byteswapped yet so they need to be swapped
5802 * before putting them in the sgl.
5805 cpu_to_le32(icmd
->un
.genreq64
.bdl
.addrHigh
);
5807 cpu_to_le32(icmd
->un
.genreq64
.bdl
.addrLow
);
5808 bf_set(lpfc_sli4_sge_last
, sgl
, 1);
5809 sgl
->word2
= cpu_to_le32(sgl
->word2
);
5811 cpu_to_le32(icmd
->un
.genreq64
.bdl
.bdeSize
);
5813 return sglq
->sli4_xritag
;
5817 * lpfc_sli4_scmd_to_wqidx_distr - scsi command to SLI4 WQ index distribution
5818 * @phba: Pointer to HBA context object.
5820 * This routine performs a round robin SCSI command to SLI4 FCP WQ index
5821 * distribution. This is called by __lpfc_sli_issue_iocb_s4() with the hbalock
5824 * Return: index into SLI4 fast-path FCP queue index.
5827 lpfc_sli4_scmd_to_wqidx_distr(struct lpfc_hba
*phba
)
5830 if (phba
->fcp_qidx
>= phba
->cfg_fcp_wq_count
)
5833 return phba
->fcp_qidx
;
5837 * lpfc_sli_iocb2wqe - Convert the IOCB to a work queue entry.
5838 * @phba: Pointer to HBA context object.
5839 * @piocb: Pointer to command iocb.
5840 * @wqe: Pointer to the work queue entry.
5842 * This routine converts the iocb command to its Work Queue Entry
5843 * equivalent. The wqe pointer should not have any fields set when
5844 * this routine is called because it will memcpy over them.
5845 * This routine does not set the CQ_ID or the WQEC bits in the
5848 * Returns: 0 = Success, IOCB_ERROR = Failure.
5851 lpfc_sli4_iocb2wqe(struct lpfc_hba
*phba
, struct lpfc_iocbq
*iocbq
,
5852 union lpfc_wqe
*wqe
)
5854 uint32_t xmit_len
= 0, total_len
= 0;
5858 uint8_t command_type
= ELS_COMMAND_NON_FIP
;
5861 struct ulp_bde64
*bpl
= NULL
;
5862 uint32_t els_id
= ELS_ID_DEFAULT
;
5864 struct ulp_bde64 bde
;
5866 fip
= phba
->hba_flag
& HBA_FIP_SUPPORT
;
5867 /* The fcp commands will set command type */
5868 if (iocbq
->iocb_flag
& LPFC_IO_FCP
)
5869 command_type
= FCP_COMMAND
;
5870 else if (fip
&& (iocbq
->iocb_flag
& LPFC_FIP_ELS_ID_MASK
))
5871 command_type
= ELS_COMMAND_FIP
;
5873 command_type
= ELS_COMMAND_NON_FIP
;
5875 /* Some of the fields are in the right position already */
5876 memcpy(wqe
, &iocbq
->iocb
, sizeof(union lpfc_wqe
));
5877 abort_tag
= (uint32_t) iocbq
->iotag
;
5878 xritag
= iocbq
->sli4_xritag
;
5879 wqe
->words
[7] = 0; /* The ct field has moved so reset */
5880 /* words0-2 bpl convert bde */
5881 if (iocbq
->iocb
.un
.genreq64
.bdl
.bdeFlags
== BUFF_TYPE_BLP_64
) {
5882 numBdes
= iocbq
->iocb
.un
.genreq64
.bdl
.bdeSize
/
5883 sizeof(struct ulp_bde64
);
5884 bpl
= (struct ulp_bde64
*)
5885 ((struct lpfc_dmabuf
*)iocbq
->context3
)->virt
;
5889 /* Should already be byte swapped. */
5890 wqe
->generic
.bde
.addrHigh
= le32_to_cpu(bpl
->addrHigh
);
5891 wqe
->generic
.bde
.addrLow
= le32_to_cpu(bpl
->addrLow
);
5892 /* swap the size field back to the cpu so we
5893 * can assign it to the sgl.
5895 wqe
->generic
.bde
.tus
.w
= le32_to_cpu(bpl
->tus
.w
);
5896 xmit_len
= wqe
->generic
.bde
.tus
.f
.bdeSize
;
5898 for (i
= 0; i
< numBdes
; i
++) {
5899 bde
.tus
.w
= le32_to_cpu(bpl
[i
].tus
.w
);
5900 total_len
+= bde
.tus
.f
.bdeSize
;
5903 xmit_len
= iocbq
->iocb
.un
.fcpi64
.bdl
.bdeSize
;
5905 iocbq
->iocb
.ulpIoTag
= iocbq
->iotag
;
5906 cmnd
= iocbq
->iocb
.ulpCommand
;
5908 switch (iocbq
->iocb
.ulpCommand
) {
5909 case CMD_ELS_REQUEST64_CR
:
5910 if (!iocbq
->iocb
.ulpLe
) {
5911 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
5912 "2007 Only Limited Edition cmd Format"
5913 " supported 0x%x\n",
5914 iocbq
->iocb
.ulpCommand
);
5917 wqe
->els_req
.payload_len
= xmit_len
;
5918 /* Els_reguest64 has a TMO */
5919 bf_set(wqe_tmo
, &wqe
->els_req
.wqe_com
,
5920 iocbq
->iocb
.ulpTimeout
);
5921 /* Need a VF for word 4 set the vf bit*/
5922 bf_set(els_req64_vf
, &wqe
->els_req
, 0);
5923 /* And a VFID for word 12 */
5924 bf_set(els_req64_vfid
, &wqe
->els_req
, 0);
5926 * Set ct field to 3, indicates that the context_tag field
5927 * contains the FCFI and remote N_Port_ID is
5931 ct
= ((iocbq
->iocb
.ulpCt_h
<< 1) | iocbq
->iocb
.ulpCt_l
);
5932 bf_set(lpfc_wqe_gen_context
, &wqe
->generic
,
5933 iocbq
->iocb
.ulpContext
);
5935 bf_set(lpfc_wqe_gen_ct
, &wqe
->generic
, ct
);
5936 bf_set(lpfc_wqe_gen_pu
, &wqe
->generic
, 0);
5937 /* CCP CCPE PV PRI in word10 were set in the memcpy */
5939 if (command_type
== ELS_COMMAND_FIP
) {
5940 els_id
= ((iocbq
->iocb_flag
& LPFC_FIP_ELS_ID_MASK
)
5941 >> LPFC_FIP_ELS_ID_SHIFT
);
5943 bf_set(lpfc_wqe_gen_els_id
, &wqe
->generic
, els_id
);
5946 case CMD_XMIT_SEQUENCE64_CX
:
5947 bf_set(lpfc_wqe_gen_context
, &wqe
->generic
,
5948 iocbq
->iocb
.un
.ulpWord
[3]);
5949 wqe
->generic
.word3
= 0;
5950 bf_set(wqe_rcvoxid
, &wqe
->generic
, iocbq
->iocb
.ulpContext
);
5951 /* The entire sequence is transmitted for this IOCB */
5952 xmit_len
= total_len
;
5953 cmnd
= CMD_XMIT_SEQUENCE64_CR
;
5954 case CMD_XMIT_SEQUENCE64_CR
:
5955 /* word3 iocb=io_tag32 wqe=payload_offset */
5956 /* payload offset used for multilpe outstanding
5957 * sequences on the same exchange
5960 /* word4 relative_offset memcpy */
5961 /* word5 r_ctl/df_ctl memcpy */
5962 bf_set(lpfc_wqe_gen_pu
, &wqe
->generic
, 0);
5963 wqe
->xmit_sequence
.xmit_len
= xmit_len
;
5964 command_type
= OTHER_COMMAND
;
5966 case CMD_XMIT_BCAST64_CN
:
5967 /* word3 iocb=iotag32 wqe=payload_len */
5968 wqe
->words
[3] = 0; /* no definition for this in wqe */
5969 /* word4 iocb=rsvd wqe=rsvd */
5970 /* word5 iocb=rctl/type/df_ctl wqe=rctl/type/df_ctl memcpy */
5971 /* word6 iocb=ctxt_tag/io_tag wqe=ctxt_tag/xri */
5972 bf_set(lpfc_wqe_gen_ct
, &wqe
->generic
,
5973 ((iocbq
->iocb
.ulpCt_h
<< 1) | iocbq
->iocb
.ulpCt_l
));
5975 case CMD_FCP_IWRITE64_CR
:
5976 command_type
= FCP_COMMAND_DATA_OUT
;
5977 /* The struct for wqe fcp_iwrite has 3 fields that are somewhat
5979 * word3 is payload_len: byte offset to the sgl entry for the
5981 * word4 is total xfer len, same as the IOCB->ulpParameter.
5982 * word5 is initial xfer len 0 = wait for xfer-ready
5985 /* Always wait for xfer-ready before sending data */
5986 wqe
->fcp_iwrite
.initial_xfer_len
= 0;
5987 /* word 4 (xfer length) should have been set on the memcpy */
5989 /* allow write to fall through to read */
5990 case CMD_FCP_IREAD64_CR
:
5991 /* FCP_CMD is always the 1st sgl entry */
5992 wqe
->fcp_iread
.payload_len
=
5993 xmit_len
+ sizeof(struct fcp_rsp
);
5995 /* word 4 (xfer length) should have been set on the memcpy */
5997 bf_set(lpfc_wqe_gen_erp
, &wqe
->generic
,
5998 iocbq
->iocb
.ulpFCP2Rcvy
);
5999 bf_set(lpfc_wqe_gen_lnk
, &wqe
->generic
, iocbq
->iocb
.ulpXS
);
6000 /* The XC bit and the XS bit are similar. The driver never
6001 * tracked whether or not the exchange was previouslly open.
6002 * XC = Exchange create, 0 is create. 1 is already open.
6003 * XS = link cmd: 1 do not close the exchange after command.
6004 * XS = 0 close exchange when command completes.
6005 * The only time we would not set the XC bit is when the XS bit
6006 * is set and we are sending our 2nd or greater command on
6009 /* Always open the exchange */
6010 bf_set(wqe_xc
, &wqe
->fcp_iread
.wqe_com
, 0);
6012 wqe
->words
[10] &= 0xffff0000; /* zero out ebde count */
6013 bf_set(lpfc_wqe_gen_pu
, &wqe
->generic
, iocbq
->iocb
.ulpPU
);
6015 case CMD_FCP_ICMND64_CR
:
6016 /* Always open the exchange */
6017 bf_set(wqe_xc
, &wqe
->fcp_iread
.wqe_com
, 0);
6020 wqe
->words
[10] &= 0xffff0000; /* zero out ebde count */
6021 bf_set(lpfc_wqe_gen_pu
, &wqe
->generic
, 0);
6023 case CMD_GEN_REQUEST64_CR
:
6024 /* word3 command length is described as byte offset to the
6025 * rsp_data. Would always be 16, sizeof(struct sli4_sge)
6030 wqe
->gen_req
.command_len
= xmit_len
;
6031 /* Word4 parameter copied in the memcpy */
6032 /* Word5 [rctl, type, df_ctl, la] copied in memcpy */
6033 /* word6 context tag copied in memcpy */
6034 if (iocbq
->iocb
.ulpCt_h
|| iocbq
->iocb
.ulpCt_l
) {
6035 ct
= ((iocbq
->iocb
.ulpCt_h
<< 1) | iocbq
->iocb
.ulpCt_l
);
6036 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
6037 "2015 Invalid CT %x command 0x%x\n",
6038 ct
, iocbq
->iocb
.ulpCommand
);
6041 bf_set(lpfc_wqe_gen_ct
, &wqe
->generic
, 0);
6042 bf_set(wqe_tmo
, &wqe
->gen_req
.wqe_com
,
6043 iocbq
->iocb
.ulpTimeout
);
6045 bf_set(lpfc_wqe_gen_pu
, &wqe
->generic
, iocbq
->iocb
.ulpPU
);
6046 command_type
= OTHER_COMMAND
;
6048 case CMD_XMIT_ELS_RSP64_CX
:
6049 /* words0-2 BDE memcpy */
6050 /* word3 iocb=iotag32 wqe=rsvd */
6052 /* word4 iocb=did wge=rsvd. */
6054 /* word5 iocb=rsvd wge=did */
6055 bf_set(wqe_els_did
, &wqe
->xmit_els_rsp
.wqe_dest
,
6056 iocbq
->iocb
.un
.elsreq64
.remoteID
);
6058 bf_set(lpfc_wqe_gen_ct
, &wqe
->generic
,
6059 ((iocbq
->iocb
.ulpCt_h
<< 1) | iocbq
->iocb
.ulpCt_l
));
6061 bf_set(lpfc_wqe_gen_pu
, &wqe
->generic
, iocbq
->iocb
.ulpPU
);
6062 bf_set(wqe_rcvoxid
, &wqe
->generic
, iocbq
->iocb
.ulpContext
);
6063 if (!iocbq
->iocb
.ulpCt_h
&& iocbq
->iocb
.ulpCt_l
)
6064 bf_set(lpfc_wqe_gen_context
, &wqe
->generic
,
6065 iocbq
->vport
->vpi
+ phba
->vpi_base
);
6066 command_type
= OTHER_COMMAND
;
6068 case CMD_CLOSE_XRI_CN
:
6069 case CMD_ABORT_XRI_CN
:
6070 case CMD_ABORT_XRI_CX
:
6071 /* words 0-2 memcpy should be 0 rserved */
6072 /* port will send abts */
6073 if (iocbq
->iocb
.ulpCommand
== CMD_CLOSE_XRI_CN
)
6075 * The link is down so the fw does not need to send abts
6078 bf_set(abort_cmd_ia
, &wqe
->abort_cmd
, 1);
6080 bf_set(abort_cmd_ia
, &wqe
->abort_cmd
, 0);
6081 bf_set(abort_cmd_criteria
, &wqe
->abort_cmd
, T_XRI_TAG
);
6083 bf_set(lpfc_wqe_gen_ct
, &wqe
->generic
,
6084 ((iocbq
->iocb
.ulpCt_h
<< 1) | iocbq
->iocb
.ulpCt_l
));
6085 abort_tag
= iocbq
->iocb
.un
.acxri
.abortIoTag
;
6087 * The abort handler will send us CMD_ABORT_XRI_CN or
6088 * CMD_CLOSE_XRI_CN and the fw only accepts CMD_ABORT_XRI_CX
6090 bf_set(lpfc_wqe_gen_command
, &wqe
->generic
, CMD_ABORT_XRI_CX
);
6091 cmnd
= CMD_ABORT_XRI_CX
;
6092 command_type
= OTHER_COMMAND
;
6095 case CMD_XMIT_BLS_RSP64_CX
:
6096 /* As BLS ABTS-ACC WQE is very different from other WQEs,
6097 * we re-construct this WQE here based on information in
6098 * iocbq from scratch.
6100 memset(wqe
, 0, sizeof(union lpfc_wqe
));
6101 /* OX_ID is invariable to who sent ABTS to CT exchange */
6102 bf_set(xmit_bls_rsp64_oxid
, &wqe
->xmit_bls_rsp
,
6103 bf_get(lpfc_abts_oxid
, &iocbq
->iocb
.un
.bls_acc
));
6104 if (bf_get(lpfc_abts_orig
, &iocbq
->iocb
.un
.bls_acc
) ==
6105 LPFC_ABTS_UNSOL_INT
) {
6106 /* ABTS sent by initiator to CT exchange, the
6107 * RX_ID field will be filled with the newly
6108 * allocated responder XRI.
6110 bf_set(xmit_bls_rsp64_rxid
, &wqe
->xmit_bls_rsp
,
6111 iocbq
->sli4_xritag
);
6113 /* ABTS sent by responder to CT exchange, the
6114 * RX_ID field will be filled with the responder
6117 bf_set(xmit_bls_rsp64_rxid
, &wqe
->xmit_bls_rsp
,
6118 bf_get(lpfc_abts_rxid
, &iocbq
->iocb
.un
.bls_acc
));
6120 bf_set(xmit_bls_rsp64_seqcnthi
, &wqe
->xmit_bls_rsp
, 0xffff);
6121 bf_set(wqe_xmit_bls_pt
, &wqe
->xmit_bls_rsp
.wqe_dest
, 0x1);
6122 bf_set(wqe_ctxt_tag
, &wqe
->xmit_bls_rsp
.wqe_com
,
6123 iocbq
->iocb
.ulpContext
);
6124 /* Overwrite the pre-set comnd type with OTHER_COMMAND */
6125 command_type
= OTHER_COMMAND
;
6127 case CMD_XRI_ABORTED_CX
:
6128 case CMD_CREATE_XRI_CR
: /* Do we expect to use this? */
6129 /* words0-2 are all 0's no bde */
6130 /* word3 and word4 are rsvrd */
6133 /* word5 iocb=rsvd wge=did */
6134 /* There is no remote port id in the IOCB? */
6135 /* Let this fall through and fail */
6136 case CMD_IOCB_FCP_IBIDIR64_CR
: /* bidirectional xfer */
6137 case CMD_FCP_TSEND64_CX
: /* Target mode send xfer-ready */
6138 case CMD_FCP_TRSP64_CX
: /* Target mode rcv */
6139 case CMD_FCP_AUTO_TRSP_CX
: /* Auto target rsp */
6141 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
6142 "2014 Invalid command 0x%x\n",
6143 iocbq
->iocb
.ulpCommand
);
6148 bf_set(lpfc_wqe_gen_xri
, &wqe
->generic
, xritag
);
6149 bf_set(lpfc_wqe_gen_request_tag
, &wqe
->generic
, iocbq
->iotag
);
6150 wqe
->generic
.abort_tag
= abort_tag
;
6151 bf_set(lpfc_wqe_gen_cmd_type
, &wqe
->generic
, command_type
);
6152 bf_set(lpfc_wqe_gen_command
, &wqe
->generic
, cmnd
);
6153 bf_set(lpfc_wqe_gen_class
, &wqe
->generic
, iocbq
->iocb
.ulpClass
);
6154 bf_set(lpfc_wqe_gen_cq_id
, &wqe
->generic
, LPFC_WQE_CQ_ID_DEFAULT
);
6160 * __lpfc_sli_issue_iocb_s4 - SLI4 device lockless ver of lpfc_sli_issue_iocb
6161 * @phba: Pointer to HBA context object.
6162 * @ring_number: SLI ring number to issue iocb on.
6163 * @piocb: Pointer to command iocb.
6164 * @flag: Flag indicating if this command can be put into txq.
6166 * __lpfc_sli_issue_iocb_s4 is used by other functions in the driver to issue
6167 * an iocb command to an HBA with SLI-4 interface spec.
6169 * This function is called with hbalock held. The function will return success
6170 * after it successfully submit the iocb to firmware or after adding to the
6174 __lpfc_sli_issue_iocb_s4(struct lpfc_hba
*phba
, uint32_t ring_number
,
6175 struct lpfc_iocbq
*piocb
, uint32_t flag
)
6177 struct lpfc_sglq
*sglq
;
6180 struct lpfc_sli_ring
*pring
= &phba
->sli
.ring
[ring_number
];
6182 if (piocb
->sli4_xritag
== NO_XRI
) {
6183 if (piocb
->iocb
.ulpCommand
== CMD_ABORT_XRI_CN
||
6184 piocb
->iocb
.ulpCommand
== CMD_CLOSE_XRI_CN
)
6187 sglq
= __lpfc_sli_get_sglq(phba
);
6190 piocb
->sli4_xritag
= sglq
->sli4_xritag
;
6192 } else if (piocb
->iocb_flag
& LPFC_IO_FCP
) {
6193 sglq
= NULL
; /* These IO's already have an XRI and
6197 /* This is a continuation of a commandi,(CX) so this
6198 * sglq is on the active list
6200 sglq
= __lpfc_get_active_sglq(phba
, piocb
->sli4_xritag
);
6206 xritag
= lpfc_sli4_bpl2sgl(phba
, piocb
, sglq
);
6207 if (xritag
!= sglq
->sli4_xritag
)
6211 if (lpfc_sli4_iocb2wqe(phba
, piocb
, &wqe
))
6214 if ((piocb
->iocb_flag
& LPFC_IO_FCP
) ||
6215 (piocb
->iocb_flag
& LPFC_USE_FCPWQIDX
)) {
6217 * For FCP command IOCB, get a new WQ index to distribute
6218 * WQE across the WQsr. On the other hand, for abort IOCB,
6219 * it carries the same WQ index to the original command
6222 if (piocb
->iocb_flag
& LPFC_IO_FCP
)
6223 piocb
->fcp_wqidx
= lpfc_sli4_scmd_to_wqidx_distr(phba
);
6224 if (lpfc_sli4_wq_put(phba
->sli4_hba
.fcp_wq
[piocb
->fcp_wqidx
],
6228 if (lpfc_sli4_wq_put(phba
->sli4_hba
.els_wq
, &wqe
))
6231 lpfc_sli_ringtxcmpl_put(phba
, pring
, piocb
);
6237 * __lpfc_sli_issue_iocb - Wrapper func of lockless version for issuing iocb
6239 * This routine wraps the actual lockless version for issusing IOCB function
6240 * pointer from the lpfc_hba struct.
6243 * IOCB_ERROR - Error
6244 * IOCB_SUCCESS - Success
6248 __lpfc_sli_issue_iocb(struct lpfc_hba
*phba
, uint32_t ring_number
,
6249 struct lpfc_iocbq
*piocb
, uint32_t flag
)
6251 return phba
->__lpfc_sli_issue_iocb(phba
, ring_number
, piocb
, flag
);
6255 * lpfc_sli_api_table_setup - Set up sli api fucntion jump table
6256 * @phba: The hba struct for which this call is being executed.
6257 * @dev_grp: The HBA PCI-Device group number.
6259 * This routine sets up the SLI interface API function jump table in @phba
6261 * Returns: 0 - success, -ENODEV - failure.
6264 lpfc_sli_api_table_setup(struct lpfc_hba
*phba
, uint8_t dev_grp
)
6268 case LPFC_PCI_DEV_LP
:
6269 phba
->__lpfc_sli_issue_iocb
= __lpfc_sli_issue_iocb_s3
;
6270 phba
->__lpfc_sli_release_iocbq
= __lpfc_sli_release_iocbq_s3
;
6272 case LPFC_PCI_DEV_OC
:
6273 phba
->__lpfc_sli_issue_iocb
= __lpfc_sli_issue_iocb_s4
;
6274 phba
->__lpfc_sli_release_iocbq
= __lpfc_sli_release_iocbq_s4
;
6277 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
6278 "1419 Invalid HBA PCI-device group: 0x%x\n",
6283 phba
->lpfc_get_iocb_from_iocbq
= lpfc_get_iocb_from_iocbq
;
6288 * lpfc_sli_issue_iocb - Wrapper function for __lpfc_sli_issue_iocb
6289 * @phba: Pointer to HBA context object.
6290 * @pring: Pointer to driver SLI ring object.
6291 * @piocb: Pointer to command iocb.
6292 * @flag: Flag indicating if this command can be put into txq.
6294 * lpfc_sli_issue_iocb is a wrapper around __lpfc_sli_issue_iocb
6295 * function. This function gets the hbalock and calls
6296 * __lpfc_sli_issue_iocb function and will return the error returned
6297 * by __lpfc_sli_issue_iocb function. This wrapper is used by
6298 * functions which do not hold hbalock.
6301 lpfc_sli_issue_iocb(struct lpfc_hba
*phba
, uint32_t ring_number
,
6302 struct lpfc_iocbq
*piocb
, uint32_t flag
)
6304 unsigned long iflags
;
6307 spin_lock_irqsave(&phba
->hbalock
, iflags
);
6308 rc
= __lpfc_sli_issue_iocb(phba
, ring_number
, piocb
, flag
);
6309 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
6315 * lpfc_extra_ring_setup - Extra ring setup function
6316 * @phba: Pointer to HBA context object.
6318 * This function is called while driver attaches with the
6319 * HBA to setup the extra ring. The extra ring is used
6320 * only when driver needs to support target mode functionality
6321 * or IP over FC functionalities.
6323 * This function is called with no lock held.
6326 lpfc_extra_ring_setup( struct lpfc_hba
*phba
)
6328 struct lpfc_sli
*psli
;
6329 struct lpfc_sli_ring
*pring
;
6333 /* Adjust cmd/rsp ring iocb entries more evenly */
6335 /* Take some away from the FCP ring */
6336 pring
= &psli
->ring
[psli
->fcp_ring
];
6337 pring
->numCiocb
-= SLI2_IOCB_CMD_R1XTRA_ENTRIES
;
6338 pring
->numRiocb
-= SLI2_IOCB_RSP_R1XTRA_ENTRIES
;
6339 pring
->numCiocb
-= SLI2_IOCB_CMD_R3XTRA_ENTRIES
;
6340 pring
->numRiocb
-= SLI2_IOCB_RSP_R3XTRA_ENTRIES
;
6342 /* and give them to the extra ring */
6343 pring
= &psli
->ring
[psli
->extra_ring
];
6345 pring
->numCiocb
+= SLI2_IOCB_CMD_R1XTRA_ENTRIES
;
6346 pring
->numRiocb
+= SLI2_IOCB_RSP_R1XTRA_ENTRIES
;
6347 pring
->numCiocb
+= SLI2_IOCB_CMD_R3XTRA_ENTRIES
;
6348 pring
->numRiocb
+= SLI2_IOCB_RSP_R3XTRA_ENTRIES
;
6350 /* Setup default profile for this ring */
6351 pring
->iotag_max
= 4096;
6352 pring
->num_mask
= 1;
6353 pring
->prt
[0].profile
= 0; /* Mask 0 */
6354 pring
->prt
[0].rctl
= phba
->cfg_multi_ring_rctl
;
6355 pring
->prt
[0].type
= phba
->cfg_multi_ring_type
;
6356 pring
->prt
[0].lpfc_sli_rcv_unsol_event
= NULL
;
6361 * lpfc_sli_async_event_handler - ASYNC iocb handler function
6362 * @phba: Pointer to HBA context object.
6363 * @pring: Pointer to driver SLI ring object.
6364 * @iocbq: Pointer to iocb object.
6366 * This function is called by the slow ring event handler
6367 * function when there is an ASYNC event iocb in the ring.
6368 * This function is called with no lock held.
6369 * Currently this function handles only temperature related
6370 * ASYNC events. The function decodes the temperature sensor
6371 * event message and posts events for the management applications.
6374 lpfc_sli_async_event_handler(struct lpfc_hba
* phba
,
6375 struct lpfc_sli_ring
* pring
, struct lpfc_iocbq
* iocbq
)
6380 struct temp_event temp_event_data
;
6381 struct Scsi_Host
*shost
;
6384 icmd
= &iocbq
->iocb
;
6385 evt_code
= icmd
->un
.asyncstat
.evt_code
;
6386 temp
= icmd
->ulpContext
;
6388 if ((evt_code
!= ASYNC_TEMP_WARN
) &&
6389 (evt_code
!= ASYNC_TEMP_SAFE
)) {
6390 iocb_w
= (uint32_t *) icmd
;
6391 lpfc_printf_log(phba
,
6394 "0346 Ring %d handler: unexpected ASYNC_STATUS"
6396 "W0 0x%08x W1 0x%08x W2 0x%08x W3 0x%08x\n"
6397 "W4 0x%08x W5 0x%08x W6 0x%08x W7 0x%08x\n"
6398 "W8 0x%08x W9 0x%08x W10 0x%08x W11 0x%08x\n"
6399 "W12 0x%08x W13 0x%08x W14 0x%08x W15 0x%08x\n",
6401 icmd
->un
.asyncstat
.evt_code
,
6402 iocb_w
[0], iocb_w
[1], iocb_w
[2], iocb_w
[3],
6403 iocb_w
[4], iocb_w
[5], iocb_w
[6], iocb_w
[7],
6404 iocb_w
[8], iocb_w
[9], iocb_w
[10], iocb_w
[11],
6405 iocb_w
[12], iocb_w
[13], iocb_w
[14], iocb_w
[15]);
6409 temp_event_data
.data
= (uint32_t)temp
;
6410 temp_event_data
.event_type
= FC_REG_TEMPERATURE_EVENT
;
6411 if (evt_code
== ASYNC_TEMP_WARN
) {
6412 temp_event_data
.event_code
= LPFC_THRESHOLD_TEMP
;
6413 lpfc_printf_log(phba
,
6416 "0347 Adapter is very hot, please take "
6417 "corrective action. temperature : %d Celsius\n",
6420 if (evt_code
== ASYNC_TEMP_SAFE
) {
6421 temp_event_data
.event_code
= LPFC_NORMAL_TEMP
;
6422 lpfc_printf_log(phba
,
6425 "0340 Adapter temperature is OK now. "
6426 "temperature : %d Celsius\n",
6430 /* Send temperature change event to applications */
6431 shost
= lpfc_shost_from_vport(phba
->pport
);
6432 fc_host_post_vendor_event(shost
, fc_get_event_number(),
6433 sizeof(temp_event_data
), (char *) &temp_event_data
,
6440 * lpfc_sli_setup - SLI ring setup function
6441 * @phba: Pointer to HBA context object.
6443 * lpfc_sli_setup sets up rings of the SLI interface with
6444 * number of iocbs per ring and iotags. This function is
6445 * called while driver attach to the HBA and before the
6446 * interrupts are enabled. So there is no need for locking.
6448 * This function always returns 0.
6451 lpfc_sli_setup(struct lpfc_hba
*phba
)
6453 int i
, totiocbsize
= 0;
6454 struct lpfc_sli
*psli
= &phba
->sli
;
6455 struct lpfc_sli_ring
*pring
;
6457 psli
->num_rings
= MAX_CONFIGURED_RINGS
;
6459 psli
->fcp_ring
= LPFC_FCP_RING
;
6460 psli
->next_ring
= LPFC_FCP_NEXT_RING
;
6461 psli
->extra_ring
= LPFC_EXTRA_RING
;
6463 psli
->iocbq_lookup
= NULL
;
6464 psli
->iocbq_lookup_len
= 0;
6465 psli
->last_iotag
= 0;
6467 for (i
= 0; i
< psli
->num_rings
; i
++) {
6468 pring
= &psli
->ring
[i
];
6470 case LPFC_FCP_RING
: /* ring 0 - FCP */
6471 /* numCiocb and numRiocb are used in config_port */
6472 pring
->numCiocb
= SLI2_IOCB_CMD_R0_ENTRIES
;
6473 pring
->numRiocb
= SLI2_IOCB_RSP_R0_ENTRIES
;
6474 pring
->numCiocb
+= SLI2_IOCB_CMD_R1XTRA_ENTRIES
;
6475 pring
->numRiocb
+= SLI2_IOCB_RSP_R1XTRA_ENTRIES
;
6476 pring
->numCiocb
+= SLI2_IOCB_CMD_R3XTRA_ENTRIES
;
6477 pring
->numRiocb
+= SLI2_IOCB_RSP_R3XTRA_ENTRIES
;
6478 pring
->sizeCiocb
= (phba
->sli_rev
== 3) ?
6479 SLI3_IOCB_CMD_SIZE
:
6481 pring
->sizeRiocb
= (phba
->sli_rev
== 3) ?
6482 SLI3_IOCB_RSP_SIZE
:
6484 pring
->iotag_ctr
= 0;
6486 (phba
->cfg_hba_queue_depth
* 2);
6487 pring
->fast_iotag
= pring
->iotag_max
;
6488 pring
->num_mask
= 0;
6490 case LPFC_EXTRA_RING
: /* ring 1 - EXTRA */
6491 /* numCiocb and numRiocb are used in config_port */
6492 pring
->numCiocb
= SLI2_IOCB_CMD_R1_ENTRIES
;
6493 pring
->numRiocb
= SLI2_IOCB_RSP_R1_ENTRIES
;
6494 pring
->sizeCiocb
= (phba
->sli_rev
== 3) ?
6495 SLI3_IOCB_CMD_SIZE
:
6497 pring
->sizeRiocb
= (phba
->sli_rev
== 3) ?
6498 SLI3_IOCB_RSP_SIZE
:
6500 pring
->iotag_max
= phba
->cfg_hba_queue_depth
;
6501 pring
->num_mask
= 0;
6503 case LPFC_ELS_RING
: /* ring 2 - ELS / CT */
6504 /* numCiocb and numRiocb are used in config_port */
6505 pring
->numCiocb
= SLI2_IOCB_CMD_R2_ENTRIES
;
6506 pring
->numRiocb
= SLI2_IOCB_RSP_R2_ENTRIES
;
6507 pring
->sizeCiocb
= (phba
->sli_rev
== 3) ?
6508 SLI3_IOCB_CMD_SIZE
:
6510 pring
->sizeRiocb
= (phba
->sli_rev
== 3) ?
6511 SLI3_IOCB_RSP_SIZE
:
6513 pring
->fast_iotag
= 0;
6514 pring
->iotag_ctr
= 0;
6515 pring
->iotag_max
= 4096;
6516 pring
->lpfc_sli_rcv_async_status
=
6517 lpfc_sli_async_event_handler
;
6518 pring
->num_mask
= LPFC_MAX_RING_MASK
;
6519 pring
->prt
[0].profile
= 0; /* Mask 0 */
6520 pring
->prt
[0].rctl
= FC_RCTL_ELS_REQ
;
6521 pring
->prt
[0].type
= FC_TYPE_ELS
;
6522 pring
->prt
[0].lpfc_sli_rcv_unsol_event
=
6523 lpfc_els_unsol_event
;
6524 pring
->prt
[1].profile
= 0; /* Mask 1 */
6525 pring
->prt
[1].rctl
= FC_RCTL_ELS_REP
;
6526 pring
->prt
[1].type
= FC_TYPE_ELS
;
6527 pring
->prt
[1].lpfc_sli_rcv_unsol_event
=
6528 lpfc_els_unsol_event
;
6529 pring
->prt
[2].profile
= 0; /* Mask 2 */
6530 /* NameServer Inquiry */
6531 pring
->prt
[2].rctl
= FC_RCTL_DD_UNSOL_CTL
;
6533 pring
->prt
[2].type
= FC_TYPE_CT
;
6534 pring
->prt
[2].lpfc_sli_rcv_unsol_event
=
6535 lpfc_ct_unsol_event
;
6536 pring
->prt
[3].profile
= 0; /* Mask 3 */
6537 /* NameServer response */
6538 pring
->prt
[3].rctl
= FC_RCTL_DD_SOL_CTL
;
6540 pring
->prt
[3].type
= FC_TYPE_CT
;
6541 pring
->prt
[3].lpfc_sli_rcv_unsol_event
=
6542 lpfc_ct_unsol_event
;
6543 /* abort unsolicited sequence */
6544 pring
->prt
[4].profile
= 0; /* Mask 4 */
6545 pring
->prt
[4].rctl
= FC_RCTL_BA_ABTS
;
6546 pring
->prt
[4].type
= FC_TYPE_BLS
;
6547 pring
->prt
[4].lpfc_sli_rcv_unsol_event
=
6548 lpfc_sli4_ct_abort_unsol_event
;
6551 totiocbsize
+= (pring
->numCiocb
* pring
->sizeCiocb
) +
6552 (pring
->numRiocb
* pring
->sizeRiocb
);
6554 if (totiocbsize
> MAX_SLIM_IOCB_SIZE
) {
6555 /* Too many cmd / rsp ring entries in SLI2 SLIM */
6556 printk(KERN_ERR
"%d:0462 Too many cmd / rsp ring entries in "
6557 "SLI2 SLIM Data: x%x x%lx\n",
6558 phba
->brd_no
, totiocbsize
,
6559 (unsigned long) MAX_SLIM_IOCB_SIZE
);
6561 if (phba
->cfg_multi_ring_support
== 2)
6562 lpfc_extra_ring_setup(phba
);
6568 * lpfc_sli_queue_setup - Queue initialization function
6569 * @phba: Pointer to HBA context object.
6571 * lpfc_sli_queue_setup sets up mailbox queues and iocb queues for each
6572 * ring. This function also initializes ring indices of each ring.
6573 * This function is called during the initialization of the SLI
6574 * interface of an HBA.
6575 * This function is called with no lock held and always returns
6579 lpfc_sli_queue_setup(struct lpfc_hba
*phba
)
6581 struct lpfc_sli
*psli
;
6582 struct lpfc_sli_ring
*pring
;
6586 spin_lock_irq(&phba
->hbalock
);
6587 INIT_LIST_HEAD(&psli
->mboxq
);
6588 INIT_LIST_HEAD(&psli
->mboxq_cmpl
);
6589 /* Initialize list headers for txq and txcmplq as double linked lists */
6590 for (i
= 0; i
< psli
->num_rings
; i
++) {
6591 pring
= &psli
->ring
[i
];
6593 pring
->next_cmdidx
= 0;
6594 pring
->local_getidx
= 0;
6596 INIT_LIST_HEAD(&pring
->txq
);
6597 INIT_LIST_HEAD(&pring
->txcmplq
);
6598 INIT_LIST_HEAD(&pring
->iocb_continueq
);
6599 INIT_LIST_HEAD(&pring
->iocb_continue_saveq
);
6600 INIT_LIST_HEAD(&pring
->postbufq
);
6602 spin_unlock_irq(&phba
->hbalock
);
6607 * lpfc_sli_mbox_sys_flush - Flush mailbox command sub-system
6608 * @phba: Pointer to HBA context object.
6610 * This routine flushes the mailbox command subsystem. It will unconditionally
6611 * flush all the mailbox commands in the three possible stages in the mailbox
6612 * command sub-system: pending mailbox command queue; the outstanding mailbox
6613 * command; and completed mailbox command queue. It is caller's responsibility
6614 * to make sure that the driver is in the proper state to flush the mailbox
6615 * command sub-system. Namely, the posting of mailbox commands into the
6616 * pending mailbox command queue from the various clients must be stopped;
6617 * either the HBA is in a state that it will never works on the outstanding
6618 * mailbox command (such as in EEH or ERATT conditions) or the outstanding
6619 * mailbox command has been completed.
6622 lpfc_sli_mbox_sys_flush(struct lpfc_hba
*phba
)
6624 LIST_HEAD(completions
);
6625 struct lpfc_sli
*psli
= &phba
->sli
;
6627 unsigned long iflag
;
6629 /* Flush all the mailbox commands in the mbox system */
6630 spin_lock_irqsave(&phba
->hbalock
, iflag
);
6631 /* The pending mailbox command queue */
6632 list_splice_init(&phba
->sli
.mboxq
, &completions
);
6633 /* The outstanding active mailbox command */
6634 if (psli
->mbox_active
) {
6635 list_add_tail(&psli
->mbox_active
->list
, &completions
);
6636 psli
->mbox_active
= NULL
;
6637 psli
->sli_flag
&= ~LPFC_SLI_MBOX_ACTIVE
;
6639 /* The completed mailbox command queue */
6640 list_splice_init(&phba
->sli
.mboxq_cmpl
, &completions
);
6641 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
6643 /* Return all flushed mailbox commands with MBX_NOT_FINISHED status */
6644 while (!list_empty(&completions
)) {
6645 list_remove_head(&completions
, pmb
, LPFC_MBOXQ_t
, list
);
6646 pmb
->u
.mb
.mbxStatus
= MBX_NOT_FINISHED
;
6648 pmb
->mbox_cmpl(phba
, pmb
);
6653 * lpfc_sli_host_down - Vport cleanup function
6654 * @vport: Pointer to virtual port object.
6656 * lpfc_sli_host_down is called to clean up the resources
6657 * associated with a vport before destroying virtual
6658 * port data structures.
6659 * This function does following operations:
6660 * - Free discovery resources associated with this virtual
6662 * - Free iocbs associated with this virtual port in
6664 * - Send abort for all iocb commands associated with this
6667 * This function is called with no lock held and always returns 1.
6670 lpfc_sli_host_down(struct lpfc_vport
*vport
)
6672 LIST_HEAD(completions
);
6673 struct lpfc_hba
*phba
= vport
->phba
;
6674 struct lpfc_sli
*psli
= &phba
->sli
;
6675 struct lpfc_sli_ring
*pring
;
6676 struct lpfc_iocbq
*iocb
, *next_iocb
;
6678 unsigned long flags
= 0;
6679 uint16_t prev_pring_flag
;
6681 lpfc_cleanup_discovery_resources(vport
);
6683 spin_lock_irqsave(&phba
->hbalock
, flags
);
6684 for (i
= 0; i
< psli
->num_rings
; i
++) {
6685 pring
= &psli
->ring
[i
];
6686 prev_pring_flag
= pring
->flag
;
6687 /* Only slow rings */
6688 if (pring
->ringno
== LPFC_ELS_RING
) {
6689 pring
->flag
|= LPFC_DEFERRED_RING_EVENT
;
6690 /* Set the lpfc data pending flag */
6691 set_bit(LPFC_DATA_READY
, &phba
->data_flags
);
6694 * Error everything on the txq since these iocbs have not been
6695 * given to the FW yet.
6697 list_for_each_entry_safe(iocb
, next_iocb
, &pring
->txq
, list
) {
6698 if (iocb
->vport
!= vport
)
6700 list_move_tail(&iocb
->list
, &completions
);
6704 /* Next issue ABTS for everything on the txcmplq */
6705 list_for_each_entry_safe(iocb
, next_iocb
, &pring
->txcmplq
,
6707 if (iocb
->vport
!= vport
)
6709 lpfc_sli_issue_abort_iotag(phba
, pring
, iocb
);
6712 pring
->flag
= prev_pring_flag
;
6715 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
6717 /* Cancel all the IOCBs from the completions list */
6718 lpfc_sli_cancel_iocbs(phba
, &completions
, IOSTAT_LOCAL_REJECT
,
6724 * lpfc_sli_hba_down - Resource cleanup function for the HBA
6725 * @phba: Pointer to HBA context object.
6727 * This function cleans up all iocb, buffers, mailbox commands
6728 * while shutting down the HBA. This function is called with no
6729 * lock held and always returns 1.
6730 * This function does the following to cleanup driver resources:
6731 * - Free discovery resources for each virtual port
6732 * - Cleanup any pending fabric iocbs
6733 * - Iterate through the iocb txq and free each entry
6735 * - Free up any buffer posted to the HBA
6736 * - Free mailbox commands in the mailbox queue.
6739 lpfc_sli_hba_down(struct lpfc_hba
*phba
)
6741 LIST_HEAD(completions
);
6742 struct lpfc_sli
*psli
= &phba
->sli
;
6743 struct lpfc_sli_ring
*pring
;
6744 struct lpfc_dmabuf
*buf_ptr
;
6745 unsigned long flags
= 0;
6748 /* Shutdown the mailbox command sub-system */
6749 lpfc_sli_mbox_sys_shutdown(phba
);
6751 lpfc_hba_down_prep(phba
);
6753 lpfc_fabric_abort_hba(phba
);
6755 spin_lock_irqsave(&phba
->hbalock
, flags
);
6756 for (i
= 0; i
< psli
->num_rings
; i
++) {
6757 pring
= &psli
->ring
[i
];
6758 /* Only slow rings */
6759 if (pring
->ringno
== LPFC_ELS_RING
) {
6760 pring
->flag
|= LPFC_DEFERRED_RING_EVENT
;
6761 /* Set the lpfc data pending flag */
6762 set_bit(LPFC_DATA_READY
, &phba
->data_flags
);
6766 * Error everything on the txq since these iocbs have not been
6767 * given to the FW yet.
6769 list_splice_init(&pring
->txq
, &completions
);
6773 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
6775 /* Cancel all the IOCBs from the completions list */
6776 lpfc_sli_cancel_iocbs(phba
, &completions
, IOSTAT_LOCAL_REJECT
,
6779 spin_lock_irqsave(&phba
->hbalock
, flags
);
6780 list_splice_init(&phba
->elsbuf
, &completions
);
6781 phba
->elsbuf_cnt
= 0;
6782 phba
->elsbuf_prev_cnt
= 0;
6783 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
6785 while (!list_empty(&completions
)) {
6786 list_remove_head(&completions
, buf_ptr
,
6787 struct lpfc_dmabuf
, list
);
6788 lpfc_mbuf_free(phba
, buf_ptr
->virt
, buf_ptr
->phys
);
6792 /* Return any active mbox cmds */
6793 del_timer_sync(&psli
->mbox_tmo
);
6795 spin_lock_irqsave(&phba
->pport
->work_port_lock
, flags
);
6796 phba
->pport
->work_port_events
&= ~WORKER_MBOX_TMO
;
6797 spin_unlock_irqrestore(&phba
->pport
->work_port_lock
, flags
);
6803 * lpfc_sli4_hba_down - PCI function resource cleanup for the SLI4 HBA
6804 * @phba: Pointer to HBA context object.
6806 * This function cleans up all queues, iocb, buffers, mailbox commands while
6807 * shutting down the SLI4 HBA FCoE function. This function is called with no
6808 * lock held and always returns 1.
6810 * This function does the following to cleanup driver FCoE function resources:
6811 * - Free discovery resources for each virtual port
6812 * - Cleanup any pending fabric iocbs
6813 * - Iterate through the iocb txq and free each entry in the list.
6814 * - Free up any buffer posted to the HBA.
6815 * - Clean up all the queue entries: WQ, RQ, MQ, EQ, CQ, etc.
6816 * - Free mailbox commands in the mailbox queue.
6819 lpfc_sli4_hba_down(struct lpfc_hba
*phba
)
6821 /* Stop the SLI4 device port */
6822 lpfc_stop_port(phba
);
6824 /* Tear down the queues in the HBA */
6825 lpfc_sli4_queue_unset(phba
);
6827 /* unregister default FCFI from the HBA */
6828 lpfc_sli4_fcfi_unreg(phba
, phba
->fcf
.fcfi
);
6834 * lpfc_sli_pcimem_bcopy - SLI memory copy function
6835 * @srcp: Source memory pointer.
6836 * @destp: Destination memory pointer.
6837 * @cnt: Number of words required to be copied.
6839 * This function is used for copying data between driver memory
6840 * and the SLI memory. This function also changes the endianness
6841 * of each word if native endianness is different from SLI
6842 * endianness. This function can be called with or without
6846 lpfc_sli_pcimem_bcopy(void *srcp
, void *destp
, uint32_t cnt
)
6848 uint32_t *src
= srcp
;
6849 uint32_t *dest
= destp
;
6853 for (i
= 0; i
< (int)cnt
; i
+= sizeof (uint32_t)) {
6855 ldata
= le32_to_cpu(ldata
);
6864 * lpfc_sli_bemem_bcopy - SLI memory copy function
6865 * @srcp: Source memory pointer.
6866 * @destp: Destination memory pointer.
6867 * @cnt: Number of words required to be copied.
6869 * This function is used for copying data between a data structure
6870 * with big endian representation to local endianness.
6871 * This function can be called with or without lock.
6874 lpfc_sli_bemem_bcopy(void *srcp
, void *destp
, uint32_t cnt
)
6876 uint32_t *src
= srcp
;
6877 uint32_t *dest
= destp
;
6881 for (i
= 0; i
< (int)cnt
; i
+= sizeof(uint32_t)) {
6883 ldata
= be32_to_cpu(ldata
);
6891 * lpfc_sli_ringpostbuf_put - Function to add a buffer to postbufq
6892 * @phba: Pointer to HBA context object.
6893 * @pring: Pointer to driver SLI ring object.
6894 * @mp: Pointer to driver buffer object.
6896 * This function is called with no lock held.
6897 * It always return zero after adding the buffer to the postbufq
6901 lpfc_sli_ringpostbuf_put(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
,
6902 struct lpfc_dmabuf
*mp
)
6904 /* Stick struct lpfc_dmabuf at end of postbufq so driver can look it up
6906 spin_lock_irq(&phba
->hbalock
);
6907 list_add_tail(&mp
->list
, &pring
->postbufq
);
6908 pring
->postbufq_cnt
++;
6909 spin_unlock_irq(&phba
->hbalock
);
6914 * lpfc_sli_get_buffer_tag - allocates a tag for a CMD_QUE_XRI64_CX buffer
6915 * @phba: Pointer to HBA context object.
6917 * When HBQ is enabled, buffers are searched based on tags. This function
6918 * allocates a tag for buffer posted using CMD_QUE_XRI64_CX iocb. The
6919 * tag is bit wise or-ed with QUE_BUFTAG_BIT to make sure that the tag
6920 * does not conflict with tags of buffer posted for unsolicited events.
6921 * The function returns the allocated tag. The function is called with
6925 lpfc_sli_get_buffer_tag(struct lpfc_hba
*phba
)
6927 spin_lock_irq(&phba
->hbalock
);
6928 phba
->buffer_tag_count
++;
6930 * Always set the QUE_BUFTAG_BIT to distiguish between
6931 * a tag assigned by HBQ.
6933 phba
->buffer_tag_count
|= QUE_BUFTAG_BIT
;
6934 spin_unlock_irq(&phba
->hbalock
);
6935 return phba
->buffer_tag_count
;
6939 * lpfc_sli_ring_taggedbuf_get - find HBQ buffer associated with given tag
6940 * @phba: Pointer to HBA context object.
6941 * @pring: Pointer to driver SLI ring object.
6944 * Buffers posted using CMD_QUE_XRI64_CX iocb are in pring->postbufq
6945 * list. After HBA DMA data to these buffers, CMD_IOCB_RET_XRI64_CX
6946 * iocb is posted to the response ring with the tag of the buffer.
6947 * This function searches the pring->postbufq list using the tag
6948 * to find buffer associated with CMD_IOCB_RET_XRI64_CX
6949 * iocb. If the buffer is found then lpfc_dmabuf object of the
6950 * buffer is returned to the caller else NULL is returned.
6951 * This function is called with no lock held.
6953 struct lpfc_dmabuf
*
6954 lpfc_sli_ring_taggedbuf_get(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
,
6957 struct lpfc_dmabuf
*mp
, *next_mp
;
6958 struct list_head
*slp
= &pring
->postbufq
;
6960 /* Search postbufq, from the begining, looking for a match on tag */
6961 spin_lock_irq(&phba
->hbalock
);
6962 list_for_each_entry_safe(mp
, next_mp
, &pring
->postbufq
, list
) {
6963 if (mp
->buffer_tag
== tag
) {
6964 list_del_init(&mp
->list
);
6965 pring
->postbufq_cnt
--;
6966 spin_unlock_irq(&phba
->hbalock
);
6971 spin_unlock_irq(&phba
->hbalock
);
6972 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
6973 "0402 Cannot find virtual addr for buffer tag on "
6974 "ring %d Data x%lx x%p x%p x%x\n",
6975 pring
->ringno
, (unsigned long) tag
,
6976 slp
->next
, slp
->prev
, pring
->postbufq_cnt
);
6982 * lpfc_sli_ringpostbuf_get - search buffers for unsolicited CT and ELS events
6983 * @phba: Pointer to HBA context object.
6984 * @pring: Pointer to driver SLI ring object.
6985 * @phys: DMA address of the buffer.
6987 * This function searches the buffer list using the dma_address
6988 * of unsolicited event to find the driver's lpfc_dmabuf object
6989 * corresponding to the dma_address. The function returns the
6990 * lpfc_dmabuf object if a buffer is found else it returns NULL.
6991 * This function is called by the ct and els unsolicited event
6992 * handlers to get the buffer associated with the unsolicited
6995 * This function is called with no lock held.
6997 struct lpfc_dmabuf
*
6998 lpfc_sli_ringpostbuf_get(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
,
7001 struct lpfc_dmabuf
*mp
, *next_mp
;
7002 struct list_head
*slp
= &pring
->postbufq
;
7004 /* Search postbufq, from the begining, looking for a match on phys */
7005 spin_lock_irq(&phba
->hbalock
);
7006 list_for_each_entry_safe(mp
, next_mp
, &pring
->postbufq
, list
) {
7007 if (mp
->phys
== phys
) {
7008 list_del_init(&mp
->list
);
7009 pring
->postbufq_cnt
--;
7010 spin_unlock_irq(&phba
->hbalock
);
7015 spin_unlock_irq(&phba
->hbalock
);
7016 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7017 "0410 Cannot find virtual addr for mapped buf on "
7018 "ring %d Data x%llx x%p x%p x%x\n",
7019 pring
->ringno
, (unsigned long long)phys
,
7020 slp
->next
, slp
->prev
, pring
->postbufq_cnt
);
7025 * lpfc_sli_abort_els_cmpl - Completion handler for the els abort iocbs
7026 * @phba: Pointer to HBA context object.
7027 * @cmdiocb: Pointer to driver command iocb object.
7028 * @rspiocb: Pointer to driver response iocb object.
7030 * This function is the completion handler for the abort iocbs for
7031 * ELS commands. This function is called from the ELS ring event
7032 * handler with no lock held. This function frees memory resources
7033 * associated with the abort iocb.
7036 lpfc_sli_abort_els_cmpl(struct lpfc_hba
*phba
, struct lpfc_iocbq
*cmdiocb
,
7037 struct lpfc_iocbq
*rspiocb
)
7039 IOCB_t
*irsp
= &rspiocb
->iocb
;
7040 uint16_t abort_iotag
, abort_context
;
7041 struct lpfc_iocbq
*abort_iocb
;
7042 struct lpfc_sli_ring
*pring
= &phba
->sli
.ring
[LPFC_ELS_RING
];
7046 if (irsp
->ulpStatus
) {
7047 abort_context
= cmdiocb
->iocb
.un
.acxri
.abortContextTag
;
7048 abort_iotag
= cmdiocb
->iocb
.un
.acxri
.abortIoTag
;
7050 spin_lock_irq(&phba
->hbalock
);
7051 if (phba
->sli_rev
< LPFC_SLI_REV4
) {
7052 if (abort_iotag
!= 0 &&
7053 abort_iotag
<= phba
->sli
.last_iotag
)
7055 phba
->sli
.iocbq_lookup
[abort_iotag
];
7057 /* For sli4 the abort_tag is the XRI,
7058 * so the abort routine puts the iotag of the iocb
7059 * being aborted in the context field of the abort
7062 abort_iocb
= phba
->sli
.iocbq_lookup
[abort_context
];
7064 lpfc_printf_log(phba
, KERN_INFO
, LOG_ELS
| LOG_SLI
,
7065 "0327 Cannot abort els iocb %p "
7066 "with tag %x context %x, abort status %x, "
7068 abort_iocb
, abort_iotag
, abort_context
,
7069 irsp
->ulpStatus
, irsp
->un
.ulpWord
[4]);
7072 * If the iocb is not found in Firmware queue the iocb
7073 * might have completed already. Do not free it again.
7075 if (irsp
->ulpStatus
== IOSTAT_LOCAL_REJECT
) {
7076 if (irsp
->un
.ulpWord
[4] != IOERR_NO_XRI
) {
7077 spin_unlock_irq(&phba
->hbalock
);
7078 lpfc_sli_release_iocbq(phba
, cmdiocb
);
7081 /* For SLI4 the ulpContext field for abort IOCB
7082 * holds the iotag of the IOCB being aborted so
7083 * the local abort_context needs to be reset to
7084 * match the aborted IOCBs ulpContext.
7086 if (abort_iocb
&& phba
->sli_rev
== LPFC_SLI_REV4
)
7087 abort_context
= abort_iocb
->iocb
.ulpContext
;
7090 * make sure we have the right iocbq before taking it
7091 * off the txcmplq and try to call completion routine.
7094 abort_iocb
->iocb
.ulpContext
!= abort_context
||
7095 (abort_iocb
->iocb_flag
& LPFC_DRIVER_ABORTED
) == 0)
7096 spin_unlock_irq(&phba
->hbalock
);
7097 else if (phba
->sli_rev
< LPFC_SLI_REV4
) {
7099 * leave the SLI4 aborted command on the txcmplq
7100 * list and the command complete WCQE's XB bit
7101 * will tell whether the SGL (XRI) can be released
7102 * immediately or to the aborted SGL list for the
7103 * following abort XRI from the HBA.
7105 list_del_init(&abort_iocb
->list
);
7106 pring
->txcmplq_cnt
--;
7107 spin_unlock_irq(&phba
->hbalock
);
7109 /* Firmware could still be in progress of DMAing
7110 * payload, so don't free data buffer till after
7113 spin_lock_irq(&phba
->hbalock
);
7114 abort_iocb
->iocb_flag
|= LPFC_DELAY_MEM_FREE
;
7115 abort_iocb
->iocb_flag
&= ~LPFC_DRIVER_ABORTED
;
7116 spin_unlock_irq(&phba
->hbalock
);
7118 abort_iocb
->iocb
.ulpStatus
= IOSTAT_LOCAL_REJECT
;
7119 abort_iocb
->iocb
.un
.ulpWord
[4] = IOERR_ABORT_REQUESTED
;
7120 (abort_iocb
->iocb_cmpl
)(phba
, abort_iocb
, abort_iocb
);
7124 lpfc_sli_release_iocbq(phba
, cmdiocb
);
7129 * lpfc_ignore_els_cmpl - Completion handler for aborted ELS command
7130 * @phba: Pointer to HBA context object.
7131 * @cmdiocb: Pointer to driver command iocb object.
7132 * @rspiocb: Pointer to driver response iocb object.
7134 * The function is called from SLI ring event handler with no
7135 * lock held. This function is the completion handler for ELS commands
7136 * which are aborted. The function frees memory resources used for
7137 * the aborted ELS commands.
7140 lpfc_ignore_els_cmpl(struct lpfc_hba
*phba
, struct lpfc_iocbq
*cmdiocb
,
7141 struct lpfc_iocbq
*rspiocb
)
7143 IOCB_t
*irsp
= &rspiocb
->iocb
;
7145 /* ELS cmd tag <ulpIoTag> completes */
7146 lpfc_printf_log(phba
, KERN_INFO
, LOG_ELS
,
7147 "0139 Ignoring ELS cmd tag x%x completion Data: "
7149 irsp
->ulpIoTag
, irsp
->ulpStatus
,
7150 irsp
->un
.ulpWord
[4], irsp
->ulpTimeout
);
7151 if (cmdiocb
->iocb
.ulpCommand
== CMD_GEN_REQUEST64_CR
)
7152 lpfc_ct_free_iocb(phba
, cmdiocb
);
7154 lpfc_els_free_iocb(phba
, cmdiocb
);
7159 * lpfc_sli_issue_abort_iotag - Abort function for a command iocb
7160 * @phba: Pointer to HBA context object.
7161 * @pring: Pointer to driver SLI ring object.
7162 * @cmdiocb: Pointer to driver command iocb object.
7164 * This function issues an abort iocb for the provided command
7165 * iocb. This function is called with hbalock held.
7166 * The function returns 0 when it fails due to memory allocation
7167 * failure or when the command iocb is an abort request.
7170 lpfc_sli_issue_abort_iotag(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
,
7171 struct lpfc_iocbq
*cmdiocb
)
7173 struct lpfc_vport
*vport
= cmdiocb
->vport
;
7174 struct lpfc_iocbq
*abtsiocbp
;
7175 IOCB_t
*icmd
= NULL
;
7176 IOCB_t
*iabt
= NULL
;
7177 int retval
= IOCB_ERROR
;
7180 * There are certain command types we don't want to abort. And we
7181 * don't want to abort commands that are already in the process of
7184 icmd
= &cmdiocb
->iocb
;
7185 if (icmd
->ulpCommand
== CMD_ABORT_XRI_CN
||
7186 icmd
->ulpCommand
== CMD_CLOSE_XRI_CN
||
7187 (cmdiocb
->iocb_flag
& LPFC_DRIVER_ABORTED
) != 0)
7190 /* If we're unloading, don't abort iocb on the ELS ring, but change the
7191 * callback so that nothing happens when it finishes.
7193 if ((vport
->load_flag
& FC_UNLOADING
) &&
7194 (pring
->ringno
== LPFC_ELS_RING
)) {
7195 if (cmdiocb
->iocb_flag
& LPFC_IO_FABRIC
)
7196 cmdiocb
->fabric_iocb_cmpl
= lpfc_ignore_els_cmpl
;
7198 cmdiocb
->iocb_cmpl
= lpfc_ignore_els_cmpl
;
7199 goto abort_iotag_exit
;
7202 /* issue ABTS for this IOCB based on iotag */
7203 abtsiocbp
= __lpfc_sli_get_iocbq(phba
);
7204 if (abtsiocbp
== NULL
)
7207 /* This signals the response to set the correct status
7208 * before calling the completion handler
7210 cmdiocb
->iocb_flag
|= LPFC_DRIVER_ABORTED
;
7212 iabt
= &abtsiocbp
->iocb
;
7213 iabt
->un
.acxri
.abortType
= ABORT_TYPE_ABTS
;
7214 iabt
->un
.acxri
.abortContextTag
= icmd
->ulpContext
;
7215 if (phba
->sli_rev
== LPFC_SLI_REV4
) {
7216 iabt
->un
.acxri
.abortIoTag
= cmdiocb
->sli4_xritag
;
7217 iabt
->un
.acxri
.abortContextTag
= cmdiocb
->iotag
;
7220 iabt
->un
.acxri
.abortIoTag
= icmd
->ulpIoTag
;
7222 iabt
->ulpClass
= icmd
->ulpClass
;
7224 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
7225 abtsiocbp
->fcp_wqidx
= cmdiocb
->fcp_wqidx
;
7226 if (cmdiocb
->iocb_flag
& LPFC_IO_FCP
)
7227 abtsiocbp
->iocb_flag
|= LPFC_USE_FCPWQIDX
;
7229 if (phba
->link_state
>= LPFC_LINK_UP
)
7230 iabt
->ulpCommand
= CMD_ABORT_XRI_CN
;
7232 iabt
->ulpCommand
= CMD_CLOSE_XRI_CN
;
7234 abtsiocbp
->iocb_cmpl
= lpfc_sli_abort_els_cmpl
;
7236 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_SLI
,
7237 "0339 Abort xri x%x, original iotag x%x, "
7238 "abort cmd iotag x%x\n",
7239 iabt
->un
.acxri
.abortContextTag
,
7240 iabt
->un
.acxri
.abortIoTag
, abtsiocbp
->iotag
);
7241 retval
= __lpfc_sli_issue_iocb(phba
, pring
->ringno
, abtsiocbp
, 0);
7244 __lpfc_sli_release_iocbq(phba
, abtsiocbp
);
7247 * Caller to this routine should check for IOCB_ERROR
7248 * and handle it properly. This routine no longer removes
7249 * iocb off txcmplq and call compl in case of IOCB_ERROR.
7255 * lpfc_sli_validate_fcp_iocb - find commands associated with a vport or LUN
7256 * @iocbq: Pointer to driver iocb object.
7257 * @vport: Pointer to driver virtual port object.
7258 * @tgt_id: SCSI ID of the target.
7259 * @lun_id: LUN ID of the scsi device.
7260 * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST
7262 * This function acts as an iocb filter for functions which abort or count
7263 * all FCP iocbs pending on a lun/SCSI target/SCSI host. It will return
7264 * 0 if the filtering criteria is met for the given iocb and will return
7265 * 1 if the filtering criteria is not met.
7266 * If ctx_cmd == LPFC_CTX_LUN, the function returns 0 only if the
7267 * given iocb is for the SCSI device specified by vport, tgt_id and
7269 * If ctx_cmd == LPFC_CTX_TGT, the function returns 0 only if the
7270 * given iocb is for the SCSI target specified by vport and tgt_id
7272 * If ctx_cmd == LPFC_CTX_HOST, the function returns 0 only if the
7273 * given iocb is for the SCSI host associated with the given vport.
7274 * This function is called with no locks held.
7277 lpfc_sli_validate_fcp_iocb(struct lpfc_iocbq
*iocbq
, struct lpfc_vport
*vport
,
7278 uint16_t tgt_id
, uint64_t lun_id
,
7279 lpfc_ctx_cmd ctx_cmd
)
7281 struct lpfc_scsi_buf
*lpfc_cmd
;
7284 if (!(iocbq
->iocb_flag
& LPFC_IO_FCP
))
7287 if (iocbq
->vport
!= vport
)
7290 lpfc_cmd
= container_of(iocbq
, struct lpfc_scsi_buf
, cur_iocbq
);
7292 if (lpfc_cmd
->pCmd
== NULL
)
7297 if ((lpfc_cmd
->rdata
->pnode
) &&
7298 (lpfc_cmd
->rdata
->pnode
->nlp_sid
== tgt_id
) &&
7299 (scsilun_to_int(&lpfc_cmd
->fcp_cmnd
->fcp_lun
) == lun_id
))
7303 if ((lpfc_cmd
->rdata
->pnode
) &&
7304 (lpfc_cmd
->rdata
->pnode
->nlp_sid
== tgt_id
))
7311 printk(KERN_ERR
"%s: Unknown context cmd type, value %d\n",
7320 * lpfc_sli_sum_iocb - Function to count the number of FCP iocbs pending
7321 * @vport: Pointer to virtual port.
7322 * @tgt_id: SCSI ID of the target.
7323 * @lun_id: LUN ID of the scsi device.
7324 * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
7326 * This function returns number of FCP commands pending for the vport.
7327 * When ctx_cmd == LPFC_CTX_LUN, the function returns number of FCP
7328 * commands pending on the vport associated with SCSI device specified
7329 * by tgt_id and lun_id parameters.
7330 * When ctx_cmd == LPFC_CTX_TGT, the function returns number of FCP
7331 * commands pending on the vport associated with SCSI target specified
7332 * by tgt_id parameter.
7333 * When ctx_cmd == LPFC_CTX_HOST, the function returns number of FCP
7334 * commands pending on the vport.
7335 * This function returns the number of iocbs which satisfy the filter.
7336 * This function is called without any lock held.
7339 lpfc_sli_sum_iocb(struct lpfc_vport
*vport
, uint16_t tgt_id
, uint64_t lun_id
,
7340 lpfc_ctx_cmd ctx_cmd
)
7342 struct lpfc_hba
*phba
= vport
->phba
;
7343 struct lpfc_iocbq
*iocbq
;
7346 for (i
= 1, sum
= 0; i
<= phba
->sli
.last_iotag
; i
++) {
7347 iocbq
= phba
->sli
.iocbq_lookup
[i
];
7349 if (lpfc_sli_validate_fcp_iocb (iocbq
, vport
, tgt_id
, lun_id
,
7358 * lpfc_sli_abort_fcp_cmpl - Completion handler function for aborted FCP IOCBs
7359 * @phba: Pointer to HBA context object
7360 * @cmdiocb: Pointer to command iocb object.
7361 * @rspiocb: Pointer to response iocb object.
7363 * This function is called when an aborted FCP iocb completes. This
7364 * function is called by the ring event handler with no lock held.
7365 * This function frees the iocb.
7368 lpfc_sli_abort_fcp_cmpl(struct lpfc_hba
*phba
, struct lpfc_iocbq
*cmdiocb
,
7369 struct lpfc_iocbq
*rspiocb
)
7371 lpfc_sli_release_iocbq(phba
, cmdiocb
);
7376 * lpfc_sli_abort_iocb - issue abort for all commands on a host/target/LUN
7377 * @vport: Pointer to virtual port.
7378 * @pring: Pointer to driver SLI ring object.
7379 * @tgt_id: SCSI ID of the target.
7380 * @lun_id: LUN ID of the scsi device.
7381 * @abort_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
7383 * This function sends an abort command for every SCSI command
7384 * associated with the given virtual port pending on the ring
7385 * filtered by lpfc_sli_validate_fcp_iocb function.
7386 * When abort_cmd == LPFC_CTX_LUN, the function sends abort only to the
7387 * FCP iocbs associated with lun specified by tgt_id and lun_id
7389 * When abort_cmd == LPFC_CTX_TGT, the function sends abort only to the
7390 * FCP iocbs associated with SCSI target specified by tgt_id parameter.
7391 * When abort_cmd == LPFC_CTX_HOST, the function sends abort to all
7392 * FCP iocbs associated with virtual port.
7393 * This function returns number of iocbs it failed to abort.
7394 * This function is called with no locks held.
7397 lpfc_sli_abort_iocb(struct lpfc_vport
*vport
, struct lpfc_sli_ring
*pring
,
7398 uint16_t tgt_id
, uint64_t lun_id
, lpfc_ctx_cmd abort_cmd
)
7400 struct lpfc_hba
*phba
= vport
->phba
;
7401 struct lpfc_iocbq
*iocbq
;
7402 struct lpfc_iocbq
*abtsiocb
;
7404 int errcnt
= 0, ret_val
= 0;
7407 for (i
= 1; i
<= phba
->sli
.last_iotag
; i
++) {
7408 iocbq
= phba
->sli
.iocbq_lookup
[i
];
7410 if (lpfc_sli_validate_fcp_iocb(iocbq
, vport
, tgt_id
, lun_id
,
7414 /* issue ABTS for this IOCB based on iotag */
7415 abtsiocb
= lpfc_sli_get_iocbq(phba
);
7416 if (abtsiocb
== NULL
) {
7422 abtsiocb
->iocb
.un
.acxri
.abortType
= ABORT_TYPE_ABTS
;
7423 abtsiocb
->iocb
.un
.acxri
.abortContextTag
= cmd
->ulpContext
;
7424 if (phba
->sli_rev
== LPFC_SLI_REV4
)
7425 abtsiocb
->iocb
.un
.acxri
.abortIoTag
= iocbq
->sli4_xritag
;
7427 abtsiocb
->iocb
.un
.acxri
.abortIoTag
= cmd
->ulpIoTag
;
7428 abtsiocb
->iocb
.ulpLe
= 1;
7429 abtsiocb
->iocb
.ulpClass
= cmd
->ulpClass
;
7430 abtsiocb
->vport
= phba
->pport
;
7432 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
7433 abtsiocb
->fcp_wqidx
= iocbq
->fcp_wqidx
;
7434 if (iocbq
->iocb_flag
& LPFC_IO_FCP
)
7435 abtsiocb
->iocb_flag
|= LPFC_USE_FCPWQIDX
;
7437 if (lpfc_is_link_up(phba
))
7438 abtsiocb
->iocb
.ulpCommand
= CMD_ABORT_XRI_CN
;
7440 abtsiocb
->iocb
.ulpCommand
= CMD_CLOSE_XRI_CN
;
7442 /* Setup callback routine and issue the command. */
7443 abtsiocb
->iocb_cmpl
= lpfc_sli_abort_fcp_cmpl
;
7444 ret_val
= lpfc_sli_issue_iocb(phba
, pring
->ringno
,
7446 if (ret_val
== IOCB_ERROR
) {
7447 lpfc_sli_release_iocbq(phba
, abtsiocb
);
7457 * lpfc_sli_wake_iocb_wait - lpfc_sli_issue_iocb_wait's completion handler
7458 * @phba: Pointer to HBA context object.
7459 * @cmdiocbq: Pointer to command iocb.
7460 * @rspiocbq: Pointer to response iocb.
7462 * This function is the completion handler for iocbs issued using
7463 * lpfc_sli_issue_iocb_wait function. This function is called by the
7464 * ring event handler function without any lock held. This function
7465 * can be called from both worker thread context and interrupt
7466 * context. This function also can be called from other thread which
7467 * cleans up the SLI layer objects.
7468 * This function copy the contents of the response iocb to the
7469 * response iocb memory object provided by the caller of
7470 * lpfc_sli_issue_iocb_wait and then wakes up the thread which
7471 * sleeps for the iocb completion.
7474 lpfc_sli_wake_iocb_wait(struct lpfc_hba
*phba
,
7475 struct lpfc_iocbq
*cmdiocbq
,
7476 struct lpfc_iocbq
*rspiocbq
)
7478 wait_queue_head_t
*pdone_q
;
7479 unsigned long iflags
;
7480 struct lpfc_scsi_buf
*lpfc_cmd
;
7482 spin_lock_irqsave(&phba
->hbalock
, iflags
);
7483 cmdiocbq
->iocb_flag
|= LPFC_IO_WAKE
;
7484 if (cmdiocbq
->context2
&& rspiocbq
)
7485 memcpy(&((struct lpfc_iocbq
*)cmdiocbq
->context2
)->iocb
,
7486 &rspiocbq
->iocb
, sizeof(IOCB_t
));
7488 /* Set the exchange busy flag for task management commands */
7489 if ((cmdiocbq
->iocb_flag
& LPFC_IO_FCP
) &&
7490 !(cmdiocbq
->iocb_flag
& LPFC_IO_LIBDFC
)) {
7491 lpfc_cmd
= container_of(cmdiocbq
, struct lpfc_scsi_buf
,
7493 lpfc_cmd
->exch_busy
= rspiocbq
->iocb_flag
& LPFC_EXCHANGE_BUSY
;
7496 pdone_q
= cmdiocbq
->context_un
.wait_queue
;
7499 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
7504 * lpfc_chk_iocb_flg - Test IOCB flag with lock held.
7505 * @phba: Pointer to HBA context object..
7506 * @piocbq: Pointer to command iocb.
7507 * @flag: Flag to test.
7509 * This routine grabs the hbalock and then test the iocb_flag to
7510 * see if the passed in flag is set.
7513 * 0 if flag is not set.
7516 lpfc_chk_iocb_flg(struct lpfc_hba
*phba
,
7517 struct lpfc_iocbq
*piocbq
, uint32_t flag
)
7519 unsigned long iflags
;
7522 spin_lock_irqsave(&phba
->hbalock
, iflags
);
7523 ret
= piocbq
->iocb_flag
& flag
;
7524 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
7530 * lpfc_sli_issue_iocb_wait - Synchronous function to issue iocb commands
7531 * @phba: Pointer to HBA context object..
7532 * @pring: Pointer to sli ring.
7533 * @piocb: Pointer to command iocb.
7534 * @prspiocbq: Pointer to response iocb.
7535 * @timeout: Timeout in number of seconds.
7537 * This function issues the iocb to firmware and waits for the
7538 * iocb to complete. If the iocb command is not
7539 * completed within timeout seconds, it returns IOCB_TIMEDOUT.
7540 * Caller should not free the iocb resources if this function
7541 * returns IOCB_TIMEDOUT.
7542 * The function waits for the iocb completion using an
7543 * non-interruptible wait.
7544 * This function will sleep while waiting for iocb completion.
7545 * So, this function should not be called from any context which
7546 * does not allow sleeping. Due to the same reason, this function
7547 * cannot be called with interrupt disabled.
7548 * This function assumes that the iocb completions occur while
7549 * this function sleep. So, this function cannot be called from
7550 * the thread which process iocb completion for this ring.
7551 * This function clears the iocb_flag of the iocb object before
7552 * issuing the iocb and the iocb completion handler sets this
7553 * flag and wakes this thread when the iocb completes.
7554 * The contents of the response iocb will be copied to prspiocbq
7555 * by the completion handler when the command completes.
7556 * This function returns IOCB_SUCCESS when success.
7557 * This function is called with no lock held.
7560 lpfc_sli_issue_iocb_wait(struct lpfc_hba
*phba
,
7561 uint32_t ring_number
,
7562 struct lpfc_iocbq
*piocb
,
7563 struct lpfc_iocbq
*prspiocbq
,
7566 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q
);
7567 long timeleft
, timeout_req
= 0;
7568 int retval
= IOCB_SUCCESS
;
7572 * If the caller has provided a response iocbq buffer, then context2
7573 * is NULL or its an error.
7576 if (piocb
->context2
)
7578 piocb
->context2
= prspiocbq
;
7581 piocb
->iocb_cmpl
= lpfc_sli_wake_iocb_wait
;
7582 piocb
->context_un
.wait_queue
= &done_q
;
7583 piocb
->iocb_flag
&= ~LPFC_IO_WAKE
;
7585 if (phba
->cfg_poll
& DISABLE_FCP_RING_INT
) {
7586 creg_val
= readl(phba
->HCregaddr
);
7587 creg_val
|= (HC_R0INT_ENA
<< LPFC_FCP_RING
);
7588 writel(creg_val
, phba
->HCregaddr
);
7589 readl(phba
->HCregaddr
); /* flush */
7592 retval
= lpfc_sli_issue_iocb(phba
, ring_number
, piocb
, 0);
7593 if (retval
== IOCB_SUCCESS
) {
7594 timeout_req
= timeout
* HZ
;
7595 timeleft
= wait_event_timeout(done_q
,
7596 lpfc_chk_iocb_flg(phba
, piocb
, LPFC_IO_WAKE
),
7599 if (piocb
->iocb_flag
& LPFC_IO_WAKE
) {
7600 lpfc_printf_log(phba
, KERN_INFO
, LOG_SLI
,
7601 "0331 IOCB wake signaled\n");
7602 } else if (timeleft
== 0) {
7603 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
7604 "0338 IOCB wait timeout error - no "
7605 "wake response Data x%x\n", timeout
);
7606 retval
= IOCB_TIMEDOUT
;
7608 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
7609 "0330 IOCB wake NOT set, "
7611 timeout
, (timeleft
/ jiffies
));
7612 retval
= IOCB_TIMEDOUT
;
7615 lpfc_printf_log(phba
, KERN_INFO
, LOG_SLI
,
7616 "0332 IOCB wait issue failed, Data x%x\n",
7618 retval
= IOCB_ERROR
;
7621 if (phba
->cfg_poll
& DISABLE_FCP_RING_INT
) {
7622 creg_val
= readl(phba
->HCregaddr
);
7623 creg_val
&= ~(HC_R0INT_ENA
<< LPFC_FCP_RING
);
7624 writel(creg_val
, phba
->HCregaddr
);
7625 readl(phba
->HCregaddr
); /* flush */
7629 piocb
->context2
= NULL
;
7631 piocb
->context_un
.wait_queue
= NULL
;
7632 piocb
->iocb_cmpl
= NULL
;
7637 * lpfc_sli_issue_mbox_wait - Synchronous function to issue mailbox
7638 * @phba: Pointer to HBA context object.
7639 * @pmboxq: Pointer to driver mailbox object.
7640 * @timeout: Timeout in number of seconds.
7642 * This function issues the mailbox to firmware and waits for the
7643 * mailbox command to complete. If the mailbox command is not
7644 * completed within timeout seconds, it returns MBX_TIMEOUT.
7645 * The function waits for the mailbox completion using an
7646 * interruptible wait. If the thread is woken up due to a
7647 * signal, MBX_TIMEOUT error is returned to the caller. Caller
7648 * should not free the mailbox resources, if this function returns
7650 * This function will sleep while waiting for mailbox completion.
7651 * So, this function should not be called from any context which
7652 * does not allow sleeping. Due to the same reason, this function
7653 * cannot be called with interrupt disabled.
7654 * This function assumes that the mailbox completion occurs while
7655 * this function sleep. So, this function cannot be called from
7656 * the worker thread which processes mailbox completion.
7657 * This function is called in the context of HBA management
7659 * This function returns MBX_SUCCESS when successful.
7660 * This function is called with no lock held.
7663 lpfc_sli_issue_mbox_wait(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmboxq
,
7666 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q
);
7670 /* The caller must leave context1 empty. */
7671 if (pmboxq
->context1
)
7672 return MBX_NOT_FINISHED
;
7674 pmboxq
->mbox_flag
&= ~LPFC_MBX_WAKE
;
7675 /* setup wake call as IOCB callback */
7676 pmboxq
->mbox_cmpl
= lpfc_sli_wake_mbox_wait
;
7677 /* setup context field to pass wait_queue pointer to wake function */
7678 pmboxq
->context1
= &done_q
;
7680 /* now issue the command */
7681 retval
= lpfc_sli_issue_mbox(phba
, pmboxq
, MBX_NOWAIT
);
7683 if (retval
== MBX_BUSY
|| retval
== MBX_SUCCESS
) {
7684 wait_event_interruptible_timeout(done_q
,
7685 pmboxq
->mbox_flag
& LPFC_MBX_WAKE
,
7688 spin_lock_irqsave(&phba
->hbalock
, flag
);
7689 pmboxq
->context1
= NULL
;
7691 * if LPFC_MBX_WAKE flag is set the mailbox is completed
7692 * else do not free the resources.
7694 if (pmboxq
->mbox_flag
& LPFC_MBX_WAKE
)
7695 retval
= MBX_SUCCESS
;
7697 retval
= MBX_TIMEOUT
;
7698 pmboxq
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
7700 spin_unlock_irqrestore(&phba
->hbalock
, flag
);
7707 * lpfc_sli_mbox_sys_shutdown - shutdown mailbox command sub-system
7708 * @phba: Pointer to HBA context.
7710 * This function is called to shutdown the driver's mailbox sub-system.
7711 * It first marks the mailbox sub-system is in a block state to prevent
7712 * the asynchronous mailbox command from issued off the pending mailbox
7713 * command queue. If the mailbox command sub-system shutdown is due to
7714 * HBA error conditions such as EEH or ERATT, this routine shall invoke
7715 * the mailbox sub-system flush routine to forcefully bring down the
7716 * mailbox sub-system. Otherwise, if it is due to normal condition (such
7717 * as with offline or HBA function reset), this routine will wait for the
7718 * outstanding mailbox command to complete before invoking the mailbox
7719 * sub-system flush routine to gracefully bring down mailbox sub-system.
7722 lpfc_sli_mbox_sys_shutdown(struct lpfc_hba
*phba
)
7724 struct lpfc_sli
*psli
= &phba
->sli
;
7725 uint8_t actcmd
= MBX_HEARTBEAT
;
7726 unsigned long timeout
;
7728 spin_lock_irq(&phba
->hbalock
);
7729 psli
->sli_flag
|= LPFC_SLI_ASYNC_MBX_BLK
;
7730 spin_unlock_irq(&phba
->hbalock
);
7732 if (psli
->sli_flag
& LPFC_SLI_ACTIVE
) {
7733 spin_lock_irq(&phba
->hbalock
);
7734 if (phba
->sli
.mbox_active
)
7735 actcmd
= phba
->sli
.mbox_active
->u
.mb
.mbxCommand
;
7736 spin_unlock_irq(&phba
->hbalock
);
7737 /* Determine how long we might wait for the active mailbox
7738 * command to be gracefully completed by firmware.
7740 timeout
= msecs_to_jiffies(lpfc_mbox_tmo_val(phba
, actcmd
) *
7742 while (phba
->sli
.mbox_active
) {
7743 /* Check active mailbox complete status every 2ms */
7745 if (time_after(jiffies
, timeout
))
7746 /* Timeout, let the mailbox flush routine to
7747 * forcefully release active mailbox command
7752 lpfc_sli_mbox_sys_flush(phba
);
7756 * lpfc_sli_eratt_read - read sli-3 error attention events
7757 * @phba: Pointer to HBA context.
7759 * This function is called to read the SLI3 device error attention registers
7760 * for possible error attention events. The caller must hold the hostlock
7761 * with spin_lock_irq().
7763 * This fucntion returns 1 when there is Error Attention in the Host Attention
7764 * Register and returns 0 otherwise.
7767 lpfc_sli_eratt_read(struct lpfc_hba
*phba
)
7771 /* Read chip Host Attention (HA) register */
7772 ha_copy
= readl(phba
->HAregaddr
);
7773 if (ha_copy
& HA_ERATT
) {
7774 /* Read host status register to retrieve error event */
7775 lpfc_sli_read_hs(phba
);
7777 /* Check if there is a deferred error condition is active */
7778 if ((HS_FFER1
& phba
->work_hs
) &&
7779 ((HS_FFER2
| HS_FFER3
| HS_FFER4
| HS_FFER5
|
7780 HS_FFER6
| HS_FFER7
) & phba
->work_hs
)) {
7781 phba
->hba_flag
|= DEFER_ERATT
;
7782 /* Clear all interrupt enable conditions */
7783 writel(0, phba
->HCregaddr
);
7784 readl(phba
->HCregaddr
);
7787 /* Set the driver HA work bitmap */
7788 phba
->work_ha
|= HA_ERATT
;
7789 /* Indicate polling handles this ERATT */
7790 phba
->hba_flag
|= HBA_ERATT_HANDLED
;
7797 * lpfc_sli4_eratt_read - read sli-4 error attention events
7798 * @phba: Pointer to HBA context.
7800 * This function is called to read the SLI4 device error attention registers
7801 * for possible error attention events. The caller must hold the hostlock
7802 * with spin_lock_irq().
7804 * This fucntion returns 1 when there is Error Attention in the Host Attention
7805 * Register and returns 0 otherwise.
7808 lpfc_sli4_eratt_read(struct lpfc_hba
*phba
)
7810 uint32_t uerr_sta_hi
, uerr_sta_lo
;
7812 /* For now, use the SLI4 device internal unrecoverable error
7813 * registers for error attention. This can be changed later.
7815 uerr_sta_lo
= readl(phba
->sli4_hba
.UERRLOregaddr
);
7816 uerr_sta_hi
= readl(phba
->sli4_hba
.UERRHIregaddr
);
7817 if ((~phba
->sli4_hba
.ue_mask_lo
& uerr_sta_lo
) ||
7818 (~phba
->sli4_hba
.ue_mask_hi
& uerr_sta_hi
)) {
7819 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7820 "1423 HBA Unrecoverable error: "
7821 "uerr_lo_reg=0x%x, uerr_hi_reg=0x%x, "
7822 "ue_mask_lo_reg=0x%x, ue_mask_hi_reg=0x%x\n",
7823 uerr_sta_lo
, uerr_sta_hi
,
7824 phba
->sli4_hba
.ue_mask_lo
,
7825 phba
->sli4_hba
.ue_mask_hi
);
7826 phba
->work_status
[0] = uerr_sta_lo
;
7827 phba
->work_status
[1] = uerr_sta_hi
;
7828 /* Set the driver HA work bitmap */
7829 phba
->work_ha
|= HA_ERATT
;
7830 /* Indicate polling handles this ERATT */
7831 phba
->hba_flag
|= HBA_ERATT_HANDLED
;
7838 * lpfc_sli_check_eratt - check error attention events
7839 * @phba: Pointer to HBA context.
7841 * This function is called from timer soft interrupt context to check HBA's
7842 * error attention register bit for error attention events.
7844 * This fucntion returns 1 when there is Error Attention in the Host Attention
7845 * Register and returns 0 otherwise.
7848 lpfc_sli_check_eratt(struct lpfc_hba
*phba
)
7852 /* If somebody is waiting to handle an eratt, don't process it
7853 * here. The brdkill function will do this.
7855 if (phba
->link_flag
& LS_IGNORE_ERATT
)
7858 /* Check if interrupt handler handles this ERATT */
7859 spin_lock_irq(&phba
->hbalock
);
7860 if (phba
->hba_flag
& HBA_ERATT_HANDLED
) {
7861 /* Interrupt handler has handled ERATT */
7862 spin_unlock_irq(&phba
->hbalock
);
7867 * If there is deferred error attention, do not check for error
7870 if (unlikely(phba
->hba_flag
& DEFER_ERATT
)) {
7871 spin_unlock_irq(&phba
->hbalock
);
7875 /* If PCI channel is offline, don't process it */
7876 if (unlikely(pci_channel_offline(phba
->pcidev
))) {
7877 spin_unlock_irq(&phba
->hbalock
);
7881 switch (phba
->sli_rev
) {
7884 /* Read chip Host Attention (HA) register */
7885 ha_copy
= lpfc_sli_eratt_read(phba
);
7888 /* Read devcie Uncoverable Error (UERR) registers */
7889 ha_copy
= lpfc_sli4_eratt_read(phba
);
7892 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7893 "0299 Invalid SLI revision (%d)\n",
7898 spin_unlock_irq(&phba
->hbalock
);
7904 * lpfc_intr_state_check - Check device state for interrupt handling
7905 * @phba: Pointer to HBA context.
7907 * This inline routine checks whether a device or its PCI slot is in a state
7908 * that the interrupt should be handled.
7910 * This function returns 0 if the device or the PCI slot is in a state that
7911 * interrupt should be handled, otherwise -EIO.
7914 lpfc_intr_state_check(struct lpfc_hba
*phba
)
7916 /* If the pci channel is offline, ignore all the interrupts */
7917 if (unlikely(pci_channel_offline(phba
->pcidev
)))
7920 /* Update device level interrupt statistics */
7921 phba
->sli
.slistat
.sli_intr
++;
7923 /* Ignore all interrupts during initialization. */
7924 if (unlikely(phba
->link_state
< LPFC_LINK_DOWN
))
7931 * lpfc_sli_sp_intr_handler - Slow-path interrupt handler to SLI-3 device
7932 * @irq: Interrupt number.
7933 * @dev_id: The device context pointer.
7935 * This function is directly called from the PCI layer as an interrupt
7936 * service routine when device with SLI-3 interface spec is enabled with
7937 * MSI-X multi-message interrupt mode and there are slow-path events in
7938 * the HBA. However, when the device is enabled with either MSI or Pin-IRQ
7939 * interrupt mode, this function is called as part of the device-level
7940 * interrupt handler. When the PCI slot is in error recovery or the HBA
7941 * is undergoing initialization, the interrupt handler will not process
7942 * the interrupt. The link attention and ELS ring attention events are
7943 * handled by the worker thread. The interrupt handler signals the worker
7944 * thread and returns for these events. This function is called without
7945 * any lock held. It gets the hbalock to access and update SLI data
7948 * This function returns IRQ_HANDLED when interrupt is handled else it
7952 lpfc_sli_sp_intr_handler(int irq
, void *dev_id
)
7954 struct lpfc_hba
*phba
;
7955 uint32_t ha_copy
, hc_copy
;
7956 uint32_t work_ha_copy
;
7957 unsigned long status
;
7958 unsigned long iflag
;
7961 MAILBOX_t
*mbox
, *pmbox
;
7962 struct lpfc_vport
*vport
;
7963 struct lpfc_nodelist
*ndlp
;
7964 struct lpfc_dmabuf
*mp
;
7969 * Get the driver's phba structure from the dev_id and
7970 * assume the HBA is not interrupting.
7972 phba
= (struct lpfc_hba
*)dev_id
;
7974 if (unlikely(!phba
))
7978 * Stuff needs to be attented to when this function is invoked as an
7979 * individual interrupt handler in MSI-X multi-message interrupt mode
7981 if (phba
->intr_type
== MSIX
) {
7982 /* Check device state for handling interrupt */
7983 if (lpfc_intr_state_check(phba
))
7985 /* Need to read HA REG for slow-path events */
7986 spin_lock_irqsave(&phba
->hbalock
, iflag
);
7987 ha_copy
= readl(phba
->HAregaddr
);
7988 /* If somebody is waiting to handle an eratt don't process it
7989 * here. The brdkill function will do this.
7991 if (phba
->link_flag
& LS_IGNORE_ERATT
)
7992 ha_copy
&= ~HA_ERATT
;
7993 /* Check the need for handling ERATT in interrupt handler */
7994 if (ha_copy
& HA_ERATT
) {
7995 if (phba
->hba_flag
& HBA_ERATT_HANDLED
)
7996 /* ERATT polling has handled ERATT */
7997 ha_copy
&= ~HA_ERATT
;
7999 /* Indicate interrupt handler handles ERATT */
8000 phba
->hba_flag
|= HBA_ERATT_HANDLED
;
8004 * If there is deferred error attention, do not check for any
8007 if (unlikely(phba
->hba_flag
& DEFER_ERATT
)) {
8008 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
8012 /* Clear up only attention source related to slow-path */
8013 hc_copy
= readl(phba
->HCregaddr
);
8014 writel(hc_copy
& ~(HC_MBINT_ENA
| HC_R2INT_ENA
|
8015 HC_LAINT_ENA
| HC_ERINT_ENA
),
8017 writel((ha_copy
& (HA_MBATT
| HA_R2_CLR_MSK
)),
8019 writel(hc_copy
, phba
->HCregaddr
);
8020 readl(phba
->HAregaddr
); /* flush */
8021 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
8023 ha_copy
= phba
->ha_copy
;
8025 work_ha_copy
= ha_copy
& phba
->work_ha_mask
;
8028 if (work_ha_copy
& HA_LATT
) {
8029 if (phba
->sli
.sli_flag
& LPFC_PROCESS_LA
) {
8031 * Turn off Link Attention interrupts
8032 * until CLEAR_LA done
8034 spin_lock_irqsave(&phba
->hbalock
, iflag
);
8035 phba
->sli
.sli_flag
&= ~LPFC_PROCESS_LA
;
8036 control
= readl(phba
->HCregaddr
);
8037 control
&= ~HC_LAINT_ENA
;
8038 writel(control
, phba
->HCregaddr
);
8039 readl(phba
->HCregaddr
); /* flush */
8040 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
8043 work_ha_copy
&= ~HA_LATT
;
8046 if (work_ha_copy
& ~(HA_ERATT
| HA_MBATT
| HA_LATT
)) {
8048 * Turn off Slow Rings interrupts, LPFC_ELS_RING is
8049 * the only slow ring.
8051 status
= (work_ha_copy
&
8052 (HA_RXMASK
<< (4*LPFC_ELS_RING
)));
8053 status
>>= (4*LPFC_ELS_RING
);
8054 if (status
& HA_RXMASK
) {
8055 spin_lock_irqsave(&phba
->hbalock
, iflag
);
8056 control
= readl(phba
->HCregaddr
);
8058 lpfc_debugfs_slow_ring_trc(phba
,
8059 "ISR slow ring: ctl:x%x stat:x%x isrcnt:x%x",
8061 (uint32_t)phba
->sli
.slistat
.sli_intr
);
8063 if (control
& (HC_R0INT_ENA
<< LPFC_ELS_RING
)) {
8064 lpfc_debugfs_slow_ring_trc(phba
,
8066 "pwork:x%x hawork:x%x wait:x%x",
8067 phba
->work_ha
, work_ha_copy
,
8068 (uint32_t)((unsigned long)
8069 &phba
->work_waitq
));
8072 ~(HC_R0INT_ENA
<< LPFC_ELS_RING
);
8073 writel(control
, phba
->HCregaddr
);
8074 readl(phba
->HCregaddr
); /* flush */
8077 lpfc_debugfs_slow_ring_trc(phba
,
8078 "ISR slow ring: pwork:"
8079 "x%x hawork:x%x wait:x%x",
8080 phba
->work_ha
, work_ha_copy
,
8081 (uint32_t)((unsigned long)
8082 &phba
->work_waitq
));
8084 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
8087 spin_lock_irqsave(&phba
->hbalock
, iflag
);
8088 if (work_ha_copy
& HA_ERATT
) {
8089 lpfc_sli_read_hs(phba
);
8091 * Check if there is a deferred error condition
8094 if ((HS_FFER1
& phba
->work_hs
) &&
8095 ((HS_FFER2
| HS_FFER3
| HS_FFER4
| HS_FFER5
|
8096 HS_FFER6
| HS_FFER7
) & phba
->work_hs
)) {
8097 phba
->hba_flag
|= DEFER_ERATT
;
8098 /* Clear all interrupt enable conditions */
8099 writel(0, phba
->HCregaddr
);
8100 readl(phba
->HCregaddr
);
8104 if ((work_ha_copy
& HA_MBATT
) && (phba
->sli
.mbox_active
)) {
8105 pmb
= phba
->sli
.mbox_active
;
8110 /* First check out the status word */
8111 lpfc_sli_pcimem_bcopy(mbox
, pmbox
, sizeof(uint32_t));
8112 if (pmbox
->mbxOwner
!= OWN_HOST
) {
8113 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
8115 * Stray Mailbox Interrupt, mbxCommand <cmd>
8116 * mbxStatus <status>
8118 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
|
8120 "(%d):0304 Stray Mailbox "
8121 "Interrupt mbxCommand x%x "
8123 (vport
? vport
->vpi
: 0),
8126 /* clear mailbox attention bit */
8127 work_ha_copy
&= ~HA_MBATT
;
8129 phba
->sli
.mbox_active
= NULL
;
8130 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
8131 phba
->last_completion_time
= jiffies
;
8132 del_timer(&phba
->sli
.mbox_tmo
);
8133 if (pmb
->mbox_cmpl
) {
8134 lpfc_sli_pcimem_bcopy(mbox
, pmbox
,
8137 if (pmb
->mbox_flag
& LPFC_MBX_IMED_UNREG
) {
8138 pmb
->mbox_flag
&= ~LPFC_MBX_IMED_UNREG
;
8140 lpfc_debugfs_disc_trc(vport
,
8141 LPFC_DISC_TRC_MBOX_VPORT
,
8143 "status:x%x rpi:x%x",
8144 (uint32_t)pmbox
->mbxStatus
,
8145 pmbox
->un
.varWords
[0], 0);
8147 if (!pmbox
->mbxStatus
) {
8148 mp
= (struct lpfc_dmabuf
*)
8150 ndlp
= (struct lpfc_nodelist
*)
8153 /* Reg_LOGIN of dflt RPI was
8154 * successful. new lets get
8155 * rid of the RPI using the
8158 lpfc_unreg_login(phba
,
8160 pmbox
->un
.varWords
[0],
8163 lpfc_mbx_cmpl_dflt_rpi
;
8165 pmb
->context2
= ndlp
;
8167 rc
= lpfc_sli_issue_mbox(phba
,
8171 lpfc_printf_log(phba
,
8174 "0350 rc should have"
8176 if (rc
!= MBX_NOT_FINISHED
)
8177 goto send_current_mbox
;
8181 &phba
->pport
->work_port_lock
,
8183 phba
->pport
->work_port_events
&=
8185 spin_unlock_irqrestore(
8186 &phba
->pport
->work_port_lock
,
8188 lpfc_mbox_cmpl_put(phba
, pmb
);
8191 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
8193 if ((work_ha_copy
& HA_MBATT
) &&
8194 (phba
->sli
.mbox_active
== NULL
)) {
8196 /* Process next mailbox command if there is one */
8198 rc
= lpfc_sli_issue_mbox(phba
, NULL
,
8200 } while (rc
== MBX_NOT_FINISHED
);
8201 if (rc
!= MBX_SUCCESS
)
8202 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
|
8203 LOG_SLI
, "0349 rc should be "
8207 spin_lock_irqsave(&phba
->hbalock
, iflag
);
8208 phba
->work_ha
|= work_ha_copy
;
8209 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
8210 lpfc_worker_wake_up(phba
);
8214 } /* lpfc_sli_sp_intr_handler */
8217 * lpfc_sli_fp_intr_handler - Fast-path interrupt handler to SLI-3 device.
8218 * @irq: Interrupt number.
8219 * @dev_id: The device context pointer.
8221 * This function is directly called from the PCI layer as an interrupt
8222 * service routine when device with SLI-3 interface spec is enabled with
8223 * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
8224 * ring event in the HBA. However, when the device is enabled with either
8225 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
8226 * device-level interrupt handler. When the PCI slot is in error recovery
8227 * or the HBA is undergoing initialization, the interrupt handler will not
8228 * process the interrupt. The SCSI FCP fast-path ring event are handled in
8229 * the intrrupt context. This function is called without any lock held.
8230 * It gets the hbalock to access and update SLI data structures.
8232 * This function returns IRQ_HANDLED when interrupt is handled else it
8236 lpfc_sli_fp_intr_handler(int irq
, void *dev_id
)
8238 struct lpfc_hba
*phba
;
8240 unsigned long status
;
8241 unsigned long iflag
;
8243 /* Get the driver's phba structure from the dev_id and
8244 * assume the HBA is not interrupting.
8246 phba
= (struct lpfc_hba
*) dev_id
;
8248 if (unlikely(!phba
))
8252 * Stuff needs to be attented to when this function is invoked as an
8253 * individual interrupt handler in MSI-X multi-message interrupt mode
8255 if (phba
->intr_type
== MSIX
) {
8256 /* Check device state for handling interrupt */
8257 if (lpfc_intr_state_check(phba
))
8259 /* Need to read HA REG for FCP ring and other ring events */
8260 ha_copy
= readl(phba
->HAregaddr
);
8261 /* Clear up only attention source related to fast-path */
8262 spin_lock_irqsave(&phba
->hbalock
, iflag
);
8264 * If there is deferred error attention, do not check for
8267 if (unlikely(phba
->hba_flag
& DEFER_ERATT
)) {
8268 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
8271 writel((ha_copy
& (HA_R0_CLR_MSK
| HA_R1_CLR_MSK
)),
8273 readl(phba
->HAregaddr
); /* flush */
8274 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
8276 ha_copy
= phba
->ha_copy
;
8279 * Process all events on FCP ring. Take the optimized path for FCP IO.
8281 ha_copy
&= ~(phba
->work_ha_mask
);
8283 status
= (ha_copy
& (HA_RXMASK
<< (4*LPFC_FCP_RING
)));
8284 status
>>= (4*LPFC_FCP_RING
);
8285 if (status
& HA_RXMASK
)
8286 lpfc_sli_handle_fast_ring_event(phba
,
8287 &phba
->sli
.ring
[LPFC_FCP_RING
],
8290 if (phba
->cfg_multi_ring_support
== 2) {
8292 * Process all events on extra ring. Take the optimized path
8293 * for extra ring IO.
8295 status
= (ha_copy
& (HA_RXMASK
<< (4*LPFC_EXTRA_RING
)));
8296 status
>>= (4*LPFC_EXTRA_RING
);
8297 if (status
& HA_RXMASK
) {
8298 lpfc_sli_handle_fast_ring_event(phba
,
8299 &phba
->sli
.ring
[LPFC_EXTRA_RING
],
8304 } /* lpfc_sli_fp_intr_handler */
8307 * lpfc_sli_intr_handler - Device-level interrupt handler to SLI-3 device
8308 * @irq: Interrupt number.
8309 * @dev_id: The device context pointer.
8311 * This function is the HBA device-level interrupt handler to device with
8312 * SLI-3 interface spec, called from the PCI layer when either MSI or
8313 * Pin-IRQ interrupt mode is enabled and there is an event in the HBA which
8314 * requires driver attention. This function invokes the slow-path interrupt
8315 * attention handling function and fast-path interrupt attention handling
8316 * function in turn to process the relevant HBA attention events. This
8317 * function is called without any lock held. It gets the hbalock to access
8318 * and update SLI data structures.
8320 * This function returns IRQ_HANDLED when interrupt is handled, else it
8324 lpfc_sli_intr_handler(int irq
, void *dev_id
)
8326 struct lpfc_hba
*phba
;
8327 irqreturn_t sp_irq_rc
, fp_irq_rc
;
8328 unsigned long status1
, status2
;
8332 * Get the driver's phba structure from the dev_id and
8333 * assume the HBA is not interrupting.
8335 phba
= (struct lpfc_hba
*) dev_id
;
8337 if (unlikely(!phba
))
8340 /* Check device state for handling interrupt */
8341 if (lpfc_intr_state_check(phba
))
8344 spin_lock(&phba
->hbalock
);
8345 phba
->ha_copy
= readl(phba
->HAregaddr
);
8346 if (unlikely(!phba
->ha_copy
)) {
8347 spin_unlock(&phba
->hbalock
);
8349 } else if (phba
->ha_copy
& HA_ERATT
) {
8350 if (phba
->hba_flag
& HBA_ERATT_HANDLED
)
8351 /* ERATT polling has handled ERATT */
8352 phba
->ha_copy
&= ~HA_ERATT
;
8354 /* Indicate interrupt handler handles ERATT */
8355 phba
->hba_flag
|= HBA_ERATT_HANDLED
;
8359 * If there is deferred error attention, do not check for any interrupt.
8361 if (unlikely(phba
->hba_flag
& DEFER_ERATT
)) {
8362 spin_unlock_irq(&phba
->hbalock
);
8366 /* Clear attention sources except link and error attentions */
8367 hc_copy
= readl(phba
->HCregaddr
);
8368 writel(hc_copy
& ~(HC_MBINT_ENA
| HC_R0INT_ENA
| HC_R1INT_ENA
8369 | HC_R2INT_ENA
| HC_LAINT_ENA
| HC_ERINT_ENA
),
8371 writel((phba
->ha_copy
& ~(HA_LATT
| HA_ERATT
)), phba
->HAregaddr
);
8372 writel(hc_copy
, phba
->HCregaddr
);
8373 readl(phba
->HAregaddr
); /* flush */
8374 spin_unlock(&phba
->hbalock
);
8377 * Invokes slow-path host attention interrupt handling as appropriate.
8380 /* status of events with mailbox and link attention */
8381 status1
= phba
->ha_copy
& (HA_MBATT
| HA_LATT
| HA_ERATT
);
8383 /* status of events with ELS ring */
8384 status2
= (phba
->ha_copy
& (HA_RXMASK
<< (4*LPFC_ELS_RING
)));
8385 status2
>>= (4*LPFC_ELS_RING
);
8387 if (status1
|| (status2
& HA_RXMASK
))
8388 sp_irq_rc
= lpfc_sli_sp_intr_handler(irq
, dev_id
);
8390 sp_irq_rc
= IRQ_NONE
;
8393 * Invoke fast-path host attention interrupt handling as appropriate.
8396 /* status of events with FCP ring */
8397 status1
= (phba
->ha_copy
& (HA_RXMASK
<< (4*LPFC_FCP_RING
)));
8398 status1
>>= (4*LPFC_FCP_RING
);
8400 /* status of events with extra ring */
8401 if (phba
->cfg_multi_ring_support
== 2) {
8402 status2
= (phba
->ha_copy
& (HA_RXMASK
<< (4*LPFC_EXTRA_RING
)));
8403 status2
>>= (4*LPFC_EXTRA_RING
);
8407 if ((status1
& HA_RXMASK
) || (status2
& HA_RXMASK
))
8408 fp_irq_rc
= lpfc_sli_fp_intr_handler(irq
, dev_id
);
8410 fp_irq_rc
= IRQ_NONE
;
8412 /* Return device-level interrupt handling status */
8413 return (sp_irq_rc
== IRQ_HANDLED
) ? sp_irq_rc
: fp_irq_rc
;
8414 } /* lpfc_sli_intr_handler */
8417 * lpfc_sli4_fcp_xri_abort_event_proc - Process fcp xri abort event
8418 * @phba: pointer to lpfc hba data structure.
8420 * This routine is invoked by the worker thread to process all the pending
8421 * SLI4 FCP abort XRI events.
8423 void lpfc_sli4_fcp_xri_abort_event_proc(struct lpfc_hba
*phba
)
8425 struct lpfc_cq_event
*cq_event
;
8427 /* First, declare the fcp xri abort event has been handled */
8428 spin_lock_irq(&phba
->hbalock
);
8429 phba
->hba_flag
&= ~FCP_XRI_ABORT_EVENT
;
8430 spin_unlock_irq(&phba
->hbalock
);
8431 /* Now, handle all the fcp xri abort events */
8432 while (!list_empty(&phba
->sli4_hba
.sp_fcp_xri_aborted_work_queue
)) {
8433 /* Get the first event from the head of the event queue */
8434 spin_lock_irq(&phba
->hbalock
);
8435 list_remove_head(&phba
->sli4_hba
.sp_fcp_xri_aborted_work_queue
,
8436 cq_event
, struct lpfc_cq_event
, list
);
8437 spin_unlock_irq(&phba
->hbalock
);
8438 /* Notify aborted XRI for FCP work queue */
8439 lpfc_sli4_fcp_xri_aborted(phba
, &cq_event
->cqe
.wcqe_axri
);
8440 /* Free the event processed back to the free pool */
8441 lpfc_sli4_cq_event_release(phba
, cq_event
);
8446 * lpfc_sli4_els_xri_abort_event_proc - Process els xri abort event
8447 * @phba: pointer to lpfc hba data structure.
8449 * This routine is invoked by the worker thread to process all the pending
8450 * SLI4 els abort xri events.
8452 void lpfc_sli4_els_xri_abort_event_proc(struct lpfc_hba
*phba
)
8454 struct lpfc_cq_event
*cq_event
;
8456 /* First, declare the els xri abort event has been handled */
8457 spin_lock_irq(&phba
->hbalock
);
8458 phba
->hba_flag
&= ~ELS_XRI_ABORT_EVENT
;
8459 spin_unlock_irq(&phba
->hbalock
);
8460 /* Now, handle all the els xri abort events */
8461 while (!list_empty(&phba
->sli4_hba
.sp_els_xri_aborted_work_queue
)) {
8462 /* Get the first event from the head of the event queue */
8463 spin_lock_irq(&phba
->hbalock
);
8464 list_remove_head(&phba
->sli4_hba
.sp_els_xri_aborted_work_queue
,
8465 cq_event
, struct lpfc_cq_event
, list
);
8466 spin_unlock_irq(&phba
->hbalock
);
8467 /* Notify aborted XRI for ELS work queue */
8468 lpfc_sli4_els_xri_aborted(phba
, &cq_event
->cqe
.wcqe_axri
);
8469 /* Free the event processed back to the free pool */
8470 lpfc_sli4_cq_event_release(phba
, cq_event
);
8475 * lpfc_sli4_iocb_param_transfer - Transfer pIocbOut and cmpl status to pIocbIn
8476 * @phba: pointer to lpfc hba data structure
8477 * @pIocbIn: pointer to the rspiocbq
8478 * @pIocbOut: pointer to the cmdiocbq
8479 * @wcqe: pointer to the complete wcqe
8481 * This routine transfers the fields of a command iocbq to a response iocbq
8482 * by copying all the IOCB fields from command iocbq and transferring the
8483 * completion status information from the complete wcqe.
8486 lpfc_sli4_iocb_param_transfer(struct lpfc_hba
*phba
,
8487 struct lpfc_iocbq
*pIocbIn
,
8488 struct lpfc_iocbq
*pIocbOut
,
8489 struct lpfc_wcqe_complete
*wcqe
)
8491 unsigned long iflags
;
8492 size_t offset
= offsetof(struct lpfc_iocbq
, iocb
);
8494 memcpy((char *)pIocbIn
+ offset
, (char *)pIocbOut
+ offset
,
8495 sizeof(struct lpfc_iocbq
) - offset
);
8496 /* Map WCQE parameters into irspiocb parameters */
8497 pIocbIn
->iocb
.ulpStatus
= bf_get(lpfc_wcqe_c_status
, wcqe
);
8498 if (pIocbOut
->iocb_flag
& LPFC_IO_FCP
)
8499 if (pIocbIn
->iocb
.ulpStatus
== IOSTAT_FCP_RSP_ERROR
)
8500 pIocbIn
->iocb
.un
.fcpi
.fcpi_parm
=
8501 pIocbOut
->iocb
.un
.fcpi
.fcpi_parm
-
8502 wcqe
->total_data_placed
;
8504 pIocbIn
->iocb
.un
.ulpWord
[4] = wcqe
->parameter
;
8506 pIocbIn
->iocb
.un
.ulpWord
[4] = wcqe
->parameter
;
8507 pIocbIn
->iocb
.un
.genreq64
.bdl
.bdeSize
= wcqe
->total_data_placed
;
8510 /* Pick up HBA exchange busy condition */
8511 if (bf_get(lpfc_wcqe_c_xb
, wcqe
)) {
8512 spin_lock_irqsave(&phba
->hbalock
, iflags
);
8513 pIocbIn
->iocb_flag
|= LPFC_EXCHANGE_BUSY
;
8514 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
8519 * lpfc_sli4_els_wcqe_to_rspiocbq - Get response iocbq from els wcqe
8520 * @phba: Pointer to HBA context object.
8521 * @wcqe: Pointer to work-queue completion queue entry.
8523 * This routine handles an ELS work-queue completion event and construct
8524 * a pseudo response ELS IODBQ from the SLI4 ELS WCQE for the common
8525 * discovery engine to handle.
8527 * Return: Pointer to the receive IOCBQ, NULL otherwise.
8529 static struct lpfc_iocbq
*
8530 lpfc_sli4_els_wcqe_to_rspiocbq(struct lpfc_hba
*phba
,
8531 struct lpfc_iocbq
*irspiocbq
)
8533 struct lpfc_sli_ring
*pring
= &phba
->sli
.ring
[LPFC_ELS_RING
];
8534 struct lpfc_iocbq
*cmdiocbq
;
8535 struct lpfc_wcqe_complete
*wcqe
;
8536 unsigned long iflags
;
8538 wcqe
= &irspiocbq
->cq_event
.cqe
.wcqe_cmpl
;
8539 spin_lock_irqsave(&phba
->hbalock
, iflags
);
8540 pring
->stats
.iocb_event
++;
8541 /* Look up the ELS command IOCB and create pseudo response IOCB */
8542 cmdiocbq
= lpfc_sli_iocbq_lookup_by_tag(phba
, pring
,
8543 bf_get(lpfc_wcqe_c_request_tag
, wcqe
));
8544 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
8546 if (unlikely(!cmdiocbq
)) {
8547 lpfc_printf_log(phba
, KERN_WARNING
, LOG_SLI
,
8548 "0386 ELS complete with no corresponding "
8549 "cmdiocb: iotag (%d)\n",
8550 bf_get(lpfc_wcqe_c_request_tag
, wcqe
));
8551 lpfc_sli_release_iocbq(phba
, irspiocbq
);
8555 /* Fake the irspiocbq and copy necessary response information */
8556 lpfc_sli4_iocb_param_transfer(phba
, irspiocbq
, cmdiocbq
, wcqe
);
8562 * lpfc_sli4_sp_handle_async_event - Handle an asynchroous event
8563 * @phba: Pointer to HBA context object.
8564 * @cqe: Pointer to mailbox completion queue entry.
8566 * This routine process a mailbox completion queue entry with asynchrous
8569 * Return: true if work posted to worker thread, otherwise false.
8572 lpfc_sli4_sp_handle_async_event(struct lpfc_hba
*phba
, struct lpfc_mcqe
*mcqe
)
8574 struct lpfc_cq_event
*cq_event
;
8575 unsigned long iflags
;
8577 lpfc_printf_log(phba
, KERN_INFO
, LOG_SLI
,
8578 "0392 Async Event: word0:x%x, word1:x%x, "
8579 "word2:x%x, word3:x%x\n", mcqe
->word0
,
8580 mcqe
->mcqe_tag0
, mcqe
->mcqe_tag1
, mcqe
->trailer
);
8582 /* Allocate a new internal CQ_EVENT entry */
8583 cq_event
= lpfc_sli4_cq_event_alloc(phba
);
8585 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
8586 "0394 Failed to allocate CQ_EVENT entry\n");
8590 /* Move the CQE into an asynchronous event entry */
8591 memcpy(&cq_event
->cqe
, mcqe
, sizeof(struct lpfc_mcqe
));
8592 spin_lock_irqsave(&phba
->hbalock
, iflags
);
8593 list_add_tail(&cq_event
->list
, &phba
->sli4_hba
.sp_asynce_work_queue
);
8594 /* Set the async event flag */
8595 phba
->hba_flag
|= ASYNC_EVENT
;
8596 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
8602 * lpfc_sli4_sp_handle_mbox_event - Handle a mailbox completion event
8603 * @phba: Pointer to HBA context object.
8604 * @cqe: Pointer to mailbox completion queue entry.
8606 * This routine process a mailbox completion queue entry with mailbox
8609 * Return: true if work posted to worker thread, otherwise false.
8612 lpfc_sli4_sp_handle_mbox_event(struct lpfc_hba
*phba
, struct lpfc_mcqe
*mcqe
)
8614 uint32_t mcqe_status
;
8615 MAILBOX_t
*mbox
, *pmbox
;
8616 struct lpfc_mqe
*mqe
;
8617 struct lpfc_vport
*vport
;
8618 struct lpfc_nodelist
*ndlp
;
8619 struct lpfc_dmabuf
*mp
;
8620 unsigned long iflags
;
8622 bool workposted
= false;
8625 /* If not a mailbox complete MCQE, out by checking mailbox consume */
8626 if (!bf_get(lpfc_trailer_completed
, mcqe
))
8627 goto out_no_mqe_complete
;
8629 /* Get the reference to the active mbox command */
8630 spin_lock_irqsave(&phba
->hbalock
, iflags
);
8631 pmb
= phba
->sli
.mbox_active
;
8632 if (unlikely(!pmb
)) {
8633 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
,
8634 "1832 No pending MBOX command to handle\n");
8635 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
8636 goto out_no_mqe_complete
;
8638 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
8640 pmbox
= (MAILBOX_t
*)&pmb
->u
.mqe
;
8644 /* Reset heartbeat timer */
8645 phba
->last_completion_time
= jiffies
;
8646 del_timer(&phba
->sli
.mbox_tmo
);
8648 /* Move mbox data to caller's mailbox region, do endian swapping */
8649 if (pmb
->mbox_cmpl
&& mbox
)
8650 lpfc_sli_pcimem_bcopy(mbox
, mqe
, sizeof(struct lpfc_mqe
));
8651 /* Set the mailbox status with SLI4 range 0x4000 */
8652 mcqe_status
= bf_get(lpfc_mcqe_status
, mcqe
);
8653 if (mcqe_status
!= MB_CQE_STATUS_SUCCESS
)
8654 bf_set(lpfc_mqe_status
, mqe
,
8655 (LPFC_MBX_ERROR_RANGE
| mcqe_status
));
8657 if (pmb
->mbox_flag
& LPFC_MBX_IMED_UNREG
) {
8658 pmb
->mbox_flag
&= ~LPFC_MBX_IMED_UNREG
;
8659 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_MBOX_VPORT
,
8660 "MBOX dflt rpi: status:x%x rpi:x%x",
8662 pmbox
->un
.varWords
[0], 0);
8663 if (mcqe_status
== MB_CQE_STATUS_SUCCESS
) {
8664 mp
= (struct lpfc_dmabuf
*)(pmb
->context1
);
8665 ndlp
= (struct lpfc_nodelist
*)pmb
->context2
;
8666 /* Reg_LOGIN of dflt RPI was successful. Now lets get
8667 * RID of the PPI using the same mbox buffer.
8669 lpfc_unreg_login(phba
, vport
->vpi
,
8670 pmbox
->un
.varWords
[0], pmb
);
8671 pmb
->mbox_cmpl
= lpfc_mbx_cmpl_dflt_rpi
;
8673 pmb
->context2
= ndlp
;
8675 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_NOWAIT
);
8677 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
|
8678 LOG_SLI
, "0385 rc should "
8679 "have been MBX_BUSY\n");
8680 if (rc
!= MBX_NOT_FINISHED
)
8681 goto send_current_mbox
;
8684 spin_lock_irqsave(&phba
->pport
->work_port_lock
, iflags
);
8685 phba
->pport
->work_port_events
&= ~WORKER_MBOX_TMO
;
8686 spin_unlock_irqrestore(&phba
->pport
->work_port_lock
, iflags
);
8688 /* There is mailbox completion work to do */
8689 spin_lock_irqsave(&phba
->hbalock
, iflags
);
8690 __lpfc_mbox_cmpl_put(phba
, pmb
);
8691 phba
->work_ha
|= HA_MBATT
;
8692 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
8696 spin_lock_irqsave(&phba
->hbalock
, iflags
);
8697 /* Release the mailbox command posting token */
8698 phba
->sli
.sli_flag
&= ~LPFC_SLI_MBOX_ACTIVE
;
8699 /* Setting active mailbox pointer need to be in sync to flag clear */
8700 phba
->sli
.mbox_active
= NULL
;
8701 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
8702 /* Wake up worker thread to post the next pending mailbox command */
8703 lpfc_worker_wake_up(phba
);
8704 out_no_mqe_complete
:
8705 if (bf_get(lpfc_trailer_consumed
, mcqe
))
8706 lpfc_sli4_mq_release(phba
->sli4_hba
.mbx_wq
);
8711 * lpfc_sli4_sp_handle_mcqe - Process a mailbox completion queue entry
8712 * @phba: Pointer to HBA context object.
8713 * @cqe: Pointer to mailbox completion queue entry.
8715 * This routine process a mailbox completion queue entry, it invokes the
8716 * proper mailbox complete handling or asynchrous event handling routine
8717 * according to the MCQE's async bit.
8719 * Return: true if work posted to worker thread, otherwise false.
8722 lpfc_sli4_sp_handle_mcqe(struct lpfc_hba
*phba
, struct lpfc_cqe
*cqe
)
8724 struct lpfc_mcqe mcqe
;
8727 /* Copy the mailbox MCQE and convert endian order as needed */
8728 lpfc_sli_pcimem_bcopy(cqe
, &mcqe
, sizeof(struct lpfc_mcqe
));
8730 /* Invoke the proper event handling routine */
8731 if (!bf_get(lpfc_trailer_async
, &mcqe
))
8732 workposted
= lpfc_sli4_sp_handle_mbox_event(phba
, &mcqe
);
8734 workposted
= lpfc_sli4_sp_handle_async_event(phba
, &mcqe
);
8739 * lpfc_sli4_sp_handle_els_wcqe - Handle els work-queue completion event
8740 * @phba: Pointer to HBA context object.
8741 * @wcqe: Pointer to work-queue completion queue entry.
8743 * This routine handles an ELS work-queue completion event.
8745 * Return: true if work posted to worker thread, otherwise false.
8748 lpfc_sli4_sp_handle_els_wcqe(struct lpfc_hba
*phba
,
8749 struct lpfc_wcqe_complete
*wcqe
)
8751 struct lpfc_iocbq
*irspiocbq
;
8752 unsigned long iflags
;
8754 /* Get an irspiocbq for later ELS response processing use */
8755 irspiocbq
= lpfc_sli_get_iocbq(phba
);
8757 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
8758 "0387 Failed to allocate an iocbq\n");
8762 /* Save off the slow-path queue event for work thread to process */
8763 memcpy(&irspiocbq
->cq_event
.cqe
.wcqe_cmpl
, wcqe
, sizeof(*wcqe
));
8764 spin_lock_irqsave(&phba
->hbalock
, iflags
);
8765 list_add_tail(&irspiocbq
->cq_event
.list
,
8766 &phba
->sli4_hba
.sp_queue_event
);
8767 phba
->hba_flag
|= HBA_SP_QUEUE_EVT
;
8768 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
8774 * lpfc_sli4_sp_handle_rel_wcqe - Handle slow-path WQ entry consumed event
8775 * @phba: Pointer to HBA context object.
8776 * @wcqe: Pointer to work-queue completion queue entry.
8778 * This routine handles slow-path WQ entry comsumed event by invoking the
8779 * proper WQ release routine to the slow-path WQ.
8782 lpfc_sli4_sp_handle_rel_wcqe(struct lpfc_hba
*phba
,
8783 struct lpfc_wcqe_release
*wcqe
)
8785 /* Check for the slow-path ELS work queue */
8786 if (bf_get(lpfc_wcqe_r_wq_id
, wcqe
) == phba
->sli4_hba
.els_wq
->queue_id
)
8787 lpfc_sli4_wq_release(phba
->sli4_hba
.els_wq
,
8788 bf_get(lpfc_wcqe_r_wqe_index
, wcqe
));
8790 lpfc_printf_log(phba
, KERN_WARNING
, LOG_SLI
,
8791 "2579 Slow-path wqe consume event carries "
8792 "miss-matched qid: wcqe-qid=x%x, sp-qid=x%x\n",
8793 bf_get(lpfc_wcqe_r_wqe_index
, wcqe
),
8794 phba
->sli4_hba
.els_wq
->queue_id
);
8798 * lpfc_sli4_sp_handle_abort_xri_wcqe - Handle a xri abort event
8799 * @phba: Pointer to HBA context object.
8800 * @cq: Pointer to a WQ completion queue.
8801 * @wcqe: Pointer to work-queue completion queue entry.
8803 * This routine handles an XRI abort event.
8805 * Return: true if work posted to worker thread, otherwise false.
8808 lpfc_sli4_sp_handle_abort_xri_wcqe(struct lpfc_hba
*phba
,
8809 struct lpfc_queue
*cq
,
8810 struct sli4_wcqe_xri_aborted
*wcqe
)
8812 bool workposted
= false;
8813 struct lpfc_cq_event
*cq_event
;
8814 unsigned long iflags
;
8816 /* Allocate a new internal CQ_EVENT entry */
8817 cq_event
= lpfc_sli4_cq_event_alloc(phba
);
8819 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
8820 "0602 Failed to allocate CQ_EVENT entry\n");
8824 /* Move the CQE into the proper xri abort event list */
8825 memcpy(&cq_event
->cqe
, wcqe
, sizeof(struct sli4_wcqe_xri_aborted
));
8826 switch (cq
->subtype
) {
8828 spin_lock_irqsave(&phba
->hbalock
, iflags
);
8829 list_add_tail(&cq_event
->list
,
8830 &phba
->sli4_hba
.sp_fcp_xri_aborted_work_queue
);
8831 /* Set the fcp xri abort event flag */
8832 phba
->hba_flag
|= FCP_XRI_ABORT_EVENT
;
8833 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
8837 spin_lock_irqsave(&phba
->hbalock
, iflags
);
8838 list_add_tail(&cq_event
->list
,
8839 &phba
->sli4_hba
.sp_els_xri_aborted_work_queue
);
8840 /* Set the els xri abort event flag */
8841 phba
->hba_flag
|= ELS_XRI_ABORT_EVENT
;
8842 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
8846 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
8847 "0603 Invalid work queue CQE subtype (x%x)\n",
8856 * lpfc_sli4_sp_handle_rcqe - Process a receive-queue completion queue entry
8857 * @phba: Pointer to HBA context object.
8858 * @rcqe: Pointer to receive-queue completion queue entry.
8860 * This routine process a receive-queue completion queue entry.
8862 * Return: true if work posted to worker thread, otherwise false.
8865 lpfc_sli4_sp_handle_rcqe(struct lpfc_hba
*phba
, struct lpfc_rcqe
*rcqe
)
8867 bool workposted
= false;
8868 struct lpfc_queue
*hrq
= phba
->sli4_hba
.hdr_rq
;
8869 struct lpfc_queue
*drq
= phba
->sli4_hba
.dat_rq
;
8870 struct hbq_dmabuf
*dma_buf
;
8872 unsigned long iflags
;
8874 if (bf_get(lpfc_rcqe_rq_id
, rcqe
) != hrq
->queue_id
)
8877 status
= bf_get(lpfc_rcqe_status
, rcqe
);
8879 case FC_STATUS_RQ_BUF_LEN_EXCEEDED
:
8880 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
8881 "2537 Receive Frame Truncated!!\n");
8882 case FC_STATUS_RQ_SUCCESS
:
8883 lpfc_sli4_rq_release(hrq
, drq
);
8884 spin_lock_irqsave(&phba
->hbalock
, iflags
);
8885 dma_buf
= lpfc_sli_hbqbuf_get(&phba
->hbqs
[0].hbq_buffer_list
);
8887 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
8890 memcpy(&dma_buf
->cq_event
.cqe
.rcqe_cmpl
, rcqe
, sizeof(*rcqe
));
8891 /* save off the frame for the word thread to process */
8892 list_add_tail(&dma_buf
->cq_event
.list
,
8893 &phba
->sli4_hba
.sp_queue_event
);
8894 /* Frame received */
8895 phba
->hba_flag
|= HBA_SP_QUEUE_EVT
;
8896 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
8899 case FC_STATUS_INSUFF_BUF_NEED_BUF
:
8900 case FC_STATUS_INSUFF_BUF_FRM_DISC
:
8901 /* Post more buffers if possible */
8902 spin_lock_irqsave(&phba
->hbalock
, iflags
);
8903 phba
->hba_flag
|= HBA_POST_RECEIVE_BUFFER
;
8904 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
8913 * lpfc_sli4_sp_handle_cqe - Process a slow path completion queue entry
8914 * @phba: Pointer to HBA context object.
8915 * @cq: Pointer to the completion queue.
8916 * @wcqe: Pointer to a completion queue entry.
8918 * This routine process a slow-path work-queue or recieve queue completion queue
8921 * Return: true if work posted to worker thread, otherwise false.
8924 lpfc_sli4_sp_handle_cqe(struct lpfc_hba
*phba
, struct lpfc_queue
*cq
,
8925 struct lpfc_cqe
*cqe
)
8927 struct lpfc_cqe cqevt
;
8928 bool workposted
= false;
8930 /* Copy the work queue CQE and convert endian order if needed */
8931 lpfc_sli_pcimem_bcopy(cqe
, &cqevt
, sizeof(struct lpfc_cqe
));
8933 /* Check and process for different type of WCQE and dispatch */
8934 switch (bf_get(lpfc_cqe_code
, &cqevt
)) {
8935 case CQE_CODE_COMPL_WQE
:
8936 /* Process the WQ/RQ complete event */
8937 workposted
= lpfc_sli4_sp_handle_els_wcqe(phba
,
8938 (struct lpfc_wcqe_complete
*)&cqevt
);
8940 case CQE_CODE_RELEASE_WQE
:
8941 /* Process the WQ release event */
8942 lpfc_sli4_sp_handle_rel_wcqe(phba
,
8943 (struct lpfc_wcqe_release
*)&cqevt
);
8945 case CQE_CODE_XRI_ABORTED
:
8946 /* Process the WQ XRI abort event */
8947 workposted
= lpfc_sli4_sp_handle_abort_xri_wcqe(phba
, cq
,
8948 (struct sli4_wcqe_xri_aborted
*)&cqevt
);
8950 case CQE_CODE_RECEIVE
:
8951 /* Process the RQ event */
8952 workposted
= lpfc_sli4_sp_handle_rcqe(phba
,
8953 (struct lpfc_rcqe
*)&cqevt
);
8956 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
8957 "0388 Not a valid WCQE code: x%x\n",
8958 bf_get(lpfc_cqe_code
, &cqevt
));
8965 * lpfc_sli4_sp_handle_eqe - Process a slow-path event queue entry
8966 * @phba: Pointer to HBA context object.
8967 * @eqe: Pointer to fast-path event queue entry.
8969 * This routine process a event queue entry from the slow-path event queue.
8970 * It will check the MajorCode and MinorCode to determine this is for a
8971 * completion event on a completion queue, if not, an error shall be logged
8972 * and just return. Otherwise, it will get to the corresponding completion
8973 * queue and process all the entries on that completion queue, rearm the
8974 * completion queue, and then return.
8978 lpfc_sli4_sp_handle_eqe(struct lpfc_hba
*phba
, struct lpfc_eqe
*eqe
)
8980 struct lpfc_queue
*cq
= NULL
, *childq
, *speq
;
8981 struct lpfc_cqe
*cqe
;
8982 bool workposted
= false;
8986 if (bf_get(lpfc_eqe_major_code
, eqe
) != 0) {
8987 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
8988 "0359 Not a valid slow-path completion "
8989 "event: majorcode=x%x, minorcode=x%x\n",
8990 bf_get(lpfc_eqe_major_code
, eqe
),
8991 bf_get(lpfc_eqe_minor_code
, eqe
));
8995 /* Get the reference to the corresponding CQ */
8996 cqid
= bf_get(lpfc_eqe_resource_id
, eqe
);
8998 /* Search for completion queue pointer matching this cqid */
8999 speq
= phba
->sli4_hba
.sp_eq
;
9000 list_for_each_entry(childq
, &speq
->child_list
, list
) {
9001 if (childq
->queue_id
== cqid
) {
9006 if (unlikely(!cq
)) {
9007 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
9008 "0365 Slow-path CQ identifier (%d) does "
9009 "not exist\n", cqid
);
9013 /* Process all the entries to the CQ */
9016 while ((cqe
= lpfc_sli4_cq_get(cq
))) {
9017 workposted
|= lpfc_sli4_sp_handle_mcqe(phba
, cqe
);
9018 if (!(++ecount
% LPFC_GET_QE_REL_INT
))
9019 lpfc_sli4_cq_release(cq
, LPFC_QUEUE_NOARM
);
9023 while ((cqe
= lpfc_sli4_cq_get(cq
))) {
9024 workposted
|= lpfc_sli4_sp_handle_cqe(phba
, cq
, cqe
);
9025 if (!(++ecount
% LPFC_GET_QE_REL_INT
))
9026 lpfc_sli4_cq_release(cq
, LPFC_QUEUE_NOARM
);
9030 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
9031 "0370 Invalid completion queue type (%d)\n",
9036 /* Catch the no cq entry condition, log an error */
9037 if (unlikely(ecount
== 0))
9038 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
9039 "0371 No entry from the CQ: identifier "
9040 "(x%x), type (%d)\n", cq
->queue_id
, cq
->type
);
9042 /* In any case, flash and re-arm the RCQ */
9043 lpfc_sli4_cq_release(cq
, LPFC_QUEUE_REARM
);
9045 /* wake up worker thread if there are works to be done */
9047 lpfc_worker_wake_up(phba
);
9051 * lpfc_sli4_fp_handle_fcp_wcqe - Process fast-path work queue completion entry
9052 * @eqe: Pointer to fast-path completion queue entry.
9054 * This routine process a fast-path work queue completion entry from fast-path
9055 * event queue for FCP command response completion.
9058 lpfc_sli4_fp_handle_fcp_wcqe(struct lpfc_hba
*phba
,
9059 struct lpfc_wcqe_complete
*wcqe
)
9061 struct lpfc_sli_ring
*pring
= &phba
->sli
.ring
[LPFC_FCP_RING
];
9062 struct lpfc_iocbq
*cmdiocbq
;
9063 struct lpfc_iocbq irspiocbq
;
9064 unsigned long iflags
;
9066 spin_lock_irqsave(&phba
->hbalock
, iflags
);
9067 pring
->stats
.iocb_event
++;
9068 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
9070 /* Check for response status */
9071 if (unlikely(bf_get(lpfc_wcqe_c_status
, wcqe
))) {
9072 /* If resource errors reported from HBA, reduce queue
9073 * depth of the SCSI device.
9075 if ((bf_get(lpfc_wcqe_c_status
, wcqe
) ==
9076 IOSTAT_LOCAL_REJECT
) &&
9077 (wcqe
->parameter
== IOERR_NO_RESOURCES
)) {
9078 phba
->lpfc_rampdown_queue_depth(phba
);
9080 /* Log the error status */
9081 lpfc_printf_log(phba
, KERN_WARNING
, LOG_SLI
,
9082 "0373 FCP complete error: status=x%x, "
9083 "hw_status=x%x, total_data_specified=%d, "
9084 "parameter=x%x, word3=x%x\n",
9085 bf_get(lpfc_wcqe_c_status
, wcqe
),
9086 bf_get(lpfc_wcqe_c_hw_status
, wcqe
),
9087 wcqe
->total_data_placed
, wcqe
->parameter
,
9091 /* Look up the FCP command IOCB and create pseudo response IOCB */
9092 spin_lock_irqsave(&phba
->hbalock
, iflags
);
9093 cmdiocbq
= lpfc_sli_iocbq_lookup_by_tag(phba
, pring
,
9094 bf_get(lpfc_wcqe_c_request_tag
, wcqe
));
9095 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
9096 if (unlikely(!cmdiocbq
)) {
9097 lpfc_printf_log(phba
, KERN_WARNING
, LOG_SLI
,
9098 "0374 FCP complete with no corresponding "
9099 "cmdiocb: iotag (%d)\n",
9100 bf_get(lpfc_wcqe_c_request_tag
, wcqe
));
9103 if (unlikely(!cmdiocbq
->iocb_cmpl
)) {
9104 lpfc_printf_log(phba
, KERN_WARNING
, LOG_SLI
,
9105 "0375 FCP cmdiocb not callback function "
9107 bf_get(lpfc_wcqe_c_request_tag
, wcqe
));
9111 /* Fake the irspiocb and copy necessary response information */
9112 lpfc_sli4_iocb_param_transfer(phba
, &irspiocbq
, cmdiocbq
, wcqe
);
9114 if (cmdiocbq
->iocb_flag
& LPFC_DRIVER_ABORTED
) {
9115 spin_lock_irqsave(&phba
->hbalock
, iflags
);
9116 cmdiocbq
->iocb_flag
&= ~LPFC_DRIVER_ABORTED
;
9117 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
9120 /* Pass the cmd_iocb and the rsp state to the upper layer */
9121 (cmdiocbq
->iocb_cmpl
)(phba
, cmdiocbq
, &irspiocbq
);
9125 * lpfc_sli4_fp_handle_rel_wcqe - Handle fast-path WQ entry consumed event
9126 * @phba: Pointer to HBA context object.
9127 * @cq: Pointer to completion queue.
9128 * @wcqe: Pointer to work-queue completion queue entry.
9130 * This routine handles an fast-path WQ entry comsumed event by invoking the
9131 * proper WQ release routine to the slow-path WQ.
9134 lpfc_sli4_fp_handle_rel_wcqe(struct lpfc_hba
*phba
, struct lpfc_queue
*cq
,
9135 struct lpfc_wcqe_release
*wcqe
)
9137 struct lpfc_queue
*childwq
;
9138 bool wqid_matched
= false;
9141 /* Check for fast-path FCP work queue release */
9142 fcp_wqid
= bf_get(lpfc_wcqe_r_wq_id
, wcqe
);
9143 list_for_each_entry(childwq
, &cq
->child_list
, list
) {
9144 if (childwq
->queue_id
== fcp_wqid
) {
9145 lpfc_sli4_wq_release(childwq
,
9146 bf_get(lpfc_wcqe_r_wqe_index
, wcqe
));
9147 wqid_matched
= true;
9151 /* Report warning log message if no match found */
9152 if (wqid_matched
!= true)
9153 lpfc_printf_log(phba
, KERN_WARNING
, LOG_SLI
,
9154 "2580 Fast-path wqe consume event carries "
9155 "miss-matched qid: wcqe-qid=x%x\n", fcp_wqid
);
9159 * lpfc_sli4_fp_handle_wcqe - Process fast-path work queue completion entry
9160 * @cq: Pointer to the completion queue.
9161 * @eqe: Pointer to fast-path completion queue entry.
9163 * This routine process a fast-path work queue completion entry from fast-path
9164 * event queue for FCP command response completion.
9167 lpfc_sli4_fp_handle_wcqe(struct lpfc_hba
*phba
, struct lpfc_queue
*cq
,
9168 struct lpfc_cqe
*cqe
)
9170 struct lpfc_wcqe_release wcqe
;
9171 bool workposted
= false;
9173 /* Copy the work queue CQE and convert endian order if needed */
9174 lpfc_sli_pcimem_bcopy(cqe
, &wcqe
, sizeof(struct lpfc_cqe
));
9176 /* Check and process for different type of WCQE and dispatch */
9177 switch (bf_get(lpfc_wcqe_c_code
, &wcqe
)) {
9178 case CQE_CODE_COMPL_WQE
:
9179 /* Process the WQ complete event */
9180 lpfc_sli4_fp_handle_fcp_wcqe(phba
,
9181 (struct lpfc_wcqe_complete
*)&wcqe
);
9183 case CQE_CODE_RELEASE_WQE
:
9184 /* Process the WQ release event */
9185 lpfc_sli4_fp_handle_rel_wcqe(phba
, cq
,
9186 (struct lpfc_wcqe_release
*)&wcqe
);
9188 case CQE_CODE_XRI_ABORTED
:
9189 /* Process the WQ XRI abort event */
9190 workposted
= lpfc_sli4_sp_handle_abort_xri_wcqe(phba
, cq
,
9191 (struct sli4_wcqe_xri_aborted
*)&wcqe
);
9194 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
9195 "0144 Not a valid WCQE code: x%x\n",
9196 bf_get(lpfc_wcqe_c_code
, &wcqe
));
9203 * lpfc_sli4_fp_handle_eqe - Process a fast-path event queue entry
9204 * @phba: Pointer to HBA context object.
9205 * @eqe: Pointer to fast-path event queue entry.
9207 * This routine process a event queue entry from the fast-path event queue.
9208 * It will check the MajorCode and MinorCode to determine this is for a
9209 * completion event on a completion queue, if not, an error shall be logged
9210 * and just return. Otherwise, it will get to the corresponding completion
9211 * queue and process all the entries on the completion queue, rearm the
9212 * completion queue, and then return.
9215 lpfc_sli4_fp_handle_eqe(struct lpfc_hba
*phba
, struct lpfc_eqe
*eqe
,
9218 struct lpfc_queue
*cq
;
9219 struct lpfc_cqe
*cqe
;
9220 bool workposted
= false;
9224 if (unlikely(bf_get(lpfc_eqe_major_code
, eqe
) != 0)) {
9225 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
9226 "0366 Not a valid fast-path completion "
9227 "event: majorcode=x%x, minorcode=x%x\n",
9228 bf_get(lpfc_eqe_major_code
, eqe
),
9229 bf_get(lpfc_eqe_minor_code
, eqe
));
9233 cq
= phba
->sli4_hba
.fcp_cq
[fcp_cqidx
];
9234 if (unlikely(!cq
)) {
9235 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
9236 "0367 Fast-path completion queue does not "
9241 /* Get the reference to the corresponding CQ */
9242 cqid
= bf_get(lpfc_eqe_resource_id
, eqe
);
9243 if (unlikely(cqid
!= cq
->queue_id
)) {
9244 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
9245 "0368 Miss-matched fast-path completion "
9246 "queue identifier: eqcqid=%d, fcpcqid=%d\n",
9247 cqid
, cq
->queue_id
);
9251 /* Process all the entries to the CQ */
9252 while ((cqe
= lpfc_sli4_cq_get(cq
))) {
9253 workposted
|= lpfc_sli4_fp_handle_wcqe(phba
, cq
, cqe
);
9254 if (!(++ecount
% LPFC_GET_QE_REL_INT
))
9255 lpfc_sli4_cq_release(cq
, LPFC_QUEUE_NOARM
);
9258 /* Catch the no cq entry condition */
9259 if (unlikely(ecount
== 0))
9260 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
9261 "0369 No entry from fast-path completion "
9262 "queue fcpcqid=%d\n", cq
->queue_id
);
9264 /* In any case, flash and re-arm the CQ */
9265 lpfc_sli4_cq_release(cq
, LPFC_QUEUE_REARM
);
9267 /* wake up worker thread if there are works to be done */
9269 lpfc_worker_wake_up(phba
);
9273 lpfc_sli4_eq_flush(struct lpfc_hba
*phba
, struct lpfc_queue
*eq
)
9275 struct lpfc_eqe
*eqe
;
9277 /* walk all the EQ entries and drop on the floor */
9278 while ((eqe
= lpfc_sli4_eq_get(eq
)))
9281 /* Clear and re-arm the EQ */
9282 lpfc_sli4_eq_release(eq
, LPFC_QUEUE_REARM
);
9286 * lpfc_sli4_sp_intr_handler - Slow-path interrupt handler to SLI-4 device
9287 * @irq: Interrupt number.
9288 * @dev_id: The device context pointer.
9290 * This function is directly called from the PCI layer as an interrupt
9291 * service routine when device with SLI-4 interface spec is enabled with
9292 * MSI-X multi-message interrupt mode and there are slow-path events in
9293 * the HBA. However, when the device is enabled with either MSI or Pin-IRQ
9294 * interrupt mode, this function is called as part of the device-level
9295 * interrupt handler. When the PCI slot is in error recovery or the HBA is
9296 * undergoing initialization, the interrupt handler will not process the
9297 * interrupt. The link attention and ELS ring attention events are handled
9298 * by the worker thread. The interrupt handler signals the worker thread
9299 * and returns for these events. This function is called without any lock
9300 * held. It gets the hbalock to access and update SLI data structures.
9302 * This function returns IRQ_HANDLED when interrupt is handled else it
9306 lpfc_sli4_sp_intr_handler(int irq
, void *dev_id
)
9308 struct lpfc_hba
*phba
;
9309 struct lpfc_queue
*speq
;
9310 struct lpfc_eqe
*eqe
;
9311 unsigned long iflag
;
9315 * Get the driver's phba structure from the dev_id
9317 phba
= (struct lpfc_hba
*)dev_id
;
9319 if (unlikely(!phba
))
9322 /* Get to the EQ struct associated with this vector */
9323 speq
= phba
->sli4_hba
.sp_eq
;
9325 /* Check device state for handling interrupt */
9326 if (unlikely(lpfc_intr_state_check(phba
))) {
9327 /* Check again for link_state with lock held */
9328 spin_lock_irqsave(&phba
->hbalock
, iflag
);
9329 if (phba
->link_state
< LPFC_LINK_DOWN
)
9330 /* Flush, clear interrupt, and rearm the EQ */
9331 lpfc_sli4_eq_flush(phba
, speq
);
9332 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
9337 * Process all the event on FCP slow-path EQ
9339 while ((eqe
= lpfc_sli4_eq_get(speq
))) {
9340 lpfc_sli4_sp_handle_eqe(phba
, eqe
);
9341 if (!(++ecount
% LPFC_GET_QE_REL_INT
))
9342 lpfc_sli4_eq_release(speq
, LPFC_QUEUE_NOARM
);
9345 /* Always clear and re-arm the slow-path EQ */
9346 lpfc_sli4_eq_release(speq
, LPFC_QUEUE_REARM
);
9348 /* Catch the no cq entry condition */
9349 if (unlikely(ecount
== 0)) {
9350 if (phba
->intr_type
== MSIX
)
9351 /* MSI-X treated interrupt served as no EQ share INT */
9352 lpfc_printf_log(phba
, KERN_WARNING
, LOG_SLI
,
9353 "0357 MSI-X interrupt with no EQE\n");
9355 /* Non MSI-X treated on interrupt as EQ share INT */
9360 } /* lpfc_sli4_sp_intr_handler */
9363 * lpfc_sli4_fp_intr_handler - Fast-path interrupt handler to SLI-4 device
9364 * @irq: Interrupt number.
9365 * @dev_id: The device context pointer.
9367 * This function is directly called from the PCI layer as an interrupt
9368 * service routine when device with SLI-4 interface spec is enabled with
9369 * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
9370 * ring event in the HBA. However, when the device is enabled with either
9371 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
9372 * device-level interrupt handler. When the PCI slot is in error recovery
9373 * or the HBA is undergoing initialization, the interrupt handler will not
9374 * process the interrupt. The SCSI FCP fast-path ring event are handled in
9375 * the intrrupt context. This function is called without any lock held.
9376 * It gets the hbalock to access and update SLI data structures. Note that,
9377 * the FCP EQ to FCP CQ are one-to-one map such that the FCP EQ index is
9378 * equal to that of FCP CQ index.
9380 * This function returns IRQ_HANDLED when interrupt is handled else it
9384 lpfc_sli4_fp_intr_handler(int irq
, void *dev_id
)
9386 struct lpfc_hba
*phba
;
9387 struct lpfc_fcp_eq_hdl
*fcp_eq_hdl
;
9388 struct lpfc_queue
*fpeq
;
9389 struct lpfc_eqe
*eqe
;
9390 unsigned long iflag
;
9394 /* Get the driver's phba structure from the dev_id */
9395 fcp_eq_hdl
= (struct lpfc_fcp_eq_hdl
*)dev_id
;
9396 phba
= fcp_eq_hdl
->phba
;
9397 fcp_eqidx
= fcp_eq_hdl
->idx
;
9399 if (unlikely(!phba
))
9402 /* Get to the EQ struct associated with this vector */
9403 fpeq
= phba
->sli4_hba
.fp_eq
[fcp_eqidx
];
9405 /* Check device state for handling interrupt */
9406 if (unlikely(lpfc_intr_state_check(phba
))) {
9407 /* Check again for link_state with lock held */
9408 spin_lock_irqsave(&phba
->hbalock
, iflag
);
9409 if (phba
->link_state
< LPFC_LINK_DOWN
)
9410 /* Flush, clear interrupt, and rearm the EQ */
9411 lpfc_sli4_eq_flush(phba
, fpeq
);
9412 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
9417 * Process all the event on FCP fast-path EQ
9419 while ((eqe
= lpfc_sli4_eq_get(fpeq
))) {
9420 lpfc_sli4_fp_handle_eqe(phba
, eqe
, fcp_eqidx
);
9421 if (!(++ecount
% LPFC_GET_QE_REL_INT
))
9422 lpfc_sli4_eq_release(fpeq
, LPFC_QUEUE_NOARM
);
9425 /* Always clear and re-arm the fast-path EQ */
9426 lpfc_sli4_eq_release(fpeq
, LPFC_QUEUE_REARM
);
9428 if (unlikely(ecount
== 0)) {
9429 if (phba
->intr_type
== MSIX
)
9430 /* MSI-X treated interrupt served as no EQ share INT */
9431 lpfc_printf_log(phba
, KERN_WARNING
, LOG_SLI
,
9432 "0358 MSI-X interrupt with no EQE\n");
9434 /* Non MSI-X treated on interrupt as EQ share INT */
9439 } /* lpfc_sli4_fp_intr_handler */
9442 * lpfc_sli4_intr_handler - Device-level interrupt handler for SLI-4 device
9443 * @irq: Interrupt number.
9444 * @dev_id: The device context pointer.
9446 * This function is the device-level interrupt handler to device with SLI-4
9447 * interface spec, called from the PCI layer when either MSI or Pin-IRQ
9448 * interrupt mode is enabled and there is an event in the HBA which requires
9449 * driver attention. This function invokes the slow-path interrupt attention
9450 * handling function and fast-path interrupt attention handling function in
9451 * turn to process the relevant HBA attention events. This function is called
9452 * without any lock held. It gets the hbalock to access and update SLI data
9455 * This function returns IRQ_HANDLED when interrupt is handled, else it
9459 lpfc_sli4_intr_handler(int irq
, void *dev_id
)
9461 struct lpfc_hba
*phba
;
9462 irqreturn_t sp_irq_rc
, fp_irq_rc
;
9463 bool fp_handled
= false;
9466 /* Get the driver's phba structure from the dev_id */
9467 phba
= (struct lpfc_hba
*)dev_id
;
9469 if (unlikely(!phba
))
9473 * Invokes slow-path host attention interrupt handling as appropriate.
9475 sp_irq_rc
= lpfc_sli4_sp_intr_handler(irq
, dev_id
);
9478 * Invoke fast-path host attention interrupt handling as appropriate.
9480 for (fcp_eqidx
= 0; fcp_eqidx
< phba
->cfg_fcp_eq_count
; fcp_eqidx
++) {
9481 fp_irq_rc
= lpfc_sli4_fp_intr_handler(irq
,
9482 &phba
->sli4_hba
.fcp_eq_hdl
[fcp_eqidx
]);
9483 if (fp_irq_rc
== IRQ_HANDLED
)
9487 return (fp_handled
== true) ? IRQ_HANDLED
: sp_irq_rc
;
9488 } /* lpfc_sli4_intr_handler */
9491 * lpfc_sli4_queue_free - free a queue structure and associated memory
9492 * @queue: The queue structure to free.
9494 * This function frees a queue structure and the DMAable memeory used for
9495 * the host resident queue. This function must be called after destroying the
9499 lpfc_sli4_queue_free(struct lpfc_queue
*queue
)
9501 struct lpfc_dmabuf
*dmabuf
;
9506 while (!list_empty(&queue
->page_list
)) {
9507 list_remove_head(&queue
->page_list
, dmabuf
, struct lpfc_dmabuf
,
9509 dma_free_coherent(&queue
->phba
->pcidev
->dev
, PAGE_SIZE
,
9510 dmabuf
->virt
, dmabuf
->phys
);
9518 * lpfc_sli4_queue_alloc - Allocate and initialize a queue structure
9519 * @phba: The HBA that this queue is being created on.
9520 * @entry_size: The size of each queue entry for this queue.
9521 * @entry count: The number of entries that this queue will handle.
9523 * This function allocates a queue structure and the DMAable memory used for
9524 * the host resident queue. This function must be called before creating the
9528 lpfc_sli4_queue_alloc(struct lpfc_hba
*phba
, uint32_t entry_size
,
9529 uint32_t entry_count
)
9531 struct lpfc_queue
*queue
;
9532 struct lpfc_dmabuf
*dmabuf
;
9533 int x
, total_qe_count
;
9537 queue
= kzalloc(sizeof(struct lpfc_queue
) +
9538 (sizeof(union sli4_qe
) * entry_count
), GFP_KERNEL
);
9541 queue
->page_count
= (PAGE_ALIGN(entry_size
* entry_count
))/PAGE_SIZE
;
9542 INIT_LIST_HEAD(&queue
->list
);
9543 INIT_LIST_HEAD(&queue
->page_list
);
9544 INIT_LIST_HEAD(&queue
->child_list
);
9545 for (x
= 0, total_qe_count
= 0; x
< queue
->page_count
; x
++) {
9546 dmabuf
= kzalloc(sizeof(struct lpfc_dmabuf
), GFP_KERNEL
);
9549 dmabuf
->virt
= dma_alloc_coherent(&phba
->pcidev
->dev
,
9550 PAGE_SIZE
, &dmabuf
->phys
,
9552 if (!dmabuf
->virt
) {
9556 memset(dmabuf
->virt
, 0, PAGE_SIZE
);
9557 dmabuf
->buffer_tag
= x
;
9558 list_add_tail(&dmabuf
->list
, &queue
->page_list
);
9559 /* initialize queue's entry array */
9560 dma_pointer
= dmabuf
->virt
;
9561 for (; total_qe_count
< entry_count
&&
9562 dma_pointer
< (PAGE_SIZE
+ dmabuf
->virt
);
9563 total_qe_count
++, dma_pointer
+= entry_size
) {
9564 queue
->qe
[total_qe_count
].address
= dma_pointer
;
9567 queue
->entry_size
= entry_size
;
9568 queue
->entry_count
= entry_count
;
9573 lpfc_sli4_queue_free(queue
);
9578 * lpfc_eq_create - Create an Event Queue on the HBA
9579 * @phba: HBA structure that indicates port to create a queue on.
9580 * @eq: The queue structure to use to create the event queue.
9581 * @imax: The maximum interrupt per second limit.
9583 * This function creates an event queue, as detailed in @eq, on a port,
9584 * described by @phba by sending an EQ_CREATE mailbox command to the HBA.
9586 * The @phba struct is used to send mailbox command to HBA. The @eq struct
9587 * is used to get the entry count and entry size that are necessary to
9588 * determine the number of pages to allocate and use for this queue. This
9589 * function will send the EQ_CREATE mailbox command to the HBA to setup the
9590 * event queue. This function is asynchronous and will wait for the mailbox
9591 * command to finish before continuing.
9593 * On success this function will return a zero. If unable to allocate enough
9594 * memory this function will return ENOMEM. If the queue create mailbox command
9595 * fails this function will return ENXIO.
9598 lpfc_eq_create(struct lpfc_hba
*phba
, struct lpfc_queue
*eq
, uint16_t imax
)
9600 struct lpfc_mbx_eq_create
*eq_create
;
9602 int rc
, length
, status
= 0;
9603 struct lpfc_dmabuf
*dmabuf
;
9604 uint32_t shdr_status
, shdr_add_status
;
9605 union lpfc_sli4_cfg_shdr
*shdr
;
9608 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
9611 length
= (sizeof(struct lpfc_mbx_eq_create
) -
9612 sizeof(struct lpfc_sli4_cfg_mhdr
));
9613 lpfc_sli4_config(phba
, mbox
, LPFC_MBOX_SUBSYSTEM_COMMON
,
9614 LPFC_MBOX_OPCODE_EQ_CREATE
,
9615 length
, LPFC_SLI4_MBX_EMBED
);
9616 eq_create
= &mbox
->u
.mqe
.un
.eq_create
;
9617 bf_set(lpfc_mbx_eq_create_num_pages
, &eq_create
->u
.request
,
9619 bf_set(lpfc_eq_context_size
, &eq_create
->u
.request
.context
,
9621 bf_set(lpfc_eq_context_valid
, &eq_create
->u
.request
.context
, 1);
9622 /* Calculate delay multiper from maximum interrupt per second */
9623 dmult
= LPFC_DMULT_CONST
/imax
- 1;
9624 bf_set(lpfc_eq_context_delay_multi
, &eq_create
->u
.request
.context
,
9626 switch (eq
->entry_count
) {
9628 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
9629 "0360 Unsupported EQ count. (%d)\n",
9631 if (eq
->entry_count
< 256)
9633 /* otherwise default to smallest count (drop through) */
9635 bf_set(lpfc_eq_context_count
, &eq_create
->u
.request
.context
,
9639 bf_set(lpfc_eq_context_count
, &eq_create
->u
.request
.context
,
9643 bf_set(lpfc_eq_context_count
, &eq_create
->u
.request
.context
,
9647 bf_set(lpfc_eq_context_count
, &eq_create
->u
.request
.context
,
9651 bf_set(lpfc_eq_context_count
, &eq_create
->u
.request
.context
,
9655 list_for_each_entry(dmabuf
, &eq
->page_list
, list
) {
9656 eq_create
->u
.request
.page
[dmabuf
->buffer_tag
].addr_lo
=
9657 putPaddrLow(dmabuf
->phys
);
9658 eq_create
->u
.request
.page
[dmabuf
->buffer_tag
].addr_hi
=
9659 putPaddrHigh(dmabuf
->phys
);
9661 mbox
->vport
= phba
->pport
;
9662 mbox
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
9663 mbox
->context1
= NULL
;
9664 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_POLL
);
9665 shdr
= (union lpfc_sli4_cfg_shdr
*) &eq_create
->header
.cfg_shdr
;
9666 shdr_status
= bf_get(lpfc_mbox_hdr_status
, &shdr
->response
);
9667 shdr_add_status
= bf_get(lpfc_mbox_hdr_add_status
, &shdr
->response
);
9668 if (shdr_status
|| shdr_add_status
|| rc
) {
9669 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
9670 "2500 EQ_CREATE mailbox failed with "
9671 "status x%x add_status x%x, mbx status x%x\n",
9672 shdr_status
, shdr_add_status
, rc
);
9676 eq
->subtype
= LPFC_NONE
;
9677 eq
->queue_id
= bf_get(lpfc_mbx_eq_create_q_id
, &eq_create
->u
.response
);
9678 if (eq
->queue_id
== 0xFFFF)
9683 mempool_free(mbox
, phba
->mbox_mem_pool
);
9688 * lpfc_cq_create - Create a Completion Queue on the HBA
9689 * @phba: HBA structure that indicates port to create a queue on.
9690 * @cq: The queue structure to use to create the completion queue.
9691 * @eq: The event queue to bind this completion queue to.
9693 * This function creates a completion queue, as detailed in @wq, on a port,
9694 * described by @phba by sending a CQ_CREATE mailbox command to the HBA.
9696 * The @phba struct is used to send mailbox command to HBA. The @cq struct
9697 * is used to get the entry count and entry size that are necessary to
9698 * determine the number of pages to allocate and use for this queue. The @eq
9699 * is used to indicate which event queue to bind this completion queue to. This
9700 * function will send the CQ_CREATE mailbox command to the HBA to setup the
9701 * completion queue. This function is asynchronous and will wait for the mailbox
9702 * command to finish before continuing.
9704 * On success this function will return a zero. If unable to allocate enough
9705 * memory this function will return ENOMEM. If the queue create mailbox command
9706 * fails this function will return ENXIO.
9709 lpfc_cq_create(struct lpfc_hba
*phba
, struct lpfc_queue
*cq
,
9710 struct lpfc_queue
*eq
, uint32_t type
, uint32_t subtype
)
9712 struct lpfc_mbx_cq_create
*cq_create
;
9713 struct lpfc_dmabuf
*dmabuf
;
9715 int rc
, length
, status
= 0;
9716 uint32_t shdr_status
, shdr_add_status
;
9717 union lpfc_sli4_cfg_shdr
*shdr
;
9719 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
9722 length
= (sizeof(struct lpfc_mbx_cq_create
) -
9723 sizeof(struct lpfc_sli4_cfg_mhdr
));
9724 lpfc_sli4_config(phba
, mbox
, LPFC_MBOX_SUBSYSTEM_COMMON
,
9725 LPFC_MBOX_OPCODE_CQ_CREATE
,
9726 length
, LPFC_SLI4_MBX_EMBED
);
9727 cq_create
= &mbox
->u
.mqe
.un
.cq_create
;
9728 bf_set(lpfc_mbx_cq_create_num_pages
, &cq_create
->u
.request
,
9730 bf_set(lpfc_cq_context_event
, &cq_create
->u
.request
.context
, 1);
9731 bf_set(lpfc_cq_context_valid
, &cq_create
->u
.request
.context
, 1);
9732 bf_set(lpfc_cq_eq_id
, &cq_create
->u
.request
.context
, eq
->queue_id
);
9733 switch (cq
->entry_count
) {
9735 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
9736 "0361 Unsupported CQ count. (%d)\n",
9738 if (cq
->entry_count
< 256)
9740 /* otherwise default to smallest count (drop through) */
9742 bf_set(lpfc_cq_context_count
, &cq_create
->u
.request
.context
,
9746 bf_set(lpfc_cq_context_count
, &cq_create
->u
.request
.context
,
9750 bf_set(lpfc_cq_context_count
, &cq_create
->u
.request
.context
,
9754 list_for_each_entry(dmabuf
, &cq
->page_list
, list
) {
9755 cq_create
->u
.request
.page
[dmabuf
->buffer_tag
].addr_lo
=
9756 putPaddrLow(dmabuf
->phys
);
9757 cq_create
->u
.request
.page
[dmabuf
->buffer_tag
].addr_hi
=
9758 putPaddrHigh(dmabuf
->phys
);
9760 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_POLL
);
9762 /* The IOCTL status is embedded in the mailbox subheader. */
9763 shdr
= (union lpfc_sli4_cfg_shdr
*) &cq_create
->header
.cfg_shdr
;
9764 shdr_status
= bf_get(lpfc_mbox_hdr_status
, &shdr
->response
);
9765 shdr_add_status
= bf_get(lpfc_mbox_hdr_add_status
, &shdr
->response
);
9766 if (shdr_status
|| shdr_add_status
|| rc
) {
9767 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
9768 "2501 CQ_CREATE mailbox failed with "
9769 "status x%x add_status x%x, mbx status x%x\n",
9770 shdr_status
, shdr_add_status
, rc
);
9774 cq
->queue_id
= bf_get(lpfc_mbx_cq_create_q_id
, &cq_create
->u
.response
);
9775 if (cq
->queue_id
== 0xFFFF) {
9779 /* link the cq onto the parent eq child list */
9780 list_add_tail(&cq
->list
, &eq
->child_list
);
9781 /* Set up completion queue's type and subtype */
9783 cq
->subtype
= subtype
;
9784 cq
->queue_id
= bf_get(lpfc_mbx_cq_create_q_id
, &cq_create
->u
.response
);
9789 mempool_free(mbox
, phba
->mbox_mem_pool
);
9794 * lpfc_mq_create - Create a mailbox Queue on the HBA
9795 * @phba: HBA structure that indicates port to create a queue on.
9796 * @mq: The queue structure to use to create the mailbox queue.
9798 * This function creates a mailbox queue, as detailed in @mq, on a port,
9799 * described by @phba by sending a MQ_CREATE mailbox command to the HBA.
9801 * The @phba struct is used to send mailbox command to HBA. The @cq struct
9802 * is used to get the entry count and entry size that are necessary to
9803 * determine the number of pages to allocate and use for this queue. This
9804 * function will send the MQ_CREATE mailbox command to the HBA to setup the
9805 * mailbox queue. This function is asynchronous and will wait for the mailbox
9806 * command to finish before continuing.
9808 * On success this function will return a zero. If unable to allocate enough
9809 * memory this function will return ENOMEM. If the queue create mailbox command
9810 * fails this function will return ENXIO.
9813 lpfc_mq_create(struct lpfc_hba
*phba
, struct lpfc_queue
*mq
,
9814 struct lpfc_queue
*cq
, uint32_t subtype
)
9816 struct lpfc_mbx_mq_create
*mq_create
;
9817 struct lpfc_dmabuf
*dmabuf
;
9819 int rc
, length
, status
= 0;
9820 uint32_t shdr_status
, shdr_add_status
;
9821 union lpfc_sli4_cfg_shdr
*shdr
;
9823 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
9826 length
= (sizeof(struct lpfc_mbx_mq_create
) -
9827 sizeof(struct lpfc_sli4_cfg_mhdr
));
9828 lpfc_sli4_config(phba
, mbox
, LPFC_MBOX_SUBSYSTEM_COMMON
,
9829 LPFC_MBOX_OPCODE_MQ_CREATE
,
9830 length
, LPFC_SLI4_MBX_EMBED
);
9831 mq_create
= &mbox
->u
.mqe
.un
.mq_create
;
9832 bf_set(lpfc_mbx_mq_create_num_pages
, &mq_create
->u
.request
,
9834 bf_set(lpfc_mq_context_cq_id
, &mq_create
->u
.request
.context
,
9836 bf_set(lpfc_mq_context_valid
, &mq_create
->u
.request
.context
, 1);
9837 switch (mq
->entry_count
) {
9839 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
9840 "0362 Unsupported MQ count. (%d)\n",
9842 if (mq
->entry_count
< 16)
9844 /* otherwise default to smallest count (drop through) */
9846 bf_set(lpfc_mq_context_count
, &mq_create
->u
.request
.context
,
9850 bf_set(lpfc_mq_context_count
, &mq_create
->u
.request
.context
,
9854 bf_set(lpfc_mq_context_count
, &mq_create
->u
.request
.context
,
9858 bf_set(lpfc_mq_context_count
, &mq_create
->u
.request
.context
,
9862 list_for_each_entry(dmabuf
, &mq
->page_list
, list
) {
9863 mq_create
->u
.request
.page
[dmabuf
->buffer_tag
].addr_lo
=
9864 putPaddrLow(dmabuf
->phys
);
9865 mq_create
->u
.request
.page
[dmabuf
->buffer_tag
].addr_hi
=
9866 putPaddrHigh(dmabuf
->phys
);
9868 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_POLL
);
9869 /* The IOCTL status is embedded in the mailbox subheader. */
9870 shdr
= (union lpfc_sli4_cfg_shdr
*) &mq_create
->header
.cfg_shdr
;
9871 shdr_status
= bf_get(lpfc_mbox_hdr_status
, &shdr
->response
);
9872 shdr_add_status
= bf_get(lpfc_mbox_hdr_add_status
, &shdr
->response
);
9873 if (shdr_status
|| shdr_add_status
|| rc
) {
9874 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
9875 "2502 MQ_CREATE mailbox failed with "
9876 "status x%x add_status x%x, mbx status x%x\n",
9877 shdr_status
, shdr_add_status
, rc
);
9881 mq
->queue_id
= bf_get(lpfc_mbx_mq_create_q_id
, &mq_create
->u
.response
);
9882 if (mq
->queue_id
== 0xFFFF) {
9887 mq
->subtype
= subtype
;
9891 /* link the mq onto the parent cq child list */
9892 list_add_tail(&mq
->list
, &cq
->child_list
);
9894 mempool_free(mbox
, phba
->mbox_mem_pool
);
9899 * lpfc_wq_create - Create a Work Queue on the HBA
9900 * @phba: HBA structure that indicates port to create a queue on.
9901 * @wq: The queue structure to use to create the work queue.
9902 * @cq: The completion queue to bind this work queue to.
9903 * @subtype: The subtype of the work queue indicating its functionality.
9905 * This function creates a work queue, as detailed in @wq, on a port, described
9906 * by @phba by sending a WQ_CREATE mailbox command to the HBA.
9908 * The @phba struct is used to send mailbox command to HBA. The @wq struct
9909 * is used to get the entry count and entry size that are necessary to
9910 * determine the number of pages to allocate and use for this queue. The @cq
9911 * is used to indicate which completion queue to bind this work queue to. This
9912 * function will send the WQ_CREATE mailbox command to the HBA to setup the
9913 * work queue. This function is asynchronous and will wait for the mailbox
9914 * command to finish before continuing.
9916 * On success this function will return a zero. If unable to allocate enough
9917 * memory this function will return ENOMEM. If the queue create mailbox command
9918 * fails this function will return ENXIO.
9921 lpfc_wq_create(struct lpfc_hba
*phba
, struct lpfc_queue
*wq
,
9922 struct lpfc_queue
*cq
, uint32_t subtype
)
9924 struct lpfc_mbx_wq_create
*wq_create
;
9925 struct lpfc_dmabuf
*dmabuf
;
9927 int rc
, length
, status
= 0;
9928 uint32_t shdr_status
, shdr_add_status
;
9929 union lpfc_sli4_cfg_shdr
*shdr
;
9931 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
9934 length
= (sizeof(struct lpfc_mbx_wq_create
) -
9935 sizeof(struct lpfc_sli4_cfg_mhdr
));
9936 lpfc_sli4_config(phba
, mbox
, LPFC_MBOX_SUBSYSTEM_FCOE
,
9937 LPFC_MBOX_OPCODE_FCOE_WQ_CREATE
,
9938 length
, LPFC_SLI4_MBX_EMBED
);
9939 wq_create
= &mbox
->u
.mqe
.un
.wq_create
;
9940 bf_set(lpfc_mbx_wq_create_num_pages
, &wq_create
->u
.request
,
9942 bf_set(lpfc_mbx_wq_create_cq_id
, &wq_create
->u
.request
,
9944 list_for_each_entry(dmabuf
, &wq
->page_list
, list
) {
9945 wq_create
->u
.request
.page
[dmabuf
->buffer_tag
].addr_lo
=
9946 putPaddrLow(dmabuf
->phys
);
9947 wq_create
->u
.request
.page
[dmabuf
->buffer_tag
].addr_hi
=
9948 putPaddrHigh(dmabuf
->phys
);
9950 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_POLL
);
9951 /* The IOCTL status is embedded in the mailbox subheader. */
9952 shdr
= (union lpfc_sli4_cfg_shdr
*) &wq_create
->header
.cfg_shdr
;
9953 shdr_status
= bf_get(lpfc_mbox_hdr_status
, &shdr
->response
);
9954 shdr_add_status
= bf_get(lpfc_mbox_hdr_add_status
, &shdr
->response
);
9955 if (shdr_status
|| shdr_add_status
|| rc
) {
9956 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
9957 "2503 WQ_CREATE mailbox failed with "
9958 "status x%x add_status x%x, mbx status x%x\n",
9959 shdr_status
, shdr_add_status
, rc
);
9963 wq
->queue_id
= bf_get(lpfc_mbx_wq_create_q_id
, &wq_create
->u
.response
);
9964 if (wq
->queue_id
== 0xFFFF) {
9969 wq
->subtype
= subtype
;
9973 /* link the wq onto the parent cq child list */
9974 list_add_tail(&wq
->list
, &cq
->child_list
);
9976 mempool_free(mbox
, phba
->mbox_mem_pool
);
9981 * lpfc_rq_create - Create a Receive Queue on the HBA
9982 * @phba: HBA structure that indicates port to create a queue on.
9983 * @hrq: The queue structure to use to create the header receive queue.
9984 * @drq: The queue structure to use to create the data receive queue.
9985 * @cq: The completion queue to bind this work queue to.
9987 * This function creates a receive buffer queue pair , as detailed in @hrq and
9988 * @drq, on a port, described by @phba by sending a RQ_CREATE mailbox command
9991 * The @phba struct is used to send mailbox command to HBA. The @drq and @hrq
9992 * struct is used to get the entry count that is necessary to determine the
9993 * number of pages to use for this queue. The @cq is used to indicate which
9994 * completion queue to bind received buffers that are posted to these queues to.
9995 * This function will send the RQ_CREATE mailbox command to the HBA to setup the
9996 * receive queue pair. This function is asynchronous and will wait for the
9997 * mailbox command to finish before continuing.
9999 * On success this function will return a zero. If unable to allocate enough
10000 * memory this function will return ENOMEM. If the queue create mailbox command
10001 * fails this function will return ENXIO.
10004 lpfc_rq_create(struct lpfc_hba
*phba
, struct lpfc_queue
*hrq
,
10005 struct lpfc_queue
*drq
, struct lpfc_queue
*cq
, uint32_t subtype
)
10007 struct lpfc_mbx_rq_create
*rq_create
;
10008 struct lpfc_dmabuf
*dmabuf
;
10009 LPFC_MBOXQ_t
*mbox
;
10010 int rc
, length
, status
= 0;
10011 uint32_t shdr_status
, shdr_add_status
;
10012 union lpfc_sli4_cfg_shdr
*shdr
;
10014 if (hrq
->entry_count
!= drq
->entry_count
)
10016 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
10019 length
= (sizeof(struct lpfc_mbx_rq_create
) -
10020 sizeof(struct lpfc_sli4_cfg_mhdr
));
10021 lpfc_sli4_config(phba
, mbox
, LPFC_MBOX_SUBSYSTEM_FCOE
,
10022 LPFC_MBOX_OPCODE_FCOE_RQ_CREATE
,
10023 length
, LPFC_SLI4_MBX_EMBED
);
10024 rq_create
= &mbox
->u
.mqe
.un
.rq_create
;
10025 switch (hrq
->entry_count
) {
10027 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
10028 "2535 Unsupported RQ count. (%d)\n",
10030 if (hrq
->entry_count
< 512)
10032 /* otherwise default to smallest count (drop through) */
10034 bf_set(lpfc_rq_context_rq_size
, &rq_create
->u
.request
.context
,
10035 LPFC_RQ_RING_SIZE_512
);
10038 bf_set(lpfc_rq_context_rq_size
, &rq_create
->u
.request
.context
,
10039 LPFC_RQ_RING_SIZE_1024
);
10042 bf_set(lpfc_rq_context_rq_size
, &rq_create
->u
.request
.context
,
10043 LPFC_RQ_RING_SIZE_2048
);
10046 bf_set(lpfc_rq_context_rq_size
, &rq_create
->u
.request
.context
,
10047 LPFC_RQ_RING_SIZE_4096
);
10050 bf_set(lpfc_rq_context_cq_id
, &rq_create
->u
.request
.context
,
10052 bf_set(lpfc_mbx_rq_create_num_pages
, &rq_create
->u
.request
,
10054 bf_set(lpfc_rq_context_buf_size
, &rq_create
->u
.request
.context
,
10055 LPFC_HDR_BUF_SIZE
);
10056 list_for_each_entry(dmabuf
, &hrq
->page_list
, list
) {
10057 rq_create
->u
.request
.page
[dmabuf
->buffer_tag
].addr_lo
=
10058 putPaddrLow(dmabuf
->phys
);
10059 rq_create
->u
.request
.page
[dmabuf
->buffer_tag
].addr_hi
=
10060 putPaddrHigh(dmabuf
->phys
);
10062 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_POLL
);
10063 /* The IOCTL status is embedded in the mailbox subheader. */
10064 shdr
= (union lpfc_sli4_cfg_shdr
*) &rq_create
->header
.cfg_shdr
;
10065 shdr_status
= bf_get(lpfc_mbox_hdr_status
, &shdr
->response
);
10066 shdr_add_status
= bf_get(lpfc_mbox_hdr_add_status
, &shdr
->response
);
10067 if (shdr_status
|| shdr_add_status
|| rc
) {
10068 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
10069 "2504 RQ_CREATE mailbox failed with "
10070 "status x%x add_status x%x, mbx status x%x\n",
10071 shdr_status
, shdr_add_status
, rc
);
10075 hrq
->queue_id
= bf_get(lpfc_mbx_rq_create_q_id
, &rq_create
->u
.response
);
10076 if (hrq
->queue_id
== 0xFFFF) {
10080 hrq
->type
= LPFC_HRQ
;
10081 hrq
->subtype
= subtype
;
10082 hrq
->host_index
= 0;
10083 hrq
->hba_index
= 0;
10085 /* now create the data queue */
10086 lpfc_sli4_config(phba
, mbox
, LPFC_MBOX_SUBSYSTEM_FCOE
,
10087 LPFC_MBOX_OPCODE_FCOE_RQ_CREATE
,
10088 length
, LPFC_SLI4_MBX_EMBED
);
10089 switch (drq
->entry_count
) {
10091 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
10092 "2536 Unsupported RQ count. (%d)\n",
10094 if (drq
->entry_count
< 512)
10096 /* otherwise default to smallest count (drop through) */
10098 bf_set(lpfc_rq_context_rq_size
, &rq_create
->u
.request
.context
,
10099 LPFC_RQ_RING_SIZE_512
);
10102 bf_set(lpfc_rq_context_rq_size
, &rq_create
->u
.request
.context
,
10103 LPFC_RQ_RING_SIZE_1024
);
10106 bf_set(lpfc_rq_context_rq_size
, &rq_create
->u
.request
.context
,
10107 LPFC_RQ_RING_SIZE_2048
);
10110 bf_set(lpfc_rq_context_rq_size
, &rq_create
->u
.request
.context
,
10111 LPFC_RQ_RING_SIZE_4096
);
10114 bf_set(lpfc_rq_context_cq_id
, &rq_create
->u
.request
.context
,
10116 bf_set(lpfc_mbx_rq_create_num_pages
, &rq_create
->u
.request
,
10118 bf_set(lpfc_rq_context_buf_size
, &rq_create
->u
.request
.context
,
10119 LPFC_DATA_BUF_SIZE
);
10120 list_for_each_entry(dmabuf
, &drq
->page_list
, list
) {
10121 rq_create
->u
.request
.page
[dmabuf
->buffer_tag
].addr_lo
=
10122 putPaddrLow(dmabuf
->phys
);
10123 rq_create
->u
.request
.page
[dmabuf
->buffer_tag
].addr_hi
=
10124 putPaddrHigh(dmabuf
->phys
);
10126 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_POLL
);
10127 /* The IOCTL status is embedded in the mailbox subheader. */
10128 shdr
= (union lpfc_sli4_cfg_shdr
*) &rq_create
->header
.cfg_shdr
;
10129 shdr_status
= bf_get(lpfc_mbox_hdr_status
, &shdr
->response
);
10130 shdr_add_status
= bf_get(lpfc_mbox_hdr_add_status
, &shdr
->response
);
10131 if (shdr_status
|| shdr_add_status
|| rc
) {
10135 drq
->queue_id
= bf_get(lpfc_mbx_rq_create_q_id
, &rq_create
->u
.response
);
10136 if (drq
->queue_id
== 0xFFFF) {
10140 drq
->type
= LPFC_DRQ
;
10141 drq
->subtype
= subtype
;
10142 drq
->host_index
= 0;
10143 drq
->hba_index
= 0;
10145 /* link the header and data RQs onto the parent cq child list */
10146 list_add_tail(&hrq
->list
, &cq
->child_list
);
10147 list_add_tail(&drq
->list
, &cq
->child_list
);
10150 mempool_free(mbox
, phba
->mbox_mem_pool
);
10155 * lpfc_eq_destroy - Destroy an event Queue on the HBA
10156 * @eq: The queue structure associated with the queue to destroy.
10158 * This function destroys a queue, as detailed in @eq by sending an mailbox
10159 * command, specific to the type of queue, to the HBA.
10161 * The @eq struct is used to get the queue ID of the queue to destroy.
10163 * On success this function will return a zero. If the queue destroy mailbox
10164 * command fails this function will return ENXIO.
10167 lpfc_eq_destroy(struct lpfc_hba
*phba
, struct lpfc_queue
*eq
)
10169 LPFC_MBOXQ_t
*mbox
;
10170 int rc
, length
, status
= 0;
10171 uint32_t shdr_status
, shdr_add_status
;
10172 union lpfc_sli4_cfg_shdr
*shdr
;
10176 mbox
= mempool_alloc(eq
->phba
->mbox_mem_pool
, GFP_KERNEL
);
10179 length
= (sizeof(struct lpfc_mbx_eq_destroy
) -
10180 sizeof(struct lpfc_sli4_cfg_mhdr
));
10181 lpfc_sli4_config(phba
, mbox
, LPFC_MBOX_SUBSYSTEM_COMMON
,
10182 LPFC_MBOX_OPCODE_EQ_DESTROY
,
10183 length
, LPFC_SLI4_MBX_EMBED
);
10184 bf_set(lpfc_mbx_eq_destroy_q_id
, &mbox
->u
.mqe
.un
.eq_destroy
.u
.request
,
10186 mbox
->vport
= eq
->phba
->pport
;
10187 mbox
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
10189 rc
= lpfc_sli_issue_mbox(eq
->phba
, mbox
, MBX_POLL
);
10190 /* The IOCTL status is embedded in the mailbox subheader. */
10191 shdr
= (union lpfc_sli4_cfg_shdr
*)
10192 &mbox
->u
.mqe
.un
.eq_destroy
.header
.cfg_shdr
;
10193 shdr_status
= bf_get(lpfc_mbox_hdr_status
, &shdr
->response
);
10194 shdr_add_status
= bf_get(lpfc_mbox_hdr_add_status
, &shdr
->response
);
10195 if (shdr_status
|| shdr_add_status
|| rc
) {
10196 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
10197 "2505 EQ_DESTROY mailbox failed with "
10198 "status x%x add_status x%x, mbx status x%x\n",
10199 shdr_status
, shdr_add_status
, rc
);
10203 /* Remove eq from any list */
10204 list_del_init(&eq
->list
);
10205 mempool_free(mbox
, eq
->phba
->mbox_mem_pool
);
10210 * lpfc_cq_destroy - Destroy a Completion Queue on the HBA
10211 * @cq: The queue structure associated with the queue to destroy.
10213 * This function destroys a queue, as detailed in @cq by sending an mailbox
10214 * command, specific to the type of queue, to the HBA.
10216 * The @cq struct is used to get the queue ID of the queue to destroy.
10218 * On success this function will return a zero. If the queue destroy mailbox
10219 * command fails this function will return ENXIO.
10222 lpfc_cq_destroy(struct lpfc_hba
*phba
, struct lpfc_queue
*cq
)
10224 LPFC_MBOXQ_t
*mbox
;
10225 int rc
, length
, status
= 0;
10226 uint32_t shdr_status
, shdr_add_status
;
10227 union lpfc_sli4_cfg_shdr
*shdr
;
10231 mbox
= mempool_alloc(cq
->phba
->mbox_mem_pool
, GFP_KERNEL
);
10234 length
= (sizeof(struct lpfc_mbx_cq_destroy
) -
10235 sizeof(struct lpfc_sli4_cfg_mhdr
));
10236 lpfc_sli4_config(phba
, mbox
, LPFC_MBOX_SUBSYSTEM_COMMON
,
10237 LPFC_MBOX_OPCODE_CQ_DESTROY
,
10238 length
, LPFC_SLI4_MBX_EMBED
);
10239 bf_set(lpfc_mbx_cq_destroy_q_id
, &mbox
->u
.mqe
.un
.cq_destroy
.u
.request
,
10241 mbox
->vport
= cq
->phba
->pport
;
10242 mbox
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
10243 rc
= lpfc_sli_issue_mbox(cq
->phba
, mbox
, MBX_POLL
);
10244 /* The IOCTL status is embedded in the mailbox subheader. */
10245 shdr
= (union lpfc_sli4_cfg_shdr
*)
10246 &mbox
->u
.mqe
.un
.wq_create
.header
.cfg_shdr
;
10247 shdr_status
= bf_get(lpfc_mbox_hdr_status
, &shdr
->response
);
10248 shdr_add_status
= bf_get(lpfc_mbox_hdr_add_status
, &shdr
->response
);
10249 if (shdr_status
|| shdr_add_status
|| rc
) {
10250 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
10251 "2506 CQ_DESTROY mailbox failed with "
10252 "status x%x add_status x%x, mbx status x%x\n",
10253 shdr_status
, shdr_add_status
, rc
);
10256 /* Remove cq from any list */
10257 list_del_init(&cq
->list
);
10258 mempool_free(mbox
, cq
->phba
->mbox_mem_pool
);
10263 * lpfc_mq_destroy - Destroy a Mailbox Queue on the HBA
10264 * @qm: The queue structure associated with the queue to destroy.
10266 * This function destroys a queue, as detailed in @mq by sending an mailbox
10267 * command, specific to the type of queue, to the HBA.
10269 * The @mq struct is used to get the queue ID of the queue to destroy.
10271 * On success this function will return a zero. If the queue destroy mailbox
10272 * command fails this function will return ENXIO.
10275 lpfc_mq_destroy(struct lpfc_hba
*phba
, struct lpfc_queue
*mq
)
10277 LPFC_MBOXQ_t
*mbox
;
10278 int rc
, length
, status
= 0;
10279 uint32_t shdr_status
, shdr_add_status
;
10280 union lpfc_sli4_cfg_shdr
*shdr
;
10284 mbox
= mempool_alloc(mq
->phba
->mbox_mem_pool
, GFP_KERNEL
);
10287 length
= (sizeof(struct lpfc_mbx_mq_destroy
) -
10288 sizeof(struct lpfc_sli4_cfg_mhdr
));
10289 lpfc_sli4_config(phba
, mbox
, LPFC_MBOX_SUBSYSTEM_COMMON
,
10290 LPFC_MBOX_OPCODE_MQ_DESTROY
,
10291 length
, LPFC_SLI4_MBX_EMBED
);
10292 bf_set(lpfc_mbx_mq_destroy_q_id
, &mbox
->u
.mqe
.un
.mq_destroy
.u
.request
,
10294 mbox
->vport
= mq
->phba
->pport
;
10295 mbox
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
10296 rc
= lpfc_sli_issue_mbox(mq
->phba
, mbox
, MBX_POLL
);
10297 /* The IOCTL status is embedded in the mailbox subheader. */
10298 shdr
= (union lpfc_sli4_cfg_shdr
*)
10299 &mbox
->u
.mqe
.un
.mq_destroy
.header
.cfg_shdr
;
10300 shdr_status
= bf_get(lpfc_mbox_hdr_status
, &shdr
->response
);
10301 shdr_add_status
= bf_get(lpfc_mbox_hdr_add_status
, &shdr
->response
);
10302 if (shdr_status
|| shdr_add_status
|| rc
) {
10303 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
10304 "2507 MQ_DESTROY mailbox failed with "
10305 "status x%x add_status x%x, mbx status x%x\n",
10306 shdr_status
, shdr_add_status
, rc
);
10309 /* Remove mq from any list */
10310 list_del_init(&mq
->list
);
10311 mempool_free(mbox
, mq
->phba
->mbox_mem_pool
);
10316 * lpfc_wq_destroy - Destroy a Work Queue on the HBA
10317 * @wq: The queue structure associated with the queue to destroy.
10319 * This function destroys a queue, as detailed in @wq by sending an mailbox
10320 * command, specific to the type of queue, to the HBA.
10322 * The @wq struct is used to get the queue ID of the queue to destroy.
10324 * On success this function will return a zero. If the queue destroy mailbox
10325 * command fails this function will return ENXIO.
10328 lpfc_wq_destroy(struct lpfc_hba
*phba
, struct lpfc_queue
*wq
)
10330 LPFC_MBOXQ_t
*mbox
;
10331 int rc
, length
, status
= 0;
10332 uint32_t shdr_status
, shdr_add_status
;
10333 union lpfc_sli4_cfg_shdr
*shdr
;
10337 mbox
= mempool_alloc(wq
->phba
->mbox_mem_pool
, GFP_KERNEL
);
10340 length
= (sizeof(struct lpfc_mbx_wq_destroy
) -
10341 sizeof(struct lpfc_sli4_cfg_mhdr
));
10342 lpfc_sli4_config(phba
, mbox
, LPFC_MBOX_SUBSYSTEM_FCOE
,
10343 LPFC_MBOX_OPCODE_FCOE_WQ_DESTROY
,
10344 length
, LPFC_SLI4_MBX_EMBED
);
10345 bf_set(lpfc_mbx_wq_destroy_q_id
, &mbox
->u
.mqe
.un
.wq_destroy
.u
.request
,
10347 mbox
->vport
= wq
->phba
->pport
;
10348 mbox
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
10349 rc
= lpfc_sli_issue_mbox(wq
->phba
, mbox
, MBX_POLL
);
10350 shdr
= (union lpfc_sli4_cfg_shdr
*)
10351 &mbox
->u
.mqe
.un
.wq_destroy
.header
.cfg_shdr
;
10352 shdr_status
= bf_get(lpfc_mbox_hdr_status
, &shdr
->response
);
10353 shdr_add_status
= bf_get(lpfc_mbox_hdr_add_status
, &shdr
->response
);
10354 if (shdr_status
|| shdr_add_status
|| rc
) {
10355 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
10356 "2508 WQ_DESTROY mailbox failed with "
10357 "status x%x add_status x%x, mbx status x%x\n",
10358 shdr_status
, shdr_add_status
, rc
);
10361 /* Remove wq from any list */
10362 list_del_init(&wq
->list
);
10363 mempool_free(mbox
, wq
->phba
->mbox_mem_pool
);
10368 * lpfc_rq_destroy - Destroy a Receive Queue on the HBA
10369 * @rq: The queue structure associated with the queue to destroy.
10371 * This function destroys a queue, as detailed in @rq by sending an mailbox
10372 * command, specific to the type of queue, to the HBA.
10374 * The @rq struct is used to get the queue ID of the queue to destroy.
10376 * On success this function will return a zero. If the queue destroy mailbox
10377 * command fails this function will return ENXIO.
10380 lpfc_rq_destroy(struct lpfc_hba
*phba
, struct lpfc_queue
*hrq
,
10381 struct lpfc_queue
*drq
)
10383 LPFC_MBOXQ_t
*mbox
;
10384 int rc
, length
, status
= 0;
10385 uint32_t shdr_status
, shdr_add_status
;
10386 union lpfc_sli4_cfg_shdr
*shdr
;
10390 mbox
= mempool_alloc(hrq
->phba
->mbox_mem_pool
, GFP_KERNEL
);
10393 length
= (sizeof(struct lpfc_mbx_rq_destroy
) -
10394 sizeof(struct mbox_header
));
10395 lpfc_sli4_config(phba
, mbox
, LPFC_MBOX_SUBSYSTEM_FCOE
,
10396 LPFC_MBOX_OPCODE_FCOE_RQ_DESTROY
,
10397 length
, LPFC_SLI4_MBX_EMBED
);
10398 bf_set(lpfc_mbx_rq_destroy_q_id
, &mbox
->u
.mqe
.un
.rq_destroy
.u
.request
,
10400 mbox
->vport
= hrq
->phba
->pport
;
10401 mbox
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
10402 rc
= lpfc_sli_issue_mbox(hrq
->phba
, mbox
, MBX_POLL
);
10403 /* The IOCTL status is embedded in the mailbox subheader. */
10404 shdr
= (union lpfc_sli4_cfg_shdr
*)
10405 &mbox
->u
.mqe
.un
.rq_destroy
.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 (shdr_status
|| shdr_add_status
|| rc
) {
10409 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
10410 "2509 RQ_DESTROY mailbox failed with "
10411 "status x%x add_status x%x, mbx status x%x\n",
10412 shdr_status
, shdr_add_status
, rc
);
10413 if (rc
!= MBX_TIMEOUT
)
10414 mempool_free(mbox
, hrq
->phba
->mbox_mem_pool
);
10417 bf_set(lpfc_mbx_rq_destroy_q_id
, &mbox
->u
.mqe
.un
.rq_destroy
.u
.request
,
10419 rc
= lpfc_sli_issue_mbox(drq
->phba
, mbox
, MBX_POLL
);
10420 shdr
= (union lpfc_sli4_cfg_shdr
*)
10421 &mbox
->u
.mqe
.un
.rq_destroy
.header
.cfg_shdr
;
10422 shdr_status
= bf_get(lpfc_mbox_hdr_status
, &shdr
->response
);
10423 shdr_add_status
= bf_get(lpfc_mbox_hdr_add_status
, &shdr
->response
);
10424 if (shdr_status
|| shdr_add_status
|| rc
) {
10425 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
10426 "2510 RQ_DESTROY mailbox failed with "
10427 "status x%x add_status x%x, mbx status x%x\n",
10428 shdr_status
, shdr_add_status
, rc
);
10431 list_del_init(&hrq
->list
);
10432 list_del_init(&drq
->list
);
10433 mempool_free(mbox
, hrq
->phba
->mbox_mem_pool
);
10438 * lpfc_sli4_post_sgl - Post scatter gather list for an XRI to HBA
10439 * @phba: The virtual port for which this call being executed.
10440 * @pdma_phys_addr0: Physical address of the 1st SGL page.
10441 * @pdma_phys_addr1: Physical address of the 2nd SGL page.
10442 * @xritag: the xritag that ties this io to the SGL pages.
10444 * This routine will post the sgl pages for the IO that has the xritag
10445 * that is in the iocbq structure. The xritag is assigned during iocbq
10446 * creation and persists for as long as the driver is loaded.
10447 * if the caller has fewer than 256 scatter gather segments to map then
10448 * pdma_phys_addr1 should be 0.
10449 * If the caller needs to map more than 256 scatter gather segment then
10450 * pdma_phys_addr1 should be a valid physical address.
10451 * physical address for SGLs must be 64 byte aligned.
10452 * If you are going to map 2 SGL's then the first one must have 256 entries
10453 * the second sgl can have between 1 and 256 entries.
10457 * -ENXIO, -ENOMEM - Failure
10460 lpfc_sli4_post_sgl(struct lpfc_hba
*phba
,
10461 dma_addr_t pdma_phys_addr0
,
10462 dma_addr_t pdma_phys_addr1
,
10465 struct lpfc_mbx_post_sgl_pages
*post_sgl_pages
;
10466 LPFC_MBOXQ_t
*mbox
;
10468 uint32_t shdr_status
, shdr_add_status
;
10469 union lpfc_sli4_cfg_shdr
*shdr
;
10471 if (xritag
== NO_XRI
) {
10472 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
10473 "0364 Invalid param:\n");
10477 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
10481 lpfc_sli4_config(phba
, mbox
, LPFC_MBOX_SUBSYSTEM_FCOE
,
10482 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES
,
10483 sizeof(struct lpfc_mbx_post_sgl_pages
) -
10484 sizeof(struct mbox_header
), LPFC_SLI4_MBX_EMBED
);
10486 post_sgl_pages
= (struct lpfc_mbx_post_sgl_pages
*)
10487 &mbox
->u
.mqe
.un
.post_sgl_pages
;
10488 bf_set(lpfc_post_sgl_pages_xri
, post_sgl_pages
, xritag
);
10489 bf_set(lpfc_post_sgl_pages_xricnt
, post_sgl_pages
, 1);
10491 post_sgl_pages
->sgl_pg_pairs
[0].sgl_pg0_addr_lo
=
10492 cpu_to_le32(putPaddrLow(pdma_phys_addr0
));
10493 post_sgl_pages
->sgl_pg_pairs
[0].sgl_pg0_addr_hi
=
10494 cpu_to_le32(putPaddrHigh(pdma_phys_addr0
));
10496 post_sgl_pages
->sgl_pg_pairs
[0].sgl_pg1_addr_lo
=
10497 cpu_to_le32(putPaddrLow(pdma_phys_addr1
));
10498 post_sgl_pages
->sgl_pg_pairs
[0].sgl_pg1_addr_hi
=
10499 cpu_to_le32(putPaddrHigh(pdma_phys_addr1
));
10500 if (!phba
->sli4_hba
.intr_enable
)
10501 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_POLL
);
10503 rc
= lpfc_sli_issue_mbox_wait(phba
, mbox
, LPFC_MBOX_TMO
);
10504 /* The IOCTL status is embedded in the mailbox subheader. */
10505 shdr
= (union lpfc_sli4_cfg_shdr
*) &post_sgl_pages
->header
.cfg_shdr
;
10506 shdr_status
= bf_get(lpfc_mbox_hdr_status
, &shdr
->response
);
10507 shdr_add_status
= bf_get(lpfc_mbox_hdr_add_status
, &shdr
->response
);
10508 if (rc
!= MBX_TIMEOUT
)
10509 mempool_free(mbox
, phba
->mbox_mem_pool
);
10510 if (shdr_status
|| shdr_add_status
|| rc
) {
10511 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
10512 "2511 POST_SGL mailbox failed with "
10513 "status x%x add_status x%x, mbx status x%x\n",
10514 shdr_status
, shdr_add_status
, rc
);
10520 * lpfc_sli4_remove_all_sgl_pages - Post scatter gather list for an XRI to HBA
10521 * @phba: The virtual port for which this call being executed.
10523 * This routine will remove all of the sgl pages registered with the hba.
10527 * -ENXIO, -ENOMEM - Failure
10530 lpfc_sli4_remove_all_sgl_pages(struct lpfc_hba
*phba
)
10532 LPFC_MBOXQ_t
*mbox
;
10534 uint32_t shdr_status
, shdr_add_status
;
10535 union lpfc_sli4_cfg_shdr
*shdr
;
10537 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
10541 lpfc_sli4_config(phba
, mbox
, LPFC_MBOX_SUBSYSTEM_FCOE
,
10542 LPFC_MBOX_OPCODE_FCOE_REMOVE_SGL_PAGES
, 0,
10543 LPFC_SLI4_MBX_EMBED
);
10544 if (!phba
->sli4_hba
.intr_enable
)
10545 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_POLL
);
10547 rc
= lpfc_sli_issue_mbox_wait(phba
, mbox
, LPFC_MBOX_TMO
);
10548 /* The IOCTL status is embedded in the mailbox subheader. */
10549 shdr
= (union lpfc_sli4_cfg_shdr
*)
10550 &mbox
->u
.mqe
.un
.sli4_config
.header
.cfg_shdr
;
10551 shdr_status
= bf_get(lpfc_mbox_hdr_status
, &shdr
->response
);
10552 shdr_add_status
= bf_get(lpfc_mbox_hdr_add_status
, &shdr
->response
);
10553 if (rc
!= MBX_TIMEOUT
)
10554 mempool_free(mbox
, phba
->mbox_mem_pool
);
10555 if (shdr_status
|| shdr_add_status
|| rc
) {
10556 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
10557 "2512 REMOVE_ALL_SGL_PAGES mailbox failed with "
10558 "status x%x add_status x%x, mbx status x%x\n",
10559 shdr_status
, shdr_add_status
, rc
);
10566 * lpfc_sli4_next_xritag - Get an xritag for the io
10567 * @phba: Pointer to HBA context object.
10569 * This function gets an xritag for the iocb. If there is no unused xritag
10570 * it will return 0xffff.
10571 * The function returns the allocated xritag if successful, else returns zero.
10572 * Zero is not a valid xritag.
10573 * The caller is not required to hold any lock.
10576 lpfc_sli4_next_xritag(struct lpfc_hba
*phba
)
10580 spin_lock_irq(&phba
->hbalock
);
10581 xritag
= phba
->sli4_hba
.next_xri
;
10582 if ((xritag
!= (uint16_t) -1) && xritag
<
10583 (phba
->sli4_hba
.max_cfg_param
.max_xri
10584 + phba
->sli4_hba
.max_cfg_param
.xri_base
)) {
10585 phba
->sli4_hba
.next_xri
++;
10586 phba
->sli4_hba
.max_cfg_param
.xri_used
++;
10587 spin_unlock_irq(&phba
->hbalock
);
10590 spin_unlock_irq(&phba
->hbalock
);
10591 lpfc_printf_log(phba
, KERN_WARNING
, LOG_SLI
,
10592 "2004 Failed to allocate XRI.last XRITAG is %d"
10593 " Max XRI is %d, Used XRI is %d\n",
10594 phba
->sli4_hba
.next_xri
,
10595 phba
->sli4_hba
.max_cfg_param
.max_xri
,
10596 phba
->sli4_hba
.max_cfg_param
.xri_used
);
10601 * lpfc_sli4_post_sgl_list - post a block of sgl list to the firmware.
10602 * @phba: pointer to lpfc hba data structure.
10604 * This routine is invoked to post a block of driver's sgl pages to the
10605 * HBA using non-embedded mailbox command. No Lock is held. This routine
10606 * is only called when the driver is loading and after all IO has been
10610 lpfc_sli4_post_sgl_list(struct lpfc_hba
*phba
)
10612 struct lpfc_sglq
*sglq_entry
;
10613 struct lpfc_mbx_post_uembed_sgl_page1
*sgl
;
10614 struct sgl_page_pairs
*sgl_pg_pairs
;
10616 LPFC_MBOXQ_t
*mbox
;
10617 uint32_t reqlen
, alloclen
, pg_pairs
;
10619 uint16_t xritag_start
= 0;
10620 int els_xri_cnt
, rc
= 0;
10621 uint32_t shdr_status
, shdr_add_status
;
10622 union lpfc_sli4_cfg_shdr
*shdr
;
10624 /* The number of sgls to be posted */
10625 els_xri_cnt
= lpfc_sli4_get_els_iocb_cnt(phba
);
10627 reqlen
= els_xri_cnt
* sizeof(struct sgl_page_pairs
) +
10628 sizeof(union lpfc_sli4_cfg_shdr
) + sizeof(uint32_t);
10629 if (reqlen
> PAGE_SIZE
) {
10630 lpfc_printf_log(phba
, KERN_WARNING
, LOG_INIT
,
10631 "2559 Block sgl registration required DMA "
10632 "size (%d) great than a page\n", reqlen
);
10635 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
10637 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
10638 "2560 Failed to allocate mbox cmd memory\n");
10642 /* Allocate DMA memory and set up the non-embedded mailbox command */
10643 alloclen
= lpfc_sli4_config(phba
, mbox
, LPFC_MBOX_SUBSYSTEM_FCOE
,
10644 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES
, reqlen
,
10645 LPFC_SLI4_MBX_NEMBED
);
10647 if (alloclen
< reqlen
) {
10648 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
10649 "0285 Allocated DMA memory size (%d) is "
10650 "less than the requested DMA memory "
10651 "size (%d)\n", alloclen
, reqlen
);
10652 lpfc_sli4_mbox_cmd_free(phba
, mbox
);
10655 /* Get the first SGE entry from the non-embedded DMA memory */
10656 viraddr
= mbox
->sge_array
->addr
[0];
10658 /* Set up the SGL pages in the non-embedded DMA pages */
10659 sgl
= (struct lpfc_mbx_post_uembed_sgl_page1
*)viraddr
;
10660 sgl_pg_pairs
= &sgl
->sgl_pg_pairs
;
10662 for (pg_pairs
= 0; pg_pairs
< els_xri_cnt
; pg_pairs
++) {
10663 sglq_entry
= phba
->sli4_hba
.lpfc_els_sgl_array
[pg_pairs
];
10664 /* Set up the sge entry */
10665 sgl_pg_pairs
->sgl_pg0_addr_lo
=
10666 cpu_to_le32(putPaddrLow(sglq_entry
->phys
));
10667 sgl_pg_pairs
->sgl_pg0_addr_hi
=
10668 cpu_to_le32(putPaddrHigh(sglq_entry
->phys
));
10669 sgl_pg_pairs
->sgl_pg1_addr_lo
=
10670 cpu_to_le32(putPaddrLow(0));
10671 sgl_pg_pairs
->sgl_pg1_addr_hi
=
10672 cpu_to_le32(putPaddrHigh(0));
10673 /* Keep the first xritag on the list */
10675 xritag_start
= sglq_entry
->sli4_xritag
;
10678 bf_set(lpfc_post_sgl_pages_xri
, sgl
, xritag_start
);
10679 bf_set(lpfc_post_sgl_pages_xricnt
, sgl
, els_xri_cnt
);
10680 /* Perform endian conversion if necessary */
10681 sgl
->word0
= cpu_to_le32(sgl
->word0
);
10683 if (!phba
->sli4_hba
.intr_enable
)
10684 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_POLL
);
10686 mbox_tmo
= lpfc_mbox_tmo_val(phba
, MBX_SLI4_CONFIG
);
10687 rc
= lpfc_sli_issue_mbox_wait(phba
, mbox
, mbox_tmo
);
10689 shdr
= (union lpfc_sli4_cfg_shdr
*) &sgl
->cfg_shdr
;
10690 shdr_status
= bf_get(lpfc_mbox_hdr_status
, &shdr
->response
);
10691 shdr_add_status
= bf_get(lpfc_mbox_hdr_add_status
, &shdr
->response
);
10692 if (rc
!= MBX_TIMEOUT
)
10693 lpfc_sli4_mbox_cmd_free(phba
, mbox
);
10694 if (shdr_status
|| shdr_add_status
|| rc
) {
10695 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
10696 "2513 POST_SGL_BLOCK mailbox command failed "
10697 "status x%x add_status x%x mbx status x%x\n",
10698 shdr_status
, shdr_add_status
, rc
);
10705 * lpfc_sli4_post_scsi_sgl_block - post a block of scsi sgl list to firmware
10706 * @phba: pointer to lpfc hba data structure.
10707 * @sblist: pointer to scsi buffer list.
10708 * @count: number of scsi buffers on the list.
10710 * This routine is invoked to post a block of @count scsi sgl pages from a
10711 * SCSI buffer list @sblist to the HBA using non-embedded mailbox command.
10716 lpfc_sli4_post_scsi_sgl_block(struct lpfc_hba
*phba
, struct list_head
*sblist
,
10719 struct lpfc_scsi_buf
*psb
;
10720 struct lpfc_mbx_post_uembed_sgl_page1
*sgl
;
10721 struct sgl_page_pairs
*sgl_pg_pairs
;
10723 LPFC_MBOXQ_t
*mbox
;
10724 uint32_t reqlen
, alloclen
, pg_pairs
;
10726 uint16_t xritag_start
= 0;
10728 uint32_t shdr_status
, shdr_add_status
;
10729 dma_addr_t pdma_phys_bpl1
;
10730 union lpfc_sli4_cfg_shdr
*shdr
;
10732 /* Calculate the requested length of the dma memory */
10733 reqlen
= cnt
* sizeof(struct sgl_page_pairs
) +
10734 sizeof(union lpfc_sli4_cfg_shdr
) + sizeof(uint32_t);
10735 if (reqlen
> PAGE_SIZE
) {
10736 lpfc_printf_log(phba
, KERN_WARNING
, LOG_INIT
,
10737 "0217 Block sgl registration required DMA "
10738 "size (%d) great than a page\n", reqlen
);
10741 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
10743 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
10744 "0283 Failed to allocate mbox cmd memory\n");
10748 /* Allocate DMA memory and set up the non-embedded mailbox command */
10749 alloclen
= lpfc_sli4_config(phba
, mbox
, LPFC_MBOX_SUBSYSTEM_FCOE
,
10750 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES
, reqlen
,
10751 LPFC_SLI4_MBX_NEMBED
);
10753 if (alloclen
< reqlen
) {
10754 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
10755 "2561 Allocated DMA memory size (%d) is "
10756 "less than the requested DMA memory "
10757 "size (%d)\n", alloclen
, reqlen
);
10758 lpfc_sli4_mbox_cmd_free(phba
, mbox
);
10761 /* Get the first SGE entry from the non-embedded DMA memory */
10762 viraddr
= mbox
->sge_array
->addr
[0];
10764 /* Set up the SGL pages in the non-embedded DMA pages */
10765 sgl
= (struct lpfc_mbx_post_uembed_sgl_page1
*)viraddr
;
10766 sgl_pg_pairs
= &sgl
->sgl_pg_pairs
;
10769 list_for_each_entry(psb
, sblist
, list
) {
10770 /* Set up the sge entry */
10771 sgl_pg_pairs
->sgl_pg0_addr_lo
=
10772 cpu_to_le32(putPaddrLow(psb
->dma_phys_bpl
));
10773 sgl_pg_pairs
->sgl_pg0_addr_hi
=
10774 cpu_to_le32(putPaddrHigh(psb
->dma_phys_bpl
));
10775 if (phba
->cfg_sg_dma_buf_size
> SGL_PAGE_SIZE
)
10776 pdma_phys_bpl1
= psb
->dma_phys_bpl
+ SGL_PAGE_SIZE
;
10778 pdma_phys_bpl1
= 0;
10779 sgl_pg_pairs
->sgl_pg1_addr_lo
=
10780 cpu_to_le32(putPaddrLow(pdma_phys_bpl1
));
10781 sgl_pg_pairs
->sgl_pg1_addr_hi
=
10782 cpu_to_le32(putPaddrHigh(pdma_phys_bpl1
));
10783 /* Keep the first xritag on the list */
10785 xritag_start
= psb
->cur_iocbq
.sli4_xritag
;
10789 bf_set(lpfc_post_sgl_pages_xri
, sgl
, xritag_start
);
10790 bf_set(lpfc_post_sgl_pages_xricnt
, sgl
, pg_pairs
);
10791 /* Perform endian conversion if necessary */
10792 sgl
->word0
= cpu_to_le32(sgl
->word0
);
10794 if (!phba
->sli4_hba
.intr_enable
)
10795 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_POLL
);
10797 mbox_tmo
= lpfc_mbox_tmo_val(phba
, MBX_SLI4_CONFIG
);
10798 rc
= lpfc_sli_issue_mbox_wait(phba
, mbox
, mbox_tmo
);
10800 shdr
= (union lpfc_sli4_cfg_shdr
*) &sgl
->cfg_shdr
;
10801 shdr_status
= bf_get(lpfc_mbox_hdr_status
, &shdr
->response
);
10802 shdr_add_status
= bf_get(lpfc_mbox_hdr_add_status
, &shdr
->response
);
10803 if (rc
!= MBX_TIMEOUT
)
10804 lpfc_sli4_mbox_cmd_free(phba
, mbox
);
10805 if (shdr_status
|| shdr_add_status
|| rc
) {
10806 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
10807 "2564 POST_SGL_BLOCK mailbox command failed "
10808 "status x%x add_status x%x mbx status x%x\n",
10809 shdr_status
, shdr_add_status
, rc
);
10816 * lpfc_fc_frame_check - Check that this frame is a valid frame to handle
10817 * @phba: pointer to lpfc_hba struct that the frame was received on
10818 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
10820 * This function checks the fields in the @fc_hdr to see if the FC frame is a
10821 * valid type of frame that the LPFC driver will handle. This function will
10822 * return a zero if the frame is a valid frame or a non zero value when the
10823 * frame does not pass the check.
10826 lpfc_fc_frame_check(struct lpfc_hba
*phba
, struct fc_frame_header
*fc_hdr
)
10828 char *rctl_names
[] = FC_RCTL_NAMES_INIT
;
10829 char *type_names
[] = FC_TYPE_NAMES_INIT
;
10830 struct fc_vft_header
*fc_vft_hdr
;
10832 switch (fc_hdr
->fh_r_ctl
) {
10833 case FC_RCTL_DD_UNCAT
: /* uncategorized information */
10834 case FC_RCTL_DD_SOL_DATA
: /* solicited data */
10835 case FC_RCTL_DD_UNSOL_CTL
: /* unsolicited control */
10836 case FC_RCTL_DD_SOL_CTL
: /* solicited control or reply */
10837 case FC_RCTL_DD_UNSOL_DATA
: /* unsolicited data */
10838 case FC_RCTL_DD_DATA_DESC
: /* data descriptor */
10839 case FC_RCTL_DD_UNSOL_CMD
: /* unsolicited command */
10840 case FC_RCTL_DD_CMD_STATUS
: /* command status */
10841 case FC_RCTL_ELS_REQ
: /* extended link services request */
10842 case FC_RCTL_ELS_REP
: /* extended link services reply */
10843 case FC_RCTL_ELS4_REQ
: /* FC-4 ELS request */
10844 case FC_RCTL_ELS4_REP
: /* FC-4 ELS reply */
10845 case FC_RCTL_BA_NOP
: /* basic link service NOP */
10846 case FC_RCTL_BA_ABTS
: /* basic link service abort */
10847 case FC_RCTL_BA_RMC
: /* remove connection */
10848 case FC_RCTL_BA_ACC
: /* basic accept */
10849 case FC_RCTL_BA_RJT
: /* basic reject */
10850 case FC_RCTL_BA_PRMT
:
10851 case FC_RCTL_ACK_1
: /* acknowledge_1 */
10852 case FC_RCTL_ACK_0
: /* acknowledge_0 */
10853 case FC_RCTL_P_RJT
: /* port reject */
10854 case FC_RCTL_F_RJT
: /* fabric reject */
10855 case FC_RCTL_P_BSY
: /* port busy */
10856 case FC_RCTL_F_BSY
: /* fabric busy to data frame */
10857 case FC_RCTL_F_BSYL
: /* fabric busy to link control frame */
10858 case FC_RCTL_LCR
: /* link credit reset */
10859 case FC_RCTL_END
: /* end */
10861 case FC_RCTL_VFTH
: /* Virtual Fabric tagging Header */
10862 fc_vft_hdr
= (struct fc_vft_header
*)fc_hdr
;
10863 fc_hdr
= &((struct fc_frame_header
*)fc_vft_hdr
)[1];
10864 return lpfc_fc_frame_check(phba
, fc_hdr
);
10868 switch (fc_hdr
->fh_type
) {
10879 lpfc_printf_log(phba
, KERN_INFO
, LOG_ELS
,
10880 "2538 Received frame rctl:%s type:%s\n",
10881 rctl_names
[fc_hdr
->fh_r_ctl
],
10882 type_names
[fc_hdr
->fh_type
]);
10885 lpfc_printf_log(phba
, KERN_WARNING
, LOG_ELS
,
10886 "2539 Dropped frame rctl:%s type:%s\n",
10887 rctl_names
[fc_hdr
->fh_r_ctl
],
10888 type_names
[fc_hdr
->fh_type
]);
10893 * lpfc_fc_hdr_get_vfi - Get the VFI from an FC frame
10894 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
10896 * This function processes the FC header to retrieve the VFI from the VF
10897 * header, if one exists. This function will return the VFI if one exists
10898 * or 0 if no VSAN Header exists.
10901 lpfc_fc_hdr_get_vfi(struct fc_frame_header
*fc_hdr
)
10903 struct fc_vft_header
*fc_vft_hdr
= (struct fc_vft_header
*)fc_hdr
;
10905 if (fc_hdr
->fh_r_ctl
!= FC_RCTL_VFTH
)
10907 return bf_get(fc_vft_hdr_vf_id
, fc_vft_hdr
);
10911 * lpfc_fc_frame_to_vport - Finds the vport that a frame is destined to
10912 * @phba: Pointer to the HBA structure to search for the vport on
10913 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
10914 * @fcfi: The FC Fabric ID that the frame came from
10916 * This function searches the @phba for a vport that matches the content of the
10917 * @fc_hdr passed in and the @fcfi. This function uses the @fc_hdr to fetch the
10918 * VFI, if the Virtual Fabric Tagging Header exists, and the DID. This function
10919 * returns the matching vport pointer or NULL if unable to match frame to a
10922 static struct lpfc_vport
*
10923 lpfc_fc_frame_to_vport(struct lpfc_hba
*phba
, struct fc_frame_header
*fc_hdr
,
10926 struct lpfc_vport
**vports
;
10927 struct lpfc_vport
*vport
= NULL
;
10929 uint32_t did
= (fc_hdr
->fh_d_id
[0] << 16 |
10930 fc_hdr
->fh_d_id
[1] << 8 |
10931 fc_hdr
->fh_d_id
[2]);
10933 vports
= lpfc_create_vport_work_array(phba
);
10934 if (vports
!= NULL
)
10935 for (i
= 0; i
<= phba
->max_vpi
&& vports
[i
] != NULL
; i
++) {
10936 if (phba
->fcf
.fcfi
== fcfi
&&
10937 vports
[i
]->vfi
== lpfc_fc_hdr_get_vfi(fc_hdr
) &&
10938 vports
[i
]->fc_myDID
== did
) {
10943 lpfc_destroy_vport_work_array(phba
, vports
);
10948 * lpfc_update_rcv_time_stamp - Update vport's rcv seq time stamp
10949 * @vport: The vport to work on.
10951 * This function updates the receive sequence time stamp for this vport. The
10952 * receive sequence time stamp indicates the time that the last frame of the
10953 * the sequence that has been idle for the longest amount of time was received.
10954 * the driver uses this time stamp to indicate if any received sequences have
10958 lpfc_update_rcv_time_stamp(struct lpfc_vport
*vport
)
10960 struct lpfc_dmabuf
*h_buf
;
10961 struct hbq_dmabuf
*dmabuf
= NULL
;
10963 /* get the oldest sequence on the rcv list */
10964 h_buf
= list_get_first(&vport
->rcv_buffer_list
,
10965 struct lpfc_dmabuf
, list
);
10968 dmabuf
= container_of(h_buf
, struct hbq_dmabuf
, hbuf
);
10969 vport
->rcv_buffer_time_stamp
= dmabuf
->time_stamp
;
10973 * lpfc_cleanup_rcv_buffers - Cleans up all outstanding receive sequences.
10974 * @vport: The vport that the received sequences were sent to.
10976 * This function cleans up all outstanding received sequences. This is called
10977 * by the driver when a link event or user action invalidates all the received
10981 lpfc_cleanup_rcv_buffers(struct lpfc_vport
*vport
)
10983 struct lpfc_dmabuf
*h_buf
, *hnext
;
10984 struct lpfc_dmabuf
*d_buf
, *dnext
;
10985 struct hbq_dmabuf
*dmabuf
= NULL
;
10987 /* start with the oldest sequence on the rcv list */
10988 list_for_each_entry_safe(h_buf
, hnext
, &vport
->rcv_buffer_list
, list
) {
10989 dmabuf
= container_of(h_buf
, struct hbq_dmabuf
, hbuf
);
10990 list_del_init(&dmabuf
->hbuf
.list
);
10991 list_for_each_entry_safe(d_buf
, dnext
,
10992 &dmabuf
->dbuf
.list
, list
) {
10993 list_del_init(&d_buf
->list
);
10994 lpfc_in_buf_free(vport
->phba
, d_buf
);
10996 lpfc_in_buf_free(vport
->phba
, &dmabuf
->dbuf
);
11001 * lpfc_rcv_seq_check_edtov - Cleans up timed out receive sequences.
11002 * @vport: The vport that the received sequences were sent to.
11004 * This function determines whether any received sequences have timed out by
11005 * first checking the vport's rcv_buffer_time_stamp. If this time_stamp
11006 * indicates that there is at least one timed out sequence this routine will
11007 * go through the received sequences one at a time from most inactive to most
11008 * active to determine which ones need to be cleaned up. Once it has determined
11009 * that a sequence needs to be cleaned up it will simply free up the resources
11010 * without sending an abort.
11013 lpfc_rcv_seq_check_edtov(struct lpfc_vport
*vport
)
11015 struct lpfc_dmabuf
*h_buf
, *hnext
;
11016 struct lpfc_dmabuf
*d_buf
, *dnext
;
11017 struct hbq_dmabuf
*dmabuf
= NULL
;
11018 unsigned long timeout
;
11019 int abort_count
= 0;
11021 timeout
= (msecs_to_jiffies(vport
->phba
->fc_edtov
) +
11022 vport
->rcv_buffer_time_stamp
);
11023 if (list_empty(&vport
->rcv_buffer_list
) ||
11024 time_before(jiffies
, timeout
))
11026 /* start with the oldest sequence on the rcv list */
11027 list_for_each_entry_safe(h_buf
, hnext
, &vport
->rcv_buffer_list
, list
) {
11028 dmabuf
= container_of(h_buf
, struct hbq_dmabuf
, hbuf
);
11029 timeout
= (msecs_to_jiffies(vport
->phba
->fc_edtov
) +
11030 dmabuf
->time_stamp
);
11031 if (time_before(jiffies
, timeout
))
11034 list_del_init(&dmabuf
->hbuf
.list
);
11035 list_for_each_entry_safe(d_buf
, dnext
,
11036 &dmabuf
->dbuf
.list
, list
) {
11037 list_del_init(&d_buf
->list
);
11038 lpfc_in_buf_free(vport
->phba
, d_buf
);
11040 lpfc_in_buf_free(vport
->phba
, &dmabuf
->dbuf
);
11043 lpfc_update_rcv_time_stamp(vport
);
11047 * lpfc_fc_frame_add - Adds a frame to the vport's list of received sequences
11048 * @dmabuf: pointer to a dmabuf that describes the hdr and data of the FC frame
11050 * This function searches through the existing incomplete sequences that have
11051 * been sent to this @vport. If the frame matches one of the incomplete
11052 * sequences then the dbuf in the @dmabuf is added to the list of frames that
11053 * make up that sequence. If no sequence is found that matches this frame then
11054 * the function will add the hbuf in the @dmabuf to the @vport's rcv_buffer_list
11055 * This function returns a pointer to the first dmabuf in the sequence list that
11056 * the frame was linked to.
11058 static struct hbq_dmabuf
*
11059 lpfc_fc_frame_add(struct lpfc_vport
*vport
, struct hbq_dmabuf
*dmabuf
)
11061 struct fc_frame_header
*new_hdr
;
11062 struct fc_frame_header
*temp_hdr
;
11063 struct lpfc_dmabuf
*d_buf
;
11064 struct lpfc_dmabuf
*h_buf
;
11065 struct hbq_dmabuf
*seq_dmabuf
= NULL
;
11066 struct hbq_dmabuf
*temp_dmabuf
= NULL
;
11068 INIT_LIST_HEAD(&dmabuf
->dbuf
.list
);
11069 dmabuf
->time_stamp
= jiffies
;
11070 new_hdr
= (struct fc_frame_header
*)dmabuf
->hbuf
.virt
;
11071 /* Use the hdr_buf to find the sequence that this frame belongs to */
11072 list_for_each_entry(h_buf
, &vport
->rcv_buffer_list
, list
) {
11073 temp_hdr
= (struct fc_frame_header
*)h_buf
->virt
;
11074 if ((temp_hdr
->fh_seq_id
!= new_hdr
->fh_seq_id
) ||
11075 (temp_hdr
->fh_ox_id
!= new_hdr
->fh_ox_id
) ||
11076 (memcmp(&temp_hdr
->fh_s_id
, &new_hdr
->fh_s_id
, 3)))
11078 /* found a pending sequence that matches this frame */
11079 seq_dmabuf
= container_of(h_buf
, struct hbq_dmabuf
, hbuf
);
11084 * This indicates first frame received for this sequence.
11085 * Queue the buffer on the vport's rcv_buffer_list.
11087 list_add_tail(&dmabuf
->hbuf
.list
, &vport
->rcv_buffer_list
);
11088 lpfc_update_rcv_time_stamp(vport
);
11091 temp_hdr
= seq_dmabuf
->hbuf
.virt
;
11092 if (be16_to_cpu(new_hdr
->fh_seq_cnt
) <
11093 be16_to_cpu(temp_hdr
->fh_seq_cnt
)) {
11094 list_del_init(&seq_dmabuf
->hbuf
.list
);
11095 list_add_tail(&dmabuf
->hbuf
.list
, &vport
->rcv_buffer_list
);
11096 list_add_tail(&dmabuf
->dbuf
.list
, &seq_dmabuf
->dbuf
.list
);
11097 lpfc_update_rcv_time_stamp(vport
);
11100 /* move this sequence to the tail to indicate a young sequence */
11101 list_move_tail(&seq_dmabuf
->hbuf
.list
, &vport
->rcv_buffer_list
);
11102 seq_dmabuf
->time_stamp
= jiffies
;
11103 lpfc_update_rcv_time_stamp(vport
);
11104 if (list_empty(&seq_dmabuf
->dbuf
.list
)) {
11105 temp_hdr
= dmabuf
->hbuf
.virt
;
11106 list_add_tail(&dmabuf
->dbuf
.list
, &seq_dmabuf
->dbuf
.list
);
11109 /* find the correct place in the sequence to insert this frame */
11110 list_for_each_entry_reverse(d_buf
, &seq_dmabuf
->dbuf
.list
, list
) {
11111 temp_dmabuf
= container_of(d_buf
, struct hbq_dmabuf
, dbuf
);
11112 temp_hdr
= (struct fc_frame_header
*)temp_dmabuf
->hbuf
.virt
;
11114 * If the frame's sequence count is greater than the frame on
11115 * the list then insert the frame right after this frame
11117 if (be16_to_cpu(new_hdr
->fh_seq_cnt
) >
11118 be16_to_cpu(temp_hdr
->fh_seq_cnt
)) {
11119 list_add(&dmabuf
->dbuf
.list
, &temp_dmabuf
->dbuf
.list
);
11127 * lpfc_sli4_abort_partial_seq - Abort partially assembled unsol sequence
11128 * @vport: pointer to a vitural port
11129 * @dmabuf: pointer to a dmabuf that describes the FC sequence
11131 * This function tries to abort from the partially assembed sequence, described
11132 * by the information from basic abbort @dmabuf. It checks to see whether such
11133 * partially assembled sequence held by the driver. If so, it shall free up all
11134 * the frames from the partially assembled sequence.
11137 * true -- if there is matching partially assembled sequence present and all
11138 * the frames freed with the sequence;
11139 * false -- if there is no matching partially assembled sequence present so
11140 * nothing got aborted in the lower layer driver
11143 lpfc_sli4_abort_partial_seq(struct lpfc_vport
*vport
,
11144 struct hbq_dmabuf
*dmabuf
)
11146 struct fc_frame_header
*new_hdr
;
11147 struct fc_frame_header
*temp_hdr
;
11148 struct lpfc_dmabuf
*d_buf
, *n_buf
, *h_buf
;
11149 struct hbq_dmabuf
*seq_dmabuf
= NULL
;
11151 /* Use the hdr_buf to find the sequence that matches this frame */
11152 INIT_LIST_HEAD(&dmabuf
->dbuf
.list
);
11153 INIT_LIST_HEAD(&dmabuf
->hbuf
.list
);
11154 new_hdr
= (struct fc_frame_header
*)dmabuf
->hbuf
.virt
;
11155 list_for_each_entry(h_buf
, &vport
->rcv_buffer_list
, list
) {
11156 temp_hdr
= (struct fc_frame_header
*)h_buf
->virt
;
11157 if ((temp_hdr
->fh_seq_id
!= new_hdr
->fh_seq_id
) ||
11158 (temp_hdr
->fh_ox_id
!= new_hdr
->fh_ox_id
) ||
11159 (memcmp(&temp_hdr
->fh_s_id
, &new_hdr
->fh_s_id
, 3)))
11161 /* found a pending sequence that matches this frame */
11162 seq_dmabuf
= container_of(h_buf
, struct hbq_dmabuf
, hbuf
);
11166 /* Free up all the frames from the partially assembled sequence */
11168 list_for_each_entry_safe(d_buf
, n_buf
,
11169 &seq_dmabuf
->dbuf
.list
, list
) {
11170 list_del_init(&d_buf
->list
);
11171 lpfc_in_buf_free(vport
->phba
, d_buf
);
11179 * lpfc_sli4_seq_abort_acc_cmpl - Accept seq abort iocb complete handler
11180 * @phba: Pointer to HBA context object.
11181 * @cmd_iocbq: pointer to the command iocbq structure.
11182 * @rsp_iocbq: pointer to the response iocbq structure.
11184 * This function handles the sequence abort accept iocb command complete
11185 * event. It properly releases the memory allocated to the sequence abort
11189 lpfc_sli4_seq_abort_acc_cmpl(struct lpfc_hba
*phba
,
11190 struct lpfc_iocbq
*cmd_iocbq
,
11191 struct lpfc_iocbq
*rsp_iocbq
)
11194 lpfc_sli_release_iocbq(phba
, cmd_iocbq
);
11198 * lpfc_sli4_seq_abort_acc - Accept sequence abort
11199 * @phba: Pointer to HBA context object.
11200 * @fc_hdr: pointer to a FC frame header.
11202 * This function sends a basic accept to a previous unsol sequence abort
11203 * event after aborting the sequence handling.
11206 lpfc_sli4_seq_abort_acc(struct lpfc_hba
*phba
,
11207 struct fc_frame_header
*fc_hdr
)
11209 struct lpfc_iocbq
*ctiocb
= NULL
;
11210 struct lpfc_nodelist
*ndlp
;
11211 uint16_t oxid
, rxid
;
11212 uint32_t sid
, fctl
;
11215 if (!lpfc_is_link_up(phba
))
11218 sid
= sli4_sid_from_fc_hdr(fc_hdr
);
11219 oxid
= be16_to_cpu(fc_hdr
->fh_ox_id
);
11220 rxid
= be16_to_cpu(fc_hdr
->fh_rx_id
);
11222 ndlp
= lpfc_findnode_did(phba
->pport
, sid
);
11224 lpfc_printf_log(phba
, KERN_WARNING
, LOG_ELS
,
11225 "1268 Find ndlp returned NULL for oxid:x%x "
11226 "SID:x%x\n", oxid
, sid
);
11230 /* Allocate buffer for acc iocb */
11231 ctiocb
= lpfc_sli_get_iocbq(phba
);
11235 /* Extract the F_CTL field from FC_HDR */
11236 fctl
= sli4_fctl_from_fc_hdr(fc_hdr
);
11238 icmd
= &ctiocb
->iocb
;
11239 icmd
->un
.xseq64
.bdl
.bdeSize
= 0;
11240 icmd
->un
.xseq64
.bdl
.ulpIoTag32
= 0;
11241 icmd
->un
.xseq64
.w5
.hcsw
.Dfctl
= 0;
11242 icmd
->un
.xseq64
.w5
.hcsw
.Rctl
= FC_RCTL_BA_ACC
;
11243 icmd
->un
.xseq64
.w5
.hcsw
.Type
= FC_TYPE_BLS
;
11245 /* Fill in the rest of iocb fields */
11246 icmd
->ulpCommand
= CMD_XMIT_BLS_RSP64_CX
;
11247 icmd
->ulpBdeCount
= 0;
11249 icmd
->ulpClass
= CLASS3
;
11250 icmd
->ulpContext
= ndlp
->nlp_rpi
;
11252 ctiocb
->iocb_cmpl
= NULL
;
11253 ctiocb
->vport
= phba
->pport
;
11254 ctiocb
->iocb_cmpl
= lpfc_sli4_seq_abort_acc_cmpl
;
11256 if (fctl
& FC_FC_EX_CTX
) {
11257 /* ABTS sent by responder to CT exchange, construction
11258 * of BA_ACC will use OX_ID from ABTS for the XRI_TAG
11259 * field and RX_ID from ABTS for RX_ID field.
11261 bf_set(lpfc_abts_orig
, &icmd
->un
.bls_acc
, LPFC_ABTS_UNSOL_RSP
);
11262 bf_set(lpfc_abts_rxid
, &icmd
->un
.bls_acc
, rxid
);
11263 ctiocb
->sli4_xritag
= oxid
;
11265 /* ABTS sent by initiator to CT exchange, construction
11266 * of BA_ACC will need to allocate a new XRI as for the
11267 * XRI_TAG and RX_ID fields.
11269 bf_set(lpfc_abts_orig
, &icmd
->un
.bls_acc
, LPFC_ABTS_UNSOL_INT
);
11270 bf_set(lpfc_abts_rxid
, &icmd
->un
.bls_acc
, NO_XRI
);
11271 ctiocb
->sli4_xritag
= NO_XRI
;
11273 bf_set(lpfc_abts_oxid
, &icmd
->un
.bls_acc
, oxid
);
11275 /* Xmit CT abts accept on exchange <xid> */
11276 lpfc_printf_log(phba
, KERN_INFO
, LOG_ELS
,
11277 "1200 Xmit CT ABTS ACC on exchange x%x Data: x%x\n",
11278 CMD_XMIT_BLS_RSP64_CX
, phba
->link_state
);
11279 lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, ctiocb
, 0);
11283 * lpfc_sli4_handle_unsol_abort - Handle sli-4 unsolicited abort event
11284 * @vport: Pointer to the vport on which this sequence was received
11285 * @dmabuf: pointer to a dmabuf that describes the FC sequence
11287 * This function handles an SLI-4 unsolicited abort event. If the unsolicited
11288 * receive sequence is only partially assembed by the driver, it shall abort
11289 * the partially assembled frames for the sequence. Otherwise, if the
11290 * unsolicited receive sequence has been completely assembled and passed to
11291 * the Upper Layer Protocol (UPL), it then mark the per oxid status for the
11292 * unsolicited sequence has been aborted. After that, it will issue a basic
11293 * accept to accept the abort.
11296 lpfc_sli4_handle_unsol_abort(struct lpfc_vport
*vport
,
11297 struct hbq_dmabuf
*dmabuf
)
11299 struct lpfc_hba
*phba
= vport
->phba
;
11300 struct fc_frame_header fc_hdr
;
11304 /* Make a copy of fc_hdr before the dmabuf being released */
11305 memcpy(&fc_hdr
, dmabuf
->hbuf
.virt
, sizeof(struct fc_frame_header
));
11306 fctl
= sli4_fctl_from_fc_hdr(&fc_hdr
);
11308 if (fctl
& FC_FC_EX_CTX
) {
11310 * ABTS sent by responder to exchange, just free the buffer
11312 lpfc_in_buf_free(phba
, &dmabuf
->dbuf
);
11315 * ABTS sent by initiator to exchange, need to do cleanup
11317 /* Try to abort partially assembled seq */
11318 abts_par
= lpfc_sli4_abort_partial_seq(vport
, dmabuf
);
11320 /* Send abort to ULP if partially seq abort failed */
11321 if (abts_par
== false)
11322 lpfc_sli4_send_seq_to_ulp(vport
, dmabuf
);
11324 lpfc_in_buf_free(phba
, &dmabuf
->dbuf
);
11326 /* Send basic accept (BA_ACC) to the abort requester */
11327 lpfc_sli4_seq_abort_acc(phba
, &fc_hdr
);
11331 * lpfc_seq_complete - Indicates if a sequence is complete
11332 * @dmabuf: pointer to a dmabuf that describes the FC sequence
11334 * This function checks the sequence, starting with the frame described by
11335 * @dmabuf, to see if all the frames associated with this sequence are present.
11336 * the frames associated with this sequence are linked to the @dmabuf using the
11337 * dbuf list. This function looks for two major things. 1) That the first frame
11338 * has a sequence count of zero. 2) There is a frame with last frame of sequence
11339 * set. 3) That there are no holes in the sequence count. The function will
11340 * return 1 when the sequence is complete, otherwise it will return 0.
11343 lpfc_seq_complete(struct hbq_dmabuf
*dmabuf
)
11345 struct fc_frame_header
*hdr
;
11346 struct lpfc_dmabuf
*d_buf
;
11347 struct hbq_dmabuf
*seq_dmabuf
;
11351 hdr
= (struct fc_frame_header
*)dmabuf
->hbuf
.virt
;
11352 /* make sure first fame of sequence has a sequence count of zero */
11353 if (hdr
->fh_seq_cnt
!= seq_count
)
11355 fctl
= (hdr
->fh_f_ctl
[0] << 16 |
11356 hdr
->fh_f_ctl
[1] << 8 |
11358 /* If last frame of sequence we can return success. */
11359 if (fctl
& FC_FC_END_SEQ
)
11361 list_for_each_entry(d_buf
, &dmabuf
->dbuf
.list
, list
) {
11362 seq_dmabuf
= container_of(d_buf
, struct hbq_dmabuf
, dbuf
);
11363 hdr
= (struct fc_frame_header
*)seq_dmabuf
->hbuf
.virt
;
11364 /* If there is a hole in the sequence count then fail. */
11365 if (++seq_count
!= be16_to_cpu(hdr
->fh_seq_cnt
))
11367 fctl
= (hdr
->fh_f_ctl
[0] << 16 |
11368 hdr
->fh_f_ctl
[1] << 8 |
11370 /* If last frame of sequence we can return success. */
11371 if (fctl
& FC_FC_END_SEQ
)
11378 * lpfc_prep_seq - Prep sequence for ULP processing
11379 * @vport: Pointer to the vport on which this sequence was received
11380 * @dmabuf: pointer to a dmabuf that describes the FC sequence
11382 * This function takes a sequence, described by a list of frames, and creates
11383 * a list of iocbq structures to describe the sequence. This iocbq list will be
11384 * used to issue to the generic unsolicited sequence handler. This routine
11385 * returns a pointer to the first iocbq in the list. If the function is unable
11386 * to allocate an iocbq then it throw out the received frames that were not
11387 * able to be described and return a pointer to the first iocbq. If unable to
11388 * allocate any iocbqs (including the first) this function will return NULL.
11390 static struct lpfc_iocbq
*
11391 lpfc_prep_seq(struct lpfc_vport
*vport
, struct hbq_dmabuf
*seq_dmabuf
)
11393 struct lpfc_dmabuf
*d_buf
, *n_buf
;
11394 struct lpfc_iocbq
*first_iocbq
, *iocbq
;
11395 struct fc_frame_header
*fc_hdr
;
11397 struct ulp_bde64
*pbde
;
11399 fc_hdr
= (struct fc_frame_header
*)seq_dmabuf
->hbuf
.virt
;
11400 /* remove from receive buffer list */
11401 list_del_init(&seq_dmabuf
->hbuf
.list
);
11402 lpfc_update_rcv_time_stamp(vport
);
11403 /* get the Remote Port's SID */
11404 sid
= sli4_sid_from_fc_hdr(fc_hdr
);
11405 /* Get an iocbq struct to fill in. */
11406 first_iocbq
= lpfc_sli_get_iocbq(vport
->phba
);
11408 /* Initialize the first IOCB. */
11409 first_iocbq
->iocb
.unsli3
.rcvsli3
.acc_len
= 0;
11410 first_iocbq
->iocb
.ulpStatus
= IOSTAT_SUCCESS
;
11411 first_iocbq
->iocb
.ulpCommand
= CMD_IOCB_RCV_SEQ64_CX
;
11412 first_iocbq
->iocb
.ulpContext
= be16_to_cpu(fc_hdr
->fh_ox_id
);
11413 first_iocbq
->iocb
.unsli3
.rcvsli3
.vpi
=
11414 vport
->vpi
+ vport
->phba
->vpi_base
;
11415 /* put the first buffer into the first IOCBq */
11416 first_iocbq
->context2
= &seq_dmabuf
->dbuf
;
11417 first_iocbq
->context3
= NULL
;
11418 first_iocbq
->iocb
.ulpBdeCount
= 1;
11419 first_iocbq
->iocb
.un
.cont64
[0].tus
.f
.bdeSize
=
11420 LPFC_DATA_BUF_SIZE
;
11421 first_iocbq
->iocb
.un
.rcvels
.remoteID
= sid
;
11422 first_iocbq
->iocb
.unsli3
.rcvsli3
.acc_len
+=
11423 bf_get(lpfc_rcqe_length
,
11424 &seq_dmabuf
->cq_event
.cqe
.rcqe_cmpl
);
11426 iocbq
= first_iocbq
;
11428 * Each IOCBq can have two Buffers assigned, so go through the list
11429 * of buffers for this sequence and save two buffers in each IOCBq
11431 list_for_each_entry_safe(d_buf
, n_buf
, &seq_dmabuf
->dbuf
.list
, list
) {
11433 lpfc_in_buf_free(vport
->phba
, d_buf
);
11436 if (!iocbq
->context3
) {
11437 iocbq
->context3
= d_buf
;
11438 iocbq
->iocb
.ulpBdeCount
++;
11439 pbde
= (struct ulp_bde64
*)
11440 &iocbq
->iocb
.unsli3
.sli3Words
[4];
11441 pbde
->tus
.f
.bdeSize
= LPFC_DATA_BUF_SIZE
;
11442 first_iocbq
->iocb
.unsli3
.rcvsli3
.acc_len
+=
11443 bf_get(lpfc_rcqe_length
,
11444 &seq_dmabuf
->cq_event
.cqe
.rcqe_cmpl
);
11446 iocbq
= lpfc_sli_get_iocbq(vport
->phba
);
11449 first_iocbq
->iocb
.ulpStatus
=
11450 IOSTAT_FCP_RSP_ERROR
;
11451 first_iocbq
->iocb
.un
.ulpWord
[4] =
11452 IOERR_NO_RESOURCES
;
11454 lpfc_in_buf_free(vport
->phba
, d_buf
);
11457 iocbq
->context2
= d_buf
;
11458 iocbq
->context3
= NULL
;
11459 iocbq
->iocb
.ulpBdeCount
= 1;
11460 iocbq
->iocb
.un
.cont64
[0].tus
.f
.bdeSize
=
11461 LPFC_DATA_BUF_SIZE
;
11462 first_iocbq
->iocb
.unsli3
.rcvsli3
.acc_len
+=
11463 bf_get(lpfc_rcqe_length
,
11464 &seq_dmabuf
->cq_event
.cqe
.rcqe_cmpl
);
11465 iocbq
->iocb
.un
.rcvels
.remoteID
= sid
;
11466 list_add_tail(&iocbq
->list
, &first_iocbq
->list
);
11469 return first_iocbq
;
11473 lpfc_sli4_send_seq_to_ulp(struct lpfc_vport
*vport
,
11474 struct hbq_dmabuf
*seq_dmabuf
)
11476 struct fc_frame_header
*fc_hdr
;
11477 struct lpfc_iocbq
*iocbq
, *curr_iocb
, *next_iocb
;
11478 struct lpfc_hba
*phba
= vport
->phba
;
11480 fc_hdr
= (struct fc_frame_header
*)seq_dmabuf
->hbuf
.virt
;
11481 iocbq
= lpfc_prep_seq(vport
, seq_dmabuf
);
11483 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
11484 "2707 Ring %d handler: Failed to allocate "
11485 "iocb Rctl x%x Type x%x received\n",
11487 fc_hdr
->fh_r_ctl
, fc_hdr
->fh_type
);
11490 if (!lpfc_complete_unsol_iocb(phba
,
11491 &phba
->sli
.ring
[LPFC_ELS_RING
],
11492 iocbq
, fc_hdr
->fh_r_ctl
,
11494 lpfc_printf_log(phba
, KERN_WARNING
, LOG_SLI
,
11495 "2540 Ring %d handler: unexpected Rctl "
11496 "x%x Type x%x received\n",
11498 fc_hdr
->fh_r_ctl
, fc_hdr
->fh_type
);
11500 /* Free iocb created in lpfc_prep_seq */
11501 list_for_each_entry_safe(curr_iocb
, next_iocb
,
11502 &iocbq
->list
, list
) {
11503 list_del_init(&curr_iocb
->list
);
11504 lpfc_sli_release_iocbq(phba
, curr_iocb
);
11506 lpfc_sli_release_iocbq(phba
, iocbq
);
11510 * lpfc_sli4_handle_received_buffer - Handle received buffers from firmware
11511 * @phba: Pointer to HBA context object.
11513 * This function is called with no lock held. This function processes all
11514 * the received buffers and gives it to upper layers when a received buffer
11515 * indicates that it is the final frame in the sequence. The interrupt
11516 * service routine processes received buffers at interrupt contexts and adds
11517 * received dma buffers to the rb_pend_list queue and signals the worker thread.
11518 * Worker thread calls lpfc_sli4_handle_received_buffer, which will call the
11519 * appropriate receive function when the final frame in a sequence is received.
11522 lpfc_sli4_handle_received_buffer(struct lpfc_hba
*phba
,
11523 struct hbq_dmabuf
*dmabuf
)
11525 struct hbq_dmabuf
*seq_dmabuf
;
11526 struct fc_frame_header
*fc_hdr
;
11527 struct lpfc_vport
*vport
;
11530 /* Process each received buffer */
11531 fc_hdr
= (struct fc_frame_header
*)dmabuf
->hbuf
.virt
;
11532 /* check to see if this a valid type of frame */
11533 if (lpfc_fc_frame_check(phba
, fc_hdr
)) {
11534 lpfc_in_buf_free(phba
, &dmabuf
->dbuf
);
11537 fcfi
= bf_get(lpfc_rcqe_fcf_id
, &dmabuf
->cq_event
.cqe
.rcqe_cmpl
);
11538 vport
= lpfc_fc_frame_to_vport(phba
, fc_hdr
, fcfi
);
11539 if (!vport
|| !(vport
->vpi_state
& LPFC_VPI_REGISTERED
)) {
11540 /* throw out the frame */
11541 lpfc_in_buf_free(phba
, &dmabuf
->dbuf
);
11544 /* Handle the basic abort sequence (BA_ABTS) event */
11545 if (fc_hdr
->fh_r_ctl
== FC_RCTL_BA_ABTS
) {
11546 lpfc_sli4_handle_unsol_abort(vport
, dmabuf
);
11550 /* Link this frame */
11551 seq_dmabuf
= lpfc_fc_frame_add(vport
, dmabuf
);
11553 /* unable to add frame to vport - throw it out */
11554 lpfc_in_buf_free(phba
, &dmabuf
->dbuf
);
11557 /* If not last frame in sequence continue processing frames. */
11558 if (!lpfc_seq_complete(seq_dmabuf
))
11561 /* Send the complete sequence to the upper layer protocol */
11562 lpfc_sli4_send_seq_to_ulp(vport
, seq_dmabuf
);
11566 * lpfc_sli4_post_all_rpi_hdrs - Post the rpi header memory region to the port
11567 * @phba: pointer to lpfc hba data structure.
11569 * This routine is invoked to post rpi header templates to the
11570 * HBA consistent with the SLI-4 interface spec. This routine
11571 * posts a PAGE_SIZE memory region to the port to hold up to
11572 * PAGE_SIZE modulo 64 rpi context headers.
11574 * This routine does not require any locks. It's usage is expected
11575 * to be driver load or reset recovery when the driver is
11580 * EIO - The mailbox failed to complete successfully.
11581 * When this error occurs, the driver is not guaranteed
11582 * to have any rpi regions posted to the device and
11583 * must either attempt to repost the regions or take a
11587 lpfc_sli4_post_all_rpi_hdrs(struct lpfc_hba
*phba
)
11589 struct lpfc_rpi_hdr
*rpi_page
;
11592 /* Post all rpi memory regions to the port. */
11593 list_for_each_entry(rpi_page
, &phba
->sli4_hba
.lpfc_rpi_hdr_list
, list
) {
11594 rc
= lpfc_sli4_post_rpi_hdr(phba
, rpi_page
);
11595 if (rc
!= MBX_SUCCESS
) {
11596 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
11597 "2008 Error %d posting all rpi "
11608 * lpfc_sli4_post_rpi_hdr - Post an rpi header memory region to the port
11609 * @phba: pointer to lpfc hba data structure.
11610 * @rpi_page: pointer to the rpi memory region.
11612 * This routine is invoked to post a single rpi header to the
11613 * HBA consistent with the SLI-4 interface spec. This memory region
11614 * maps up to 64 rpi context regions.
11618 * ENOMEM - No available memory
11619 * EIO - The mailbox failed to complete successfully.
11622 lpfc_sli4_post_rpi_hdr(struct lpfc_hba
*phba
, struct lpfc_rpi_hdr
*rpi_page
)
11624 LPFC_MBOXQ_t
*mboxq
;
11625 struct lpfc_mbx_post_hdr_tmpl
*hdr_tmpl
;
11628 uint32_t shdr_status
, shdr_add_status
;
11629 union lpfc_sli4_cfg_shdr
*shdr
;
11631 /* The port is notified of the header region via a mailbox command. */
11632 mboxq
= (LPFC_MBOXQ_t
*) mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
11634 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
11635 "2001 Unable to allocate memory for issuing "
11636 "SLI_CONFIG_SPECIAL mailbox command\n");
11640 /* Post all rpi memory regions to the port. */
11641 hdr_tmpl
= &mboxq
->u
.mqe
.un
.hdr_tmpl
;
11642 mbox_tmo
= lpfc_mbox_tmo_val(phba
, MBX_SLI4_CONFIG
);
11643 lpfc_sli4_config(phba
, mboxq
, LPFC_MBOX_SUBSYSTEM_FCOE
,
11644 LPFC_MBOX_OPCODE_FCOE_POST_HDR_TEMPLATE
,
11645 sizeof(struct lpfc_mbx_post_hdr_tmpl
) -
11646 sizeof(struct mbox_header
), LPFC_SLI4_MBX_EMBED
);
11647 bf_set(lpfc_mbx_post_hdr_tmpl_page_cnt
,
11648 hdr_tmpl
, rpi_page
->page_count
);
11649 bf_set(lpfc_mbx_post_hdr_tmpl_rpi_offset
, hdr_tmpl
,
11650 rpi_page
->start_rpi
);
11651 hdr_tmpl
->rpi_paddr_lo
= putPaddrLow(rpi_page
->dmabuf
->phys
);
11652 hdr_tmpl
->rpi_paddr_hi
= putPaddrHigh(rpi_page
->dmabuf
->phys
);
11653 rc
= lpfc_sli_issue_mbox(phba
, mboxq
, MBX_POLL
);
11654 shdr
= (union lpfc_sli4_cfg_shdr
*) &hdr_tmpl
->header
.cfg_shdr
;
11655 shdr_status
= bf_get(lpfc_mbox_hdr_status
, &shdr
->response
);
11656 shdr_add_status
= bf_get(lpfc_mbox_hdr_add_status
, &shdr
->response
);
11657 if (rc
!= MBX_TIMEOUT
)
11658 mempool_free(mboxq
, phba
->mbox_mem_pool
);
11659 if (shdr_status
|| shdr_add_status
|| rc
) {
11660 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
11661 "2514 POST_RPI_HDR mailbox failed with "
11662 "status x%x add_status x%x, mbx status x%x\n",
11663 shdr_status
, shdr_add_status
, rc
);
11670 * lpfc_sli4_alloc_rpi - Get an available rpi in the device's range
11671 * @phba: pointer to lpfc hba data structure.
11673 * This routine is invoked to post rpi header templates to the
11674 * HBA consistent with the SLI-4 interface spec. This routine
11675 * posts a PAGE_SIZE memory region to the port to hold up to
11676 * PAGE_SIZE modulo 64 rpi context headers.
11679 * A nonzero rpi defined as rpi_base <= rpi < max_rpi if successful
11680 * LPFC_RPI_ALLOC_ERROR if no rpis are available.
11683 lpfc_sli4_alloc_rpi(struct lpfc_hba
*phba
)
11686 uint16_t max_rpi
, rpi_base
, rpi_limit
;
11687 uint16_t rpi_remaining
;
11688 struct lpfc_rpi_hdr
*rpi_hdr
;
11690 max_rpi
= phba
->sli4_hba
.max_cfg_param
.max_rpi
;
11691 rpi_base
= phba
->sli4_hba
.max_cfg_param
.rpi_base
;
11692 rpi_limit
= phba
->sli4_hba
.next_rpi
;
11695 * The valid rpi range is not guaranteed to be zero-based. Start
11696 * the search at the rpi_base as reported by the port.
11698 spin_lock_irq(&phba
->hbalock
);
11699 rpi
= find_next_zero_bit(phba
->sli4_hba
.rpi_bmask
, rpi_limit
, rpi_base
);
11700 if (rpi
>= rpi_limit
|| rpi
< rpi_base
)
11701 rpi
= LPFC_RPI_ALLOC_ERROR
;
11703 set_bit(rpi
, phba
->sli4_hba
.rpi_bmask
);
11704 phba
->sli4_hba
.max_cfg_param
.rpi_used
++;
11705 phba
->sli4_hba
.rpi_count
++;
11709 * Don't try to allocate more rpi header regions if the device limit
11710 * on available rpis max has been exhausted.
11712 if ((rpi
== LPFC_RPI_ALLOC_ERROR
) &&
11713 (phba
->sli4_hba
.rpi_count
>= max_rpi
)) {
11714 spin_unlock_irq(&phba
->hbalock
);
11719 * If the driver is running low on rpi resources, allocate another
11720 * page now. Note that the next_rpi value is used because
11721 * it represents how many are actually in use whereas max_rpi notes
11722 * how many are supported max by the device.
11724 rpi_remaining
= phba
->sli4_hba
.next_rpi
- rpi_base
-
11725 phba
->sli4_hba
.rpi_count
;
11726 spin_unlock_irq(&phba
->hbalock
);
11727 if (rpi_remaining
< LPFC_RPI_LOW_WATER_MARK
) {
11728 rpi_hdr
= lpfc_sli4_create_rpi_hdr(phba
);
11730 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
11731 "2002 Error Could not grow rpi "
11734 lpfc_sli4_post_rpi_hdr(phba
, rpi_hdr
);
11742 * lpfc_sli4_free_rpi - Release an rpi for reuse.
11743 * @phba: pointer to lpfc hba data structure.
11745 * This routine is invoked to release an rpi to the pool of
11746 * available rpis maintained by the driver.
11749 lpfc_sli4_free_rpi(struct lpfc_hba
*phba
, int rpi
)
11751 spin_lock_irq(&phba
->hbalock
);
11752 clear_bit(rpi
, phba
->sli4_hba
.rpi_bmask
);
11753 phba
->sli4_hba
.rpi_count
--;
11754 phba
->sli4_hba
.max_cfg_param
.rpi_used
--;
11755 spin_unlock_irq(&phba
->hbalock
);
11759 * lpfc_sli4_remove_rpis - Remove the rpi bitmask region
11760 * @phba: pointer to lpfc hba data structure.
11762 * This routine is invoked to remove the memory region that
11763 * provided rpi via a bitmask.
11766 lpfc_sli4_remove_rpis(struct lpfc_hba
*phba
)
11768 kfree(phba
->sli4_hba
.rpi_bmask
);
11772 * lpfc_sli4_resume_rpi - Remove the rpi bitmask region
11773 * @phba: pointer to lpfc hba data structure.
11775 * This routine is invoked to remove the memory region that
11776 * provided rpi via a bitmask.
11779 lpfc_sli4_resume_rpi(struct lpfc_nodelist
*ndlp
)
11781 LPFC_MBOXQ_t
*mboxq
;
11782 struct lpfc_hba
*phba
= ndlp
->phba
;
11785 /* The port is notified of the header region via a mailbox command. */
11786 mboxq
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
11790 /* Post all rpi memory regions to the port. */
11791 lpfc_resume_rpi(mboxq
, ndlp
);
11792 rc
= lpfc_sli_issue_mbox(phba
, mboxq
, MBX_NOWAIT
);
11793 if (rc
== MBX_NOT_FINISHED
) {
11794 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
11795 "2010 Resume RPI Mailbox failed "
11796 "status %d, mbxStatus x%x\n", rc
,
11797 bf_get(lpfc_mqe_status
, &mboxq
->u
.mqe
));
11798 mempool_free(mboxq
, phba
->mbox_mem_pool
);
11805 * lpfc_sli4_init_vpi - Initialize a vpi with the port
11806 * @phba: pointer to lpfc hba data structure.
11807 * @vpi: vpi value to activate with the port.
11809 * This routine is invoked to activate a vpi with the
11810 * port when the host intends to use vports with a
11815 * -Evalue otherwise
11818 lpfc_sli4_init_vpi(struct lpfc_hba
*phba
, uint16_t vpi
)
11820 LPFC_MBOXQ_t
*mboxq
;
11822 int retval
= MBX_SUCCESS
;
11827 mboxq
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
11830 lpfc_init_vpi(phba
, mboxq
, vpi
);
11831 mbox_tmo
= lpfc_mbox_tmo_val(phba
, MBX_INIT_VPI
);
11832 rc
= lpfc_sli_issue_mbox_wait(phba
, mboxq
, mbox_tmo
);
11833 if (rc
!= MBX_SUCCESS
) {
11834 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
11835 "2022 INIT VPI Mailbox failed "
11836 "status %d, mbxStatus x%x\n", rc
,
11837 bf_get(lpfc_mqe_status
, &mboxq
->u
.mqe
));
11840 if (rc
!= MBX_TIMEOUT
)
11841 mempool_free(mboxq
, phba
->mbox_mem_pool
);
11847 * lpfc_mbx_cmpl_add_fcf_record - add fcf mbox completion handler.
11848 * @phba: pointer to lpfc hba data structure.
11849 * @mboxq: Pointer to mailbox object.
11851 * This routine is invoked to manually add a single FCF record. The caller
11852 * must pass a completely initialized FCF_Record. This routine takes
11853 * care of the nonembedded mailbox operations.
11856 lpfc_mbx_cmpl_add_fcf_record(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mboxq
)
11859 union lpfc_sli4_cfg_shdr
*shdr
;
11860 uint32_t shdr_status
, shdr_add_status
;
11862 virt_addr
= mboxq
->sge_array
->addr
[0];
11863 /* The IOCTL status is embedded in the mailbox subheader. */
11864 shdr
= (union lpfc_sli4_cfg_shdr
*) virt_addr
;
11865 shdr_status
= bf_get(lpfc_mbox_hdr_status
, &shdr
->response
);
11866 shdr_add_status
= bf_get(lpfc_mbox_hdr_add_status
, &shdr
->response
);
11868 if ((shdr_status
|| shdr_add_status
) &&
11869 (shdr_status
!= STATUS_FCF_IN_USE
))
11870 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
11871 "2558 ADD_FCF_RECORD mailbox failed with "
11872 "status x%x add_status x%x\n",
11873 shdr_status
, shdr_add_status
);
11875 lpfc_sli4_mbox_cmd_free(phba
, mboxq
);
11879 * lpfc_sli4_add_fcf_record - Manually add an FCF Record.
11880 * @phba: pointer to lpfc hba data structure.
11881 * @fcf_record: pointer to the initialized fcf record to add.
11883 * This routine is invoked to manually add a single FCF record. The caller
11884 * must pass a completely initialized FCF_Record. This routine takes
11885 * care of the nonembedded mailbox operations.
11888 lpfc_sli4_add_fcf_record(struct lpfc_hba
*phba
, struct fcf_record
*fcf_record
)
11891 LPFC_MBOXQ_t
*mboxq
;
11894 dma_addr_t phys_addr
;
11895 struct lpfc_mbx_sge sge
;
11896 uint32_t alloc_len
, req_len
;
11899 mboxq
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
11901 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
11902 "2009 Failed to allocate mbox for ADD_FCF cmd\n");
11906 req_len
= sizeof(struct fcf_record
) + sizeof(union lpfc_sli4_cfg_shdr
) +
11909 /* Allocate DMA memory and set up the non-embedded mailbox command */
11910 alloc_len
= lpfc_sli4_config(phba
, mboxq
, LPFC_MBOX_SUBSYSTEM_FCOE
,
11911 LPFC_MBOX_OPCODE_FCOE_ADD_FCF
,
11912 req_len
, LPFC_SLI4_MBX_NEMBED
);
11913 if (alloc_len
< req_len
) {
11914 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
11915 "2523 Allocated DMA memory size (x%x) is "
11916 "less than the requested DMA memory "
11917 "size (x%x)\n", alloc_len
, req_len
);
11918 lpfc_sli4_mbox_cmd_free(phba
, mboxq
);
11923 * Get the first SGE entry from the non-embedded DMA memory. This
11924 * routine only uses a single SGE.
11926 lpfc_sli4_mbx_sge_get(mboxq
, 0, &sge
);
11927 phys_addr
= getPaddr(sge
.pa_hi
, sge
.pa_lo
);
11928 virt_addr
= mboxq
->sge_array
->addr
[0];
11930 * Configure the FCF record for FCFI 0. This is the driver's
11931 * hardcoded default and gets used in nonFIP mode.
11933 fcfindex
= bf_get(lpfc_fcf_record_fcf_index
, fcf_record
);
11934 bytep
= virt_addr
+ sizeof(union lpfc_sli4_cfg_shdr
);
11935 lpfc_sli_pcimem_bcopy(&fcfindex
, bytep
, sizeof(uint32_t));
11938 * Copy the fcf_index and the FCF Record Data. The data starts after
11939 * the FCoE header plus word10. The data copy needs to be endian
11942 bytep
+= sizeof(uint32_t);
11943 lpfc_sli_pcimem_bcopy(fcf_record
, bytep
, sizeof(struct fcf_record
));
11944 mboxq
->vport
= phba
->pport
;
11945 mboxq
->mbox_cmpl
= lpfc_mbx_cmpl_add_fcf_record
;
11946 rc
= lpfc_sli_issue_mbox(phba
, mboxq
, MBX_NOWAIT
);
11947 if (rc
== MBX_NOT_FINISHED
) {
11948 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
11949 "2515 ADD_FCF_RECORD mailbox failed with "
11950 "status 0x%x\n", rc
);
11951 lpfc_sli4_mbox_cmd_free(phba
, mboxq
);
11960 * lpfc_sli4_build_dflt_fcf_record - Build the driver's default FCF Record.
11961 * @phba: pointer to lpfc hba data structure.
11962 * @fcf_record: pointer to the fcf record to write the default data.
11963 * @fcf_index: FCF table entry index.
11965 * This routine is invoked to build the driver's default FCF record. The
11966 * values used are hardcoded. This routine handles memory initialization.
11970 lpfc_sli4_build_dflt_fcf_record(struct lpfc_hba
*phba
,
11971 struct fcf_record
*fcf_record
,
11972 uint16_t fcf_index
)
11974 memset(fcf_record
, 0, sizeof(struct fcf_record
));
11975 fcf_record
->max_rcv_size
= LPFC_FCOE_MAX_RCV_SIZE
;
11976 fcf_record
->fka_adv_period
= LPFC_FCOE_FKA_ADV_PER
;
11977 fcf_record
->fip_priority
= LPFC_FCOE_FIP_PRIORITY
;
11978 bf_set(lpfc_fcf_record_mac_0
, fcf_record
, phba
->fc_map
[0]);
11979 bf_set(lpfc_fcf_record_mac_1
, fcf_record
, phba
->fc_map
[1]);
11980 bf_set(lpfc_fcf_record_mac_2
, fcf_record
, phba
->fc_map
[2]);
11981 bf_set(lpfc_fcf_record_mac_3
, fcf_record
, LPFC_FCOE_FCF_MAC3
);
11982 bf_set(lpfc_fcf_record_mac_4
, fcf_record
, LPFC_FCOE_FCF_MAC4
);
11983 bf_set(lpfc_fcf_record_mac_5
, fcf_record
, LPFC_FCOE_FCF_MAC5
);
11984 bf_set(lpfc_fcf_record_fc_map_0
, fcf_record
, phba
->fc_map
[0]);
11985 bf_set(lpfc_fcf_record_fc_map_1
, fcf_record
, phba
->fc_map
[1]);
11986 bf_set(lpfc_fcf_record_fc_map_2
, fcf_record
, phba
->fc_map
[2]);
11987 bf_set(lpfc_fcf_record_fcf_valid
, fcf_record
, 1);
11988 bf_set(lpfc_fcf_record_fcf_avail
, fcf_record
, 1);
11989 bf_set(lpfc_fcf_record_fcf_index
, fcf_record
, fcf_index
);
11990 bf_set(lpfc_fcf_record_mac_addr_prov
, fcf_record
,
11991 LPFC_FCF_FPMA
| LPFC_FCF_SPMA
);
11992 /* Set the VLAN bit map */
11993 if (phba
->valid_vlan
) {
11994 fcf_record
->vlan_bitmap
[phba
->vlan_id
/ 8]
11995 = 1 << (phba
->vlan_id
% 8);
12000 * lpfc_sli4_fcf_scan_read_fcf_rec - Read hba fcf record for fcf scan.
12001 * @phba: pointer to lpfc hba data structure.
12002 * @fcf_index: FCF table entry offset.
12004 * This routine is invoked to scan the entire FCF table by reading FCF
12005 * record and processing it one at a time starting from the @fcf_index
12006 * for initial FCF discovery or fast FCF failover rediscovery.
12008 * Return 0 if the mailbox command is submitted sucessfully, none 0
12012 lpfc_sli4_fcf_scan_read_fcf_rec(struct lpfc_hba
*phba
, uint16_t fcf_index
)
12015 LPFC_MBOXQ_t
*mboxq
;
12017 phba
->fcoe_eventtag_at_fcf_scan
= phba
->fcoe_eventtag
;
12018 mboxq
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
12020 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
12021 "2000 Failed to allocate mbox for "
12024 goto fail_fcf_scan
;
12026 /* Construct the read FCF record mailbox command */
12027 rc
= lpfc_sli4_mbx_read_fcf_rec(phba
, mboxq
, fcf_index
);
12030 goto fail_fcf_scan
;
12032 /* Issue the mailbox command asynchronously */
12033 mboxq
->vport
= phba
->pport
;
12034 mboxq
->mbox_cmpl
= lpfc_mbx_cmpl_fcf_scan_read_fcf_rec
;
12035 rc
= lpfc_sli_issue_mbox(phba
, mboxq
, MBX_NOWAIT
);
12036 if (rc
== MBX_NOT_FINISHED
)
12039 spin_lock_irq(&phba
->hbalock
);
12040 phba
->hba_flag
|= FCF_DISC_INPROGRESS
;
12041 spin_unlock_irq(&phba
->hbalock
);
12042 /* Reset FCF round robin index bmask for new scan */
12043 if (fcf_index
== LPFC_FCOE_FCF_GET_FIRST
)
12044 memset(phba
->fcf
.fcf_rr_bmask
, 0,
12045 sizeof(*phba
->fcf
.fcf_rr_bmask
));
12051 lpfc_sli4_mbox_cmd_free(phba
, mboxq
);
12052 /* FCF scan failed, clear FCF_DISC_INPROGRESS flag */
12053 spin_lock_irq(&phba
->hbalock
);
12054 phba
->hba_flag
&= ~FCF_DISC_INPROGRESS
;
12055 spin_unlock_irq(&phba
->hbalock
);
12061 * lpfc_sli4_fcf_rr_read_fcf_rec - Read hba fcf record for round robin fcf.
12062 * @phba: pointer to lpfc hba data structure.
12063 * @fcf_index: FCF table entry offset.
12065 * This routine is invoked to read an FCF record indicated by @fcf_index
12066 * and to use it for FLOGI round robin FCF failover.
12068 * Return 0 if the mailbox command is submitted sucessfully, none 0
12072 lpfc_sli4_fcf_rr_read_fcf_rec(struct lpfc_hba
*phba
, uint16_t fcf_index
)
12075 LPFC_MBOXQ_t
*mboxq
;
12077 mboxq
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
12079 lpfc_printf_log(phba
, KERN_ERR
, LOG_FIP
| LOG_INIT
,
12080 "2763 Failed to allocate mbox for "
12083 goto fail_fcf_read
;
12085 /* Construct the read FCF record mailbox command */
12086 rc
= lpfc_sli4_mbx_read_fcf_rec(phba
, mboxq
, fcf_index
);
12089 goto fail_fcf_read
;
12091 /* Issue the mailbox command asynchronously */
12092 mboxq
->vport
= phba
->pport
;
12093 mboxq
->mbox_cmpl
= lpfc_mbx_cmpl_fcf_rr_read_fcf_rec
;
12094 rc
= lpfc_sli_issue_mbox(phba
, mboxq
, MBX_NOWAIT
);
12095 if (rc
== MBX_NOT_FINISHED
)
12101 if (error
&& mboxq
)
12102 lpfc_sli4_mbox_cmd_free(phba
, mboxq
);
12107 * lpfc_sli4_read_fcf_rec - Read hba fcf record for update eligible fcf bmask.
12108 * @phba: pointer to lpfc hba data structure.
12109 * @fcf_index: FCF table entry offset.
12111 * This routine is invoked to read an FCF record indicated by @fcf_index to
12112 * determine whether it's eligible for FLOGI round robin failover list.
12114 * Return 0 if the mailbox command is submitted sucessfully, none 0
12118 lpfc_sli4_read_fcf_rec(struct lpfc_hba
*phba
, uint16_t fcf_index
)
12121 LPFC_MBOXQ_t
*mboxq
;
12123 mboxq
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
12125 lpfc_printf_log(phba
, KERN_ERR
, LOG_FIP
| LOG_INIT
,
12126 "2758 Failed to allocate mbox for "
12129 goto fail_fcf_read
;
12131 /* Construct the read FCF record mailbox command */
12132 rc
= lpfc_sli4_mbx_read_fcf_rec(phba
, mboxq
, fcf_index
);
12135 goto fail_fcf_read
;
12137 /* Issue the mailbox command asynchronously */
12138 mboxq
->vport
= phba
->pport
;
12139 mboxq
->mbox_cmpl
= lpfc_mbx_cmpl_read_fcf_rec
;
12140 rc
= lpfc_sli_issue_mbox(phba
, mboxq
, MBX_NOWAIT
);
12141 if (rc
== MBX_NOT_FINISHED
)
12147 if (error
&& mboxq
)
12148 lpfc_sli4_mbox_cmd_free(phba
, mboxq
);
12153 * lpfc_sli4_fcf_rr_next_index_get - Get next eligible fcf record index
12154 * @phba: pointer to lpfc hba data structure.
12156 * This routine is to get the next eligible FCF record index in a round
12157 * robin fashion. If the next eligible FCF record index equals to the
12158 * initial round robin FCF record index, LPFC_FCOE_FCF_NEXT_NONE (0xFFFF)
12159 * shall be returned, otherwise, the next eligible FCF record's index
12160 * shall be returned.
12163 lpfc_sli4_fcf_rr_next_index_get(struct lpfc_hba
*phba
)
12165 uint16_t next_fcf_index
;
12167 /* Search from the currently registered FCF index */
12168 next_fcf_index
= find_next_bit(phba
->fcf
.fcf_rr_bmask
,
12169 LPFC_SLI4_FCF_TBL_INDX_MAX
,
12170 phba
->fcf
.current_rec
.fcf_indx
);
12171 /* Wrap around condition on phba->fcf.fcf_rr_bmask */
12172 if (next_fcf_index
>= LPFC_SLI4_FCF_TBL_INDX_MAX
)
12173 next_fcf_index
= find_next_bit(phba
->fcf
.fcf_rr_bmask
,
12174 LPFC_SLI4_FCF_TBL_INDX_MAX
, 0);
12175 /* Round robin failover stop condition */
12176 if (next_fcf_index
== phba
->fcf
.fcf_rr_init_indx
)
12177 return LPFC_FCOE_FCF_NEXT_NONE
;
12179 return next_fcf_index
;
12183 * lpfc_sli4_fcf_rr_index_set - Set bmask with eligible fcf record index
12184 * @phba: pointer to lpfc hba data structure.
12186 * This routine sets the FCF record index in to the eligible bmask for
12187 * round robin failover search. It checks to make sure that the index
12188 * does not go beyond the range of the driver allocated bmask dimension
12189 * before setting the bit.
12191 * Returns 0 if the index bit successfully set, otherwise, it returns
12195 lpfc_sli4_fcf_rr_index_set(struct lpfc_hba
*phba
, uint16_t fcf_index
)
12197 if (fcf_index
>= LPFC_SLI4_FCF_TBL_INDX_MAX
) {
12198 lpfc_printf_log(phba
, KERN_ERR
, LOG_FIP
,
12199 "2610 HBA FCF index reached driver's "
12200 "book keeping dimension: fcf_index:%d, "
12201 "driver_bmask_max:%d\n",
12202 fcf_index
, LPFC_SLI4_FCF_TBL_INDX_MAX
);
12205 /* Set the eligible FCF record index bmask */
12206 set_bit(fcf_index
, phba
->fcf
.fcf_rr_bmask
);
12212 * lpfc_sli4_fcf_rr_index_set - Clear bmask from eligible fcf record index
12213 * @phba: pointer to lpfc hba data structure.
12215 * This routine clears the FCF record index from the eligible bmask for
12216 * round robin failover search. It checks to make sure that the index
12217 * does not go beyond the range of the driver allocated bmask dimension
12218 * before clearing the bit.
12221 lpfc_sli4_fcf_rr_index_clear(struct lpfc_hba
*phba
, uint16_t fcf_index
)
12223 if (fcf_index
>= LPFC_SLI4_FCF_TBL_INDX_MAX
) {
12224 lpfc_printf_log(phba
, KERN_ERR
, LOG_FIP
,
12225 "2762 HBA FCF index goes beyond driver's "
12226 "book keeping dimension: fcf_index:%d, "
12227 "driver_bmask_max:%d\n",
12228 fcf_index
, LPFC_SLI4_FCF_TBL_INDX_MAX
);
12231 /* Clear the eligible FCF record index bmask */
12232 clear_bit(fcf_index
, phba
->fcf
.fcf_rr_bmask
);
12236 * lpfc_mbx_cmpl_redisc_fcf_table - completion routine for rediscover FCF table
12237 * @phba: pointer to lpfc hba data structure.
12239 * This routine is the completion routine for the rediscover FCF table mailbox
12240 * command. If the mailbox command returned failure, it will try to stop the
12241 * FCF rediscover wait timer.
12244 lpfc_mbx_cmpl_redisc_fcf_table(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mbox
)
12246 struct lpfc_mbx_redisc_fcf_tbl
*redisc_fcf
;
12247 uint32_t shdr_status
, shdr_add_status
;
12249 redisc_fcf
= &mbox
->u
.mqe
.un
.redisc_fcf_tbl
;
12251 shdr_status
= bf_get(lpfc_mbox_hdr_status
,
12252 &redisc_fcf
->header
.cfg_shdr
.response
);
12253 shdr_add_status
= bf_get(lpfc_mbox_hdr_add_status
,
12254 &redisc_fcf
->header
.cfg_shdr
.response
);
12255 if (shdr_status
|| shdr_add_status
) {
12256 lpfc_printf_log(phba
, KERN_ERR
, LOG_FIP
,
12257 "2746 Requesting for FCF rediscovery failed "
12258 "status x%x add_status x%x\n",
12259 shdr_status
, shdr_add_status
);
12260 if (phba
->fcf
.fcf_flag
& FCF_ACVL_DISC
) {
12261 spin_lock_irq(&phba
->hbalock
);
12262 phba
->fcf
.fcf_flag
&= ~FCF_ACVL_DISC
;
12263 spin_unlock_irq(&phba
->hbalock
);
12265 * CVL event triggered FCF rediscover request failed,
12266 * last resort to re-try current registered FCF entry.
12268 lpfc_retry_pport_discovery(phba
);
12270 spin_lock_irq(&phba
->hbalock
);
12271 phba
->fcf
.fcf_flag
&= ~FCF_DEAD_DISC
;
12272 spin_unlock_irq(&phba
->hbalock
);
12274 * DEAD FCF event triggered FCF rediscover request
12275 * failed, last resort to fail over as a link down
12276 * to FCF registration.
12278 lpfc_sli4_fcf_dead_failthrough(phba
);
12281 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
12282 "2775 Start FCF rediscovery quiescent period "
12283 "wait timer before scaning FCF table\n");
12285 * Start FCF rediscovery wait timer for pending FCF
12286 * before rescan FCF record table.
12288 lpfc_fcf_redisc_wait_start_timer(phba
);
12291 mempool_free(mbox
, phba
->mbox_mem_pool
);
12295 * lpfc_sli4_redisc_all_fcf - Request to rediscover entire FCF table by port.
12296 * @phba: pointer to lpfc hba data structure.
12298 * This routine is invoked to request for rediscovery of the entire FCF table
12302 lpfc_sli4_redisc_fcf_table(struct lpfc_hba
*phba
)
12304 LPFC_MBOXQ_t
*mbox
;
12305 struct lpfc_mbx_redisc_fcf_tbl
*redisc_fcf
;
12308 /* Cancel retry delay timers to all vports before FCF rediscover */
12309 lpfc_cancel_all_vport_retry_delay_timer(phba
);
12311 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
12313 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
12314 "2745 Failed to allocate mbox for "
12315 "requesting FCF rediscover.\n");
12319 length
= (sizeof(struct lpfc_mbx_redisc_fcf_tbl
) -
12320 sizeof(struct lpfc_sli4_cfg_mhdr
));
12321 lpfc_sli4_config(phba
, mbox
, LPFC_MBOX_SUBSYSTEM_FCOE
,
12322 LPFC_MBOX_OPCODE_FCOE_REDISCOVER_FCF
,
12323 length
, LPFC_SLI4_MBX_EMBED
);
12325 redisc_fcf
= &mbox
->u
.mqe
.un
.redisc_fcf_tbl
;
12326 /* Set count to 0 for invalidating the entire FCF database */
12327 bf_set(lpfc_mbx_redisc_fcf_count
, redisc_fcf
, 0);
12329 /* Issue the mailbox command asynchronously */
12330 mbox
->vport
= phba
->pport
;
12331 mbox
->mbox_cmpl
= lpfc_mbx_cmpl_redisc_fcf_table
;
12332 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_NOWAIT
);
12334 if (rc
== MBX_NOT_FINISHED
) {
12335 mempool_free(mbox
, phba
->mbox_mem_pool
);
12342 * lpfc_sli4_fcf_dead_failthrough - Failthrough routine to fcf dead event
12343 * @phba: pointer to lpfc hba data structure.
12345 * This function is the failover routine as a last resort to the FCF DEAD
12346 * event when driver failed to perform fast FCF failover.
12349 lpfc_sli4_fcf_dead_failthrough(struct lpfc_hba
*phba
)
12351 uint32_t link_state
;
12354 * Last resort as FCF DEAD event failover will treat this as
12355 * a link down, but save the link state because we don't want
12356 * it to be changed to Link Down unless it is already down.
12358 link_state
= phba
->link_state
;
12359 lpfc_linkdown(phba
);
12360 phba
->link_state
= link_state
;
12362 /* Unregister FCF if no devices connected to it */
12363 lpfc_unregister_unused_fcf(phba
);
12367 * lpfc_sli_read_link_ste - Read region 23 to decide if link is disabled.
12368 * @phba: pointer to lpfc hba data structure.
12370 * This function read region 23 and parse TLV for port status to
12371 * decide if the user disaled the port. If the TLV indicates the
12372 * port is disabled, the hba_flag is set accordingly.
12375 lpfc_sli_read_link_ste(struct lpfc_hba
*phba
)
12377 LPFC_MBOXQ_t
*pmb
= NULL
;
12379 uint8_t *rgn23_data
= NULL
;
12380 uint32_t offset
= 0, data_size
, sub_tlv_len
, tlv_offset
;
12383 pmb
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
12385 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
12386 "2600 lpfc_sli_read_serdes_param failed to"
12387 " allocate mailbox memory\n");
12392 /* Get adapter Region 23 data */
12393 rgn23_data
= kzalloc(DMP_RGN23_SIZE
, GFP_KERNEL
);
12398 lpfc_dump_mem(phba
, pmb
, offset
, DMP_REGION_23
);
12399 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
);
12401 if (rc
!= MBX_SUCCESS
) {
12402 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
12403 "2601 lpfc_sli_read_link_ste failed to"
12404 " read config region 23 rc 0x%x Status 0x%x\n",
12405 rc
, mb
->mbxStatus
);
12406 mb
->un
.varDmp
.word_cnt
= 0;
12409 * dump mem may return a zero when finished or we got a
12410 * mailbox error, either way we are done.
12412 if (mb
->un
.varDmp
.word_cnt
== 0)
12414 if (mb
->un
.varDmp
.word_cnt
> DMP_RGN23_SIZE
- offset
)
12415 mb
->un
.varDmp
.word_cnt
= DMP_RGN23_SIZE
- offset
;
12417 lpfc_sli_pcimem_bcopy(((uint8_t *)mb
) + DMP_RSP_OFFSET
,
12418 rgn23_data
+ offset
,
12419 mb
->un
.varDmp
.word_cnt
);
12420 offset
+= mb
->un
.varDmp
.word_cnt
;
12421 } while (mb
->un
.varDmp
.word_cnt
&& offset
< DMP_RGN23_SIZE
);
12423 data_size
= offset
;
12429 /* Check the region signature first */
12430 if (memcmp(&rgn23_data
[offset
], LPFC_REGION23_SIGNATURE
, 4)) {
12431 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
12432 "2619 Config region 23 has bad signature\n");
12437 /* Check the data structure version */
12438 if (rgn23_data
[offset
] != LPFC_REGION23_VERSION
) {
12439 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
12440 "2620 Config region 23 has bad version\n");
12445 /* Parse TLV entries in the region */
12446 while (offset
< data_size
) {
12447 if (rgn23_data
[offset
] == LPFC_REGION23_LAST_REC
)
12450 * If the TLV is not driver specific TLV or driver id is
12451 * not linux driver id, skip the record.
12453 if ((rgn23_data
[offset
] != DRIVER_SPECIFIC_TYPE
) ||
12454 (rgn23_data
[offset
+ 2] != LINUX_DRIVER_ID
) ||
12455 (rgn23_data
[offset
+ 3] != 0)) {
12456 offset
+= rgn23_data
[offset
+ 1] * 4 + 4;
12460 /* Driver found a driver specific TLV in the config region */
12461 sub_tlv_len
= rgn23_data
[offset
+ 1] * 4;
12466 * Search for configured port state sub-TLV.
12468 while ((offset
< data_size
) &&
12469 (tlv_offset
< sub_tlv_len
)) {
12470 if (rgn23_data
[offset
] == LPFC_REGION23_LAST_REC
) {
12475 if (rgn23_data
[offset
] != PORT_STE_TYPE
) {
12476 offset
+= rgn23_data
[offset
+ 1] * 4 + 4;
12477 tlv_offset
+= rgn23_data
[offset
+ 1] * 4 + 4;
12481 /* This HBA contains PORT_STE configured */
12482 if (!rgn23_data
[offset
+ 2])
12483 phba
->hba_flag
|= LINK_DISABLED
;
12490 mempool_free(pmb
, phba
->mbox_mem_pool
);
12496 * lpfc_cleanup_pending_mbox - Free up vport discovery mailbox commands.
12497 * @vport: pointer to vport data structure.
12499 * This function iterate through the mailboxq and clean up all REG_LOGIN
12500 * and REG_VPI mailbox commands associated with the vport. This function
12501 * is called when driver want to restart discovery of the vport due to
12502 * a Clear Virtual Link event.
12505 lpfc_cleanup_pending_mbox(struct lpfc_vport
*vport
)
12507 struct lpfc_hba
*phba
= vport
->phba
;
12508 LPFC_MBOXQ_t
*mb
, *nextmb
;
12509 struct lpfc_dmabuf
*mp
;
12511 spin_lock_irq(&phba
->hbalock
);
12512 list_for_each_entry_safe(mb
, nextmb
, &phba
->sli
.mboxq
, list
) {
12513 if (mb
->vport
!= vport
)
12516 if ((mb
->u
.mb
.mbxCommand
!= MBX_REG_LOGIN64
) &&
12517 (mb
->u
.mb
.mbxCommand
!= MBX_REG_VPI
))
12520 if (mb
->u
.mb
.mbxCommand
== MBX_REG_LOGIN64
) {
12521 mp
= (struct lpfc_dmabuf
*) (mb
->context1
);
12523 __lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
12527 list_del(&mb
->list
);
12528 mempool_free(mb
, phba
->mbox_mem_pool
);
12530 mb
= phba
->sli
.mbox_active
;
12531 if (mb
&& (mb
->vport
== vport
)) {
12532 if ((mb
->u
.mb
.mbxCommand
== MBX_REG_LOGIN64
) ||
12533 (mb
->u
.mb
.mbxCommand
== MBX_REG_VPI
))
12534 mb
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
12536 spin_unlock_irq(&phba
->hbalock
);